Add platformio defaults to 4ld and SR, add moon, add MM in about

const.h: increase SETTINGS_STACK_BUF_SIZE

audio_reactive, 4ld and usermod (xml.cpp)
- add defaults in settings

index.htm: add moon

settings_sec: add WLEDMM about

settings_um: add <br> so comment can be shown decently
This commit is contained in:
Ewoud
2022-12-07 15:42:48 +01:00
parent d93c548fe7
commit 84de8dd0a2
9 changed files with 1632 additions and 1506 deletions

View File

@@ -1872,17 +1872,54 @@ class AudioReactive : public Usermod {
void appendConfigData()
{
//WLEDMM: add defaults
#ifdef AUDIOPIN
oappend(SET_F("addInfo('AudioReactive:analogmic:pin',1,'<i>default ")); oappendi(AUDIOPIN); oappend("</i>');"); // 0 is field type, 1 is actual field
#endif
oappend(SET_F("dd=addDropdown('AudioReactive','digitalmic:type');"));
#if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3)
#if SR_DMTYPE==0
oappend(SET_F("addOption(dd,'Generic Analog (default)',0);"));
#else
oappend(SET_F("addOption(dd,'Generic Analog',0);"));
#endif
#endif
#if SR_DMTYPE==1
oappend(SET_F("addOption(dd,'Generic I2S (default)',1);"));
#else
oappend(SET_F("addOption(dd,'Generic I2S',1);"));
#endif
#if SR_DMTYPE==2
oappend(SET_F("addOption(dd,'ES7243 (default)',2);"));
#else
oappend(SET_F("addOption(dd,'ES7243',2);"));
#endif
#if SR_DMTYPE==3
oappend(SET_F("addOption(dd,'SPH0654 (default)',3);"));
#else
oappend(SET_F("addOption(dd,'SPH0654',3);"));
#endif
#if SR_DMTYPE==4
oappend(SET_F("addOption(dd,'Generic I2S with Mclk (default)',4);"));
#else
oappend(SET_F("addOption(dd,'Generic I2S with Mclk',4);"));
#endif
#if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3)
#if SR_DMTYPE==5
oappend(SET_F("addOption(dd,'Generic I2S PDM (default)',5);"));
#else
oappend(SET_F("addOption(dd,'Generic I2S PDM',5);"));
#endif
#endif
#ifdef SR_SQUELCH
oappend(SET_F("addInfo('AudioReactive:config:squelch',1,'<i>default ")); oappendi(SR_SQUELCH); oappend("</i>');"); // 0 is field type, 1 is actual field
#endif
#ifdef SR_GAIN
oappend(SET_F("addInfo('AudioReactive:config:gain',1,'<i>default ")); oappendi(SR_GAIN); oappend("</i>');"); // 0 is field type, 1 is actual field
#endif
oappend(SET_F("dd=addDropdown('AudioReactive','config:AGC');"));
oappend(SET_F("addOption(dd,'Off',0);"));
oappend(SET_F("addOption(dd,'Normal',1);"));
@@ -1902,28 +1939,84 @@ class AudioReactive : public Usermod {
oappend(SET_F("addOption(dd,'Square Root (Energy)',3);"));
oappend(SET_F("addOption(dd,'Logarithmic (Loudness)',1);"));
//WLEDMM
//WLEDMM add defaults
oappend(SET_F("dd=addDropdown('AudioReactive','frequency:profile');"));
#if SR_FREQ_PROF==0
oappend(SET_F("addOption(dd,'Generic Microphone (default)',0);"));
#else
oappend(SET_F("addOption(dd,'Generic Microphone',0);"));
#endif
#if SR_FREQ_PROF==1
oappend(SET_F("addOption(dd,'Generic Line-In (default)',1);"));
#else
oappend(SET_F("addOption(dd,'Generic Line-In',1);"));
#endif
#if SR_FREQ_PROF==5
oappend(SET_F("addOption(dd,'ICS-43434 (default)',5);"));
#else
oappend(SET_F("addOption(dd,'ICS-43434',5);"));
#endif
#if SR_FREQ_PROF==6
oappend(SET_F("addOption(dd,'ICS-43434 - big speakers (default)',6);"));
#else
oappend(SET_F("addOption(dd,'ICS-43434 - big speakers',6);"));
#endif
#if SR_FREQ_PROF==7
oappend(SET_F("addOption(dd,'SPM1423 (default)',7);"));
#else
oappend(SET_F("addOption(dd,'SPM1423',7);"));
#endif
#if SR_FREQ_PROF==2
oappend(SET_F("addOption(dd,'IMNP441 (default)',2);"));
#else
oappend(SET_F("addOption(dd,'IMNP441',2);"));
#endif
#if SR_FREQ_PROF==3
oappend(SET_F("addOption(dd,'IMNP441 - big speakers (default)',3);"));
#else
oappend(SET_F("addOption(dd,'IMNP441 - big speakers',3);"));
#endif
#if SR_FREQ_PROF==4
oappend(SET_F("addOption(dd,'IMNP441 - small speakers (default)',4);"));
#else
oappend(SET_F("addOption(dd,'IMNP441 - small speakers',4);"));
#endif
#if SR_FREQ_PROF==10
oappend(SET_F("addOption(dd,'flat - no adjustments (default)',10);"));
#else
oappend(SET_F("addOption(dd,'flat - no adjustments',10);"));
#endif
#if SR_FREQ_PROF==8
oappend(SET_F("addOption(dd,'userdefined #1 (default)',8);"));
#else
oappend(SET_F("addOption(dd,'userdefined #1',8);"));
#endif
#if SR_FREQ_PROF==9
oappend(SET_F("addOption(dd,'userdefined #2 (default)',9);"));
#else
oappend(SET_F("addOption(dd,'userdefined #2',9);"));
#endif
oappend(SET_F("dd=addDropdown('AudioReactive','sync:mode');"));
oappend(SET_F("addOption(dd,'Off',0);"));
oappend(SET_F("addOption(dd,'Send',1);"));
oappend(SET_F("addOption(dd,'Receive',2);"));
oappend(SET_F("addInfo('AudioReactive:digitalmic:type',1,'<i>requires reboot!</i>');")); // 0 is field type, 1 is actual field
#ifdef I2S_SDPIN
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',0,'<i>sd/data/dout, default ")); oappendi(I2S_SDPIN); oappend("</i>','I2S SD');");
#elif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',0,'<i>sd/data/dout</i>','I2S SD');"));
#endif
#ifdef I2S_WSPIN
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',1,'<i>ws/clk/lrck, default ")); oappendi(I2S_WSPIN); oappend("</i>','I2S WS');");
#elif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',1,'<i>ws/clk/lrck</i>','I2S WS');"));
#endif
#ifdef I2S_CKPIN
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',2,'<i>sck/bclk, default ")); oappendi(I2S_CKPIN); oappend("</i>','I2S SCK');");
#elif
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',2,'<i>sck/bclk</i>','I2S SCK');"));
#endif
#if !defined(CONFIG_IDF_TARGET_ESP32S2) && !defined(CONFIG_IDF_TARGET_ESP32C3) && !defined(CONFIG_IDF_TARGET_ESP32S3)
oappend(SET_F("addInfo('AudioReactive:digitalmic:pin[]',3,'<i>only use -1, 0, 1 or 3</i>','I2S MCLK');"));
#else

View File

@@ -1036,8 +1036,17 @@ class FourLineDisplayUsermod : public Usermod {
oappend(SET_F("addOption(dd,'SSD1305 128x64',5);"));
oappend(SET_F("addOption(dd,'SSD1306 SPI',6);"));
oappend(SET_F("addOption(dd,'SSD1306 SPI 128x64',7);"));
// WLEDMM add defaults
#ifdef FLD_PIN_SCL
oappend(SET_F("addInfo('4LineDisplay:pin[]',0,'<i>-1 use global, default ")); oappendi(FLD_PIN_SCL); oappend("</i>','I2C/SPI CLK');");
#elif
oappend(SET_F("addInfo('4LineDisplay:pin[]',0,'<i>-1 use global</i>','I2C/SPI CLK');"));
#endif
#ifdef FLD_PIN_SDA
oappend(SET_F("addInfo('4LineDisplay:pin[]',1,'<i>-1 use global, default ")); oappendi(FLD_PIN_SDA); oappend("</i>','I2C/SPI DTA');");
#elif
oappend(SET_F("addInfo('4LineDisplay:pin[]',1,'<i>-1 use global</i>','I2C/SPI DTA');"));
#endif
oappend(SET_F("addInfo('4LineDisplay:pin[]',2,'','SPI CS');"));
oappend(SET_F("addInfo('4LineDisplay:pin[]',3,'','SPI DC');"));
oappend(SET_F("addInfo('4LineDisplay:pin[]',4,'','SPI RST');"));

View File

@@ -321,7 +321,7 @@
#ifdef ESP8266
#define SETTINGS_STACK_BUF_SIZE 2048
#else
#define SETTINGS_STACK_BUF_SIZE 3096
#define SETTINGS_STACK_BUF_SIZE 4096 //WLEDMM increase from 3096 because we add help text
#endif
#ifdef WLED_USE_ETHERNET

View File

@@ -339,7 +339,7 @@
<button class="tablinks" onclick="openTab(3)"><i class="icons">&#xe04c;</i><p class="tab-label">Presets</p></button>
</div>
<div id="connind"></div>
<div id="connind">&#9790;</div> <!-- WLEDMM add moon -->
<div id="toast" onclick="clearErrorToast(100);"></div>
<div id="namelabel" onclick="toggleNodes()"></div>
<div id="info" class="modal">

View File

@@ -115,10 +115,13 @@
For security reasons, passwords are not backed up.
<hr>
<h3>About</h3>
<a href="https://github.com/Aircoookie/WLED/" target="_blank">WLED</a> version ##VERSION##<!-- Autoreplaced from package.json --><br><br>
<!-- WLEDMM additions -->
<a href="https://github.com/MoonModules/WLED/" target="_blank">WLEDMM</a> version ##VERSION##<!-- Autoreplaced from package.json --><br>
(c) 2022 <a href="https://github.com/Aircoookie/WLED/compare/main...MoonModules:WLED:mdev" target="_blank">Github MoonModules WLED Commit Authors</a><br><br>
fork of <a href="https://github.com/Aircoookie/WLED/" target="_blank">WLED:</a><br>
<a href="https://github.com/Aircoookie/WLED/wiki/Contributors-and-credits" target="_blank">Contributors, dependencies and special thanks</a><br>
A huge thank you to everyone who helped me create WLED!<br><br>
(c) 2016-2022 Christian Schwinne <br>
A huge thank you to everyone who helped me create WLED!<br>
(c) 2016-2022 Christian Schwinne <br><br>
<i>Licensed under the <a href="https://github.com/Aircoookie/WLED/blob/master/LICENSE" target="_blank">MIT license</a></i><br><br>
Server message: <span class="sip"> Response error! </span><hr>
<div id="toast"></div>

View File

@@ -213,8 +213,6 @@
const urlParams = new URLSearchParams(queryString);
const userMod = urlParams.get('um')
for (const [k,o] of Object.entries(umCfg)) {
console.log(userMod);
if (userMod == k) {
urows += `<hr><h3>${k}</h3>`;
addField(k,'unknown',o);
@@ -255,13 +253,13 @@
<h2>Usermod Setup</h2>
Global I<sup>2</sup>C GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
SDA:<input type="number" min="-1" max="48" name="SDA" onchange="check(this,'if')" class="s" placeholder="SDA">
SDA:<input type="number" min="-1" max="48" name="SDA" onchange="check(this,'if')" class="s" placeholder="SDA"><br>
SCL:<input type="number" min="-1" max="48" name="SCL" onchange="check(this,'if')" class="s" placeholder="SCL">
<hr class="sml">
Global SPI GPIOs (HW)<br>
<i style="color: orange;">(only changable on ESP32, change requires reboot!)</i><br>
MOSI:<input type="number" min="-1" max="48" name="MOSI" onchange="check(this,'if')" class="s" placeholder="MOSI">
MISO:<input type="number" min="-1" max="48" name="MISO" onchange="check(this,'if')" class="s" placeholder="MISO">
MOSI:<input type="number" min="-1" max="48" name="MOSI" onchange="check(this,'if')" class="s" placeholder="MOSI"><br>
MISO:<input type="number" min="-1" max="48" name="MISO" onchange="check(this,'if')" class="s" placeholder="MISO"><br>
SCLK:<input type="number" min="-1" max="48" name="SCLK" onchange="check(this,'if')" class="s" placeholder="SCLK">
</div>
<div id="um">Loading settings...</div>

View File

@@ -1505,164 +1505,168 @@ const uint8_t PAGE_settings_time[] PROGMEM = {
// Autogenerated from wled00/data/settings_sec.htm, do not edit!!
const uint16_t PAGE_settings_sec_length = 2404;
const uint16_t PAGE_settings_sec_length = 2478;
const uint8_t PAGE_settings_sec[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xa5, 0x58, 0x6d, 0x53, 0xdb, 0x48,
0x12, 0xfe, 0xee, 0x5f, 0x31, 0x4c, 0xaa, 0x58, 0xeb, 0x22, 0x2c, 0x43, 0x72, 0x5b, 0x09, 0x20,
0xe7, 0x20, 0x90, 0x0d, 0x57, 0x10, 0x28, 0x6c, 0x36, 0x77, 0x95, 0x4b, 0xa5, 0xc6, 0xd2, 0xd8,
0x9a, 0x58, 0xd6, 0x68, 0x67, 0x46, 0x38, 0xbe, 0xec, 0xfe, 0xf7, 0x7b, 0x7a, 0x24, 0xd9, 0x86,
0x40, 0x52, 0xa9, 0xfb, 0x00, 0xf6, 0xbc, 0x75, 0x4f, 0x3f, 0xdd, 0xfd, 0x74, 0x8f, 0x0f, 0xb7,
0x4e, 0x2e, 0x5f, 0x8f, 0xfe, 0x7d, 0x75, 0xca, 0x32, 0x37, 0xcf, 0x07, 0x87, 0xf4, 0x9f, 0xe5,
0xa2, 0x98, 0xc6, 0x5c, 0x16, 0x1c, 0x63, 0x29, 0xd2, 0xc1, 0xe1, 0x5c, 0x3a, 0xc1, 0x0a, 0x31,
0x97, 0x31, 0xbf, 0x55, 0x72, 0x51, 0x6a, 0xe3, 0x38, 0x4b, 0x74, 0xe1, 0x64, 0xe1, 0x62, 0xbe,
0x50, 0xa9, 0xcb, 0xe2, 0xbf, 0xf7, 0xfb, 0x7c, 0xd0, 0xa9, 0xb7, 0x76, 0xee, 0xad, 0xa5, 0xf2,
0x56, 0x25, 0x72, 0xc7, 0x0f, 0x42, 0x55, 0x28, 0xa7, 0x44, 0xbe, 0x63, 0x13, 0x91, 0xcb, 0x78,
0x37, 0x9c, 0x8b, 0x2f, 0x6a, 0x5e, 0xcd, 0x57, 0xe3, 0xca, 0x4a, 0xe3, 0x07, 0x62, 0x8c, 0x71,
0xa1, 0x39, 0xeb, 0xdc, 0x53, 0xdd, 0x5c, 0x28, 0xc9, 0x84, 0xb1, 0x12, 0x4a, 0x2a, 0x37, 0xd9,
0x79, 0x81, 0x59, 0xa7, 0x5c, 0x2e, 0x07, 0x17, 0xca, 0x26, 0x6c, 0x28, 0x9d, 0x53, 0xc5, 0xd4,
0x1e, 0x46, 0xf5, 0xe4, 0xa1, 0x4d, 0x8c, 0x2a, 0xdd, 0xa0, 0x73, 0x2b, 0x0c, 0xcb, 0x75, 0xa2,
0xca, 0xd0, 0xa9, 0xb9, 0xd4, 0x95, 0x0b, 0xd3, 0x38, 0xd5, 0x49, 0x35, 0xc7, 0x75, 0x43, 0x2c,
0xc4, 0x5b, 0xbb, 0x07, 0x93, 0xaa, 0x48, 0x9c, 0xd2, 0x05, 0x7b, 0xdb, 0x0d, 0xbe, 0x2e, 0x54,
0x91, 0xea, 0x45, 0x4f, 0x97, 0xb2, 0xe8, 0xf2, 0xcc, 0xb9, 0xd2, 0xee, 0x47, 0xd1, 0xac, 0xd0,
0xbd, 0x45, 0x2e, 0xd3, 0xde, 0x54, 0x46, 0x13, 0x29, 0x5c, 0x65, 0xa4, 0x8d, 0x6c, 0xa3, 0x33,
0x7a, 0x62, 0x65, 0x52, 0x19, 0xe5, 0x96, 0x3b, 0xed, 0x14, 0x0f, 0xfe, 0x5a, 0x09, 0x3d, 0xbe,
0x2f, 0x74, 0x75, 0x90, 0x87, 0xfc, 0x93, 0x95, 0xf9, 0x64, 0x73, 0xf7, 0xcd, 0x37, 0xbb, 0xab,
0x32, 0x15, 0x4e, 0x3e, 0xb4, 0x77, 0x7a, 0x96, 0x76, 0x65, 0xf0, 0xd5, 0x48, 0xdc, 0xa7, 0x60,
0x74, 0x39, 0x77, 0x9a, 0x4b, 0xb2, 0xec, 0x78, 0xe9, 0x97, 0xd6, 0x5b, 0x95, 0xbd, 0x1c, 0x7f,
0xde, 0xd8, 0x2c, 0xb7, 0xb7, 0xb9, 0x1e, 0x7f, 0x96, 0x89, 0xe3, 0x71, 0xec, 0x96, 0xa5, 0xd4,
0x13, 0x9a, 0xdb, 0x3a, 0x32, 0x46, 0x2c, 0x7b, 0xca, 0xfa, 0xcf, 0x3b, 0x12, 0x72, 0x2d, 0xd2,
0x7f, 0x0e, 0xbb, 0x32, 0x74, 0xf1, 0x56, 0x3f, 0xf8, 0x9a, 0x4b, 0xc7, 0x74, 0x9c, 0xf6, 0x12,
0x03, 0x38, 0x64, 0xa3, 0xb6, 0xcb, 0x6b, 0xd8, 0x79, 0x70, 0xa0, 0x7b, 0xb0, 0xf2, 0xc8, 0x39,
0xa3, 0xc6, 0x95, 0x93, 0x58, 0x30, 0x09, 0x0f, 0x65, 0x10, 0xde, 0x9f, 0x27, 0xdd, 0xb0, 0xcd,
0xc9, 0x2f, 0x2e, 0xfa, 0x2c, 0x6e, 0x45, 0x2b, 0xe0, 0x9b, 0x8d, 0xc2, 0x2e, 0x0b, 0x88, 0x70,
0x41, 0x98, 0xf6, 0xc6, 0x3a, 0x5d, 0xf6, 0x44, 0x09, 0x7c, 0xd2, 0xd7, 0x99, 0xca, 0xd3, 0xae,
0xa6, 0xfd, 0x22, 0x4d, 0x4f, 0x6f, 0x71, 0x8b, 0x73, 0x65, 0x11, 0x8c, 0xd2, 0x74, 0x39, 0xdd,
0x99, 0x87, 0xdd, 0x20, 0x1e, 0x7c, 0xfd, 0x4d, 0xba, 0xdf, 0xbb, 0x41, 0x08, 0x99, 0xc7, 0xc9,
0xec, 0x8d, 0xca, 0x25, 0xc5, 0x58, 0x97, 0x10, 0xe4, 0xe3, 0x64, 0x96, 0x4c, 0xa6, 0x3c, 0x78,
0x74, 0xb5, 0x84, 0xb7, 0xa5, 0x83, 0x53, 0x83, 0xbf, 0x1e, 0xd6, 0x23, 0x8d, 0xd1, 0x06, 0xe6,
0x41, 0x0f, 0x32, 0xc1, 0xea, 0x5c, 0xf6, 0x72, 0x3d, 0xed, 0xf2, 0x53, 0x9a, 0x67, 0x0d, 0x78,
0xf0, 0x38, 0x9b, 0x40, 0xb4, 0x87, 0x01, 0xa1, 0x6f, 0x00, 0xd7, 0x79, 0x33, 0x0f, 0xf4, 0x71,
0x70, 0xa2, 0xa6, 0x95, 0x11, 0x1e, 0xed, 0x1a, 0x06, 0x36, 0x11, 0x8a, 0xa2, 0xee, 0x3f, 0xc5,
0x59, 0x91, 0xe8, 0x79, 0x09, 0xd0, 0x25, 0x2b, 0xc5, 0x54, 0x32, 0x84, 0x84, 0xd8, 0x42, 0x2c,
0x6c, 0x38, 0xc8, 0x66, 0x7a, 0x31, 0xd2, 0xc2, 0xba, 0xda, 0x47, 0xbb, 0xc1, 0x57, 0x8a, 0x7d,
0x1d, 0x7b, 0x2b, 0x1c, 0x2d, 0x78, 0xb7, 0xa8, 0x02, 0x57, 0x7e, 0x3b, 0xba, 0x38, 0x8f, 0x25,
0x6c, 0x49, 0x72, 0x61, 0x2d, 0x19, 0x42, 0x56, 0x75, 0xdd, 0xab, 0xc6, 0x94, 0x7d, 0x4e, 0xd2,
0xe0, 0x85, 0x24, 0x97, 0xc2, 0x8c, 0xea, 0xcc, 0xe9, 0x36, 0x19, 0xe4, 0x7d, 0xe3, 0x96, 0x30,
0x52, 0x14, 0x6a, 0xee, 0xef, 0x1b, 0xf3, 0x42, 0x17, 0xb0, 0xac, 0xd9, 0x11, 0x03, 0xae, 0xf6,
0x50, 0xb7, 0xbd, 0x20, 0x02, 0x7b, 0x53, 0x9f, 0x91, 0x73, 0x7d, 0x4b, 0x81, 0xe1, 0x15, 0x01,
0xd8, 0xbd, 0x97, 0xfd, 0xfe, 0x86, 0x39, 0x55, 0x49, 0xa0, 0x91, 0x2f, 0xc8, 0x9e, 0xd6, 0x98,
0x42, 0x2e, 0xd8, 0xbf, 0x2e, 0xce, 0xdf, 0x22, 0x2f, 0xaf, 0xe5, 0x1f, 0x95, 0xb4, 0xee, 0xe0,
0x3b, 0x8e, 0xdf, 0x50, 0xbd, 0x46, 0xc7, 0x65, 0xca, 0x42, 0xbb, 0x2d, 0xe1, 0x29, 0x39, 0x42,
0xdc, 0x85, 0x7e, 0xc6, 0x3a, 0xa4, 0xb5, 0x1d, 0xc4, 0xcf, 0xe9, 0x16, 0xc1, 0x77, 0xfd, 0xbc,
0x96, 0x2b, 0x37, 0x05, 0x4b, 0x92, 0x91, 0xcc, 0xc2, 0xad, 0x56, 0x40, 0x9d, 0xc0, 0x57, 0x97,
0xc3, 0x11, 0x22, 0x3c, 0xaa, 0x0d, 0x82, 0x0f, 0xc8, 0x92, 0xc2, 0x5b, 0xf2, 0x46, 0x9b, 0xf9,
0x09, 0x3c, 0x79, 0xd0, 0x64, 0x65, 0xd1, 0x04, 0x75, 0x97, 0x93, 0x7f, 0x11, 0x28, 0x3d, 0x0a,
0x18, 0xfb, 0xa1, 0xff, 0x31, 0xac, 0x51, 0xa7, 0xb5, 0x22, 0xc0, 0xfc, 0xad, 0xc8, 0x2b, 0x50,
0x24, 0x0f, 0xb7, 0x76, 0xd7, 0x90, 0x25, 0x99, 0x4c, 0x66, 0xef, 0xaa, 0xf9, 0x3a, 0xcf, 0xb7,
0xba, 0x5b, 0x92, 0x4c, 0xe8, 0xcd, 0xe4, 0xb2, 0x07, 0x57, 0x25, 0x59, 0x37, 0xfa, 0xd0, 0xdf,
0x79, 0xf9, 0x31, 0x0a, 0x90, 0xec, 0x1f, 0xf8, 0x31, 0xee, 0x6b, 0x4b, 0x91, 0x50, 0x0a, 0x8e,
0xc4, 0x18, 0xff, 0x4f, 0x41, 0xe4, 0x30, 0x91, 0x0f, 0x33, 0x35, 0x71, 0xf8, 0x7c, 0x0d, 0x66,
0x37, 0x3a, 0xc7, 0xb7, 0xa3, 0x9c, 0xc6, 0x57, 0x02, 0x7c, 0x4d, 0xf3, 0xa2, 0xb4, 0xe7, 0x3a,
0x99, 0xd1, 0x11, 0x90, 0xb7, 0x4f, 0xe2, 0x61, 0x23, 0xe9, 0x0a, 0x11, 0x7a, 0x53, 0x36, 0x5f,
0x4e, 0xf4, 0xa2, 0xf0, 0x72, 0xe1, 0x10, 0xfe, 0x56, 0xcf, 0x69, 0x03, 0xd8, 0x45, 0x2f, 0xce,
0xa5, 0x57, 0xe0, 0xbf, 0xfb, 0xdd, 0xfe, 0xdb, 0xb5, 0x9a, 0x66, 0xab, 0xe9, 0xe6, 0xec, 0x19,
0x1c, 0x65, 0x68, 0xf2, 0x44, 0x52, 0x06, 0xf0, 0x8f, 0x08, 0xe2, 0x24, 0xaf, 0x52, 0x69, 0xbb,
0x2b, 0xeb, 0x82, 0xe0, 0xcf, 0x3f, 0x9b, 0x11, 0xd2, 0x95, 0x3e, 0x4f, 0xe4, 0x44, 0x54, 0xb9,
0x43, 0xd2, 0x23, 0x17, 0x36, 0xd2, 0xe4, 0x6e, 0x8e, 0x03, 0x2a, 0x79, 0x8f, 0x69, 0xc0, 0xbd,
0x45, 0x1d, 0x40, 0x9c, 0x38, 0xff, 0x13, 0x7f, 0x2a, 0x89, 0x5a, 0x1f, 0xda, 0x11, 0x3c, 0xed,
0xf2, 0xf7, 0xe7, 0xa7, 0x27, 0x20, 0x51, 0x9b, 0xbe, 0xe2, 0xc8, 0x1b, 0xec, 0xb6, 0x69, 0xb0,
0xa1, 0x6f, 0x88, 0xe0, 0xe3, 0xe4, 0xc6, 0x7d, 0x6c, 0x6a, 0x98, 0x1d, 0x75, 0xc7, 0xa7, 0x0d,
0xae, 0xaa, 0x9d, 0x4e, 0x74, 0xbe, 0xbd, 0xdd, 0xf5, 0xb5, 0xa8, 0x1f, 0x76, 0x7d, 0xb1, 0x8a,
0x69, 0x47, 0x3e, 0x74, 0xda, 0x00, 0x41, 0x52, 0x7e, 0xe6, 0xe4, 0x9c, 0xc2, 0x3a, 0x39, 0x2b,
0xb9, 0x37, 0xb5, 0xde, 0x86, 0xf3, 0xf3, 0x12, 0x3c, 0x42, 0xe6, 0xb0, 0x0b, 0x9d, 0xca, 0x1e,
0xbb, 0x42, 0xc6, 0x5a, 0xc9, 0x24, 0xf9, 0x91, 0xd1, 0xdd, 0xd8, 0xd9, 0x15, 0x98, 0x22, 0xbc,
0x23, 0xd1, 0xde, 0x95, 0x18, 0x7a, 0x69, 0x41, 0x40, 0xbb, 0x3c, 0xcb, 0x93, 0xf8, 0x57, 0xbe,
0xfa, 0xa1, 0xf8, 0xf1, 0xa7, 0x7e, 0x79, 0x9f, 0xc3, 0xdc, 0x75, 0xf1, 0x8a, 0x6c, 0xef, 0xb3,
0x7d, 0x55, 0xc6, 0xbf, 0x72, 0x8f, 0x6f, 0xe7, 0x30, 0x6a, 0x4a, 0xee, 0xa1, 0xe7, 0x86, 0xc1,
0x3f, 0xd4, 0x9c, 0x8a, 0x37, 0xab, 0x4c, 0x8e, 0x24, 0xf7, 0x74, 0x91, 0x58, 0x70, 0xe8, 0x01,
0x36, 0xfa, 0x0d, 0x87, 0x51, 0xdd, 0x6c, 0x10, 0x99, 0x83, 0x23, 0x49, 0x73, 0xcc, 0x81, 0x16,
0x0a, 0xfb, 0x04, 0x79, 0xd1, 0x61, 0x0a, 0x63, 0xfa, 0xf6, 0xc9, 0xf2, 0xa6, 0x19, 0x19, 0x4e,
0x38, 0x43, 0x2b, 0x90, 0x69, 0xac, 0x94, 0xda, 0x52, 0x67, 0x90, 0xaa, 0x5b, 0xe6, 0x49, 0x25,
0x06, 0xc7, 0x01, 0x8e, 0xc5, 0xdd, 0xb9, 0x4c, 0xe6, 0xe5, 0x31, 0xf5, 0x29, 0x70, 0x9c, 0x83,
0x37, 0xa8, 0xdc, 0xc4, 0xbc, 0x1e, 0x70, 0x68, 0x4d, 0x72, 0x95, 0xcc, 0x62, 0xfe, 0x96, 0xd4,
0xbe, 0x3a, 0x8c, 0xea, 0x05, 0x5c, 0x0d, 0x22, 0x06, 0x0f, 0x9f, 0xe9, 0xac, 0x0e, 0x1d, 0xd3,
0x21, 0xca, 0xa0, 0xf5, 0xb9, 0x3b, 0x27, 0x6c, 0x35, 0x9e, 0x2b, 0xdc, 0x71, 0x28, 0x6e, 0xe5,
0x7a, 0x4b, 0x66, 0x5a, 0xf1, 0xd9, 0xde, 0xa0, 0x33, 0x6c, 0x3a, 0x07, 0xb6, 0xcd, 0x6e, 0x7c,
0x9d, 0xa7, 0xf8, 0xac, 0x4a, 0x60, 0xb3, 0x37, 0x68, 0x7b, 0x1a, 0x76, 0x75, 0xf6, 0x6e, 0x9f,
0x1d, 0xaa, 0xa2, 0xac, 0x5c, 0x23, 0xba, 0x84, 0x71, 0x0b, 0x6d, 0x52, 0xee, 0x41, 0xc2, 0xfa,
0xaa, 0x69, 0xf2, 0xdf, 0xad, 0xfa, 0x2f, 0xbe, 0x3e, 0x07, 0x58, 0xe2, 0x0b, 0xe2, 0x7c, 0x8a,
0x96, 0xcc, 0x8f, 0x54, 0xb1, 0x31, 0xd2, 0x05, 0xd2, 0x86, 0x22, 0x39, 0xe6, 0x2b, 0xe2, 0x20,
0x26, 0x0c, 0x20, 0xab, 0x14, 0x0e, 0xe1, 0x83, 0x15, 0x4f, 0x16, 0x7f, 0x83, 0x1a, 0x52, 0x3e,
0x47, 0x80, 0x81, 0xe9, 0xd1, 0x3b, 0x19, 0x95, 0x70, 0xe6, 0x3b, 0x2d, 0x68, 0xdc, 0x0c, 0x38,
0xc1, 0x9e, 0xb3, 0x54, 0x4d, 0x95, 0x63, 0xd8, 0x36, 0x06, 0x93, 0x00, 0x13, 0x03, 0xf8, 0xc9,
0x25, 0xde, 0xed, 0x50, 0xa6, 0x73, 0x6d, 0xf6, 0x9f, 0x4c, 0x04, 0xf5, 0x8f, 0xdb, 0x4f, 0x5e,
0xbe, 0x78, 0xf1, 0xe2, 0x80, 0xdd, 0x14, 0xb2, 0x48, 0xcc, 0xb2, 0x74, 0x32, 0x65, 0xce, 0x88,
0xc2, 0xce, 0x95, 0xb5, 0x94, 0x21, 0xec, 0x18, 0x15, 0xcf, 0x20, 0xd7, 0x0b, 0xc7, 0x16, 0x99,
0xa4, 0xfc, 0xcd, 0xd1, 0xb5, 0x50, 0xd1, 0x84, 0xa9, 0x21, 0x4b, 0x35, 0x7b, 0x77, 0x39, 0x62,
0x20, 0x25, 0xb6, 0xd4, 0x95, 0x61, 0x63, 0x51, 0xcc, 0xb0, 0x48, 0x0b, 0xda, 0x84, 0x6c, 0x78,
0x76, 0x11, 0x32, 0xe9, 0x92, 0x1e, 0x2b, 0x55, 0xb1, 0xd5, 0x69, 0x1d, 0x6b, 0xfc, 0x1f, 0xf1,
0x17, 0x5b, 0x28, 0x03, 0x89, 0xd6, 0xb2, 0xee, 0xe5, 0xe8, 0x28, 0x60, 0x56, 0x4f, 0xdc, 0x42,
0x18, 0xc9, 0xea, 0xb6, 0xeb, 0x1e, 0xee, 0x1e, 0xa8, 0xb1, 0xfe, 0xb2, 0x82, 0xfb, 0xdd, 0x65,
0x6d, 0xe1, 0x15, 0x1c, 0x52, 0x66, 0x06, 0x40, 0x3c, 0xea, 0xa9, 0xfa, 0xc0, 0xe5, 0xd5, 0x1d,
0xaf, 0x3c, 0xdb, 0x6b, 0x10, 0x1a, 0x69, 0x20, 0x48, 0x1d, 0x30, 0xc3, 0x35, 0x42, 0x86, 0xb8,
0x67, 0x6d, 0x57, 0xc9, 0xd0, 0x62, 0x59, 0x14, 0x2b, 0x32, 0x90, 0x15, 0x92, 0x10, 0xd2, 0x4c,
0xe4, 0x56, 0x37, 0x98, 0xbb, 0x4c, 0xa2, 0x7b, 0x30, 0x06, 0xb0, 0xb0, 0x56, 0x1d, 0x4c, 0x85,
0xd4, 0x51, 0x26, 0x57, 0x33, 0xd4, 0x1f, 0x54, 0x79, 0xca, 0xc6, 0x92, 0x1a, 0xe9, 0x62, 0x0a,
0x31, 0x1e, 0x4f, 0xa8, 0x43, 0x77, 0xd8, 0x28, 0x4f, 0x7b, 0x35, 0x36, 0x83, 0xce, 0x89, 0xb2,
0xed, 0x6d, 0xea, 0x7d, 0x85, 0x76, 0x88, 0x02, 0x02, 0x3a, 0x64, 0x1a, 0x2a, 0xcd, 0x42, 0x01,
0x73, 0x51, 0x30, 0x84, 0x0a, 0x72, 0x00, 0xf7, 0x48, 0x30, 0x30, 0x72, 0x82, 0xc4, 0xcb, 0x58,
0xfd, 0x02, 0x58, 0xa1, 0x49, 0xc8, 0x8f, 0x6b, 0xdc, 0xd5, 0x3a, 0xae, 0x29, 0x53, 0x10, 0x70,
0x75, 0x47, 0x43, 0x98, 0x83, 0x05, 0x96, 0xf5, 0xed, 0xbc, 0x6e, 0x35, 0xf1, 0xea, 0x73, 0x72,
0x13, 0xb6, 0xa5, 0xf5, 0x95, 0xd2, 0xad, 0xc3, 0x48, 0x0d, 0xbc, 0x7d, 0x27, 0xb2, 0x58, 0x32,
0x91, 0x24, 0xe4, 0x3e, 0x60, 0xf2, 0x5e, 0xbd, 0x51, 0xac, 0xe5, 0x27, 0x3a, 0x4d, 0x27, 0x65,
0xfa, 0xa8, 0x0f, 0x1b, 0x8f, 0xbc, 0xe7, 0xb5, 0x34, 0xfa, 0x7b, 0x23, 0x12, 0x50, 0x24, 0x41,
0x0e, 0x39, 0x3f, 0x38, 0x78, 0x3d, 0x6c, 0x7c, 0x77, 0x94, 0xe7, 0x6b, 0xb5, 0xa2, 0x48, 0x59,
0xd3, 0x30, 0x22, 0xb6, 0xb0, 0x02, 0xc0, 0x25, 0x05, 0x46, 0x8b, 0xad, 0x19, 0xfc, 0x1f, 0xd9,
0x70, 0xb4, 0x81, 0xb7, 0x87, 0x0f, 0x18, 0xe3, 0x32, 0x08, 0x0b, 0x07, 0x27, 0xcf, 0xbc, 0x0f,
0x14, 0x45, 0x45, 0x22, 0xa9, 0x7d, 0x04, 0x7b, 0xd6, 0xad, 0x62, 0x1b, 0xf9, 0xc4, 0x3e, 0xd9,
0xb3, 0xc1, 0xb0, 0x8d, 0xf2, 0x9a, 0x74, 0x40, 0x37, 0xcf, 0x06, 0x3f, 0xa0, 0xc8, 0x1b, 0x62,
0xbb, 0xce, 0x85, 0x28, 0x2a, 0x91, 0x7b, 0xb7, 0xb4, 0x47, 0x57, 0xdc, 0x67, 0x06, 0xa7, 0x75,
0x04, 0x1f, 0x99, 0xb4, 0x52, 0x85, 0xc6, 0xa6, 0x1f, 0xa5, 0xcf, 0x11, 0xa5, 0x4f, 0x73, 0x27,
0x62, 0xd2, 0xaa, 0x04, 0x11, 0x5e, 0xa3, 0xab, 0xd3, 0xa6, 0xb9, 0x94, 0x68, 0x99, 0x7c, 0xec,
0xd0, 0x46, 0x17, 0xb3, 0x9a, 0xf1, 0x9a, 0x96, 0x9d, 0x75, 0x32, 0x04, 0x5c, 0xcc, 0xa3, 0x06,
0x70, 0x54, 0x24, 0xba, 0x73, 0x5b, 0x9e, 0x91, 0x7d, 0x4d, 0xe7, 0xde, 0x0a, 0x6f, 0xc6, 0x87,
0x91, 0x58, 0x39, 0x62, 0xd0, 0x69, 0xf4, 0xad, 0x16, 0x7d, 0x94, 0x6e, 0xdc, 0xda, 0x37, 0xed,
0x8d, 0xcf, 0x7d, 0x5f, 0xe6, 0x43, 0xae, 0xc4, 0x43, 0xb4, 0xd6, 0x37, 0x60, 0x2d, 0x74, 0x9d,
0x87, 0xb1, 0xfb, 0x65, 0xa3, 0x97, 0x4d, 0x7b, 0xc3, 0x49, 0x8f, 0xa4, 0x84, 0xf7, 0x6e, 0x1d,
0xfc, 0x32, 0xb8, 0xf1, 0xdb, 0x56, 0x88, 0xd6, 0x41, 0xb9, 0x66, 0xac, 0x47, 0xa1, 0x68, 0xad,
0x64, 0x0d, 0x1a, 0x80, 0xa6, 0x41, 0xa2, 0xb3, 0x86, 0x82, 0xf0, 0x6a, 0x61, 0xb8, 0xf3, 0xd6,
0xb8, 0x03, 0x46, 0x8b, 0xc5, 0xdd, 0x1d, 0x6b, 0x44, 0x3a, 0x0f, 0x43, 0xb2, 0xf7, 0x38, 0x26,
0x8f, 0x54, 0xcf, 0x07, 0x31, 0xd9, 0x0b, 0x37, 0x2e, 0xff, 0x2d, 0x20, 0x1b, 0x78, 0x50, 0x06,
0x75, 0xbe, 0x97, 0x42, 0xb5, 0x21, 0x54, 0x26, 0x1a, 0x74, 0xa2, 0xbb, 0x0f, 0x2c, 0x9f, 0x9a,
0x97, 0xbf, 0x9f, 0x5e, 0xbf, 0xbf, 0x3e, 0x1b, 0x9d, 0xd6, 0xb5, 0x03, 0x74, 0x6b, 0xa8, 0xce,
0x3c, 0x78, 0xa2, 0xe7, 0xdd, 0xd1, 0xa1, 0x87, 0x58, 0x4d, 0xb5, 0x77, 0xe5, 0xcd, 0x05, 0x91,
0xc6, 0x1f, 0x15, 0xaa, 0x09, 0x8a, 0xe0, 0x64, 0x93, 0x46, 0x18, 0xb8, 0xdc, 0xc8, 0x1d, 0x4f,
0x8c, 0xcd, 0x63, 0xcf, 0xab, 0x3b, 0x1d, 0x5e, 0xf5, 0x9a, 0xbc, 0x7c, 0xf3, 0x00, 0xdd, 0x87,
0x2b, 0xea, 0xb6, 0x9e, 0x1c, 0x89, 0x80, 0xc7, 0x94, 0xf9, 0x29, 0x6a, 0x53, 0xaf, 0xcd, 0x9a,
0xa3, 0x31, 0x1e, 0x59, 0x6d, 0xaa, 0x34, 0xe9, 0xd0, 0xfe, 0x6a, 0x81, 0x32, 0x9c, 0x55, 0xe3,
0x1e, 0x5e, 0x8e, 0xd1, 0x91, 0x32, 0x89, 0xd6, 0x7a, 0xa6, 0x64, 0x44, 0x3d, 0x61, 0x84, 0xea,
0x2d, 0xcc, 0x94, 0x7e, 0x4c, 0xf9, 0x34, 0xce, 0x51, 0x32, 0xf9, 0x80, 0xa6, 0x29, 0x14, 0x3a,
0xec, 0x56, 0x1a, 0x22, 0x1b, 0xd6, 0xef, 0xed, 0x3e, 0xef, 0xe1, 0x5f, 0x7f, 0xc5, 0x5b, 0x3f,
0xa3, 0x61, 0xa1, 0x66, 0x2a, 0xf2, 0xaf, 0x07, 0x6a, 0x9a, 0xb5, 0xb1, 0x3b, 0x60, 0xc6, 0x9d,
0xc4, 0xc8, 0x54, 0x51, 0xa8, 0x76, 0xee, 0xeb, 0xdf, 0xdc, 0x8a, 0xea, 0x2d, 0xe9, 0x1d, 0x04,
0x16, 0x54, 0xb2, 0xa6, 0x54, 0x5b, 0xca, 0x44, 0x81, 0x79, 0x1c, 0xaa, 0xc3, 0x6c, 0x95, 0xc0,
0x9d, 0x23, 0x96, 0x55, 0x28, 0x1e, 0x7e, 0xd6, 0xd7, 0x47, 0x94, 0x01, 0x74, 0xff, 0x66, 0x89,
0xe7, 0x28, 0xea, 0x96, 0x66, 0xd4, 0x00, 0x02, 0x31, 0x50, 0x64, 0xfd, 0x4b, 0x85, 0x6f, 0x89,
0xb7, 0x5a, 0x8b, 0x3a, 0xdd, 0x24, 0x60, 0x7b, 0xfd, 0xdd, 0x5f, 0x77, 0xf6, 0xfa, 0x7b, 0x7b,
0xec, 0x75, 0x66, 0xf0, 0xd6, 0x53, 0xe0, 0xd0, 0x61, 0x92, 0x2d, 0xe8, 0xa5, 0xdc, 0x94, 0xac,
0x73, 0x14, 0x33, 0x3c, 0x42, 0x80, 0x3c, 0x2e, 0x55, 0x57, 0xdc, 0x9f, 0x02, 0x63, 0x9c, 0xeb,
0x71, 0x34, 0xc7, 0x23, 0x51, 0x9a, 0xe8, 0xfc, 0xec, 0xf5, 0xe9, 0xbb, 0xe1, 0xe9, 0xb7, 0x1e,
0xe8, 0x5c, 0x9c, 0x8d, 0x58, 0x5e, 0x6b, 0xf2, 0x06, 0xa2, 0xcc, 0xb5, 0x17, 0x1d, 0x4a, 0x03,
0xab, 0x60, 0x86, 0xb5, 0x28, 0x96, 0xa0, 0x55, 0xbc, 0xda, 0x8a, 0x96, 0x0f, 0xac, 0x2a, 0x39,
0x65, 0xae, 0x7f, 0xd1, 0x32, 0xff, 0x48, 0x25, 0xc2, 0xa7, 0x2d, 0x35, 0xbb, 0x52, 0xb6, 0x10,
0x57, 0xd4, 0xbf, 0x02, 0x7c, 0xb7, 0xbd, 0xfd, 0xb6, 0xbb, 0xed, 0xfc, 0x54, 0x7b, 0x1b, 0x51,
0xcd, 0xc1, 0x07, 0x75, 0xf5, 0xd4, 0xe2, 0xd3, 0xaf, 0x8c, 0xff, 0x03, 0xf6, 0x90, 0x57, 0x28,
0x75, 0x14, 0x00, 0x00
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xa5, 0x58, 0x6d, 0x73, 0xdb, 0xb8,
0x11, 0xfe, 0xae, 0x5f, 0x01, 0x23, 0x33, 0x3e, 0xb1, 0xa1, 0x49, 0xdb, 0x49, 0x6f, 0x12, 0xc7,
0x54, 0xea, 0xb7, 0x5c, 0xdc, 0xb1, 0x63, 0x4f, 0xa4, 0x5c, 0xda, 0x49, 0x33, 0x19, 0x88, 0x84,
0x44, 0x44, 0x14, 0xc1, 0x03, 0x40, 0x2b, 0x6a, 0xee, 0xfe, 0x7b, 0x9f, 0x05, 0x49, 0x49, 0x76,
0xec, 0x64, 0x32, 0xfd, 0x60, 0x4b, 0x24, 0x80, 0x7d, 0x79, 0x76, 0xf7, 0xd9, 0x85, 0x0e, 0xb7,
0x4e, 0xaf, 0x4e, 0x46, 0xff, 0xbe, 0x3e, 0x63, 0xb9, 0x9b, 0x17, 0x83, 0x43, 0xfa, 0xcf, 0x0a,
0x51, 0x4e, 0x13, 0x2e, 0x4b, 0x8e, 0x67, 0x29, 0xb2, 0xc1, 0xe1, 0x5c, 0x3a, 0xc1, 0x4a, 0x31,
0x97, 0x09, 0xbf, 0x51, 0x72, 0x51, 0x69, 0xe3, 0x38, 0x4b, 0x75, 0xe9, 0x64, 0xe9, 0x12, 0xbe,
0x50, 0x99, 0xcb, 0x93, 0xbf, 0xef, 0xee, 0xf2, 0x41, 0xaf, 0xd9, 0xda, 0xbb, 0xb3, 0x96, 0xc9,
0x1b, 0x95, 0xca, 0x1d, 0xff, 0x10, 0xaa, 0x52, 0x39, 0x25, 0x8a, 0x1d, 0x9b, 0x8a, 0x42, 0x26,
0x7b, 0xe1, 0x5c, 0x7c, 0x51, 0xf3, 0x7a, 0xbe, 0x7a, 0xae, 0xad, 0x34, 0xfe, 0x41, 0x8c, 0xf1,
0x5c, 0x6a, 0xce, 0x7a, 0x77, 0x54, 0xb7, 0x06, 0xa5, 0xb9, 0x30, 0x56, 0x42, 0x49, 0xed, 0x26,
0x3b, 0xcf, 0xf0, 0xd6, 0x29, 0x57, 0xc8, 0xc1, 0xa5, 0xb2, 0x29, 0x1b, 0x4a, 0xe7, 0x54, 0x39,
0xb5, 0x87, 0x71, 0xf3, 0xf2, 0xd0, 0xa6, 0x46, 0x55, 0x6e, 0xd0, 0xbb, 0x11, 0x86, 0x15, 0x3a,
0x55, 0x55, 0xe8, 0xd4, 0x5c, 0xea, 0xda, 0x85, 0x59, 0x92, 0xe9, 0xb4, 0x9e, 0xc3, 0xdc, 0x10,
0x0b, 0xc9, 0xd6, 0xde, 0x8b, 0x49, 0x5d, 0xa6, 0x4e, 0xe9, 0x92, 0xbd, 0xee, 0x07, 0x5f, 0x17,
0xaa, 0xcc, 0xf4, 0x22, 0xd2, 0x95, 0x2c, 0xfb, 0x3c, 0x77, 0xae, 0xb2, 0x07, 0x71, 0x3c, 0x2b,
0x75, 0xb4, 0x28, 0x64, 0x16, 0x4d, 0x65, 0x3c, 0x91, 0xc2, 0xd5, 0x46, 0xda, 0xd8, 0xb6, 0x3a,
0xe3, 0x47, 0x56, 0xa6, 0xb5, 0x51, 0x6e, 0xb9, 0xd3, 0xbd, 0xe2, 0xc1, 0x5f, 0x2b, 0xa1, 0xc7,
0x77, 0x85, 0xae, 0x0e, 0xf2, 0x90, 0x7f, 0xb2, 0xb2, 0x98, 0x6c, 0xee, 0x7e, 0xf7, 0xcd, 0xee,
0xba, 0xca, 0x84, 0x93, 0xf7, 0xed, 0x9d, 0x9e, 0x67, 0x7d, 0x19, 0x7c, 0x35, 0x12, 0xf6, 0x94,
0x8c, 0x8c, 0x73, 0x67, 0x85, 0x24, 0xcf, 0x8e, 0x97, 0x7e, 0x69, 0xbd, 0x55, 0xd9, 0xab, 0xf1,
0xe7, 0x8d, 0xcd, 0x72, 0x7b, 0x9b, 0xeb, 0xf1, 0x67, 0x99, 0x3a, 0x9e, 0x24, 0x6e, 0x59, 0x49,
0x3d, 0xa1, 0x77, 0x5b, 0x47, 0xc6, 0x88, 0x65, 0xa4, 0xac, 0xff, 0xbc, 0x25, 0xa1, 0xd0, 0x22,
0xfb, 0xe7, 0xb0, 0x2f, 0x43, 0x97, 0x6c, 0xed, 0x06, 0x5f, 0x0b, 0xe9, 0x98, 0x4e, 0xb2, 0x28,
0x35, 0x80, 0x43, 0xb6, 0x6a, 0xfb, 0xbc, 0x81, 0x9d, 0x07, 0x2f, 0x74, 0x04, 0x2f, 0x8f, 0x9c,
0x33, 0x6a, 0x5c, 0x3b, 0x89, 0x05, 0x93, 0xf2, 0x50, 0x06, 0xe1, 0xdd, 0xf7, 0xa4, 0x1b, 0xbe,
0x39, 0xf9, 0xc5, 0xc5, 0x9f, 0xc5, 0x8d, 0xe8, 0x04, 0x7c, 0xb3, 0x51, 0xd8, 0x65, 0x09, 0x11,
0x2e, 0x08, 0xb3, 0x68, 0xac, 0xb3, 0x65, 0x24, 0x2a, 0xe0, 0x93, 0x9d, 0xe4, 0xaa, 0xc8, 0xfa,
0x9a, 0xf6, 0x8b, 0x2c, 0x3b, 0xbb, 0x81, 0x15, 0x17, 0xca, 0x22, 0x19, 0xa5, 0xe9, 0x73, 0xb2,
0x99, 0x87, 0xfd, 0x20, 0x19, 0x7c, 0xfd, 0x4d, 0xba, 0xdf, 0xfb, 0x41, 0x08, 0x99, 0xc7, 0xe9,
0xec, 0x95, 0x2a, 0x24, 0xe5, 0x58, 0x9f, 0x10, 0xe4, 0xe3, 0x74, 0x96, 0x4e, 0xa6, 0x3c, 0x78,
0x70, 0xb5, 0x42, 0xb4, 0xa5, 0x43, 0x50, 0x83, 0xbf, 0xee, 0xd7, 0x23, 0x8d, 0xd1, 0x06, 0xee,
0x41, 0x0f, 0x2a, 0xc1, 0xea, 0x42, 0x46, 0x85, 0x9e, 0xf6, 0xf9, 0x19, 0xbd, 0x67, 0x2d, 0x78,
0x88, 0x38, 0x9b, 0x40, 0xb4, 0x87, 0x01, 0xa9, 0x6f, 0x00, 0xd7, 0x45, 0xfb, 0x1e, 0xe8, 0xe3,
0xe0, 0x44, 0x4d, 0x6b, 0x23, 0x3c, 0xda, 0x0d, 0x0c, 0x6c, 0x22, 0x14, 0x65, 0xdd, 0x7f, 0xca,
0xf3, 0x32, 0xd5, 0xf3, 0x0a, 0xa0, 0x4b, 0x56, 0x89, 0xa9, 0x64, 0x48, 0x09, 0xb1, 0x85, 0x5c,
0xd8, 0x08, 0x90, 0xcd, 0xf5, 0x62, 0xa4, 0x85, 0x75, 0x4d, 0x8c, 0xf6, 0x82, 0xaf, 0x94, 0xfb,
0x3a, 0xf1, 0x5e, 0x38, 0x5a, 0xf0, 0x61, 0x51, 0x25, 0x4c, 0x7e, 0x3d, 0xba, 0xbc, 0x48, 0x24,
0x7c, 0x49, 0x0b, 0x61, 0x2d, 0x39, 0x42, 0x5e, 0xf5, 0xdd, 0xcb, 0xd6, 0x95, 0x03, 0x4e, 0xd2,
0x10, 0x85, 0xb4, 0x90, 0xc2, 0x8c, 0x9a, 0xca, 0xe9, 0xb7, 0x15, 0xe4, 0x63, 0xe3, 0x96, 0x70,
0x52, 0x94, 0x6a, 0xee, 0xed, 0x4d, 0x78, 0xa9, 0x4b, 0x78, 0xd6, 0xee, 0x48, 0x00, 0x57, 0x77,
0xa8, 0xdf, 0x19, 0x88, 0xc4, 0xde, 0xd4, 0x67, 0xe4, 0x5c, 0xdf, 0x50, 0x62, 0x78, 0x45, 0x00,
0x76, 0xff, 0xf9, 0xee, 0xee, 0x86, 0x3b, 0x75, 0x45, 0xa0, 0x51, 0x2c, 0xc8, 0x9f, 0xce, 0x99,
0x52, 0x2e, 0xd8, 0xbf, 0x2e, 0x2f, 0x5e, 0xa3, 0x2e, 0xdf, 0xca, 0x3f, 0x6a, 0x69, 0xdd, 0x8b,
0xef, 0x04, 0x7e, 0x43, 0xf5, 0x1a, 0x1d, 0x97, 0x2b, 0x0b, 0xed, 0xb6, 0x42, 0xa4, 0xe4, 0x08,
0x79, 0x17, 0xfa, 0x37, 0xd6, 0xa1, 0xac, 0xed, 0x20, 0x79, 0x4a, 0x56, 0x04, 0xdf, 0x8d, 0xf3,
0x5a, 0xae, 0xdc, 0x14, 0x2c, 0x49, 0x46, 0x3a, 0x0b, 0xb7, 0x3a, 0x01, 0x4d, 0x01, 0x5f, 0x5f,
0x0d, 0x47, 0xc8, 0xf0, 0xb8, 0x71, 0x08, 0x31, 0x20, 0x4f, 0x4a, 0xef, 0xc9, 0x2b, 0x6d, 0xe6,
0xa7, 0x88, 0xe4, 0x8b, 0xb6, 0x2a, 0xcb, 0x36, 0xa9, 0xfb, 0x9c, 0xe2, 0x8b, 0x44, 0x89, 0x28,
0x61, 0xec, 0x87, 0xdd, 0x8f, 0x61, 0x83, 0x3a, 0xad, 0x95, 0x01, 0xde, 0xdf, 0x88, 0xa2, 0x06,
0x45, 0xf2, 0x70, 0x6b, 0x6f, 0x0d, 0x59, 0x9a, 0xcb, 0x74, 0xf6, 0xa6, 0x9e, 0xaf, 0xeb, 0x7c,
0xab, 0xbf, 0x25, 0xc9, 0x85, 0x68, 0x26, 0x97, 0x11, 0x42, 0x95, 0xe6, 0xfd, 0xf8, 0xc3, 0xee,
0xce, 0xf3, 0x8f, 0x71, 0x80, 0x62, 0xff, 0xc0, 0x8f, 0x61, 0xaf, 0xad, 0x44, 0x4a, 0x25, 0x38,
0x12, 0x63, 0xfc, 0x3f, 0x03, 0x91, 0xc3, 0x45, 0x3e, 0xcc, 0xd5, 0xc4, 0xe1, 0xf3, 0x04, 0xcc,
0x6e, 0x74, 0x81, 0x6f, 0x47, 0x05, 0x3d, 0x5f, 0x0b, 0xf0, 0x35, 0xbd, 0x17, 0x95, 0xbd, 0xd0,
0xe9, 0x8c, 0x8e, 0x80, 0xbc, 0x7d, 0x11, 0x0f, 0x5b, 0x49, 0xd7, 0xc8, 0xd0, 0x77, 0x55, 0xfb,
0xe5, 0x54, 0x2f, 0x4a, 0x2f, 0x17, 0x01, 0xe1, 0xaf, 0xf5, 0x9c, 0x36, 0x80, 0x5d, 0xf4, 0xe2,
0x42, 0x7a, 0x05, 0xfe, 0xbb, 0xdf, 0xed, 0xbf, 0xbd, 0x55, 0xd3, 0x7c, 0xf5, 0xba, 0x3d, 0x7b,
0x8e, 0x40, 0x19, 0x7a, 0x79, 0x2a, 0xa9, 0x02, 0xf8, 0x47, 0x24, 0x71, 0x5a, 0xd4, 0x99, 0xb4,
0xfd, 0x95, 0x77, 0x41, 0xf0, 0xe7, 0x9f, 0xed, 0x13, 0xca, 0x95, 0x3e, 0x4f, 0xe5, 0x44, 0xd4,
0x85, 0x43, 0xd1, 0xa3, 0x16, 0x36, 0xca, 0xe4, 0x76, 0x8d, 0x03, 0x2a, 0x79, 0x87, 0x69, 0xc0,
0xbd, 0x65, 0x93, 0x40, 0x9c, 0x38, 0xff, 0x13, 0x7f, 0x2c, 0x89, 0x5a, 0xef, 0xdb, 0x11, 0x3c,
0xee, 0xf3, 0xf7, 0x17, 0x67, 0xa7, 0x20, 0x51, 0x9b, 0xbd, 0xe4, 0xa8, 0x1b, 0xec, 0xb6, 0x59,
0xb0, 0xa1, 0x6f, 0x88, 0xe4, 0xe3, 0x14, 0xc6, 0x03, 0x6c, 0x6a, 0x99, 0x1d, 0x7d, 0xc7, 0x97,
0x0d, 0x4c, 0xd5, 0x4e, 0xa7, 0xba, 0xd8, 0xde, 0xee, 0xfb, 0x5e, 0xb4, 0x1b, 0xf6, 0x7d, 0xb3,
0x4a, 0x68, 0x47, 0x31, 0x74, 0xda, 0x00, 0x41, 0x52, 0x7e, 0xee, 0xe4, 0x9c, 0xd2, 0x3a, 0x3d,
0xaf, 0xb8, 0x77, 0xb5, 0xd9, 0x86, 0xf3, 0xf3, 0x0a, 0x3c, 0x42, 0xee, 0xb0, 0x4b, 0x9d, 0xc9,
0x88, 0x5d, 0xa3, 0x62, 0xad, 0x64, 0x92, 0xe2, 0xc8, 0xc8, 0x36, 0x76, 0x7e, 0x0d, 0xa6, 0x08,
0x6f, 0x49, 0xb4, 0xb7, 0x25, 0x86, 0x5e, 0x5a, 0x10, 0xd0, 0x2e, 0xcf, 0xf2, 0x24, 0xfe, 0xa5,
0xef, 0x7e, 0x68, 0x7e, 0xfc, 0xb1, 0x5f, 0x3e, 0xe0, 0x70, 0x77, 0xdd, 0xbc, 0x62, 0x1b, 0x7d,
0xb6, 0x2f, 0xab, 0xe4, 0x57, 0xee, 0xf1, 0xed, 0x1d, 0xc6, 0x6d, 0xcb, 0x3d, 0xf4, 0xdc, 0x30,
0xf8, 0x87, 0x9a, 0x53, 0xf3, 0x66, 0xb5, 0x29, 0x50, 0xe4, 0x9e, 0x2e, 0x52, 0x0b, 0x0e, 0x7d,
0x81, 0x8d, 0x7e, 0xc3, 0x61, 0xdc, 0x0c, 0x1b, 0x44, 0xe6, 0xe0, 0x48, 0xd2, 0x9c, 0x70, 0xa0,
0x85, 0xc6, 0x3e, 0x41, 0x5d, 0xf4, 0x98, 0xc2, 0x33, 0x7d, 0xfb, 0x64, 0x79, 0x3b, 0x8c, 0x0c,
0x27, 0x9c, 0x61, 0x14, 0xc8, 0x35, 0x56, 0x2a, 0x6d, 0x69, 0x32, 0xc8, 0xd4, 0x0d, 0xf3, 0xa4,
0x92, 0x80, 0xe3, 0x00, 0xc7, 0xe2, 0xf6, 0xbb, 0x5c, 0x16, 0xd5, 0x31, 0xcd, 0x29, 0x08, 0x9c,
0x43, 0x34, 0xa8, 0xdd, 0x24, 0xbc, 0x79, 0xe0, 0xd0, 0x9a, 0x16, 0x2a, 0x9d, 0x25, 0xfc, 0x35,
0xa9, 0x7d, 0x79, 0x18, 0x37, 0x0b, 0x30, 0x0d, 0x22, 0x06, 0xf7, 0x9f, 0xe9, 0xad, 0x0e, 0x1d,
0xd3, 0x21, 0xaa, 0xa0, 0xf5, 0xb9, 0x5b, 0x27, 0x6c, 0x3d, 0x9e, 0x2b, 0xd8, 0x38, 0x14, 0x37,
0x72, 0xbd, 0x25, 0x37, 0x9d, 0xf8, 0x7c, 0x7f, 0xd0, 0x1b, 0xb6, 0x93, 0x03, 0xdb, 0x66, 0xef,
0x7c, 0x9f, 0xa7, 0xfc, 0xac, 0x2b, 0x60, 0xb3, 0x3f, 0xe8, 0x66, 0x1a, 0x76, 0x7d, 0xfe, 0xe6,
0x80, 0x1d, 0xaa, 0xb2, 0xaa, 0x5d, 0x2b, 0xba, 0x82, 0x73, 0x0b, 0x6d, 0x32, 0xee, 0x41, 0xc2,
0xfa, 0x6a, 0x68, 0xf2, 0xdf, 0xad, 0xfa, 0x2f, 0xbe, 0x3e, 0x05, 0x58, 0xe2, 0x0b, 0xf2, 0x7c,
0x8a, 0x91, 0xcc, 0x3f, 0xa9, 0x72, 0xe3, 0x49, 0x97, 0x28, 0x1b, 0xca, 0xe4, 0x84, 0xaf, 0x88,
0x83, 0x98, 0x30, 0x80, 0xac, 0x4a, 0x38, 0xa4, 0x0f, 0x56, 0x3c, 0x59, 0xfc, 0x0d, 0x6a, 0x48,
0xf9, 0x1c, 0x09, 0x06, 0xa6, 0xc7, 0xec, 0x64, 0x54, 0xca, 0x99, 0x9f, 0xb4, 0xa0, 0x71, 0x33,
0xe1, 0x04, 0x7b, 0xca, 0x32, 0x35, 0x55, 0x8e, 0x61, 0xdb, 0x18, 0x4c, 0x02, 0x4c, 0x0c, 0xe0,
0xa7, 0x90, 0xf8, 0xb0, 0x43, 0x99, 0x2e, 0xb4, 0x39, 0x78, 0x34, 0x11, 0x34, 0x3f, 0x6e, 0x3f,
0x7a, 0xfe, 0xec, 0xd9, 0xb3, 0x17, 0xec, 0x5d, 0x29, 0xcb, 0xd4, 0x2c, 0x2b, 0x27, 0x33, 0xe6,
0x8c, 0x28, 0xed, 0x5c, 0x59, 0x4b, 0x15, 0xc2, 0x8e, 0xd1, 0xf1, 0x0c, 0x6a, 0xbd, 0x74, 0x6c,
0x91, 0x4b, 0xaa, 0xdf, 0x02, 0x53, 0x0b, 0x35, 0x4d, 0xb8, 0x1a, 0xb2, 0x4c, 0xb3, 0x37, 0x57,
0x23, 0x06, 0x52, 0x62, 0x4b, 0x5d, 0x1b, 0x36, 0x16, 0xe5, 0x0c, 0x8b, 0xb4, 0xa0, 0x4d, 0xc8,
0x86, 0xe7, 0x97, 0x21, 0x93, 0x2e, 0x8d, 0x58, 0xa5, 0xca, 0xad, 0x5e, 0x17, 0x58, 0xe3, 0xff,
0x88, 0xbf, 0xd8, 0x42, 0x19, 0x48, 0xb4, 0x96, 0xf5, 0xaf, 0x46, 0x47, 0x01, 0xb3, 0x7a, 0xe2,
0x16, 0xc2, 0x48, 0xd6, 0x8c, 0x5d, 0x77, 0x70, 0xf7, 0x40, 0x8d, 0xf5, 0x97, 0x15, 0xdc, 0x6f,
0xae, 0x1a, 0x0f, 0xaf, 0x11, 0x90, 0x2a, 0x37, 0x00, 0xe2, 0xc1, 0x48, 0x35, 0x07, 0xae, 0xae,
0x6f, 0x45, 0xe5, 0xc9, 0x7e, 0x8b, 0xd0, 0x48, 0x03, 0x41, 0x9a, 0x80, 0x19, 0xcc, 0x08, 0x19,
0xf2, 0x9e, 0x75, 0x53, 0x25, 0xc3, 0x88, 0x65, 0xd1, 0xac, 0xc8, 0x41, 0x56, 0x4a, 0x42, 0x48,
0x33, 0x51, 0x58, 0xdd, 0x62, 0xee, 0x72, 0x89, 0xe9, 0xc1, 0x18, 0xc0, 0xc2, 0x3a, 0x75, 0x70,
0x15, 0x52, 0x47, 0xb9, 0x5c, 0xbd, 0xa1, 0xf9, 0xa0, 0x2e, 0x32, 0x36, 0x96, 0x34, 0x48, 0x97,
0x53, 0x88, 0xf1, 0x78, 0x42, 0x1d, 0xa6, 0xc3, 0x56, 0x79, 0x16, 0x35, 0xd8, 0x0c, 0x7a, 0xa7,
0xca, 0x76, 0xd6, 0x34, 0xfb, 0x4a, 0xed, 0x90, 0x05, 0x04, 0x74, 0xc8, 0x34, 0x54, 0x9a, 0x85,
0x02, 0xe6, 0xa2, 0x64, 0x48, 0x15, 0xd4, 0x00, 0xec, 0x48, 0xf1, 0x60, 0xe4, 0x04, 0x85, 0x97,
0xb3, 0xe6, 0x06, 0xb0, 0x42, 0x93, 0x90, 0x1f, 0x37, 0xb8, 0xab, 0x75, 0x5e, 0x53, 0xa5, 0x20,
0xe1, 0x9a, 0x89, 0x86, 0x30, 0x07, 0x0b, 0x2c, 0x1b, 0xeb, 0xbc, 0x6e, 0x35, 0xf1, 0xea, 0x0b,
0x0a, 0x13, 0xb6, 0x65, 0x8d, 0x49, 0xd9, 0xd6, 0x61, 0xac, 0x06, 0xde, 0xbf, 0x53, 0x59, 0x2e,
0x99, 0x48, 0x53, 0x0a, 0x1f, 0x30, 0x79, 0xaf, 0x5e, 0x29, 0xd6, 0xf1, 0x13, 0x9d, 0xa6, 0x93,
0x32, 0x7b, 0x30, 0x86, 0x6d, 0x44, 0xde, 0xf3, 0x46, 0x1a, 0xfd, 0xbd, 0x12, 0x29, 0x28, 0x92,
0x20, 0x87, 0x9c, 0x1f, 0x1c, 0x7c, 0x3b, 0x6c, 0x63, 0x77, 0x54, 0x14, 0x6b, 0xb5, 0xa2, 0xcc,
0x58, 0x3b, 0x30, 0x22, 0xb7, 0xb0, 0x02, 0xc0, 0x25, 0x25, 0x46, 0x87, 0xad, 0x19, 0xfc, 0x1f,
0xd5, 0x70, 0xb4, 0x81, 0xb7, 0x87, 0x0f, 0x18, 0xc3, 0x18, 0xa4, 0x85, 0x43, 0x90, 0x67, 0x3e,
0x06, 0x8a, 0xb2, 0x22, 0x95, 0x34, 0x3e, 0x82, 0x3d, 0x9b, 0x51, 0xb1, 0xcb, 0x7c, 0x62, 0x9f,
0xfc, 0xc9, 0x60, 0xd8, 0x65, 0x79, 0x43, 0x3a, 0xa0, 0x9b, 0x27, 0x83, 0x1f, 0x50, 0xe4, 0x3b,
0x62, 0xbb, 0xde, 0xa5, 0x28, 0x6b, 0x51, 0xf8, 0xb0, 0x74, 0x47, 0x57, 0xdc, 0x67, 0x06, 0x67,
0x4d, 0x06, 0x1f, 0x99, 0xac, 0x56, 0xa5, 0xc6, 0xa6, 0x1f, 0x95, 0xcf, 0x11, 0x95, 0x4f, 0x6b,
0x13, 0x31, 0x69, 0x5d, 0x81, 0x08, 0xdf, 0x62, 0xaa, 0xd3, 0xa6, 0x35, 0x4a, 0x74, 0x4c, 0x3e,
0x76, 0x18, 0xa3, 0xcb, 0x59, 0xc3, 0x78, 0xed, 0xc8, 0xce, 0x7a, 0x39, 0x12, 0x2e, 0xe1, 0x71,
0x0b, 0x38, 0x3a, 0x12, 0xd9, 0xdc, 0xb5, 0x67, 0x54, 0x5f, 0x3b, 0xb9, 0x77, 0xc2, 0xdb, 0xe7,
0xc3, 0x58, 0xac, 0x02, 0x31, 0xe8, 0xb5, 0xfa, 0x56, 0x8b, 0x3e, 0x4b, 0x37, 0xac, 0xf6, 0x43,
0x7b, 0x1b, 0x73, 0x3f, 0x97, 0xf9, 0x94, 0xab, 0x70, 0x11, 0x6d, 0xf4, 0x0d, 0x58, 0x07, 0x5d,
0xef, 0x7e, 0xec, 0x7e, 0xd9, 0x98, 0x65, 0xb3, 0x68, 0x38, 0x89, 0x48, 0x4a, 0x78, 0xc7, 0xea,
0xe0, 0x97, 0xc1, 0x3b, 0xbf, 0x6d, 0x85, 0x68, 0x93, 0x94, 0x6b, 0xc6, 0x7a, 0x10, 0x8a, 0xce,
0x4b, 0xd6, 0xa2, 0x01, 0x68, 0x5a, 0x24, 0x7a, 0x6b, 0x28, 0x08, 0xaf, 0x0e, 0x86, 0x5b, 0x77,
0x8d, 0x5b, 0x60, 0x74, 0x58, 0xdc, 0xde, 0xb1, 0x46, 0xa4, 0x77, 0x3f, 0x24, 0xfb, 0x0f, 0x63,
0xf2, 0x40, 0xf7, 0xbc, 0x17, 0x93, 0xfd, 0x70, 0xc3, 0xf8, 0x6f, 0x01, 0xd9, 0xc0, 0x83, 0x2a,
0xa8, 0xf7, 0xbd, 0x12, 0x6a, 0x1c, 0xa1, 0x36, 0xd1, 0xa2, 0x13, 0xdf, 0xbe, 0x60, 0xf9, 0xd2,
0xbc, 0xfa, 0xfd, 0xec, 0xed, 0xfb, 0xb7, 0xe7, 0xa3, 0xb3, 0xa6, 0x77, 0x80, 0x6e, 0x0d, 0xf5,
0x99, 0x7b, 0x4f, 0x44, 0x3e, 0x1c, 0x3d, 0xba, 0x88, 0x35, 0x54, 0x7b, 0x5b, 0xde, 0x5c, 0x10,
0x69, 0xfc, 0x51, 0xa3, 0x9b, 0xa0, 0x09, 0x4e, 0x36, 0x69, 0x84, 0x81, 0xcb, 0x8d, 0xdc, 0xf1,
0xc4, 0xd8, 0x5e, 0xf6, 0xbc, 0xba, 0xb3, 0xe1, 0x75, 0xd4, 0xd6, 0xe5, 0xab, 0x7b, 0xe8, 0x3e,
0x5c, 0x51, 0xb7, 0xf5, 0xe4, 0x48, 0x04, 0x3c, 0xa6, 0xca, 0xcf, 0xd0, 0x9b, 0xa2, 0xae, 0x6a,
0x8e, 0xc6, 0xb8, 0x64, 0x75, 0xa5, 0xd2, 0x96, 0x43, 0xf7, 0xab, 0x05, 0xda, 0x70, 0x5e, 0x8f,
0x23, 0xdc, 0x1c, 0xe3, 0x4b, 0xad, 0x4b, 0xcc, 0x87, 0x35, 0x3a, 0x5d, 0x4c, 0x43, 0x61, 0x8c,
0xf6, 0x2d, 0xcc, 0x94, 0x7e, 0x4d, 0xf9, 0x34, 0x2e, 0xd0, 0x33, 0xf9, 0x80, 0x5e, 0x5f, 0x5e,
0x52, 0x36, 0xf4, 0xd8, 0x8d, 0x34, 0xc4, 0x37, 0x6c, 0x37, 0xda, 0x7b, 0x1a, 0xe1, 0xdf, 0x2e,
0xf9, 0xde, 0x4f, 0x03, 0xb6, 0xbf, 0xbb, 0xbf, 0xcf, 0xbe, 0xab, 0xe9, 0x48, 0x99, 0x54, 0x6b,
0x3d, 0x53, 0xb2, 0x51, 0x44, 0xf7, 0x56, 0x98, 0x1f, 0xcf, 0x85, 0x2a, 0xa3, 0x28, 0xda, 0x30,
0xe4, 0x80, 0xd6, 0x0f, 0xe6, 0x68, 0x15, 0xc8, 0x8b, 0xbb, 0xd6, 0xfc, 0xe6, 0x25, 0xb2, 0x8d,
0xed, 0xcd, 0x30, 0x7b, 0xa2, 0xe7, 0x18, 0xaa, 0xd8, 0x51, 0x8d, 0x29, 0xd0, 0xac, 0x0b, 0x19,
0x7f, 0x13, 0xe2, 0x3f, 0x60, 0xfb, 0x53, 0xd6, 0xdd, 0x0f, 0xc3, 0xc1, 0x4a, 0xee, 0xcf, 0xc8,
0x5a, 0xa8, 0x99, 0x8a, 0xfd, 0x7d, 0x89, 0xae, 0x09, 0xb0, 0x6e, 0x07, 0xbd, 0x60, 0x27, 0x35,
0x32, 0x53, 0x54, 0x9c, 0xdf, 0xb8, 0xb8, 0xb9, 0x15, 0xf3, 0x8a, 0xa4, 0x9b, 0x1f, 0x78, 0x5f,
0xc9, 0xa6, 0x89, 0xd8, 0x4a, 0xa6, 0x0a, 0x5c, 0xeb, 0xd0, 0x0f, 0x67, 0x2b, 0x4f, 0x7b, 0x47,
0x2c, 0xaf, 0xd1, 0x2e, 0xfd, 0x5b, 0x3f, 0x11, 0xa0, 0xf1, 0xe1, 0xbe, 0x63, 0x96, 0xb8, 0x80,
0xa3, 0x53, 0x6b, 0x46, 0x23, 0x2f, 0x72, 0x04, 0x4d, 0xa1, 0xf9, 0x6d, 0xc6, 0xe3, 0xb6, 0xe5,
0xcf, 0x36, 0x11, 0xdc, 0xfb, 0x75, 0xc7, 0x87, 0xf1, 0x24, 0x37, 0xb8, 0xd9, 0x2a, 0x74, 0x8c,
0x61, 0x9a, 0x2f, 0xe8, 0x77, 0x81, 0x55, 0x83, 0x52, 0x83, 0x0b, 0xb4, 0x6f, 0x5c, 0xbb, 0x90,
0x6b, 0x30, 0xaa, 0x99, 0x31, 0x7e, 0x0a, 0x8c, 0x71, 0xa1, 0xc7, 0x88, 0x39, 0x6e, 0xce, 0x26,
0xbe, 0x38, 0x3f, 0x39, 0x7b, 0x33, 0x3c, 0xfb, 0x16, 0xeb, 0xde, 0xe5, 0xf9, 0x88, 0x15, 0x8d,
0x26, 0xef, 0x20, 0x1a, 0x7b, 0x67, 0xc3, 0x50, 0x1a, 0x78, 0x05, 0x37, 0xac, 0xc5, 0x78, 0x80,
0x46, 0x82, 0x7b, 0x6a, 0xd9, 0x31, 0xa0, 0x55, 0x15, 0x27, 0xae, 0xf2, 0x77, 0x78, 0xe6, 0xaf,
0xe5, 0xd4, 0xe2, 0x68, 0x4b, 0xd3, 0x4f, 0x88, 0x1f, 0x88, 0x1d, 0x9b, 0xdf, 0x3d, 0xbe, 0x3b,
0xd0, 0x7f, 0x3b, 0xcf, 0xf7, 0x7e, 0x6a, 0xa0, 0x8f, 0xa9, 0xcb, 0xe2, 0x83, 0xee, 0x31, 0x74,
0xa9, 0xa1, 0xdf, 0x55, 0xff, 0x07, 0x3b, 0xb9, 0xf7, 0xce, 0x67, 0x15, 0x00, 0x00
};
// Autogenerated from wled00/data/settings_um.htm, do not edit!!
const uint16_t PAGE_settings_um_length = 2811;
const uint16_t PAGE_settings_um_length = 2808;
const uint8_t PAGE_settings_um[] PROGMEM = {
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xcd, 0x59, 0x6d, 0x73, 0xdb, 0x36,
0x12, 0xfe, 0xae, 0x5f, 0x41, 0x23, 0x1e, 0x9b, 0x1c, 0xd1, 0x94, 0x9c, 0xb4, 0x33, 0xa9, 0x24,
@@ -1796,50 +1800,50 @@ const uint8_t PAGE_settings_um[] PROGMEM = {
0x86, 0xc0, 0x74, 0xe9, 0x6f, 0x9a, 0xa9, 0x32, 0x33, 0xc1, 0x03, 0x3e, 0x15, 0x69, 0x4b, 0x82,
0x20, 0xb4, 0x35, 0x14, 0x61, 0xf8, 0x70, 0xb0, 0xca, 0x45, 0x94, 0x4d, 0xe6, 0x98, 0xf1, 0x95,
0xb8, 0x71, 0x3e, 0xff, 0xe3, 0x64, 0x64, 0xdf, 0xcf, 0xa2, 0x2c, 0x5a, 0x90, 0x30, 0x72, 0x5e,
0x39, 0xda, 0x34, 0x2a, 0xb1, 0xf0, 0xd5, 0x13, 0x95, 0xb8, 0xda, 0xa9, 0x39, 0x40, 0x62, 0x76,
0x47, 0x63, 0x48, 0x89, 0x62, 0x9d, 0x2d, 0xe7, 0x59, 0x38, 0x98, 0xbf, 0x0a, 0x29, 0x13, 0x0e,
0x3a, 0x78, 0xb8, 0xf4, 0x1b, 0x55, 0x74, 0x5d, 0xc9, 0x11, 0x14, 0x5e, 0x9f, 0x42, 0x02, 0xbd,
0x0b, 0x82, 0x97, 0xd2, 0x89, 0x95, 0x50, 0x4b, 0xe2, 0xac, 0xba, 0x06, 0xca, 0x1f, 0xcc, 0x9d,
0x4a, 0x63, 0xe8, 0xd4, 0x85, 0x8a, 0x03, 0xca, 0x8c, 0x67, 0x99, 0xc8, 0x73, 0x67, 0x20, 0xc3,
0x51, 0x74, 0x2d, 0x06, 0x1d, 0x19, 0x3a, 0x46, 0x3b, 0xd5, 0x55, 0x94, 0xfc, 0x0f, 0xa6, 0xd0,
0xb2, 0x72, 0xe5, 0x01, 0x66, 0x35, 0xeb, 0x87, 0x59, 0xa2, 0xc7, 0x51, 0xf2, 0xcb, 0xd9, 0xf0,
0x34, 0x7f, 0xec, 0x8d, 0xb5, 0x16, 0x47, 0x6c, 0x0c, 0xfb, 0x5d, 0x21, 0x45, 0x2a, 0x0d, 0xf7,
0xf8, 0x4f, 0x8d, 0x7f, 0xe5, 0xad, 0x53, 0x75, 0x87, 0xf2, 0x0d, 0xa0, 0xd4, 0x37, 0x30, 0x9d,
0x1c, 0x2e, 0x3e, 0x4a, 0xf9, 0x6b, 0xe6, 0xa3, 0xc5, 0x02, 0x4e, 0xe0, 0x1f, 0x9a, 0x3a, 0xe0,
0xe8, 0x3f, 0x81, 0x10, 0xbf, 0x69, 0x75, 0xb1, 0x35, 0x56, 0xe7, 0xd7, 0x23, 0x6a, 0x09, 0x05,
0x46, 0x68, 0x41, 0x53, 0xff, 0xbb, 0xf2, 0xcc, 0xf5, 0x35, 0x84, 0xad, 0x36, 0xbf, 0xc3, 0x1c,
0xb1, 0x34, 0x77, 0xae, 0x47, 0x77, 0x15, 0x58, 0x45, 0xcd, 0x59, 0x48, 0xd0, 0xac, 0x5a, 0x83,
0x4e, 0x75, 0xaf, 0x36, 0xb0, 0x3b, 0x87, 0x7f, 0x93, 0x0b, 0xba, 0x8e, 0x73, 0x8a, 0x2c, 0x71,
0x59, 0x35, 0x13, 0x20, 0xd3, 0x7a, 0x7d, 0x10, 0x5a, 0x02, 0x78, 0x55, 0x44, 0x31, 0x0a, 0x93,
0x8e, 0xef, 0x50, 0xd4, 0xc8, 0x02, 0x9c, 0x21, 0x66, 0x50, 0xab, 0x80, 0xa0, 0x45, 0xcb, 0x91,
0x78, 0xa7, 0xa7, 0x2f, 0x79, 0x5d, 0x16, 0x47, 0x53, 0x34, 0x21, 0x36, 0x4a, 0x38, 0x4b, 0x75,
0x6e, 0x18, 0xf8, 0x4a, 0x0d, 0xd0, 0x8c, 0x90, 0xfa, 0xa4, 0x37, 0x09, 0x88, 0xe5, 0x75, 0xdd,
0x80, 0x18, 0x8d, 0x91, 0xfe, 0x86, 0x85, 0xad, 0xe6, 0xe2, 0x5c, 0x24, 0xe9, 0x5b, 0x2a, 0x8a,
0x85, 0x31, 0x38, 0x7a, 0x59, 0x93, 0xcb, 0x17, 0x92, 0x39, 0x41, 0x7b, 0x7b, 0xc5, 0xd9, 0x07,
0x52, 0xe6, 0x68, 0xd0, 0x29, 0x3f, 0x40, 0x61, 0x48, 0x58, 0xf3, 0xb4, 0x9e, 0x61, 0x7a, 0x4b,
0x4c, 0x6f, 0xa3, 0xc9, 0xd5, 0x86, 0x6f, 0x6b, 0x97, 0x52, 0x5f, 0x56, 0x21, 0x6d, 0x4d, 0x92,
0x41, 0xc1, 0x3c, 0x8d, 0x94, 0x3d, 0x75, 0x92, 0xe7, 0xc5, 0x64, 0xdd, 0x0e, 0xd9, 0x51, 0xaa,
0x37, 0xcb, 0x84, 0x50, 0xfd, 0xca, 0x9f, 0x3d, 0x8b, 0xa7, 0x70, 0xef, 0xc5, 0x61, 0xb7, 0xdb,
0xfd, 0xa1, 0xef, 0x1c, 0x6f, 0xdf, 0xa9, 0x40, 0x74, 0xbc, 0x43, 0x1e, 0x81, 0xc0, 0xd0, 0x69,
0xca, 0x25, 0x6c, 0x6c, 0xcb, 0xc5, 0xec, 0xf6, 0x40, 0x6a, 0x6b, 0xef, 0xc5, 0x4f, 0xaf, 0x5f,
0xbf, 0x26, 0xa9, 0x45, 0x12, 0xdb, 0x48, 0x21, 0xe7, 0x6c, 0x07, 0x50, 0x50, 0x49, 0xaf, 0x8c,
0x42, 0xb6, 0xa5, 0x1d, 0x9a, 0x71, 0xe1, 0xb4, 0xaa, 0x8d, 0xb6, 0xc5, 0x97, 0x91, 0xfd, 0xb2,
0x79, 0x3f, 0x5b, 0xa4, 0x00, 0xc3, 0xcb, 0xf0, 0x17, 0xcb, 0xec, 0x0c, 0x07, 0x79, 0x91, 0x86,
0x2f, 0xb1, 0x01, 0x7e, 0x8e, 0x1d, 0x2b, 0xcc, 0x71, 0x3f, 0xfc, 0xe1, 0xb5, 0xc8, 0x4c, 0x03,
0xb9, 0xad, 0x7f, 0x35, 0x36, 0x86, 0x2e, 0x20, 0x74, 0x47, 0x97, 0xd3, 0x6a, 0x46, 0x57, 0xc3,
0x74, 0x19, 0xf5, 0x7e, 0x74, 0xf6, 0xea, 0xa5, 0x5f, 0xae, 0x09, 0x27, 0x13, 0xff, 0x2e, 0x24,
0xe2, 0x1c, 0x0f, 0x68, 0xaa, 0xcd, 0x0e, 0xc4, 0x21, 0xd0, 0x49, 0x24, 0x86, 0xf4, 0xde, 0x56,
0x77, 0x56, 0xf5, 0x26, 0x9b, 0x86, 0xd7, 0x76, 0xc3, 0x3f, 0xbc, 0x5e, 0xe3, 0x10, 0x53, 0xbd,
0xd3, 0x82, 0xcb, 0xad, 0x64, 0xbe, 0xdf, 0xe8, 0xc4, 0x68, 0xf6, 0xf6, 0xf6, 0x37, 0x1d, 0xb2,
0xd3, 0x2c, 0x4b, 0x96, 0x31, 0x74, 0x30, 0xf5, 0xd7, 0xfb, 0xb5, 0xfe, 0xe4, 0x86, 0xc7, 0x27,
0x16, 0x62, 0xcf, 0xee, 0xd7, 0x7a, 0x6e, 0x43, 0x30, 0x86, 0x0f, 0x67, 0xae, 0xca, 0xce, 0xa3,
0xb3, 0x61, 0xc3, 0xb8, 0x95, 0x6d, 0x5b, 0xff, 0x23, 0xe3, 0xd6, 0xb6, 0x6d, 0xd1, 0x6d, 0xc7,
0x5f, 0xb3, 0xae, 0xbd, 0x1f, 0xf9, 0x2e, 0xf3, 0x5a, 0xce, 0xd0, 0xa1, 0xab, 0x94, 0xbf, 0x68,
0x60, 0x7b, 0xfb, 0xf2, 0x5d, 0x16, 0xb6, 0x9c, 0xd6, 0xa7, 0x1f, 0xff, 0xec, 0x31, 0x5b, 0x6b,
0xa7, 0x7e, 0xfc, 0xf6, 0x9e, 0xcf, 0x3b, 0xf5, 0x23, 0x6b, 0x46, 0x5e, 0x8b, 0x42, 0x0f, 0x75,
0x25, 0xac, 0xaf, 0x59, 0xeb, 0x62, 0x11, 0x04, 0x41, 0x45, 0x46, 0x41, 0xf7, 0xed, 0x6c, 0xb7,
0x4e, 0x5c, 0xad, 0xbf, 0x94, 0xb9, 0x3a, 0x94, 0xa2, 0xf1, 0x43, 0x69, 0x9c, 0x72, 0x3a, 0xfd,
0xe3, 0xe8, 0xbf, 0x5d, 0x68, 0x0b, 0x12, 0x4e, 0x1a, 0x00, 0x00
0x39, 0xda, 0x34, 0x2a, 0xb1, 0xf0, 0xd5, 0x13, 0x95, 0xb8, 0xda, 0x09, 0x9d, 0x20, 0x65, 0x86,
0x75, 0x7a, 0x9c, 0x67, 0xe1, 0x60, 0xfe, 0x2a, 0xa4, 0xd4, 0x37, 0xe8, 0xe0, 0xe1, 0xd2, 0x6f,
0x94, 0xcd, 0x75, 0xe9, 0x46, 0x14, 0x78, 0x7d, 0x8a, 0x01, 0x34, 0x2b, 0x88, 0x56, 0xca, 0x1f,
0x56, 0x42, 0x2d, 0x89, 0xb3, 0xea, 0xde, 0x27, 0x7f, 0x30, 0x68, 0x2a, 0x8d, 0x29, 0x53, 0x17,
0x2a, 0x0e, 0x28, 0x15, 0x9e, 0x65, 0x22, 0xcf, 0x9d, 0x81, 0x0c, 0x47, 0xd1, 0xb5, 0x18, 0x74,
0x64, 0xe8, 0x18, 0xed, 0x54, 0x77, 0x4f, 0xf2, 0x3f, 0x18, 0x3b, 0xcb, 0x52, 0x95, 0x07, 0x18,
0xce, 0xac, 0xe1, 0x67, 0x89, 0x1e, 0x47, 0xc9, 0x2f, 0x67, 0xc3, 0xd3, 0xfc, 0xb1, 0xf9, 0xd7,
0x5a, 0x1c, 0xb1, 0x31, 0x0c, 0x76, 0x85, 0x9c, 0xa8, 0x34, 0xfc, 0xe1, 0x3f, 0x35, 0xef, 0x95,
0xd7, 0x4c, 0xd5, 0xa5, 0xc9, 0x37, 0x90, 0x51, 0x5f, 0xb9, 0x74, 0x72, 0xf8, 0xf4, 0x28, 0xe5,
0xaf, 0x99, 0x8f, 0x9e, 0x0a, 0xc0, 0x80, 0x43, 0x68, 0xcc, 0x80, 0x67, 0xff, 0x04, 0x24, 0xfc,
0xe6, 0x9c, 0x2e, 0xb6, 0xe6, 0xe8, 0xfc, 0x7a, 0x44, 0x3d, 0xa0, 0xc0, 0xcc, 0x2c, 0x68, 0xcc,
0x7f, 0x57, 0x9e, 0xb9, 0xbe, 0x77, 0xb0, 0xe5, 0xe5, 0x77, 0x98, 0x23, 0x96, 0xe6, 0xce, 0xf5,
0xe8, 0x72, 0x02, 0xab, 0x28, 0x32, 0x0b, 0x09, 0x9a, 0x55, 0x6b, 0xd0, 0xa9, 0x2e, 0xd2, 0x06,
0x76, 0xe7, 0xf0, 0x6f, 0x72, 0x41, 0xf7, 0x6f, 0x4e, 0x91, 0x25, 0x2e, 0xab, 0x86, 0x00, 0xa4,
0x56, 0xaf, 0x0f, 0x42, 0x4b, 0x00, 0xaf, 0x8a, 0x28, 0x46, 0x25, 0xd2, 0xf1, 0x1d, 0xaa, 0x18,
0x59, 0x80, 0x33, 0x04, 0x09, 0x8a, 0x13, 0x20, 0xb3, 0x68, 0x39, 0x12, 0xef, 0xf4, 0xf4, 0x25,
0xaf, 0xeb, 0xe0, 0x68, 0x8a, 0xae, 0xc3, 0x86, 0x05, 0x67, 0xa9, 0xce, 0x0d, 0x03, 0x5f, 0xa9,
0x01, 0xba, 0x0f, 0x52, 0x9f, 0xf4, 0x26, 0x01, 0xb1, 0xbc, 0xae, 0x3b, 0x0e, 0xa3, 0x31, 0xc3,
0xdf, 0xb0, 0xb0, 0xd5, 0x5c, 0x9c, 0x8b, 0x24, 0x7d, 0x4b, 0x55, 0xb0, 0x30, 0x06, 0x47, 0x2f,
0x8b, 0x70, 0xf9, 0x42, 0x32, 0x27, 0xe8, 0x67, 0xaf, 0x38, 0xfb, 0x40, 0xca, 0x1c, 0x0d, 0x3a,
0xe5, 0x07, 0x28, 0x0c, 0x09, 0x6b, 0x9e, 0xd6, 0x33, 0x4c, 0x6f, 0x89, 0xe9, 0x6d, 0x34, 0xb9,
0xda, 0xf0, 0x6d, 0xed, 0x52, 0xea, 0xcb, 0x2a, 0xa4, 0xad, 0x49, 0x32, 0x28, 0x98, 0xa7, 0x91,
0xb2, 0xa7, 0x4e, 0xf2, 0xbc, 0x98, 0xac, 0xfb, 0x1f, 0x3b, 0x3b, 0xf5, 0x66, 0x99, 0x10, 0xaa,
0x5f, 0xf9, 0xb3, 0x67, 0xf1, 0x14, 0xee, 0xbd, 0x38, 0xec, 0x76, 0xbb, 0x3f, 0xf4, 0x9d, 0xe3,
0xed, 0x4b, 0x14, 0x88, 0x8e, 0x77, 0xc8, 0x23, 0x10, 0x18, 0x3a, 0x4d, 0xb9, 0x84, 0x8d, 0x6d,
0xb9, 0x18, 0xd6, 0x1e, 0x48, 0x6d, 0xed, 0xbd, 0xf8, 0xe9, 0xf5, 0xeb, 0xd7, 0x24, 0xb5, 0x48,
0x62, 0x1b, 0x29, 0xe4, 0x9c, 0xed, 0x00, 0x0a, 0x2a, 0xe9, 0x95, 0x51, 0xc8, 0xb6, 0xb4, 0x43,
0x33, 0x2e, 0x9c, 0x56, 0xb5, 0xd1, 0xb6, 0xf8, 0x32, 0xb2, 0x5f, 0x36, 0x2f, 0x64, 0x8b, 0x14,
0x60, 0x78, 0x19, 0xfe, 0x62, 0x99, 0x9d, 0xe1, 0x20, 0x2f, 0xd2, 0xf0, 0x25, 0x36, 0xc0, 0xcf,
0xb1, 0x63, 0x85, 0x39, 0xee, 0x87, 0x3f, 0xbc, 0x16, 0x99, 0x69, 0x20, 0xb7, 0xf5, 0xaf, 0xe6,
0xc4, 0xd0, 0x05, 0x84, 0xee, 0xe8, 0x36, 0x5a, 0xcd, 0xe8, 0x2e, 0x98, 0x6e, 0x9f, 0xde, 0x8f,
0xce, 0x5e, 0xbd, 0xf4, 0xcb, 0x35, 0xe1, 0x64, 0xe2, 0xdf, 0x85, 0x44, 0x9c, 0xe3, 0x01, 0x5d,
0xb4, 0xd9, 0x81, 0x38, 0x04, 0x3a, 0x89, 0xc4, 0x54, 0xde, 0xdb, 0x6a, 0xc7, 0xaa, 0x66, 0x64,
0xd3, 0xe1, 0xda, 0xf6, 0xf7, 0x87, 0xd7, 0x6b, 0x1c, 0x62, 0x8c, 0x77, 0x5a, 0x70, 0xb9, 0x95,
0xcc, 0xf7, 0x1b, 0xad, 0x17, 0x0d, 0xdb, 0xde, 0xfe, 0xa6, 0x25, 0x76, 0x9a, 0x75, 0xc8, 0x32,
0x96, 0x5b, 0x1e, 0x9f, 0xd4, 0x5b, 0xb6, 0xfe, 0xe4, 0x9e, 0xc7, 0x27, 0x16, 0x65, 0xcf, 0x6e,
0xd9, 0x7a, 0x6e, 0x4f, 0x30, 0x86, 0x0f, 0xe7, 0xac, 0xca, 0xd4, 0xa3, 0xb3, 0x61, 0xc3, 0xbe,
0x95, 0x79, 0x5b, 0xff, 0x23, 0xfb, 0xd6, 0xe6, 0x6d, 0xd1, 0x0d, 0xc7, 0x5f, 0x33, 0xb0, 0xbd,
0x13, 0xf9, 0x2e, 0x0b, 0x5b, 0x4e, 0xbb, 0x2d, 0xdd, 0xa0, 0xfc, 0x45, 0x1b, 0xdb, 0x4b, 0x97,
0xef, 0x32, 0xb2, 0xe5, 0xac, 0x3d, 0xfb, 0xf1, 0xcf, 0x1e, 0xb6, 0xb5, 0x76, 0xed, 0xc7, 0x6f,
0x6f, 0xfb, 0xbc, 0x6b, 0x3f, 0xb2, 0x66, 0x08, 0xb6, 0x28, 0x06, 0x51, 0x60, 0xc2, 0xfa, 0x82,
0xb5, 0xae, 0x1a, 0x41, 0x10, 0x54, 0x64, 0x14, 0x7d, 0xdf, 0x4e, 0x7b, 0xeb, 0x0c, 0xd6, 0xfa,
0x4b, 0x29, 0xac, 0x43, 0xb9, 0x1a, 0x3f, 0x94, 0xcf, 0x29, 0xb9, 0xd3, 0xbf, 0x8c, 0xfe, 0x0b,
0x4b, 0xec, 0x73, 0x78, 0x48, 0x1a, 0x00, 0x00
};

File diff suppressed because it is too large Load Diff

View File

@@ -655,7 +655,7 @@ void getSettingsJS(byte subPage, char* dest)
sappend('c',SET_F("NO"),otaLock);
sappend('c',SET_F("OW"),wifiLock);
sappend('c',SET_F("AO"),aOtaEnabled);
sappends('m',SET_F("(\"sip\")[0]"),(char*)F("WLED "));
sappends('m',SET_F("(\"sip\")[0]"),(char*)F("WLEDMM ")); //WLEDMM server message
olen -= 2; //delete ";
oappend(versionString);
oappend(SET_F(" (build "));
@@ -705,11 +705,29 @@ void getSettingsJS(byte subPage, char* dest)
sappend('v',SET_F("MOSI"),spi_mosi);
sappend('v',SET_F("MISO"),spi_miso);
sappend('v',SET_F("SCLK"),spi_sclk);
oappend(SET_F("addInfo('SDA','")); oappendi(HW_PIN_SDA); oappend(SET_F("');"));
oappend(SET_F("addInfo('SCL','")); oappendi(HW_PIN_SCL); oappend(SET_F("');"));
oappend(SET_F("addInfo('MOSI','")); oappendi(HW_PIN_DATASPI); oappend(SET_F("');"));
oappend(SET_F("addInfo('MISO','")); oappendi(HW_PIN_MISOSPI); oappend(SET_F("');"));
oappend(SET_F("addInfo('SCLK','")); oappendi(HW_PIN_CLOCKSPI); oappend(SET_F("');"));
//WLEDMM: add help info showing defaults
#ifdef HW_PIN_SDA
oappend(SET_F("addInfo('SDA',0,'<i>default ")); oappendi(HW_PIN_SDA); oappend("</i>');");
#endif
#ifdef HW_PIN_SCL
oappend(SET_F("addInfo('SCL',0,'<i>default ")); oappendi(HW_PIN_SCL); oappend("</i>');");
#endif
#ifdef HW_PIN_DATASPI
oappend(SET_F("addInfo('MOSI',0,'<i>default ")); oappendi(HW_PIN_DATASPI); oappend("</i>');");
#endif
#ifdef HW_PIN_MISOSPI
oappend(SET_F("addInfo('MISO',0,'<i>default ")); oappendi(HW_PIN_MISOSPI); oappend("</i>');");
#endif
#ifdef HW_PIN_CLOCKSPI
oappend(SET_F("addInfo('SCLK',0,'<i>default ")); oappendi(HW_PIN_CLOCKSPI); oappend("</i>');");
#endif
//WLEDMM: this puts info in the placeholder of the field, not intuitive
// oappend(SET_F("addInfo('SDA','")); oappendi(HW_PIN_SDA); oappend(SET_F("');"));
// oappend(SET_F("addInfo('SCL','")); oappendi(HW_PIN_SCL); oappend(SET_F("');"));
// oappend(SET_F("addInfo('MOSI','")); oappendi(HW_PIN_DATASPI); oappend(SET_F("');"));
// oappend(SET_F("addInfo('MISO','")); oappendi(HW_PIN_MISOSPI); oappend(SET_F("');"));
// oappend(SET_F("addInfo('SCLK','")); oappendi(HW_PIN_CLOCKSPI); oappend(SET_F("');"));
usermods.appendConfigData();
}