diff --git a/esp8266_deauther/Attack.cpp b/esp8266_deauther/Attack.cpp index b1dcc7c..91cb960 100644 --- a/esp8266_deauther/Attack.cpp +++ b/esp8266_deauther/Attack.cpp @@ -11,7 +11,7 @@ void Attack::generate(){ uint8_t _randomMacBuffer[6]; beaconAdrs._clear(); - for(int i=0;i extern "C" { diff --git a/esp8266_deauther/Settings.cpp b/esp8266_deauther/Settings.cpp index 7820e5e..f44b363 100644 --- a/esp8266_deauther/Settings.cpp +++ b/esp8266_deauther/Settings.cpp @@ -17,7 +17,7 @@ void Settings::load(){ ssidHidden = (bool)EEPROM.read(ssidHiddenAdr); - if((int)EEPROM.read(apChannelAdr) >= 1 && (int)EEPROM.read(apChannelAdr) <= 11){ + if((int)EEPROM.read(apChannelAdr) >= 1 && (int)EEPROM.read(apChannelAdr) <= 14){ apChannel = (int)EEPROM.read(apChannelAdr); } else { apChannel = 1; diff --git a/esp8266_deauther/data.h b/esp8266_deauther/data.h index b2f4c72..298da51 100644 --- a/esp8266_deauther/data.h +++ b/esp8266_deauther/data.h @@ -5,7 +5,7 @@ static uint8_t data_macBuffer; static char data_vendorBuffer; static String data_vendorStrBuffer = ""; -static char data_websiteBuffer[6500]; +static char data_websiteBuffer[5000]; /* I used the program memory (https://www.arduino.cc/en/Reference/PROGMEM) so I don't need an external SD card reader to hold the HTML files and the very ling vendor list. @@ -16,15 +16,20 @@ For files larger then 6000 bytes change the size of data_websiteBuffer. The vendor list contains 11 bytes per row. The first 3 bytes are the beginning mac adress and the other 8 are the vendorname. */ +const static uint8_t data_indexHTML[] PROGMEM = {0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x53,0x63,0x61,0x6e,0x20,0x66,0x6f,0x72,0x20,0x57,0x69,0x46,0x69,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x6f,0x69,0x6e,0x74,0x73,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x63,0x61,0x6e,0x28,0x29,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x3e,0x73,0x63,0x61,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x22,0x3e,0x73,0x63,0x61,0x6e,0x6e,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x46,0x6f,0x75,0x6e,0x64,0x22,0x3e,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x30,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x20,0x4d,0x41,0x43,0x3a,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x4d,0x41,0x43,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x70,0x61,0x5f,0x69,0x6e,0x66,0x6f,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x57,0x50,0x41,0x2a,0x20,0x3d,0x20,0x57,0x50,0x41,0x2f,0x57,0x50,0x41,0x32,0x20,0x61,0x75,0x74,0x6f,0x20,0x6d,0x6f,0x64,0x65,0x20,0x3c,0x62,0x72,0x3e,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,0x73,0x20,0x73,0x63,0x61,0x6e,0x3a,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x43,0x6f,0x6e,0x53,0x63,0x61,0x6e,0x28,0x29,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x22,0x3e,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x69,0x6e,0x64,0x65,0x78,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0x20}; +const static uint8_t data_clientsHTML[] PROGMEM = {0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x53,0x63,0x61,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x3e,0x53,0x63,0x61,0x6e,0x20,0x74,0x69,0x6d,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x31,0x30,0x22,0x3e,0x73,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x63,0x61,0x6e,0x28,0x29,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x61,0x6e,0x22,0x3e,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x22,0x3e,0x72,0x65,0x61,0x64,0x79,0x21,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x3e,0x41,0x50,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x66,0x66,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x73,0x63,0x61,0x6e,0x6e,0x69,0x6e,0x67,0x21,0x3c,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x30,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e}; +const static uint8_t data_attackHTML[] PROGMEM = {0x3c,0x21,0x44,0x4f,0x43,0x54,0x59,0x50,0x45,0x20,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x41,0x50,0x3a,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x22,0x3e,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3a,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x3e,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x5b,0x64,0x65,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x5d,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x53,0x65,0x6e,0x64,0x73,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x64,0x69,0x73,0x73,0x6f,0x63,0x69,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x28,0x73,0x29,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x57,0x69,0x46,0x69,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x6f,0x69,0x6e,0x74,0x28,0x73,0x29,0x2e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x4e,0x6f,0x74,0x65,0x3a,0x20,0x3c,0x2f,0x62,0x3e,0x20,0x49,0x66,0x20,0x6e,0x6f,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x73,0x20,0x61,0x72,0x65,0x20,0x73,0x65,0x6e,0x74,0x20,0x61,0x73,0x20,0x62,0x72,0x6f,0x61,0x64,0x63,0x61,0x73,0x74,0x21,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x5b,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x66,0x6c,0x6f,0x6f,0x64,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x5d,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x28,0x63,0x6c,0x6f,0x6e,0x65,0x3a,0x29,0x20,0x53,0x70,0x61,0x6d,0x73,0x20,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x69,0x6d,0x69,0x6c,0x61,0x72,0x20,0x53,0x53,0x49,0x44,0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x57,0x69,0x46,0x69,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x6f,0x69,0x6e,0x74,0x28,0x73,0x29,0x2e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x28,0x6c,0x69,0x73,0x74,0x3a,0x29,0x20,0x53,0x70,0x61,0x6d,0x73,0x20,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6c,0x6c,0x20,0x53,0x53,0x49,0x44,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x70,0x72,0x6f,0x62,0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x5b,0x70,0x72,0x6f,0x62,0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x66,0x6c,0x6f,0x6f,0x64,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x5d,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x53,0x70,0x61,0x6d,0x73,0x20,0x70,0x72,0x6f,0x62,0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6c,0x6c,0x20,0x53,0x53,0x49,0x44,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x55,0x73,0x65,0x66,0x75,0x6c,0x6c,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x75,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x70,0x61,0x6d,0x20,0x57,0x69,0x46,0x69,0x20,0x74,0x72,0x61,0x63,0x6b,0x65,0x72,0x73,0x2e,0x20,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x53,0x53,0x49,0x44,0x73,0x3a,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x22,0x3e,0x30,0x2f,0x36,0x34,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x63,0x6c,0x65,0x61,0x72,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x63,0x6c,0x6f,0x6e,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x61,0x64,0x64,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x72,0x65,0x73,0x65,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x73,0x61,0x76,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e}; +const static uint8_t data_settingsHTML[] PROGMEM = {0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x2f,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x57,0x69,0x46,0x69,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x73,0x69,0x64,0x22,0x3e,0x53,0x53,0x49,0x44,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x22,0x20,0x6d,0x69,0x6e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x33,0x32,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x68,0x69,0x64,0x64,0x65,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22,0x3e,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22,0x20,0x6d,0x69,0x6e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x38,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x33,0x32,0x22,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x6d,0x75,0x73,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x38,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x21,0x20,0x28,0x6e,0x65,0x65,0x64,0x73,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x29,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x22,0x3e,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x31,0x34,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x41,0x50,0x20,0x73,0x63,0x61,0x6e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x73,0x63,0x61,0x6e,0x20,0x66,0x6f,0x72,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x20,0x41,0x50,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x53,0x63,0x61,0x6e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x3e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x73,0x63,0x61,0x6e,0x20,0x74,0x69,0x6d,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x32,0x35,0x35,0x22,0x3e,0x73,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x3e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x2d,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x36,0x35,0x35,0x33,0x36,0x22,0x3e,0x73,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x30,0x20,0x3d,0x20,0x6e,0x6f,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x22,0x3e,0x57,0x50,0x41,0x32,0x20,0x62,0x65,0x61,0x63,0x6f,0x6e,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x75,0x73,0x65,0x4c,0x65,0x64,0x22,0x3e,0x75,0x73,0x65,0x20,0x4c,0x45,0x44,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x75,0x73,0x65,0x4c,0x65,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x75,0x73,0x65,0x4c,0x65,0x64,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x22,0x3e,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x34,0x35,0x22,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x63,0x6f,0x64,0x65,0x73,0x3a,0x20,0x3c,0x61,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x61,0x62,0x6f,0x75,0x74,0x63,0x68,0x65,0x72,0x2e,0x63,0x6f,0x2e,0x75,0x6b,0x2f,0x32,0x30,0x31,0x32,0x2f,0x30,0x37,0x2f,0x6c,0x69,0x6e,0x75,0x78,0x2d,0x77,0x69,0x66,0x69,0x2d,0x64,0x65,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x2d,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2d,0x63,0x6f,0x64,0x65,0x73,0x2f,0x22,0x3e,0x63,0x6c,0x69,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x22,0x3e,0x70,0x61,0x63,0x6b,0x65,0x74,0x72,0x61,0x74,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x31,0x30,0x30,0x22,0x3e,0x70,0x6b,0x74,0x73,0x2f,0x73,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x20,0x2d,0x20,0x6d,0x61,0x79,0x20,0x63,0x61,0x75,0x73,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x21,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x22,0x3e,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x20,0x68,0x6f,0x70,0x70,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x20,0x2d,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x72,0x61,0x74,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x69,0x67,0x6e,0x6f,0x72,0x65,0x64,0x21,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x22,0x3e,0x72,0x65,0x73,0x65,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x61,0x76,0x65,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x22,0x3e,0x73,0x61,0x76,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3e,0x3c,0x2f,0x70,0x3e,0x3c,0x62,0x72,0x20,0x5c,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x4e,0x61,0x6d,0x65,0x73,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x22,0x3e,0x20,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x4d,0x41,0x43,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x56,0x65,0x6e,0x64,0x6f,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x58,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x28,0x29,0x22,0x3e,0x63,0x6c,0x65,0x61,0x72,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x6a,0x73,0x2f,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e}; const static char data_error404[] PROGMEM = "

ERROR 404

¯\\_(ツ)_/¯

"; -const static uint8_t data_styleCSS[] PROGMEM = {0x2f,0x2a,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x2a,0x2f,0x20,0x2a,0x2c,0x20,0x62,0x6f,0x64,0x79,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x61,0x72,0x69,0x61,0x6c,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x34,0x33,0x32,0x39,0x32,0x39,0x3b,0x20,0x7d,0x20,0x68,0x31,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x32,0x32,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x30,0x2e,0x36,0x65,0x6d,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x32,0x65,0x6d,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x34,0x70,0x78,0x3b,0x20,0x7d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x38,0x46,0x38,0x46,0x38,0x46,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x33,0x34,0x65,0x6d,0x20,0x30,0x2e,0x33,0x65,0x6d,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x30,0x2e,0x36,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x6c,0x61,0x62,0x65,0x6c,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x33,0x35,0x70,0x78,0x3b,0x20,0x7d,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x7b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x32,0x32,0x70,0x78,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x32,0x30,0x70,0x78,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x41,0x39,0x39,0x44,0x39,0x44,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x35,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x32,0x65,0x6d,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x32,0x70,0x78,0x3b,0x20,0x7d,0x20,0x69,0x6e,0x70,0x75,0x74,0x5b,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x5d,0x20,0x7b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x61,0x75,0x74,0x6f,0x3b,0x20,0x7d,0x20,0x2e,0x77,0x61,0x72,0x6e,0x20,0x7b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x63,0x32,0x30,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x2e,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x63,0x32,0x30,0x30,0x30,0x30,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x7d,0x20,0x2e,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x30,0x30,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x7d,0x20,0x2e,0x72,0x69,0x67,0x68,0x74,0x20,0x7b,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x72,0x69,0x67,0x68,0x74,0x3b,0x20,0x7d,0x20,0x2e,0x62,0x6f,0x6c,0x64,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x20,0x7d,0x20,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x7d,0x20,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x7d,0x20,0x2e,0x62,0x6c,0x75,0x65,0x20,0x7b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x20,0x7d,0x20,0x2e,0x73,0x6d,0x61,0x6c,0x6c,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x37,0x32,0x37,0x32,0x37,0x32,0x20,0x7d,0x20,0x2f,0x2a,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x2a,0x2f,0x20,0x6e,0x61,0x76,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x3b,0x20,0x7d,0x20,0x6e,0x61,0x76,0x20,0x61,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x39,0x39,0x39,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x35,0x65,0x6d,0x3b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x20,0x7d,0x20,0x6e,0x61,0x76,0x20,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x20,0x7d,0x20,0x2f,0x2a,0x20,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x2a,0x2f,0x20,0x23,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x7b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x33,0x34,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x7b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x20,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x39,0x36,0x30,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x32,0x32,0x32,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x32,0x32,0x32,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x64,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x2c,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x64,0x20,0x7b,0x20,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x31,0x65,0x6d,0x20,0x30,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x64,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x31,0x31,0x61,0x34,0x63,0x63,0x3b,0x20,0x7d,0x20,0x2f,0x2a,0x20,0x53,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x20,0x2a,0x2f,0x20,0x23,0x73,0x61,0x76,0x65,0x64,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x3b,0x20,0x7d,0x20,0x23,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x23,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x72,0x74,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x33,0x30,0x70,0x78,0x3b,0x20,0x7d,0x20,0x23,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x20,0x7b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x36,0x30,0x70,0x78,0x3b,0x20,0x7d,0x20,0x23,0x61,0x70,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x23,0x72,0x73,0x73,0x69,0x42,0x61,0x72,0x20,0x7b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x70,0x78,0x3b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x7d,0x20,0x23,0x72,0x73,0x73,0x69,0x42,0x61,0x72,0x20,0x3e,0x20,0x64,0x69,0x76,0x20,0x7b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x35,0x32,0x70,0x78,0x3b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x63,0x32,0x30,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x23,0x77,0x70,0x61,0x5f,0x69,0x6e,0x66,0x6f,0x20,0x7b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x30,0x2e,0x33,0x34,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x23,0x73,0x61,0x76,0x65,0x64,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x32,0x30,0x70,0x78,0x3b,0x20,0x7d}; -const static uint8_t data_functionsJS[] PROGMEM = {0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x61,0x64,0x72,0x2c,0x20,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x7d,0x2c,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x38,0x30,0x30,0x30,0x29,0x7b,0x20,0x76,0x61,0x72,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x58,0x4d,0x4c,0x48,0x74,0x74,0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x28,0x29,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x6f,0x6e,0x72,0x65,0x61,0x64,0x79,0x73,0x74,0x61,0x74,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x20,0x69,0x66,0x28,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x20,0x34,0x29,0x7b,0x20,0x69,0x66,0x28,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x20,0x32,0x30,0x30,0x29,0x20,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x6f,0x70,0x65,0x6e,0x28,0x22,0x47,0x45,0x54,0x22,0x2c,0x20,0x61,0x64,0x72,0x2c,0x20,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x73,0x65,0x6e,0x64,0x28,0x29,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x6f,0x6e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3b,0x20,0x7d}; -const static uint8_t data_manifest[] PROGMEM = {0x7b,0x20,0x22,0x73,0x69,0x74,0x65,0x73,0x22,0x3a,0x5b,0x20,0x22,0x65,0x72,0x72,0x6f,0x72,0x34,0x30,0x34,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x2c,0x20,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x2c,0x20,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x5d,0x2c,0x20,0x22,0x6a,0x73,0x6f,0x6e,0x22,0x3a,0x5b,0x20,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x49,0x6e,0x66,0x6f,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x20,0x5d,0x2c,0x20,0x22,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x22,0x3a,0x5b,0x20,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x41,0x50,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x53,0x74,0x61,0x72,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x53,0x61,0x76,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x52,0x65,0x73,0x65,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x65,0x64,0x69,0x74,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x20,0x5d,0x20,0x7d}; -const static uint8_t data_indexHTML[] PROGMEM = {0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x53,0x63,0x61,0x6e,0x20,0x66,0x6f,0x72,0x20,0x57,0x69,0x46,0x69,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x6f,0x69,0x6e,0x74,0x73,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x63,0x61,0x6e,0x28,0x29,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x72,0x74,0x22,0x3e,0x73,0x63,0x61,0x6e,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x22,0x3e,0x73,0x63,0x61,0x6e,0x6e,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x46,0x6f,0x75,0x6e,0x64,0x22,0x3e,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x30,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x20,0x4d,0x41,0x43,0x3a,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x4d,0x41,0x43,0x22,0x3e,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x77,0x70,0x61,0x5f,0x69,0x6e,0x66,0x6f,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x57,0x50,0x41,0x2a,0x20,0x3d,0x20,0x57,0x50,0x41,0x2f,0x57,0x50,0x41,0x32,0x20,0x61,0x75,0x74,0x6f,0x20,0x6d,0x6f,0x64,0x65,0x20,0x3c,0x62,0x72,0x3e,0x20,0x63,0x6f,0x6e,0x74,0x69,0x6e,0x75,0x6f,0x75,0x73,0x20,0x73,0x63,0x61,0x6e,0x3a,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x43,0x6f,0x6e,0x53,0x63,0x61,0x6e,0x28,0x29,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x22,0x3e,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x76,0x61,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x27,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x46,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x72,0x74,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x4d,0x41,0x43,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x4d,0x41,0x43,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x29,0x7b,0x20,0x69,0x66,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x20,0x26,0x26,0x20,0x21,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x29,0x7b,0x20,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x3b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x27,0x3b,0x20,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x20,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x27,0x3b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x28,0x61,0x2c,0x62,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x72,0x20,0x3e,0x20,0x62,0x2e,0x72,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x2d,0x31,0x3b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x72,0x20,0x3c,0x20,0x62,0x2e,0x72,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x75,0x6d,0x29,0x7b,0x20,0x69,0x66,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x38,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x50,0x41,0x2a,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x34,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x50,0x41,0x32,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x32,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x50,0x41,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x37,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x35,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x45,0x50,0x22,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x7b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x29,0x3b,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x66,0x6f,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x22,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x61,0x70,0x4d,0x41,0x43,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x27,0x27,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x43,0x68,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x53,0x49,0x44,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x52,0x53,0x53,0x49,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x2e,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x65,0x20,0x3d,0x3d,0x20,0x31,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x22,0x3e,0x27,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x63,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x73,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x2b,0x27,0x20,0x3c,0x6d,0x65,0x74,0x65,0x72,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x27,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x2b,0x27,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x2d,0x33,0x30,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x2d,0x31,0x30,0x30,0x22,0x20,0x6c,0x6f,0x77,0x3d,0x22,0x2d,0x38,0x30,0x22,0x20,0x68,0x69,0x67,0x68,0x3d,0x22,0x2d,0x36,0x30,0x22,0x20,0x6f,0x70,0x74,0x69,0x6d,0x75,0x6d,0x3d,0x22,0x2d,0x35,0x30,0x22,0x3e,0x3c,0x2f,0x6d,0x65,0x74,0x65,0x72,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x67,0x65,0x74,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x65,0x29,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x65,0x29,0x7b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x2b,0x27,0x29,0x22,0x3e,0x64,0x65,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x61,0x70,0x4d,0x41,0x43,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x6d,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x2b,0x27,0x29,0x22,0x3e,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x63,0x61,0x6e,0x28,0x29,0x7b,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x43,0x6f,0x6e,0x53,0x63,0x61,0x6e,0x28,0x29,0x7b,0x20,0x69,0x66,0x28,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x29,0x7b,0x20,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x74,0x61,0x72,0x74,0x22,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x20,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x74,0x6f,0x70,0x22,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x6e,0x75,0x6d,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x41,0x50,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x2b,0x6e,0x75,0x6d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x73,0x65,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x20,0x69,0x66,0x28,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x26,0x26,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x29,0x20,0x73,0x63,0x61,0x6e,0x28,0x29,0x3b,0x20,0x7d,0x2c,0x31,0x30,0x30,0x30,0x29,0x3b,0x20,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e,0x20}; -const static uint8_t data_clientsHTML[] PROGMEM = {0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x53,0x63,0x61,0x6e,0x20,0x66,0x6f,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x3e,0x53,0x63,0x61,0x6e,0x20,0x74,0x69,0x6d,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x31,0x30,0x22,0x3e,0x73,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x63,0x61,0x6e,0x28,0x29,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x61,0x6e,0x22,0x3e,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x61,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x22,0x3e,0x72,0x65,0x61,0x64,0x79,0x21,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x74,0x61,0x74,0x75,0x73,0x22,0x3e,0x41,0x50,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x6f,0x66,0x66,0x20,0x77,0x68,0x69,0x6c,0x65,0x20,0x73,0x63,0x61,0x6e,0x6e,0x69,0x6e,0x67,0x21,0x3c,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x30,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x76,0x61,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x27,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x61,0x6e,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x28,0x61,0x2c,0x62,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x70,0x20,0x3e,0x20,0x62,0x2e,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x2d,0x31,0x3b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x70,0x20,0x3c,0x20,0x62,0x2e,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x29,0x7b,0x20,0x69,0x66,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x29,0x7b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x27,0x3b,0x20,0x7d,0x65,0x6c,0x73,0x65,0x7b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x72,0x65,0x6c,0x6f,0x61,0x64,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x3d,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x7b,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x29,0x3b,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x22,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x27,0x27,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x50,0x6b,0x74,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x56,0x65,0x6e,0x64,0x6f,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4d,0x41,0x43,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x41,0x50,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x20,0x3d,0x3d,0x20,0x31,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x22,0x3e,0x27,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x70,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x76,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x6e,0x2b,0x27,0x20,0x3c,0x61,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x75,0x65,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x2b,0x27,0x29,0x22,0x3e,0x65,0x64,0x69,0x74,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x6d,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x61,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x20,0x3d,0x3d,0x20,0x31,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x2b,0x27,0x29,0x22,0x3e,0x64,0x65,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x2b,0x27,0x29,0x22,0x3e,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x3d,0x3d,0x20,0x74,0x72,0x75,0x65,0x29,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x3b,0x20,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x3b,0x20,0x7d,0x2c,0x36,0x30,0x30,0x30,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x63,0x61,0x6e,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x74,0x69,0x6d,0x65,0x3d,0x22,0x2b,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x7b,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x63,0x61,0x6e,0x6e,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x22,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x72,0x65,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x7d,0x2c,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2a,0x31,0x30,0x30,0x30,0x29,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x6e,0x75,0x6d,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x2b,0x6e,0x75,0x6d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x20,0x3a,0x2f,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x69,0x64,0x29,0x7b,0x20,0x76,0x61,0x72,0x20,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x4e,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x22,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x64,0x5d,0x2e,0x6d,0x29,0x3b,0x20,0x69,0x66,0x28,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x65,0x74,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x69,0x64,0x3d,0x22,0x2b,0x69,0x64,0x2b,0x22,0x26,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x2b,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e}; -const static uint8_t data_attackHTML[] PROGMEM = {0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6e,0x61,0x76,0x20,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x41,0x50,0x3a,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x22,0x3e,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3a,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x69,0x64,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x3e,0x20,0x3c,0x2f,0x75,0x6c,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x5b,0x64,0x65,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x5d,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x53,0x65,0x6e,0x64,0x73,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x61,0x6e,0x64,0x20,0x64,0x69,0x73,0x73,0x6f,0x63,0x69,0x61,0x74,0x69,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x74,0x6f,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x28,0x73,0x29,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x57,0x69,0x46,0x69,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x6f,0x69,0x6e,0x74,0x28,0x73,0x29,0x2e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x4e,0x6f,0x74,0x65,0x3a,0x20,0x3c,0x2f,0x62,0x3e,0x20,0x49,0x66,0x20,0x6e,0x6f,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x20,0x69,0x73,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x2c,0x20,0x74,0x68,0x65,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x73,0x20,0x61,0x72,0x65,0x20,0x73,0x65,0x6e,0x74,0x20,0x61,0x73,0x20,0x62,0x72,0x6f,0x61,0x64,0x63,0x61,0x73,0x74,0x21,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x5b,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x66,0x6c,0x6f,0x6f,0x64,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x5d,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x28,0x63,0x6c,0x6f,0x6e,0x65,0x3a,0x29,0x20,0x53,0x70,0x61,0x6d,0x73,0x20,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x20,0x73,0x69,0x6d,0x69,0x6c,0x61,0x72,0x20,0x53,0x53,0x49,0x44,0x20,0x61,0x73,0x20,0x74,0x68,0x65,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x57,0x69,0x46,0x69,0x20,0x61,0x63,0x63,0x65,0x73,0x73,0x20,0x70,0x6f,0x69,0x6e,0x74,0x28,0x73,0x29,0x2e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x28,0x6c,0x69,0x73,0x74,0x3a,0x29,0x20,0x53,0x70,0x61,0x6d,0x73,0x20,0x62,0x65,0x61,0x63,0x6f,0x6e,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6c,0x6c,0x20,0x53,0x53,0x49,0x44,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x3e,0x70,0x72,0x6f,0x62,0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x5b,0x70,0x72,0x6f,0x62,0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x66,0x6c,0x6f,0x6f,0x64,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x5d,0x3a,0x3c,0x2f,0x62,0x3e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x53,0x70,0x61,0x6d,0x73,0x20,0x70,0x72,0x6f,0x62,0x65,0x20,0x72,0x65,0x71,0x75,0x65,0x73,0x74,0x20,0x66,0x72,0x61,0x6d,0x65,0x73,0x20,0x77,0x69,0x74,0x68,0x20,0x61,0x6c,0x6c,0x20,0x53,0x53,0x49,0x44,0x73,0x20,0x69,0x6e,0x20,0x74,0x68,0x65,0x20,0x6c,0x69,0x73,0x74,0x20,0x62,0x65,0x6c,0x6f,0x77,0x2e,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x55,0x73,0x65,0x66,0x75,0x6c,0x6c,0x20,0x74,0x6f,0x20,0x63,0x6f,0x6e,0x66,0x75,0x73,0x65,0x20,0x61,0x6e,0x64,0x20,0x73,0x70,0x61,0x6d,0x20,0x57,0x69,0x46,0x69,0x20,0x74,0x72,0x61,0x63,0x6b,0x65,0x72,0x73,0x2e,0x20,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x53,0x53,0x49,0x44,0x73,0x3a,0x20,0x3c,0x73,0x70,0x61,0x6e,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x22,0x3e,0x30,0x2f,0x36,0x34,0x3c,0x2f,0x73,0x70,0x61,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x63,0x6c,0x65,0x61,0x72,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x63,0x6c,0x6f,0x6e,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x61,0x64,0x64,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x72,0x65,0x73,0x65,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x22,0x3e,0x73,0x61,0x76,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3e,0x73,0x61,0x76,0x65,0x64,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x76,0x61,0x72,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x29,0x5b,0x30,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x4c,0x69,0x73,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x29,0x5b,0x31,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x49,0x6e,0x66,0x6f,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x73,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x72,0x74,0x2f,0x53,0x74,0x6f,0x70,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x20,0x61,0x70,0x73,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x6c,0x69,0x3e,0x22,0x2b,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2b,0x22,0x3c,0x2f,0x6c,0x69,0x3e,0x22,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x6c,0x69,0x3e,0x22,0x2b,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2b,0x22,0x3c,0x2f,0x6c,0x69,0x3e,0x22,0x3b,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x61,0x70,0x73,0x3b,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x27,0x3e,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x22,0x2b,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x6e,0x61,0x6d,0x65,0x2b,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x20,0x22,0x72,0x65,0x61,0x64,0x79,0x22,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x65,0x63,0x62,0x31,0x65,0x27,0x3e,0x22,0x2b,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x2b,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x30,0x30,0x27,0x3e,0x22,0x2b,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x2b,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x27,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x27,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x27,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x28,0x22,0x2b,0x69,0x2b,0x22,0x29,0x27,0x3e,0x73,0x74,0x6f,0x70,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x27,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x27,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x27,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x28,0x22,0x2b,0x69,0x2b,0x22,0x29,0x27,0x3e,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2b,0x22,0x2f,0x36,0x34,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x58,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x22,0x2b,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x5b,0x69,0x5d,0x2b,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x28,0x27,0x2b,0x69,0x2b,0x27,0x29,0x22,0x3e,0x78,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x7d,0x20,0x73,0x73,0x69,0x64,0x4c,0x69,0x73,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x7d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x28,0x6e,0x75,0x6d,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x53,0x74,0x61,0x72,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x2b,0x6e,0x75,0x6d,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x36,0x34,0x29,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x53,0x53,0x49,0x44,0x20,0x6c,0x69,0x73,0x74,0x20,0x66,0x75,0x6c,0x6c,0x20,0x3a,0x28,0x22,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x7b,0x20,0x76,0x61,0x72,0x20,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x6e,0x65,0x77,0x20,0x53,0x53,0x49,0x44,0x3a,0x22,0x29,0x3b,0x20,0x69,0x66,0x28,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x2b,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x36,0x34,0x29,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x53,0x53,0x49,0x44,0x20,0x6c,0x69,0x73,0x74,0x20,0x66,0x75,0x6c,0x6c,0x20,0x3a,0x28,0x22,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x7b,0x20,0x76,0x61,0x72,0x20,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x6e,0x65,0x77,0x20,0x53,0x53,0x49,0x44,0x3a,0x22,0x29,0x3b,0x20,0x69,0x66,0x28,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x2b,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x28,0x6e,0x75,0x6d,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x2b,0x6e,0x75,0x6d,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x73,0x65,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2c,0x33,0x30,0x30,0x30,0x29,0x3b,0x20,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e}; -const static uint8_t data_settingsHTML[] PROGMEM = {0x3c,0x68,0x74,0x6d,0x6c,0x3e,0x20,0x3c,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x63,0x68,0x61,0x72,0x73,0x65,0x74,0x3d,0x22,0x75,0x74,0x66,0x2d,0x38,0x22,0x3e,0x20,0x3c,0x6c,0x69,0x6e,0x6b,0x20,0x72,0x65,0x6c,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x73,0x68,0x65,0x65,0x74,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x20,0x73,0x72,0x63,0x3d,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x3e,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x6d,0x65,0x74,0x61,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x22,0x20,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x3d,0x22,0x77,0x69,0x64,0x74,0x68,0x3d,0x64,0x65,0x76,0x69,0x63,0x65,0x2d,0x77,0x69,0x64,0x74,0x68,0x2c,0x20,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x2d,0x73,0x63,0x61,0x6c,0x65,0x3d,0x30,0x2e,0x38,0x22,0x3e,0x20,0x3c,0x2f,0x68,0x65,0x61,0x64,0x3e,0x20,0x3c,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x50,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x72,0x69,0x67,0x68,0x74,0x22,0x3e,0x20,0x3c,0x61,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x23,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x22,0x3e,0x52,0x65,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x61,0x3e,0x20,0x3c,0x75,0x6c,0x3e,0x20,0x3c,0x2f,0x6e,0x61,0x76,0x3e,0x20,0x3c,0x64,0x69,0x76,0x20,0x69,0x64,0x3d,0x22,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x22,0x3e,0x20,0x3c,0x68,0x31,0x3e,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x3c,0x2f,0x68,0x31,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x57,0x69,0x46,0x69,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x73,0x69,0x64,0x22,0x3e,0x53,0x53,0x49,0x44,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x22,0x20,0x6d,0x69,0x6e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x33,0x32,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x68,0x69,0x64,0x64,0x65,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22,0x3e,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x74,0x65,0x78,0x74,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x22,0x20,0x6d,0x69,0x6e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x38,0x22,0x20,0x6d,0x61,0x78,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3d,0x22,0x33,0x32,0x22,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x6d,0x75,0x73,0x74,0x20,0x68,0x61,0x76,0x65,0x20,0x61,0x74,0x20,0x6c,0x65,0x61,0x73,0x74,0x20,0x38,0x20,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x73,0x21,0x20,0x28,0x6e,0x65,0x65,0x64,0x73,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x29,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x22,0x3e,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x31,0x31,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x41,0x50,0x20,0x73,0x63,0x61,0x6e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x3e,0x73,0x63,0x61,0x6e,0x20,0x66,0x6f,0x72,0x20,0x68,0x69,0x64,0x64,0x65,0x6e,0x20,0x41,0x50,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x69,0x64,0x3d,0x22,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x53,0x63,0x61,0x6e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x3e,0x64,0x65,0x66,0x61,0x75,0x6c,0x74,0x20,0x73,0x63,0x61,0x6e,0x20,0x74,0x69,0x6d,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x32,0x35,0x35,0x22,0x3e,0x73,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x3e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x2d,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x36,0x35,0x35,0x33,0x36,0x22,0x3e,0x73,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x30,0x20,0x3d,0x20,0x6e,0x6f,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x22,0x3e,0x57,0x50,0x41,0x32,0x20,0x62,0x65,0x61,0x63,0x6f,0x6e,0x73,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x75,0x73,0x65,0x4c,0x65,0x64,0x22,0x3e,0x75,0x73,0x65,0x20,0x4c,0x45,0x44,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x75,0x73,0x65,0x4c,0x65,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x75,0x73,0x65,0x4c,0x65,0x64,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x22,0x3e,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x72,0x65,0x61,0x73,0x6f,0x6e,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x34,0x35,0x22,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x72,0x65,0x61,0x73,0x6f,0x6e,0x20,0x63,0x6f,0x64,0x65,0x73,0x3a,0x20,0x3c,0x61,0x20,0x74,0x61,0x72,0x67,0x65,0x74,0x3d,0x22,0x5f,0x62,0x6c,0x61,0x6e,0x6b,0x22,0x20,0x68,0x72,0x65,0x66,0x3d,0x22,0x68,0x74,0x74,0x70,0x3a,0x2f,0x2f,0x77,0x77,0x77,0x2e,0x61,0x62,0x6f,0x75,0x74,0x63,0x68,0x65,0x72,0x2e,0x63,0x6f,0x2e,0x75,0x6b,0x2f,0x32,0x30,0x31,0x32,0x2f,0x30,0x37,0x2f,0x6c,0x69,0x6e,0x75,0x78,0x2d,0x77,0x69,0x66,0x69,0x2d,0x64,0x65,0x61,0x75,0x74,0x68,0x65,0x6e,0x74,0x69,0x63,0x61,0x74,0x65,0x64,0x2d,0x72,0x65,0x61,0x73,0x6f,0x6e,0x2d,0x63,0x6f,0x64,0x65,0x73,0x2f,0x22,0x3e,0x63,0x6c,0x69,0x63,0x6b,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x22,0x3e,0x70,0x61,0x63,0x6b,0x65,0x74,0x72,0x61,0x74,0x65,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x6e,0x75,0x6d,0x62,0x65,0x72,0x22,0x20,0x69,0x64,0x3d,0x22,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x31,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x31,0x30,0x30,0x22,0x3e,0x70,0x6b,0x74,0x73,0x2f,0x73,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x20,0x2d,0x20,0x6d,0x61,0x79,0x20,0x63,0x61,0x75,0x73,0x65,0x20,0x69,0x6e,0x73,0x74,0x61,0x62,0x69,0x6c,0x69,0x74,0x79,0x21,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x6c,0x61,0x62,0x65,0x6c,0x20,0x66,0x6f,0x72,0x3d,0x22,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x22,0x3e,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x20,0x68,0x6f,0x70,0x70,0x69,0x6e,0x67,0x3a,0x3c,0x2f,0x6c,0x61,0x62,0x65,0x6c,0x3e,0x20,0x3c,0x69,0x6e,0x70,0x75,0x74,0x20,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x20,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x22,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x66,0x61,0x6c,0x73,0x65,0x22,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x3e,0x6f,0x6e,0x6c,0x79,0x20,0x66,0x6f,0x72,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x20,0x61,0x74,0x74,0x61,0x63,0x6b,0x20,0x2d,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x72,0x61,0x74,0x65,0x20,0x77,0x69,0x6c,0x6c,0x20,0x62,0x65,0x20,0x69,0x67,0x6e,0x6f,0x72,0x65,0x64,0x21,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x22,0x3e,0x72,0x65,0x73,0x65,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x61,0x76,0x65,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x22,0x3e,0x73,0x61,0x76,0x65,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x6d,0x61,0x6c,0x6c,0x22,0x20,0x69,0x64,0x3d,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3e,0x3c,0x2f,0x70,0x3e,0x3c,0x62,0x72,0x20,0x5c,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x70,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x62,0x6f,0x6c,0x64,0x22,0x20,0x69,0x64,0x3d,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x22,0x3e,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x4e,0x61,0x6d,0x65,0x73,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x20,0x69,0x64,0x3d,0x22,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x22,0x3e,0x20,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x4d,0x41,0x43,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x56,0x65,0x6e,0x64,0x6f,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x58,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x62,0x72,0x20,0x2f,0x3e,0x20,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x28,0x29,0x22,0x3e,0x63,0x6c,0x65,0x61,0x72,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x70,0x3e,0x20,0x3c,0x2f,0x64,0x69,0x76,0x3e,0x20,0x3c,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x74,0x61,0x62,0x6c,0x65,0x3e,0x20,0x3c,0x2f,0x62,0x6f,0x64,0x79,0x3e,0x20,0x3c,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x76,0x61,0x72,0x20,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x54,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x73,0x69,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x61,0x76,0x65,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x75,0x73,0x65,0x4c,0x65,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x75,0x73,0x65,0x4c,0x65,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x73,0x73,0x69,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x3b,0x20,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x3b,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3b,0x20,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3b,0x20,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x3b,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x3b,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3b,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3b,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x50,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x3b,0x20,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x3b,0x20,0x75,0x73,0x65,0x4c,0x65,0x64,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x75,0x73,0x65,0x4c,0x65,0x64,0x3b,0x20,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x3b,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x4e,0x61,0x6d,0x65,0x73,0x20,0x22,0x2b,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x2b,0x22,0x2f,0x35,0x30,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x4d,0x41,0x43,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x56,0x65,0x6e,0x64,0x6f,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x58,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x66,0x6f,0x72,0x28,0x76,0x61,0x72,0x20,0x69,0x3d,0x30,0x3b,0x69,0x3c,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x69,0x2b,0x2b,0x29,0x7b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x5d,0x2e,0x6d,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x5d,0x2e,0x76,0x2b,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x2b,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x5d,0x2e,0x6e,0x2b,0x27,0x20,0x3c,0x61,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x75,0x65,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x27,0x2b,0x69,0x2b,0x27,0x29,0x22,0x3e,0x65,0x64,0x69,0x74,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x28,0x27,0x2b,0x69,0x2b,0x27,0x29,0x22,0x3e,0x78,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x7d,0x20,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x54,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x69,0x64,0x29,0x7b,0x20,0x76,0x61,0x72,0x20,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x4e,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x22,0x2b,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x64,0x5d,0x2e,0x6d,0x29,0x3b,0x20,0x69,0x66,0x28,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x65,0x64,0x69,0x74,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x69,0x64,0x3d,0x22,0x2b,0x69,0x64,0x2b,0x22,0x26,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x2b,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x28,0x69,0x64,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x2b,0x69,0x64,0x2c,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x53,0x61,0x76,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x3f,0x73,0x73,0x69,0x64,0x3d,0x22,0x2b,0x73,0x73,0x69,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,0x2b,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3d,0x22,0x2b,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3d,0x22,0x2b,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,0x2b,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x3d,0x22,0x2b,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x22,0x2b,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3d,0x22,0x2b,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x3d,0x22,0x2b,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x3d,0x22,0x2b,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x75,0x73,0x65,0x4c,0x65,0x64,0x3d,0x22,0x2b,0x75,0x73,0x65,0x4c,0x65,0x64,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x3d,0x22,0x2b,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x75,0x72,0x6c,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x7b,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x52,0x65,0x73,0x65,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x7b,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x3c,0x2f,0x73,0x63,0x72,0x69,0x70,0x74,0x3e,0x20,0x3c,0x2f,0x68,0x74,0x6d,0x6c,0x3e}; +const static uint8_t data_functionsJS[] PROGMEM = {0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x61,0x64,0x72,0x2c,0x20,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x2c,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x29,0x7b,0x20,0x69,0x66,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x3d,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x7b,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x20,0x7d,0x3b,0x20,0x7d,0x20,0x69,0x66,0x28,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x38,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x76,0x61,0x72,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x20,0x3d,0x20,0x6e,0x65,0x77,0x20,0x58,0x4d,0x4c,0x48,0x74,0x74,0x70,0x52,0x65,0x71,0x75,0x65,0x73,0x74,0x28,0x29,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x6f,0x6e,0x72,0x65,0x61,0x64,0x79,0x73,0x74,0x61,0x74,0x65,0x63,0x68,0x61,0x6e,0x67,0x65,0x20,0x3d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x20,0x69,0x66,0x28,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x72,0x65,0x61,0x64,0x79,0x53,0x74,0x61,0x74,0x65,0x20,0x3d,0x3d,0x20,0x34,0x29,0x7b,0x20,0x69,0x66,0x28,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x20,0x32,0x30,0x30,0x29,0x20,0x63,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x28,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x6f,0x70,0x65,0x6e,0x28,0x22,0x47,0x45,0x54,0x22,0x2c,0x20,0x61,0x64,0x72,0x2c,0x20,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x73,0x65,0x6e,0x64,0x28,0x29,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3b,0x20,0x78,0x6d,0x6c,0x68,0x74,0x74,0x70,0x2e,0x6f,0x6e,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x43,0x61,0x6c,0x6c,0x62,0x61,0x63,0x6b,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x28,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x74,0x61,0x72,0x74,0x45,0x53,0x50,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d}; +const static uint8_t data_indexJS[] PROGMEM = {0x76,0x61,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x27,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x46,0x6f,0x75,0x6e,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x72,0x74,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x4d,0x41,0x43,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x4d,0x41,0x43,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x20,0x26,0x26,0x20,0x21,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x29,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x3b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x27,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x49,0x6e,0x66,0x6f,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x27,0x3b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x28,0x61,0x2c,0x20,0x62,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x72,0x20,0x3e,0x20,0x62,0x2e,0x72,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x2d,0x31,0x3b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x72,0x20,0x3c,0x20,0x62,0x2e,0x72,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x28,0x6e,0x75,0x6d,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x38,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x50,0x41,0x2a,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x34,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x50,0x41,0x32,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x32,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x50,0x41,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x37,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x6e,0x6f,0x6e,0x65,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x69,0x66,0x20,0x28,0x6e,0x75,0x6d,0x20,0x3d,0x3d,0x20,0x35,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x22,0x57,0x45,0x50,0x22,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x20,0x7b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x29,0x3b,0x20,0x6e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x49,0x6e,0x66,0x6f,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x4e,0x65,0x74,0x77,0x6f,0x72,0x6b,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x61,0x70,0x4d,0x41,0x43,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x27,0x27,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x43,0x68,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x53,0x49,0x44,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x52,0x53,0x53,0x49,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x2e,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x65,0x20,0x3d,0x3d,0x20,0x31,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x22,0x3e,0x27,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x63,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x73,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x20,0x2b,0x20,0x27,0x20,0x3c,0x6d,0x65,0x74,0x65,0x72,0x20,0x76,0x61,0x6c,0x75,0x65,0x3d,0x22,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x20,0x2b,0x20,0x27,0x22,0x20,0x6d,0x61,0x78,0x3d,0x22,0x2d,0x33,0x30,0x22,0x20,0x6d,0x69,0x6e,0x3d,0x22,0x2d,0x31,0x30,0x30,0x22,0x20,0x6c,0x6f,0x77,0x3d,0x22,0x2d,0x38,0x30,0x22,0x20,0x68,0x69,0x67,0x68,0x3d,0x22,0x2d,0x36,0x30,0x22,0x20,0x6f,0x70,0x74,0x69,0x6d,0x75,0x6d,0x3d,0x22,0x2d,0x35,0x30,0x22,0x3e,0x3c,0x2f,0x6d,0x65,0x74,0x65,0x72,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x67,0x65,0x74,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x65,0x29,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x65,0x29,0x20,0x7b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x64,0x65,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x61,0x70,0x4d,0x41,0x43,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x6d,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x63,0x61,0x6e,0x28,0x29,0x20,0x7b,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x43,0x6f,0x6e,0x53,0x63,0x61,0x6e,0x28,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x29,0x20,0x7b,0x20,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x74,0x61,0x72,0x74,0x22,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x20,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x3d,0x20,0x74,0x72,0x75,0x65,0x3b,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x53,0x63,0x61,0x6e,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x74,0x6f,0x70,0x22,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x6e,0x75,0x6d,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x41,0x50,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x20,0x2b,0x20,0x6e,0x75,0x6d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x73,0x65,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x61,0x75,0x74,0x6f,0x53,0x63,0x61,0x6e,0x20,0x26,0x26,0x20,0x63,0x61,0x6e,0x53,0x63,0x61,0x6e,0x29,0x20,0x73,0x63,0x61,0x6e,0x28,0x29,0x3b,0x20,0x7d,0x2c,0x20,0x31,0x30,0x30,0x30,0x29,0x3b}; +const static uint8_t data_clientsJS[] PROGMEM = {0x76,0x61,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x27,0x74,0x61,0x62,0x6c,0x65,0x27,0x29,0x5b,0x30,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x74,0x61,0x72,0x74,0x53,0x63,0x61,0x6e,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x28,0x61,0x2c,0x20,0x62,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x70,0x20,0x3e,0x20,0x62,0x2e,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x2d,0x31,0x3b,0x20,0x69,0x66,0x20,0x28,0x61,0x2e,0x70,0x20,0x3c,0x20,0x62,0x2e,0x70,0x29,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x31,0x3b,0x20,0x72,0x65,0x74,0x75,0x72,0x6e,0x20,0x30,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x6f,0x6e,0x6f,0x66,0x66,0x29,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x27,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x42,0x74,0x6e,0x2e,0x73,0x74,0x79,0x6c,0x65,0x2e,0x76,0x69,0x73,0x69,0x62,0x69,0x6c,0x69,0x74,0x79,0x20,0x3d,0x20,0x27,0x68,0x69,0x64,0x64,0x65,0x6e,0x27,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x72,0x65,0x6c,0x6f,0x61,0x64,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x3d,0x3d,0x20,0x75,0x6e,0x64,0x65,0x66,0x69,0x6e,0x65,0x64,0x29,0x20,0x7b,0x20,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x3d,0x20,0x66,0x61,0x6c,0x73,0x65,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x73,0x6f,0x72,0x74,0x28,0x63,0x6f,0x6d,0x70,0x61,0x72,0x65,0x29,0x3b,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x46,0x6f,0x75,0x6e,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x64,0x65,0x76,0x69,0x63,0x65,0x73,0x20,0x66,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x27,0x27,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x20,0x30,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x50,0x6b,0x74,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x56,0x65,0x6e,0x64,0x6f,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4d,0x41,0x43,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x41,0x50,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x20,0x3d,0x3d,0x20,0x31,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x22,0x3e,0x27,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x70,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x76,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x6e,0x20,0x2b,0x20,0x27,0x20,0x3c,0x61,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x75,0x65,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x65,0x64,0x69,0x74,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x6d,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x61,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x20,0x3d,0x3d,0x20,0x31,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x64,0x65,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x2e,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x73,0x65,0x6c,0x65,0x63,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x6c,0x6f,0x61,0x64,0x20,0x3d,0x3d,0x20,0x74,0x72,0x75,0x65,0x29,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x3b,0x20,0x7d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x3b,0x20,0x7d,0x2c,0x20,0x36,0x30,0x30,0x30,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x63,0x61,0x6e,0x28,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x74,0x69,0x6d,0x65,0x3d,0x22,0x20,0x2b,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x63,0x61,0x6e,0x6e,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x22,0x3b,0x20,0x74,0x6f,0x67,0x67,0x6c,0x65,0x42,0x74,0x6e,0x28,0x66,0x61,0x6c,0x73,0x65,0x29,0x3b,0x20,0x73,0x65,0x74,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x28,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x72,0x65,0x63,0x6f,0x6e,0x6e,0x65,0x63,0x74,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x74,0x72,0x75,0x65,0x29,0x3b,0x20,0x7d,0x2c,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x2a,0x20,0x31,0x30,0x30,0x30,0x29,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x28,0x6e,0x75,0x6d,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x20,0x2b,0x20,0x6e,0x75,0x6d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x20,0x3a,0x2f,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x69,0x64,0x29,0x20,0x7b,0x20,0x76,0x61,0x72,0x20,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x4e,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x64,0x5d,0x2e,0x6d,0x29,0x3b,0x20,0x69,0x66,0x20,0x28,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x65,0x74,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x69,0x64,0x3d,0x22,0x20,0x2b,0x20,0x69,0x64,0x20,0x2b,0x20,0x22,0x26,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x20,0x2b,0x20,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b}; +const static uint8_t data_attackJS[] PROGMEM = {0x76,0x61,0x72,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x29,0x5b,0x30,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x4c,0x69,0x73,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x42,0x79,0x54,0x61,0x67,0x4e,0x61,0x6d,0x65,0x28,0x22,0x74,0x61,0x62,0x6c,0x65,0x22,0x29,0x5b,0x31,0x5d,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x22,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x22,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x49,0x6e,0x66,0x6f,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x73,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x41,0x74,0x74,0x61,0x63,0x6b,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x74,0x75,0x73,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x53,0x74,0x61,0x72,0x74,0x2f,0x53,0x74,0x6f,0x70,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x61,0x70,0x73,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x6c,0x69,0x3e,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x73,0x5b,0x69,0x5d,0x20,0x2b,0x20,0x22,0x3c,0x2f,0x6c,0x69,0x3e,0x22,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x6c,0x69,0x3e,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x5b,0x69,0x5d,0x20,0x2b,0x20,0x22,0x3c,0x2f,0x6c,0x69,0x3e,0x22,0x3b,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x41,0x50,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x61,0x70,0x73,0x3b,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x43,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x72,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x27,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x27,0x3e,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x6e,0x61,0x6d,0x65,0x20,0x2b,0x20,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x3d,0x3d,0x20,0x22,0x72,0x65,0x61,0x64,0x79,0x22,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x31,0x65,0x63,0x62,0x31,0x65,0x27,0x3e,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x2b,0x20,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x20,0x73,0x74,0x79,0x6c,0x65,0x3d,0x27,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x23,0x66,0x30,0x30,0x27,0x3e,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x73,0x74,0x61,0x74,0x75,0x73,0x20,0x2b,0x20,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x73,0x5b,0x69,0x5d,0x2e,0x72,0x75,0x6e,0x6e,0x69,0x6e,0x67,0x29,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x27,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x27,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x27,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x28,0x22,0x20,0x2b,0x20,0x69,0x20,0x2b,0x20,0x22,0x29,0x27,0x3e,0x73,0x74,0x6f,0x70,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x27,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x27,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x27,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x28,0x22,0x20,0x2b,0x20,0x69,0x20,0x2b,0x20,0x22,0x29,0x27,0x3e,0x73,0x74,0x61,0x72,0x74,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x73,0x73,0x69,0x64,0x43,0x6f,0x75,0x6e,0x74,0x65,0x72,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x2b,0x20,0x22,0x2f,0x36,0x34,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x58,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x72,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x74,0x64,0x3e,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x5b,0x69,0x5d,0x20,0x2b,0x20,0x22,0x3c,0x2f,0x74,0x64,0x3e,0x22,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x28,0x27,0x20,0x2b,0x20,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x78,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x22,0x3c,0x2f,0x74,0x72,0x3e,0x22,0x3b,0x20,0x7d,0x20,0x73,0x73,0x69,0x64,0x4c,0x69,0x73,0x74,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x7d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x29,0x20,0x7b,0x20,0x63,0x6c,0x65,0x61,0x72,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x72,0x65,0x73,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x29,0x3b,0x20,0x6c,0x6f,0x63,0x61,0x74,0x69,0x6f,0x6e,0x2e,0x72,0x65,0x6c,0x6f,0x61,0x64,0x28,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x74,0x61,0x72,0x74,0x53,0x74,0x6f,0x70,0x28,0x6e,0x75,0x6d,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x53,0x74,0x61,0x72,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x20,0x2b,0x20,0x6e,0x75,0x6d,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x36,0x34,0x29,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x53,0x53,0x49,0x44,0x20,0x6c,0x69,0x73,0x74,0x20,0x66,0x75,0x6c,0x6c,0x20,0x3a,0x28,0x22,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x20,0x76,0x61,0x72,0x20,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x6e,0x65,0x77,0x20,0x53,0x53,0x49,0x44,0x3a,0x22,0x29,0x3b,0x20,0x69,0x66,0x20,0x28,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x20,0x2b,0x20,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x3e,0x3d,0x20,0x36,0x34,0x29,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x53,0x53,0x49,0x44,0x20,0x6c,0x69,0x73,0x74,0x20,0x66,0x75,0x6c,0x6c,0x20,0x3a,0x28,0x22,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x7b,0x20,0x76,0x61,0x72,0x20,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x6e,0x65,0x77,0x20,0x53,0x53,0x49,0x44,0x3a,0x22,0x29,0x3b,0x20,0x69,0x66,0x20,0x28,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x20,0x2b,0x20,0x5f,0x73,0x73,0x69,0x64,0x4e,0x61,0x6d,0x65,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x28,0x6e,0x75,0x6d,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x20,0x2b,0x20,0x6e,0x75,0x6d,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x28,0x29,0x3b,0x20,0x72,0x65,0x73,0x75,0x6c,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x20,0x3d,0x20,0x73,0x65,0x74,0x49,0x6e,0x74,0x65,0x72,0x76,0x61,0x6c,0x28,0x67,0x65,0x74,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2c,0x20,0x33,0x30,0x30,0x30,0x29,0x3b}; +const static uint8_t data_settingsJS[] PROGMEM = {0x76,0x61,0x72,0x20,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x54,0x61,0x62,0x6c,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x73,0x69,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x61,0x76,0x65,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x61,0x76,0x65,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x75,0x73,0x65,0x4c,0x65,0x64,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x75,0x73,0x65,0x4c,0x65,0x64,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x20,0x3d,0x20,0x64,0x6f,0x63,0x75,0x6d,0x65,0x6e,0x74,0x2e,0x67,0x65,0x74,0x45,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x42,0x79,0x49,0x64,0x28,0x27,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x27,0x29,0x3b,0x20,0x76,0x61,0x72,0x20,0x72,0x65,0x73,0x3b,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x72,0x65,0x73,0x20,0x3d,0x20,0x4a,0x53,0x4f,0x4e,0x2e,0x70,0x61,0x72,0x73,0x65,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x3b,0x20,0x73,0x73,0x69,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x3b,0x20,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x3b,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3b,0x20,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3b,0x20,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x3b,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x3b,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x54,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3b,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3b,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x50,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x3b,0x20,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x61,0x74,0x74,0x61,0x63,0x6b,0x45,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x3b,0x20,0x75,0x73,0x65,0x4c,0x65,0x64,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x75,0x73,0x65,0x4c,0x65,0x64,0x3b,0x20,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x20,0x3d,0x20,0x72,0x65,0x73,0x2e,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x3b,0x20,0x63,0x6c,0x69,0x65,0x6e,0x74,0x4e,0x61,0x6d,0x65,0x73,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x20,0x4e,0x61,0x6d,0x65,0x73,0x20,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x20,0x2b,0x20,0x22,0x2f,0x35,0x30,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x74,0x72,0x20,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x3c,0x74,0x68,0x3e,0x4d,0x41,0x43,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x56,0x65,0x6e,0x64,0x6f,0x72,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x4e,0x61,0x6d,0x65,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x74,0x68,0x3e,0x58,0x3c,0x2f,0x74,0x68,0x3e,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x66,0x6f,0x72,0x20,0x28,0x76,0x61,0x72,0x20,0x69,0x20,0x3d,0x20,0x30,0x3b,0x20,0x69,0x20,0x3c,0x20,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6c,0x65,0x6e,0x67,0x74,0x68,0x3b,0x20,0x69,0x2b,0x2b,0x29,0x20,0x7b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x72,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x5d,0x2e,0x6d,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x5d,0x2e,0x76,0x20,0x2b,0x20,0x27,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x27,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x5d,0x2e,0x6e,0x20,0x2b,0x20,0x27,0x20,0x3c,0x61,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x62,0x6c,0x75,0x65,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x27,0x20,0x2b,0x20,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x65,0x64,0x69,0x74,0x3c,0x2f,0x61,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x74,0x64,0x3e,0x3c,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x63,0x6c,0x61,0x73,0x73,0x3d,0x22,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x22,0x20,0x6f,0x6e,0x63,0x6c,0x69,0x63,0x6b,0x3d,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x28,0x27,0x20,0x2b,0x20,0x69,0x20,0x2b,0x20,0x27,0x29,0x22,0x3e,0x78,0x3c,0x2f,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3e,0x3c,0x2f,0x74,0x64,0x3e,0x27,0x3b,0x20,0x74,0x72,0x20,0x2b,0x3d,0x20,0x27,0x3c,0x2f,0x74,0x72,0x3e,0x27,0x3b,0x20,0x7d,0x20,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x54,0x61,0x62,0x6c,0x65,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x74,0x72,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x68,0x61,0x6e,0x67,0x65,0x4e,0x61,0x6d,0x65,0x28,0x69,0x64,0x29,0x20,0x7b,0x20,0x76,0x61,0x72,0x20,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x3d,0x20,0x70,0x72,0x6f,0x6d,0x70,0x74,0x28,0x22,0x4e,0x61,0x6d,0x65,0x20,0x66,0x6f,0x72,0x20,0x22,0x20,0x2b,0x20,0x72,0x65,0x73,0x2e,0x6e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x5b,0x69,0x64,0x5d,0x2e,0x6d,0x29,0x3b,0x20,0x69,0x66,0x20,0x28,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x20,0x21,0x3d,0x20,0x6e,0x75,0x6c,0x6c,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x65,0x64,0x69,0x74,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x69,0x64,0x3d,0x22,0x20,0x2b,0x20,0x69,0x64,0x20,0x2b,0x20,0x22,0x26,0x6e,0x61,0x6d,0x65,0x3d,0x22,0x20,0x2b,0x20,0x6e,0x65,0x77,0x4e,0x61,0x6d,0x65,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x28,0x69,0x64,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x3f,0x6e,0x75,0x6d,0x3d,0x22,0x20,0x2b,0x20,0x69,0x64,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x73,0x61,0x76,0x65,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x20,0x7b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x69,0x6e,0x67,0x2e,0x2e,0x2e,0x22,0x3b,0x20,0x76,0x61,0x72,0x20,0x75,0x72,0x6c,0x20,0x3d,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x53,0x61,0x76,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x3f,0x73,0x73,0x69,0x64,0x3d,0x22,0x20,0x2b,0x20,0x73,0x73,0x69,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,0x20,0x2b,0x20,0x73,0x73,0x69,0x64,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x3d,0x22,0x20,0x2b,0x20,0x70,0x61,0x73,0x73,0x77,0x6f,0x72,0x64,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x3d,0x22,0x20,0x2b,0x20,0x61,0x70,0x43,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x3d,0x22,0x20,0x2b,0x20,0x61,0x70,0x53,0x63,0x61,0x6e,0x48,0x69,0x64,0x64,0x65,0x6e,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x3d,0x22,0x20,0x2b,0x20,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x3d,0x22,0x20,0x2b,0x20,0x74,0x69,0x6d,0x65,0x6f,0x75,0x74,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x3d,0x22,0x20,0x2b,0x20,0x64,0x65,0x61,0x75,0x74,0x68,0x52,0x65,0x61,0x73,0x6f,0x6e,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x3d,0x22,0x20,0x2b,0x20,0x70,0x61,0x63,0x6b,0x65,0x74,0x52,0x61,0x74,0x65,0x2e,0x76,0x61,0x6c,0x75,0x65,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x3d,0x22,0x20,0x2b,0x20,0x73,0x73,0x69,0x64,0x45,0x6e,0x63,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x75,0x73,0x65,0x4c,0x65,0x64,0x3d,0x22,0x20,0x2b,0x20,0x75,0x73,0x65,0x4c,0x65,0x64,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x75,0x72,0x6c,0x20,0x2b,0x3d,0x20,0x22,0x26,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x3d,0x22,0x20,0x2b,0x20,0x63,0x68,0x61,0x6e,0x6e,0x65,0x6c,0x48,0x6f,0x70,0x2e,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x3b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x75,0x72,0x6c,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x72,0x65,0x73,0x65,0x74,0x53,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x28,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x52,0x65,0x73,0x65,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x73,0x61,0x76,0x65,0x64,0x2e,0x69,0x6e,0x6e,0x65,0x72,0x48,0x54,0x4d,0x4c,0x20,0x3d,0x20,0x22,0x73,0x61,0x76,0x65,0x64,0x22,0x3b,0x20,0x7d,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x20,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x28,0x29,0x20,0x7b,0x20,0x67,0x65,0x74,0x52,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x28,0x22,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x29,0x20,0x7b,0x20,0x69,0x66,0x20,0x28,0x72,0x65,0x73,0x70,0x6f,0x6e,0x73,0x65,0x54,0x65,0x78,0x74,0x20,0x3d,0x3d,0x20,0x22,0x74,0x72,0x75,0x65,0x22,0x29,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b,0x20,0x65,0x6c,0x73,0x65,0x20,0x61,0x6c,0x65,0x72,0x74,0x28,0x22,0x65,0x72,0x72,0x6f,0x72,0x22,0x29,0x3b,0x20,0x7d,0x29,0x3b,0x20,0x7d,0x20,0x67,0x65,0x74,0x44,0x61,0x74,0x61,0x28,0x29,0x3b}; + +const static uint8_t data_styleCSS[] PROGMEM = {0x2f,0x2a,0x20,0x47,0x6c,0x6f,0x62,0x61,0x6c,0x20,0x2a,0x2f,0x20,0x2a,0x2c,0x20,0x62,0x6f,0x64,0x79,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x66,0x61,0x6d,0x69,0x6c,0x79,0x3a,0x20,0x61,0x72,0x69,0x61,0x6c,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x34,0x33,0x32,0x39,0x32,0x39,0x3b,0x20,0x7d,0x20,0x68,0x31,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x32,0x32,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x30,0x2e,0x36,0x65,0x6d,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x32,0x65,0x6d,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x34,0x70,0x78,0x3b,0x20,0x7d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x38,0x46,0x38,0x46,0x38,0x46,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x33,0x34,0x65,0x6d,0x20,0x30,0x2e,0x33,0x65,0x6d,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x62,0x6f,0x74,0x74,0x6f,0x6d,0x3a,0x20,0x30,0x2e,0x36,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x62,0x75,0x74,0x74,0x6f,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x6c,0x61,0x62,0x65,0x6c,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x33,0x35,0x70,0x78,0x3b,0x20,0x7d,0x20,0x69,0x6e,0x70,0x75,0x74,0x20,0x7b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x32,0x32,0x70,0x78,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x32,0x30,0x70,0x78,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x3a,0x20,0x31,0x70,0x78,0x20,0x73,0x6f,0x6c,0x69,0x64,0x20,0x23,0x41,0x39,0x39,0x44,0x39,0x44,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x72,0x61,0x64,0x69,0x75,0x73,0x3a,0x20,0x35,0x70,0x78,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x32,0x65,0x6d,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x32,0x70,0x78,0x3b,0x20,0x7d,0x20,0x69,0x6e,0x70,0x75,0x74,0x5b,0x74,0x79,0x70,0x65,0x3d,0x22,0x63,0x68,0x65,0x63,0x6b,0x62,0x6f,0x78,0x22,0x5d,0x20,0x7b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x61,0x75,0x74,0x6f,0x3b,0x20,0x7d,0x20,0x2e,0x77,0x61,0x72,0x6e,0x20,0x7b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x63,0x32,0x30,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x2e,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x63,0x32,0x30,0x30,0x30,0x30,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x7d,0x20,0x2e,0x77,0x61,0x72,0x6e,0x42,0x74,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x30,0x30,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x42,0x74,0x6e,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x7d,0x20,0x2e,0x72,0x69,0x67,0x68,0x74,0x20,0x7b,0x20,0x66,0x6c,0x6f,0x61,0x74,0x3a,0x20,0x72,0x69,0x67,0x68,0x74,0x3b,0x20,0x7d,0x20,0x2e,0x62,0x6f,0x6c,0x64,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x77,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x62,0x6f,0x6c,0x64,0x3b,0x20,0x7d,0x20,0x2e,0x62,0x6c,0x6f,0x63,0x6b,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x7d,0x20,0x2e,0x6d,0x61,0x72,0x67,0x69,0x6e,0x4e,0x75,0x6c,0x6c,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x7d,0x20,0x2e,0x62,0x6c,0x75,0x65,0x20,0x7b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x30,0x30,0x42,0x30,0x46,0x46,0x20,0x7d,0x20,0x2e,0x73,0x6d,0x61,0x6c,0x6c,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x37,0x32,0x37,0x32,0x37,0x32,0x20,0x7d,0x20,0x2f,0x2a,0x20,0x4e,0x61,0x76,0x69,0x67,0x61,0x74,0x69,0x6f,0x6e,0x20,0x2a,0x2f,0x20,0x6e,0x61,0x76,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x3b,0x20,0x7d,0x20,0x6e,0x61,0x76,0x20,0x61,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x39,0x39,0x39,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x35,0x65,0x6d,0x3b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x2d,0x62,0x6c,0x6f,0x63,0x6b,0x3b,0x20,0x74,0x65,0x78,0x74,0x2d,0x64,0x65,0x63,0x6f,0x72,0x61,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x6e,0x6f,0x6e,0x65,0x3b,0x20,0x7d,0x20,0x6e,0x61,0x76,0x20,0x61,0x3a,0x68,0x6f,0x76,0x65,0x72,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x30,0x30,0x30,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x20,0x7d,0x20,0x2f,0x2a,0x20,0x43,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x2a,0x2f,0x20,0x23,0x63,0x6f,0x6e,0x74,0x65,0x6e,0x74,0x20,0x7b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x33,0x34,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x7b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x25,0x3b,0x20,0x6d,0x61,0x78,0x2d,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x39,0x36,0x30,0x70,0x78,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x3a,0x20,0x30,0x20,0x61,0x75,0x74,0x6f,0x3b,0x20,0x62,0x6f,0x72,0x64,0x65,0x72,0x2d,0x73,0x70,0x61,0x63,0x69,0x6e,0x67,0x3a,0x20,0x30,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x32,0x32,0x32,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x32,0x32,0x32,0x32,0x32,0x32,0x3b,0x20,0x63,0x6f,0x6c,0x6f,0x72,0x3a,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x64,0x20,0x7b,0x20,0x66,0x6f,0x6e,0x74,0x2d,0x73,0x69,0x7a,0x65,0x3a,0x20,0x31,0x34,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x30,0x66,0x30,0x66,0x30,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x68,0x2c,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x74,0x64,0x20,0x7b,0x20,0x74,0x65,0x78,0x74,0x2d,0x61,0x6c,0x69,0x67,0x6e,0x3a,0x20,0x63,0x65,0x6e,0x74,0x65,0x72,0x3b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x3a,0x20,0x30,0x2e,0x31,0x65,0x6d,0x20,0x30,0x3b,0x20,0x7d,0x20,0x74,0x61,0x62,0x6c,0x65,0x20,0x2e,0x73,0x65,0x6c,0x65,0x63,0x74,0x65,0x64,0x20,0x74,0x64,0x20,0x7b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x31,0x31,0x61,0x34,0x63,0x63,0x3b,0x20,0x7d,0x20,0x2f,0x2a,0x20,0x53,0x70,0x65,0x63,0x69,0x66,0x69,0x63,0x20,0x2a,0x2f,0x20,0x23,0x73,0x61,0x76,0x65,0x64,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x3b,0x20,0x7d,0x20,0x23,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x23,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x72,0x74,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x33,0x30,0x70,0x78,0x3b,0x20,0x7d,0x20,0x23,0x73,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x20,0x7b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x36,0x30,0x70,0x78,0x3b,0x20,0x7d,0x20,0x23,0x61,0x70,0x53,0x63,0x61,0x6e,0x53,0x74,0x61,0x74,0x75,0x73,0x20,0x7b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x31,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x23,0x72,0x73,0x73,0x69,0x42,0x61,0x72,0x20,0x7b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x31,0x30,0x30,0x70,0x78,0x3b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x66,0x66,0x66,0x3b,0x20,0x7d,0x20,0x23,0x72,0x73,0x73,0x69,0x42,0x61,0x72,0x20,0x3e,0x20,0x64,0x69,0x76,0x20,0x7b,0x20,0x77,0x69,0x64,0x74,0x68,0x3a,0x20,0x35,0x32,0x70,0x78,0x3b,0x20,0x68,0x65,0x69,0x67,0x68,0x74,0x3a,0x20,0x31,0x35,0x70,0x78,0x3b,0x20,0x62,0x61,0x63,0x6b,0x67,0x72,0x6f,0x75,0x6e,0x64,0x3a,0x20,0x23,0x63,0x32,0x30,0x30,0x30,0x30,0x3b,0x20,0x7d,0x20,0x23,0x77,0x70,0x61,0x5f,0x69,0x6e,0x66,0x6f,0x20,0x7b,0x20,0x70,0x61,0x64,0x64,0x69,0x6e,0x67,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x30,0x2e,0x33,0x34,0x65,0x6d,0x3b,0x20,0x7d,0x20,0x23,0x73,0x61,0x76,0x65,0x64,0x20,0x7b,0x20,0x64,0x69,0x73,0x70,0x6c,0x61,0x79,0x3a,0x20,0x69,0x6e,0x6c,0x69,0x6e,0x65,0x3b,0x20,0x6d,0x61,0x72,0x67,0x69,0x6e,0x2d,0x6c,0x65,0x66,0x74,0x3a,0x20,0x32,0x30,0x70,0x78,0x3b,0x20,0x7d}; +const static uint8_t data_manifest[] PROGMEM = {0x7b,0x20,0x22,0x73,0x69,0x74,0x65,0x73,0x22,0x3a,0x5b,0x20,0x22,0x65,0x72,0x72,0x6f,0x72,0x34,0x30,0x34,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x73,0x74,0x79,0x6c,0x65,0x2e,0x63,0x73,0x73,0x22,0x2c,0x20,0x22,0x66,0x75,0x6e,0x63,0x74,0x69,0x6f,0x6e,0x73,0x2e,0x6a,0x73,0x22,0x2c,0x20,0x22,0x69,0x6e,0x64,0x65,0x78,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x68,0x74,0x6d,0x6c,0x22,0x20,0x5d,0x2c,0x20,0x22,0x6a,0x73,0x6f,0x6e,0x22,0x3a,0x5b,0x20,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x52,0x65,0x73,0x75,0x6c,0x74,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x49,0x6e,0x66,0x6f,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x20,0x5d,0x2c,0x20,0x22,0x63,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x73,0x22,0x3a,0x5b,0x20,0x22,0x41,0x50,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x41,0x50,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x43,0x6c,0x69,0x65,0x6e,0x74,0x53,0x63,0x61,0x6e,0x54,0x69,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x69,0x65,0x6e,0x74,0x53,0x65,0x6c,0x65,0x63,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x61,0x74,0x74,0x61,0x63,0x6b,0x53,0x74,0x61,0x72,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x53,0x61,0x76,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x65,0x74,0x74,0x69,0x6e,0x67,0x73,0x52,0x65,0x73,0x65,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x4e,0x61,0x6d,0x65,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x65,0x61,0x72,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x65,0x64,0x69,0x74,0x4e,0x61,0x6d,0x65,0x4c,0x69,0x73,0x74,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x61,0x64,0x64,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x6f,0x6e,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x64,0x65,0x6c,0x65,0x74,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x72,0x61,0x6e,0x64,0x6f,0x6d,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x63,0x6c,0x65,0x61,0x72,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x72,0x65,0x73,0x65,0x74,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x2c,0x20,0x22,0x73,0x61,0x76,0x65,0x53,0x53,0x49,0x44,0x2e,0x6a,0x73,0x6f,0x6e,0x22,0x20,0x5d,0x20,0x7d}; /* Based on Wireshark manufacturer database @@ -22944,6 +22949,8 @@ String data_getVendor(uint8_t first,uint8_t second,uint8_t third){ return data_vendorStrBuffer; } +/*/////////////////////////////// HTML files //////////////////////////////////*/ + char* data_getIndexHTML(){ int _size = sizeof(data_indexHTML); for(int i=0;i= 1 && server.arg("apChannel").toInt() <= 11){ + if(server.arg("apChannel").toInt() >= 1 && server.arg("apChannel").toInt() <= 14){ settings.apChannel = server.arg("apChannel").toInt(); } } diff --git a/htmlfiles/attack.html b/htmlfiles/attack.html deleted file mode 100644 index 5833f13..0000000 --- a/htmlfiles/attack.html +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - - -
-

Attack

- -

Selected AP:

-
    -
- -
- -

Selected Clients:

-
    -
- -
- - -
- -

-
- deauth [deauthentication attack]:
- Sends deauthentication frames and dissociation frames to the selected client(s) in the selected WiFi access point(s). -
- Note: - If no client is selected, the packets are sent as broadcast! -

- beacon [beacon flood attack]:
- (clone:) Spams beacon frames with a similar SSID as the selected WiFi access point(s).
- (list:) Spams beacon frames with all SSIDs in the list below. -

- probe request [probe request flood attack]:
- Spams probe request frames with all SSIDs in the list below.
- Usefull to confuse and spam WiFi trackers. -

-
-

SSIDs: 0/64

-
- -
-
-

saved

-
- - - \ No newline at end of file diff --git a/htmlfiles/clients.html b/htmlfiles/clients.html deleted file mode 100644 index 8c33409..0000000 --- a/htmlfiles/clients.html +++ /dev/null @@ -1,147 +0,0 @@ - - - - - - - - - -
-

Scan for client devices

- - - s - - - ready! -
-

AP will be off while scanning!

-
- -

Client devices found: 0

- -
- -
- - -
- - - - \ No newline at end of file diff --git a/htmlfiles/index.html b/htmlfiles/index.html deleted file mode 100644 index b48b814..0000000 --- a/htmlfiles/index.html +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - - -
-

Scan for WiFi access points

- - - scanning... - -

Networks found: 0

-

- MAC: -

-
- -
- - -
-

-
- WPA* = WPA/WPA2 auto mode -
- continuous scan: -

- - - - diff --git a/htmlfiles/settings.html b/htmlfiles/settings.html deleted file mode 100644 index 7a5ea30..0000000 --- a/htmlfiles/settings.html +++ /dev/null @@ -1,222 +0,0 @@ - - - - - - - - - -
-

Settings

- -

WiFi

- - - -
- - -
- - - -

must have at least 8 characters! (needs restart)

-
- - - - -
-
-

AP scan

- - - - -
-
-

Client Scan

- - - s - -
-
- -

Attack

- - - s -

0 = no timeout

- - - -
- - - -
- - - -

reason codes: click

- - - pkts/s -

only for deauth attack - may cause instability!

- - - -

only for deauth attack - packetrate will be ignored!

-
- -
-


-
-
- -

Client Names

- - -
MACVendorNameX
-
-

-
- - -
- - - - \ No newline at end of file diff --git a/web_server/attack.html b/web_server/attack.html new file mode 100644 index 0000000..d8ab892 --- /dev/null +++ b/web_server/attack.html @@ -0,0 +1,63 @@ + + + + + + + + + +
+

Attack

+ +

Selected AP:

+
    +
+ +
+ +

Selected Clients:

+
    +
+ +
+ + +
+ +

+
+ deauth [deauthentication attack]:
+ Sends deauthentication frames and dissociation frames to the selected client(s) in the selected WiFi access point(s). +
+ Note: + If no client is selected, the packets are sent as broadcast! +

+ beacon [beacon flood attack]:
+ (clone:) Spams beacon frames with a similar SSID as the selected WiFi access point(s).
+ (list:) Spams beacon frames with all SSIDs in the list below. +

+ probe request [probe request flood attack]:
+ Spams probe request frames with all SSIDs in the list below.
+ Usefull to confuse and spam WiFi trackers. +

+
+

SSIDs: 0/64

+
+ +
+
+

saved

+
+ + + + \ No newline at end of file diff --git a/web_server/clients.html b/web_server/clients.html new file mode 100644 index 0000000..6f51fa0 --- /dev/null +++ b/web_server/clients.html @@ -0,0 +1,41 @@ + + + + + + + + + +
+

Scan for client devices

+ + + s + + + ready! +
+

AP will be off while scanning!

+
+ +

Client devices found: 0

+ +
+ +
+ + +
+ + + + \ No newline at end of file diff --git a/web_server/index.html b/web_server/index.html new file mode 100644 index 0000000..fa2a740 --- /dev/null +++ b/web_server/index.html @@ -0,0 +1,43 @@ + + + + + + + + + +
+

Scan for WiFi access points

+ + + scanning... + +

Networks found: 0

+

+ MAC: +

+
+ +
+ + +
+

+
+ WPA* = WPA/WPA2 auto mode +
+ continuous scan: +

+ + + + diff --git a/web_server/js/attack.js b/web_server/js/attack.js new file mode 100644 index 0000000..cf3e30e --- /dev/null +++ b/web_server/js/attack.js @@ -0,0 +1,101 @@ +var selectedAPs = document.getElementById("selectedAPs"); +var selectedClients = document.getElementById("selectedClients"); +var table = document.getElementsByTagName("table")[0]; +var ssidList = document.getElementsByTagName("table")[1]; +var saved = document.getElementById("saved"); +var ssidCounter = document.getElementById("ssidCounter"); +var resultInterval; +var res; + +function getResults() { + getResponse("attackInfo.json", function(responseText) { + res = JSON.parse(responseText); + var aps = ""; + var clients = ""; + var tr = "AttackStatusStart/Stop"; + for (var i = 0; i < res.aps.length; i++) aps += "
  • " + res.aps[i] + "
  • "; + for (var i = 0; i < res.clients.length; i++) clients += "
  • " + res.clients[i] + "
  • "; + + selectedAPs.innerHTML = aps; + selectedClients.innerHTML = clients; + + for (var i = 0; i < res.attacks.length; i++) { + if (res.attacks[i].running) tr += ""; + else tr += ""; + + tr += "" + res.attacks[i].name + ""; + if (res.attacks[i].status == "ready") tr += "" + res.attacks[i].status + ""; + else tr += "" + res.attacks[i].status + ""; + if (res.attacks[i].running) tr += ""; + else tr += ""; + + tr += ""; + } + table.innerHTML = tr; + + ssidCounter.innerHTML = res.ssid.length + "/64"; + + var tr = "NameX"; + for (var i = 0; i < res.ssid.length; i++) { + tr += ""; + tr += "" + res.ssid[i] + ""; + tr += ''; + tr += ""; + } + ssidList.innerHTML = tr; + + }, function() { + clearInterval(resultInterval); + location.reload(); + }); +} + +function startStop(num) { + getResponse("attackStart.json?num=" + num, function(responseText) { + if (responseText == "true") getResults(); + else alert("error"); + }); +} + +function addSSID() { + saved.innerHTML = ""; + if (res.ssid.length >= 64) alert("SSID list full :("); + else { + var _ssidName = prompt("new SSID:"); + if (_ssidName != null) getResponse("addSSID.json?name=" + _ssidName, getResults); + } +} + +function cloneSSID() { + saved.innerHTML = ""; + if (res.ssid.length >= 64) alert("SSID list full :("); + else { + var _ssidName = prompt("new SSID:"); + if (_ssidName != null) getResponse("cloneSSID.json?name=" + _ssidName, getResults); + } +} + +function deleteSSID(num) { + saved.innerHTML = ""; + getResponse("deleteSSID.json?num=" + num, getResults); +} + +function randomSSID() { + saved.innerHTML = ""; + getResponse("randomSSID.json", getResults); +} +function clearSSID() { + saved.innerHTML = ""; + getResponse("clearSSID.json", getResults); +} +function saveSSID() { + saved.innerHTML = "saved"; + getResponse("saveSSID.json", getResults); +} +function resetSSID() { + saved.innerHTML = "saved"; + getResponse("resetSSID.json", getResults); +} + +getResults(); +resultInterval = setInterval(getResults, 3000); \ No newline at end of file diff --git a/web_server/js/clients.js b/web_server/js/clients.js new file mode 100644 index 0000000..b245125 --- /dev/null +++ b/web_server/js/clients.js @@ -0,0 +1,98 @@ +var table = document.getElementsByTagName('table')[0]; +var scanBtn = document.getElementById("startScan"); +var scanTime = document.getElementById("scanTime"); +var clientsFound = document.getElementById("clientsFound"); +var scanStatus = document.getElementById("clientScanStatus"); + +var res; + +function compare(a, b) { + if (a.p > b.p) return -1; + if (a.p < b.p) return 1; + return 0; +} + +function toggleBtn(onoff) { + if (onoff) { + scanBtn.style.visibility = 'visible'; + } else { + scanBtn.style.visibility = 'hidden'; + } +} + +function getResults(reload) { + if (reload == undefined) { + reload = false; + } + getResponse("ClientScanResults.json", function(responseText) { + res = JSON.parse(responseText); + res.clients = res.clients.sort(compare); + + clientsFound.innerHTML = "Client devices found: " + res.clients.length; + + var tr = ''; + if (res.clients.length > 0) tr += 'PktsVendorNameMACAPSelect'; + + for (var i = 0; i < res.clients.length; i++) { + + if (res.clients[i].s == 1) tr += ''; + else tr += ''; + tr += '' + res.clients[i].p + ''; + tr += '' + res.clients[i].v + ''; + tr += '' + res.clients[i].n + ' edit'; + tr += '' + res.clients[i].m + ''; + tr += '' + res.clients[i].a + ''; + + if (res.clients[i].s == 1) tr += ''; + else tr += ''; + + tr += ''; + } + table.innerHTML = tr; + toggleBtn(true); + scanStatus.innerHTML = ""; + + if (reload == true) location.reload(); + + }, function() { + location.reload(); + }, 6000); + +} + +function scan() { + getResponse("ClientScan.json?time=" + scanTime.value, function(responseText) { + if (responseText == "true") { + scanStatus.innerHTML = "scanning..."; + toggleBtn(false); + setTimeout(function() { + scanStatus.innerHTML = "reconnecting..."; + getResults(true); + }, scanTime.value * 1000); + } + else alert(responseText); + }); +} + +function select(num) { + getResponse("clientSelect.json?num=" + num, function(responseText) { + if (responseText == "true") getResults(); + else alert("error :/"); + }); +} + +function changeName(id) { + var newName = prompt("Name for " + res.clients[id].m); + if (newName != null) { + getResponse("setName.json?id=" + id + "&name=" + newName, function(responseText) { + if (responseText == "true") getResults(); + else alert("error"); + }); + } +} + +getResponse("ClientScanTime.json", function(responseText) { + scanTime.value = responseText; +}); + +getResults(); \ No newline at end of file diff --git a/htmlfiles/functions.js b/web_server/js/functions.js similarity index 77% rename from htmlfiles/functions.js rename to web_server/js/functions.js index e63cd0d..3341896 100644 --- a/htmlfiles/functions.js +++ b/web_server/js/functions.js @@ -1,21 +1,28 @@ -function getResponse(adr, callback, timeoutCallback, timeout){ - if(timeoutCallback === undefined) { - timeoutCallback = function(){ - location.reload() - }; - } - if(timeout === undefined) { - timeout = 8000; - } - var xmlhttp = new XMLHttpRequest(); - xmlhttp.onreadystatechange = function() { - if(xmlhttp.readyState == 4){ - if(xmlhttp.status == 200) callback(xmlhttp.responseText); - else timeoutCallback(); - } - }; - xmlhttp.open("GET", adr, true); - xmlhttp.send(); - xmlhttp.timeout = timeout; - xmlhttp.ontimeout = timeoutCallback; +function getResponse(adr, callback, timeoutCallback, timeout){ + if(timeoutCallback === undefined) { + timeoutCallback = function(){ + location.reload() + }; + } + if(timeout === undefined) { + timeout = 8000; + } + var xmlhttp = new XMLHttpRequest(); + xmlhttp.onreadystatechange = function() { + if(xmlhttp.readyState == 4){ + if(xmlhttp.status == 200) callback(xmlhttp.responseText); + else timeoutCallback(); + } + }; + xmlhttp.open("GET", adr, true); + xmlhttp.send(); + xmlhttp.timeout = timeout; + xmlhttp.ontimeout = timeoutCallback; +} + +function restartESP() { + getResponse("restartESP.json", function(responseText) { + if (responseText == "true") getData(); + else alert("error"); + }); } \ No newline at end of file diff --git a/web_server/js/index.js b/web_server/js/index.js new file mode 100644 index 0000000..69bebdc --- /dev/null +++ b/web_server/js/index.js @@ -0,0 +1,99 @@ +var table = document.getElementsByTagName('table')[0]; +var networkInfo = document.getElementById('networksFound'); +var scanBtn = document.getElementById('apScanStart'); +var scanInfo = document.getElementById('scanInfo'); +var apMAC = document.getElementById('apMAC'); +var startStopScan = document.getElementById('startStopScan'); +var autoScan = false; +var canScan = true; + +function toggleBtn(onoff) { + if (onoff && !autoScan) { + scanInfo.style.visibility = 'hidden'; + scanBtn.style.visibility = 'visible'; + } else { + scanInfo.style.visibility = 'visible'; + scanBtn.style.visibility = 'hidden'; + } +} + +function compare(a, b) { + if (a.r > b.r) return -1; + if (a.r < b.r) return 1; + return 0; +} + +function getEncryption(num) { + if (num == 8) return "WPA*"; + else if (num == 4) return "WPA2"; + else if (num == 2) return "WPA"; + else if (num == 7) return "none"; + else if (num == 5) return "WEP"; +} + +function getResults() { + toggleBtn(true); + getResponse("APScanResults.json", function(responseText) { + var res = JSON.parse(responseText); + res.aps = res.aps.sort(compare); + networkInfo.innerHTML = "Networks found: " + res.aps.length; + apMAC.innerHTML = ""; + + var tr = ''; + if (res.aps.length > 0) tr += 'ChSSIDRSSIEncrypt.Select'; + + for (var i = 0; i < res.aps.length; i++) { + + if (res.aps[i].se == 1) tr += ''; + else tr += ''; + tr += '' + res.aps[i].c + ''; + tr += '' + res.aps[i].ss + ''; + tr += '' + res.aps[i].r + ' '; + tr += '' + getEncryption(res.aps[i].e) + ''; + + if (res.aps[i].se) { + tr += ''; + apMAC.innerHTML = res.aps[i].m; + } + else tr += ''; + tr += ''; + } + table.innerHTML = tr; + canScan = true; + }); +} + +function scan() { + canScan = false; + toggleBtn(false); + getResponse("APScan.json", function(responseText) { + if (responseText == "true") getResults(); + else alert("error"); + toggleBtn(true); + }); +} + +function startConScan() { + if (autoScan) { + autoScan = false; + startStopScan.innerHTML = "start"; + toggleBtn(true); + } else { + autoScan = true; + startStopScan.innerHTML = "stop"; + toggleBtn(false); + } +} + +function select(num) { + getResponse("APSelect.json?num=" + num, function(responseText) { + if (responseText == "true") getResults(); + else alert("error"); + }); +} + +getResults(); + +setInterval(function() { + if (autoScan && canScan) scan(); +}, 1000); \ No newline at end of file diff --git a/web_server/js/settings.js b/web_server/js/settings.js new file mode 100644 index 0000000..940d6e1 --- /dev/null +++ b/web_server/js/settings.js @@ -0,0 +1,114 @@ +var nameListTable = document.getElementById('nameList'); +var ssid = document.getElementById('ssid'); +var ssidHidden = document.getElementById('ssidHidden'); +var password = document.getElementById('password'); +var apChannel = document.getElementById('apChannel'); +var apScanHidden = document.getElementById('apScanHidden'); +var scanTime = document.getElementById('scanTime'); +var timeout = document.getElementById('timeout'); +var deauthReason = document.getElementById('deauthReason'); +var packetRate = document.getElementById('packetRate'); +var saved = document.getElementById('saved'); +var clientNames = document.getElementById('clientNames'); +var ssidEnc = document.getElementById('ssidEnc'); +var useLed = document.getElementById('useLed'); +var channelHop = document.getElementById('channelHop'); +var res; + +function getData() { + getResponse("settings.json", function(responseText) { + res = JSON.parse(responseText); + + ssid.value = res.ssid; + ssidHidden.checked = res.ssidHidden; + password.value = res.password; + apChannel.value = res.apChannel; + apScanHidden.checked = res.apScanHidden; + scanTime.value = res.clientScanTime; + timeout.value = res.attackTimeout; + deauthReason.value = res.deauthReason; + packetRate.value = res.attackPacketRate; + ssidEnc.checked = res.attackEncrypted; + useLed.checked = res.useLed; + channelHop.checked = res.channelHop; + + + clientNames.innerHTML = "Client Names " + res.nameList.length + "/50"; + + var tr = 'MACVendorNameX'; + + for (var i = 0; i < res.nameList.length; i++) { + + tr += ''; + tr += '' + res.nameList[i].m + ''; + tr += '' + res.nameList[i].v + ''; + tr += '' + res.nameList[i].n + ' edit'; + tr += ''; + + tr += ''; + } + + nameListTable.innerHTML = tr; + }); +} + +function changeName(id) { + var newName = prompt("Name for " + res.nameList[id].m); + if (newName != null) { + getResponse("editNameList.json?id=" + id + "&name=" + newName, function(responseText) { + if (responseText == "true") getData(); + else alert("error"); + }); + } +} + +function deleteName(id) { + getResponse("deleteName.json?num=" + id, function(responseText) { + if (responseText == "true") getData(); + else alert("error"); + }); +} + +function saveSettings() { + saved.innerHTML = "saving..."; + var url = "settingsSave.json"; + url += "?ssid=" + ssid.value; + url += "&ssidHidden=" + ssidHidden.checked; + url += "&password=" + password.value; + url += "&apChannel=" + apChannel.value; + url += "&apScanHidden=" + apScanHidden.checked; + url += "&scanTime=" + scanTime.value; + url += "&timeout=" + timeout.value; + url += "&deauthReason=" + deauthReason.value; + url += "&packetRate=" + packetRate.value; + url += "&ssidEnc=" + ssidEnc.checked; + url += "&useLed=" + useLed.checked; + url += "&channelHop=" + channelHop.checked; + + getResponse(url, function(responseText) { + if (responseText == "true") { + getData(); + saved.innerHTML = "saved"; + } + else alert("error"); + }); +} + +function resetSettings() { + getResponse("settingsReset.json", function(responseText) { + if (responseText == "true") { + getData(); + saved.innerHTML = "saved"; + } + else alert("error"); + }); +} + +function clearNameList() { + getResponse("clearNameList.json", function(responseText) { + if (responseText == "true") getData(); + else alert("error"); + }); +} + +getData(); \ No newline at end of file diff --git a/htmlfiles/manifest.json b/web_server/manifest.json similarity index 94% rename from htmlfiles/manifest.json rename to web_server/manifest.json index 509fb4a..4b5ca76 100644 --- a/htmlfiles/manifest.json +++ b/web_server/manifest.json @@ -1,38 +1,38 @@ -{ -"sites":[ - "error404.html", - "style.css", - "functions.js", - "index.html", - "clients.html", - "attack.html", - "settings.html" -], -"json":[ - "APScanResults.json", - "ClientScanResults.json", - "settings.json", - "attackInfo.json" -], -"commands":[ - "APScan.json", - "APSelect.json", - "ClientScan.json", - "ClientScanTime.json", - "clientSelect.json", - "setName.json", - "attackStart.json", - "settingsSave.json", - "settingsReset.json", - "deleteName.json", - "clearNameList.json", - "editNameList.json", - "addSSID.json", - "cloneSSID.json", - "deleteSSID.json", - "randomSSID.json", - "clearSSID.json", - "resetSSID.json", - "saveSSID.json" -] +{ +"sites":[ + "error404.html", + "style.css", + "functions.js", + "index.html", + "clients.html", + "attack.html", + "settings.html" +], +"json":[ + "APScanResults.json", + "ClientScanResults.json", + "settings.json", + "attackInfo.json" +], +"commands":[ + "APScan.json", + "APSelect.json", + "ClientScan.json", + "ClientScanTime.json", + "clientSelect.json", + "setName.json", + "attackStart.json", + "settingsSave.json", + "settingsReset.json", + "deleteName.json", + "clearNameList.json", + "editNameList.json", + "addSSID.json", + "cloneSSID.json", + "deleteSSID.json", + "randomSSID.json", + "clearSSID.json", + "resetSSID.json", + "saveSSID.json" +] } \ No newline at end of file diff --git a/htmlfiles/minifier.html b/web_server/minifier.html similarity index 96% rename from htmlfiles/minifier.html rename to web_server/minifier.html index c66f59e..a56d6c2 100644 --- a/htmlfiles/minifier.html +++ b/web_server/minifier.html @@ -1,50 +1,50 @@ - - - - - - -
    -

    - - - -
    -
    -

    - + + + + + + +
    +

    + + + +
    +
    +

    + \ No newline at end of file diff --git a/htmlfiles/readme.md b/web_server/readme.md similarity index 85% rename from htmlfiles/readme.md rename to web_server/readme.md index 9d4e48e..d9ba54c 100644 --- a/htmlfiles/readme.md +++ b/web_server/readme.md @@ -1,7 +1,7 @@ -**1** open minifier.html -**2** paste the html code in the upper textfield -**3** click on `minifiy + byte-ify` -**4** copy the results -**5** go to data.h and replace the array (of the changed html file) with the copied bytes - +**1** open minifier.html +**2** paste the html code in the upper textfield +**3** click on `minifiy + byte-ify` +**4** copy the results +**5** go to data.h and replace the array (of the changed html file) with the copied bytes + ** now upload your new sketch :)** \ No newline at end of file diff --git a/web_server/settings.html b/web_server/settings.html new file mode 100644 index 0000000..76ce12d --- /dev/null +++ b/web_server/settings.html @@ -0,0 +1,99 @@ + + + + + + + + +
    +

    Settings

    + +

    WiFi

    + + + +
    + + +
    + + + +

    must have at least 8 characters! (needs restart)

    +
    + + + + +
    +
    +

    AP scan

    + + + + +
    +
    +

    Client Scan

    + + + s + +
    +
    + +

    Attack

    + + + s +

    0 = no timeout

    + + + +
    + + + +
    + + + +

    reason codes: click

    + + + pkts/s +

    only for deauth attack - may cause instability!

    + + + +

    only for deauth attack - packetrate will be ignored!

    +
    + +
    +


    +
    +
    + +

    Client Names

    + + +
    MACVendorNameX
    +
    +

    +
    + + +
    + + + + \ No newline at end of file diff --git a/htmlfiles/style.css b/web_server/style.css similarity index 93% rename from htmlfiles/style.css rename to web_server/style.css index e1be6e3..9aae73e 100644 --- a/htmlfiles/style.css +++ b/web_server/style.css @@ -1,161 +1,161 @@ -/* Global */ - -*, -body { - margin: 0; - padding: 0; - font-family: arial; - color: #432929; -} -h1 { - font-size: 22px; - margin-bottom: 0.6em; - background: #00B0FF; - color: #fff; - padding: 0.2em; - border-radius: 4px; -} -button { - background: #00B0FF; - color: #fff; - border: 1px solid #8F8F8F; - border-radius: 14px; - padding: 0.34em 0.3em; - margin-bottom: 0.6em; -} -button:hover { - color: #000; -} -label { - display: inline-block; - width: 135px; -} -input { - height: 22px; - width: 120px; - border: 1px solid #A99D9D; - border-radius: 5px; - padding: 0.2em; - margin: 2px; -} -input[type="checkbox"] { - height: 15px; - width: auto; -} -.warn { - color: #c20000; -} -.warnBtn { - background: #c20000; - color: #fff; -} -.warnBtn:hover { - background: #f00; - color: #000; -} -.selectedBtn { - background: #fff; - color: #000; -} -.selectedBtn:hover { - background: #00B0FF; - color: #fff; -} -.right { - float: right; -} -.bold { - font-weight: bold; -} -.block { - display: block; -} -.marginNull { - margin: 0 -} -.blue { - color: #00B0FF -} -.small { - font-size: 14px; - color: #727272 -} -/* Navigation */ - -nav { - background: #222; -} -nav a { - background: #222; - color: #999; - padding: 0.5em; - display: inline-block; - text-decoration: none; -} -nav a:hover { - background: #000; - color: #f0f0f0; -} -/* Content */ - -#content { - padding: 0.34em; -} -table { - padding: 0; - width: 100%; - max-width: 960px; - margin: 0 auto; - border-spacing: 0; - background: #222222; -} -table th { - background: #222222; - color: #f0f0f0; -} -table td { - font-size: 14px; - background: #f0f0f0; -} -table th, -table td { - text-align: center; - padding: 0.1em 0; -} -table .selected td { - background: #11a4cc; -} -/* Specific */ - -#saved { - display: inline; -} -#clientScanStatus { - margin-left: 1em; -} -#clientScanStart { - margin-left: 30px; -} -#scanTime { - width: 60px; -} -#apScanStatus { - margin-left: 1em; -} -#rssiBar { - width: 100px; - height: 15px; - background: #fff; -} -#rssiBar > div { - width: 52px; - height: 15px; - background: #c20000; -} -#wpa_info { - padding-left: 0.34em; -} -#saved { - display: inline; - margin-left: 20px; +/* Global */ + +*, +body { + margin: 0; + padding: 0; + font-family: arial; + color: #432929; +} +h1 { + font-size: 22px; + margin-bottom: 0.6em; + background: #00B0FF; + color: #fff; + padding: 0.2em; + border-radius: 4px; +} +button { + background: #00B0FF; + color: #fff; + border: 1px solid #8F8F8F; + border-radius: 14px; + padding: 0.34em 0.3em; + margin-bottom: 0.6em; +} +button:hover { + color: #000; +} +label { + display: inline-block; + width: 135px; +} +input { + height: 22px; + width: 120px; + border: 1px solid #A99D9D; + border-radius: 5px; + padding: 0.2em; + margin: 2px; +} +input[type="checkbox"] { + height: 15px; + width: auto; +} +.warn { + color: #c20000; +} +.warnBtn { + background: #c20000; + color: #fff; +} +.warnBtn:hover { + background: #f00; + color: #000; +} +.selectedBtn { + background: #fff; + color: #000; +} +.selectedBtn:hover { + background: #00B0FF; + color: #fff; +} +.right { + float: right; +} +.bold { + font-weight: bold; +} +.block { + display: block; +} +.marginNull { + margin: 0 +} +.blue { + color: #00B0FF +} +.small { + font-size: 14px; + color: #727272 +} +/* Navigation */ + +nav { + background: #222; +} +nav a { + background: #222; + color: #999; + padding: 0.5em; + display: inline-block; + text-decoration: none; +} +nav a:hover { + background: #000; + color: #f0f0f0; +} +/* Content */ + +#content { + padding: 0.34em; +} +table { + padding: 0; + width: 100%; + max-width: 960px; + margin: 0 auto; + border-spacing: 0; + background: #222222; +} +table th { + background: #222222; + color: #f0f0f0; +} +table td { + font-size: 14px; + background: #f0f0f0; +} +table th, +table td { + text-align: center; + padding: 0.1em 0; +} +table .selected td { + background: #11a4cc; +} +/* Specific */ + +#saved { + display: inline; +} +#clientScanStatus { + margin-left: 1em; +} +#clientScanStart { + margin-left: 30px; +} +#scanTime { + width: 60px; +} +#apScanStatus { + margin-left: 1em; +} +#rssiBar { + width: 100px; + height: 15px; + background: #fff; +} +#rssiBar > div { + width: 52px; + height: 15px; + background: #c20000; +} +#wpa_info { + padding-left: 0.34em; +} +#saved { + display: inline; + margin-left: 20px; } \ No newline at end of file