From df2dd4151290b95ac01bab2d3e1d8a8f196cd291 Mon Sep 17 00:00:00 2001 From: mikecarper Date: Thu, 6 Aug 2026 15:33:40 -0700 Subject: [PATCH] Scope preference saves to changed settings --- examples/simple_repeater/MyMesh.h | 5 +- examples/simple_room_server/MyMesh.h | 5 +- examples/simple_sensor/SensorMesh.h | 5 +- src/helpers/CommonCLI.cpp | 27 +- src/helpers/CommonCLI.h | 15 +- src/helpers/CommonCLI_Observer.cpp | 97 +- src/helpers/PrefsSaveRouting.h | 34 + src/helpers/esp32/WebConfigHtml.h | 2660 +++++++++-------- test/README.md | 1 + .../test_prefs_save_routing.cpp | 31 + webui/index.html | 1 + 11 files changed, 1491 insertions(+), 1390 deletions(-) create mode 100644 src/helpers/PrefsSaveRouting.h create mode 100644 test/test_prefs_save_routing/test_prefs_save_routing.cpp diff --git a/examples/simple_repeater/MyMesh.h b/examples/simple_repeater/MyMesh.h index e8b366e2..44f06655 100644 --- a/examples/simple_repeater/MyMesh.h +++ b/examples/simple_repeater/MyMesh.h @@ -728,8 +728,9 @@ public: return &_prefs; } - void savePrefs() override { - _cli.savePrefs(_fs); + void savePrefs( + PrefsSaveRouting::Scope scope = PrefsSaveRouting::Scope::Common) override { + _cli.savePrefs(_fs, scope); } void onManualClockSet() override; diff --git a/examples/simple_room_server/MyMesh.h b/examples/simple_room_server/MyMesh.h index 491768ac..a02d5a17 100644 --- a/examples/simple_room_server/MyMesh.h +++ b/examples/simple_room_server/MyMesh.h @@ -299,8 +299,9 @@ public: return &_prefs; } - void savePrefs() override { - _cli.savePrefs(_fs); + void savePrefs( + PrefsSaveRouting::Scope scope = PrefsSaveRouting::Scope::Common) override { + _cli.savePrefs(_fs, scope); } void sendFloodScoped(const TransportKey& scope, mesh::Packet* pkt, uint32_t delay_millis, uint8_t path_hash_size); diff --git a/examples/simple_sensor/SensorMesh.h b/examples/simple_sensor/SensorMesh.h index 2b5153fc..42beb481 100644 --- a/examples/simple_sensor/SensorMesh.h +++ b/examples/simple_sensor/SensorMesh.h @@ -64,7 +64,10 @@ public: const char* getRole() override { return FIRMWARE_ROLE; } const char* getNodeName() { return _prefs.node_name; } NodePrefs* getNodePrefs() { return &_prefs; } - void savePrefs() override { _cli.savePrefs(_fs); } + void savePrefs( + PrefsSaveRouting::Scope scope = PrefsSaveRouting::Scope::Common) override { + _cli.savePrefs(_fs, scope); + } bool formatFileSystem() override; void sendSelfAdvertisement(int delay_millis, bool flood) override; void updateAdvertTimer() override; diff --git a/src/helpers/CommonCLI.cpp b/src/helpers/CommonCLI.cpp index 6ef0f764..a46906c6 100644 --- a/src/helpers/CommonCLI.cpp +++ b/src/helpers/CommonCLI.cpp @@ -936,7 +936,7 @@ void CommonCLI::loadPrefs(FILESYSTEM* fs) { if (legacy_upgrade.mayRewriteComPrefs()) { // loadMQTTPrefs has already committed the full MQTT payload (including // any recovered observer tail), so compact only /com_prefs now. - savePrefs(fs, false); + savePrefs(fs, PrefsSaveRouting::Scope::Common); legacy_upgrade.recordComPrefsRewrite(); _com_prefs_needs_upgrade = false; } else { @@ -1607,14 +1607,17 @@ static bool writeCommonPrefsImage(Writer& writer, NodePrefs* prefs) { } #endif -void CommonCLI::savePrefs(FILESYSTEM* fs, bool save_mqtt) { +void CommonCLI::savePrefs(FILESYSTEM* fs, PrefsSaveRouting::Scope scope) { + const PrefsSaveRouting::Plan plan = PrefsSaveRouting::planFor(scope); #ifdef WITH_MQTT_BRIDGE // Observer builds use a verified temp/backup transaction for common prefs. // Radio and bridge changes must never leave a truncated boot-time image. - saveCommonPrefsImageAtomically(fs); - if (save_mqtt) saveMQTTPrefs(fs); + if (plan.common) saveCommonPrefsImageAtomically(fs); + if (plan.observer) saveMQTTPrefs(fs); return; #else + // Observer-only saves are a no-op on roles with no observer preference image. + if (!plan.common) return; #if defined(NRF52_PLATFORM) mesh::AtomicFileWriter file(fs, "/com_prefs"); #elif defined(STM32_PLATFORM) @@ -2321,7 +2324,7 @@ bool CommonCLI::saveMQTTPrefs(FILESYSTEM* fs) { #define MIN_LOCAL_ADVERT_INTERVAL 60 -void CommonCLI::savePrefs() { +void CommonCLI::savePrefs(PrefsSaveRouting::Scope scope) { uint8_t old_advert_interval = _prefs->advert_interval; if (_prefs->advert_interval * 2 < MIN_LOCAL_ADVERT_INTERVAL) { _prefs->advert_interval = 0; // turn it off, now that device has been manually configured @@ -2330,7 +2333,11 @@ void CommonCLI::savePrefs() { if (old_advert_interval != _prefs->advert_interval) { _callbacks->updateAdvertTimer(); } - _callbacks->savePrefs(); + _callbacks->savePrefs(scope); +} + +void CommonCLI::saveObserverPrefs() { + _callbacks->savePrefs(PrefsSaveRouting::Scope::Observer); } uint8_t CommonCLI::buildAdvertData(uint8_t node_type, uint8_t* app_data) { @@ -3424,8 +3431,10 @@ void CommonCLI::handleSetCmd(uint32_t sender_timestamp, char* command, char* rep #ifdef WITH_MQTT_BRIDGE _mqtt_prefs.mqtt_rx_enabled = _prefs->bridge_pkt_src; _mqtt_prefs.mqtt_tx_enabled = !_prefs->bridge_pkt_src; -#endif + savePrefs(PrefsSaveRouting::Scope::Both); +#else savePrefs(); +#endif strcpy(reply, "OK"); } #endif @@ -4253,8 +4262,10 @@ void CommonCLI::handleSetCmd(uint32_t sender_timestamp, char* command, char* rep _mqtt_prefs.mqtt_rx_enabled = 0; _mqtt_prefs.mqtt_tx_enabled = 1; } -#endif + savePrefs(PrefsSaveRouting::Scope::Both); +#else savePrefs(); +#endif strcpy(reply, "OK"); #endif #ifdef WITH_RS232_BRIDGE diff --git a/src/helpers/CommonCLI.h b/src/helpers/CommonCLI.h index c3059ece..7326cbf0 100644 --- a/src/helpers/CommonCLI.h +++ b/src/helpers/CommonCLI.h @@ -6,6 +6,7 @@ #include #include // For MAX_MQTT_SLOTS (used in NodePrefs struct layout) #include +#include #include #ifndef DEFAULT_CAD_ENABLED @@ -247,7 +248,11 @@ struct LegacyObserverTail { class CommonCLICallbacks { public: - virtual void savePrefs() = 0; + // Ordinary CommonCLI setters mutate NodePrefs and therefore save only the + // common image. Observer setters explicitly request Observer; only + // cross-file migration and mixed-owner setters request Both. + virtual void savePrefs( + PrefsSaveRouting::Scope scope = PrefsSaveRouting::Scope::Common) = 0; // Called only after a CLI command successfully changes the RTC. Roles that // derive time from untrusted radio traffic can use this to prefer the manual // value for the remainder of the boot. @@ -531,7 +536,9 @@ class CommonCLI { bool _com_prefs_needs_upgrade = false; // old-format /com_prefs detected; rewrite once after load mesh::RTCClock* getRTCClock() { return _rtc; } - void savePrefs(); + void savePrefs( + PrefsSaveRouting::Scope scope = PrefsSaveRouting::Scope::Common); + void saveObserverPrefs(); void loadPrefsInt(FILESYSTEM* _fs, const char* filename); #ifdef WITH_MQTT_BRIDGE bool recoverCommonPrefsFiles(FILESYSTEM* fs); @@ -575,7 +582,9 @@ public: _sensors(&sensors), _region_map(®ion_map), _acl(&acl) { } void loadPrefs(FILESYSTEM* _fs); - void savePrefs(FILESYSTEM* _fs, bool save_mqtt = true); + void savePrefs( + FILESYSTEM* _fs, + PrefsSaveRouting::Scope scope = PrefsSaveRouting::Scope::Both); void loop(); bool hasActiveUserGpioTimer() const; void handleCommand(uint32_t sender_timestamp, char* command, char* reply); diff --git a/src/helpers/CommonCLI_Observer.cpp b/src/helpers/CommonCLI_Observer.cpp index 1333e86b..b7bf152e 100644 --- a/src/helpers/CommonCLI_Observer.cpp +++ b/src/helpers/CommonCLI_Observer.cpp @@ -1,7 +1,8 @@ // CommonCLI_Observer.cpp - fork-owned observer/MQTT/WiFi/timezone/alert/SNMP CLI // command handling, split out of CommonCLI.cpp so the upstream-tracked file carries // only two small delegation hooks. These are CommonCLI member functions, so they -// retain full access to _prefs/_callbacks/_board/savePrefs() with no re-plumbing. +// retain full access to _prefs/_callbacks/_board/saveObserverPrefs() with no +// re-plumbing. // // Behavior is intentionally identical to the previously-inlined branches. NOTE: // the entire body of each set/get handler here is compiled under WITH_MQTT_BRIDGE @@ -171,11 +172,11 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf if (memcmp(config, "snmp.community ", 15) == 0) { if (valueTooLong(&config[15], sizeof(_mqtt_prefs.snmp_community), reply, "snmp.community")) return true; StrHelper::strncpy(_mqtt_prefs.snmp_community, &config[15], sizeof(_mqtt_prefs.snmp_community)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK - restart to apply"); } else if (memcmp(config, "snmp ", 5) == 0) { _mqtt_prefs.snmp_enabled = memcmp(&config[5], "on", 2) == 0; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK - restart to apply"); } else if (memcmp(config, "radio.watchdog ", 15) == 0) { const char* val = &config[15]; @@ -193,7 +194,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf strcpy(reply, "Error: radio.watchdog must be 0-120 minutes"); } else { _mqtt_prefs.radio_watchdog_minutes = (uint8_t)mins; - savePrefs(); + saveObserverPrefs(); if (mins == 0) { strcpy(reply, "OK - radio watchdog disabled"); } else { @@ -204,13 +205,13 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf #ifdef WITH_MQTT_BRIDGE } else if (strcmp(config, "mqtt.origin") == 0) { _mqtt_prefs.mqtt_origin[0] = '\0'; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.origin ", 12) == 0) { if (valueTooLong(&config[12], sizeof(_mqtt_prefs.mqtt_origin), reply, "origin")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_origin, &config[12], sizeof(_mqtt_prefs.mqtt_origin)); StrHelper::stripSurroundingQuotes(_mqtt_prefs.mqtt_origin, sizeof(_mqtt_prefs.mqtt_origin)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.iata ", 10) == 0) { const char* iata = &config[10]; @@ -219,7 +220,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf // Empty clears the region code (meshcore-topic publishing stays disabled // until one is set). This keeps the pre-existing "clear IATA" capability. _mqtt_prefs.mqtt_iata[0] = '\0'; - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridge(); strcpy(reply, "OK - IATA cleared"); } else { @@ -232,22 +233,22 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf for (int i = 0; _mqtt_prefs.mqtt_iata[i]; i++) { _mqtt_prefs.mqtt_iata[i] = toupper(_mqtt_prefs.mqtt_iata[i]); } - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridge(); strcpy(reply, "OK"); } } } else if (memcmp(config, "mqtt.status ", 12) == 0) { _mqtt_prefs.mqtt_status_enabled = memcmp(&config[12], "on", 2) == 0; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.packets ", 13) == 0) { _mqtt_prefs.mqtt_packets_enabled = memcmp(&config[13], "on", 2) == 0; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.raw ", 9) == 0) { _mqtt_prefs.mqtt_raw_enabled = memcmp(&config[9], "on", 2) == 0; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.tx ", 8) == 0) { if (memcmp(&config[8], "advert", 6) == 0) { @@ -255,17 +256,17 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else { _mqtt_prefs.mqtt_tx_enabled = memcmp(&config[8], "on", 2) == 0 ? 1 : 0; } - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.rx ", 8) == 0) { _mqtt_prefs.mqtt_rx_enabled = memcmp(&config[8], "on", 2) == 0 ? 1 : 0; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.interval ", 14) == 0) { uint32_t minutes = _atoi(&config[14]); if (minutes >= 1 && minutes <= 60) { _mqtt_prefs.mqtt_status_interval = minutes * 60000; - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridge(); sprintf(reply, "OK - interval set to %u minutes (%lu ms), bridge restarted", minutes, (unsigned long)_mqtt_prefs.mqtt_status_interval); } else { @@ -278,7 +279,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf uint32_t hours = _atoi(&config[24]); if (hours >= MQTT_NEIGHBORS_MIN_INTERVAL_HOURS && hours <= MQTT_NEIGHBORS_MAX_INTERVAL_HOURS) { _mqtt_prefs.mqtt_neighbors_interval = hours * 3600000UL; - savePrefs(); + saveObserverPrefs(); sprintf(reply, "OK - neighbors interval set to %u hours (%lu ms)", (unsigned)hours, (unsigned long)_mqtt_prefs.mqtt_neighbors_interval); } else { @@ -288,7 +289,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf // The mesh loop reads this live, so no bridge restart is needed; enabling it // triggers a discovery on the next eligible loop pass. _mqtt_prefs.mqtt_neighbors_enabled = memcmp(&config[15], "on", 2) == 0; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); #elif defined(WITH_MQTT_BRIDGE) } else if (memcmp(config, "mqtt.neighbors.interval ", 24) == 0 || @@ -307,7 +308,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else { StrHelper::strncpy(_mqtt_prefs.mqtt_ntp_server, host, sizeof(_mqtt_prefs.mqtt_ntp_server)); } - savePrefs(); + saveObserverPrefs(); #ifdef ESP_PLATFORM // Queue a sync on the MQTT task (Core 0) but do NOT block: this handler // runs on the Arduino loop task, shared with mesh/radio processing and the @@ -331,14 +332,14 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf const char* value = config[9] == 0 ? config + 9 : config + 10; if (valueTooLong(value, sizeof(_mqtt_prefs.wifi_ssid), reply, "wifi.ssid")) return true; StrHelper::strncpy(_mqtt_prefs.wifi_ssid, value, sizeof(_mqtt_prefs.wifi_ssid)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "wifi.pwd ", 9) == 0 || strcmp(config, "wifi.pwd") == 0) { const char* value = config[8] == 0 ? config + 8 : config + 9; if (valueTooLong(value, sizeof(_mqtt_prefs.wifi_password), reply, "wifi.pwd")) return true; StrHelper::strncpy(_mqtt_prefs.wifi_password, value, sizeof(_mqtt_prefs.wifi_password)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "wifi.powersave ", 15) == 0) { const char* value = &config[15]; @@ -358,7 +359,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf strcpy(reply, "Error: must be none, min, or max"); } else { _mqtt_prefs.wifi_power_save = ps_value; - savePrefs(); + saveObserverPrefs(); #ifdef ESP_PLATFORM if (WiFi.status() == WL_CONNECTED) { wifi_ps_type_t ps_mode = (ps_value == 1) ? WIFI_PS_NONE : @@ -382,13 +383,13 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else if (memcmp(config, "timezone ", 9) == 0) { if (valueTooLong(&config[9], sizeof(_mqtt_prefs.timezone_string), reply, "timezone")) return true; StrHelper::strncpy(_mqtt_prefs.timezone_string, &config[9], sizeof(_mqtt_prefs.timezone_string)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else if (memcmp(config, "timezone.offset ", 16) == 0) { int8_t offset = _atoi(&config[16]); if (offset >= -12 && offset <= 14) { _mqtt_prefs.timezone_offset = offset; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else { strcpy(reply, "Error: timezone offset must be between -12 and +14"); @@ -418,7 +419,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf sprintf(reply, "Error: preset '%s' is already assigned to slot %d", preset_name, dup_slot + 1); } else { StrHelper::strncpy(_mqtt_prefs.mqtt_slot_preset[slot], preset_name, sizeof(_mqtt_prefs.mqtt_slot_preset[slot])); - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); // Check if the slot has everything it needs to connect const MQTTPresetDef* p = findMQTTPreset(preset_name); @@ -477,7 +478,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else if (memcmp(subcmd, "server ", 7) == 0) { if (valueTooLong(&subcmd[7], sizeof(_mqtt_prefs.mqtt_slot_host[slot]), reply, "server")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_slot_host[slot], &subcmd[7], sizeof(_mqtt_prefs.mqtt_slot_host[slot])); - savePrefs(); + saveObserverPrefs(); // Reconfigure the slot so the new host reaches the live connection (other // custom-slot setters do the same; without it the change only applies on // the next reboot/bridge restart). @@ -487,7 +488,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf int port = atoi(&subcmd[5]); if (port > 0 && port <= 65535) { _mqtt_prefs.mqtt_slot_port[slot] = port; - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); strcpy(reply, "OK"); } else { @@ -496,19 +497,19 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else if (memcmp(subcmd, "username ", 9) == 0) { if (valueTooLong(&subcmd[9], sizeof(_mqtt_prefs.mqtt_slot_username[slot]), reply, "username")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_slot_username[slot], &subcmd[9], sizeof(_mqtt_prefs.mqtt_slot_username[slot])); - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); strcpy(reply, "OK"); } else if (memcmp(subcmd, "password ", 9) == 0) { if (valueTooLong(&subcmd[9], sizeof(_mqtt_prefs.mqtt_slot_password[slot]), reply, "password")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_slot_password[slot], &subcmd[9], sizeof(_mqtt_prefs.mqtt_slot_password[slot])); - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); strcpy(reply, "OK"); } else if (memcmp(subcmd, "token ", 6) == 0) { if (valueTooLong(&subcmd[6], sizeof(_mqtt_prefs.mqtt_slot_token[slot]), reply, "token")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_slot_token[slot], &subcmd[6], sizeof(_mqtt_prefs.mqtt_slot_token[slot])); - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); sprintf(reply, "OK - slot %d token set", slot + 1); } else if (memcmp(subcmd, "topic ", 6) == 0) { @@ -518,14 +519,14 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf return true; } else { StrHelper::strncpy(_mqtt_prefs.mqtt_slot_topic[slot], &subcmd[6], sizeof(_mqtt_prefs.mqtt_slot_topic[slot])); - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); sprintf(reply, "OK - slot %d topic: %s", slot + 1, _mqtt_prefs.mqtt_slot_topic[slot]); } } else if (memcmp(subcmd, "audience ", 9) == 0) { if (valueTooLong(&subcmd[9], sizeof(_mqtt_prefs.mqtt_slot_audience[slot]), reply, "audience")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_slot_audience[slot], &subcmd[9], sizeof(_mqtt_prefs.mqtt_slot_audience[slot])); - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); if (_mqtt_prefs.mqtt_slot_audience[slot][0] != '\0') { sprintf(reply, "OK - slot %d JWT audience: %s", slot + 1, _mqtt_prefs.mqtt_slot_audience[slot]); @@ -535,7 +536,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else if (memcmp(subcmd, "audience", 8) == 0 && subcmd[8] == '\0') { // "set mqttN.audience" with no value - clear the audience _mqtt_prefs.mqtt_slot_audience[slot][0] = '\0'; - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); sprintf(reply, "OK - slot %d JWT audience cleared (using username/password auth)", slot + 1); } else { @@ -548,7 +549,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else { StrHelper::strncpy(_mqtt_prefs.mqtt_slot_preset[slot], MQTT_PRESET_NONE, sizeof(_mqtt_prefs.mqtt_slot_preset[slot])); } - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); strcpy(reply, "OK"); } else if (memcmp(config, "mqtt.analyzer.eu ", 17) == 0) { @@ -558,12 +559,12 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else { StrHelper::strncpy(_mqtt_prefs.mqtt_slot_preset[slot], MQTT_PRESET_NONE, sizeof(_mqtt_prefs.mqtt_slot_preset[slot])); } - savePrefs(); + saveObserverPrefs(); _callbacks->restartBridgeSlot(slot); strcpy(reply, "OK"); } else if (strcmp(config, "mqtt.owner") == 0 || strcmp(config, "mqtt.owner ") == 0) { _mqtt_prefs.mqtt_owner_public_key[0] = '\0'; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK - owner cleared"); } else if (memcmp(config, "mqtt.owner ", 11) == 0) { const char* owner_key = &config[11]; @@ -571,11 +572,11 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf // Owner key is optional -- empty clears it (previously this errored, so a // set key could never be removed via the portal/CLI). _mqtt_prefs.mqtt_owner_public_key[0] = '\0'; - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK - owner key cleared"); } else if (mqttOwnerKeyValid(owner_key)) { StrHelper::strncpy(_mqtt_prefs.mqtt_owner_public_key, owner_key, sizeof(_mqtt_prefs.mqtt_owner_public_key)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); } else { strcpy(reply, "Error: public key must be 64 hex characters (32 bytes)"); @@ -583,7 +584,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else if (memcmp(config, "mqtt.email ", 11) == 0) { if (valueTooLong(&config[11], sizeof(_mqtt_prefs.mqtt_email), reply, "email")) return true; StrHelper::strncpy(_mqtt_prefs.mqtt_email, &config[11], sizeof(_mqtt_prefs.mqtt_email)); - savePrefs(); + saveObserverPrefs(); strcpy(reply, "OK"); #endif } else if (memcmp(config, "alert ", 6) == 0) { @@ -591,12 +592,12 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf const char* val = &config[6]; if (memcmp(val, "on", 2) == 0 && (val[2] == 0 || val[2] == ' ')) { _mqtt_prefs.alert_enabled = 1; - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); strcpy(reply, "OK - alerts on"); } else if (memcmp(val, "off", 3) == 0 && (val[3] == 0 || val[3] == ' ')) { _mqtt_prefs.alert_enabled = 0; - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); strcpy(reply, "OK - alerts off"); } else { @@ -611,7 +612,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf if (len == 0) { _mqtt_prefs.alert_psk_hex[0] = '\0'; _mqtt_prefs.alert_hashtag[0] = '\0'; - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); strcpy(reply, "OK - alert.psk cleared (alerts disabled until configured)"); } else if (val[0] == '#') { @@ -645,7 +646,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf // The new PSK is operator-supplied, so any previously-derived // hashtag name is no longer accurate provenance - drop it. _mqtt_prefs.alert_hashtag[0] = '\0'; - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); strcpy(reply, "OK - alert.psk updated"); } @@ -658,7 +659,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf if (in_len == 0) { _mqtt_prefs.alert_psk_hex[0] = '\0'; _mqtt_prefs.alert_hashtag[0] = '\0'; - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); strcpy(reply, "OK - alert.hashtag cleared (alerts disabled until configured)"); } else { @@ -694,7 +695,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf mesh::Utils::toHex(hex, digest, 16); StrHelper::strncpy(_mqtt_prefs.alert_hashtag, hashtag, sizeof(_mqtt_prefs.alert_hashtag)); StrHelper::strncpy(_mqtt_prefs.alert_psk_hex, hex, sizeof(_mqtt_prefs.alert_psk_hex)); - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); sprintf(reply, "OK - alert.hashtag: %s", _mqtt_prefs.alert_hashtag); } @@ -712,7 +713,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf size_t len = strlen(val); if (len == 0) { _mqtt_prefs.alert_region[0] = '\0'; - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); strcpy(reply, "OK - alert.region cleared (using default scope)"); } else if (len >= sizeof(_mqtt_prefs.alert_region)) { @@ -720,7 +721,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf } else { StrHelper::strncpy(_mqtt_prefs.alert_region, val, sizeof(_mqtt_prefs.alert_region)); StrHelper::stripSurroundingQuotes(_mqtt_prefs.alert_region, sizeof(_mqtt_prefs.alert_region)); - savePrefs(); + saveObserverPrefs(); _callbacks->onAlertConfigChanged(); sprintf(reply, "OK - alert.region: %s", _mqtt_prefs.alert_region); } @@ -730,7 +731,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf strcpy(reply, "Error: alert.wifi must be 0-1440 minutes (0=off)"); } else { _mqtt_prefs.alert_wifi_minutes = (uint16_t)mins; - savePrefs(); + saveObserverPrefs(); sprintf(reply, "OK - alert.wifi %d min%s", mins, mins == 0 ? " (disabled)" : ""); } } else if (memcmp(config, "alert.mqtt ", 11) == 0) { @@ -739,7 +740,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf strcpy(reply, "Error: alert.mqtt must be 0-10080 minutes (0=off)"); } else { _mqtt_prefs.alert_mqtt_minutes = (uint16_t)mins; - savePrefs(); + saveObserverPrefs(); sprintf(reply, "OK - alert.mqtt %d min%s", mins, mins == 0 ? " (disabled)" : ""); } } else if (memcmp(config, "alert.interval ", 15) == 0) { @@ -750,7 +751,7 @@ bool CommonCLI::handleObserverSetCmd(uint32_t sender_timestamp, const char* conf strcpy(reply, "Error: alert.interval must be 60-10080 minutes"); } else { _mqtt_prefs.alert_min_interval_min = (uint16_t)mins; - savePrefs(); + saveObserverPrefs(); sprintf(reply, "OK - alert.interval %d min", mins); } } else { diff --git a/src/helpers/PrefsSaveRouting.h b/src/helpers/PrefsSaveRouting.h new file mode 100644 index 00000000..2f40c6d7 --- /dev/null +++ b/src/helpers/PrefsSaveRouting.h @@ -0,0 +1,34 @@ +#pragma once + +#include + +// Keep runtime preference writes scoped to the file that owns the changed +// value. Observer builds have two independently durable images: +// +// Common -> /com_prefs (radio, identity-facing settings, admin password) +// Observer -> /mqtt_prefs (WiFi, MQTT, timezone, SNMP, alerts) +// +// Cross-file migration and the mixed-owner bridge.source setter need Both. +// Rewriting both images for every other CLI setter adds a second verified +// write/rename transaction and can exceed config.meshcore.io's five-second +// serial command deadline. +namespace PrefsSaveRouting { + +enum class Scope : uint8_t { + Common = 0, + Observer, + Both, +}; + +struct Plan { + bool common; + bool observer; +}; + +constexpr Plan planFor(Scope scope) { + return scope == Scope::Common ? Plan{true, false} + : scope == Scope::Observer ? Plan{false, true} + : Plan{true, true}; +} + +} // namespace PrefsSaveRouting diff --git a/src/helpers/esp32/WebConfigHtml.h b/src/helpers/esp32/WebConfigHtml.h index bf79396d..8b99a7ea 100644 --- a/src/helpers/esp32/WebConfigHtml.h +++ b/src/helpers/esp32/WebConfigHtml.h @@ -4,1331 +4,1339 @@ #include #include -const uint32_t WEBCONFIG_HTML_GZ_LEN = 21181; -const char WEBCONFIG_HTML_ETAG[] = "\"d663a26a30ddf685\""; +const uint32_t WEBCONFIG_HTML_GZ_LEN = 21308; +const char WEBCONFIG_HTML_ETAG[] = "\"b059385fe3505f65\""; const uint8_t WEBCONFIG_HTML_GZ[] PROGMEM = { - 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xd5,0x7d,0x6b,0x43,0xe3,0x46, - 0xb2,0xe8,0xf7,0xf9,0x15,0x1a,0x25,0x0b,0x56,0x90,0x85,0x6d,0x1e,0xc3,0xd8,0x18, - 0x2e,0x21,0x93,0xcd,0x6c,0xe6,0x75,0x06,0x72,0x92,0x73,0x08,0x3b,0x2b,0xdb,0x32, - 0x56,0x90,0x25,0x45,0x92,0x31,0x8c,0xe1,0xfe,0xf6,0x5b,0x8f,0xee,0x56,0xeb,0x61, - 0x63,0x26,0xb3,0xf7,0xdc,0xbb,0xd9,0x04,0x4b,0xea,0x67,0x75,0x75,0xbd,0xba,0xaa, - 0xfa,0xf0,0xf9,0x0f,0xef,0x4f,0xcf,0xff,0xeb,0xc3,0x2b,0x63,0x92,0x4d,0x83,0xa3, - 0x67,0x87,0xf8,0xc7,0x08,0xdc,0xf0,0xaa,0x6f,0x7a,0xa1,0x89,0x2f,0x3c,0x77,0x04, - 0x7f,0xa6,0x5e,0xe6,0x1a,0xc3,0x89,0x9b,0xa4,0x5e,0xd6,0x37,0x67,0xd9,0xb8,0x79, - 0x60,0xca,0xd7,0xa1,0x3b,0xf5,0xfa,0xe6,0x8d,0xef,0xcd,0xe3,0x28,0xc9,0x4c,0x63, - 0x18,0x85,0x99,0x17,0x42,0xb1,0xb9,0x3f,0xca,0x26,0xfd,0x91,0x77,0xe3,0x0f,0xbd, - 0x26,0x3d,0xd8,0x86,0x1f,0xfa,0x99,0xef,0x06,0xcd,0x74,0xe8,0x06,0x5e,0xbf,0x6d, - 0x1b,0x53,0xf7,0xd6,0x9f,0xce,0xa6,0xf9,0x0b,0xd9,0x50,0x73,0xec,0x67,0xfd,0x61, - 0x74,0xe3,0x25,0xd8,0x53,0xe6,0x67,0x81,0x77,0xf4,0xd6,0x4b,0x27,0xa7,0x51,0xe2, - 0x19,0xa7,0x51,0x38,0xf6,0xaf,0x0e,0xb7,0xf9,0xf5,0xb3,0xc3,0x34,0xbb,0xc3,0xbf, - 0xdd,0x24,0x8a,0xb2,0xc5,0x33,0xc3,0x68,0x36,0x07,0x57,0xdd,0x6f,0xc6,0xbb,0xe3, - 0xfd,0xf1,0x41,0x0f,0x9e,0x86,0x6e,0x32,0x82,0xe7,0xf1,0x18,0x1f,0xfc,0xf0,0xba, - 0xfb,0x4d,0xdb,0xed,0xec,0xec,0xb4,0xf0,0x71,0x3a,0xcb,0xba,0xdf,0xec,0xef,0xbf, - 0xd8,0x39,0x70,0xf1,0x31,0xf0,0x43,0xaf,0xfb,0x8d,0xd7,0xf1,0x5e,0x78,0x5e,0x8f, - 0x9a,0x72,0x87,0xc3,0xee,0x37,0x9d,0xc1,0x8b,0x91,0xf7,0xb2,0xc7,0x8f,0xdc,0x84, - 0x68,0x2e,0xc2,0xd6,0x46,0x2f,0x47,0x7b,0xf4,0xe4,0x25,0x49,0xf7,0x9b,0xd1,0xfe, - 0xee,0xde,0xee,0x1e,0x3e,0xce,0xdd,0x24,0xec,0x7e,0x33,0x3c,0x38,0x78,0xd1,0x76, - 0xb9,0xb5,0xe1,0xc4,0x8f,0xa1,0x7d,0x6f,0xdc,0x19,0xbf,0xe0,0xd1,0xf0,0x58,0xe5, - 0xd8,0xc4,0x00,0x86,0x07,0xa3,0xce,0xc8,0xc3,0x57,0xe9,0xc4,0x1d,0x45,0xf3,0x6e, - 0xcb,0x68,0xc7,0xb7,0xc6,0x0e,0xfc,0x9b,0x5c,0x0d,0xdc,0x46,0x7b,0xdf,0xee,0x1c, - 0xd8,0xbb,0x7b,0xb6,0xd3,0x3a,0xb0,0x7a,0xcf,0x1e,0x9e,0xfd,0xaf,0xa9,0x37,0xf2, - 0x5d,0xa3,0x11,0x27,0xde,0xd8,0x4b,0xd2,0xe6,0x30,0x0a,0xa2,0x04,0xc0,0x3a,0xf1, - 0xa6,0x5e,0x77,0xe4,0x26,0xd7,0xd6,0xa2,0x04,0x9e,0x76,0xab,0xbd,0xd7,0x1e,0xe6, - 0xe0,0x01,0x90,0xb4,0x3b,0x03,0x05,0x21,0x6f,0xdf,0x1b,0x8c,0x3b,0x0a,0x42,0x07, - 0x83,0x97,0x07,0xee,0x20,0x87,0x50,0xc7,0xdd,0xd9,0xdd,0xed,0x68,0x10,0xda,0x75, - 0x5f,0xee,0x8e,0x09,0xa2,0x3c,0xc5,0xce,0x4e,0x67,0xb4,0xe3,0x6a,0x53,0x6c,0xef, - 0x42,0x0f,0x9d,0xc2,0x2c,0x77,0xdc,0xdd,0xfd,0xbd,0xfd,0xe5,0xb3,0x6c,0xd9,0xf8, - 0x8f,0xb3,0x8b,0x33,0x7c,0x78,0xf6,0xdd,0x62,0x10,0xdd,0x36,0x53,0xff,0xb3,0x1f, - 0x5e,0x75,0x07,0x51,0x32,0xf2,0x92,0x26,0xbc,0xe9,0x4d,0xdd,0xe4,0xca,0x0f,0xbb, - 0xad,0x87,0x67,0x88,0xbf,0x8b,0xe6,0xdc,0x1b,0x5c,0xfb,0x59,0x33,0xf3,0x6e,0x33, - 0x2c,0xed,0x35,0xdd,0xd1,0x1f,0xb3,0x34,0xeb,0xb6,0x5b,0xad,0xbf,0x3d,0x3c,0x1b, - 0x44,0xa3,0xbb,0xc5,0x18,0x90,0xb4,0xdb,0xde,0x8b,0x6f,0xb7,0xdb,0xce,0xee,0x9e, - 0x91,0xde,0xa5,0x99,0x37,0x6d,0xce,0x7c,0xbb,0xe9,0xc6,0x71,0xe0,0x35,0xf9,0x85, - 0x6d,0x9e,0x79,0x57,0x91,0x67,0xfc,0xf2,0xda,0xb4,0x3f,0x46,0x83,0x28,0x8b,0xec, - 0xd4,0x0d,0xd3,0x66,0xea,0x25,0xfe,0xb8,0x37,0x70,0x87,0xd7,0x57,0x49,0x34,0x0b, - 0x47,0xdd,0x1b,0x37,0x69,0x20,0x50,0xad,0x1e,0x81,0x5d,0x3c,0x03,0x18,0xad,0x5e, - 0xec,0x8e,0x46,0x30,0x5e,0x18,0x68,0x96,0x45,0xd3,0xee,0xcb,0x56,0x7c,0xdb,0x43, - 0xac,0x1e,0x07,0xd1,0xbc,0x79,0xdb,0x9d,0xf8,0xa3,0x91,0x17,0xc2,0xc8,0xdb,0x34, - 0x26,0x1a,0x6f,0xb7,0xfd,0x02,0x0a,0xd1,0xe3,0xdc,0xf3,0xaf,0x26,0x59,0x77,0x7f, - 0x0f,0x27,0xd7,0xd1,0x8b,0xec,0x56,0x8b,0xf4,0x68,0xc6,0x59,0x02,0x43,0x1c,0x47, - 0xc9,0xb4,0x3b,0x8b,0x63,0x2f,0x19,0xba,0xa9,0xd7,0x0b,0xbc,0x2c,0x03,0x60,0xa5, - 0xb1,0x3b,0x44,0xd8,0x39,0xad,0x3d,0x6f,0x5a,0x18,0x2a,0x2c,0xb1,0x25,0xe1,0xd8, - 0xe9,0x00,0xf8,0x61,0x21,0x60,0xa4,0xd8,0x69,0x77,0xec,0x27,0x69,0x86,0x8b,0x1a, - 0x8c,0x16,0x5c,0xa4,0x99,0x45,0x31,0x82,0xdb,0x5d,0xe8,0x6d,0x00,0x16,0x58,0x50, - 0x01,0x28,0x86,0x97,0x2c,0x46,0x7e,0x1a,0x07,0xee,0x5d,0x77,0x1c,0x78,0xb7,0x3d, - 0x37,0xf0,0xaf,0xc2,0xa6,0x0f,0x10,0x4d,0xbb,0x43,0xa0,0x0d,0x5e,0xd2,0xbb,0x72, - 0xe3,0x2e,0xf6,0x20,0xe1,0xd3,0x6d,0x63,0xaf,0xed,0x7d,0x78,0x53,0x81,0x2b,0xa2, - 0xa7,0xd5,0x53,0x0b,0x4e,0x70,0x44,0x34,0x49,0xa3,0xc0,0x1f,0x19,0x5c,0x06,0xf1, - 0x09,0x80,0x1d,0xa5,0x40,0x5f,0xa2,0xb0,0x9b,0x66,0xfe,0xf0,0xfa,0xae,0x47,0xe3, - 0xec,0x7d,0x86,0x95,0x18,0x79,0xb7,0xd0,0x9f,0x1c,0x9e,0x91,0xde,0x5c,0x2d,0x70, - 0x68,0xdd,0x30,0x0a,0xbd,0x87,0x67,0xce,0x04,0x49,0xd9,0x62,0x0a,0x53,0x23,0x42, - 0x85,0x93,0xe3,0x77,0xc6,0xc8,0xbf,0xd1,0xc1,0x0e,0xa3,0xac,0x02,0x6e,0x3e,0x81, - 0xb9,0x11,0x74,0x3d,0x68,0x70,0x9e,0xb8,0xb1,0x5a,0x62,0xb1,0xc0,0xbc,0x34,0xea, - 0xa5,0x17,0x04,0x7e,0x9c,0xfa,0x29,0xf4,0x32,0x70,0x47,0x57,0x9e,0x84,0x6b,0xe0, - 0x8d,0xb3,0xae,0x3b,0xcb,0xa2,0x9e,0x1a,0x5c,0x4f,0xeb,0xbc,0x5d,0xb3,0xe6,0x12, - 0x7e,0xb8,0x67,0x5e,0x22,0xf4,0x18,0x4c,0x89,0x3b,0xf2,0x67,0x69,0xf7,0xe5,0xcb, - 0x5a,0x80,0xc2,0x06,0xb5,0x2a,0xd3,0x90,0x83,0x71,0x80,0xc8,0xcf,0xe2,0x85,0x56, - 0xeb,0x9b,0xf1,0x8e,0x77,0x30,0xda,0x11,0x35,0xbe,0x39,0x70,0xf7,0x86,0xad,0xd6, - 0x5a,0x24,0x67,0x69,0x8b,0x3b,0x6e,0x67,0xdc,0xde,0x95,0x2d,0x7a,0xad,0xc1,0xee, - 0xde,0x10,0xb6,0xf8,0xd4,0xf5,0x43,0x00,0xc6,0xad,0x58,0x86,0xfd,0x5d,0x44,0x11, - 0xb9,0xbf,0x0d,0x82,0x8c,0x42,0x98,0x7d,0xc4,0x4f,0x07,0x91,0x63,0xb1,0x12,0x65, - 0x96,0xe0,0x4a,0x11,0x50,0xb4,0xb0,0x7a,0xd3,0x3d,0xa2,0x35,0x4c,0x95,0xb8,0x1a, - 0x3f,0xc8,0x6d,0xa2,0x10,0x71,0x97,0x86,0x91,0xb9,0x83,0xb4,0x88,0xf4,0x88,0xe1, - 0xbb,0xcb,0xa1,0x2f,0xfb,0xda,0xad,0xac,0x59,0x3b,0x9f,0x73,0x4d,0x27,0xc6,0x60, - 0x06,0xaf,0x42,0xc6,0xde,0xb6,0x9c,0x62,0x4b,0xef,0x86,0xd0,0xa6,0x82,0xa4,0x44, - 0xf2,0xfc,0x70,0x02,0xb4,0x2b,0xd3,0x91,0x6a,0xc7,0xd9,0x2b,0xa3,0x55,0x2b,0x47, - 0x2b,0xa0,0x44,0x46,0x75,0x88,0x48,0x9f,0x86,0xb3,0x24,0x85,0x1e,0xe2,0xc8,0xc7, - 0x0d,0x5d,0x1c,0x9d,0x03,0x03,0x5c,0xb2,0x26,0x15,0x02,0xb9,0x0c,0xce,0xd0,0xe2, - 0x78,0x51,0x02,0xc3,0x0e,0x81,0x61,0x0c,0x22,0xca,0xc0,0x0b,0x14,0xb8,0x07,0x41, - 0x34,0xbc,0xd6,0xa7,0xd4,0xa9,0x9d,0x52,0xb1,0xad,0x5d,0xd1,0x94,0x33,0x81,0xf1, - 0xeb,0x3b,0xbc,0x4d,0x95,0x97,0x10,0x47,0xa2,0x7c,0x34,0x0a,0x3f,0x8c,0x67,0xd9, - 0x45,0x76,0x17,0x7b,0x7d,0xdc,0xdb,0x97,0xb6,0xf6,0x22,0x76,0xd3,0x74,0x0e,0x00, - 0x2b,0xbc,0x0c,0x67,0xd3,0x81,0x97,0x14,0x5e,0x79,0x80,0xee,0xc1,0xa5,0x9d,0x7a, - 0x81,0x37,0x24,0xc6,0xcc,0x58,0x8f,0x7c,0x4a,0x2d,0xc0,0x01,0x92,0xc5,0x96,0x98, - 0x4e,0xdd,0xfa,0xed,0x97,0x46,0xcb,0x40,0x2d,0x03,0x9f,0x78,0xb0,0x85,0xec,0x7a, - 0xc9,0xa6,0x10,0x3c,0xb9,0xbc,0x2f,0x0e,0x90,0x5d,0xcd,0x32,0x62,0xd7,0x44,0x2b, - 0x0d,0x63,0xfb,0x3b,0xe3,0xa8,0x8f,0xdd,0x76,0x8d,0x14,0xc0,0x91,0x1a,0xfe,0xfb, - 0x33,0xe3,0x73,0x14,0x4d,0x9b,0x51,0xd8,0x1c,0x47,0xc3,0x59,0x6a,0x34,0x52,0x7f, - 0xe4,0xcd,0xdd,0x3b,0x60,0x95,0xc3,0x24,0x0a,0x02,0x90,0xfb,0x8c,0xa1,0x1b,0x67, - 0xfe,0x8d,0x67,0xa4,0x13,0xcf,0xcb,0x2c,0xe3,0xbb,0x6d,0x06,0x61,0x97,0x6a,0x08, - 0x18,0xf0,0xc3,0x42,0x0c,0xa1,0xcc,0x5c,0x74,0x54,0x69,0x19,0xf8,0x0f,0xf2,0x0c, - 0xa6,0x3a,0x53,0xff,0xb6,0x01,0x9d,0xa4,0x20,0x36,0xd8,0x79,0x0d,0xa3,0xb3,0xf7, - 0x37,0x9b,0x18,0x62,0xec,0x26,0xc0,0x78,0x2c,0xb1,0x6e,0xce,0xc8,0x4f,0xb2,0x3b, - 0xd1,0x29,0x3f,0xd4,0x75,0x8a,0xd2,0x1b,0xe2,0x61,0x12,0xcd,0xab,0x7b,0x9b,0xf8, - 0x23,0x7e,0x3a,0x02,0x3c,0x15,0xbb,0xb1,0xc8,0x40,0xd2,0xf9,0xa3,0x6c,0x10,0xe5, - 0x12,0x7f,0x7c,0xd7,0x14,0x42,0x73,0x97,0x78,0x48,0x73,0xe0,0x65,0x73,0x0f,0x98, - 0x46,0x85,0x49,0xbe,0x44,0xce,0x4c,0x2d,0x1b,0x50,0x32,0x34,0x06,0xcb,0xf7,0x40, - 0xed,0xb6,0xd6,0xaa,0xfa,0x02,0xe7,0x51,0x72,0x86,0x95,0x4d,0xa6,0x6e,0xd0,0x7b, - 0x74,0x17,0xe0,0x2e,0xbf,0x0a,0x16,0x8a,0xcd,0x26,0x5e,0xe0,0xe2,0xa2,0xf6,0x78, - 0xd2,0xbb,0x48,0x44,0x27,0xdc,0x5b,0x87,0x04,0x14,0x8d,0xc5,0x42,0x45,0x83,0x80, - 0x9f,0x57,0x07,0x82,0x11,0x05,0xb3,0xcc,0xeb,0x45,0x28,0x98,0x64,0x77,0x40,0xc6, - 0xb4,0x1d,0x20,0x1a,0xa2,0xdf,0x92,0x05,0xd4,0x50,0x1d,0x68,0x76,0x56,0xd3,0xa4, - 0x1f,0x02,0xd3,0x29,0xd2,0xc5,0x95,0x88,0x4e,0x9c,0x92,0x50,0x85,0x1b,0x72,0xda, - 0x7b,0x69,0x4f,0x74,0xd3,0xf4,0x6e,0x60,0x71,0x52,0x7d,0x26,0xb3,0xee,0xc0,0x03, - 0x21,0xcb,0x5b,0xc8,0x95,0x33,0xcd,0x5e,0x75,0x10,0x82,0x5a,0xf4,0x88,0xaf,0xe3, - 0x0f,0x31,0xbd,0x83,0x1c,0x4e,0xf4,0xbb,0xc0,0x6b,0x41,0x13,0x28,0x0e,0x6d,0x0f, - 0x00,0x50,0x1a,0x99,0x0e,0xcf,0x2e,0x30,0xdc,0xe1,0xb5,0x37,0xda,0x9a,0x55,0x69, - 0x2e,0xcb,0x64,0x75,0x65,0xe5,0xf8,0x69,0x68,0x9d,0x36,0x92,0x34,0x41,0xbb,0x07, - 0x59,0xa8,0xd0,0xca,0x0f,0x11,0x56,0xcd,0x75,0xd1,0x57,0x13,0xee,0xf6,0x15,0xd3, - 0x80,0x45,0x58,0x46,0xbb,0xea,0x84,0x58,0x20,0x51,0x3a,0xba,0xb7,0xf7,0xab,0x42, - 0x4d,0x85,0xfb,0xf4,0x6a,0x27,0xde,0x2b,0x11,0x10,0x22,0x8d,0xfa,0x34,0x41,0x2e, - 0x19,0x2e,0xd6,0x90,0x8e,0xca,0xf5,0xba,0x00,0x1e,0x77,0x10,0x78,0xa3,0x85,0x44, - 0x5c,0x67,0x4f,0x8e,0x68,0xe4,0x8d,0xdd,0x59,0x90,0x15,0xbb,0x99,0x2e,0x2a,0xdc, - 0x49,0xce,0x71,0x5f,0xd0,0x77,0x14,0x65,0xa0,0xe3,0x32,0xe4,0x2b,0xfb,0x7a,0x95, - 0x0c,0x88,0xe4,0xf0,0xa0,0x5e,0x06,0xd4,0x05,0x4c,0x84,0x28,0x48,0xa2,0x20,0x22, - 0x83,0x26,0x4e,0xab,0xda,0x6d,0xab,0x01,0x38,0xd1,0xb5,0x0e,0x92,0x65,0xd4,0x35, - 0xba,0xb6,0x8c,0x76,0x89,0xb8,0x16,0x60,0x16,0x21,0xc8,0xb8,0x45,0xd0,0x89,0xd7, - 0x69,0x12,0x8a,0x3d,0xd2,0x26,0x96,0x40,0x12,0xe6,0xde,0x78,0x03,0x37,0xc9,0x37, - 0xfd,0xd8,0xbf,0xf5,0x46,0xbc,0xc9,0x5a,0xbd,0x84,0xc0,0x02,0x1b,0x9f,0xf9,0x7c, - 0x2e,0xfe,0x77,0x5a,0x8f,0xa8,0x16,0xb8,0x5b,0xeb,0x65,0x45,0x0d,0x27,0x71,0xad, - 0x08,0x29,0x81,0xa1,0x05,0xc3,0x06,0x3d,0x6e,0x19,0x5e,0x78,0xd3,0x48,0xdd,0x31, - 0xa8,0x9a,0x89,0xe7,0x36,0x89,0xf6,0x08,0x41,0xc3,0xb2,0x7a,0x72,0x49,0x49,0x2e, - 0x5b,0xa6,0x0b,0x75,0x68,0x05,0xc4,0xd4,0x9c,0x74,0x52,0x62,0x39,0xf9,0x37,0x20, - 0xfa,0x65,0x32,0xaf,0x7d,0x74,0xd2,0x58,0x30,0x23,0x7c,0x19,0x80,0xbe,0xff,0x14, - 0x21,0xb8,0xac,0x90,0x95,0xc5,0x50,0xc6,0x53,0x6c,0x16,0x3a,0xca,0xd6,0x52,0xf2, - 0x0e,0x1e,0x6b,0xa5,0x7e,0x3e,0xb1,0x1f,0x04,0xfa,0xfb,0x56,0x85,0x9d,0xbd,0x68, - 0xad,0x85,0xf8,0x6b,0x2a,0x3f,0x4f,0xd0,0x9d,0x77,0xbd,0xa9,0x18,0xe0,0xd7,0xdd, - 0x2b,0xd4,0xe2,0x18,0x24,0x42,0x9b,0x7f,0x02,0x74,0x87,0x5f,0x75,0xdf,0x50,0xab, - 0x73,0xd7,0xcf,0xd6,0x69,0x95,0x64,0x9f,0xd5,0xcd,0x4a,0xf1,0x28,0xf3,0x03,0x2f, - 0x57,0x7e,0xae,0x12,0x7f,0xd4,0xc3,0xff,0x34,0x01,0x15,0xe0,0x0d,0x68,0xc6,0x50, - 0x69,0x36,0x0d,0x53,0x10,0x17,0x62,0xcf,0xcd,0x1a,0xa8,0xc6,0x35,0xc7,0x30,0x18, - 0x1b,0xe4,0x25,0x50,0xf6,0x1a,0x6d,0x54,0xf3,0xec,0xf6,0x38,0x81,0xcd,0xa2,0x44, - 0x2b,0x6e,0x77,0x19,0x79,0x5e,0x85,0xb8,0xb4,0x43,0x3b,0xaa,0x89,0x5a,0x51,0x67, - 0xa9,0xdc,0x54,0x47,0x5f,0xff,0x32,0xb2,0xd0,0x30,0x0a,0x78,0x7e,0x50,0x67,0xe1, - 0xe1,0x72,0xe9,0x82,0x9a,0x1f,0x79,0xc3,0x28,0x71,0x89,0xbe,0x55,0xec,0x00,0x4b, - 0x84,0xb3,0xa1,0x1b,0xde,0xb8,0xe9,0xa2,0x2a,0x43,0xed,0x21,0xc9,0x2f,0x4c,0x19, - 0x3a,0x0b,0xbd,0x6c,0x7d,0x33,0x8d,0xd6,0xe6,0x5a,0x2a,0x27,0x69,0x21,0x05,0xb6, - 0x5f,0xa6,0xa1,0x1a,0x5f,0x5f,0x69,0xd3,0x29,0x71,0x7a,0x82,0x0d,0x33,0x2d,0x24, - 0xf8,0x3c,0x8f,0x6e,0xe0,0x2a,0x13,0x55,0xb1,0xcd,0x16,0x17,0x00,0x42,0x93,0x4a, - 0x21,0xbd,0xac,0x17,0xae,0x67,0xaa,0xa9,0x31,0xf2,0x88,0xa6,0x53,0xc0,0xa7,0x60, - 0x51,0x5d,0x0d,0xd0,0x93,0x5e,0x13,0x13,0x37,0x52,0x58,0x18,0x98,0x7c,0xe8,0x05, - 0x46,0xe3,0xdd,0xfb,0x73,0x03,0x9e,0xb0,0x7d,0x00,0xbc,0xd5,0x35,0xb2,0x89,0x47, - 0x1a,0xd4,0xe9,0xbb,0x13,0xd6,0x8d,0x0c,0x98,0x1b,0x48,0x66,0xa9,0x11,0x27,0xd1, - 0x55,0xe2,0x4e,0xa7,0x80,0x04,0x43,0x80,0x9e,0x31,0x08,0x66,0x49,0xc3,0xb2,0xa1, - 0xfa,0xc8,0x98,0x4f,0xbc,0x90,0xaa,0x5e,0x7b,0x77,0x83,0x08,0xb8,0x98,0xe1,0xa7, - 0xc6,0x2c,0xa6,0x96,0x58,0xe7,0x4a,0x0d,0x62,0x8b,0xb2,0xa7,0xd4,0x88,0xc6,0x63, - 0xf8,0xe2,0x61,0xbd,0x08,0x9b,0xbb,0xf6,0xbc,0x98,0x9a,0x20,0xa5,0x0b,0x4a,0x8e, - 0x7d,0x2f,0x00,0xd8,0xfb,0xa9,0x0f,0xb2,0x8d,0x63,0x9c,0x88,0x21,0x03,0x5d,0xe0, - 0x4d,0x63,0x20,0x40,0x0c,0xd0,0x96,0x40,0x69,0x0a,0xee,0x0c,0x58,0x77,0x2f,0xc1, - 0x06,0xb0,0xb1,0xb3,0xb3,0xd7,0x3f,0x88,0x06,0x80,0x29,0xa7,0x58,0x29,0x9b,0xb8, - 0x99,0x71,0x35,0x73,0x61,0x9b,0x64,0x9e,0x37,0x6a,0x8a,0x86,0x41,0x55,0x04,0x90, - 0x00,0x8b,0xcc,0x3c,0x77,0xe4,0xa0,0x1e,0xe8,0x20,0x7c,0xa8,0xaf,0x27,0x33,0xab, - 0xa5,0x0c,0x7d,0xa5,0xed,0xa6,0xdb,0x14,0x26,0x4e,0xb6,0x27,0xa8,0xee,0x91,0x7b, - 0x36,0xd1,0x42,0xb8,0xd6,0xbe,0xd8,0x97,0x5b,0x38,0xb7,0x0c,0x7e,0x65,0x83,0x6c, - 0x85,0xa2,0x19,0xbb,0xa5,0x01,0x7f,0x83,0x3f,0x01,0x3c,0xc0,0x8c,0xd1,0x6a,0x26, - 0xb6,0xfb,0xee,0xde,0xcd,0x24,0x47,0xeb,0x82,0xd5,0xac,0x85,0x7c,0xd2,0x60,0xd3, - 0x19,0xac,0x40,0x5c,0x63,0xb4,0xda,0xaf,0x72,0x6c,0xad,0x3c,0x52,0x53,0xde,0x47, - 0xb2,0xb3,0x0a,0xdf,0xed,0xd4,0x2d,0x0c,0x2d,0x61,0xde,0x48,0xad,0x85,0x48,0x6a, - 0x2b,0x11,0xec,0xe6,0xb2,0x74,0x87,0xc2,0xd9,0xfe,0xae,0xd4,0xa5,0x94,0x4a,0x44, - 0x70,0xa5,0x5f,0xc8,0x69,0x7e,0x6b,0x34,0xe1,0x8b,0xa5,0x44,0xbe,0xdd,0x5a,0xfd, - 0xef,0xba,0xc8,0xc6,0x84,0x5d,0x64,0x6d,0x93,0xd8,0x0a,0xad,0x24,0xd7,0x63,0x75, - 0x7d,0xad,0x53,0xaf,0x49,0xf6,0x72,0x3b,0xe7,0xcb,0xd6,0xcd,0x5c,0x4e,0x9c,0x65, - 0x3f,0xd9,0x12,0x8a,0x71,0x62,0x07,0x97,0x21,0x22,0x35,0x5c,0x39,0xd9,0xbd,0x56, - 0xfd,0x91,0xc4,0x63,0xe2,0xe7,0x12,0x25,0x4e,0x23,0xb4,0xe2,0x8d,0x92,0xb6,0x18, - 0x0b,0xc5,0xb0,0xea,0x65,0xd5,0xd8,0x0f,0x05,0x1f,0xea,0xe8,0x46,0x81,0x4e,0xae, - 0x15,0xee,0xac,0xda,0xe3,0xb0,0xda,0x75,0xe6,0x9f,0xb2,0x56,0xec,0x86,0xfe,0x94, - 0x59,0x64,0x62,0xb4,0x53,0x03,0x9b,0x00,0x19,0xd8,0x0f,0xc7,0x78,0xce,0xe8,0xf5, - 0xea,0x74,0xa9,0x87,0x67,0xff,0x0b,0x48,0xe6,0x18,0xe8,0x2a,0x50,0xd8,0x64,0x91, - 0x45,0x8b,0x1c,0x8f,0x92,0x28,0x03,0x24,0x6a,0xec,0xec,0xb7,0x46,0xde,0x95,0xf5, - 0x00,0xf3,0x00,0xc9,0x89,0xce,0x91,0x16,0x65,0x71,0xaa,0x60,0x6a,0xc9,0x37,0x0c, - 0x62,0x29,0x49,0xbc,0xf0,0x5b,0x53,0xf0,0xa1,0xa5,0xeb,0x9b,0x8a,0x98,0xdb,0x2b, - 0x6c,0xbd,0x35,0x4c,0x41,0x9d,0x92,0xde,0xd8,0x5a,0x87,0x81,0x52,0xdf,0xab,0x19, - 0xe4,0xf5,0x4d,0xad,0x8c,0x54,0x63,0xfd,0x81,0x92,0x42,0x8c,0xd1,0x36,0x86,0x86, - 0x29,0xa4,0x7c,0xad,0x7f,0xf8,0x01,0xdf,0xbd,0x85,0x8e,0x9f,0xcf,0xfd,0x29,0x1e, - 0xfe,0x02,0xc7,0x40,0xe6,0x1a,0x65,0x5e,0x55,0x71,0xae,0x50,0xc9,0xb5,0x24,0xc4, - 0x83,0x92,0x15,0x8d,0xe4,0xbc,0x5a,0xeb,0xf2,0x30,0xf0,0x9b,0xd1,0x2c,0x5b,0x68, - 0x4b,0xd8,0xd9,0x67,0x93,0xbc,0x22,0xb0,0x7b,0x9d,0x0a,0x81,0xd5,0xc5,0x83,0x38, - 0xf1,0x9a,0x85,0x53,0x20,0x7a,0xea,0xba,0xe1,0x1d,0xb0,0xed,0x84,0x8e,0x95,0x75, - 0x8b,0x4f,0x6b,0xd0,0x6e,0xb5,0xf7,0xe5,0x59,0xc8,0x68,0xe8,0xbd,0x18,0xef,0x3d, - 0xe5,0xec,0xe2,0xa5,0x2e,0xfc,0xe2,0xbc,0x04,0x35,0xa3,0x19,0xf1,0x01,0xe7,0xcc, - 0x6f,0x4e,0xa3,0x30,0xa2,0xe1,0xd9,0x67,0x3f,0xbe,0x85,0xdf,0xcd,0x8f,0xde,0xd5, - 0x2c,0x70,0x13,0xfb,0x34,0x0a,0xa1,0x07,0x37,0xb5,0xcd,0x37,0xfe,0xc0,0x63,0x91, - 0xd3,0xc0,0x12,0xa6,0xad,0xea,0xd4,0xab,0x70,0x08,0xaa,0x69,0xa4,0x2d,0x61,0x6e, - 0x1c,0xdd,0xd7,0xcf,0x6d,0x5a,0x74,0x32,0x55,0xda,0x31,0x35,0xd8,0x25,0xdb,0x2b, - 0xd9,0xf7,0x1f,0x63,0xc2,0x15,0x9b,0xa0,0x6a,0x87,0xed,0x8d,0xf9,0xf9,0x30,0x7d, - 0xa9,0x58,0x73,0xf5,0xa6,0xf1,0x45,0xd3,0x0b,0x47,0x52,0x77,0xcd,0xeb,0x70,0x63, - 0xb6,0x7a,0x44,0xa4,0x46,0x6d,0xbf,0xc6,0xf6,0x5b,0xc4,0x34,0x65,0xbc,0x27,0xab, - 0xc1,0x5f,0x5e,0x09,0x58,0xdc,0xb5,0xcd,0xfd,0x7f,0xd1,0xd6,0xff,0xac,0x3a,0x59, - 0x4d,0x0f,0xd0,0x69,0xdc,0x1e,0x4e,0x12,0x64,0x56,0x5c,0x5d,0x69,0x5a,0x2a,0x83, - 0x4e,0x58,0xfa,0x2b,0x6d,0xfe,0x5f,0x30,0xfa,0x1f,0x6e,0x0b,0x0f,0x91,0xc3,0x6d, - 0xe1,0xd1,0x82,0x5e,0x00,0xc2,0xbf,0xc5,0x4b,0x8e,0x00,0xa6,0x87,0xe9,0xcd,0x15, - 0x9f,0xbf,0xf4,0xcd,0xce,0xbe,0x69,0xf0,0xcc,0xf8,0x37,0xfa,0xa4,0x7c,0x1f,0xdd, - 0xf6,0x4d,0xea,0x7e,0x17,0xfe,0x6f,0x1a,0xa8,0xbf,0xf6,0x4d,0x04,0x93,0x69,0xa4, - 0x59,0x12,0x5d,0xa3,0x13,0x8c,0x1a,0x83,0x7c,0xd7,0x94,0x2d,0xaa,0x17,0x08,0xdd, - 0xa1,0x1b,0xf7,0x4d,0x5a,0x2e,0x13,0xbb,0x86,0xce,0x87,0x7e,0x32,0x04,0xd1,0x78, - 0x08,0x7d,0xb4,0xa1,0xec,0xf0,0x8e,0xff,0x26,0x50,0xd3,0xe9,0xc8,0xce,0xaa,0xcd, - 0x8b,0x01,0x6c,0x8b,0x56,0x62,0x37,0x9b,0x18,0xa3,0xbe,0xf9,0xf6,0x85,0xf3,0xc2, - 0x80,0x7f,0xdd,0x7d,0x63,0xdf,0x68,0x89,0x7f,0x0e,0x9c,0xfd,0xb7,0xed,0x7d,0x67, - 0xa7,0xf0,0xa1,0x2d,0x3e,0xec,0x3a,0x2f,0x0d,0xf8,0xd7,0x6d,0xe3,0xb9,0xbf,0xaa, - 0xd2,0xde,0x75,0x3a,0x6f,0xdb,0x2f,0x9d,0x76,0xe9,0x5b,0x5b,0x7c,0xe3,0x8e,0x01, - 0xb8,0x37,0x57,0xf4,0x63,0xe4,0xdf,0x18,0x43,0xc0,0xdf,0xb4,0x6f,0xd2,0xe1,0xb9, - 0x9c,0xdd,0xa4,0x6d,0xf8,0x30,0xac,0x49,0x13,0x7d,0x85,0x4c,0xe5,0xc6,0x03,0x8b, - 0xd1,0x16,0x25,0xb0,0x26,0x17,0x49,0x67,0x03,0xf3,0x08,0x78,0x20,0x40,0x29,0x83, - 0x2d,0xb4,0x31,0x21,0x76,0xd1,0x3b,0xdc,0x86,0x22,0xdc,0x9b,0xfc,0x41,0xc7,0x18, - 0xa2,0x3b,0x3a,0x66,0x36,0x90,0x9d,0x98,0xa2,0x1d,0x7a,0x63,0x1e,0xc1,0xe0,0xa0, - 0x98,0x5c,0x78,0x5c,0xea,0x43,0x3c,0x63,0x3e,0x7a,0xf6,0xec,0xf0,0x79,0xb3,0x69, - 0xf4,0xb5,0xff,0x19,0x6f,0xde,0xff,0xfd,0xf5,0xbb,0xe2,0xab,0x66,0x13,0xbd,0x8b, - 0x70,0x28,0xb0,0x13,0xb1,0xe1,0x9b,0x66,0x10,0x01,0x31,0x31,0xd5,0x3c,0xb1,0xcb, - 0xf2,0xe4,0x51,0x09,0x51,0x73,0xef,0x1c,0x9d,0x8c,0x60,0xab,0x18,0x54,0x0f,0x86, - 0xd1,0x91,0x8b,0x65,0x10,0x4e,0xf6,0xcd,0x8a,0x58,0xb0,0xec,0xec,0x51,0x12,0x5f, - 0xd8,0x00,0xe6,0xd1,0x2b,0xa4,0x75,0xa0,0x63,0x81,0xda,0x17,0x02,0xa9,0xdb,0x4c, - 0x0d,0x97,0xba,0x91,0x67,0x8f,0x46,0x03,0x55,0xbb,0x14,0x00,0x6e,0xa0,0xbe,0xc5, - 0x0a,0x5e,0x94,0x18,0x89,0x37,0x05,0xb6,0x6a,0x9c,0xbe,0x79,0xcd,0x15,0x2c,0xe7, - 0x70,0x3b,0x16,0x43,0x42,0x21,0x88,0x66,0x49,0x63,0x6d,0xe2,0xa3,0x98,0x46,0x71, - 0x7e,0x63,0x80,0x2b,0x91,0x68,0x6c,0x51,0x96,0x8e,0xe7,0x30,0xe7,0x0f,0xa2,0xf7, - 0xc3,0x6d,0xfa,0x2e,0x2b,0x43,0x75,0x22,0x01,0x06,0x1d,0x7b,0x9a,0x72,0x8c,0xa6, - 0xd6,0x19,0x56,0xa7,0x03,0xfe,0x61,0x34,0x8d,0x41,0x3d,0x82,0x62,0x40,0xd7,0x71, - 0xff,0x36,0xf3,0xe2,0xf8,0x9d,0xa8,0xc5,0x91,0x42,0x03,0x6a,0x9c,0x6d,0xed,0x0a, - 0x19,0x32,0x58,0x1f,0xee,0x09,0xb0,0x69,0xea,0x67,0x7a,0x3f,0xf8,0xf1,0xe8,0x0c, - 0x08,0xbe,0x81,0xab,0xc1,0x15,0xeb,0xe6,0x28,0x25,0x3f,0xbd,0x2e,0xbc,0x33,0xf5, - 0x9e,0x0f,0xb7,0x11,0x44,0x1a,0x56,0x02,0xb6,0x31,0xae,0xd4,0xe2,0xd7,0xd9,0xab, - 0xf3,0x5f,0x3e,0x18,0xbf,0xbe,0xfe,0xef,0x93,0x8f,0x3f,0x3c,0x8a,0x66,0x73,0xff, - 0x33,0x62,0xd1,0x4a,0x3c,0x43,0x01,0x89,0xc7,0x37,0x0c,0xdd,0x26,0x3d,0x1d,0xbd, - 0x66,0xb3,0xc0,0xaf,0xfe,0x8f,0x3e,0x68,0xe2,0xc8,0xd7,0x00,0x27,0xa2,0x78,0x16, - 0x1f,0x1b,0xaf,0x33,0xa8,0x18,0xa5,0x20,0xf7,0xfa,0x63,0xe3,0x2e,0x9a,0x25,0x46, - 0x3c,0x41,0xdc,0x48,0x03,0x0f,0x74,0x32,0x87,0xa7,0xe4,0x1a,0x93,0xc4,0x1b,0xf7, - 0xcd,0x6f,0x4c,0xc0,0x1b,0x20,0xd5,0xc3,0x6b,0x58,0xaf,0x28,0x7e,0x3f,0xcb,0x1a, - 0x16,0x50,0xf8,0x6c,0x96,0x84,0xc6,0xd8,0x0d,0x52,0x22,0x7b,0x84,0xbf,0x55,0xc3, - 0x88,0x79,0xf4,0x3e,0xf6,0x10,0xc0,0xdc,0xcb,0x00,0xa8,0x7d,0xea,0x25,0x87,0xdb, - 0xee,0x91,0x91,0x45,0x6c,0x77,0xe0,0xee,0xd1,0xc0,0xe1,0xa5,0xa9,0x93,0x6f,0x6a, - 0x6d,0x76,0xa4,0x29,0x02,0xbc,0x7d,0x9a,0x61,0x9a,0xc5,0x6d,0x05,0x8d,0x28,0xc4, - 0x75,0xf0,0xb5,0x6f,0x9d,0xf2,0x8b,0x9d,0xf2,0x8b,0x5d,0xf1,0x82,0xbb,0x7a,0xa6, - 0x11,0x9d,0xf9,0xe7,0xb6,0xa9,0xd1,0xa1,0xea,0x26,0xe6,0x6d,0x7c,0x06,0xe3,0x01, - 0xd2,0xb7,0x31,0x05,0xa1,0x36,0xca,0x7a,0x04,0xe2,0x7c,0x3f,0xff,0xe5,0x1d,0x2d, - 0x86,0x02,0x0b,0x3f,0xf6,0x81,0x0b,0xc6,0x77,0xe6,0xd1,0x29,0x93,0xc1,0x7c,0x97, - 0x23,0xf8,0x08,0x72,0xb4,0xbc,0x21,0xe8,0x06,0x51,0x72,0x0d,0xac,0xdd,0xf0,0x61, - 0x69,0x81,0x1a,0x02,0x37,0x1d,0x4e,0x68,0xfd,0xdf,0xfe,0xc7,0xf9,0xb9,0x01,0x40, - 0x07,0x66,0x9c,0xe6,0x3b,0x7c,0xc9,0x36,0x3e,0x7a,0x27,0x5a,0x42,0xfa,0x6c,0x34, - 0xd0,0x96,0x63,0x55,0x77,0xb0,0x56,0x13,0x16,0x54,0x2d,0xbf,0x10,0x94,0xcc,0xbc, - 0x64,0x69,0xb7,0xf3,0x2e,0x1a,0xb9,0x99,0xdb,0xbc,0x46,0xaf,0xd0,0xb1,0xef,0xa4, - 0xa9,0x3f,0x52,0x13,0xe6,0x07,0xda,0xfa,0x6e,0xec,0x67,0x20,0x8d,0x7d,0x86,0x5a, - 0xd1,0x78,0x2c,0xe9,0x41,0x82,0x06,0x27,0xf1,0x46,0x42,0x98,0x64,0xae,0x62,0x9f, - 0x15,0x22,0x00,0xf3,0x1f,0x4a,0x42,0xc0,0x1f,0x11,0xa7,0xa7,0x11,0xd2,0xc2,0x68, - 0x1e,0xc2,0x1e,0x47,0x65,0xdc,0x01,0x69,0x1d,0xff,0xfe,0xc0,0x07,0x77,0x0d,0x4b, - 0x43,0xfc,0x08,0xd0,0xf8,0x0c,0x00,0xdb,0xd8,0x14,0xe3,0xdc,0xb4,0x80,0x78,0xc0, - 0x8b,0x32,0xe5,0x90,0x14,0xa0,0x48,0x96,0x6a,0x61,0xfd,0x54,0x12,0x59,0x00,0x5c, - 0x0d,0x95,0x44,0xb0,0xd4,0xaf,0x12,0x7a,0xb6,0x98,0x47,0x6f,0x3c,0xf7,0xc6,0x33, - 0x06,0x81,0x1b,0x5e,0x13,0x03,0x40,0xe3,0x23,0xee,0x4e,0x81,0x3d,0x8e,0xd1,0x71, - 0x76,0x37,0x00,0xc3,0x40,0x5c,0xea,0xfd,0xfd,0xa7,0xcf,0xf2,0x7d,0x0a,0x50,0x08, - 0xee,0x9c,0xb5,0xa7,0xf5,0x0e,0xd1,0x13,0xf1,0x67,0xf5,0xbc,0x8a,0xc8,0x40,0xf2, - 0x00,0xfa,0x00,0x07,0x5e,0x78,0x85,0x72,0xd2,0x4e,0x7b,0xd5,0x5c,0x24,0xc6,0x60, - 0xb5,0x26,0xcf,0xee,0x6c,0x02,0x2b,0x09,0x43,0x25,0xa4,0x07,0x95,0x7e,0x42,0xd6, - 0x51,0xa0,0x3c,0xbc,0x01,0x40,0x9f,0x9f,0xa5,0xf8,0x3e,0x75,0xaf,0xbc,0xb4,0x3a, - 0x1b,0xfd,0x67,0x0d,0x13,0x51,0x88,0x30,0xff,0xfc,0xf7,0xa8,0xd1,0x81,0xc5,0x7f, - 0x07,0xe3,0xef,0x1a,0x1f,0x41,0x60,0x8e,0x74,0x1c,0xa8,0xa5,0x2a,0x9d,0x2a,0xf5, - 0x5e,0x87,0xc4,0x74,0x72,0x12,0x23,0xfa,0xf9,0x6a,0x34,0x86,0x56,0x89,0x57,0x16, - 0x04,0x5c,0x37,0x31,0x88,0x5e,0x44,0x00,0xbb,0xc4,0x20,0xce,0x03,0xfb,0x00,0x45, - 0x77,0x03,0x35,0x82,0x08,0xf6,0x4f,0x86,0x32,0x58,0xea,0x18,0x1f,0x00,0x0a,0x04, - 0x62,0xd8,0x2c,0xf0,0x96,0x89,0x50,0x10,0x61,0x51,0x02,0x3a,0x6c,0xa9,0x35,0xc8, - 0x0c,0xe8,0x39,0xc8,0xe0,0xb8,0x8d,0x2a,0x9e,0xb0,0x3b,0x8e,0x5c,0xe4,0x24,0x26, - 0xf8,0x4f,0xdc,0xf0,0x0a,0x99,0xcc,0x67,0x82,0xc5,0x99,0x17,0x34,0x90,0x1a,0x5a, - 0x24,0xd9,0x51,0xf9,0x35,0xf0,0x25,0x89,0x9b,0x20,0x4b,0x48,0xd6,0xbd,0x06,0x32, - 0x9f,0xff,0x06,0x3c,0x73,0x0e,0x40,0x69,0x8c,0xbe,0x9f,0x5a,0xab,0x31,0x9a,0xfd, - 0xba,0x72,0x9c,0xce,0x80,0x94,0x83,0x5c,0xd5,0x37,0x9b,0x2f,0x09,0xb5,0x01,0xa9, - 0x5b,0x8a,0x6e,0xe5,0x26,0xbf,0x76,0xa7,0x55,0x20,0x9a,0xd5,0x8d,0xfb,0x96,0x5d, - 0xe3,0x8d,0xc0,0xbb,0x02,0x30,0xf3,0x78,0x60,0x79,0x7d,0x58,0xc0,0xc1,0x1d,0x90, - 0x7a,0x82,0xe5,0xc6,0x74,0xe4,0xa6,0x93,0x9e,0x41,0x7e,0x1d,0x62,0x45,0x92,0x59, - 0x50,0x87,0xeb,0x35,0xb2,0x03,0xa0,0x33,0x88,0x85,0x72,0x99,0xd9,0x62,0x8f,0x3a, - 0xd3,0x66,0x66,0xa0,0x4d,0xd9,0x1b,0x1d,0x1b,0xa7,0x93,0x08,0x44,0x06,0xd8,0x1d, - 0x47,0x3f,0x23,0xdf,0x16,0x32,0x99,0xaa,0x03,0x9b,0xe0,0xc8,0x36,0xd0,0xde,0x06, - 0x58,0x40,0x6e,0x9e,0x36,0xe2,0x49,0x88,0xaf,0xbc,0x66,0x36,0x23,0x53,0x3f,0x61, - 0x4e,0xad,0x64,0x41,0x8a,0xfc,0x49,0x1c,0x97,0x65,0x0b,0x90,0x99,0x6f,0xdc,0x70, - 0x08,0x83,0xf3,0x46,0x7e,0x16,0x91,0xec,0xe0,0x2c,0xd9,0xb7,0xa5,0x0d,0xa5,0x24, - 0xe0,0x66,0x65,0x7b,0x9d,0x14,0x24,0xe4,0xaf,0xb9,0xaf,0x3e,0x7a,0x71,0x00,0xf2, - 0x4f,0xca,0xe7,0x29,0xee,0x10,0x86,0x7c,0xa7,0x3a,0x72,0x50,0xf2,0xc2,0xe3,0x19, - 0x94,0xc1,0x81,0x83,0xa7,0x2c,0x7d,0x1a,0x68,0x0b,0x32,0xd0,0x6c,0x9d,0x10,0xd1, - 0x82,0x2f,0x24,0x91,0x23,0xe0,0xe9,0x5c,0x85,0x59,0x3e,0x0b,0xec,0xb0,0x61,0xd1, - 0x98,0xa4,0xc8,0xdc,0x3a,0x3c,0x7d,0xae,0x4d,0xf5,0x69,0xbc,0x26,0x7f,0xa3,0xd1, - 0xe6,0xf6,0x5e,0x99,0xf5,0x84,0xde,0x3c,0x17,0xce,0xd7,0x41,0xe5,0xf6,0x1e,0x45, - 0x91,0x00,0x7c,0x58,0x2c,0x59,0x73,0x3b,0x52,0xb8,0x07,0xa8,0x26,0x5f,0x34,0x9d, - 0xe1,0x78,0xfa,0x85,0x13,0x7a,0x1c,0xdf,0x50,0x0e,0x5a,0xae,0x84,0xb0,0xfc,0x51, - 0xe4,0x21,0x6d,0xa0,0x5c,0xdf,0xbb,0xc3,0xeb,0x8a,0xea,0x51,0xc3,0x7d,0x8a,0xb2, - 0x8e,0x22,0x66,0x48,0x07,0x9b,0x21,0xf1,0xd1,0x62,0xdb,0x3b,0x8a,0x3f,0x21,0xf3, - 0x2b,0xf6,0x50,0xd6,0x9f,0x8b,0x9c,0x6a,0xe7,0xcb,0x38,0xd5,0x4e,0xce,0xa9,0xb8, - 0x47,0x6d,0x43,0xd5,0x2e,0xe4,0xfb,0x01,0x8b,0xa4,0x42,0xd0,0x8c,0x12,0x1f,0x76, - 0x92,0xf5,0x14,0x89,0x61,0xfa,0x67,0x96,0x39,0x5c,0xaf,0x5e,0x66,0x5c,0x85,0x86, - 0x3f,0xa1,0xd5,0x09,0x65,0xe9,0x48,0x8e,0x83,0x39,0xde,0x18,0x69,0xaa,0x9f,0x01, - 0x3f,0x19,0xe3,0xbe,0x8c,0x67,0x03,0xa0,0x7e,0x13,0xa4,0x8c,0x24,0x3f,0x6c,0x83, - 0x6a,0x73,0x0d,0x4c,0x4f,0x89,0x11,0xc6,0xeb,0x10,0x15,0x3f,0xb2,0xcf,0x01,0xbd, - 0x25,0x76,0x2a,0x09,0x31,0xd0,0xd5,0x5c,0xd9,0xce,0xa2,0xd8,0x1f,0x42,0x77,0x09, - 0x0e,0x75,0xc2,0xcc,0x15,0x2b,0x01,0x43,0x05,0x52,0xe8,0x07,0x01,0x94,0x9b,0xfb, - 0xd9,0x24,0xdf,0xed,0x08,0x98,0xf5,0x37,0xc6,0xeb,0x93,0xf3,0x13,0xc9,0x09,0x86, - 0x50,0xfd,0xc9,0x90,0xf4,0xe1,0xa1,0x28,0x80,0x55,0xa1,0x9a,0xef,0x58,0x85,0x92, - 0x4b,0xcf,0x35,0x9f,0xc2,0xdf,0xde,0x81,0x00,0xe2,0xa5,0xc0,0x70,0xfc,0x04,0x6d, - 0xfe,0x34,0x01,0xdb,0xf0,0x9c,0x2b,0x07,0xb9,0xcd,0x0f,0xaf,0xde,0x21,0x6f,0x71, - 0x8c,0x5f,0x10,0x98,0xc8,0x43,0x10,0x96,0x06,0x9a,0xb8,0x9e,0x40,0x39,0xde,0xcf, - 0x43,0x58,0x65,0x5a,0xd0,0x21,0x1e,0x95,0x3f,0x1d,0xd5,0xb0,0x81,0x02,0x84,0xf6, - 0x77,0xd7,0x56,0x56,0x9e,0x26,0xa8,0xbf,0x8f,0x05,0x3e,0x49,0x54,0xda,0xdf,0x6d, - 0x22,0xec,0x81,0x4f,0xdc,0x6a,0x53,0x30,0x22,0xa1,0xbc,0x63,0xcb,0x6e,0x88,0x4b, - 0x8f,0x98,0x83,0x48,0x39,0x0c,0x66,0x23,0x06,0x16,0xa2,0x9b,0xf1,0x8f,0x5f,0xcf, - 0x53,0x54,0x0e,0x11,0xd7,0x7d,0x66,0x4e,0xc0,0xdf,0x53,0x58,0x2d,0x04,0xb7,0x50, - 0x19,0x03,0x96,0xe6,0x70,0x28,0xfe,0x34,0xd7,0x34,0x9f,0x0a,0x62,0x72,0x65,0x5f, - 0x0d,0x5d,0x2a,0x52,0x02,0xaf,0x78,0xf7,0xd4,0x8d,0x5c,0x01,0x15,0x08,0x0d,0xa0, - 0x04,0xd7,0x02,0x00,0xf7,0x21,0x4d,0x0e,0xc4,0x15,0x4d,0x93,0x06,0xb0,0xa5,0x11, - 0x10,0x21,0x09,0x9c,0xda,0x09,0x23,0xa1,0x63,0x1d,0xba,0x42,0xdb,0xa4,0xf2,0x1a, - 0x44,0x59,0xfa,0xef,0x61,0x15,0x9d,0x2f,0x67,0x15,0xc5,0x86,0x76,0x2d,0x14,0x50, - 0xd0,0x88,0xfd,0x14,0x9e,0xb0,0xfb,0x54,0x9e,0xa0,0x18,0x14,0x75,0xd5,0xa4,0xd8, - 0x4c,0x93,0x19,0xc5,0xae,0xa6,0xd2,0xd0,0x57,0x63,0xc3,0x9d,0xc6,0x3d,0x03,0xbd, - 0x16,0x97,0x41,0x96,0x9b,0x59,0x07,0xb4,0x2c,0xca,0x9e,0xb9,0x37,0xb4,0xc2,0x40, - 0x52,0x58,0x0c,0x63,0xf5,0x00,0xd0,0x01,0x8d,0x25,0xb6,0x81,0xc7,0xd4,0xa9,0x22, - 0xb4,0x9b,0x80,0x06,0x30,0x0c,0x69,0x42,0x71,0x47,0x23,0x34,0x44,0x09,0xd9,0x35, - 0xf1,0x06,0x51,0x44,0x4e,0x2c,0x20,0x93,0x09,0xdf,0x17,0xd0,0x99,0x13,0x41,0xbb, - 0xcf,0xa3,0xdc,0x77,0x26,0x06,0x86,0x60,0xb8,0x37,0x80,0xc5,0xe8,0x10,0xcc,0xd2, - 0x9c,0x0d,0x12,0x78,0x88,0x34,0x0c,0x35,0xa5,0xb9,0x37,0x98,0xf9,0xb0,0x20,0x44, - 0xcc,0xfe,0x02,0x6e,0x14,0x81,0x8b,0x07,0x3e,0x75,0xec,0xff,0xaf,0x89,0x16,0xb8, - 0x1c,0x7a,0xab,0x64,0x82,0x04,0xb8,0x7a,0x0d,0x8b,0xe0,0xeb,0x89,0x65,0x63,0xf8, - 0x2c,0x41,0xa6,0x55,0x66,0x54,0xe8,0xa3,0x68,0x43,0xd5,0x30,0x2f,0x2e,0x30,0x97, - 0x82,0xe3,0x81,0x76,0xb8,0x8e,0x67,0x68,0x50,0xff,0x29,0xba,0x44,0x9d,0x64,0x8f, - 0x8d,0xd4,0xa8,0x18,0x24,0x54,0xaf,0x36,0xe2,0xbe,0x3d,0x79,0xfd,0xce,0x38,0xf9, - 0xf0,0xe1,0x51,0x03,0xae,0x1b,0xc7,0xab,0xad,0xb7,0x18,0x2f,0xc5,0x60,0xa1,0x5f, - 0x45,0x2b,0x04,0x51,0x49,0xe0,0x23,0x24,0xed,0x15,0xec,0x9e,0x15,0xdb,0x43,0xb5, - 0x12,0x92,0x56,0x10,0xba,0xab,0x42,0x60,0xa9,0x1c,0x9a,0x94,0xcc,0x23,0xb6,0x63, - 0xae,0x2a,0x87,0x62,0x50,0x8a,0x5b,0x19,0xfe,0xac,0x2e,0x09,0x4b,0x61,0x1e,0x9d, - 0xbe,0x79,0xfd,0x88,0x6d,0x24,0x63,0x29,0x76,0x1d,0x41,0xf3,0x1d,0x89,0x35,0x8f, - 0x09,0x96,0xef,0x34,0xc3,0xd3,0x53,0xed,0x4d,0x4b,0x79,0x1c,0x59,0x39,0x59,0x87, - 0xc0,0x03,0xbb,0x65,0xa6,0xa9,0x7c,0x14,0x6f,0x80,0x40,0x64,0xb3,0x51,0xfd,0x48, - 0xca,0x76,0x02,0x20,0x15,0x88,0x9a,0x1e,0xb4,0xec,0x86,0x77,0xa5,0x61,0x2c,0xed, - 0x21,0x0a,0xaf,0x9e,0xd0,0x45,0x14,0x2e,0xef,0xe2,0xdf,0xa9,0x4d,0x57,0x89,0x33, - 0xec,0xe6,0x54,0xe9,0xbc,0xa8,0xed,0x6a,0x02,0x31,0x3a,0xe2,0xf0,0xa9,0x14,0x1f, - 0x61,0x81,0x60,0x33,0x85,0x22,0x69,0x49,0xe3,0x35,0x74,0x4b,0x66,0xa6,0xd1,0x60, - 0x69,0x93,0xc8,0xf5,0xed,0x55,0xfa,0xe6,0xff,0x5b,0x4a,0xf3,0xff,0xcf,0xda,0x6f, - 0x05,0x23,0xde,0x44,0x1f,0x5d,0x61,0x3a,0x2c,0x9c,0xce,0xa2,0x43,0x8e,0x01,0x84, - 0x5f,0x3b,0xa0,0x65,0x2d,0x16,0x3d,0xc8,0xcd,0x23,0x66,0x27,0x64,0xff,0x88,0xe3, - 0xe0,0x4e,0x1c,0xd9,0xae,0x46,0xa8,0x1f,0x13,0xef,0xcf,0x99,0x17,0x0e,0xef,0x6c, - 0x63,0x00,0xb8,0x22,0xd2,0x4b,0x9c,0xfd,0x48,0xb8,0x75,0xfa,0xd1,0x98,0xce,0x40, - 0xb3,0x00,0x0d,0x6d,0x38,0x61,0x61,0x99,0xac,0x94,0xde,0xad,0x4b,0x9e,0xab,0x4a, - 0x6a,0x34,0xe6,0x09,0x6c,0x28,0xe3,0xc6,0x0d,0x66,0x9e,0x91,0xb9,0xd7,0x24,0x23, - 0x2b,0x09,0x71,0x3c,0x26,0xf4,0x02,0xfd,0xc4,0x98,0x01,0xa6,0x06,0x9a,0x43,0x2d, - 0x8a,0x8d,0xbe,0x1b,0x38,0x2b,0x69,0xc7,0x63,0x9b,0x59,0xcd,0xc1,0x68,0xbc,0xfd, - 0xe9,0xb3,0xf5,0xf8,0x96,0x4e,0xae,0xa0,0x3a,0x54,0x92,0x9b,0xba,0xe5,0xb4,0x5a, - 0x6d,0x61,0x6d,0x6c,0xef,0xb5,0x84,0xb9,0xb1,0xb3,0xd7,0x6a,0xad,0x49,0x4e,0xbe, - 0x97,0xa0,0x33,0x1a,0xd7,0x6b,0x8f,0x60,0x30,0xd7,0xfa,0x97,0xdd,0xbf,0x10,0x9d, - 0x57,0xfb,0xfe,0x4b,0x20,0x3a,0x8b,0x13,0xcf,0x45,0x57,0x1a,0x61,0x54,0xab,0xe0, - 0x7e,0x6e,0x36,0x56,0xe3,0x4b,0xb1,0x7a,0x44,0x1a,0xc2,0xd1,0xde,0xe1,0xb6,0xf8, - 0x25,0xdf,0xec,0x57,0xde,0xbc,0xa8,0xbc,0x39,0xa8,0xbc,0x79,0x59,0x79,0xd3,0x6e, - 0x55,0x5f,0xb5,0xab,0xaf,0x3a,0xf9,0x2b,0x69,0xaf,0x5e,0x6b,0x65,0x4e,0x23,0x9a, - 0x35,0x88,0x9c,0xde,0x3a,0x73,0x1e,0x26,0x5f,0x71,0xce,0xb5,0x03,0xfd,0x62,0xab, - 0xf9,0x57,0x34,0x96,0x7f,0x01,0x49,0x92,0x42,0xde,0x32,0x6a,0xb2,0x0a,0x09,0x35, - 0xde,0xdf,0x51,0x93,0x3c,0xf1,0x93,0xcc,0x9f,0x7a,0x25,0x7c,0x5c,0x39,0x49,0x77, - 0x9c,0x6f,0x18,0xb9,0x5f,0x5a,0xc5,0xb3,0xcb,0xda,0x93,0x0b,0x77,0xdc,0x1c,0x0d, - 0x6b,0x4f,0x2d,0x56,0x8c,0x74,0x37,0x3f,0x6d,0xf9,0xcd,0x18,0x79,0x81,0x7b,0x07, - 0x04,0x32,0x5d,0x4f,0x5e,0x48,0x6e,0xa9,0x42,0xdd,0x68,0x05,0x69,0x59,0x7b,0x73, - 0x17,0xc6,0xb4,0xd7,0xee,0xe8,0x48,0xc2,0xa3,0x7a,0x02,0x00,0xb3,0x47,0xc7,0xb5, - 0x16,0xce,0x94,0xdc,0x0b,0x0a,0xc2,0xdd,0x01,0x94,0x64,0xb6,0x33,0x38,0x3a,0x3d, - 0xf9,0xc1,0x68,0xd0,0xf9,0x47,0x68,0x70,0x94,0xac,0x41,0xb6,0xae,0xa9,0x9f,0x59, - 0xa8,0xc6,0x1d,0xfa,0x47,0xa7,0x13,0x37,0x44,0xff,0x7b,0x98,0x83,0x7f,0xe3,0x67, - 0x77,0x30,0xa7,0x8c,0xa5,0x7f,0xf6,0x31,0x60,0xa7,0xa3,0x7c,0xbb,0x6a,0xcc,0x30, - 0xbb,0x0a,0xcc,0xe2,0x74,0xe9,0xec,0x66,0x10,0xdd,0xe6,0x13,0x1e,0xba,0xc8,0x80, - 0x67,0xd0,0xd0,0xec,0x48,0xb1,0xc3,0xb5,0xe6,0xd1,0xde,0xd7,0x26,0x02,0x18,0x00, - 0x9c,0x15,0xcf,0x71,0x8c,0x2b,0x97,0xdc,0x5d,0x70,0xec,0x67,0xbf,0xb5,0x3b,0xfb, - 0xb7,0x20,0x72,0x0d,0x3d,0x1f,0x4d,0x1b,0x64,0xbf,0xfc,0x2a,0xc3,0x26,0xa6,0xee, - 0x24,0xb7,0xd8,0xd9,0x17,0x8e,0xbf,0xd3,0xda,0xd5,0x97,0xe2,0xc7,0x57,0x6f,0x0d, - 0x39,0x0b,0x31,0xfc,0x57,0xb7,0x20,0xcc,0xa1,0xed,0x67,0x9c,0xa0,0x42,0xe7,0x85, - 0x23,0xf4,0xf5,0x9c,0x81,0xf2,0xfd,0xe6,0xdd,0xc9,0x57,0x9c,0xc6,0xd8,0x9b,0xfe, - 0xb5,0xa9,0xec,0x74,0xf4,0xa5,0xa0,0xd0,0x37,0x31,0x85,0x1f,0xa3,0x64,0x8e,0xb2, - 0x35,0x09,0x25,0x80,0x5a,0xe3,0xb1,0x3f,0x74,0x8c,0xf7,0x20,0x6f,0xf4,0xf9,0xdc, - 0x2d,0x6c,0x92,0x4d,0xb9,0x91,0x82,0xd4,0x11,0x48,0x6b,0x75,0x4a,0xb2,0x8d,0x34, - 0x4e,0xa7,0xe8,0xb8,0xf5,0x35,0x26,0x4b,0x03,0x5b,0x7b,0x8a,0xba,0xe7,0x87,0xa6, - 0x96,0xa3,0x56,0xae,0x4d,0x7d,0x7f,0xf7,0x71,0x5d,0x89,0x8e,0x2a,0xdd,0x11,0x7a, - 0x8b,0x1a,0x8d,0xa9,0x76,0x0c,0xb0,0x9a,0x96,0x52,0x05,0x87,0x3c,0x7d,0x41,0x6c, - 0x2b,0xd3,0x81,0xdd,0x47,0xe8,0xea,0x51,0x0b,0x40,0x0c,0x82,0xdd,0x1a,0x34,0x55, - 0x49,0x69,0x41,0x14,0x8d,0xd4,0x40,0x27,0x49,0xba,0xde,0x40,0xc7,0x58,0xcd,0x59, - 0x3d,0xdc,0xf6,0xfe,0xc1,0x7a,0xc3,0xb5,0x0d,0x2f,0x48,0x3d,0x63,0x67,0x23,0x24, - 0xc1,0x15,0xea,0xd5,0x59,0x2b,0xd7,0xe3,0x8e,0x9a,0xf8,0x4d,0x63,0xac,0x2a,0x76, - 0x34,0x63,0x94,0x3e,0xd8,0xda,0x03,0x4f,0x71,0xba,0x5a,0x1a,0xff,0x29,0x8a,0x01, - 0x71,0xa7,0x18,0xf8,0x85,0xe6,0x56,0x6a,0x57,0x22,0xb6,0x26,0x51,0x8f,0x19,0xef, - 0x53,0x50,0xe5,0xc4,0x69,0x36,0xc8,0xdd,0x29,0x65,0x8c,0x73,0x29,0xca,0xcc,0x4f, - 0xef,0x8c,0x10,0x1d,0x6f,0x07,0x20,0xb3,0xa7,0x3d,0x50,0x09,0x22,0x03,0x63,0xce, - 0x58,0x34,0x8f,0xdd,0x24,0xc3,0x30,0xb6,0xdc,0xd7,0x23,0x02,0xf0,0xc3,0x33,0xb9, - 0x3d,0x39,0x6b,0xeb,0xf1,0x9d,0x83,0x47,0xb1,0x13,0x14,0x48,0x31,0x8b,0x09,0x4d, - 0x7e,0xed,0x05,0x87,0x75,0x2d,0x2d,0x72,0x61,0x2f,0xd4,0xae,0xb1,0x58,0xd5,0xfd, - 0x5d,0xc7,0x10,0x4e,0x48,0x06,0xfc,0x7e,0x02,0x8a,0xe2,0x68,0x05,0x82,0x3e,0x7d, - 0xb8,0x02,0x47,0xbf,0xc6,0xa8,0x0f,0x9c,0xd5,0x68,0xb9,0x42,0x44,0xa0,0x45,0xd1, - 0xa6,0x33,0x0b,0xd3,0x61,0x14,0xe3,0x31,0xda,0x17,0xae,0x82,0x23,0x5b,0xa8,0x4e, - 0xec,0x4b,0x9c,0x31,0x4e,0x40,0x33,0xc5,0x53,0x42,0x50,0x52,0xf9,0x34,0x30,0xe5, - 0x83,0xbb,0x30,0x92,0xe7,0x6f,0xd4,0x9b,0x63,0x68,0x70,0x79,0xf4,0x08,0xe5,0x71, - 0x42,0xda,0xd9,0xdb,0xd7,0x28,0x26,0xec,0x32,0x4d,0xce,0x58,0xe2,0x3e,0x93,0x1b, - 0x7f,0xa2,0xd8,0xe1,0xe2,0x4a,0x37,0xe0,0x1d,0x27,0xce,0x57,0xde,0x23,0x19,0x2c, - 0x6a,0x01,0xf2,0x3b,0x7a,0x21,0x4c,0x81,0x5c,0x1d,0xbd,0xe5,0x1f,0x4b,0xcb,0xc1, - 0xae,0x46,0x15,0x05,0x0a,0x8a,0x5f,0xcb,0x4a,0xa6,0x59,0xe2,0xe3,0x40,0xce,0xe8, - 0x6f,0x55,0xd7,0x58,0x01,0xfa,0x1f,0x12,0x4c,0x32,0xc4,0x78,0x20,0x61,0xcf,0x9e, - 0x2a,0x01,0x2a,0x87,0x77,0x06,0x10,0xb0,0xe4,0xae,0xe0,0x0a,0x3d,0x71,0xd1,0x5e, - 0xc4,0x7d,0x01,0x9d,0xe9,0x1b,0x63,0x0f,0xe9,0x0d,0xf3,0x3a,0x5c,0xc4,0x80,0x06, - 0x3b,0x92,0xe2,0xdd,0x08,0xba,0x88,0x81,0xe2,0xad,0x70,0x10,0xab,0xb5,0x62,0x92, - 0xa1,0xf5,0xa9,0x47,0xe7,0xaf,0xe9,0xcc,0x39,0xbb,0xfb,0xab,0xc7,0xe5,0xff,0xcf, - 0x9c,0x92,0xcb,0x73,0xf1,0x1e,0x46,0xde,0x95,0xce,0xc5,0x1d,0xe3,0x7b,0xb2,0xd7, - 0xf5,0xbf,0xe6,0xf1,0xf6,0xff,0xf8,0xa9,0xf6,0x5f,0x38,0x79,0xfe,0x77,0x1e,0x38, - 0xaf,0x5a,0xd5,0xe5,0x87,0xc9,0xc8,0x4d,0xa9,0xd7,0xcd,0xb4,0x74,0xa6,0x0c,0x28, - 0x27,0x0e,0x5a,0xad,0xbf,0x74,0x1e,0xbc,0xe6,0x31,0xf0,0x97,0xe8,0xf7,0x1f,0x18, - 0x0b,0x61,0xef,0xae,0x96,0x50,0xce,0xb5,0x83,0x5f,0x90,0xac,0x3d,0x44,0x6b,0x10, - 0xcb,0x67,0x71,0x10,0xb9,0x23,0xf2,0x62,0x43,0xd2,0x4e,0x4e,0xa3,0x4d,0xf4,0xe1, - 0x98,0x90,0xcd,0x29,0x89,0xa6,0x86,0x8b,0xfe,0xeb,0xd7,0xb8,0x0b,0xd0,0x80,0xfd, - 0x07,0x1f,0x29,0xd2,0xc9,0xa0,0xe6,0x8b,0xb5,0x5c,0x21,0xc8,0x55,0x00,0xf2,0x90, - 0x65,0x8f,0x12,0xa1,0x07,0x7c,0xf0,0x12,0x1f,0x24,0xad,0x21,0xfa,0x62,0x06,0xd9, - 0x64,0x9b,0xce,0x59,0x0c,0xd1,0xb2,0xf0,0x5d,0x25,0xb7,0x87,0xaf,0x22,0xe9,0x13, - 0xa4,0xb9,0xd5,0xa7,0x68,0x34,0xf9,0x04,0x04,0xac,0x25,0x11,0x16,0x93,0x78,0xeb, - 0x92,0xbf,0x5a,0x0a,0xec,0x70,0x38,0x61,0x0f,0x63,0xd0,0x59,0x84,0xcb,0x8c,0x94, - 0x01,0x01,0x0b,0xa2,0xf9,0xd7,0x9b,0x85,0x18,0xc1,0x97,0x4d,0xe3,0x64,0x34,0x32, - 0x12,0x77,0x6e,0x70,0x0c,0xb0,0x98,0xc5,0x49,0x40,0x8e,0x12,0xe8,0x86,0x87,0x1e, - 0x7c,0x33,0x98,0x02,0xee,0x14,0x2a,0x23,0x57,0x04,0x2b,0x7d,0xe5,0xe5,0x80,0x26, - 0xbf,0x6c,0x12,0x1f,0x59,0x7b,0x1f,0x95,0x16,0x03,0xd4,0x4c,0xf4,0xed,0x90,0x6c, - 0x12,0x7d,0x7c,0x47,0xf9,0x31,0x8a,0xeb,0x27,0x5f,0x71,0xe8,0xb7,0x7f,0x0d,0x8b, - 0x84,0x9c,0x9f,0x54,0x36,0x83,0xfc,0x00,0x52,0x3f,0x1e,0xa9,0xa3,0xd2,0x4b,0xb2, - 0x55,0x6a,0x34,0x3e,0x9c,0x7d,0x3c,0x79,0x6b,0x50,0xbe,0x0b,0x36,0x5b,0x58,0x5f, - 0x6f,0x3e,0x6a,0x3c,0x5f,0x43,0x17,0x7e,0x4c,0x62,0x3f,0x17,0xf6,0xa4,0x4c,0x5f, - 0xc1,0xd5,0x66,0x5e,0x39,0xce,0xec,0xf6,0xc9,0xe2,0x1c,0x1e,0x1b,0x9f,0x00,0x46, - 0x9f,0xff,0xb6,0xac,0x84,0xd0,0x01,0x90,0x78,0x0b,0x4d,0x42,0x9a,0x85,0x96,0x0a, - 0x6a,0x75,0x4c,0xa6,0x84,0x7e,0xb9,0xe6,0x87,0x3b,0x2b,0x7d,0x8a,0x4a,0x73,0xc6, - 0xd4,0x4f,0x2a,0xce,0x4f,0xb0,0x10,0xb0,0x04,0x50,0x54,0xb8,0xdb,0x52,0xf8,0x7f, - 0xd2,0xe1,0xc4,0x17,0xae,0xed,0x3b,0x89,0x48,0xda,0xe8,0x27,0xa8,0xcf,0x3e,0x61, - 0xfc,0x0a,0x19,0x2b,0x33,0xe9,0x48,0x3b,0xf9,0xce,0xfe,0x23,0x1a,0x1a,0xca,0x71, - 0xd1,0x38,0xa3,0x7c,0x2f,0x52,0x5a,0x63,0xff,0x97,0xe2,0x06,0x6b,0xb4,0x3b,0x4d, - 0x68,0xcd,0x36,0x44,0xea,0x3a,0xa3,0xb3,0x6b,0x39,0x5f,0x6e,0x5f,0x58,0xd7,0x79, - 0xca,0x8d,0xe3,0xf5,0xbd,0xa7,0x2a,0x2d,0x9f,0xa3,0x0d,0x9e,0xed,0x13,0x67,0xef, - 0xde,0x7e,0x58,0xc3,0x43,0xe0,0xfc,0x83,0x88,0x87,0x5a,0x57,0x12,0x0b,0xb3,0x78, - 0x89,0xe0,0x45,0xbe,0xde,0x93,0x28,0x00,0x95,0x07,0x83,0xe3,0xa2,0x00,0xcb,0x82, - 0xbc,0x7d,0xb5,0x52,0x02,0xe3,0x88,0x4d,0xa0,0x80,0x18,0xb3,0x2b,0x25,0x8e,0x61, - 0x00,0x24,0xfa,0x31,0xe1,0x6a,0x9d,0x93,0x32,0x04,0x08,0x65,0xd6,0x69,0x7c,0x78, - 0x7f,0xf6,0xfa,0xb7,0x75,0xb4,0x84,0x4c,0x54,0x59,0x67,0x96,0x6f,0xcf,0xce,0x5f, - 0xbc,0xfd,0xe1,0xdc,0x7e,0xbb,0xe3,0x74,0x9c,0x96,0xfd,0xb6,0xdd,0x76,0xda,0xce, - 0x63,0xc7,0x8c,0x35,0x8a,0x76,0x9b,0xe5,0x67,0x1e,0xdb,0x2f,0xe7,0xa7,0x94,0x95, - 0x28,0x0f,0x06,0x59,0x7d,0x0c,0x20,0xc6,0xeb,0x70,0x1d,0x79,0x72,0xa4,0xb6,0x44, - 0x7b,0x77,0xdd,0xdd,0x5d,0x60,0x48,0x88,0x3f,0x06,0xe8,0x2f,0x61,0xa6,0x98,0x28, - 0x48,0x49,0x40,0xc6,0xf0,0x78,0xd6,0x4f,0xf0,0xec,0xe8,0x2b,0xf0,0x98,0x34,0x9c, - 0xc6,0x6b,0x73,0x16,0x8d,0x0e,0xe2,0xe0,0xd0,0x21,0x62,0x16,0x92,0xca,0xf8,0xe8, - 0xa2,0x62,0x3f,0x8e,0xaa,0xb0,0x44,0xfb,0x5b,0x5b,0xc1,0x25,0x0f,0xa1,0xa7,0x2a, - 0xb8,0x14,0x9c,0x28,0x43,0xb8,0xa3,0x70,0xb5,0x60,0x8e,0x27,0x29,0x57,0x28,0x6c, - 0x53,0xad,0x84,0x41,0xcf,0x7e,0x7a,0x79,0x13,0xea,0xc4,0x9e,0x38,0x0a,0xf9,0xdc, - 0xcd,0xd1,0x32,0x8e,0x7a,0x3b,0xc7,0x4e,0xe4,0xd1,0x12,0x40,0x57,0x60,0x4b,0xa5, - 0x32,0x26,0x4c,0xf3,0xf2,0x73,0x8c,0x1f,0x7d,0x0c,0x0e,0xcb,0xd8,0xf7,0xef,0xf5, - 0x07,0x16,0xf0,0xc9,0x3f,0x20,0x89,0x66,0xb8,0x3b,0xa3,0x44,0xb8,0x0e,0xe2,0xe9, - 0x3e,0x0e,0x20,0x8d,0x02,0x6f,0x3d,0xc7,0x91,0xff,0xa9,0x08,0x4a,0xa2,0xa3,0xff, - 0x3f,0x84,0x50,0xca,0x81,0xfe,0x1b,0x62,0x28,0xff,0x4a,0xe8,0xe4,0x9a,0xf6,0xc9, - 0x56,0x27,0x3f,0x59,0xfd,0x40,0xd6,0x6b,0x76,0x5e,0x7d,0xc4,0x0a,0xc7,0x5d,0x63, - 0x79,0x72,0xae,0xac,0x31,0xb4,0x09,0x23,0xdb,0x6c,0xba,0x4c,0x36,0xa3,0x14,0x0f, - 0xa0,0x3d,0x22,0x6d,0x17,0x2c,0x1a,0x8d,0xf2,0x73,0xf4,0x9d,0x47,0x7f,0xd3,0x70, - 0x88,0x62,0xf0,0x12,0x03,0x9d,0x7b,0x9b,0x47,0xdf,0x34,0x06,0x2e,0x66,0x1d,0xd3, - 0x4b,0xd7,0x1c,0xf5,0xaf,0xcb,0x81,0xdf,0xba,0x28,0x9a,0x84,0x78,0xba,0xbe,0xe6, - 0xe1,0xfa,0x12,0xec,0x5a,0xe6,0xbb,0x3c,0x8a,0x3e,0x92,0x63,0x50,0x83,0xdc,0x97, - 0xc9,0x45,0x28,0x24,0x23,0x50,0x05,0x6d,0xd6,0x6b,0x58,0xc4,0xf1,0xc3,0x46,0x6f, - 0x16,0x83,0x3b,0x47,0xd1,0x1b,0x7a,0x4d,0x5e,0xae,0x18,0x9b,0x05,0xbf,0x2b,0x4e, - 0xb4,0xeb,0x52,0x4c,0xf6,0x95,0x7c,0x2a,0xc9,0xfc,0x81,0x6e,0xc9,0x11,0x5c,0x85, - 0x03,0xd6,0xa1,0x99,0x26,0x10,0x3a,0x6d,0x1a,0x91,0x9b,0x89,0x04,0x4b,0x7a,0x06, - 0xa6,0xbd,0x56,0x25,0xcf,0x1c,0x65,0xfa,0x2a,0xa5,0x98,0x6b,0x99,0x47,0x8f,0x38, - 0x56,0x51,0x1a,0x4f,0xe1,0x90,0x4a,0x3f,0xbf,0x04,0x2b,0x7e,0x4c,0x3c,0x0f,0xd5, - 0xce,0xd8,0x68,0xfc,0xfc,0xbd,0x45,0x5d,0x1d,0x72,0x5a,0x4a,0x9e,0x56,0xec,0x26, - 0xd7,0x98,0x62,0x2f,0xce,0x33,0xac,0x90,0x89,0x7b,0x9b,0x0b,0x15,0x3d,0x3f,0xfd, - 0xd4,0x23,0xbb,0xaf,0xf2,0x28,0xa9,0x6d,0x0d,0x8f,0x8d,0xbc,0x55,0xcd,0x3d,0x7a, - 0x1a,0x86,0xe2,0x1e,0x2f,0x5c,0xf5,0x30,0x4c,0x0f,0xa4,0xaf,0x95,0x63,0xb1,0x9e, - 0x10,0x64,0xd7,0x8e,0x21,0xc4,0xed,0x4c,0x24,0xc2,0xb8,0xf3,0x32,0x67,0x6d,0xdc, - 0x42,0xef,0xda,0xa7,0x62,0x16,0x59,0x9d,0x00,0x11,0x80,0xd2,0xa0,0x1d,0x7f,0x15, - 0x2b,0x3e,0x51,0x6e,0xec,0x64,0x23,0x9b,0x4f,0x30,0x1b,0xa9,0x60,0xc2,0xa0,0xa7, - 0x02,0xd0,0x5d,0xe6,0xd2,0x30,0x0e,0xa0,0xf6,0x3d,0x3a,0xb8,0x4b,0xa2,0x00,0x43, - 0x49,0xe8,0x30,0x44,0xba,0xbc,0x23,0xcd,0x83,0x32,0xd0,0xcc,0x3d,0x9d,0xb5,0x62, - 0x18,0xcf,0xc7,0x59,0x98,0x52,0x26,0x12,0x19,0xe3,0x98,0xb8,0x19,0x2c,0x2c,0xe6, - 0x21,0x11,0xfe,0x9e,0x06,0x9a,0xf4,0x0d,0x14,0xf2,0x1c,0xe3,0x54,0xba,0x80,0x92, - 0xa1,0x5f,0x3a,0x08,0x4a,0x26,0x0f,0xf5,0xf0,0xe6,0x01,0xe3,0x57,0x6f,0xc0,0x37, - 0x41,0x51,0x24,0x0b,0xe5,0xb6,0xd0,0x24,0x04,0xe9,0xba,0x01,0x88,0x41,0xa6,0x7f, - 0x98,0x92,0x9b,0x24,0xfe,0x8d,0x57,0xf6,0x04,0x05,0xee,0xa5,0xc0,0xc7,0xc9,0xbf, - 0x44,0x52,0x0d,0x7e,0x00,0xce,0x62,0x1e,0xe5,0x5d,0xe1,0x88,0xe9,0xdc,0xc1,0x79, - 0x76,0xb8,0x0d,0x55,0xeb,0xe0,0x29,0x13,0x50,0x99,0x20,0x57,0x20,0x42,0xd0,0x71, - 0x2b,0x26,0x68,0x42,0x8d,0x02,0x44,0x8b,0x26,0x71,0x8d,0xbe,0x29,0xa6,0xc9,0xf9, - 0x91,0x0c,0xaa,0xa1,0x91,0xb5,0x1a,0xde,0x26,0xdc,0xc1,0xf9,0xce,0xad,0xbc,0x17, - 0x79,0xc8,0x02,0x1b,0x3d,0x80,0x47,0x91,0xe4,0xfd,0xc8,0x38,0xa3,0x17,0x12,0xc0, - 0x55,0x66,0xf5,0xe4,0x1e,0x28,0x85,0x9e,0x79,0x24,0xd7,0xc7,0xa0,0xe7,0x52,0xbb, - 0x45,0xe0,0xaa,0x9c,0x32,0xd8,0x16,0x65,0x94,0xd1,0x81,0x54,0xe2,0x10,0x55,0xa1, - 0x47,0xd6,0x14,0x53,0x28,0x79,0xb0,0xbe,0xac,0xe3,0xe8,0x9a,0x40,0xb3,0xae,0x44, - 0x14,0x7b,0x41,0x40,0x40,0x83,0xbd,0x4b,0x31,0x03,0x5a,0x1b,0x05,0x35,0x88,0x75, - 0x38,0x57,0x42,0x54,0x1f,0xbb,0x4c,0x67,0xa5,0x86,0xcc,0xb0,0x2a,0xec,0xd7,0xc2, - 0xe8,0xf7,0x5b,0xad,0x16,0x22,0xc8,0x3c,0x45,0xf7,0xa3,0x7f,0xff,0xa8,0x71,0xf3, - 0xc9,0xad,0x16,0xc3,0x33,0xa5,0xa6,0x6d,0xcc,0x62,0x54,0x43,0xdb,0xad,0x96,0x72, - 0xbb,0xa6,0xd8,0x7a,0x39,0x9b,0x55,0x5c,0x36,0x5f,0x1d,0x34,0xef,0x94,0x52,0xee, - 0x80,0xee,0x8f,0x18,0x57,0xe6,0xa2,0x32,0x61,0x4e,0x95,0xd4,0x69,0x61,0x17,0x87, - 0xdb,0x7a,0x8e,0xa6,0x94,0xbc,0xbe,0xdd,0x84,0x83,0x2c,0x74,0x2d,0x8e,0x73,0x9e, - 0xf3,0x30,0xe4,0x03,0xb5,0x38,0x50,0xaf,0x9a,0x94,0x29,0x66,0x70,0x54,0xd0,0xd7, - 0xd2,0xd8,0xd4,0x14,0xba,0x7a,0xf1,0xc1,0x48,0xa7,0x9a,0x88,0x80,0xf2,0x6d,0x92, - 0x9d,0x04,0x01,0x0b,0x23,0xf8,0x50,0x08,0x71,0xa8,0x69,0x62,0x9a,0x8f,0xab,0x24, - 0x6f,0x80,0x20,0x5c,0x08,0xaa,0xe1,0x1c,0x07,0x5a,0x64,0x85,0x24,0xfe,0x34,0x7d, - 0xbf,0x9c,0x43,0xb8,0x0b,0x84,0x02,0x2d,0xbf,0x9c,0x7f,0x17,0xa8,0x34,0xe0,0x00, - 0x5a,0x78,0xb5,0x14,0xbc,0xe4,0x58,0x4c,0x7e,0x5f,0x40,0x9a,0x2b,0x60,0x53,0xd9, - 0x63,0x73,0x77,0x6c,0x4a,0x23,0x4b,0x2f,0x2b,0x61,0x2a,0x22,0x25,0x2e,0xc7,0x6b, - 0x0e,0xee,0x54,0x7e,0x10,0x86,0x68,0x49,0x99,0xd0,0xd5,0xe4,0x15,0x70,0xfd,0x2b, - 0x0a,0x05,0x29,0x88,0xa4,0x51,0x64,0xc9,0xcc,0xa3,0xe5,0x48,0x2b,0xda,0xc4,0xbf, - 0xa9,0x6f,0x62,0x31,0xd4,0x37,0xf4,0x7b,0x8a,0x0f,0xaa,0xdb,0x62,0x0a,0x23,0x05, - 0x53,0x74,0xe7,0x02,0xb0,0xe0,0xbb,0xa5,0xe1,0x4d,0x2a,0x77,0x23,0x29,0x81,0x25, - 0x4c,0x25,0xf7,0x33,0xdd,0x5c,0xa0,0xb6,0x8b,0xc0,0x11,0x5d,0x82,0xc3,0xfc,0xb1, - 0x42,0x82,0xa3,0x9f,0x47,0x05,0x4c,0x92,0x37,0xf0,0xc4,0x51,0xdc,0x24,0xcf,0x19, - 0x4e,0xe0,0x5a,0x41,0x10,0xf1,0x9e,0x1b,0xf2,0x6e,0x7d,0xcc,0xdd,0x99,0xa3,0x45, - 0xc5,0xa6,0xb3,0x8b,0x67,0xa2,0xe5,0xbc,0xdc,0x5a,0xea,0xb7,0xa2,0x15,0x55,0x4b, - 0x9b,0x50,0x4d,0x31,0x4b,0x29,0x8f,0x32,0x3f,0x9c,0x79,0xd5,0xe4,0x51,0x2a,0x57, - 0x1c,0x08,0x1c,0x55,0x39,0x0b,0xa5,0x2c,0x4a,0xf2,0x2a,0x33,0x12,0x3a,0x2f,0xd5, - 0xd5,0x7b,0x7c,0xc5,0x49,0xf9,0xe6,0xb6,0xf1,0x95,0x95,0x0b,0x4a,0x81,0x7f,0x74, - 0x0e,0x32,0x2b,0xc6,0x1d,0x4b,0xe3,0x5c,0x23,0x22,0x63,0xdd,0x29,0x2a,0x38,0x01, - 0xbe,0xb1,0x64,0x26,0x0b,0x20,0xc3,0x78,0xc4,0x49,0x47,0xa7,0x3e,0xfa,0x81,0x84, - 0x80,0x3e,0xce,0xe1,0x20,0x29,0x9b,0x87,0x6a,0x03,0xcf,0x6a,0x84,0xc1,0xd7,0x63, - 0x10,0xae,0x80,0x61,0xdb,0x40,0x0a,0x64,0xb6,0x8d,0x5f,0x52,0x4c,0xe2,0x95,0x4d, - 0x70,0xa1,0x5e,0x23,0x6c,0x42,0x8f,0xec,0x53,0xc6,0x36,0x7e,0x3d,0xcb,0x60,0xdd, - 0x94,0x68,0x26,0x62,0x0b,0x05,0x92,0xc0,0x5c,0xb4,0x69,0x51,0x26,0xae,0x33,0x77, - 0x0c,0x62,0x07,0xca,0x4d,0xa7,0x93,0x24,0xa2,0x94,0x70,0x3c,0x76,0xbe,0x9d,0xd3, - 0x29,0x57,0xfa,0x7b,0x84,0x4c,0x01,0xc8,0x68,0x75,0x06,0x2f,0x64,0xaa,0x2a,0x42, - 0x8c,0x59,0x02,0x04,0x63,0x92,0x65,0x71,0x77,0x7b,0xbb,0xfd,0xb2,0xe3,0xb4,0xf7, - 0x0f,0x9c,0x5d,0xa7,0x4d,0x14,0x57,0xb5,0x09,0xea,0x66,0xb0,0x24,0x6a,0xb3,0xc6, - 0xc4,0x8e,0x97,0xc2,0x98,0xa5,0x09,0xca,0x13,0x38,0x98,0xb9,0x4c,0x1e,0xd8,0x3c, - 0xc3,0x64,0x23,0x04,0x11,0x3d,0x19,0x96,0x63,0xfc,0x97,0x9e,0x59,0x8c,0xe3,0x8d, - 0xfc,0x14,0x33,0x9a,0xa0,0x9b,0x88,0x2f,0xe3,0x37,0x72,0x83,0x92,0xc7,0x69,0x4b, - 0x72,0xd3,0x93,0x58,0x65,0x81,0x78,0xb6,0x31,0xe7,0x36,0x30,0x72,0x3a,0xb9,0x41, - 0xf1,0x91,0x2b,0x71,0x2a,0x75,0xe4,0xf1,0xb9,0xe3,0x48,0x29,0xb3,0xdf,0xea,0x48, - 0xc6,0xd6,0xd2,0x48,0xc6,0x51,0x34,0x9c,0x4d,0x91,0x14,0x5d,0x79,0xd9,0xab,0xc0, - 0xc3,0x9f,0xdf,0xdf,0xbd,0x1e,0x35,0x36,0xc5,0x66,0xdc,0xb4,0x1c,0x02,0xe2,0x1b, - 0x20,0x2e,0x0e,0x86,0x4e,0x01,0x33,0xd9,0xc4,0xf8,0xd6,0xcd,0x35,0x43,0x1f,0x61, - 0x7d,0x07,0x14,0x29,0x2a,0x42,0x1e,0x35,0x26,0xac,0xd1,0x0b,0x21,0x76,0xaf,0x45, - 0x26,0xb8,0xac,0x4e,0x28,0x04,0x30,0x2a,0xd4,0x4c,0xa5,0x8d,0x23,0xe2,0xb1,0xb3, - 0x9b,0x67,0x87,0xde,0xd9,0x65,0xdf,0x0a,0x8d,0x85,0x94,0xc9,0x07,0xe7,0x50,0xa5, - 0x24,0xe6,0x85,0x7e,0x45,0xb0,0x31,0x9b,0x09,0x0a,0x69,0x23,0x15,0xd9,0x88,0xf5, - 0xf2,0xd3,0xf4,0x4a,0x0d,0xa4,0x26,0xc1,0x4b,0x81,0xb4,0x99,0x47,0x79,0x86,0xc4, - 0xb8,0x28,0xce,0x69,0x2d,0xfa,0xf1,0x72,0x64,0x7e,0x57,0x8d,0x34,0xee,0x22,0xb9, - 0x38,0x74,0x8b,0x2d,0x60,0x72,0x50,0x90,0x18,0x15,0x42,0x54,0x56,0xaf,0xd3,0xaa, - 0x26,0x99,0xc7,0xe1,0xb9,0x85,0x21,0xd6,0x0f,0x43,0xcb,0xbf,0xdb,0xd9,0xaf,0x69, - 0x46,0x1f,0xca,0x30,0x9a,0x85,0x99,0xb9,0x0c,0x37,0x00,0xf5,0xfd,0x38,0x3b,0x7a, - 0x66,0x02,0xe3,0x34,0x84,0x63,0x57,0xef,0x19,0x00,0xd0,0x38,0x7b,0xf5,0xee,0xfc, - 0xf5,0xbb,0x57,0x6f,0xfa,0xe6,0x77,0xe2,0x7f,0xe2,0x43,0x9a,0xf5,0x17,0xa8,0x48, - 0x74,0x4d,0xd3,0xa6,0xc8,0xbf,0x51,0x97,0x30,0xd4,0x9e,0xb8,0xe9,0x5b,0xd0,0xbe, - 0xf3,0xa7,0xd3,0xc0,0x17,0x0f,0xd2,0x8e,0x77,0xc6,0x09,0x0b,0x54,0x95,0xd0,0xf3, - 0x46,0xa9,0xb4,0x00,0x8a,0x77,0xc0,0xda,0xd2,0x6e,0xcb,0x1e,0x8e,0xaf,0xba,0xe1, - 0x2c,0x08,0x6c,0xf4,0x7d,0xea,0x2e,0x1e,0x6c,0xba,0xda,0x0d,0x7f,0x70,0xce,0xa9, - 0xb4,0x7b,0x71,0x69,0x87,0xa4,0xac,0x43,0x69,0xd2,0xf8,0xf1,0xdc,0x24,0x81,0x07, - 0xa0,0x86,0x59,0x77,0x81,0x96,0x09,0x2a,0x83,0x36,0x05,0xf8,0xf1,0x60,0x23,0x17, - 0x3f,0x07,0x48,0x7a,0x78,0xc5,0x17,0x3f,0x71,0x8d,0x87,0xde,0xb3,0x67,0xe3,0x59, - 0xc8,0xf6,0xe9,0x6f,0x1b,0xa9,0xb5,0x10,0x5b,0x4f,0xed,0x5e,0x90,0xc1,0x92,0xbb, - 0x33,0x32,0xb0,0x45,0x09,0x14,0x78,0xd0,0xca,0xeb,0x15,0x4e,0x92,0xc4,0xbd,0x03, - 0xb1,0x23,0xca,0x22,0x14,0x4e,0x9c,0x34,0x40,0x9a,0x3c,0x74,0x41,0xda,0xac,0x6f, - 0x0b,0xe5,0xd0,0xd4,0xd2,0xdb,0x23,0x76,0xdf,0x98,0x5a,0x0b,0x04,0x76,0xd6,0xff, - 0xb6,0x61,0x7e,0xc3,0x12,0x80,0xd5,0xcb,0x1c,0x24,0x43,0xa7,0xe2,0x56,0xe6,0x29, - 0x3c,0xe7,0xb4,0x03,0x90,0xb1,0x61,0x22,0xe1,0x80,0x72,0x74,0x12,0x85,0x73,0x43, - 0x4b,0x58,0xe6,0x7c,0x9a,0x60,0xd5,0x4f,0x93,0x3e,0x80,0x4d,0xbe,0x95,0xdd,0x35, - 0xac,0x45,0x56,0xa5,0x40,0xa2,0xa1,0x07,0xbb,0x03,0x9a,0x8d,0x3e,0x38,0x90,0xcf, - 0xb4,0xd9,0xa2,0x57,0x5e,0x78,0x05,0x2f,0x9c,0x84,0x93,0x26,0x35,0xb6,0x2f,0x36, - 0x0e,0x8f,0xcc,0xcb,0xed,0x2b,0x5b,0x75,0x30,0x94,0xc5,0x17,0xe6,0x86,0xd9,0x35, - 0xe9,0xa0,0xcf,0xb4,0xcd,0x43,0xfc,0x1d,0x64,0xf8,0xf3,0x08,0x7f,0x5e,0xe1,0xcf, - 0x4d,0x73,0x13,0x7e,0xfe,0x39,0x8b,0xe0,0xe1,0xe1,0x62,0x78,0xf9,0x00,0x7d,0xe7, - 0x9d,0x83,0x1e,0xd5,0xc0,0xa4,0x21,0x76,0x14,0x67,0x30,0x08,0x40,0x67,0xfc,0xd1, - 0xc7,0xff,0xdc,0xdf,0x2f,0x1e,0x30,0x9d,0xb2,0x3f,0x6e,0x3c,0xc7,0x67,0x00,0x39, - 0x88,0xd2,0x56,0xfe,0x13,0x99,0x54,0x33,0x05,0x80,0x7b,0x66,0xcf,0xd8,0xde,0xa6, - 0xcb,0x35,0xe8,0x43,0x8a,0xfa,0x15,0xec,0xad,0x9f,0xce,0xcf,0x3f,0x18,0x27,0x1f, - 0x5e,0x1b,0x7f,0x7f,0x75,0x9e,0x1a,0xee,0x30,0x89,0x80,0xe5,0xa4,0xb0,0xbd,0xa1, - 0xe7,0x94,0x5b,0xa6,0xd6,0x32,0x06,0xe0,0xc6,0x86,0x90,0x15,0x4e,0x06,0x80,0xd0, - 0xa7,0x6c,0x3d,0x09,0xbc,0x84,0x86,0x65,0x60,0x0f,0xe7,0xc0,0x59,0xf2,0x8b,0x40, - 0x38,0x3f,0x07,0xaa,0x08,0xae,0x31,0xf6,0xd0,0xbd,0x46,0x1e,0x96,0xa0,0x65,0xe3, - 0x86,0x93,0xb6,0xb9,0xc0,0xc4,0xdd,0x91,0x76,0x58,0xd2,0x93,0x8d,0xb9,0xd8,0x0b, - 0x26,0x00,0x21,0xa1,0xc5,0xc5,0x9e,0x36,0x31,0xd4,0x36,0x4b,0xee,0xc8,0xa9,0x9b, - 0x22,0x68,0x53,0xd4,0x26,0x90,0x83,0x51,0x2d,0x44,0x9f,0x61,0x16,0xf4,0xf1,0x7c, - 0xa4,0x34,0xc8,0x86,0xd5,0xa3,0xb9,0x60,0xf6,0x2a,0x37,0xe8,0x43,0x29,0xf1,0x93, - 0xfb,0xab,0x47,0x13,0x2c,0x45,0xc3,0x68,0x00,0x5e,0xe8,0xa0,0xa0,0x2b,0x17,0x1e, - 0xe0,0x5f,0xc9,0xaf,0x70,0x7a,0xda,0x42,0x39,0x18,0x1d,0x9c,0xb7,0x24,0x41,0x04, - 0x00,0x4d,0x84,0x0f,0x53,0xbf,0xdf,0xdf,0x6d,0xb5,0xad,0x05,0x62,0xdd,0x1b,0x4c, - 0xcf,0x0a,0x03,0xcc,0x26,0x98,0x58,0x1a,0x07,0xff,0x2a,0x49,0x60,0xcf,0x99,0x48, - 0x6b,0x00,0x25,0xa9,0xae,0xe8,0x29,0x71,0xfe,0x48,0x71,0x6c,0xa5,0x1e,0xfe,0x10, - 0x3d,0x30,0x3a,0x24,0x4e,0x74,0xbd,0xb1,0x21,0xbb,0x7a,0xde,0xef,0x77,0x5a,0x1d, - 0x55,0x80,0xc1,0xe4,0xf5,0xf3,0x7e,0xfe,0xc0,0x8b,0x02,0xa2,0xe4,0xfe,0xbe,0x61, - 0x12,0x4a,0x98,0x5b,0xb2,0xaa,0x65,0xf5,0x54,0x2d,0x4f,0x8e,0x5c,0x7e,0xec,0x79, - 0xb0,0x07,0xfe,0x04,0xba,0xfb,0x07,0xff,0xcd,0x8b,0xf2,0x44,0x3c,0xf9,0xe2,0x41, - 0xfc,0x15,0x53,0xf8,0x83,0xdf,0x3f,0x30,0x10,0xe9,0xfa,0x6f,0x85,0xef,0x71,0x04, - 0x84,0x80,0xe0,0x88,0x29,0xae,0xd5,0xae,0x53,0xdb,0x60,0x31,0xf5,0x40,0xa8,0x1c, - 0x75,0xcd,0x0f,0xef,0xcf,0xce,0x4d,0x9b,0xb3,0x22,0xa7,0xdd,0x85,0x29,0x28,0x44, - 0xf3,0x1c,0x48,0x10,0xec,0x2d,0x0c,0xc5,0x15,0xd9,0x8a,0xb6,0x11,0x60,0xe6,0x03, - 0x35,0xd8,0xfd,0xc7,0xd9,0xfb,0x77,0x4e,0x4a,0x7b,0xd8,0x1f,0xdf,0x35,0xa8,0x93, - 0x07,0x7d,0xb7,0x4f,0xaf,0x3f,0x7a,0x7f,0x82,0xb0,0x42,0xe0,0x42,0x40,0xb9,0x04, - 0xa8,0x5f,0xfc,0x30,0x3b,0x20,0x4a,0xd7,0x38,0xb0,0xc4,0xae,0x13,0xbb,0x61,0x98, - 0xdc,0xc5,0x59,0xb4,0xb1,0xc1,0x7f,0x51,0xe8,0xf9,0xe8,0xc2,0x87,0xe9,0x7f,0x52, - 0x78,0x80,0x55,0xff,0xba,0xe1,0x52,0x2b,0x14,0x17,0x01,0xbb,0xa1,0x81,0x3d,0xf9, - 0xfd,0x56,0xcf,0x3f,0x3c,0xe8,0xf9,0x5b,0x5b,0x96,0x7b,0xe1,0x5f,0xf6,0xdf,0xc2, - 0x8c,0x1d,0xb2,0x20,0x37,0xe8,0x67,0x42,0x0d,0x34,0xac,0xef,0x3a,0x7b,0xfb,0x54, - 0x7d,0x09,0x05,0x9e,0xba,0x31,0xd3,0x5f,0x37,0x27,0x49,0x03,0xb1,0xfe,0x5c,0xa5, - 0x31,0x38,0x6c,0xef,0x1f,0x9b,0x2d,0x80,0x94,0x69,0x6d,0x0d,0x9c,0x2c,0x12,0x74, - 0xad,0xbd,0x2f,0x56,0xc5,0xf9,0x23,0x02,0x9c,0x84,0xaf,0xb8,0x3c,0x3a,0x3d,0x8a, - 0x83,0xbb,0x1f,0x3d,0x58,0x7e,0xe0,0x48,0x0c,0x24,0x60,0x06,0x9b,0x17,0xf2,0xa8, - 0xe9,0x12,0x84,0x3b,0x98,0xcf,0x2b,0x20,0x33,0x39,0x72,0x7a,0x81,0xe8,0xdc,0x0b, - 0x34,0xba,0x9b,0x45,0x57,0x57,0x01,0xd0,0x5d,0x92,0x45,0xec,0xe7,0x0d,0x78,0x85, - 0x7c,0x70,0xe3,0x1d,0x9d,0x9b,0x43,0x25,0x07,0x1b,0x85,0x8d,0x89,0xaf,0x2d,0x4b, - 0x61,0x0b,0x2f,0x0b,0x39,0x54,0x9f,0xba,0xc9,0x88,0xb8,0x45,0x25,0x20,0x44,0xae, - 0x91,0x2a,0x66,0xa9,0x5f,0x6b,0x0c,0xa1,0xd1,0xee,0x1c,0xdc,0x23,0x90,0xb9,0x57, - 0x98,0xa1,0xe9,0x14,0x33,0x09,0x2c,0x99,0xe5,0xaa,0x09,0xa6,0x99,0x53,0x91,0x09, - 0xac,0x07,0x39,0x50,0xfc,0xcc,0xf2,0x83,0x80,0x15,0xd1,0xb2,0xc0,0x3f,0x77,0x07, - 0x30,0xc3,0xcd,0x6f,0xb4,0xeb,0x89,0x2f,0xf4,0x74,0x15,0x00,0xf0,0x1e,0x54,0xe7, - 0x92,0x16,0xff,0x91,0x2c,0x4d,0x6c,0x5e,0x62,0xa7,0x64,0x7d,0xb7,0xca,0xcc,0x93, - 0x86,0xa6,0x88,0x19,0xb4,0xc3,0xa3,0x40,0x99,0xc6,0x62,0x4c,0xe9,0xa1,0x11,0x1f, - 0xa8,0xf1,0xfb,0xd0,0x33,0x7e,0x3a,0x7f,0xfb,0x06,0x54,0x3d,0x34,0x92,0x8b,0x90, - 0x2e,0xa4,0xe2,0x77,0xc6,0xab,0xb3,0x0f,0x3b,0x1d,0xb2,0x15,0x3b,0xc4,0x02,0x30, - 0xde,0x7f,0xee,0x26,0x78,0x9c,0x8d,0xd3,0x4c,0x51,0x07,0xa1,0x24,0x9d,0x7e,0xc6, - 0x8d,0xb9,0xc3,0x6c,0x06,0xf8,0x79,0x87,0x9e,0xee,0x98,0xd1,0x95,0x4e,0x29,0x06, - 0x89,0x3f,0xba,0xf2,0x7a,0xc8,0x14,0x00,0x44,0x7e,0xe8,0x42,0xcb,0x83,0x99,0x1f, - 0x8c,0x38,0xbf,0xc2,0x8d,0xc8,0x0a,0x9c,0xb8,0xd4,0x54,0x06,0xbc,0x84,0x1b,0x43, - 0x0a,0x8a,0x4c,0x45,0x98,0xf3,0x85,0xd1,0x9d,0x74,0x20,0x74,0xe4,0x0a,0x47,0xc8, - 0x88,0x30,0xaf,0x19,0xe1,0xae,0x23,0xf0,0x07,0x0f,0x4d,0x56,0xc1,0x96,0x7c,0xe3, - 0x05,0x70,0x45,0x59,0x4b,0xfc,0x2d,0x80,0x97,0x81,0x4b,0xa5,0x57,0x40,0x17,0x4b, - 0x61,0x9e,0xba,0x47,0x8a,0x50,0xe2,0xe7,0x47,0xca,0x94,0x4f,0x7b,0x1e,0xed,0x55, - 0x4b,0xc9,0x6c,0x15,0x84,0x29,0xf3,0x29,0x09,0x9a,0x29,0xce,0x69,0xec,0x5f,0xcd, - 0xc4,0xbd,0x0e,0x74,0x46,0x01,0xd5,0x5c,0xed,0xd4,0x85,0xeb,0xbe,0x39,0x79,0xe7, - 0x98,0x5a,0xf7,0x79,0xba,0xdb,0x52,0xf7,0x9c,0xfc,0x16,0xba,0xe4,0x0c,0xae,0xa1, - 0x48,0xee,0x9a,0x3b,0x26,0xeb,0xad,0x68,0x79,0x03,0x4b,0xcd,0x70,0x4a,0xa6,0x42, - 0x59,0x3d,0x85,0x93,0xe5,0xf8,0x30,0xcb,0x04,0x71,0x17,0xba,0x2c,0xe5,0xfd,0xab, - 0xa4,0x73,0xaa,0x69,0x86,0x92,0x15,0x59,0x8e,0x54,0x6f,0x35,0xf1,0x40,0xe4,0xb9, - 0x7a,0x20,0x12,0xb9,0xfd,0x1d,0xa8,0x98,0xf2,0x7f,0x06,0xa9,0x9e,0xda,0xf3,0x77, - 0xdb,0x39,0x0d,0xe5,0x53,0x61,0xdc,0xe5,0xc8,0xd6,0xcc,0x6d,0xf8,0xef,0xb6,0x70, - 0x6c,0x2e,0xb3,0xf5,0x54,0x10,0x03,0x58,0x5b,0xd4,0x3f,0xfa,0x29,0xfd,0xe9,0xe1, - 0x52,0x93,0x1a,0x02,0x2f,0xf0,0x47,0x2f,0xdf,0xb6,0xfd,0xe7,0xcf,0xa1,0x10,0xfc, - 0xe8,0x29,0x82,0x42,0xaf,0x60,0xf0,0xbd,0x3a,0x0a,0x44,0x1f,0xe5,0xdb,0x4f,0xa9, - 0x7c,0x8d,0x65,0x0b,0x9a,0x0a,0x95,0xa3,0x37,0x9f,0x64,0xe9,0x9e,0x20,0x97,0x7d, - 0x94,0x37,0x63,0x77,0xe0,0x07,0x7e,0xe6,0x7b,0x20,0x97,0xb6,0xa8,0x36,0xe9,0x29, - 0x38,0x40,0x0c,0x32,0xf6,0x3e,0xd1,0xe3,0xfd,0x7d,0xea,0x24,0x98,0x8d,0x62,0xaa, - 0x5e,0xb4,0x72,0x22,0x25,0x6e,0x58,0x28,0xae,0x2f,0xf4,0x0a,0x2f,0xef,0xef,0x4d, - 0x69,0x3a,0x31,0xf5,0x0a,0x78,0xdf,0x42,0xb9,0x3c,0x12,0xa2,0x2d,0xd3,0xf8,0x0e, - 0xe4,0x98,0xd4,0x19,0xcf,0xd5,0x4f,0x72,0xbc,0xed,0x29,0xe2,0x3a,0xe8,0x73,0x13, - 0x7c,0xd5,0x82,0xd5,0x1b,0xd4,0xe8,0x04,0xf9,0x5e,0x62,0xea,0xc8,0xab,0xd0,0xef, - 0x9b,0x64,0x74,0x31,0xad,0xc5,0xa0,0x84,0xd2,0x98,0x23,0xdf,0x2c,0x34,0xc5,0x4a, - 0x0a,0x17,0x7f,0x40,0x7e,0x5f,0xae,0x03,0xfb,0xc5,0x64,0x09,0xa9,0xc4,0x5c,0x7b, - 0xba,0xdc,0x97,0xaf,0xf0,0x71,0x8e,0x35,0x42,0x2d,0x44,0x1a,0x80,0xb9,0x42,0x74, - 0xd1,0x55,0xe8,0x1f,0xb9,0xe2,0xf8,0xf0,0x60,0x75,0xf5,0x47,0xc1,0xe6,0x8b,0xf8, - 0x16,0xe7,0xf8,0x26,0x8a,0xf6,0x63,0xf9,0xeb,0xfe,0xfe,0xe2,0x32,0x87,0x44,0x56, - 0x01,0x05,0xd2,0xe1,0x5f,0x29,0xe7,0x56,0x43,0x88,0xac,0x24,0xdd,0x08,0xde,0xc6, - 0xf8,0x5a,0x90,0x77,0xf3,0x42,0x8b,0x3c,0xf9,0xd5,0x03,0x0f,0xab,0x34,0x1f,0x2f, - 0x17,0xa0,0x41,0xbc,0xe1,0x80,0x1d,0x10,0x6b,0x85,0x80,0xbc,0x58,0x86,0x0b,0xa6, - 0xe6,0x83,0x85,0x57,0x93,0x7a,0x23,0xa3,0xc9,0x1a,0x04,0x30,0x0c,0xb3,0xa7,0x09, - 0xfd,0xb8,0x27,0xed,0x4e,0x8b,0x34,0x3f,0x29,0x94,0xe6,0x3b,0x16,0x07,0xdd,0xb8, - 0xb1,0x16,0x17,0xe6,0x37,0xf2,0x06,0x0d,0x1b,0x7f,0x8a,0x5b,0x0e,0xe8,0x37,0x26, - 0xcc,0xba,0xac,0x4a,0x05,0xfe,0x08,0x87,0x07,0xff,0xad,0x27,0xd3,0xd0,0xd3,0xb7, - 0xd0,0xf2,0x72,0xd4,0x9b,0xc5,0xc0,0x91,0x3c,0x3c,0x68,0xf9,0xde,0x4d,0x1a,0xba, - 0xa4,0xaa,0x41,0x92,0xa0,0xda,0xc8,0x07,0x67,0x55,0xe8,0x11,0xbd,0x2f,0x11,0x24, - 0x84,0x9a,0x76,0x55,0x86,0x85,0xe3,0x7a,0x85,0x67,0x07,0x6f,0x28,0x88,0x1b,0x64, - 0x30,0x79,0x1a,0x96,0x8b,0x91,0xde,0x0d,0xad,0x84,0x77,0x53,0x39,0x67,0x90,0x82, - 0xd9,0x20,0x0b,0xfb,0x79,0xcb,0x78,0x74,0x04,0x5b,0x2b,0x0b,0x1d,0x79,0xe9,0x74, - 0x1f,0xcf,0x3d,0x7a,0x79,0x09,0xcc,0xa8,0x56,0x5a,0x35,0xda,0xe1,0xac,0x52,0x31, - 0x9e,0x0b,0x90,0xff,0x05,0xe1,0x9f,0xb0,0xa7,0x4e,0x03,0x58,0x48,0x6a,0xd6,0xcd, - 0x87,0x84,0xbe,0x56,0x96,0x43,0x67,0xc6,0xa0,0x1b,0x58,0x50,0xb7,0xaa,0xcf,0x3d, - 0xaa,0x8e,0x89,0x0d,0x98,0x76,0xa5,0xba,0x64,0xff,0xd1,0xfd,0xe3,0xa1,0xbe,0xbd, - 0x5b,0x81,0xde,0x05,0x38,0x91,0x69,0x48,0x6d,0xb8,0x5b,0x07,0x55,0x46,0xc0,0x50, - 0x58,0x6c,0x45,0xfd,0x4b,0xa0,0xd4,0xc6,0x8d,0x40,0x2c,0x6e,0x2a,0xb1,0x1d,0x57, - 0x01,0xfe,0xd6,0x51,0x9a,0x20,0x5f,0x19,0x22,0x36,0x8d,0xd9,0xab,0xdd,0x94,0x40, - 0xfd,0xaa,0xe3,0x5d,0xb9,0xb0,0xda,0x76,0xa4,0x7e,0x4c,0xda,0x68,0xf0,0xaf,0x42, - 0xea,0xdc,0x99,0x69,0x41,0xaa,0xa0,0x5a,0x7f,0x74,0x6b,0xb0,0x17,0x15,0x82,0xa5, - 0x43,0x83,0x07,0xa0,0x13,0x98,0x9a,0x21,0x3f,0x54,0xf7,0x06,0x0b,0x36,0x06,0x86, - 0x52,0x19,0xdb,0xc6,0x00,0x9d,0x2c,0x97,0x70,0xee,0xe1,0xf8,0x0a,0xd4,0xb7,0xc6, - 0xb5,0xb5,0x40,0xc1,0x13,0xd4,0x2c,0xc3,0x35,0xfe,0x05,0x54,0xe4,0x5f,0x14,0x8c, - 0x96,0x09,0x39,0x49,0xe4,0xf3,0xe2,0xb4,0x4c,0x8c,0x69,0x36,0xfb,0x6a,0x22,0xc3, - 0x1c,0x5f,0x89,0x8d,0x32,0xec,0xf3,0xa3,0x3d,0xb5,0x93,0xfe,0xd0,0x21,0x01,0xc7, - 0xfe,0x13,0x7e,0x21,0xf7,0xbe,0xbf,0x5f,0xb0,0x9d,0x0f,0x8d,0x78,0x73,0x78,0x89, - 0x42,0x9c,0x50,0x15,0x1a,0xd3,0xfe,0xb5,0x43,0xc9,0xa1,0x1a,0xdb,0xff,0xc4,0xc2, - 0x8d,0x8b,0x76,0xf3,0xe5,0xa5,0xf5,0xbb,0xd3,0xf8,0x7d,0xbe,0x65,0x7d,0xbb,0x0d, - 0x6a,0x0b,0x59,0xd2,0xd2,0x7e,0xe3,0x4f,0x47,0xb0,0xd9,0x8b,0x4b,0xeb,0x62,0x6b, - 0x7a,0xd1,0xbe,0x6c,0xb6,0x2f,0xc9,0x72,0x84,0x05,0x6e,0xfa,0xe9,0xc5,0xf4,0xa2, - 0x73,0x79,0x29,0xed,0xee,0x37,0xfd,0x3e,0x1a,0x20,0x8f,0x4d,0xb3,0x2b,0x14,0xc2, - 0x1b,0x42,0x1e,0x0e,0x8f,0xc2,0x89,0x13,0x26,0x61,0x58,0x21,0x67,0xa3,0xeb,0xaa, - 0x7d,0x80,0x8f,0x3d,0xfa,0x80,0xa9,0xe1,0xba,0x45,0x73,0x59,0xe2,0xc0,0x4b,0x4b, - 0x7c,0x86,0x0d,0x59,0xfd,0x1c,0x85,0x82,0xdf,0x51,0x99,0xec,0xb6,0x5a,0x24,0xbb, - 0x15,0x0d,0xb8,0xe3,0xea,0x47,0x77,0xac,0x57,0x97,0x99,0x60,0x2a,0xc5,0xc4,0x07, - 0xd1,0x50,0xb6,0xac,0x58,0x26,0x8b,0xe5,0x4d,0x62,0x4e,0x93,0x7c,0xb2,0xf0,0x74, - 0x8c,0x71,0x29,0x5d,0xf2,0x65,0xe0,0xd6,0x0a,0xe9,0x43,0xf2,0xa2,0xfc,0x42,0x2f, - 0xad,0x8d,0xb3,0x9c,0xaa,0x23,0xaf,0x06,0x2f,0x3f,0xad,0xac,0xca,0x89,0x2f,0xb4, - 0x7e,0xe8,0x45,0x7d,0xe1,0x3c,0xb8,0xbf,0x32,0x55,0xfa,0xf4,0x09,0x3e,0x59,0x75, - 0xe5,0x65,0x74,0xfd,0xf2,0x6a,0x9f,0xb8,0x44,0x7d,0x6d,0x15,0xc4,0xbe,0xa2,0xbe, - 0x2c,0xa3,0xb7,0xa0,0x07,0x7f,0xe7,0x33,0xc4,0xb7,0x9f,0xf8,0xad,0x56,0xb6,0x9c, - 0xa3,0xa2,0x8a,0x1a,0x54,0xe0,0x93,0x2c,0x50,0x1d,0xe9,0xa3,0x2d,0xf0,0x60,0x57, - 0xb4,0xa3,0x7c,0x76,0x45,0x55,0x53,0x07,0x7e,0xee,0xf0,0x2c,0x1b,0x9e,0xd3,0x63, - 0x2f,0xff,0x8a,0x84,0x3b,0xff,0x08,0x4f,0xfa,0x37,0xe5,0x7d,0xab,0x95,0x90,0xef, - 0xb4,0x6e,0xf4,0xa0,0x69,0x59,0xf2,0x4f,0xf1,0xa2,0x97,0x97,0xa0,0xe0,0xe2,0xfc, - 0x3b,0x3e,0x96,0x1b,0x11,0xba,0x48,0x5e,0x88,0x5f,0x54,0x10,0xbe,0x10,0xcb,0x98, - 0x97,0x16,0x6f,0xea,0x31,0x51,0x85,0x0d,0xe6,0xe5,0xe1,0xa9,0xbe,0x69,0x8d,0x08, - 0xfc,0x09,0x0f,0xda,0x97,0x44,0xff,0x92,0xdc,0xae,0xe8,0x6a,0xd9,0xa2,0xfe,0xe9, - 0xd4,0xad,0x63,0x29,0x92,0x2e,0xef,0x43,0xbd,0xab,0x1f,0x69,0x4d,0xbc,0x53,0xa5, - 0x3f,0x55,0xe6,0xd3,0xf2,0x9e,0xb3,0x58,0xef,0x33,0x8b,0x2b,0xcb,0x4b,0xd1,0xd5, - 0xda,0xea,0xe2,0xb3,0x36,0x0e,0x0e,0x44,0xce,0xbf,0xd3,0xb3,0x4e,0x56,0x65,0xc8, - 0x8c,0x06,0x57,0xf1,0xaa,0x57,0x28,0x20,0x63,0x54,0x2a,0xb3,0x90,0x05,0x3e,0x71, - 0x01,0x7d,0x0a,0x14,0x22,0xa2,0x21,0x0d,0x3c,0x56,0xa0,0x55,0x0a,0xef,0x28,0x96, - 0xfe,0xa4,0x3e,0x14,0xad,0xeb,0xb8,0x9b,0xf4,0xf3,0x98,0x00,0x79,0xb0,0xb0,0x29, - 0xa2,0x42,0x10,0x38,0xe4,0x14,0xd3,0xd7,0xe2,0x56,0x84,0xf1,0x8a,0x0c,0x8e,0xec, - 0x4d,0x58,0xc2,0x91,0xfc,0x3b,0xb1,0xe9,0x42,0x07,0x29,0x1e,0x5b,0x43,0xb3,0xf6, - 0xcd,0xca,0x2e,0xf2,0xb6,0xfb,0x8d,0x1b,0xfc,0x14,0x85,0x66,0x6e,0xd4,0x95,0x2d, - 0xf7,0x6f,0x0a,0x6d,0x13,0xc5,0x3f,0x8d,0xa6,0x83,0x28,0xb7,0x30,0xc7,0x7d,0x60, - 0xc7,0x68,0x63,0xbc,0x10,0x09,0xf1,0x2e,0x97,0x99,0x17,0xe3,0x0b,0xcd,0x2a,0x0a, - 0xe5,0xfa,0xb2,0x97,0x07,0xdd,0x1c,0x1c,0x3b,0x98,0x65,0x71,0x0b,0xd4,0x92,0xad, - 0xd8,0x19,0xcc,0xc5,0x8f,0x74,0x2c,0x7e,0x0c,0x93,0xc2,0x88,0x50,0xec,0x61,0xdf, - 0x50,0x1e,0x91,0x66,0x71,0x67,0xe1,0x8b,0xc5,0xa3,0x8a,0x69,0x62,0x98,0xab,0x8a, - 0x20,0xc4,0xf4,0x87,0xa8,0xf3,0x23,0xb5,0xc1,0xc9,0xc0,0x4f,0x3a,0xba,0xec,0xf3, - 0x09,0x55,0xd9,0xb2,0xb8,0x20,0xb3,0xde,0x19,0x0a,0x26,0x20,0x2d,0xe6,0x91,0x74, - 0xa0,0x28,0xe8,0x1f,0x54,0x7e,0x72,0x21,0xbf,0xe6,0x20,0xba,0x5e,0x0a,0xa1,0x67, - 0xf9,0x09,0xc7,0x75,0x5f,0x03,0xd6,0xb5,0x7d,0xd3,0x57,0xd2,0x9b,0x3c,0x97,0x10, - 0x23,0xbe,0xb8,0xbe,0x84,0x55,0xd2,0x56,0xbd,0x57,0x30,0xe3,0x4a,0x85,0x8c,0x66, - 0x64,0xaa,0xca,0xd8,0x45,0xe0,0x0e,0xfa,0x54,0x16,0xaf,0xa5,0x03,0x61,0xd5,0x19, - 0xc3,0x77,0x92,0xed,0x26,0x7d,0xf8,0xb6,0xb1,0x01,0xff,0x29,0x9d,0xa3,0x9a,0x0e, - 0xa6,0x13,0x35,0xd9,0x68,0x3b,0xb1,0x86,0x93,0x92,0xb1,0xf6,0x41,0x1a,0x6d,0xd5, - 0x64,0x87,0xe3,0xe9,0xe5,0x0a,0x7b,0xb3,0x14,0xf7,0xab,0x15,0x57,0x20,0x92,0xaa, - 0x27,0x36,0xb6,0x10,0x3f,0x4b,0xe8,0xb5,0x1a,0x10,0xb2,0x43,0x01,0x45,0x6e,0xa1, - 0xaf,0x23,0x78,0xcf,0x1d,0xff,0x04,0xc4,0xae,0x61,0xd5,0x21,0x41,0x7e,0xea,0xd1, - 0xee,0xf9,0x87,0x7d,0x65,0x31,0xa2,0xe3,0x0f,0xd0,0x9e,0x00,0x87,0xd3,0x09,0xa2, - 0xc2,0x8f,0xe8,0x13,0x98,0x36,0xbe,0x2d,0xa2,0x8a,0xed,0xa3,0xb3,0x48,0x5d,0xa1, - 0x1c,0x6d,0xa0,0x0c,0x63,0x4e,0x49,0x89,0xae,0x39,0x77,0x9a,0xba,0xc9,0xf5,0x0f, - 0x38,0xaf,0x06,0x60,0x8a,0x9d,0x13,0x17,0xdc,0xd8,0x39,0x9a,0x58,0x0b,0x90,0x0b, - 0x41,0x00,0x31,0x24,0x82,0xc3,0x3b,0xb6,0xe9,0x68,0x2f,0xfa,0x37,0x0f,0x92,0x6a, - 0x58,0xb5,0xe7,0x01,0x0c,0x3f,0xfb,0x1a,0x5d,0x75,0x64,0x3d,0x79,0x0c,0x70,0x8d, - 0x84,0x04,0x04,0x5c,0x4b,0x07,0x5d,0x65,0xf8,0x0f,0xcf,0xe4,0x61,0xeb,0x9b,0xd7, - 0x9b,0xa9,0xf1,0xaf,0xd1,0x2c,0xbb,0x1b,0xde,0x0d,0x03,0xef,0x5f,0x06,0x59,0x72, - 0x33,0x52,0x44,0xd0,0xba,0x0a,0x5a,0xfa,0xd8,0x68,0xa2,0xfb,0x0f,0x5e,0xd0,0x6d, - 0xcc,0x13,0x1f,0xf3,0x15,0xbb,0x9c,0x05,0xf2,0x13,0x27,0x31,0x34,0xdc,0x14,0xdb, - 0x6b,0xb7,0x5a,0xdb,0x8d,0xd1,0xd0,0x6a,0xb6,0x1d,0xe3,0x4c,0xd8,0xd4,0xd1,0x14, - 0x8b,0x61,0x84,0x80,0x2c,0xa8,0xd2,0x60,0x3f,0x06,0x75,0x64,0x0c,0x3c,0x10,0x61, - 0x3c,0xe3,0x5f,0xee,0xf8,0x5f,0xc6,0x95,0x72,0x2b,0xe2,0x98,0x47,0x6c,0x8d,0x13, - 0xce,0x63,0x18,0xb1,0x32,0xf6,0x27,0x9e,0x9b,0xe2,0x11,0xd2,0x00,0x9d,0xc2,0xe6, - 0xc2,0x39,0xcc,0x45,0xcf,0xc6,0x08,0x54,0x2e,0x76,0xfd,0x1c,0xa3,0x43,0x07,0xf6, - 0x1c,0xdd,0x08,0x9f,0x5f,0x9c,0x81,0xa3,0x1d,0x40,0x09,0xb8,0x48,0xe2,0xe9,0x91, - 0xb1,0x81,0x73,0x4d,0xd2,0xa6,0x7a,0xee,0xa9,0x93,0x0b,0x71,0x80,0x37,0xee,0xc7, - 0x6e,0x92,0x7a,0x3f,0x62,0x04,0x4a,0x43,0x1d,0x56,0x71,0x66,0x4b,0x3c,0xaf,0xa2, - 0x9d,0xc0,0x94,0xbb,0xa0,0xae,0xfa,0xe9,0x8f,0x74,0x11,0x7b,0x03,0x94,0x8b,0x8d, - 0x0d,0x77,0x7c,0xd4,0x6f,0x1d,0x9b,0xff,0xdb,0x30,0xb7,0xc4,0x69,0x1c,0xde,0x80, - 0xdb,0x00,0xa8,0x01,0xd8,0xdc,0xf1,0x56,0xdb,0xb2,0xb6,0xdb,0x2d,0x6b,0xcb,0xfc, - 0x9b,0x06,0x26,0x3c,0x5f,0xc3,0xe5,0x52,0x8e,0x10,0x55,0x13,0x0b,0x39,0x8d,0x57, - 0x2d,0x2c,0x34,0xb7,0xa0,0xef,0xdd,0x38,0x19,0xb9,0x6f,0xf4,0x14,0x27,0x52,0x24, - 0x2d,0x3f,0x77,0xa7,0x5c,0xd2,0xa3,0x19,0x5b,0x3d,0x3c,0x06,0x65,0x6a,0x34,0xd8, - 0x3c,0x65,0xdc,0xa4,0x68,0x59,0x34,0xd2,0x09,0x1e,0xc9,0x80,0xa2,0x9a,0x92,0x2b, - 0x60,0x7a,0x17,0x0e,0x25,0xc1,0xc8,0x41,0xb2,0xb9,0xa5,0xf7,0xb0,0xb5,0x69,0xd6, - 0x1e,0xe8,0x45,0xd6,0x02,0x7d,0x03,0x9e,0xf7,0x81,0xfa,0x59,0x4c,0x38,0x23,0x5b, - 0xf1,0x65,0x45,0x19,0xf2,0x4d,0x55,0xa0,0xc4,0xaa,0x20,0xee,0x33,0xda,0x8b,0xd2, - 0x50,0xa8,0x9f,0xf9,0x8d,0xa7,0x62,0x7e,0xda,0xf9,0x22,0x66,0x83,0x2e,0x8c,0x10, - 0xde,0xac,0x35,0xc6,0x48,0x90,0xbb,0x22,0xbf,0xac,0xeb,0x37,0xb9,0xd2,0xce,0xdf, - 0x6e,0x8a,0xe4,0x6c,0x3d,0xfa,0x0a,0x1d,0x47,0xcb,0x77,0xfd,0xcd,0x73,0x45,0x50, - 0x98,0x62,0xd6,0x40,0x4b,0x44,0x31,0x20,0x27,0x52,0x43,0x49,0xfb,0xf2,0x54,0x02, - 0x99,0x87,0x5a,0x74,0xdc,0x74,0x62,0x99,0xc5,0xdd,0x76,0x18,0x54,0x8a,0xfe,0xc0, - 0x06,0x5e,0x8e,0x9a,0x66,0x8a,0xf2,0x6e,0x6c,0xa4,0x0e,0xc7,0xcd,0xa5,0x0e,0x3b, - 0xf1,0x17,0xb8,0xe5,0xb4,0xdf,0x6c,0xf7,0x3e,0x9e,0xfc,0xf0,0xfa,0xfd,0xa7,0x0f, - 0x1f,0x5f,0x9d,0xbd,0x3a,0x3f,0xab,0xce,0x2c,0x06,0x82,0x8a,0x40,0x1d,0x22,0x3c, - 0x5e,0xfd,0xd9,0xe0,0x1e,0x19,0x3a,0xb1,0x05,0xc3,0xb5,0xa6,0x7d,0xff,0x21,0x67, - 0xaf,0x02,0xe8,0x53,0xdc,0x38,0x82,0xd1,0x4c,0xad,0x6e,0x43,0xce,0xaf,0x40,0xff, - 0x8e,0x4d,0x9c,0x8f,0xd9,0x4d,0xb5,0xed,0xc8,0x42,0xe0,0x43,0xd1,0x42,0x54,0x22, - 0x86,0x72,0xaf,0x84,0xfd,0xf7,0x03,0xcc,0x6e,0xe3,0x20,0x82,0x37,0x54,0xb3,0x62, - 0xaa,0x8a,0x16,0xc4,0xf1,0x7f,0xfa,0xa9,0x3f,0x08,0xbc,0xfe,0xf3,0x6f,0x1b,0xd2, - 0x6c,0xab,0x9b,0x5f,0x45,0x36,0xbf,0xb4,0x72,0x34,0x27,0x1c,0xf4,0xad,0x9a,0xa5, - 0x25,0xcf,0x21,0x3b,0x3c,0x6a,0x01,0x95,0x50,0x1d,0x14,0x6a,0x36,0xc3,0x92,0x29, - 0x2c,0xdc,0x6a,0x84,0x40,0xea,0xdb,0xc7,0xa6,0xf0,0x9f,0x07,0x4a,0x21,0x3d,0xe9, - 0xcd,0x22,0x6b,0xd2,0x9c,0xf7,0x17,0xba,0xb0,0x56,0xb1,0x84,0xb1,0x17,0x95,0xc9, - 0xfe,0xfd,0xa0,0x74,0x5b,0x35,0xb6,0x2e,0xe2,0x8c,0xcb,0xcc,0x5b,0xa9,0x64,0xa4, - 0x3f,0x65,0xd3,0xa0,0xe1,0xdb,0x63,0x1b,0xa5,0x5e,0x9b,0xc2,0x63,0x6c,0x3c,0xc1, - 0xd3,0x04,0xc4,0xcd,0x42,0xac,0xa9,0x91,0x8e,0x9b,0x9b,0x5b,0x63,0xd8,0x8b,0x32, - 0xc8,0x74,0x73,0x8b,0xfe,0x6e,0x6d,0xd6,0x06,0xb9,0x6e,0x6e,0xe1,0x5f,0x28,0x5e, - 0xc8,0x59,0xb0,0xb9,0xe5,0x6f,0x6d,0x3a,0xdc,0xce,0x5f,0xb8,0xa4,0x68,0x73,0xab, - 0x81,0x83,0x3d,0xde,0xac,0x26,0x31,0xd8,0xdc,0xc2,0xbf,0x38,0x28,0x74,0x06,0xdc, - 0xec,0x6e,0x6e,0x5a,0xea,0xa1,0x00,0x74,0x4d,0x10,0x4d,0x85,0x34,0x80,0xf8,0x33, - 0x89,0x52,0x74,0x4f,0xc3,0x57,0xc4,0x6b,0xf0,0xb9,0xc4,0x6e,0x26,0x00,0x3b,0x69, - 0xc2,0x5e,0x29,0xe2,0xa8,0xad,0x4d,0x1e,0x5d,0x9b,0xb5,0x61,0xb3,0x98,0xcc,0x09, - 0x78,0x60,0x53,0x85,0xbc,0x6e,0xf6,0x4a,0xe7,0x33,0x35,0xbb,0x14,0xe8,0x0f,0xb4, - 0xb8,0x55,0x69,0x12,0x28,0x67,0x3a,0x6c,0xc4,0x64,0xa9,0xb3,0x70,0xa9,0x4a,0x2f, - 0xf2,0x4e,0xe4,0x1e,0xae,0x6f,0x67,0x08,0x92,0x44,0x34,0x35,0x8f,0xf8,0xaf,0xe3, - 0x38,0xe5,0xd1,0x21,0x08,0xb0,0x9a,0x1e,0x86,0x01,0xf3,0x16,0x8b,0x8d,0x3f,0x71, - 0x30,0x3e,0x0d,0x41,0xd0,0x8a,0xad,0x62,0x69,0xf4,0xde,0x1c,0x1c,0x21,0xfc,0x0d, - 0x2a,0xc8,0x1e,0xd9,0xb4,0x4c,0xb5,0x15,0xb4,0xd8,0xea,0xc2,0xed,0x9c,0x75,0x29, - 0x68,0x18,0xcb,0x18,0x7c,0x08,0x03,0x9a,0xe4,0x66,0x29,0x96,0x58,0x75,0x53,0xde, - 0x13,0x66,0x16,0x5d,0x7b,0x78,0xfc,0xa3,0x6c,0x3e,0xb6,0x79,0x32,0x1c,0xa2,0xb3, - 0xb6,0xfc,0x62,0x5a,0x4b,0x2b,0xcf,0x52,0x4c,0xfe,0x3b,0xf5,0xa0,0x14,0x05,0x88, - 0xd9,0xe6,0x2f,0xf9,0x9b,0x15,0xf5,0xb4,0xce,0xb4,0x9f,0x1f,0xf2,0x9f,0x2b,0xea, - 0x72,0xf4,0x67,0xde,0x23,0x67,0x35,0x21,0x54,0x7e,0xa4,0xd3,0x28,0xc1,0x12,0x22, - 0x8f,0x05,0x74,0xc7,0xcf,0x2b,0x6a,0x50,0x7a,0xa9,0xbc,0xa7,0x73,0xba,0xf3,0x2c, - 0xf3,0x60,0x77,0x62,0x96,0x45,0x68,0x21,0x0f,0xeb,0x4a,0xbb,0xc6,0x02,0x8d,0x4f, - 0x0f,0xc6,0x82,0xbd,0xf8,0xe1,0x07,0xd2,0x04,0xfc,0x83,0x70,0x7c,0x58,0xd1,0x8d, - 0x3b,0x1b,0xf9,0x5e,0x38,0xd4,0xa0,0xf8,0x8f,0x5f,0xcf,0x0d,0xed,0xad,0xba,0x60, - 0xab,0xa9,0xdd,0x1c,0x8c,0xb0,0xdf,0x46,0xe8,0x19,0x7c,0x6a,0x98,0x23,0x92,0xdc, - 0xff,0xcc,0x6f,0x10,0x30,0x9a,0xcf,0x00,0x22,0x73,0x89,0x1e,0x97,0xb5,0x0e,0xac, - 0x61,0xfb,0x52,0x65,0xa8,0x23,0x0a,0xe8,0xa9,0xd1,0xa7,0x86,0x8b,0xda,0xa0,0x10, - 0x6c,0xf4,0x2d,0x21,0x7c,0x4e,0x9e,0x63,0x95,0x52,0x2b,0x8c,0xb3,0xaf,0x82,0x3e, - 0x7e,0xab,0x6f,0xa9,0x0e,0xc7,0xb1,0x45,0xc9,0x25,0x31,0x2e,0x52,0x36,0x23,0x4d, - 0x1f,0xfc,0x69,0xe4,0x8d,0xc9,0xf6,0xdf,0x7b,0x84,0xb6,0xc0,0xd8,0x98,0x62,0x00, - 0xfb,0x22,0xc2,0x81,0x15,0xe3,0xdc,0x31,0x8b,0x7c,0x04,0xfa,0xa2,0x80,0xa4,0x15, - 0xc7,0xf2,0x47,0x17,0x73,0x00,0x1c,0xc3,0xbf,0xec,0x4b,0xd0,0x65,0x3a,0xa7,0x2a, - 0x23,0x27,0x7d,0xeb,0xc6,0x7d,0xc6,0x81,0x2e,0xb7,0xd5,0xef,0xcb,0x4d,0x27,0xb7, - 0x4f,0xfe,0x01,0xdf,0xe0,0x9a,0x9a,0xf7,0xf7,0xea,0x9d,0xe8,0x8a,0xcf,0xfc,0xd4, - 0xf1,0xde,0xca,0x2a,0x6a,0x53,0xd5,0x34,0xc3,0xfb,0xa7,0xbb,0xa4,0x79,0xd8,0x13, - 0xd5,0x4f,0xb4,0x0f,0xaa,0xaf,0x25,0x86,0x56,0xbe,0x90,0x95,0xa4,0x20,0xbf,0x30, - 0x1c,0x6a,0xa4,0xcb,0xb1,0xc6,0x38,0xe6,0x75,0x88,0x60,0x3a,0xc0,0x8b,0xcd,0xad, - 0x31,0x61,0xd1,0xdc,0x9a,0xaf,0x70,0x48,0xe3,0x4e,0x2e,0xc6,0x97,0x9a,0x46,0xbc, - 0x42,0x53,0x11,0x82,0xca,0xa3,0xaa,0x8a,0x3d,0xad,0x51,0x56,0x36,0x36,0x1a,0xd3, - 0x82,0x41,0xa6,0xfe,0x04,0x8b,0x31,0x8f,0x8f,0xb0,0x68,0x9e,0x17,0xba,0xd6,0x6f, - 0x6b,0xda,0x7d,0xcd,0x59,0x3b,0x71,0xea,0x3a,0xa3,0x00,0x7e,0xb0,0xe9,0xf4,0x4b, - 0x48,0xdb,0x2c,0x53,0x96,0x65,0x23,0x74,0x55,0xde,0xc6,0x48,0x9a,0x59,0xb0,0x5c, - 0x48,0x42,0xf3,0xcd,0x8f,0x11,0xfa,0x27,0xda,0xd1,0xb5,0x3d,0x4d,0xaf,0x14,0x0c, - 0x6a,0xad,0x41,0xb8,0x95,0xe1,0x43,0x69,0x27,0x03,0x09,0xec,0xaf,0xb6,0x0d,0x41, - 0x09,0x0b,0xfe,0x2d,0x58,0x87,0xf8,0xd4,0x50,0xad,0xd0,0x10,0x14,0xea,0xcc,0x13, - 0x11,0x36,0x0d,0x4c,0x27,0x20,0x0c,0x90,0x43,0x5e,0xf3,0x77,0x1c,0x04,0x8d,0xb7, - 0xd7,0x80,0xce,0x1a,0x5d,0x1f,0x9b,0xd1,0x35,0x88,0x99,0x74,0x2e,0xdb,0x1b,0x16, - 0xfd,0xea,0xd3,0x2b,0xac,0x58,0x33,0x24,0xe2,0xa3,0xe8,0x1b,0x10,0xc7,0x5e,0x38, - 0x3a,0x9d,0x80,0x58,0xd4,0x18,0x16,0x05,0x54,0x84,0xdb,0x29,0x8b,0xae,0x0d,0x68, - 0x33,0x71,0xed,0xe1,0x40,0x01,0x05,0x56,0x73,0xea,0xc6,0xc2,0x10,0x08,0x5a,0xcb, - 0x29,0xfa,0xe9,0xe3,0xfc,0x05,0x35,0x4b,0xd1,0x5b,0x10,0xc8,0x27,0x5f,0x5d,0x07, - 0xa3,0xc6,0x0c,0x16,0xe8,0x71,0x2b,0x3e,0xcb,0x0f,0xe8,0x1a,0x23,0x82,0xe1,0x59, - 0xbd,0x75,0x9e,0x09,0x97,0x73,0x3f,0xc5,0x5b,0x20,0x53,0x71,0x33,0x3c,0xc7,0xe5, - 0x93,0xbb,0xa0,0x6b,0xcc,0x42,0x1f,0xa6,0x23,0x35,0x23,0xbc,0xa1,0x27,0x34,0x80, - 0x1b,0x81,0x76,0x8e,0x38,0x84,0xfa,0x07,0x4a,0x57,0x38,0x7e,0xa7,0xbc,0x01,0x95, - 0x02,0x91,0xa2,0xfb,0xb7,0x42,0x31,0xd7,0x1e,0x68,0x1b,0x30,0x76,0xfb,0xdb,0x39, - 0xce,0x3a,0x78,0x79,0x5f,0xc3,0xb5,0x8e,0x55,0xed,0x0b,0xf7,0x12,0x77,0x39,0xd1, - 0xb8,0xe3,0x56,0xb7,0x6d,0x75,0x3b,0xb9,0x46,0x17,0x0f,0xaa,0x95,0x07,0x7a,0xe5, - 0xc1,0x92,0xca,0xd2,0xcc,0xeb,0x36,0xe3,0xc1,0xfd,0xbd,0xeb,0xd0,0xb5,0xd9,0xde, - 0x29,0xe6,0x3e,0x4d,0x3c,0x68,0x42,0x9c,0xd6,0x57,0xb6,0xc7,0xb5,0xb5,0xe0,0xd5, - 0x40,0x23,0x95,0x6e,0xc1,0xca,0x7d,0x37,0xa2,0xd1,0x5d,0x1f,0x0b,0x75,0xb9,0xa0, - 0x5c,0x34,0x4c,0x1f,0x8d,0x2e,0x33,0xb4,0x30,0x78,0x1a,0x44,0x1b,0x21,0xf1,0x28, - 0xb1,0xae,0x1b,0x60,0x42,0x22,0x94,0x80,0xdc,0xc4,0x87,0x45,0x1a,0x51,0xc2,0x63, - 0x95,0xc8,0xc0,0x31,0x38,0xac,0x49,0x78,0x7e,0x8e,0x39,0x02,0x3d,0x9d,0x91,0xcc, - 0x34,0x9e,0x05,0xc6,0x80,0xae,0x39,0x12,0x7e,0xfe,0xec,0x04,0x6a,0xa0,0xf3,0x71, - 0x9a,0xdf,0x2d,0x2b,0x05,0x7c,0x0e,0x12,0x76,0xc3,0x11,0x37,0x26,0xa9,0x36,0xac, - 0xec,0x95,0x70,0x30,0x0d,0x81,0x58,0xb9,0x23,0xce,0xaa,0x2e,0xbd,0x0d,0x60,0xdc, - 0x03,0x2f,0x9b,0x63,0xbc,0x1b,0x36,0x96,0xcd,0x23,0x61,0x07,0x73,0xc4,0x79,0x3a, - 0x21,0xed,0xc6,0x06,0xfd,0x71,0x38,0x86,0xc8,0x42,0x67,0x78,0x3d,0x55,0x51,0x28, - 0x30,0x39,0xff,0x40,0x19,0x79,0xf2,0xf7,0x16,0x02,0x4f,0xd4,0x66,0xc7,0x0c,0x6e, - 0xbd,0x80,0x55,0x5c,0x54,0x28,0xa5,0xb0,0xba,0xa0,0x31,0x3e,0xd7,0xea,0x29,0x1d, - 0xee,0x9d,0x48,0xe1,0x8a,0xd7,0x6d,0xe3,0xd1,0x9f,0x0c,0x8c,0x7b,0x10,0x0b,0xc5, - 0x7e,0xf7,0xca,0x57,0xbd,0x27,0xda,0xc0,0x97,0xca,0x15,0x5f,0xe9,0x9e,0xe4,0x83, - 0x53,0xf2,0xbf,0x79,0x66,0x18,0x9a,0x7f,0x85,0x30,0xf1,0xb3,0xcf,0x7d,0x45,0xaf, - 0x8c,0xa3,0x20,0xf8,0x48,0x44,0xb1,0x31,0x1c,0xd8,0x2d,0xf8,0x07,0x9b,0xb0,0xa9, - 0x23,0x5b,0x4c,0x89,0xbd,0x5a,0xd6,0xf0,0xda,0xea,0x17,0xbd,0xb6,0xea,0x06,0xc8, - 0x7e,0x1c,0x68,0x67,0x18,0x58,0xc3,0x41,0x83,0x22,0xa2,0xe8,0x9d,0x0e,0x05,0xd1, - 0xaa,0x16,0x4c,0xd1,0xba,0xbf,0xd7,0x9f,0xdb,0x3b,0xca,0xbe,0xb1,0xba,0xa3,0x3c, - 0x6e,0xa2,0xda,0x1f,0x19,0x88,0x78,0x4d,0xd4,0x0c,0xee,0xef,0x4d,0x8a,0x7b,0x4f, - 0x3c,0xce,0xa6,0x9b,0x1f,0x09,0xe4,0x34,0x5e,0xc6,0x3c,0x94,0xc7,0xf8,0x52,0x0f, - 0xd3,0x90,0xe1,0x13,0x7d,0x5e,0xb3,0xf5,0x00,0x5d,0x00,0xc1,0x57,0x9a,0x9a,0x79, - 0x12,0xb2,0x0b,0x2e,0x73,0x78,0xb4,0x21,0x0f,0x3c,0x44,0x3f,0x72,0xa4,0xca,0x9d, - 0xe6,0x50,0x3c,0x4b,0xb2,0xe0,0x6e,0xd5,0x8c,0x91,0x5a,0x28,0xcf,0x61,0x74,0x1f, - 0x9a,0x61,0x7a,0x12,0x8c,0x04,0xe2,0xf4,0x26,0x08,0xb7,0x34,0x8e,0x42,0x78,0x60, - 0x5a,0x80,0xaf,0xd0,0x9f,0x0b,0x98,0x4f,0x38,0xf2,0x46,0x8e,0xf1,0x01,0xa0,0x80, - 0x6f,0x65,0x73,0xcc,0x8f,0x8d,0xc1,0x9d,0xcc,0x0b,0x60,0x00,0x0d,0x48,0x91,0x96, - 0xf3,0xa0,0x29,0x9d,0x0a,0x10,0x40,0xe6,0xdf,0xc2,0xd7,0x7b,0xe0,0x19,0x53,0x10, - 0x5c,0x5c,0x10,0x1b,0x49,0xf8,0xf7,0x33,0x47,0xc8,0x6b,0x65,0x10,0x73,0x04,0x5e, - 0x11,0xc6,0xd5,0xf3,0x01,0x95,0xf4,0x40,0xf2,0x35,0x24,0x01,0xcc,0xf4,0x46,0xfd, - 0x0a,0xa5,0x90,0xcc,0xa3,0x4a,0x2b,0x74,0x73,0x3f,0x31,0x81,0xf9,0xe8,0x55,0x92, - 0xf4,0x29,0xab,0xcc,0x07,0xfa,0x0d,0x4c,0x57,0x6b,0x5b,0x9e,0x0b,0x70,0x39,0x69, - 0x11,0x5d,0xe2,0xb3,0xce,0x66,0xb5,0x4b,0x8a,0xaf,0xf5,0x87,0xd7,0xd2,0x62,0xc9, - 0x8b,0x2c,0x5a,0xd0,0x59,0x88,0xd4,0x78,0x74,0x06,0x2e,0x4f,0x17,0xf0,0x10,0x7f, - 0xd4,0xd5,0x33,0xd3,0x61,0x0d,0xc0,0x85,0x4e,0xab,0xc3,0x97,0x83,0x8b,0x75,0xb3, - 0x15,0xe9,0x26,0x3a,0x4e,0x89,0xed,0x06,0xc8,0x73,0x23,0x24,0xf0,0xb0,0xa0,0xcf, - 0x08,0x25,0xf2,0x9c,0x0e,0x22,0x2e,0x77,0x42,0x12,0x05,0xe7,0x69,0x85,0x19,0x8a, - 0x50,0x02,0x99,0xe1,0x83,0xf8,0x83,0x87,0x77,0x6d,0x10,0x83,0xe7,0x9b,0x64,0x90, - 0xcd,0x63,0x6b,0x1c,0x0c,0x96,0x1a,0x80,0xed,0x48,0xdd,0x67,0x98,0x19,0xd4,0x1c, - 0xf2,0x3d,0x83,0xae,0x38,0xd4,0xc4,0x4c,0x02,0xe4,0x73,0x45,0x29,0x2c,0x00,0x23, - 0xf9,0xda,0xbb,0x30,0x33,0x1d,0x3d,0xda,0x48,0xc7,0x06,0x10,0x8c,0x52,0xdb,0x1f, - 0x05,0x5e,0x6a,0xd3,0xec,0x25,0x52,0x90,0x0f,0x24,0x06,0x6b,0x90,0xe7,0x23,0x14, - 0xea,0xe3,0x7f,0xd0,0x73,0x99,0x0a,0xf7,0xe9,0xbf,0xc2,0x91,0x59,0x35,0x8d,0xa8, - 0xdf,0x78,0x8c,0xc6,0x3d,0xab,0xee,0x4e,0xea,0xb9,0xb0,0x3b,0x5d,0x3e,0xbe,0x46, - 0xf4,0x1b,0xd9,0xb8,0xe4,0x46,0x61,0xaa,0x73,0x37,0xa5,0xe9,0xd2,0x26,0x25,0x1f, - 0x36,0x60,0x1a,0x30,0x59,0x7f,0x7c,0x07,0xc2,0x1e,0x51,0x2a,0xe5,0xfa,0x4a,0xe7, - 0xd5,0x7a,0x62,0x42,0x04,0x35,0x6d,0x6d,0x3e,0x63,0x2d,0x1f,0xfa,0x6e,0xf3,0xde, - 0x3b,0x66,0x3a,0x65,0x6e,0x81,0xf2,0x02,0xb8,0xf0,0xcb,0xc7,0xd7,0x28,0x6c,0x80, - 0x5c,0x02,0x62,0x27,0x93,0x2e,0x7b,0x21,0x02,0xe3,0xba,0x40,0x87,0x5b,0x0f,0x2b, - 0xe3,0xdf,0xa8,0xc6,0x73,0x45,0xf4,0x18,0x50,0x65,0xca,0xce,0x4e,0x93,0xc4,0x2d, - 0x50,0xee,0x44,0x77,0x5d,0x92,0x5e,0x6a,0x82,0xf4,0xca,0x5b,0x9a,0x57,0x50,0xa7, - 0x9c,0x6a,0x01,0x1f,0x6c,0x18,0xde,0xb2,0xbe,0xd0,0x9f,0x78,0x44,0xda,0xa8,0xa4, - 0xd1,0x18,0x33,0x09,0x8d,0x75,0x35,0x1a,0xe5,0x5f,0x7b,0xc1,0x9d,0xc0,0x26,0x4e, - 0xc7,0x84,0x70,0xc5,0x45,0xc1,0x43,0x30,0x3c,0x67,0x73,0x41,0xf8,0x44,0x81,0x1c, - 0xb7,0x3b,0xfa,0x3c,0x68,0x6d,0x65,0x9b,0x12,0x93,0xd1,0xb5,0x32,0xc0,0xa3,0x2e, - 0x25,0x10,0x69,0x8b,0x32,0x08,0xfc,0x38,0xa7,0xdc,0x34,0x9d,0xc3,0xdd,0xf5,0x66, - 0x9f,0xa3,0xf0,0x56,0x7b,0x09,0x12,0x3f,0xd8,0x2f,0xca,0x30,0x30,0x8c,0xc2,0x22, - 0xe8,0xe4,0x7c,0x0d,0xfc,0xa5,0x68,0x2c,0xa8,0x9f,0xf6,0x5b,0x36,0x51,0x20,0x96, - 0xf7,0xf4,0x22,0xb4,0xea,0xa4,0x55,0x91,0x23,0x62,0x8d,0x97,0x74,0x56,0x38,0x8c, - 0x88,0xae,0xfb,0xdb,0xff,0x7c,0xff,0xf3,0xb6,0xcf,0x52,0xb1,0x9f,0x51,0xb0,0xed, - 0x9d,0xa5,0x31,0xb4,0xe7,0xd1,0xb5,0x45,0xbd,0x6e,0x6d,0xe9,0x6f,0x87,0x83,0x8d, - 0x0d,0x8c,0x7d,0x54,0xf3,0x05,0xbd,0xd3,0x27,0xe9,0x8b,0xc8,0xaf,0x82,0x02,0x94, - 0x90,0x02,0x30,0x7f,0x46,0x59,0x5b,0x7d,0x96,0xef,0xac,0xf2,0x71,0xaf,0x78,0xaf, - 0xf5,0xc8,0x6f,0x10,0x4f,0x99,0xfa,0x6a,0x61,0x96,0xf0,0x75,0x9b,0x89,0x5d,0x65, - 0x22,0x96,0x0e,0x28,0x29,0x90,0xe9,0xa1,0x92,0x42,0xa7,0x5e,0x12,0x8c,0xbd,0xc9, - 0x07,0x17,0x86,0x76,0x6c,0xc7,0xe3,0x10,0xf6,0x23,0x4d,0xc6,0x08,0xac,0xa2,0xc2, - 0x8a,0x6a,0xe0,0xfb,0x9f,0xcd,0xae,0x1c,0x4a,0x1e,0xc6,0xfc,0x4f,0x60,0x0f,0x8d, - 0x28,0xb1,0x8e,0x2f,0xba,0xf6,0xe5,0xf1,0xef,0xe9,0x77,0xdb,0x3e,0x1a,0xfb,0xca, - 0x7e,0x09,0x2a,0xda,0x8e,0x6e,0x3f,0xb5,0x96,0x9b,0x17,0xb4,0x29,0x5a,0x3a,0xa5, - 0x5b,0x00,0xa9,0x4b,0x2a,0x9b,0x90,0xd6,0xd2,0x62,0x8a,0xc7,0xeb,0x6a,0xa2,0x64, - 0x9d,0x71,0xb0,0xb5,0x12,0xb6,0x60,0xb3,0xa5,0x9e,0x3c,0xe1,0x94,0x72,0x88,0x3c, - 0xc6,0x4b,0x94,0x18,0x9d,0x3b,0x78,0x14,0xfd,0x50,0x0c,0xb2,0x30,0x89,0xc4,0x8c, - 0x09,0x39,0xd5,0x7e,0x52,0x9b,0xcd,0x30,0x8e,0x0d,0xf3,0x5c,0x32,0x3c,0x54,0x41, - 0xbc,0x51,0xf5,0x2a,0x76,0xc1,0x91,0xf8,0xe6,0x74,0x4c,0xfb,0xc6,0x19,0x11,0x50, - 0x06,0xb9,0x33,0x6e,0xf8,0xec,0x47,0x24,0x9f,0xf3,0x65,0xee,0xb7,0x14,0x95,0x20, - 0xb1,0xc3,0x39,0x48,0x2a,0xc6,0xd3,0x39,0x14,0x5d,0x02,0x37,0xc6,0x5c,0x70,0x94, - 0x21,0xc4,0xcd,0xa4,0xe4,0x24,0xb4,0x5e,0xcc,0x3e,0xca,0xa9,0xef,0xb9,0x13,0x27, - 0xcf,0x91,0xd5,0xd5,0x86,0xea,0xa7,0x32,0xfd,0x07,0x0a,0x6d,0x4a,0x6b,0xc2,0x7d, - 0xcb,0x63,0x96,0x90,0x2c,0x8c,0xa3,0xd4,0x25,0x4d,0x46,0x75,0x48,0xed,0xba,0xec, - 0x47,0xc0,0xc9,0x65,0x9b,0xac,0x9b,0x7b,0xa3,0x7c,0x30,0xb6,0x1a,0x0d,0x0b,0x51, - 0xe6,0x99,0xe8,0x46,0x74,0x7d,0xf1,0xfe,0xe7,0x4b,0x43,0x26,0xe2,0x40,0x12,0x6e, - 0x2b,0x90,0xdb,0xfc,0xf2,0x8c,0xce,0xfe,0x53,0xc0,0x87,0x7a,0x91,0x52,0x17,0x52, - 0xcf,0x54,0x9b,0x72,0xdd,0xf3,0xd3,0xb0,0xb3,0x68,0x9c,0x49,0xbf,0x8e,0x27,0x6a, - 0x21,0xf5,0xfc,0x67,0x95,0x66,0xd1,0xda,0xad,0xad,0x85,0xc6,0x08,0xcc,0x61,0x89, - 0xc9,0x05,0x15,0x50,0xc9,0xcd,0xbd,0xab,0x96,0x43,0x5e,0x40,0x83,0x02,0xf1,0x75, - 0x18,0x01,0x33,0xc6,0x2f,0x02,0x19,0xf8,0xc2,0x5e,0x25,0x45,0x7f,0xe0,0xdb,0x28, - 0x24,0x3b,0x69,0x8c,0x61,0xa3,0x4d,0xa4,0x07,0x07,0x4a,0xbc,0x01,0xad,0xad,0xe5, - 0x18,0x3f,0xe3,0x49,0x30,0x32,0x02,0x5c,0xfe,0x26,0x35,0xc9,0x36,0x75,0xd9,0x16, - 0x9a,0xdc,0x53,0x29,0x7c,0xa3,0x30,0xcd,0x17,0x02,0xcf,0x41,0x48,0x76,0x43,0x44, - 0xe4,0x2c,0xa2,0xa4,0x80,0x4a,0x4c,0x46,0x08,0x00,0x2b,0x39,0xec,0xb4,0xd6,0xe7, - 0x3b,0xc0,0x71,0x56,0x09,0x4f,0x35,0x7c,0x47,0x00,0xb1,0x2a,0x6d,0x97,0x17,0x76, - 0xc1,0x7a,0x40,0x13,0x7d,0x16,0x0c,0x76,0x69,0x95,0xb7,0xaf,0x49,0x3f,0x92,0x61, - 0x10,0x0d,0x06,0x5e,0x42,0xb7,0xce,0xf2,0x1c,0x91,0xee,0xa5,0x35,0x42,0xcd,0xe3, - 0x9e,0x6c,0x5f,0xc1,0xdb,0x8c,0xd2,0x2e,0x8c,0x56,0xba,0x9c,0x71,0x11,0x8d,0x56, - 0x37,0x8a,0x1e,0x41,0x1a,0x8b,0xba,0xbe,0x24,0xaf,0x01,0x2c,0x4f,0xeb,0xc1,0x8e, - 0x6a,0xda,0xe7,0x92,0xa7,0x16,0x05,0x18,0x49,0x37,0x2d,0xd1,0x01,0xb9,0x29,0x55, - 0xdd,0x97,0x7a,0x5a,0x73,0xd4,0xfe,0x6a,0x9f,0xaf,0x02,0x2f,0x40,0x86,0xdb,0xd0, - 0x12,0x16,0xeb,0xa3,0xb7,0xbe,0xd8,0x81,0x8d,0x13,0xae,0xe0,0x58,0x3e,0x92,0x47, - 0xd9,0x85,0x70,0x4e,0x23,0xaf,0x46,0x5b,0x3e,0x0c,0xe6,0xea,0x67,0x3a,0x56,0x3f, - 0x87,0xc9,0xa5,0x08,0x5c,0xb7,0xcd,0x5a,0xf7,0x34,0xad,0xe1,0xbc,0x37,0xf4,0x3c, - 0xe0,0xbe,0x6a,0x5d,0x13,0x36,0x36,0x9e,0x4b,0x8f,0x07,0xf9,0x4e,0x44,0x6b,0x68, - 0xad,0x69,0x20,0x51,0xcd,0x95,0xc5,0x07,0xae,0x95,0xf7,0x4b,0x8f,0x1f,0x30,0x6b, - 0x53,0xbf,0xa1,0x2a,0x1d,0x17,0x4b,0x77,0xf5,0x3e,0x9c,0x14,0xf4,0xf1,0x4c,0x9b, - 0xdc,0x5a,0xce,0x7e,0x1a,0x96,0xfa,0xa3,0xdb,0xfe,0x02,0xe1,0xd8,0x6d,0xd9,0x83, - 0x79,0xb7,0x6d,0xa7,0xe3,0x6e,0xc7,0x1e,0x26,0xdd,0x9d,0x87,0x92,0xef,0x5f,0x4f, - 0xa1,0x8d,0x58,0xa0,0x7c,0xb0,0x17,0xd0,0xca,0x65,0x6f,0xa5,0x6b,0x9b,0x82,0x40, - 0xaf,0x8c,0x30,0xff,0x43,0x1e,0x80,0x45,0x4f,0xc4,0x5a,0x7f,0xc0,0xba,0x58,0xa1, - 0x9a,0xc8,0x5e,0x52,0xbc,0xb7,0xc9,0xa3,0x6a,0xc9,0x09,0x41,0x1e,0x77,0x85,0xa0, - 0x57,0xa1,0x79,0xe4,0x69,0x42,0x56,0x76,0xdd,0x89,0xa3,0xca,0xac,0xea,0x63,0x1c, - 0x05,0x13,0xfc,0x91,0x55,0xb9,0x2c,0xe2,0x70,0x25,0x49,0xd1,0x78,0xa4,0x14,0x8b, - 0x0e,0xc3,0xab,0x0d,0xe5,0x23,0x93,0x40,0xfd,0xe1,0xcd,0x20,0x3f,0xbb,0xc9,0x4f, - 0x2f,0x44,0x8a,0x41,0x3e,0xc1,0xd0,0xcf,0x2f,0xbe,0x95,0xdd,0x18,0xb2,0x48,0x15, - 0xed,0x6e,0xad,0xc5,0x6d,0x0d,0x7a,0x40,0x61,0xfb,0x16,0x58,0xe8,0x40,0x1c,0xc3, - 0x5c,0x48,0x4f,0x27,0x0e,0xb7,0xb7,0xc9,0x58,0x02,0x7f,0x38,0x0b,0xb5,0xcd,0x09, - 0x0e,0xaa,0xad,0x67,0xac,0x57,0x67,0x4d,0x73,0x2b,0x5b,0x2e,0x80,0x66,0x00,0xbc, - 0x81,0x42,0xe9,0x2c,0x4f,0xb5,0xa0,0xbd,0xa4,0xf8,0x55,0xea,0xcc,0xe2,0xc4,0x8c, - 0xf8,0xbb,0x21,0xd4,0x6f,0x4c,0xd2,0x2b,0x5f,0xd4,0xd6,0xa4,0x94,0x0a,0x3a,0x7b, - 0x04,0x69,0x1d,0x03,0xae,0x5f,0xa3,0xa7,0x8b,0xdd,0x12,0xb1,0x6d,0x25,0xfc,0xc1, - 0x04,0xbc,0x32,0xa1,0x71,0x09,0x83,0x44,0xca,0x87,0x9f,0x7c,0xdc,0xf3,0x77,0xfd, - 0x8b,0x4b,0x3b,0x7f,0x3a,0xc9,0x40,0xbd,0x82,0xc7,0x8f,0xb3,0x30,0x04,0x26,0xd7, - 0x17,0x89,0xa3,0x02,0xff,0x3f,0x66,0x1e,0xec,0x4e,0x2e,0x4b,0xbf,0x65,0xc9,0xef, - 0x31,0xb9,0x1b,0x14,0x97,0x8a,0x98,0x6e,0xcb,0xc2,0xa3,0x9c,0xc0,0x6f,0xe0,0x11, - 0x90,0xc2,0x02,0x98,0x01,0xf9,0x98,0x69,0x79,0x83,0x69,0xde,0xf0,0x5b,0x3f,0x2b, - 0xda,0xea,0xe3,0x83,0x00,0x48,0xe9,0x9b,0x30,0x6c,0x1f,0xb5,0x29,0x92,0xb6,0xf4, - 0xb1,0x5f,0x2e,0x4c,0x89,0xa2,0x1a,0x4d,0xf4,0xa0,0x6c,0xa9,0x9e,0xd2,0x21,0xe6, - 0xeb,0x39,0x8f,0xe2,0x7e,0xfe,0xf4,0x13,0xa5,0xf9,0x2a,0x48,0x08,0x3e,0xc2,0x99, - 0x66,0x88,0x57,0x37,0x36,0xb4,0xe3,0x26,0x16,0xd5,0x31,0xaf,0x03,0x39,0x1c,0x5d, - 0x94,0x52,0x01,0x5f,0x76,0x85,0xd3,0xfe,0xa6,0xee,0x32,0x2f,0xab,0x01,0xcf,0x15, - 0xbf,0x04,0xd5,0xeb,0xcb,0xa4,0xc1,0x85,0xde,0x0b,0x0b,0xcd,0x9d,0x37,0xca,0x23, - 0x3a,0x96,0xb0,0xe4,0xfa,0x56,0x57,0x3e,0xcb,0xe4,0xbb,0x16,0xee,0x1b,0x68,0xa7, - 0x51,0x94,0x7d,0x98,0x36,0x41,0x5b,0xc5,0x89,0x51,0x2b,0xfd,0x72,0x27,0xd2,0xce, - 0x5f,0x68,0x77,0xe9,0x8e,0xa0,0x36,0x0a,0x75,0xc4,0xd8,0x96,0x2b,0x71,0xd5,0x2a, - 0x94,0x2c,0xb7,0xe8,0xcc,0x46,0x85,0x8e,0x4d,0xc0,0x35,0x1e,0x26,0xda,0x9d,0xb0, - 0x14,0xfb,0x40,0x15,0x40,0x55,0x0e,0xb4,0x38,0x55,0x18,0xdd,0x48,0xf8,0x2f,0xcd, - 0x58,0x43,0x74,0xf1,0xba,0x7e,0xa6,0xca,0x1e,0x51,0x53,0x4a,0xce,0x6d,0x55,0x19, - 0x31,0x99,0xda,0x22,0x4b,0x31,0xa8,0xce,0xdb,0x94,0x4a,0x02,0xed,0xc6,0x3f,0x95, - 0xe6,0x4a,0xd2,0x2d,0xee,0xcd,0xbb,0xcc,0x7b,0x43,0x7b,0x25,0xdf,0x83,0xb0,0x9d, - 0xd0,0x01,0x26,0x1a,0x1b,0xe7,0xf0,0xea,0x15,0x99,0xda,0x12,0x64,0x00,0x98,0x29, - 0x77,0x8c,0xca,0xa8,0x0a,0x6b,0xc1,0x63,0x38,0xad,0x10,0xb0,0x11,0xb6,0xcc,0x71, - 0x63,0x25,0x9f,0xc7,0x01,0xf4,0x95,0xf6,0x6b,0x4c,0x77,0x5c,0x58,0x1c,0xc3,0xff, - 0xed,0xa2,0xd5,0x7c,0x79,0xd2,0xfc,0xf1,0x72,0xd1,0x79,0xb8,0x77,0xb6,0xaf,0xf4, - 0xdd,0x41,0x2d,0x1c,0xd3,0x7f,0x45,0xdb,0xdd,0x56,0x31,0x6b,0x13,0xfa,0x57,0x4b, - 0xcc,0x2c,0x52,0x15,0xcc,0x6a,0x9a,0x12,0xc9,0x10,0xc2,0xcb,0xf6,0xef,0xc9,0xef, - 0xe1,0xfd,0xef,0xc9,0xfd,0xef,0xe1,0xb6,0x65,0xcb,0xac,0xcd,0x7d,0xce,0x2d,0x50, - 0x4c,0x85,0x44,0x75,0xe5,0x6c,0x72,0x9f,0x39,0x3a,0x52,0xc7,0x4f,0x17,0xfe,0xa5, - 0x93,0x25,0xfe,0xb4,0x61,0x59,0x43,0x91,0x78,0x35,0x37,0x34,0x14,0x80,0x2c,0x8b, - 0x5b,0x47,0xed,0xbd,0x97,0x56,0x25,0xcf,0x16,0xa5,0x28,0x36,0xb7,0x1a,0xfe,0x56, - 0xdb,0xda,0x32,0x0d,0xef,0x96,0x6c,0xcf,0x06,0x94,0xe5,0xb9,0x4b,0x71,0x4b,0x8e, - 0xd6,0x89,0x67,0xa9,0xd6,0x68,0xde,0xa9,0xfc,0x2e,0xe9,0x20,0x10,0xb6,0x6a,0x52, - 0x2f,0xde,0x24,0x9c,0xf4,0x5d,0xdc,0x1d,0xed,0x62,0xfa,0xf4,0x34,0x2b,0x24,0xb2, - 0x36,0xcb,0x49,0xc6,0xe4,0x87,0x22,0x29,0xc2,0x6c,0xf4,0x13,0xde,0x46,0x0d,0x79, - 0x4e,0x3a,0xca,0x8f,0x29,0xdc,0x94,0x16,0xa5,0xaf,0x31,0x04,0x3b,0x8b,0x32,0x4c, - 0x81,0x26,0xf8,0x85,0x86,0x2e,0x1a,0x3b,0xd1,0x1f,0x91,0xa3,0x88,0xe7,0x32,0x53, - 0x31,0x4a,0x9b,0x58,0x1c,0x2e,0x3d,0x93,0xe0,0xe0,0xe1,0x6c,0x6c,0xc8,0x71,0x88, - 0x25,0xcc,0x59,0x90,0x79,0x21,0xa0,0x21,0xca,0x76,0x61,0x1d,0x68,0x7c,0xb0,0x0e, - 0x72,0x9f,0x6f,0x35,0x78,0xc4,0xe4,0x2f,0x0b,0xc4,0x05,0x40,0xb3,0x65,0x5e,0xfe, - 0x1e,0x9a,0x9a,0x4d,0x4a,0xdf,0xf1,0x2a,0x02,0x5e,0xc0,0xaf,0x42,0x83,0x8a,0xa3, - 0xb3,0xaa,0x76,0x04,0x9d,0x48,0x81,0x14,0x20,0xc0,0x2b,0x84,0x32,0x05,0xdc,0x04, - 0xe3,0xeb,0x88,0x48,0x95,0x60,0xd9,0xcc,0x21,0xd7,0x7b,0xa6,0xcf,0x56,0xb4,0xb0, - 0x65,0xca,0xc1,0x0b,0x4c,0x15,0x50,0xdd,0xd8,0x50,0x4d,0x1e,0xb5,0x96,0x82,0x0a, - 0x47,0x14,0xe3,0xe1,0x8c,0xb9,0xa5,0x8a,0x17,0xa0,0x95,0x8f,0xab,0x00,0x31,0x0a, - 0x0c,0xc1,0x23,0x10,0x05,0x3a,0x02,0x8e,0x8e,0x40,0x72,0xf9,0x1e,0x8a,0x67,0x24, - 0xd8,0x3b,0xeb,0xf3,0xb0,0xdd,0x40,0xc3,0x17,0x5d,0x95,0x72,0xd8,0xc0,0x44,0xfe, - 0x2f,0x1c,0x18,0x54,0xf6,0x93,0x3c,0x15,0x9c,0xfa,0x29,0xd1,0x32,0x2d,0x5f,0x4b, - 0xed,0x29,0x82,0xd4,0xc4,0x97,0x9a,0x35,0x96,0xcd,0xf6,0xc1,0x6e,0xef,0xb5,0x56, - 0x1f,0xf6,0x56,0x8e,0x12,0x6a,0x46,0x2b,0x0c,0x30,0x2a,0x71,0x92,0x1c,0x6f,0xbe, - 0xd0,0x34,0xe7,0x38,0xb8,0xbb,0xbf,0x37,0x1b,0x74,0x43,0x37,0x9a,0x8c,0x71,0x05, - 0x73,0x94,0x47,0xdb,0xf2,0x3f,0x61,0x0a,0xbf,0xa7,0x5b,0x28,0x33,0xff,0x8e,0x27, - 0x7e,0xf0,0x3b,0x1a,0x8f,0x7f,0x4f,0xbf,0xfb,0x56,0xda,0x9b,0xe5,0xc8,0xd5,0xa4, - 0x75,0x64,0x52,0x42,0xa8,0x64,0x57,0xda,0x8e,0x7a,0x1a,0x7e,0x6b,0x24,0x77,0x05, - 0x22,0xff,0xbb,0x91,0x59,0x37,0x9f,0xd7,0x22,0xf5,0xaa,0x75,0x47,0x1f,0x1a,0xfc, - 0xe9,0xf0,0x19,0x5a,0x43,0x9a,0xab,0x72,0x33,0xa4,0x9c,0x04,0xf0,0xf4,0x77,0x28, - 0xfb,0x04,0xbe,0xb8,0x45,0xa2,0xa1,0xc7,0x2a,0x3c,0xd5,0xfa,0xa8,0x51,0x17,0xf3, - 0x82,0xf2,0x58,0x00,0x1f,0xe3,0xa1,0xa8,0x0b,0xdc,0x2e,0xcd,0x8a,0x79,0x92,0x10, - 0xf3,0xb0,0xdd,0x79,0x3a,0x36,0x6f,0xb5,0x35,0x7c,0xde,0x6d,0xad,0xc2,0xe7,0xc2, - 0xd8,0xf8,0x06,0x12,0x0d,0x6d,0x85,0xa1,0x51,0x1e,0xd8,0x4e,0x5d,0xcc,0xe6,0x76, - 0xe3,0xc9,0x05,0x25,0xdb,0xa4,0x9d,0xdf,0x71,0x62,0xa3,0xb1,0x9b,0x8d,0xbe,0x5e, - 0x7e,0xe1,0x99,0x30,0xe5,0x96,0x04,0xa4,0x1a,0x10,0x2f,0x14,0xad,0x14,0x78,0x77, - 0x54,0xc6,0x49,0x01,0x8a,0xc2,0xca,0x53,0x8a,0xfd,0xba,0x13,0x6f,0xd2,0xb4,0xb8, - 0x6d,0xd5,0xce,0x45,0xde,0xf8,0xd6,0xd6,0x65,0x91,0x6e,0x9b,0x47,0x80,0x9f,0xa2, - 0x42,0xbe,0x0d,0xeb,0x3c,0x71,0x4a,0x8e,0x35,0xa0,0x21,0xda,0x0b,0x2a,0xd3,0xe5, - 0x45,0x10,0x8d,0x74,0xc5,0xdf,0x9a,0x84,0x26,0xca,0x4f,0x21,0x5f,0xb9,0x96,0x5a, - 0xb3,0xd5,0x26,0xee,0xc2,0x8a,0x09,0xd3,0x33,0x10,0x61,0x47,0xb1,0x9d,0x02,0xbc, - 0x25,0xdb,0xfc,0x5a,0xd9,0x7f,0x78,0x7d,0x84,0x24,0x50,0x72,0x78,0xac,0x57,0x5f, - 0xec,0x5c,0xa4,0x31,0x8c,0x2c,0xb9,0x5b,0x14,0xa4,0x2c,0xa1,0x57,0x14,0x85,0xcb, - 0x5a,0x5e,0x6f,0x75,0x2f,0xaa,0xba,0x01,0x7d,0xc9,0x33,0x56,0xb1,0x2a,0xb3,0xb1, - 0x51,0x14,0x0c,0x65,0x5f,0x17,0xad,0x65,0xb2,0xa1,0x44,0xf0,0x25,0x42,0xe1,0x03, - 0x2f,0x85,0x57,0xc3,0xad,0x6b,0x17,0x20,0xa7,0x56,0x45,0x8c,0x54,0x93,0x56,0x32, - 0xe4,0xd8,0x0f,0x80,0x44,0x6b,0x66,0x6a,0xc9,0x74,0x8b,0xe2,0xa0,0x90,0x80,0xf3, - 0x44,0x92,0x25,0x21,0x54,0x5b,0x88,0xbc,0xe9,0xb2,0xfa,0xa2,0x33,0x74,0x43,0xb3, - 0x41,0xb0,0xa0,0xab,0x23,0x9f,0x5c,0x66,0x59,0x40,0x48,0xba,0x3b,0x2d,0x4b,0x7b, - 0x99,0x4e,0xfc,0xfc,0x3c,0x46,0x48,0x8e,0xb9,0x1d,0xa3,0x52,0x5b,0x8e,0x9c,0x95, - 0xcd,0x25,0x2b,0x29,0xe4,0x39,0x25,0xa2,0xea,0xa8,0xb3,0x4a,0x50,0xa5,0x46,0xa5, - 0xfd,0x86,0x3a,0xd0,0xd7,0x48,0x68,0x68,0x8c,0x9f,0xdd,0x7c,0x93,0x4b,0xe8,0x15, - 0x58,0x51,0xe9,0xdb,0x12,0x79,0xb4,0x28,0x10,0x2b,0x12,0x54,0xcb,0x37,0x10,0x3a, - 0x5f,0xa4,0x68,0xe2,0x7c,0x48,0xd7,0x5c,0xee,0xa6,0x5d,0x30,0x24,0xc8,0xbe,0x2a, - 0xb0,0xad,0xd6,0xbf,0xf6,0xee,0x30,0x7e,0xb0,0xba,0xed,0x91,0x85,0xdd,0xe0,0x29, - 0x33,0x8a,0x37,0x27,0x80,0xdc,0xf3,0x5f,0x62,0x73,0x63,0xa3,0xf4,0xee,0x07,0xac, - 0xab,0x21,0xdd,0x72,0x62,0xc1,0x15,0xfb,0x85,0xc6,0x74,0x44,0x39,0xd2,0x71,0xea, - 0x24,0x6b,0x36,0xeb,0xeb,0x51,0x87,0xc5,0x9a,0x87,0x15,0x14,0x2b,0xb4,0xc4,0x2e, - 0x03,0xe8,0xa1,0x2a,0x50,0x6b,0x75,0xdd,0xe3,0xfc,0xcd,0x85,0x5e,0xf2,0xb2,0xcb, - 0x28,0x59,0xcf,0x7b,0x95,0x95,0x9f,0xd6,0xa9,0x5f,0x81,0xbc,0xd8,0x4c,0xb4,0x88, - 0xd0,0x02,0x9f,0xed,0x43,0xd5,0x8f,0xb8,0x7a,0xbc,0xcc,0x3c,0x3a,0x31,0x0a,0xbb, - 0xfa,0x8a,0x37,0x98,0x32,0x34,0x96,0x49,0xe3,0xd3,0x96,0x16,0xc1,0x3a,0xcc,0x92, - 0xe0,0x67,0x0f,0xe4,0x4e,0xf8,0x3d,0xf5,0x32,0x17,0x7e,0x5b,0x72,0x81,0x11,0xde, - 0x74,0x13,0x93,0x14,0xa1,0x97,0x2c,0x6c,0xae,0x8e,0x09,0xbe,0x22,0xe4,0xf3,0x33, - 0x62,0x26,0x8d,0x15,0xee,0xf7,0x68,0x6a,0x5d,0x66,0x53,0x1f,0x4f,0xb3,0x5f,0x62, - 0x4c,0x87,0x49,0xa1,0x2a,0x7a,0x66,0xe4,0x74,0xfb,0x60,0x1f,0xe5,0x18,0x7b,0x52, - 0x78,0xfb,0x37,0x7a,0xbb,0xbd,0x83,0xc9,0xdc,0xed,0x69,0xf1,0x13,0xbe,0xdc,0xde, - 0x6f,0xe9,0x26,0x8e,0xd1,0x51,0xeb,0x18,0x38,0xfb,0x08,0x28,0x00,0xec,0xf9,0x89, - 0xd9,0x6d,0x4c,0xe0,0x0d,0xfe,0x84,0x37,0xd3,0x2d,0x73,0x6a,0x76,0xe9,0xbf,0x85, - 0xac,0xf5,0x7e,0x00,0x0b,0x65,0x0f,0x6c,0x95,0x1d,0x7e,0xb3,0x7c,0x21,0x21,0xde, - 0xab,0x7b,0x24,0x22,0xd8,0x7c,0x0c,0x69,0xdb,0xdc,0x1a,0x70,0x34,0xdb,0xe6,0x56, - 0x23,0x3d,0xde,0x34,0x0e,0x53,0xf8,0xc5,0xe1,0x67,0xa5,0x70,0xc4,0x82,0x0a,0x9a, - 0x9b,0xa6,0x17,0xba,0x55,0x1a,0xa5,0x04,0xf9,0x3b,0xe5,0xc4,0x3d,0x7c,0x23,0x00, - 0xa6,0xbd,0x7f,0x2d,0xd2,0xcc,0x34,0x54,0x29,0x7b,0xa7,0x55,0x4c,0x6d,0xaf,0xb5, - 0xb5,0xe0,0xb3,0x99,0xbc,0x09,0x6b,0x41,0x29,0xf5,0x55,0x2b,0xc5,0x8f,0xa5,0xee, - 0x5a,0x0f,0x25,0x8d,0x51,0xb6,0x5a,0x49,0x72,0xba,0x3c,0xc7,0x29,0xe5,0xd7,0xac, - 0xd1,0xd7,0x38,0x31,0xae,0xbc,0x4f,0xb2,0x92,0x51,0x2e,0x08,0xd8,0xc7,0xdb,0x71, - 0x1c,0xb3,0x20,0x26,0xaf,0xac,0x67,0x6a,0xa7,0x7f,0x83,0xbe,0x16,0xcf,0x9f,0x3a, - 0x78,0x89,0xc2,0xa7,0x71,0xe2,0x79,0xdb,0x78,0x6b,0xaa,0x9e,0x43,0x99,0xae,0x95, - 0xd4,0xf3,0xc9,0x0a,0xd1,0x99,0x10,0xc1,0xfc,0x25,0x46,0x95,0x16,0xf6,0x16,0xa3, - 0xaa,0x33,0x8b,0x39,0xcd,0xa9,0x65,0x6d,0x15,0xca,0x7d,0xcf,0xd7,0x98,0x9a,0x36, - 0x94,0xc1,0x2b,0x4d,0x3f,0x4d,0x6f,0xb6,0xd1,0x06,0x0e,0x23,0x8c,0x7e,0xf4,0x6f, - 0xbd,0x51,0xa3,0x63,0xd9,0xe6,0x7f,0x9a,0xa5,0x6a,0xea,0x6a,0x4a,0xd3,0xbe,0x1e, - 0xd8,0xe6,0xcf,0xdf,0x1b,0xdf,0xe1,0x0d,0xd2,0x80,0x9e,0xd5,0xd1,0xc3,0x7b,0x1e, - 0x7c,0xa9,0x8d,0xb7,0xee,0xad,0xe1,0x06,0x40,0x1e,0x4c,0xbb,0xa6,0x12,0x26,0xf3, - 0xc2,0x8f,0x5c,0x15,0xbb,0x28,0x8f,0x41,0xbb,0xd3,0xd2,0xb4,0x53,0x87,0xae,0x99, - 0xb0,0xcd,0xd1,0xf7,0xd3,0x72,0xc1,0x37,0x2e,0x28,0xe4,0x1f,0xcf,0xce,0x5e,0x63, - 0xb1,0x24,0x4d,0x7d,0x2a,0x05,0x23,0x3e,0x7b,0xf7,0x91,0x72,0xb1,0xa6,0x61,0x52, - 0xaa,0x72,0xc2,0x39,0x29,0x8c,0xf3,0xdf,0x72,0x10,0xca,0x3c,0x15,0x15,0x18,0xca, - 0xc2,0x1f,0xb5,0xc2,0x09,0x0c,0x7f,0x59,0xf9,0x0f,0x9c,0x93,0x8a,0xca,0x43,0x49, - 0x6f,0x78,0x63,0x63,0x1c,0x0c,0x0d,0x05,0xea,0xc1,0xcf,0x25,0x15,0xce,0xa9,0x02, - 0xea,0x99,0xe5,0xe5,0xc0,0x9c,0x60,0xd0,0xde,0xf6,0xb9,0x6a,0xf2,0x13,0xe5,0x09, - 0x03,0x89,0x61,0x9b,0xa7,0x08,0x95,0xf8,0x55,0xa9,0xea,0x0f,0x3e,0xc6,0x2f,0x97, - 0xea,0x8e,0xe8,0x65,0xb1,0x32,0xbf,0x2b,0xd5,0x3e,0xff,0xcd,0xf8,0x13,0x65,0x1d, - 0xac,0x99,0xdd,0x7e,0xa2,0xdf,0xaa,0x88,0x76,0xbc,0x7a,0x2c,0x96,0x1c,0x73,0x66, - 0xab,0x0a,0x78,0xcc,0x26,0xaa,0x50,0xe6,0xf7,0x42,0xcb,0xe4,0x29,0x24,0x17,0x8d, - 0xfc,0x74,0xd4,0xca,0x95,0x8b,0xbe,0xfe,0x80,0x65,0xfc,0xf8,0xfe,0xde,0x6c,0x4a, - 0x56,0x46,0xa2,0x22,0xf6,0x8f,0xc7,0x08,0x88,0x51,0x80,0xa7,0x40,0xa2,0xf4,0xb7, - 0x8c,0x30,0x02,0x71,0xe4,0xf9,0x3c,0xde,0x82,0x4a,0x62,0xbd,0x76,0xbb,0xaa,0x65, - 0xeb,0x0d,0x01,0xb5,0x29,0x15,0xe2,0x4b,0x53,0xf3,0x52,0x7a,0x83,0xa5,0x5c,0x43, - 0xb9,0x4f,0x41,0xd0,0x4f,0xf3,0x6c,0x88,0xbd,0x02,0x8d,0x90,0xe7,0xc5,0xda,0xde, - 0x4e,0x03,0xc9,0xfe,0xe1,0xd7,0xd4,0x8d,0xab,0xd9,0x3a,0xa5,0x1a,0x39,0x0b,0xf1, - 0x00,0xff,0xd6,0x89,0xae,0x39,0x7b,0xe2,0xfd,0xfd,0x2d,0xa6,0xd1,0xe4,0x07,0x8b, - 0x24,0x44,0x58,0x53,0xfc,0x0e,0xcb,0x1b,0x5d,0xd3,0x0a,0x53,0x09,0x34,0x35,0x27, - 0x89,0x59,0xd4,0xc0,0x0b,0x3c,0xe4,0xfa,0x86,0x38,0x88,0x08,0x84,0xbe,0x75,0x42, - 0x91,0xcc,0x18,0xe3,0xb6,0x6f,0xf3,0xb8,0x6d,0x62,0x2d,0x85,0xbb,0x8a,0x62,0xf4, - 0x32,0xdd,0x14,0xe5,0x88,0xa8,0x6a,0x11,0xdf,0xf9,0x1b,0x71,0x5b,0xd1,0xe6,0x16, - 0xcf,0xa2,0x10,0x68,0x2d,0x8f,0xee,0xd5,0x4d,0x00,0x5d,0xd8,0xff,0xf2,0x2e,0x59, - 0x95,0x0d,0xdc,0x1b,0x39,0xe6,0x2a,0xfb,0x87,0x3c,0x45,0xcf,0xb9,0x03,0x22,0x84, - 0x8b,0xb9,0xb5,0x5c,0xd6,0x2e,0x6e,0xe8,0x88,0xd9,0x95,0x9a,0x04,0xf0,0x65,0x57, - 0x2a,0x10,0x3a,0xab,0x22,0x0c,0x80,0x7d,0x8b,0x27,0xb0,0xca,0x02,0x3b,0x8a,0x93, - 0xbe,0xb8,0x86,0x81,0x3d,0x9e,0x3e,0x00,0x01,0x0d,0x3e,0xa2,0xfd,0xe4,0xfe,0xbe, - 0x8d,0x89,0x33,0x6f,0x1c,0xbe,0xee,0xf5,0x57,0xbc,0x11,0x09,0x64,0x84,0xbd,0x7d, - 0x52,0x10,0x6e,0x1c,0xba,0x22,0xa9,0x3f,0xff,0x0e,0x9a,0xe8,0xc1,0xa3,0xb8,0x7f, - 0x77,0x42,0xcf,0xa2,0xf5,0x2b,0xac,0x7e,0xe5,0x31,0xd7,0xb8,0x05,0x9d,0xbe,0x83, - 0x72,0xdb,0x95,0x93,0x62,0xbc,0x55,0x03,0x0a,0xda,0xf0,0x2f,0xbe,0x20,0x4e,0xf9, - 0x11,0xf6,0x6a,0x03,0x23,0x0a,0xe6,0xf6,0x44,0x8a,0xb8,0x38,0x58,0x31,0xb1,0xc3, - 0x4e,0x49,0x25,0x9e,0x86,0xcc,0x77,0x80,0x58,0x3b,0x14,0xde,0xc6,0x0e,0xe0,0x34, - 0x3f,0x7b,0x7a,0x2b,0x3e,0x62,0x0e,0xc6,0xd2,0x47,0xd1,0xf6,0x14,0x4f,0xd2,0xa7, - 0xa1,0xb5,0x98,0xde,0x6e,0xf5,0xdb,0xbd,0x69,0xd8,0xec,0xb7,0x71,0x0d,0xae,0x30, - 0xbb,0x6d,0x74,0xed,0x9d,0xd1,0x3d,0x4a,0x34,0xfc,0x29,0x48,0x8e,0xde,0x88,0x5e, - 0xe4,0x77,0xf2,0xc8,0x1f,0x22,0x80,0xd0,0xc2,0x99,0x7e,0x48,0x30,0x84,0x2e,0xbb, - 0xa3,0x4b,0x2a,0x1a,0x66,0xb3,0xe9,0x0e,0x87,0xc8,0x3a,0x49,0xc5,0x84,0xcd,0xfe, - 0x4d,0x67,0xf0,0x62,0xe4,0xbd,0xa4,0x15,0xbf,0x72,0xf0,0x00,0x84,0xe0,0xda,0xef, - 0xf4,0xf8,0xe9,0x1f,0x80,0x2a,0x78,0x71,0xf6,0x0c,0x4f,0xff,0xae,0x9c,0x81,0x77, - 0xe5,0x87,0x1f,0x60,0x1e,0x2c,0xf6,0x11,0x34,0x2a,0x1a,0xcd,0x8d,0xad,0x5f,0x79, - 0x70,0xdb,0xf7,0xb7,0x75,0xb0,0x35,0xdb,0xd6,0x77,0x8d,0x79,0x73,0xd7,0xda,0xea, - 0xd8,0x77,0xfd,0x49,0x73,0xb7,0xd9,0xb8,0x69,0xc2,0xac,0xb7,0x61,0xfe,0xf8,0xf7, - 0xbb,0x06,0x14,0x91,0x56,0x2c,0xff,0x98,0x87,0x71,0x1e,0x35,0x6e,0xed,0x3b,0xab, - 0x7b,0xe5,0xa0,0xf7,0x92,0x78,0xca,0xb5,0x51,0x09,0xa1,0x86,0x78,0x02,0x4d,0x3b, - 0x10,0xd0,0xd2,0x61,0x07,0x13,0xc0,0x5b,0xa6,0xf0,0xf6,0xf4,0xf8,0xd6,0x48,0xef, - 0x40,0x8a,0x9e,0x36,0x67,0x3e,0x4e,0x0c,0xd1,0xe1,0x04,0x6f,0x46,0x83,0xc9,0x22, - 0xde,0x98,0x79,0x43,0x78,0x2e,0x47,0x13,0xb8,0x28,0xcc,0xe2,0xd2,0x9e,0x37,0x3b, - 0x36,0x8d,0xb4,0xe2,0x52,0x82,0xb4,0x96,0x6f,0xc8,0x5c,0x22,0xfd,0x62,0x48,0x1d, - 0xc8,0xe2,0x94,0xc0,0xbc,0xc1,0x8e,0x1a,0x7a,0xe4,0x2d,0xbf,0xd9,0xd8,0x58,0x76, - 0xf1,0x9a,0xa8,0xd1,0x53,0x39,0xa9,0x06,0xc1,0x2c,0xc9,0x43,0x4a,0x5d,0x2f,0xf7, - 0x33,0xe6,0x64,0xed,0xa2,0xb2,0x40,0x34,0xd7,0xdb,0xd8,0x70,0xd1,0xa6,0xad,0x4a, - 0x61,0x9c,0x18,0xbe,0xa3,0x86,0x2c,0xf1,0xb7,0x74,0x6e,0x82,0xae,0xa4,0x7c,0xcf, - 0x65,0x3e,0x5e,0x14,0x1a,0xd5,0x85,0x54,0xfd,0x3c,0xb1,0xd1,0xf6,0xb6,0xf1,0x16, - 0x23,0x36,0xc9,0x19,0x92,0xee,0xf6,0xf4,0x43,0x71,0x67,0x1e,0x30,0xd0,0xb9,0x41, - 0x30,0x36,0x06,0x1e,0xfe,0xa6,0x10,0x3e,0xaa,0xa9,0x5d,0x19,0xda,0xc5,0xcb,0x8d, - 0x9e,0xa9,0x5c,0x48,0xec,0xeb,0x48,0xc7,0x3e,0x9e,0xcc,0x2c,0x25,0x5d,0x73,0xdd, - 0x81,0xec,0xe9,0x5a,0x40,0x54,0x45,0xb0,0x70,0xd7,0x74,0x31,0xe9,0x33,0xe1,0xb1, - 0x4f,0x6e,0xbd,0xa9,0xaa,0x8c,0xea,0x0e,0xde,0x66,0xc1,0x4e,0xb2,0xf9,0x55,0x47, - 0x89,0x37,0x86,0xae,0x30,0x05,0x04,0xad,0x55,0xa1,0x79,0xe7,0x59,0xd5,0x9d,0xbb, - 0x7e,0x81,0x6c,0x1a,0x00,0xa9,0x8a,0xda,0x8d,0xa6,0xf9,0x95,0x27,0x7d,0x2f,0x00, - 0x6d,0xac,0x1c,0x61,0x2c,0x2e,0x3a,0xd9,0xd8,0x18,0x3b,0x18,0x00,0x1a,0x66,0x78, - 0x67,0xb6,0xa5,0x3f,0x00,0x57,0x03,0xb2,0x9d,0x7d,0x4f,0x37,0x4a,0x37,0xa8,0x55, - 0x1b,0x03,0xf0,0x6f,0xb3,0x33,0x98,0x15,0x1a,0xeb,0xc8,0x6c,0x89,0xef,0x57,0xe6, - 0xc0,0x07,0x88,0x0c,0xa0,0xdf,0xa6,0x37,0x1e,0xe3,0xd5,0x4c,0x72,0x82,0x3c,0xe5, - 0x06,0x5d,0xab,0x8a,0x8e,0x73,0x89,0xe7,0x06,0xe2,0xce,0xc6,0x5e,0x09,0x4e,0xb0, - 0x63,0x60,0x08,0x50,0x2a,0xc3,0x78,0xc1,0x3a,0xb4,0x5e,0xae,0x50,0xd7,0x95,0xce, - 0x8f,0x64,0xf2,0x7b,0x55,0xd9,0xdc,0x5f,0x38,0x6f,0x57,0xd7,0x9e,0x2e,0xca,0xb0, - 0x5d,0x72,0x79,0x46,0xe1,0x36,0x31,0x89,0xb5,0xa4,0xf8,0x54,0xd4,0x32,0xea,0x32, - 0x4a,0x86,0x6c,0x01,0x54,0xed,0xd3,0xcd,0xa9,0xba,0x3c,0xb1,0xf9,0x35,0x6f,0x51, - 0xdd,0x64,0x3b,0x33,0x90,0x2d,0xd5,0xfd,0xb1,0xd0,0xb1,0xe0,0xc5,0x71,0x42,0x77, - 0xca,0xf6,0xdb,0x20,0x79,0xa8,0x97,0xa5,0xac,0x42,0x03,0x37,0x49,0x1b,0x28,0xdf, - 0xb1,0x4a,0x1d,0xf6,0xf1,0xf7,0x51,0x73,0x6f,0xef,0x78,0xb7,0xcb,0x3f,0xf7,0x5f, - 0x1c,0xef,0x88,0x9f,0x2f,0x0e,0x8e,0x3b,0xdd,0x36,0x65,0x36,0x8c,0xea,0x73,0xdb, - 0xec,0xd2,0xf9,0x7c,0x84,0x59,0x5f,0xf4,0xbb,0x43,0x47,0x7e,0x1a,0x07,0xee,0x5d, - 0x97,0x6f,0x01,0x66,0xcb,0x44,0x4f,0x5c,0x9d,0x18,0xdf,0xca,0xfb,0x24,0x13,0xbe, - 0xf3,0x14,0x5e,0x0c,0xa2,0x04,0x36,0x1f,0x5d,0xf6,0x31,0x4b,0xe9,0x8d,0xb8,0x5c, - 0x11,0xd4,0xe5,0x9d,0x2d,0xff,0xbb,0x1d,0x90,0x59,0xb0,0x18,0x48,0xe7,0x57,0xc4, - 0x65,0xf0,0x03,0x74,0x1f,0x1e,0x9b,0x7c,0x03,0x22,0xf0,0x2b,0x0b,0x66,0xcd,0x0f, - 0xd8,0x27,0x9e,0x9b,0x6d,0x2a,0xe8,0x6d,0xf6,0xb4,0x04,0x46,0x2b,0x06,0x8a,0x17, - 0x02,0xf7,0x68,0x7d,0x9a,0x3e,0x50,0xfd,0xb4,0x8b,0x2f,0x9a,0xa0,0x92,0xca,0xf1, - 0xe0,0x8d,0xad,0x94,0x3c,0x66,0xcb,0x14,0x4d,0x9b,0x65,0x0d,0x18,0x57,0x66,0x96, - 0x04,0x4a,0x07,0xc6,0xdf,0x8f,0xdd,0x0b,0xc6,0x17,0x2a,0x60,0x0c,0xa3,0x88,0x78, - 0xd2,0x50,0xaf,0xbf,0xfc,0x8c,0x87,0xfa,0xd2,0x97,0x9a,0xf6,0x45,0xc9,0xdb,0x9a, - 0x93,0x73,0xa0,0xa8,0x9a,0x38,0xf2,0x16,0x64,0x11,0x8e,0x53,0xb2,0x34,0x87,0xca, - 0xc6,0x1c,0x52,0x50,0xa3,0x74,0xdf,0xc4,0xda,0x75,0xf1,0xf0,0xd2,0x4d,0x84,0x34, - 0xbd,0xa6,0x4b,0x7f,0x0a,0xde,0xbc,0x9e,0x17,0x62,0x08,0x06,0xf5,0x4e,0x8d,0xd4, - 0xf4,0x88,0x62,0x3b,0x94,0xbb,0xe0,0x2e,0x2f,0x2d,0xfd,0x26,0xd0,0x9e,0xfe,0x05, - 0x10,0x4e,0x7c,0x43,0xdb,0xaa,0x1e,0x97,0x52,0xbf,0xf1,0xa8,0x43,0x21,0xca,0xd3, - 0xef,0x82,0x30,0x1f,0x2a,0x61,0x5e,0xa2,0x85,0xb8,0x7b,0xb9,0x78,0xd1,0xb2,0xbc, - 0xf5,0xd5,0x53,0x59,0x8c,0x52,0x3c,0xe0,0x66,0x79,0x9a,0x07,0x26,0x04,0x6c,0xda, - 0x58,0x21,0xc1,0xc0,0x52,0xe7,0x9e,0x5b,0x9b,0xc5,0x1d,0x9d,0x4a,0x51,0x5c,0x56, - 0x55,0x58,0xb4,0x05,0xaf,0xbc,0x70,0x78,0x6c,0x6e,0x7c,0xd3,0xee,0x1c,0x74,0x5e, - 0xec,0xf6,0xf8,0x8e,0x2e,0xf3,0x30,0x9d,0x82,0x76,0x0e,0x05,0xb8,0x6d,0xaa,0x41, - 0x6f,0xd4,0x1d,0xce,0x66,0x55,0x62,0xdf,0xcc,0xef,0xd3,0xac,0xdc,0x13,0xaa,0x28, - 0x4e,0x87,0x2e,0xf9,0x8c,0xd4,0xd5,0xd8,0xb0,0xb7,0x61,0x67,0x39,0x78,0x7d,0xe6, - 0xe6,0x32,0xd7,0xd8,0x55,0x74,0x6e,0xdd,0x2e,0x11,0x6b,0x45,0x6c,0x22,0x77,0x96, - 0x1f,0x4b,0xe9,0x4d,0xff,0x75,0x57,0x56,0x44,0xf7,0x1a,0x47,0xd6,0x47,0x98,0x72, - 0x41,0x58,0x11,0x89,0x7d,0x85,0xbd,0x38,0xf7,0x03,0xa5,0x44,0xde,0xfc,0x09,0x49, - 0x08,0x82,0x89,0x06,0xdb,0xa0,0x13,0x24,0xfa,0x25,0x33,0x3c,0x2e,0x06,0xb3,0x01, - 0xc8,0x10,0x69,0x97,0xd1,0x56,0x9c,0x8b,0x28,0xd6,0x54,0xeb,0x2c,0x2a,0x52,0xfb, - 0x15,0xc5,0x42,0x60,0xc3,0x1f,0x41,0xb0,0xa6,0x04,0x47,0xe4,0x3f,0x9b,0xe7,0xca, - 0x18,0xb8,0xd7,0x78,0x6b,0x3a,0xec,0x45,0x6f,0xe8,0xce,0x44,0xc0,0x35,0x5f,0x10, - 0x7c,0xf2,0x81,0x6e,0xdb,0x0a,0x23,0xc3,0x17,0xf7,0x31,0x53,0x64,0xee,0x59,0x34, - 0x03,0xe6,0xd1,0x35,0xf0,0x16,0xe4,0xb4,0xbb,0x8d,0x34,0x04,0x4f,0xab,0x26,0x43, - 0xe0,0xd3,0x4e,0xf8,0x99,0x68,0xca,0x4d,0x5b,0x84,0x4e,0x18,0x0d,0xfe,0x9b,0x97, - 0xf0,0x23,0xcb,0x36,0xfe,0x31,0x0b,0x30,0x2c,0x78,0x9f,0x1a,0x1c,0xf7,0xdf,0xfe, - 0xf4,0x19,0x46,0x32,0xef,0x5f,0xff,0xf4,0x19,0xc3,0xb5,0x64,0x04,0x88,0x01,0xbd, - 0xe3,0x65,0x09,0x62,0xcc,0x63,0x7b,0x30,0xb7,0xd1,0x75,0x3f,0xf9,0x97,0x43,0x9e, - 0xaf,0x85,0xe4,0x83,0xfd,0x0b,0x80,0xce,0x22,0xeb,0x9a,0xbf,0x9c,0x9d,0x6c,0x9f, - 0xba,0xa1,0x3b,0x72,0x8d,0x06,0xc6,0x2e,0x4d,0x61,0x7d,0x46,0xde,0xc8,0x82,0xe5, - 0xef,0x9a,0x2f,0xdb,0x2d,0x67,0xaf,0xb3,0x67,0xa2,0x2f,0xbb,0xb9,0xdf,0x71,0xe0, - 0x57,0x0a,0xaf,0x5f,0x98,0xe8,0xd2,0x6e,0xee,0xf1,0xbd,0x1f,0xd8,0xca,0xc9,0x0c, - 0xe4,0x7a,0xa0,0xe7,0xae,0xa8,0xb6,0xe7,0x1c,0xb4,0x5a,0x5c,0xad,0xb3,0xd7,0xe2, - 0x5a,0xed,0xd6,0xf2,0x6a,0x46,0xe3,0x9d,0x8b,0x67,0x0d,0xb2,0xdb,0x7d,0x67,0xef, - 0xc5,0xb2,0x6e,0x0f,0x6a,0xeb,0xbf,0xf5,0xd5,0x98,0xf7,0x9c,0x96,0xac,0xdc,0xee, - 0x88,0xba,0x2f,0x97,0xf7,0xdd,0x35,0xce,0x4e,0x6c,0xe3,0xd7,0x13,0xae,0xdd,0xd9, - 0x71,0xda,0xd5,0x19,0x1f,0x2c,0xef,0xba,0x6b,0xfc,0xc7,0x9b,0x1f,0xd6,0xa8,0xab, - 0x75,0xfd,0x7d,0xe2,0x7e,0xf6,0x83,0xa7,0xf5,0xf7,0xea,0x97,0xed,0x5f,0x7e,0x2e, - 0x82,0xe9,0x60,0xff,0xa5,0xb3,0xdf,0x3e,0x58,0xbb,0xee,0x0f,0x1e,0xe0,0x31,0x26, - 0x30,0x1d,0xe5,0xf5,0xd5,0xea,0xe6,0xcb,0xd4,0xae,0x8c,0xf7,0xf4,0xb3,0x37,0x9c, - 0xc0,0x9e,0x88,0x67,0x20,0xcd,0x0e,0xab,0x83,0xd8,0xdd,0xe9,0x3c,0x8e,0x22,0xaf, - 0x7e,0x31,0x76,0x77,0x76,0x00,0x77,0x8d,0xc6,0x9b,0x28,0xbc,0x32,0xe8,0x1c,0x86, - 0xdb,0x80,0xf7,0x0e,0xde,0x31,0xfc,0xe8,0x40,0xb4,0x36,0xf4,0x31,0x14,0xea,0xaf, - 0x02,0xc4,0x3b,0xca,0x62,0x12,0x90,0xf7,0xdf,0x0a,0x08,0x56,0x07,0x8f,0x57,0x34, - 0xff,0x37,0x88,0xdd,0x78,0xb2,0xc4,0x48,0xf6,0xc2,0xd9,0x79,0xb1,0x06,0xe8,0xb4, - 0x8a,0x65,0x1c,0xd7,0x5a,0x58,0xd5,0x35,0x66,0x85,0x9b,0x5d,0x01,0x29,0x82,0x59, - 0xaa,0xd9,0xd6,0xd4,0x14,0x18,0xbe,0x5f,0x53,0xf3,0x60,0xff,0x60,0x8d,0xe9,0x6a, - 0x35,0xcf,0xe6,0x7e,0xf6,0x99,0x01,0xf5,0x34,0x4c,0xfb,0x4f,0xdf,0xcb,0x42,0x77, - 0x5a,0x9a,0x6a,0xa7,0xe5,0x74,0x96,0x2e,0xcf,0x5e,0x4d,0xed,0x32,0xa6,0x16,0x5a, - 0xa8,0x03,0xf7,0xb3,0x4b,0xcd,0xff,0xbe,0x98,0x36,0x75,0x91,0x67,0x6d,0x5f,0x91, - 0xb2,0x5d,0x57,0x67,0x44,0x2c,0x12,0x89,0x5e,0xa8,0x93,0x85,0xc0,0xbe,0x12,0xc0, - 0xfb,0x21,0x67,0x00,0xea,0x1a,0x3c,0x09,0x90,0x24,0xf1,0x2f,0x0c,0xc6,0xa0,0x31, - 0xc1,0x33,0xfc,0x71,0x5a,0xa6,0x38,0x6d,0x77,0xef,0xef,0x15,0x3b,0x34,0x94,0x3b, - 0x27,0xdb,0x60,0x5c,0x2d,0xd2,0xc8,0xbe,0x03,0x7e,0x57,0x0c,0x3c,0x2a,0xba,0xe9, - 0xb2,0xec,0x0f,0x4d,0x8a,0x9b,0x3b,0x6f,0xd1,0x27,0xf6,0x79,0xbf,0x2f,0x1e,0xef, - 0xf0,0xb1,0xd2,0x8f,0x26,0xc2,0x15,0xcd,0x83,0x04,0x9c,0x1f,0x28,0x31,0x65,0x11, - 0x36,0x06,0xee,0x2b,0x75,0x73,0xdf,0xf7,0xbf,0x4a,0x50,0xe5,0xef,0xce,0x7e,0x94, - 0x50,0xcb,0xdf,0x9d,0x7e,0xac,0x00,0x70,0xfe,0x99,0x62,0x93,0x7e,0xf4,0x29,0xa5, - 0x6a,0x1e,0x38,0xa0,0x67,0xd8,0xb5,0x87,0xb3,0xa4,0x98,0xa7,0xf7,0xfe,0x9e,0x15, - 0x1f,0x95,0xe3,0xb3,0x9c,0x16,0x13,0x04,0x1a,0x4e,0x36,0x49,0x01,0xbe,0x09,0x71, - 0xe8,0xfc,0x22,0x77,0x3d,0x43,0x26,0x59,0xff,0x50,0x54,0xc0,0x9c,0xbb,0xf0,0xbc, - 0x4e,0xda,0x5d,0xcd,0xc5,0xb8,0x2e,0xf7,0x2e,0x0c,0xd7,0xb2,0xb8,0x4d,0xbf,0x98, - 0x84,0xb3,0x9c,0x03,0xd4,0xd7,0x33,0x7f,0x66,0x20,0xb4,0x02,0xac,0x46,0x6e,0x3a, - 0xe9,0x19,0x9b,0x5b,0x05,0xe0,0xeb,0x09,0x41,0x73,0xdb,0x59,0x7d,0xb3,0x94,0xbb, - 0xf7,0x88,0xe2,0x50,0xe5,0xf5,0x47,0x32,0xe4,0xb8,0xd8,0x08,0x80,0xb9,0x92,0x5b, - 0x91,0x73,0x39,0x61,0xd7,0x04,0x3e,0x65,0x5e,0xe1,0x18,0xe4,0x00,0x03,0x53,0xef, - 0x18,0x5e,0x98,0xba,0x1c,0xe3,0x66,0xe7,0x12,0x4f,0x7a,0x7c,0x77,0xe4,0xdc,0xe7, - 0x6b,0x74,0x87,0x98,0xf4,0x6b,0x38,0x89,0x38,0xf4,0x15,0x6d,0xa4,0x58,0xeb,0xa8, - 0xdf,0xb2,0xd2,0x72,0xc6,0x7b,0xfa,0xa2,0x65,0x55,0x6b,0x70,0xf4,0x27,0x05,0x5d, - 0xc2,0x5f,0x91,0x9b,0x59,0xde,0xb1,0xad,0x30,0xa3,0x09,0xd3,0x2b,0x5e,0x29,0x79, - 0xca,0xf3,0x0d,0xee,0xba,0xc6,0xe1,0xe0,0x88,0x4d,0xf3,0x43,0x8a,0x55,0xb4,0xea, - 0x70,0x96,0x3f,0x0f,0xe6,0x56,0x19,0x71,0xf9,0x43,0x3a,0xb6,0xca,0xd8,0xcb,0x1f, - 0x86,0x09,0x29,0x09,0xd0,0x03,0xad,0xee,0x16,0x4f,0xe0,0xb0,0x75,0x6c,0x1a,0x8d, - 0x51,0xe4,0xa5,0xe1,0x66,0xc6,0x30,0x02,0x08,0x24,0x52,0x3a,0x64,0x20,0x59,0xa4, - 0x41,0x48,0xe8,0xaf,0xb8,0xd8,0xa0,0xba,0x47,0x00,0xa3,0x0b,0xf9,0x6f,0x6f,0xfa, - 0x0a,0x90,0x36,0x61,0x62,0x2f,0x4f,0x93,0x6f,0x9a,0xf7,0xf7,0xf4,0x97,0x90,0xc1, - 0x5a,0xd0,0xf7,0xe2,0x1e,0x7a,0x10,0xb7,0x63,0x2c,0xf8,0xda,0x8b,0x02,0xde,0x5f, - 0x6c,0xdd,0x5c,0xf6,0xb8,0x4e,0x11,0xb7,0x1f,0x18,0x41,0x46,0x98,0x6c,0x83,0xe5, - 0x59,0x4c,0x64,0x3e,0x32,0xfe,0x45,0x4d,0x8a,0xab,0xb7,0x26,0x49,0x34,0xbb,0x92, - 0x61,0xef,0x53,0x34,0xe5,0x65,0x13,0x14,0x38,0x39,0x78,0xfe,0xc6,0x0d,0x87,0x50, - 0xc3,0x1b,0xf9,0x59,0x94,0x3c,0x7b,0x4a,0xd8,0x24,0x67,0x79,0xc3,0x08,0x4d,0x1a, - 0x9a,0x4e,0x16,0x9f,0x1a,0x4b,0xa9,0x30,0x30,0xce,0x83,0x28,0x97,0xdf,0x8a,0x2c, - 0x22,0x29,0xa9,0xd7,0x4a,0xca,0xf0,0x7c,0x3b,0xa6,0x5f,0x56,0xb9,0x9a,0x6b,0x9c, - 0xca,0x96,0x3c,0xdf,0xb5,0x0b,0x1d,0x0b,0x91,0x8c,0xe2,0xda,0xc3,0x6a,0x30,0x23, - 0x59,0x37,0x34,0xf2,0xfa,0xf8,0x69,0x10,0x5d,0xa1,0x1a,0xaa,0xd4,0xa9,0xf9,0xc1, - 0xdd,0xc6,0x06,0xe6,0xc7,0xde,0xb1,0xc2,0xfe,0x2e,0x45,0x0a,0xb6,0xed,0x8e,0xbd, - 0x63,0xef,0xd6,0xdd,0xb0,0xa8,0xb2,0x22,0xe1,0x1e,0x35,0xb7,0xfc,0xe5,0xe1,0x4c, - 0x3e,0x00,0x23,0xd4,0x0d,0x06,0x59,0xbc,0xa4,0x3c,0x46,0x2a,0xa2,0x5d,0x49,0x03, - 0x35,0x8c,0x8f,0x87,0xa4,0xd2,0xee,0x7f,0x48,0x3c,0xb4,0xf8,0x1b,0xd1,0x80,0x4f, - 0xc5,0x28,0xbd,0x6a,0x9e,0x7f,0x81,0xe8,0x17,0xbd,0x6a,0x72,0x96,0x23,0xce,0x0a, - 0xc1,0x19,0x60,0x28,0x2f,0x2d,0x5a,0x9e,0xd5,0x75,0xf7,0xa1,0xe1,0xdd,0x72,0x42, - 0x23,0x79,0x23,0x1d,0x87,0xff,0xbb,0xe1,0x0c,0xb6,0x32,0xe2,0x2e,0x5d,0xee,0x40, - 0xa9,0x67,0x44,0xb4,0xbb,0x37,0xca,0xef,0xbd,0x8f,0xe8,0x2a,0xe3,0xf9,0xe7,0x1d, - 0xa3,0x90,0x09,0x56,0x5e,0x09,0xa5,0xd2,0x82,0x90,0x19,0x68,0xaa,0xf2,0xff,0x89, - 0xdb,0x55,0x25,0x8a,0x88,0xbb,0x56,0x4d,0x75,0x94,0x1a,0x6d,0x6c,0x3c,0x17,0xd9, - 0xf3,0x61,0x49,0xa6,0x98,0xdb,0x9e,0xb1,0x38,0x9c,0xf6,0xa2,0x27,0xeb,0xbc,0x0f, - 0xf9,0x4d,0xd3,0x08,0xcb,0x5d,0x8b,0xf2,0x6c,0xf3,0x2d,0xbc,0x7c,0x20,0x21,0x4e, - 0xf3,0x64,0x18,0x20,0x1e,0xa8,0x95,0xe3,0x11,0xe2,0xf7,0x32,0xe8,0x0e,0x53,0x2e, - 0x78,0x9c,0x2d,0x4c,0xdd,0x5f,0x4c,0x56,0x59,0x80,0x66,0x3a,0xe7,0x6c,0x00,0xef, - 0xcf,0x8c,0xa1,0x1b,0xe3,0xa9,0x06,0xe6,0xa4,0x1a,0x88,0x94,0x01,0x86,0x29,0x32, - 0x10,0x9a,0xc2,0xf8,0x2f,0xee,0x92,0x26,0x8b,0x5f,0x28,0xac,0xd5,0x68,0x9f,0x18, - 0x78,0xe8,0x1f,0x3f,0xf5,0x31,0x95,0x95,0x4a,0x36,0x80,0xa6,0xe8,0x58,0xde,0x8f, - 0xc1,0x8e,0xce,0x94,0xaf,0x63,0xee,0x06,0xd7,0x79,0x63,0x98,0x68,0x56,0x51,0xa6, - 0xc4,0xc3,0x03,0x11,0x59,0x07,0xd3,0xc6,0xba,0x94,0x06,0x88,0x53,0x5a,0x92,0xc9, - 0x7c,0x00,0x12,0x29,0x54,0x71,0x0a,0x3e,0x33,0x5c,0x72,0x1b,0x50,0x23,0x2b,0x5f, - 0x80,0xb9,0x32,0x6a,0x62,0x63,0x23,0x71,0xd0,0xe2,0x88,0x68,0x8e,0x95,0x9b,0xf0, - 0x50,0x72,0x82,0xa1,0x02,0xf9,0x66,0xa0,0x52,0xd1,0x4d,0xd5,0x26,0x4e,0xe9,0xed, - 0x97,0x06,0x49,0x8b,0xc0,0xe4,0xd3,0x68,0x16,0x8c,0x90,0x09,0xc1,0x54,0x86,0x1a, - 0xfe,0x37,0xd1,0xaf,0xd7,0x70,0xe9,0x76,0x3b,0xab,0xb4,0xf9,0xbd,0xf1,0x18,0x93, - 0x52,0x0a,0x21,0xaf,0x94,0xfe,0xe0,0x58,0x4b,0x52,0xd0,0x6d,0xe4,0x79,0x13,0x10, - 0x3b,0x75,0x2b,0x7c,0x31,0x75,0x1a,0xbb,0x7f,0xcb,0x30,0x42,0x41,0x52,0xaa,0xd7, - 0xae,0xeb,0xd7,0xb4,0x31,0x2f,0xc2,0xb1,0xe4,0xa9,0x0c,0x40,0xa0,0xea,0x17,0xaf, - 0x9d,0x50,0x9f,0xd4,0x8d,0x21,0xf2,0xe0,0x45,0xf6,0x48,0xa2,0x43,0xe1,0xce,0x64, - 0xd8,0x3a,0xb1,0xec,0xea,0xcc,0x43,0xa4,0xe4,0xd1,0xaa,0xc4,0x95,0xa6,0xbc,0xd1, - 0x31,0xbe,0xbf,0x1f,0x5a,0x1b,0x1b,0x31,0xd0,0xa7,0xa1,0xac,0x71,0x52,0x28,0x9a, - 0x1a,0xa3,0x88,0x62,0x1e,0x38,0xc6,0xa5,0xb7,0xec,0x76,0xac,0xc2,0x86,0x52,0x81, - 0x4a,0x80,0x58,0x18,0x22,0x3c,0x52,0xdb,0xbe,0x90,0xab,0x0c,0x3e,0x37,0xe8,0xb6, - 0x2b,0x2c,0xc7,0x87,0xf2,0x75,0x5e,0x08,0x9b,0x5b,0x01,0x8a,0x20,0xe4,0x6c,0xc0, - 0x62,0xc9,0x8d,0x90,0x49,0xf8,0x50,0x82,0xd3,0x43,0x60,0x63,0xa6,0x7e,0x7f,0xb8, - 0x69,0x8f,0x2e,0xb4,0x04,0x79,0x97,0x8a,0xd8,0x94,0xde,0x62,0xac,0x0b,0x89,0x8d, - 0x16,0x23,0x5b,0xde,0x50,0x9e,0xf2,0x5c,0xb6,0x84,0xf9,0xf4,0x2e,0x8f,0xcd,0xef, - 0xe8,0x7f,0x66,0x8e,0x1e,0x85,0xaf,0x0d,0x98,0x9f,0xc8,0xa2,0x07,0x12,0x50,0x83, - 0x72,0xdb,0x88,0x31,0x59,0x22,0xaf,0x11,0x1e,0xd1,0xd7,0x50,0x40,0x8b,0xfa,0x7e, - 0x27,0xe9,0x37,0xf4,0x5b,0x57,0x48,0x85,0x00,0x0c,0xfb,0x23,0xa9,0x23,0x54,0x54, - 0x06,0x3b,0x89,0x39,0xad,0xf6,0x1a,0x72,0xfe,0xaa,0xcb,0x35,0x92,0x21,0xe8,0x50, - 0xb1,0x4c,0xb4,0x4d,0xe3,0xfb,0xc8,0x9c,0xbb,0x91,0xc4,0xc7,0x09,0x88,0xf2,0x20, - 0x37,0x36,0x0d,0x36,0x16,0x27,0x43,0x4d,0x50,0x11,0xd6,0x60,0x74,0x3b,0xb1,0xb6, - 0x1a,0x62,0xa4,0xec,0x95,0xa2,0x43,0x48,0x03,0x48,0x76,0xcb,0x00,0x38,0xff,0xcd, - 0xa0,0x9b,0x06,0x71,0xfe,0xd9,0x2d,0xb4,0x4f,0x9e,0x40,0xa2,0x58,0xdd,0xbe,0xda, - 0xd8,0x68,0x94,0xf7,0xc0,0xfd,0x7d,0x69,0x67,0x59,0xdc,0x76,0x11,0xbb,0x4d,0xbb, - 0x54,0xea,0xd8,0xa4,0xeb,0xe7,0xca,0x38,0x51,0xe7,0xdb,0x43,0xcd,0xbd,0xd7,0x59, - 0x30,0xe1,0x49,0x81,0xf9,0x69,0x38,0x57,0x7a,0x5f,0xee,0x41,0xb4,0xf7,0xfa,0xe4, - 0xfc,0x04,0x40,0x2b,0xdb,0xa1,0x5b,0x13,0x2b,0xad,0xc8,0xb7,0x7a,0x1b,0x20,0x41, - 0xfc,0x12,0xc7,0x5e,0x72,0x0a,0xc2,0x5f,0xc3,0xd2,0x78,0x2e,0x28,0x2d,0x7d,0x35, - 0x2c,0xba,0xc7,0xaf,0x3a,0x2a,0x7e,0x9d,0xf3,0xde,0x79,0xc8,0xc0,0x7a,0x8f,0x1f, - 0x50,0xd0,0x35,0x6d,0x78,0x97,0x47,0xd9,0x1f,0xe3,0x13,0x87,0xd1,0xb7,0xec,0x76, - 0x07,0x76,0x23,0x7a,0x41,0x76,0xb1,0x5e,0xde,0xb1,0x37,0x55,0xfd,0xf2,0xfd,0x80, - 0x95,0x7e,0xc5,0x6b,0xd5,0xaf,0x37,0xd5,0xbb,0xe5,0xaf,0x36,0xbc,0xe4,0x02,0x6b, - 0xdc,0x6a,0x21,0x89,0xaa,0xe8,0x17,0x64,0x2c,0x18,0x99,0xcc,0x46,0x5f,0xea,0xbd, - 0xf8,0x51,0x0b,0x27,0x8b,0x99,0x1e,0x8a,0x0c,0xf1,0x34,0x20,0xf2,0x83,0x82,0x0a, - 0x76,0x5c,0xb8,0x1f,0x46,0xcc,0x13,0xd3,0xf7,0x16,0x6e,0x81,0x19,0x55,0x8f,0xb6, - 0x14,0xbb,0x79,0xbe,0xfd,0xcf,0x06,0x47,0xce,0xdd,0x4b,0xac,0xfb,0xf6,0x1e,0x91, - 0xe7,0xdb,0x7b,0xda,0x20,0xdf,0xde,0x67,0xb7,0xdf,0xde,0xe3,0x00,0x7f,0x17,0xd8, - 0x22,0x1e,0x70,0xd1,0xe5,0x7b,0x84,0x8f,0xf8,0x4d,0x50,0xa2,0xdf,0x94,0xca,0xfc, - 0x77,0xc7,0x12,0x29,0x9d,0xaf,0xf1,0x1a,0xe2,0x42,0x9c,0x03,0x0d,0x54,0x40,0x58, - 0x4b,0xbb,0x9a,0x02,0x8c,0xf1,0x4b,0x21,0xf1,0x59,0x7e,0x01,0x0d,0xaa,0x9f,0x44, - 0xd6,0x0b,0xea,0x27,0x51,0x6c,0x79,0xdc,0x53,0x94,0xac,0x49,0x48,0xcf,0x93,0x96, - 0x0a,0x5e,0xc8,0x2c,0x55,0xa7,0xbc,0xc0,0xa5,0xea,0x08,0x32,0x9f,0xf1,0x40,0xaf, - 0x35,0xf7,0x38,0x7f,0x08,0x3c,0x37,0xa5,0x83,0x05,0x10,0x50,0x75,0x5a,0x8f,0x0e, - 0x88,0x5e,0x6c,0xb4,0xad,0x82,0x2f,0x2e,0x74,0xad,0x99,0x56,0xf2,0xcc,0x0a,0xe6, - 0x1a,0x7d,0x80,0x36,0x8f,0x89,0x63,0xdd,0xc2,0x49,0x87,0xe8,0xa6,0x63,0x19,0x4d, - 0x92,0x32,0x52,0x10,0xd8,0xfc,0x98,0x05,0x3b,0x40,0x97,0xe6,0x2f,0x67,0x78,0x9d, - 0x01,0xfa,0xa4,0xa7,0x85,0x81,0x2c,0xcd,0xb8,0xaa,0xa2,0x34,0xb4,0x54,0xab,0x4b, - 0x87,0xc6,0x05,0x60,0x99,0xe4,0x28,0xca,0x93,0xd5,0xb5,0x18,0xc0,0xb3,0x8b,0x93, - 0xe6,0x7f,0xbb,0xcd,0xcf,0x97,0x8b,0x9d,0x07,0x99,0xe7,0x3b,0x5f,0x88,0x75,0xc8, - 0x8b,0x69,0x15,0x54,0x9c,0x15,0xd0,0x22,0x5f,0x02,0x00,0xd6,0x4e,0x33,0xf0,0xd0, - 0xcb,0xd8,0x40,0x3a,0x26,0xec,0x01,0x06,0x86,0xe2,0x1a,0x0d,0x72,0x08,0xc5,0x81, - 0x17,0x87,0xbd,0xbc,0x69,0x25,0x24,0x0d,0xa4,0x81,0x8c,0x53,0x52,0xdb,0x03,0xca, - 0x0d,0xdf,0x1f,0xe8,0xc5,0x7b,0x83,0x52,0xa2,0xe9,0x41,0xb1,0xb1,0x73,0x8f,0x35, - 0x1c,0xca,0xa4,0xe7,0xb0,0xeb,0xa0,0x9e,0x7e,0x76,0xc1,0x21,0x82,0xac,0x2f,0xe4, - 0x27,0x7c,0x89,0xc8,0x8b,0x2a,0xae,0x49,0x2f,0xe7,0xa1,0x1c,0x94,0xd2,0x51,0xe0, - 0xb8,0xf2,0xc0,0xaf,0x44,0x4f,0xba,0xac,0xb7,0x23,0xb3,0xb6,0x29,0x5b,0x13,0x68, - 0x04,0xb1,0x0c,0x4f,0xe4,0x74,0xb6,0x8d,0x4e,0xab,0x63,0x71,0xd6,0x55,0x29,0xfc, - 0x53,0x4a,0x3c,0x8e,0xe2,0x9d,0xcb,0x7c,0xc3,0x7a,0x73,0x68,0x9f,0x42,0x23,0x16, - 0x6d,0x6d,0xce,0x6a,0xcb,0x1e,0x48,0x48,0x67,0xa0,0x71,0x4c,0x00,0x03,0x5b,0xc0, - 0x1f,0x71,0xc0,0xa9,0xaa,0xaa,0x65,0x26,0x34,0xeb,0x87,0x24,0x4d,0x6a,0x94,0x18, - 0x4e,0x24,0xd8,0xa5,0xcb,0xc5,0x71,0x78,0x1c,0x8c,0xa9,0x25,0x86,0xe5,0x88,0x4d, - 0x99,0x1e,0xd6,0x31,0x5e,0xcb,0x1c,0xbb,0xa2,0x19,0x31,0x1e,0x9b,0x26,0x04,0xfa, - 0x16,0xe6,0x47,0xc7,0x31,0xa4,0xc6,0xef,0x26,0x6b,0xf4,0x9c,0xc6,0xef,0xf9,0xef, - 0x26,0xe5,0x06,0xcc,0xb3,0x19,0x12,0x28,0x80,0x7b,0xef,0xb4,0xc4,0xe5,0x7d,0x29, - 0xb5,0xae,0xbc,0xa5,0x38,0x29,0xfa,0x2c,0x36,0x30,0x8c,0xc9,0xce,0x33,0xb1,0xa3, - 0x7a,0xf6,0xd6,0x4b,0x27,0xa7,0x51,0xe2,0x35,0xcf,0xa8,0x04,0x36,0x2c,0x2e,0x74, - 0x12,0xf9,0xe9,0x44,0x9e,0x47,0x02,0x99,0x9e,0x62,0xb0,0x26,0xc9,0x20,0x9a,0x19, - 0x9b,0x22,0xd7,0xad,0xd2,0x38,0xf2,0x60,0xe0,0xda,0xfc,0x8f,0xc5,0x40,0xd7,0x3c, - 0x62,0x78,0x39,0xfe,0x2f,0xd3,0x6c,0x44,0x6e,0x76,0xc7,0x38,0xa5,0xac,0xba,0x94, - 0xf0,0x9e,0x9d,0x50,0x0d,0x95,0xb1,0x38,0x62,0x4b,0x66,0x69,0xd2,0x9a,0xc6,0x48, - 0xc9,0x77,0x1d,0x73,0x79,0x10,0x6e,0x9e,0x5d,0xb5,0x92,0x44,0xb5,0xc4,0xda,0x6e, - 0x35,0xd6,0x96,0xe7,0x4e,0xbd,0x15,0x19,0x47,0xb5,0x14,0x5c,0xd4,0x5c,0xf9,0x0e, - 0xb8,0xa5,0xf3,0xe7,0xd2,0x65,0x07,0x68,0xa1,0xb3,0xdd,0x52,0xd2,0x51,0xb3,0x4b, - 0x1e,0xcd,0xd4,0x91,0xf2,0x3e,0x40,0x3f,0xe5,0xc7,0x82,0xe5,0x45,0x32,0xc8,0x3c, - 0x8a,0xb9,0x6e,0x0b,0x88,0x44,0x9c,0x9b,0xa0,0x72,0xa0,0x8c,0x98,0xb3,0x28,0xcd, - 0xbd,0xc2,0xdc,0xfc,0xf7,0xa6,0xe5,0xd4,0x56,0xac,0x9a,0x93,0xb3,0x92,0x06,0x93, - 0x38,0xa2,0x68,0xb7,0x26,0x0d,0xa6,0x91,0x46,0x68,0x5e,0x7a,0x34,0x17,0x66,0x21, - 0xec,0xbc,0x0c,0x1a,0x45,0x0b,0x40,0x3e,0x17,0xa9,0x3e,0x73,0x3a,0x40,0x70,0x1b, - 0xf9,0x23,0x52,0x18,0x61,0x59,0xd0,0x5b,0xcf,0xa5,0xa0,0x56,0x95,0xec,0x53,0x0c, - 0xbe,0x98,0x0f,0x74,0x33,0xcf,0x2f,0x5a,0x01,0x36,0xc0,0x98,0x00,0x8b,0x5e,0x05, - 0x7c,0xc2,0x41,0x69,0x41,0x11,0x58,0x9b,0xe8,0x8c,0x39,0xf7,0x40,0xf5,0xdc,0xc4, - 0x56,0x40,0x23,0xa6,0x4c,0x92,0x5f,0x90,0x1f,0x94,0x9c,0x9c,0x97,0x81,0xe3,0x59, - 0xcd,0x96,0xae,0x4d,0xd1,0x26,0x32,0x8c,0x2f,0x71,0xa6,0x2d,0x37,0x2f,0x71,0x99, - 0x4c,0x26,0xfc,0xf1,0x93,0x1f,0x7e,0x9a,0xa6,0xc7,0xd2,0x03,0xbb,0xd1,0xe6,0x70, - 0x99,0xa1,0xe7,0x07,0x8d,0x62,0x19,0x8e,0xdc,0xb1,0xba,0x3b,0x2d,0x4d,0xf4,0x1a, - 0x89,0xb4,0xb7,0xb9,0xe0,0x25,0x08,0x33,0x5e,0xce,0x47,0x43,0x23,0x62,0xc1,0xf6, - 0xc1,0x68,0x7e,0x6c,0x5a,0x9a,0x57,0x8a,0x16,0x3d,0xce,0x1d,0x99,0xf6,0x62,0x59, - 0x94,0x78,0xed,0x7e,0x29,0x64,0x83,0xd5,0xb7,0x05,0xa5,0x66,0x47,0x6b,0x0c,0x65, - 0xfb,0x94,0xcb,0x8e,0x17,0xe8,0x21,0xc7,0xc0,0xa4,0xea,0x40,0x89,0x6c,0x25,0x0a, - 0x3d,0x3c,0x39,0x39,0x9d,0x98,0x1c,0xbb,0xf4,0x14,0x02,0x9f,0xcb,0x96,0x1f,0x6d, - 0xe0,0xd3,0xf4,0xca,0x56,0xa3,0xb1,0x33,0x3f,0x0b,0x3c,0x1b,0xf6,0x84,0x60,0x2c, - 0xca,0xa9,0x92,0x61,0xd1,0xa4,0xef,0x25,0x0a,0x45,0xef,0x40,0x4c,0xfa,0x28,0xf1, - 0x48,0x0a,0x16,0x5a,0x3d,0xe8,0xa5,0x54,0x4b,0x5c,0x79,0x43,0x9a,0x0c,0xf0,0xd2, - 0x79,0x5f,0x2b,0x8d,0x97,0xf0,0xc0,0x20,0x02,0x3f,0xbc,0x2e,0xbe,0x46,0x97,0xc2, - 0x6b,0xa5,0x8a,0x22,0xe5,0xc2,0xfa,0xb3,0x24,0xe8,0x9b,0xe8,0x40,0xd3,0xdd,0xde, - 0x06,0xed,0x24,0xde,0x32,0xb7,0xcd,0x1e,0x57,0x2f,0x74,0x89,0xe6,0x36,0xf1,0x7a, - 0x92,0x78,0x63,0xf1,0x0c,0x7d,0x2f,0xf5,0xba,0x55,0x07,0x26,0x35,0xad,0x99,0x66, - 0xa1,0x31,0xf3,0x1b,0xb3,0xd2,0x98,0xe6,0xd2,0xfa,0x50,0x84,0xc7,0x6a,0x3b,0x1f, - 0x7b,0x84,0x8a,0x25,0xb8,0xbf,0xdf,0x69,0xf5,0xb4,0xaa,0x14,0x2a,0x52,0xbe,0xce, - 0x52,0xd6,0xca,0x0a,0x91,0x87,0x65,0x7c,0x0d,0x9b,0xcd,0x47,0x5b,0x3a,0x6a,0x1d, - 0x87,0x5d,0xcd,0x00,0x1d,0x1e,0xf6,0xf7,0x30,0x9d,0x88,0xc0,0x10,0xc5,0x2b,0xc6, - 0x1e,0xe2,0x66,0x1e,0x58,0x38,0x03,0xfd,0x69,0x31,0x04,0x0e,0xed,0xe1,0xa5,0x62, - 0x4d,0x4a,0x9b,0x59,0x6b,0x22,0x25,0xce,0x13,0x5d,0x97,0xe3,0x1b,0x33,0xab,0x57, - 0x4d,0x02,0xb2,0x2c,0x9e,0xa5,0xc0,0xc7,0x60,0x84,0xad,0x9a,0xd6,0x34,0xc6,0x5a, - 0x9a,0xaf,0xa6,0xbe,0xc9,0x69,0x1d,0x6f,0x1e,0xba,0x06,0xaf,0xe3,0xb6,0x79,0xf4, - 0x91,0xfa,0x3f,0xdc,0x76,0x8f,0x36,0xbb,0xe6,0x7f,0x45,0x33,0xce,0x15,0x25,0x6e, - 0xd0,0x90,0xf7,0xea,0xe8,0x61,0x37,0x76,0x9b,0x73,0xe8,0x01,0x29,0x64,0xc2,0xd3, - 0x7b,0x76,0xb8,0x0d,0x32,0x9d,0x1f,0x67,0x47,0xf0,0x0b,0xfd,0xf5,0xf1,0x2f,0x9e, - 0xb7,0x1e,0x3d,0xfb,0x3f,0x03,0x55,0x5e,0xf8,0x38,0x13,0x01,0x00, + 0x1f,0x8b,0x08,0x00,0x00,0x00,0x00,0x00,0x02,0x03,0xd5,0x7d,0x69,0x63,0xdb,0x46, + 0xb2,0xe0,0x77,0xff,0x0a,0x18,0xc9,0x48,0x44,0x04,0x42,0x24,0x75,0x58,0x26,0x45, + 0x69,0x15,0xc7,0x9e,0x78,0xe2,0xeb,0x59,0xf2,0x4b,0xde,0x53,0x34,0x1e,0x90,0x04, + 0x45,0x44,0x20,0x80,0x00,0xa0,0x28,0x99,0xd2,0xfe,0xf6,0xad,0xa3,0xbb,0xd1,0x38, + 0x48,0x51,0x8e,0x67,0xf7,0xed,0x64,0x12,0x11,0x40,0x9f,0xd5,0xd5,0x75,0x75,0x55, + 0xf5,0xe1,0xd3,0x9f,0xde,0xbf,0x38,0xfb,0xaf,0x0f,0x2f,0x8d,0x49,0x36,0x0d,0x8e, + 0x9e,0x1c,0xe2,0x1f,0x23,0x70,0xc3,0xcb,0xbe,0xe9,0x85,0x26,0xbe,0xf0,0xdc,0x11, + 0xfc,0x99,0x7a,0x99,0x6b,0x0c,0x27,0x6e,0x92,0x7a,0x59,0xdf,0x9c,0x65,0xe3,0xe6, + 0x81,0x29,0x5f,0x87,0xee,0xd4,0xeb,0x9b,0xd7,0xbe,0x37,0x8f,0xa3,0x24,0x33,0x8d, + 0x61,0x14,0x66,0x5e,0x08,0xc5,0xe6,0xfe,0x28,0x9b,0xf4,0x47,0xde,0xb5,0x3f,0xf4, + 0x9a,0xf4,0x60,0x1b,0x7e,0xe8,0x67,0xbe,0x1b,0x34,0xd3,0xa1,0x1b,0x78,0xfd,0xb6, + 0x6d,0x4c,0xdd,0x1b,0x7f,0x3a,0x9b,0xe6,0x2f,0x64,0x43,0xcd,0xb1,0x9f,0xf5,0x87, + 0xd1,0xb5,0x97,0x60,0x4f,0x99,0x9f,0x05,0xde,0xd1,0x5b,0x2f,0x9d,0xbc,0x88,0x12, + 0xcf,0x78,0x11,0x85,0x63,0xff,0xf2,0x70,0x9b,0x5f,0x3f,0x39,0x4c,0xb3,0x5b,0xfc, + 0xdb,0x4d,0xa2,0x28,0x5b,0x3c,0x31,0x8c,0x66,0x73,0x70,0xd9,0xfd,0x6e,0xbc,0x3b, + 0xde,0x1f,0x1f,0xf4,0xe0,0x69,0xe8,0x26,0x23,0x78,0x1e,0x8f,0xf1,0xc1,0x0f,0xaf, + 0xba,0xdf,0xb5,0xdd,0xce,0xce,0x4e,0x0b,0x1f,0xa7,0xb3,0xac,0xfb,0xdd,0xfe,0xfe, + 0xb3,0x9d,0x03,0x17,0x1f,0x03,0x3f,0xf4,0xba,0xdf,0x79,0x1d,0xef,0x99,0xe7,0xf5, + 0xa8,0x29,0x77,0x38,0xec,0x7e,0xd7,0x19,0x3c,0x1b,0x79,0xcf,0x7b,0xfc,0xc8,0x4d, + 0x88,0xe6,0x22,0x6c,0x6d,0xf4,0x7c,0xb4,0x47,0x4f,0x5e,0x92,0x74,0xbf,0x1b,0xed, + 0xef,0xee,0xed,0xee,0xe1,0xe3,0xdc,0x4d,0xc2,0xee,0x77,0xc3,0x83,0x83,0x67,0x6d, + 0x97,0x5b,0x1b,0x4e,0xfc,0x18,0xda,0xf7,0xc6,0x9d,0xf1,0x33,0x1e,0x0d,0x8f,0x55, + 0x8e,0x4d,0x0c,0x60,0x78,0x30,0xea,0x8c,0x3c,0x7c,0x95,0x4e,0xdc,0x51,0x34,0xef, + 0xb6,0x8c,0x76,0x7c,0x63,0xec,0xc0,0xbf,0xc9,0xe5,0xc0,0x6d,0xb4,0xf7,0xed,0xce, + 0x81,0xbd,0xbb,0x67,0x3b,0xad,0x03,0xab,0xf7,0xe4,0xfe,0xc9,0xff,0x9a,0x7a,0x23, + 0xdf,0x35,0x1a,0x71,0xe2,0x8d,0xbd,0x24,0x6d,0x0e,0xa3,0x20,0x4a,0x00,0xac,0x13, + 0x6f,0xea,0x75,0x47,0x6e,0x72,0x65,0x2d,0x4a,0xe0,0x69,0xb7,0xda,0x7b,0xed,0x61, + 0x0e,0x1e,0x00,0x49,0xbb,0x33,0x50,0x10,0xf2,0xf6,0xbd,0xc1,0xb8,0xa3,0x20,0x74, + 0x30,0x78,0x7e,0xe0,0x0e,0x72,0x08,0x75,0xdc,0x9d,0xdd,0xdd,0x8e,0x06,0xa1,0x5d, + 0xf7,0xf9,0xee,0x98,0x20,0xca,0x53,0xec,0xec,0x74,0x46,0x3b,0xae,0x36,0xc5,0xf6, + 0x2e,0xf4,0xd0,0x29,0xcc,0x72,0xc7,0xdd,0xdd,0xdf,0xdb,0x5f,0x3e,0xcb,0x96,0x8d, + 0xff,0x38,0xbb,0x38,0xc3,0xfb,0x27,0x3f,0x2c,0x06,0xd1,0x4d,0x33,0xf5,0xbf,0xf8, + 0xe1,0x65,0x77,0x10,0x25,0x23,0x2f,0x69,0xc2,0x9b,0xde,0xd4,0x4d,0x2e,0xfd,0xb0, + 0xdb,0xba,0x7f,0x82,0xf8,0xbb,0x68,0xce,0xbd,0xc1,0x95,0x9f,0x35,0x33,0xef,0x26, + 0xc3,0xd2,0x5e,0xd3,0x1d,0xfd,0x31,0x4b,0xb3,0x6e,0xbb,0xd5,0xfa,0xdb,0xfd,0x93, + 0x41,0x34,0xba,0x5d,0x8c,0x01,0x49,0xbb,0xed,0xbd,0xf8,0x66,0xbb,0xed,0xec,0xee, + 0x19,0xe9,0x6d,0x9a,0x79,0xd3,0xe6,0xcc,0xb7,0x9b,0x6e,0x1c,0x07,0x5e,0x93,0x5f, + 0xd8,0xe6,0xa9,0x77,0x19,0x79,0xc6,0xa7,0xd7,0xa6,0xfd,0x31,0x1a,0x44,0x59,0x64, + 0xa7,0x6e,0x98,0x36,0x53,0x2f,0xf1,0xc7,0xbd,0x81,0x3b,0xbc,0xba,0x4c,0xa2,0x59, + 0x38,0xea,0x5e,0xbb,0x49,0x03,0x81,0x6a,0xf5,0x08,0xec,0xe2,0x19,0xc0,0x68,0xf5, + 0x62,0x77,0x34,0x82,0xf1,0xc2,0x40,0xb3,0x2c,0x9a,0x76,0x9f,0xb7,0xe2,0x9b,0x1e, + 0x62,0xf5,0x38,0x88,0xe6,0xcd,0x9b,0xee,0xc4,0x1f,0x8d,0xbc,0x10,0x46,0xde,0xa6, + 0x31,0xd1,0x78,0xbb,0xed,0x67,0x50,0x88,0x1e,0xe7,0x9e,0x7f,0x39,0xc9,0xba,0xfb, + 0x7b,0x38,0xb9,0x8e,0x5e,0x64,0xb7,0x5a,0xa4,0x47,0x33,0xce,0x12,0x18,0xe2,0x38, + 0x4a,0xa6,0xdd,0x59,0x1c,0x7b,0xc9,0xd0,0x4d,0xbd,0x5e,0xe0,0x65,0x19,0x00,0x2b, + 0x8d,0xdd,0x21,0xc2,0xce,0x69,0xed,0x79,0xd3,0xc2,0x50,0x61,0x89,0x2d,0x09,0xc7, + 0x4e,0x07,0xc0,0x0f,0x0b,0x01,0x23,0xc5,0x4e,0xbb,0x63,0x3f,0x49,0x33,0x5c,0xd4, + 0x60,0xb4,0xe0,0x22,0xcd,0x2c,0x8a,0x11,0xdc,0xee,0x42,0x6f,0x03,0xb0,0xc0,0x82, + 0x0a,0x40,0x31,0xbc,0x64,0x31,0xf2,0xd3,0x38,0x70,0x6f,0xbb,0xe3,0xc0,0xbb,0xe9, + 0xb9,0x81,0x7f,0x19,0x36,0x7d,0x80,0x68,0xda,0x1d,0x02,0x6d,0xf0,0x92,0xde,0xa5, + 0x1b,0x77,0xb1,0x07,0x09,0x9f,0x6e,0x1b,0x7b,0x6d,0xef,0xc3,0x9b,0x0a,0x5c,0x11, + 0x3d,0xad,0x9e,0x5a,0x70,0x82,0x23,0xa2,0x49,0x1a,0x05,0xfe,0xc8,0xe0,0x32,0x88, + 0x4f,0x00,0xec,0x28,0x05,0xfa,0x12,0x85,0xdd,0x34,0xf3,0x87,0x57,0xb7,0x3d,0x1a, + 0x67,0xef,0x0b,0xac,0xc4,0xc8,0xbb,0x81,0xfe,0xe4,0xf0,0x8c,0xf4,0xfa,0x72,0x81, + 0x43,0xeb,0x86,0x51,0xe8,0xdd,0x3f,0x71,0x26,0x48,0xca,0x16,0x53,0x98,0x1a,0x11, + 0x2a,0x9c,0x1c,0xbf,0x33,0x46,0xfe,0xb5,0x0e,0x76,0x18,0x65,0x15,0x70,0xf3,0x09, + 0xcc,0x8d,0xa0,0xeb,0x41,0x83,0xf3,0xc4,0x8d,0xd5,0x12,0x8b,0x05,0xe6,0xa5,0x51, + 0x2f,0xbd,0x20,0xf0,0xe3,0xd4,0x4f,0xa1,0x97,0x81,0x3b,0xba,0xf4,0x24,0x5c,0x03, + 0x6f,0x9c,0x75,0xdd,0x59,0x16,0xf5,0xd4,0xe0,0x7a,0x5a,0xe7,0xed,0x9a,0x35,0x97, + 0xf0,0xc3,0x3d,0xf3,0x1c,0xa1,0xc7,0x60,0x4a,0xdc,0x91,0x3f,0x4b,0xbb,0xcf,0x9f, + 0xd7,0x02,0x14,0x36,0xa8,0x55,0x99,0x86,0x1c,0x8c,0x03,0x44,0x7e,0x16,0x2f,0xb4, + 0x5a,0xdf,0x8d,0x77,0xbc,0x83,0xd1,0x8e,0xa8,0xf1,0xdd,0x81,0xbb,0x37,0x6c,0xb5, + 0xd6,0x22,0x39,0x4b,0x5b,0xdc,0x71,0x3b,0xe3,0xf6,0xae,0x6c,0xd1,0x6b,0x0d,0x76, + 0xf7,0x86,0xb0,0xc5,0xa7,0xae,0x1f,0x02,0x30,0x6e,0xc4,0x32,0xec,0xef,0x22,0x8a, + 0xc8,0xfd,0x6d,0x10,0x64,0x14,0xc2,0xec,0x23,0x7e,0x3a,0x88,0x1c,0x8b,0x95,0x28, + 0xb3,0x04,0x57,0x8a,0x80,0xa2,0x85,0xd5,0x9b,0xee,0x11,0xad,0x61,0xaa,0xc4,0xd5, + 0xf8,0x41,0x6e,0x13,0x85,0x88,0xbb,0x34,0x8c,0xcc,0x1d,0xa4,0x45,0xa4,0x47,0x0c, + 0xdf,0x5d,0x0e,0x7d,0xd9,0xd7,0x6e,0x65,0xcd,0xda,0xf9,0x9c,0x6b,0x3a,0x31,0x06, + 0x33,0x78,0x15,0x32,0xf6,0xb6,0xe5,0x14,0x5b,0x7a,0x37,0x84,0x36,0x15,0x24,0x25, + 0x92,0xe7,0x87,0x13,0xa0,0x5d,0x99,0x8e,0x54,0x3b,0xce,0x5e,0x19,0xad,0x5a,0x39, + 0x5a,0x01,0x25,0x32,0xaa,0x43,0x44,0xfa,0x34,0x9c,0x25,0x29,0xf4,0x10,0x47,0x3e, + 0x6e,0xe8,0xe2,0xe8,0x1c,0x18,0xe0,0x92,0x35,0xa9,0x10,0xc8,0x65,0x70,0x86,0x16, + 0xc7,0x8b,0x12,0x18,0x76,0x08,0x0c,0x63,0x10,0x51,0x06,0x5e,0xa0,0xc0,0x3d,0x08, + 0xa2,0xe1,0x95,0x3e,0xa5,0x4e,0xed,0x94,0x8a,0x6d,0xed,0x8a,0xa6,0x9c,0x09,0x8c, + 0x5f,0xdf,0xe1,0x6d,0xaa,0xbc,0x84,0x38,0x12,0xe5,0xa3,0x51,0xf8,0x61,0x3c,0xcb, + 0xce,0xb3,0xdb,0xd8,0xeb,0xe3,0xde,0xbe,0xb0,0xb5,0x17,0xb1,0x9b,0xa6,0x73,0x00, + 0x58,0xe1,0x65,0x38,0x9b,0x0e,0xbc,0xa4,0xf0,0xca,0x03,0x74,0x0f,0x2e,0xec,0xd4, + 0x0b,0xbc,0x21,0x31,0x66,0xc6,0x7a,0xe4,0x53,0x6a,0x01,0x0e,0x90,0x2c,0xb6,0xc4, + 0x74,0xea,0xd6,0x6f,0xbf,0x34,0x5a,0x06,0x6a,0x19,0xf8,0xc4,0x83,0x2d,0x64,0xd7, + 0x4b,0x36,0x85,0xe0,0xc9,0xe5,0x7d,0x71,0x80,0xec,0x6a,0x96,0x11,0xbb,0x26,0x5a, + 0x69,0x18,0xdb,0x3f,0x18,0x47,0x7d,0xec,0xb6,0x6b,0xa4,0x00,0x8e,0xd4,0xf0,0xdf, + 0x9f,0x1a,0x5f,0xa2,0x68,0xda,0x8c,0xc2,0xe6,0x38,0x1a,0xce,0x52,0xa3,0x91,0xfa, + 0x23,0x6f,0xee,0xde,0x02,0xab,0x1c,0x26,0x51,0x10,0x80,0xdc,0x67,0x0c,0xdd,0x38, + 0xf3,0xaf,0x3d,0x23,0x9d,0x78,0x5e,0x66,0x19,0x3f,0x6c,0x33,0x08,0xbb,0x54,0x43, + 0xc0,0x80,0x1f,0x16,0x62,0x08,0x65,0xe6,0xa2,0xa3,0x4a,0xcb,0xc0,0x7f,0x90,0x67, + 0x30,0xd5,0x99,0xfa,0x37,0x0d,0xe8,0x24,0x05,0xb1,0xc1,0xce,0x6b,0x18,0x9d,0xbd, + 0xbf,0xd9,0xc4,0x10,0x63,0x37,0x01,0xc6,0x63,0x89,0x75,0x73,0x46,0x7e,0x92,0xdd, + 0x8a,0x4e,0xf9,0xa1,0xae,0x53,0x94,0xde,0x10,0x0f,0x93,0x68,0x5e,0xdd,0xdb,0xc4, + 0x1f,0xf1,0xd3,0x11,0xe0,0xa9,0xd8,0x8d,0x45,0x06,0x92,0xce,0x1f,0x64,0x83,0x28, + 0x97,0xf8,0xe3,0xdb,0xa6,0x10,0x9a,0xbb,0xc4,0x43,0x9a,0x03,0x2f,0x9b,0x7b,0xc0, + 0x34,0x2a,0x4c,0xf2,0x39,0x72,0x66,0x6a,0xd9,0x80,0x92,0xa1,0x31,0x58,0xbe,0x07, + 0x6a,0xb7,0xb5,0x56,0xd5,0x17,0x38,0x8f,0x92,0x33,0xac,0x6c,0x32,0x75,0x83,0xde, + 0x83,0xbb,0x00,0x77,0xf9,0x65,0xb0,0x50,0x6c,0x36,0xf1,0x02,0x17,0x17,0xb5,0xc7, + 0x93,0xde,0x45,0x22,0x3a,0xe1,0xde,0x3a,0x24,0xa0,0x68,0x2c,0x16,0x2a,0x1a,0x04, + 0xfc,0xbc,0x3a,0x10,0x8c,0x28,0x98,0x65,0x5e,0x2f,0x42,0xc1,0x24,0xbb,0x05,0x32, + 0xa6,0xed,0x00,0xd1,0x10,0xfd,0x96,0x2c,0xa0,0x86,0xea,0x40,0xb3,0xb3,0x9a,0x26, + 0xfd,0x10,0x98,0x4e,0x91,0x2e,0xae,0x44,0x74,0xe2,0x94,0x84,0x2a,0xdc,0x90,0xd3, + 0xde,0x4b,0x7b,0xa2,0x9b,0xa6,0x77,0x0d,0x8b,0x93,0xea,0x33,0x99,0x75,0x07,0x1e, + 0x08,0x59,0xde,0x42,0xae,0x9c,0x69,0xf6,0xaa,0x83,0x10,0xd4,0xa2,0x47,0x7c,0x1d, + 0x7f,0x88,0xe9,0x1d,0xe4,0x70,0xa2,0xdf,0x05,0x5e,0x0b,0x9a,0x40,0x71,0x68,0x7b, + 0x00,0x80,0xd2,0xc8,0x74,0x78,0x76,0x81,0xe1,0x0e,0xaf,0xbc,0xd1,0xd6,0xac,0x4a, + 0x73,0x59,0x26,0xab,0x2b,0x2b,0xc7,0x4f,0x43,0xeb,0xb4,0x91,0xa4,0x09,0xda,0x3d, + 0xc8,0x42,0x85,0x56,0x7e,0x88,0xb0,0x6a,0xae,0x8b,0xbe,0x9a,0x70,0xb7,0xaf,0x98, + 0x06,0x2c,0xc2,0x32,0xda,0x55,0x27,0xc4,0x02,0x89,0xd2,0xd1,0xbd,0xbd,0x5f,0x15, + 0x6a,0x2a,0xdc,0xa7,0x57,0x3b,0xf1,0x5e,0x89,0x80,0x10,0x69,0xd4,0xa7,0x09,0x72, + 0xc9,0x70,0xb1,0x86,0x74,0x54,0xae,0xd7,0x05,0xf0,0xb8,0x83,0xc0,0x1b,0x2d,0x24, + 0xe2,0x3a,0x7b,0x72,0x44,0x23,0x6f,0xec,0xce,0x82,0xac,0xd8,0xcd,0x74,0x51,0xe1, + 0x4e,0x72,0x8e,0xfb,0x82,0xbe,0xa3,0x28,0x03,0x1d,0x97,0x21,0x5f,0xd9,0xd7,0xab, + 0x64,0x40,0x24,0x87,0x07,0xf5,0x32,0xa0,0x2e,0x60,0x22,0x44,0x41,0x12,0x05,0x11, + 0x19,0x34,0x71,0x5a,0xd5,0x6e,0x5b,0x0d,0xc0,0x89,0xae,0x74,0x90,0x2c,0xa3,0xae, + 0xd1,0x95,0x65,0xb4,0x4b,0xc4,0xb5,0x00,0xb3,0x08,0x41,0xc6,0x2d,0x82,0x4e,0xbc, + 0x4e,0x93,0x50,0xec,0x81,0x36,0xb1,0x04,0x92,0x30,0xf7,0xda,0x1b,0xb8,0x49,0xbe, + 0xe9,0xc7,0xfe,0x8d,0x37,0xe2,0x4d,0xd6,0xea,0x25,0x04,0x16,0xd8,0xf8,0xcc,0xe7, + 0x73,0xf1,0xbf,0xd3,0x7a,0x40,0xb5,0xc0,0xdd,0x5a,0x2f,0x2b,0x6a,0x38,0x89,0x6b, + 0x45,0x48,0x09,0x0c,0x2d,0x18,0x36,0xe8,0x71,0xcb,0xf0,0xc2,0xeb,0x46,0xea,0x8e, + 0x41,0xd5,0x4c,0x3c,0xb7,0x49,0xb4,0x47,0x08,0x1a,0x96,0xd5,0x93,0x4b,0x4a,0x72, + 0xd9,0x32,0x5d,0xa8,0x43,0x2b,0x20,0xa6,0xe6,0xa4,0x93,0x12,0xcb,0xc9,0xbf,0x01, + 0xd1,0x2f,0x93,0x79,0xed,0xa3,0x93,0xc6,0x82,0x19,0xe1,0xcb,0x00,0xf4,0xfd,0xc7, + 0x08,0xc1,0x65,0x85,0xac,0x2c,0x86,0x32,0x9e,0x62,0xb3,0xd0,0x51,0xb6,0x96,0x92, + 0x77,0xf0,0x50,0x2b,0xf5,0xf3,0x89,0xfd,0x20,0xd0,0xdf,0xb7,0x2a,0xec,0xec,0x59, + 0x6b,0x2d,0xc4,0x5f,0x53,0xf9,0x79,0x84,0xee,0xbc,0xeb,0x4d,0xc5,0x00,0xbf,0xed, + 0x5e,0xa1,0x16,0xc7,0x20,0x11,0xda,0xfc,0x13,0xa0,0x3b,0xfc,0xa6,0xfb,0x86,0x5a, + 0x9d,0xbb,0x7e,0xb6,0x4e,0xab,0x24,0xfb,0xac,0x6e,0x56,0x8a,0x47,0x99,0x1f,0x78, + 0xb9,0xf2,0x73,0x99,0xf8,0xa3,0x1e,0xfe,0xa7,0x09,0xa8,0x00,0x6f,0x40,0x33,0x86, + 0x4a,0xb3,0x69,0x98,0x82,0xb8,0x10,0x7b,0x6e,0xd6,0x40,0x35,0xae,0x39,0x86,0xc1, + 0xd8,0x20,0x2f,0x81,0xb2,0xd7,0x68,0xa3,0x9a,0x67,0xb7,0xc7,0x09,0x6c,0x16,0x25, + 0x5a,0x71,0xbb,0xcb,0xc8,0xf3,0x2a,0xc4,0xa5,0x1d,0xda,0x51,0x4d,0xd4,0x8a,0x3a, + 0x4b,0xe5,0xa6,0x3a,0xfa,0xfa,0x97,0x91,0x85,0x86,0x51,0xc0,0xf3,0x83,0x3a,0x0b, + 0x0f,0x97,0x4b,0x17,0xd4,0xfc,0xc8,0x1b,0x46,0x89,0x4b,0xf4,0xad,0x62,0x07,0x58, + 0x22,0x9c,0x0d,0xdd,0xf0,0xda,0x4d,0x17,0x55,0x19,0x6a,0x0f,0x49,0x7e,0x61,0xca, + 0xd0,0x59,0xe8,0x65,0xeb,0x9b,0x69,0xb4,0x36,0xd7,0x52,0x39,0x49,0x0b,0x29,0xb0, + 0xfd,0x32,0x0d,0xd5,0xf8,0xfa,0x4a,0x9b,0x4e,0x89,0xd3,0x13,0x6c,0x98,0x69,0x21, + 0xc1,0xe7,0x79,0x74,0x03,0x57,0x99,0xa8,0x8a,0x6d,0xb6,0xb8,0x00,0x10,0x9a,0x54, + 0x0a,0xe9,0x65,0xbd,0x70,0x3d,0x53,0x4d,0x8d,0x91,0x47,0x34,0x9d,0x02,0x3e,0x05, + 0x8b,0xea,0x6a,0x80,0x9e,0xf4,0x9a,0x98,0xb8,0x91,0xc2,0xc2,0xc0,0xe4,0x43,0x2f, + 0x30,0x1a,0xef,0xde,0x9f,0x19,0xf0,0x84,0xed,0x03,0xe0,0xad,0xae,0x91,0x4d,0x3c, + 0xd2,0xa0,0x5e,0xbc,0x3b,0x61,0xdd,0xc8,0x80,0xb9,0x81,0x64,0x96,0x1a,0x71,0x12, + 0x5d,0x26,0xee,0x74,0x0a,0x48,0x30,0x04,0xe8,0x19,0x83,0x60,0x96,0x34,0x2c,0x1b, + 0xaa,0x8f,0x8c,0xf9,0xc4,0x0b,0xa9,0xea,0x95,0x77,0x3b,0x88,0x80,0x8b,0x19,0x7e, + 0x6a,0xcc,0x62,0x6a,0x89,0x75,0xae,0xd4,0x20,0xb6,0x28,0x7b,0x4a,0x8d,0x68,0x3c, + 0x86,0x2f,0x1e,0xd6,0x8b,0xb0,0xb9,0x2b,0xcf,0x8b,0xa9,0x09,0x52,0xba,0xa0,0xe4, + 0xd8,0xf7,0x02,0x80,0xbd,0x9f,0xfa,0x20,0xdb,0x38,0xc6,0x89,0x18,0x32,0xd0,0x05, + 0xde,0x34,0x06,0x02,0xc4,0x00,0x6d,0x09,0x94,0xa6,0xe0,0xd6,0x80,0x75,0xf7,0x12, + 0x6c,0x00,0x1b,0x3b,0x3d,0x7d,0xfd,0x93,0x68,0x00,0x98,0x72,0x8a,0x95,0xb2,0x89, + 0x9b,0x19,0x97,0x33,0x17,0xb6,0x49,0xe6,0x79,0xa3,0xa6,0x68,0x18,0x54,0x45,0x00, + 0x09,0xb0,0xc8,0xcc,0x73,0x47,0x0e,0xea,0x81,0x0e,0xc2,0x87,0xfa,0x7a,0x34,0xb3, + 0x5a,0xca,0xd0,0x57,0xda,0x6e,0xba,0x4d,0x61,0xe2,0x64,0x7b,0x82,0xea,0x1e,0xb9, + 0x67,0x13,0x2d,0x84,0x6b,0xed,0x8b,0x7d,0xb9,0x85,0x73,0xcb,0xe0,0x37,0x36,0xc8, + 0x56,0x28,0x9a,0xb1,0x5b,0x1a,0xf0,0x77,0xf8,0x13,0xc0,0x03,0xcc,0x18,0xad,0x66, + 0x62,0xbb,0xef,0xee,0x5d,0x4f,0x72,0xb4,0x2e,0x58,0xcd,0x5a,0xc8,0x27,0x0d,0x36, + 0x9d,0xc1,0x0a,0xc4,0x35,0x46,0xab,0xfd,0x2a,0xc7,0xd6,0xca,0x23,0x35,0xe5,0x7d, + 0x24,0x3b,0xab,0xf0,0xdd,0x4e,0xdd,0xc2,0xd0,0x12,0xe6,0x8d,0xd4,0x5a,0x88,0xa4, + 0xb6,0x12,0xc1,0x6e,0x2e,0x4b,0x77,0x28,0x9c,0xed,0xef,0x4a,0x5d,0x4a,0xa9,0x44, + 0x04,0x57,0xfa,0x85,0x9c,0xe6,0xb7,0x46,0x13,0xbe,0x58,0x4a,0xe4,0xdb,0xad,0xd5, + 0xff,0xae,0x8a,0x6c,0x4c,0xd8,0x45,0xd6,0x36,0x89,0xad,0xd0,0x4a,0x72,0x3d,0x56, + 0xd7,0xd7,0x3a,0xf5,0x9a,0x64,0x2f,0xb7,0x73,0x3e,0x6f,0x5d,0xcf,0xe5,0xc4,0x59, + 0xf6,0x93,0x2d,0xa1,0x18,0x27,0x76,0x70,0x19,0x22,0x52,0xc3,0x95,0x93,0xdd,0x6b, + 0xd5,0x1f,0x49,0x3c,0x24,0x7e,0x2e,0x51,0xe2,0x34,0x42,0x2b,0xde,0x28,0x69,0x8b, + 0xb1,0x50,0x0c,0xab,0x5e,0x56,0x8d,0xfd,0x50,0xf0,0xa1,0x8e,0x6e,0x14,0xe8,0xe4, + 0x5a,0xe1,0xce,0xaa,0x3d,0x0e,0xab,0x5d,0x67,0xfe,0x29,0x6b,0xc5,0x6e,0xe8,0x4f, + 0x99,0x45,0x26,0x46,0x3b,0x35,0xb0,0x09,0x90,0x81,0xfd,0x70,0x8c,0xe7,0x8c,0x5e, + 0xaf,0x4e,0x97,0xba,0x7f,0xf2,0xbf,0x80,0x64,0x8e,0x81,0xae,0x02,0x85,0x4d,0x16, + 0x59,0xb4,0xc8,0xf1,0x28,0x89,0x32,0x40,0xa2,0xc6,0xce,0x7e,0x6b,0xe4,0x5d,0x5a, + 0xf7,0x30,0x0f,0x90,0x9c,0xe8,0x1c,0x69,0x51,0x16,0xa7,0x0a,0xa6,0x96,0x7c,0xc3, + 0x20,0x96,0x92,0xc4,0x0b,0xbf,0x35,0x05,0x1f,0x5a,0xba,0xba,0xae,0x88,0xb9,0xbd, + 0xc2,0xd6,0x5b,0xc3,0x14,0xd4,0x29,0xe9,0x8d,0xad,0x75,0x18,0x28,0xf5,0xbd,0x9a, + 0x41,0x5e,0x5d,0xd7,0xca,0x48,0x35,0xd6,0x1f,0x28,0x29,0xc4,0x18,0x6d,0x63,0x68, + 0x98,0x42,0xca,0xd7,0xfa,0x87,0x1f,0xf0,0xdd,0x5b,0xe8,0xf8,0xf9,0xd4,0x9f,0xe2, + 0xe1,0x2f,0x70,0x0c,0x64,0xae,0x51,0xe6,0x55,0x15,0xe7,0x0a,0x95,0x5c,0x4b,0x42, + 0x3c,0x28,0x59,0xd1,0x48,0xce,0xab,0xb5,0x2e,0x0f,0x03,0xbf,0x19,0xcd,0xb2,0x85, + 0xb6,0x84,0x9d,0x7d,0x36,0xc9,0x2b,0x02,0xbb,0xd7,0xa9,0x10,0x58,0x5d,0x3c,0x88, + 0x13,0xaf,0x59,0x38,0x05,0xa2,0xa7,0xae,0x1b,0xde,0x02,0xdb,0x4e,0xe8,0x58,0x59, + 0xb7,0xf8,0xb4,0x06,0xed,0x56,0x7b,0x5f,0x9e,0x85,0x8c,0x86,0xde,0xb3,0xf1,0xde, + 0x63,0xce,0x2e,0x9e,0xeb,0xc2,0x2f,0xce,0x4b,0x50,0x33,0x9a,0x11,0x1f,0x70,0xce, + 0xfc,0xe6,0x34,0x0a,0x23,0x1a,0x9e,0x7d,0xfa,0xea,0x2d,0xfc,0x6e,0x7e,0xf4,0x2e, + 0x67,0x81,0x9b,0xd8,0x2f,0xa2,0x10,0x7a,0x70,0x53,0xdb,0x7c,0xe3,0x0f,0x3c,0x16, + 0x39,0x0d,0x2c,0x61,0xda,0xaa,0x4e,0xbd,0x0a,0x87,0xa0,0x9a,0x46,0xda,0x12,0xe6, + 0xc6,0xd1,0x7d,0xfd,0xdc,0xa6,0x45,0x27,0x53,0xa5,0x1d,0x53,0x83,0x5d,0xb2,0xbd, + 0x92,0x7d,0xff,0x21,0x26,0x5c,0xb1,0x09,0xaa,0x76,0xd8,0xde,0x98,0x9f,0x0f,0xd3, + 0x97,0x8a,0x35,0x57,0x6f,0x1a,0x5f,0x34,0xbd,0x70,0x24,0x75,0xd7,0xbc,0x0e,0x37, + 0x66,0xab,0x47,0x44,0x6a,0xd4,0xf6,0x6b,0x6c,0xbf,0x45,0x4c,0x53,0xc6,0x7b,0xb2, + 0x1a,0xfc,0xe5,0x95,0x80,0xc5,0x5d,0xdb,0xdc,0xff,0x17,0x6d,0xfd,0x4f,0xaa,0x93, + 0xd5,0xf4,0x00,0x9d,0xc6,0xed,0xe1,0x24,0x41,0x66,0xc5,0xd5,0x95,0xa6,0xa5,0x32, + 0xe8,0x84,0xa5,0xbf,0xd2,0xe6,0xff,0x05,0xa3,0xff,0xe1,0xb6,0xf0,0x10,0x39,0xdc, + 0x16,0x1e,0x2d,0xe8,0x05,0x20,0xfc,0x5b,0xbc,0xe4,0x08,0x60,0x7a,0x98,0x5e,0x5f, + 0xf2,0xf9,0x4b,0xdf,0xec,0xec,0x9b,0x06,0xcf,0x8c,0x7f,0xa3,0x4f,0xca,0x8f,0xd1, + 0x4d,0xdf,0xa4,0xee,0x77,0xe1,0xff,0xa6,0x81,0xfa,0x6b,0xdf,0x44,0x30,0x99,0x46, + 0x9a,0x25,0xd1,0x15,0x3a,0xc1,0xa8,0x31,0xc8,0x77,0x4d,0xd9,0xa2,0x7a,0x81,0xd0, + 0x1d,0xba,0x71,0xdf,0xa4,0xe5,0x32,0xb1,0x6b,0xe8,0x7c,0xe8,0x27,0x43,0x10,0x8d, + 0x87,0xd0,0x47,0x1b,0xca,0x0e,0x6f,0xf9,0x6f,0x02,0x35,0x9d,0x8e,0xec,0xac,0xda, + 0xbc,0x18,0xc0,0xb6,0x68,0x25,0x76,0xb3,0x89,0x31,0xea,0x9b,0x6f,0x9f,0x39,0xcf, + 0x0c,0xf8,0xd7,0xdd,0x37,0xf6,0x8d,0x96,0xf8,0xe7,0xc0,0xd9,0x7f,0xdb,0xde,0x77, + 0x76,0x0a,0x1f,0xda,0xe2,0xc3,0xae,0xf3,0xdc,0x80,0x7f,0xdd,0x36,0x9e,0xfb,0xab, + 0x2a,0xed,0x5d,0xa7,0xf3,0xb6,0xfd,0xdc,0x69,0x97,0xbe,0xb5,0xc5,0x37,0xee,0x18, + 0x80,0x7b,0x7d,0x49,0x3f,0x46,0xfe,0xb5,0x31,0x04,0xfc,0x4d,0xfb,0x26,0x1d,0x9e, + 0xcb,0xd9,0x4d,0xda,0x86,0x0f,0xc3,0x9a,0x34,0xd1,0x57,0xc8,0x54,0x6e,0x3c,0xb0, + 0x18,0x6d,0x51,0x02,0x6b,0x72,0x91,0x74,0x36,0x30,0x8f,0x80,0x07,0x02,0x94,0x32, + 0xd8,0x42,0x1b,0x13,0x62,0x17,0xbd,0xc3,0x6d,0x28,0xc2,0xbd,0xc9,0x1f,0x74,0x8c, + 0x21,0xba,0xa3,0x63,0x66,0x03,0xd9,0x89,0x29,0xda,0xa1,0x37,0xe6,0x11,0x0c,0x0e, + 0x8a,0xc9,0x85,0xc7,0xa5,0x3e,0xc4,0x33,0xe6,0xa3,0x27,0x4f,0x0e,0x9f,0x36,0x9b, + 0x46,0x5f,0xfb,0x9f,0xf1,0xe6,0xfd,0xdf,0x5f,0xbf,0x2b,0xbe,0x6a,0x36,0xd1,0xbb, + 0x08,0x87,0x02,0x3b,0x11,0x1b,0xbe,0x6e,0x06,0x11,0x10,0x13,0x53,0xcd,0x13,0xbb, + 0x2c,0x4f,0x1e,0x95,0x10,0x35,0xf7,0xce,0xd1,0xc9,0x08,0xb6,0x8a,0x41,0xf5,0x60, + 0x18,0x1d,0xb9,0x58,0x06,0xe1,0x64,0xdf,0xac,0x88,0x05,0xcb,0xce,0x1e,0x25,0xf1, + 0x85,0x0d,0x60,0x1e,0xbd,0x44,0x5a,0x07,0x3a,0x16,0xa8,0x7d,0x21,0x90,0xba,0xcd, + 0xd4,0x70,0xa9,0x1b,0x79,0xf6,0x68,0x34,0x50,0xb5,0x4b,0x01,0xe0,0x06,0xea,0x5b, + 0xac,0xe0,0x45,0x89,0x91,0x78,0x53,0x60,0xab,0xc6,0x8b,0x37,0xaf,0xb9,0x82,0xe5, + 0x1c,0x6e,0xc7,0x62,0x48,0x28,0x04,0xd1,0x2c,0x69,0xac,0x4d,0x7c,0x14,0xd3,0x28, + 0xce,0x6f,0x0c,0x70,0x25,0x12,0x8d,0x2d,0xca,0xd2,0xf1,0x1c,0xe6,0xfc,0x41,0xf4, + 0x7e,0xb8,0x4d,0xdf,0x65,0x65,0xa8,0x4e,0x24,0xc0,0xa0,0x63,0x4f,0x53,0x8e,0xd1, + 0xd4,0x3a,0xc3,0xea,0x74,0xc0,0x3f,0x8c,0xa6,0x31,0xa8,0x47,0x50,0x0c,0xe8,0x3a, + 0xee,0xdf,0x66,0x5e,0x1c,0xbf,0x13,0xb5,0x38,0x52,0x68,0x40,0x8d,0xb3,0xad,0x5d, + 0x21,0x43,0x06,0xeb,0xc3,0x3d,0x01,0x36,0x4d,0xfd,0x4c,0xef,0x07,0x3f,0x1e,0x9d, + 0x02,0xc1,0x37,0x70,0x35,0xb8,0x62,0xdd,0x1c,0xa5,0xe4,0xa7,0xd7,0x85,0x77,0xa6, + 0xde,0xf3,0xe1,0x36,0x82,0x48,0xc3,0x4a,0xc0,0x36,0xc6,0x95,0x5a,0xfc,0x3a,0x7d, + 0x79,0xf6,0xe9,0x83,0xf1,0xeb,0xeb,0xff,0x3e,0xf9,0xf8,0xd3,0x83,0x68,0x36,0xf7, + 0xbf,0x20,0x16,0xad,0xc4,0x33,0x14,0x90,0x78,0x7c,0xc3,0xd0,0x6d,0xd2,0xd3,0xd1, + 0x6b,0x36,0x0b,0xfc,0xea,0xbf,0xf2,0x41,0x13,0x47,0xbe,0x06,0x38,0x11,0xc5,0xb3, + 0xf8,0xd8,0x78,0x9d,0x41,0xc5,0x28,0x05,0xb9,0xd7,0x1f,0x1b,0xb7,0xd1,0x2c,0x31, + 0xe2,0x09,0xe2,0x46,0x1a,0x78,0xa0,0x93,0x39,0x3c,0x25,0xd7,0x98,0x24,0xde,0xb8, + 0x6f,0x7e,0x67,0x02,0xde,0x00,0xa9,0x1e,0x5e,0xc1,0x7a,0x45,0xf1,0xfb,0x59,0xd6, + 0xb0,0x80,0xc2,0x67,0xb3,0x24,0x34,0xc6,0x6e,0x90,0x12,0xd9,0x23,0xfc,0xad,0x1a, + 0x46,0xcc,0xa3,0xf7,0xb1,0x87,0x00,0xe6,0x5e,0x06,0x40,0xed,0x53,0x2f,0x39,0xdc, + 0x76,0x8f,0x8c,0x2c,0x62,0xbb,0x03,0x77,0x8f,0x06,0x0e,0x2f,0x4d,0x9d,0x7c,0x53, + 0x6b,0xb3,0x23,0x4d,0x11,0xe0,0xed,0xd3,0x0c,0xd3,0x2c,0x6e,0x2b,0x68,0x44,0x21, + 0xae,0x83,0xaf,0x7d,0xeb,0x94,0x5f,0xec,0x94,0x5f,0xec,0x8a,0x17,0xdc,0xd5,0x13, + 0x8d,0xe8,0xcc,0xbf,0xb4,0x4d,0x8d,0x0e,0x55,0x37,0x31,0x6f,0xe3,0x53,0x18,0x0f, + 0x90,0xbe,0x8d,0x29,0x08,0xb5,0x51,0xd6,0x23,0x10,0xe7,0xfb,0xf9,0x2f,0xef,0x68, + 0x31,0x14,0x58,0xf8,0xb1,0x0f,0x5c,0x30,0xbe,0x35,0x8f,0x5e,0x30,0x19,0xcc,0x77, + 0x39,0x82,0x8f,0x20,0x47,0xcb,0x1b,0x82,0x6e,0x10,0x25,0x57,0xc0,0xda,0x0d,0x1f, + 0x96,0x16,0xa8,0x21,0x70,0xd3,0xe1,0x84,0xd6,0xff,0xed,0x7f,0x9c,0x9d,0x19,0x00, + 0x74,0x60,0xc6,0x69,0xbe,0xc3,0x6b,0xd0,0xe7,0xe8,0x70,0x70,0xf4,0x21,0xf1,0x80, + 0x55,0x02,0xb5,0xd5,0x29,0xc4,0xc8,0x8b,0x83,0xe8,0x76,0x0a,0x1b,0xf0,0x18,0xf6, + 0xc9,0x91,0x71,0x86,0x83,0x60,0xac,0x04,0xd6,0x9d,0x66,0x69,0x8e,0x67,0x7c,0x94, + 0x08,0x15,0x07,0x51,0x94,0x39,0xc6,0xeb,0x31,0x7d,0xca,0x1b,0x50,0x23,0xa5,0x69, + 0x64,0x86,0x7b,0xed,0xfa,0x01,0x1e,0xa0,0x19,0x28,0x0e,0xdb,0x48,0x9c,0x8c,0x4f, + 0xa7,0x3f,0xe2,0x78,0x7d,0x37,0x30,0xdc,0x0c,0x76,0x34,0xf2,0x80,0xb1,0x7f,0xe9, + 0x80,0x9a,0x36,0x19,0x42,0xeb,0x8e,0x1f,0xd1,0x30,0xd0,0xf8,0x95,0xcc,0x42,0x2c, + 0x01,0xea,0xaf,0x81,0xd0,0x72,0xd2,0x14,0x44,0x1b,0xc7,0x71,0x54,0x01,0xfd,0x23, + 0x10,0x16,0xf9,0xcd,0x81,0x49,0x78,0x0c,0x48,0x3c,0x2f,0xa1,0x19,0x4c,0xa1,0x54, + 0x36,0x01,0xb1,0xc7,0xc8,0x99,0x0e,0x77,0xe2,0x65,0x89,0x0f,0x65,0xdc,0x31,0x12, + 0xda,0x7c,0x32,0x4e,0x91,0xf4,0xd4,0x91,0xc5,0xa3,0x77,0x62,0xbe,0xc8,0xef,0x8c, + 0x06,0xda,0xc6,0xac,0x2a,0x45,0xd4,0x6a,0xc2,0x06,0x51,0xdb,0x49,0x08,0x9e,0x66, + 0x5e,0xb2,0x44,0x3d,0x99,0x2a,0x8d,0xdc,0xcc,0x6d,0x5e,0xa1,0x97,0xad,0x00,0x80, + 0x42,0x20,0x7e,0x20,0x52,0xea,0xc6,0x7e,0x06,0xd2,0xed,0x17,0xa8,0x15,0x8d,0xc7, + 0x92,0xbe,0x26,0x68,0xc0,0x13,0x6f,0x24,0xc6,0x92,0x0c,0x5b,0xec,0xb3,0x42,0x54, + 0x61,0x7d,0x86,0x92,0xb0,0xf2,0x47,0xa4,0x11,0xd3,0x08,0x79,0x4b,0x34,0x0f,0x81, + 0x66,0xa2,0x71,0xc3,0x01,0xed,0x07,0xff,0xfe,0xc4,0x07,0xa1,0x0d,0x4b,0x23,0x24, + 0x11,0x90,0x85,0x53,0x40,0xd4,0xc6,0xa6,0x18,0xe7,0xa6,0x05,0xc4,0x18,0x5e,0x94, + 0x29,0xb1,0xa4,0xa8,0x6b,0xc0,0xfa,0xb1,0x2c,0xa7,0x00,0xb8,0x1a,0xae,0x83,0x60, + 0xa9,0x5f,0x25,0xf4,0x14,0x32,0x8f,0xde,0x78,0x80,0x3a,0xc6,0x20,0x70,0xc3,0x2b, + 0xda,0x2e,0x68,0xcc,0x45,0x6a,0x27,0x70,0xdc,0x31,0x3a,0xce,0xee,0x06,0xec,0x58, + 0x10,0x3f,0x7b,0x7f,0xff,0xf9,0x8b,0x7c,0x9f,0x02,0x14,0x82,0x5b,0x67,0xed,0x69, + 0xbd,0x43,0x2c,0x45,0xfc,0x59,0x3d,0xaf,0x22,0x32,0x90,0x7c,0x85,0x3e,0xd5,0x81, + 0x17,0x5e,0xa2,0xdc,0xb9,0xd3,0x5e,0x35,0x17,0x89,0x31,0x58,0xad,0xc9,0xb3,0x3b, + 0x9d,0xc0,0x4a,0xc2,0x50,0x69,0x07,0xe3,0xde,0xa3,0xbd,0x00,0x94,0x9c,0x09,0x4a, + 0xe6,0x66,0xb3,0x14,0xdf,0xa7,0xee,0xa5,0x97,0x56,0x67,0xa3,0xff,0xac,0x61,0xca, + 0x0a,0x11,0xe6,0x5f,0xfe,0x1e,0x35,0x3a,0xb0,0xf8,0xef,0x60,0xfc,0x5d,0xe3,0x23, + 0x28,0x20,0x91,0x8e,0x03,0xb5,0x54,0xba,0x53,0xe5,0x86,0xeb,0x90,0xec,0x4e,0x4e, + 0xb2,0x45,0x3f,0xdf,0x8c,0x66,0xd3,0x2a,0xf1,0xca,0x02,0x29,0x73,0x13,0x83,0xe8, + 0x6f,0x04,0xb0,0x4b,0x0c,0xe2,0xe4,0xb0,0x0f,0x50,0x15,0x32,0x50,0xc3,0x8a,0x60, + 0xff,0x64,0x48,0x5e,0x52,0xc7,0xf8,0x00,0x50,0x20,0x10,0xc3,0x66,0x41,0x4a,0x45, + 0x44,0x3d,0x88,0xb0,0x28,0x01,0x1d,0xb6,0xd4,0x52,0xb2,0x9d,0xe3,0x08,0xe8,0x8d, + 0x28,0x30,0x70,0x1b,0x55,0x3c,0x61,0xf7,0x26,0xb9,0xc8,0x49,0x4c,0xf0,0x9f,0xb8, + 0xe1,0x25,0x32,0xed,0x2f,0x04,0x8b,0x53,0x2f,0x68,0x20,0x77,0xb1,0x48,0x52,0xa6, + 0xf2,0x6b,0xe0,0x4b,0x12,0x37,0x41,0x36,0x93,0xa2,0xd0,0x1a,0xc8,0x7c,0xf6,0x1b, + 0xc8,0x20,0x73,0x00,0x4a,0x63,0xf4,0xe3,0xd4,0x5a,0x8d,0xd1,0xec,0x27,0x97,0xe3, + 0x74,0x06,0xac,0x11,0xe4,0xd4,0xbe,0xd9,0x7c,0x4e,0xa8,0x0d,0x48,0xdd,0x52,0x74, + 0x2b,0x37,0xa1,0xb6,0x3b,0xad,0x02,0xd1,0xac,0x6e,0xdc,0xb7,0x1c,0x6a,0x60,0x04, + 0xde,0x25,0x80,0x99,0xc7,0x03,0xcb,0x8b,0x34,0x7e,0x70,0x0b,0xe4,0x9e,0x60,0xb9, + 0x31,0x1d,0xb9,0xe9,0xa4,0x67,0x90,0x9f,0x8c,0x58,0x91,0x64,0x16,0xd4,0xe1,0x7a, + 0x1d,0x33,0x7d,0xe7,0x81,0x98,0x2d,0x97,0x99,0x4f,0x40,0x50,0x07,0xdd,0xcc,0x0c, + 0xb4,0xd1,0x7b,0xa3,0x63,0xe3,0xc5,0x24,0x02,0x11,0x0c,0x39,0xd4,0x2f,0x28,0x07, + 0x09,0x19,0x57,0xd5,0x41,0x36,0x65,0x1b,0x68,0xbf,0x04,0x2c,0x20,0xb7,0x59,0x1b, + 0xf1,0x24,0xc4,0x57,0x5e,0x33,0x9b,0xd1,0xd1,0x09,0x61,0x4e,0xad,0xa4,0x46,0x86, + 0x91,0x93,0x38,0x2e,0xcb,0x6a,0xa0,0x83,0x5c,0xbb,0xe1,0x10,0x06,0xe7,0x8d,0xfc, + 0x2c,0x22,0x59,0xcc,0x59,0xb2,0x6f,0x4b,0x1b,0x4a,0x69,0x14,0xcd,0xca,0xf6,0x3a, + 0x29,0x68,0x1c,0xdf,0x72,0x5f,0x7d,0x04,0x76,0x0b,0xf2,0x24,0xcb,0x18,0x63,0x77, + 0x08,0x43,0xbe,0x55,0x1d,0x39,0x28,0xc9,0xe2,0x71,0x17,0xea,0x34,0x20,0x11,0xa5, + 0x2c,0xcd,0x93,0x30,0x61,0xe0,0x31,0x40,0x42,0x44,0x0b,0xbe,0x90,0x86,0x83,0x80, + 0xa7,0x73,0x2a,0xe6,0xfc,0x2c,0xde,0xc0,0x86,0x45,0xe3,0x9c,0x22,0x73,0x0f,0x6f, + 0xb6,0x77,0xde,0x5c,0x9b,0xea,0xe3,0x78,0x4d,0xfe,0x46,0xa3,0xcd,0xed,0xbd,0x32, + 0xeb,0x09,0xbd,0x79,0xae,0xec,0xac,0x83,0xca,0xed,0x3d,0x8a,0xca,0x01,0xf8,0xb0, + 0x98,0xb7,0xe6,0x76,0xa4,0xf0,0x19,0x50,0xf5,0xbe,0x6a,0x3a,0xc3,0xf1,0xf4,0x2b, + 0x27,0xf4,0x30,0xbe,0xa1,0x1c,0xb4,0x5c,0xa9,0x63,0xf9,0xa3,0xc8,0x43,0xda,0x40, + 0xb9,0x7e,0x74,0x87,0x57,0x15,0x55,0xae,0x86,0xfb,0x14,0x65,0x1d,0x45,0xcc,0x90, + 0x0e,0x36,0x43,0xe2,0xa3,0xc5,0xb6,0x77,0x14,0x7f,0x42,0xe6,0x57,0xec,0xa1,0x6c, + 0x8f,0x28,0x72,0xaa,0x9d,0xaf,0xe3,0x54,0x3b,0x39,0xa7,0xe2,0x1e,0xb5,0x0d,0x55, + 0xbb,0x90,0xef,0x07,0x2c,0xe2,0x0b,0x41,0x33,0x4a,0x7c,0xd8,0x49,0xd6,0x63,0x24, + 0x86,0xe9,0x9f,0x59,0xe6,0x70,0xbd,0x7a,0x99,0x71,0x15,0x1a,0xfe,0x8c,0x56,0x3c, + 0x54,0x0b,0x22,0x39,0x0e,0xe6,0x78,0x63,0xa4,0xa9,0x7e,0x06,0xfc,0x64,0x8c,0xfb, + 0x32,0x9e,0x0d,0x80,0xfa,0x4d,0x90,0x32,0x92,0xfc,0xb0,0x0d,0xaa,0xe2,0x15,0x30, + 0x3d,0x25,0x46,0x18,0xaf,0x43,0x54,0xa4,0xc9,0xde,0x09,0xf4,0x96,0xd8,0xa9,0x24, + 0xc4,0xa8,0x2f,0x28,0xe3,0x45,0x16,0xc5,0xfe,0x10,0xba,0x4b,0x70,0xa8,0x13,0x66, + 0xae,0x58,0x09,0x18,0x2a,0x90,0x42,0x3f,0x08,0xa0,0x1c,0x8a,0xf3,0xf9,0x6e,0x47, + 0xc0,0xac,0xbf,0x31,0x5e,0x9f,0x9c,0x9d,0x48,0x4e,0x30,0x84,0xea,0x8f,0x86,0xa4, + 0x0f,0x0f,0x45,0x01,0xac,0x0a,0xd5,0x7c,0xc7,0x2a,0x94,0x5c,0x7a,0x4e,0xfc,0x18, + 0xfe,0xf6,0x0e,0x04,0x10,0xd0,0xcb,0x0c,0xd7,0x4f,0xf0,0x0c,0x85,0x26,0x60,0x1b, + 0x9e,0x73,0xe9,0x20,0xb7,0xf9,0xe9,0xe5,0x3b,0x56,0x81,0x3e,0x21,0x30,0x91,0x87, + 0x20,0x2c,0x0d,0x34,0x19,0x3e,0x82,0x72,0xbc,0x9f,0x87,0xb0,0xca,0xb4,0xa0,0x43, + 0x74,0x3d,0x78,0x3c,0xaa,0x61,0x03,0x05,0x08,0xed,0xef,0xae,0xad,0xac,0x3c,0x4e, + 0x50,0x7f,0x1f,0x0b,0x7c,0x92,0xa8,0xb4,0xbf,0xdb,0x44,0xd8,0x03,0x9f,0xb8,0xd1, + 0xa6,0x60,0x44,0xc2,0x18,0x82,0x2d,0xbb,0x21,0x2e,0x3d,0x62,0x0e,0x22,0xe5,0x30, + 0x98,0x8d,0x18,0x58,0x88,0x6e,0xc6,0x3f,0x7e,0x3d,0x4b,0x51,0xd9,0x46,0x5c,0xf7, + 0x99,0x39,0x01,0x7f,0x4f,0x61,0xb5,0x10,0xdc,0x42,0x05,0x0f,0x58,0x9a,0xc3,0xa1, + 0xf8,0xd3,0x5c,0x73,0x7f,0x2c,0x88,0x29,0x34,0x60,0x35,0x74,0xa9,0x48,0x09,0xbc, + 0xe2,0xdd,0x63,0x37,0x72,0x05,0x54,0x20,0x34,0x44,0x30,0xef,0x3a,0x00,0xe0,0x3e, + 0xa4,0xc9,0xa1,0xa2,0x9c,0x5b,0x26,0x00,0x6c,0x69,0x04,0x44,0x48,0x02,0xa7,0x76, + 0xc2,0x48,0xe8,0xd8,0x26,0x51,0xa1,0x6d,0x52,0x79,0x0d,0xa2,0x2c,0xfd,0xf7,0xb0, + 0x8a,0xce,0xd7,0xb3,0x8a,0x62,0x43,0xbb,0x16,0x0a,0x28,0x78,0x28,0xf0,0x18,0x9e, + 0xb0,0xfb,0x58,0x9e,0xa0,0x18,0x14,0x75,0xd5,0xa4,0x58,0x57,0x93,0x19,0xc5,0xae, + 0xa6,0xd2,0xd0,0x57,0x63,0xc3,0x9d,0xc6,0x3d,0xb2,0x6a,0x2c,0x83,0x2c,0x37,0xb3, + 0x0e,0x68,0x59,0x94,0x3d,0x75,0xaf,0x69,0x85,0x95,0xa9,0x87,0xd5,0x03,0x40,0x07, + 0xb4,0xf9,0xd8,0x06,0x1e,0xfb,0xa7,0x8a,0xd0,0x6e,0x02,0x1a,0xc0,0x30,0xa4,0xa1, + 0xc7,0x1d,0x8d,0xd0,0xb0,0x27,0x64,0x57,0x36,0x0c,0xa1,0x53,0x10,0xc8,0x64,0xc2, + 0x97,0x08,0x74,0xe6,0x44,0xd0,0xee,0xb3,0x28,0xf7,0x45,0x8a,0x81,0x21,0x68,0xf6, + 0x21,0x92,0xe6,0xec,0x82,0xc1,0xc7,0x1b,0xcc,0x7c,0x58,0x10,0x22,0x66,0x7f,0x01, + 0x37,0x8a,0xc0,0xc5,0x03,0xb4,0x3a,0xf6,0xff,0xd7,0x44,0x0b,0x5c,0x0e,0xbd,0x55, + 0x32,0x9e,0x01,0x5c,0xbd,0x86,0x45,0xf0,0xf5,0xc4,0xb2,0x31,0x7c,0x96,0x20,0xd3, + 0x2a,0xb3,0x34,0xf4,0x51,0xb4,0x49,0x6b,0x98,0x17,0x17,0x98,0x4b,0xc1,0x91,0x43, + 0x73,0x56,0xc0,0x33,0x49,0xa8,0xff,0x18,0x5d,0xa2,0x4e,0xb2,0xc7,0x46,0x6a,0x54, + 0x0c,0x12,0xaa,0x57,0x1b,0xc5,0xdf,0x9e,0xbc,0x7e,0x67,0x9c,0x7c,0xf8,0xf0,0xa0, + 0x41,0xdc,0x8d,0xe3,0xd5,0xd6,0x70,0x8c,0x3f,0x63,0xb0,0xd0,0xaf,0xa2,0x15,0x82, + 0xa8,0x24,0xf0,0x11,0x92,0xf6,0x0a,0x76,0xe4,0x8a,0xed,0xa1,0x5a,0x09,0x49,0x2b, + 0x08,0xdd,0x55,0x21,0xb0,0x54,0x0e,0x4d,0x4a,0xe6,0x11,0xdb,0x85,0x57,0x95,0x43, + 0x31,0x28,0xc5,0xad,0x0c,0x7f,0x56,0x97,0x84,0xa5,0x30,0x8f,0x5e,0xbc,0x79,0xfd, + 0x80,0x6d,0x24,0x63,0x29,0x76,0x1d,0x41,0xf3,0x1d,0x89,0x35,0x0f,0x09,0x96,0xef, + 0x34,0xc3,0xd3,0x63,0xed,0x4d,0x4b,0x79,0x1c,0x59,0x39,0x59,0x87,0xc0,0x03,0xd0, + 0x65,0xa6,0xa9,0x7c,0x14,0x6f,0x80,0x40,0x64,0xb3,0x51,0xfd,0x48,0xca,0x76,0x02, + 0x20,0x15,0x88,0x9a,0x1e,0xb4,0xec,0x86,0xb7,0xa5,0x61,0x2c,0xed,0x21,0x0a,0x2f, + 0x1f,0xd1,0x45,0x14,0x2e,0xef,0xe2,0xdf,0xa9,0x4d,0x57,0x89,0x33,0xec,0xe6,0x54, + 0xe9,0xbc,0xa8,0xed,0x6a,0x02,0x31,0x3a,0x36,0xb1,0x0d,0x9f,0x8f,0x04,0x41,0xb0, + 0x99,0x42,0x91,0xb4,0xa4,0xf1,0x1a,0xba,0x25,0x33,0xd3,0x68,0xb0,0xb4,0x49,0xe4, + 0xfa,0xf6,0x2a,0x7d,0xf3,0x7f,0x96,0xd2,0xfc,0xff,0xb3,0xf6,0x5b,0xc1,0x88,0x37, + 0xd1,0x47,0x57,0x98,0x0e,0x0b,0xa7,0xdd,0xe8,0xe0,0x64,0x00,0xe1,0xd7,0x0e,0xbc, + 0x59,0x8b,0x45,0x8f,0x7c,0xf3,0x88,0xd9,0x09,0xd9,0x3f,0xe2,0x38,0xb8,0x15,0x47, + 0xe0,0xab,0x11,0xea,0x55,0xe2,0xfd,0x39,0xf3,0xc2,0xe1,0xad,0x6d,0x0c,0x00,0x57, + 0x44,0xba,0x8e,0xd3,0x57,0x84,0x5b,0x2f,0x3e,0x1a,0xd3,0x19,0x68,0x16,0xa0,0xa1, + 0x0d,0x27,0x2c,0x2c,0x93,0x95,0xd2,0xbb,0x71,0xc9,0x13,0x58,0x49,0x8d,0xc6,0x3c, + 0x81,0x0d,0x65,0x5c,0xbb,0xc1,0xcc,0x33,0x32,0xf7,0x8a,0x64,0x64,0x25,0x21,0x8e, + 0xf9,0x5c,0x08,0xf4,0x13,0x63,0x06,0x98,0x1a,0x68,0x0e,0xca,0xe2,0xe8,0xc7,0x59, + 0x49,0x3b,0x1e,0xda,0xcc,0x6a,0x0e,0x46,0xe3,0xed,0xcf,0x5f,0xac,0x87,0xb7,0x74, + 0x72,0x09,0xd5,0xa1,0x92,0xdc,0xd4,0x2d,0xa7,0xd5,0x6a,0x0b,0x6b,0x63,0x7b,0xaf, + 0x25,0xcc,0x8d,0x9d,0xbd,0x56,0x6b,0x4d,0x72,0xf2,0xa3,0x04,0x9d,0xd1,0xb8,0x5a, + 0x7b,0x04,0x83,0xb9,0xd6,0xbf,0xec,0xfe,0x99,0xe8,0xbc,0xda,0xf7,0x5f,0x02,0xd1, + 0x69,0x9c,0x78,0xee,0x88,0x4e,0xfa,0xc8,0xa8,0x56,0xc1,0xfd,0xdc,0x6c,0xac,0xc6, + 0x97,0x62,0xf5,0x88,0x34,0x84,0xa3,0xbd,0xc3,0x6d,0xf1,0x4b,0xbe,0xd9,0xaf,0xbc, + 0x79,0x56,0x79,0x73,0x50,0x79,0xf3,0xbc,0xf2,0xa6,0xdd,0xaa,0xbe,0x6a,0x57,0x5f, + 0x75,0xf2,0x57,0xd2,0x5e,0xbd,0xd6,0xca,0xbc,0x88,0x68,0xd6,0x20,0x72,0x7a,0xeb, + 0xcc,0x79,0x98,0x7c,0xc3,0x39,0xd7,0x0e,0xf4,0xab,0xad,0xe6,0xdf,0xd0,0x58,0xfe, + 0x15,0x24,0x49,0x0a,0x79,0xcb,0xa8,0xc9,0x2a,0x24,0xd4,0x78,0x7f,0x47,0x4d,0xf2, + 0xc4,0x4f,0x32,0x7f,0xea,0x95,0xf0,0x71,0xe5,0x24,0xdd,0x71,0xbe,0x61,0xe4,0x7e, + 0x69,0x15,0xcf,0x2e,0x6b,0x4f,0x2e,0xdc,0x71,0x73,0x34,0xac,0x3d,0xb5,0x58,0x31, + 0xd2,0xdd,0xfc,0xb4,0xe5,0x37,0x63,0xe4,0x05,0xee,0x2d,0x10,0xc8,0x74,0x3d,0x79, + 0x21,0xb9,0xa1,0x0a,0x75,0xa3,0x15,0xa4,0x65,0xed,0xcd,0x5d,0x18,0xd3,0x5e,0xbb, + 0xa3,0x23,0x09,0x8f,0xea,0x11,0x00,0xcc,0x1e,0x1c,0xd7,0x5a,0x38,0x53,0x72,0xd7, + 0x28,0x08,0x77,0x07,0x50,0x92,0xd9,0xce,0xe0,0xe8,0xc5,0xc9,0x4f,0x46,0x83,0xce, + 0x3f,0x42,0xe9,0x2a,0x40,0xb6,0xae,0xa9,0x9f,0x59,0xa8,0xc6,0x1d,0xfa,0x47,0x2f, + 0x26,0x6e,0x88,0xf1,0x0c,0x30,0x07,0xff,0xda,0xcf,0x6e,0x61,0x4e,0x19,0x4b,0xff, + 0xec,0xb3,0xc1,0x4e,0x5c,0xf9,0x76,0xd5,0x98,0x61,0x76,0x19,0x98,0xc5,0xe9,0xd2, + 0xd9,0xcd,0x20,0xba,0xc9,0x27,0x3c,0x74,0x91,0x01,0xcf,0xa0,0xa1,0xd9,0x91,0x62, + 0x87,0x6b,0xcd,0xa3,0xbd,0xaf,0x4d,0x04,0x30,0x00,0x38,0x2b,0x9e,0xe3,0x18,0x97, + 0x2e,0xb9,0x0f,0xe1,0xd8,0x4f,0x7f,0x6b,0x77,0xf6,0x6f,0x40,0xe4,0x1a,0x7a,0x3e, + 0x9a,0x36,0xc8,0x7e,0xf9,0x4d,0x86,0x4d,0x4c,0xdd,0x49,0x6e,0xb0,0xb3,0xaf,0x1c, + 0x7f,0xa7,0xb5,0xab,0x2f,0xc5,0xab,0x97,0x6f,0x0d,0x39,0x0b,0x31,0xfc,0x97,0x37, + 0x20,0xcc,0xa1,0xed,0x67,0x9c,0xa0,0x42,0xe7,0x85,0x23,0xf4,0x9d,0x9d,0x81,0xf2, + 0xfd,0xe6,0xdd,0xc9,0x37,0x9c,0xc6,0xd8,0x9b,0xfe,0xb5,0xa9,0xec,0x74,0xf4,0xa5, + 0xa0,0x50,0x42,0x31,0x85,0x57,0x51,0x32,0x47,0xd9,0x9a,0x84,0x12,0x40,0xad,0xf1, + 0xd8,0x1f,0x3a,0xc6,0x7b,0x90,0x37,0xfa,0x7c,0xee,0x16,0x36,0xc9,0xa6,0xdc,0x48, + 0x41,0xea,0x08,0xa4,0xb5,0x3a,0x25,0xd9,0x46,0x1a,0xa7,0x53,0x74,0x84,0xfb,0x16, + 0x93,0xa5,0x81,0xad,0x3d,0x45,0xdd,0xf3,0x43,0x53,0xcb,0x51,0x2b,0xd7,0xa6,0xbe, + 0xbf,0xfb,0xb0,0xae,0x44,0x47,0x95,0xee,0x08,0xbd,0x6f,0x8d,0xc6,0x54,0x3b,0x06, + 0x58,0x4d,0x4b,0xa9,0x82,0x43,0x9e,0xd3,0x20,0xb6,0x95,0xe9,0xc0,0xee,0x03,0x74, + 0xf5,0xa8,0x05,0x20,0x06,0xc1,0x6e,0x0d,0x9a,0xaa,0xa4,0xb4,0x20,0x8a,0x46,0x6a, + 0xa0,0x93,0x24,0x5d,0x6f,0xa0,0x63,0xac,0xe6,0xac,0x1e,0x6e,0x7b,0xff,0x60,0xbd, + 0xe1,0xda,0x86,0x17,0xa4,0x9e,0xb1,0xb3,0x11,0x92,0xe0,0x0a,0xf5,0xea,0xac,0x95, + 0xeb,0x71,0x47,0x4d,0xfc,0xa6,0x31,0x56,0x15,0x3b,0x9a,0x31,0x4a,0x1f,0x6c,0xed, + 0x81,0xa7,0x38,0x5d,0x2d,0x8d,0xff,0x1c,0xc5,0x80,0xb8,0x53,0x0c,0xa4,0x43,0x73, + 0x2b,0xb5,0x2b,0x11,0x5b,0x93,0xa8,0xc7,0x8c,0xf7,0x29,0xa8,0x72,0xe2,0x34,0x1b, + 0xe4,0xee,0x94,0x32,0xf0,0xb9,0x14,0xb5,0xe7,0xa7,0xb7,0x46,0x88,0x8e,0xcc,0x03, + 0x90,0xd9,0xd3,0x1e,0xa8,0x04,0x91,0x81,0x31,0x7c,0x2c,0x9a,0xc7,0x6e,0x92,0x61, + 0x58,0x60,0xee,0xeb,0x81,0x6e,0x50,0xf0,0x4c,0x6e,0x64,0xce,0xda,0x7a,0x7c,0xe7, + 0xe0,0x41,0xec,0x04,0x05,0x52,0xcc,0x62,0x42,0x93,0x5f,0x7b,0xc1,0x61,0x5d,0x4b, + 0x8b,0x5c,0xd8,0x0b,0xb5,0x6b,0x2c,0x56,0x75,0x7f,0xd7,0x31,0x84,0x13,0x92,0x01, + 0xbf,0x1f,0x81,0xa2,0x38,0x5a,0x81,0xa0,0x8f,0x1f,0xae,0xc0,0xd1,0x6f,0x31,0xea, + 0x03,0x67,0x35,0x5a,0xae,0x10,0x11,0x68,0x51,0xb4,0xe9,0xcc,0xc2,0x74,0x18,0xc5, + 0x78,0x8c,0xf6,0x95,0xab,0xe0,0xc8,0x16,0xaa,0x13,0xfb,0x1a,0x67,0x8c,0x13,0xd0, + 0x4c,0xf1,0x94,0x10,0x94,0x54,0x3e,0x0d,0x4c,0xf9,0xe0,0x2e,0x8c,0xe4,0xf9,0x1b, + 0xf5,0xe6,0x18,0x1a,0x5c,0x1e,0x3c,0x42,0x79,0x98,0x90,0x76,0xf6,0xf6,0x35,0x8a, + 0x09,0xbb,0x4c,0x93,0x33,0x96,0xb8,0xcf,0xe4,0xc6,0x9f,0x28,0x76,0xb8,0xb8,0xd2, + 0x0d,0x78,0xc7,0x89,0xf3,0x95,0xf7,0x48,0x06,0x8b,0x5a,0x80,0xfc,0x8e,0x5e,0x08, + 0x53,0x20,0x57,0x47,0x6f,0xf9,0xc7,0xd2,0x72,0xb0,0xab,0x51,0x45,0x81,0x82,0xe2, + 0xd7,0xb2,0x92,0x69,0x96,0xf8,0x38,0x90,0x53,0xfa,0x5b,0xd5,0x35,0x56,0x80,0xfe, + 0xa7,0x04,0x93,0x36,0x31,0x1e,0x48,0xd8,0xb3,0xa7,0x4a,0x80,0xca,0xe1,0xad,0x01, + 0x04,0x2c,0xb9,0x2d,0xb8,0x96,0x4f,0x5c,0xb4,0x17,0x71,0x5f,0x40,0x67,0xfa,0xc6, + 0xd8,0x43,0x7a,0xc3,0xbc,0x0e,0x17,0x31,0xa0,0xc1,0x8e,0xa4,0x78,0x37,0x82,0x2e, + 0x62,0xa0,0x78,0x2b,0x1c,0xc4,0x6a,0xad,0x98,0x64,0x68,0x7d,0xec,0xd1,0xf9,0x6b, + 0x3a,0x73,0xce,0x6e,0xff,0xea,0x71,0xf9,0xff,0x98,0x53,0x72,0x79,0x2e,0xde,0xc3, + 0x48,0xc6,0xd2,0xb9,0xb8,0x63,0xfc,0x48,0xf6,0xba,0xfe,0xb7,0x3c,0xde,0xfe,0x7f, + 0x7e,0xaa,0xfd,0x17,0x4e,0x9e,0xff,0x9d,0x07,0xce,0xab,0x56,0x75,0xf9,0x61,0x32, + 0x72,0x53,0xea,0x75,0x33,0x2d,0x9d,0x29,0x03,0xca,0x89,0x83,0x56,0xeb,0x2f,0x9d, + 0x07,0xaf,0x79,0x0c,0xfc,0x35,0xfa,0xfd,0x07,0xc6,0x42,0xd8,0xbb,0xab,0x25,0x94, + 0x33,0xed,0xe0,0x17,0x24,0x6b,0x0f,0xd1,0x1a,0xc4,0xf2,0x59,0x1c,0x44,0xee,0x88, + 0xbc,0xd8,0x90,0xb4,0x93,0xd3,0x68,0x13,0x7d,0x38,0x26,0x64,0x73,0x4a,0xa2,0xa9, + 0xe1,0x62,0x3c,0xc0,0x15,0xee,0x02,0x34,0x60,0xff,0xc1,0x47,0x8a,0x74,0x32,0xa8, + 0xf9,0x62,0x2d,0x57,0x08,0x72,0x15,0x80,0x3c,0x64,0xd9,0xa3,0x44,0xe8,0x01,0x1f, + 0xbc,0xc4,0x07,0x49,0x6b,0x88,0xbe,0x98,0x41,0x36,0xd9,0xa6,0x73,0x16,0x43,0xb4, + 0x2c,0x7c,0x57,0xc9,0xed,0xe1,0x9b,0x48,0xfa,0x04,0x69,0x6e,0xf5,0x31,0x1a,0x4d, + 0x3e,0x01,0x01,0x6b,0x49,0x84,0xc5,0x24,0xde,0xba,0xe4,0xaf,0x96,0x02,0x3b,0x1c, + 0x4e,0xd8,0xc3,0x18,0x74,0x16,0xe1,0x32,0x23,0x65,0x40,0xc0,0x82,0x68,0xfe,0xed, + 0x66,0x21,0x46,0xf0,0x75,0xd3,0x38,0x19,0x8d,0x8c,0xc4,0x9d,0x1b,0x1c,0x53,0x2d, + 0x66,0x71,0x12,0x90,0xa3,0x04,0xba,0xe1,0xa1,0x07,0xdf,0x0c,0xa6,0x80,0x3b,0x85, + 0xca,0xc8,0x15,0xc1,0x4a,0xdf,0x78,0x39,0xa0,0xc9,0xaf,0x9b,0xc4,0x47,0xd6,0xde, + 0x47,0xa5,0xc5,0x00,0x35,0x13,0x7d,0x3b,0x24,0x9b,0x44,0x1f,0xdf,0x51,0x7e,0x8c, + 0xe2,0xfa,0xc9,0x37,0x1c,0xfa,0xcd,0x5f,0xc3,0x22,0x21,0xe7,0x27,0x95,0xcd,0x20, + 0x3f,0x80,0xd4,0x8f,0x47,0xea,0xa8,0xf4,0x92,0x6c,0x95,0x1a,0x8d,0x0f,0xa7,0x1f, + 0x4f,0xde,0x1a,0x94,0x3f,0x84,0xcd,0x16,0xd6,0xb7,0x9b,0x8f,0x1a,0xcf,0xb7,0xd0, + 0x85,0x1f,0x92,0xd8,0xcf,0x84,0x3d,0x29,0xd3,0x57,0x70,0xb5,0x99,0x57,0x8e,0x33, + 0xbb,0x79,0xb4,0x38,0x87,0xc7,0xc6,0x27,0x80,0xd1,0x67,0xbf,0x2d,0x2b,0x21,0x74, + 0x00,0x24,0xde,0x42,0x93,0x90,0x66,0xa1,0xa5,0x82,0x5a,0x1d,0x93,0x29,0xa1,0x5f, + 0xae,0xf9,0xe1,0xce,0x4a,0x1f,0xa3,0xd2,0x9c,0x32,0xf5,0x93,0x8a,0xf3,0x23,0x2c, + 0x04,0x2c,0x01,0x14,0x15,0xee,0xb6,0x14,0xfe,0x1f,0x75,0x38,0xf1,0x95,0x6b,0xfb, + 0x4e,0x22,0x92,0x36,0xfa,0x09,0xea,0xb3,0x8f,0x18,0xbf,0x42,0xc6,0xca,0x4c,0x3a, + 0xd2,0x4e,0xbe,0xb3,0xff,0x80,0x86,0x86,0x72,0x5c,0x34,0xce,0x28,0x7f,0x8e,0x94, + 0xd6,0xd8,0xff,0xa5,0xb8,0xc1,0x1a,0xed,0x4e,0x13,0x5a,0xb3,0x0d,0x91,0x0a,0xd0, + 0xe8,0xec,0x5a,0xce,0xd7,0xdb,0x17,0xd6,0x75,0x9e,0x72,0xe3,0x78,0x7d,0xef,0xa9, + 0x4a,0xcb,0x67,0x68,0x83,0x67,0xfb,0xc4,0xe9,0xbb,0xb7,0x1f,0xd6,0xf0,0x10,0x38, + 0xfb,0x20,0xe2,0xcb,0xd6,0x95,0xc4,0xc2,0x2c,0x5e,0x22,0x78,0x91,0xaf,0xf7,0x24, + 0x0a,0x40,0xe5,0xc1,0x60,0xc3,0x28,0xc0,0xb2,0x20,0x6f,0x5f,0xae,0x94,0xc0,0x38, + 0x02,0x16,0x28,0x20,0xc6,0x40,0x4b,0x89,0x63,0x18,0x00,0x89,0x7e,0x48,0xb8,0x5a, + 0xe7,0xa4,0x0c,0x01,0x42,0x99,0x8a,0x1a,0x1f,0xde,0x9f,0xbe,0xfe,0x6d,0x1d,0x2d, + 0x21,0x13,0x55,0xd6,0x99,0xe5,0xdb,0xd3,0xb3,0x67,0x6f,0x7f,0x3a,0xb3,0xdf,0xee, + 0x38,0x1d,0xa7,0x65,0xbf,0x6d,0xb7,0x9d,0xb6,0xf3,0xd0,0x31,0x63,0x8d,0xa2,0xdd, + 0x66,0xf9,0x99,0xc7,0xf6,0xe9,0xec,0x05,0x65,0x79,0xca,0x83,0x41,0x56,0x1f,0x03, + 0x88,0xf1,0x3a,0x5c,0x47,0x9e,0x1c,0xa9,0x2d,0xd1,0xde,0x5d,0x77,0x77,0x17,0x18, + 0x12,0xe2,0x8f,0x01,0xfa,0x4b,0x98,0x29,0x26,0x0a,0x52,0x12,0x90,0x31,0x3c,0x9e, + 0xf5,0x13,0x3c,0x3b,0xfa,0x06,0x3c,0x26,0x0d,0xa7,0xf1,0xda,0x9c,0x45,0xa3,0x83, + 0x38,0x38,0x74,0x88,0x98,0x85,0xa4,0x32,0x3e,0xb8,0xa8,0xd8,0x8f,0xa3,0x2a,0x2c, + 0xd1,0xfe,0xd6,0x56,0x70,0xc9,0x43,0xe8,0xb1,0x0a,0x2e,0xc5,0x58,0xca,0xe8,0xc4, + 0x28,0x5c,0x2d,0x98,0xe3,0x49,0xca,0x25,0x0a,0xdb,0x54,0x2b,0x61,0xd0,0xb3,0x9f, + 0x5e,0xde,0x84,0x3a,0xb1,0x27,0x8e,0x42,0x3e,0x77,0x73,0xb4,0x8c,0xa3,0xde,0xce, + 0xb1,0x13,0x79,0xb4,0x04,0xd0,0x15,0xd8,0x52,0xa9,0x8c,0x09,0xd3,0xbc,0xfc,0x1c, + 0xe3,0x95,0x8f,0xc1,0x61,0x19,0xfb,0xfe,0xbd,0xfe,0xc0,0x02,0x3e,0xf9,0x07,0x24, + 0xd1,0x0c,0x77,0x67,0x94,0x08,0xd7,0x41,0x0a,0xec,0x1c,0x52,0x7e,0x0b,0xef,0x7f, + 0x76,0x04,0x25,0xd1,0xd1,0xff,0x1f,0x42,0x28,0xe5,0x40,0xff,0x0d,0x31,0x94,0x7f, + 0x25,0x74,0x72,0x4d,0xfb,0x64,0xab,0x93,0x9f,0xac,0x7e,0x20,0xeb,0x35,0x3b,0xaf, + 0x3e,0x60,0x85,0xe3,0xae,0xb1,0x3c,0x39,0x57,0xd6,0x18,0xda,0x84,0x91,0x6d,0x36, + 0x5d,0x26,0x9b,0x51,0xca,0x0c,0xd0,0x1e,0x91,0xb6,0x0b,0x16,0x8d,0x46,0xf9,0x39, + 0xfa,0xce,0xa3,0xbf,0x69,0x38,0x44,0x31,0x78,0x89,0x81,0xce,0xbd,0xc9,0xa3,0x6f, + 0x1a,0x03,0x17,0xb3,0xb8,0xe9,0xa5,0x6b,0x8e,0xfa,0xd7,0xe5,0xc0,0x6f,0x5d,0x14, + 0x4d,0x42,0x3c,0x5d,0x5f,0xf3,0x70,0x7d,0x09,0x76,0x2d,0xf3,0x5d,0x1e,0x45,0x1f, + 0xc9,0x31,0xa8,0x41,0xee,0xcb,0xe4,0x22,0x14,0x92,0x11,0xa8,0x82,0x36,0xeb,0x35, + 0x2c,0xf2,0x22,0xc0,0x46,0x6f,0x16,0x83,0x3b,0x47,0xd1,0x1b,0x7a,0x4d,0x5e,0xae, + 0x18,0x9b,0x05,0xbf,0x2b,0x4e,0xb4,0xeb,0x52,0x4c,0xf6,0x95,0x7c,0x2c,0xc9,0xfc, + 0x89,0x6e,0x1d,0x12,0x5c,0x85,0x13,0x00,0x40,0x33,0x4d,0x20,0x74,0xda,0x34,0x22, + 0x37,0x13,0x09,0xab,0xf4,0x8c,0x56,0x7b,0xad,0x4a,0xde,0x3e,0xca,0x9c,0x56,0x4a, + 0xd9,0xd7,0x32,0x8f,0x1e,0x70,0xac,0xa2,0xb4,0xa8,0xc2,0x21,0x95,0x7e,0x7e,0x0d, + 0x56,0xbc,0x4a,0x3c,0x8c,0x92,0x77,0x63,0xa3,0xf1,0xcb,0x8f,0x16,0x75,0x75,0xc8, + 0x69,0x3e,0x79,0x5a,0xb1,0x9b,0x5c,0x61,0xca,0xc2,0x38,0xcf,0x58,0x43,0x26,0xee, + 0x6d,0x2e,0x54,0xf4,0xfc,0xf4,0x53,0x8f,0xec,0xbe,0xca,0xa3,0xa4,0xb6,0x35,0x3c, + 0x36,0xf2,0x56,0x35,0xf7,0xe0,0x69,0x18,0x8a,0x7b,0xbc,0x70,0xd5,0xc3,0x30,0x3d, + 0x31,0x41,0xad,0x1c,0x8b,0xf5,0x84,0x20,0xbb,0x76,0x0c,0x21,0x6e,0x67,0x22,0x11, + 0xc6,0xad,0x97,0x39,0x6b,0xe3,0x16,0x7a,0xd7,0x3e,0x16,0xb3,0xc8,0xea,0x04,0x88, + 0x00,0x94,0x06,0xed,0xf8,0xab,0x58,0xf1,0x89,0x72,0x63,0x27,0x1b,0xd9,0x7c,0x82, + 0xd9,0x5d,0x05,0x13,0x06,0x3d,0x15,0x80,0xee,0x32,0x97,0x86,0x71,0x00,0xb5,0xef, + 0xd1,0xc1,0x5d,0x12,0x05,0x18,0x4a,0x42,0x87,0x21,0x7a,0x1a,0x03,0x28,0x03,0xcd, + 0xdc,0xd1,0x59,0x2b,0x86,0xf1,0x7c,0x9c,0x85,0x29,0x65,0x76,0x91,0x31,0x8e,0x89, + 0x9b,0xc1,0xc2,0x62,0x5e,0x17,0xe1,0xef,0x89,0x79,0x14,0x5c,0x03,0x85,0x3c,0xc7, + 0x78,0x21,0x5d,0x40,0xc9,0xd0,0x2f,0x1d,0x04,0x25,0x93,0x87,0x7a,0x78,0x93,0x83, + 0xf1,0xab,0x37,0xe0,0x9b,0xb5,0x28,0x92,0x85,0x72,0x85,0x68,0x12,0x82,0x74,0xdd, + 0x00,0xc4,0x20,0xd3,0x3f,0x4c,0xc9,0x4d,0x12,0xff,0xda,0x2b,0x7b,0x82,0x02,0xf7, + 0x52,0xe0,0xe3,0x64,0x6a,0x22,0x49,0x09,0x3f,0x00,0x67,0x31,0x8f,0xf2,0xae,0x70, + 0xc4,0x74,0xee,0xe0,0x3c,0x39,0xdc,0x86,0xaa,0x75,0xf0,0x94,0x09,0xbd,0x4c,0x90, + 0x2b,0x10,0x21,0xe8,0xb8,0x15,0x13,0x5e,0xa1,0x46,0x01,0xa2,0x45,0x93,0xb8,0x46, + 0xdf,0x14,0xd3,0xe4,0x7c,0x53,0x06,0xd5,0xd0,0xc8,0x5a,0x0d,0x6f,0x13,0xee,0xe0, + 0x7c,0x87,0x59,0xde,0x8b,0x3c,0x64,0x81,0x8d,0x1e,0xc0,0xa3,0x48,0x9a,0x7f,0x64, + 0x9c,0xd2,0x0b,0x09,0xe0,0x2a,0xb3,0x7a,0x74,0x0f,0x94,0x92,0xd0,0x3c,0x92,0xeb, + 0x63,0xd0,0x73,0xa9,0xdd,0x22,0x70,0x55,0x8e,0x1e,0x6c,0x8b,0x32,0xf4,0xe8,0x40, + 0x2a,0x71,0x88,0xaa,0xd0,0x23,0x6b,0x8a,0x29,0x94,0x3c,0x58,0x9f,0xd7,0x71,0x74, + 0x4d,0xa0,0x59,0x57,0x22,0x8a,0xbd,0x20,0x20,0xa0,0xc1,0xde,0xa5,0x98,0x01,0xad, + 0x8d,0x82,0x1a,0xc4,0x3a,0x9c,0x2b,0x21,0xaa,0x8f,0x5d,0xa6,0x07,0x53,0x43,0x66, + 0x58,0x15,0xf6,0x6b,0x61,0xf4,0xfb,0xad,0x56,0x0b,0x11,0x64,0x9e,0xa2,0xfb,0xd1, + 0xbf,0x7f,0xd4,0xb8,0xf9,0xe4,0x56,0x8b,0xe1,0x99,0x52,0xfd,0x36,0x66,0x31,0xaa, + 0xa1,0xed,0x56,0x4b,0xb9,0x5d,0x53,0x6c,0xbd,0x9c,0xcd,0x2a,0x2e,0x9b,0xaf,0x0e, + 0x9a,0x77,0x4a,0x29,0x8c,0x40,0xf7,0x47,0x8c,0x2b,0x73,0x51,0x99,0x80,0xa8,0x4a, + 0xea,0xb4,0xb0,0x8b,0xc3,0x6d,0x3d,0xe7,0x55,0x4a,0x5e,0xdf,0x6e,0xc2,0x41,0x16, + 0xba,0x16,0xc7,0x39,0xe4,0x79,0x18,0xf2,0x81,0x5a,0x1c,0xa8,0x57,0x4d,0xca,0xbc, + 0x33,0x38,0x2a,0xe8,0x6b,0x69,0x6c,0x6a,0x0a,0x5d,0xbd,0xf8,0x60,0xa4,0x53,0x4d, + 0x44,0x40,0xf9,0x36,0xc9,0x4e,0x82,0x80,0x85,0x11,0x7c,0x28,0x84,0x38,0xd4,0x34, + 0x31,0xcd,0xc7,0x55,0x92,0x37,0x40,0x10,0x2e,0x04,0xd5,0x70,0x8e,0x03,0x2d,0xb2, + 0x42,0x12,0x7f,0x9a,0xbe,0x5f,0xce,0xc9,0xdc,0x05,0x42,0x81,0x96,0x5f,0xce,0x67, + 0x0c,0x54,0x1a,0x70,0x00,0x2d,0xbc,0x5a,0x4a,0x63,0x72,0x2c,0x26,0xbf,0x2f,0x20, + 0xcd,0x15,0xb0,0xa9,0x6c,0xbc,0xb9,0x3b,0x36,0xa5,0xe5,0xa5,0x97,0x95,0x30,0x15, + 0x91,0x62,0x98,0xe3,0x35,0x07,0xb7,0x2a,0x3f,0x08,0x43,0xb4,0xa4,0x4c,0xe8,0x6a, + 0xf2,0x0a,0xb8,0xfe,0x15,0x85,0x82,0x14,0x44,0xd2,0x28,0xb2,0x64,0xe6,0xd1,0x72, + 0xa4,0x15,0x6d,0xe2,0xdf,0xd4,0x37,0xb1,0x18,0xea,0x1b,0xfa,0x7d,0x81,0x0f,0xaa, + 0xdb,0x62,0x4a,0x28,0x05,0x53,0x74,0xe7,0x02,0xb0,0xe0,0xbb,0xa5,0xe1,0x4d,0x2a, + 0x17,0x26,0x29,0x81,0x25,0x4c,0x25,0xf7,0x33,0xdd,0x5c,0xa0,0xb6,0x8b,0xc0,0x11, + 0x5d,0x82,0xc3,0x7c,0xbc,0x42,0x82,0xa3,0x9f,0x47,0x05,0x4c,0x92,0x37,0x1a,0xc5, + 0x51,0xdc,0x24,0xcf,0x19,0x4e,0x88,0x5b,0x41,0x10,0xf1,0x9e,0x1b,0xf2,0x6e,0x7c, + 0xcc,0x85,0x9a,0xa3,0x45,0xc5,0xa6,0xb3,0x8b,0x67,0xa2,0xe5,0x3c,0xe7,0x5a,0x2a, + 0xbd,0xa2,0x15,0x55,0x4b,0x9b,0x50,0x4d,0xd9,0x4b,0x29,0xa4,0x32,0x3f,0x9c,0x79, + 0xd5,0x64,0x5c,0x2a,0xf7,0x1e,0x08,0x1c,0x55,0x39,0x0b,0xa5,0x2c,0x4a,0x9a,0x2b, + 0x33,0x3c,0x3a,0xcf,0xd5,0x55,0x86,0x7c,0x65,0x4c,0xf9,0x26,0xbc,0xf1,0xa5,0x95, + 0x0b,0x4a,0x81,0x7f,0x74,0x06,0x32,0x2b,0xc6,0x1d,0x4b,0xe3,0x5c,0x23,0x22,0x63, + 0xdd,0x0b,0x54,0x70,0x02,0x7c,0x63,0xc9,0x4c,0x16,0x40,0x86,0xf1,0x88,0x93,0x8e, + 0x4e,0x29,0xc7,0x54,0x08,0xe8,0xe3,0x1c,0x0e,0x92,0xb2,0x79,0xa8,0x36,0xf0,0xac, + 0x46,0x18,0x7c,0x3d,0x06,0xe1,0x0a,0x18,0xb6,0x0d,0xa4,0x40,0x66,0xdb,0xf8,0x94, + 0x62,0xb2,0x2a,0xce,0xf4,0xf4,0x1a,0x61,0x13,0x7a,0x64,0x9f,0x32,0xb6,0xf1,0xeb, + 0x69,0x06,0xeb,0xa6,0x44,0x33,0x11,0x5b,0x28,0x90,0x04,0xe6,0xa2,0x4d,0x8b,0x32, + 0x9b,0x9d,0xba,0x63,0x10,0x3b,0x50,0x6e,0x7a,0x31,0x49,0x22,0x4a,0xb1,0xc7,0x63, + 0xe7,0xdb,0x4e,0x9d,0x72,0xa5,0xbf,0x47,0xc8,0x14,0x80,0x8c,0x56,0x67,0xf0,0x4c, + 0xa6,0xfe,0x22,0xc4,0x98,0x25,0x40,0x30,0x26,0x59,0x16,0x77,0xb7,0xb7,0xdb,0xcf, + 0x3b,0x4e,0x7b,0xff,0xc0,0xd9,0x75,0xda,0x44,0x71,0x55,0x9b,0xa0,0x6e,0x06,0x4b, + 0xa2,0x36,0x6b,0x4c,0xec,0x78,0xc9,0x8e,0x59,0x9a,0xa0,0x3c,0x81,0x83,0x99,0xcb, + 0x64,0x8c,0xcd,0x53,0x4c,0x36,0x42,0x10,0xd1,0x93,0x8b,0x39,0xc6,0x7f,0xe9,0x99, + 0xda,0x38,0xde,0xc8,0x4f,0x31,0xa3,0x09,0xba,0x89,0xf8,0x32,0x7e,0x23,0x37,0x28, + 0x79,0x9c,0xb6,0x24,0x37,0x3d,0x89,0x55,0x16,0x88,0x67,0x1b,0x73,0x6e,0x03,0x23, + 0xa7,0x93,0x6b,0x5f,0xa4,0xe1,0x32,0x44,0x6a,0x7a,0xe4,0xf1,0xb9,0xe3,0x48,0x29, + 0x53,0xe2,0xea,0x48,0xc6,0xd6,0xd2,0x48,0xc6,0x51,0x34,0x9c,0x51,0xea,0xae,0x4b, + 0x2f,0x7b,0x19,0x78,0xf8,0xf3,0xc7,0xdb,0xd7,0xa3,0xc6,0xa6,0xd8,0x8c,0x9b,0x96, + 0x43,0x40,0x7c,0x03,0xc4,0xc5,0xc1,0xd0,0x29,0x60,0x26,0x9b,0x18,0xdf,0xba,0xb9, + 0x66,0xe8,0x23,0xac,0xef,0x80,0x22,0x45,0x45,0xc8,0xa3,0xc6,0x84,0x35,0x7a,0x21, + 0xc4,0xee,0xb5,0xc8,0x04,0x97,0xd5,0x09,0x85,0x00,0x46,0x85,0x9a,0xa9,0x34,0x7c, + 0x44,0x3c,0x76,0x76,0xf3,0x6c,0xdb,0x3b,0xbb,0xec,0x5b,0xa1,0xb1,0x90,0x32,0xf9, + 0xe0,0x9c,0xb4,0x94,0x14,0xbe,0xd0,0xaf,0x08,0x36,0x66,0x33,0x41,0x21,0x0d,0xa7, + 0x22,0x1b,0xb1,0x5e,0x7e,0x9a,0x5e,0xaa,0x81,0xd4,0x24,0x78,0x29,0x90,0x36,0xf3, + 0x28,0xcf,0x38,0x19,0x17,0xc5,0x39,0xad,0x45,0x3f,0x5e,0x8e,0xcc,0xef,0xaa,0x91, + 0xc6,0x5d,0x24,0x17,0x87,0x6e,0xb1,0x05,0x4c,0xb6,0x0a,0x12,0xa3,0x42,0x88,0xca, + 0xea,0x75,0x5a,0xd5,0xa4,0xfd,0x38,0x3c,0xb7,0x30,0xc4,0xfa,0x61,0x68,0xf9,0x8c, + 0x3b,0xfb,0x35,0xcd,0xe8,0x43,0x19,0x46,0xb3,0x30,0x33,0x97,0xe1,0x06,0xa0,0xbe, + 0x1f,0x67,0x47,0x4f,0x4c,0xcc,0x83,0x27,0x1c,0xbb,0x7a,0x4f,0x00,0x80,0xc6,0xe9, + 0xcb,0x77,0x67,0xaf,0xdf,0xbd,0x7c,0xd3,0x37,0x7f,0x10,0xff,0x13,0x1f,0xd2,0xac, + 0xbf,0x40,0x45,0xa2,0x6b,0x9a,0x36,0x45,0xfe,0x8d,0xba,0x84,0xa1,0xf6,0xc4,0x4d, + 0xdf,0x82,0xf6,0x9d,0x3f,0xbd,0x08,0x7c,0xf1,0x20,0xed,0x78,0xa7,0x9c,0xb0,0x40, + 0x55,0x09,0x3d,0x6f,0x94,0x4a,0x0b,0xa0,0x78,0x07,0xac,0x2d,0xed,0xb6,0xec,0xe1, + 0xf8,0xb2,0x1b,0xce,0x82,0xc0,0x46,0xdf,0xa7,0xee,0xe2,0xde,0xa6,0xab,0xf2,0xf0, + 0x07,0xe7,0x9c,0x4a,0xbb,0xe7,0x17,0x76,0x48,0xca,0x3a,0x94,0x26,0x8d,0x1f,0xcf, + 0x4d,0x12,0x78,0x00,0x6a,0x98,0x75,0x17,0x68,0x99,0xa0,0x32,0x68,0x53,0x80,0x1f, + 0xf7,0x36,0x72,0xf1,0x33,0x80,0xa4,0x87,0x57,0xa6,0xf1,0x13,0xd7,0xb8,0xef,0x3d, + 0x79,0x32,0x9e,0x85,0x6c,0x9f,0xfe,0xbe,0x91,0x5a,0x0b,0xb1,0xf5,0xd4,0xee,0x05, + 0x19,0x2c,0xb9,0x3d,0x25,0x03,0x5b,0x94,0x40,0x81,0x7b,0xad,0xbc,0x5e,0xe1,0x24, + 0x49,0xdc,0x5b,0x10,0x3b,0xa2,0x2c,0x42,0xe1,0xc4,0x49,0x03,0xa4,0xc9,0x43,0x17, + 0xa4,0xcd,0xfa,0xb6,0x50,0x0e,0x4d,0x2d,0xbd,0x3d,0x62,0xf7,0x8d,0xa9,0xb5,0x40, + 0x60,0x67,0xfd,0xef,0x1b,0xe6,0x77,0x2c,0x01,0x58,0xbd,0xcc,0x41,0x32,0xf4,0x42, + 0xdc,0x72,0x3d,0x85,0xe7,0x9c,0x76,0x00,0x32,0x36,0x4c,0x24,0x1c,0x50,0x8e,0x4e, + 0xa2,0x70,0x6e,0x68,0x09,0xcb,0x9c,0xcf,0x13,0xac,0xfa,0x79,0xd2,0x07,0xb0,0xc9, + 0xb7,0xb2,0xbb,0x86,0xb5,0xc8,0xaa,0x14,0x48,0x34,0x74,0x6f,0x77,0x40,0xb3,0xd1, + 0x07,0x07,0xf2,0x99,0x36,0x5b,0xf4,0xca,0x0b,0x2f,0xe1,0x85,0x93,0x70,0xd2,0xa4, + 0xc6,0xf6,0xf9,0xc6,0xe1,0x91,0x79,0xb1,0x7d,0x69,0xab,0x0e,0x86,0xb2,0xf8,0xc2, + 0xdc,0x30,0xbb,0x26,0x1d,0xf4,0x99,0xb6,0x79,0x88,0xbf,0x83,0x0c,0x7f,0x1e,0xe1, + 0xcf,0x4b,0xfc,0xb9,0x69,0x6e,0xc2,0xcf,0x3f,0x67,0x11,0x3c,0xdc,0x9f,0x0f,0x2f, + 0xee,0xa1,0xef,0xbc,0x73,0xd0,0xa3,0x1a,0x98,0x34,0xc4,0x8e,0xe2,0x0c,0x06,0x01, + 0xe8,0x8c,0x3f,0xfa,0xf8,0x9f,0xbb,0xbb,0xc5,0x3d,0xa6,0xa7,0xf6,0xc7,0x8d,0xa7, + 0xf8,0x0c,0x20,0x07,0x51,0xda,0xca,0x7f,0x22,0x93,0x6a,0xa6,0x00,0x70,0xcf,0xec, + 0x19,0xdb,0xdb,0x74,0x59,0x09,0x7d,0x48,0x51,0xbf,0x82,0xbd,0xf5,0xf3,0xd9,0xd9, + 0x07,0xe3,0xe4,0xc3,0x6b,0xe3,0xef,0x2f,0xcf,0x52,0xc3,0x1d,0x26,0x11,0xb0,0x9c, + 0x14,0xb6,0x37,0xf4,0x9c,0x72,0xcb,0xd4,0x5a,0xc6,0x00,0xdc,0xd8,0x10,0xb2,0xc2, + 0xc9,0x00,0x10,0xfa,0x05,0x5b,0x4f,0x02,0x2f,0xa1,0x61,0x19,0xd8,0x03,0xe6,0x7b, + 0xcc,0x2f,0x56,0xe1,0xfc,0x1c,0xa8,0x22,0xb8,0xc6,0xd8,0x43,0xf7,0x1a,0x79,0x58, + 0x82,0x96,0x8d,0x6b,0x4e,0xda,0xe6,0x02,0x13,0x77,0x47,0xda,0x61,0x49,0x4f,0x36, + 0xe6,0x62,0x2f,0x98,0x00,0x84,0x84,0x16,0x17,0x7b,0xda,0x4c,0x29,0x4f,0xe4,0x2d, + 0x39,0x75,0x53,0x04,0x6d,0x8a,0xda,0x04,0x72,0x30,0xaa,0x85,0xe8,0x33,0xcc,0x82, + 0x3e,0x9e,0x8f,0x94,0x06,0xd9,0xb0,0x7a,0x34,0x17,0xcc,0x5e,0xe5,0x06,0x7d,0x28, + 0x25,0x7e,0x72,0x7f,0xf5,0x68,0x82,0xa5,0x68,0x18,0x0d,0xc0,0x0b,0x1d,0x14,0x74, + 0x85,0xc5,0x3d,0xfc,0x2b,0xf9,0x15,0x4e,0x4f,0x5b,0x28,0x07,0xa3,0x83,0xf3,0x96, + 0x24,0x88,0x00,0xa0,0x89,0xf0,0x61,0xea,0xf7,0xfb,0xbb,0xad,0xb6,0xb5,0x40,0xac, + 0x7b,0x83,0xe9,0x6e,0x61,0x80,0xd9,0x04,0x13,0x75,0xe3,0xe0,0x5f,0x26,0x09,0xec, + 0x39,0x13,0x69,0x0d,0xa0,0x24,0xd5,0x15,0x3d,0x25,0xce,0x1f,0x29,0x8e,0xad,0xd4, + 0xc3,0x1f,0xa2,0x07,0x46,0x87,0xc4,0x89,0xae,0x36,0x36,0x64,0x57,0x4f,0xfb,0xfd, + 0x4e,0xab,0xa3,0x0a,0x30,0x98,0xbc,0x7e,0xde,0xcf,0x1f,0x78,0xf1,0x42,0x94,0xdc, + 0xdd,0x35,0x4c,0x42,0x09,0x73,0x4b,0x56,0xb5,0xac,0x9e,0xaa,0xe5,0xc9,0x91,0xcb, + 0x8f,0x3d,0x0f,0xf6,0xc0,0x9f,0x40,0x77,0xff,0xe0,0xbf,0x79,0x51,0x9e,0x88,0x27, + 0x5f,0xdc,0x8b,0xbf,0x62,0x0a,0x7f,0xf0,0xfb,0x7b,0x06,0x22,0x5d,0xa7,0xae,0xf0, + 0x3d,0x8e,0x80,0x10,0x10,0x1c,0x31,0x65,0xb8,0xda,0x75,0x6a,0x1b,0x2c,0xa6,0x1e, + 0x08,0x95,0xa3,0xae,0xf9,0xe1,0xfd,0xe9,0x99,0x69,0x73,0x96,0xe9,0xb4,0xbb,0x30, + 0x05,0x85,0x68,0x9e,0x01,0x09,0x82,0xbd,0x85,0xa1,0xb8,0x22,0x5b,0xd1,0x36,0x02, + 0xcc,0xbc,0xa7,0x06,0xbb,0xff,0x38,0x7d,0xff,0xce,0x49,0x69,0x0f,0xfb,0xe3,0xdb, + 0x06,0x75,0x72,0xaf,0xef,0xf6,0xe9,0xd5,0x47,0xef,0x4f,0x10,0x56,0x08,0x5c,0x08, + 0x28,0x97,0x00,0xf5,0xc9,0x0f,0xb3,0x03,0xa2,0x74,0x8d,0x03,0x4b,0xec,0x3a,0xb1, + 0x1b,0x86,0xc9,0x6d,0x9c,0x45,0x1b,0x1b,0xfc,0x17,0x85,0x9e,0x8f,0x2e,0x7c,0x98, + 0xfe,0x27,0x85,0x07,0x58,0xf5,0xaf,0x1b,0x2e,0xb5,0x42,0x71,0x11,0xb0,0x1b,0x1a, + 0xd8,0x93,0xdf,0x6f,0xf5,0xfc,0xc3,0x83,0x9e,0xbf,0xb5,0x65,0xb9,0xe7,0xfe,0x45, + 0xff,0x2d,0xcc,0xd8,0x21,0x0b,0x72,0x83,0x7e,0x26,0xd4,0x40,0xc3,0xfa,0xa1,0xb3, + 0xb7,0x4f,0xd5,0x97,0x50,0xe0,0xa9,0x1b,0x33,0xfd,0x75,0x73,0x92,0x34,0x10,0xeb, + 0xcf,0x55,0x1a,0x83,0xc3,0xf6,0xfe,0xb1,0xd9,0x02,0x48,0x99,0xd6,0xd6,0xc0,0xc9, + 0x22,0x41,0xd7,0xda,0xfb,0x62,0x55,0x9c,0x3f,0x22,0xc0,0x49,0xf8,0x8a,0xcb,0xa3, + 0xd3,0xa3,0x38,0xb8,0x7d,0xe5,0xc1,0xf2,0x03,0x47,0x62,0x20,0x01,0x33,0xd8,0x3c, + 0x97,0x47,0x4d,0x17,0x20,0xdc,0xc1,0x7c,0x5e,0x02,0x99,0xc9,0x91,0xd3,0x0b,0x44, + 0xe7,0x5e,0xa0,0xd1,0xdd,0x2c,0xba,0xbc,0x0c,0x80,0xee,0x92,0x2c,0x62,0x3f,0x6d, + 0xc0,0x2b,0xe4,0x83,0x1b,0xef,0xe8,0xdc,0x1c,0x2a,0x39,0xd8,0x28,0x6c,0x4c,0x7c, + 0x6d,0x59,0x0a,0x5b,0x78,0x59,0xc8,0xa1,0xfa,0x85,0x9b,0x8c,0x88,0x5b,0x54,0x02, + 0x42,0xe4,0x1a,0xa9,0x62,0x96,0xfa,0xb5,0xc6,0x10,0x1a,0xed,0xce,0xc1,0x1d,0x02, + 0x99,0x7b,0x85,0x19,0x9a,0x4e,0x31,0x93,0xc0,0x92,0x59,0xae,0x9a,0x60,0x9a,0x39, + 0x15,0x99,0xc0,0xba,0x97,0x03,0xc5,0xcf,0x2c,0x3f,0x08,0x58,0x11,0x2d,0x0b,0xfc, + 0x33,0x77,0x00,0x33,0xdc,0xfc,0x4e,0xbb,0xee,0xf9,0x5c,0x4f,0x57,0x01,0x00,0xef, + 0x41,0x75,0x2e,0x69,0xf1,0x1f,0xc9,0xd2,0xc4,0xe6,0x25,0x76,0x4a,0xd6,0x77,0xab, + 0xcc,0x3c,0x69,0x68,0x8a,0x98,0x41,0x3b,0x3c,0x0a,0x94,0x69,0x2c,0xc6,0x94,0x1e, + 0x1a,0xf1,0x81,0x1a,0xbf,0x0f,0x3d,0xe3,0xe7,0xb3,0xb7,0x6f,0x40,0xd5,0x43,0x23, + 0xb9,0x08,0xe9,0x42,0x2a,0x7e,0x6b,0xbc,0x3c,0xfd,0xb0,0xd3,0x21,0x5b,0x31,0xa7, + 0xfc,0xc5,0x78,0xff,0xb9,0x4b,0x29,0x8a,0x71,0x9a,0x29,0xea,0x20,0x94,0xa4,0xd3, + 0xcf,0xb8,0x31,0x77,0x98,0xcd,0x00,0x3f,0x6f,0xd1,0xd3,0x1d,0x33,0xba,0xd2,0x29, + 0xc5,0x20,0xf1,0x47,0x97,0x5e,0x0f,0x99,0x02,0x80,0xc8,0x0f,0x5d,0x68,0x79,0x30, + 0xf3,0x83,0x11,0xe7,0x57,0xb8,0x16,0x59,0x96,0x13,0x97,0x9a,0xca,0x80,0x97,0x70, + 0x63,0x48,0x41,0x91,0xa9,0x08,0x73,0xbe,0x30,0xba,0x93,0x0e,0x84,0x8e,0x5c,0xe1, + 0x08,0x19,0x11,0xe5,0x41,0x46,0xdc,0x75,0x04,0xfe,0xe0,0xa1,0xc9,0x2a,0xd8,0x92, + 0x6f,0xbc,0x00,0xae,0x28,0x6b,0x89,0xbf,0x05,0xf0,0x32,0x70,0xa9,0xf4,0x0a,0xe8, + 0x62,0x29,0xcc,0x53,0xf7,0x40,0x11,0x4a,0xa4,0xfd,0x40,0x99,0xf2,0x69,0xcf,0x83, + 0xbd,0x6a,0x29,0xae,0xad,0x82,0x30,0x65,0x3e,0x26,0xe1,0x35,0xc5,0x39,0x8d,0xfd, + 0xcb,0x99,0xb8,0x27,0x83,0xce,0x28,0xa0,0x9a,0xab,0x9d,0xba,0x70,0xdd,0x37,0x27, + 0xef,0x1c,0x53,0xeb,0x3e,0x4f,0x77,0x5b,0xea,0x9e,0x93,0xdf,0x42,0x97,0x9c,0xc1, + 0x35,0x14,0xc9,0x5d,0x73,0xc7,0x64,0xbd,0x15,0x2d,0x6f,0x60,0xa9,0x19,0x4e,0xc9, + 0x54,0x28,0xab,0xa7,0x70,0xb2,0x1c,0x1f,0x66,0x99,0x20,0xee,0x42,0x97,0xa5,0xbc, + 0x7f,0x95,0x74,0x4e,0x35,0xcd,0x50,0xb2,0x22,0xcb,0x91,0xea,0xad,0x26,0x1e,0x88, + 0x3c,0x57,0xf7,0x44,0x22,0xb7,0x7f,0x00,0x15,0x53,0xfe,0xcf,0x20,0xd5,0x53,0x7b, + 0xfe,0x61,0x3b,0xa7,0xa1,0x7c,0x2a,0x8c,0xbb,0x1c,0xd9,0x9a,0xb9,0x0d,0xff,0xdd, + 0x16,0x8e,0xcd,0x65,0xb6,0x9e,0x0a,0x62,0x00,0x6b,0x8b,0xfa,0x47,0x3f,0xa5,0x3f, + 0x3d,0x5c,0x6a,0x52,0x43,0xe0,0x05,0xfe,0xe8,0xe5,0xdb,0xb6,0xff,0xf4,0x29,0x14, + 0x82,0x1f,0x3d,0x45,0x50,0xe8,0x15,0x0c,0xbe,0x57,0x47,0x81,0xe8,0xa3,0x7c,0xfb, + 0x39,0x95,0xaf,0xb1,0x6c,0x41,0x53,0xa1,0x72,0xf4,0xe6,0xb3,0x2c,0xdd,0x13,0xe4, + 0xb2,0x8f,0xf2,0x66,0xec,0x0e,0xfc,0xc0,0xcf,0x7c,0x0f,0xe4,0xd2,0x16,0xd5,0x26, + 0x3d,0x05,0x07,0x88,0x41,0xc6,0xde,0x67,0x7a,0xbc,0xbb,0x4b,0x9d,0x04,0xb3,0x51, + 0x4c,0xd5,0x8b,0x56,0x4e,0xa4,0xc4,0x8d,0x15,0xc5,0xf5,0x85,0x5e,0xe1,0xe5,0xdd, + 0x9d,0x29,0x4d,0x27,0xa6,0x5e,0x01,0xef,0xaf,0x28,0x97,0x47,0x42,0xb4,0x65,0x1a, + 0x3f,0x80,0x1c,0x93,0x3a,0xe3,0xb9,0xfa,0x49,0x8e,0xb7,0x3d,0x45,0x5c,0x07,0x7d, + 0x6e,0x82,0xaf,0xae,0xb0,0x7a,0x83,0x1a,0x9d,0x20,0xdf,0x4b,0x4c,0x1d,0x79,0x15, + 0xfa,0x7d,0x93,0x8c,0x2e,0xa6,0xb5,0x18,0x94,0x50,0x1a,0xef,0x1c,0x30,0x0b,0x4d, + 0xb1,0x92,0xc2,0xc5,0xef,0x91,0xdf,0x97,0xeb,0xc0,0x7e,0x31,0x59,0x42,0x2a,0x31, + 0xd7,0x9e,0x2e,0xf7,0xe5,0x2b,0x7c,0x9c,0x63,0x8d,0x50,0x0b,0x91,0x06,0x60,0xae, + 0x10,0x5d,0x74,0x15,0xfa,0x47,0xae,0x38,0xde,0xdf,0x5b,0x5d,0xfd,0x51,0xb0,0xf9, + 0x22,0xbe,0xc5,0x39,0xbe,0x89,0xa2,0xfd,0x58,0xfe,0xba,0xbb,0x3b,0xbf,0xc8,0x21, + 0x91,0x55,0x40,0x81,0x74,0xf8,0x57,0xca,0xb9,0xd5,0x10,0x22,0x2b,0x49,0x37,0x82, + 0xb7,0x31,0xbe,0x16,0xe4,0xdd,0xbc,0xd0,0x22,0x4f,0x7e,0x75,0xcf,0xc3,0x2a,0xcd, + 0xc7,0xcb,0x05,0x68,0xcf,0x11,0x01,0x3b,0x20,0xd6,0x0a,0x01,0x79,0xb1,0x0c,0x17, + 0x4c,0xcd,0x07,0x0b,0xaf,0x7a,0xf5,0x46,0x46,0x93,0x35,0x08,0x60,0x18,0x66,0x4f, + 0x13,0xfa,0x71,0x4f,0xda,0x9d,0x16,0x69,0x7e,0x52,0x28,0xcd,0x77,0x2c,0x0e,0xba, + 0x71,0x6d,0x2d,0xce,0xcd,0xef,0xe4,0x8d,0x24,0x36,0xfe,0x14,0xb7,0x46,0xd0,0x6f, + 0x4c,0x98,0x75,0x51,0x95,0x0a,0xfc,0x11,0x0e,0x0f,0xfe,0x5b,0x4f,0xa6,0xa1,0xa7, + 0xef,0xa1,0xe5,0xe5,0xa8,0x37,0x8b,0x81,0x23,0x79,0x78,0xd0,0xf2,0xa3,0x9b,0x34, + 0x74,0x49,0x55,0x83,0x24,0x41,0xb5,0x91,0x0f,0xce,0xaa,0xd0,0x23,0x7a,0x5f,0x22, + 0x48,0x08,0x35,0xed,0xea,0x11,0x0b,0xc7,0xf5,0x12,0xcf,0x0e,0xde,0x50,0x10,0x37, + 0xc8,0x60,0xf2,0x34,0x2c,0x17,0x23,0xbd,0x6b,0x5a,0x09,0xef,0xba,0x72,0xce,0x20, + 0x05,0xb3,0x41,0x16,0xf6,0xf3,0x96,0xf1,0xe8,0x08,0xb6,0x56,0x16,0x3a,0xf2,0x12, + 0xef,0x3e,0x9e,0x7b,0xf4,0xf2,0x12,0x98,0x51,0xad,0xb4,0x6a,0xb4,0xc3,0x59,0xa5, + 0x62,0x3c,0x17,0x20,0xff,0x0b,0xc2,0x3f,0x61,0x4f,0x9d,0x06,0xb0,0x90,0xd4,0xac, + 0x9b,0x0f,0x09,0x7d,0xad,0x2c,0x87,0xce,0x8c,0x41,0x37,0xb0,0xa0,0x6e,0x55,0x9f, + 0x7b,0x50,0x1d,0x13,0x1b,0x30,0xed,0x4a,0x75,0xc9,0xfe,0xa3,0xfb,0xc7,0x7d,0x7d, + 0x7b,0x37,0x02,0xbd,0x0b,0x70,0x22,0xd3,0x90,0xda,0x70,0x37,0x0e,0xaa,0x8c,0x80, + 0xa1,0xb0,0xd8,0x8a,0xfa,0x97,0x40,0xa9,0x8d,0x1b,0x81,0x58,0xdc,0x54,0x62,0x3b, + 0xae,0x02,0xfc,0x8d,0xa3,0x34,0x41,0xbe,0x82,0x45,0x6c,0x1a,0xb3,0x57,0xbb,0x29, + 0x81,0xfa,0x55,0xc7,0xbb,0x72,0x61,0xb5,0xed,0x48,0xfd,0x98,0xb4,0xd1,0xe0,0x5f, + 0x85,0xd4,0xb9,0x33,0xd3,0x82,0x54,0x41,0xb5,0xfe,0xe8,0xd6,0x60,0x2f,0x2a,0x04, + 0x4b,0x87,0x06,0x0f,0x40,0x27,0x30,0x35,0x43,0xbe,0xaf,0xee,0x0d,0x16,0x6c,0x0c, + 0x0c,0xa5,0x32,0xb6,0x8d,0x01,0x3a,0x59,0x2e,0xe1,0xdc,0xc3,0xf1,0x25,0xa8,0x6f, + 0x8d,0x2b,0x6b,0x81,0x82,0x27,0xa8,0x59,0x86,0x6b,0xfc,0x0b,0xa8,0xc8,0xbf,0x28, + 0x18,0x2d,0x13,0x72,0x92,0xc8,0xe7,0xc5,0x69,0x99,0x18,0xd3,0x6c,0xf6,0xd5,0x44, + 0x86,0x39,0xbe,0x14,0x1b,0x65,0xd8,0xe7,0x47,0x7b,0x6a,0x27,0xfd,0xa1,0x43,0x02, + 0x8e,0xfd,0x27,0xfc,0x42,0xee,0x7d,0x77,0xb7,0x60,0x3b,0x1f,0x1a,0xf1,0xe6,0xf0, + 0x12,0x85,0x38,0xa1,0x2a,0x34,0xa6,0xfd,0x2b,0x87,0x92,0x43,0x35,0xb6,0xff,0x89, + 0x85,0x1b,0xe7,0xed,0xe6,0xf3,0x0b,0xeb,0x77,0xa7,0xf1,0xfb,0x7c,0xcb,0xfa,0x7e, + 0x1b,0xd4,0x16,0xb2,0xa4,0xa5,0xfd,0xc6,0x9f,0x8e,0x60,0xb3,0xe7,0x17,0xd6,0xf9, + 0xd6,0xf4,0xbc,0x7d,0xd1,0x6c,0x5f,0x90,0xe5,0x08,0x0b,0x5c,0xf7,0xd3,0xf3,0xe9, + 0x79,0xe7,0xe2,0x42,0xda,0xdd,0xaf,0xfb,0x7d,0x34,0x40,0x1e,0x9b,0x66,0x57,0x28, + 0x84,0xd7,0x84,0x3c,0x1c,0x1e,0x85,0x13,0x27,0x4c,0xc2,0xb0,0x42,0xce,0x46,0xd7, + 0x55,0xfb,0x00,0x1f,0x7b,0xf4,0x01,0x53,0xc3,0x75,0x8b,0xe6,0xb2,0xc4,0x81,0x97, + 0x96,0xf8,0x0c,0x1b,0xb2,0xfa,0x39,0x0a,0x05,0xbf,0xa3,0x32,0xd9,0x4d,0xb5,0x48, + 0x76,0x23,0x1a,0x70,0xc7,0xd5,0x8f,0xee,0x58,0xaf,0x2e,0x33,0xc1,0x54,0x8a,0x89, + 0x0f,0xa2,0xa1,0x6c,0x59,0xb1,0x4c,0x16,0xcb,0x9b,0xc4,0x9c,0x26,0xf9,0x64,0xe1, + 0xe9,0x18,0xe3,0x52,0xba,0xe4,0xcb,0xc0,0xad,0x15,0xd2,0x87,0xe4,0x45,0xf9,0x85, + 0x5e,0x5a,0x1b,0x67,0x39,0x55,0x47,0x5e,0x0d,0x5e,0x7e,0x5e,0x59,0x95,0x13,0x5f, + 0x68,0xfd,0xd0,0x8b,0xfa,0xc2,0x79,0x70,0x7f,0x65,0xaa,0xf4,0xe9,0x33,0x7c,0xb2, + 0xea,0xca,0xcb,0xe8,0xfa,0xe5,0xd5,0x3e,0x73,0x89,0xfa,0xda,0x2a,0x88,0x7d,0x45, + 0x7d,0x59,0x46,0x6f,0x41,0x0f,0xfe,0xce,0x67,0x88,0x6f,0x3f,0xf3,0x5b,0xad,0x6c, + 0x39,0x47,0x45,0x15,0x35,0xa8,0xc0,0x67,0x59,0xa0,0x3a,0xd2,0x07,0x5b,0xe0,0xc1, + 0xae,0x68,0x47,0xf9,0xec,0x8a,0xaa,0xa6,0x0e,0xfc,0xdc,0xe1,0x59,0x36,0x3c,0xa7, + 0xc7,0x5e,0xfe,0x15,0x09,0x77,0xfe,0x11,0x9e,0xf4,0x6f,0xca,0xfb,0x56,0x2b,0x21, + 0xdf,0x69,0xdd,0xe8,0x41,0xd3,0xb2,0xe4,0x9f,0xe2,0x45,0x2f,0x2f,0x41,0xc1,0xc5, + 0xf9,0x77,0x7c,0x2c,0x37,0x22,0x74,0x91,0xbc,0x10,0xbf,0xa8,0x20,0x7c,0x21,0x96, + 0x31,0x2f,0x2d,0xde,0xd4,0x63,0xa2,0x0a,0x1b,0xcc,0xcb,0xc3,0x53,0x7d,0xd3,0x1a, + 0x11,0xf8,0x13,0x1e,0xb4,0x2f,0x89,0xfe,0x25,0xb9,0x59,0xd1,0xd5,0xb2,0x45,0xfd, + 0xd3,0xa9,0x5b,0xc7,0x52,0x24,0x5d,0xde,0x87,0x7a,0x57,0x3f,0xd2,0x9a,0x78,0xa7, + 0x4a,0x7f,0xaa,0xcc,0xe7,0xe5,0x3d,0x67,0xb1,0xde,0x67,0x16,0x57,0x96,0x97,0xa2, + 0xab,0xb5,0xd5,0xc5,0x67,0x6d,0x1c,0x1c,0x88,0x9c,0x7f,0xa7,0x67,0x9d,0xac,0xca, + 0x90,0x19,0x0d,0xae,0xe2,0x55,0xaf,0x50,0x40,0xc6,0xa8,0x54,0x66,0x21,0x0b,0x7c, + 0xe6,0x02,0xfa,0x14,0x28,0x44,0x44,0x43,0x1a,0x78,0xac,0x40,0xab,0x14,0xde,0x51, + 0x2c,0xfd,0x59,0x7d,0x28,0x5a,0xd7,0x71,0x37,0xe9,0xe7,0x31,0x01,0xf2,0x60,0x61, + 0x53,0x44,0x85,0x20,0x70,0xc8,0x29,0xa6,0xaf,0xc5,0xad,0x08,0xe3,0x15,0x19,0x1c, + 0xd9,0x9b,0xb0,0x84,0x23,0xf9,0x77,0x62,0xd3,0x85,0x0e,0x52,0x3c,0xb6,0x86,0x66, + 0xed,0xeb,0x95,0x5d,0xe4,0x6d,0xf7,0x1b,0xd7,0xf8,0x29,0x0a,0xcd,0xdc,0xa8,0x2b, + 0x5b,0xee,0x5f,0x17,0xda,0x26,0x8a,0xff,0x22,0x9a,0x0e,0xa2,0xdc,0xc2,0x1c,0xf7, + 0x81,0x1d,0xa3,0x8d,0xf1,0x5c,0x24,0xc4,0xbb,0x58,0x66,0x5e,0x8c,0xcf,0x35,0xab, + 0x28,0x94,0xeb,0xcb,0x5e,0xee,0x75,0x73,0x70,0xec,0x60,0x96,0xc5,0x2d,0x50,0x4b, + 0xb6,0x62,0x67,0x30,0x17,0x3f,0xd2,0xb1,0xf8,0x31,0x4c,0x0a,0x23,0x42,0xb1,0x87, + 0x7d,0x43,0x79,0x44,0x9a,0xc5,0x9d,0x85,0x2f,0x16,0x8f,0x2a,0xa6,0x89,0x61,0xae, + 0x2a,0x82,0x10,0xd3,0x1f,0xa2,0xce,0x8f,0xd4,0x06,0x27,0x03,0x3f,0xe9,0xe8,0xb2, + 0xcf,0x27,0x54,0x65,0xcb,0xe2,0x82,0xcc,0x7a,0xa7,0x28,0x98,0x80,0xb4,0x98,0x47, + 0xd2,0x81,0xa2,0xa0,0x7f,0x50,0xf9,0xc9,0x85,0xfc,0x9a,0x83,0xe8,0x6a,0x29,0x84, + 0x9e,0xe4,0x27,0x1c,0x57,0x7d,0x0d,0x58,0x57,0xf6,0x75,0x5f,0x49,0x6f,0xf2,0x5c, + 0x42,0x8c,0xf8,0xfc,0xea,0x02,0x56,0x49,0x5b,0xf5,0x5e,0xc1,0x8c,0x2b,0x15,0x32, + 0x9a,0x91,0xa9,0x2a,0x63,0x17,0x81,0x3b,0xe8,0x53,0x59,0xbc,0xe6,0x0f,0x84,0x55, + 0x67,0x0c,0xdf,0x49,0xb6,0x9b,0xf4,0xe1,0xdb,0xc6,0x06,0xfc,0xa7,0x74,0x8e,0x6a, + 0x3a,0x98,0x4e,0xd4,0x64,0xa3,0xed,0xc4,0x1a,0x4e,0x4a,0xc6,0xda,0x7b,0x69,0xb4, + 0x55,0x93,0x1d,0x8e,0xa7,0x17,0x2b,0xec,0xcd,0x52,0xdc,0xaf,0x56,0x5c,0x81,0x48, + 0xaa,0x9e,0xd8,0xd8,0x42,0xfc,0x2c,0xa1,0xd7,0x6a,0x40,0xc8,0x0e,0x05,0x14,0xb9, + 0x85,0xbe,0x8e,0xe0,0x3d,0x77,0xfc,0x33,0x10,0xbb,0x86,0x55,0x87,0x04,0xf9,0xa9, + 0x47,0xbb,0xe7,0x1f,0xf6,0x95,0xc5,0x88,0x8e,0x3f,0x40,0x7b,0x02,0x1c,0x4e,0x27, + 0x88,0x0a,0xaf,0xd0,0x27,0x30,0x6d,0x7c,0x5f,0x44,0x15,0xdb,0x47,0x67,0x91,0xba, + 0x42,0x39,0xda,0x40,0x19,0xc6,0x9c,0x92,0x12,0x5d,0x73,0xee,0x34,0x75,0x93,0xab, + 0x9f,0x70,0x5e,0x0d,0xc0,0x14,0x3b,0x27,0x2e,0xb8,0xb1,0x73,0x34,0xb1,0x16,0x20, + 0x17,0x82,0x00,0x62,0x48,0x04,0x87,0x77,0x6c,0xd3,0xd1,0x5e,0xf4,0xaf,0xef,0x25, + 0xd5,0xb0,0x6a,0xcf,0x03,0x18,0x7e,0xf6,0x15,0xba,0xea,0xc8,0x7a,0xf2,0x18,0xe0, + 0x0a,0x09,0x09,0x08,0xb8,0x96,0x0e,0xba,0xca,0xf0,0xef,0x9f,0xc8,0xc3,0xd6,0x37, + 0xaf,0x37,0x53,0xe3,0x5f,0xa3,0x59,0x76,0x3b,0xbc,0x1d,0x06,0xde,0xbf,0xe4,0x9d, + 0x7f,0xa8,0x88,0xa0,0x75,0x15,0xb4,0xf4,0xb1,0xd1,0x44,0xf7,0x1f,0xbc,0xf0,0xdc, + 0x98,0x27,0x3e,0xe6,0x2b,0x76,0x39,0x0b,0xe4,0x67,0x4e,0x62,0x68,0xb8,0x29,0xb6, + 0xd7,0x6e,0xb5,0xb6,0x1b,0xa3,0xa1,0xd5,0x6c,0x3b,0xc6,0xa9,0xb0,0xa9,0xa3,0x29, + 0x16,0xc3,0x08,0x01,0x59,0x50,0xa5,0xc1,0x7e,0x0c,0xea,0xc8,0x18,0x78,0x20,0xc2, + 0x78,0xc6,0xbf,0xdc,0xf1,0xbf,0x8c,0x4b,0xe5,0x56,0xc4,0x31,0x8f,0xd8,0x1a,0x27, + 0x9c,0xc7,0x30,0x62,0x65,0xec,0x4f,0x3c,0x37,0xc5,0x23,0xa4,0x01,0x3a,0x85,0xc9, + 0x6b,0x00,0x5d,0xf4,0x6c,0x8c,0x40,0xe5,0x62,0xd7,0xcf,0x31,0x3a,0x74,0x60,0xcf, + 0xd1,0xb5,0xf0,0xf9,0xc5,0x19,0x38,0xda,0x01,0x94,0x80,0x8b,0x24,0x9e,0x1e,0x19, + 0x1b,0x38,0xd7,0x24,0x6d,0xaa,0xa7,0x9e,0x3a,0xb9,0x10,0x07,0x78,0xe3,0x7e,0xec, + 0x26,0xa9,0xf7,0x0a,0x23,0x50,0x1a,0xea,0xb0,0x8a,0x33,0x5b,0xe2,0x79,0x15,0xed, + 0x04,0xa6,0xdc,0x05,0x75,0xd5,0x4f,0x5f,0xd1,0xc5,0xf6,0x0d,0x50,0x2e,0x36,0x36, + 0xdc,0xf1,0x51,0xbf,0x75,0x6c,0xfe,0x6f,0xc3,0xdc,0x12,0xa7,0x71,0x78,0xa3,0x70, + 0x03,0xa0,0x06,0x60,0x73,0xc7,0x5b,0x6d,0xcb,0xda,0x6e,0xb7,0xac,0x2d,0xf3,0x6f, + 0x1a,0x98,0xf0,0x7c,0x0d,0x97,0x4b,0x39,0x42,0x54,0x4d,0x2c,0xe4,0x34,0x5e,0xb5, + 0xb0,0xd0,0xdc,0x82,0xbe,0x77,0xed,0x64,0xe4,0xbe,0xd1,0x53,0x9c,0x48,0x91,0xb4, + 0xfc,0xdc,0x9d,0x72,0x49,0x8f,0x66,0x6c,0xf5,0xf0,0x18,0x94,0xa9,0xd1,0x10,0xd7, + 0x47,0x5e,0xa7,0x68,0x59,0x34,0xd2,0x09,0x1e,0xc9,0x80,0xa2,0x9a,0x92,0x2b,0x60, + 0x7a,0x1b,0x0e,0x25,0xc1,0xc8,0x41,0xb2,0xb9,0xa5,0xf7,0xb0,0xb5,0x69,0xd6,0x1e, + 0xe8,0x45,0xd6,0x02,0x7d,0x03,0x9e,0xf6,0x81,0xfa,0x59,0x4c,0x38,0x23,0x5b,0xf1, + 0x65,0x45,0x19,0xf2,0x4d,0x55,0xa0,0xc4,0xaa,0x20,0xee,0x33,0xda,0x8b,0xd2,0x50, + 0xa8,0x9f,0xf9,0x8d,0xa7,0x62,0x7e,0xda,0xf9,0x22,0x66,0x83,0x2e,0x8c,0x10,0xde, + 0xac,0x35,0xc6,0x48,0x90,0xbb,0x22,0xbf,0xac,0xeb,0x37,0xb9,0xd4,0xce,0xdf,0xae, + 0x8b,0xe4,0x6c,0x3d,0xfa,0x0a,0x1d,0x47,0xcb,0x77,0xfd,0xf5,0x53,0x45,0x50,0x98, + 0x62,0xd6,0x40,0x4b,0x44,0x31,0x20,0x27,0x52,0x43,0x49,0xfb,0xf2,0x54,0x02,0x99, + 0x87,0x5a,0x74,0xdc,0x74,0x62,0x99,0xc5,0xdd,0x76,0x18,0x54,0x8a,0xfe,0xc0,0x06, + 0x5e,0x36,0x9b,0x66,0x8a,0xf2,0x6e,0x6c,0xa4,0x0e,0xc7,0xcd,0xa5,0x0e,0x3b,0xf1, + 0x17,0xb8,0xe5,0xb4,0xdf,0x6c,0xf7,0x3e,0x9e,0xfc,0xf4,0xfa,0xfd,0xe7,0x0f,0x1f, + 0x5f,0x9e,0xbe,0x3c,0x3b,0xad,0xce,0x2c,0x06,0x82,0x8a,0x40,0x1d,0x22,0x3c,0x5e, + 0xfe,0xd9,0xe0,0x1e,0x19,0x3a,0xb1,0x05,0xc3,0xb5,0xa6,0x7d,0xff,0x3e,0x67,0xaf, + 0x02,0xe8,0x53,0xdc,0x38,0x82,0xd1,0x4c,0xad,0x6e,0x43,0xce,0xaf,0x40,0xff,0x8e, + 0x4d,0x9c,0x8f,0xd9,0x4d,0xb5,0xed,0xc8,0x42,0xe0,0x7d,0xd1,0x42,0x54,0x22,0x86, + 0x72,0xaf,0x84,0xfd,0xf7,0x03,0xcc,0x6e,0xe3,0x20,0x82,0x37,0x54,0xb3,0x62,0xaa, + 0x8a,0x16,0xc4,0xf1,0x7f,0xfa,0xa9,0x3f,0x08,0xbc,0xfe,0xd3,0xef,0x1b,0xd2,0x6c, + 0xab,0x9b,0x5f,0x45,0x36,0xbf,0xb4,0x72,0x34,0x27,0x1c,0xf4,0xad,0x9a,0xa5,0x25, + 0xcf,0x21,0x3b,0x3c,0x6a,0x01,0x95,0x50,0x1d,0x14,0x6a,0x36,0xc3,0x92,0x29,0x2c, + 0xdc,0x6a,0x84,0x40,0xea,0xdb,0xc7,0xa6,0xf0,0x9f,0x07,0x4a,0x21,0x3d,0xe9,0xcd, + 0x22,0x6b,0xd2,0x9c,0xf7,0x17,0xba,0xb0,0x56,0xb1,0x84,0xb1,0x17,0x95,0xc9,0xfe, + 0xfd,0xa0,0x74,0x5b,0x35,0xb6,0x2e,0xe2,0x8c,0xcb,0xcc,0x5b,0xa9,0x64,0xa4,0x3f, + 0x67,0xd3,0xa0,0xe1,0xdb,0x63,0x1b,0xa5,0x5e,0x9b,0xc2,0x63,0x6c,0x3c,0xc1,0xd3, + 0x04,0xc4,0xcd,0x42,0xac,0xa9,0x91,0x8e,0x9b,0x9b,0x5b,0x63,0xd8,0x8b,0x32,0xc8, + 0x74,0x73,0x8b,0xfe,0x6e,0x6d,0xd6,0x06,0xb9,0x6e,0x6e,0xe1,0x5f,0x28,0x5e,0xc8, + 0x59,0xb0,0xb9,0xe5,0x6f,0x6d,0x3a,0xdc,0xce,0x5f,0xb8,0xa4,0x68,0x73,0xab,0x81, + 0x83,0x3d,0xde,0xac,0x26,0x31,0xd8,0xdc,0xc2,0xbf,0x38,0x28,0x74,0x06,0xdc,0xec, + 0x6e,0x6e,0x5a,0xea,0xa1,0x00,0x74,0x4d,0x10,0x4d,0x85,0x34,0x80,0xf8,0x33,0x89, + 0x52,0x74,0x4f,0xc3,0x57,0xc4,0x6b,0xf0,0xb9,0xc4,0x6e,0x26,0x00,0x3b,0x69,0xc2, + 0x5e,0x29,0xe2,0xa8,0xad,0x4d,0x1e,0x5d,0x9b,0xb5,0x61,0xb3,0x98,0xcc,0x09,0x78, + 0x60,0x53,0x85,0xbc,0x6e,0xf6,0x4a,0xe7,0x33,0x35,0xbb,0x14,0xe8,0x0f,0xb4,0xb8, + 0x55,0x69,0x12,0x28,0x67,0x3a,0x6c,0xc4,0x64,0xa9,0xb3,0x70,0xa9,0x4a,0x2f,0xf2, + 0x4e,0xe4,0x1e,0xae,0x6f,0x67,0x08,0x92,0x44,0x34,0x35,0x8f,0xf8,0x2f,0x5d,0xf6, + 0x5b,0x1c,0x1d,0x82,0x00,0xab,0xe9,0x61,0x18,0x30,0x6f,0xb1,0xd8,0xf8,0x13,0x07, + 0xe3,0xd3,0x10,0x04,0xad,0xd8,0x2a,0x96,0xce,0xe8,0xa2,0x64,0x84,0xbf,0x41,0x05, + 0xd9,0x23,0x9b,0x96,0xa9,0xb6,0x82,0x16,0x5b,0x5d,0xb8,0x9d,0xb3,0x2e,0x05,0x0d, + 0x63,0x19,0x83,0x0f,0x61,0x40,0x93,0xdc,0x2c,0xc5,0x12,0xab,0x6e,0xca,0x7b,0xc2, + 0xcc,0xa2,0x2b,0x0f,0x8f,0x7f,0x94,0xcd,0xc7,0x36,0x4f,0x86,0x43,0x74,0xd6,0x96, + 0x5f,0x4c,0x6b,0x69,0xe5,0x59,0x8a,0xc9,0x7f,0xa7,0x1e,0x94,0xa2,0x00,0x31,0xdb, + 0xfc,0x94,0xbf,0x59,0x51,0x4f,0xeb,0x4c,0xfb,0xf9,0x21,0xff,0xb9,0xa2,0x2e,0x47, + 0x7f,0xe6,0x3d,0x72,0x56,0x13,0x42,0xe5,0x07,0x3a,0x8d,0x12,0x2c,0x21,0xf2,0x58, + 0x40,0x77,0xfc,0xbc,0xa2,0x06,0xa5,0x97,0xca,0x7b,0x3a,0xa3,0x3b,0xcf,0x32,0x0f, + 0x76,0x27,0x66,0x59,0x84,0x16,0xf2,0xb0,0xae,0xb4,0x6b,0x2c,0xd0,0xf8,0x74,0x6f, + 0x2c,0xd8,0x8b,0x1f,0x7e,0x20,0x4d,0xc0,0x3f,0x08,0xc7,0xfb,0x15,0xdd,0xb8,0xb3, + 0x91,0xef,0x85,0x43,0x0d,0x8a,0xff,0xf8,0xf5,0xcc,0xd0,0xde,0xaa,0x0b,0xb6,0x9a, + 0xda,0xcd,0xc1,0x08,0xfb,0x6d,0x84,0x9e,0xc1,0xa7,0x86,0x39,0x22,0xc9,0xfd,0xcf, + 0xfc,0x06,0x01,0xa3,0xf9,0x0c,0x20,0x32,0x97,0xe8,0x71,0x59,0xeb,0xc0,0x1a,0xb6, + 0x2f,0x55,0x86,0x3a,0xa2,0x80,0x9e,0x1a,0x7d,0x6a,0xb8,0xa8,0x0d,0x0a,0xc1,0x46, + 0xdf,0x12,0xc2,0xe7,0xe4,0x29,0x56,0x29,0xb5,0xc2,0x38,0xfb,0x32,0xe8,0xe3,0xb7, + 0xfa,0x96,0xea,0x70,0x1c,0x5b,0x94,0x5c,0x12,0xe3,0x22,0x65,0x33,0xd2,0xf4,0xc1, + 0x9f,0x46,0xde,0x98,0x6c,0xff,0xbd,0x07,0x68,0x0b,0x8c,0x8d,0x29,0x06,0xb0,0x2f, + 0x22,0x1c,0x58,0x31,0xce,0x1d,0xb3,0xc8,0x47,0xa0,0x2f,0x0a,0x48,0x5a,0x71,0x2c, + 0x7f,0x74,0x31,0x07,0xc0,0x31,0xfc,0xcb,0xbe,0x04,0x5d,0xa6,0x73,0xaa,0x32,0x72, + 0xd2,0xb7,0x6e,0xdc,0x67,0x1c,0xe8,0x72,0x5b,0xfd,0xbe,0xdc,0x74,0x72,0xfb,0xe4, + 0x1f,0xf0,0x0d,0xae,0xa9,0x79,0x77,0xa7,0xde,0x89,0xae,0xf8,0xcc,0x4f,0x1d,0xef, + 0xad,0xac,0xa2,0x36,0x55,0x4d,0x33,0xbc,0x7f,0xba,0x4b,0x9a,0x87,0x3d,0x51,0xfd, + 0x44,0xfb,0xa0,0xfa,0x5a,0x62,0x68,0xe5,0x0b,0x59,0x49,0x0a,0xf2,0x0b,0xc3,0xa1, + 0x46,0xba,0x1c,0x6b,0x8c,0x63,0x5e,0x87,0x08,0xa6,0x03,0xbc,0xd8,0xdc,0x1a,0x13, + 0x16,0xcd,0xad,0xf9,0x0a,0x87,0x34,0xee,0xe4,0x7c,0x7c,0xa1,0x69,0xc4,0x2b,0x34, + 0x15,0x21,0xa8,0x3c,0xa8,0xaa,0xd8,0xd3,0x1a,0x65,0x65,0x63,0xa3,0x31,0x2d,0x18, + 0x64,0xea,0x4f,0xb0,0x18,0xf3,0xf8,0x08,0x8b,0xe6,0x79,0xae,0x6b,0xfd,0xb6,0xa6, + 0xdd,0xd7,0x9c,0xb5,0x13,0xa7,0xae,0x33,0x0a,0xe0,0x07,0x9b,0x4e,0xbf,0x84,0xb4, + 0xcd,0x32,0x65,0x59,0x36,0x42,0x57,0xe5,0x6d,0x8c,0xa4,0x99,0x05,0xcb,0x85,0x24, + 0x34,0xdf,0xbc,0x8a,0xd0,0x3f,0xd1,0x8e,0xae,0xec,0x69,0x7a,0xa9,0x60,0x50,0x6b, + 0x0d,0xc2,0xad,0x0c,0x1f,0x4a,0x3b,0x19,0x48,0x60,0x7f,0xb5,0x6d,0x08,0x4a,0x58, + 0xf0,0x6f,0xc1,0x3a,0xc4,0xa7,0x86,0x6a,0x85,0x86,0xa0,0x50,0x67,0x9e,0x88,0xb0, + 0x69,0x60,0x3a,0x01,0x61,0x80,0x1c,0xf2,0x9a,0xbf,0xe3,0x20,0x68,0xbc,0xbd,0x06, + 0x74,0xd6,0xe8,0xea,0xd8,0x8c,0xae,0x40,0xcc,0xa4,0x73,0xd9,0xde,0xb0,0xe8,0x57, + 0x9f,0x5e,0x62,0xc5,0x9a,0x21,0x11,0x1f,0x45,0xdf,0x80,0x38,0xf6,0xc2,0xd1,0x8b, + 0x09,0x88,0x45,0x8d,0x61,0x51,0x40,0x45,0xb8,0xbd,0x60,0xd1,0xb5,0x01,0x6d,0x26, + 0xae,0x3d,0x1c,0x28,0xa0,0xc0,0x6a,0x4e,0xdd,0x58,0x18,0x02,0x41,0x6b,0x79,0x81, + 0x7e,0xfa,0x38,0x7f,0x41,0xcd,0x52,0xf4,0x16,0x04,0xf2,0xc9,0x57,0xd7,0xc1,0xa8, + 0x31,0x83,0x05,0x7a,0xdc,0x8a,0xcf,0xf2,0x03,0xba,0xc6,0x88,0x60,0x78,0x56,0x6f, + 0x9d,0x27,0xc2,0xe5,0xdc,0x4f,0xf1,0x16,0xc8,0x54,0xdc,0x0c,0xcf,0x71,0xf9,0xe4, + 0x2e,0xe8,0x1a,0xb3,0xd0,0x87,0xe9,0x48,0xcd,0x08,0x6f,0xe8,0x09,0x0d,0xe0,0x46, + 0xa0,0x9d,0x23,0x0e,0xa1,0xfe,0x81,0xd2,0x15,0x8e,0xdf,0x29,0x6f,0x40,0xa5,0x40, + 0xa4,0xe8,0xfe,0xad,0x50,0xcc,0xb5,0x07,0xda,0x06,0x8c,0xdd,0xfe,0x76,0x8e,0xb3, + 0x0e,0x5e,0xde,0xd7,0x70,0xad,0x63,0x55,0xfb,0xdc,0xbd,0xc0,0x5d,0x4e,0x34,0xee, + 0xb8,0xd5,0x6d,0x5b,0xdd,0x4e,0xae,0xd1,0xc5,0x83,0x6a,0xe5,0x81,0x5e,0x79,0xb0, + 0xa4,0xb2,0x34,0xf3,0xba,0xcd,0x78,0x70,0x77,0xe7,0x3a,0x74,0x6d,0xb6,0xf7,0x02, + 0x73,0x9f,0x26,0x1e,0x34,0x21,0x4e,0xeb,0x2b,0xdb,0xe3,0xca,0x5a,0xf0,0x6a,0xa0, + 0x91,0x4a,0xb7,0x60,0xe5,0xbe,0x1b,0xd1,0xe8,0xb6,0x8f,0x85,0xba,0x5c,0x50,0x2e, + 0x1a,0xa6,0x8f,0x46,0x97,0x19,0x5a,0x18,0x3c,0x0d,0xa2,0x8d,0x90,0x78,0x94,0x58, + 0xd7,0x0d,0x30,0x21,0x11,0x4a,0x40,0x6e,0xe2,0xc3,0x22,0x8d,0x28,0xe1,0xb1,0x4a, + 0x64,0xe0,0x18,0x1c,0xd6,0x24,0x3c,0x3f,0xc7,0x1c,0x81,0x9e,0xce,0x48,0x66,0x1a, + 0xcf,0x02,0x63,0x40,0xd7,0x1c,0x09,0x3f,0x7f,0x76,0x02,0x35,0xd0,0xf9,0x38,0xcd, + 0xef,0x96,0x95,0x02,0x3e,0x07,0x09,0xbb,0xe1,0x88,0x1b,0x93,0x54,0x1b,0x56,0xf6, + 0x52,0x38,0x98,0x86,0x40,0xac,0xdc,0x11,0x67,0x55,0x97,0xde,0x06,0x30,0xee,0x81, + 0x97,0xcd,0x31,0xde,0x0d,0x1b,0xcb,0xe6,0x91,0xb0,0x83,0x39,0xe2,0x3c,0x9d,0x90, + 0x76,0x63,0x83,0xfe,0x38,0x1c,0x43,0x64,0xa1,0x33,0xbc,0x9e,0xaa,0x28,0x14,0x98, + 0x9c,0x7f,0xa0,0x8c,0x3c,0xf9,0x7b,0x0b,0x81,0x27,0x6a,0xb3,0x63,0x06,0xb7,0x5e, + 0xc0,0x2a,0x2e,0x2a,0x94,0x52,0x58,0x5d,0xd0,0x18,0x9f,0x6a,0xf5,0x94,0x0e,0xf7, + 0x4e,0xa4,0x70,0xc5,0xeb,0xb6,0xf1,0xe8,0x4f,0x06,0xc6,0xdd,0x8b,0x85,0x62,0xbf, + 0x7b,0xe5,0xab,0xde,0x13,0x6d,0xe0,0x4b,0xe5,0x8a,0xaf,0x74,0x4f,0xf2,0xc1,0x29, + 0xf9,0xdf,0x3c,0x31,0x0c,0xcd,0xbf,0x42,0x98,0xf8,0xd9,0xe7,0xbe,0xa2,0x57,0xc6, + 0x51,0x10,0x7c,0x24,0xa2,0xd8,0x18,0x0e,0xec,0x16,0xfc,0x83,0x4d,0xd8,0xd4,0x91, + 0x2d,0xa6,0xc4,0x5e,0x2d,0x6b,0x78,0x6d,0xf5,0x8b,0x5e,0x5b,0x75,0x03,0x64,0x3f, + 0x0e,0xb4,0x33,0x0c,0xac,0xe1,0xa0,0x41,0x11,0x51,0xf4,0x4e,0x87,0x82,0x68,0x55, + 0x0b,0xa6,0x68,0xdd,0xdd,0xe9,0xcf,0xed,0x1d,0x65,0xdf,0x58,0xdd,0x51,0x1e,0x37, + 0x51,0xed,0x8f,0x0c,0x44,0xbc,0x26,0x6a,0x06,0x77,0x77,0x26,0xc5,0xbd,0x27,0x1e, + 0x67,0xd3,0xcd,0x8f,0x04,0x72,0x1a,0x2f,0x63,0x1e,0xca,0x63,0x7c,0xae,0x87,0x69, + 0xc8,0xf0,0x89,0x3e,0xaf,0xd9,0x7a,0x80,0x2e,0x80,0xe0,0x1b,0x4d,0xcd,0x3c,0x09, + 0xd9,0x05,0x97,0x39,0x3c,0xda,0x90,0x07,0x1e,0xa2,0x1f,0x39,0x52,0xe5,0x4e,0x73, + 0x28,0x9e,0x25,0x59,0x70,0xbb,0x6a,0xc6,0x48,0x2d,0x94,0xe7,0x30,0xba,0x0f,0xcd, + 0x30,0x3d,0x09,0x46,0x02,0x71,0x7a,0x13,0x84,0x5b,0x1a,0x47,0x21,0x3c,0x30,0x2d, + 0xc0,0x57,0xe8,0xcf,0x05,0xcc,0x27,0x1c,0x79,0x23,0xc7,0xf8,0x00,0x50,0xc0,0xb7, + 0xb2,0x39,0xe6,0xc7,0xc6,0xe0,0x56,0xe6,0x05,0x30,0x80,0x06,0xa4,0x48,0xcb,0x79, + 0xd0,0x94,0x4e,0x05,0x08,0x20,0xf3,0x6f,0xe1,0xeb,0x3d,0xf0,0x8c,0x29,0x08,0x2e, + 0x2e,0x88,0x8d,0x24,0xfc,0xfb,0x99,0x23,0xe4,0xb5,0x32,0x88,0x39,0x02,0xaf,0x08, + 0xe3,0xea,0xf9,0x80,0x4a,0x7a,0x20,0xf9,0x1a,0x92,0x00,0x66,0x7a,0xa3,0x7e,0x85, + 0x52,0x48,0xe6,0x51,0xa5,0x15,0xba,0xb9,0x9f,0x98,0xc0,0x7c,0xf4,0x32,0x49,0xfa, + 0x94,0x55,0xe6,0x03,0xfd,0x06,0xa6,0xab,0xb5,0x2d,0xcf,0x05,0xb8,0x9c,0xb4,0x88, + 0x2e,0xf1,0x59,0x67,0xb3,0xda,0x05,0xc5,0xd7,0xfa,0xc3,0x2b,0x69,0xb1,0xe4,0x45, + 0x16,0x2d,0xe8,0x2c,0x44,0x6a,0x3c,0x3a,0x03,0x97,0xa7,0x0b,0x78,0x88,0x3f,0xea, + 0xea,0x99,0xe9,0xb0,0x06,0xe0,0x42,0xa7,0xd5,0xe1,0xcb,0xc1,0xc5,0xba,0xd9,0x8a, + 0x74,0x13,0x1d,0xa7,0xc4,0x76,0x03,0xe4,0xb9,0x11,0x12,0x78,0x58,0xd0,0x27,0x84, + 0x12,0x79,0x4e,0x07,0x11,0x97,0x3b,0x21,0x89,0x82,0xf3,0xb4,0xc2,0x0c,0x45,0x28, + 0x81,0xcc,0xf0,0x41,0xfc,0xc1,0xc3,0xbb,0x36,0x88,0xc1,0xf3,0x4d,0x32,0xc8,0xe6, + 0xb1,0x35,0x0e,0x06,0x4b,0x0d,0xc0,0x76,0xa4,0xee,0x33,0xcc,0x0c,0x6a,0x0e,0xf9, + 0x9e,0x41,0x57,0x1c,0x6a,0x62,0x26,0x01,0xf2,0xb9,0xa2,0x14,0x16,0x80,0x91,0x7c, + 0xed,0x5d,0x98,0x99,0x8e,0x1e,0x6d,0xa4,0x63,0x03,0x08,0x46,0xa9,0xed,0x8f,0x02, + 0x2f,0xb5,0x69,0xf6,0x12,0x29,0xc8,0x07,0x12,0x83,0x35,0xc8,0xf3,0x11,0x0a,0xf5, + 0xf1,0x3f,0xe8,0xb9,0x4c,0x85,0xfb,0xf4,0x5f,0xe1,0xc8,0xac,0x9a,0x46,0xd4,0x6f, + 0x3c,0x44,0xe3,0x9e,0x54,0x77,0x27,0xf5,0x5c,0xd8,0x9d,0x2e,0x1f,0x5f,0x23,0xfa, + 0x8d,0x6c,0x5c,0x72,0xa3,0x30,0xd5,0xb9,0x9b,0xd2,0x74,0x69,0x93,0x92,0x0f,0x1b, + 0x30,0x0d,0x98,0xac,0x3f,0xbe,0x05,0x61,0x8f,0x28,0x95,0x72,0x7d,0xa5,0xf3,0x6a, + 0x3d,0x31,0x21,0x82,0x9a,0xb6,0x36,0x9f,0xb1,0x96,0x0f,0x7d,0xb7,0x79,0xef,0x1d, + 0x33,0x9d,0x32,0xb7,0x40,0x79,0x01,0x5c,0xf8,0xf4,0xf1,0x35,0x0a,0x1b,0x20,0x97, + 0x80,0xd8,0xc9,0xa4,0xcb,0x5e,0x88,0xc0,0xb8,0x2e,0xd0,0xe1,0xd6,0xfd,0xca,0xf8, + 0x37,0xaa,0xf1,0x54,0x11,0x3d,0x06,0x54,0x99,0xb2,0xb3,0xd3,0x24,0x71,0x0b,0x94, + 0x3b,0xd1,0x5d,0x97,0xa4,0x97,0x9a,0x20,0xbd,0xf2,0x96,0xe6,0x15,0xd4,0x29,0xa7, + 0x5a,0xc0,0x7b,0x1b,0x86,0xb7,0xac,0x2f,0xf4,0x27,0x1e,0x91,0x36,0x2a,0x69,0x34, + 0xc6,0x4c,0x42,0x63,0x5d,0x8d,0x46,0xf9,0x57,0x5e,0x70,0x2b,0xb0,0x89,0xd3,0x31, + 0x21,0x5c,0x71,0x51,0xf0,0x10,0x0c,0xcf,0xd9,0x5c,0x10,0x3e,0x51,0x20,0xc7,0xed, + 0x8e,0x3e,0x0f,0x5a,0x5b,0xd9,0xa6,0xc4,0x64,0x74,0xad,0x0c,0xf0,0xa8,0x4b,0x09, + 0x44,0xda,0xa2,0x0c,0x02,0x3f,0xce,0x29,0x37,0x4d,0xe7,0x70,0x77,0xbd,0xd9,0xe7, + 0x28,0xbc,0xd5,0x5e,0x82,0xc4,0xf7,0xf6,0xb3,0x32,0x0c,0x0c,0xa3,0xb0,0x08,0x3a, + 0x39,0x5f,0x03,0x7f,0x29,0x1a,0x0b,0xea,0xa7,0xfd,0x96,0x4d,0x14,0x88,0xe5,0x3d, + 0xbd,0x08,0xad,0x3a,0x69,0x55,0xe4,0x88,0x58,0xe3,0x25,0x9d,0x15,0x0e,0x23,0xa2, + 0xab,0xfe,0xf6,0x3f,0xdf,0xff,0xb2,0xed,0xb3,0x54,0xec,0x67,0x14,0x6c,0x7b,0x6b, + 0x69,0x0c,0xed,0x69,0x74,0x65,0x51,0xaf,0x5b,0x5b,0xfa,0xdb,0xe1,0x60,0x63,0x03, + 0x63,0x1f,0xd5,0x7c,0x41,0xef,0xf4,0x49,0xfa,0x22,0xf2,0xab,0xa0,0x00,0x25,0xa4, + 0x00,0xcc,0x9f,0x51,0xd6,0x56,0x9f,0xe5,0x3b,0xab,0x7c,0xdc,0x2b,0xde,0x6b,0x3d, + 0xf2,0x1b,0xc4,0x53,0xa6,0xbe,0x5a,0x98,0x25,0x7c,0xdd,0x66,0x62,0x57,0x99,0x88, + 0xa5,0x03,0x4a,0x0a,0x64,0x7a,0xa8,0xa4,0xd0,0xa9,0x97,0x04,0x63,0x6f,0xf2,0xc1, + 0x85,0xa1,0x1d,0xdb,0xf1,0x38,0x84,0xfd,0x48,0x93,0x31,0x02,0xab,0xa8,0xb0,0xa2, + 0x1a,0xf8,0xfe,0x17,0xb3,0x2b,0x87,0x92,0x87,0x31,0xff,0x13,0xd8,0x43,0x23,0x4a, + 0xac,0xe3,0xf3,0xae,0x7d,0x71,0xfc,0x7b,0xfa,0xc3,0xb6,0x8f,0xc6,0xbe,0xb2,0x5f, + 0x82,0x8a,0xb6,0xa3,0xdb,0x4f,0xad,0xe5,0xe6,0x05,0x6d,0x8a,0x96,0x4e,0xe9,0x16, + 0x40,0xea,0x92,0xca,0x26,0xa4,0xb5,0xb4,0x98,0xe2,0xf1,0xba,0x9a,0x28,0x59,0x67, + 0x1c,0x6c,0xad,0x84,0x2d,0xd8,0x6c,0xa9,0x27,0x4f,0x38,0xa5,0x1c,0x22,0x8f,0xf1, + 0x12,0x25,0x46,0xe7,0x0e,0x1e,0x45,0x3f,0x14,0x83,0x2c,0x4c,0x22,0x31,0x63,0x42, + 0x4e,0xb5,0x9f,0xd5,0x66,0x33,0x8c,0x63,0xc3,0x3c,0x93,0x0c,0x0f,0x55,0x10,0x6f, + 0x54,0xbd,0x8a,0x5d,0x70,0x24,0xbe,0x39,0x1d,0xd3,0xbe,0x71,0x46,0x04,0x94,0x41, + 0x6e,0x8d,0x6b,0x3e,0xfb,0x11,0xc9,0xe7,0x7c,0x99,0xfb,0x2d,0x45,0x25,0x48,0xec, + 0x70,0x0e,0x92,0x8a,0xf1,0x74,0x0e,0x45,0x97,0xc0,0x8d,0x31,0x17,0x1c,0x65,0x08, + 0x71,0x33,0x29,0x39,0x09,0xad,0x17,0xb3,0x8f,0x72,0xea,0x7b,0xee,0xc4,0xc9,0x73, + 0x64,0x75,0xb5,0xa1,0xfa,0xa9,0x4c,0xff,0x81,0x42,0x9b,0xd2,0x9a,0x70,0xdf,0xf2, + 0x98,0x25,0x24,0x0b,0xe3,0x28,0x75,0x49,0x93,0x51,0x1d,0x52,0xbb,0x2e,0xfb,0x11, + 0x70,0x72,0xd9,0x26,0xeb,0xe6,0xde,0x28,0x1f,0x8c,0xad,0x46,0xc3,0x42,0x94,0x79, + 0x2a,0xba,0x11,0x5d,0x9f,0xbf,0xff,0xe5,0xc2,0x90,0x89,0x38,0x90,0x84,0xdb,0x0a, + 0xe4,0x36,0xbf,0x3c,0xa5,0xb3,0xff,0x14,0xf0,0xa1,0x5e,0xa4,0xd4,0x85,0xd4,0x53, + 0xd5,0xa6,0x5c,0xf7,0xfc,0x34,0xec,0x34,0x1a,0x67,0xd2,0xaf,0xe3,0x91,0x5a,0x48, + 0x3d,0xff,0x59,0xa5,0x59,0xb4,0x76,0x6b,0x6b,0xa1,0x31,0x02,0x73,0x58,0x62,0x72, + 0x41,0x05,0x54,0x72,0x73,0xef,0xaa,0xe5,0x90,0x17,0xd0,0xa0,0x40,0x7c,0x15,0x46, + 0xc0,0x8c,0xf1,0x8b,0x40,0x06,0xbe,0xb0,0x57,0x49,0xd1,0x1f,0xf8,0x36,0x0a,0xc9, + 0x4e,0x1a,0x63,0xd8,0x68,0x13,0xe9,0xc1,0x81,0x12,0x6f,0x40,0x6b,0x6b,0x39,0xc6, + 0x2f,0x78,0x12,0x8c,0x8c,0x00,0x97,0xbf,0x49,0x4d,0xb2,0x4d,0x5d,0xb6,0x85,0x26, + 0xf7,0x54,0x0a,0xdf,0x28,0x4c,0xf3,0x85,0xc0,0x73,0x10,0x92,0xdd,0x10,0x11,0x39, + 0x8b,0x28,0x29,0xa0,0x12,0x93,0x11,0x02,0xc0,0x4a,0x0e,0x3b,0xad,0xf5,0xf9,0x0e, + 0x70,0x9c,0x55,0xc2,0x53,0x0d,0xdf,0x11,0x40,0xac,0x4a,0xdb,0xe5,0x85,0x5d,0xb0, + 0x1e,0xd0,0x44,0x9f,0x05,0x83,0x5d,0x5a,0xe5,0xed,0x6b,0xd2,0x8f,0x64,0x18,0x44, + 0x83,0x81,0x97,0xd0,0xad,0xb3,0x3c,0x47,0xa4,0x7b,0x69,0x8d,0x50,0xf3,0xb0,0x27, + 0xdb,0x37,0xf0,0x36,0xa3,0xb4,0x0b,0xa3,0x95,0x2e,0x67,0x5c,0x44,0xa3,0xd5,0x8d, + 0xa2,0x47,0x90,0xc6,0xa2,0xae,0x2e,0xc8,0x6b,0x00,0xcb,0xd3,0x7a,0xb0,0xa3,0x9a, + 0xf6,0xb9,0xe4,0xa9,0x45,0x01,0x46,0xd2,0x4d,0x4b,0x74,0x40,0x6e,0x4a,0x55,0xf7, + 0xa5,0x9e,0xd6,0x1c,0xb5,0xbf,0xda,0xe7,0xab,0xc0,0x0b,0x90,0xe1,0x36,0xb4,0x84, + 0xc5,0xfa,0xe8,0xad,0xaf,0x76,0x60,0xe3,0x84,0x2b,0x38,0x96,0x8f,0xe4,0x51,0x76, + 0x2e,0x9c,0xd3,0xc8,0xab,0xd1,0x96,0x0f,0x83,0xb9,0xfa,0x99,0x8e,0xd5,0xcf,0x61, + 0x72,0x21,0x02,0xd7,0x6d,0xb3,0xd6,0x3d,0x4d,0x6b,0x38,0xef,0x0d,0x3d,0x0f,0xb8, + 0xaf,0x5a,0xd7,0x84,0x8d,0x8d,0xa7,0xd2,0xe3,0x41,0xbe,0x13,0xd1,0x1a,0x5a,0x6b, + 0x1a,0x48,0x54,0x73,0x65,0xf1,0x81,0x6b,0xe5,0xfd,0xd2,0xe3,0x07,0xcc,0xda,0xd4, + 0x6f,0xa8,0x4a,0xc7,0xc5,0xd2,0x5d,0xbd,0x0f,0x27,0x05,0x7d,0x3c,0xd3,0x26,0xb7, + 0x96,0xb3,0x9f,0x86,0xa5,0xfe,0xe8,0xa6,0xbf,0x40,0x38,0x76,0x5b,0xf6,0x60,0xde, + 0x6d,0xdb,0xe9,0xb8,0xdb,0xb1,0x87,0x49,0x77,0xe7,0xbe,0xe4,0xfb,0xd7,0x53,0x68, + 0x23,0x16,0x28,0x1f,0xec,0x39,0xb4,0x72,0xd1,0x5b,0xe9,0xda,0xa6,0x20,0xd0,0x2b, + 0x23,0xcc,0xff,0x23,0x0f,0xc0,0xa2,0x27,0x62,0xad,0x3f,0x60,0x5d,0xac,0x50,0x4d, + 0x64,0x2f,0x29,0xde,0xdb,0xe4,0x51,0xb5,0xe4,0x84,0x20,0x8f,0xbb,0x42,0xd0,0xab, + 0xd0,0x3c,0xf2,0x34,0x21,0x2b,0xbb,0xee,0xc4,0x51,0x65,0x56,0xf5,0x31,0x8e,0x82, + 0x09,0xbe,0x62,0x55,0x2e,0x8b,0x38,0x5c,0x49,0x52,0x34,0x1e,0x29,0xc5,0xa2,0xc3, + 0xf0,0x6a,0x43,0xf9,0xc8,0x24,0x50,0x7f,0x78,0x33,0xc8,0xcf,0x6e,0xf2,0xd3,0x0b, + 0x91,0x62,0x90,0x4f,0x30,0xf4,0xf3,0x8b,0xef,0x65,0x37,0x86,0x2c,0x52,0x45,0xbb, + 0x1b,0x6b,0x71,0x53,0x83,0x1e,0x50,0xd8,0xbe,0x01,0x16,0x3a,0x10,0xc7,0x30,0xe7, + 0xd2,0xd3,0x89,0xc3,0xed,0x6d,0x32,0x96,0xc0,0x1f,0xce,0x42,0x6d,0x73,0x82,0x83, + 0x6a,0xeb,0x19,0xeb,0xd5,0x59,0xd3,0xdc,0xca,0x96,0x0b,0xa0,0x19,0x00,0x6f,0xa0, + 0x50,0x3a,0xcb,0x53,0x2d,0x68,0x2f,0x29,0x7e,0x95,0x3a,0xb3,0x38,0x31,0x23,0xfe, + 0x6e,0x08,0xf5,0x1b,0x93,0xf4,0xca,0x17,0xb5,0x35,0x29,0xa5,0x82,0xce,0x1e,0x41, + 0x5a,0xc7,0x80,0xeb,0xd7,0xe8,0xe9,0x62,0xb7,0x44,0x6c,0x5b,0x09,0x7f,0x30,0x01, + 0xaf,0x4c,0x68,0x5c,0xc2,0x20,0x91,0xf2,0xe1,0x67,0x1f,0xf7,0xfc,0x6d,0xff,0xfc, + 0xc2,0xce,0x9f,0x4e,0x32,0x50,0xaf,0xe0,0xf1,0xe3,0x2c,0x0c,0x81,0xc9,0xf5,0x45, + 0xe2,0xa8,0xc0,0xff,0x8f,0x99,0x07,0xbb,0x93,0xcb,0xd2,0x6f,0x59,0xf2,0x47,0x4c, + 0xee,0x06,0xc5,0xa5,0x22,0xa6,0xdb,0xb2,0xf0,0x28,0x27,0xf0,0x1b,0x78,0x04,0xa4, + 0xb0,0x00,0x66,0x40,0x3e,0x66,0x5a,0xde,0x60,0x9a,0x37,0xfc,0xd6,0xcf,0x8a,0xb6, + 0xfa,0xf8,0x20,0x00,0x52,0xfa,0x26,0x0c,0xdb,0x47,0x6d,0x8a,0xa4,0x2d,0x7d,0xec, + 0x97,0x0b,0x53,0xa2,0xa8,0x46,0x13,0x3d,0x28,0x5b,0xaa,0xa7,0x74,0x88,0xf9,0x7a, + 0xce,0xa2,0xb8,0x9f,0x3f,0xfd,0x4c,0x69,0xbe,0x0a,0x12,0x82,0x8f,0x70,0xa6,0x19, + 0xe2,0xd5,0x8d,0x0d,0xed,0xb8,0x89,0x45,0x75,0xcc,0xeb,0x40,0x0e,0x47,0xe7,0xa5, + 0x54,0xc0,0x17,0x5d,0xe1,0xb4,0xbf,0xa9,0xbb,0xcc,0xcb,0x6a,0xc0,0x73,0xc5,0x2f, + 0x41,0xf5,0xfa,0x32,0x69,0x70,0xa1,0xf7,0xc2,0x42,0x73,0xe7,0x8d,0xf2,0x88,0x8e, + 0x25,0x2c,0xb9,0xbe,0xd5,0x95,0xcf,0x32,0xf9,0xae,0x85,0xfb,0x06,0xda,0x69,0x14, + 0x65,0x1f,0xa6,0x4d,0xd0,0x56,0x71,0x62,0xd4,0x4a,0xbf,0xdc,0x89,0xb4,0xf3,0x17, + 0xda,0x5d,0xba,0x23,0xa8,0x8d,0x42,0x1d,0x31,0xb6,0xe5,0x4a,0x5c,0xb5,0x0a,0x25, + 0xcb,0x2d,0x3a,0xb3,0x51,0xa1,0x63,0x13,0x70,0x8d,0x87,0x89,0x76,0x27,0x2c,0xc5, + 0x3e,0x50,0x05,0x50,0x95,0x03,0x2d,0x5e,0x28,0x8c,0x6e,0x24,0xfc,0x97,0x66,0xac, + 0x21,0xba,0x78,0x5d,0x3f,0x53,0x65,0x8f,0xa8,0x29,0x25,0xe7,0xb6,0xaa,0x8c,0x98, + 0x4c,0x6d,0x91,0xa5,0x18,0x54,0xe7,0x6d,0x4a,0x25,0x81,0x76,0xe3,0x9f,0x4a,0x73, + 0x25,0xe9,0x16,0xf7,0xe6,0x6d,0xe6,0xbd,0xa1,0xbd,0x92,0xef,0x41,0xd8,0x4e,0xe8, + 0x00,0x13,0x8d,0x8d,0x33,0x78,0xf5,0x92,0x4c,0x6d,0x09,0x32,0x00,0xcc,0x94,0x3b, + 0x46,0x65,0x54,0x85,0xb5,0xe0,0x31,0x9c,0x56,0x08,0xd8,0x08,0x5b,0xe6,0xb8,0xb1, + 0x92,0xcf,0xe3,0x00,0xfa,0x4a,0xfb,0x35,0xa6,0x3b,0x2e,0x2c,0x8e,0xe1,0xff,0x76, + 0xde,0x6a,0x3e,0x3f,0x69,0xbe,0xba,0x58,0x74,0xee,0xef,0x9c,0xed,0x4b,0x7d,0x77, + 0x50,0x0b,0xc7,0xf4,0x5f,0xd1,0x76,0xb7,0x55,0xcc,0xda,0x84,0xfe,0xd5,0x12,0x33, + 0x8b,0x54,0x05,0xb3,0x9a,0xa6,0x44,0x32,0x84,0xf0,0xb2,0xfd,0x7b,0xf2,0x7b,0x78, + 0xf7,0x7b,0x72,0xf7,0x7b,0xb8,0x6d,0xd9,0x32,0x6b,0x73,0x9f,0x73,0x0b,0x14,0x53, + 0x21,0x51,0x5d,0x39,0x9b,0xdc,0x67,0x8e,0x8e,0xd4,0xf1,0xd3,0xb9,0x7f,0xe1,0x64, + 0x89,0x3f,0x6d,0x58,0xd6,0x50,0x24,0x5e,0xcd,0x0d,0x0d,0x05,0x20,0xcb,0xe2,0xd6, + 0x51,0x7b,0xef,0xb9,0x55,0xc9,0xb3,0x45,0x29,0x8a,0xcd,0xad,0x86,0xbf,0xd5,0xb6, + 0xb6,0x4c,0xc3,0xbb,0x21,0xdb,0xb3,0x01,0x65,0x79,0xee,0x52,0xdc,0x92,0xa3,0x75, + 0xe2,0x59,0xaa,0x35,0x9a,0x77,0x2a,0xbf,0x4b,0x3a,0x08,0x84,0xad,0x9a,0xd4,0x8b, + 0x37,0x09,0x27,0x7d,0x17,0x77,0x47,0xbb,0x98,0x3e,0x3d,0xcd,0x0a,0x89,0xac,0xcd, + 0x72,0x92,0x31,0xf9,0xa1,0x48,0x8a,0x30,0x1b,0xfd,0x84,0xb7,0x51,0x43,0x9e,0x93, + 0x8e,0xf2,0x63,0x0a,0x37,0xa5,0x45,0xe9,0x6b,0x0c,0xc1,0xce,0xa2,0x0c,0x53,0xa0, + 0x09,0x7e,0xa1,0xa1,0x8b,0xc6,0x4e,0xf4,0x47,0xe4,0x28,0xe2,0xb9,0xcc,0x54,0x8c, + 0xd2,0x26,0x16,0x87,0x4b,0x4f,0x24,0x38,0x78,0x38,0x1b,0x1b,0x72,0x1c,0x62,0x09, + 0x73,0x16,0x64,0x9e,0x0b,0x68,0x88,0xb2,0x5d,0x58,0x07,0x1a,0x1f,0xac,0x83,0xdc, + 0xe7,0x5b,0x0d,0x1e,0x31,0xf9,0xcb,0x02,0x71,0x01,0xd0,0x6c,0x99,0x17,0xbf,0x87, + 0xa6,0x66,0x93,0xd2,0x77,0xbc,0x8a,0x80,0x17,0xf0,0xab,0xd0,0xa0,0xe2,0xe8,0xac, + 0xaa,0x1d,0x41,0x27,0x52,0x20,0x05,0x08,0xf0,0x0a,0xa1,0x4c,0x01,0x37,0xc1,0xf8, + 0x3a,0x22,0x52,0x25,0x58,0x36,0x73,0xc8,0xf5,0x9e,0xe8,0xb3,0x15,0x2d,0x6c,0x99, + 0x72,0xf0,0x02,0x53,0x05,0x54,0x37,0x36,0x54,0x93,0x47,0xad,0xa5,0xa0,0xc2,0x11, + 0xc5,0x78,0x38,0x63,0x6e,0xa9,0xe2,0x05,0x68,0xe5,0xe3,0x2a,0x40,0x8c,0x02,0x43, + 0xf0,0x08,0x44,0x81,0x8e,0x80,0xa3,0x23,0x90,0x5c,0xbe,0xfb,0xe2,0x19,0x09,0xf6, + 0xce,0xfa,0x3c,0x6c,0x37,0xd0,0xf0,0x45,0x57,0xa5,0x1c,0x36,0x30,0x91,0xff,0x0b, + 0x07,0x06,0x95,0xfd,0x24,0x4f,0x05,0xa7,0x7e,0x4a,0xb4,0x4c,0xcb,0xd7,0x52,0x7b, + 0x8a,0x20,0x35,0xf1,0xa5,0x66,0x8d,0x65,0xb3,0xbd,0xb7,0xdb,0x7b,0xad,0xd5,0x87, + 0xbd,0x95,0xa3,0x84,0x9a,0xd1,0x0a,0x03,0x8c,0x4a,0x9c,0x24,0xc7,0x9b,0x2f,0x34, + 0xcd,0x39,0x0e,0x6e,0xef,0xee,0xcc,0x06,0xdd,0xd0,0x8d,0x26,0x63,0x5c,0xc1,0x1c, + 0xe5,0xd1,0xb6,0xfc,0x4f,0x98,0xc2,0xef,0xe9,0x16,0xca,0xcc,0xbf,0xe3,0x89,0x1f, + 0xfc,0x8e,0xc6,0xe3,0xdf,0xd3,0x1f,0xbe,0x97,0xf6,0x66,0x39,0x72,0x35,0x69,0x1d, + 0x99,0x94,0x10,0x2a,0xd9,0x95,0xb6,0xa3,0x1e,0x87,0xdf,0x1a,0xc9,0x5d,0x81,0xc8, + 0xff,0x6e,0x64,0xd6,0xcd,0xe7,0xb5,0x48,0xbd,0x6a,0xdd,0xd1,0x87,0x06,0x7f,0x3a, + 0x7c,0x86,0xd6,0x90,0xe6,0xaa,0xdc,0x0c,0x29,0x27,0x01,0x3c,0xfd,0x1d,0xca,0x3e, + 0x81,0x2f,0x6e,0x91,0x68,0xe8,0xb1,0x0a,0x8f,0xb5,0x3e,0x6a,0xd4,0xc5,0x3c,0xa7, + 0x3c,0x16,0xc0,0xc7,0x78,0x28,0xea,0x02,0xb7,0x0b,0xb3,0x62,0x9e,0x24,0xc4,0x3c, + 0x6c,0x77,0x1e,0x8f,0xcd,0x5b,0x6d,0x0d,0x9f,0x77,0x5b,0xab,0xf0,0xb9,0x30,0x36, + 0xbe,0x81,0x44,0x43,0x5b,0x61,0x68,0x94,0x07,0xb6,0x53,0x17,0xb3,0xb9,0x5d,0x7b, + 0x72,0x41,0xc9,0x36,0x69,0xe7,0x77,0x9c,0xd8,0x68,0xec,0x66,0xa3,0xaf,0x97,0x5f, + 0x78,0x26,0x4c,0xb9,0x25,0x01,0xa9,0x06,0xc4,0x0b,0x45,0x2b,0x05,0xde,0x1d,0x95, + 0x71,0x52,0x80,0xa2,0xb0,0xf2,0x94,0x62,0xbf,0xee,0xc4,0x9b,0x34,0x2d,0x6e,0x5b, + 0xb5,0x73,0x9e,0x37,0xbe,0xb5,0x75,0x51,0xa4,0xdb,0xe6,0x11,0xe0,0xa7,0xa8,0x90, + 0x6f,0xc3,0x3a,0x4f,0x9c,0x92,0x63,0x0d,0x68,0x88,0xf6,0x82,0xca,0x74,0x79,0x11, + 0x44,0x23,0x5d,0xf1,0xb7,0x26,0xa1,0x89,0xf2,0x53,0xc8,0x57,0xae,0xa5,0xd6,0x6c, + 0xb5,0x89,0xbb,0xb0,0x62,0xc2,0xf4,0x0c,0x44,0xd8,0x51,0x6c,0xa7,0x00,0x6f,0xc9, + 0x36,0xbf,0x55,0xf6,0x1f,0x5e,0x1f,0x21,0x09,0x94,0x1c,0x1e,0xeb,0xd5,0x17,0x3b, + 0x17,0x69,0x0c,0x23,0x4b,0x6e,0x17,0x05,0x29,0x4b,0xe8,0x15,0x45,0xe1,0xb2,0x96, + 0xd7,0x5b,0xdd,0xf3,0xaa,0x6e,0x40,0x5f,0xf2,0x8c,0x55,0xac,0xca,0x6c,0x6c,0x14, + 0x05,0x43,0xd9,0xd7,0x79,0x6b,0x99,0x6c,0x28,0x11,0x7c,0x89,0x50,0x78,0xcf,0x4b, + 0xe1,0xd5,0x70,0xeb,0xda,0x05,0xc8,0xa9,0x55,0x11,0x23,0xd5,0xa4,0x95,0x0c,0x39, + 0xf6,0x03,0x20,0xd1,0x9a,0x99,0x5a,0x32,0xdd,0xa2,0x38,0x28,0x24,0xe0,0x3c,0x91, + 0x64,0x49,0x08,0xd5,0x16,0x22,0x6f,0xba,0xac,0xbe,0xe8,0x0c,0xdd,0xd0,0x6c,0x10, + 0x2c,0xe8,0xea,0xc8,0x27,0x97,0x59,0x16,0x10,0x92,0xee,0x4e,0xcb,0xd2,0x5e,0xa6, + 0x13,0x3f,0x3f,0x8f,0x11,0x92,0x63,0x6e,0xc7,0xa8,0xd4,0x96,0x23,0x67,0x65,0x73, + 0xc9,0x4a,0x0a,0x79,0x4e,0x89,0xa8,0x3a,0xea,0xac,0x12,0x54,0xa9,0x51,0x69,0xbf, + 0xa1,0x0e,0xf4,0x35,0x12,0x1a,0x1a,0xe3,0x67,0x37,0xdf,0xe4,0x12,0x7a,0x05,0x56, + 0x54,0xfa,0xb6,0x44,0x1e,0x2d,0x0a,0xc4,0x8a,0x04,0xd5,0xf2,0x0d,0x84,0xce,0x57, + 0x29,0x9a,0x38,0x1f,0xd2,0x35,0x97,0xbb,0x69,0x17,0x0c,0x09,0xb2,0xaf,0x0a,0x6c, + 0xab,0xf5,0xaf,0xbc,0x5b,0x8c,0x1f,0xac,0x6e,0x7b,0x64,0x61,0xd7,0x78,0xca,0x8c, + 0xe2,0xcd,0x09,0x20,0xf7,0xfc,0x53,0x6c,0x6e,0x6c,0x94,0xde,0xfd,0x84,0x75,0x35, + 0xa4,0x5b,0x4e,0x2c,0xb8,0x62,0xbf,0xd0,0x98,0x8e,0x28,0x47,0x3a,0x4e,0x9d,0x64, + 0xcd,0x66,0x7d,0x3d,0xea,0xb0,0x58,0xf3,0xb0,0x82,0x62,0x85,0x96,0xd8,0x65,0x00, + 0x3d,0x54,0x05,0x6a,0xad,0xae,0x7b,0x9c,0xbf,0x39,0xd7,0x4b,0x5e,0x74,0x19,0x25, + 0xeb,0x79,0xaf,0xb2,0xf2,0xd3,0x3a,0xf5,0x2b,0x90,0x17,0x9b,0x89,0x16,0x11,0x5a, + 0xe0,0xb3,0x7d,0xa8,0xfa,0x11,0x57,0x8f,0x97,0x99,0x47,0x27,0x46,0x61,0x57,0x5f, + 0xf1,0x06,0x53,0x86,0xc6,0x32,0x69,0x7c,0xdc,0xd2,0x22,0x58,0x87,0x59,0x12,0xfc, + 0xe2,0x81,0xdc,0x09,0xbf,0xa7,0x5e,0xe6,0xc2,0x6f,0x4b,0x2e,0x30,0xc2,0x9b,0x6e, + 0x62,0x92,0x22,0xf4,0x92,0x85,0xcd,0xd5,0x31,0xc1,0x57,0x84,0x7c,0x7e,0x4a,0xcc, + 0xa4,0xb1,0xc2,0xfd,0x1e,0x4d,0xad,0xcb,0x6c,0xea,0xe3,0x69,0xf6,0x29,0xc6,0x74, + 0x98,0x14,0xaa,0xa2,0x67,0x46,0x4e,0xb7,0x0f,0xf6,0x51,0x8e,0xb1,0x27,0x85,0xb7, + 0x7f,0xa3,0xb7,0xdb,0x3b,0x98,0xcc,0xdd,0x9e,0x16,0x3f,0xe1,0xcb,0xed,0xfd,0x96, + 0x6e,0xe2,0x18,0x1d,0xb5,0x8e,0x81,0xb3,0x8f,0x80,0x02,0xc0,0x9e,0x9f,0x98,0xdd, + 0xc6,0x04,0xde,0xe0,0x4f,0x78,0x33,0xdd,0x32,0xa7,0x66,0x97,0xfe,0x5b,0xc8,0x5a, + 0xef,0x07,0xb0,0x50,0xf6,0xc0,0x56,0xd9,0xe1,0x37,0xcb,0x17,0x12,0xe2,0xbd,0xba, + 0x47,0x22,0x82,0xcd,0xc7,0x90,0xb6,0xcd,0xad,0x01,0x47,0xb3,0x6d,0x6e,0x35,0xd2, + 0xe3,0x4d,0xe3,0x30,0x85,0x5f,0x1c,0x7e,0x56,0x0a,0x47,0x2c,0xa8,0xa0,0xb9,0x69, + 0x7a,0xa1,0x5b,0xa5,0x51,0x4a,0x90,0xbf,0x53,0x4e,0xdc,0xc3,0x37,0x02,0x60,0xda, + 0xfb,0xd7,0x22,0xcd,0x4c,0x43,0x95,0xb2,0x77,0x5a,0xc5,0xd4,0xf6,0x5a,0x5b,0x0b, + 0x3e,0x9b,0xc9,0x9b,0xb0,0x16,0x94,0x52,0x5f,0xb5,0x52,0xfc,0x58,0xea,0xae,0x75, + 0x5f,0xd2,0x18,0x65,0xab,0x95,0x24,0xa7,0xcb,0x73,0x9c,0x52,0x7e,0xcd,0x1a,0x7d, + 0x8d,0x13,0xe3,0xca,0xfb,0x24,0x2b,0x19,0xe5,0x82,0x80,0x7d,0xbc,0x1d,0xc7,0x31, + 0x0b,0x62,0xf2,0xca,0x7a,0xa6,0x76,0xfa,0x37,0xe8,0x6b,0xf1,0xfc,0xa9,0x83,0x97, + 0x28,0x7c,0x1e,0x27,0x9e,0xb7,0x8d,0xb7,0xa6,0xea,0x39,0x94,0xe9,0x5a,0x49,0x3d, + 0x9f,0xac,0x10,0x9d,0x09,0x11,0xcc,0x4f,0x31,0xaa,0xb4,0xb0,0xb7,0x18,0x55,0x9d, + 0x59,0xcc,0x69,0x4e,0x2d,0x6b,0xab,0x50,0xee,0x47,0xbe,0xc6,0xd4,0xb4,0xa1,0x0c, + 0x5e,0x69,0xfa,0x79,0x7a,0xbd,0x8d,0x36,0x70,0x18,0x61,0xf4,0xca,0xbf,0xf1,0x46, + 0x8d,0x8e,0x65,0x9b,0xff,0x69,0x96,0xaa,0xa9,0xab,0x29,0x4d,0xfb,0x6a,0x60,0x9b, + 0xbf,0xfc,0x68,0xfc,0x80,0x37,0x48,0x03,0x7a,0x56,0x47,0x0f,0xef,0x79,0xf0,0xa5, + 0x36,0xde,0xba,0x37,0x86,0x1b,0x00,0x79,0x30,0xed,0x9a,0x4a,0x98,0xcc,0x0b,0x3f, + 0x72,0x55,0xec,0xa2,0x3c,0x06,0xed,0x4e,0x4b,0xd3,0x4e,0x1d,0xba,0x66,0xc2,0x36, + 0x47,0x3f,0x4e,0xcb,0x05,0xdf,0xb8,0xa0,0x90,0x7f,0x3c,0x3d,0x7d,0x8d,0xc5,0x92, + 0x34,0xf5,0xa9,0x14,0x8c,0xf8,0xf4,0xdd,0x47,0xca,0xc5,0x9a,0x86,0x49,0xa9,0xca, + 0x09,0xe7,0xa4,0x30,0xce,0x7e,0xcb,0x41,0x28,0xf3,0x54,0x54,0x60,0x28,0x0b,0x7f, + 0xd4,0x0a,0x27,0x30,0xfc,0x65,0xe5,0x3f,0x70,0x4e,0x2a,0x2a,0x0f,0x25,0xbd,0xe1, + 0xb5,0x8d,0x71,0x30,0x34,0x14,0xa8,0x07,0x3f,0x97,0x54,0x38,0xa3,0x0a,0xa8,0x67, + 0x96,0x97,0x03,0x73,0x82,0x41,0x7b,0xdb,0x67,0xaa,0xc9,0xcf,0x94,0x27,0x0c,0x24, + 0x86,0x6d,0x9e,0x22,0x54,0xe2,0x57,0xa5,0xaa,0x3f,0xf9,0x18,0xbf,0x5c,0xaa,0x3b, + 0xa2,0x97,0xc5,0xca,0xfc,0xae,0x54,0xfb,0xec,0x37,0xe3,0x4f,0x94,0x75,0xb0,0x66, + 0x76,0xf3,0x99,0x7e,0xab,0x22,0xda,0xf1,0xea,0xb1,0x58,0x72,0xcc,0x99,0xad,0x2a, + 0xe0,0x31,0x9b,0xa8,0x42,0x99,0xdf,0x0b,0x2d,0x93,0xa7,0x90,0x5c,0x34,0xf2,0xd3, + 0x51,0x2b,0x57,0x2e,0xfa,0xfa,0x03,0x96,0xf1,0xe3,0xbb,0x3b,0xb3,0x29,0x59,0x19, + 0x89,0x8a,0xd8,0x3f,0x1e,0x23,0x20,0x46,0x01,0x9e,0x02,0x89,0xd2,0xdf,0x32,0xc2, + 0x08,0xc4,0x91,0xe7,0xf3,0x78,0x0b,0x2a,0x89,0xf5,0xda,0xed,0xaa,0x96,0xad,0x37, + 0x04,0xd4,0xa6,0x54,0x88,0x2f,0x4d,0xcd,0x4b,0xe9,0x0d,0x96,0x72,0x0d,0xe5,0x3e, + 0x05,0x41,0x3f,0xcd,0xb3,0x21,0xf6,0x0a,0x34,0x42,0x9e,0x17,0x6b,0x7b,0x3b,0x0d, + 0x24,0xfb,0x87,0x5f,0x53,0x37,0xae,0x66,0xeb,0x94,0x6a,0xe4,0x2c,0xc4,0x03,0xfc, + 0x1b,0x27,0xba,0xe2,0xec,0x89,0x77,0x77,0x37,0x98,0x46,0x93,0x1f,0x2c,0x92,0x10, + 0x61,0x4d,0xf1,0x3b,0x2c,0x6f,0x74,0x45,0x2b,0x4c,0x25,0xd0,0xd4,0x9c,0x24,0x66, + 0x51,0x03,0x2f,0xf0,0x90,0xab,0x6b,0xe2,0x20,0x22,0x10,0xfa,0xc6,0x09,0x45,0x32, + 0x63,0x8c,0xdb,0xbe,0xc9,0xe3,0xb6,0x89,0xb5,0x14,0xee,0x2a,0x8a,0xd1,0xcb,0x74, + 0x53,0x94,0x23,0xa2,0xaa,0x45,0x7c,0xe7,0x6f,0xc4,0x6d,0x45,0x9b,0x5b,0x3c,0x8b, + 0x42,0xa0,0xb5,0x3c,0xba,0x57,0x37,0x01,0x74,0x61,0xff,0xcb,0xbb,0x64,0x55,0x36, + 0x70,0x6f,0xe4,0x98,0xab,0xec,0x1f,0xf2,0x14,0x3d,0xe7,0x0e,0x88,0x10,0x2e,0xe6, + 0xd6,0x72,0x59,0xbb,0xb8,0xa6,0x23,0x66,0x57,0x6a,0x12,0xc0,0x97,0x5d,0xa9,0x40, + 0xe8,0xac,0x8a,0x30,0x00,0xf6,0x2d,0x9e,0xc0,0x2a,0x0b,0xec,0x28,0x4e,0xfa,0xe2, + 0x1a,0x06,0xf6,0x78,0xfa,0x00,0x04,0x34,0xf8,0x88,0xf6,0x93,0xbb,0xbb,0x36,0x26, + 0xce,0xbc,0x76,0xf8,0xba,0xd7,0x5f,0xf1,0x46,0x24,0x90,0x11,0xf6,0xf6,0x49,0x41, + 0xb8,0x76,0xe8,0x8a,0xa4,0xfe,0xfc,0x07,0x68,0xa2,0x07,0x8f,0xe2,0xfe,0xdd,0x09, + 0x3d,0x8b,0xd6,0x2f,0xb1,0xfa,0xa5,0xc7,0x5c,0xe3,0x06,0x74,0xfa,0x0e,0xca,0x6d, + 0x97,0x4e,0x8a,0xf1,0x56,0x0d,0x28,0x68,0xc3,0xbf,0xf8,0x82,0x38,0xe5,0x47,0xd8, + 0xab,0x0d,0x8c,0x28,0x98,0xdb,0x13,0x29,0xe2,0xe2,0x60,0xc5,0xc4,0x0e,0x3b,0x25, + 0x95,0x78,0x1a,0x32,0xdf,0x01,0x62,0xed,0x50,0x78,0x1b,0x3b,0x80,0xd3,0xfc,0xec, + 0xe9,0x8d,0xf8,0x88,0x39,0x18,0x4b,0x1f,0x45,0xdb,0x53,0x3c,0x49,0x9f,0x86,0xd6, + 0x62,0x7a,0xb3,0xd5,0x6f,0xf7,0xa6,0x61,0xb3,0xdf,0xc6,0x35,0xb8,0xc4,0xec,0xb6, + 0xd1,0x95,0x77,0x4a,0xf7,0x28,0xd1,0xf0,0xa7,0x20,0x39,0x7a,0x23,0x7a,0x91,0xdf, + 0xc9,0x23,0x7f,0x88,0x00,0x42,0x0b,0x67,0xfa,0x21,0xc1,0x10,0xba,0xec,0x96,0x2e, + 0xa9,0x68,0x98,0xcd,0xa6,0x3b,0x1c,0x22,0xeb,0x24,0x15,0x13,0x36,0xfb,0x77,0x9d, + 0xc1,0xb3,0x91,0xf7,0x9c,0x56,0xfc,0xd2,0xc1,0x03,0x10,0x82,0x6b,0xbf,0xd3,0xe3, + 0xa7,0x7f,0x00,0xaa,0xe0,0xc5,0xd9,0x33,0x3c,0xfd,0xbb,0x74,0x06,0xde,0xa5,0x1f, + 0x7e,0x80,0x79,0xb0,0xd8,0x47,0xd0,0xa8,0x68,0x34,0xd7,0xb6,0x7e,0xe5,0xc1,0x4d, + 0xdf,0xdf,0xd6,0xc1,0xd6,0x6c,0x5b,0x3f,0x34,0xe6,0xcd,0x5d,0x6b,0xab,0x63,0xdf, + 0xf6,0x27,0xcd,0xdd,0x66,0xe3,0xba,0x09,0xb3,0xde,0x86,0xf9,0xe3,0xdf,0x1f,0x1a, + 0x50,0x44,0x5a,0xb1,0xfc,0x63,0x1e,0xc6,0x59,0xd4,0xb8,0xb1,0x6f,0xad,0xee,0xa5, + 0x83,0xde,0x4b,0xe2,0x29,0xd7,0x46,0x25,0x84,0x1a,0xe2,0x09,0x34,0xed,0x40,0x40, + 0x4b,0x87,0x1d,0x4c,0x00,0x6f,0x99,0xc2,0xdb,0xd3,0xe3,0x1b,0x23,0xbd,0x05,0x29, + 0x7a,0xda,0x9c,0xf9,0x38,0x31,0x44,0x87,0x13,0xbc,0x19,0x0d,0x26,0x8b,0x78,0x63, + 0xe6,0x0d,0xe1,0xb9,0x1c,0x4d,0xe0,0xbc,0x30,0x8b,0x0b,0x7b,0xde,0xec,0xd8,0x34, + 0xd2,0x8a,0x4b,0x09,0xd2,0x5a,0xbe,0x21,0x73,0x89,0xf4,0x8b,0x21,0x75,0x20,0x8b, + 0x53,0x02,0xf3,0x06,0x3b,0x6a,0xe8,0x91,0xb7,0xfc,0x66,0x63,0x63,0xd9,0xc5,0x6b, + 0xa2,0x46,0x4f,0xe5,0xa4,0x1a,0x04,0xb3,0x24,0x0f,0x29,0x75,0xbd,0xdc,0xcf,0x98, + 0x93,0xb5,0x8b,0xca,0x02,0xd1,0x5c,0x6f,0x63,0xc3,0x45,0x9b,0xb6,0x2a,0x85,0x71, + 0x62,0xf8,0x8e,0x1a,0xb2,0xc4,0xdf,0xd2,0xb9,0x09,0xba,0x92,0xf2,0x3d,0x97,0xf9, + 0x78,0x51,0x68,0x54,0x17,0x52,0xf5,0xf3,0xc4,0x46,0xdb,0xdb,0xc6,0x5b,0x8c,0xd8, + 0x24,0x67,0x48,0xba,0xdb,0xd3,0x0f,0xc5,0x9d,0x79,0xc0,0x40,0xe7,0x06,0xc1,0xd8, + 0x18,0x78,0xf8,0x9b,0x42,0xf8,0xa8,0xa6,0x76,0x65,0x68,0x17,0x2f,0x37,0x7a,0xa2, + 0x72,0x21,0xb1,0xaf,0x23,0x1d,0xfb,0x78,0x32,0xb3,0x94,0x74,0xcd,0x75,0x07,0xb2, + 0xa7,0x2b,0x01,0x51,0x15,0xc1,0xc2,0x5d,0xd3,0xc5,0xa4,0x4f,0x84,0xc7,0x3e,0xb9, + 0xf5,0xa6,0xaa,0x32,0xaa,0x3b,0x78,0x9b,0x05,0x3b,0xc9,0xe6,0x57,0x1d,0x25,0xde, + 0x18,0xba,0xc2,0x14,0x10,0xb4,0x56,0x85,0xe6,0x9d,0x27,0x55,0x77,0xee,0xfa,0x05, + 0xb2,0x69,0x00,0xa4,0x2a,0x6a,0x37,0x9a,0xe6,0x57,0x9e,0xf4,0xbd,0x00,0xb4,0xb1, + 0x72,0x84,0xb1,0xb8,0xe8,0x64,0x63,0x63,0xec,0x60,0x00,0x68,0x98,0xe1,0x9d,0xd9, + 0x96,0xfe,0x00,0x5c,0x0d,0xc8,0x76,0xf6,0x23,0xdd,0x28,0xdd,0xa0,0x56,0x6d,0x0c, + 0xc0,0xbf,0xc9,0x4e,0x61,0x56,0x68,0xac,0x23,0xb3,0x25,0xbe,0x5f,0x99,0x03,0x1f, + 0x20,0x32,0x80,0x7e,0x9b,0xde,0x78,0x8c,0x57,0x33,0xc9,0x09,0xf2,0x94,0x1b,0x74, + 0xad,0x2a,0x3a,0xce,0x25,0x9e,0x1b,0x88,0x3b,0x1b,0x7b,0x25,0x38,0xc1,0x8e,0x81, + 0x21,0x40,0xa9,0x0c,0xe3,0x05,0xeb,0xd0,0x7a,0xb9,0x42,0x5d,0x57,0x3a,0x3f,0x92, + 0xc9,0xef,0x55,0x65,0x73,0x7f,0xe1,0xbc,0x5d,0x5d,0x7b,0xba,0x28,0xc3,0x76,0xc9, + 0xe5,0x19,0x85,0xdb,0xc4,0x24,0xd6,0x92,0xe2,0x53,0x51,0xcb,0xa8,0xcb,0x28,0x19, + 0xb2,0x05,0x50,0xb5,0x4f,0x37,0xa7,0xea,0xf2,0xc4,0xe6,0xb7,0xbc,0x45,0x75,0x93, + 0xed,0xcc,0x40,0xb6,0x54,0xf7,0xc7,0x42,0xc7,0x82,0x17,0xc7,0x09,0xdd,0x29,0xdb, + 0x6f,0x83,0xe4,0xa1,0x5e,0x96,0xb2,0x0a,0x0d,0xdc,0x24,0x6d,0xa0,0x7c,0xc7,0x2a, + 0x75,0xd8,0xc7,0xdf,0x47,0xcd,0xbd,0xbd,0xe3,0xdd,0x2e,0xff,0xdc,0x7f,0x76,0xbc, + 0x23,0x7e,0x3e,0x3b,0x38,0xee,0x74,0xdb,0x94,0xd9,0x30,0xaa,0xcf,0x6d,0xb3,0x4b, + 0xe7,0xf3,0x11,0x66,0x7d,0xd1,0xef,0x0e,0x1d,0xf9,0x69,0x1c,0xb8,0xb7,0x5d,0xbe, + 0x05,0x98,0x2d,0x13,0x3d,0x71,0x75,0x62,0x7c,0x23,0xef,0x93,0x4c,0xf8,0xce,0x53, + 0x78,0x31,0x88,0x12,0xd8,0x7c,0x74,0xd9,0xc7,0x2c,0xa5,0x37,0xe2,0x72,0x45,0x50, + 0x97,0x77,0xb6,0xfc,0x1f,0x76,0x40,0x66,0xc1,0x62,0x20,0x9d,0x5f,0x12,0x97,0xc1, + 0x0f,0xd0,0x7d,0x78,0x6c,0xf2,0x0d,0x88,0xc0,0xaf,0x2c,0x98,0x35,0x3f,0x60,0x9f, + 0x78,0x6e,0xb6,0xa9,0xa0,0xb7,0xd9,0xd3,0x12,0x18,0xad,0x18,0x28,0x5e,0x08,0xdc, + 0xa3,0xf5,0x69,0xfa,0x40,0xf5,0xd3,0x2e,0xbe,0x68,0x82,0x4a,0x2a,0xc7,0x83,0x37, + 0xb6,0x52,0xf2,0x98,0x2d,0x53,0x34,0x6d,0x96,0x35,0x60,0x5c,0x99,0x59,0x12,0x28, + 0x1d,0x18,0x7f,0x3f,0x74,0x2f,0x18,0x5f,0xa8,0x80,0x31,0x8c,0x22,0xe2,0x49,0x43, + 0xbd,0xfe,0xf2,0x33,0x1e,0xea,0x4b,0x5f,0x6a,0xda,0x17,0x25,0x6f,0x6b,0x4e,0xce, + 0x81,0xa2,0x6a,0xe2,0xc8,0x5b,0x90,0x45,0x38,0x4e,0xc9,0xd2,0x1c,0x2a,0x1b,0x73, + 0x48,0x41,0x8d,0xd2,0x7d,0x13,0x6b,0xd7,0xc5,0xc3,0x4b,0x37,0x11,0xd2,0xf4,0x9a, + 0x2e,0xfd,0x29,0x78,0xf3,0x7a,0x5e,0x88,0x21,0x18,0xd4,0x3b,0x35,0x52,0xd3,0x23, + 0x8a,0xed,0x50,0xee,0x9c,0xbb,0xbc,0xb0,0xf4,0x9b,0x40,0x7b,0xfa,0x17,0x40,0x38, + 0xf1,0x0d,0x6d,0xab,0x7a,0x5c,0x4a,0xfd,0xc6,0xa3,0x0e,0x85,0x28,0x4f,0xbf,0x0b, + 0xc2,0x7c,0xa8,0x84,0x79,0x89,0x16,0xe2,0xee,0xe5,0xe2,0x45,0xcb,0xf2,0xd6,0x57, + 0x4f,0x65,0x31,0x4a,0xf1,0x80,0x9b,0xe5,0x69,0x1e,0x98,0x10,0xb0,0x69,0x63,0x85, + 0x04,0x03,0x4b,0x9d,0x7b,0x6e,0x6d,0x16,0x77,0x74,0x2a,0x45,0x71,0x59,0x55,0x61, + 0xd1,0x16,0xbc,0xf2,0xc2,0xe1,0xb1,0xb9,0xf1,0x5d,0xbb,0x73,0xd0,0x79,0xb6,0xdb, + 0xe3,0x3b,0xba,0xcc,0xc3,0x74,0x0a,0xda,0x39,0x14,0xe0,0xb6,0xa9,0x06,0xbd,0x51, + 0x77,0x38,0x9b,0x55,0x89,0x7d,0x33,0xbf,0x4f,0xb3,0x72,0x4f,0xa8,0xa2,0x38,0x1d, + 0xba,0xe4,0x33,0x52,0x57,0x63,0xc3,0xde,0x86,0x9d,0xe5,0xe0,0xf5,0x99,0x9b,0xcb, + 0x5c,0x63,0x57,0xd1,0xb9,0x75,0xbb,0x44,0xac,0x15,0xb1,0x89,0xdc,0x59,0x7e,0x2c, + 0xa5,0x37,0xfd,0xd7,0x5d,0x59,0x11,0xdd,0x6b,0x1c,0x59,0x1f,0x60,0xca,0x05,0x61, + 0x45,0x24,0xf6,0x15,0xf6,0xe2,0xdc,0x0f,0x94,0x12,0x79,0xf3,0x27,0x24,0x21,0x08, + 0x26,0x1a,0x6c,0x83,0x4e,0x90,0xe8,0x97,0xcc,0xf0,0xb8,0x18,0xcc,0x06,0x20,0x43, + 0xa4,0x5d,0x46,0x5b,0x71,0x2e,0xa2,0x58,0x53,0xad,0xb3,0xa8,0x48,0xed,0x57,0x14, + 0x0b,0x81,0x0d,0x7f,0x04,0xc1,0x9a,0x12,0x1c,0x91,0xff,0x6c,0x9e,0x2b,0x63,0xe0, + 0x5e,0xe1,0xad,0xe9,0xb0,0x17,0xbd,0xa1,0x3b,0x13,0x01,0xd7,0x7c,0x41,0xf0,0xc9, + 0x07,0xba,0x6d,0x2b,0x8c,0x0c,0x5f,0xdc,0xc7,0x4c,0x91,0xb9,0xa7,0xd1,0x0c,0x98, + 0x47,0xd7,0xc0,0x5b,0x90,0xd3,0xee,0x36,0xd2,0x10,0x3c,0xad,0x9a,0x0c,0x81,0x4f, + 0x3b,0xe1,0x17,0xa2,0x29,0xd7,0x6d,0x11,0x3a,0x61,0x34,0xf8,0x6f,0x5e,0xc2,0x8f, + 0x2c,0xdb,0xf8,0xc7,0x2c,0xc0,0xb0,0xe0,0x7d,0x6a,0x70,0xdc,0x7f,0xfb,0xf3,0x17, + 0x18,0xc9,0xbc,0x7f,0xf5,0xf3,0x17,0x0c,0xd7,0x92,0x11,0x20,0x06,0xf4,0x8e,0x97, + 0x25,0x88,0x31,0x8f,0xed,0xc1,0xdc,0x46,0xd7,0xfd,0xe4,0x5f,0x0e,0x79,0xbe,0x16, + 0x92,0x0f,0xf6,0xcf,0x01,0x3a,0x8b,0xac,0x6b,0x7e,0x3a,0x3d,0xd9,0x7e,0xe1,0x86, + 0xee,0xc8,0x35,0x1a,0x18,0xbb,0x34,0x85,0xf5,0x19,0x79,0x23,0x0b,0x96,0xbf,0x6b, + 0x3e,0x6f,0xb7,0x9c,0xbd,0xce,0x9e,0x89,0xbe,0xec,0xe6,0x7e,0xc7,0x81,0x5f,0x29, + 0xbc,0x7e,0x66,0xa2,0x4b,0xbb,0xb9,0xc7,0xf7,0x7e,0x60,0x2b,0x27,0x33,0x90,0xeb, + 0x81,0x9e,0xbb,0xa2,0xda,0x9e,0x73,0xd0,0x6a,0x71,0xb5,0xce,0x5e,0x8b,0x6b,0xb5, + 0x5b,0xcb,0xab,0x19,0x8d,0x77,0x2e,0x9e,0x35,0xc8,0x6e,0xf7,0x9d,0xbd,0x67,0xcb, + 0xba,0x3d,0xa8,0xad,0xff,0xd6,0x57,0x63,0xde,0x73,0x5a,0xb2,0x72,0xbb,0x23,0xea, + 0x3e,0x5f,0xde,0x77,0xd7,0x38,0x3d,0xb1,0x8d,0x5f,0x4f,0xb8,0x76,0x67,0xc7,0x69, + 0x57,0x67,0x7c,0xb0,0xbc,0xeb,0xae,0xf1,0x1f,0x6f,0x7e,0x5a,0xa3,0xae,0xd6,0xf5, + 0x8f,0x89,0xfb,0xc5,0x0f,0x1e,0xd7,0xdf,0xcb,0x4f,0xdb,0x9f,0x7e,0x29,0x82,0xe9, + 0x60,0xff,0xb9,0xb3,0xdf,0x3e,0x58,0xbb,0xee,0x4f,0x1e,0xe0,0x31,0x26,0x30,0x1d, + 0xe5,0xf5,0xd5,0xea,0xe6,0xcb,0xd4,0xae,0x8c,0xf7,0xc5,0x17,0x6f,0x38,0x81,0x3d, + 0x11,0xcf,0x40,0x9a,0x1d,0x56,0x07,0xb1,0xbb,0xd3,0x79,0x18,0x45,0x5e,0x7e,0x32, + 0x76,0x77,0x76,0x00,0x77,0x8d,0xc6,0x9b,0x28,0xbc,0x34,0xe8,0x1c,0x86,0xdb,0x80, + 0xf7,0x0e,0xde,0x31,0xfc,0xe0,0x40,0xb4,0x36,0xf4,0x31,0x14,0xea,0xaf,0x02,0xc4, + 0x3b,0xca,0x62,0x12,0x90,0xf7,0xdf,0x0a,0x08,0x56,0x07,0x8f,0x57,0x34,0xff,0x37, + 0x88,0xdd,0x78,0xb2,0xc4,0x48,0xf6,0xcc,0xd9,0x79,0xb6,0x06,0xe8,0xb4,0x8a,0x65, + 0x1c,0xd7,0x5a,0x58,0xd5,0x35,0x66,0x85,0x9b,0x5d,0x02,0x29,0x82,0x59,0xaa,0xd9, + 0xd6,0xd4,0x14,0x18,0xbe,0x5f,0x53,0xf3,0x60,0xff,0x60,0x8d,0xe9,0x6a,0x35,0x4f, + 0xe7,0x7e,0xf6,0x85,0x01,0xf5,0x38,0x4c,0xfb,0x4f,0xdf,0xcb,0x42,0x77,0x5a,0x9a, + 0x6a,0xa7,0xe5,0x74,0x96,0x2e,0xcf,0x5e,0x4d,0xed,0x32,0xa6,0x16,0x5a,0xa8,0x03, + 0xf7,0x93,0x0b,0xcd,0xff,0xbe,0x98,0x36,0x75,0x91,0x67,0x6d,0x5f,0x91,0xb2,0x5d, + 0x57,0x67,0x44,0x2c,0x12,0x89,0x5e,0xa8,0x93,0x85,0xc0,0xbe,0x12,0xc0,0xfb,0x21, + 0x67,0x00,0xea,0x1a,0x3c,0x09,0x90,0x24,0xf1,0x2f,0x0c,0xc6,0xa0,0x31,0xc1,0x33, + 0xfc,0x71,0x5a,0xa6,0x38,0x6d,0x77,0xef,0xee,0x14,0x3b,0x34,0x94,0x3b,0x27,0xdb, + 0x60,0x5c,0x2d,0xd2,0xc8,0xbe,0x05,0x7e,0x57,0x0c,0x3c,0x2a,0xba,0xe9,0xb2,0xec, + 0x0f,0x4d,0x8a,0x9b,0x3b,0x6f,0xd0,0x27,0xf6,0x69,0xbf,0x2f,0x1e,0x6f,0xf1,0xb1, + 0xd2,0x8f,0x26,0xc2,0x15,0xcd,0x83,0x04,0x9c,0x9f,0x28,0x31,0x65,0x11,0x36,0x06, + 0xee,0x2b,0x75,0x73,0xdf,0x8f,0xbf,0x4a,0x50,0xe5,0xef,0x4e,0x5f,0x49,0xa8,0xe5, + 0xef,0x5e,0x7c,0xac,0x00,0x70,0xfe,0x85,0x62,0x93,0x5e,0xf9,0x94,0x52,0x35,0x0f, + 0x1c,0xd0,0x33,0xec,0xda,0xc3,0x59,0x52,0xcc,0xd3,0x7b,0x77,0xc7,0x8a,0x8f,0xca, + 0xf1,0x59,0x4e,0x8b,0x09,0x02,0x0d,0x27,0x9b,0xa4,0x00,0xdf,0x84,0x38,0x74,0x7e, + 0x91,0xbb,0x9e,0x21,0x93,0xac,0x7f,0x28,0x2a,0x60,0xce,0x5d,0x78,0x5e,0x27,0xed, + 0xae,0xe6,0x62,0x5c,0x97,0x7b,0x17,0x86,0x6b,0x59,0xdc,0xa6,0x5f,0x4c,0xc2,0x59, + 0xce,0x01,0xea,0xeb,0x99,0x3f,0x33,0x10,0x5a,0x01,0x56,0x23,0x37,0x9d,0xf4,0x8c, + 0xcd,0xad,0x02,0xf0,0xf5,0x84,0xa0,0xb9,0xed,0xac,0xbe,0x59,0xca,0xdd,0x7b,0x44, + 0x71,0xa8,0xf2,0xfa,0x23,0x19,0x72,0x5c,0x6c,0x04,0xc0,0x5c,0xc9,0xad,0xc8,0xb9, + 0x9c,0xb0,0x6b,0x02,0x9f,0x32,0xaf,0x70,0x0c,0x72,0x80,0x81,0xa9,0xb7,0x0c,0x2f, + 0x4c,0x5d,0x8e,0x71,0xb3,0x73,0x89,0x27,0x3d,0xbe,0x3b,0x72,0xee,0xf3,0x35,0xba, + 0x43,0x4c,0xfa,0x35,0x9c,0x44,0x1c,0xfa,0x8a,0x36,0x52,0xac,0x75,0xd4,0x6f,0x59, + 0x69,0x39,0xe3,0x3d,0x7d,0xd1,0xb2,0xaa,0x35,0x38,0xfa,0x93,0x82,0x2e,0xe1,0xaf, + 0xc8,0xcd,0x2c,0xef,0xd8,0x56,0x98,0xd1,0x84,0xe9,0x15,0xaf,0x94,0x7c,0xc1,0xf3, + 0x0d,0x6e,0xbb,0xc6,0xe1,0xe0,0x88,0x4d,0xf3,0x43,0x8a,0x55,0xb4,0xea,0x70,0x96, + 0x3f,0x0f,0xe6,0x56,0x19,0x71,0xf9,0x43,0x3a,0xb6,0xca,0xd8,0xcb,0x1f,0x86,0x09, + 0x29,0x09,0xd0,0x03,0xad,0xee,0x16,0x4f,0xe0,0xb0,0x75,0x6c,0x1a,0x8d,0x51,0xe4, + 0xa5,0xe1,0x66,0xc6,0x30,0x02,0x08,0x24,0x52,0x3a,0x64,0x20,0x59,0xa4,0x41,0x48, + 0xe8,0xaf,0xb8,0xd8,0xa0,0xba,0x47,0x00,0xa3,0x0b,0xf9,0x6f,0xaf,0xfb,0x0a,0x90, + 0x36,0x61,0x62,0x2f,0x4f,0x93,0x6f,0x9a,0x77,0x77,0xf4,0x97,0x90,0xc1,0x5a,0xd0, + 0xf7,0xe2,0x1e,0xba,0x17,0xb7,0x63,0x2c,0xf8,0xda,0x8b,0x02,0xde,0x9f,0x6f,0x5d, + 0x5f,0xf4,0xb8,0x4e,0x11,0xb7,0xef,0x19,0x41,0x46,0x98,0x6c,0x83,0xe5,0x59,0x4c, + 0x64,0x3e,0x32,0xfe,0x45,0x4d,0x8a,0xab,0xb7,0x26,0x49,0x34,0xbb,0x94,0x61,0xef, + 0x53,0x34,0xe5,0x65,0x13,0x14,0x38,0x39,0x78,0xfe,0xda,0x0d,0x87,0x50,0xc3,0x1b, + 0xf9,0x59,0x94,0x3c,0x79,0x4c,0xd8,0x24,0x67,0x79,0xc3,0x08,0x4d,0x1a,0x9a,0x4e, + 0x16,0x1f,0x1b,0x4b,0xa9,0x30,0x30,0xce,0x83,0x28,0x97,0xdf,0x8a,0x2c,0x22,0x29, + 0xa9,0xd7,0x4a,0xca,0xf0,0x7c,0x3b,0xa6,0x5f,0x57,0xb9,0x9a,0x6b,0x9c,0xca,0x96, + 0x3c,0xdf,0xb5,0x0b,0x1d,0x0b,0x91,0x8c,0xe2,0xda,0xc3,0x6a,0x30,0x23,0x59,0x37, + 0x34,0xf2,0xfa,0xf0,0x69,0x10,0x5d,0xa1,0x1a,0xaa,0xd4,0xa9,0xf9,0xc1,0xdd,0xc6, + 0x06,0xe6,0xc7,0xde,0xb1,0xc2,0xfe,0x2e,0x45,0x0a,0xb6,0xed,0x8e,0xbd,0x63,0xef, + 0xd6,0xdd,0xb0,0xa8,0xb2,0x22,0xe1,0x1e,0x35,0xb7,0xfc,0xe5,0xe1,0x4c,0x3e,0x00, + 0x23,0xd4,0x0d,0x06,0x59,0xbc,0xa4,0x3c,0x46,0x2a,0xa2,0x5d,0x49,0x03,0x35,0x8c, + 0x8f,0x87,0xa4,0xd2,0xee,0x7f,0x48,0x3c,0xb4,0xf8,0x1b,0xd1,0x80,0x4f,0xc5,0x28, + 0xbd,0x6a,0x9e,0x7f,0x81,0xe8,0x17,0xbd,0x6a,0x72,0x96,0x23,0xce,0x0a,0xc1,0x19, + 0x60,0x28,0x2f,0x2d,0x5a,0x9e,0xd5,0x75,0xf7,0xa1,0xe1,0xdd,0x70,0x42,0x23,0x79, + 0x23,0x1d,0x87,0xff,0xbb,0xe1,0x0c,0xb6,0x32,0xe2,0x2e,0x5d,0xee,0x40,0xa9,0x67, + 0x44,0xb4,0xbb,0x37,0xca,0xef,0xbd,0x8f,0xe8,0x2a,0xe3,0xf9,0x97,0x1d,0xa3,0x90, + 0x09,0x56,0x5e,0x09,0xa5,0xd2,0x82,0x90,0x19,0x68,0xaa,0xf2,0xff,0x89,0xdb,0x55, + 0x25,0x8a,0x88,0xbb,0x56,0x4d,0x75,0x94,0x1a,0x6d,0x6c,0x3c,0x15,0xd9,0xf3,0x61, + 0x49,0xa6,0x98,0xdb,0x9e,0xb1,0x38,0x9c,0xf6,0xa2,0x47,0xeb,0xbc,0xf7,0xf9,0x4d, + 0xd3,0x08,0xcb,0x5d,0x8b,0xf2,0x6c,0xf3,0x2d,0xbc,0x7c,0x20,0x21,0x4e,0xf3,0x64, + 0x18,0x20,0x1e,0xa8,0x95,0xe3,0x11,0xe2,0xf7,0x32,0xe8,0x0e,0x53,0x2e,0x78,0x9c, + 0x2d,0x4c,0xdd,0x5f,0x4c,0x56,0x59,0x80,0x66,0x3a,0xe7,0x6c,0x00,0xef,0x4f,0x8d, + 0xa1,0x1b,0xe3,0xa9,0x06,0xe6,0xa4,0x1a,0x88,0x94,0x01,0x86,0x29,0x32,0x10,0x9a, + 0xc2,0xf8,0x2f,0xee,0x92,0x26,0x8b,0x5f,0x28,0xac,0xd5,0x68,0x9f,0x18,0x78,0xe8, + 0x1f,0x3f,0xf5,0x31,0x95,0x95,0x4a,0x36,0x80,0xa6,0xe8,0x58,0xde,0x8f,0xc1,0x8e, + 0xce,0x94,0xaf,0x63,0xee,0x06,0x57,0x79,0x63,0x98,0x68,0x56,0x51,0xa6,0xc4,0xc3, + 0x03,0x11,0x59,0x07,0xd3,0xc6,0xba,0x94,0x06,0x88,0x53,0x5a,0x92,0xc9,0x7c,0x00, + 0x12,0x29,0x54,0x71,0x0a,0x3e,0x33,0x5c,0x72,0x1b,0x50,0x23,0x2b,0x5f,0x80,0xb9, + 0x32,0x6a,0x62,0x63,0x23,0x71,0xd0,0xe2,0x88,0x68,0x8e,0x95,0x9b,0xf0,0x50,0x72, + 0x82,0xa1,0x02,0xf9,0x66,0xa0,0x52,0xd1,0x75,0xd5,0x26,0x4e,0xe9,0xed,0x97,0x06, + 0x49,0x8b,0xc0,0xe4,0x17,0xd1,0x2c,0x18,0x21,0x13,0x82,0xa9,0x0c,0x35,0xfc,0x6f, + 0xa2,0x5f,0xaf,0xe1,0xd2,0xed,0x76,0x56,0x69,0xf3,0x7b,0xe3,0x31,0x26,0xa5,0x14, + 0x42,0x5e,0x29,0xfd,0xc1,0xb1,0x96,0xa4,0xa0,0xdb,0xc8,0xf3,0x26,0x20,0x76,0xea, + 0x56,0xf8,0x62,0xea,0x34,0x76,0xff,0x96,0x61,0x84,0x82,0xa4,0x54,0xaf,0x5d,0xd7, + 0xaf,0x69,0x63,0x5e,0x84,0x63,0xc9,0x53,0x19,0x80,0x40,0xd5,0x2f,0x5e,0x3b,0xa1, + 0x3e,0xa9,0x1b,0x43,0xe4,0xc1,0x8b,0xec,0x91,0x44,0x87,0xc2,0x9d,0xc9,0xb0,0x75, + 0x62,0xd9,0xd5,0xa9,0x87,0x48,0xc9,0xa3,0x55,0x89,0x2b,0x4d,0x79,0xa3,0x63,0x7c, + 0x77,0x37,0xb4,0x36,0x36,0x62,0xa0,0x4f,0x43,0x59,0xe3,0xa4,0x50,0x34,0x35,0x46, + 0x11,0xc5,0x3c,0x70,0x8c,0x4b,0x6f,0xd9,0xed,0x58,0x85,0x0d,0xa5,0x02,0x95,0x00, + 0xb1,0x30,0x44,0x78,0xa4,0xb6,0x7d,0x21,0x57,0x19,0x7c,0x6e,0xd0,0x6d,0x57,0x58, + 0x8e,0x0f,0xe5,0xeb,0xbc,0x10,0x36,0xb7,0x02,0x14,0x41,0xc8,0xd9,0x80,0xc5,0x92, + 0x6b,0x21,0x93,0xf0,0xa1,0x04,0xa7,0x87,0xc0,0xc6,0x4c,0xfd,0xfe,0x70,0xd3,0x1e, + 0x9d,0x6b,0x09,0xf2,0x2e,0x14,0xb1,0x29,0xbd,0xc5,0x58,0x17,0x12,0x1b,0x2d,0x46, + 0xb6,0xbc,0xa1,0x3c,0xe5,0xb9,0x6c,0x09,0xf3,0xe9,0x5d,0x1c,0x9b,0x3f,0xd0,0xff, + 0xcc,0x1c,0x3d,0x0a,0x5f,0x1b,0x30,0x3f,0x91,0x45,0x0f,0x24,0xa0,0x06,0xe5,0xb6, + 0x11,0x63,0xb2,0x44,0x5e,0x23,0x3c,0xa2,0xaf,0xa1,0x80,0x16,0xf5,0xfd,0x4e,0xd2, + 0x6f,0xe8,0xb7,0xae,0x90,0x0a,0x01,0x18,0xf6,0x47,0x52,0x47,0xa8,0xa8,0x0c,0x76, + 0x12,0x73,0x5a,0xed,0x35,0xe4,0xfc,0x55,0x97,0x6b,0x24,0x43,0xd0,0xa1,0x62,0x99, + 0x68,0x9b,0xc6,0xf7,0x91,0x39,0x77,0x23,0x89,0x8f,0x13,0x10,0xe5,0x41,0x6e,0x6c, + 0x1a,0x6c,0x2c,0x4e,0x86,0x9a,0xa0,0x22,0xac,0xc1,0xe8,0x76,0x62,0x6d,0x35,0xc4, + 0x48,0xd9,0x2b,0x45,0x87,0x90,0x06,0x90,0xec,0x86,0x01,0x70,0xf6,0x9b,0x41,0x37, + 0x0d,0xe2,0xfc,0xb3,0x1b,0x68,0x9f,0x3c,0x81,0x44,0xb1,0xba,0x7d,0xb5,0xb1,0xd1, + 0x28,0xef,0x81,0xbb,0xbb,0xd2,0xce,0xb2,0xb8,0xed,0x22,0x76,0x9b,0x76,0xa9,0xd4, + 0xb1,0x49,0xd7,0xcf,0x95,0x71,0xa2,0xce,0xb7,0x87,0x9a,0x7b,0xaf,0xb3,0x60,0xc2, + 0x93,0x02,0xf3,0xd3,0x70,0xae,0xf4,0xbe,0xdc,0x83,0x68,0xef,0xf5,0xc9,0xd9,0x09, + 0x80,0x56,0xb6,0x43,0xb7,0x26,0x56,0x5a,0x91,0x6f,0xf5,0x36,0x40,0x82,0xf8,0x14, + 0xc7,0x5e,0xf2,0x02,0x84,0xbf,0x86,0xa5,0xf1,0x5c,0x50,0x5a,0xfa,0x6a,0x58,0x74, + 0x8f,0x5f,0x75,0x54,0xfc,0x3a,0xe7,0xbd,0xf3,0x90,0x81,0xf5,0x1e,0x3f,0xa0,0xa0, + 0x6b,0xda,0xf0,0x2e,0x8f,0xb2,0x3f,0xc6,0x27,0x0e,0xa3,0x6f,0xd9,0xed,0x0e,0xec, + 0x46,0xf4,0x82,0xec,0x62,0xbd,0xbc,0x63,0x6f,0xaa,0xfa,0xe5,0xfb,0x01,0x2b,0xfd, + 0x8a,0xd7,0xaa,0x5f,0x6f,0xaa,0x77,0xcb,0x5f,0x6d,0x78,0xc9,0x05,0xd6,0xb8,0xd5, + 0x42,0x12,0x55,0xd1,0x2f,0xc8,0x58,0x30,0x32,0x99,0x8d,0xbe,0xd4,0x7b,0xf1,0xa3, + 0x16,0x4e,0x16,0x33,0x3d,0x14,0x19,0xe2,0x69,0x40,0xe4,0x07,0x05,0x15,0xec,0xb8, + 0x70,0x3f,0x8c,0x98,0x27,0xa6,0xef,0x2d,0xdc,0x02,0x33,0xaa,0x1e,0x6d,0x29,0x76, + 0xf3,0x74,0xfb,0x9f,0x0d,0x8e,0x9c,0xbb,0x93,0x58,0xf7,0xfd,0x1d,0x22,0xcf,0xf7, + 0x77,0xb4,0x41,0xbe,0xbf,0xcb,0x6e,0xbe,0xbf,0xc3,0x01,0xfe,0x2e,0xb0,0x45,0x3c, + 0xe0,0xa2,0xcb,0xf7,0x08,0x1f,0xf1,0x9b,0xa0,0x44,0xbf,0x29,0x95,0xf9,0xef,0x8e, + 0x25,0x52,0x3a,0x5f,0xe1,0x35,0xc4,0x85,0x38,0x07,0x1a,0xa8,0x80,0xb0,0x96,0x76, + 0x35,0x05,0x18,0xe3,0x97,0x42,0xe2,0xb3,0xfc,0x02,0x1a,0x54,0x3f,0x89,0xac,0x17, + 0xd4,0x4f,0xa2,0xd8,0xf2,0xb8,0xa7,0x28,0x59,0x93,0x90,0x9e,0x27,0x2d,0x15,0xbc, + 0x90,0x59,0xaa,0x4e,0x79,0x81,0x4b,0xd5,0x11,0x64,0x3e,0xe3,0x81,0x5e,0x6b,0xee, + 0x71,0xfe,0x10,0x78,0x6e,0x4a,0x07,0x0b,0x20,0xa0,0xea,0xb4,0x1e,0x1d,0x10,0xbd, + 0xd8,0x68,0x5b,0x05,0x5f,0x5c,0xe8,0x5a,0x33,0xad,0xe4,0x99,0x15,0xcc,0x35,0xfa, + 0x00,0x6d,0x1e,0x13,0xc7,0xba,0x85,0x93,0x0e,0xd1,0x4d,0xc7,0x32,0x9a,0x24,0x65, + 0xa4,0x20,0xb0,0xf9,0x31,0x0b,0x76,0x80,0x2e,0xcd,0x4f,0xa7,0x78,0x9d,0x01,0xfa, + 0xa4,0xa7,0x85,0x81,0x2c,0xcd,0xb8,0xaa,0xa2,0x34,0xb4,0x54,0xab,0x4b,0x87,0xc6, + 0x05,0x60,0x99,0xe4,0x28,0xca,0x93,0xd5,0xb5,0x18,0xc0,0xb3,0xf3,0x93,0xe6,0x7f, + 0xbb,0xcd,0x2f,0x17,0x8b,0x9d,0x7b,0x99,0xe7,0x3b,0x5f,0x88,0x75,0xc8,0x8b,0x69, + 0x15,0x54,0x9c,0x15,0xd0,0x22,0x5f,0x02,0x00,0xd6,0x4e,0x33,0xf0,0xd0,0xcb,0xd8, + 0x40,0x3a,0x26,0xec,0x01,0x06,0x86,0xe2,0x1a,0x0d,0x72,0x08,0xc5,0x81,0x17,0x87, + 0xbd,0xbc,0x69,0x25,0x24,0x0d,0xa4,0x81,0x8c,0x53,0x52,0xdb,0x03,0xca,0x0d,0xdf, + 0x1f,0xe8,0xc5,0x7b,0x83,0x52,0xa2,0xe9,0x41,0xb1,0xb1,0x33,0x8f,0x35,0x1c,0xca, + 0xa4,0xe7,0xb0,0xeb,0xa0,0x9e,0x7e,0x76,0xc1,0x21,0x82,0xac,0x2f,0xe4,0x27,0x7c, + 0x89,0xc8,0x8b,0x2a,0xae,0x49,0x2f,0xe7,0xa1,0x1c,0x94,0xd2,0x51,0xe0,0xb8,0xf2, + 0xc0,0xaf,0x44,0x4f,0xba,0xac,0xb7,0x23,0xb3,0xb6,0x29,0x5b,0x13,0x68,0x04,0xb1, + 0x0c,0x4f,0xe4,0x74,0xb6,0x8d,0x4e,0xab,0x63,0x71,0xd6,0x55,0x29,0xfc,0x53,0x4a, + 0x3c,0x8e,0xe2,0x9d,0xcb,0x7c,0xc3,0x7a,0x73,0x68,0x9f,0x42,0x23,0x16,0x6d,0x6d, + 0xce,0x6a,0xcb,0x1e,0x48,0x48,0x67,0xa0,0x71,0x4c,0x00,0x03,0x5b,0xc0,0x1f,0x71, + 0xc0,0xa9,0xaa,0xaa,0x65,0x26,0x34,0xeb,0x87,0x24,0x4d,0x6a,0x94,0x18,0x4e,0x24, + 0xd8,0xa5,0xcb,0xc5,0x71,0x78,0x1c,0x8c,0xa9,0x25,0x86,0xe5,0x88,0x4d,0x99,0x1e, + 0xd6,0x31,0x5e,0xcb,0x1c,0xbb,0xa2,0x19,0x31,0x1e,0x9b,0x26,0x04,0xfa,0x16,0xe6, + 0x47,0xc7,0x31,0xa4,0xc6,0xef,0x26,0x6b,0xf4,0x9c,0xc6,0xef,0xe9,0xef,0x26,0xe5, + 0x06,0xcc,0xb3,0x19,0x12,0x28,0x80,0x7b,0xef,0xb4,0xc4,0xe5,0x7d,0x29,0xb5,0xae, + 0xbc,0xa5,0x38,0x29,0xfa,0x2c,0x36,0x30,0x8c,0xc9,0xce,0x33,0xb1,0xa3,0x7a,0xf6, + 0xd6,0x4b,0x27,0x2f,0xa2,0xc4,0x6b,0x9e,0x52,0x09,0x6c,0x58,0x5c,0xe8,0x24,0xf2, + 0xd3,0x89,0x3c,0x8f,0x04,0x32,0x3d,0xc5,0x60,0x4d,0x92,0x41,0x34,0x33,0x36,0x45, + 0xae,0x5b,0xa5,0x71,0xe4,0xc1,0xc0,0xb5,0xf9,0x1f,0x8b,0x81,0xae,0x79,0xc4,0xf0, + 0x72,0xfc,0x5f,0xa6,0xd9,0x88,0xdc,0xec,0x8e,0xf1,0x82,0xb2,0xea,0x52,0xc2,0x7b, + 0x76,0x42,0x35,0x54,0xc6,0xe2,0x88,0x2d,0x99,0xa5,0x49,0x6b,0x1a,0x23,0x25,0xdf, + 0x75,0xcc,0xe5,0x41,0xb8,0x79,0x76,0xd5,0x4a,0x12,0xd5,0x12,0x6b,0xbb,0xd1,0x58, + 0x5b,0x9e,0x3b,0xf5,0x46,0x64,0x1c,0xd5,0x52,0x70,0x51,0x73,0xe5,0x3b,0xe0,0x96, + 0xce,0x9f,0x4b,0x97,0x1d,0xa0,0x85,0xce,0x76,0x43,0x49,0x47,0xcd,0x2e,0x79,0x34, + 0x53,0x47,0xca,0xfb,0x00,0xfd,0x94,0x1f,0x0a,0x96,0x17,0xc9,0x20,0xf3,0x28,0xe6, + 0xba,0x2d,0x20,0x12,0x71,0x6e,0x82,0xca,0x81,0x32,0x62,0xce,0xa2,0x34,0xf7,0x0a, + 0x73,0xf3,0xdf,0x9b,0x96,0x53,0x5b,0xb1,0x6a,0x4e,0xce,0x4a,0x1a,0x4c,0xe2,0x88, + 0xa2,0xdd,0x9a,0x34,0x98,0x46,0x1a,0xa1,0x79,0xe9,0xc1,0x5c,0x98,0x85,0xb0,0xf3, + 0x32,0x68,0x14,0x2d,0x00,0xf9,0x5c,0xa4,0xfa,0xcc,0xe9,0x00,0xc1,0x6d,0xe4,0x8f, + 0x48,0x61,0x84,0x65,0x41,0x6f,0x3d,0x97,0x82,0x5a,0x55,0xb2,0x4f,0x31,0xf8,0x62, + 0x3e,0xd0,0xcd,0x3c,0xbf,0x68,0x05,0xd8,0x00,0x63,0x02,0x2c,0x7a,0x15,0xf0,0x09, + 0x07,0xa5,0x05,0x45,0x60,0x6d,0xa2,0x33,0xe6,0xdc,0x03,0xd5,0x73,0x13,0x5b,0x01, + 0x8d,0x98,0x32,0x49,0x7e,0x45,0x7e,0x50,0x72,0x72,0x5e,0x06,0x8e,0x27,0x35,0x5b, + 0xba,0x36,0x45,0x9b,0xc8,0x30,0xbe,0xc4,0x99,0xb6,0xdc,0xbc,0xc4,0x65,0x32,0x99, + 0xf0,0xc7,0xcf,0x7e,0xf8,0x79,0x9a,0x1e,0x4b,0x0f,0xec,0x46,0x9b,0xc3,0x65,0x86, + 0x9e,0x1f,0x34,0x8a,0x65,0x38,0x72,0xc7,0xea,0xee,0xb4,0x34,0xd1,0x6b,0x24,0xd2, + 0xde,0xe6,0x82,0x97,0x20,0xcc,0x78,0x39,0x1f,0x0d,0x8d,0x88,0x05,0xdb,0x07,0xa3, + 0xf9,0xb1,0x69,0x69,0x5e,0x29,0x5a,0xf4,0x38,0x77,0x64,0xda,0x8b,0x65,0x51,0xe2, + 0xb5,0xfb,0xa5,0x90,0x0d,0x56,0xdf,0x16,0x94,0x9a,0x1d,0xad,0x31,0x94,0xed,0x53, + 0x2e,0x3b,0x5e,0xa0,0x87,0x1c,0x03,0x93,0xaa,0x03,0x25,0xb2,0x95,0x28,0x74,0xff, + 0xe8,0xe4,0x74,0x62,0x72,0xec,0xd2,0x53,0x08,0x7c,0x2e,0x5b,0x7e,0xb4,0x81,0x4f, + 0xd3,0x4b,0x5b,0x8d,0xc6,0xce,0xfc,0x2c,0xf0,0x6c,0xd8,0x13,0x82,0xb1,0x28,0xa7, + 0x4a,0x86,0x45,0x93,0xbe,0x97,0x28,0x14,0xbd,0x03,0x31,0xe9,0xa3,0xc4,0x23,0x29, + 0x58,0x68,0xf5,0xa0,0x97,0x52,0x2d,0x71,0xe5,0x0d,0x69,0x32,0xc0,0x4b,0xe7,0x7d, + 0xad,0x34,0x5e,0xc2,0x03,0x83,0x08,0xfc,0xf0,0xaa,0xf8,0x1a,0x5d,0x0a,0xaf,0x94, + 0x2a,0x8a,0x94,0x0b,0xeb,0xcf,0x92,0xa0,0x6f,0xa2,0x03,0x4d,0x77,0x7b,0x1b,0xb4, + 0x93,0x78,0xcb,0xdc,0x36,0x7b,0x5c,0xbd,0xd0,0x25,0x9a,0xdb,0xc4,0xeb,0x49,0xe2, + 0x8d,0xc5,0x33,0xf4,0xbd,0xd4,0xeb,0x56,0x1d,0x98,0xd4,0xb4,0x66,0x9a,0x85,0xc6, + 0xcc,0xef,0xcc,0x4a,0x63,0x9a,0x4b,0xeb,0x7d,0x11,0x1e,0xab,0xed,0x7c,0xec,0x11, + 0x2a,0x96,0xe0,0xee,0x6e,0xa7,0xd5,0xd3,0xaa,0x52,0xa8,0x48,0xf9,0x3a,0x4b,0x59, + 0x2b,0x2b,0x44,0x1e,0x96,0xf1,0x35,0x6c,0x36,0x1f,0x6c,0xe9,0xa8,0x75,0x1c,0x76, + 0x35,0x03,0x74,0x78,0xd8,0xdf,0xc3,0x74,0x22,0x02,0x43,0x14,0xaf,0x18,0x7b,0x88, + 0x9b,0x79,0x60,0xe1,0x0c,0xf4,0xa7,0xc5,0x10,0x38,0xb4,0x87,0x97,0x8a,0x35,0x29, + 0x6d,0x66,0xad,0x89,0x94,0x38,0x4f,0x74,0x55,0x8e,0x6f,0xcc,0xac,0x5e,0x35,0x09, + 0xc8,0xb2,0x78,0x96,0x02,0x1f,0x83,0x11,0xb6,0x6a,0x5a,0xd3,0x18,0x6b,0x69,0xbe, + 0x9a,0xfa,0x26,0xa7,0x75,0xbc,0x79,0xe8,0x1a,0xbc,0x8e,0xdb,0xe6,0xd1,0x47,0xea, + 0xff,0x70,0xdb,0x3d,0xda,0xec,0x9a,0xff,0x15,0xcd,0x38,0x57,0x94,0xb8,0x41,0x43, + 0xde,0xab,0xa3,0x87,0xdd,0xd8,0x6d,0xce,0xa1,0x07,0xa4,0x90,0x09,0x4f,0xef,0xc9, + 0xe1,0x36,0xc8,0x74,0x7e,0x9c,0x1d,0xc1,0x2f,0xf4,0xd7,0xc7,0xbf,0x78,0xde,0x7a, + 0xf4,0xe4,0xff,0x00,0xd5,0x9e,0x0e,0x8a,0x88,0x14,0x01,0x00, }; diff --git a/test/README.md b/test/README.md index c8eaa035..a250db26 100644 --- a/test/README.md +++ b/test/README.md @@ -36,6 +36,7 @@ does not reflect the GoogleTest count -- run the built binary directly | `test_mqtt_runtime_buffer_lifecycle` | `src/helpers/MQTTRuntimeBufferLifecycle.h` | idempotent allocation/release; partial-allocation degradation; retry of only missing buffers | | `test_mqtt_prefs_codec` | `src/helpers/MQTTPrefsStorage.h`, `src/helpers/MQTTPrefsCodec.h` | binary pre-slot/3-slot/6-slot migration fixtures; v1 header integrity; downgrade preservation | | `test_mqtt_prefs_atomic_store` | `src/helpers/MQTTPrefsAtomicStore.h` | transactional MQTT writes and legacy `/node_prefs` handoff; exact short-write detection; begin/finish/rename failure cleanup; original-file preservation | +| `test_prefs_save_routing` | `src/helpers/PrefsSaveRouting.h` | runtime common/observer setters write only their owning preference image; mixed-owner setters and migrations can deliberately write both | | `test_mqtt_payload_builder` | `src/helpers/MQTTPayloadBuilder.cpp` | status/packet/raw JSON contracts; optional fields; escaping; RX metrics and path; score handling; exact buffer bounds; maximum representative payloads | | `test_telemetry_history` | `src/helpers/TelemetryHistory.h` | 30-minute rings; seven-day temperature/voltage and dynamically sized GPS retention; exact 1 C temperature/status encoding; separate Base64 series payloads; 14-bit GPS differentials; resize preservation, heap budgets, and 1-based paging bounds | | `test_flood_filter_policy` | `src/helpers/FloodFilterPolicy.h` | unordered 3-byte and 2-byte-prefix path matching; match thresholds; repeated path-entry semantics; blacklist and bridge-bucket channel-scope selection; `require=region` and per-channel scope-gate truth tables; fast/slow scope timing; adding, replacing, and preserving packet scope | diff --git a/test/test_prefs_save_routing/test_prefs_save_routing.cpp b/test/test_prefs_save_routing/test_prefs_save_routing.cpp new file mode 100644 index 00000000..667b1192 --- /dev/null +++ b/test/test_prefs_save_routing/test_prefs_save_routing.cpp @@ -0,0 +1,31 @@ +#include + +#include "helpers/PrefsSaveRouting.h" + +namespace Routing = PrefsSaveRouting; + +TEST(PrefsSaveRouting, CommonSetterWritesOnlyCommonImage) { + constexpr Routing::Plan plan = Routing::planFor(Routing::Scope::Common); + + EXPECT_TRUE(plan.common); + EXPECT_FALSE(plan.observer); +} + +TEST(PrefsSaveRouting, ObserverSetterWritesOnlyObserverImage) { + constexpr Routing::Plan plan = Routing::planFor(Routing::Scope::Observer); + + EXPECT_FALSE(plan.common); + EXPECT_TRUE(plan.observer); +} + +TEST(PrefsSaveRouting, CrossImageOperationCanWriteBothImages) { + constexpr Routing::Plan plan = Routing::planFor(Routing::Scope::Both); + + EXPECT_TRUE(plan.common); + EXPECT_TRUE(plan.observer); +} + +int main(int argc, char** argv) { + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} diff --git a/webui/index.html b/webui/index.html index e535d68c..9bd8e667 100644 --- a/webui/index.html +++ b/webui/index.html @@ -157,6 +157,7 @@ canvas{width:100%;height:56px;display:block}

Step 1 · WiFi

Connect this node to your WiFi network so it can reach the MQTT servers.

+
Preparing for remote deployment? This wizard tests the WiFi before reboot. If the deployment network is not available here, use USB serial at config.meshcore.io and run set wifi.ssid ... and set wifi.pwd .... The node saves them without connecting and retries after deployment.