diff --git a/README.md b/README.md index d33e344..f543cff 100644 --- a/README.md +++ b/README.md @@ -314,7 +314,7 @@ It's compatible to Ducky Script, which was developed by the wonderful people at | `DELAY` | `DELAY 1000` | Delay in ms | | `STRING` | `STRING Hello World!` | Types the following string | | `REPEAT` or `REPLAY` | `REPEAT 3` | Repeats the last command n times | -| `LOCALE` | `LOCALE DE` | Sets the keyboard layout. Available: `DE`, `ES`, `GB`, `US`, `DK`, `RU`, `FR` | +| `LOCALE` | `LOCALE DE` | Sets the keyboard layout. [List](#translate-keyboard-layout) | | `KEYCODE` | `KEYCODE 0x02 0x04` | Types a specific key code (modifier, key1[, ..., key6]) in decimal or hexadecimal | | `LED` | `LED 40 20 10` |Changes the color of the LED in decimal RGB values (0-255) | @@ -451,6 +451,7 @@ Currently supported keyboard layouts: - [:it: IT](https://github.com/spacehuhn/WiFiDuck/blob/master/atmega_duck/locale_it.h) - [:slovakia: SK](https://github.com/spacehuhn/WiFiDuck/blob/master/atmega_duck/locale_sk.h) - [:czech_republic: CZ](https://github.com/spacehuhn/WiFiDuck/blob/master/atmega_duck/locale_cz.h) +- [:slovenia: SI](https://github.com/spacehuhn/WiFiDuck/blob/master/atmega_duck/locale_si.h) All standard keys are defined in [usb_hid_keys.h](https://github.com/spacehuhn/WiFiDuck/blob/master/atmega_duck/usb_hid_keys.h). To translate a keyboard layout, you have to match each character on diff --git a/atmega_duck/duckparser.cpp b/atmega_duck/duckparser.cpp index 8dd5e46..4f82fc3 100644 --- a/atmega_duck/duckparser.cpp +++ b/atmega_duck/duckparser.cpp @@ -184,6 +184,8 @@ namespace duckparser { keyboard::setLocale(&locale_sk); } else if (compare(w->str, w->len, "CZ", CASE_SENSETIVE)) { keyboard::setLocale(&locale_cz); + } else if (compare(w->str, w->len, "SI", CASE_SENSETIVE)) { + keyboard::setLocale(&locale_si); } ignore_delay = true; diff --git a/atmega_duck/locale_si.h b/atmega_duck/locale_si.h new file mode 100644 index 0000000..500aeb7 --- /dev/null +++ b/atmega_duck/locale_si.h @@ -0,0 +1,230 @@ +/* + This software is licensed under the MIT License. See the license file for details. + Source: https://github.com/spacehuhntech/WiFiDuck + */ + +#pragma once + +#include "usb_hid_keys.h" + +// Modifier(s), Key +const uint8_t ascii_si[] PROGMEM = { + KEY_NONE, KEY_NONE, // NUL + KEY_NONE, KEY_NONE, // SOH + KEY_NONE, KEY_NONE, // STX + KEY_NONE, KEY_NONE, // ETX + KEY_NONE, KEY_NONE, // EOT + KEY_NONE, KEY_NONE, // ENQ + KEY_NONE, KEY_NONE, // ACK + KEY_NONE, KEY_NONE, // BEL + + // 8, 0x08 + KEY_NONE, KEY_BACKSPACE, // BS Backspace + KEY_NONE, KEY_TAB, // TAB Tab + KEY_NONE, KEY_ENTER, // LF Enter + + KEY_NONE, KEY_NONE, // VT + KEY_NONE, KEY_NONE, // FF + KEY_NONE, KEY_NONE, // CR + KEY_NONE, KEY_NONE, // SO + KEY_NONE, KEY_NONE, // SI + KEY_NONE, KEY_NONE, // DEL + KEY_NONE, KEY_NONE, // DC1 + KEY_NONE, KEY_NONE, // DC2 + KEY_NONE, KEY_NONE, // DC3 + KEY_NONE, KEY_NONE, // DC4 + KEY_NONE, KEY_NONE, // NAK + KEY_NONE, KEY_NONE, // SYN + KEY_NONE, KEY_NONE, // ETB + KEY_NONE, KEY_NONE, // CAN + KEY_NONE, KEY_NONE, // EM + KEY_NONE, KEY_NONE, // SUB + KEY_NONE, KEY_NONE, // ESC + KEY_NONE, KEY_NONE, // FS + KEY_NONE, KEY_NONE, // GS + KEY_NONE, KEY_NONE, // RS + KEY_NONE, KEY_NONE, // US + + // 32, 0x20 + KEY_NONE, KEY_SPACE, // ' ' + KEY_MOD_LSHIFT, KEY_1, // ! + KEY_MOD_LSHIFT, KEY_2, // " + KEY_MOD_LSHIFT, KEY_3, // # + + // 36, 0x24 + KEY_MOD_LSHIFT, KEY_4, // $ + KEY_MOD_LSHIFT, KEY_5, // % + KEY_MOD_LSHIFT, KEY_6, // & + KEY_NONE, KEY_MINUS, // ' + + // 40, 0x28 + KEY_MOD_LSHIFT, KEY_8, // ( + KEY_MOD_LSHIFT, KEY_9, // ) + KEY_MOD_LSHIFT, KEY_EQUAL, // * + KEY_NONE, KEY_EQUAL, // + + + // 44, 0x2c + KEY_NONE, KEY_COMMA, // , + KEY_NONE, KEY_SLASH, // - + KEY_NONE, KEY_DOT, // . + KEY_MOD_LSHIFT, KEY_7, // / + + // 48, 0x30 + KEY_NONE, KEY_0, // 0 + KEY_NONE, KEY_1, // 1 + KEY_NONE, KEY_2, // 2 + KEY_NONE, KEY_3, // 3 + + // 52, 0x34 + KEY_NONE, KEY_4, // 4 + KEY_NONE, KEY_5, // 5 + KEY_NONE, KEY_6, // 6 + KEY_NONE, KEY_7, // 7 + + // 56, 0x38 + KEY_NONE, KEY_8, // 8 + KEY_NONE, KEY_9, // 9 + KEY_MOD_LSHIFT, KEY_DOT, // : + KEY_MOD_LSHIFT, KEY_COMMA, // ; + + // 60, 0x3c + KEY_NONE, KEY_102ND, // < + KEY_MOD_LSHIFT, KEY_0, // = + KEY_MOD_LSHIFT, KEY_102ND, // > + KEY_MOD_LSHIFT, KEY_MINUS, // ? + + // 64, 0x40 + KEY_MOD_RALT, KEY_V, // @ + KEY_MOD_LSHIFT, KEY_A, // A + KEY_MOD_LSHIFT, KEY_B, // B + KEY_MOD_LSHIFT, KEY_C, // C + + // 68, 0x44 + KEY_MOD_LSHIFT, KEY_D, // D + KEY_MOD_LSHIFT, KEY_E, // E + KEY_MOD_LSHIFT, KEY_F, // F + KEY_MOD_LSHIFT, KEY_G, // G + + // 72, 0x48 + KEY_MOD_LSHIFT, KEY_H, // H + KEY_MOD_LSHIFT, KEY_I, // I + KEY_MOD_LSHIFT, KEY_J, // J + KEY_MOD_LSHIFT, KEY_K, // K + + // 76, 0x4c + KEY_MOD_LSHIFT, KEY_L, // L + KEY_MOD_LSHIFT, KEY_M, // M + KEY_MOD_LSHIFT, KEY_N, // N + KEY_MOD_LSHIFT, KEY_O, // O + + // 80, 0x50 + KEY_MOD_LSHIFT, KEY_P, // P + KEY_MOD_LSHIFT, KEY_Q, // Q + KEY_MOD_LSHIFT, KEY_R, // R + KEY_MOD_LSHIFT, KEY_S, // S + + // 84, 0x54 + KEY_MOD_LSHIFT, KEY_T, // T + KEY_MOD_LSHIFT, KEY_U, // U + KEY_MOD_LSHIFT, KEY_V, // V + KEY_MOD_LSHIFT, KEY_W, // W + + // 88, 0x58 + KEY_MOD_LSHIFT, KEY_X, // X + KEY_MOD_LSHIFT, KEY_Z, // Y + KEY_MOD_LSHIFT, KEY_Y, // Z + KEY_MOD_RALT, KEY_F, // [ + + // 92, 0x5c + KEY_MOD_RALT, KEY_Q, // bslash + KEY_MOD_RALT, KEY_G, // ] + KEY_MOD_RALT, KEY_3, // ^ + KEY_MOD_LSHIFT, KEY_SLASH, // _ + + // 96, 0x60 + KEY_MOD_RALT, KEY_7, // ` + KEY_NONE, KEY_A, // a + KEY_NONE, KEY_B, // b + KEY_NONE, KEY_C, // c + + // 100, 0x64 + KEY_NONE, KEY_D, // d + KEY_NONE, KEY_E, // e + KEY_NONE, KEY_F, // f + KEY_NONE, KEY_G, // g + + // 104, 0x68 + KEY_NONE, KEY_H, // h + KEY_NONE, KEY_I, // i + KEY_NONE, KEY_J, // j + KEY_NONE, KEY_K, // k + + // 108, 0x6c + KEY_NONE, KEY_L, // l + KEY_NONE, KEY_M, // m + KEY_NONE, KEY_N, // n + KEY_NONE, KEY_O, // o + + // 112, 0x70 + KEY_NONE, KEY_P, // p + KEY_NONE, KEY_Q, // q + KEY_NONE, KEY_R, // r + KEY_NONE, KEY_S, // s + + // 116, 0x74 + KEY_NONE, KEY_T, // t + KEY_NONE, KEY_U, // u + KEY_NONE, KEY_V, // v + KEY_NONE, KEY_W, // w + + // 120, 0x78 + KEY_NONE, KEY_X, // x + KEY_NONE, KEY_Z, // y + KEY_NONE, KEY_Y, // z + KEY_MOD_RALT, KEY_B, // { + + // 124, 0x7c + KEY_MOD_RALT, KEY_W, // | + KEY_MOD_RALT, KEY_N, // } + KEY_MOD_RALT, KEY_1, // ~ + KEY_NONE, KEY_DELETE // DEL +}; + +const uint8_t extended_ascii_si[] PROGMEM = { + 0xA4, KEY_MOD_RALT, KEY_BACKSLASH, // ¤ + 0xA7, KEY_MOD_RALT, KEY_M, // § + 0xA8, KEY_MOD_RALT, KEY_MINUS, // ¨ + 0xB0, KEY_MOD_RALT, KEY_5, // ° + 0xB4, KEY_MOD_RALT, KEY_9, // ´ + 0xB8, KEY_MOD_RALT, KEY_EQUAL, // ¸ +}; + +const uint8_t utf8_si[] PROGMEM = { + 0xC4, 0x8D, 0x00, 0x00, KEY_NONE, KEY_SEMICOLON, // č + 0xC5, 0xA1, 0x00, 0x00, KEY_NONE, KEY_LEFTBRACE, // š + 0xC5, 0xBE, 0x00, 0x00, KEY_NONE, KEY_BACKSLASH, // ž + 0xC4, 0x87, 0x00, 0x00, KEY_NONE, KEY_APOSTROPHE, // ć + 0xC4, 0x91, 0x00, 0x00, KEY_NONE, KEY_RIGHTBRACE, // đ + 0xC4, 0x8C, 0x00, 0x00, KEY_MOD_LSHIFT, KEY_SEMICOLON, // Č + 0xC5, 0xA0, 0x00, 0x00, KEY_MOD_LSHIFT, KEY_LEFTBRACE, // Š + 0xC5, 0xBD, 0x00, 0x00, KEY_MOD_LSHIFT, KEY_BACKSLASH, // Ž + 0xC4, 0x86, 0x00, 0x00, KEY_MOD_LSHIFT, KEY_APOSTROPHE, // Ć + 0xC4, 0x90, 0x00, 0x00, KEY_MOD_LSHIFT, KEY_RIGHTBRACE, // Đ + 0xE2, 0x82, 0xAC, 0x00, KEY_MOD_RALT, KEY_E, // € + 0xC5, 0x82, 0x00, 0x00, KEY_MOD_RALT, KEY_K, // ł + 0xC5, 0x81, 0x00, 0x00, KEY_MOD_RALT, KEY_L, // Ł + 0xCB, 0x87, 0x00, 0x00, KEY_MOD_RALT, KEY_2, // ˇ + 0xCB, 0x98, 0x00, 0x00, KEY_MOD_RALT, KEY_4, // ˘ + 0xCB, 0x9B, 0x00, 0x00, KEY_MOD_RALT, KEY_6, // ˛ + 0xCB, 0x99, 0x00, 0x00, KEY_MOD_RALT, KEY_8, // ˙ + 0xCB, 0x9D, 0x00, 0x00, KEY_MOD_RALT, KEY_0, // ˝ + 0xC3, 0x97, 0x00, 0x00, KEY_MOD_RALT, KEY_RIGHTBRACE, // × + 0xC3, 0xB7, 0x00, 0x00, KEY_MOD_RALT, KEY_LEFTBRACE, // ÷ + 0xC3, 0x9F, 0x00, 0x00, KEY_MOD_RALT, KEY_APOSTROPHE // ß +}; + +static hid_locale_t locale_si { + (uint8_t*)ascii_si, sizeof(ascii_si) / 2, + (uint8_t*)extended_ascii_si, sizeof(extended_ascii_si) / 3, + (uint8_t*)utf8_si, sizeof(utf8_si) / 6 +}; diff --git a/atmega_duck/locales.h b/atmega_duck/locales.h index 793e7be..2eb2842 100644 --- a/atmega_duck/locales.h +++ b/atmega_duck/locales.h @@ -19,4 +19,5 @@ #include "locale_pt.h" #include "locale_it.h" #include "locale_sk.h" -#include "locale_cz.h" \ No newline at end of file +#include "locale_cz.h" +#include "locale_si.h" diff --git a/esp_duck/webfiles.h b/esp_duck/webfiles.h index 50ba8fe..f4ce302 100644 --- a/esp_duck/webfiles.h +++ b/esp_duck/webfiles.h @@ -32,23 +32,23 @@ server.on("/terminal.js", HTTP_GET, [](AsyncWebServerRequest* request) {\ reply(request, 200, "application/javascript", terminal_js, sizeof(terminal_js));\ }); -const uint8_t credits_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0xa5,0x57,0x6d,0x6f,0xdb,0x38,0x12,0xfe,0xde,0x5f,0x31,0xf5,0x1,0x87,0x5d,0xc0,0xb6,0xb6,0x2d,0x50,0x74,0xb,0x25,0x80,0x6a,0x2b,0x8d,0xb0,0x8e,0x65,0x48,0x4a,0x73,0xf9,0xb4,0xa0,0x25,0x3a,0xe2,0x95,0x12,0x5,0x92,0x8a,0x6b,0xe0,0x7e,0xfc,0xcd,0x50,0xb2,0x6c,0xd7,0x49,0xba,0xdb,0x5,0x82,0x58,0xe4,0x70,0xe6,0x99,0x19,0xce,0x1b,0xfd,0xd7,0x93,0xc9,0x2b,0x0,0xc8,0x4a,0x61,0xc0,0xa8,0x8d,0xdd,0x32,0xcd,0x1,0xbf,0xa5,0xc8,0x79,0x6d,0x78,0x1,0x6d,0x5d,0x70,0xd,0xb6,0xe4,0x70,0x13,0x65,0xb0,0xe8,0xb6,0xa7,0x90,0x72,0xee,0x36,0xfb,0x73,0xb0,0x11,0x12,0xff,0x29,0xd,0x5,0xb7,0x4c,0x48,0x33,0x25,0xa9,0xa9,0x6a,0x75,0xce,0x3f,0x42,0x69,0x6d,0x63,0x3e,0x7a,0xde,0x83,0xb0,0x65,0xbb,0x9e,0xe6,0xaa,0xf2,0x4c,0xc3,0x72,0x5e,0xb6,0x65,0x6d,0x79,0x5e,0x7a,0x77,0xe2,0x4a,0xcc,0xdb,0xfc,0xeb,0xab,0xc9,0xe4,0xf2,0x95,0xff,0x7a,0x1e,0xcf,0xb2,0xfb,0x55,0x88,0x7c,0x95,0xc4,0x75,0xf7,0x83,0xbf,0x9c,0x15,0x97,0x28,0xd7,0xaf,0x10,0x3,0xf2,0x92,0x69,0xc3,0xed,0xc5,0xe8,0x36,0xbb,0x9a,0x7c,0x18,0x1d,0x8,0x35,0xab,0xf8,0xc5,0xe8,0x51,0xf0,0x6d,0xa3,0xb4,0x1d,0x41,0xae,0x10,0xa4,0xc6,0x83,0x5b,0x51,0xd8,0xf2,0xa2,0xe0,0x8f,0xa8,0xf3,0xc4,0x2d,0xc6,0x20,0x6a,0x61,0x5,0x93,0x13,0x93,0x33,0xc9,0x2f,0x7e,0x9b,0x7e,0x18,0x43,0x85,0x7b,0x15,0x6e,0xb5,0xe2,0x4c,0x28,0x5a,0x5c,0xf1,0x49,0xae,0xa4,0xd2,0x47,0x72,0xff,0xf5,0xee,0xfd,0xbb,0xdf,0xdf,0x85,0x78,0xfa,0xbb,0xe3,0x5,0x37,0xb9,0x16,0x8d,0x15,0xaa,0x3e,0x3a,0x4e,0xc6,0x2,0x59,0xdb,0x89,0xb7,0xc2,0x4a,0x7e,0x39,0x6c,0xc2,0xff,0x20,0x58,0xab,0xd6,0xfa,0x5e,0x47,0x70,0x32,0xa5,0xa8,0xbf,0x82,0xe6,0xf2,0x62,0x64,0xec,0x4e,0x72,0x53,0x72,0x8e,0x86,0xd9,0x5d,0x43,0x3a,0xf1,0x6f,0xd6,0xcb,0x8d,0x19,0x41,0xa9,0xf9,0xa6,0x3f,0x31,0xa5,0xd,0x74,0x9d,0xd7,0xf9,0xec,0x95,0xbf,0x56,0xc5,0xce,0xc1,0xd5,0xec,0x91,0x7e,0xf1,0xab,0x95,0x90,0x4b,0x66,0xcc,0xc5,0xa8,0xe2,0x75,0x3b,0xea,0x76,0x1d,0xd8,0xa5,0xcf,0x7a,0x61,0x2,0x6f,0xff,0xdb,0x94,0x2e,0x60,0x74,0x50,0xd1,0xf7,0xd8,0xa5,0xef,0xe1,0xb1,0xa7,0x38,0xf0,0x4a,0xac,0xa8,0x1f,0x4c,0xcf,0x94,0xf6,0xcb,0x17,0x79,0x2c,0xd7,0xe8,0x74,0x26,0x7b,0x9e,0xac,0x5f,0xbe,0xc8,0x93,0x6b,0x5e,0x8,0xbb,0x87,0xe9,0x5d,0x76,0x7c,0xde,0xf7,0x5a,0xe9,0x2c,0xf6,0x7a,0x93,0xfd,0x42,0x3c,0x82,0x28,0xc8,0x43,0xcc,0xb6,0xe8,0x1e,0xdf,0xc3,0x9d,0xee,0x8a,0x99,0xa8,0x7b,0x2e,0xc3,0x73,0xba,0xaf,0x1,0xb3,0x7c,0x73,0x39,0x17,0x6,0x1d,0x25,0x2a,0xae,0xd1,0x9f,0x6f,0x6,0x4a,0xb3,0xff,0xea,0xd3,0xc7,0x2a,0x25,0x29,0x75,0x4,0xdd,0x73,0x81,0xa9,0x63,0x15,0xac,0x39,0xb4,0x94,0x45,0x94,0x19,0x96,0x1b,0x72,0xc5,0x18,0xac,0x46,0x38,0xf7,0xc5,0xea,0x2,0x78,0xd1,0xe6,0x8c,0x20,0x99,0x84,0xa6,0xd5,0x8d,0x32,0xdc,0x80,0xaa,0xe5,0x6e,0xea,0xaf,0xf5,0x1,0x62,0xc9,0x1f,0x31,0xf,0x51,0x18,0x8,0x4b,0x92,0xb,0x5,0x98,0x0,0x15,0xa0,0x60,0x74,0x5,0xb3,0x1c,0xa,0x56,0xb1,0x7,0xfe,0xfa,0x84,0xeb,0x64,0x91,0x61,0xbe,0x52,0x14,0x8a,0xba,0x75,0x80,0xa0,0x36,0x98,0xc3,0xa8,0x71,0xa3,0xd5,0x7f,0xd1,0x6c,0x24,0xb6,0xb5,0x25,0x70,0xd8,0xa9,0xf6,0xf5,0xde,0x4e,0xaf,0xd9,0x3b,0xf4,0xc4,0x37,0x4f,0x79,0xaa,0x2f,0xf,0xcf,0xb9,0xe9,0xa8,0x82,0x9c,0x28,0x36,0x53,0xcd,0x4e,0x8b,0x87,0xd2,0xc2,0x2f,0xf9,0xaf,0xf0,0xf6,0xb7,0xb7,0x6f,0x20,0xdd,0xd7,0x7,0xc8,0xb0,0x40,0xd4,0x98,0x71,0xf,0x82,0x9b,0xe7,0x6d,0x5b,0x51,0xcc,0x18,0x43,0x56,0xa1,0x41,0x25,0xd7,0x7c,0xbd,0x83,0x7,0xcd,0xf0,0x2e,0x8a,0x31,0x6c,0x34,0x96,0x2b,0xb4,0x96,0x6a,0xc6,0x3,0x1f,0x93,0xff,0x58,0xbd,0x83,0x86,0x6b,0x43,0x6e,0x58,0xdb,0xee,0x42,0x0,0xab,0xa,0xaa,0x32,0x8,0xdd,0xfb,0x67,0x28,0x8c,0x74,0x5f,0x98,0x31,0x2a,0x17,0xe8,0xf0,0x2,0xef,0x20,0x6f,0x31,0x77,0x6c,0xe7,0x4d,0x2a,0x81,0x6,0x7e,0xa1,0xaa,0x38,0x4a,0x7b,0x8e,0xd1,0xaf,0xe,0xac,0xe0,0x4c,0xe,0x52,0x45,0xed,0x2a,0xe7,0xfe,0x8,0x6c,0xb1,0x2a,0x62,0xf4,0x62,0x7e,0x1b,0xab,0x85,0xf3,0x29,0xd5,0xa5,0x5c,0xb6,0x5,0xe9,0xb4,0x27,0x4b,0x51,0x89,0x1e,0x89,0xd8,0x9d,0xbf,0xcc,0x20,0x14,0x41,0x30,0x36,0xc6,0x4e,0x7f,0x2c,0x61,0xaa,0x10,0x1b,0xfa,0xe5,0xce,0xdc,0xa6,0x5d,0x4b,0x61,0xb0,0xda,0x15,0x82,0x20,0xd6,0xad,0xc5,0x4d,0x43,0x9b,0xee,0x2e,0x5c,0x1c,0x7a,0x18,0x48,0x86,0xcb,0x83,0x9a,0x28,0x49,0x50,0x24,0x6e,0x4e,0xb4,0xed,0x62,0x16,0xd1,0x1a,0x72,0xb8,0xed,0x5d,0x48,0xc1,0xf,0xdb,0x52,0x55,0xa7,0x96,0x89,0x83,0x7e,0x9b,0x56,0xd7,0xa8,0x42,0x97,0x15,0x18,0xbb,0x46,0x39,0xd,0x5c,0xd8,0xe1,0xe,0xb1,0x6d,0x94,0x94,0x6a,0x4b,0x26,0x63,0x90,0x62,0x6e,0xa3,0xa5,0xe6,0xe3,0xcb,0xd1,0xcc,0xd6,0xea,0x91,0x3b,0x9b,0xbb,0xf0,0xa9,0x95,0x45,0x93,0x3a,0x15,0x5d,0x60,0x1f,0xa2,0xa2,0x27,0x99,0x92,0x49,0x49,0x69,0xd9,0x39,0x18,0xf5,0xc1,0xeb,0x60,0x4f,0x98,0xad,0x49,0x3d,0xac,0x14,0x35,0xb5,0x7,0xa0,0x4e,0x42,0xfa,0x7c,0xef,0x8e,0xe9,0xb,0xfa,0x5d,0x87,0x90,0xc6,0x57,0xd9,0x5d,0x90,0x84,0x10,0xa5,0xb0,0x4a,0xe2,0x2f,0xd1,0x3c,0x9c,0xc3,0x28,0x48,0x71,0x3d,0x1a,0xc3,0x5d,0x94,0x5d,0xc7,0xb7,0x19,0xe0,0x89,0x24,0x58,0x66,0xf7,0x10,0x5f,0x41,0xb0,0xbc,0x87,0x3f,0xa2,0xe5,0x7c,0xc,0xe1,0x7f,0x56,0x49,0x98,0xa6,0x10,0x27,0x83,0xc8,0xe8,0x66,0xb5,0x88,0x42,0xa4,0x45,0xcb,0xd9,0xe2,0x76,0x1e,0x2d,0x3f,0xc3,0x27,0xe4,0x5f,0xc6,0x98,0x56,0x11,0x26,0x17,0xa,0xcf,0x62,0x7,0xdc,0x8b,0x8c,0xc2,0x94,0x84,0xde,0x84,0xc9,0xec,0x1a,0x97,0xc1,0xa7,0x68,0x11,0x65,0xf7,0xe3,0x41,0xe0,0x55,0x94,0x2d,0x9,0xe3,0x2a,0x4e,0x20,0x80,0x55,0x90,0x64,0xd1,0xec,0x76,0x11,0x24,0xb0,0xba,0x4d,0x56,0x71,0x1a,0xa2,0x3a,0x73,0x14,0xbf,0x8c,0x96,0x57,0x9,0xa2,0x85,0x37,0xe1,0x32,0x9b,0x22,0x3a,0xee,0x41,0xf8,0x5,0x17,0x90,0x5e,0x7,0x8b,0x5,0x41,0xe,0x32,0x83,0x5b,0xb4,0x2a,0x21,0xbd,0x61,0x16,0xaf,0xee,0x93,0xe8,0xf3,0x75,0x6,0xd7,0xf1,0x62,0x1e,0xe2,0xe6,0xa7,0x10,0x35,0xd,0x3e,0x2d,0xc2,0xe,0x12,0x8d,0x9d,0x2d,0x82,0xe8,0x66,0xc,0xf3,0xe0,0x26,0xf8,0x1c,0x3a,0xae,0x18,0xa5,0x1d,0x6c,0xa6,0xe3,0x9d,0xd6,0x70,0x77,0x1d,0x12,0x89,0xf0,0x3,0xfc,0x9b,0x65,0x51,0xbc,0x24,0xf3,0x66,0xf1,0x32,0x4b,0x70,0x39,0x46,0xeb,0x93,0x6c,0x10,0x71,0x17,0xa5,0xe1,0x18,0x82,0x24,0x4a,0xc9,0x51,0x57,0x49,0x7c,0x73,0x30,0x9c,0xdc,0x8e,0x9c,0xb1,0x13,0x86,0xfc,0xcb,0xb0,0x93,0x46,0x57,0x72,0x7a,0x73,0x78,0x84,0xd6,0xb7,0x69,0x38,0x8,0x86,0x79,0x18,0x2c,0x50,0x66,0x4a,0xcc,0xc7,0xa6,0xef,0x99,0xa6,0x3f,0x51,0x3a,0x67,0x5d,0x3f,0x7b,0xae,0x74,0xc6,0x18,0x75,0xfa,0x50,0x88,0xe,0x4d,0xe5,0xa8,0x7e,0x9f,0x26,0xcb,0x4,0x86,0x5e,0xb9,0x9f,0xbf,0xb6,0xdb,0xed,0x94,0xe9,0xa2,0x15,0xb5,0x9a,0xe6,0x39,0xe,0x10,0x54,0xd,0x71,0x22,0xf9,0x73,0x2d,0x59,0x8d,0xe3,0x48,0xd0,0xd1,0x5c,0x1f,0xfd,0x81,0xa8,0xa3,0x51,0x8e,0x15,0x6c,0xa3,0x5b,0x61,0xbd,0xa0,0xff,0xf8,0x73,0xc9,0xd5,0x4a,0x7c,0xe3,0xf2,0x1c,0x1,0x29,0xd,0x51,0xb0,0xd,0xac,0x35,0xd3,0xbb,0x7f,0xc,0x35,0x57,0x36,0x45,0x90,0x73,0x24,0x24,0x60,0xf6,0xea,0x9f,0x4,0x1a,0xc6,0x53,0xf,0x3b,0x46,0x41,0x2e,0xf7,0x2c,0xf6,0x10,0xaf,0x62,0x6,0x87,0x15,0x6f,0x2b,0x36,0xa2,0xa0,0x9,0xee,0xdc,0x85,0x5f,0x12,0x4c,0xdd,0x74,0xf5,0xe1,0xed,0xfb,0xf7,0xf0,0x6f,0x48,0x83,0x9b,0x39,0xf4,0x6e,0xc5,0x36,0xa7,0xf9,0xdf,0xd4,0x3,0xa7,0xcd,0x5a,0x4d,0x70,0x64,0xf5,0x50,0x66,0x60,0x76,0x75,0x9e,0xcd,0x56,0xe7,0xa8,0x47,0xc4,0x7f,0xc,0x70,0xc7,0xd7,0x29,0xd7,0x38,0x6c,0x3c,0xf,0x33,0x1c,0xf9,0x69,0xaf,0xa6,0xa2,0x6a,0x24,0x9f,0x2d,0xa2,0x73,0x90,0x81,0x44,0xc2,0x7f,0x22,0x91,0xb2,0x12,0xc5,0x98,0xe7,0x27,0x35,0xa2,0x52,0xcb,0xa1,0x79,0x6a,0xa7,0x6a,0x7a,0xc6,0x30,0x8b,0x13,0x83,0x6c,0x30,0xa5,0x2a,0xf6,0x95,0x1a,0xd0,0xc9,0x54,0x84,0xd3,0x95,0x14,0x16,0xbb,0x29,0x37,0xd,0xc7,0xce,0x2f,0xe5,0xee,0x87,0x99,0x86,0xd,0xbf,0xb6,0xaa,0x16,0xaa,0x35,0x53,0x6e,0xce,0x8d,0x3c,0xa2,0x93,0x99,0x2e,0x95,0x49,0x5,0x7,0x4e,0xf3,0x82,0x11,0xf,0xb5,0xeb,0x63,0xe8,0xd,0x4d,0x4d,0x8e,0xba,0xe,0x66,0xbd,0x6,0xfe,0xd,0xbb,0x9a,0xe0,0x75,0xce,0x9f,0x53,0x2,0x87,0x37,0xdb,0xae,0x79,0xe7,0x72,0xbe,0x23,0x9c,0x27,0x92,0x3d,0xed,0x29,0x3,0x7e,0x3f,0x88,0xa2,0x6,0xd,0x66,0xa9,0x74,0xdd,0x15,0xe7,0xe,0x2,0xb6,0x98,0xb5,0xf9,0xf,0x6d,0xc6,0xf1,0xf6,0x6b,0x87,0x7a,0x8e,0x96,0x69,0xf6,0x88,0x3e,0x5d,0x88,0x7a,0xc0,0x73,0x63,0xab,0x1b,0x83,0x69,0xee,0x70,0xe3,0x17,0xda,0xbb,0xc1,0xc9,0xbf,0xee,0xbc,0x8c,0x1d,0xb8,0x71,0x8d,0x17,0x49,0xad,0x71,0x83,0x10,0xe4,0xad,0xb1,0x38,0x66,0x54,0xac,0xe0,0xb0,0x4f,0xcd,0xef,0x14,0x23,0x29,0xf7,0xf1,0xad,0xc3,0x68,0xd,0x31,0xb,0xfb,0xf2,0x30,0xeb,0x7b,0xfb,0x7,0x80,0xbf,0x51,0xa,0x13,0xbc,0x3f,0xf3,0x57,0x42,0xf9,0xe4,0xfd,0xfa,0x84,0x97,0xdd,0x13,0x78,0x8,0x65,0x52,0x75,0x50,0xd7,0x47,0x21,0xb5,0x7b,0x91,0x60,0x28,0xd2,0x90,0x42,0x4f,0x12,0xda,0x3b,0x1c,0xf9,0xfb,0x93,0xf1,0x99,0xd2,0x83,0xa6,0xa4,0xf7,0xb9,0x82,0x27,0xe4,0x5e,0x4f,0xdf,0xdb,0xbb,0xc1,0xf7,0xba,0x87,0x23,0xbd,0x24,0xe9,0x15,0xfe,0x7f,0xdb,0x4e,0x2e,0x29,0x30,0x10,0x0,0x0 }; +const uint8_t credits_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0xa5,0x57,0x6d,0x6f,0xdb,0x38,0x12,0xfe,0xde,0x5f,0x31,0xf5,0x1,0x87,0x5d,0xc0,0xb6,0xb6,0x2d,0x50,0x74,0xb,0x25,0x80,0x6a,0x2b,0x8d,0xb0,0x8e,0x65,0x48,0x4a,0x73,0xf9,0xb4,0xa0,0x25,0x3a,0xe2,0x95,0x12,0x5,0x92,0x8a,0x6b,0xe0,0x7e,0xfc,0xcd,0x50,0xb2,0x6c,0xd7,0x49,0xba,0xdb,0x5,0x82,0x58,0xe4,0x70,0xe6,0x99,0x19,0xce,0x1b,0xfd,0xd7,0x93,0xc9,0x2b,0x0,0xc8,0x4a,0x61,0xc0,0xa8,0x8d,0xdd,0x32,0xcd,0x1,0xbf,0xa5,0xc8,0x79,0x6d,0x78,0x1,0x6d,0x5d,0x70,0xd,0xb6,0xe4,0x70,0x13,0x65,0xb0,0xe8,0xb6,0xa7,0x90,0x72,0xee,0x36,0xfb,0x73,0xb0,0x11,0x12,0xff,0x29,0xd,0x5,0xb7,0x4c,0x48,0x33,0x25,0xa9,0xa9,0x6a,0x75,0xce,0x3f,0x42,0x69,0x6d,0x63,0x3e,0x7a,0xde,0x83,0xb0,0x65,0xbb,0x9e,0xe6,0xaa,0xf2,0x4c,0xc3,0x72,0x5e,0xb6,0x65,0x6d,0x79,0x5e,0x7a,0x77,0xe2,0x4a,0xcc,0xdb,0xfc,0xeb,0xab,0xc9,0xe4,0xf2,0x95,0xff,0x7a,0x1e,0xcf,0xb2,0xfb,0x55,0x88,0x7c,0x95,0xc4,0x75,0xf7,0x83,0xbf,0x9c,0x15,0x97,0x28,0xd7,0xaf,0x10,0x3,0xf2,0x92,0x69,0xc3,0xed,0xc5,0xe8,0x36,0xbb,0x9a,0x7c,0x18,0x1d,0x8,0x35,0xab,0xf8,0xc5,0xe8,0x51,0xf0,0x6d,0xa3,0xb4,0x1d,0x41,0xae,0x10,0xa4,0xc6,0x83,0x5b,0x51,0xd8,0xf2,0xa2,0xe0,0x8f,0xa8,0xf3,0xc4,0x2d,0xc6,0x20,0x6a,0x61,0x5,0x93,0x13,0x93,0x33,0xc9,0x2f,0x7e,0x9b,0x7e,0x18,0x43,0x85,0x7b,0x15,0x6e,0xb5,0xe2,0x4c,0x28,0x5a,0x5c,0xf1,0x49,0xae,0xa4,0xd2,0x47,0x72,0xff,0xf5,0xee,0xfd,0xbb,0xdf,0xdf,0x85,0x78,0xfa,0xbb,0xe3,0x5,0x37,0xb9,0x16,0x8d,0x15,0xaa,0x3e,0x3a,0x4e,0xc6,0x2,0x59,0xdb,0x89,0xb7,0xc2,0x4a,0x7e,0x39,0x6c,0xc2,0xff,0x20,0x58,0xab,0xd6,0xfa,0x5e,0x47,0x70,0x32,0xa5,0xa8,0xbf,0x82,0xe6,0xf2,0x62,0x64,0xec,0x4e,0x72,0x53,0x72,0x8e,0x86,0xd9,0x5d,0x43,0x3a,0xf1,0x6f,0xd6,0xcb,0x8d,0x19,0x41,0xa9,0xf9,0xa6,0x3f,0x31,0xa5,0xd,0x74,0x9d,0xd7,0xf9,0xec,0x95,0xbf,0x56,0xc5,0xce,0xc1,0xd5,0xec,0x91,0x7e,0xf1,0xab,0x95,0x90,0x4b,0x66,0xcc,0xc5,0xa8,0xe2,0x75,0x3b,0xea,0x76,0x1d,0xd8,0xa5,0xcf,0x7a,0x61,0x2,0x6f,0xff,0xdb,0x94,0x2e,0x60,0x74,0x50,0xd1,0xf7,0xd8,0xa5,0xef,0xe1,0xb1,0xa7,0x38,0xf0,0x4a,0xac,0xa8,0x1f,0x4c,0xcf,0x94,0xf6,0xcb,0x17,0x79,0x2c,0xd7,0xe8,0x74,0x26,0x7b,0x9e,0xac,0x5f,0xbe,0xc8,0x93,0x6b,0x5e,0x8,0xbb,0x87,0xe9,0x5d,0x76,0x7c,0xde,0xf7,0x5a,0xe9,0x2c,0xf6,0x7a,0x93,0xfd,0x42,0x3c,0x82,0x28,0xc8,0x43,0xcc,0xb6,0xe8,0x1e,0xdf,0xc3,0x9d,0xee,0x8a,0x99,0xa8,0x7b,0x2e,0xc3,0x73,0xba,0xaf,0x1,0xb3,0x7c,0x73,0x39,0x17,0x6,0x1d,0x25,0x2a,0xae,0xd1,0x9f,0x6f,0x6,0x4a,0xb3,0xff,0xea,0xd3,0xc7,0x2a,0x25,0x29,0x75,0x4,0xdd,0x73,0x81,0xa9,0x63,0x15,0xac,0x39,0xb4,0x94,0x45,0x94,0x19,0x96,0x1b,0x72,0xc5,0x18,0xac,0x46,0x38,0xf7,0xc5,0xea,0x2,0x78,0xd1,0xe6,0x8c,0x20,0x99,0x84,0xa6,0xd5,0x8d,0x32,0xdc,0x80,0xaa,0xe5,0x6e,0xea,0xaf,0xf5,0x1,0x62,0xc9,0x1f,0x31,0xf,0x51,0x18,0x8,0x4b,0x92,0xb,0x5,0x98,0x0,0x15,0xa0,0x60,0x74,0x5,0xb3,0x1c,0xa,0x56,0xb1,0x7,0xfe,0xfa,0x84,0xeb,0x64,0x91,0x61,0xbe,0x52,0x14,0x8a,0xba,0x75,0x80,0xa0,0x36,0x98,0xc3,0xa8,0x71,0xa3,0xd5,0x7f,0xd1,0x6c,0x24,0xb6,0xb5,0x25,0x70,0xd8,0xa9,0xf6,0xf5,0xde,0x4e,0xaf,0xd9,0x3b,0xf4,0xc4,0x37,0x4f,0x79,0xaa,0x2f,0xf,0xcf,0xb9,0xe9,0xa8,0x82,0x9c,0x28,0x36,0x53,0xcd,0x4e,0x8b,0x87,0xd2,0xc2,0x2f,0xf9,0xaf,0xf0,0xf6,0xb7,0xb7,0x6f,0x20,0xdd,0xd7,0x7,0xc8,0xb0,0x40,0xd4,0x98,0x71,0xf,0x82,0x9b,0xe7,0x6d,0x5b,0x51,0xcc,0x18,0x43,0x56,0xa1,0x41,0x25,0xd7,0x7c,0xbd,0x83,0x7,0xcd,0xf0,0x2e,0x8a,0x31,0x6c,0x34,0x96,0x2b,0xb4,0x96,0x6a,0xc6,0x3,0x1f,0x93,0xff,0x58,0xbd,0x83,0x86,0x6b,0x43,0x6e,0x58,0xdb,0xee,0x42,0x0,0xab,0xa,0xaa,0x32,0x8,0xdd,0xfb,0x67,0x28,0x8c,0x74,0x5f,0x98,0x31,0x2a,0x17,0xe8,0xf0,0x2,0xef,0x20,0x6f,0x31,0x77,0x6c,0xe7,0x4d,0x2a,0x81,0x6,0x7e,0xa1,0xaa,0x38,0x4a,0x7b,0x8e,0xd1,0xaf,0xe,0xac,0xe0,0x4c,0xe,0x52,0x45,0xed,0x2a,0xe7,0xfe,0x8,0x6c,0xb1,0x2a,0x62,0xf4,0x62,0x7e,0x1b,0xab,0x85,0xf3,0x29,0xd5,0xa5,0x5c,0xb6,0x5,0xe9,0xb4,0x27,0x4b,0x51,0x89,0x1e,0x89,0xd8,0x9d,0xbf,0xcc,0x20,0x14,0x41,0x30,0x36,0xc6,0x4e,0x7f,0x2c,0x61,0xaa,0x10,0x1b,0xfa,0xe5,0xce,0xdc,0xa6,0x5d,0x4b,0x61,0xb0,0xda,0x15,0x82,0x20,0xd6,0xad,0xc5,0x4d,0x43,0x9b,0xee,0x2e,0x5c,0x1c,0x7a,0x18,0x48,0x86,0xcb,0x83,0x9a,0x28,0x49,0x50,0x24,0x6e,0x4e,0xb4,0xed,0x62,0x16,0xd1,0x1a,0x72,0xb8,0xed,0x5d,0x48,0xc1,0xf,0xdb,0x52,0x55,0xa7,0x96,0x89,0x83,0x7e,0x9b,0x56,0xd7,0xa8,0x42,0x97,0x15,0x18,0xbb,0x46,0x39,0xd,0x5c,0xd8,0xe1,0xe,0xb1,0x6d,0x94,0x94,0x6a,0x4b,0x26,0x63,0x90,0x62,0x6e,0xa3,0xa5,0xe6,0xe3,0xcb,0xd1,0xcc,0xd6,0xea,0x91,0x3b,0x9b,0xbb,0xf0,0xa9,0x95,0x45,0x93,0x3a,0x15,0x5d,0x60,0x1f,0xa2,0xa2,0x27,0x99,0x92,0x49,0x49,0x69,0xd9,0x39,0x18,0xf5,0xc1,0xeb,0x60,0x4f,0x98,0xad,0x49,0x3d,0xac,0x14,0x35,0xb5,0x7,0xa0,0x4e,0x42,0xfa,0x7c,0xef,0x8e,0xe9,0xb,0xfa,0x5d,0x87,0x90,0xc6,0x57,0xd9,0x5d,0x90,0x84,0x10,0xa5,0xb0,0x4a,0xe2,0x2f,0xd1,0x3c,0x9c,0xc3,0x28,0x48,0x71,0x3d,0x1a,0xc3,0x5d,0x94,0x5d,0xc7,0xb7,0x19,0xe0,0x89,0x24,0x58,0x66,0xf7,0x10,0x5f,0x41,0xb0,0xbc,0x87,0x3f,0xa2,0xe5,0x7c,0xc,0xe1,0x7f,0x56,0x49,0x98,0xa6,0x10,0x27,0x83,0xc8,0xe8,0x66,0xb5,0x88,0x42,0xa4,0x45,0xcb,0xd9,0xe2,0x76,0x1e,0x2d,0x3f,0xc3,0x27,0xe4,0x5f,0xc6,0x98,0x56,0x11,0x26,0x17,0xa,0xcf,0x62,0x7,0xdc,0x8b,0x8c,0xc2,0x94,0x84,0xde,0x84,0xc9,0xec,0x1a,0x97,0xc1,0xa7,0x68,0x11,0x65,0xf7,0xe3,0x41,0xe0,0x55,0x94,0x2d,0x9,0xe3,0x2a,0x4e,0x20,0x80,0x55,0x90,0x64,0xd1,0xec,0x76,0x11,0x24,0xb0,0xba,0x4d,0x56,0x71,0x1a,0xa2,0x3a,0x73,0x14,0xbf,0x8c,0x96,0x57,0x9,0xa2,0x85,0x37,0xe1,0x32,0x9b,0x22,0x3a,0xee,0x41,0xf8,0x5,0x17,0x90,0x5e,0x7,0x8b,0x5,0x41,0xe,0x32,0x83,0x5b,0xb4,0x2a,0x21,0xbd,0x61,0x16,0xaf,0xee,0x93,0xe8,0xf3,0x75,0x6,0xd7,0xf1,0x62,0x1e,0xe2,0xe6,0xa7,0x10,0x35,0xd,0x3e,0x2d,0xc2,0xe,0x12,0x8d,0x9d,0x2d,0x82,0xe8,0x66,0xc,0xf3,0xe0,0x26,0xf8,0x1c,0x3a,0xae,0x18,0xa5,0x1d,0x6c,0xa6,0xe3,0x9d,0xd6,0x70,0x77,0x1d,0x12,0x89,0xf0,0x3,0xfc,0x9b,0x65,0x51,0xbc,0x24,0xf3,0x66,0xf1,0x32,0x4b,0x70,0x39,0x46,0xeb,0x93,0x6c,0x10,0x71,0x17,0xa5,0xe1,0x18,0x82,0x24,0x4a,0xc9,0x51,0x57,0x49,0x7c,0x73,0x30,0x9c,0xdc,0x8e,0x9c,0xb1,0x13,0x86,0xfc,0xcb,0xb0,0x93,0x46,0x57,0x72,0x7a,0x73,0x78,0x84,0xd6,0xb7,0x69,0x38,0x8,0x86,0x79,0x18,0x2c,0x50,0x66,0x4a,0xcc,0xc7,0xa6,0xef,0x99,0xa6,0x3f,0x51,0x3a,0x67,0x5d,0x3f,0x7b,0xae,0x74,0xc6,0x18,0x75,0xfa,0x50,0x88,0xe,0x4d,0xe5,0xa8,0x7e,0x9f,0x26,0xcb,0x4,0x86,0x5e,0xb9,0x9f,0xbf,0xb6,0xdb,0xed,0x94,0xe9,0xa2,0x15,0xb5,0x9a,0xe6,0x39,0xe,0x10,0x54,0xd,0x71,0x22,0xf9,0x73,0x2d,0x59,0x8d,0xe3,0x48,0xd0,0xd1,0x5c,0x1f,0xfd,0x81,0xa8,0xa3,0x51,0x8e,0x15,0x6c,0xa3,0x5b,0x61,0xbd,0xa0,0xff,0xf8,0x73,0xc9,0xd5,0x4a,0x7c,0xe3,0xf2,0x1c,0x1,0x29,0xd,0x51,0xb0,0xd,0xac,0x35,0xd3,0xbb,0x7f,0xc,0x35,0x57,0x36,0x45,0x90,0x73,0x24,0x24,0x60,0xf6,0xea,0x9f,0x4,0x1a,0xc6,0x53,0xf,0x3b,0x46,0x41,0x2e,0xf7,0x2c,0xf6,0x10,0xaf,0x62,0x6,0x87,0x15,0x6f,0x2b,0x36,0xa2,0xa0,0x9,0xee,0xdc,0x85,0x5f,0x12,0x4c,0xdd,0x74,0xf5,0xe1,0xed,0xfb,0xf7,0xf0,0x6f,0x48,0x83,0x9b,0x39,0xf4,0x6e,0xc5,0x36,0xa7,0xf9,0xdf,0xd4,0x3,0xa7,0xcd,0x5a,0x4d,0x70,0x64,0xf5,0x50,0x66,0x60,0x76,0x75,0x9e,0xcd,0x56,0xe7,0xa8,0x47,0xc4,0x7f,0xc,0x70,0xc7,0xd7,0x29,0xd7,0x38,0x6c,0x3c,0xf,0x33,0x1c,0xf9,0x69,0xaf,0xa6,0xa2,0x6a,0x24,0x9f,0x2d,0xa2,0x73,0x90,0x81,0x44,0xc2,0x7f,0x22,0x91,0xb2,0x12,0xc5,0x98,0xe7,0x27,0x35,0xa2,0x52,0xcb,0xa1,0x79,0x6a,0xa7,0x6a,0x7a,0xc6,0x30,0x8b,0x13,0x83,0x6c,0x30,0xa5,0x2a,0xf6,0x95,0x1a,0xd0,0xc9,0x54,0x84,0xd3,0x95,0x14,0x16,0xbb,0x29,0x37,0xd,0xc7,0xce,0x2f,0xe5,0xee,0x87,0x99,0x86,0xd,0xbf,0xb6,0xaa,0x16,0xaa,0x35,0x53,0x6e,0xce,0x8d,0x3c,0xa2,0x93,0x99,0x2e,0x95,0x49,0x5,0x7,0x4e,0xf3,0x82,0x11,0xf,0xb5,0xeb,0x63,0xe8,0xd,0x4d,0x4d,0x8e,0xba,0xe,0x66,0xbd,0x6,0xfe,0xd,0xbb,0x9a,0xe0,0x75,0xce,0x9f,0x53,0x2,0x87,0x37,0xdb,0xae,0x79,0xe7,0x72,0xbe,0x23,0x9c,0x27,0x92,0x3d,0xed,0x29,0x3,0x7e,0x3f,0x88,0xa2,0x6,0xd,0x66,0xa9,0x74,0xdd,0x15,0xe7,0xe,0x2,0xb6,0x98,0xb5,0xf9,0xf,0x6d,0xc6,0xf1,0xf6,0x6b,0x87,0x7a,0x8e,0x96,0x69,0xf6,0x88,0x3e,0x5d,0x88,0x7a,0xc0,0x73,0x63,0xab,0x1b,0x83,0x69,0xee,0x70,0xe3,0x17,0xda,0xbb,0xc1,0xc9,0xbf,0xee,0xbc,0x8c,0x1d,0xb8,0x71,0x8d,0x17,0x49,0xad,0x71,0x83,0x10,0xe4,0xad,0xb1,0x38,0x66,0x54,0xac,0xe0,0xb0,0x4f,0xcd,0xef,0x14,0x23,0x29,0xf7,0xf1,0xad,0xc3,0x68,0xd,0x31,0xb,0xfb,0xf2,0x30,0xeb,0x7b,0xfb,0x7,0x80,0xbf,0x51,0xa,0x13,0xbc,0x3f,0xf3,0x57,0x42,0xf9,0xe4,0xfd,0xfa,0x84,0x97,0xdd,0x13,0x78,0x8,0x65,0x52,0x75,0x50,0xd7,0x47,0x21,0xb5,0x7b,0x91,0x60,0x28,0xd2,0x90,0x42,0x4f,0x12,0xda,0x3b,0x1c,0xf9,0xfb,0x93,0xf1,0x99,0xd2,0x83,0xa6,0xa4,0xf7,0xb9,0x82,0x27,0xe4,0x5e,0x4f,0xdf,0xdb,0xbb,0xc1,0xf7,0xba,0x87,0x23,0xbd,0x24,0xe9,0x15,0xfe,0x7f,0xdb,0x4e,0x2e,0x29,0x30,0x10,0x0,0x0 }; -const uint8_t error404_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0x8d,0x54,0x6d,0x6f,0xd3,0x30,0x10,0xfe,0xcc,0x7e,0xc5,0x2d,0x7c,0x1,0x69,0x89,0xf7,0x26,0x34,0x26,0xb7,0x12,0xec,0x45,0x20,0x81,0x98,0xd4,0x22,0xc4,0x27,0xe4,0x3a,0xd7,0xda,0xcc,0xb1,0x23,0xdb,0xe9,0x56,0x89,0x1f,0xcf,0x39,0x49,0xb7,0xf4,0x5,0xb4,0x4a,0x69,0x72,0xe7,0x7b,0x7b,0x9e,0xbb,0x33,0x3f,0xcc,0xf3,0x3,0x0,0x98,0x2a,0x1d,0x20,0xb8,0x79,0x7c,0x10,0x1e,0x81,0xbe,0x8d,0x96,0x68,0x3,0x96,0xd0,0xd8,0x12,0x3d,0x44,0x85,0xf0,0xf5,0xf3,0x14,0xbe,0x74,0xea,0x2,0x26,0x88,0xad,0xb2,0xb7,0x83,0xb9,0x36,0xf4,0xe7,0x3c,0x94,0x18,0x85,0x36,0xa1,0x48,0x51,0x27,0xae,0xf1,0x12,0x2f,0x41,0xc5,0x58,0x87,0x4b,0xc6,0x16,0x3a,0xaa,0x66,0x56,0x48,0x57,0xb1,0x50,0xb,0x89,0xaa,0x51,0x36,0xa2,0x54,0xec,0x87,0xbe,0xd5,0xd7,0x8d,0xbc,0x3f,0xc8,0xf3,0xf1,0x1,0x3f,0xbc,0xfe,0x76,0x35,0xfd,0x79,0x77,0x43,0x7e,0x95,0x21,0xb9,0x7b,0x51,0x3c,0xe0,0xa,0x45,0xd9,0x7d,0xb6,0x62,0x45,0xc9,0x40,0x2a,0xe1,0x3,0xc6,0x51,0xf6,0x7d,0x7a,0x9b,0x5f,0x64,0xdb,0xc7,0x56,0x54,0x38,0xca,0x96,0x1a,0x1f,0x6a,0xe7,0x63,0x6,0xd2,0x51,0x4e,0x4b,0xe6,0xf,0xba,0x8c,0x6a,0x54,0xe2,0x92,0x20,0xe4,0xad,0x70,0x4,0xda,0xea,0xa8,0x85,0xc9,0x83,0x14,0x6,0x47,0xc7,0xc5,0xc5,0x11,0x54,0xa4,0xab,0x48,0xd5,0xe8,0x7f,0x84,0x26,0x1a,0x2a,0xcc,0xa5,0x33,0xce,0xf,0xa2,0xbf,0x3e,0x7b,0x77,0xf6,0xfe,0xec,0x86,0x7c,0xf6,0x3a,0x95,0x18,0xa4,0xd7,0x75,0xd4,0xce,0xe,0x9c,0x12,0xf,0x90,0x88,0x18,0xa6,0x8a,0x3a,0x1a,0x1c,0x3f,0x1d,0xc1,0x1f,0x38,0x3f,0x3e,0xe7,0xac,0x53,0xf,0xa2,0x1b,0x6d,0xef,0xc1,0xa3,0x19,0x65,0x21,0xae,0xc,0x6,0x85,0x48,0x70,0xe3,0xaa,0x4e,0x35,0xe2,0x63,0x64,0x32,0x84,0xc,0x94,0xc7,0x79,0x6f,0x51,0x24,0xc5,0x20,0x51,0x57,0x11,0x4,0x2f,0xc9,0xa0,0xfd,0x2e,0x7e,0x93,0x1,0x67,0x9d,0xd0,0xb7,0x80,0x3d,0xf7,0x80,0xcf,0x5c,0xb9,0x1a,0x4,0xb0,0x62,0xf9,0x2c,0xb5,0x9a,0xc6,0x80,0x34,0x22,0x84,0x51,0x56,0xa1,0x6d,0xb2,0xcd,0xd3,0xbe,0xea,0x31,0x17,0x7d,0x55,0x9a,0x66,0xed,0xb1,0x48,0xed,0xce,0x9e,0xf1,0x72,0x26,0xa8,0x4,0x32,0xfb,0xbf,0x2f,0x4d,0x40,0xd4,0x76,0x11,0x7a,0xf7,0x49,0x2f,0xbe,0xd0,0x3b,0xa2,0xa7,0x3e,0xb,0xd3,0x7b,0x4f,0x7b,0xf1,0x85,0xde,0xd2,0x63,0xa9,0xe3,0x3a,0xf5,0x87,0x99,0x6b,0xe2,0x7e,0x4f,0xce,0x1a,0x33,0xe0,0x8b,0x6d,0x10,0xc6,0x4b,0xbd,0x4,0x5d,0xa6,0xe6,0x88,0xd8,0xb4,0xc4,0x93,0x66,0x38,0x73,0x42,0xdb,0xad,0x78,0x1,0x65,0x1a,0x21,0x1a,0x83,0x57,0xf4,0xe3,0xea,0x64,0xdc,0xce,0x6,0xbd,0x3b,0x45,0xdd,0xbd,0xef,0xc4,0x2,0xc1,0xba,0x48,0x1b,0x4a,0xfb,0xc,0x97,0x6f,0x76,0xf1,0xb0,0x7a,0xf,0x48,0xb1,0xee,0x5e,0xed,0x69,0x7,0xfc,0x2a,0xdb,0xd3,0xa8,0x8f,0x82,0x66,0x32,0x3a,0xf8,0xe4,0x2a,0xac,0x29,0x4f,0x42,0x9e,0x92,0xd2,0xd8,0xac,0x8b,0x4b,0xc2,0x66,0xf1,0x7c,0xee,0x1c,0x71,0xbe,0x85,0x66,0xcd,0xe7,0x8b,0xef,0xb,0x1a,0x6f,0xe1,0x17,0x69,0xf7,0x7f,0xcd,0x8c,0xb0,0xb4,0x36,0xdd,0x95,0xd3,0xd6,0xb0,0x11,0x7a,0xe6,0xc7,0xe9,0xd9,0x62,0xaf,0x16,0xb6,0x65,0x7c,0x89,0x3e,0xa4,0x4d,0x4c,0xb3,0x4e,0xba,0x5d,0xd3,0x2b,0x57,0xaf,0xbc,0x5e,0xa8,0x8,0x6f,0xe4,0x5b,0x38,0x3d,0x3e,0x3d,0x81,0xc9,0xba,0x22,0x98,0x52,0x49,0x96,0xd6,0x7f,0xa1,0x31,0xec,0x26,0xd9,0x6,0xf5,0x84,0x24,0xe1,0xda,0x5,0xb0,0x71,0xbc,0x81,0x83,0xb3,0x21,0x69,0x9c,0x75,0xcb,0x47,0xcd,0x4e,0xd7,0xe3,0x5f,0x83,0x7f,0x2e,0x6b,0xc9,0x5,0x0,0x0 }; +const uint8_t error404_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0x8d,0x54,0x6d,0x6f,0xd3,0x30,0x10,0xfe,0xcc,0x7e,0xc5,0x2d,0x7c,0x1,0x69,0x89,0xf7,0x26,0x34,0x26,0xb7,0x12,0xec,0x45,0x20,0x81,0x98,0xd4,0x22,0xc4,0x27,0xe4,0x3a,0xd7,0xda,0xcc,0xb1,0x23,0xdb,0xe9,0x56,0x89,0x1f,0xcf,0x39,0x49,0xb7,0xf4,0x5,0xb4,0x4a,0x69,0x72,0xe7,0x7b,0x7b,0x9e,0xbb,0x33,0x3f,0xcc,0xf3,0x3,0x0,0x98,0x2a,0x1d,0x20,0xb8,0x79,0x7c,0x10,0x1e,0x81,0xbe,0x8d,0x96,0x68,0x3,0x96,0xd0,0xd8,0x12,0x3d,0x44,0x85,0xf0,0xf5,0xf3,0x14,0xbe,0x74,0xea,0x2,0x26,0x88,0xad,0xb2,0xb7,0x83,0xb9,0x36,0xf4,0xe7,0x3c,0x94,0x18,0x85,0x36,0xa1,0x48,0x51,0x27,0xae,0xf1,0x12,0x2f,0x41,0xc5,0x58,0x87,0x4b,0xc6,0x16,0x3a,0xaa,0x66,0x56,0x48,0x57,0xb1,0x50,0xb,0x89,0xaa,0x51,0x36,0xa2,0x54,0xec,0x87,0xbe,0xd5,0xd7,0x8d,0xbc,0x3f,0xc8,0xf3,0xf1,0x1,0x3f,0xbc,0xfe,0x76,0x35,0xfd,0x79,0x77,0x43,0x7e,0x95,0x21,0xb9,0x7b,0x51,0x3c,0xe0,0xa,0x45,0xd9,0x7d,0xb6,0x62,0x45,0xc9,0x40,0x2a,0xe1,0x3,0xc6,0x51,0xf6,0x7d,0x7a,0x9b,0x5f,0x64,0xdb,0xc7,0x56,0x54,0x38,0xca,0x96,0x1a,0x1f,0x6a,0xe7,0x63,0x6,0xd2,0x51,0x4e,0x4b,0xe6,0xf,0xba,0x8c,0x6a,0x54,0xe2,0x92,0x20,0xe4,0xad,0x70,0x4,0xda,0xea,0xa8,0x85,0xc9,0x83,0x14,0x6,0x47,0xc7,0xc5,0xc5,0x11,0x54,0xa4,0xab,0x48,0xd5,0xe8,0x7f,0x84,0x26,0x1a,0x2a,0xcc,0xa5,0x33,0xce,0xf,0xa2,0xbf,0x3e,0x7b,0x77,0xf6,0xfe,0xec,0x86,0x7c,0xf6,0x3a,0x95,0x18,0xa4,0xd7,0x75,0xd4,0xce,0xe,0x9c,0x12,0xf,0x90,0x88,0x18,0xa6,0x8a,0x3a,0x1a,0x1c,0x3f,0x1d,0xc1,0x1f,0x38,0x3f,0x3e,0xe7,0xac,0x53,0xf,0xa2,0x1b,0x6d,0xef,0xc1,0xa3,0x19,0x65,0x21,0xae,0xc,0x6,0x85,0x48,0x70,0xe3,0xaa,0x4e,0x35,0xe2,0x63,0x64,0x32,0x84,0xc,0x94,0xc7,0x79,0x6f,0x51,0x24,0xc5,0x20,0x51,0x57,0x11,0x4,0x2f,0xc9,0xa0,0xfd,0x2e,0x7e,0x93,0x1,0x67,0x9d,0xd0,0xb7,0x80,0x3d,0xf7,0x80,0xcf,0x5c,0xb9,0x1a,0x4,0xb0,0x62,0xf9,0x2c,0xb5,0x9a,0xc6,0x80,0x34,0x22,0x84,0x51,0x56,0xa1,0x6d,0xb2,0xcd,0xd3,0xbe,0xea,0x31,0x17,0x7d,0x55,0x9a,0x66,0xed,0xb1,0x48,0xed,0xce,0x9e,0xf1,0x72,0x26,0xa8,0x4,0x32,0xfb,0xbf,0x2f,0x4d,0x40,0xd4,0x76,0x11,0x7a,0xf7,0x49,0x2f,0xbe,0xd0,0x3b,0xa2,0xa7,0x3e,0xb,0xd3,0x7b,0x4f,0x7b,0xf1,0x85,0xde,0xd2,0x63,0xa9,0xe3,0x3a,0xf5,0x87,0x99,0x6b,0xe2,0x7e,0x4f,0xce,0x1a,0x33,0xe0,0x8b,0x6d,0x10,0xc6,0x4b,0xbd,0x4,0x5d,0xa6,0xe6,0x88,0xd8,0xb4,0xc4,0x93,0x66,0x38,0x73,0x42,0xdb,0xad,0x78,0x1,0x65,0x1a,0x21,0x1a,0x83,0x57,0xf4,0xe3,0xea,0x64,0xdc,0xce,0x6,0xbd,0x3b,0x45,0xdd,0xbd,0xef,0xc4,0x2,0xc1,0xba,0x48,0x1b,0x4a,0xfb,0xc,0x97,0x6f,0x76,0xf1,0xb0,0x7a,0xf,0x48,0xb1,0xee,0x5e,0xed,0x69,0x7,0xfc,0x2a,0xdb,0xd3,0xa8,0x8f,0x82,0x66,0x32,0x3a,0xf8,0xe4,0x2a,0xac,0x29,0x4f,0x42,0x9e,0x92,0xd2,0xd8,0xac,0x8b,0x4b,0xc2,0x66,0xf1,0x7c,0xee,0x1c,0x71,0xbe,0x85,0x66,0xcd,0xe7,0x8b,0xef,0xb,0x1a,0x6f,0xe1,0x17,0x69,0xf7,0x7f,0xcd,0x8c,0xb0,0xb4,0x36,0xdd,0x95,0xd3,0xd6,0xb0,0x11,0x7a,0xe6,0xc7,0xe9,0xd9,0x62,0xaf,0x16,0xb6,0x65,0x7c,0x89,0x3e,0xa4,0x4d,0x4c,0xb3,0x4e,0xba,0x5d,0xd3,0x2b,0x57,0xaf,0xbc,0x5e,0xa8,0x8,0x6f,0xe4,0x5b,0x38,0x3d,0x3e,0x3d,0x81,0xc9,0xba,0x22,0x98,0x52,0x49,0x96,0xd6,0x7f,0xa1,0x31,0xec,0x26,0xd9,0x6,0xf5,0x84,0x24,0xe1,0xda,0x5,0xb0,0x71,0xbc,0x81,0x83,0xb3,0x21,0x69,0x9c,0x75,0xcb,0x47,0xcd,0x4e,0xd7,0xe3,0x5f,0x83,0x7f,0x2e,0x6b,0xc9,0x5,0x0,0x0 }; -const uint8_t index_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0xed,0x1a,0x6d,0x6f,0xea,0x36,0xf7,0xfb,0xfd,0x15,0xbe,0x99,0x34,0xb5,0x52,0x21,0xb4,0xdd,0xa6,0xed,0x2e,0x8d,0x44,0x21,0xf4,0xa2,0x52,0x40,0x24,0xa8,0xba,0x9b,0xa6,0x2b,0x93,0x98,0x26,0x6b,0x12,0x23,0xdb,0x29,0xe5,0xf9,0xf5,0xcf,0xb1,0x1d,0x4a,0x1a,0x5e,0x6,0xdc,0xdb,0x74,0x1f,0xc6,0x7,0x88,0x8f,0x7d,0xde,0x5f,0x7c,0x1c,0x6c,0x7d,0xac,0xd5,0x3e,0x20,0xf8,0x78,0x61,0xc4,0x11,0xa7,0x53,0x31,0xc7,0x8c,0x20,0x78,0x8e,0x23,0x9f,0xa4,0x9c,0x4,0x28,0x4b,0x3,0xc2,0x90,0x8,0x9,0xba,0xeb,0x7a,0xa8,0xa7,0xc1,0x75,0xe4,0x12,0xa2,0x80,0xf9,0x3a,0x34,0x8d,0x62,0xf8,0xa2,0xc,0x5,0x44,0xe0,0x28,0xe6,0x75,0x45,0xd6,0xa5,0x19,0xf3,0xc9,0x27,0x14,0xa,0x31,0xe3,0x9f,0x4c,0xf3,0x21,0x12,0x61,0x36,0xa9,0xfb,0x34,0x31,0xf9,0xc,0xfb,0x24,0xcc,0xc2,0x54,0x10,0x3f,0x34,0xef,0xa3,0x4e,0xd4,0xce,0xfc,0xc7,0xf,0xb5,0x9a,0xfd,0xc1,0xfa,0xd8,0x1e,0xb4,0xbc,0x2f,0x43,0x7,0xf0,0x92,0x18,0xc6,0xfa,0x47,0x12,0xb4,0x42,0x82,0x3,0xfd,0xa8,0x86,0x9,0x70,0x43,0x7e,0x88,0x19,0x27,0xe2,0xca,0x18,0x7b,0x9d,0xda,0xaf,0x46,0x79,0x3a,0xc5,0x9,0xb9,0x32,0x9e,0x22,0x32,0x9f,0x51,0x26,0xc,0xe4,0x53,0xe0,0x99,0xc2,0xf2,0x79,0x14,0x88,0xf0,0x2a,0x20,0x4f,0xa0,0x43,0x4d,0xd,0xce,0x50,0x94,0x46,0x22,0xc2,0x71,0x8d,0xfb,0x38,0x26,0x57,0x8d,0xfa,0xaf,0x67,0x28,0x1,0x58,0x2,0xa0,0x2c,0xda,0x42,0x1a,0xec,0x90,0x90,0x9a,0x4f,0x63,0xca,0xa,0xd4,0x7f,0xb8,0xfc,0xe5,0xf2,0xb7,0x4b,0x7,0x70,0x36,0x22,0x5,0x84,0xfb,0x2c,0x9a,0x89,0x88,0xa6,0x5,0x24,0x69,0x7,0x24,0xd,0x51,0x64,0x25,0x22,0x11,0x13,0xfb,0x65,0xca,0x32,0x35,0xa0,0x40,0x37,0x8e,0xd2,0x47,0xc4,0x48,0x7c,0x65,0x70,0xb1,0x88,0x9,0xf,0x9,0x1,0x45,0xc5,0x62,0x26,0xa5,0x23,0xcf,0xc2,0xf4,0x39,0x37,0x50,0xc8,0xc8,0x34,0x5f,0x51,0x97,0x80,0x2,0xb,0x2d,0xb,0xe2,0xcc,0x87,0x5,0xea,0xb9,0xfe,0x37,0x2c,0xb0,0x4c,0x3d,0xd8,0xb2,0x32,0x82,0xd8,0x78,0xde,0xb0,0xd0,0x32,0x57,0x6e,0xb2,0x26,0x34,0x58,0x14,0xf0,0x53,0xfc,0xb4,0x1a,0x29,0x48,0x16,0x23,0x3f,0xc6,0x9c,0x5f,0x19,0x9,0x49,0x33,0xe3,0xf5,0x6c,0xae,0x9e,0x6d,0xe1,0x5c,0x7c,0xcd,0x53,0x46,0x84,0x51,0x34,0x9,0x6,0x11,0x60,0xd9,0x6e,0x5c,0x8,0x12,0x11,0xa5,0xf,0x3c,0x47,0x77,0xf3,0xe1,0x9e,0xd8,0x82,0x30,0x8,0x5,0x1c,0xe7,0xd8,0x5e,0x3e,0xdc,0x13,0xdb,0x67,0x24,0x88,0xc4,0x92,0x75,0x73,0x42,0x33,0xb1,0x19,0xd3,0x32,0xb3,0xb8,0x60,0x2f,0xf3,0x95,0xc1,0xac,0x20,0x7a,0x42,0x51,0x20,0xbd,0x88,0x45,0xa6,0xc,0xf,0x90,0x62,0x58,0xe2,0x28,0x2d,0xd1,0xe3,0xc4,0x97,0x51,0xb6,0x41,0xbe,0xf0,0xdc,0x76,0x15,0x1d,0x70,0xd8,0xf9,0x86,0x79,0xc9,0x2c,0x77,0xd,0xa3,0xf3,0xd,0x9e,0x51,0xab,0x66,0xb6,0x35,0x1,0x3a,0x94,0xe1,0x7,0x48,0x75,0xcb,0x9c,0xd8,0x16,0x24,0x77,0xaa,0xc4,0x9c,0x32,0x42,0xee,0x48,0x42,0xd9,0xc2,0xb0,0x6b,0x96,0x4c,0xfa,0x14,0x44,0x9e,0x6d,0xa1,0x34,0xc9,0x84,0xa0,0xe9,0x92,0x65,0x80,0xd3,0x7,0x2,0x19,0xa5,0xe8,0x50,0x96,0x60,0x61,0xd8,0xfa,0x17,0x78,0xa8,0x95,0x7b,0x91,0x81,0x8a,0x96,0x1a,0xb9,0xcd,0xe8,0xcc,0xb0,0xe5,0xf7,0x61,0x4,0xc2,0x48,0x10,0x4d,0x81,0x11,0xc8,0xd4,0x14,0xec,0x69,0xd8,0x2f,0x8f,0xdb,0x69,0x95,0x7c,0xa3,0x41,0x1b,0xbd,0xf1,0xf,0x3e,0x52,0xa9,0xc5,0x11,0xc4,0xd2,0xd2,0x1b,0x24,0xa6,0x38,0xc8,0xb5,0xd2,0xb3,0x23,0xd,0xb2,0x7f,0xfc,0xe1,0xf9,0xe2,0x7c,0x32,0xf9,0x5d,0x7,0xd7,0x46,0xb7,0xa,0x3c,0x81,0x62,0x9d,0x93,0x52,0x83,0x22,0x25,0x4f,0x1,0x0,0x57,0xcd,0x1c,0x1d,0x15,0x51,0x3a,0xcb,0x4,0x9a,0xc5,0xb2,0xca,0xd3,0x18,0xf6,0x90,0x2b,0xa3,0x3,0x7b,0x84,0x2c,0x7e,0xc8,0xb4,0xe4,0x8f,0x5d,0xac,0x50,0xc6,0x92,0x24,0x4f,0x28,0x15,0xa1,0x81,0x9e,0x70,0x9c,0xc1,0x9c,0xa9,0x45,0x4b,0xc9,0x5c,0x62,0x1b,0xe6,0x5e,0x1e,0xe3,0x99,0xef,0x13,0x59,0xf1,0x68,0xea,0xc3,0x6,0xf5,0xa8,0xb2,0xf,0xb,0x72,0xf2,0x40,0xc4,0x57,0x20,0xf5,0x75,0x9a,0x4b,0x72,0x72,0x7a,0x6a,0xd8,0x7a,0xee,0xed,0xdd,0xe8,0x40,0xfe,0xc3,0x6,0xb9,0xd9,0x8b,0x44,0x4d,0x1e,0xe0,0xc4,0xf7,0xf0,0x82,0x16,0x52,0x39,0xe2,0xe0,0xc,0xd6,0xb8,0x6d,0x12,0x13,0x48,0x26,0x3b,0x50,0xbf,0x7,0xa5,0xe1,0x8c,0xc1,0x2e,0xc,0x75,0xa4,0x48,0x8d,0xce,0x53,0x6d,0xb0,0x20,0x7f,0xfa,0x56,0x8a,0xcd,0xc,0xbe,0xb2,0xd4,0xb0,0x9d,0x54,0x25,0x9,0xd6,0xe3,0x83,0x82,0xe3,0x0,0xf7,0x48,0x9b,0x43,0xc3,0x85,0xcb,0x66,0x5f,0x9,0xa4,0x12,0x31,0x5f,0xf5,0xbd,0xb9,0x17,0x56,0x5,0x64,0x92,0x3d,0x48,0x5f,0x6d,0x5e,0x2a,0x3f,0x83,0x4c,0x40,0x2c,0x41,0x81,0x7f,0x29,0xee,0x5a,0xc2,0x28,0x9d,0x52,0xa8,0xaa,0xf8,0x89,0x4,0x79,0x81,0xdf,0xcc,0x6d,0x8b,0xa8,0xdf,0xac,0xc1,0x4a,0x92,0x5a,0xee,0xd0,0x9a,0x76,0x16,0xdf,0xa1,0xcc,0xb6,0x82,0xb1,0x22,0xe6,0x82,0x42,0x5a,0xad,0xdd,0x31,0xb5,0x73,0xc7,0xc9,0xb3,0x5a,0x6,0xd4,0xce,0x28,0xda,0x3b,0x7f,0xdc,0x7d,0xb7,0xb0,0xbd,0xad,0x7d,0x78,0x29,0x83,0x33,0x83,0x2c,0x67,0x6d,0xea,0x67,0xd0,0xb0,0x41,0xff,0x0,0xcb,0x54,0x91,0x92,0xbd,0xfb,0x7a,0xe1,0xbb,0xc8,0xf7,0x2f,0xe8,0xb4,0x60,0xd5,0xc5,0xa6,0x25,0x97,0xf6,0x35,0xe6,0x91,0x2f,0xdb,0x90,0xcb,0xd,0xf3,0x5b,0xda,0x85,0x5b,0xb2,0xe0,0x48,0x1e,0x57,0x38,0x99,0x61,0x6,0x25,0x3c,0x40,0x93,0x5,0xc2,0x88,0x3,0x27,0x48,0x5d,0x75,0xc0,0xa8,0x5b,0x13,0xb6,0x19,0xdb,0x79,0x22,0x6c,0x21,0x42,0x58,0x8b,0xe6,0x2c,0x12,0xd0,0x7e,0x43,0xef,0xbf,0xc2,0x86,0x8e,0x9a,0x20,0xd8,0x2e,0x38,0x9a,0x31,0x88,0xc,0xa0,0x8d,0xd3,0x40,0xb6,0xd8,0x4,0xab,0x81,0x50,0xa7,0x1f,0x2e,0xeb,0xa8,0x88,0x92,0x1d,0x7c,0x3c,0xaa,0xe8,0xc3,0x32,0xc8,0xe2,0x33,0x94,0x71,0x7d,0x6e,0x72,0xbd,0x51,0xb7,0x7f,0x83,0xa6,0x59,0xaa,0xcc,0x5c,0xdf,0xe0,0xaa,0xd9,0xb6,0xad,0x7b,0x5b,0x31,0x79,0x7d,0x36,0x5a,0x9f,0x67,0xdb,0x27,0x73,0x2,0xb6,0xf3,0x8c,0x93,0x59,0xc,0x21,0xf,0xcf,0x7b,0x2c,0x86,0x8d,0x25,0xcd,0xfd,0xbf,0xb,0x1,0x66,0xd9,0xb6,0x38,0xdd,0x21,0xb5,0x25,0x5e,0x9f,0x1d,0x8e,0xd0,0x28,0xb0,0xef,0xbb,0xfd,0xf6,0xe0,0xde,0xdd,0xb9,0x4e,0xa7,0x1e,0xb3,0x11,0xdb,0x4d,0xce,0x14,0xc1,0x3f,0x33,0xf4,0x60,0x37,0x55,0x2e,0xbe,0x87,0xa3,0xa,0x9d,0x73,0xf4,0x48,0x16,0x2a,0x78,0x0,0x96,0xaa,0x9,0x26,0x41,0xbb,0x89,0x6d,0xb7,0xd8,0xa1,0x8a,0x23,0xb6,0x9f,0xd8,0x43,0x19,0xe6,0xdb,0xe4,0xd6,0x22,0x43,0x6e,0x24,0x59,0x2c,0x70,0x4a,0x68,0xc6,0xe3,0xb7,0xd7,0x20,0xcf,0x91,0x3,0x15,0xb9,0x57,0xd9,0xb6,0x27,0xd2,0xce,0xc8,0xdc,0x1c,0x7d,0xdb,0x1b,0x63,0x28,0x5e,0x9d,0x3c,0x9f,0xb7,0x95,0x32,0xdd,0x7a,0xcb,0x7a,0x1e,0xc0,0xb1,0x75,0x51,0x5b,0xe6,0x3f,0xaf,0xe9,0x3e,0xfc,0xd,0x53,0xbb,0x45,0x93,0x4,0xdc,0xb9,0x6f,0x6a,0x1f,0x50,0x7,0xda,0xab,0x57,0x19,0xff,0xde,0x3a,0x60,0xf9,0x34,0x20,0xf6,0xc8,0xb9,0xb3,0x4c,0xf5,0xb4,0x5f,0x30,0xbd,0x60,0xa1,0xcf,0x24,0x8e,0x29,0xba,0xa7,0x2c,0xe,0x3e,0x1e,0x44,0x42,0xda,0x1d,0xb6,0xc9,0x37,0xcf,0x16,0x2d,0x6a,0xdb,0xe9,0x34,0xc7,0x3d,0xaf,0xed,0xf4,0x9a,0x5f,0x72,0x31,0x91,0x3c,0x74,0x14,0x27,0xbf,0x16,0x67,0xf,0xb1,0x43,0x91,0x38,0xba,0x68,0x34,0xe,0x22,0xe1,0xc1,0x36,0x29,0xb7,0xd8,0x84,0xa3,0x9,0x11,0x73,0x2,0xc5,0x90,0xc8,0x3d,0x18,0xf9,0x2f,0x81,0x59,0x8d,0x81,0x8e,0xd5,0x5d,0x2a,0x7d,0xde,0x38,0x50,0x6b,0x38,0xf0,0xe0,0x85,0x56,0xbb,0x22,0x5,0x75,0xd5,0x3c,0x42,0xc3,0xbc,0xdc,0x1e,0x1d,0xe8,0x72,0xe3,0xd3,0x3b,0xc8,0x94,0x2,0x89,0xb9,0x6c,0xad,0xb8,0x60,0xaa,0xef,0xab,0x44,0xf3,0x91,0x33,0x74,0x9a,0xde,0x5a,0xd4,0x3,0xf8,0x38,0x97,0x6b,0x7a,0xe8,0xf2,0x20,0xd4,0x11,0x99,0x11,0x2c,0xb4,0x1d,0xa0,0x8b,0x17,0xcb,0xf0,0x46,0xa9,0x6a,0x14,0xab,0x8a,0x82,0xde,0xa0,0xd5,0xec,0x39,0x47,0x28,0xad,0x11,0x51,0xfb,0x30,0x5c,0x97,0xe4,0x2a,0x43,0x9b,0x30,0xa1,0x98,0x5,0xa0,0xfb,0x82,0x66,0xa2,0x8e,0x9a,0x4f,0x38,0x8a,0xe5,0xde,0xf6,0xe9,0xa5,0x8,0xe5,0x94,0xcf,0x72,0xc0,0xcd,0x75,0x9,0x30,0x76,0x4b,0x0,0xa7,0xc,0xe8,0x8c,0x4a,0x80,0xf6,0x6d,0x9,0x30,0x1a,0x97,0x0,0xd7,0x65,0xb6,0x43,0xaf,0x4,0xe8,0x2e,0x1,0xdf,0xd0,0x4,0x7e,0x37,0xff,0xdd,0x3a,0x5f,0x5a,0x83,0xf6,0x31,0xe,0xcc,0x31,0x51,0xe3,0xb9,0x71,0x21,0xbf,0x7e,0x3a,0x22,0x89,0xe1,0x18,0x34,0x23,0x7e,0x34,0x8d,0x7c,0xd5,0xf7,0x49,0x7c,0x74,0x92,0xd0,0x0,0x20,0x84,0x9d,0x49,0xd8,0xf9,0x9f,0x67,0xa8,0x5e,0xaf,0xab,0xe7,0x5f,0xfe,0x3a,0x95,0x15,0x2e,0x0,0x8c,0x4,0xc7,0x32,0xf1,0x42,0xf2,0x8c,0xf3,0x61,0x55,0xf1,0xee,0xb4,0x8f,0x9,0x76,0xa7,0x8d,0x7e,0x6a,0xc0,0x56,0x6,0x85,0xfd,0xb0,0x4d,0x3d,0x94,0x47,0x73,0x1d,0xf2,0xea,0x8f,0x1f,0x44,0xa7,0x6a,0x20,0x29,0x16,0x6c,0x31,0xba,0xb9,0xd6,0xef,0xd0,0x38,0x3a,0x69,0xd4,0x2e,0x7e,0xfe,0xf9,0xb4,0xda,0x7e,0xd4,0x85,0x6e,0x3d,0x90,0xe9,0x28,0xf,0xcb,0xbb,0x7a,0xd2,0x37,0x6c,0x3c,0x6f,0xd5,0x61,0xe7,0x5f,0xdd,0x16,0xe2,0xe5,0xa6,0x51,0xcb,0x6b,0xc1,0xff,0xf6,0x8a,0x86,0xef,0x16,0xbd,0xcd,0x32,0xff,0x3f,0xaa,0xe5,0xdf,0x28,0xf3,0xff,0xad,0x5a,0xfe,0x9d,0xf3,0xb2,0x0,0x9d,0xf3,0x8b,0x6f,0x14,0xe1,0xb8,0x84,0xb9,0xcb,0x8b,0xdc,0x7f,0x9,0xb3,0xd3,0x61,0x2d,0x6f,0xd4,0x5b,0x6b,0xb4,0x5a,0x83,0xbe,0x37,0x1a,0xf4,0xaa,0xd,0x1d,0xf7,0x73,0xb7,0xe3,0x55,0x9c,0xad,0xbd,0x8a,0x19,0xe6,0x2f,0x33,0xd6,0xc,0x7e,0x33,0xee,0xbe,0x4b,0x92,0xc,0x20,0xc8,0xfe,0xcb,0x90,0xdd,0x3e,0x73,0xfa,0x9e,0x33,0xaa,0x36,0x4c,0xee,0x9c,0xfe,0x78,0x2d,0x46,0x9a,0xc3,0x61,0xb5,0x52,0xc0,0x41,0xd9,0xf1,0x9c,0x6a,0x79,0x7e,0x1e,0xdc,0x55,0xcc,0xb1,0xdb,0x77,0x9d,0x51,0xc5,0x65,0x60,0xd8,0xbc,0x71,0xc6,0xc3,0xea,0x79,0x42,0xed,0xe9,0x57,0xcb,0xf5,0x45,0xcb,0x55,0x1c,0x8f,0x87,0xcd,0xd1,0x68,0x70,0x5f,0x71,0x2c,0xaf,0x34,0x2f,0xbc,0x45,0x3,0xe0,0x3b,0xc8,0xd2,0x73,0x3a,0xeb,0xef,0x36,0x24,0xf0,0x1d,0x64,0x19,0x75,0x6f,0x3e,0x6f,0x78,0xd1,0x22,0xa1,0xef,0x20,0x8d,0xd7,0xbc,0xae,0x96,0xa1,0xd3,0x6f,0x57,0xcc,0xd0,0x6d,0xad,0x59,0x1b,0x60,0xcd,0x61,0xc5,0x55,0xcf,0x1d,0x36,0x5b,0x4e,0xd5,0x5,0x68,0xec,0x3a,0x52,0xeb,0xeb,0x91,0xd3,0xbc,0xad,0x96,0x37,0x18,0xd8,0xed,0xd,0x5a,0x15,0x73,0xed,0x8f,0xef,0xaa,0x67,0x3a,0x1c,0x75,0xfb,0x9e,0xdb,0x1a,0x39,0x4e,0xc5,0xa5,0x1e,0x78,0xe,0x7a,0xbd,0xef,0xa0,0xf0,0x61,0xad,0xec,0x86,0x6b,0xf,0x96,0xf9,0xfa,0xf2,0xa4,0x35,0xa5,0x54,0x90,0x12,0xb7,0x97,0xfb,0x9c,0x7b,0x5f,0x69,0x36,0x90,0xc0,0xec,0x41,0x5e,0x4f,0xfe,0x3a,0x89,0x71,0xfa,0x68,0xd8,0xfa,0x56,0xb4,0xbc,0xdb,0xf5,0xa1,0xfc,0xf,0xf4,0xda,0x35,0x82,0xd5,0x6d,0x9b,0x27,0xc2,0xb8,0xbc,0x2c,0x6c,0x2f,0xaf,0x51,0x96,0x97,0xb6,0xe8,0x6c,0xc1,0xa2,0x87,0x50,0xa0,0x13,0xff,0x14,0x5d,0x34,0x2e,0xce,0x91,0xbb,0x94,0x8,0x79,0x20,0x52,0x4a,0x63,0xfa,0x10,0x11,0xbe,0xce,0xa4,0xac,0xd4,0x8b,0x26,0x52,0xaf,0x75,0x5,0x5e,0x4d,0xbf,0xd2,0xc3,0x32,0x8b,0x46,0xb3,0x4c,0xed,0x11,0x38,0x25,0xa8,0x1b,0xdc,0xff,0x7,0xd6,0x64,0x35,0x78,0x6f,0x2e,0x0,0x0 }; +const uint8_t index_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0xed,0x1a,0x6b,0x6f,0xe2,0xb8,0xf6,0xfb,0xfc,0xa,0x4f,0x56,0x5a,0xb5,0x52,0x21,0xb4,0x9d,0x5d,0xed,0xce,0x4d,0x23,0x51,0x8,0x1d,0x54,0xa,0x88,0x4,0x55,0xb3,0x57,0x57,0x23,0x93,0x98,0x26,0xdb,0x24,0x46,0xb6,0x3,0x65,0x7f,0xfd,0x3d,0xb6,0xd3,0x92,0x86,0xc7,0x2,0x33,0x4d,0xf7,0xc3,0xf2,0x1,0xe2,0x63,0x9f,0xf7,0xc3,0xc7,0xc1,0xd6,0xc7,0x5a,0xed,0x3,0x82,0x8f,0x17,0x46,0x1c,0x71,0x3a,0x15,0xb,0xcc,0x8,0x82,0xe7,0x38,0xf2,0x49,0xca,0x49,0x80,0xb2,0x34,0x20,0xc,0x89,0x90,0xa0,0xbb,0xae,0x87,0x7a,0x1a,0x5c,0x47,0x2e,0x21,0xa,0x98,0xaf,0x43,0xd3,0x28,0x86,0x2f,0xca,0x50,0x40,0x4,0x8e,0x62,0x5e,0x57,0x64,0x5d,0x9a,0x31,0x9f,0x7c,0x46,0xa1,0x10,0x33,0xfe,0xd9,0x34,0x1f,0x22,0x11,0x66,0x93,0xba,0x4f,0x13,0x93,0xcf,0xb0,0x4f,0xc2,0x2c,0x4c,0x5,0xf1,0x43,0xf3,0x3e,0xea,0x44,0xed,0xcc,0x7f,0xfc,0x50,0xab,0xd9,0x1f,0xac,0x8f,0xed,0x41,0xcb,0xfb,0x3a,0x74,0x0,0x2f,0x89,0x61,0xac,0x7f,0x24,0x41,0x2b,0x24,0x38,0xd0,0x8f,0x6a,0x98,0x0,0x37,0xe4,0x87,0x98,0x71,0x22,0xae,0x8c,0xb1,0xd7,0xa9,0xfd,0x66,0x94,0xa7,0x53,0x9c,0x90,0x2b,0x63,0x1e,0x91,0xc5,0x8c,0x32,0x61,0x20,0x9f,0x2,0xcf,0x14,0x96,0x2f,0xa2,0x40,0x84,0x57,0x1,0x99,0x83,0xe,0x35,0x35,0x38,0x43,0x51,0x1a,0x89,0x8,0xc7,0x35,0xee,0xe3,0x98,0x5c,0x35,0xea,0xbf,0x9d,0xa1,0x4,0x60,0x9,0x80,0xb2,0x68,0xb,0x69,0xb0,0x43,0x42,0x6a,0x3e,0x8d,0x29,0x2b,0x50,0xff,0xe9,0xf2,0xd7,0xcb,0xdf,0x2f,0x1d,0xc0,0xd9,0x88,0x14,0x10,0xee,0xb3,0x68,0x26,0x22,0x9a,0x16,0x90,0xa4,0x1d,0x90,0x34,0x44,0x91,0x95,0x88,0x44,0x4c,0xec,0x97,0x29,0xcb,0xd4,0x80,0x2,0xdd,0x38,0x4a,0x1f,0x11,0x23,0xf1,0x95,0xc1,0xc5,0x32,0x26,0x3c,0x24,0x4,0x14,0x15,0xcb,0x99,0x94,0x8e,0x3c,0x9,0xd3,0xe7,0xdc,0x40,0x21,0x23,0xd3,0x7c,0x45,0x5d,0x2,0xa,0x2c,0xb4,0x2c,0x88,0x33,0x1f,0x16,0xa8,0xe7,0xfa,0x9f,0xb0,0xc0,0x32,0xf5,0x60,0xcb,0xca,0x8,0x62,0xe3,0x69,0xc3,0x42,0xcb,0x5c,0xb9,0xc9,0x9a,0xd0,0x60,0x59,0xc0,0x4f,0xf1,0x7c,0x35,0x52,0x90,0x2c,0x46,0x7e,0x8c,0x39,0xbf,0x32,0x12,0x92,0x66,0xc6,0xeb,0xd9,0x5c,0x3d,0xdb,0xc2,0xb9,0xf8,0x9a,0xa7,0x8c,0x8,0xa3,0x68,0x12,0xc,0x22,0xc0,0xb2,0xdd,0xb8,0x10,0x24,0x22,0x4a,0x1f,0x78,0x8e,0xee,0xe6,0xc3,0x3d,0xb1,0x5,0x61,0x10,0xa,0x38,0xce,0xb1,0xbd,0x7c,0xb8,0x27,0xb6,0xcf,0x48,0x10,0x89,0x67,0xd6,0xcd,0x9,0xcd,0xc4,0x66,0x4c,0xcb,0xcc,0xe2,0x82,0xbd,0xcc,0x57,0x6,0xb3,0x82,0x68,0x8e,0xa2,0x40,0x7a,0x11,0x8b,0x4c,0x19,0x1e,0x20,0xc5,0xb0,0xc4,0x51,0x5a,0xa2,0xc7,0x89,0x2f,0xa3,0x6c,0x83,0x7c,0xe1,0xb9,0xed,0x2a,0x3a,0xe0,0xb0,0xf3,0xd,0xf3,0x92,0x59,0xee,0x1a,0x46,0x17,0x1b,0x3c,0xa3,0x56,0xcd,0x6c,0x6b,0x2,0x74,0x28,0xc3,0xf,0x90,0xea,0x96,0x39,0xb1,0x2d,0x48,0xee,0x54,0x89,0x39,0x65,0x84,0xdc,0x91,0x84,0xb2,0xa5,0x61,0xd7,0x2c,0x99,0xf4,0x29,0x88,0x3c,0xdb,0x42,0x69,0x92,0x9,0x41,0xd3,0x67,0x96,0x1,0x4e,0x1f,0x8,0x64,0x94,0xa2,0x43,0x59,0x82,0x85,0x61,0xeb,0x5f,0xe0,0xa1,0x56,0xee,0x45,0x6,0x2a,0x5a,0x6a,0xe4,0x36,0xa3,0x33,0xc3,0x96,0xdf,0x87,0x11,0x8,0x23,0x41,0x34,0x5,0x46,0x20,0x53,0x53,0xb0,0xa7,0x61,0xbf,0x3c,0x6e,0xa7,0x55,0xf2,0x8d,0x6,0x6d,0xf4,0xc6,0xdf,0xf8,0x48,0xa5,0x16,0x47,0x10,0x4b,0xcf,0xde,0x20,0x31,0xc5,0x41,0xae,0x95,0x9e,0x1d,0x69,0x90,0xfd,0xf3,0x4f,0x4f,0x17,0xe7,0x93,0xc9,0x7f,0x74,0x70,0x6d,0x74,0xab,0xc0,0x13,0x28,0xd6,0x39,0x29,0x35,0x28,0x52,0xf2,0x14,0x0,0x70,0xd5,0xcc,0xd1,0x51,0x11,0xa5,0xb3,0x4c,0xa0,0x59,0x2c,0xab,0x3c,0x8d,0x61,0xf,0xb9,0x32,0x3a,0xb0,0x47,0xc8,0xe2,0x87,0x4c,0x4b,0xfe,0xd8,0xc5,0xa,0x65,0x3c,0x93,0xe4,0x9,0xa5,0x22,0x34,0xd0,0x1c,0xc7,0x19,0xcc,0x99,0x5a,0xb4,0x94,0x2c,0x24,0xb6,0x61,0xee,0xe5,0x31,0x9e,0xf9,0x3e,0x91,0x15,0x8f,0xa6,0x3e,0x6c,0x50,0x8f,0x2a,0xfb,0xb0,0x20,0x27,0xf,0x44,0x7c,0x3,0x52,0xdf,0xa6,0xb9,0x24,0x27,0xa7,0xa7,0x86,0xad,0xe7,0xde,0xde,0x8d,0xe,0xe4,0x3f,0x6c,0x90,0x9b,0xbd,0x48,0xd4,0xe4,0x1,0x4e,0x7c,0xf,0x2f,0x68,0x21,0x95,0x23,0xe,0xce,0x60,0x8d,0xdb,0x26,0x31,0x81,0x64,0xb2,0x3,0xf5,0x7b,0x50,0x1a,0xce,0x18,0xec,0xc2,0x50,0x47,0x8a,0xd4,0xe8,0x22,0xd5,0x6,0xb,0xf2,0xa7,0xef,0xa5,0xd8,0xcc,0xe0,0x2b,0x4b,0xd,0xdb,0x49,0x55,0x92,0x60,0x3d,0x3e,0x28,0x38,0xe,0x70,0x8f,0xb4,0x39,0x34,0x5c,0xb8,0x6c,0xf6,0x95,0x40,0x2a,0x11,0xf3,0x55,0x3f,0x9a,0x7b,0x61,0x55,0x40,0x26,0xd9,0x83,0xf4,0xd5,0xe6,0xa5,0xf2,0x33,0xc8,0x4,0xc4,0x12,0x14,0xf8,0x97,0xe2,0xae,0x25,0x8c,0xd2,0x29,0x85,0xaa,0x8a,0xe7,0x24,0xc8,0xb,0xfc,0x66,0x6e,0x5b,0x44,0xfd,0x6e,0xd,0x56,0x92,0xd4,0x72,0x87,0xd6,0xb4,0xb3,0xf8,0xe,0x65,0xb6,0x15,0x8c,0x15,0x31,0x17,0x14,0xd2,0x6a,0xed,0x8e,0xa9,0x9d,0x3b,0x4e,0x9e,0xd5,0x32,0xa0,0x76,0x46,0xd1,0xde,0xf9,0xe3,0xee,0xbb,0x85,0xed,0x6d,0xed,0xc3,0x4b,0x19,0x9c,0x19,0x64,0x39,0x6b,0x53,0x3f,0x83,0x86,0xd,0xfa,0x7,0x58,0xa6,0x8a,0x94,0xec,0xdd,0xd7,0xb,0xdf,0x45,0xbe,0x7f,0x41,0xa7,0x5,0xab,0x2e,0x36,0x2d,0xb9,0xb4,0xaf,0x31,0x8f,0x7c,0xd9,0x86,0x5c,0x6e,0x98,0xdf,0xd2,0x2e,0xdc,0x92,0x25,0x47,0xf2,0xb8,0xc2,0xc9,0xc,0x33,0x28,0xe1,0x1,0x9a,0x2c,0x11,0x46,0x1c,0x38,0x41,0xea,0xaa,0x3,0x46,0xdd,0x9a,0xb0,0xcd,0xd8,0xce,0x9c,0xb0,0xa5,0x8,0x61,0x2d,0x5a,0xb0,0x48,0x40,0xfb,0xd,0xbd,0xff,0xa,0x1b,0x3a,0x6a,0x82,0x60,0xbb,0xe0,0x68,0xc6,0x20,0x32,0x80,0x36,0x4e,0x3,0xd9,0x62,0x13,0xac,0x6,0x42,0x9d,0x7e,0xb8,0xac,0xa3,0x22,0x4a,0x76,0xf0,0xf1,0xa8,0xa2,0xf,0xcb,0x20,0x8b,0xcf,0x50,0xc6,0xf5,0xb9,0xc9,0xf5,0x46,0xdd,0xfe,0xd,0x9a,0x66,0xa9,0x32,0x73,0x7d,0x83,0xab,0x66,0xdb,0xb6,0xee,0x6d,0xc5,0xe4,0xf5,0xd9,0x68,0x7d,0x9e,0x6d,0x9f,0xcc,0x9,0xd8,0xce,0x13,0x4e,0x66,0x31,0x84,0x3c,0x3c,0xef,0xb1,0x18,0x36,0x96,0x34,0xf7,0xff,0x2e,0x4,0x98,0x65,0xdb,0xe2,0x74,0x87,0xd4,0x96,0x78,0x7d,0x76,0x38,0x42,0xa3,0xc0,0xbe,0xef,0xf6,0xdb,0x83,0x7b,0x77,0xe7,0x3a,0x9d,0x7a,0xcc,0x46,0x6c,0x37,0x39,0x53,0x4,0x7f,0xcf,0xd0,0x83,0xdd,0x54,0xb9,0xf8,0x1e,0x8e,0x2a,0x74,0xc1,0xd1,0x23,0x59,0xaa,0xe0,0x1,0x58,0xaa,0x26,0x98,0x4,0xed,0x26,0xb6,0xdd,0x62,0x87,0x2a,0x8e,0xd8,0x7e,0x62,0xf,0x65,0x98,0x6f,0x93,0x5b,0x8b,0xc,0xb9,0x91,0x64,0xb1,0xc0,0x29,0xa1,0x19,0x8f,0xdf,0x5e,0x83,0x3c,0x47,0xe,0x54,0xe4,0x5e,0x65,0xdb,0x9e,0x48,0x3b,0x23,0x73,0x73,0xf4,0x6d,0x6f,0x8c,0xa1,0x78,0x75,0xf2,0x7c,0xde,0x56,0xca,0x74,0xeb,0x2d,0xeb,0x79,0x0,0xc7,0xd6,0x65,0xed,0x39,0xff,0x79,0x4d,0xf7,0xe1,0x6f,0x98,0xda,0x2d,0x9a,0x24,0xe0,0xce,0x7d,0x53,0xfb,0x80,0x3a,0xd0,0x5e,0xbd,0xca,0xf8,0xe7,0xd6,0x1,0xcb,0xa7,0x1,0xb1,0x47,0xce,0x9d,0x65,0xaa,0xa7,0xfd,0x82,0xe9,0x5,0xb,0x7d,0x21,0x71,0x4c,0xd1,0x3d,0x65,0x71,0xf0,0xf1,0x20,0x12,0xd2,0xee,0xb0,0x4d,0xbe,0x79,0xb6,0x68,0x51,0xdb,0x4e,0xa7,0x39,0xee,0x79,0x6d,0xa7,0xd7,0xfc,0x9a,0x8b,0x89,0xe4,0xa1,0xa3,0x38,0xf9,0xad,0x38,0x7b,0x88,0x1d,0x8a,0xc4,0xd1,0x45,0xa3,0x71,0x10,0x9,0xf,0xb6,0x49,0xb9,0xc5,0x26,0x1c,0x4d,0x88,0x58,0x10,0x28,0x86,0x44,0xee,0xc1,0xc8,0x7f,0x9,0xcc,0x6a,0xc,0x74,0xac,0xee,0x52,0xe9,0xf3,0xc6,0x81,0x5a,0xc3,0x81,0x7,0x2f,0xb5,0xda,0x15,0x29,0xa8,0xab,0xe6,0x11,0x1a,0xe6,0xe5,0xf6,0xe8,0x40,0x97,0x1b,0x9f,0xde,0x41,0xa6,0x14,0x48,0x2c,0x64,0x6b,0xc5,0x5,0x53,0x7d,0x5f,0x25,0x9a,0x8f,0x9c,0xa1,0xd3,0xf4,0xd6,0xa2,0x1e,0xc0,0xc7,0xb9,0x5c,0xd3,0x43,0x97,0x7,0xa1,0x8e,0xc8,0x8c,0x60,0xa1,0xed,0x0,0x5d,0xbc,0x78,0xe,0x6f,0x94,0xaa,0x46,0xb1,0xaa,0x28,0xe8,0xd,0x5a,0xcd,0x9e,0x73,0x84,0xd2,0x1a,0x11,0xb5,0xf,0xc3,0x75,0x49,0xae,0x32,0xb4,0x9,0x13,0x8a,0x59,0x0,0xba,0x2f,0x69,0x26,0xea,0xa8,0x39,0xc7,0x51,0x2c,0xf7,0xb6,0xcf,0x2f,0x45,0x28,0xa7,0x7c,0x96,0x3,0x6e,0xae,0x4b,0x80,0xb1,0x5b,0x2,0x38,0x65,0x40,0x67,0x54,0x2,0xb4,0x6f,0x4b,0x80,0xd1,0xb8,0x4,0xb8,0x2e,0xb3,0x1d,0x7a,0x25,0x40,0xb7,0xc,0x70,0xcb,0x44,0x5b,0x7f,0x94,0x57,0x74,0x73,0xc0,0x77,0xf4,0x8d,0x3f,0xcc,0xe5,0xb7,0xce,0xd7,0xd6,0xa0,0x7d,0x8c,0xcf,0x73,0x4c,0xd4,0x78,0x6a,0x5c,0xc8,0xaf,0x4f,0x47,0xe4,0x3d,0x9c,0x9c,0x66,0xc4,0x8f,0xa6,0x91,0xaf,0x5a,0x45,0x89,0x8f,0x4e,0x12,0x1a,0x0,0x84,0xb0,0x33,0x9,0x3b,0xff,0xef,0x19,0xaa,0xd7,0xeb,0xea,0xf9,0xd7,0xff,0x9d,0xca,0xa2,0x18,0x0,0x46,0x82,0x63,0x99,0xab,0x21,0x79,0xc2,0xf9,0xb0,0xaa,0x14,0x71,0xda,0xc7,0xe4,0x87,0xd3,0x46,0x9f,0x1a,0xb0,0xfb,0xc1,0x5e,0x70,0x58,0x1f,0x10,0xca,0xd3,0xbc,0xce,0x12,0xf5,0x5f,0x11,0xa2,0x53,0x35,0x90,0x14,0xb,0xb6,0x18,0xdd,0x5c,0xeb,0xd7,0x6e,0x1c,0x9d,0x34,0x6a,0x17,0xbf,0xfc,0x72,0x5a,0x6d,0xb,0xeb,0x42,0x83,0x1f,0xc8,0xc,0x96,0xe7,0xeb,0x5d,0x6d,0xec,0x1b,0xf6,0xaa,0xb7,0xea,0x7c,0xf4,0x8f,0xee,0x24,0xf1,0xf3,0x3e,0x53,0xcb,0x6b,0xc1,0x5f,0x7b,0x45,0xc3,0xf,0x8b,0xde,0x66,0x99,0xff,0x1f,0xd5,0xf2,0x6f,0x94,0xf9,0xff,0x5e,0x2d,0xff,0xce,0x79,0x59,0x80,0xce,0xf9,0xc5,0x77,0x8a,0x70,0x5c,0xc2,0xdc,0xe5,0x45,0xee,0xdf,0x84,0xd9,0xe9,0xb0,0x96,0x37,0xea,0xad,0xf5,0x66,0xad,0x41,0xdf,0x1b,0xd,0x7a,0xd5,0x86,0x8e,0xfb,0xa5,0xdb,0xf1,0x2a,0xce,0xd6,0x5e,0xc5,0xc,0xf3,0xf7,0x1f,0x6b,0x6,0xbf,0x19,0x77,0xdf,0x25,0x49,0x6,0x10,0x64,0xff,0x66,0xc8,0x6e,0x9f,0x39,0x7d,0xcf,0x19,0x55,0x1b,0x26,0x77,0x4e,0x7f,0xbc,0x16,0x23,0xcd,0xe1,0xb0,0x5a,0x29,0xe0,0x6c,0xed,0x78,0x4e,0xb5,0x3c,0xbf,0xc,0xee,0x2a,0xe6,0xd8,0xed,0xbb,0xce,0xa8,0xe2,0x32,0x30,0x6c,0xde,0x38,0xe3,0x61,0xf5,0x3c,0xa1,0xf6,0xf4,0xab,0xe5,0xfa,0xa2,0xe5,0x2a,0x8e,0xc7,0xc3,0xe6,0x68,0x34,0xb8,0xaf,0x38,0x96,0x57,0x9a,0x17,0x5e,0xbc,0x1,0xf0,0x1d,0x64,0xe9,0x39,0x9d,0xf5,0xd7,0x21,0x12,0xf8,0xe,0xb2,0x8c,0xba,0x37,0x5f,0x36,0xbc,0x9b,0x91,0xd0,0x77,0x90,0xc6,0x6b,0x5e,0x57,0xcb,0xd0,0xe9,0xb7,0x2b,0x66,0xe8,0xb6,0xd6,0xac,0xd,0xb0,0xe6,0xb0,0xe2,0xaa,0xe7,0xe,0x9b,0x2d,0xa7,0xea,0x2,0x34,0x76,0x1d,0xa9,0xf5,0xf5,0xc8,0x69,0xde,0x56,0xcb,0x1b,0xc,0xec,0xf6,0x6,0xad,0x8a,0xb9,0xf6,0xc7,0x77,0xd5,0x33,0x1d,0x8e,0xba,0x7d,0xcf,0x6d,0x8d,0x1c,0xa7,0xe2,0x52,0xf,0x3c,0x7,0xbd,0xde,0xf,0x50,0xf8,0xb0,0x56,0x76,0xc3,0x4d,0x9,0xcb,0x7c,0x7d,0xdf,0xd2,0x9a,0x52,0x2a,0x48,0x89,0xdb,0xcb,0x15,0xd0,0xbd,0x6f,0x41,0x1b,0x48,0x60,0xf6,0x20,0x6f,0x34,0x7f,0x9b,0xc4,0x38,0x7d,0x34,0x6c,0x7d,0x91,0x5a,0x5e,0x7,0xfb,0x50,0xfe,0xd3,0x7a,0xed,0xe6,0xc1,0xea,0x82,0xce,0x9c,0x30,0x2e,0xef,0x17,0xdb,0xcf,0x37,0x2f,0xcb,0x4b,0x5b,0x74,0xb6,0x64,0xd1,0x43,0x28,0xd0,0x89,0x7f,0x8a,0x2e,0x1a,0x17,0xe7,0xc8,0x7d,0x96,0x8,0x79,0x20,0x52,0x4a,0x63,0xfa,0x10,0x11,0xbe,0xce,0xa4,0xac,0xd4,0x8b,0x26,0x52,0xaf,0x75,0x5,0x5e,0x4d,0xbf,0xd2,0xc3,0x32,0x8b,0x46,0xb3,0x4c,0xed,0x11,0x38,0x25,0xa8,0x4b,0xdf,0xff,0x7,0x74,0x6e,0xcd,0x64,0xa2,0x2e,0x0,0x0 }; -const uint8_t index_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0xad,0x59,0x6d,0x6f,0x1b,0xb9,0x11,0xfe,0xae,0x5f,0x41,0x2f,0xd0,0x8b,0x14,0x1b,0x5a,0xfb,0xd0,0x7e,0x89,0x6c,0x7,0x69,0x13,0x5f,0x3,0x9c,0xef,0x8a,0x38,0xbd,0xa0,0xa8,0xf,0x2,0xbd,0x4b,0x59,0x84,0x57,0x5c,0x95,0xe4,0x5a,0xa7,0xde,0xf9,0xbf,0xdf,0xcc,0xf0,0x65,0xdf,0xad,0xb8,0xbd,0x7c,0x70,0x56,0xcb,0xe1,0x70,0x5e,0x9f,0x99,0xe1,0xa6,0xaf,0x27,0x8c,0xb1,0xcf,0x6b,0x69,0x98,0x29,0x57,0x76,0xc7,0xb5,0x60,0xf0,0x5c,0xc8,0x4c,0x28,0x23,0x72,0x56,0xa9,0x5c,0x68,0x66,0xd7,0x82,0x5d,0x7f,0xfc,0xcc,0xbe,0x77,0xaf,0xe7,0xec,0x46,0x8,0x7a,0xe9,0xe9,0xd8,0x4a,0x16,0xf0,0xa7,0xd4,0x2c,0x17,0x96,0xcb,0xc2,0xcc,0x91,0xeb,0x4d,0x59,0xe9,0x4c,0xbc,0x61,0x6b,0x6b,0xb7,0xe6,0x4d,0x9a,0xde,0x4b,0xbb,0xae,0xee,0xe6,0x59,0xb9,0x49,0xcd,0x96,0x67,0x62,0x5d,0xad,0x95,0x15,0xd9,0x3a,0xfd,0x22,0xaf,0xe4,0xfb,0x2a,0x7b,0x98,0xb0,0xd7,0xe9,0x64,0x32,0x49,0x53,0x76,0x11,0xff,0xb1,0xef,0x8a,0xf2,0x8e,0x17,0xec,0x27,0xae,0x25,0xbf,0x2b,0x84,0x69,0xae,0xa5,0x29,0x51,0x1f,0x81,0x60,0xc6,0xb2,0x72,0x45,0x72,0x18,0xa6,0x85,0xad,0xb4,0x2,0xe9,0xef,0xf6,0x2c,0x29,0x4c,0xc2,0xe0,0xc8,0xd,0x57,0xf9,0xe4,0x91,0x6b,0x22,0x59,0x16,0x48,0x7f,0xc1,0x92,0x64,0xe1,0x19,0x4,0xf6,0xcc,0x96,0xcc,0xf0,0x47,0x30,0x2,0x88,0xa6,0x1f,0xe1,0x60,0xd4,0xaa,0xda,0xe6,0xdc,0x4a,0x75,0xcf,0x8c,0xe5,0xb6,0x32,0xc0,0x4f,0xc1,0xcf,0xb2,0x32,0xc5,0x9e,0x78,0xba,0xd7,0xcb,0xb8,0xe7,0x82,0xec,0xb6,0x92,0x20,0x43,0x38,0xe0,0x9f,0xa,0xd9,0xe6,0xb4,0x55,0x28,0xb,0xfc,0xc9,0x80,0x22,0x97,0xb6,0xd4,0xc4,0xa4,0x72,0x14,0xcb,0x6c,0xcd,0xd5,0x3d,0x50,0x5e,0xb0,0x15,0x2f,0x8c,0x8,0xc,0xae,0xa,0x7e,0xcf,0xe4,0xca,0xef,0x60,0x6b,0xe,0x5e,0x2a,0x79,0xe,0x84,0xdc,0x99,0x7f,0x2f,0x6c,0xad,0x60,0xb9,0x15,0xaa,0xcb,0xa3,0x6f,0xd4,0xab,0x4a,0x65,0x56,0x96,0x6a,0xc8,0xa8,0xee,0xc7,0x4f,0xbc,0xa8,0x4,0xfb,0x4e,0x58,0xd0,0xcc,0x53,0x21,0xc1,0xca,0x6f,0x64,0xf7,0xc2,0x2e,0x95,0xd8,0x2d,0xf1,0x50,0xc5,0x37,0x62,0x3a,0x63,0xbf,0x82,0xef,0x9d,0x7,0xd8,0x87,0x69,0x2,0x8b,0x57,0xb0,0x96,0xcc,0xe6,0x8f,0xc8,0x6a,0x31,0x79,0x9a,0xb4,0x77,0x3b,0x7d,0xc6,0x19,0xb8,0xf5,0x71,0x1e,0x66,0x80,0x47,0x78,0x38,0xcc,0xb,0x2d,0xe4,0x89,0x47,0x45,0xf3,0x2e,0xf3,0x92,0xa1,0x89,0x83,0x13,0x2f,0x6a,0xa6,0xb5,0x70,0x40,0x3,0x6e,0x9a,0x1e,0x79,0xa2,0xb9,0x50,0xb9,0xf9,0x2,0xa1,0x3f,0x4d,0x6e,0x55,0x32,0x9b,0x61,0x66,0x34,0x18,0x84,0xa7,0x63,0x86,0xcb,0xb4,0xdb,0xcb,0xeb,0x57,0x48,0x2c,0x17,0x42,0x18,0x85,0x22,0xc4,0x60,0x5,0x21,0x58,0x30,0x69,0x5f,0x19,0xa6,0x4a,0x8,0x5,0x88,0x19,0xcd,0x12,0x5d,0x29,0x5,0x81,0x9a,0xd4,0x8a,0x64,0x6b,0x91,0x3d,0x2c,0xdd,0x26,0xaf,0x2,0x8a,0x97,0x55,0x5a,0x3,0x77,0xbf,0x30,0x97,0x2a,0x2b,0xaa,0x5c,0x98,0x69,0xe4,0x30,0x63,0xbf,0xfd,0xc6,0x46,0xa9,0x20,0x54,0x89,0xc8,0xa9,0xb3,0x33,0x4b,0x4a,0x11,0x11,0xcf,0x59,0xc0,0x7b,0x1,0x91,0x47,0xcb,0xc6,0x96,0xdb,0x65,0x27,0x47,0x90,0x24,0x28,0x76,0x63,0xb9,0xb6,0x75,0xc6,0xd9,0x35,0xb7,0x4e,0x6c,0xc3,0x20,0x6b,0x5d,0xf6,0x41,0x5a,0x63,0xbe,0xc,0x24,0x60,0x1d,0x9,0xc8,0xa6,0x7f,0x4e,0x54,0xb9,0xb3,0x32,0xf3,0x86,0x5e,0x30,0x14,0xe2,0x9c,0xfd,0xa8,0x8a,0xbd,0x67,0xc,0x71,0x1,0x1b,0xba,0x59,0xad,0x4a,0x8b,0xd1,0x86,0x2e,0x1a,0x50,0xd8,0x73,0x81,0x54,0x9,0x56,0xf3,0xc,0x26,0x6c,0x0,0x1f,0x80,0xcf,0xc7,0x20,0x61,0xd3,0x43,0x27,0xec,0x2f,0xa7,0xa7,0x91,0x59,0xdb,0x30,0xd,0x7b,0x95,0xdb,0x3f,0xc2,0x5c,0x43,0x5e,0x89,0xd6,0x3a,0xfa,0x7f,0xcd,0xb5,0x3,0x84,0xf2,0xe6,0x1a,0x90,0x9a,0x24,0x85,0xd2,0x61,0x31,0xa1,0x8,0x7a,0x81,0x2e,0x2b,0x4,0xd7,0xd1,0x2e,0x5d,0x1,0x16,0x83,0x96,0x6c,0x20,0x6d,0xb0,0xcf,0xbb,0x2d,0xa0,0x5f,0xe,0xb4,0x1a,0x31,0x1b,0x11,0x3d,0xd3,0x72,0x6b,0x43,0x46,0xd5,0x26,0xe0,0x44,0x8,0x7,0x69,0xa7,0x77,0x2f,0x9b,0xd9,0xf1,0x5,0xb2,0xe9,0xe6,0xa0,0x71,0x88,0x4b,0x55,0x4,0x15,0xd9,0x88,0x4d,0xa9,0xf7,0xac,0x32,0xfc,0x5e,0xd4,0xdc,0x7d,0x84,0xc4,0x82,0xe3,0x8d,0xb,0xb1,0x63,0xf0,0xd4,0x4,0x76,0x25,0x27,0x2c,0x90,0x4f,0x37,0xe6,0xde,0x11,0x38,0x8c,0x29,0x40,0x27,0x40,0x5c,0x6,0xaf,0xe7,0x66,0x5b,0x48,0x3b,0x4d,0x6f,0x55,0x4a,0x46,0x60,0x8c,0xfe,0xc8,0xd5,0x94,0x88,0xe6,0x80,0x5f,0xf7,0x76,0xd,0xe8,0xcc,0xce,0x2,0x7,0x82,0x18,0x53,0x16,0x62,0x2e,0xb4,0x2e,0xf5,0x34,0xb9,0xe6,0x5,0x54,0xb2,0xd,0xd4,0x4,0x2d,0xcc,0x16,0xd6,0xc4,0x9b,0xc4,0x33,0xeb,0xd2,0xa2,0x20,0x61,0xc5,0xfb,0x9c,0x7e,0x3d,0x4d,0xa2,0x70,0x77,0x7b,0x8b,0xd0,0x49,0xc7,0xff,0xfb,0xf4,0x67,0x2f,0x60,0xc2,0x92,0x19,0xfc,0x5a,0x44,0xb2,0xca,0x50,0xd,0x72,0x64,0x67,0xa3,0x64,0x2b,0x2d,0x6a,0x6e,0xdf,0xf6,0xc8,0x22,0xdd,0x56,0x40,0x3f,0x41,0xa8,0x79,0xcd,0xed,0x7a,0xbe,0x2a,0x4a,0x90,0x96,0x44,0x49,0xd9,0x19,0xa6,0x4d,0x8b,0xe3,0x20,0x35,0x1d,0x95,0x6,0x4e,0x33,0xcf,0x1c,0xfc,0x8e,0xb,0xd7,0xe4,0x46,0xf0,0xbd,0x54,0x4a,0xe8,0xbf,0x7f,0xbe,0xfe,0x1e,0xe3,0xb,0x75,0x0,0x74,0x76,0x3a,0xd3,0x2f,0x10,0xed,0xb8,0x75,0x4,0x2c,0xff,0x89,0x5e,0xcc,0x12,0xcf,0xb1,0xd7,0x65,0x78,0x98,0x74,0x9e,0x87,0x9e,0xa4,0xe1,0xf8,0xcc,0x3c,0xd6,0x6e,0xab,0x37,0x42,0xe8,0xc1,0x8a,0xdf,0xda,0x8e,0x89,0x48,0xd4,0x8f,0xc,0x47,0x68,0x31,0xa1,0xbc,0x2,0xc9,0x39,0x20,0x1,0xcf,0x2f,0x43,0x79,0xc1,0x7f,0xf5,0xfa,0x31,0x11,0x68,0xb7,0x3a,0xbc,0xb8,0xbe,0xc4,0x8a,0x79,0x9e,0xc2,0xc3,0xb3,0x54,0x7f,0x5,0x3,0x1d,0xa6,0x7a,0xe7,0x3a,0x8e,0x3,0x84,0xe9,0xb3,0x22,0xa5,0xd,0x8d,0x86,0xcf,0xb9,0x2b,0xf3,0x7d,0x4b,0x63,0x6c,0xe3,0xa6,0x68,0x1a,0x9,0x26,0x39,0x5d,0xc0,0x7f,0xe7,0xac,0x99,0x3d,0xf0,0xe6,0xf8,0xb8,0x76,0x83,0x33,0x23,0xe4,0x2f,0x8f,0x81,0x29,0x9b,0x81,0xb9,0x68,0xd1,0xa1,0x3f,0x7e,0x80,0x16,0x2,0x68,0x71,0x4b,0xc,0xee,0xe6,0xfa,0x8d,0xfc,0x6f,0x5c,0x3f,0xfb,0x39,0xca,0xe5,0xc0,0x36,0x30,0x8,0xa9,0x7c,0xc9,0x4e,0x9b,0xb2,0x38,0x22,0x89,0x19,0x7e,0xca,0xbe,0xf9,0x86,0x1d,0x35,0x7a,0xbc,0x36,0x1d,0x66,0x2c,0xcf,0x23,0xbf,0x86,0x9c,0x98,0xbf,0xf5,0xf3,0xb3,0x1,0x30,0x44,0x90,0x5f,0x52,0xd0,0x7,0x45,0x8f,0xc9,0xb,0xf9,0xd7,0xef,0x22,0xf5,0xbf,0x7a,0xd7,0xf3,0x4,0x77,0x95,0xb5,0xd8,0xd9,0x14,0xdc,0x98,0x8b,0xdb,0x64,0xab,0xe5,0x86,0xeb,0xfd,0x6d,0xc2,0x4a,0xe8,0x4f,0x64,0xf6,0x0,0xef,0xc8,0xa,0xaf,0xba,0x22,0xbf,0x9a,0xdd,0x26,0x97,0x88,0xf0,0xe7,0xa9,0xe3,0xf1,0xb2,0x83,0x60,0x3a,0x52,0xed,0x53,0x2a,0x35,0x72,0x8,0xac,0x7c,0xe5,0x19,0x69,0xd7,0xf6,0xc1,0x4d,0x4f,0x63,0xb1,0xdf,0x8b,0x6d,0x80,0x2f,0x57,0xe1,0x3e,0x23,0x69,0x7,0xbf,0xe2,0x76,0xf,0xe2,0x14,0x12,0x4f,0x8d,0xee,0xeb,0xa,0xca,0x2,0x74,0x10,0x37,0xff,0xf8,0x78,0x75,0x75,0x53,0x57,0xaf,0x15,0xbd,0x6e,0x76,0x8c,0xa5,0x5a,0x49,0xbd,0x99,0x26,0xad,0xd,0x6f,0xdd,0xf0,0xb8,0x93,0x45,0x1,0xc3,0x5f,0x21,0x0,0x23,0x39,0x3c,0x3a,0x79,0xcc,0x11,0x74,0x88,0x3e,0x3e,0x23,0xf8,0x39,0xc6,0x0,0x80,0x45,0x79,0xbf,0xdc,0x19,0x1f,0xa2,0xbc,0x10,0xda,0x6,0xde,0x34,0x6b,0x11,0x4b,0xcb,0x1f,0x80,0x21,0xdb,0x40,0x93,0x61,0xc5,0xfc,0x56,0xfd,0xab,0xac,0x60,0xf4,0x79,0xa4,0x39,0x4d,0xb,0x10,0x49,0x89,0xc,0x6a,0xf0,0xa,0xda,0x1,0xf0,0x4e,0x6e,0xe6,0x2e,0x35,0x9f,0xa2,0x76,0x9f,0x2a,0xe5,0x85,0xa9,0x55,0x43,0xb7,0xc5,0xc,0x69,0xd7,0x64,0x58,0x62,0xb7,0x89,0x73,0xe9,0x2f,0x57,0x9e,0xa6,0x41,0x8c,0x6d,0x7a,0xd2,0x96,0x7d,0xa4,0xed,0x5c,0xb4,0xdb,0x35,0xdf,0x56,0x33,0xb3,0x15,0x99,0x5c,0xc9,0xac,0x27,0x14,0xb6,0x63,0x63,0x52,0xe1,0xda,0xb,0xc4,0x3a,0x61,0x56,0x57,0x62,0x4c,0x82,0x86,0x7b,0xda,0xa7,0xbf,0x2b,0x8a,0xe9,0xc0,0xc1,0xe3,0x6c,0x3f,0x9,0xe8,0x74,0x8d,0x4,0x6f,0x60,0xba,0x41,0x1,0x2c,0x37,0xd8,0x2d,0x9,0xbe,0x69,0xd8,0x1a,0x56,0x96,0xee,0x65,0x97,0x39,0x2e,0xb5,0xea,0xa0,0x6b,0xcf,0x42,0xc0,0xf8,0x98,0xa3,0xe9,0xe8,0x8,0x22,0xff,0x92,0x7d,0xf8,0xe1,0x7d,0x52,0xc3,0xdd,0x60,0xb3,0x16,0x87,0xa6,0x1a,0xc,0xe3,0xe9,0xe1,0xa5,0x6f,0xd9,0xe9,0x7c,0x30,0xc8,0x7c,0x3e,0xf,0x78,0xfe,0x44,0x33,0x4b,0x3c,0x21,0x4a,0x9a,0x15,0xa5,0x11,0xdd,0x88,0x1d,0x1b,0x7b,0x5c,0xe6,0x36,0x33,0xec,0x47,0x0,0x6a,0x6f,0x18,0x8c,0x5b,0x37,0xaf,0xb7,0x4d,0xd4,0xf1,0x7c,0x3b,0x18,0x28,0xd1,0x1b,0x35,0x66,0x30,0x6,0x88,0x68,0x6c,0x18,0x8e,0xb5,0xa0,0x6f,0xb4,0xd8,0x9f,0x34,0x9c,0x4e,0x92,0x86,0x78,0xab,0x91,0xad,0x1d,0xf9,0x93,0xae,0x79,0xfd,0x60,0xf0,0x89,0x62,0x1,0xfb,0x63,0xef,0xc,0xc3,0xa6,0x3a,0x44,0x4a,0xb1,0x9f,0x5,0x65,0xea,0x3b,0xa,0xc,0xab,0xda,0x5a,0x7f,0x3,0x76,0x88,0x22,0x4c,0x89,0x5d,0xc7,0x52,0x19,0x2d,0xfd,0x41,0xb6,0xa,0x75,0xd7,0x35,0x52,0x71,0xb4,0x6d,0x2a,0xcc,0x6a,0xf8,0xea,0x97,0xd5,0x56,0xb0,0x1c,0x34,0xfc,0xb3,0xa6,0x6f,0x86,0x9a,0xd3,0xfe,0x90,0xf1,0x71,0x4f,0x7f,0xbe,0x68,0x43,0xdf,0x7b,0xf,0xc7,0xbd,0x70,0xdb,0x94,0x8f,0x87,0x8c,0xd8,0x4a,0x53,0xa4,0x7f,0x29,0x2a,0xe,0xb,0xd7,0xbf,0xe3,0x8a,0xbe,0xaf,0x87,0xb2,0xa,0x6c,0x34,0x8e,0xd0,0x38,0x32,0x7a,0x92,0x97,0xc9,0x14,0xcc,0xf2,0x45,0x4b,0x1b,0x63,0x13,0xf3,0xb1,0x6d,0x9e,0x1d,0x2e,0x47,0x3e,0x27,0xac,0x85,0x4a,0xff,0x6b,0xac,0xf5,0x8d,0x99,0x5a,0xb1,0xd9,0x96,0x1a,0xfa,0x96,0xa5,0x3,0xe3,0xae,0x1,0xfb,0x11,0x71,0x60,0xcb,0x60,0xa,0x1f,0xde,0x83,0xfd,0xa9,0xdf,0xb7,0x84,0xf7,0xa8,0xc6,0xc0,0x44,0x1a,0x30,0xd3,0xdd,0xfb,0x34,0x20,0xd3,0xb1,0x8a,0x33,0xe3,0x53,0xe4,0xb9,0x7d,0xb0,0xc6,0xb5,0xbc,0x67,0xa7,0xdf,0xfe,0xd9,0x99,0x6a,0xa0,0x7,0xa7,0xd9,0x2c,0x13,0xb2,0x8,0x58,0x1f,0x5a,0xe0,0x34,0x70,0x98,0xb5,0x5a,0x73,0x9a,0x3e,0xc5,0xbd,0x54,0xc0,0x42,0xb2,0xd7,0x81,0xa8,0x1e,0xfd,0x70,0xf2,0xbf,0xf0,0x24,0xc7,0xed,0x65,0xcc,0x78,0x5c,0xbe,0x64,0xed,0xb3,0x66,0x7e,0x53,0xfb,0x6d,0x3b,0x33,0x97,0x9a,0xef,0xa2,0x88,0xa6,0xba,0x73,0x97,0xb,0x53,0x3a,0xe7,0x4,0xf7,0xcf,0x4e,0x9a,0x66,0xf4,0xa9,0x38,0x79,0xae,0x88,0x3c,0x93,0x64,0xe3,0x69,0xdf,0xd8,0x81,0x20,0x33,0xec,0xe2,0xaf,0xc1,0xee,0xa1,0xe2,0x15,0xfb,0x5,0xec,0xb0,0x8,0xc2,0xe9,0x72,0x9,0xfa,0x3b,0x7f,0xa5,0x55,0xec,0x19,0xa2,0x76,0xe7,0xf6,0xba,0xee,0x22,0x60,0x5f,0xa8,0xf2,0x94,0x46,0x83,0x17,0xbc,0x27,0x83,0x97,0xab,0x23,0xf8,0xe0,0xef,0xaf,0x1b,0xf0,0x29,0xd5,0xaa,0xec,0xf4,0xb8,0x9,0xed,0x4a,0xc6,0x70,0x27,0x76,0xba,0x41,0xce,0xa8,0x15,0xf4,0x42,0x70,0xa,0x34,0xf4,0xee,0x73,0xc6,0x4e,0xdc,0x99,0x32,0x7b,0x10,0x74,0x55,0x84,0x9d,0x25,0x1,0x2,0x37,0x4c,0x18,0x6c,0xa3,0xa5,0x59,0x8b,0xbc,0x81,0x14,0x66,0xe9,0xc9,0x44,0xee,0xb5,0x1e,0x3f,0xbd,0x71,0xc1,0x4e,0xb7,0x7a,0xd5,0xb6,0x73,0xe7,0xbe,0x93,0x2a,0x2f,0x77,0x73,0x9e,0xe7,0x1f,0x1e,0xc1,0x20,0xf8,0x45,0x3,0xca,0xa3,0x9e,0x26,0x78,0xcb,0xdf,0x6c,0x93,0xe2,0x55,0x55,0xec,0x7f,0xc1,0x1a,0x7e,0x26,0x1,0x5b,0xec,0xb0,0x9,0x95,0xd6,0x9b,0xcc,0x37,0x7a,0x9f,0x4,0x71,0x69,0xd2,0x75,0x45,0xf5,0x1b,0x7c,0x77,0xde,0xa4,0x74,0xaf,0x2,0x43,0xec,0x8,0x9b,0xab,0xbe,0x73,0xa4,0x98,0x8a,0x3e,0x1a,0x38,0xaf,0x23,0xbf,0xaf,0xa8,0x83,0x1,0xd2,0x40,0x92,0xc8,0x11,0x43,0xb2,0x7d,0x2e,0xbc,0x68,0x93,0xb8,0x7a,0xf7,0xfc,0xa1,0xad,0x41,0xc6,0x17,0x48,0x4c,0x95,0xe1,0x2f,0x11,0x90,0x37,0x6f,0xeb,0x16,0x80,0x85,0xd2,0x39,0x2e,0xb4,0xef,0xfd,0x3a,0x72,0x95,0x3b,0x75,0xd8,0x1c,0xb9,0xa7,0x5a,0xda,0x5f,0xec,0x8b,0xf3,0xa6,0x6b,0xac,0xae,0x93,0x7a,0xa7,0x51,0x21,0x7b,0xc6,0xf8,0x6d,0x6f,0x56,0xea,0xb0,0x55,0x3b,0xa9,0x5b,0x1b,0xcd,0x81,0x42,0xeb,0xa,0x11,0xcb,0xfb,0x57,0x7b,0x9e,0x8e,0x7e,0x10,0x7b,0xcc,0x98,0xfe,0xd1,0x63,0x1d,0x45,0xab,0xe3,0x1a,0x82,0x8c,0x2a,0x7c,0x90,0xa3,0x8d,0x26,0xe9,0xab,0xfd,0xce,0x75,0x19,0x2f,0x8,0x28,0x1c,0x36,0x2d,0x7d,0x4b,0x75,0x17,0xce,0xd8,0xa7,0x40,0xea,0x48,0xc4,0x19,0x40,0x4e,0xff,0x89,0xa2,0xda,0xbe,0x75,0x83,0x6c,0xc6,0x15,0xcb,0xa5,0xa1,0xef,0x8e,0x32,0x7e,0x12,0x84,0x6,0x7,0xe7,0x5f,0x1c,0x65,0x67,0xde,0x84,0xa1,0x25,0x3a,0xe0,0x30,0x2,0xb9,0x6b,0x9a,0x98,0x61,0xc6,0x3b,0xcf,0xca,0x5c,0x5c,0x1a,0x7f,0xc9,0x8d,0x8d,0x4e,0xd,0xd9,0x6c,0xb7,0x16,0x78,0xaf,0x1,0x4a,0x1,0xa2,0x85,0x8f,0x5a,0x39,0x5d,0x2e,0xe6,0x65,0x56,0x6d,0xb0,0xca,0xfd,0xa7,0x12,0x7a,0x7f,0x3,0x39,0x92,0xa1,0x31,0x60,0x38,0x4c,0x90,0xc4,0x15,0xfe,0xa1,0x52,0x4e,0xc,0x86,0xae,0xd3,0x68,0x1,0xef,0xcf,0xfa,0xe0,0x46,0x22,0xf4,0xd1,0x8d,0x94,0x76,0x97,0xf3,0x68,0xcf,0x86,0xe7,0xb0,0x2b,0xc7,0xef,0x68,0xad,0xdb,0xc,0x5f,0xcf,0x10,0xf7,0x8,0x71,0x4f,0x5c,0xd9,0x98,0x2d,0x7e,0x7,0xce,0xe3,0xaa,0x72,0xdf,0x1e,0x0,0x0 }; +const uint8_t index_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0xad,0x59,0x6d,0x6f,0x1b,0xb9,0x11,0xfe,0xae,0x5f,0x41,0x2f,0xd0,0x8b,0x14,0x1b,0x5a,0xfb,0xd0,0x7e,0x89,0x6c,0x7,0x69,0x13,0x5f,0x3,0x9c,0xef,0x8a,0x38,0xbd,0xa0,0xa8,0xf,0x2,0xbd,0x4b,0x59,0x84,0x57,0x5c,0x95,0xe4,0x5a,0xa7,0xde,0xf9,0xbf,0xdf,0xcc,0xf0,0x65,0xdf,0xad,0xb8,0xbd,0x7c,0x70,0x56,0xcb,0xe1,0x70,0x5e,0x9f,0x99,0xe1,0xa6,0xaf,0x27,0x8c,0xb1,0xcf,0x6b,0x69,0x98,0x29,0x57,0x76,0xc7,0xb5,0x60,0xf0,0x5c,0xc8,0x4c,0x28,0x23,0x72,0x56,0xa9,0x5c,0x68,0x66,0xd7,0x82,0x5d,0x7f,0xfc,0xcc,0xbe,0x77,0xaf,0xe7,0xec,0x46,0x8,0x7a,0xe9,0xe9,0xd8,0x4a,0x16,0xf0,0xa7,0xd4,0x2c,0x17,0x96,0xcb,0xc2,0xcc,0x91,0xeb,0x4d,0x59,0xe9,0x4c,0xbc,0x61,0x6b,0x6b,0xb7,0xe6,0x4d,0x9a,0xde,0x4b,0xbb,0xae,0xee,0xe6,0x59,0xb9,0x49,0xcd,0x96,0x67,0x62,0x5d,0xad,0x95,0x15,0xd9,0x3a,0xfd,0x22,0xaf,0xe4,0xfb,0x2a,0x7b,0x98,0xb0,0xd7,0xe9,0x64,0x32,0x49,0x53,0x76,0x11,0xff,0xb1,0xef,0x8a,0xf2,0x8e,0x17,0xec,0x27,0xae,0x25,0xbf,0x2b,0x84,0x69,0xae,0xa5,0x29,0x51,0x1f,0x81,0x60,0xc6,0xb2,0x72,0x45,0x72,0x18,0xa6,0x85,0xad,0xb4,0x2,0xe9,0xef,0xf6,0x2c,0x29,0x4c,0xc2,0xe0,0xc8,0xd,0x57,0xf9,0xe4,0x91,0x6b,0x22,0x59,0x16,0x48,0x7f,0xc1,0x92,0x64,0xe1,0x19,0x4,0xf6,0xcc,0x96,0xcc,0xf0,0x47,0x30,0x2,0x88,0xa6,0x1f,0xe1,0x60,0xd4,0xaa,0xda,0xe6,0xdc,0x4a,0x75,0xcf,0x8c,0xe5,0xb6,0x32,0xc0,0x4f,0xc1,0xcf,0xb2,0x32,0xc5,0x9e,0x78,0xba,0xd7,0xcb,0xb8,0xe7,0x82,0xec,0xb6,0x92,0x20,0x43,0x38,0xe0,0x9f,0xa,0xd9,0xe6,0xb4,0x55,0x28,0xb,0xfc,0xc9,0x80,0x22,0x97,0xb6,0xd4,0xc4,0xa4,0x72,0x14,0xcb,0x6c,0xcd,0xd5,0x3d,0x50,0x5e,0xb0,0x15,0x2f,0x8c,0x8,0xc,0xae,0xa,0x7e,0xcf,0xe4,0xca,0xef,0x60,0x6b,0xe,0x5e,0x2a,0x79,0xe,0x84,0xdc,0x99,0x7f,0x2f,0x6c,0xad,0x60,0xb9,0x15,0xaa,0xcb,0xa3,0x6f,0xd4,0xab,0x4a,0x65,0x56,0x96,0x6a,0xc8,0xa8,0xee,0xc7,0x4f,0xbc,0xa8,0x4,0xfb,0x4e,0x58,0xd0,0xcc,0x53,0x21,0xc1,0xca,0x6f,0x64,0xf7,0xc2,0x2e,0x95,0xd8,0x2d,0xf1,0x50,0xc5,0x37,0x62,0x3a,0x63,0xbf,0x82,0xef,0x9d,0x7,0xd8,0x87,0x69,0x2,0x8b,0x57,0xb0,0x96,0xcc,0xe6,0x8f,0xc8,0x6a,0x31,0x79,0x9a,0xb4,0x77,0x3b,0x7d,0xc6,0x19,0xb8,0xf5,0x71,0x1e,0x66,0x80,0x47,0x78,0x38,0xcc,0xb,0x2d,0xe4,0x89,0x47,0x45,0xf3,0x2e,0xf3,0x92,0xa1,0x89,0x83,0x13,0x2f,0x6a,0xa6,0xb5,0x70,0x40,0x3,0x6e,0x9a,0x1e,0x79,0xa2,0xb9,0x50,0xb9,0xf9,0x2,0xa1,0x3f,0x4d,0x6e,0x55,0x32,0x9b,0x61,0x66,0x34,0x18,0x84,0xa7,0x63,0x86,0xcb,0xb4,0xdb,0xcb,0xeb,0x57,0x48,0x2c,0x17,0x42,0x18,0x85,0x22,0xc4,0x60,0x5,0x21,0x58,0x30,0x69,0x5f,0x19,0xa6,0x4a,0x8,0x5,0x88,0x19,0xcd,0x12,0x5d,0x29,0x5,0x81,0x9a,0xd4,0x8a,0x64,0x6b,0x91,0x3d,0x2c,0xdd,0x26,0xaf,0x2,0x8a,0x97,0x55,0x5a,0x3,0x77,0xbf,0x30,0x97,0x2a,0x2b,0xaa,0x5c,0x98,0x69,0xe4,0x30,0x63,0xbf,0xfd,0xc6,0x46,0xa9,0x20,0x54,0x89,0xc8,0xa9,0xb3,0x33,0x4b,0x4a,0x11,0x11,0xcf,0x59,0xc0,0x7b,0x1,0x91,0x47,0xcb,0xc6,0x96,0xdb,0x65,0x27,0x47,0x90,0x24,0x28,0x76,0x63,0xb9,0xb6,0x75,0xc6,0xd9,0x35,0xb7,0x4e,0x6c,0xc3,0x20,0x6b,0x5d,0xf6,0x41,0x5a,0x63,0xbe,0xc,0x24,0x60,0x1d,0x9,0xc8,0xa6,0x7f,0x4e,0x54,0xb9,0xb3,0x32,0xf3,0x86,0x5e,0x30,0x14,0xe2,0x9c,0xfd,0xa8,0x8a,0xbd,0x67,0xc,0x71,0x1,0x1b,0xba,0x59,0xad,0x4a,0x8b,0xd1,0x86,0x2e,0x1a,0x50,0xd8,0x73,0x81,0x54,0x9,0x56,0xf3,0xc,0x26,0x6c,0x0,0x1f,0x80,0xcf,0xc7,0x20,0x61,0xd3,0x43,0x27,0xec,0x2f,0xa7,0xa7,0x91,0x59,0xdb,0x30,0xd,0x7b,0x95,0xdb,0x3f,0xc2,0x5c,0x43,0x5e,0x89,0xd6,0x3a,0xfa,0x7f,0xcd,0xb5,0x3,0x84,0xf2,0xe6,0x1a,0x90,0x9a,0x24,0x85,0xd2,0x61,0x31,0xa1,0x8,0x7a,0x81,0x2e,0x2b,0x4,0xd7,0xd1,0x2e,0x5d,0x1,0x16,0x83,0x96,0x6c,0x20,0x6d,0xb0,0xcf,0xbb,0x2d,0xa0,0x5f,0xe,0xb4,0x1a,0x31,0x1b,0x11,0x3d,0xd3,0x72,0x6b,0x43,0x46,0xd5,0x26,0xe0,0x44,0x8,0x7,0x69,0xa7,0x77,0x2f,0x9b,0xd9,0xf1,0x5,0xb2,0xe9,0xe6,0xa0,0x71,0x88,0x4b,0x55,0x4,0x15,0xd9,0x88,0x4d,0xa9,0xf7,0xac,0x32,0xfc,0x5e,0xd4,0xdc,0x7d,0x84,0xc4,0x82,0xe3,0x8d,0xb,0xb1,0x63,0xf0,0xd4,0x4,0x76,0x25,0x27,0x2c,0x90,0x4f,0x37,0xe6,0xde,0x11,0x38,0x8c,0x29,0x40,0x27,0x40,0x5c,0x6,0xaf,0xe7,0x66,0x5b,0x48,0x3b,0x4d,0x6f,0x55,0x4a,0x46,0x60,0x8c,0xfe,0xc8,0xd5,0x94,0x88,0xe6,0x80,0x5f,0xf7,0x76,0xd,0xe8,0xcc,0xce,0x2,0x7,0x82,0x18,0x53,0x16,0x62,0x2e,0xb4,0x2e,0xf5,0x34,0xb9,0xe6,0x5,0x54,0xb2,0xd,0xd4,0x4,0x2d,0xcc,0x16,0xd6,0xc4,0x9b,0xc4,0x33,0xeb,0xd2,0xa2,0x20,0x61,0xc5,0xfb,0x9c,0x7e,0x3d,0x4d,0xa2,0x70,0x77,0x7b,0x8b,0xd0,0x49,0xc7,0xff,0xfb,0xf4,0x67,0x2f,0x60,0xc2,0x92,0x19,0xfc,0x5a,0x44,0xb2,0xca,0x50,0xd,0x72,0x64,0x67,0xa3,0x64,0x2b,0x2d,0x6a,0x6e,0xdf,0xf6,0xc8,0x22,0xdd,0x56,0x40,0x3f,0x41,0xa8,0x79,0xcd,0xed,0x7a,0xbe,0x2a,0x4a,0x90,0x96,0x44,0x49,0xd9,0x19,0xa6,0x4d,0x8b,0xe3,0x20,0x35,0x1d,0x95,0x6,0x4e,0x33,0xcf,0x1c,0xfc,0x8e,0xb,0xd7,0xe4,0x46,0xf0,0xbd,0x54,0x4a,0xe8,0xbf,0x7f,0xbe,0xfe,0x1e,0xe3,0xb,0x75,0x0,0x74,0x76,0x3a,0xd3,0x2f,0x10,0xed,0xb8,0x75,0x4,0x2c,0xff,0x89,0x5e,0xcc,0x12,0xcf,0xb1,0xd7,0x65,0x78,0x98,0x74,0x9e,0x87,0x9e,0xa4,0xe1,0xf8,0xcc,0x3c,0xd6,0x6e,0xab,0x37,0x42,0xe8,0xc1,0x8a,0xdf,0xda,0x8e,0x89,0x48,0xd4,0x8f,0xc,0x47,0x68,0x31,0xa1,0xbc,0x2,0xc9,0x39,0x20,0x1,0xcf,0x2f,0x43,0x79,0xc1,0x7f,0xf5,0xfa,0x31,0x11,0x68,0xb7,0x3a,0xbc,0xb8,0xbe,0xc4,0x8a,0x79,0x9e,0xc2,0xc3,0xb3,0x54,0x7f,0x5,0x3,0x1d,0xa6,0x7a,0xe7,0x3a,0x8e,0x3,0x84,0xe9,0xb3,0x22,0xa5,0xd,0x8d,0x86,0xcf,0xb9,0x2b,0xf3,0x7d,0x4b,0x63,0x6c,0xe3,0xa6,0x68,0x1a,0x9,0x26,0x39,0x5d,0xc0,0x7f,0xe7,0xac,0x99,0x3d,0xf0,0xe6,0xf8,0xb8,0x76,0x83,0x33,0x23,0xe4,0x2f,0x8f,0x81,0x29,0x9b,0x81,0xb9,0x68,0xd1,0xa1,0x3f,0x7e,0x80,0x16,0x2,0x68,0x71,0x4b,0xc,0xee,0xe6,0xfa,0x8d,0xfc,0x6f,0x5c,0x3f,0xfb,0x39,0xca,0xe5,0xc0,0x36,0x30,0x8,0xa9,0x7c,0xc9,0x4e,0x9b,0xb2,0x38,0x22,0x89,0x19,0x7e,0xca,0xbe,0xf9,0x86,0x1d,0x35,0x7a,0xbc,0x36,0x1d,0x66,0x2c,0xcf,0x23,0xbf,0x86,0x9c,0x98,0xbf,0xf5,0xf3,0xb3,0x1,0x30,0x44,0x90,0x5f,0x52,0xd0,0x7,0x45,0x8f,0xc9,0xb,0xf9,0xd7,0xef,0x22,0xf5,0xbf,0x7a,0xd7,0xf3,0x4,0x77,0x95,0xb5,0xd8,0xd9,0x14,0xdc,0x98,0x8b,0xdb,0x64,0xab,0xe5,0x86,0xeb,0xfd,0x6d,0xc2,0x4a,0xe8,0x4f,0x64,0xf6,0x0,0xef,0xc8,0xa,0xaf,0xba,0x22,0xbf,0x9a,0xdd,0x26,0x97,0x88,0xf0,0xe7,0xa9,0xe3,0xf1,0xb2,0x83,0x60,0x3a,0x52,0xed,0x53,0x2a,0x35,0x72,0x8,0xac,0x7c,0xe5,0x19,0x69,0xd7,0xf6,0xc1,0x4d,0x4f,0x63,0xb1,0xdf,0x8b,0x6d,0x80,0x2f,0x57,0xe1,0x3e,0x23,0x69,0x7,0xbf,0xe2,0x76,0xf,0xe2,0x14,0x12,0x4f,0x8d,0xee,0xeb,0xa,0xca,0x2,0x74,0x10,0x37,0xff,0xf8,0x78,0x75,0x75,0x53,0x57,0xaf,0x15,0xbd,0x6e,0x76,0x8c,0xa5,0x5a,0x49,0xbd,0x99,0x26,0xad,0xd,0x6f,0xdd,0xf0,0xb8,0x93,0x45,0x1,0xc3,0x5f,0x21,0x0,0x23,0x39,0x3c,0x3a,0x79,0xcc,0x11,0x74,0x88,0x3e,0x3e,0x23,0xf8,0x39,0xc6,0x0,0x80,0x45,0x79,0xbf,0xdc,0x19,0x1f,0xa2,0xbc,0x10,0xda,0x6,0xde,0x34,0x6b,0x11,0x4b,0xcb,0x1f,0x80,0x21,0xdb,0x40,0x93,0x61,0xc5,0xfc,0x56,0xfd,0xab,0xac,0x60,0xf4,0x79,0xa4,0x39,0x4d,0xb,0x10,0x49,0x89,0xc,0x6a,0xf0,0xa,0xda,0x1,0xf0,0x4e,0x6e,0xe6,0x2e,0x35,0x9f,0xa2,0x76,0x9f,0x2a,0xe5,0x85,0xa9,0x55,0x43,0xb7,0xc5,0xc,0x69,0xd7,0x64,0x58,0x62,0xb7,0x89,0x73,0xe9,0x2f,0x57,0x9e,0xa6,0x41,0x8c,0x6d,0x7a,0xd2,0x96,0x7d,0xa4,0xed,0x5c,0xb4,0xdb,0x35,0xdf,0x56,0x33,0xb3,0x15,0x99,0x5c,0xc9,0xac,0x27,0x14,0xb6,0x63,0x63,0x52,0xe1,0xda,0xb,0xc4,0x3a,0x61,0x56,0x57,0x62,0x4c,0x82,0x86,0x7b,0xda,0xa7,0xbf,0x2b,0x8a,0xe9,0xc0,0xc1,0xe3,0x6c,0x3f,0x9,0xe8,0x74,0x8d,0x4,0x6f,0x60,0xba,0x41,0x1,0x2c,0x37,0xd8,0x2d,0x9,0xbe,0x69,0xd8,0x1a,0x56,0x96,0xee,0x65,0x97,0x39,0x2e,0xb5,0xea,0xa0,0x6b,0xcf,0x42,0xc0,0xf8,0x98,0xa3,0xe9,0xe8,0x8,0x22,0xff,0x92,0x7d,0xf8,0xe1,0x7d,0x52,0xc3,0xdd,0x60,0xb3,0x16,0x87,0xa6,0x1a,0xc,0xe3,0xe9,0xe1,0xa5,0x6f,0xd9,0xe9,0x7c,0x30,0xc8,0x7c,0x3e,0xf,0x78,0xfe,0x44,0x33,0x4b,0x3c,0x21,0x4a,0x9a,0x15,0xa5,0x11,0xdd,0x88,0x1d,0x1b,0x7b,0x5c,0xe6,0x36,0x33,0xec,0x47,0x0,0x6a,0x6f,0x18,0x8c,0x5b,0x37,0xaf,0xb7,0x4d,0xd4,0xf1,0x7c,0x3b,0x18,0x28,0xd1,0x1b,0x35,0x66,0x30,0x6,0x88,0x68,0x6c,0x18,0x8e,0xb5,0xa0,0x6f,0xb4,0xd8,0x9f,0x34,0x9c,0x4e,0x92,0x86,0x78,0xab,0x91,0xad,0x1d,0xf9,0x93,0xae,0x79,0xfd,0x60,0xf0,0x89,0x62,0x1,0xfb,0x63,0xef,0xc,0xc3,0xa6,0x3a,0x44,0x4a,0xb1,0x9f,0x5,0x65,0xea,0x3b,0xa,0xc,0xab,0xda,0x5a,0x7f,0x3,0x76,0x88,0x22,0x4c,0x89,0x5d,0xc7,0x52,0x19,0x2d,0xfd,0x41,0xb6,0xa,0x75,0xd7,0x35,0x52,0x71,0xb4,0x6d,0x2a,0xcc,0x6a,0xf8,0xea,0x97,0xd5,0x56,0xb0,0x1c,0x34,0xfc,0xb3,0xa6,0x6f,0x86,0x9a,0xd3,0xfe,0x90,0xf1,0x71,0x4f,0x7f,0xbe,0x68,0x43,0xdf,0x7b,0xf,0xc7,0xbd,0x70,0xdb,0x94,0x8f,0x87,0x8c,0xd8,0x4a,0x53,0xa4,0x7f,0x29,0x2a,0xe,0xb,0xd7,0xbf,0xe3,0x8a,0xbe,0xaf,0x87,0xb2,0xa,0x6c,0x34,0x8e,0xd0,0x38,0x32,0x7a,0x92,0x97,0xc9,0x14,0xcc,0xf2,0x45,0x4b,0x1b,0x63,0x13,0xf3,0xb1,0x6d,0x9e,0x1d,0x2e,0x47,0x3e,0x27,0xac,0x85,0x4a,0xff,0x6b,0xac,0xf5,0x8d,0x99,0x5a,0xb1,0xd9,0x96,0x1a,0xfa,0x96,0xa5,0x3,0xe3,0xae,0x1,0xfb,0x11,0x71,0x60,0xcb,0x60,0xa,0x1f,0xde,0x83,0xfd,0xa9,0xdf,0xb7,0x84,0xf7,0xa8,0xc6,0xc0,0x44,0x1a,0x30,0xd3,0xdd,0xfb,0x34,0x20,0xd3,0xb1,0x8a,0x33,0xe3,0x53,0xe4,0xb9,0x7d,0xb0,0xc6,0xb5,0xbc,0x67,0xa7,0xdf,0xfe,0xd9,0x99,0x6a,0xa0,0x7,0xa7,0xd9,0x2c,0x13,0xb2,0x8,0x58,0x1f,0x5a,0xe0,0x34,0x70,0x98,0xb5,0x5a,0x73,0x9a,0x3e,0xc5,0xbd,0x54,0xc0,0x42,0xb2,0xd7,0x81,0xa8,0x1e,0xfd,0x70,0xf2,0xbf,0xf0,0x24,0xc7,0xed,0x65,0xcc,0x78,0x5c,0xbe,0x64,0xed,0xb3,0x66,0x7e,0x53,0xfb,0x6d,0x3b,0x33,0x97,0x9a,0xef,0xa2,0x88,0xa6,0xba,0x73,0x97,0xb,0x53,0x3a,0xe7,0x4,0xf7,0xcf,0x4e,0x9a,0x66,0xf4,0xa9,0x38,0x79,0xae,0x88,0x3c,0x93,0x64,0xe3,0x69,0xdf,0xd8,0x81,0x20,0x33,0xec,0xe2,0xaf,0xc1,0xee,0xa1,0xe2,0x15,0xfb,0x5,0xec,0xb0,0x8,0xc2,0xe9,0x72,0x9,0xfa,0x3b,0x7f,0xa5,0x55,0xec,0x19,0xa2,0x76,0xe7,0xf6,0xba,0xee,0x22,0x60,0x5f,0xa8,0xf2,0x94,0x46,0x83,0x17,0xbc,0x27,0x83,0x97,0xab,0x23,0xf8,0xe0,0xef,0xaf,0x1b,0xf0,0x29,0xd5,0xaa,0xec,0xf4,0xb8,0x9,0xed,0x4a,0xc6,0x70,0x27,0x76,0xba,0x41,0xce,0xa8,0x15,0xf4,0x42,0x70,0xa,0x34,0xf4,0xee,0x73,0xc6,0x4e,0xdc,0x99,0x32,0x7b,0x10,0x74,0x55,0x84,0x9d,0x25,0x1,0x2,0x37,0x4c,0x18,0x6c,0xa3,0xa5,0x59,0x8b,0xbc,0x81,0x14,0x66,0xe9,0xc9,0x44,0xee,0xb5,0x1e,0x3f,0xbd,0x71,0xc1,0x4e,0xb7,0x7a,0xd5,0xb6,0x73,0xe7,0xbe,0x93,0x2a,0x2f,0x77,0x73,0x9e,0xe7,0x1f,0x1e,0xc1,0x20,0xf8,0x45,0x3,0xca,0xa3,0x9e,0x26,0x78,0xcb,0xdf,0x6c,0x93,0xe2,0x55,0x55,0xec,0x7f,0xc1,0x1a,0x7e,0x26,0x1,0x5b,0xec,0xb0,0x9,0x95,0xd6,0x9b,0xcc,0x37,0x7a,0x9f,0x4,0x71,0x69,0xd2,0x75,0x45,0xf5,0x1b,0x7c,0x77,0xde,0xa4,0x74,0xaf,0x2,0x43,0xec,0x8,0x9b,0xab,0xbe,0x73,0xa4,0x98,0x8a,0x3e,0x1a,0x38,0xaf,0x23,0xbf,0xaf,0xa8,0x83,0x1,0xd2,0x40,0x92,0xc8,0x11,0x43,0xb2,0x7d,0x2e,0xbc,0x68,0x93,0xb8,0x7a,0xf7,0xfc,0xa1,0xad,0x41,0xc6,0x17,0x48,0x4c,0x95,0xe1,0x2f,0x11,0x90,0x37,0x6f,0xeb,0x16,0x80,0x85,0xd2,0x39,0x2e,0xb4,0xef,0xfd,0x3a,0x72,0x95,0x3b,0x75,0xd8,0x1c,0xb9,0xa7,0x5a,0xda,0x5f,0xec,0x8b,0xf3,0xa6,0x6b,0xac,0xae,0x93,0x7a,0xa7,0x51,0x21,0x7b,0xc6,0xf8,0x6d,0x6f,0x56,0xea,0xb0,0x55,0x3b,0xa9,0x5b,0x1b,0xcd,0x81,0x42,0xeb,0xa,0x11,0xcb,0xfb,0x57,0x7b,0x9e,0x8e,0x7e,0x10,0x7b,0xcc,0x98,0xfe,0xd1,0x63,0x1d,0x45,0xab,0xe3,0x1a,0x82,0x8c,0x2a,0x7c,0x90,0xa3,0x8d,0x26,0xe9,0xab,0xfd,0xce,0x75,0x19,0x2f,0x8,0x28,0x1c,0x36,0x2d,0x7d,0x4b,0x75,0x17,0xce,0xd8,0xa7,0x40,0xea,0x48,0xc4,0x19,0x40,0x4e,0xff,0x89,0xa2,0xda,0xbe,0x75,0x83,0x6c,0xc6,0x15,0xcb,0xa5,0xa1,0xef,0x8e,0x32,0x7e,0x12,0x84,0x6,0x7,0xe7,0x5f,0x1c,0x65,0x67,0xde,0x84,0xa1,0x25,0x3a,0xe0,0x30,0x2,0xb9,0x6b,0x9a,0x98,0x61,0xc6,0x3b,0xcf,0xca,0x5c,0x5c,0x1a,0x7f,0xc9,0x8d,0x8d,0x4e,0xd,0xd9,0x6c,0xb7,0x16,0x78,0xaf,0x1,0x4a,0x1,0xa2,0x85,0x8f,0x5a,0x39,0x5d,0x2e,0xe6,0x65,0x56,0x6d,0xb0,0xca,0xfd,0xa7,0x12,0x7a,0x7f,0x3,0x39,0x92,0xa1,0x31,0x60,0x38,0x4c,0x90,0xc4,0x15,0xfe,0xa1,0x52,0x4e,0xc,0x86,0xae,0xd3,0x68,0x1,0xef,0xcf,0xfa,0xe0,0x46,0x22,0xf4,0xd1,0x8d,0x94,0x76,0x97,0xf3,0x68,0xcf,0x86,0xe7,0xb0,0x2b,0xc7,0xef,0x68,0xad,0xdb,0xc,0x5f,0xcf,0x10,0xf7,0x8,0x71,0x4f,0x5c,0xd9,0x98,0x2d,0x7e,0x7,0xce,0xe3,0xaa,0x72,0xdf,0x1e,0x0,0x0 }; -const uint8_t script_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0x9d,0x56,0x5b,0x6f,0xdb,0x36,0x14,0x7e,0xf7,0xaf,0x60,0x55,0xa0,0x92,0x53,0x57,0x4a,0x96,0x5d,0xba,0x18,0x19,0xb0,0xa5,0x9,0x1a,0xa0,0xd9,0x80,0x25,0x43,0x1e,0xd2,0xc0,0x90,0xa9,0x23,0x89,0x8b,0x4c,0x7a,0x24,0x65,0x27,0x58,0xf3,0xdf,0x77,0x78,0xd1,0xd5,0x5e,0xbb,0x2e,0xf,0x81,0x75,0xf8,0x9d,0xef,0xdc,0xf,0x99,0x1c,0x4c,0x8,0x21,0x37,0x25,0x53,0x44,0x89,0x5c,0x6f,0x53,0x9,0x4,0x7f,0x57,0x8c,0x2,0x57,0x90,0x91,0x9a,0x67,0x20,0x89,0x2e,0x81,0x5c,0x5d,0xde,0x90,0xf,0x4e,0x1c,0x93,0x6b,0x0,0x2b,0xf4,0x38,0x92,0xb3,0xa,0xff,0x9,0x49,0x32,0xd0,0x29,0xab,0x54,0x6c,0x58,0xaf,0x45,0x2d,0x29,0x9c,0x90,0x52,0xeb,0xb5,0x3a,0x49,0x92,0x82,0xe9,0xb2,0x5e,0xc6,0x54,0xac,0x12,0xb5,0x4e,0x29,0x94,0x75,0xc9,0x35,0xd0,0x32,0xb9,0x65,0x17,0xec,0x5d,0x4d,0x1f,0x26,0xe4,0x20,0x99,0x4c,0x92,0x84,0x9c,0x9a,0x3f,0xf2,0x1e,0xaa,0x35,0x1a,0xbf,0xa8,0x39,0xd5,0x4c,0x70,0xe5,0xc5,0x49,0x32,0xc9,0xbd,0x88,0x54,0xa2,0x88,0x56,0xaa,0x98,0x92,0xbf,0xd1,0x20,0x45,0x8c,0xa8,0x20,0x6e,0x84,0xf3,0xc9,0xf3,0xa4,0x83,0x9e,0x47,0x2c,0x73,0x38,0x9,0xba,0x96,0x9c,0x64,0x82,0xd6,0x2b,0xe0,0x3a,0x2e,0x40,0x9f,0x57,0x60,0x7e,0xfe,0xf2,0x74,0x99,0x19,0xd8,0x50,0x33,0x13,0x5b,0x5e,0x89,0x34,0x5b,0xe8,0x47,0x1d,0x99,0x48,0x7f,0x4d,0x57,0x30,0xb3,0x31,0x9f,0x9,0x8c,0x80,0x6b,0xc7,0xbb,0x49,0x25,0x1,0x47,0x44,0x4e,0x3b,0x7a,0x2a,0x21,0xd5,0xe0,0x2d,0x44,0x61,0x1a,0x22,0x3d,0x69,0x80,0xb1,0x2,0xfd,0xb3,0xd6,0x92,0x2d,0x6b,0xd,0x51,0x58,0x4a,0xc8,0xc3,0x19,0x9,0xb3,0x54,0xa7,0x27,0x1a,0x1e,0x75,0xb2,0xae,0x52,0xc6,0xe7,0xb4,0x4c,0x25,0x22,0x4f,0x6b,0x9d,0xbf,0x79,0x3b,0xb,0xc9,0x6b,0x2,0x9c,0x8a,0xc,0xfe,0xf8,0xfd,0xf2,0x4c,0xac,0xd6,0x82,0x1b,0xea,0xbe,0x43,0x9f,0xb1,0xd1,0x84,0x13,0xba,0x10,0x4c,0x30,0x88,0xee,0xc3,0xf5,0x13,0x66,0x31,0x63,0xa,0x6d,0x3f,0x61,0x24,0x21,0x47,0xfe,0xd0,0x10,0xb6,0x31,0x2d,0x45,0xf6,0x14,0xa7,0xeb,0x35,0xf0,0xec,0xac,0x64,0x55,0x16,0x79,0xdd,0x21,0x11,0xc5,0xf6,0x78,0x88,0x9c,0x6c,0xa8,0x2a,0x61,0x25,0x36,0x30,0x56,0xed,0x27,0x3d,0x67,0x8f,0x17,0xde,0xbb,0x36,0xe7,0x2e,0xcd,0x2c,0x27,0xad,0x24,0xae,0x80,0x17,0xba,0x24,0x3f,0x91,0x43,0x77,0x38,0x3c,0xbe,0x3b,0xbc,0x27,0x2f,0x30,0x80,0x24,0x6c,0x4e,0x49,0x1b,0x33,0xb1,0x72,0xcc,0x64,0x23,0x98,0x5b,0xc0,0xf3,0x64,0x32,0x42,0xb5,0xb6,0x24,0x60,0x42,0x28,0x44,0x9,0x49,0xa,0xac,0xd1,0xc7,0x37,0xae,0x92,0xcf,0x5d,0x4b,0x75,0x54,0xcf,0xbd,0x3e,0x7e,0xf7,0xdb,0x15,0xb9,0x4a,0x39,0x5b,0xd7,0x55,0x6a,0x63,0xdb,0xed,0x63,0xa5,0x53,0x5d,0xab,0x68,0x85,0x25,0xf5,0xbd,0x5c,0x4b,0x89,0x49,0x59,0xb8,0x3,0xf4,0xc2,0x1c,0xd9,0x44,0x9a,0xf8,0xcc,0x7,0xb2,0x90,0x0,0x5b,0x9e,0x3,0xd5,0x90,0x5,0x4d,0x80,0xe7,0x51,0xe0,0x74,0x82,0xa9,0x2f,0xe4,0x32,0xa5,0xf,0x85,0x14,0x38,0xc9,0x67,0xa2,0xc2,0x11,0x45,0xb5,0x97,0xc7,0xf4,0xbb,0xc0,0xfa,0x8e,0xb5,0xc2,0xf1,0x1d,0x70,0x62,0xe1,0xff,0x2f,0x6d,0x76,0x7c,0xbc,0x8f,0x36,0x66,0x9c,0x56,0x75,0x6,0x2a,0xa,0xd6,0x52,0x2c,0xb1,0xde,0xc8,0xfb,0xe9,0x13,0x19,0x9d,0x81,0x94,0x42,0x6,0xd3,0xaf,0x33,0x99,0xe7,0xf4,0xe8,0xf0,0x87,0xbe,0xd5,0xe4,0x60,0x5f,0x8a,0x18,0x2f,0xe2,0x38,0xe,0xa6,0x7,0xc9,0x57,0xd1,0x1f,0xa6,0xe0,0xb8,0x4d,0xea,0xfb,0x2a,0xc,0x59,0xe5,0xfb,0x9b,0xab,0xf,0x6d,0x6d,0xfa,0x25,0xbf,0x85,0x25,0xae,0x3f,0xfa,0x0,0x7a,0xff,0xd2,0x5a,0x6c,0x55,0xb7,0xb7,0xcc,0xbe,0xa,0xee,0x6e,0xaf,0xef,0x49,0x80,0xed,0xb8,0xbb,0xb9,0x70,0x7c,0x17,0x1b,0x90,0xa,0x7f,0x47,0x4a,0x4b,0xa7,0x84,0xbe,0x78,0xd9,0xc8,0x19,0x44,0x58,0x75,0xb3,0x8d,0xb6,0xa6,0x73,0x78,0x5d,0x55,0x73,0x74,0x80,0x6c,0xd1,0x29,0xe5,0x9c,0x62,0x1c,0x3,0xe1,0x14,0x3c,0x6a,0x41,0xd3,0xaa,0x32,0xe1,0x23,0xdc,0x79,0x67,0x15,0x56,0xa0,0x54,0x5a,0x0,0x76,0x37,0x5,0xb6,0x1,0xd2,0xa0,0x1a,0x2d,0x74,0x75,0xf1,0x57,0xd,0xb5,0x99,0x92,0xbb,0x7b,0xab,0xe2,0x3e,0xcd,0x4d,0x20,0x6a,0x5d,0x8,0xcc,0x7a,0xc3,0xa2,0xac,0x16,0xd5,0xc6,0xa5,0x3c,0xc5,0x42,0x59,0x3c,0xad,0x0,0xa5,0x5a,0x60,0x90,0x3c,0x23,0x79,0x95,0x16,0x56,0xb9,0xb1,0x6c,0xe9,0x5c,0x2c,0x3b,0x13,0x11,0x60,0x61,0x1a,0x4f,0x2c,0x6e,0xc1,0x70,0xf7,0xc9,0x4d,0x5a,0x35,0x41,0xf,0xb,0xe2,0xeb,0xf1,0xb9,0xeb,0xa4,0x1f,0xd3,0xa2,0x5e,0xe3,0x16,0x86,0xa8,0x5b,0x3a,0xc6,0xf7,0x57,0xaf,0x6,0xa0,0xd1,0xfe,0xb1,0x8d,0x65,0x5c,0x62,0x1a,0x56,0xe8,0xc5,0x0,0xaa,0x4a,0x96,0x6b,0xbf,0xd,0x1d,0xaa,0x89,0xf2,0xd4,0xe2,0x63,0xff,0x39,0x6f,0xcf,0x7b,0x55,0xb1,0x80,0xe6,0xdb,0x53,0x6c,0x55,0x6c,0xb2,0x16,0x79,0xbd,0xe9,0xdc,0x4b,0xfb,0xd5,0x1c,0xa9,0x34,0x57,0x64,0x6,0xcb,0x1a,0x9b,0xee,0xa5,0xeb,0xb8,0x81,0x7e,0xbf,0x42,0xb6,0xf1,0xfb,0xad,0x88,0xe4,0x7d,0x93,0xb3,0x96,0x7f,0x66,0xca,0x46,0xa1,0xd1,0xec,0x92,0xf6,0xc2,0x43,0x63,0x54,0x53,0xb7,0xf8,0x2,0x88,0xc2,0x8f,0x3c,0xc4,0x21,0x6f,0x82,0x7f,0x8d,0x7b,0x18,0x25,0xd6,0x41,0x4f,0xbf,0x90,0xe9,0xf6,0x5f,0x4d,0x8c,0x86,0xe3,0xbf,0xa8,0xc,0xbd,0x32,0x99,0x15,0xcb,0x3f,0x51,0xe8,0x16,0x41,0xe0,0xd5,0x82,0x93,0xc6,0xa7,0x99,0x93,0x37,0x2c,0x78,0xd0,0x76,0x3e,0x26,0xa4,0xdd,0xc2,0xce,0x1d,0xcf,0x32,0x28,0x75,0xcd,0x5d,0xb1,0xd1,0xcc,0xb4,0xb7,0x99,0xf6,0x20,0xd7,0xb5,0x2a,0x3b,0xd8,0x38,0x32,0xd7,0x82,0xbe,0xe5,0x7d,0x27,0x36,0x25,0x68,0x56,0xd1,0xcc,0x5f,0x1e,0xbb,0x79,0x61,0x9c,0x69,0xaf,0xe4,0x19,0xc6,0xcb,0xd0,0x27,0xdd,0xcc,0xb,0x6c,0xbb,0x19,0x89,0x82,0xad,0x79,0xaf,0x1d,0xfd,0xf8,0x4d,0x7c,0xf4,0xfd,0xdb,0xf8,0xdb,0xf8,0x28,0xd9,0xaa,0x16,0x1d,0xb,0x2e,0xf0,0xe2,0x37,0x49,0xf5,0xc6,0x22,0xd8,0xb4,0x8f,0x20,0xd2,0xac,0xb7,0xfe,0xdd,0xe4,0x3a,0x6b,0xe4,0x84,0x3b,0x68,0x52,0xe2,0x62,0xa2,0x95,0x50,0x80,0x21,0x39,0x8e,0x19,0xd1,0xb2,0xee,0xf5,0xb5,0xc3,0x34,0x6b,0x6f,0xd6,0x5f,0x8c,0x3d,0xa6,0x96,0x3e,0x72,0x49,0xed,0xdc,0xb6,0xec,0x5f,0xf4,0x7b,0x78,0xff,0xd,0x5d,0xdf,0x3d,0xeb,0xd1,0x77,0xe3,0xbc,0xdf,0x80,0x1d,0x79,0x55,0xe0,0xb9,0x15,0xc7,0xe6,0x91,0xe7,0xdd,0xee,0x5d,0x9,0x5e,0x62,0x1a,0xac,0x3f,0xca,0xb8,0x78,0xf0,0x74,0xcf,0x7b,0x67,0x30,0xf1,0x9e,0xa1,0xf7,0x90,0x71,0xe3,0x6c,0xf2,0x38,0xf2,0xd6,0xde,0xb6,0x5f,0x4c,0x86,0xbf,0x93,0x87,0x59,0x68,0x85,0x83,0x9d,0x62,0xa5,0x9e,0xa5,0xb3,0xd5,0xb7,0x3f,0x69,0xc3,0x1a,0xee,0xeb,0xa9,0xbb,0x6,0x2e,0xfd,0xe7,0x1e,0xc0,0xdc,0x35,0xfe,0xce,0x9a,0xc7,0xe,0xe8,0x6b,0x8d,0x97,0xf7,0x8c,0x1c,0x99,0xb1,0xf8,0x7,0xd,0xab,0x65,0x55,0xe5,0xc,0x0,0x0 }; +const uint8_t script_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0x9d,0x56,0x5b,0x6f,0xdb,0x36,0x14,0x7e,0xf7,0xaf,0x60,0x55,0xa0,0x92,0x53,0x57,0x4a,0x96,0x5d,0xba,0x18,0x19,0xb0,0xa5,0x9,0x1a,0xa0,0xd9,0x80,0x25,0x43,0x1e,0xd2,0xc0,0x90,0xa9,0x23,0x89,0x8b,0x4c,0x7a,0x24,0x65,0x27,0x58,0xf3,0xdf,0x77,0x78,0xd1,0xd5,0x5e,0xbb,0x2e,0xf,0x81,0x75,0xf8,0x9d,0xef,0xdc,0xf,0x99,0x1c,0x4c,0x8,0x21,0x37,0x25,0x53,0x44,0x89,0x5c,0x6f,0x53,0x9,0x4,0x7f,0x57,0x8c,0x2,0x57,0x90,0x91,0x9a,0x67,0x20,0x89,0x2e,0x81,0x5c,0x5d,0xde,0x90,0xf,0x4e,0x1c,0x93,0x6b,0x0,0x2b,0xf4,0x38,0x92,0xb3,0xa,0xff,0x9,0x49,0x32,0xd0,0x29,0xab,0x54,0x6c,0x58,0xaf,0x45,0x2d,0x29,0x9c,0x90,0x52,0xeb,0xb5,0x3a,0x49,0x92,0x82,0xe9,0xb2,0x5e,0xc6,0x54,0xac,0x12,0xb5,0x4e,0x29,0x94,0x75,0xc9,0x35,0xd0,0x32,0xb9,0x65,0x17,0xec,0x5d,0x4d,0x1f,0x26,0xe4,0x20,0x99,0x4c,0x92,0x84,0x9c,0x9a,0x3f,0xf2,0x1e,0xaa,0x35,0x1a,0xbf,0xa8,0x39,0xd5,0x4c,0x70,0xe5,0xc5,0x49,0x32,0xc9,0xbd,0x88,0x54,0xa2,0x88,0x56,0xaa,0x98,0x92,0xbf,0xd1,0x20,0x45,0x8c,0xa8,0x20,0x6e,0x84,0xf3,0xc9,0xf3,0xa4,0x83,0x9e,0x47,0x2c,0x73,0x38,0x9,0xba,0x96,0x9c,0x64,0x82,0xd6,0x2b,0xe0,0x3a,0x2e,0x40,0x9f,0x57,0x60,0x7e,0xfe,0xf2,0x74,0x99,0x19,0xd8,0x50,0x33,0x13,0x5b,0x5e,0x89,0x34,0x5b,0xe8,0x47,0x1d,0x99,0x48,0x7f,0x4d,0x57,0x30,0xb3,0x31,0x9f,0x9,0x8c,0x80,0x6b,0xc7,0xbb,0x49,0x25,0x1,0x47,0x44,0x4e,0x3b,0x7a,0x2a,0x21,0xd5,0xe0,0x2d,0x44,0x61,0x1a,0x22,0x3d,0x69,0x80,0xb1,0x2,0xfd,0xb3,0xd6,0x92,0x2d,0x6b,0xd,0x51,0x58,0x4a,0xc8,0xc3,0x19,0x9,0xb3,0x54,0xa7,0x27,0x1a,0x1e,0x75,0xb2,0xae,0x52,0xc6,0xe7,0xb4,0x4c,0x25,0x22,0x4f,0x6b,0x9d,0xbf,0x79,0x3b,0xb,0xc9,0x6b,0x2,0x9c,0x8a,0xc,0xfe,0xf8,0xfd,0xf2,0x4c,0xac,0xd6,0x82,0x1b,0xea,0xbe,0x43,0x9f,0xb1,0xd1,0x84,0x13,0xba,0x10,0x4c,0x30,0x88,0xee,0xc3,0xf5,0x13,0x66,0x31,0x63,0xa,0x6d,0x3f,0x61,0x24,0x21,0x47,0xfe,0xd0,0x10,0xb6,0x31,0x2d,0x45,0xf6,0x14,0xa7,0xeb,0x35,0xf0,0xec,0xac,0x64,0x55,0x16,0x79,0xdd,0x21,0x11,0xc5,0xf6,0x78,0x88,0x9c,0x6c,0xa8,0x2a,0x61,0x25,0x36,0x30,0x56,0xed,0x27,0x3d,0x67,0x8f,0x17,0xde,0xbb,0x36,0xe7,0x2e,0xcd,0x2c,0x27,0xad,0x24,0xae,0x80,0x17,0xba,0x24,0x3f,0x91,0x43,0x77,0x38,0x3c,0xbe,0x3b,0xbc,0x27,0x2f,0x30,0x80,0x24,0x6c,0x4e,0x49,0x1b,0x33,0xb1,0x72,0xcc,0x64,0x23,0x98,0x5b,0xc0,0xf3,0x64,0x32,0x42,0xb5,0xb6,0x24,0x60,0x42,0x28,0x44,0x9,0x49,0xa,0xac,0xd1,0xc7,0x37,0xae,0x92,0xcf,0x5d,0x4b,0x75,0x54,0xcf,0xbd,0x3e,0x7e,0xf7,0xdb,0x15,0xb9,0x4a,0x39,0x5b,0xd7,0x55,0x6a,0x63,0xdb,0xed,0x63,0xa5,0x53,0x5d,0xab,0x68,0x85,0x25,0xf5,0xbd,0x5c,0x4b,0x89,0x49,0x59,0xb8,0x3,0xf4,0xc2,0x1c,0xd9,0x44,0x9a,0xf8,0xcc,0x7,0xb2,0x90,0x0,0x5b,0x9e,0x3,0xd5,0x90,0x5,0x4d,0x80,0xe7,0x51,0xe0,0x74,0x82,0xa9,0x2f,0xe4,0x32,0xa5,0xf,0x85,0x14,0x38,0xc9,0x67,0xa2,0xc2,0x11,0x45,0xb5,0x97,0xc7,0xf4,0xbb,0xc0,0xfa,0x8e,0xb5,0xc2,0xf1,0x1d,0x70,0x62,0xe1,0xff,0x2f,0x6d,0x76,0x7c,0xbc,0x8f,0x36,0x66,0x9c,0x56,0x75,0x6,0x2a,0xa,0xd6,0x52,0x2c,0xb1,0xde,0xc8,0xfb,0xe9,0x13,0x19,0x9d,0x81,0x94,0x42,0x6,0xd3,0xaf,0x33,0x99,0xe7,0xf4,0xe8,0xf0,0x87,0xbe,0xd5,0xe4,0x60,0x5f,0x8a,0x18,0x2f,0xe2,0x38,0xe,0xa6,0x7,0xc9,0x57,0xd1,0x1f,0xa6,0xe0,0xb8,0x4d,0xea,0xfb,0x2a,0xc,0x59,0xe5,0xfb,0x9b,0xab,0xf,0x6d,0x6d,0xfa,0x25,0xbf,0x85,0x25,0xae,0x3f,0xfa,0x0,0x7a,0xff,0xd2,0x5a,0x6c,0x55,0xb7,0xb7,0xcc,0xbe,0xa,0xee,0x6e,0xaf,0xef,0x49,0x80,0xed,0xb8,0xbb,0xb9,0x70,0x7c,0x17,0x1b,0x90,0xa,0x7f,0x47,0x4a,0x4b,0xa7,0x84,0xbe,0x78,0xd9,0xc8,0x19,0x44,0x58,0x75,0xb3,0x8d,0xb6,0xa6,0x73,0x78,0x5d,0x55,0x73,0x74,0x80,0x6c,0xd1,0x29,0xe5,0x9c,0x62,0x1c,0x3,0xe1,0x14,0x3c,0x6a,0x41,0xd3,0xaa,0x32,0xe1,0x23,0xdc,0x79,0x67,0x15,0x56,0xa0,0x54,0x5a,0x0,0x76,0x37,0x5,0xb6,0x1,0xd2,0xa0,0x1a,0x2d,0x74,0x75,0xf1,0x57,0xd,0xb5,0x99,0x92,0xbb,0x7b,0xab,0xe2,0x3e,0xcd,0x4d,0x20,0x6a,0x5d,0x8,0xcc,0x7a,0xc3,0xa2,0xac,0x16,0xd5,0xc6,0xa5,0x3c,0xc5,0x42,0x59,0x3c,0xad,0x0,0xa5,0x5a,0x60,0x90,0x3c,0x23,0x79,0x95,0x16,0x56,0xb9,0xb1,0x6c,0xe9,0x5c,0x2c,0x3b,0x13,0x11,0x60,0x61,0x1a,0x4f,0x2c,0x6e,0xc1,0x70,0xf7,0xc9,0x4d,0x5a,0x35,0x41,0xf,0xb,0xe2,0xeb,0xf1,0xb9,0xeb,0xa4,0x1f,0xd3,0xa2,0x5e,0xe3,0x16,0x86,0xa8,0x5b,0x3a,0xc6,0xf7,0x57,0xaf,0x6,0xa0,0xd1,0xfe,0xb1,0x8d,0x65,0x5c,0x62,0x1a,0x56,0xe8,0xc5,0x0,0xaa,0x4a,0x96,0x6b,0xbf,0xd,0x1d,0xaa,0x89,0xf2,0xd4,0xe2,0x63,0xff,0x39,0x6f,0xcf,0x7b,0x55,0xb1,0x80,0xe6,0xdb,0x53,0x6c,0x55,0x6c,0xb2,0x16,0x79,0xbd,0xe9,0xdc,0x4b,0xfb,0xd5,0x1c,0xa9,0x34,0x57,0x64,0x6,0xcb,0x1a,0x9b,0xee,0xa5,0xeb,0xb8,0x81,0x7e,0xbf,0x42,0xb6,0xf1,0xfb,0xad,0x88,0xe4,0x7d,0x93,0xb3,0x96,0x7f,0x66,0xca,0x46,0xa1,0xd1,0xec,0x92,0xf6,0xc2,0x43,0x63,0x54,0x53,0xb7,0xf8,0x2,0x88,0xc2,0x8f,0x3c,0xc4,0x21,0x6f,0x82,0x7f,0x8d,0x7b,0x18,0x25,0xd6,0x41,0x4f,0xbf,0x90,0xe9,0xf6,0x5f,0x4d,0x8c,0x86,0xe3,0xbf,0xa8,0xc,0xbd,0x32,0x99,0x15,0xcb,0x3f,0x51,0xe8,0x16,0x41,0xe0,0xd5,0x82,0x93,0xc6,0xa7,0x99,0x93,0x37,0x2c,0x78,0xd0,0x76,0x3e,0x26,0xa4,0xdd,0xc2,0xce,0x1d,0xcf,0x32,0x28,0x75,0xcd,0x5d,0xb1,0xd1,0xcc,0xb4,0xb7,0x99,0xf6,0x20,0xd7,0xb5,0x2a,0x3b,0xd8,0x38,0x32,0xd7,0x82,0xbe,0xe5,0x7d,0x27,0x36,0x25,0x68,0x56,0xd1,0xcc,0x5f,0x1e,0xbb,0x79,0x61,0x9c,0x69,0xaf,0xe4,0x19,0xc6,0xcb,0xd0,0x27,0xdd,0xcc,0xb,0x6c,0xbb,0x19,0x89,0x82,0xad,0x79,0xaf,0x1d,0xfd,0xf8,0x4d,0x7c,0xf4,0xfd,0xdb,0xf8,0xdb,0xf8,0x28,0xd9,0xaa,0x16,0x1d,0xb,0x2e,0xf0,0xe2,0x37,0x49,0xf5,0xc6,0x22,0xd8,0xb4,0x8f,0x20,0xd2,0xac,0xb7,0xfe,0xdd,0xe4,0x3a,0x6b,0xe4,0x84,0x3b,0x68,0x52,0xe2,0x62,0xa2,0x95,0x50,0x80,0x21,0x39,0x8e,0x19,0xd1,0xb2,0xee,0xf5,0xb5,0xc3,0x34,0x6b,0x6f,0xd6,0x5f,0x8c,0x3d,0xa6,0x96,0x3e,0x72,0x49,0xed,0xdc,0xb6,0xec,0x5f,0xf4,0x7b,0x78,0xff,0xd,0x5d,0xdf,0x3d,0xeb,0xd1,0x77,0xe3,0xbc,0xdf,0x80,0x1d,0x79,0x55,0xe0,0xb9,0x15,0xc7,0xe6,0x91,0xe7,0xdd,0xee,0x5d,0x9,0x5e,0x62,0x1a,0xac,0x3f,0xca,0xb8,0x78,0xf0,0x74,0xcf,0x7b,0x67,0x30,0xf1,0x9e,0xa1,0xf7,0x90,0x71,0xe3,0x6c,0xf2,0x38,0xf2,0xd6,0xde,0xb6,0x5f,0x4c,0x86,0xbf,0x93,0x87,0x59,0x68,0x85,0x83,0x9d,0x62,0xa5,0x9e,0xa5,0xb3,0xd5,0xb7,0x3f,0x69,0xc3,0x1a,0xee,0xeb,0xa9,0xbb,0x6,0x2e,0xfd,0xe7,0x1e,0xc0,0xdc,0x35,0xfe,0xce,0x9a,0xc7,0xe,0xe8,0x6b,0x8d,0x97,0xf7,0x8c,0x1c,0x99,0xb1,0xf8,0x7,0xd,0xab,0x65,0x55,0xe5,0xc,0x0,0x0 }; -const uint8_t settings_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0x95,0x56,0x51,0x6f,0xdb,0x36,0x10,0x7e,0x76,0x7e,0xc5,0x55,0x7b,0xd0,0x6,0xd4,0x56,0xd3,0x0,0x45,0x17,0xc8,0x6,0x8a,0xa4,0x1d,0xa,0x6c,0x68,0x30,0x3b,0x18,0xf6,0x14,0x50,0xe4,0xd9,0xe2,0x4a,0x91,0x2,0x49,0xd9,0x35,0xb0,0x1f,0xbf,0x23,0x29,0xcb,0x4a,0xe3,0x74,0xf1,0x4b,0x42,0xde,0xdd,0x77,0xf7,0xf1,0xf8,0x51,0xe7,0xf2,0xd5,0x74,0x7a,0x1,0x0,0xab,0x5a,0x3a,0x70,0x66,0xed,0x77,0xcc,0x22,0xd0,0x5a,0x49,0x8e,0xda,0xa1,0x80,0x4e,0xb,0xb4,0xe0,0x6b,0x84,0x3f,0x3e,0xaf,0xe0,0xf7,0x64,0x9e,0xc1,0x12,0x31,0x1a,0xfb,0x38,0x58,0x4b,0x45,0x7f,0x8c,0x5,0x81,0x9e,0x49,0xe5,0x66,0x21,0xeb,0xd2,0x74,0x96,0xe3,0x35,0xd4,0xde,0xb7,0xee,0xba,0x28,0x36,0xd2,0xd7,0x5d,0x35,0xe3,0xa6,0x29,0x5c,0xcb,0x38,0xd6,0x5d,0xad,0x3d,0xf2,0xba,0xf8,0x4b,0x7e,0x92,0xb7,0x1d,0xff,0x7a,0x31,0x9d,0x2e,0x2e,0xca,0x57,0xb7,0x5f,0x6e,0x56,0x7f,0xdf,0x7d,0x24,0x5c,0xa3,0x68,0x9f,0xfe,0x51,0x3e,0x28,0x6b,0x64,0x22,0x2d,0xe3,0xb6,0xa1,0x62,0xc0,0x6b,0x66,0x1d,0xfa,0x79,0x76,0xbf,0xfa,0x34,0x7d,0x9f,0x7d,0xef,0xd6,0xac,0xc1,0x79,0xb6,0x95,0xb8,0x6b,0x8d,0xf5,0x19,0x70,0x43,0x35,0x35,0x85,0xef,0xa4,0xf0,0xf5,0x5c,0xe0,0x96,0x8e,0x30,0x8d,0x9b,0xd7,0x20,0xb5,0xf4,0x92,0xa9,0xa9,0xe3,0x4c,0xe1,0xfc,0xcd,0xec,0xfd,0x6b,0x68,0xc8,0xd6,0x90,0xa9,0x93,0xcf,0xa4,0xa6,0x36,0x34,0x38,0xe5,0x46,0x19,0x3b,0xca,0xfe,0xd3,0xd5,0xbb,0xab,0x5f,0xaf,0x3e,0x12,0xe6,0x24,0x48,0xa0,0xe3,0x56,0xb6,0x5e,0x1a,0x3d,0x2,0x85,0x3e,0x40,0x68,0xc4,0xb8,0x94,0x97,0x5e,0xe1,0x62,0x70,0xc1,0xbf,0xd4,0x7c,0xef,0xa5,0xde,0xb8,0xb2,0x48,0xbe,0x51,0x9,0x25,0xf5,0x57,0xb0,0xa8,0xe6,0x99,0xf3,0x7b,0x85,0xae,0x46,0xa4,0x33,0xfb,0x7d,0x1b,0x88,0xe2,0x37,0x5f,0x70,0xe7,0x32,0xa8,0x2d,0xae,0xfb,0x88,0x59,0x30,0x8c,0xaa,0x25,0x5a,0xe0,0x2c,0xa7,0x80,0xb8,0x9e,0xfd,0x43,0x1,0x65,0x91,0x36,0xcf,0x45,0xf6,0x8c,0x4e,0xc4,0x96,0xc5,0xe1,0xd2,0x26,0x65,0x65,0xc4,0x7e,0x94,0x41,0xb3,0xed,0x71,0x17,0x2d,0x9d,0x2,0xae,0x98,0x73,0xf3,0xac,0x41,0xdd,0x65,0x8f,0xbd,0xfd,0x1,0x17,0x25,0xeb,0xf,0x20,0x49,0x9b,0xdf,0x66,0x41,0x1e,0xd9,0xb1,0x3f,0x65,0xc1,0x88,0x1,0x85,0xfd,0x18,0x3b,0x30,0x4e,0xf0,0x63,0x4b,0x5f,0x84,0xf6,0x68,0x49,0x17,0x4c,0xf5,0xe8,0x55,0xbf,0x7d,0x21,0x9a,0x5b,0x14,0xd2,0x1f,0x4a,0x7f,0xa8,0x4c,0xe7,0x4f,0x23,0xcb,0xa2,0x53,0xa3,0x7e,0x15,0xb1,0x61,0x93,0x49,0x29,0xe4,0x16,0xa4,0x8,0x37,0xc8,0x7c,0x17,0x3b,0x4e,0x96,0xe8,0x69,0x98,0xd4,0x61,0x31,0x29,0x1d,0xf2,0xa0,0xae,0xb8,0x99,0x94,0xf5,0x65,0xec,0x10,0x5d,0xc6,0x65,0x6f,0x69,0x17,0x7f,0x22,0xe1,0xad,0x8f,0xef,0x38,0x3d,0x3,0xf0,0x6,0x58,0xdb,0xaa,0x3d,0x68,0xdc,0xc1,0xd0,0xa2,0xb2,0x68,0x7b,0x90,0x67,0x55,0xd0,0x5b,0x5a,0xdb,0xb4,0xa0,0x95,0x58,0x2c,0x97,0x9f,0x6f,0xaf,0x49,0x8f,0xe2,0x68,0x4b,0xc,0x9d,0x14,0x81,0xdf,0xd8,0xb1,0x28,0xab,0xce,0x7b,0xa3,0xf,0x57,0xdd,0x5a,0x7a,0x60,0x76,0x9f,0x45,0x40,0xe8,0xcc,0x43,0x42,0x85,0x65,0x59,0xa4,0xd8,0x51,0xa,0x5a,0xd9,0x53,0x14,0xee,0x28,0xd9,0xce,0x58,0x71,0x8a,0x46,0xdb,0xfb,0xce,0xa7,0x72,0x44,0x9e,0x49,0xe7,0xa6,0x66,0x5a,0xa3,0x3a,0xc5,0x86,0x27,0xd7,0xf9,0x64,0x6,0xe0,0x99,0x5c,0x3e,0x74,0xde,0xd8,0x4e,0xc3,0x32,0xbe,0xcb,0x53,0x94,0x58,0x8a,0xf8,0x3f,0x4a,0x34,0x1e,0x74,0xe2,0x23,0xa4,0xb,0x5a,0x78,0x18,0x80,0xbd,0xe1,0xc7,0xac,0x8a,0xb1,0x80,0x1e,0xa7,0x16,0x4c,0x6f,0xd0,0xa6,0xe4,0x16,0x49,0x7b,0x59,0x10,0x28,0xfa,0x41,0x86,0x43,0xe6,0x28,0xef,0x62,0xac,0xef,0xa7,0x62,0xbf,0x6f,0x5,0xf3,0x98,0xe4,0x7e,0xd0,0x7b,0x3a,0xd5,0x6f,0x26,0xa8,0x7c,0x78,0x8b,0x2f,0x9e,0x4d,0x5,0x7d,0x55,0x91,0x39,0xa4,0xcf,0x27,0xbd,0x9a,0x4d,0x18,0x38,0xf,0x95,0x62,0x9a,0xbe,0xd5,0x3b,0xb9,0x96,0x82,0x42,0x22,0xfa,0x10,0x16,0x5e,0x74,0xaa,0x48,0xe5,0x78,0x8d,0xf4,0xe5,0xe,0xf3,0xb1,0x8b,0xc4,0xe8,0x4d,0x55,0x96,0x3e,0x3a,0x8a,0x78,0x3,0x83,0x59,0x25,0x75,0x1a,0xa1,0x4c,0xb,0x68,0xe9,0xf8,0x8e,0x2,0x95,0x61,0x22,0x70,0x4d,0x90,0xd1,0x33,0x8d,0xe0,0xbe,0xa1,0xed,0xe1,0x7c,0x94,0xbc,0x1,0x9a,0x30,0xb5,0x11,0xf3,0xfc,0xee,0xcb,0x72,0x95,0x3,0x8b,0x4d,0x99,0xe7,0x45,0xca,0x90,0x3,0x6a,0x1e,0x47,0x41,0xde,0x74,0xca,0xcb,0x96,0x1e,0x7f,0x11,0x60,0x53,0xf2,0xb2,0xbc,0xcf,0x28,0x75,0xdb,0xf9,0x34,0x31,0xf2,0x40,0x29,0x4f,0x13,0x2b,0xef,0x73,0x9c,0x88,0x72,0x5d,0xd5,0x48,0x9f,0x3f,0xd6,0xc8,0x96,0xa9,0x8e,0x7c,0xf7,0xf1,0x14,0x7,0x54,0xac,0x76,0xea,0xfe,0xd6,0xc6,0xd0,0x27,0xb5,0x8f,0x3a,0xfb,0x6a,0x9e,0xde,0x48,0xfa,0xe5,0x31,0x5c,0x41,0xe8,0xd7,0xb1,0x67,0x94,0x44,0x47,0x99,0x6d,0xd1,0xba,0x30,0x80,0xc3,0xc4,0x22,0xdb,0x31,0xe4,0xc6,0xb4,0x7b,0x2b,0x37,0xb5,0x87,0x9f,0xf9,0x2f,0xf0,0xf6,0xcd,0xdb,0x4b,0x58,0x1e,0x2a,0xc3,0x8a,0x4a,0x6b,0x9a,0xf6,0x1b,0x49,0x97,0x5c,0x3d,0x47,0x7a,0x60,0x1a,0x78,0x3f,0x25,0xf8,0xc8,0x7d,0xe0,0x19,0xfa,0xd3,0xf7,0x81,0xc4,0x1e,0x67,0x25,0x29,0x38,0xfc,0xfa,0xf9,0xf,0xe4,0x61,0x43,0x4a,0xa8,0x9,0x0,0x0 }; +const uint8_t settings_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0x95,0x56,0x51,0x6f,0xdb,0x36,0x10,0x7e,0x76,0x7e,0xc5,0x55,0x7b,0xd0,0x6,0xd4,0x56,0xd3,0x0,0x45,0x17,0xc8,0x6,0x8a,0xa4,0x1d,0xa,0x6c,0x68,0x30,0x3b,0x18,0xf6,0x14,0x50,0xe4,0xd9,0xe2,0x4a,0x91,0x2,0x49,0xd9,0x35,0xb0,0x1f,0xbf,0x23,0x29,0xcb,0x4a,0xe3,0x74,0xf1,0x4b,0x42,0xde,0xdd,0x77,0xf7,0xf1,0xf8,0x51,0xe7,0xf2,0xd5,0x74,0x7a,0x1,0x0,0xab,0x5a,0x3a,0x70,0x66,0xed,0x77,0xcc,0x22,0xd0,0x5a,0x49,0x8e,0xda,0xa1,0x80,0x4e,0xb,0xb4,0xe0,0x6b,0x84,0x3f,0x3e,0xaf,0xe0,0xf7,0x64,0x9e,0xc1,0x12,0x31,0x1a,0xfb,0x38,0x58,0x4b,0x45,0x7f,0x8c,0x5,0x81,0x9e,0x49,0xe5,0x66,0x21,0xeb,0xd2,0x74,0x96,0xe3,0x35,0xd4,0xde,0xb7,0xee,0xba,0x28,0x36,0xd2,0xd7,0x5d,0x35,0xe3,0xa6,0x29,0x5c,0xcb,0x38,0xd6,0x5d,0xad,0x3d,0xf2,0xba,0xf8,0x4b,0x7e,0x92,0xb7,0x1d,0xff,0x7a,0x31,0x9d,0x2e,0x2e,0xca,0x57,0xb7,0x5f,0x6e,0x56,0x7f,0xdf,0x7d,0x24,0x5c,0xa3,0x68,0x9f,0xfe,0x51,0x3e,0x28,0x6b,0x64,0x22,0x2d,0xe3,0xb6,0xa1,0x62,0xc0,0x6b,0x66,0x1d,0xfa,0x79,0x76,0xbf,0xfa,0x34,0x7d,0x9f,0x7d,0xef,0xd6,0xac,0xc1,0x79,0xb6,0x95,0xb8,0x6b,0x8d,0xf5,0x19,0x70,0x43,0x35,0x35,0x85,0xef,0xa4,0xf0,0xf5,0x5c,0xe0,0x96,0x8e,0x30,0x8d,0x9b,0xd7,0x20,0xb5,0xf4,0x92,0xa9,0xa9,0xe3,0x4c,0xe1,0xfc,0xcd,0xec,0xfd,0x6b,0x68,0xc8,0xd6,0x90,0xa9,0x93,0xcf,0xa4,0xa6,0x36,0x34,0x38,0xe5,0x46,0x19,0x3b,0xca,0xfe,0xd3,0xd5,0xbb,0xab,0x5f,0xaf,0x3e,0x12,0xe6,0x24,0x48,0xa0,0xe3,0x56,0xb6,0x5e,0x1a,0x3d,0x2,0x85,0x3e,0x40,0x68,0xc4,0xb8,0x94,0x97,0x5e,0xe1,0x62,0x70,0xc1,0xbf,0xd4,0x7c,0xef,0xa5,0xde,0xb8,0xb2,0x48,0xbe,0x51,0x9,0x25,0xf5,0x57,0xb0,0xa8,0xe6,0x99,0xf3,0x7b,0x85,0xae,0x46,0xa4,0x33,0xfb,0x7d,0x1b,0x88,0xe2,0x37,0x5f,0x70,0xe7,0x32,0xa8,0x2d,0xae,0xfb,0x88,0x59,0x30,0x8c,0xaa,0x25,0x5a,0xe0,0x2c,0xa7,0x80,0xb8,0x9e,0xfd,0x43,0x1,0x65,0x91,0x36,0xcf,0x45,0xf6,0x8c,0x4e,0xc4,0x96,0xc5,0xe1,0xd2,0x26,0x65,0x65,0xc4,0x7e,0x94,0x41,0xb3,0xed,0x71,0x17,0x2d,0x9d,0x2,0xae,0x98,0x73,0xf3,0xac,0x41,0xdd,0x65,0x8f,0xbd,0xfd,0x1,0x17,0x25,0xeb,0xf,0x20,0x49,0x9b,0xdf,0x66,0x41,0x1e,0xd9,0xb1,0x3f,0x65,0xc1,0x88,0x1,0x85,0xfd,0x18,0x3b,0x30,0x4e,0xf0,0x63,0x4b,0x5f,0x84,0xf6,0x68,0x49,0x17,0x4c,0xf5,0xe8,0x55,0xbf,0x7d,0x21,0x9a,0x5b,0x14,0xd2,0x1f,0x4a,0x7f,0xa8,0x4c,0xe7,0x4f,0x23,0xcb,0xa2,0x53,0xa3,0x7e,0x15,0xb1,0x61,0x93,0x49,0x29,0xe4,0x16,0xa4,0x8,0x37,0xc8,0x7c,0x17,0x3b,0x4e,0x96,0xe8,0x69,0x98,0xd4,0x61,0x31,0x29,0x1d,0xf2,0xa0,0xae,0xb8,0x99,0x94,0xf5,0x65,0xec,0x10,0x5d,0xc6,0x65,0x6f,0x69,0x17,0x7f,0x22,0xe1,0xad,0x8f,0xef,0x38,0x3d,0x3,0xf0,0x6,0x58,0xdb,0xaa,0x3d,0x68,0xdc,0xc1,0xd0,0xa2,0xb2,0x68,0x7b,0x90,0x67,0x55,0xd0,0x5b,0x5a,0xdb,0xb4,0xa0,0x95,0x58,0x2c,0x97,0x9f,0x6f,0xaf,0x49,0x8f,0xe2,0x68,0x4b,0xc,0x9d,0x14,0x81,0xdf,0xd8,0xb1,0x28,0xab,0xce,0x7b,0xa3,0xf,0x57,0xdd,0x5a,0x7a,0x60,0x76,0x9f,0x45,0x40,0xe8,0xcc,0x43,0x42,0x85,0x65,0x59,0xa4,0xd8,0x51,0xa,0x5a,0xd9,0x53,0x14,0xee,0x28,0xd9,0xce,0x58,0x71,0x8a,0x46,0xdb,0xfb,0xce,0xa7,0x72,0x44,0x9e,0x49,0xe7,0xa6,0x66,0x5a,0xa3,0x3a,0xc5,0x86,0x27,0xd7,0xf9,0x64,0x6,0xe0,0x99,0x5c,0x3e,0x74,0xde,0xd8,0x4e,0xc3,0x32,0xbe,0xcb,0x53,0x94,0x58,0x8a,0xf8,0x3f,0x4a,0x34,0x1e,0x74,0xe2,0x23,0xa4,0xb,0x5a,0x78,0x18,0x80,0xbd,0xe1,0xc7,0xac,0x8a,0xb1,0x80,0x1e,0xa7,0x16,0x4c,0x6f,0xd0,0xa6,0xe4,0x16,0x49,0x7b,0x59,0x10,0x28,0xfa,0x41,0x86,0x43,0xe6,0x28,0xef,0x62,0xac,0xef,0xa7,0x62,0xbf,0x6f,0x5,0xf3,0x98,0xe4,0x7e,0xd0,0x7b,0x3a,0xd5,0x6f,0x26,0xa8,0x7c,0x78,0x8b,0x2f,0x9e,0x4d,0x5,0x7d,0x55,0x91,0x39,0xa4,0xcf,0x27,0xbd,0x9a,0x4d,0x18,0x38,0xf,0x95,0x62,0x9a,0xbe,0xd5,0x3b,0xb9,0x96,0x82,0x42,0x22,0xfa,0x10,0x16,0x5e,0x74,0xaa,0x48,0xe5,0x78,0x8d,0xf4,0xe5,0xe,0xf3,0xb1,0x8b,0xc4,0xe8,0x4d,0x55,0x96,0x3e,0x3a,0x8a,0x78,0x3,0x83,0x59,0x25,0x75,0x1a,0xa1,0x4c,0xb,0x68,0xe9,0xf8,0x8e,0x2,0x95,0x61,0x22,0x70,0x4d,0x90,0xd1,0x33,0x8d,0xe0,0xbe,0xa1,0xed,0xe1,0x7c,0x94,0xbc,0x1,0x9a,0x30,0xb5,0x11,0xf3,0xfc,0xee,0xcb,0x72,0x95,0x3,0x8b,0x4d,0x99,0xe7,0x45,0xca,0x90,0x3,0x6a,0x1e,0x47,0x41,0xde,0x74,0xca,0xcb,0x96,0x1e,0x7f,0x11,0x60,0x53,0xf2,0xb2,0xbc,0xcf,0x28,0x75,0xdb,0xf9,0x34,0x31,0xf2,0x40,0x29,0x4f,0x13,0x2b,0xef,0x73,0x9c,0x88,0x72,0x5d,0xd5,0x48,0x9f,0x3f,0xd6,0xc8,0x96,0xa9,0x8e,0x7c,0xf7,0xf1,0x14,0x7,0x54,0xac,0x76,0xea,0xfe,0xd6,0xc6,0xd0,0x27,0xb5,0x8f,0x3a,0xfb,0x6a,0x9e,0xde,0x48,0xfa,0xe5,0x31,0x5c,0x41,0xe8,0xd7,0xb1,0x67,0x94,0x44,0x47,0x99,0x6d,0xd1,0xba,0x30,0x80,0xc3,0xc4,0x22,0xdb,0x31,0xe4,0xc6,0xb4,0x7b,0x2b,0x37,0xb5,0x87,0x9f,0xf9,0x2f,0xf0,0xf6,0xcd,0xdb,0x4b,0x58,0x1e,0x2a,0xc3,0x8a,0x4a,0x6b,0x9a,0xf6,0x1b,0x49,0x97,0x5c,0x3d,0x47,0x7a,0x60,0x1a,0x78,0x3f,0x25,0xf8,0xc8,0x7d,0xe0,0x19,0xfa,0xd3,0xf7,0x81,0xc4,0x1e,0x67,0x25,0x29,0x38,0xfc,0xfa,0xf9,0xf,0xe4,0x61,0x43,0x4a,0xa8,0x9,0x0,0x0 }; -const uint8_t settings_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0xcd,0x55,0x51,0x6f,0x9b,0x30,0x10,0x7e,0xe7,0x57,0x9c,0x78,0xa8,0x60,0x5d,0x61,0x69,0xaa,0xaa,0x6a,0x96,0x4d,0xd3,0xda,0x69,0x91,0x5a,0x6d,0x4a,0x2a,0xf5,0xa1,0xad,0x2a,0x7,0x2e,0xc1,0x2a,0x31,0xc8,0x36,0xcd,0xc3,0x94,0xff,0xbe,0x3,0x6c,0x8,0x34,0x49,0xdf,0xa6,0xf1,0x80,0xe0,0xf3,0xe7,0xbb,0xf3,0xf7,0x9d,0xed,0xf0,0x83,0x3,0x0,0x77,0x9,0x57,0xa0,0xb2,0x85,0x5e,0x33,0x89,0x40,0xdf,0x29,0x8f,0x50,0x28,0x8c,0xa1,0x10,0x31,0x4a,0xd0,0x9,0xc2,0xed,0xe4,0xe,0x6e,0x6a,0x38,0x80,0x19,0x62,0x5,0x1a,0x1e,0x2c,0x78,0x4a,0xaf,0x4c,0x42,0x8c,0x9a,0xf1,0x54,0x5,0x65,0xd4,0x59,0x56,0xc8,0x8,0x2f,0x21,0xd1,0x3a,0x57,0x97,0x61,0xb8,0xe4,0x3a,0x29,0xe6,0x41,0x94,0xad,0x42,0x95,0xb3,0x8,0x93,0x22,0x11,0x1a,0xa3,0x24,0xbc,0xe7,0x3f,0xf8,0x55,0x11,0xbd,0x38,0xf0,0x21,0x74,0xc2,0x10,0xc6,0xe5,0x3,0xf7,0x38,0x9f,0x65,0xd1,0xb,0x6a,0xf8,0x16,0x69,0x9e,0x9,0x65,0xf0,0x30,0x74,0x16,0x85,0xa8,0x20,0x48,0x33,0x16,0x3f,0x2b,0xd4,0x9a,0x8b,0xa5,0xf2,0x7c,0xf8,0x43,0x79,0xd7,0x8a,0x10,0x11,0x7b,0xae,0xc5,0xdd,0x8f,0x60,0x27,0x78,0x2b,0xb5,0xac,0x59,0x0,0xaf,0x4c,0x52,0xfd,0x2,0x29,0x2e,0x10,0x1c,0xa8,0x3c,0xe5,0xda,0xb,0x1f,0x45,0xe8,0x8f,0x9c,0x86,0xa1,0x14,0x8f,0x89,0x50,0x11,0x1f,0x3e,0x3d,0x19,0x96,0x3b,0x76,0xfd,0x87,0xc1,0xd3,0xa8,0xa1,0xe5,0x4c,0xa9,0x75,0x26,0x5b,0xea,0x60,0x2f,0x35,0x4a,0x98,0x10,0x98,0x36,0xcc,0xd3,0xbd,0x4c,0x56,0xe8,0x4c,0x16,0xa2,0x61,0xe,0xdf,0x30,0x2b,0xea,0x35,0x2d,0x95,0xaa,0x74,0xfd,0x80,0x53,0x60,0xf9,0xf3,0xee,0xf6,0x86,0xa6,0x94,0xd0,0xc8,0x8e,0xdb,0xf2,0x7a,0x1c,0xb,0x37,0x3c,0x53,0x5b,0x8f,0x66,0xd0,0x86,0x65,0xea,0xea,0xb1,0xc,0x5a,0xb2,0x36,0xa4,0xe0,0xc6,0x69,0x6d,0x22,0x4b,0xa2,0x8c,0xa8,0x91,0xc6,0xd8,0xb8,0xd4,0x73,0xae,0xe2,0xb7,0xde,0xcf,0x34,0x93,0xba,0xc8,0x5b,0xc7,0xd7,0x5c,0xc4,0xd9,0x3a,0x60,0x71,0x7c,0xfd,0x8a,0x42,0xdf,0x70,0xa5,0x91,0x52,0x7b,0x6e,0x19,0x67,0xdb,0xe0,0x32,0xba,0x53,0x55,0x89,0x31,0xd7,0xcf,0x46,0x98,0x4c,0x44,0xd4,0xaa,0x2f,0x54,0x65,0x87,0x68,0x85,0x16,0xb8,0x36,0x3e,0xe7,0x32,0x5b,0xe5,0x24,0xf0,0x6c,0x36,0xb9,0x2,0x6f,0x70,0x32,0x3c,0x2d,0x57,0x2f,0x95,0x4f,0x39,0x76,0xe8,0x6c,0x3b,0x85,0x2f,0xc0,0x33,0x41,0x6c,0xdc,0xe,0x18,0xa4,0x28,0x96,0x3a,0x81,0x2f,0x63,0x18,0xc0,0xd1,0x11,0xf4,0xe0,0xcf,0x63,0x18,0x9e,0xb6,0x13,0xbb,0x3d,0x5c,0xb7,0xe0,0xa3,0xeb,0xc2,0x71,0x53,0xe8,0x31,0xb8,0x4,0xec,0xee,0xeb,0xfa,0x79,0xa3,0xaf,0x1d,0xd8,0x34,0xdf,0x1b,0xc0,0x94,0xf6,0x6e,0x3b,0x8b,0xa5,0x28,0x69,0xed,0xd7,0xd3,0xe9,0xaf,0xe9,0x25,0x4c,0xc4,0x2b,0x4b,0x29,0x57,0x5d,0xa3,0xdb,0x4e,0x73,0xec,0x7b,0x33,0xda,0x96,0x7a,0xab,0xc7,0xde,0x97,0x7b,0x6b,0xbf,0x58,0xc9,0x7f,0x5b,0xc8,0xbb,0x38,0x39,0x3f,0xeb,0xc8,0xbe,0xab,0x7d,0x7b,0xd2,0x5b,0xca,0x1b,0xf9,0xed,0xc0,0x96,0x5,0x17,0xc6,0x82,0xfe,0x10,0xd9,0x70,0x7e,0xb6,0xd7,0x86,0xa6,0xe4,0xc6,0x8a,0x6,0xf9,0x1f,0xed,0x68,0xb7,0xf2,0xfb,0x6e,0xb4,0x47,0x92,0x35,0xe3,0xbb,0x41,0x68,0xb,0xc,0xce,0x8c,0xb,0x3b,0xe,0x87,0x9e,0x9,0x86,0xd1,0xf5,0x20,0x27,0x1f,0x71,0x22,0x74,0x87,0x60,0x37,0xc2,0xce,0x41,0xf2,0x61,0x30,0xdc,0xeb,0x83,0x2d,0xd6,0x98,0x60,0x7e,0xff,0x8d,0xf8,0x36,0xb7,0x28,0x56,0x73,0x94,0x7,0x4d,0x88,0xb9,0x62,0xf3,0x14,0x9f,0xdb,0xc3,0xf2,0x80,0xf,0x9d,0x5,0xda,0x63,0xff,0xf1,0x50,0x53,0xed,0x5c,0x53,0xbd,0x9e,0xa6,0x4,0x89,0x44,0x38,0x9c,0xb8,0x34,0x88,0x8e,0xe6,0x5,0x97,0x2b,0xcf,0x9d,0x62,0x95,0x3e,0x4d,0xc1,0x6,0x6,0x9d,0xd1,0x95,0xbe,0x60,0x45,0xaa,0xbf,0xba,0x7e,0x9b,0xbd,0xa9,0xb7,0x4e,0xb1,0x5f,0xfc,0x3d,0xd2,0x5b,0xe1,0x5b,0xc5,0x28,0x22,0x17,0x74,0xb5,0x95,0x37,0x1,0x85,0x63,0xe4,0x86,0x3f,0xfa,0xb,0xbd,0x4f,0x3d,0x5d,0x9e,0x8,0x0,0x0 }; +const uint8_t settings_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0xcd,0x55,0x51,0x6f,0x9b,0x30,0x10,0x7e,0xe7,0x57,0x9c,0x78,0xa8,0x60,0x5d,0x61,0x69,0xaa,0xaa,0x6a,0x96,0x4d,0xd3,0xda,0x69,0x91,0x5a,0x6d,0x4a,0x2a,0xf5,0xa1,0xad,0x2a,0x7,0x2e,0xc1,0x2a,0x31,0xc8,0x36,0xcd,0xc3,0x94,0xff,0xbe,0x3,0x6c,0x8,0x34,0x49,0xdf,0xa6,0xf1,0x80,0xe0,0xf3,0xe7,0xbb,0xf3,0xf7,0x9d,0xed,0xf0,0x83,0x3,0x0,0x77,0x9,0x57,0xa0,0xb2,0x85,0x5e,0x33,0x89,0x40,0xdf,0x29,0x8f,0x50,0x28,0x8c,0xa1,0x10,0x31,0x4a,0xd0,0x9,0xc2,0xed,0xe4,0xe,0x6e,0x6a,0x38,0x80,0x19,0x62,0x5,0x1a,0x1e,0x2c,0x78,0x4a,0xaf,0x4c,0x42,0x8c,0x9a,0xf1,0x54,0x5,0x65,0xd4,0x59,0x56,0xc8,0x8,0x2f,0x21,0xd1,0x3a,0x57,0x97,0x61,0xb8,0xe4,0x3a,0x29,0xe6,0x41,0x94,0xad,0x42,0x95,0xb3,0x8,0x93,0x22,0x11,0x1a,0xa3,0x24,0xbc,0xe7,0x3f,0xf8,0x55,0x11,0xbd,0x38,0xf0,0x21,0x74,0xc2,0x10,0xc6,0xe5,0x3,0xf7,0x38,0x9f,0x65,0xd1,0xb,0x6a,0xf8,0x16,0x69,0x9e,0x9,0x65,0xf0,0x30,0x74,0x16,0x85,0xa8,0x20,0x48,0x33,0x16,0x3f,0x2b,0xd4,0x9a,0x8b,0xa5,0xf2,0x7c,0xf8,0x43,0x79,0xd7,0x8a,0x10,0x11,0x7b,0xae,0xc5,0xdd,0x8f,0x60,0x27,0x78,0x2b,0xb5,0xac,0x59,0x0,0xaf,0x4c,0x52,0xfd,0x2,0x29,0x2e,0x10,0x1c,0xa8,0x3c,0xe5,0xda,0xb,0x1f,0x45,0xe8,0x8f,0x9c,0x86,0xa1,0x14,0x8f,0x89,0x50,0x11,0x1f,0x3e,0x3d,0x19,0x96,0x3b,0x76,0xfd,0x87,0xc1,0xd3,0xa8,0xa1,0xe5,0x4c,0xa9,0x75,0x26,0x5b,0xea,0x60,0x2f,0x35,0x4a,0x98,0x10,0x98,0x36,0xcc,0xd3,0xbd,0x4c,0x56,0xe8,0x4c,0x16,0xa2,0x61,0xe,0xdf,0x30,0x2b,0xea,0x35,0x2d,0x95,0xaa,0x74,0xfd,0x80,0x53,0x60,0xf9,0xf3,0xee,0xf6,0x86,0xa6,0x94,0xd0,0xc8,0x8e,0xdb,0xf2,0x7a,0x1c,0xb,0x37,0x3c,0x53,0x5b,0x8f,0x66,0xd0,0x86,0x65,0xea,0xea,0xb1,0xc,0x5a,0xb2,0x36,0xa4,0xe0,0xc6,0x69,0x6d,0x22,0x4b,0xa2,0x8c,0xa8,0x91,0xc6,0xd8,0xb8,0xd4,0x73,0xae,0xe2,0xb7,0xde,0xcf,0x34,0x93,0xba,0xc8,0x5b,0xc7,0xd7,0x5c,0xc4,0xd9,0x3a,0x60,0x71,0x7c,0xfd,0x8a,0x42,0xdf,0x70,0xa5,0x91,0x52,0x7b,0x6e,0x19,0x67,0xdb,0xe0,0x32,0xba,0x53,0x55,0x89,0x31,0xd7,0xcf,0x46,0x98,0x4c,0x44,0xd4,0xaa,0x2f,0x54,0x65,0x87,0x68,0x85,0x16,0xb8,0x36,0x3e,0xe7,0x32,0x5b,0xe5,0x24,0xf0,0x6c,0x36,0xb9,0x2,0x6f,0x70,0x32,0x3c,0x2d,0x57,0x2f,0x95,0x4f,0x39,0x76,0xe8,0x6c,0x3b,0x85,0x2f,0xc0,0x33,0x41,0x6c,0xdc,0xe,0x18,0xa4,0x28,0x96,0x3a,0x81,0x2f,0x63,0x18,0xc0,0xd1,0x11,0xf4,0xe0,0xcf,0x63,0x18,0x9e,0xb6,0x13,0xbb,0x3d,0x5c,0xb7,0xe0,0xa3,0xeb,0xc2,0x71,0x53,0xe8,0x31,0xb8,0x4,0xec,0xee,0xeb,0xfa,0x79,0xa3,0xaf,0x1d,0xd8,0x34,0xdf,0x1b,0xc0,0x94,0xf6,0x6e,0x3b,0x8b,0xa5,0x28,0x69,0xed,0xd7,0xd3,0xe9,0xaf,0xe9,0x25,0x4c,0xc4,0x2b,0x4b,0x29,0x57,0x5d,0xa3,0xdb,0x4e,0x73,0xec,0x7b,0x33,0xda,0x96,0x7a,0xab,0xc7,0xde,0x97,0x7b,0x6b,0xbf,0x58,0xc9,0x7f,0x5b,0xc8,0xbb,0x38,0x39,0x3f,0xeb,0xc8,0xbe,0xab,0x7d,0x7b,0xd2,0x5b,0xca,0x1b,0xf9,0xed,0xc0,0x96,0x5,0x17,0xc6,0x82,0xfe,0x10,0xd9,0x70,0x7e,0xb6,0xd7,0x86,0xa6,0xe4,0xc6,0x8a,0x6,0xf9,0x1f,0xed,0x68,0xb7,0xf2,0xfb,0x6e,0xb4,0x47,0x92,0x35,0xe3,0xbb,0x41,0x68,0xb,0xc,0xce,0x8c,0xb,0x3b,0xe,0x87,0x9e,0x9,0x86,0xd1,0xf5,0x20,0x27,0x1f,0x71,0x22,0x74,0x87,0x60,0x37,0xc2,0xce,0x41,0xf2,0x61,0x30,0xdc,0xeb,0x83,0x2d,0xd6,0x98,0x60,0x7e,0xff,0x8d,0xf8,0x36,0xb7,0x28,0x56,0x73,0x94,0x7,0x4d,0x88,0xb9,0x62,0xf3,0x14,0x9f,0xdb,0xc3,0xf2,0x80,0xf,0x9d,0x5,0xda,0x63,0xff,0xf1,0x50,0x53,0xed,0x5c,0x53,0xbd,0x9e,0xa6,0x4,0x89,0x44,0x38,0x9c,0xb8,0x34,0x88,0x8e,0xe6,0x5,0x97,0x2b,0xcf,0x9d,0x62,0x95,0x3e,0x4d,0xc1,0x6,0x6,0x9d,0xd1,0x95,0xbe,0x60,0x45,0xaa,0xbf,0xba,0x7e,0x9b,0xbd,0xa9,0xb7,0x4e,0xb1,0x5f,0xfc,0x3d,0xd2,0x5b,0xe1,0x5b,0xc5,0x28,0x22,0x17,0x74,0xb5,0x95,0x37,0x1,0x85,0x63,0xe4,0x86,0x3f,0xfa,0xb,0xbd,0x4f,0x3d,0x5d,0x9e,0x8,0x0,0x0 }; -const uint8_t style_css[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0xcd,0x59,0x6d,0x8f,0xdb,0xb8,0x11,0xfe,0xbc,0xfe,0x15,0xac,0x17,0x87,0xdb,0x4d,0x57,0x5e,0x49,0x7e,0x59,0xaf,0x83,0x0,0x97,0x6c,0x92,0xbb,0xb4,0x97,0x1c,0x90,0xd,0xd0,0x16,0x87,0xb6,0xa0,0x24,0xda,0x22,0x2c,0x89,0x82,0x44,0xad,0xd7,0x39,0x5c,0x7f,0x7b,0x67,0x48,0x4a,0xa2,0x5e,0xec,0xeb,0xa1,0x1f,0xda,0x2c,0xb2,0xb2,0x39,0xc3,0xd1,0xf0,0x99,0xe1,0xcc,0x43,0xee,0xed,0x8b,0x9,0x21,0xe4,0x4b,0xcc,0x4b,0x52,0x8a,0xad,0x3c,0xd0,0x82,0x11,0xf8,0x9c,0xf0,0x90,0x65,0x25,0x8b,0x48,0x95,0x45,0xac,0x20,0x32,0x66,0xe4,0xe3,0x87,0x2f,0xe4,0x47,0x3d,0x3c,0x23,0x8f,0x8c,0xa9,0x41,0xa3,0x47,0xb6,0x3c,0x81,0x5f,0xa2,0x20,0x11,0x93,0x94,0x27,0xe5,0xc,0xad,0x3e,0x8a,0xaa,0x8,0xd9,0x86,0xc4,0x52,0xe6,0xe5,0xe6,0xf6,0x76,0xc7,0x65,0x5c,0x5,0xb3,0x50,0xa4,0xb7,0x65,0x4e,0x43,0x16,0x57,0x71,0x26,0x59,0x18,0xdf,0xfe,0x85,0xbf,0xe7,0x6f,0xab,0x70,0x3f,0x21,0x2f,0x6e,0x27,0xb7,0x2f,0xc8,0xf7,0x89,0x8,0x68,0x82,0x5f,0x26,0x81,0x88,0x8e,0xe4,0x97,0xc9,0x45,0x40,0xc3,0xfd,0xae,0x10,0xe0,0xce,0x86,0x5c,0xce,0x57,0xf3,0xfb,0x39,0x7b,0x9,0xef,0x48,0x69,0xb1,0xe3,0xd9,0x86,0xb8,0xf8,0x25,0x14,0x89,0x28,0x40,0x1c,0x6c,0xf1,0xe7,0xe5,0xe4,0x62,0x2b,0x32,0xe9,0x6c,0x69,0xca,0x93,0xe3,0x86,0x94,0x34,0x2b,0x9d,0x92,0x15,0x1c,0x24,0xbf,0x4e,0x26,0x29,0xe5,0x19,0x1a,0x3e,0xf0,0x48,0xc6,0x1b,0xb2,0x72,0x9f,0xe,0x30,0x43,0xdb,0x73,0x12,0xb6,0x95,0x1b,0x42,0x2b,0x29,0xda,0xb1,0x82,0xef,0xe2,0x66,0x10,0xc,0x94,0x2c,0x94,0x5c,0x28,0x1b,0x46,0x43,0x8a,0x7c,0x43,0x96,0x6e,0xfe,0xac,0xe4,0x5b,0x21,0x24,0x40,0xf7,0x8b,0x71,0xa3,0xe4,0x5f,0x1,0x8a,0xd9,0xfd,0x92,0xa5,0x60,0x53,0xb2,0x67,0xe9,0xd0,0x84,0xef,0xc0,0x77,0x40,0x10,0x14,0x5f,0x76,0xcd,0xcc,0x95,0x9a,0x19,0x9,0x84,0x94,0x22,0x35,0x83,0x60,0x3a,0xf6,0x7a,0x66,0xbd,0xd9,0xa2,0xb0,0x27,0x28,0x13,0x9e,0x1e,0xb2,0x90,0x9b,0x5c,0x5c,0xfa,0xdb,0xb9,0x37,0x5f,0xc1,0x70,0x4e,0xa3,0x88,0x67,0x3b,0x50,0x53,0xe,0x5f,0x4,0xa2,0x80,0x48,0x3b,0x5,0x8d,0x78,0x55,0x6e,0xc8,0xc2,0x1e,0xd4,0x70,0x94,0x22,0xe1,0x11,0xb9,0xf4,0xdd,0xd0,0x77,0x19,0x59,0x2a,0x5,0xe5,0xc3,0x81,0x69,0x68,0x3c,0x17,0xc2,0x70,0x91,0x30,0x9,0xcb,0x71,0x30,0xc2,0xca,0xfe,0xd2,0xe0,0x11,0xfb,0x3,0xa7,0xfd,0xff,0xc4,0x69,0xf2,0xbf,0xf4,0x79,0xde,0xf7,0xf9,0xff,0xdd,0xe3,0x84,0x6,0x2c,0x41,0xa7,0x13,0x9e,0x31,0x27,0x36,0x73,0x16,0xb,0x23,0xce,0xdb,0x74,0x85,0x64,0x84,0x5c,0xc4,0x9d,0x3,0xe3,0xb0,0xe9,0x3e,0xd1,0x27,0xbe,0xa3,0x2a,0xa5,0x3,0x5a,0xe0,0xe6,0xcb,0xe8,0x13,0xaa,0x47,0xbc,0xcc,0x13,0xa,0x3b,0x28,0x48,0x44,0xb8,0x3f,0xb9,0xd4,0x8e,0x93,0x81,0x48,0x22,0x34,0x4c,0x88,0xb2,0x42,0xd1,0x8e,0xd9,0x9e,0x3c,0x8b,0x61,0x13,0x4a,0xf5,0xda,0x59,0xca,0xb2,0x6a,0xb8,0xb,0x13,0x5e,0x2,0xe0,0xf2,0x98,0x30,0x47,0x1e,0x73,0x80,0x3d,0x13,0x19,0x7b,0xd9,0x3a,0xee,0xda,0xc8,0xba,0xb6,0xa0,0xde,0xb3,0x8d,0xcf,0xdb,0x84,0x29,0x4,0xe1,0xe1,0x44,0xbc,0xd0,0x7b,0x76,0x43,0xa,0x71,0xb0,0xb4,0xcc,0xc2,0x1a,0x87,0x12,0x6e,0xc3,0x84,0xa1,0x43,0x7c,0xf5,0x7,0xd7,0xb6,0xce,0x33,0x5,0xf3,0x70,0xfe,0x26,0xa1,0xb0,0x84,0x30,0xe6,0x49,0xa4,0x32,0x28,0x11,0x14,0x50,0x51,0x25,0xc4,0xd2,0x53,0xb0,0x34,0xb,0x99,0xdd,0xe9,0xda,0x30,0x96,0x23,0xed,0x94,0x4d,0x2c,0x9e,0x74,0x59,0xe9,0x84,0x61,0xe1,0x2f,0x16,0xb,0xaa,0x14,0x43,0x11,0xb1,0x81,0x3c,0xc,0x43,0x1b,0xb4,0xf9,0x58,0x36,0xea,0xc1,0x3,0xc,0x3a,0x41,0xc1,0xe8,0x7e,0x43,0xf6,0x8c,0xe5,0x50,0xa6,0x12,0xf2,0x7,0x9e,0xe6,0xa2,0x90,0x34,0x3,0xf7,0xeb,0x40,0x5e,0xba,0x3a,0x13,0xed,0x44,0xf3,0x1b,0x6f,0x21,0x3b,0x53,0x9e,0xd1,0x44,0x23,0xf9,0xdc,0x68,0x40,0xfa,0x3e,0xc5,0xdd,0x24,0x6a,0x73,0xa8,0xc9,0x57,0xf7,0xcc,0x76,0xc1,0xf5,0x3,0xa0,0x7,0x7,0x8b,0x7a,0x58,0x88,0x24,0xe9,0x6c,0xb4,0x7a,0x27,0xcc,0xe,0x31,0x97,0x8,0xc4,0xb0,0x31,0x28,0x29,0x2d,0x32,0x2b,0x2b,0x2f,0xb7,0xdb,0xd0,0x73,0xef,0xb4,0x2c,0xa2,0xd9,0x4e,0x63,0x5c,0x4b,0xdf,0xbb,0x8b,0xbb,0x85,0x91,0x96,0x55,0x18,0xb2,0xb2,0xb4,0xc5,0x8b,0xf9,0x9b,0xe5,0xda,0xd3,0xe2,0xbc,0xe0,0x90,0x39,0x47,0x5b,0xec,0xba,0xf7,0x7e,0x14,0x98,0xd9,0x2c,0x81,0x24,0x54,0x6e,0xd5,0x59,0x7f,0xbf,0x86,0xbc,0xb2,0x11,0x6,0x51,0x9b,0xde,0x1d,0x49,0x6b,0x81,0x45,0xda,0x46,0x37,0xb,0xee,0xef,0x16,0xf4,0x5e,0xab,0x85,0xd0,0x9b,0xf7,0x34,0x48,0x34,0x4,0x17,0x61,0x55,0x94,0xe8,0x4c,0x2e,0xb8,0x6e,0x37,0x4a,0x47,0xa7,0xa,0x88,0x3b,0xad,0x72,0xfa,0x0,0x9d,0x9b,0x3,0x2,0x9f,0xd8,0x61,0x7a,0x43,0xcc,0xb7,0x1b,0x92,0x8a,0x4c,0xa8,0xce,0xad,0x67,0x17,0xc,0xd2,0x5a,0xbb,0x41,0x48,0x37,0xc5,0x71,0xa4,0x93,0x18,0xde,0x4c,0xd7,0x49,0x14,0xc,0x5c,0xe9,0x76,0x85,0xe5,0xb0,0xc6,0x36,0x59,0xa5,0x5f,0xd9,0xec,0x1,0xb4,0xa6,0x5a,0x69,0xc4,0x42,0x51,0x50,0xbd,0xb7,0x75,0xb1,0x0,0xed,0xcb,0x52,0x52,0x59,0xa9,0x40,0x8d,0xf6,0x5b,0x35,0x28,0xb,0xe0,0x5,0xc0,0x5c,0xa0,0xbd,0x86,0x34,0xe7,0x12,0x94,0xbe,0x32,0x3b,0xa1,0x74,0x9,0x6e,0xd3,0x4,0x89,0x45,0x2e,0x4a,0xae,0x5f,0x56,0x4a,0x40,0xf9,0x88,0xc6,0xd0,0x4f,0xdc,0xf,0x5f,0x1d,0xe,0x9c,0xe9,0x19,0xc2,0x6a,0x2,0x11,0xb1,0xa0,0xda,0xed,0x8c,0xbf,0x1d,0x9c,0x2d,0x3c,0x4f,0x14,0xd5,0xd1,0xd,0xd0,0x6f,0x2a,0x3d,0x96,0x50,0x83,0x75,0xc9,0x22,0x2e,0x45,0xe1,0x98,0x84,0x74,0x82,0xa,0xe4,0x59,0x39,0x5a,0x8f,0x4e,0xe9,0xe6,0x7d,0xf0,0xda,0x29,0xd0,0x32,0x5e,0xe1,0x3f,0xf2,0xf0,0xc3,0xbb,0x87,0x3f,0xbf,0xf9,0xe9,0xaf,0xe6,0xab,0xa6,0x70,0xf,0x55,0x9,0xce,0x0,0x94,0x9a,0x26,0xaa,0xae,0x74,0x85,0x1f,0x43,0x0,0x0,0xa8,0x17,0x2b,0xae,0x51,0x73,0x16,0xc6,0x2c,0xdc,0xbf,0x11,0xcf,0xf,0xf5,0xf0,0x68,0xc7,0x69,0xf1,0x86,0x4,0x80,0x30,0x3f,0x59,0x11,0x32,0x7d,0x73,0xbe,0x1c,0xc3,0xc2,0xf3,0x75,0xf4,0xce,0x65,0x9c,0xaf,0x75,0xa0,0x77,0x5,0x7b,0x2e,0x9d,0xaa,0xc4,0xbe,0xaa,0xf6,0x58,0xd3,0x78,0x9c,0x54,0x7c,0x3d,0x21,0x28,0x47,0xc7,0xc7,0xc6,0xea,0xad,0x30,0xf7,0x4d,0x80,0x0,0xa6,0x1f,0x78,0xa4,0x11,0xa,0xa0,0x23,0xc1,0x9c,0x6f,0x4b,0x60,0xd0,0x5b,0x5a,0x25,0x92,0x28,0x64,0x2,0xf1,0x7c,0x2,0x26,0x9e,0xe5,0x95,0x54,0xfd,0xa3,0xc1,0x86,0x6,0x40,0x1e,0x2a,0x89,0xef,0x12,0xc8,0xb,0xe4,0x51,0x67,0xe4,0xd8,0xd6,0xc7,0x10,0x41,0x8d,0x87,0x2,0x49,0x61,0x3f,0x62,0xac,0x46,0x5e,0x8,0x60,0xee,0x4f,0xbe,0x42,0x25,0xfc,0x5a,0x41,0xa7,0x23,0xe0,0x5a,0x6b,0xf4,0xb5,0xc0,0x14,0x38,0xf3,0xad,0x4d,0x71,0xa7,0xde,0x4e,0xfe,0xfb,0x33,0x89,0xde,0x71,0x53,0xe5,0x4e,0xed,0xd4,0x2d,0x6c,0x31,0x1e,0x52,0xc8,0x58,0x72,0x15,0xf3,0x28,0x62,0x19,0x39,0xc4,0xf0,0x2b,0x13,0x6,0x37,0x16,0x5d,0x77,0x97,0xb1,0xa1,0x5b,0x59,0x97,0x74,0x0,0x21,0x3,0x1f,0xa7,0xd3,0x97,0x27,0x96,0xd6,0xe4,0x5f,0x53,0x4a,0xc0,0x8f,0xc7,0x58,0x1c,0xba,0x5e,0xe8,0x77,0x9a,0xf7,0x9d,0xb,0xd3,0xc6,0xe8,0xfc,0x6b,0xcc,0x9f,0x7e,0xb2,0xab,0xba,0x3c,0xb0,0x33,0x36,0x53,0xc3,0x6e,0x8a,0x80,0xa,0xc7,0x9d,0x8d,0xba,0x2e,0x16,0x6d,0xdf,0xb5,0x3a,0x6a,0x4d,0x33,0x55,0x8b,0x6c,0xd1,0x37,0x13,0x5d,0x64,0x2,0xea,0xbf,0x6b,0xed,0xb,0xab,0x50,0x16,0x2,0xa,0x2b,0xbb,0x5a,0x2c,0x23,0xb6,0xbb,0x36,0xbb,0xe0,0x8c,0xf8,0xb4,0x48,0x23,0xfb,0xee,0xf3,0xe7,0x9f,0x3e,0x2b,0xfc,0x62,0xae,0xa9,0xcb,0x30,0x0,0xb3,0x12,0xe1,0x1f,0xc0,0xd5,0x25,0x26,0x34,0x83,0xea,0x85,0xd1,0x74,0x32,0x9a,0xc2,0xce,0xde,0xd2,0x88,0x7d,0xc8,0x3a,0x82,0xa8,0xaa,0xdb,0x84,0x57,0x2a,0xc3,0xdf,0xed,0xd9,0x71,0x5b,0x80,0x7a,0x69,0xd4,0xf1,0x25,0xee,0x37,0xf8,0xbb,0xbb,0x8b,0x40,0xf7,0x2,0xc8,0x4b,0x4f,0xe2,0x29,0x9,0x1e,0x15,0x86,0x9c,0x6c,0xce,0x16,0xde,0xc2,0x4a,0x6e,0x7d,0x5c,0x0,0x58,0x23,0xa8,0x4e,0x2c,0x32,0xbd,0xc4,0x8,0xeb,0x8a,0x35,0xa4,0xba,0x60,0xdc,0xe6,0xcf,0x97,0x5e,0x48,0xd7,0x2c,0x50,0x2c,0xe1,0x74,0xef,0xb3,0x78,0x62,0xb7,0x75,0xd,0xa6,0xa8,0x13,0x3e,0xf6,0x6a,0xe3,0x56,0x1d,0x95,0x8f,0xc,0xd3,0xc,0xa3,0x92,0xe2,0xa7,0x7f,0xb6,0x4b,0x1b,0x23,0x9f,0xab,0xc5,0xdb,0x36,0xf3,0x10,0xa6,0x1e,0x93,0xcc,0x20,0xfc,0x14,0x89,0x1a,0x90,0x42,0xa7,0x55,0x6b,0xb9,0x2d,0xbe,0x2,0x72,0xa4,0x7d,0x43,0xaf,0xe3,0xd6,0x3d,0x6f,0x61,0xd2,0x12,0x3c,0xfc,0x23,0x81,0xd5,0x12,0xb1,0xd5,0xbb,0x12,0xd5,0x4b,0x2,0x7d,0x46,0x1c,0x20,0x40,0x57,0xea,0x1d,0xe4,0xc0,0x81,0xbc,0x6,0x8c,0x94,0x4c,0x92,0xe0,0xa8,0x14,0xff,0xf4,0xa8,0x4a,0x43,0xfb,0xd6,0x5d,0xc1,0x58,0x36,0x5c,0x93,0x45,0xe9,0xb4,0x1e,0x20,0x6,0xb4,0x70,0x84,0x75,0xbd,0x7f,0xfd,0x7a,0xe5,0xbd,0xb6,0x55,0x8b,0x51,0x76,0x66,0x93,0x48,0xad,0xf7,0x44,0x93,0xca,0x58,0xec,0x76,0xb3,0x75,0x5b,0xff,0xbe,0x20,0x87,0x2b,0xd1,0x65,0x69,0xd8,0x5c,0xf,0x66,0xb,0xd1,0x9a,0x37,0xf7,0xba,0xa0,0x6f,0x9f,0x2b,0x0,0xa8,0x84,0xe6,0x25,0x6c,0x8f,0xfa,0x93,0x7a,0x13,0x80,0xa5,0x39,0xa9,0x15,0x34,0xf5,0x70,0x70,0xc4,0xa8,0xdc,0x10,0x19,0x75,0xce,0x2c,0xea,0x48,0xb4,0xd2,0x5,0xc8,0x62,0x9,0xb8,0x88,0x61,0x6a,0x63,0xea,0x9b,0xe3,0xed,0x32,0xc2,0x1f,0x4d,0x3d,0xa2,0xa,0x18,0x94,0xb3,0xad,0x32,0x75,0x36,0x83,0x4a,0xa2,0x96,0x29,0xd,0x82,0x76,0xbe,0xac,0xeb,0x7c,0xf9,0x2e,0x5,0xbe,0x42,0x21,0xfc,0xc9,0x11,0x8f,0x0,0x18,0x3f,0xa,0x59,0x73,0x85,0x7,0xd,0xa3,0x7c,0xb7,0x2,0xc,0xaf,0x6f,0x60,0xc,0xc,0x44,0xec,0x89,0x87,0xac,0x2b,0x6a,0x67,0x74,0xa5,0x9e,0x8b,0x87,0x98,0x6b,0x78,0xfb,0xe4,0xa2,0x39,0x9f,0x36,0x54,0x5d,0x1f,0x50,0xb1,0x16,0xd4,0x17,0x48,0xb6,0xa8,0x5b,0x8e,0x50,0xb,0x2,0xf8,0x5e,0x14,0x21,0xac,0x47,0xaf,0x4a,0xa8,0x1e,0x15,0xe0,0xcd,0xd9,0xde,0xc,0x96,0xe0,0xc9,0x31,0x15,0x5,0xc3,0x18,0x5f,0x9c,0x82,0x3,0x7f,0xdf,0x90,0x53,0xd2,0x98,0xd1,0xe8,0xb4,0x14,0x2f,0xd1,0xce,0xcc,0x3d,0x2d,0x3a,0x63,0x53,0x95,0x96,0x21,0x53,0x33,0x6b,0xd6,0xbc,0x46,0x69,0xa2,0x6b,0xc,0x76,0xe6,0x15,0x70,0x4a,0xb5,0xf8,0x6e,0x71,0xbf,0x51,0xd7,0x86,0x54,0x1d,0xa9,0x78,0xc0,0x13,0xa8,0xaa,0xd7,0x67,0x81,0x40,0x7b,0xf5,0xeb,0x47,0xbb,0xb7,0x6e,0x85,0xce,0x3d,0xfc,0x53,0x89,0x69,0xfa,0x64,0x3b,0x80,0x3e,0x9e,0x5f,0x56,0xdd,0x25,0x4d,0x31,0x3e,0x3b,0x61,0x93,0xc9,0x58,0x9f,0xf4,0xaf,0x44,0x14,0x5d,0xeb,0xf9,0xa3,0x64,0x7e,0x9c,0xcd,0x9f,0x33,0xae,0x36,0x1b,0xe2,0xf9,0x86,0xc5,0xf4,0x89,0x11,0x9d,0x35,0x94,0x4c,0x81,0x2d,0x4e,0x15,0x4a,0x7d,0x57,0xfb,0x7b,0xce,0x6f,0xf6,0x9c,0xea,0xc2,0x39,0x2d,0x98,0xca,0xcd,0x71,0x4a,0xdd,0xab,0x42,0x9e,0xef,0x1a,0x4,0xbb,0x47,0xb9,0xb5,0x3e,0xa1,0x9d,0xf5,0x7c,0x13,0xb0,0x2d,0xe6,0xb4,0x59,0xc0,0x27,0xe8,0xde,0xc6,0x79,0x3b,0x2d,0xf4,0x1a,0xc6,0xc3,0x88,0xb5,0x4f,0xe4,0xb7,0xe8,0xa,0x51,0x85,0xb2,0x24,0x29,0x4f,0x79,0x48,0x8c,0x93,0x7a,0xae,0xa,0xf6,0xca,0xe,0xb4,0xf9,0x52,0x6f,0xe7,0x7a,0xd,0xf5,0xd2,0x8a,0xe,0x1f,0xba,0x50,0x14,0x48,0xdd,0xa3,0xa9,0x7b,0xa6,0x43,0x41,0xf3,0x26,0x8d,0x41,0xfc,0xa3,0x3a,0xb9,0x60,0xdf,0x88,0xa8,0xa4,0x30,0x70,0x2e,0x35,0x23,0x95,0xb,0x62,0xab,0x6e,0xad,0xae,0xbc,0x6b,0x1b,0x83,0x96,0x76,0x3e,0x88,0x34,0x85,0xda,0x33,0xfd,0x4d,0x4,0x6d,0x63,0xfe,0x9,0x63,0xef,0x9e,0x69,0x9a,0x27,0xec,0xf7,0x19,0x9b,0x9f,0x30,0xf6,0x96,0x41,0x31,0xe5,0x39,0xce,0x9c,0xd6,0xbc,0x6,0xa2,0xf0,0x1,0x39,0x6c,0xa9,0xea,0x65,0x7d,0x2e,0xc4,0x6e,0x4,0xf5,0x1e,0xb2,0xa9,0x43,0x4d,0x9a,0x9b,0xf7,0x82,0xe9,0xb3,0x15,0x50,0x10,0x38,0x20,0xab,0xc6,0xdf,0x6d,0x5a,0xfd,0x9b,0x9e,0xde,0xfd,0x4d,0x3f,0xad,0xc7,0xef,0x4d,0x4f,0xdf,0x43,0xfe,0x8e,0x9b,0xc,0xb0,0xfd,0x8c,0x27,0x41,0xf5,0xf6,0x66,0xf7,0x3c,0xd7,0xa7,0xbe,0xd3,0x52,0xc3,0x8b,0x4f,0x29,0x0,0x76,0x8a,0xfc,0xff,0x8c,0x90,0xbf,0x9a,0xe2,0x5f,0x48,0xa6,0x7f,0xef,0x34,0x4f,0x60,0xeb,0xc4,0xaf,0x5b,0x9a,0xad,0x8b,0xd0,0x6a,0xdd,0x1,0xb0,0xfd,0x3b,0xb,0x83,0x4f,0x3,0xae,0xf9,0xb,0xc1,0xd0,0x9a,0xc5,0x7,0xcd,0x71,0x10,0xc7,0x5b,0xe5,0x1b,0x13,0xdb,0x61,0x7b,0xf7,0xdd,0xff,0x32,0x22,0xfd,0xbb,0x6a,0x73,0x15,0x34,0x58,0x4b,0x95,0xe7,0xac,0x8,0x69,0x69,0xf3,0x5f,0x5f,0xd3,0xbd,0xda,0x4b,0xbd,0x8a,0xda,0xd7,0xdf,0xb8,0xb,0x1d,0xbf,0xf3,0x2,0x2a,0x28,0xb1,0x7a,0x74,0x79,0x54,0xb7,0x73,0x5b,0x3c,0xc2,0x5f,0x2f,0x7a,0xb7,0x73,0x7a,0x53,0x7c,0xff,0xf9,0xc3,0x5b,0xf2,0xf8,0xb7,0xc7,0x2f,0xef,0x3e,0x2a,0x92,0x5c,0xe8,0xe3,0xc9,0x68,0x59,0xed,0xf1,0x35,0xfb,0x8f,0x7,0xd,0x3,0xc6,0xf9,0x3f,0x87,0x9,0x2d,0xcb,0x7f,0xbc,0x9a,0x42,0xd8,0x75,0xfc,0xcd,0x45,0x8d,0xe6,0x53,0xfa,0xc6,0x2e,0x71,0xbc,0x1b,0xfd,0xf4,0xcd,0x73,0x6e,0x9e,0xb,0xf3,0x5c,0x9a,0xe7,0xca,0x3c,0xef,0xcc,0x73,0x6d,0x9e,0xf7,0xe6,0xe9,0xb9,0xf5,0x87,0xda,0xa2,0xe7,0x2b,0xd2,0x55,0x33,0x9a,0xd5,0x37,0x8d,0x6f,0x9b,0xe6,0xd8,0x49,0x48,0xe7,0x4,0x4d,0xda,0x7e,0xae,0x6a,0x8d,0xfa,0x43,0x5c,0xc2,0x68,0x81,0xbb,0x41,0xc6,0xda,0x80,0x3e,0xa3,0x3b,0x65,0xaa,0xe6,0xf,0x4f,0x77,0x27,0xf9,0x5c,0x4b,0xfe,0xfc,0x5,0x4b,0xaf,0xd5,0x74,0xed,0xa9,0xb9,0xfd,0xab,0x89,0xef,0x6c,0x3e,0xff,0x6,0x5f,0xd,0xc6,0x8c,0x86,0xdf,0xd5,0xf0,0xfc,0xd9,0x6a,0xd5,0x53,0x99,0x77,0x55,0x7c,0xaf,0x27,0x5f,0xf4,0xe4,0xf7,0xc3,0xb7,0x2c,0xbb,0x2a,0xf3,0xbb,0xe1,0x5b,0x56,0x3d,0x57,0xfb,0xf2,0xbb,0xae,0x7c,0x39,0xb2,0x96,0x75,0x57,0x65,0x35,0xb2,0x96,0xfb,0xae,0xca,0x5d,0x7f,0x2d,0x9e,0xdb,0x53,0x18,0x59,0x8c,0xd7,0x43,0x75,0x3d,0xb2,0x1a,0xaf,0x87,0xeb,0xbd,0xad,0xd0,0x8d,0xb3,0x15,0x69,0x43,0xf,0x51,0xef,0xd7,0xc9,0xbf,0x1,0xd0,0x13,0xdc,0x1d,0x74,0x1e,0x0,0x0 }; +const uint8_t style_css[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0xcd,0x59,0x6d,0x8f,0xdb,0xb8,0x11,0xfe,0xbc,0xfe,0x15,0xac,0x17,0x87,0xdb,0x4d,0x57,0x5e,0x49,0x7e,0x59,0xaf,0x83,0x0,0x97,0x6c,0x92,0xbb,0xb4,0x97,0x1c,0x90,0xd,0xd0,0x16,0x87,0xb6,0xa0,0x24,0xda,0x22,0x2c,0x89,0x82,0x44,0xad,0xd7,0x39,0x5c,0x7f,0x7b,0x67,0x48,0x4a,0xa2,0x5e,0xec,0xeb,0xa1,0x1f,0xda,0x2c,0xb2,0xb2,0x39,0xc3,0xd1,0xf0,0x99,0xe1,0xcc,0x43,0xee,0xed,0x8b,0x9,0x21,0xe4,0x4b,0xcc,0x4b,0x52,0x8a,0xad,0x3c,0xd0,0x82,0x11,0xf8,0x9c,0xf0,0x90,0x65,0x25,0x8b,0x48,0x95,0x45,0xac,0x20,0x32,0x66,0xe4,0xe3,0x87,0x2f,0xe4,0x47,0x3d,0x3c,0x23,0x8f,0x8c,0xa9,0x41,0xa3,0x47,0xb6,0x3c,0x81,0x5f,0xa2,0x20,0x11,0x93,0x94,0x27,0xe5,0xc,0xad,0x3e,0x8a,0xaa,0x8,0xd9,0x86,0xc4,0x52,0xe6,0xe5,0xe6,0xf6,0x76,0xc7,0x65,0x5c,0x5,0xb3,0x50,0xa4,0xb7,0x65,0x4e,0x43,0x16,0x57,0x71,0x26,0x59,0x18,0xdf,0xfe,0x85,0xbf,0xe7,0x6f,0xab,0x70,0x3f,0x21,0x2f,0x6e,0x27,0xb7,0x2f,0xc8,0xf7,0x89,0x8,0x68,0x82,0x5f,0x26,0x81,0x88,0x8e,0xe4,0x97,0xc9,0x45,0x40,0xc3,0xfd,0xae,0x10,0xe0,0xce,0x86,0x5c,0xce,0x57,0xf3,0xfb,0x39,0x7b,0x9,0xef,0x48,0x69,0xb1,0xe3,0xd9,0x86,0xb8,0xf8,0x25,0x14,0x89,0x28,0x40,0x1c,0x6c,0xf1,0xe7,0xe5,0xe4,0x62,0x2b,0x32,0xe9,0x6c,0x69,0xca,0x93,0xe3,0x86,0x94,0x34,0x2b,0x9d,0x92,0x15,0x1c,0x24,0xbf,0x4e,0x26,0x29,0xe5,0x19,0x1a,0x3e,0xf0,0x48,0xc6,0x1b,0xb2,0x72,0x9f,0xe,0x30,0x43,0xdb,0x73,0x12,0xb6,0x95,0x1b,0x42,0x2b,0x29,0xda,0xb1,0x82,0xef,0xe2,0x66,0x10,0xc,0x94,0x2c,0x94,0x5c,0x28,0x1b,0x46,0x43,0x8a,0x7c,0x43,0x96,0x6e,0xfe,0xac,0xe4,0x5b,0x21,0x24,0x40,0xf7,0x8b,0x71,0xa3,0xe4,0x5f,0x1,0x8a,0xd9,0xfd,0x92,0xa5,0x60,0x53,0xb2,0x67,0xe9,0xd0,0x84,0xef,0xc0,0x77,0x40,0x10,0x14,0x5f,0x76,0xcd,0xcc,0x95,0x9a,0x19,0x9,0x84,0x94,0x22,0x35,0x83,0x60,0x3a,0xf6,0x7a,0x66,0xbd,0xd9,0xa2,0xb0,0x27,0x28,0x13,0x9e,0x1e,0xb2,0x90,0x9b,0x5c,0x5c,0xfa,0xdb,0xb9,0x37,0x5f,0xc1,0x70,0x4e,0xa3,0x88,0x67,0x3b,0x50,0x53,0xe,0x5f,0x4,0xa2,0x80,0x48,0x3b,0x5,0x8d,0x78,0x55,0x6e,0xc8,0xc2,0x1e,0xd4,0x70,0x94,0x22,0xe1,0x11,0xb9,0xf4,0xdd,0xd0,0x77,0x19,0x59,0x2a,0x5,0xe5,0xc3,0x81,0x69,0x68,0x3c,0x17,0xc2,0x70,0x91,0x30,0x9,0xcb,0x71,0x30,0xc2,0xca,0xfe,0xd2,0xe0,0x11,0xfb,0x3,0xa7,0xfd,0xff,0xc4,0x69,0xf2,0xbf,0xf4,0x79,0xde,0xf7,0xf9,0xff,0xdd,0xe3,0x84,0x6,0x2c,0x41,0xa7,0x13,0x9e,0x31,0x27,0x36,0x73,0x16,0xb,0x23,0xce,0xdb,0x74,0x85,0x64,0x84,0x5c,0xc4,0x9d,0x3,0xe3,0xb0,0xe9,0x3e,0xd1,0x27,0xbe,0xa3,0x2a,0xa5,0x3,0x5a,0xe0,0xe6,0xcb,0xe8,0x13,0xaa,0x47,0xbc,0xcc,0x13,0xa,0x3b,0x28,0x48,0x44,0xb8,0x3f,0xb9,0xd4,0x8e,0x93,0x81,0x48,0x22,0x34,0x4c,0x88,0xb2,0x42,0xd1,0x8e,0xd9,0x9e,0x3c,0x8b,0x61,0x13,0x4a,0xf5,0xda,0x59,0xca,0xb2,0x6a,0xb8,0xb,0x13,0x5e,0x2,0xe0,0xf2,0x98,0x30,0x47,0x1e,0x73,0x80,0x3d,0x13,0x19,0x7b,0xd9,0x3a,0xee,0xda,0xc8,0xba,0xb6,0xa0,0xde,0xb3,0x8d,0xcf,0xdb,0x84,0x29,0x4,0xe1,0xe1,0x44,0xbc,0xd0,0x7b,0x76,0x43,0xa,0x71,0xb0,0xb4,0xcc,0xc2,0x1a,0x87,0x12,0x6e,0xc3,0x84,0xa1,0x43,0x7c,0xf5,0x7,0xd7,0xb6,0xce,0x33,0x5,0xf3,0x70,0xfe,0x26,0xa1,0xb0,0x84,0x30,0xe6,0x49,0xa4,0x32,0x28,0x11,0x14,0x50,0x51,0x25,0xc4,0xd2,0x53,0xb0,0x34,0xb,0x99,0xdd,0xe9,0xda,0x30,0x96,0x23,0xed,0x94,0x4d,0x2c,0x9e,0x74,0x59,0xe9,0x84,0x61,0xe1,0x2f,0x16,0xb,0xaa,0x14,0x43,0x11,0xb1,0x81,0x3c,0xc,0x43,0x1b,0xb4,0xf9,0x58,0x36,0xea,0xc1,0x3,0xc,0x3a,0x41,0xc1,0xe8,0x7e,0x43,0xf6,0x8c,0xe5,0x50,0xa6,0x12,0xf2,0x7,0x9e,0xe6,0xa2,0x90,0x34,0x3,0xf7,0xeb,0x40,0x5e,0xba,0x3a,0x13,0xed,0x44,0xf3,0x1b,0x6f,0x21,0x3b,0x53,0x9e,0xd1,0x44,0x23,0xf9,0xdc,0x68,0x40,0xfa,0x3e,0xc5,0xdd,0x24,0x6a,0x73,0xa8,0xc9,0x57,0xf7,0xcc,0x76,0xc1,0xf5,0x3,0xa0,0x7,0x7,0x8b,0x7a,0x58,0x88,0x24,0xe9,0x6c,0xb4,0x7a,0x27,0xcc,0xe,0x31,0x97,0x8,0xc4,0xb0,0x31,0x28,0x29,0x2d,0x32,0x2b,0x2b,0x2f,0xb7,0xdb,0xd0,0x73,0xef,0xb4,0x2c,0xa2,0xd9,0x4e,0x63,0x5c,0x4b,0xdf,0xbb,0x8b,0xbb,0x85,0x91,0x96,0x55,0x18,0xb2,0xb2,0xb4,0xc5,0x8b,0xf9,0x9b,0xe5,0xda,0xd3,0xe2,0xbc,0xe0,0x90,0x39,0x47,0x5b,0xec,0xba,0xf7,0x7e,0x14,0x98,0xd9,0x2c,0x81,0x24,0x54,0x6e,0xd5,0x59,0x7f,0xbf,0x86,0xbc,0xb2,0x11,0x6,0x51,0x9b,0xde,0x1d,0x49,0x6b,0x81,0x45,0xda,0x46,0x37,0xb,0xee,0xef,0x16,0xf4,0x5e,0xab,0x85,0xd0,0x9b,0xf7,0x34,0x48,0x34,0x4,0x17,0x61,0x55,0x94,0xe8,0x4c,0x2e,0xb8,0x6e,0x37,0x4a,0x47,0xa7,0xa,0x88,0x3b,0xad,0x72,0xfa,0x0,0x9d,0x9b,0x3,0x2,0x9f,0xd8,0x61,0x7a,0x43,0xcc,0xb7,0x1b,0x92,0x8a,0x4c,0xa8,0xce,0xad,0x67,0x17,0xc,0xd2,0x5a,0xbb,0x41,0x48,0x37,0xc5,0x71,0xa4,0x93,0x18,0xde,0x4c,0xd7,0x49,0x14,0xc,0x5c,0xe9,0x76,0x85,0xe5,0xb0,0xc6,0x36,0x59,0xa5,0x5f,0xd9,0xec,0x1,0xb4,0xa6,0x5a,0x69,0xc4,0x42,0x51,0x50,0xbd,0xb7,0x75,0xb1,0x0,0xed,0xcb,0x52,0x52,0x59,0xa9,0x40,0x8d,0xf6,0x5b,0x35,0x28,0xb,0xe0,0x5,0xc0,0x5c,0xa0,0xbd,0x86,0x34,0xe7,0x12,0x94,0xbe,0x32,0x3b,0xa1,0x74,0x9,0x6e,0xd3,0x4,0x89,0x45,0x2e,0x4a,0xae,0x5f,0x56,0x4a,0x40,0xf9,0x88,0xc6,0xd0,0x4f,0xdc,0xf,0x5f,0x1d,0xe,0x9c,0xe9,0x19,0xc2,0x6a,0x2,0x11,0xb1,0xa0,0xda,0xed,0x8c,0xbf,0x1d,0x9c,0x2d,0x3c,0x4f,0x14,0xd5,0xd1,0xd,0xd0,0x6f,0x2a,0x3d,0x96,0x50,0x83,0x75,0xc9,0x22,0x2e,0x45,0xe1,0x98,0x84,0x74,0x82,0xa,0xe4,0x59,0x39,0x5a,0x8f,0x4e,0xe9,0xe6,0x7d,0xf0,0xda,0x29,0xd0,0x32,0x5e,0xe1,0x3f,0xf2,0xf0,0xc3,0xbb,0x87,0x3f,0xbf,0xf9,0xe9,0xaf,0xe6,0xab,0xa6,0x70,0xf,0x55,0x9,0xce,0x0,0x94,0x9a,0x26,0xaa,0xae,0x74,0x85,0x1f,0x43,0x0,0x0,0xa8,0x17,0x2b,0xae,0x51,0x73,0x16,0xc6,0x2c,0xdc,0xbf,0x11,0xcf,0xf,0xf5,0xf0,0x68,0xc7,0x69,0xf1,0x86,0x4,0x80,0x30,0x3f,0x59,0x11,0x32,0x7d,0x73,0xbe,0x1c,0xc3,0xc2,0xf3,0x75,0xf4,0xce,0x65,0x9c,0xaf,0x75,0xa0,0x77,0x5,0x7b,0x2e,0x9d,0xaa,0xc4,0xbe,0xaa,0xf6,0x58,0xd3,0x78,0x9c,0x54,0x7c,0x3d,0x21,0x28,0x47,0xc7,0xc7,0xc6,0xea,0xad,0x30,0xf7,0x4d,0x80,0x0,0xa6,0x1f,0x78,0xa4,0x11,0xa,0xa0,0x23,0xc1,0x9c,0x6f,0x4b,0x60,0xd0,0x5b,0x5a,0x25,0x92,0x28,0x64,0x2,0xf1,0x7c,0x2,0x26,0x9e,0xe5,0x95,0x54,0xfd,0xa3,0xc1,0x86,0x6,0x40,0x1e,0x2a,0x89,0xef,0x12,0xc8,0xb,0xe4,0x51,0x67,0xe4,0xd8,0xd6,0xc7,0x10,0x41,0x8d,0x87,0x2,0x49,0x61,0x3f,0x62,0xac,0x46,0x5e,0x8,0x60,0xee,0x4f,0xbe,0x42,0x25,0xfc,0x5a,0x41,0xa7,0x23,0xe0,0x5a,0x6b,0xf4,0xb5,0xc0,0x14,0x38,0xf3,0xad,0x4d,0x71,0xa7,0xde,0x4e,0xfe,0xfb,0x33,0x89,0xde,0x71,0x53,0xe5,0x4e,0xed,0xd4,0x2d,0x6c,0x31,0x1e,0x52,0xc8,0x58,0x72,0x15,0xf3,0x28,0x62,0x19,0x39,0xc4,0xf0,0x2b,0x13,0x6,0x37,0x16,0x5d,0x77,0x97,0xb1,0xa1,0x5b,0x59,0x97,0x74,0x0,0x21,0x3,0x1f,0xa7,0xd3,0x97,0x27,0x96,0xd6,0xe4,0x5f,0x53,0x4a,0xc0,0x8f,0xc7,0x58,0x1c,0xba,0x5e,0xe8,0x77,0x9a,0xf7,0x9d,0xb,0xd3,0xc6,0xe8,0xfc,0x6b,0xcc,0x9f,0x7e,0xb2,0xab,0xba,0x3c,0xb0,0x33,0x36,0x53,0xc3,0x6e,0x8a,0x80,0xa,0xc7,0x9d,0x8d,0xba,0x2e,0x16,0x6d,0xdf,0xb5,0x3a,0x6a,0x4d,0x33,0x55,0x8b,0x6c,0xd1,0x37,0x13,0x5d,0x64,0x2,0xea,0xbf,0x6b,0xed,0xb,0xab,0x50,0x16,0x2,0xa,0x2b,0xbb,0x5a,0x2c,0x23,0xb6,0xbb,0x36,0xbb,0xe0,0x8c,0xf8,0xb4,0x48,0x23,0xfb,0xee,0xf3,0xe7,0x9f,0x3e,0x2b,0xfc,0x62,0xae,0xa9,0xcb,0x30,0x0,0xb3,0x12,0xe1,0x1f,0xc0,0xd5,0x25,0x26,0x34,0x83,0xea,0x85,0xd1,0x74,0x32,0x9a,0xc2,0xce,0xde,0xd2,0x88,0x7d,0xc8,0x3a,0x82,0xa8,0xaa,0xdb,0x84,0x57,0x2a,0xc3,0xdf,0xed,0xd9,0x71,0x5b,0x80,0x7a,0x69,0xd4,0xf1,0x25,0xee,0x37,0xf8,0xbb,0xbb,0x8b,0x40,0xf7,0x2,0xc8,0x4b,0x4f,0xe2,0x29,0x9,0x1e,0x15,0x86,0x9c,0x6c,0xce,0x16,0xde,0xc2,0x4a,0x6e,0x7d,0x5c,0x0,0x58,0x23,0xa8,0x4e,0x2c,0x32,0xbd,0xc4,0x8,0xeb,0x8a,0x35,0xa4,0xba,0x60,0xdc,0xe6,0xcf,0x97,0x5e,0x48,0xd7,0x2c,0x50,0x2c,0xe1,0x74,0xef,0xb3,0x78,0x62,0xb7,0x75,0xd,0xa6,0xa8,0x13,0x3e,0xf6,0x6a,0xe3,0x56,0x1d,0x95,0x8f,0xc,0xd3,0xc,0xa3,0x92,0xe2,0xa7,0x7f,0xb6,0x4b,0x1b,0x23,0x9f,0xab,0xc5,0xdb,0x36,0xf3,0x10,0xa6,0x1e,0x93,0xcc,0x20,0xfc,0x14,0x89,0x1a,0x90,0x42,0xa7,0x55,0x6b,0xb9,0x2d,0xbe,0x2,0x72,0xa4,0x7d,0x43,0xaf,0xe3,0xd6,0x3d,0x6f,0x61,0xd2,0x12,0x3c,0xfc,0x23,0x81,0xd5,0x12,0xb1,0xd5,0xbb,0x12,0xd5,0x4b,0x2,0x7d,0x46,0x1c,0x20,0x40,0x57,0xea,0x1d,0xe4,0xc0,0x81,0xbc,0x6,0x8c,0x94,0x4c,0x92,0xe0,0xa8,0x14,0xff,0xf4,0xa8,0x4a,0x43,0xfb,0xd6,0x5d,0xc1,0x58,0x36,0x5c,0x93,0x45,0xe9,0xb4,0x1e,0x20,0x6,0xb4,0x70,0x84,0x75,0xbd,0x7f,0xfd,0x7a,0xe5,0xbd,0xb6,0x55,0x8b,0x51,0x76,0x66,0x93,0x48,0xad,0xf7,0x44,0x93,0xca,0x58,0xec,0x76,0xb3,0x75,0x5b,0xff,0xbe,0x20,0x87,0x2b,0xd1,0x65,0x69,0xd8,0x5c,0xf,0x66,0xb,0xd1,0x9a,0x37,0xf7,0xba,0xa0,0x6f,0x9f,0x2b,0x0,0xa8,0x84,0xe6,0x25,0x6c,0x8f,0xfa,0x93,0x7a,0x13,0x80,0xa5,0x39,0xa9,0x15,0x34,0xf5,0x70,0x70,0xc4,0xa8,0xdc,0x10,0x19,0x75,0xce,0x2c,0xea,0x48,0xb4,0xd2,0x5,0xc8,0x62,0x9,0xb8,0x88,0x61,0x6a,0x63,0xea,0x9b,0xe3,0xed,0x32,0xc2,0x1f,0x4d,0x3d,0xa2,0xa,0x18,0x94,0xb3,0xad,0x32,0x75,0x36,0x83,0x4a,0xa2,0x96,0x29,0xd,0x82,0x76,0xbe,0xac,0xeb,0x7c,0xf9,0x2e,0x5,0xbe,0x42,0x21,0xfc,0xc9,0x11,0x8f,0x0,0x18,0x3f,0xa,0x59,0x73,0x85,0x7,0xd,0xa3,0x7c,0xb7,0x2,0xc,0xaf,0x6f,0x60,0xc,0xc,0x44,0xec,0x89,0x87,0xac,0x2b,0x6a,0x67,0x74,0xa5,0x9e,0x8b,0x87,0x98,0x6b,0x78,0xfb,0xe4,0xa2,0x39,0x9f,0x36,0x54,0x5d,0x1f,0x50,0xb1,0x16,0xd4,0x17,0x48,0xb6,0xa8,0x5b,0x8e,0x50,0xb,0x2,0xf8,0x5e,0x14,0x21,0xac,0x47,0xaf,0x4a,0xa8,0x1e,0x15,0xe0,0xcd,0xd9,0xde,0xc,0x96,0xe0,0xc9,0x31,0x15,0x5,0xc3,0x18,0x5f,0x9c,0x82,0x3,0x7f,0xdf,0x90,0x53,0xd2,0x98,0xd1,0xe8,0xb4,0x14,0x2f,0xd1,0xce,0xcc,0x3d,0x2d,0x3a,0x63,0x53,0x95,0x96,0x21,0x53,0x33,0x6b,0xd6,0xbc,0x46,0x69,0xa2,0x6b,0xc,0x76,0xe6,0x15,0x70,0x4a,0xb5,0xf8,0x6e,0x71,0xbf,0x51,0xd7,0x86,0x54,0x1d,0xa9,0x78,0xc0,0x13,0xa8,0xaa,0xd7,0x67,0x81,0x40,0x7b,0xf5,0xeb,0x47,0xbb,0xb7,0x6e,0x85,0xce,0x3d,0xfc,0x53,0x89,0x69,0xfa,0x64,0x3b,0x80,0x3e,0x9e,0x5f,0x56,0xdd,0x25,0x4d,0x31,0x3e,0x3b,0x61,0x93,0xc9,0x58,0x9f,0xf4,0xaf,0x44,0x14,0x5d,0xeb,0xf9,0xa3,0x64,0x7e,0x9c,0xcd,0x9f,0x33,0xae,0x36,0x1b,0xe2,0xf9,0x86,0xc5,0xf4,0x89,0x11,0x9d,0x35,0x94,0x4c,0x81,0x2d,0x4e,0x15,0x4a,0x7d,0x57,0xfb,0x7b,0xce,0x6f,0xf6,0x9c,0xea,0xc2,0x39,0x2d,0x98,0xca,0xcd,0x71,0x4a,0xdd,0xab,0x42,0x9e,0xef,0x1a,0x4,0xbb,0x47,0xb9,0xb5,0x3e,0xa1,0x9d,0xf5,0x7c,0x13,0xb0,0x2d,0xe6,0xb4,0x59,0xc0,0x27,0xe8,0xde,0xc6,0x79,0x3b,0x2d,0xf4,0x1a,0xc6,0xc3,0x88,0xb5,0x4f,0xe4,0xb7,0xe8,0xa,0x51,0x85,0xb2,0x24,0x29,0x4f,0x79,0x48,0x8c,0x93,0x7a,0xae,0xa,0xf6,0xca,0xe,0xb4,0xf9,0x52,0x6f,0xe7,0x7a,0xd,0xf5,0xd2,0x8a,0xe,0x1f,0xba,0x50,0x14,0x48,0xdd,0xa3,0xa9,0x7b,0xa6,0x43,0x41,0xf3,0x26,0x8d,0x41,0xfc,0xa3,0x3a,0xb9,0x60,0xdf,0x88,0xa8,0xa4,0x30,0x70,0x2e,0x35,0x23,0x95,0xb,0x62,0xab,0x6e,0xad,0xae,0xbc,0x6b,0x1b,0x83,0x96,0x76,0x3e,0x88,0x34,0x85,0xda,0x33,0xfd,0x4d,0x4,0x6d,0x63,0xfe,0x9,0x63,0xef,0x9e,0x69,0x9a,0x27,0xec,0xf7,0x19,0x9b,0x9f,0x30,0xf6,0x96,0x41,0x31,0xe5,0x39,0xce,0x9c,0xd6,0xbc,0x6,0xa2,0xf0,0x1,0x39,0x6c,0xa9,0xea,0x65,0x7d,0x2e,0xc4,0x6e,0x4,0xf5,0x1e,0xb2,0xa9,0x43,0x4d,0x9a,0x9b,0xf7,0x82,0xe9,0xb3,0x15,0x50,0x10,0x38,0x20,0xab,0xc6,0xdf,0x6d,0x5a,0xfd,0x9b,0x9e,0xde,0xfd,0x4d,0x3f,0xad,0xc7,0xef,0x4d,0x4f,0xdf,0x43,0xfe,0x8e,0x9b,0xc,0xb0,0xfd,0x8c,0x27,0x41,0xf5,0xf6,0x66,0xf7,0x3c,0xd7,0xa7,0xbe,0xd3,0x52,0xc3,0x8b,0x4f,0x29,0x0,0x76,0x8a,0xfc,0xff,0x8c,0x90,0xbf,0x9a,0xe2,0x5f,0x48,0xa6,0x7f,0xef,0x34,0x4f,0x60,0xeb,0xc4,0xaf,0x5b,0x9a,0xad,0x8b,0xd0,0x6a,0xdd,0x1,0xb0,0xfd,0x3b,0xb,0x83,0x4f,0x3,0xae,0xf9,0xb,0xc1,0xd0,0x9a,0xc5,0x7,0xcd,0x71,0x10,0xc7,0x5b,0xe5,0x1b,0x13,0xdb,0x61,0x7b,0xf7,0xdd,0xff,0x32,0x22,0xfd,0xbb,0x6a,0x73,0x15,0x34,0x58,0x4b,0x95,0xe7,0xac,0x8,0x69,0x69,0xf3,0x5f,0x5f,0xd3,0xbd,0xda,0x4b,0xbd,0x8a,0xda,0xd7,0xdf,0xb8,0xb,0x1d,0xbf,0xf3,0x2,0x2a,0x28,0xb1,0x7a,0x74,0x79,0x54,0xb7,0x73,0x5b,0x3c,0xc2,0x5f,0x2f,0x7a,0xb7,0x73,0x7a,0x53,0x7c,0xff,0xf9,0xc3,0x5b,0xf2,0xf8,0xb7,0xc7,0x2f,0xef,0x3e,0x2a,0x92,0x5c,0xe8,0xe3,0xc9,0x68,0x59,0xed,0xf1,0x35,0xfb,0x8f,0x7,0xd,0x3,0xc6,0xf9,0x3f,0x87,0x9,0x2d,0xcb,0x7f,0xbc,0x9a,0x42,0xd8,0x75,0xfc,0xcd,0x45,0x8d,0xe6,0x53,0xfa,0xc6,0x2e,0x71,0xbc,0x1b,0xfd,0xf4,0xcd,0x73,0x6e,0x9e,0xb,0xf3,0x5c,0x9a,0xe7,0xca,0x3c,0xef,0xcc,0x73,0x6d,0x9e,0xf7,0xe6,0xe9,0xb9,0xf5,0x87,0xda,0xa2,0xe7,0x2b,0xd2,0x55,0x33,0x9a,0xd5,0x37,0x8d,0x6f,0x9b,0xe6,0xd8,0x49,0x48,0xe7,0x4,0x4d,0xda,0x7e,0xae,0x6a,0x8d,0xfa,0x43,0x5c,0xc2,0x68,0x81,0xbb,0x41,0xc6,0xda,0x80,0x3e,0xa3,0x3b,0x65,0xaa,0xe6,0xf,0x4f,0x77,0x27,0xf9,0x5c,0x4b,0xfe,0xfc,0x5,0x4b,0xaf,0xd5,0x74,0xed,0xa9,0xb9,0xfd,0xab,0x89,0xef,0x6c,0x3e,0xff,0x6,0x5f,0xd,0xc6,0x8c,0x86,0xdf,0xd5,0xf0,0xfc,0xd9,0x6a,0xd5,0x53,0x99,0x77,0x55,0x7c,0xaf,0x27,0x5f,0xf4,0xe4,0xf7,0xc3,0xb7,0x2c,0xbb,0x2a,0xf3,0xbb,0xe1,0x5b,0x56,0x3d,0x57,0xfb,0xf2,0xbb,0xae,0x7c,0x39,0xb2,0x96,0x75,0x57,0x65,0x35,0xb2,0x96,0xfb,0xae,0xca,0x5d,0x7f,0x2d,0x9e,0xdb,0x53,0x18,0x59,0x8c,0xd7,0x43,0x75,0x3d,0xb2,0x1a,0xaf,0x87,0xeb,0xbd,0xad,0xd0,0x8d,0xb3,0x15,0x69,0x43,0xf,0x51,0xef,0xd7,0xc9,0xbf,0x1,0xd0,0x13,0xdc,0x1d,0x74,0x1e,0x0,0x0 }; -const uint8_t terminal_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0x8d,0x55,0x6d,0x6b,0xdb,0x30,0x10,0xfe,0xec,0xfc,0xa,0x55,0xfb,0xb2,0x41,0x1d,0x77,0x2d,0x8c,0xae,0x28,0x81,0xd1,0x17,0x18,0x6c,0x6c,0x90,0x8c,0xb1,0x4f,0x43,0x91,0x2f,0x91,0x56,0x59,0x32,0x92,0x9c,0x34,0xd0,0x1f,0xbf,0x93,0x65,0x27,0x4e,0x9b,0x6e,0xd,0x89,0xad,0x3b,0xdd,0x73,0xa7,0x7b,0xee,0x74,0x61,0x27,0x79,0x3e,0xca,0xe6,0x52,0x79,0xe2,0xed,0x32,0x6c,0xb8,0x3,0x82,0x6b,0xad,0x4,0x18,0xf,0x25,0x69,0x4c,0x9,0x8e,0x4,0x9,0xe4,0xeb,0xe7,0x39,0xf9,0x92,0xd4,0x63,0x32,0x3,0x68,0x95,0x9d,0x1d,0x59,0x2a,0x8d,0xf,0xeb,0x48,0x9,0x81,0x2b,0xed,0xc7,0xa3,0x6c,0x66,0x1b,0x27,0xe0,0x8a,0xc8,0x10,0x6a,0x7f,0x55,0x14,0x2b,0x15,0x64,0xb3,0x18,0xb,0x5b,0x15,0xbe,0xe6,0x2,0x64,0x23,0x4d,0x0,0x21,0x8b,0x9f,0xea,0x4e,0xdd,0x34,0xe2,0x7e,0x94,0xe7,0xd3,0x11,0x3b,0xb9,0xf9,0x76,0x3d,0xff,0xf5,0xfd,0x16,0x71,0x95,0x46,0x39,0xbd,0x8,0x7e,0x98,0x4,0x5e,0xa6,0x65,0x2b,0x56,0x18,0x8a,0x8,0xc9,0x9d,0x87,0x30,0xa1,0x3f,0xe6,0x77,0xf9,0x25,0x7d,0xba,0x6d,0x78,0x5,0x13,0xba,0x56,0xb0,0xa9,0xad,0xb,0x94,0x8,0x8b,0x31,0xd,0x9a,0x6f,0x54,0x19,0xe4,0xa4,0x84,0x35,0x26,0x90,0xb7,0xc2,0x29,0x51,0x46,0x5,0xc5,0x75,0xee,0x5,0xd7,0x30,0x39,0x1b,0x5f,0x9e,0x92,0xa,0x75,0x15,0xaa,0x1a,0xf5,0x82,0x6b,0x24,0xa1,0x82,0x5c,0x58,0x6d,0xdd,0xc0,0xfb,0x9b,0x8b,0xf,0x17,0x1f,0x2f,0x6e,0x11,0x73,0x14,0x54,0x82,0x17,0x4e,0xd5,0x41,0x59,0x33,0x0,0x45,0x1e,0x48,0x24,0x62,0x18,0x2a,0xa8,0xa0,0x61,0xba,0xdb,0x22,0x8f,0x64,0xe,0xe,0x4f,0xc5,0x35,0x2b,0xd2,0xde,0x20,0x84,0x56,0xe6,0x9e,0x38,0xd0,0x13,0xea,0xc3,0x56,0x83,0x97,0x0,0x98,0x73,0xd8,0xd6,0xf1,0xa0,0xf0,0x10,0xa,0xe1,0x3d,0x25,0xd2,0xc1,0xb2,0xb3,0x18,0x47,0xc5,0x20,0x5a,0x3a,0x16,0xf1,0x4e,0xa0,0x41,0xbb,0x1e,0xff,0x41,0x3,0x56,0x24,0xe1,0x5,0xcb,0xd0,0x9d,0xe8,0x88,0x2d,0x2b,0xfa,0xa2,0x65,0x6c,0x61,0xcb,0xed,0xc0,0x83,0xe1,0xeb,0xbd,0xd4,0x6a,0x1a,0x4d,0x84,0xe6,0xde,0x4f,0x68,0x5,0xa6,0xa1,0x87,0xbb,0x5d,0x82,0x53,0xc6,0xbb,0x4,0x14,0x76,0xe6,0xc3,0x38,0xb6,0x7,0xdd,0xf3,0xc3,0xa,0x8e,0x27,0x40,0xb3,0x7f,0x63,0xb1,0x63,0x82,0x32,0x2b,0xdf,0xc1,0x67,0x9d,0xf8,0x4a,0xf4,0x2e,0xdf,0x84,0xde,0x17,0xe4,0x55,0x68,0xe1,0xa0,0x54,0xa1,0xf,0xfd,0x69,0x61,0x9b,0x70,0x1c,0xc9,0x8a,0x46,0xf,0xf8,0x2a,0x5a,0xc2,0xb2,0x8c,0x95,0x6a,0x4d,0x54,0x19,0x2b,0xc8,0x43,0xd3,0x32,0x8e,0x9a,0x76,0xa7,0xe2,0xca,0xc4,0x45,0xc6,0x3c,0x88,0xd8,0x5d,0xad,0x90,0x31,0x79,0x3e,0x38,0x24,0xa,0x49,0x1b,0xfd,0x74,0x7c,0x3b,0xbb,0xa1,0x49,0x9b,0x31,0x65,0xea,0x26,0xc,0x9a,0x86,0xf6,0x46,0xbe,0xb2,0x36,0x48,0xda,0xc6,0x6e,0x8d,0x28,0x59,0x73,0xdd,0xa0,0x99,0x4,0x5d,0xef,0xf0,0x8b,0x26,0x4,0x6b,0x7a,0x50,0xed,0xf0,0xfe,0xb8,0x6d,0x42,0x79,0x30,0x25,0x9d,0xc6,0x27,0x2b,0x92,0xd9,0x71,0x10,0x4e,0x21,0x93,0x10,0x42,0x3,0x77,0x74,0xda,0xbe,0xfe,0x83,0x91,0x2a,0x40,0x2,0x39,0xc0,0x3b,0x65,0x90,0x1,0x3a,0xdd,0x2d,0xf,0xc1,0x3b,0xca,0x5e,0xa6,0xa1,0x67,0x19,0xcb,0xd3,0xa6,0xda,0x99,0xf4,0xb5,0x1f,0xd0,0x3e,0x74,0x87,0xdd,0xbf,0x67,0x9e,0x15,0xa9,0x20,0xbb,0x12,0x2e,0x91,0x40,0x70,0x4f,0xaa,0xdc,0xf7,0xc5,0xab,0xe7,0x24,0xde,0x68,0xee,0x56,0x71,0xe6,0xfd,0x5e,0x68,0x6e,0x70,0x5c,0xa4,0x51,0x1b,0xbb,0xe8,0xd0,0xf5,0xc2,0x4d,0xe3,0xef,0x50,0x89,0x4e,0x4d,0x9b,0xd9,0x1a,0x9c,0x8f,0x13,0x28,0x5e,0x59,0xd4,0x3d,0x37,0xbd,0xb6,0xf5,0xd6,0xa9,0x95,0xc,0xe4,0xad,0x78,0x47,0xce,0xcf,0xce,0xdf,0x93,0x59,0x7f,0x22,0x1c,0x43,0x42,0x1a,0x1c,0x7b,0x2b,0x5,0xfe,0x79,0x90,0xa7,0x49,0xed,0x32,0x89,0x79,0x3d,0x4f,0xe0,0x60,0xfb,0x20,0xf,0x56,0xec,0x49,0x43,0x42,0xd3,0xc,0xc1,0x26,0xee,0xfe,0x15,0xf0,0xfb,0x17,0xc,0x38,0x3e,0x56,0xc2,0x6,0x0,0x0 }; +const uint8_t terminal_html[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0x8d,0x55,0x6d,0x6b,0xdb,0x30,0x10,0xfe,0xec,0xfc,0xa,0x55,0xfb,0xb2,0x41,0x1d,0x77,0x2d,0x8c,0xae,0x28,0x81,0xd1,0x17,0x18,0x6c,0x6c,0x90,0x8c,0xb1,0x4f,0x43,0x91,0x2f,0x91,0x56,0x59,0x32,0x92,0x9c,0x34,0xd0,0x1f,0xbf,0x93,0x65,0x27,0x4e,0x9b,0x6e,0xd,0x89,0xad,0x3b,0xdd,0x73,0xa7,0x7b,0xee,0x74,0x61,0x27,0x79,0x3e,0xca,0xe6,0x52,0x79,0xe2,0xed,0x32,0x6c,0xb8,0x3,0x82,0x6b,0xad,0x4,0x18,0xf,0x25,0x69,0x4c,0x9,0x8e,0x4,0x9,0xe4,0xeb,0xe7,0x39,0xf9,0x92,0xd4,0x63,0x32,0x3,0x68,0x95,0x9d,0x1d,0x59,0x2a,0x8d,0xf,0xeb,0x48,0x9,0x81,0x2b,0xed,0xc7,0xa3,0x6c,0x66,0x1b,0x27,0xe0,0x8a,0xc8,0x10,0x6a,0x7f,0x55,0x14,0x2b,0x15,0x64,0xb3,0x18,0xb,0x5b,0x15,0xbe,0xe6,0x2,0x64,0x23,0x4d,0x0,0x21,0x8b,0x9f,0xea,0x4e,0xdd,0x34,0xe2,0x7e,0x94,0xe7,0xd3,0x11,0x3b,0xb9,0xf9,0x76,0x3d,0xff,0xf5,0xfd,0x16,0x71,0x95,0x46,0x39,0xbd,0x8,0x7e,0x98,0x4,0x5e,0xa6,0x65,0x2b,0x56,0x18,0x8a,0x8,0xc9,0x9d,0x87,0x30,0xa1,0x3f,0xe6,0x77,0xf9,0x25,0x7d,0xba,0x6d,0x78,0x5,0x13,0xba,0x56,0xb0,0xa9,0xad,0xb,0x94,0x8,0x8b,0x31,0xd,0x9a,0x6f,0x54,0x19,0xe4,0xa4,0x84,0x35,0x26,0x90,0xb7,0xc2,0x29,0x51,0x46,0x5,0xc5,0x75,0xee,0x5,0xd7,0x30,0x39,0x1b,0x5f,0x9e,0x92,0xa,0x75,0x15,0xaa,0x1a,0xf5,0x82,0x6b,0x24,0xa1,0x82,0x5c,0x58,0x6d,0xdd,0xc0,0xfb,0x9b,0x8b,0xf,0x17,0x1f,0x2f,0x6e,0x11,0x73,0x14,0x54,0x82,0x17,0x4e,0xd5,0x41,0x59,0x33,0x0,0x45,0x1e,0x48,0x24,0x62,0x18,0x2a,0xa8,0xa0,0x61,0xba,0xdb,0x22,0x8f,0x64,0xe,0xe,0x4f,0xc5,0x35,0x2b,0xd2,0xde,0x20,0x84,0x56,0xe6,0x9e,0x38,0xd0,0x13,0xea,0xc3,0x56,0x83,0x97,0x0,0x98,0x73,0xd8,0xd6,0xf1,0xa0,0xf0,0x10,0xa,0xe1,0x3d,0x25,0xd2,0xc1,0xb2,0xb3,0x18,0x47,0xc5,0x20,0x5a,0x3a,0x16,0xf1,0x4e,0xa0,0x41,0xbb,0x1e,0xff,0x41,0x3,0x56,0x24,0xe1,0x5,0xcb,0xd0,0x9d,0xe8,0x88,0x2d,0x2b,0xfa,0xa2,0x65,0x6c,0x61,0xcb,0xed,0xc0,0x83,0xe1,0xeb,0xbd,0xd4,0x6a,0x1a,0x4d,0x84,0xe6,0xde,0x4f,0x68,0x5,0xa6,0xa1,0x87,0xbb,0x5d,0x82,0x53,0xc6,0xbb,0x4,0x14,0x76,0xe6,0xc3,0x38,0xb6,0x7,0xdd,0xf3,0xc3,0xa,0x8e,0x27,0x40,0xb3,0x7f,0x63,0xb1,0x63,0x82,0x32,0x2b,0xdf,0xc1,0x67,0x9d,0xf8,0x4a,0xf4,0x2e,0xdf,0x84,0xde,0x17,0xe4,0x55,0x68,0xe1,0xa0,0x54,0xa1,0xf,0xfd,0x69,0x61,0x9b,0x70,0x1c,0xc9,0x8a,0x46,0xf,0xf8,0x2a,0x5a,0xc2,0xb2,0x8c,0x95,0x6a,0x4d,0x54,0x19,0x2b,0xc8,0x43,0xd3,0x32,0x8e,0x9a,0x76,0xa7,0xe2,0xca,0xc4,0x45,0xc6,0x3c,0x88,0xd8,0x5d,0xad,0x90,0x31,0x79,0x3e,0x38,0x24,0xa,0x49,0x1b,0xfd,0x74,0x7c,0x3b,0xbb,0xa1,0x49,0x9b,0x31,0x65,0xea,0x26,0xc,0x9a,0x86,0xf6,0x46,0xbe,0xb2,0x36,0x48,0xda,0xc6,0x6e,0x8d,0x28,0x59,0x73,0xdd,0xa0,0x99,0x4,0x5d,0xef,0xf0,0x8b,0x26,0x4,0x6b,0x7a,0x50,0xed,0xf0,0xfe,0xb8,0x6d,0x42,0x79,0x30,0x25,0x9d,0xc6,0x27,0x2b,0x92,0xd9,0x71,0x10,0x4e,0x21,0x93,0x10,0x42,0x3,0x77,0x74,0xda,0xbe,0xfe,0x83,0x91,0x2a,0x40,0x2,0x39,0xc0,0x3b,0x65,0x90,0x1,0x3a,0xdd,0x2d,0xf,0xc1,0x3b,0xca,0x5e,0xa6,0xa1,0x67,0x19,0xcb,0xd3,0xa6,0xda,0x99,0xf4,0xb5,0x1f,0xd0,0x3e,0x74,0x87,0xdd,0xbf,0x67,0x9e,0x15,0xa9,0x20,0xbb,0x12,0x2e,0x91,0x40,0x70,0x4f,0xaa,0xdc,0xf7,0xc5,0xab,0xe7,0x24,0xde,0x68,0xee,0x56,0x71,0xe6,0xfd,0x5e,0x68,0x6e,0x70,0x5c,0xa4,0x51,0x1b,0xbb,0xe8,0xd0,0xf5,0xc2,0x4d,0xe3,0xef,0x50,0x89,0x4e,0x4d,0x9b,0xd9,0x1a,0x9c,0x8f,0x13,0x28,0x5e,0x59,0xd4,0x3d,0x37,0xbd,0xb6,0xf5,0xd6,0xa9,0x95,0xc,0xe4,0xad,0x78,0x47,0xce,0xcf,0xce,0xdf,0x93,0x59,0x7f,0x22,0x1c,0x43,0x42,0x1a,0x1c,0x7b,0x2b,0x5,0xfe,0x79,0x90,0xa7,0x49,0xed,0x32,0x89,0x79,0x3d,0x4f,0xe0,0x60,0xfb,0x20,0xf,0x56,0xec,0x49,0x43,0x42,0xd3,0xc,0xc1,0x26,0xee,0xfe,0x15,0xf0,0xfb,0x17,0xc,0x38,0x3e,0x56,0xc2,0x6,0x0,0x0 }; -const uint8_t terminal_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x1e,0xf5,0x6f,0x61,0x2,0xff,0x7d,0x51,0xc1,0x6a,0x2,0x31,0x14,0xbc,0xef,0x57,0x3c,0xd2,0xcb,0x5a,0xcb,0xe6,0xae,0xb5,0x50,0x68,0x8b,0x5,0x3d,0x29,0x78,0x29,0x94,0x98,0x3c,0x77,0x83,0x31,0x59,0x92,0x17,0x3d,0x14,0xff,0xbd,0xcf,0x75,0x8b,0x6d,0xb1,0xcd,0x21,0x24,0x93,0x99,0x61,0xe6,0x45,0xde,0x16,0x0,0xb0,0x6c,0x6c,0x82,0x14,0x36,0x74,0x50,0x11,0x81,0xcf,0xce,0x6a,0xf4,0x9,0xd,0x64,0x6f,0x30,0x2,0x35,0x8,0xf3,0xd7,0x25,0xcc,0xce,0x70,0x5,0xb,0xc4,0xe,0xec,0x79,0xb0,0xb1,0x8e,0xb7,0x10,0xc1,0x20,0x29,0xeb,0x52,0x75,0x72,0x5d,0x84,0x1c,0x35,0x8e,0xa0,0x21,0x6a,0xd3,0x48,0xca,0xda,0x52,0x93,0xd7,0x95,0xe,0x3b,0x99,0x5a,0xa5,0xb1,0xc9,0x8d,0x27,0xd4,0x8d,0x5c,0xd9,0x17,0xfb,0x94,0xf5,0xb6,0x80,0x5b,0x59,0x48,0x9,0x93,0xd3,0x82,0x15,0xae,0x17,0x41,0x6f,0x91,0xe0,0x51,0x93,0xd,0x3e,0xf5,0xb8,0x94,0xc5,0x26,0xfb,0xe,0x82,0x43,0x7a,0xd7,0xc1,0x7b,0xd4,0x84,0xa6,0x1c,0xc0,0xc7,0xb1,0xb8,0xe8,0x17,0xa4,0x22,0xe5,0xf6,0xa2,0x3a,0x58,0x6f,0xc2,0xa1,0x52,0xc6,0x3c,0xef,0xd1,0xd3,0xcc,0x26,0x42,0x8f,0xb1,0x14,0x2e,0x28,0x23,0xee,0xe0,0xcb,0xf5,0x64,0xc4,0xf9,0x9f,0x4b,0x91,0xd0,0x1b,0x31,0xa8,0x82,0xd7,0x5c,0x74,0xb,0x93,0xdf,0x14,0x80,0xbd,0x8a,0x60,0x7d,0x9b,0x89,0x1f,0x59,0xd0,0x1d,0x59,0xb1,0x57,0x2e,0xe3,0xb8,0xe8,0x28,0xc,0x87,0x4c,0x67,0xdc,0x72,0xd6,0x38,0x5d,0xce,0x67,0x30,0x9c,0x80,0xb8,0x1,0x1,0xc3,0x5e,0x3e,0x4,0x71,0xbf,0x8e,0xf,0xe2,0x22,0x8a,0xd8,0x57,0xfb,0x91,0x80,0x1b,0x5b,0x6f,0xa9,0xa7,0xf1,0xed,0x94,0xb1,0xec,0x3c,0xbe,0x35,0xd8,0xa5,0xfa,0x2b,0x21,0x80,0xb,0x75,0x7,0x8c,0xfb,0xfb,0x9f,0x81,0x98,0x54,0x45,0x6c,0x1d,0xff,0x4d,0x29,0xdf,0xbc,0xac,0xef,0xfa,0x50,0x57,0xa5,0x49,0xc7,0xe0,0xdc,0x32,0xb4,0xe7,0xea,0xbf,0xf0,0x29,0xda,0xba,0xa1,0xb3,0xee,0xd8,0xe9,0x8f,0x5d,0x66,0x66,0x6a,0x87,0x2a,0xfe,0x3f,0xd6,0xeb,0x11,0x79,0x64,0xe2,0xe2,0xd4,0x4f,0xa2,0x64,0xf3,0x23,0x57,0x57,0x2e,0xe1,0x60,0xfc,0x9,0x18,0xf4,0xe2,0x64,0xd0,0x2,0x0,0x0 }; +const uint8_t terminal_js[] PROGMEM = { 0x1f,0x8b,0x8,0x0,0x8d,0xe,0xc6,0x61,0x2,0xff,0x7d,0x51,0xc1,0x6a,0x2,0x31,0x14,0xbc,0xef,0x57,0x3c,0xd2,0xcb,0x5a,0xcb,0xe6,0xae,0xb5,0x50,0x68,0x8b,0x5,0x3d,0x29,0x78,0x29,0x94,0x98,0x3c,0x77,0x83,0x31,0x59,0x92,0x17,0x3d,0x14,0xff,0xbd,0xcf,0x75,0x8b,0x6d,0xb1,0xcd,0x21,0x24,0x93,0x99,0x61,0xe6,0x45,0xde,0x16,0x0,0xb0,0x6c,0x6c,0x82,0x14,0x36,0x74,0x50,0x11,0x81,0xcf,0xce,0x6a,0xf4,0x9,0xd,0x64,0x6f,0x30,0x2,0x35,0x8,0xf3,0xd7,0x25,0xcc,0xce,0x70,0x5,0xb,0xc4,0xe,0xec,0x79,0xb0,0xb1,0x8e,0xb7,0x10,0xc1,0x20,0x29,0xeb,0x52,0x75,0x72,0x5d,0x84,0x1c,0x35,0x8e,0xa0,0x21,0x6a,0xd3,0x48,0xca,0xda,0x52,0x93,0xd7,0x95,0xe,0x3b,0x99,0x5a,0xa5,0xb1,0xc9,0x8d,0x27,0xd4,0x8d,0x5c,0xd9,0x17,0xfb,0x94,0xf5,0xb6,0x80,0x5b,0x59,0x48,0x9,0x93,0xd3,0x82,0x15,0xae,0x17,0x41,0x6f,0x91,0xe0,0x51,0x93,0xd,0x3e,0xf5,0xb8,0x94,0xc5,0x26,0xfb,0xe,0x82,0x43,0x7a,0xd7,0xc1,0x7b,0xd4,0x84,0xa6,0x1c,0xc0,0xc7,0xb1,0xb8,0xe8,0x17,0xa4,0x22,0xe5,0xf6,0xa2,0x3a,0x58,0x6f,0xc2,0xa1,0x52,0xc6,0x3c,0xef,0xd1,0xd3,0xcc,0x26,0x42,0x8f,0xb1,0x14,0x2e,0x28,0x23,0xee,0xe0,0xcb,0xf5,0x64,0xc4,0xf9,0x9f,0x4b,0x91,0xd0,0x1b,0x31,0xa8,0x82,0xd7,0x5c,0x74,0xb,0x93,0xdf,0x14,0x80,0xbd,0x8a,0x60,0x7d,0x9b,0x89,0x1f,0x59,0xd0,0x1d,0x59,0xb1,0x57,0x2e,0xe3,0xb8,0xe8,0x28,0xc,0x87,0x4c,0x67,0xdc,0x72,0xd6,0x38,0x5d,0xce,0x67,0x30,0x9c,0x80,0xb8,0x1,0x1,0xc3,0x5e,0x3e,0x4,0x71,0xbf,0x8e,0xf,0xe2,0x22,0x8a,0xd8,0x57,0xfb,0x91,0x80,0x1b,0x5b,0x6f,0xa9,0xa7,0xf1,0xed,0x94,0xb1,0xec,0x3c,0xbe,0x35,0xd8,0xa5,0xfa,0x2b,0x21,0x80,0xb,0x75,0x7,0x8c,0xfb,0xfb,0x9f,0x81,0x98,0x54,0x45,0x6c,0x1d,0xff,0x4d,0x29,0xdf,0xbc,0xac,0xef,0xfa,0x50,0x57,0xa5,0x49,0xc7,0xe0,0xdc,0x32,0xb4,0xe7,0xea,0xbf,0xf0,0x29,0xda,0xba,0xa1,0xb3,0xee,0xd8,0xe9,0x8f,0x5d,0x66,0x66,0x6a,0x87,0x2a,0xfe,0x3f,0xd6,0xeb,0x11,0x79,0x64,0xe2,0xe2,0xd4,0x4f,0xa2,0x64,0xf3,0x23,0x57,0x57,0x2e,0xe1,0x60,0xfc,0x9,0x18,0xf4,0xe2,0x64,0xd0,0x2,0x0,0x0 }; diff --git a/web/index.html b/web/index.html index d526c18..5ec5792 100644 --- a/web/index.html +++ b/web/index.html @@ -139,7 +139,7 @@
LOCALE
LOCALE DE
DE
, GB
, US
, ES
, FR
, DK
, RU
, BE
, PT
, IT
, SK
, CZ
+ DE
, GB
, US
, ES
, FR
, DK
, RU
, BE
, PT
, IT
, SK
, CZ
, SI