├── .gitignore ├── library.properties ├── library.json ├── LICENSE ├── README.md ├── keywords.txt ├── examples ├── photo │ ├── photo.ino │ └── girl.h ├── gps │ └── gps.ino ├── led_control │ └── led_control.ino ├── sensor │ └── sensor.ino └── simple_sensor │ └── simple_sensor.ino └── src ├── bigiot.h └── bigiot.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | build -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- 1 | name=ArduinoBIGIOT 2 | version=1.1.0 3 | author=Lewis He 4 | maintainer=Lewis He 5 | sentence=Easy connection to BIGIOT IoT platform, integrated WeChat, mail function 6 | paragraph=Easy connection to BIGIOT IoT platform, integrated WeChat, mail function. Tested with ESP32 and ESP8266. 7 | category=Communication 8 | url=https://github.com/lewisxhe/ArduinoBigiot 9 | architectures=esp8266,esp32 -------------------------------------------------------------------------------- /library.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ArduinoBIGIOT", 3 | "description": "Easy connection to BIGIOT IoT platform, integrated WeChat, mail function", 4 | "keywords": "ESP32,ESP8266,GSM,BIGIOT,IOT", 5 | "authors": [ 6 | { 7 | "name": "Lewis He", 8 | "email": "lewishe@outlook.com", 9 | "url": "https://github.com/lewisxhe/ArduinoBIGIOT", 10 | "maintainer": true 11 | } 12 | ], 13 | "repository": { 14 | "type": "git", 15 | "url": "https://github.com/lewisxhe/ArduinoBIGIOT" 16 | }, 17 | "version": "1.1.0", 18 | "homepage": "https://github.com/lewisxhe/ArduinoBIGIOT", 19 | "dependencies": { 20 | "ArduinoJson": "5.13.2" 21 | }, 22 | "frameworks": "Arduino", 23 | "platforms": "*" 24 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 lewis he 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # BIGIOT Platform Library 2 | 3 | ## 简介: 4 | 5 | 详情见[贝壳物联平台](https://www.bigiot.net) 6 | 7 | 8 | ## 更新概要 9 | *** 10 | [v1.1] 11 | * 更新ArdunJson6.11.3支持,同时保持5.13.2的支持 12 | * 在ArdunJson6.11.3下,在贝壳中,设备名称不能使用中文,下发命令不能包含中文字符,6.11.3版本不支持中文字符串,会返回解析失败,在老版本 5.13.2中可以使用中文字符串 13 | * 添加二级Json 在事件回调函数中返回,可以再次解析天猫返回的设备Json字符串 14 | 15 | *** 16 | [v1.0] 17 | * 更新调用接口,更加容易使用和理解 18 | * 支持自定义命令下发 19 | * 添加第三方微信接口,可根据需求自行设置,如设备断线,温度过高等 20 | * 添加邮件发送功能,只支持SMTP类型服务器,使用邮箱建议使用的是网易邮件作为发送邮箱账号,接收不受限制 21 | * 添加图片上传接口 22 | * 如需使用到微信接口需要到[Server酱](http://sc.ftqq.com/3.version)使用GitHub账号登陆,获取`SCKEY` 23 | * 添加五个示例代码涵盖定位,图片,数据流,命令控制,微信,邮件,发送警报功能 24 | * 添加断线重连功能 25 | 26 | 27 | *** 28 | [v0.1] 29 | * 登陆具有强制类型,如果设备在线,会强制将在线设备踢下后重新进行登陆 30 | * ~~集成[ArduinoMD5](https://github.com/tzikis/ArduinoMD5/),支持加密登陆,目前只支持`8181`,`8282`端口~~ 31 | * 支持数据流上传,可单次上传多个数据流 32 | * 支持上传经纬度数据 33 | * 支持发送报警信息 34 | * 自动发送心跳包 35 | * 支持贝壳所有命令下发 36 | * ~~添加多路连接Demo,使用esp8266目前测试能稳定4路连接,再多的没有测试~~ 37 | 38 | 39 | ## 依赖: 40 | *** 41 | * 可以使用这两个版本的Jsonlibrary ,其他的版本未测试 42 | * [ArduinoJson v5.13.2](https://github.com/bblanchon/ArduinoJson/releases/tag/v5.13.2) 43 | * [ArduinoJson v6.11.3](https://github.com/bblanchon/ArduinoJson/tree/v6.11.3) 44 | 45 | 46 | 47 | ## CHANGE LOG: 48 | 2/1/2020: 修复下8266下的警告. 2019-nCov 中国加油,武汉加油 . 49 | 10/3/2020 : 更新WiFiClient为Client,适应全平台 -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- 1 | ####################################### 2 | # Syntax Coloring Map For BIGIOT Platform Library By lewis He 3 | # github:https://github.com/lewisxhe 4 | ####################################### 5 | 6 | ####################################### 7 | # Datatypes (KEYWORD1) 8 | ####################################### 9 | BIGIOT KEYWORD1 10 | xEmail KEYWORD1 11 | ServerChan KEYWORD1 12 | ####################################### 13 | # Methods and Functions (KEYWORD2) 14 | ####################################### 15 | 16 | login KEYWORD2 17 | connectAttack KEYWORD2 18 | disconnectAttack KEYWORD2 19 | eventAttach KEYWORD2 20 | handle KEYWORD2 21 | upload KEYWORD2 22 | location KEYWORD2 23 | sendAlarm KEYWORD2 24 | isOnline KEYWORD2 25 | deviceName KEYWORD2 26 | setHeartFreq KEYWORD2 27 | setEmailHost KEYWORD2 28 | setSender KEYWORD2 29 | setRecipient KEYWORD2 30 | sendEmail KEYWORD2 31 | setSCKEY KEYWORD2 32 | sendWechat KEYWORD2 33 | uploadPhoto KEYWORD2 34 | ####################################### 35 | # Instances (KEYWORD2) 36 | ####################################### 37 | 38 | 39 | ####################################### 40 | # Constants (LITERAL1) 41 | ####################################### 42 | DISCONNECT LITERAL1 43 | INVALID LITERAL1 44 | STOP LITERAL1 45 | PLAY LITERAL1 46 | OFF_ON LITERAL1 47 | MINUS LITERAL1 48 | UP LITERAL1 49 | PLUS LITERAL1 50 | LEFT LITERAL1 51 | PAUSE LITERAL1 52 | RIGHT LITERAL1 53 | BACKWARD LITERAL1 54 | DOWN LITERAL1 55 | FORWARD LITERAL1 56 | CUSTOM LITERAL1 57 | 58 | -------------------------------------------------------------------------------- /examples/photo/photo.ino: -------------------------------------------------------------------------------- 1 | #if defined ESP32 2 | #include 3 | #elif defined ESP8266 4 | #include 5 | #else 6 | #error "Only support espressif esp32/8266 chip" 7 | #endif 8 | #include "bigiot.h" 9 | #include "girl.h" 10 | 11 | #define WIFI_TIMEOUT 30000 12 | 13 | const char *ssid = "your wifi ssid"; 14 | const char *passwd = "your wifi password"; 15 | 16 | const char *id = "your device id"; //platform device id 17 | const char *apikey = "your device apikey"; //platform device api key 18 | const char *usrkey = "your user key"; //platform user key , if you are not using encrypted login,you can leave it blank 19 | const char *picId = "photo data stream id"; //photo data stream id 20 | 21 | WiFiClient client; 22 | BIGIOT bigiot(client); 23 | 24 | void eventCallback(const int devid, const int comid, const char *comstr, const char *slave) 25 | { 26 | // You can handle the commands issued by the platform here. 27 | Serial.printf(" device id:%d ,command id:%d command string:%s\n", devid, comid, comstr); 28 | } 29 | 30 | void disconnectCallback(BIGIOT &obj) 31 | { 32 | // When the device is disconnected to the platform, you can handle your peripherals here 33 | Serial.print(obj.deviceName()); 34 | Serial.println(" disconnect"); 35 | } 36 | 37 | void connectCallback(BIGIOT &obj) 38 | { 39 | // When the device is connected to the platform, you can preprocess your peripherals here 40 | Serial.print(obj.deviceName()); 41 | Serial.println(" connect"); 42 | } 43 | 44 | void setup() 45 | { 46 | Serial.begin(115200); 47 | 48 | delay(100); 49 | 50 | WiFi.begin(ssid, passwd); 51 | 52 | if (WiFi.waitForConnectResult() != WL_CONNECTED) { 53 | Serial.print("Connect ssid fail"); 54 | while (1); 55 | } 56 | 57 | //Register platform command event handler 58 | bigiot.eventAttach(eventCallback); 59 | 60 | //Register device disconnect handler 61 | bigiot.disconnectAttack(disconnectCallback); 62 | 63 | //Register device connect handler 64 | bigiot.connectAttack(connectCallback); 65 | 66 | // Login to bigiot.net 67 | if (!bigiot.login(id, apikey, usrkey)) { 68 | Serial.println("Login fail"); 69 | while (1); 70 | } 71 | Serial.println("Connected to BIGIOT"); 72 | } 73 | 74 | 75 | void loop() 76 | { 77 | static bool isUpload = false; 78 | static uint64_t last_upload_time = 0; 79 | static uint64_t last_wifi_check_time = 0; 80 | 81 | if (WiFi.status() == WL_CONNECTED) { 82 | //Wait for platform command release 83 | bigiot.handle(); 84 | } else { 85 | uint64_t now = millis(); 86 | // Wifi disconnection reconnection mechanism 87 | if (now - last_wifi_check_time > WIFI_TIMEOUT) { 88 | Serial.println("WiFi connection lost. Reconnecting..."); 89 | WiFi.reconnect(); 90 | last_wifi_check_time = now; 91 | } 92 | } 93 | 94 | //just upload once 95 | if (!isUpload) { 96 | isUpload = true; 97 | Serial.print("Send girl photo to platform"); 98 | 99 | /* 100 | const char *id stream id 101 | const char *type photo type ,jpg,jpeg,png,gif 102 | const char *filename file name 103 | uint8_t *image array address 104 | size_t size array size 105 | */ 106 | if (!bigiot.uploadPhoto( picId, "jpg", "girl", (uint8_t *)girlArray, PIC_ARRAY_SIZE)) { 107 | Serial.println("Upload error"); 108 | } else 109 | Serial.println("Upload Success"); 110 | } 111 | } -------------------------------------------------------------------------------- /examples/gps/gps.ino: -------------------------------------------------------------------------------- 1 | #if defined ESP32 2 | #include 3 | #elif defined ESP8266 4 | #include 5 | #else 6 | #error "Only support espressif esp32/8266 chip" 7 | #endif 8 | 9 | #include "bigiot.h" 10 | #include //Need TinyGPS librarie support https://github.com/mikalhart/TinyGPSPlus 11 | 12 | #define WIFI_TIMEOUT 30000 13 | 14 | TinyGPSPlus gps; 15 | #define GPS_BANUD_RATE 9600 16 | #define GPS_RX_PIN 12 17 | #define GPS_TX_PIN 15 18 | 19 | const char *ssid = "your wifi ssid"; 20 | const char *passwd = "your wifi password"; 21 | 22 | const char *id = "your device id"; //platform device id 23 | const char *apikey = "your device apikey"; //platform device api key 24 | const char *usrkey = "your user key"; //platform user key , if you are not using encrypted login,you can leave it blank 25 | 26 | #define BIGIOT_LOACTION_STREAM_ID "stream data id" //Positioning data interface id 27 | #define STREAM_UPLOAD_TIMEOUT 10000 //Data update interval 28 | 29 | WiFiClient client; 30 | BIGIOT bigiot(client); 31 | 32 | void eventCallback(const int devid, const int comid, const char *comstr, const char *slave) 33 | { 34 | // You can handle the commands issued by the platform here. 35 | Serial.printf(" device id:%d ,command id:%d command string:%s\n", devid, comid, comstr); 36 | } 37 | 38 | void disconnectCallback(BIGIOT &obj) 39 | { 40 | // When the device is disconnected to the platform, you can handle your peripherals here 41 | Serial.print(obj.deviceName()); 42 | Serial.println(" disconnect"); 43 | } 44 | 45 | void connectCallback(BIGIOT &obj) 46 | { 47 | // When the device is connected to the platform, you can preprocess your peripherals here 48 | Serial.print(obj.deviceName()); 49 | Serial.println(" connect"); 50 | } 51 | 52 | void setup() 53 | { 54 | Serial.begin(115200); 55 | 56 | //Open Serial1 to read gps chip 57 | Serial1.begin(9600, SERIAL_8N1, GPS_RX_PIN, GPS_TX_PIN); 58 | 59 | delay(100); 60 | 61 | WiFi.begin(ssid, passwd); 62 | 63 | if (WiFi.waitForConnectResult() != WL_CONNECTED) { 64 | Serial.print("Connect ssid fail"); 65 | while (1); 66 | } 67 | 68 | //Register platform command event handler 69 | bigiot.eventAttach(eventCallback); 70 | 71 | //Register device disconnect handler 72 | bigiot.disconnectAttack(disconnectCallback); 73 | 74 | //Register device connect handler 75 | bigiot.connectAttack(connectCallback); 76 | 77 | // Login to bigiot.net 78 | if (!bigiot.login(id, apikey, usrkey)) { 79 | Serial.println("Login fail"); 80 | while (1); 81 | } 82 | } 83 | 84 | 85 | void loop() 86 | { 87 | static uint64_t last_upload_time = 0; 88 | static uint64_t last_wifi_check_time = 0; 89 | 90 | if (WiFi.status() == WL_CONNECTED) { 91 | //Wait for platform command release 92 | bigiot.handle(); 93 | } else { 94 | uint64_t now = millis(); 95 | // Wifi disconnection reconnection mechanism 96 | if (now - last_wifi_check_time > WIFI_TIMEOUT) { 97 | Serial.println("WiFi connection lost. Reconnecting..."); 98 | WiFi.reconnect(); 99 | last_wifi_check_time = now; 100 | } 101 | } 102 | 103 | //Upload targeting data every 10 seconds 104 | if (gps.location.isValid() && millis() - last_upload_time > STREAM_UPLOAD_TIMEOUT) { 105 | last_upload_time = millis(); 106 | bigiot.location(BIGIOT_LOACTION_STREAM_ID, gps.location.lng(), gps.location.lat()); 107 | } 108 | 109 | while (Serial1.available()) 110 | gps.encode(Serial1.read()); 111 | 112 | } 113 | 114 | -------------------------------------------------------------------------------- /examples/led_control/led_control.ino: -------------------------------------------------------------------------------- 1 | #if defined ESP32 2 | #include 3 | #elif defined ESP8266 4 | #include 5 | #else 6 | #error "Only support espressif esp32/8266 chip" 7 | #endif 8 | #include "bigiot.h" 9 | 10 | #define WIFI_TIMEOUT 30000 11 | 12 | const char *ssid = "your wifi ssid"; 13 | const char *passwd = "your wifi password"; 14 | 15 | const char *id = "your device id"; //platform device id 16 | const char *apikey = "your device apikey"; //platform device api key 17 | const char *usrkey = "your user key"; //platform user key , if you are not using encrypted login,you can leave it blank 18 | 19 | #define LED_PIN 16 // led pin 20 | 21 | WiFiClient client; 22 | BIGIOT bigiot(client); 23 | 24 | //中文 开灯 Unicode 码 25 | #define TURN_ON "u5f00u706f" 26 | //中文 关灯 Unicode 码 27 | #define TURN_OFF "u5173u706f" 28 | 29 | void eventCallback(const int devid, const int comid, const char *comstr, const char *slave) 30 | { 31 | // You can handle the commands issued by the platform here. 32 | Serial.printf("Received[%d] - [%d]:%s \n", devid, comid, comstr); 33 | switch (comid) { 34 | case STOP: 35 | digitalWrite(LED_PIN, HIGH); 36 | break; 37 | case PLAY: 38 | digitalWrite(LED_PIN, LOW); 39 | break; 40 | case OFF_ON: 41 | break; 42 | case MINUS: 43 | break; 44 | case UP: 45 | break; 46 | case PLUS: 47 | break; 48 | case LEFT: 49 | break; 50 | case PAUSE: 51 | break; 52 | case RIGHT: 53 | break; 54 | case BACKWARD: 55 | break; 56 | case DOWN: 57 | break; 58 | case FORWARD: 59 | break; 60 | case CUSTOM: 61 | // 当收到中文开灯时候将led输出低电平 62 | if (!strcmp(comstr, TURN_ON)) { 63 | digitalWrite(LED_PIN, LOW); 64 | // 当收到中文关灯时候将led输出高电平 65 | } else if (!strcmp(comstr, TURN_OFF)) { 66 | digitalWrite(LED_PIN, HIGH); 67 | } 68 | break; 69 | default: 70 | break; 71 | } 72 | } 73 | 74 | void disconnectCallback(BIGIOT &obj) 75 | { 76 | // When the device is disconnected to the platform, you can handle your peripherals here 77 | Serial.print(obj.deviceName()); 78 | Serial.println(" disconnect"); 79 | } 80 | 81 | void connectCallback(BIGIOT &obj) 82 | { 83 | // When the device is connected to the platform, you can preprocess your peripherals here 84 | Serial.print(obj.deviceName()); 85 | Serial.println(" connect"); 86 | } 87 | 88 | void setup() 89 | { 90 | Serial.begin(115200); 91 | 92 | delay(100); 93 | 94 | pinMode(LED_PIN, OUTPUT); 95 | digitalWrite(LED_PIN, HIGH); 96 | 97 | WiFi.begin(ssid, passwd); 98 | if (WiFi.waitForConnectResult() != WL_CONNECTED) { 99 | Serial.print("Connect ssid fail"); 100 | while (1); 101 | } 102 | 103 | //Register platform command event handler 104 | bigiot.eventAttach(eventCallback); 105 | 106 | //Register device disconnect handler 107 | bigiot.disconnectAttack(disconnectCallback); 108 | 109 | //Register device connect handler 110 | bigiot.connectAttack(connectCallback); 111 | 112 | // Login to bigiot.net 113 | if (!bigiot.login(id, apikey, usrkey)) { 114 | Serial.println("Login fail"); 115 | while (1); 116 | } 117 | } 118 | 119 | 120 | void loop() 121 | { 122 | static uint64_t last_upload_time = 0; 123 | static uint64_t last_wifi_check_time = 0; 124 | 125 | if (WiFi.status() == WL_CONNECTED) { 126 | //Wait for platform command release 127 | bigiot.handle(); 128 | } else { 129 | uint64_t now = millis(); 130 | // Wifi disconnection reconnection mechanism 131 | if (now - last_wifi_check_time > WIFI_TIMEOUT) { 132 | Serial.println("WiFi connection lost. Reconnecting..."); 133 | WiFi.reconnect(); 134 | last_wifi_check_time = now; 135 | } 136 | } 137 | } -------------------------------------------------------------------------------- /src/bigiot.h: -------------------------------------------------------------------------------- 1 | 2 | ///////////////////////////////////////////////////////////////// 3 | /* 4 | bigiot.cpp - Arduino library simplifies the use of connected BIGIOT platforms. 5 | Created by Lewis he on January 1, 2019. 6 | */ 7 | ///////////////////////////////////////////////////////////////// 8 | #pragma once 9 | 10 | #include "Client.h" 11 | #include "WiFiClient.h" 12 | 13 | #ifdef DEBUG_BIGIOT_PORT 14 | #define DEBUG_BIGIOT_CLIENT(fmt, ...) DEBUG_BIGIOT_PORT.printf_P( (PGM_P)PSTR(fmt), ## __VA_ARGS__ ) 15 | #define DEBUG_BIGIOT_WRITE(x) DEBUG_BIGIOT_PORT.write(x) 16 | #else 17 | #define DEBUG_BIGIOT_CLIENT(...) 18 | #define DEBUG_BIGIOT_WRITE(x) 19 | #endif 20 | 21 | #define BIGIOT_PLATFORM_HOST "www.bigiot.net" 22 | #define BIGIOT_PLATFORM_PORT 8282 23 | #define BIGIOT_PLATFORM_HTTPS_PORT 443 24 | #define BIGIOT_LOGINT_WELCOME 1 25 | #define BIGIOT_LOGINT_CHECK_IN 2 26 | #define BIGIOT_LOGINT_TOKEN 3 27 | #define BIGIOT_PLATFORM_COMMAND_TOTAL 12 28 | #define REC_TIMEOUT 10000 29 | #define BIGIOT_PLATFORM_ALARM_INTERVAL 600000 30 | #define BIGIOT_PLATFORM_COMMAND_TABLE {"play", "stop", "offOn", "minus", "up", "plus", "left", "pause", "right", "backward", "down", "forward"} ; 31 | #define BIGIOT_PLATFORM_8282_HATERATE_PACK ("{\"M\":\"b\"}\n") 32 | #define BIGIOT_PLATFORM_8383_HATERATE_PACK ("{\"M\":\"ping\"}") 33 | #define BIGIOT_PLATFORM_WEBSOCKET_HATERATE_PACK ("{\"M\":\"beat\"}\n") 34 | 35 | #define SERVERCHAN_LINK_FORMAT "http://sc.ftqq.com/%s.send?text=%s" 36 | #define SERVERCHAN_DESP_MAX_LENGTH 65536 37 | 38 | #define EMAIL_RECV_TIMEOUT 10000 39 | 40 | #define PLATFORM_ARRAY_SIZE(x) (sizeof(x)/sizeof(x[0])) 41 | 42 | 43 | enum { 44 | INVALID = -2, 45 | DISCONNECT = -1, 46 | PLAY = 0, 47 | STOP, 48 | OFF_ON, 49 | MINUS, 50 | UP, 51 | PLUS, 52 | LEFT, 53 | PAUSE, 54 | RIGHT, 55 | BACKWARD, 56 | DOWN, 57 | FORWARD, 58 | CUSTOM, 59 | }; 60 | 61 | 62 | class xEmail : public WiFiClient 63 | { 64 | public: 65 | // xEmail(Client &client); 66 | void setEmailHost(const char *host, uint16_t port); 67 | bool setSender(const char *user, const char *password); 68 | void setRecipient(const char *email); 69 | bool sendEmail(String &subject, String &content); 70 | bool sendEmail(const char *subject, const char *content); 71 | private: 72 | bool emailRecv(); 73 | void emailFail(); 74 | 75 | protected: 76 | Client *_client; 77 | uint16_t _emailPort; 78 | String _emailHost, _emailUser, _emailPasswd, _recipient, _base64User, _base64Pass; 79 | }; 80 | 81 | 82 | class ServerChan 83 | { 84 | public: 85 | ServerChan(String sckey): _sckey(sckey) 86 | { 87 | } 88 | void setSCKEY(const char *key); 89 | void setSCKEY(String &key); 90 | bool sendWechat(const char *text, const char *desp = NULL); 91 | bool sendWechat(String text, String desp); 92 | private: 93 | String _sckey; 94 | }; 95 | 96 | class BIGIOT 97 | { 98 | public: 99 | BIGIOT(Client &client,String url,uint16_t port); 100 | BIGIOT(Client &client); 101 | typedef void (*EventCallbackFunc)(const int id, const int c, const char *command, const char *salve); 102 | typedef void (*GeneralCallbackFunc)(BIGIOT &); 103 | 104 | void connectAttack(GeneralCallbackFunc f), 105 | disconnectAttack(GeneralCallbackFunc f), 106 | eventAttach(EventCallbackFunc f); 107 | 108 | int handle(void); 109 | 110 | bool login(const char *devId, const char *apiKey, const char *userKey = "", bool reconnect = true), 111 | 112 | upload(const char *id, const char *data), 113 | upload(const char *id[], const char *data[], int len), 114 | upload(String id, String data), 115 | 116 | location(const char *id, const char *longitude, const char *latitude), 117 | location(const char *id, float longitude, float latitude), 118 | location(String id, String longitude, String latitude), 119 | 120 | uploadPhoto( const char *id, const char *type, const char *filename, uint8_t *image, size_t size), 121 | 122 | sendAlarm(const char *method, const char *message), 123 | sendAlarm(String method, String message); 124 | 125 | bool operator == (BIGIOT &b); 126 | bool isOnline(); 127 | const char *deviceName(); 128 | String deviceName() const; 129 | void setHeartFreq(uint32_t f); 130 | bool checkOnline(); 131 | 132 | private: 133 | bool loginToBigiot(); 134 | 135 | int loginParse(String pack), 136 | packetParse(String pack); 137 | 138 | String getLoginPacket(String apiKey), 139 | getLogoutPacket(); 140 | 141 | const char *platform_command[BIGIOT_PLATFORM_COMMAND_TOTAL] = BIGIOT_PLATFORM_COMMAND_TABLE; 142 | 143 | protected: 144 | uint16_t _port; 145 | uint32_t _heartFreq = 30000; 146 | String _host, 147 | _dev, 148 | _key, 149 | _usrKey, 150 | _token, 151 | _devName; 152 | Client *_client; 153 | bool _reconnect, _isLogin, _isCall; 154 | EventCallbackFunc _eventCallback = NULL; 155 | GeneralCallbackFunc _disconnectCallback = NULL; 156 | GeneralCallbackFunc _connectCallback = NULL; 157 | }; 158 | 159 | 160 | -------------------------------------------------------------------------------- /examples/sensor/sensor.ino: -------------------------------------------------------------------------------- 1 | #if defined ESP32 2 | #include 3 | #elif defined ESP8266 4 | #include 5 | #else 6 | #error "Only support espressif esp32/8266 chip" 7 | #endif 8 | 9 | #include "bigiot.h" 10 | 11 | #include "DHT.h" // Need DHT-sensor-library support https://github.com/adafruit/DHT-sensor-library 12 | 13 | 14 | #define WIFI_TIMEOUT 30000 15 | 16 | // Uncomment one of the lines below for whatever DHT sensor type you're using! 17 | //#define DHTTYPE DHT21 // DHT 21 (AM2301)Î 18 | #define DHTTYPE DHT11 // DHT 22 (AM2302), AM2321 19 | #define DHT_SENSOR_PIN 22 20 | 21 | WiFiClient client; 22 | BIGIOT bigiot(client); 23 | DHT dht(DHT_SENSOR_PIN, DHTTYPE); 24 | 25 | const char *ssid = "your wifi ssid"; 26 | const char *passwd = "your wifi password"; 27 | 28 | const char *id = "your device id"; //platform device id 29 | const char *apikey = "your device apikey"; //platform device api key 30 | const char *usrkey = "your user key"; //platform user key , if you are not using encrypted login,you can leave it blank 31 | 32 | #define BIGIOT_TEMP_STREAM_ID "stream data id" //Temp stream data id 33 | #define BIGIOT_HUMIDITY_STREAM_ID "stream data id" //Humidity stream data id 34 | #define STREAM_UPLOAD_TIMEOUT 10000 //Data update interval 35 | 36 | 37 | void eventCallback(const int devid, const int comid, const char *comstr, const char *slave) 38 | { 39 | // You can handle the commands issued by the platform here. 40 | Serial.printf(" device id:%d ,command id:%d command string:%s\n", devid, comid, comstr); 41 | } 42 | 43 | void disconnectCallback(BIGIOT &obj) 44 | { 45 | // When the device is disconnected to the platform, you can handle your peripherals here 46 | Serial.print(obj.deviceName()); 47 | Serial.println(" disconnect"); 48 | } 49 | 50 | void connectCallback(BIGIOT &obj) 51 | { 52 | // When the device is connected to the platform, you can preprocess your peripherals here 53 | Serial.print(obj.deviceName()); 54 | Serial.println(" connect"); 55 | } 56 | 57 | void setup() 58 | { 59 | Serial.begin(115200); 60 | 61 | delay(100); 62 | 63 | WiFi.begin(ssid, passwd); 64 | 65 | if (WiFi.waitForConnectResult() != WL_CONNECTED) { 66 | Serial.print("Connect ssid fail"); 67 | while (1); 68 | } 69 | 70 | //Initialize the DHT sensor 71 | dht.begin(); 72 | 73 | //Register platform command event handler 74 | bigiot.eventAttach(eventCallback); 75 | 76 | //Register device disconnect handler 77 | bigiot.disconnectAttack(disconnectCallback); 78 | 79 | //Register device connect handler 80 | bigiot.connectAttack(connectCallback); 81 | 82 | // Login to bigiot.net 83 | if (!bigiot.login(id, apikey, usrkey)) { 84 | Serial.println("Login fail"); 85 | while (1); 86 | } 87 | } 88 | 89 | 90 | void sensorRead() 91 | { 92 | static char celsiusTemp[7]; 93 | static char humidityTemp[7]; 94 | 95 | // Sensor readings may also be up to 2 seconds 'old' (its a very slow sensor) 96 | float h = dht.readHumidity(); 97 | 98 | // Read temperature as Celsius (the default) 99 | float t = dht.readTemperature(); 100 | 101 | if (isnan(h) || isnan(t)) { 102 | Serial.println("Failed to read from DHT sensor!"); 103 | return; 104 | } else { 105 | // Computes temperature values in Celsius + Fahrenheit and Humidity 106 | float hic = dht.computeHeatIndex(t, h, false); 107 | dtostrf(hic, 6, 2, celsiusTemp); 108 | 109 | dtostrf(h, 6, 2, humidityTemp); 110 | 111 | /* 112 | Upload sensor data stream to bigiot platform 113 | */ 114 | 115 | //Multiple data uploads 116 | const char *id[] = {BIGIOT_TEMP_STREAM_ID, BIGIOT_HUMIDITY_STREAM_ID}; 117 | const char *data[] = {celsiusTemp, humidityTemp}; 118 | bigiot.upload(id, data, 2); 119 | 120 | /* 121 | // Or you can single data stream upload 122 | 123 | bigiot.upload(BIGIOT_HUMIDITY_STREAM_ID,humidityTemp); 124 | 125 | // Single data stream upload need delay some time 126 | delay(1000); 127 | 128 | bigiot.upload(BIGIOT_TEMP_STREAM_ID, celsiusTemp); 129 | 130 | */ 131 | 132 | //When the temperature rises to 25 degrees Celsius, an alarm will be sent to the mailbox. 133 | if (h > 25) { 134 | bool ret = bigiot.sendAlarm("email", "DTH11 humidity is outside the preset range, current humidity" + String(humidityTemp) + "%"); 135 | // Or send to QQ 136 | // bool ret = bigiot.sendAlarm("qq", "DTH11 humidity is outside the preset range, current humidity" + String(humidityTemp) + "%"); 137 | // Or send to Sina weibo 138 | // bool ret = bigiot.sendAlarm("weibo", "DTH11 humidity is outside the preset range, current humidity" + String(humidityTemp) + "%"); 139 | if (!ret) { 140 | Serial.println("The transmission failed, and the maximum sending interval of the platform is 10 minutes."); 141 | } 142 | } 143 | } 144 | } 145 | 146 | 147 | void loop() 148 | { 149 | static uint64_t last_upload_time = 0; 150 | static uint64_t last_wifi_check_time = 0; 151 | 152 | if (WiFi.status() == WL_CONNECTED) { 153 | //Wait for platform command release 154 | bigiot.handle(); 155 | } else { 156 | uint64_t now = millis(); 157 | // Wifi disconnection reconnection mechanism 158 | if (now - last_wifi_check_time > WIFI_TIMEOUT) { 159 | Serial.println("WiFi connection lost. Reconnecting..."); 160 | WiFi.reconnect(); 161 | last_wifi_check_time = now; 162 | } 163 | } 164 | //Upload sensor data every 10 seconds 165 | if (millis() - last_upload_time > STREAM_UPLOAD_TIMEOUT) { 166 | last_upload_time = millis(); 167 | sensorRead(); 168 | } 169 | } 170 | 171 | -------------------------------------------------------------------------------- /examples/simple_sensor/simple_sensor.ino: -------------------------------------------------------------------------------- 1 | #if defined ESP32 2 | #include 3 | #elif defined ESP8266 4 | #include 5 | #else 6 | #error "Only support espressif esp32/8266 chip" 7 | #endif 8 | 9 | #include "bigiot.h" 10 | 11 | #define WIFI_TIMEOUT 30000 12 | 13 | const char *ssid = "your wifi ssid"; 14 | const char *passwd = "your wifi password"; 15 | 16 | const char *id = "your device id"; //platform device id 17 | const char *apikey = "your device apikey"; //platform device api key 18 | const char *usrkey = "your user key"; //platform user key , if you are not using encrypted login,you can leave it blank 19 | 20 | 21 | #define EMAIL_SMPT_SERVER_HOST "smtp.163.com" //Only supports smtp mailbox server 22 | #define EMAIL_SMPT_SERVER_PORT 25 //Server port 23 | #define EMAIL_SENDER_ACCOUNT "xxx@163.com" //Sender account 24 | #define EMAIL_SENDER_PASSWORD "password" //Sender password 25 | #define EMAIL_RECIPIENT "xxx@xx.com" //Recipient email 26 | 27 | 28 | #define SERVER_WECHAT_KEY "xxxxxx" //Third-party WeChat interface apikey,See http://sc.ftqq.com/3.version 29 | 30 | #define BIGIOT_TEMP_STREAM_ID "stream data id" //Stream data id 31 | #define STREAM_UPLOAD_TIMEOUT 2000 //Data update interval 32 | #define DS18B20_PIN 15 //18b20 data pin 33 | 34 | // Simple ds18b20 class 35 | class DS18B20 36 | { 37 | public: 38 | DS18B20(int gpio) 39 | { 40 | pin = gpio; 41 | } 42 | 43 | float temp() 44 | { 45 | uint8_t arr[2] = {0}; 46 | if (reset()) { 47 | wByte(0xCC); 48 | wByte(0x44); 49 | delay(750); 50 | reset(); 51 | wByte(0xCC); 52 | wByte(0xBE); 53 | arr[0] = rByte(); 54 | arr[1] = rByte(); 55 | reset(); 56 | return (float)(arr[0] + (arr[1] * 256)) / 16; 57 | } 58 | return 0; 59 | } 60 | private: 61 | int pin; 62 | 63 | void write(uint8_t bit) 64 | { 65 | pinMode(pin, OUTPUT); 66 | digitalWrite(pin, LOW); 67 | delayMicroseconds(5); 68 | if (bit)digitalWrite(pin, HIGH); 69 | delayMicroseconds(80); 70 | digitalWrite(pin, HIGH); 71 | } 72 | 73 | uint8_t read() 74 | { 75 | pinMode(pin, OUTPUT); 76 | digitalWrite(pin, LOW); 77 | delayMicroseconds(2); 78 | digitalWrite(pin, HIGH); 79 | delayMicroseconds(15); 80 | pinMode(pin, INPUT); 81 | return digitalRead(pin); 82 | } 83 | 84 | void wByte(uint8_t bytes) 85 | { 86 | for (int i = 0; i < 8; ++i) { 87 | write((bytes >> i) & 1); 88 | } 89 | delayMicroseconds(100); 90 | } 91 | 92 | uint8_t rByte() 93 | { 94 | uint8_t r = 0; 95 | for (int i = 0; i < 8; ++i) { 96 | if (read()) r |= 1 << i; 97 | delayMicroseconds(15); 98 | } 99 | return r; 100 | } 101 | 102 | bool reset() 103 | { 104 | pinMode(pin, OUTPUT); 105 | digitalWrite(pin, LOW); 106 | delayMicroseconds(500); 107 | digitalWrite(pin, HIGH); 108 | pinMode(pin, INPUT); 109 | delayMicroseconds(500); 110 | return digitalRead(pin); 111 | } 112 | }; 113 | 114 | 115 | WiFiClient client; 116 | BIGIOT bigiot(client); 117 | DS18B20 temp18B20(DS18B20_PIN); 118 | 119 | void eventCallback(const int devid, const int comid, const char *comstr, const char *slave) 120 | { 121 | // You can handle the commands issued by the platform here. 122 | Serial.printf(" device id:%d ,command id:%d command string:%s\n", devid, comid, comstr); 123 | } 124 | 125 | void disconnectCallback(BIGIOT &obj) 126 | { 127 | // When the device is disconnected to the platform, you can handle your peripherals here 128 | bool ret; 129 | String content = "[" + String(millis()) + "]" + obj.deviceName() + " 设备断开连接,请检查您的设备..."; 130 | String title = "来自 " + String(obj.deviceName()) + " 发来的消息"; 131 | 132 | //When the device is disconnected, you can choose to send the message to the specified mailbox. 133 | xEmail mail; 134 | mail.setEmailHost(EMAIL_SMPT_SERVER_HOST, EMAIL_SMPT_SERVER_PORT); 135 | mail.setSender(EMAIL_SENDER_ACCOUNT, EMAIL_SENDER_PASSWORD); 136 | mail.setRecipient(EMAIL_RECIPIENT); 137 | if (!mail.sendEmail(title, content)) { 138 | Serial.println("Send fail"); 139 | } 140 | 141 | // Or you can send wechat message 142 | ServerChan cat(SERVER_WECHAT_KEY); 143 | 144 | if (! cat.sendWechat(title, content)) { 145 | Serial.println("Send fail"); 146 | } 147 | } 148 | 149 | void connectCallback(BIGIOT &obj) 150 | { 151 | // When the device is connected to the platform, you can preprocess your peripherals here 152 | Serial.print(obj.deviceName()); 153 | Serial.println(" connect"); 154 | } 155 | 156 | 157 | void tempRead() 158 | { 159 | //Single data stream upload 160 | float temp = temp18B20.temp(); 161 | bigiot.upload(BIGIOT_TEMP_STREAM_ID, String(temp)); 162 | 163 | //When the temperature rises to 25 degrees Celsius, an alarm will be sent to the mailbox. 164 | if (temp > 25) { 165 | bool ret = bigiot.sendAlarm("email", "DS18B20 temperature is outside the preset range, current temperature" + String(temp) + "*C"); 166 | // Or send to QQ 167 | // bool ret = bigiot.sendAlarm("qq", "DS18B20 temperature is outside the preset range, current temperature" + String(temp) + "*C"); 168 | // Or send to Sina weibo 169 | // bool ret = bigiot.sendAlarm("weibo", "DS18B20 temperature is outside the preset range, current temperature" + String(temp) + "*C"); 170 | if (!ret) { 171 | Serial.println("The transmission failed, and the maximum sending interval of the platform is 10 minutes."); 172 | } 173 | } 174 | } 175 | 176 | void setup() 177 | { 178 | Serial.begin(115200); 179 | 180 | delay(100); 181 | 182 | WiFi.begin(ssid, passwd); 183 | 184 | if (WiFi.waitForConnectResult() != WL_CONNECTED) { 185 | Serial.print("Connect ssid fail"); 186 | while (1); 187 | } 188 | 189 | //Register platform command event handler 190 | bigiot.eventAttach(eventCallback); 191 | 192 | //Register device disconnect handler 193 | bigiot.disconnectAttack(disconnectCallback); 194 | 195 | //Register device connect handler 196 | bigiot.connectAttack(connectCallback); 197 | 198 | // Login to bigiot.net 199 | if (!bigiot.login(id, apikey, usrkey)) { 200 | Serial.println("Login fail"); 201 | while (1); 202 | } 203 | } 204 | 205 | 206 | void loop() 207 | { 208 | static uint64_t last_upload_time = 0; 209 | static uint64_t last_wifi_check_time = 0; 210 | 211 | if (WiFi.status() == WL_CONNECTED) { 212 | //Wait for platform command release 213 | bigiot.handle(); 214 | } else { 215 | uint64_t now = millis(); 216 | // Wifi disconnection reconnection mechanism 217 | if (now - last_wifi_check_time > WIFI_TIMEOUT) { 218 | Serial.println("WiFi connection lost. Reconnecting..."); 219 | WiFi.reconnect(); 220 | last_wifi_check_time = now; 221 | } 222 | } 223 | 224 | if (millis() - last_upload_time > STREAM_UPLOAD_TIMEOUT) { 225 | last_upload_time = millis(); 226 | tempRead(); 227 | } 228 | } -------------------------------------------------------------------------------- /src/bigiot.cpp: -------------------------------------------------------------------------------- 1 | ///////////////////////////////////////////////////////////////// 2 | /* 3 | bigiot.cpp - Arduino library simplifies the use of connected BIGIOT platforms. 4 | Created by Lewis he on January 1, 2019. 5 | */ 6 | //03,10,2020 : Update WiFiClient to Cline , Adapt to all platforms 7 | ///////////////////////////////////////////////////////////////// 8 | 9 | #include "bigiot.h" 10 | #include 11 | #if defined(ESP32) 12 | #include 13 | #include 14 | #include 15 | #elif defined(ESP8266) 16 | #include 17 | #include 18 | #endif 19 | #include 20 | #include 21 | 22 | #define ARDUINOJSON_V513 ((ARDUINOJSON_VERSION_MAJOR) == 5 && (ARDUINOJSON_VERSION_MINOR) == 13) 23 | #define ARDUINOJSON_V611 ((ARDUINOJSON_VERSION_MAJOR) == 6 && (ARDUINOJSON_VERSION_MINOR) == 14) 24 | 25 | #if ARDUINOJSON_V611 26 | StaticJsonDocument<1024> root; 27 | #elif ARDUINOJSON_V513 28 | StaticJsonBuffer<1024> jsonBuffer; 29 | #else 30 | #error "No support ArduinoJson version ,please use ArduinoJsonV6.14.x or ArduinoJsonV5.13.x" 31 | #endif 32 | 33 | ///////////////////////////////////////////////////////////////// 34 | BIGIOT::BIGIOT(Client &client,String url,uint16_t port) 35 | { 36 | _client = &client; 37 | _host = url; 38 | _port = port; 39 | } 40 | 41 | ///////////////////////////////////////////////////////////////// 42 | BIGIOT::BIGIOT(Client &client) 43 | { 44 | _client = &client; 45 | _host = BIGIOT_PLATFORM_HOST; 46 | _port = BIGIOT_PLATFORM_PORT; 47 | } 48 | 49 | ///////////////////////////////////////////////////////////////// 50 | const char *BIGIOT::deviceName() 51 | { 52 | return _devName.c_str(); 53 | } 54 | 55 | ///////////////////////////////////////////////////////////////// 56 | String BIGIOT::deviceName() const 57 | { 58 | return _devName; 59 | } 60 | ///////////////////////////////////////////////////////////////// 61 | void BIGIOT::setHeartFreq(uint32_t f) 62 | { 63 | _heartFreq = f; 64 | } 65 | 66 | ///////////////////////////////////////////////////////////////// 67 | bool BIGIOT::isOnline() 68 | { 69 | return _isLogin; 70 | } 71 | 72 | ///////////////////////////////////////////////////////////////// 73 | int BIGIOT::handle(void) 74 | { 75 | int com = DISCONNECT; 76 | static uint64_t hearTimeStamp = millis(); 77 | static uint64_t reconnectTimeStamp = 0; 78 | 79 | if (_client->connected() && _isLogin) { 80 | if (_client->available()) { 81 | String pack = _client->readStringUntil('\n'); 82 | com = packetParse(pack); 83 | } 84 | if (millis() - hearTimeStamp > _heartFreq) { 85 | _client->print(BIGIOT_PLATFORM_8282_HATERATE_PACK); 86 | hearTimeStamp = millis(); 87 | } 88 | } else { 89 | _isLogin = false; 90 | if (_disconnectCallback && !_isCall) { 91 | _isCall = true; 92 | _disconnectCallback(*this); 93 | } 94 | if (_reconnect && millis() - reconnectTimeStamp > REC_TIMEOUT) { 95 | DEBUG_BIGIOT_CLIENT("RECONNECT :%s", _devName.c_str()); 96 | reconnectTimeStamp = millis(); 97 | loginToBigiot(); 98 | } 99 | } 100 | return com; 101 | } 102 | 103 | ///////////////////////////////////////////////////////////////// 104 | int BIGIOT::packetParse(String pack) 105 | { 106 | DEBUG_BIGIOT_CLIENT("%s", pack.c_str()); 107 | 108 | #if ARDUINOJSON_V611 109 | root.clear(); 110 | DeserializationError error = deserializeJson(root, pack); 111 | if (error) { 112 | DEBUG_BIGIOT_CLIENT("[%d] DeserializationError code:%d \n", __LINE__, error); 113 | // Serial.println(pack); 114 | return 0; 115 | } 116 | #elif ARDUINOJSON_V513 117 | jsonBuffer.clear(); 118 | JsonObject &root = jsonBuffer.parseObject(pack); 119 | if (!root.success()) { 120 | return 0; 121 | } 122 | #endif 123 | 124 | const char *m = (const char *)root["M"]; 125 | const char *salve = (const char *)root["S"]; 126 | if (!strcmp(m, "say")) { 127 | const char *s = (const char *)root["C"]; 128 | for (int i = 0; i < PLATFORM_ARRAY_SIZE(platform_command); ++i) { 129 | if (!strcmp(s, platform_command[i])) { 130 | if (_eventCallback) { 131 | _eventCallback(_dev.toInt(), i, platform_command[i], salve); 132 | } 133 | return i + 1; 134 | } 135 | } 136 | // const char *salve = (const char *)root["S"]; 137 | if (_eventCallback) { 138 | _eventCallback(_dev.toInt(), CUSTOM, s, salve); 139 | } 140 | } 141 | /*else if (!strcmp(m, "checkout")) { 142 | const char *r = (const char *)root["IP"]; 143 | DEBUG_BIGIOT_CLIENT("RECV CHECKOUT:%s\n", r); 144 | }*/ 145 | return 0; 146 | } 147 | 148 | ///////////////////////////////////////////////////////////////// 149 | int BIGIOT::loginParse(String pack) 150 | { 151 | 152 | #if ARDUINOJSON_V611 153 | root.clear(); 154 | DeserializationError error = deserializeJson(root, pack); 155 | if (error) { 156 | DEBUG_BIGIOT_CLIENT("[%d] DeserializationError code:%d \n", __LINE__, error); 157 | return INVALID; 158 | } 159 | #elif ARDUINOJSON_V513 160 | JsonObject &root = jsonBuffer.parseObject(pack); 161 | if (!root.success()) 162 | return INVALID; 163 | #endif 164 | 165 | const char *m = (const char *)root["M"]; 166 | if (!strcmp(m, "WELCOME TO BIGIOT")) { 167 | return BIGIOT_LOGINT_WELCOME; 168 | } else if (!strcmp(m, "checkinok")) { 169 | _isCall = false; 170 | _devName = (const char *)root["NAME"]; 171 | DEBUG_BIGIOT_CLIENT("Checkin OK Device Name:%s\n", _devName.c_str()); 172 | return BIGIOT_LOGINT_CHECK_IN; 173 | } else if (!strcmp(m, "token") && _usrKey.length()) { 174 | MD5Builder md5; 175 | md5.begin(); 176 | md5.add(String((const char *)root["K"]) + _usrKey); 177 | md5.calculate(); 178 | _token = md5.toString(); 179 | _client->print(getLoginPacket(_token)); 180 | return BIGIOT_LOGINT_TOKEN; 181 | } 182 | return INVALID; 183 | } 184 | 185 | ///////////////////////////////////////////////////////////////// 186 | bool BIGIOT::loginToBigiot(void) 187 | { 188 | if (!_client->connect(_host.c_str(), _port)) { 189 | DEBUG_BIGIOT_CLIENT("CONNECT HOST FAIL\n"); 190 | return false; 191 | } 192 | _client->print(getLoginPacket(_key)); 193 | uint64_t timeStamp = millis(); 194 | for (;;) { 195 | if (millis() - timeStamp > 5000) { 196 | DEBUG_BIGIOT_CLIENT("LOGIN_TIMEOUT\n"); 197 | _client->print(getLogoutPacket()); 198 | _client->stop(); 199 | return false; 200 | } 201 | if (_client->available()) { 202 | String line = _client->readStringUntil('\n'); 203 | DEBUG_BIGIOT_CLIENT("RECV:%s\n", line.c_str()); 204 | if (loginParse(line) == BIGIOT_LOGINT_CHECK_IN) { 205 | _isLogin = true; 206 | if (_connectCallback) { 207 | _connectCallback(*this); 208 | } 209 | return true; 210 | } 211 | } 212 | delay(100); 213 | } 214 | } 215 | 216 | ///////////////////////////////////////////////////////////////// 217 | bool BIGIOT::login(const char *devId, const char *apiKey, const char *userKey, bool reconnect) 218 | { 219 | _dev = devId; 220 | _key = apiKey; 221 | _usrKey = userKey; 222 | _reconnect = reconnect; 223 | int retry = 3; 224 | do { 225 | if (loginToBigiot())return true; 226 | } while (--retry); 227 | return false; 228 | } 229 | 230 | ///////////////////////////////////////////////////////////////// 231 | bool BIGIOT::operator == (BIGIOT &b) 232 | { 233 | return (this == &b); 234 | } 235 | 236 | ///////////////////////////////////////////////////////////////// 237 | 238 | void BIGIOT::eventAttach(EventCallbackFunc f) 239 | { 240 | _eventCallback = f; 241 | } 242 | 243 | ///////////////////////////////////////////////////////////////// 244 | void BIGIOT::disconnectAttack(GeneralCallbackFunc f) 245 | { 246 | _disconnectCallback = f; 247 | } 248 | 249 | ///////////////////////////////////////////////////////////////// 250 | void BIGIOT::connectAttack(GeneralCallbackFunc f) 251 | { 252 | _connectCallback = f; 253 | } 254 | 255 | ///////////////////////////////////////////////////////////////// 256 | 257 | bool BIGIOT::checkOnline() 258 | { 259 | static uint64_t checkTimeStamp = 0; 260 | 261 | if (millis() - checkTimeStamp < 15 * 1000) { 262 | return true; 263 | } 264 | checkTimeStamp = millis(); 265 | 266 | String pack; 267 | #if ARDUINOJSON_V611 268 | root.clear(); 269 | #elif ARDUINOJSON_V513 270 | jsonBuffer.clear(); 271 | JsonObject &root = jsonBuffer.createObject(); 272 | #endif 273 | root["M"] = "isOL"; 274 | #if ARDUINOJSON_V611 275 | JsonArray v = root.createNestedArray("ID"); 276 | #elif ARDUINOJSON_V513 277 | JsonArray &v = root.createNestedArray("ID"); 278 | #endif 279 | 280 | v.add("D" + _dev); 281 | 282 | #if ARDUINOJSON_V611 283 | serializeJson(root, pack); 284 | #elif ARDUINOJSON_V513 285 | root.printTo(pack); 286 | #endif 287 | pack += "\n"; 288 | DEBUG_BIGIOT_CLIENT("SEND CHECK ONLINE COMMAND:%s", pack.c_str()); 289 | 290 | _client->print(pack); 291 | 292 | uint64_t start = millis(); 293 | 294 | while (1) { 295 | if (_client->connected() && _isLogin) { 296 | while (_client->available()) { 297 | pack = _client->readStringUntil('\n'); 298 | // Serial.println(pack); 299 | #if ARDUINOJSON_V611 300 | root.clear(); 301 | DeserializationError error = deserializeJson(root, pack); 302 | if (error) { 303 | DEBUG_BIGIOT_CLIENT("[%d] DeserializationError code:%d \n", __LINE__, error); 304 | return false; 305 | } 306 | #elif ARDUINOJSON_V513 307 | JsonObject &root = jsonBuffer.parseObject(pack); 308 | if (!root.success()) 309 | return false; 310 | #endif 311 | String id = "D" + _dev; 312 | if (root["R"][id] == String("1")) { 313 | DEBUG_BIGIOT_CLIENT("is Online ..."); 314 | return true; 315 | } 316 | DEBUG_BIGIOT_CLIENT("is No Online ..."); 317 | _client->stop(); 318 | _isLogin = false; 319 | return false; 320 | } 321 | if (millis() - start > 5000) { 322 | DEBUG_BIGIOT_CLIENT("[Timeout] is No Online ...\n"); 323 | if (_client->connected()) { 324 | Serial.println("Client is connect ...\n"); 325 | } 326 | _client->stop(); 327 | _isLogin = false; 328 | return false; 329 | } 330 | } 331 | } 332 | return true; 333 | } 334 | 335 | ///////////////////////////////////////////////////////////////// 336 | String BIGIOT::getLoginPacket(String apiKey) 337 | { 338 | String pack; 339 | #if ARDUINOJSON_V611 340 | root.clear(); 341 | #elif ARDUINOJSON_V513 342 | jsonBuffer.clear(); 343 | JsonObject &root = jsonBuffer.createObject(); 344 | #endif 345 | root["M"] = "checkin"; 346 | root["ID"] = _dev; 347 | root["K"] = apiKey; 348 | 349 | #if ARDUINOJSON_V611 350 | serializeJson(root, pack); 351 | #elif ARDUINOJSON_V513 352 | root.printTo(pack); 353 | #endif 354 | pack += "\n"; 355 | DEBUG_BIGIOT_CLIENT("SEND LOGIN COMMAND:%s", pack.c_str()); 356 | return pack; 357 | } 358 | 359 | ///////////////////////////////////////////////////////////////// 360 | String BIGIOT::getLogoutPacket(void) 361 | { 362 | String pack; 363 | 364 | #if ARDUINOJSON_V611 365 | root.clear(); 366 | #elif ARDUINOJSON_V513 367 | jsonBuffer.clear(); 368 | JsonObject &root = jsonBuffer.createObject(); 369 | #endif 370 | 371 | root["M"] = "checkout"; 372 | root["ID"] = _dev; 373 | if (_token.length()) 374 | root["K"] = _token; 375 | else 376 | root["K"] = _key; 377 | #if ARDUINOJSON_V611 378 | serializeJson(root, pack); 379 | #elif ARDUINOJSON_V513 380 | root.printTo(pack); 381 | #endif 382 | pack += "\n"; 383 | DEBUG_BIGIOT_CLIENT("SEND CHECKOUT COMMAND:%s", pack.c_str()); 384 | return pack; 385 | } 386 | 387 | ///////////////////////////////////////////////////////////////// 388 | bool BIGIOT::sendAlarm(String method, String message) 389 | { 390 | return sendAlarm(method.c_str(), message.c_str()); 391 | } 392 | 393 | ///////////////////////////////////////////////////////////////// 394 | bool BIGIOT::sendAlarm(const char *method, const char *message) 395 | { 396 | static uint64_t last_send_time = 0; 397 | 398 | if (!_isLogin || !method || !message)return false; 399 | 400 | if (last_send_time && millis() - last_send_time < BIGIOT_PLATFORM_ALARM_INTERVAL) 401 | return false; 402 | 403 | if (!strcmp(method, "email") || 404 | !strcmp(method, "qq") || 405 | !strcmp(method, "weibo")) { 406 | #if ARDUINOJSON_V611 407 | root.clear(); 408 | #elif ARDUINOJSON_V513 409 | jsonBuffer.clear(); 410 | JsonObject &root = jsonBuffer.createObject(); 411 | #endif 412 | 413 | 414 | 415 | root["M"] = "alert"; 416 | root["C"] = message; 417 | root["B"] = method; 418 | String json; 419 | 420 | #if ARDUINOJSON_V611 421 | serializeJson(root, json); 422 | #elif ARDUINOJSON_V513 423 | root.printTo(json); 424 | #endif 425 | json += "\n"; 426 | _client->print(json); 427 | DEBUG_BIGIOT_CLIENT("Send:%s", json); 428 | last_send_time = millis(); 429 | return true; 430 | } 431 | return false; 432 | } 433 | 434 | ///////////////////////////////////////////////////////////////// 435 | // Note:需要在HTTP Header中增加API-Key来授权写入操作, 支持一次传送一幅图像数据; 436 | // Note:目前限定相邻图像数据上传间隔须大于等于10s; 437 | // Note:图片大小不大于100K; 438 | // Note:图片格式jpg、png、gif。 439 | bool BIGIOT::uploadPhoto( const char *id, const char *type, const char *filename, uint8_t *image, size_t size) 440 | { 441 | char buff[512]; 442 | char status[64] = {0}; 443 | 444 | if (!id || !type || !image || !size || !filename || size > 100 * 1024)return false; 445 | 446 | 447 | if (strcmp(type, "jpeg") && 448 | strcmp(type, "jpg") && 449 | strcmp(type, "png") && 450 | strcmp(type, "gif")) { 451 | DEBUG_BIGIOT_CLIENT("Error data type\n"); 452 | return false; 453 | } 454 | 455 | WiFiClientSecure client; 456 | 457 | if (!client.connect(BIGIOT_PLATFORM_HOST, BIGIOT_PLATFORM_HTTPS_PORT)) { 458 | DEBUG_BIGIOT_CLIENT("Connection failed"); 459 | return false; 460 | } 461 | const char *request_content = "--------------------------ef73a32d43e7f04d\r\n" 462 | "Content-Disposition: form-data; name=\"data\"; filename=\"%s.%s\"\r\n" 463 | "Content-Type: image/%s\r\n\r\n"; 464 | 465 | const char *request_end = "\r\n--------------------------ef73a32d43e7f04d--\r\n"; 466 | 467 | snprintf(buff, sizeof(buff), request_content, filename, type, type); 468 | 469 | uint32_t content_len = strlen(request_end) + strlen(buff) + size; 470 | String request = "POST /pubapi/uploadImg/did/"; 471 | request += _dev; 472 | request += "/inputid/"; 473 | request += id; 474 | request += " HTTP/1.1\r\n"; 475 | request += "Host: "; 476 | request += BIGIOT_PLATFORM_HOST; 477 | request += "\r\n"; 478 | request += "API-KEY: "; 479 | request += _key; 480 | request += "\r\n"; 481 | request += "Content-Length: " + String(content_len) + "\r\n"; 482 | request += "Content-Type: multipart/form-data; boundary=------------------------ef73a32d43e7f04d\r\n"; 483 | request += "Expect: 100-continue\r\n"; 484 | request += "\r\n"; 485 | 486 | client.println(request); 487 | client.readBytesUntil('\r', status, sizeof(status)); 488 | if (strcmp(status, "HTTP/1.1 100 Continue") != 0) { 489 | DEBUG_BIGIOT_CLIENT("Unexpected response: %s\n", status); 490 | client.stop(); 491 | return false; 492 | } 493 | 494 | client.print(buff); 495 | content_len = size; 496 | size_t offset = 0; 497 | size_t ret = 0; 498 | while (1) { 499 | ret = client.write(image + offset, content_len); 500 | offset += ret; 501 | content_len -= ret; 502 | if (size == offset) { 503 | break; 504 | } 505 | delay(1); 506 | } 507 | client.print(request_end); 508 | client.find("\r\n"); 509 | bzero(status, sizeof(status)); 510 | client.readBytesUntil('\r', status, sizeof(status)); 511 | if (strncmp(status, "HTTP/1.1 200 OK", strlen("HTTP/1.1 200 OK"))) { 512 | DEBUG_BIGIOT_CLIENT("Unexpected response: %s\n", status); 513 | client.stop(); 514 | return false; 515 | } 516 | 517 | if (!client.find("\r\n\r\n")) { 518 | DEBUG_BIGIOT_CLIENT("Invalid response\n"); 519 | client.stop(); 520 | return false; 521 | } 522 | 523 | request = client.readStringUntil('\n'); 524 | client.stop(); 525 | 526 | char *str = strdup(request.c_str()); 527 | if (!str) { 528 | return false; 529 | } 530 | char *start = strchr(str, '{'); 531 | 532 | #if ARDUINOJSON_V611 533 | root.clear(); 534 | DeserializationError error = deserializeJson(root, start); 535 | if (error) { 536 | free(str); 537 | return false; 538 | } 539 | #elif ARDUINOJSON_V513 540 | jsonBuffer.clear(); 541 | JsonObject &root = jsonBuffer.parseObject(start); 542 | if (!root.success()) { 543 | free(str); 544 | return false; 545 | } 546 | #endif 547 | 548 | bool retVal = !strcmp((const char *)root["R"], "0") ? false : true; 549 | free(str); 550 | return retVal; 551 | } 552 | 553 | ///////////////////////////////////////////////////////////////// 554 | bool BIGIOT::upload(String id, String data) 555 | { 556 | return upload(id.c_str(), data.c_str()); 557 | } 558 | 559 | ///////////////////////////////////////////////////////////////// 560 | bool BIGIOT::upload(const char *id, const char *data) 561 | { 562 | return upload(&id, &data, 1); 563 | } 564 | 565 | ///////////////////////////////////////////////////////////////// 566 | bool BIGIOT::upload(const char *id[], const char *data[], int len) 567 | { 568 | if (!_isLogin || !data || !len)return false; 569 | 570 | #if ARDUINOJSON_V611 571 | root.clear(); 572 | #elif ARDUINOJSON_V513 573 | jsonBuffer.clear(); 574 | JsonObject &root = jsonBuffer.createObject(); 575 | #endif 576 | 577 | root["M"] = "update"; 578 | root["ID"] = _dev; 579 | 580 | #if ARDUINOJSON_V611 581 | JsonObject v = root.createNestedObject("V"); 582 | #elif ARDUINOJSON_V513 583 | JsonObject &v = root.createNestedObject("V"); 584 | #endif 585 | for (int i = 0; i < len; ++i) { 586 | v[id[i]] = data[i]; 587 | } 588 | String json; 589 | 590 | #if ARDUINOJSON_V611 591 | serializeJson(root, json); 592 | #elif ARDUINOJSON_V513 593 | root.printTo(json); 594 | #endif 595 | json += "\n"; 596 | _client->print(json); 597 | DEBUG_BIGIOT_CLIENT("Send:%s", json); 598 | return true; 599 | } 600 | 601 | ///////////////////////////////////////////////////////////////// 602 | bool location(String id, String longitude, String latitude) 603 | { 604 | return location(id.c_str(), longitude.c_str(), latitude.c_str()); 605 | } 606 | 607 | ///////////////////////////////////////////////////////////////// 608 | bool BIGIOT::location(const char *id, float longitude, float latitude) 609 | { 610 | char longitudeBf[16], latitudeBf[16]; 611 | if (!id)return false; 612 | snprintf(longitudeBf, sizeof(longitudeBf), "%f", longitude); 613 | snprintf(latitudeBf, sizeof(latitudeBf), "%f", latitude); 614 | return location(id, longitudeBf, latitudeBf); 615 | } 616 | 617 | ///////////////////////////////////////////////////////////////// 618 | bool BIGIOT::location(const char *id, const char *longitude, const char *latitude) 619 | { 620 | char buff[128]; 621 | if (!_isLogin)return false; 622 | 623 | #if ARDUINOJSON_V611 624 | root.clear(); 625 | #elif ARDUINOJSON_V513 626 | jsonBuffer.clear(); 627 | JsonObject &root = jsonBuffer.createObject(); 628 | #endif 629 | root["M"] = "update"; 630 | root["ID"] = _dev; 631 | 632 | #if ARDUINOJSON_V611 633 | JsonObject v = root.createNestedObject("V"); 634 | #elif ARDUINOJSON_V513 635 | JsonObject &v = root.createNestedObject("V"); 636 | #endif 637 | 638 | snprintf(buff, sizeof(buff), "%s,%s", longitude, latitude); 639 | v[id] = buff; 640 | String json; 641 | 642 | #if ARDUINOJSON_V611 643 | serializeJson(root, json); 644 | #elif ARDUINOJSON_V513 645 | root.printTo(json); 646 | #endif 647 | json += "\n"; 648 | _client->print(json); 649 | DEBUG_BIGIOT_CLIENT("Send:%s", json); 650 | return true; 651 | } 652 | 653 | ///////////////////////////////////////////////////////////////// 654 | // xEmail::xEmail(Client &client) 655 | // { 656 | // _client = &client; 657 | // } 658 | 659 | ///////////////////////////////////////////////////////////////// 660 | void xEmail::setEmailHost(const char *host, uint16_t port) 661 | { 662 | _emailHost = host; 663 | _emailPort = port; 664 | } 665 | 666 | ///////////////////////////////////////////////////////////////// 667 | void xEmail::setRecipient(const char *email) 668 | { 669 | _recipient = email; 670 | } 671 | 672 | ///////////////////////////////////////////////////////////////// 673 | bool xEmail::setSender(const char *user, const char *password) 674 | { 675 | _emailUser = user; 676 | _emailPasswd = password; 677 | 678 | _base64User = base64::encode(_emailUser); 679 | _base64Pass = base64::encode(_emailPasswd); 680 | if (_base64User == "-FAIL-" || _base64Pass == "-FAIL-") { 681 | return false; 682 | } 683 | return true; 684 | } 685 | 686 | ///////////////////////////////////////////////////////////////// 687 | bool xEmail::sendEmail(const char *subject, const char *content) 688 | { 689 | String ip = WiFiClient::localIP().toString(); 690 | struct { 691 | int cnt; 692 | int skip; 693 | const char *prefix; 694 | const char *arg; 695 | } stream[] = { 696 | {1, 0, "EHLO %s", ip.c_str()}, 697 | {0, 0, "auth login", NULL}, 698 | {2, 0, NULL, _base64User.c_str()}, 699 | {2, 0, NULL, _base64Pass.c_str()}, 700 | {1, 0, "MAIL From: <%s>", _emailUser.c_str()}, 701 | {1, 0, "RCPT To: <%s>", _recipient.c_str()}, 702 | {0, 0, "DATA", NULL}, 703 | {1, 1, "To: <%s>", _recipient.c_str()}, 704 | {1, 1, "From: <%s>", _emailUser.c_str()}, 705 | {1, 1, "Subject: %s\r\n", subject}, 706 | {2, 1, NULL, content}, 707 | {0, 0, ".", NULL}, 708 | {0, 0, "QUIT", NULL} 709 | }; 710 | 711 | char buff[256]; 712 | if (!connect(_emailHost.c_str(), _emailPort)) 713 | return false; 714 | if (!emailRecv()) 715 | return false; 716 | 717 | for (int i = 0; i < PLATFORM_ARRAY_SIZE(stream); ++i) { 718 | switch (stream[i].cnt) { 719 | case 0: 720 | DEBUG_BIGIOT_CLIENT("%s\n", stream[i].prefix); 721 | println(stream[i].prefix); 722 | break; 723 | case 1: 724 | snprintf(buff, sizeof(buff), stream[i].prefix, stream[i].arg); 725 | DEBUG_BIGIOT_CLIENT("%s\n", buff); 726 | println(buff); 727 | break; 728 | case 2: 729 | DEBUG_BIGIOT_CLIENT("%s\n", stream[i].arg); 730 | println(stream[i].arg); 731 | break; 732 | } 733 | if (!stream[i].skip) { 734 | if (!emailRecv()) 735 | return false; 736 | } 737 | } 738 | stop(); 739 | return true; 740 | } 741 | 742 | ///////////////////////////////////////////////////////////////// 743 | bool xEmail::sendEmail(String &subject, String &content) 744 | { 745 | return sendEmail(subject.c_str(), content.c_str()); 746 | } 747 | 748 | ///////////////////////////////////////////////////////////////// 749 | bool xEmail::emailRecv() 750 | { 751 | uint8_t code; 752 | int loopCount = 0; 753 | while (!available()) { 754 | delay(1); 755 | loopCount++; 756 | if (loopCount > 10000) { 757 | stop(); 758 | DEBUG_BIGIOT_CLIENT("\r\nxEamil Timeout\n"); 759 | return 0; 760 | } 761 | } 762 | code = peek(); 763 | // Serial.print("MailRecv:"); 764 | while (available()) { 765 | DEBUG_BIGIOT_WRITE(read()); 766 | } 767 | if (code >= '4') { 768 | emailFail(); 769 | return 0; 770 | } 771 | return 1; 772 | } 773 | 774 | ///////////////////////////////////////////////////////////////// 775 | void xEmail::emailFail() 776 | { 777 | int loopCount = 0; 778 | println(F("QUIT")); 779 | while (!available()) { 780 | delay(1); 781 | loopCount++; 782 | if (loopCount > EMAIL_RECV_TIMEOUT) { 783 | stop(); 784 | DEBUG_BIGIOT_CLIENT("\r\nxEmail Timeout\n"); 785 | return; 786 | } 787 | } 788 | DEBUG_BIGIOT_CLIENT("MailRecv:"); 789 | while (available()) { 790 | DEBUG_BIGIOT_WRITE(read()); 791 | } 792 | stop(); 793 | } 794 | 795 | ///////////////////////////////////////////////////////////////// 796 | void ServerChan::setSCKEY(String &key) 797 | { 798 | _sckey = key; 799 | } 800 | 801 | ///////////////////////////////////////////////////////////////// 802 | void ServerChan::setSCKEY(const char *key) 803 | { 804 | _sckey = key; 805 | } 806 | 807 | ///////////////////////////////////////////////////////////////// 808 | bool ServerChan::sendWechat(String text, String desp) 809 | { 810 | return sendWechat(text.c_str(), desp.c_str()); 811 | } 812 | 813 | ///////////////////////////////////////////////////////////////// 814 | bool ServerChan::sendWechat(const char *text, const char *desp) 815 | { 816 | size_t size = strlen(text) + _sckey.length() + strlen(SERVERCHAN_LINK_FORMAT); 817 | if (desp) { 818 | size = strlen(desp) > SERVERCHAN_DESP_MAX_LENGTH ? SERVERCHAN_DESP_MAX_LENGTH : size + strlen(desp); 819 | } 820 | char *buff = NULL; 821 | buff = (char *)malloc(size); 822 | if (!buff) { 823 | return false; 824 | } 825 | 826 | snprintf(buff, size, SERVERCHAN_LINK_FORMAT, _sckey.c_str(), text); 827 | if (desp) { 828 | snprintf(buff, size, "%s&desp=%s", buff, desp); 829 | } 830 | 831 | for (char *p = buff; *p; p++) { 832 | if (*p == ' ') 833 | *p = '+'; 834 | } 835 | 836 | DEBUG_BIGIOT_CLIENT("ServerChan Request:%s", buff); 837 | 838 | HTTPClient http; 839 | #if defined(ESP32) 840 | http.begin(buff); 841 | #elif defined(ESP8266) 842 | WiFiClient client; 843 | http.begin(client, String(buff)); 844 | #endif 845 | int err = http.GET(); 846 | DEBUG_BIGIOT_CLIENT("[HTTP] GET.code: %d\n", err); 847 | http.end(); 848 | free(buff); 849 | return err == HTTP_CODE_OK; 850 | } 851 | 852 | -------------------------------------------------------------------------------- /examples/photo/girl.h: -------------------------------------------------------------------------------- 1 | const uint8_t PROGMEM girlArray[] = {0xff,0xd8,0xff,0xe0,0x0,0x10,0x4a,0x46,0x49,0x46,0x0,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xe1,0x0,0x42,0x45,0x78,0x69,0x66,0x0,0x0,0x4d,0x4d,0x0,0x2a,0x0,0x0,0x0,0x8,0x0,0x1,0x87,0x69,0x0,0x4,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x1a,0x0,0x0,0x0,0x0,0x0,0x2,0x40,0x0,0x0,0x3,0x0,0x0,0x0,0x1,0x0,0x35,0x0,0x0,0x40,0x1,0x0,0x1,0x0,0x0,0x0,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0xff,0xdb,0x0,0x43,0x0,0xb,0x9,0x9,0x7,0x9,0x9,0x7,0x9,0x9,0x9,0x9,0xb,0x9,0x9,0x9,0x9,0x9,0x9,0xb,0x9,0xb,0xb,0xc,0xb,0xb,0xb,0xc,0xd,0x10,0xc,0x11,0xe,0xd,0xe,0xc,0x12,0x19,0x12,0x25,0x1a,0x1d,0x25,0x1d,0x19,0x1f,0x1c,0x29,0x29,0x16,0x25,0x37,0x35,0x36,0x1a,0x2a,0x32,0x3e,0x2d,0x29,0x30,0x19,0x3b,0x21,0x13,0xff,0xdb,0x0,0x43,0x1,0x7,0x8,0x8,0xb,0x9,0xb,0x15,0xb,0xb,0x15,0x2c,0x1d,0x19,0x1d,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0x2c,0xff,0xc0,0x0,0x11,0x8,0x2,0x68,0x1,0xda,0x3,0x1,0x22,0x0,0x2,0x11,0x1,0x3,0x11,0x1,0xff,0xc4,0x0,0x1f,0x0,0x0,0x1,0x5,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x10,0x0,0x2,0x1,0x3,0x3,0x2,0x4,0x3,0x5,0x5,0x4,0x4,0x0,0x0,0x1,0x7d,0x1,0x2,0x3,0x0,0x4,0x11,0x5,0x12,0x21,0x31,0x41,0x6,0x13,0x51,0x61,0x7,0x22,0x71,0x14,0x32,0x81,0x91,0xa1,0x8,0x23,0x42,0xb1,0xc1,0x15,0x52,0xd1,0xf0,0x24,0x33,0x62,0x72,0x82,0x9,0xa,0x16,0x17,0x18,0x19,0x1a,0x25,0x26,0x27,0x28,0x29,0x2a,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe1,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf1,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xff,0xc4,0x0,0x1f,0x1,0x0,0x3,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x1,0x0,0x0,0x0,0x0,0x0,0x0,0x1,0x2,0x3,0x4,0x5,0x6,0x7,0x8,0x9,0xa,0xb,0xff,0xc4,0x0,0xb5,0x11,0x0,0x2,0x1,0x2,0x4,0x4,0x3,0x4,0x7,0x5,0x4,0x4,0x0,0x1,0x2,0x77,0x0,0x1,0x2,0x3,0x11,0x4,0x5,0x21,0x31,0x6,0x12,0x41,0x51,0x7,0x61,0x71,0x13,0x22,0x32,0x81,0x8,0x14,0x42,0x91,0xa1,0xb1,0xc1,0x9,0x23,0x33,0x52,0xf0,0x15,0x62,0x72,0xd1,0xa,0x16,0x24,0x34,0xe1,0x25,0xf1,0x17,0x18,0x19,0x1a,0x26,0x27,0x28,0x29,0x2a,0x35,0x36,0x37,0x38,0x39,0x3a,0x43,0x44,0x45,0x46,0x47,0x48,0x49,0x4a,0x53,0x54,0x55,0x56,0x57,0x58,0x59,0x5a,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x89,0x8a,0x92,0x93,0x94,0x95,0x96,0x97,0x98,0x99,0x9a,0xa2,0xa3,0xa4,0xa5,0xa6,0xa7,0xa8,0xa9,0xaa,0xb2,0xb3,0xb4,0xb5,0xb6,0xb7,0xb8,0xb9,0xba,0xc2,0xc3,0xc4,0xc5,0xc6,0xc7,0xc8,0xc9,0xca,0xd2,0xd3,0xd4,0xd5,0xd6,0xd7,0xd8,0xd9,0xda,0xe2,0xe3,0xe4,0xe5,0xe6,0xe7,0xe8,0xe9,0xea,0xf2,0xf3,0xf4,0xf5,0xf6,0xf7,0xf8,0xf9,0xfa,0xff,0xda,0x0,0xc,0x3,0x1,0x0,0x2,0x11,0x3,0x11,0x0,0x3f,0x0,0xf5,0xca,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa2,0x80,0xa,0x28,0xa3,0x34,0x0,0x51,0x48,0x59,0x54,0x65,0x88,0x0,0x77,0x24,0x1,0xfa,0xd6,0x7c,0xda,0xc6,0x97,0x9,0xda,0x67,0xc,0xd9,0xc6,0xd8,0xfe,0x63,0x9f,0xc2,0xa5,0xc9,0x2d,0xca,0x8c,0x5c,0xb6,0x46,0x8e,0x68,0xac,0x53,0xaf,0x42,0x73,0xe5,0xda,0xdc,0x30,0xfe,0xf1,0x1,0x41,0xfc,0x5a,0x9b,0xfd,0xb8,0xf9,0xff,0x0,0x8f,0x65,0x3,0xde,0x55,0xa8,0xf6,0xb1,0x35,0xf6,0x15,0x3b,0x1b,0x94,0x56,0x28,0xd7,0x60,0x18,0xde,0xa8,0xf,0xfd,0x75,0x5a,0x90,0x6b,0x9a,0x79,0xc7,0xcd,0xc9,0xec,0xa,0xd3,0xf6,0x91,0xee,0x27,0x42,0xa2,0xe8,0x6b,0x66,0x82,0x6b,0x25,0xb5,0xbb,0x30,0x9,0xda,0xfc,0x7e,0x3f,0x96,0x2a,0x24,0xf1,0x1e,0x94,0xdb,0x81,0x2e,0xac,0xb9,0xca,0x91,0xf3,0x7e,0x2,0x9f,0xb4,0x8f,0x71,0x7b,0x19,0xf6,0x36,0x81,0x7,0xa1,0xcd,0x2d,0x60,0xaf,0x88,0x34,0x89,0x58,0x14,0x94,0xc6,0x49,0xc0,0x2c,0x30,0x1b,0x1d,0x88,0xab,0x90,0xea,0xf6,0x73,0x67,0x6b,0xa1,0xc3,0x6d,0x6c,0x30,0xeb,0xed,0x9a,0x39,0xd0,0x9d,0x29,0x2e,0x86,0x95,0x15,0x1c,0x73,0xc1,0x28,0x6,0x39,0x15,0xbe,0x84,0x66,0xa4,0xcd,0x59,0x9e,0xc1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x14,0x50,0x1,0x45,0x15,0x5e,0x7b,0xa8,0xe1,0x1d,0x72,0xde,0x9d,0x87,0xd4,0xd2,0x6d,0x2d,0x58,0xd2,0x72,0x76,0x44,0xcc,0xea,0x80,0xb3,0x10,0x0,0xee,0x6b,0x36,0xe3,0x51,0x61,0xb9,0x61,0x0,0x63,0x3f,0x31,0x1b,0x8f,0xe0,0x3a,0x56,0x65,0xf6,0xaf,0x6e,0x33,0xbe,0x4d,0xed,0xc8,0x11,0xc6,0x70,0xa0,0xd6,0x5,0xc6,0xad,0x33,0x6e,0x8,0x4,0x6b,0xdc,0xf5,0xfc,0xab,0x96,0x55,0xaf,0xa4,0x4f,0x42,0x96,0x11,0xef,0x23,0x52,0xea,0xe5,0x9c,0xb1,0x9a,0x63,0x27,0x6d,0xb2,0x48,0x42,0x8f,0x6d,0xa9,0x59,0x92,0x5e,0x88,0xc9,0x11,0x3c,0x68,0x7,0x18,0x8a,0x21,0x9f,0xfb,0xe8,0xf3,0x59,0x8e,0xd7,0x33,0x2,0x63,0x2c,0x47,0xf7,0xa4,0x3b,0x79,0xf6,0xa8,0xfc,0x86,0xe0,0xc9,0x27,0x3d,0xe,0xe,0x7,0xd3,0x9a,0xca,0xdd,0xce,0xe5,0x5,0x1d,0xb,0x72,0x5f,0x6,0xe0,0xc9,0x33,0x8f,0x7c,0x80,0xf,0xe1,0x55,0x9e,0xe2,0x73,0xf7,0x23,0x56,0x18,0x3c,0x17,0x22,0xa1,0x66,0x8d,0x78,0x57,0x76,0xc7,0xa7,0x4f,0xcc,0xd4,0x4d,0x32,0x8c,0xe1,0x41,0x6c,0x7a,0x96,0x3f,0x8d,0x5a,0x8a,0x1b,0xd0,0x98,0xc9,0x7a,0x79,0xf2,0x61,0x3,0xf1,0x26,0x97,0x75,0xd1,0xe4,0xaa,0x2,0x31,0xf4,0xaa,0xa6,0x79,0xb1,0xd9,0x7,0xa9,0x38,0x3f,0x90,0xa8,0xfc,0xe9,0x49,0x3b,0x59,0xdb,0xb7,0x1d,0x2a,0xd4,0x48,0x6e,0xc6,0x8c,0x77,0x77,0x71,0xf4,0xd9,0x8c,0xf2,0x32,0x71,0xfa,0xd7,0x41,0x61,0xa9,0xe9,0x12,0x80,0x9a,0x85,0x82,0x9,0x38,0xdb,0x26,0xdd,0xca,0x7f,0xe0,0x43,0x9a,0xe3,0xf7,0xdd,0x7f,0x7c,0x2a,0xe7,0xb8,0x4,0x9f,0xa5,0x39,0x66,0xbd,0x27,0x9,0xc0,0x3e,0x87,0xaf,0xd4,0xd5,0x72,0x58,0xca,0x76,0x92,0xb3,0x3b,0xe7,0xd0,0xfc,0x25,0x7c,0x3c,0xc5,0xcc,0xe,0xd8,0x21,0xa1,0x9c,0xaf,0x23,0xdb,0x38,0xaa,0xd2,0x78,0x56,0xe6,0x0,0x64,0xd3,0x75,0x23,0x22,0x83,0xb9,0x63,0xb8,0x55,0xc1,0x3e,0xce,0xb5,0xc8,0x24,0xd7,0x48,0x32,0x43,0x75,0xc9,0xdb,0xb8,0x83,0xf8,0x8a,0xd3,0xb6,0xf1,0x6,0xa3,0x2,0xa2,0x9,0x1c,0x4,0x39,0x1b,0xc6,0x7d,0xb1,0x4f,0xd5,0x1c,0xfe,0xce,0x51,0xf8,0x64,0x68,0x42,0x9e,0x22,0xb1,0x69,0x7c,0xfb,0x39,0x9e,0xdd,0xc8,0x3e,0x6d,0xb1,0xdc,0x63,0x3d,0x33,0xb4,0x73,0x5a,0x56,0xde,0x20,0xbc,0xb5,0x74,0x8a,0xef,0x13,0xc4,0xe7,0x9,0x2e,0x36,0x3a,0xfb,0x30,0xaa,0x16,0xbe,0x29,0x97,0x78,0xc,0xa1,0x4f,0x5,0x9c,0x9c,0xee,0xf6,0x0,0x56,0xe3,0x1d,0x17,0x5b,0xb6,0x6f,0x37,0xca,0x62,0xc3,0xe6,0x68,0xc8,0x49,0x54,0x8e,0x41,0x4,0x50,0xbc,0x8c,0xe7,0x7f,0xb6,0x8d,0x8b,0x5b,0xbb,0x7b,0xb5,0x2d,0x13,0x3,0x8e,0xa3,0xb8,0xab,0x35,0xc8,0x35,0x9d,0xe6,0x9d,0x1c,0x72,0xd9,0xce,0xd2,0xa0,0x3b,0xa2,0x7c,0x61,0xf6,0x77,0xe,0x3a,0x1a,0xde,0xb0,0xd4,0xa3,0xbb,0x40,0x18,0x5,0x94,0x1,0xbd,0x41,0xc9,0xfa,0xe2,0xb5,0x52,0xee,0x73,0xca,0x3d,0x51,0xa3,0x45,0x20,0x20,0xe2,0x96,0xa8,0xcc,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa0,0xd5,0x5b,0x99,0xd6,0x34,0x25,0x9b,0x6a,0xe3,0xd7,0x93,0x53,0x29,0x28,0xab,0xb2,0xa3,0x17,0x27,0x64,0x36,0xf2,0xe9,0x20,0x43,0xf3,0xc,0xf7,0xe7,0xa0,0xfa,0xd7,0x29,0x7d,0x7d,0x3c,0xec,0xc9,0x16,0x42,0x7b,0x9e,0x5b,0xdc,0x7b,0x54,0xb7,0xd7,0x7e,0x73,0x15,0x3,0x3b,0x72,0xd8,0x27,0xe5,0x51,0xfd,0xe7,0xac,0xb0,0xaf,0x36,0xfd,0x84,0x88,0xf2,0x3c,0xc9,0x7b,0xb7,0xb2,0x9f,0x4a,0xf3,0xe7,0x51,0xcd,0x9e,0xd5,0xa,0xa,0x9a,0xbb,0xdc,0x81,0x80,0x4,0xee,0x25,0xe4,0x27,0x7,0x67,0x51,0xec,0xd,0x27,0x92,0x7,0xcf,0x36,0x0,0x3,0xe5,0x45,0x1c,0x28,0xfa,0xd4,0xcc,0xc1,0x32,0xb1,0xa8,0x38,0xe4,0xb3,0xe,0x3f,0x3e,0xf5,0x52,0x56,0x79,0x33,0x92,0x48,0xee,0x49,0xc2,0xfe,0x7f,0xe1,0x49,0x1d,0x3a,0xb1,0x24,0x96,0x31,0x9d,0x8a,0x9,0x1f,0xc4,0xdc,0x81,0xf4,0xed,0x55,0x24,0x91,0xdc,0x1e,0x77,0x7b,0x91,0xc2,0xfe,0x26,0x96,0x59,0x62,0x4c,0x2a,0xe6,0x46,0x1d,0x87,0xa,0x3f,0x1,0x50,0x31,0x76,0xc6,0xe3,0x80,0x4e,0x42,0x8e,0xfe,0xc0,0xa,0xd2,0x28,0x96,0x34,0xf3,0xea,0x71,0xd4,0xe7,0xe5,0x1f,0x89,0xa6,0x6e,0x3,0x85,0x20,0x9e,0xd8,0x1c,0xa,0x79,0x52,0xd8,0x2e,0xdb,0x50,0x7f,0x8,0xf5,0xa6,0x33,0x47,0x1f,0x4c,0x2e,0x3b,0x75,0x73,0xf8,0x76,0xad,0x91,0x93,0x14,0x20,0xce,0x5d,0x97,0x3e,0xfc,0xd0,0x42,0x1,0xb9,0x99,0x88,0xcf,0x0,0xe1,0x7,0xe5,0xd6,0xa1,0x32,0xc8,0xff,0x0,0x74,0x60,0x7f,0x7b,0xaf,0xeb,0x42,0xa4,0x8d,0xf7,0x46,0x5b,0xbb,0xbf,0x45,0xf7,0xe6,0xad,0x19,0x32,0xc7,0x9d,0x12,0xc,0x88,0xc1,0x20,0xc,0x6e,0x3c,0x7e,0xb4,0xdf,0xb5,0xce,0xc4,0x84,0xc1,0x1d,0x3e,0x41,0xc0,0xa6,0x79,0x76,0xd1,0x0,0xf3,0xb1,0x90,0xe7,0xa7,0x3b,0x7f,0x1,0x4d,0x6d,0x40,0xc,0x2c,0x10,0x67,0xd3,0x8e,0x9f,0xd2,0xad,0x19,0xb2,0xc8,0x92,0xf0,0xe3,0xe5,0x63,0x8e,0xdc,0x1,0xcf,0xad,0x23,0xad,0xd1,0xc9,0x6b,0x75,0xc1,0xea,0x43,0x8f,0xeb,0x54,0xda,0x6d,0x5a,0x5f,0xe2,0x8,0xbd,0xb0,0x47,0x7a,0x43,0x15,0xc1,0xe1,0xef,0x15,0xbd,0x81,0xff,0x0,0x1a,0x76,0x44,0x5d,0x83,0xb4,0x91,0xb7,0xcc,0x8c,0x9c,0xf0,0x7b,0x71,0xdf,0x22,0xad,0x5b,0x5c,0x3c,0x13,0x79,0xeb,0x29,0x1b,0xbb,0x29,0xc0,0xdd,0x54,0x9a,0x29,0x40,0xe2,0x68,0x58,0x7a,0x16,0x62,0x7f,0x5e,0x2a,0x14,0x97,0x19,0x47,0x2a,0x46,0x79,0x1f,0xe1,0x49,0xc4,0x2e,0x77,0xf6,0x9a,0xe9,0x68,0x22,0xf3,0x49,0x11,0x61,0xb0,0x7,0x62,0x78,0xad,0xf,0x21,0x27,0xb5,0xb2,0xbc,0xb3,0x90,0x25,0xec,0x68,0x24,0x2c,0xa4,0x8d,0xcb,0xbf,0x18,0x22,0xbc,0xfa,0xde,0xe0,0x98,0x67,0x1c,0x82,0x41,0x2a,0xbd,0x86,0x3d,0x2b,0x4b,0x4b,0xd6,0x67,0x80,0x3c,0x6c,0xec,0xca,0xc0,0x2a,0xee,0xe4,0xa0,0xce,0xee,0xf,0xa5,0x2b,0x19,0x4a,0x3d,0x51,0xe9,0x56,0x37,0xde,0x6a,0xa2,0x4f,0xb5,0x66,0xdc,0x53,0x3,0xa1,0x61,0xda,0xb4,0x41,0xae,0x6f,0x4a,0x7b,0x6d,0x44,0x4e,0xa4,0xe4,0x4b,0x14,0x73,0x2b,0x28,0xda,0xc8,0xea,0x70,0x19,0x7d,0xeb,0x6a,0xd2,0x69,0x18,0x34,0x33,0x91,0xf6,0x88,0x78,0x7f,0xf6,0xd7,0xf8,0x5c,0x7d,0x7b,0xd3,0x4c,0xe5,0x92,0xb3,0x2d,0xd1,0x45,0x15,0x64,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x54,0x72,0xc8,0xb1,0xa3,0x3b,0x1c,0x1,0x49,0xbb,0x2b,0x8d,0x2b,0xbb,0x21,0x97,0x13,0xa4,0x28,0x59,0xb9,0xec,0x14,0x75,0x66,0xf4,0xae,0x72,0xfe,0xe9,0xe4,0x2c,0x37,0x7c,0xdd,0x58,0xf6,0x8c,0x7a,0xe3,0xf9,0x54,0xb7,0x77,0x2c,0x5d,0x9c,0x9c,0xc8,0x7e,0xe8,0x1f,0xc0,0x87,0xb0,0xf7,0x35,0x9d,0xe5,0x34,0xcd,0xba,0x4f,0x96,0x2e,0xbe,0x57,0x42,0xed,0xea,0xc7,0xae,0x2b,0xcc,0xad,0x57,0x9d,0xd9,0x1e,0xc6,0x1b,0xe,0xa9,0xae,0x69,0x14,0xfc,0xaf,0x3f,0x5,0xf7,0xb,0x75,0x39,0x58,0xc1,0xf9,0xa6,0x6f,0xef,0x3b,0x7a,0x53,0xa5,0xdd,0xb4,0x7d,0xd4,0x8c,0x74,0xec,0xa0,0x7a,0x28,0xa9,0x6e,0xae,0x61,0x80,0xed,0x18,0x92,0x62,0x38,0x45,0x1f,0x2a,0x8f,0x70,0x2b,0x22,0x79,0x24,0x98,0xee,0x9e,0x4c,0x29,0x3f,0x71,0x4f,0x7,0xdb,0x22,0xb3,0x5d,0x8e,0xeb,0x37,0xab,0x9,0xae,0xa3,0x24,0xa4,0x60,0xbe,0x3a,0x9e,0xaa,0xd,0x52,0x95,0xe6,0x73,0x86,0x27,0x1d,0x95,0x4f,0x3f,0x89,0xa9,0x5d,0xf8,0xda,0x8a,0xb1,0xa0,0xe9,0xc6,0x3f,0x4a,0x8c,0xe0,0x72,0x33,0xcf,0x39,0x7f,0xbc,0xdf,0x85,0x6c,0x90,0x11,0x6d,0xc6,0x30,0x6,0x7d,0x17,0x80,0x3f,0xde,0x34,0xd2,0x42,0xe5,0x89,0x4,0xfa,0xf4,0x51,0xec,0x29,0x24,0x98,0xe,0x14,0x6e,0x3e,0xdf,0x77,0xf1,0xa8,0x8,0x91,0xc8,0x7,0x2c,0xe7,0xa2,0x8e,0x83,0xfa,0xa,0xd1,0x19,0xb1,0x65,0x9c,0x9f,0x95,0x49,0x1f,0x4f,0xbd,0x8f,0x76,0x3d,0x2a,0x25,0x89,0x9f,0x90,0x1,0x0,0xf2,0xcd,0xc4,0x63,0xfc,0x6a,0x65,0x89,0x57,0xef,0x61,0xdf,0xfb,0xa3,0xee,0x2f,0xbb,0x9a,0x64,0xb7,0x11,0xa9,0xda,0xa3,0xce,0x71,0xd0,0xe,0x23,0x5f,0xc0,0x56,0xa8,0xc5,0x92,0x8,0xf0,0xbb,0xf3,0x95,0x5e,0xb2,0x3f,0xca,0x80,0xff,0x0,0xb2,0x3b,0xd4,0xf,0x74,0xbc,0xa4,0x61,0x9d,0xb8,0x3c,0x74,0xfa,0x9e,0xd5,0x13,0xf9,0xb3,0x32,0xf9,0xd2,0x33,0x9f,0xe1,0x8e,0x3f,0xba,0x3d,0xb8,0xa7,0x4,0x19,0x11,0x80,0x59,0x8f,0xfc,0xb2,0x8f,0xff,0x0,0x66,0x22,0xb4,0x46,0x4c,0x61,0xdf,0x23,0x12,0xec,0x32,0x3a,0x85,0x39,0xc7,0xe3,0x52,0xc7,0x1b,0xb1,0xc4,0x60,0x28,0xcf,0xde,0x6e,0xbf,0x80,0x1c,0xd5,0xa8,0xac,0x9d,0xb0,0x67,0x61,0x12,0xa8,0xc8,0x54,0x1d,0x3f,0xa5,0x5c,0x47,0x8e,0x15,0xc5,0xba,0xa4,0x60,0xff,0x0,0x1b,0x82,0xd2,0x37,0xb8,0xa2,0xf6,0x26,0xd7,0x20,0x4b,0x1c,0x2e,0xf9,0xdf,0xcb,0x43,0xd4,0xcc,0x76,0xee,0xfa,0x20,0xe6,0x9c,0x1f,0x4a,0x8b,0x18,0xdf,0x29,0xe9,0xbb,0xcb,0x0,0x7e,0x0,0xd5,0x7b,0x8b,0xa8,0x10,0x92,0xfb,0xa4,0x7e,0xec,0xe7,0x27,0xf0,0xaa,0x4f,0xa8,0x47,0xdb,0xcc,0x5f,0xf7,0x42,0x91,0xf9,0x1a,0x77,0xb9,0x2d,0x77,0x35,0x9e,0xe6,0xdd,0x86,0x15,0x42,0xe4,0x73,0xba,0x24,0x3f,0xca,0xb2,0x6f,0x4a,0xb6,0x77,0x45,0x1e,0x71,0xc3,0x28,0xc6,0x71,0xe8,0x45,0x44,0x65,0xf3,0x39,0x59,0x39,0x23,0x82,0x38,0xfc,0xc5,0x33,0xcd,0x66,0x5,0x1f,0x9c,0x7a,0xf5,0x1e,0xf4,0xc8,0x1b,0x4,0xdb,0x5b,0x8c,0xf1,0x92,0x3e,0xa3,0x8a,0x9a,0xc,0x99,0x49,0x7,0xdc,0xf,0x40,0x78,0xaa,0x2d,0x95,0x90,0x11,0xd0,0xe7,0xf0,0x35,0x34,0x52,0x85,0xc,0x7a,0x12,0x31,0x4d,0x10,0xce,0xe7,0xc3,0xba,0x90,0x82,0xf5,0x40,0x3b,0x60,0x90,0x8,0x87,0x3f,0x2a,0x91,0xd3,0x77,0xd6,0xbb,0x9b,0x79,0xbe,0xd0,0xe9,0x3a,0x0,0xbc,0xb2,0xc8,0x38,0x27,0xd0,0x2,0x7f,0x5a,0xf2,0xb,0x9,0xc9,0xf9,0x9,0xc4,0x72,0x60,0x3e,0x3a,0x9c,0x74,0xe6,0xbd,0x13,0x43,0xbd,0x39,0xb6,0x19,0x26,0x3c,0x6d,0x98,0xf6,0x57,0x1c,0x21,0x27,0xf4,0xa8,0x6e,0xcc,0xce,0xa4,0x3a,0xa3,0xab,0x14,0x52,0xe,0x83,0xbd,0x2d,0x6a,0x72,0x85,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x5,0x14,0x51,0x40,0x8,0x4e,0x1,0xac,0x4b,0xcb,0xa3,0x70,0xee,0xab,0xfe,0xa6,0x3e,0x3f,0xdf,0x6f,0x4a,0xbd,0x7d,0x33,0x5,0x58,0x50,0x65,0xa4,0xce,0xe3,0x9c,0x6d,0x5f,0x52,0x6b,0x31,0xcc,0x71,0xae,0x31,0x85,0x5f,0x71,0x96,0x3f,0xec,0xff,0x0,0x8d,0x70,0x62,0x2a,0x5f,0xdd,0x47,0xa1,0x85,0xa7,0xf6,0xde,0xfd,0x8,0x16,0x5,0xc9,0x96,0x7c,0x67,0x96,0x50,0x7a,0x2e,0x7d,0x7d,0xeb,0x3a,0xee,0xec,0xb1,0x74,0x83,0xaf,0x20,0xb7,0x71,0xf8,0xd5,0x8b,0x97,0x9a,0x70,0x0,0x18,0x40,0x78,0x0,0xe0,0x1f,0x72,0x6a,0x84,0x82,0x34,0xc6,0xf2,0x36,0xf3,0x90,0xe,0xd0,0x4f,0xf3,0xae,0x1b,0xf4,0x47,0xaf,0x4e,0x1d,0x65,0xb9,0x4f,0x6f,0xca,0x4a,0xae,0x72,0x79,0x3d,0x59,0x8f,0xbd,0x42,0xca,0xa0,0x92,0xe4,0x16,0xc7,0x39,0xe8,0xa3,0xd0,0x55,0x87,0x9a,0x49,0x78,0x8f,0x9,0x18,0x18,0xc8,0x18,0x1f,0x85,0x53,0x90,0xa8,0xcf,0x19,0x3,0x9c,0xb1,0xe0,0x9f,0x53,0xdc,0xd6,0xb1,0x36,0x77,0xea,0x47,0x23,0xaf,0x5e,0x83,0xb1,0x23,0x93,0xfe,0xea,0xd5,0x49,0x19,0x9b,0x39,0xc8,0x7,0x92,0x33,0x97,0x3e,0xec,0x6a,0xc9,0x89,0xdb,0xe7,0x72,0x54,0x1f,0xe2,0x6f,0xbc,0x7f,0xdd,0x2,0x81,0xe5,0xc6,0x71,0x1c,0x44,0xb7,0xf7,0x9f,0x96,0x1e,0xf8,0xe9,0x5b,0x23,0x19,0x15,0x44,0xe,0x79,0x23,0x6a,0xf7,0x3f,0xc4,0x7d,0x94,0x52,0x33,0x2a,0xa9,0xb,0x90,0x9c,0xee,0xdb,0xd4,0xfd,0x5a,0x9f,0x31,0x91,0xb2,0x64,0xe4,0x1e,0x8b,0xbc,0x0,0x7d,0xd9,0xba,0xfe,0x55,0x5c,0x82,0xd8,0xdc,0x77,0x7a,0x22,0x8d,0xa8,0xa3,0xe9,0x5a,0x23,0x36,0x44,0x59,0xe5,0x5c,0x28,0x22,0x2c,0xf4,0x5e,0x1,0x3f,0x53,0xd4,0xd3,0x7c,0xad,0xaa,0x77,0xb0,0x44,0xcf,0x41,0xc9,0x26,0xac,0x6c,0x24,0xc,0x95,0x3,0xa6,0x58,0x9d,0xab,0xf4,0x3,0xad,0x30,0xcb,0x6f,0xf,0x41,0xe6,0x4b,0xd3,0x2e,0x32,0x3f,0xe0,0x29,0xd2,0xb4,0x46,0x2c,0x58,0xa0,0x91,0x86,0x6,0x60,0x84,0xfd,0xe7,0x3f,0xeb,0x24,0x1f,0xef,0x75,0xa9,0x92,0x48,0x21,0xc4,0x56,0xd1,0xe4,0xf4,0xc8,0xea,0xc7,0xdc,0xf5,0xaa,0x9b,0xee,0x2e,0x1b,0xc,0x58,0xe7,0x80,0xa0,0x9c,0x1f,0x6c,0xfa,0x55,0xf8,0x22,0x48,0x14,0x6d,0xc3,0x4b,0x8f,0x99,0x8f,0x45,0xf6,0x15,0x46,0x64,0xa4,0xc8,0xa3,0x74,0xce,0xc,0xb8,0xc8,0x51,0xc4,0x71,0xf,0xa7,0x73,0x59,0x17,0xb7,0xc7,0x2d,0x1c,0x45,0xb2,0x7e,0xf3,0xe,0xbc,0xfb,0xd4,0xb7,0x97,0x27,0x5,0x54,0xe4,0x9e,0x9d,0xb3,0xee,0x7d,0xaa,0x82,0x42,0x58,0xf3,0xdf,0x9f,0x7a,0x77,0xb0,0xb7,0x2b,0x10,0xec,0x49,0x24,0x93,0xeb,0xde,0x9c,0x23,0x6f,0x53,0x5a,0x51,0x59,0x96,0x3c,0xa,0xb8,0xba,0x79,0xc7,0xdd,0xe9,0xd8,0xd2,0xe7,0x17,0xb3,0x30,0xc4,0x52,0x73,0x81,0xd6,0x9d,0x86,0xca,0x93,0xd7,0xa7,0xd4,0x7a,0x1a,0xdb,0x36,0x45,0x39,0x8,0x7f,0x3a,0xaf,0x25,0xb0,0xdc,0xdf,0x2e,0x32,0x30,0x40,0xea,0xf,0xad,0x52,0x91,0x12,0x81,0x96,0xf1,0x9d,0xb9,0xf4,0x15,0x50,0xb1,0x18,0x6,0xb6,0x4c,0x19,0x4c,0x11,0xc8,0xc8,0x3c,0x56,0x75,0xc4,0x5,0x72,0xe0,0x74,0x3d,0x31,0xc6,0x2a,0xe3,0x23,0x19,0x46,0xc4,0x96,0xf3,0x4,0xdb,0x93,0xcf,0x7,0x9e,0x7f,0xc,0x57,0x6d,0xe1,0xdd,0x45,0x4c,0x82,0x2,0x3,0x9,0x6,0x36,0x9e,0xbb,0xbb,0x1c,0x57,0x9f,0x45,0x20,0xc,0x37,0xe,0x33,0xd7,0xd2,0xba,0x4d,0x22,0x78,0xe3,0xb8,0xb7,0x95,0x1,0xdf,0x1b,0x6,0xc2,0xb7,0x2c,0x3b,0xe7,0x34,0xa5,0x1e,0xa2,0x4e,0xea,0xc7,0xb2,0xc3,0xfe,0xaa,0x2e,0x73,0xf2,0x8e,0x7d,0x6a,0x4a,0xce,0xd2,0xae,0x56,0xe2,0x3,0xb7,0x24,0x21,0x5,0x4f,0xfb,0x2d,0xce,0x2b,0x46,0xad,0x6c,0x71,0xb5,0x67,0x60,0xa2,0x8a,0x29,0x88,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x29,0xae,0xc1,0x14,0xb1,0xed,0x4e,0x35,0x42,0xe6,0x6c,0x9d,0xa3,0x9c,0x74,0x1d,0xbe,0xa6,0xb2,0xab,0x53,0x92,0x37,0x34,0xa7,0x7,0x37,0x62,0xb4,0xd2,0x60,0xb9,0xc1,0x2c,0xfc,0xf3,0xdf,0xff,0x0,0xad,0x59,0xd2,0xb4,0x71,0xee,0x92,0x76,0xc,0xdd,0x40,0xc7,0xca,0x3d,0x80,0xa5,0xba,0xbc,0x11,0x96,0xd8,0x37,0x48,0x73,0x96,0x3d,0x14,0x7b,0x66,0xb2,0xd9,0x2e,0x2e,0xce,0xf6,0x63,0xb3,0x24,0x92,0x78,0x50,0x7,0xb9,0xaf,0x12,0x75,0x6e,0xf4,0x3e,0x83,0xf,0x87,0xd2,0xf2,0xd1,0x9,0x3d,0xe6,0xf6,0x3b,0x1,0x39,0xe9,0x8e,0x17,0xf1,0xaa,0x8d,0x1e,0xec,0xbd,0xc3,0x1e,0x9c,0x28,0xf4,0xf4,0xab,0x47,0x64,0x43,0xe4,0x3,0xfd,0xf7,0xe0,0x7f,0xc0,0x47,0x5f,0xd2,0xab,0x48,0x19,0xb2,0x70,0x48,0x3d,0xdf,0xa1,0xfc,0x29,0x26,0xfa,0x9d,0xc9,0x25,0xa2,0x2b,0xc8,0xec,0xe3,0xe5,0x1,0x50,0x71,0xed,0xf9,0xf7,0xa8,0x4a,0x8c,0x8c,0x2,0xc4,0x7f,0x11,0xfe,0x82,0xac,0x1d,0xae,0x76,0x80,0x64,0x61,0xc1,0xdb,0xd0,0x7f,0x4a,0x46,0x85,0xca,0xe3,0xb7,0xf1,0x1f,0xba,0x3f,0x3a,0xda,0x26,0x72,0x2b,0x3b,0x1,0xb9,0xb7,0x74,0xce,0xe7,0x63,0x9f,0xc1,0x45,0x54,0x76,0x24,0x12,0x32,0x10,0xf4,0x2f,0xf7,0x9c,0xfb,0x28,0xab,0x92,0x8,0x23,0xc3,0x16,0x56,0x61,0xd0,0x63,0x8f,0xc2,0xa9,0x3d,0xc6,0x9,0x28,0x6,0xe3,0xdf,0xa9,0xfc,0xeb,0xa2,0x26,0x2c,0x8c,0xc6,0x7e,0xf4,0x9f,0x29,0xec,0x5b,0x97,0x3e,0xca,0x9d,0xaa,0x29,0x25,0x8d,0x38,0x3,0x1e,0xb9,0xe5,0x8f,0xf4,0xa1,0x8c,0xac,0x9,0x2d,0x81,0xeb,0xd3,0xf5,0xeb,0x51,0x14,0x41,0xcf,0x1e,0xe5,0xbf,0xa5,0x6a,0x91,0x8b,0x18,0xf2,0xca,0xe0,0x6d,0xf9,0x17,0xa6,0x4f,0x2c,0x69,0x16,0x2c,0x70,0x41,0xde,0x47,0x43,0xd7,0xea,0xdf,0x5a,0x95,0x4e,0x1,0x60,0x36,0x8e,0xf2,0x30,0xcb,0x1f,0x64,0x14,0x28,0xc8,0x2e,0x72,0xb1,0xf3,0xd4,0xe5,0xd8,0xfd,0x7d,0x6b,0x44,0xcc,0x64,0x4d,0x17,0xc9,0xf7,0x79,0x76,0x3b,0x41,0xff,0x0,0xe2,0x7d,0x85,0x3e,0x79,0x16,0x28,0x8a,0x83,0xc6,0x32,0xe7,0xb9,0x1f,0xfd,0x7a,0x23,0x1b,0x11,0x9c,0x8f,0x9d,0x97,0xa7,0x64,0x4e,0x81,0x5,0x55,0x70,0xd3,0xcc,0x13,0xb2,0x61,0x9f,0x1d,0x33,0xd0,0xa,0x6d,0xdb,0x52,0x6d,0x7d,0x8,0xe3,0x89,0xa4,0x3b,0xdb,0x39,0x3c,0xfb,0x1,0x5a,0x36,0xd6,0x99,0xc6,0x45,0x58,0xb6,0xb6,0x1c,0x7c,0xb5,0xad,0x5,0xb0,0x1c,0xd6,0x1c,0xcd,0x9a,0xb4,0x92,0x21,0xb7,0xb4,0x51,0x8f,0x94,0x7e,0x1f,0xd6,0xaf,0x8b,0x55,0xc7,0x41,0xf5,0xab,0x11,0x44,0x0,0x15,0x60,0x28,0xad,0x11,0xcf,0x26,0x66,0x49,0x68,0xa4,0x74,0x1e,0xd5,0x42,0xe2,0xcc,0x9e,0x71,0xca,0xf4,0x38,0xed,0x5d,0x9,0x40,0x6a,0x17,0x88,0x10,0x41,0xa6,0x4f,0x31,0xce,0xb,0x3c,0xa9,0xc8,0xc7,0xf3,0xe2,0xb2,0xaf,0x2d,0x8,0x4,0x63,0x1d,0x71,0xe9,0x5d,0x92,0xc0,0xbc,0xfb,0xf4,0xac,0xed,0x46,0xd0,0x14,0xc8,0x3,0x3c,0xe3,0x14,0x5c,0x34,0x7a,0x1e,0x7a,0xe8,0x12,0x42,0x1b,0x20,0x6e,0xeb,0xe9,0x5a,0xb6,0x20,0x87,0x5d,0xb8,0x3f,0xdd,0xc3,0x63,0xf2,0x35,0x57,0x51,0x88,0xab,0xb7,0xd6,0xa0,0xb6,0xb8,0x92,0x12,0xa,0xe0,0xe3,0x90,0xf,0xf2,0xae,0xa4,0xf9,0xa2,0x73,0x3f,0x76,0x47,0xaa,0x78,0x66,0xf4,0xc5,0x3a,0xc3,0x29,0x65,0x59,0x57,0x6f,0x27,0x23,0x70,0xe8,0x6b,0xb4,0x15,0xe4,0xba,0x5e,0xa9,0x10,0x68,0x89,0x52,0xac,0x30,0x55,0x83,0x1e,0xf,0xe3,0x5e,0x9b,0xa6,0xde,0x47,0x77,0x6e,0x8c,0x1b,0x2c,0xa0,0x6,0xfa,0xd6,0x71,0x76,0x76,0x66,0x75,0xa3,0xf6,0x91,0x7a,0x8a,0x28,0xad,0x4e,0x70,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x6b,0xb0,0x50,0x49,0x34,0x9b,0xb6,0xa1,0xb9,0x14,0xf2,0x6d,0x4,0xe,0xa7,0xd6,0xb1,0x6e,0x27,0x63,0xb9,0x61,0x1b,0x98,0xe7,0x2c,0x7a,0x7e,0x75,0x66,0xe2,0x76,0x91,0x8a,0xaf,0x3e,0xbf,0xe1,0x55,0xf6,0xac,0x63,0x73,0xe3,0x77,0x60,0x3a,0xf,0xa7,0xa9,0xaf,0x1e,0xbd,0x47,0x51,0xb4,0xb6,0x3d,0x6c,0x3d,0x35,0x4d,0x5e,0x45,0x11,0x6c,0x8,0x32,0x4d,0xf3,0x9e,0xb8,0x63,0x85,0xcf,0xbd,0x45,0x2b,0xb3,0x80,0x14,0x70,0x38,0xc9,0x18,0x41,0xfe,0xea,0xd5,0xb9,0x37,0x30,0xdc,0xdd,0x3f,0x85,0x7a,0xf,0xc6,0xa9,0xcd,0x71,0x14,0x63,0x18,0xe,0x47,0xbf,0xcb,0xf9,0x9a,0xe5,0xb2,0x89,0xe9,0xc2,0x52,0x93,0xee,0x57,0x68,0xd9,0x88,0xda,0xaf,0x2b,0xf,0xe2,0x3c,0x2f,0xe7,0x51,0x3a,0x46,0x99,0x37,0xd,0x1f,0x3d,0x11,0x3e,0x62,0x69,0x25,0xba,0x9e,0x5e,0x3,0x6d,0x5e,0xc2,0x31,0x8c,0xfe,0x26,0xaa,0xbe,0xe1,0xcf,0xca,0x18,0xf4,0xdc,0x72,0x7d,0xcd,0x35,0x6e,0x87,0x4f,0x23,0xea,0x3e,0x5b,0xd8,0xd4,0x79,0x76,0xf0,0xe4,0xfd,0xd2,0x55,0x7e,0x5f,0xa6,0x6a,0x94,0x92,0x5c,0x36,0x77,0x9c,0x1f,0x41,0xf3,0x63,0xeb,0x44,0x92,0x6d,0x5c,0x6f,0xe7,0xfd,0x85,0x27,0xf2,0xaa,0xae,0x78,0xcb,0x33,0x80,0x3d,0xf0,0x7f,0x1a,0xde,0x24,0xb8,0xa4,0x24,0x80,0x72,0x5d,0xc9,0x3e,0x87,0x8a,0x85,0x8a,0x2f,0x52,0xa3,0xf1,0xdc,0x4d,0xc,0x54,0x9e,0x10,0x9f,0x41,0xc9,0x3f,0x53,0x4c,0xdb,0x83,0x97,0x20,0x7b,0x1,0x93,0x5b,0xc4,0xc2,0x43,0x31,0x2c,0x87,0xe4,0x51,0x9e,0xcd,0x21,0xe8,0x3d,0x85,0x31,0x8c,0x31,0x72,0x49,0x9a,0x5e,0xfd,0x90,0x1f,0x61,0x53,0x62,0x47,0xe1,0x6,0xd0,0x78,0x3d,0xd8,0xfd,0x4d,0x34,0x8,0xa0,0x27,0x6f,0xef,0x25,0xfd,0x1,0xf5,0x3d,0xab,0x64,0x61,0x21,0x9b,0x58,0xfe,0xf2,0xe0,0xe3,0x3c,0xa4,0x63,0x8f,0xce,0x95,0x72,0xec,0xac,0x41,0x23,0xa4,0x6a,0x38,0x7,0x1e,0x95,0x19,0x63,0x23,0xe0,0x9c,0x9f,0xe3,0x6f,0xe1,0x51,0x53,0xc5,0xfc,0x52,0x11,0xc0,0xf9,0x50,0x7a,0x7b,0xa,0xd1,0x18,0x30,0x9e,0x4f,0x2c,0x6d,0x7,0x25,0x40,0x2d,0xee,0xe7,0xa0,0xa7,0xe9,0xf0,0xee,0x1b,0xcf,0x57,0x24,0xf3,0xde,0xaa,0x4b,0x99,0x65,0x58,0x97,0x92,0x5b,0x2e,0x7d,0xcd,0x6f,0xd9,0xdb,0x80,0x14,0xe,0x80,0xc,0x7b,0x56,0x73,0x96,0x96,0x2a,0xb,0xa9,0x72,0xda,0x1c,0x76,0xad,0x24,0x4c,0x1,0xc5,0x32,0x8,0xb0,0x5,0x5c,0x55,0xc5,0x4c,0x51,0x13,0x96,0xa2,0x20,0xc7,0x6a,0x93,0x18,0xa0,0xa,0x3a,0x55,0x99,0x3d,0x46,0x9a,0x6b,0x0,0x78,0xa7,0x91,0x4c,0x3c,0x73,0x4c,0x44,0x60,0x1,0x55,0xae,0x23,0xde,0x8,0xec,0x45,0x59,0x27,0xff,0x0,0xd5,0x4c,0x7e,0x84,0xfa,0x83,0x4a,0xe5,0x23,0x85,0xd6,0x60,0xc1,0x6e,0x39,0x6,0xb9,0xf5,0x18,0x3f,0x5e,0x6b,0xb4,0xd6,0xe1,0x5,0x59,0xb1,0xd7,0x35,0xc6,0xb2,0xf2,0xc3,0xb8,0xe4,0x57,0x45,0x17,0xa1,0x8d,0x78,0xeb,0x72,0xf5,0xb4,0xc6,0x36,0x52,0x79,0x5e,0x3,0x63,0xa8,0xf7,0xaf,0x41,0xf0,0xc6,0xa6,0x21,0xb8,0x8e,0x17,0x93,0x30,0xce,0xa0,0x2,0x7b,0x11,0xd2,0xbc,0xda,0xda,0x41,0x91,0x9f,0xa1,0xae,0xb6,0xcd,0x4d,0xb4,0x36,0xd7,0x31,0xba,0x90,0x48,0x60,0x84,0x72,0xb8,0xe3,0x22,0x89,0xef,0x72,0x17,0xbd,0x1b,0x1e,0xb2,0x29,0x6a,0xbd,0x94,0xa2,0x7b,0x5b,0x69,0x47,0xf1,0xc6,0xa7,0x1e,0x87,0x15,0x62,0xb4,0x4e,0xe7,0x16,0xc1,0x45,0x14,0x53,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0x35,0x42,0xee,0x53,0xf7,0x1,0xeb,0xc9,0xf6,0x5a,0xb9,0x23,0x84,0x52,0x4d,0x65,0xce,0xc3,0x25,0xdd,0xb1,0x9e,0x80,0x72,0xc4,0x7b,0x57,0x26,0x26,0x76,0x56,0x47,0x45,0x8,0xde,0x57,0x23,0x0,0xf4,0x5c,0x6e,0xee,0x4f,0x45,0x1e,0xf5,0x5a,0x59,0x61,0x87,0x76,0x4e,0xf9,0x3a,0xb3,0x13,0xd2,0xa2,0x96,0xf1,0x88,0x31,0xc4,0xa3,0x27,0xb2,0xf2,0x7,0xbb,0x1e,0xe6,0xa3,0x5b,0x49,0x5f,0xe,0xe1,0x88,0x6e,0xec,0x36,0xff,0x0,0x3a,0xf2,0x5c,0xef,0xa4,0xf,0x66,0x14,0xad,0xef,0x54,0x76,0x2a,0x4f,0x34,0xb2,0x7f,0xbb,0xdb,0x27,0x81,0xf8,0x55,0x53,0x4,0xb2,0x1c,0xb1,0xf9,0x47,0x73,0xc6,0x71,0xe9,0x5a,0xa6,0x18,0x63,0xe5,0xde,0x20,0x3f,0x8b,0x4,0x31,0xe3,0xa0,0xa8,0x1d,0xa0,0x3b,0x82,0xba,0xe0,0x72,0x72,0x4e,0xd1,0xee,0x71,0x59,0xf2,0x3b,0xde,0x47,0x7c,0x2a,0xa4,0xad,0x4,0x50,0x74,0x55,0xe9,0x90,0x6,0x37,0x60,0x65,0xbe,0x95,0x59,0xd5,0x9f,0x2c,0x22,0x23,0x3c,0x65,0xce,0x33,0xe9,0x91,0x57,0x24,0x9a,0xdc,0x64,0xee,0x6d,0xbd,0xb6,0xae,0x6,0x7d,0x72,0x4d,0x52,0x96,0xe6,0xdf,0x4,0xfc,0xe7,0xd3,0x24,0x55,0x23,0x44,0xdf,0x62,0xb3,0xc2,0xec,0x72,0xec,0xbc,0x76,0x5e,0x7f,0x41,0x51,0xb4,0x4a,0x3a,0x29,0x3d,0xc1,0x6e,0xde,0xf8,0xa5,0x92,0xef,0xb4,0x68,0x7e,0xb5,0x59,0xa6,0x73,0x82,0x79,0x63,0x9c,0x2,0x72,0x3e,0xa7,0x15,0xbc,0x48,0x92,0x63,0xcc,0x64,0xf4,0xc0,0xf5,0x24,0xe2,0xa2,0x26,0xda,0x22,0x41,0x6d,0xcc,0x3b,0x2f,0x3c,0xfb,0x9a,0x82,0x49,0x24,0x6e,0xb,0x1c,0x7e,0x43,0xf0,0x3,0x9a,0x8f,0x9c,0x71,0xc0,0xf5,0x3d,0xfe,0x82,0xba,0x23,0x73,0x9e,0x44,0x92,0x4c,0x58,0x1c,0xfe,0xed,0x3d,0x17,0xa9,0xfc,0x7a,0xd5,0x62,0x59,0xbe,0x55,0x18,0x7,0xb7,0xb7,0xab,0x53,0xc8,0x2c,0x49,0x18,0xc8,0xf5,0xec,0x3d,0x4f,0xbd,0x39,0x23,0x1d,0x39,0xc7,0x56,0x27,0xaf,0xff,0x0,0xae,0xb7,0x89,0xcd,0x26,0x30,0xc,0x0,0xab,0x93,0x9e,0x7,0xfb,0x4c,0x7b,0xff,0x0,0x85,0x4d,0x23,0x8,0x90,0x2a,0xf3,0xb7,0xe5,0xfa,0xc8,0x79,0x3f,0x95,0x34,0x64,0x65,0xd7,0x3,0x7,0x62,0x7f,0xbd,0xdc,0xfd,0x5,0x40,0xed,0xe6,0x37,0xcb,0x9d,0x91,0xfc,0x89,0xea,0x49,0xee,0x7d,0xcd,0x53,0x66,0x56,0x2c,0x58,0x46,0x1a,0x62,0xed,0xd8,0xfe,0xa6,0xba,0x7b,0x51,0x18,0xc0,0xce,0xf,0xa5,0x63,0x58,0xd9,0x38,0xa,0x49,0xc1,0x3c,0xe0,0x75,0x3f,0x8d,0x6d,0x25,0xbc,0xc8,0x3f,0x85,0x47,0x52,0x41,0xcb,0x56,0x7a,0x37,0xa8,0x49,0xb4,0xac,0x6b,0xc2,0xa8,0x47,0x4,0x54,0xe0,0xe,0xdd,0xab,0x9f,0x69,0xa5,0x88,0xf0,0x5c,0xe0,0xf7,0xcd,0x4b,0x16,0xac,0xa8,0x42,0xc8,0x48,0xf7,0xed,0x5a,0x68,0x73,0xb4,0xcd,0xcc,0xa,0x69,0xa8,0x62,0xb9,0x8e,0x55,0x5,0x58,0x11,0xea,0xe,0x6a,0x5c,0x83,0x9a,0x40,0xae,0x27,0x5a,0x6b,0x2d,0x3b,0x9a,0xd,0x3,0x2b,0x30,0xc7,0x4a,0x63,0x93,0xeb,0x53,0xb0,0xa8,0x5d,0x6a,0x59,0x69,0x98,0xba,0x9a,0x6f,0x46,0x1e,0xb5,0xc2,0x5c,0xd,0x97,0xe,0x3d,0xcd,0x7a,0x2d,0xe2,0x6e,0x18,0xc7,0x63,0x5e,0x7f,0xa9,0x2e,0xcb,0xc9,0x87,0xfb,0x5f,0xce,0xb5,0xa0,0xf5,0xb1,0x15,0xfe,0x14,0xc8,0x10,0x15,0x71,0x8e,0x41,0xf4,0xae,0xb3,0x4e,0x63,0xf6,0x1d,0xc2,0x22,0x76,0xe0,0x73,0xca,0xe4,0x1c,0xf0,0x7d,0x6b,0x93,0x8d,0xb6,0xb2,0x9e,0xb8,0x35,0xd7,0xd8,0x7e,0xe3,0x4f,0x68,0xb7,0x12,0x97,0x96,0xde,0x7a,0x86,0x1f,0x75,0xd0,0xe3,0xe5,0x35,0xac,0xce,0x68,0x9e,0x87,0xe1,0xc9,0x8c,0xba,0x74,0x59,0x4,0x15,0x27,0x0,0x9c,0xf0,0x79,0xeb,0x5b,0x42,0xb9,0x1f,0x6,0xcc,0xbe,0x4d,0xcc,0xa,0x49,0x0,0x2c,0x9c,0x9e,0x1,0x3d,0x40,0xae,0xba,0x9c,0x36,0x39,0xea,0x2b,0x49,0x85,0x14,0x51,0x56,0x40,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51,0x46,0x69,0x33,0x40,0xb,0x45,0x26,0x69,0x68,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa2,0x8a,0x28,0x0,0xa3,0x34,0x55,0x5b,0xa9,0x24,0xa,0x52,0x31,0x96,0x61,0x82,0x47,0x18,0xa8,0x9c,0x94,0x15,0xd9,0x51,0x8f,0x33,0xb1,0x5e,0xf6,0xed,0x57,0x2a,0xa4,0x61,0x4f,0xcc,0xc7,0xa0,0x3f,0xe3,0x58,0xcd,0x73,0xb8,0xb8,0x30,0xbc,0x80,0xff,0x0,0x13,0x12,0x1,0xf7,0x35,0x7a,0x48,0xa3,0x88,0xf,0x30,0xef,0x7c,0x92,0x17,0xb6,0x7e,0x9e,0x94,0x43,0x6a,0x4e,0x25,0x9b,0xa9,0xcb,0x6d,0x3,0x85,0x1e,0x95,0xe3,0x54,0x75,0x2a,0x4c,0xf5,0xe9,0x7b,0x3a,0x50,0x2b,0xa2,0xca,0x53,0x2a,0x3c,0x90,0x7a,0x0,0xa0,0x11,0xdf,0x39,0xeb,0x50,0x3e,0xe,0xe6,0xde,0xdb,0x7,0x57,0x20,0xf3,0xf4,0xc9,0xad,0x29,0x2,0x80,0x41,0xc6,0x3a,0xb7,0xbf,0xb7,0xd2,0xa8,0x4b,0x8c,0xee,0x7f,0xf5,0x6b,0x90,0xa9,0xea,0x47,0x7c,0x54,0x4a,0x3d,0xd,0xa9,0x4e,0xee,0xe5,0x19,0x2,0xed,0xe,0xca,0xd8,0x3f,0x74,0x1e,0xb,0x7b,0x9f,0x6a,0xa7,0x29,0x1c,0x46,0x32,0x7,0x56,0xc7,0x1f,0xca,0xac,0xcc,0xe6,0x49,0x39,0x1c,0xe3,0x3b,0x47,0x0,0x1,0xdc,0xff,0x0,0x4a,0xce,0xb8,0x94,0x2e,0x55,0x4e,0x59,0xb3,0xbd,0xbd,0x3d,0x96,0xb0,0x68,0xf5,0x69,0xab,0x90,0x4c,0xd1,0xc,0x82,0x37,0x1e,0x9c,0x92,0x45,0x55,0x77,0x1e,0xd9,0x3e,0x83,0x80,0x29,0xc4,0x67,0x9f,0x5f,0x4f,0xe4,0x29,0xac,0xa1,0x7e,0xf6,0x3e,0x9f,0xfd,0x6a,0xb8,0xa3,0x69,0x3b,0x10,0x31,0x5c,0x12,0x72,0x7b,0xf3,0xc6,0x7d,0xf9,0xa8,0x1d,0x98,0xf0,0xa3,0xaf,0x7f,0x5f,0x7f,0xa5,0x4e,0xd8,0xe4,0xe0,0x92,0x7a,0x67,0x8f,0xd2,0xa2,0xf9,0xb2,0x40,0x19,0x6e,0xfe,0x8a,0x3e,0xb5,0xd3,0x14,0x73,0x49,0x91,0x10,0x13,0xfd,0xa7,0x3d,0x87,0xf8,0xd3,0x70,0x46,0x4b,0x1c,0xb1,0xeb,0xec,0x3d,0x5,0x49,0xc0,0x24,0x3,0x96,0xc6,0x59,0xfb,0xf,0x61,0x4f,0x48,0xf0,0x43,0x11,0xcf,0x60,0x79,0xe7,0xd4,0x9a,0xde,0x27,0x2c,0x88,0xd5,0x1c,0xe3,0x23,0x19,0xe5,0x57,0xff,0x0,0x66,0x6a,0x73,0x8f,0xf9,0x64,0x9c,0x77,0x91,0xbf,0xba,0x3b,0x93,0x52,0xe0,0x83,0x85,0xe5,0xdb,0x92,0x4f,0x40,0x3f,0xbc,0x6a,0x6,0x6e,0x76,0x27,0x20,0x9c,0xe4,0xf5,0x76,0xfe,0xf3,0x7b,0x7a,0x56,0xb7,0xb1,0x8b,0x57,0x22,0x95,0xb2,0x56,0x34,0x18,0x0,0x6d,0x1e,0xcb,0xff,0x0,0xd7,0xef,0x53,0x5a,0x5b,0x97,0x91,0x17,0x1f,0x2c,0x7c,0xb7,0xbb,0x1e,0xd4,0x24,0x4c,0xb8,0x38,0xcb,0xb9,0xda,0x83,0xb9,0x3d,0xcd,0x5f,0x8b,0x75,0xb2,0x5,0xa,0x49,0x19,0x2d,0xc7,0x25,0x8f,0x7a,0x89,0x48,0x14,0x4d,0xbb,0x58,0x82,0xaa,0xf1,0xf4,0xab,0xc1,0x4f,0xe1,0x5c,0x84,0x9a,0x95,0xca,0x7,0x60,0x9c,0x23,0x2a,0x9c,0xb9,0x7,0x27,0xa6,0x5,0x31,0x75,0xfb,0xb8,0x9c,0x23,0x12,0x3a,0x1c,0xa9,0x2c,0x6,0x7b,0x73,0x4e,0x31,0x6c,0xc6,0x6d,0x5c,0xeb,0x9e,0x35,0x3c,0x32,0xe4,0x55,0x9,0xac,0xa3,0x24,0x95,0xe0,0x7f,0x74,0xf4,0xa8,0xad,0x35,0xaf,0x39,0x50,0xc8,0x32,0xaf,0x9d,0xa7,0x1b,0x58,0xe3,0x83,0x8e,0xd5,0x7f,0xcc,0x8e,0x4d,0xac,0x87,0x2a,0x46,0x41,0xa4,0xdb,0x42,0x4a,0xe5,0x4,0x8a,0xe2,0xda,0x4d,0xf1,0xf0,0xa7,0xef,0x1,0xd0,0xfb,0xd6,0xcc,0x13,0x79,0x8a,0xf,0x7c,0xa,0x84,0x0,0xe3,0x15,0x34,0x51,0xed,0x3c,0x7f,0xf5,0xa9,0xde,0xe4,0xc9,0x16,0x45,0x26,0x69,0x9,0xc5,0x34,0xb0,0x15,0x57,0x20,0x18,0xd4,0x6d,0x8a,0x6b,0x48,0x3b,0xfe,0x35,0x13,0x4f,0x11,0x38,0xdc,0x3d,0xf9,0x14,0x1,0xd,0xc2,0x71,0xf8,0x57,0x9e,0x6a,0xf8,0xfb,0x7d,0xc6,0x3b,0x10,0x3f,0x1c,0x57,0xa0,0xcb,0x34,0x6d,0x95,0x4,0x74,0x27,0xf0,0xaf,0x35,0xbd,0x93,0xcd,0xba,0xbb,0x7f,0x59,0x9f,0x1f,0x40,0x71,0x5a,0xd1,0x5e,0xf1,0x9d,0x69,0x7b,0x89,0x11,0x21,0xe4,0x1f,0x43,0x5d,0xf6,0x9a,0x8b,0x36,0x87,0xa7,0xca,0x6,0x4c,0x2f,0x71,0x1b,0x67,0xee,0xb0,0x6e,0xc7,0xfa,0x57,0x0,0x9d,0x47,0xd6,0xbb,0xaf,0xf,0x48,0xa7,0x46,0xb9,0x85,0xd8,0x83,0xd,0xea,0xf4,0xe9,0x89,0x0,0xfe,0x75,0xb4,0xce,0x64,0x6b,0xf8,0x42,0x4f,0x2a,0xf6,0xe6,0xc,0xfd,0xe8,0xb,0x28,0xf6,0x56,0xe4,0xa,0xef,0x41,0xce,0x3d,0xeb,0xcd,0x74,0xb3,0xf6,0x4d,0x42,0xda,0xe3,0x24,0x7f,0xa5,0x3c,0x2f,0xcf,0x1b,0x64,0xe0,0x1c,0x57,0xa2,0xc6,0xe3,0xb,0x8f,0x41,0x8a,0x98,0x3e,0x84,0xd5,0x5e,0xf5,0xc9,0xe8,0xa4,0xc8,0xa5,0xcd,0x69,0x73,0x10,0xa2,0x8c,0x8a,0x4c,0x8a,0x2e,0x2,0xd1,0x49,0xba,0x9a,0x5a,0x8b,0x80,0xfa,0x42,0x6a,0x3d,0xf4,0x9b,0xe8,0xb8,0x12,0x66,0x93,0x35,0x11,0x7a,0x4d,0xd4,0x80,0x97,0x75,0x19,0x15,0x16,0xea,0x1,0xa2,0xe0,0x4b,0x9a,0x92,0xab,0xee,0xa9,0x77,0x51,0x70,0x1f,0x45,0x14,0x55,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x14,0x0,0x51,0x45,0x31,0x9d,0x57,0xeb,0xe9,0x49,0xb4,0xb5,0x63,0xdc,0x52,0xc0,0xc,0x9a,0xa7,0x34,0xa1,0x1,0x38,0xcb,0x31,0xf9,0x47,0xa9,0xa5,0x96,0x5c,0x2,0xcd,0xf8,0x7b,0x7d,0x2a,0x8e,0xf6,0x92,0x4c,0xab,0xc,0x1,0xcb,0x63,0x8f,0xa2,0x57,0x5,0x6a,0xd7,0xd1,0x1d,0x54,0xa9,0x75,0x64,0x88,0x84,0xb1,0x77,0x20,0xc8,0x4f,0x7e,0x83,0xe9,0x52,0x48,0xfb,0x46,0x6,0x7e,0xa3,0xb5,0x34,0xb0,0x55,0x7,0xa7,0xe3,0xfc,0xea,0xac,0xb2,0x6e,0xe4,0x72,0x38,0xe3,0xa5,0x73,0xdf,0x95,0x59,0x1d,0x2a,0x2e,0x4c,0x6c,0xb2,0x1,0x8c,0xfa,0xf0,0x7,0x39,0x3e,0xa4,0xd5,0x9,0xdf,0x9c,0x9c,0xee,0x3d,0x7,0xa2,0xfa,0xd4,0xce,0x70,0x4b,0x16,0xeb,0xc9,0x3e,0x83,0xda,0xb3,0x27,0x97,0xef,0x1c,0x64,0x93,0xdf,0xae,0x3d,0x4f,0xb5,0x73,0xc9,0xf7,0x3d,0x2a,0x34,0xf5,0xd0,0x8e,0x79,0x36,0x87,0x0,0x90,0x58,0x7c,0xc7,0xdb,0xb0,0x15,0x9c,0xdf,0x33,0x10,0x7,0xe7,0xfc,0xcd,0x4a,0xee,0xce,0x5b,0xdf,0xa6,0x4f,0x2c,0x7d,0x6a,0x36,0x4,0xc,0x75,0x66,0x3f,0xe4,0x56,0x71,0x57,0x3d,0x25,0xee,0xe8,0x44,0xcc,0x13,0x38,0x3f,0x36,0x3f,0x21,0x50,0x6d,0x77,0xfb,0xa3,0xa9,0xc9,0x27,0xb0,0xf5,0xcd,0x5a,0x28,0x80,0x1e,0x37,0x7f,0x78,0x93,0xc6,0x7d,0x2a,0xbc,0x92,0x12,0x30,0xe,0x17,0x9c,0xe3,0xa9,0xf6,0xad,0xa2,0x88,0x94,0x88,0xa4,0x8,0xe,0x3a,0xb7,0xb7,0xf5,0x35,0x3,0x12,0xd9,0x44,0xe9,0xdf,0x1d,0x3f,0x1a,0x94,0x2,0xff,0x0,0xc3,0x80,0x4e,0x0,0x19,0xdc,0xde,0xc0,0x54,0xa5,0x16,0x0,0x37,0xf,0x9f,0x3c,0x22,0xf5,0xc9,0xec,0x4f,0xaf,0xa9,0xad,0xe2,0x8e,0x79,0x48,0x81,0x22,0xb,0x8d,0xdd,0x73,0x93,0xea,0x4d,0x48,0x46,0x1,0x24,0x2,0xdd,0x54,0x67,0xf5,0x27,0xd2,0xa5,0x54,0xdb,0xfb,0xc9,0x31,0xbf,0x1f,0x2a,0xff,0x0,0xa,0x2f,0xb5,0x54,0x95,0xda,0x46,0xda,0x83,0x25,0x8e,0x38,0xef,0xff,0x0,0xd6,0xad,0x36,0x39,0xde,0xa3,0x19,0x99,0x8f,0x96,0x99,0x66,0x73,0xf3,0x11,0xfc,0x47,0xfc,0x2a,0x54,0x81,0x62,0x1f,0x3f,0x2e,0xc7,0x7,0x3,0x24,0x9f,0xee,0xad,0x4f,0x4,0x2,0x33,0xb5,0x46,0xf9,0x4f,0x5c,0x74,0x1f,0x53,0xd8,0x56,0xd5,0x96,0x9c,0x14,0xf9,0xd2,0xe1,0xa5,0x3d,0x38,0xf9,0x50,0x7a,0x28,0xa2,0xf7,0x25,0xda,0x3a,0xb2,0x95,0xa5,0x83,0xaf,0xef,0xa5,0x5f,0xde,0x11,0x84,0x5e,0xd1,0xaf,0xa7,0xd7,0xd6,0xae,0xfd,0x95,0x5b,0x0,0x8a,0xd5,0x58,0x7,0x5c,0x53,0xbc,0x91,0xe9,0x4e,0xc6,0x2e,0xa1,0xcf,0x5d,0xe8,0xe9,0x71,0x19,0xb,0x90,0xc0,0x64,0x11,0xd7,0x22,0xb0,0x8e,0x97,0xa8,0x9,0xd6,0x36,0x54,0x19,0xe3,0x7b,0x10,0x13,0x1e,0xad,0x5d,0xe3,0x44,0xc3,0xa0,0xaa,0xf2,0xa0,0x61,0x87,0x45,0x3f,0x51,0x56,0xa5,0x63,0x3b,0x73,0x19,0xc6,0xc2,0xd2,0x3b,0x8,0xad,0x77,0xa3,0x18,0xd4,0xb0,0x7e,0x1,0xde,0x79,0x2c,0x8,0xa8,0x34,0xf9,0x5f,0xcb,0x70,0xdc,0xb2,0x36,0xe,0x3d,0x7a,0x67,0xf1,0xab,0x72,0x5a,0x5b,0xbf,0x6,0x3e,0x3d,0x89,0x14,0xeb,0x7b,0x8,0x60,0xf3,0x8c,0x5b,0xcb,0x4e,0x57,0x76,0xe3,0x90,0x2,0xfa,0x52,0x93,0xe6,0x34,0x82,0x50,0x56,0x65,0x9b,0x6c,0xb9,0xe9,0xde,0xb4,0x2,0x60,0xe,0x29,0xb6,0xb0,0x6d,0x3,0x8a,0xb4,0xe9,0x85,0xaa,0x51,0xd0,0xe7,0x9c,0xd3,0x7a,0x14,0x98,0xf3,0xed,0x55,0xe4,0x90,0x8c,0xfe,0x95,0x34,0xee,0x10,0x13,0x59,0xaf,0x36,0xe2,0x7d,0xbf,0x21,0xf5,0x35,0xc,0xb8,0xab,0x90,0xdc,0xac,0xd2,0x3,0x87,0xc0,0xf4,0x15,0x93,0x34,0x33,0xae,0x4e,0x64,0x3d,0xf2,0x33,0x5b,0x2,0x48,0x49,0xff,0x0,0x58,0xb9,0xfa,0xf1,0x52,0x6d,0xc8,0x4,0x60,0xe7,0xa1,0x7,0x22,0x85,0x26,0x8a,0x71,0x4c,0xe6,0xe4,0x96,0x78,0x62,0x96,0x6d,0xc4,0xed,0x52,0x46,0x73,0xd7,0x1d,0x2b,0x93,0x27,0x24,0x93,0xd4,0x92,0x4f,0xe3,0xcd,0x76,0xde,0x22,0x68,0xe1,0xb1,0xec,0x1e,0x57,0x8,0x0,0xe0,0x9e,0xe6,0xb8,0x9a,0xed,0xa3,0xaa,0xb9,0xc3,0x5b,0x47,0x61,0x57,0xb5,0x75,0x5a,0x14,0xeb,0x1a,0x5f,0x45,0x92,0x45,0xc5,0xbc,0x6f,0xb7,0xfe,0x9a,0x46,0xd9,0xc8,0xae,0x59,0x7b,0x57,0x4f,0xa6,0x46,0x61,0x90,0x93,0x8e,0x52,0x15,0xe9,0xd0,0xb7,0x34,0x54,0x22,0x2a,0xe6,0xac,0x98,0x12,0x8d,0xb9,0xc1,0xf2,0xe6,0x23,0xa1,0xde,0xa7,0xb5,0x7a,0x5,0x94,0x85,0xa1,0x8d,0x89,0xe4,0xa2,0x9f,0xcc,0x57,0x9,0x16,0x59,0xdb,0x81,0xc6,0xe5,0x4,0xfe,0x75,0xd8,0x59,0xc9,0xb6,0x18,0x86,0x7a,0x22,0xff,0x0,0x2a,0xca,0xf,0x50,0xaf,0xa4,0x51,0xae,0x1e,0x97,0x78,0xaa,0x42,0x5f,0x7a,0x5f,0x37,0xde,0xb5,0xb9,0xca,0x5c,0xde,0x29,0x37,0xd5,0x4f,0x36,0x8f,0x37,0xde,0x8b,0x81,0x68,0xbd,0x30,0xbd,0x57,0xf3,0x29,0xa5,0xf3,0x45,0xc6,0x4e,0x64,0xa6,0xf9,0x86,0xa0,0xdd,0x4b,0xba,0x98,0x13,0xee,0xcd,0x19,0xa8,0x83,0x53,0xc5,0x3,0x1f,0x9a,0x70,0x34,0xc1,0x4a,0x28,0x10,0xfc,0xd4,0xd9,0xa8,0x1,0xa9,0x73,0x40,0xee,0x4f,0x45,0x14,0x55,0x88,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x8a,0x0,0x28,0xa2,0x9a,0x59,0x47,0x53,0x8a,0x57,0xb0,0xe,0xa4,0x24,0xe,0x4d,0x44,0xd2,0x91,0xc8,0x0,0xf,0x56,0xea,0x7e,0x82,0xab,0x3c,0xbd,0x4b,0x31,0xc7,0xb9,0xe2,0xb1,0x9d,0x65,0x13,0x48,0xd3,0x72,0x2c,0xb4,0xa3,0xf8,0x7f,0x3a,0xa9,0x2d,0xc2,0x2e,0x72,0x79,0xf6,0xaa,0x37,0x57,0xe1,0x1,0xc1,0xc0,0xe8,0x7,0xf1,0x39,0xf4,0x2,0xb3,0x19,0xee,0x2e,0x98,0x2,0x18,0x46,0x48,0x24,0xf4,0x4,0x83,0xc2,0xf3,0x5e,0x75,0x5c,0x4b,0x6e,0xc8,0xf4,0xa8,0xe1,0x34,0xe6,0x96,0x88,0xbc,0x66,0x6b,0xb9,0x8,0x5c,0xec,0x5f,0xbc,0x7a,0xf,0x61,0x56,0xd0,0x2a,0x28,0x27,0xa0,0xef,0x8e,0xb5,0xc,0x31,0xa2,0xa8,0x41,0xd1,0x7a,0x91,0xc6,0x49,0xeb,0x52,0x3b,0x11,0xc6,0x71,0xc7,0x0,0x75,0xfc,0x2a,0x22,0xad,0xab,0x2e,0x76,0x7e,0xec,0x76,0x1a,0xe5,0x9b,0xd0,0x13,0xeb,0xc9,0xfa,0x91,0xfc,0xaa,0xbc,0x92,0xa8,0x5,0x73,0xdf,0x9f,0xf3,0xeb,0x44,0xb2,0x84,0x52,0x32,0x14,0x73,0x92,0x3e,0xf1,0xcf,0xd6,0xb2,0xae,0x2e,0xd6,0x3f,0xbb,0xcb,0xe3,0x8,0xf,0x44,0x7,0xb9,0xf7,0xa8,0x94,0xec,0x74,0x51,0xa2,0xe4,0xc5,0xb9,0xbb,0x23,0x72,0xf1,0xbc,0xf6,0xff,0x0,0xe2,0x8d,0x66,0x49,0x21,0xc3,0x74,0x39,0xec,0x47,0x4,0x8e,0xf4,0xaf,0xbc,0x8d,0xcd,0x96,0x66,0x39,0xe7,0xb9,0xf5,0x6f,0x6a,0x6e,0xe4,0x5e,0x49,0xde,0xc3,0x1c,0x1,0xc1,0x6f,0x4a,0xc7,0x59,0x3b,0x9e,0xb4,0x62,0xa0,0xac,0x84,0x45,0x6c,0x3b,0xb9,0xc1,0x2a,0x39,0xe9,0xb4,0x7f,0x89,0xa4,0x38,0xe4,0x8e,0x30,0x36,0x86,0xf4,0xf5,0xc5,0x35,0xdd,0x99,0x82,0x11,0xf3,0xb1,0x27,0x68,0x3f,0x2a,0x8f,0x56,0x35,0x5a,0x79,0x70,0x42,0x29,0xc9,0x27,0x1c,0x75,0x3e,0xca,0x5,0x6b,0x14,0x4b,0x16,0x59,0x0,0x53,0x93,0x84,0x1d,0x7d,0xea,0x15,0x49,0xa6,0x23,0xa,0x71,0xd4,0x2f,0x4e,0x3d,0x4f,0xb5,0x4c,0xb6,0xe4,0xed,0x92,0x61,0x8c,0x7d,0xd4,0x1c,0xe0,0xfd,0x3d,0x6a,0x57,0x21,0xff,0x0,0x76,0xbf,0x2a,0xe3,0x2c,0xab,0xf7,0x9b,0xdd,0x8f,0xa5,0x6d,0x14,0x61,0x29,0x76,0x23,0x1b,0x23,0xe2,0x3f,0x9e,0x4e,0x86,0x4f,0x5e,0xdb,0x63,0x1e,0x94,0xd2,0x16,0x1c,0xbc,0xb8,0x32,0x9f,0x53,0xc2,0x7b,0x7d,0x69,0x1e,0x64,0x84,0xb1,0x4,0x17,0x8,0x70,0x47,0x1b,0x54,0x7f,0x77,0xfc,0x6b,0x3d,0xa5,0x79,0x98,0xe3,0xa7,0xa9,0xe8,0x7,0xb5,0x6a,0x61,0xbb,0x27,0x96,0x67,0x99,0xb0,0xf,0x1d,0x4f,0xff,0x0,0x5e,0xad,0xda,0x5a,0x31,0xf9,0x9b,0xe5,0x7,0xbf,0xf1,0x63,0xd0,0x54,0x76,0xd1,0xa6,0x7,0x7e,0x79,0x27,0xb9,0xad,0x88,0x53,0xa7,0xe1,0x8a,0x96,0xc1,0xab,0x12,0xdb,0x5b,0x22,0x60,0x2a,0xe0,0x7a,0x7f,0x53,0x5a,0xf1,0x45,0xc0,0xe2,0xab,0x40,0x9c,0x8a,0xd3,0x8c,0xc,0xe,0x2b,0x48,0xa3,0x8e,0xac,0xc4,0x9,0x41,0x43,0x53,0x81,0x4b,0xb2,0xb7,0x51,0x39,0x79,0x8a,0xad,0x1e,0x6a,0x16,0x83,0x3d,0x6a,0xf9,0x5a,0x63,0x28,0xa1,0xc4,0x14,0x99,0x40,0x5b,0x20,0xea,0x33,0x52,0xa4,0x23,0xd3,0x8a,0x9f,0x67,0x35,0x2a,0x2e,0x28,0x8c,0x50,0x4a,0x6c,0x12,0x3c,0xa,0x6c,0xa3,0xa,0x6a,0x70,0xe,0x2a,0x19,0x73,0x83,0xc5,0x68,0xd6,0x86,0x49,0xea,0x61,0x5e,0x1c,0xb3,0x67,0x3b,0x51,0x4b,0x1c,0x75,0x38,0xe7,0x8a,0xe1,0x2f,0xb5,0x1b,0xbb,0xb9,0x1d,0x77,0xbc,0x31,0x29,0x21,0x61,0x1c,0x1c,0x3,0xd5,0xfd,0xeb,0xbf,0xb9,0x43,0x99,0x8,0xac,0x1b,0x9d,0x3e,0xd6,0xe1,0xc3,0x49,0x18,0xf3,0x1,0x5,0x58,0x71,0xb8,0x7a,0x3e,0x2b,0x15,0x25,0x17,0xa9,0xd9,0xca,0xe5,0x1d,0xa,0x9a,0x56,0x9e,0xf3,0x58,0xc9,0x31,0x96,0x44,0x97,0x7b,0x79,0x4d,0x93,0xca,0x81,0xdf,0x34,0xeb,0xb,0xe9,0x4,0xad,0x1c,0x8c,0x31,0x19,0x61,0x23,0x7f,0x1,0x3,0xf8,0xbd,0xab,0x42,0x59,0xee,0xe2,0xb7,0x30,0xa5,0xb0,0x4c,0x21,0x44,0x68,0xc6,0x55,0x47,0xb0,0xae,0x57,0x53,0x61,0x6b,0x1a,0x46,0x99,0x57,0xb8,0x52,0xd2,0x80,0x7f,0x84,0x7f,0x8d,0x55,0x94,0xf4,0x26,0xee,0xa,0xec,0x83,0x5c,0xd4,0xff,0x0,0xb4,0x6e,0xce,0xc3,0xfe,0x8f,0x6,0x52,0x11,0xfd,0xe3,0xdd,0xeb,0x2c,0x52,0x7e,0x14,0xe1,0x5d,0x71,0x4a,0x2a,0xc8,0xe1,0x6f,0x99,0xdd,0x8f,0x41,0xc8,0xae,0xc2,0x8,0x19,0x6d,0xf7,0x1e,0x48,0x16,0xef,0x9e,0xfc,0xe,0x6b,0x93,0xb7,0x4d,0xf3,0xc0,0x83,0xf8,0xa4,0x41,0xfa,0xd7,0x7f,0x6c,0xa7,0xcb,0x9d,0x4a,0x82,0x3,0x5,0xe7,0xfb,0xbb,0x71,0x58,0x54,0x66,0x90,0x1f,0x61,0x1,0x94,0x3f,0x71,0xb8,0x30,0x3d,0xfa,0xd7,0x44,0x99,0x45,0x3,0xd0,0x1,0x59,0x7a,0x5a,0xb2,0xc4,0x4f,0x0,0xe7,0x3,0xf0,0xad,0x22,0x4f,0x5c,0xf3,0x59,0xc7,0xb9,0x15,0xe5,0x77,0x62,0x50,0xe6,0x97,0x79,0xa8,0x73,0x46,0xea,0xd0,0xe3,0x26,0xde,0x69,0x43,0x9f,0x5a,0x87,0x34,0xa0,0xd0,0x32,0x6d,0xe7,0xd6,0x9d,0xba,0xa1,0xdd,0x4e,0x6,0x99,0x44,0xbb,0xa9,0xcb,0xcd,0x46,0x33,0x53,0xa0,0xaa,0x1,0xc0,0x53,0xc5,0x1,0x69,0xd8,0xe2,0x98,0xc2,0x97,0xd6,0x92,0x8c,0xd3,0x10,0xb9,0xa9,0x2a,0x2c,0xd4,0x99,0xa4,0x5,0xba,0x28,0xa2,0xac,0x2,0x8a,0x29,0x33,0x40,0xb,0x9a,0x69,0x75,0xe9,0xd4,0xfa,0xe,0x6a,0x19,0x27,0x88,0x64,0x6e,0xdc,0x7b,0xaa,0x1c,0x9f,0xc4,0xd5,0x66,0xba,0xa,0x8,0x5,0x51,0x7d,0x13,0xe6,0x3f,0x89,0xac,0x25,0x59,0x44,0xd2,0x34,0xdc,0xb6,0x2e,0x33,0xe0,0x65,0x88,0x51,0xf9,0x9a,0xac,0xd3,0x80,0x48,0x45,0xc1,0xfe,0xfb,0xf2,0x7f,0x1,0x54,0x64,0xba,0x19,0xc8,0x59,0x18,0x76,0x3d,0x3f,0x2c,0xd4,0x32,0x5f,0x80,0x3f,0xd4,0x4a,0x71,0xe9,0x8c,0xfd,0x2b,0x96,0x78,0x8b,0x9d,0x90,0xc2,0xb2,0xeb,0xc8,0xc4,0xf2,0x77,0xbf,0xa1,0x38,0x23,0xeb,0x54,0xa7,0x97,0x21,0xb0,0xe4,0x93,0xc1,0xc0,0xc8,0x5f,0x5c,0x62,0xa0,0x6b,0xdd,0xc0,0x8f,0x29,0xc6,0x4f,0x42,0x47,0xe5,0xd7,0x34,0xcf,0xb4,0x40,0xad,0x85,0x8c,0xe4,0x8c,0xb7,0xdd,0x3,0xeb,0x5c,0x72,0xa9,0x73,0xb2,0x14,0x24,0xba,0x0,0x89,0x6,0x64,0xdc,0x72,0x4f,0xde,0xda,0x37,0x60,0xf0,0x76,0x96,0xab,0x16,0xd1,0xa0,0x66,0x60,0xac,0xfc,0xfc,0x85,0xb2,0x40,0xf7,0x4,0xd5,0x46,0xbb,0x8f,0x39,0x1,0x77,0x3,0x80,0x5c,0x86,0x15,0x1b,0xea,0x4c,0xa0,0xd,0xc0,0x8e,0x9c,0x70,0x3f,0x4a,0xcd,0x4e,0x28,0xe8,0xf6,0x35,0x26,0xac,0x6b,0xbb,0x91,0xc1,0x65,0x50,0x3b,0x8e,0x48,0x3e,0xd5,0x4a,0x5b,0x80,0x33,0xe5,0x9c,0x1f,0xe2,0x76,0x19,0x63,0x8e,0xcb,0x9e,0x2b,0x25,0xf5,0x6,0x3b,0x98,0x83,0xc1,0xc6,0x1,0xe0,0xfd,0x49,0xaa,0xc6,0xe2,0xe2,0x73,0x90,0xdf,0x20,0xee,0x38,0x3,0xd9,0x46,0x69,0x3a,0xb7,0xd8,0xda,0x9e,0x12,0xda,0xc8,0xbd,0x34,0xc3,0x97,0x66,0x1,0x41,0xe4,0xb7,0x24,0x9f,0x41,0x54,0x1a,0x44,0x62,0x59,0x41,0x76,0x24,0x9d,0xcf,0xd0,0x7e,0x15,0x1c,0x87,0x71,0x3,0xa2,0x2e,0x7a,0x9c,0xe7,0xd6,0xa3,0x69,0x0,0x7,0x69,0x5e,0x38,0x18,0xe3,0xf2,0xa8,0xdc,0xec,0x8c,0x54,0x50,0xe2,0x1c,0xe5,0x9c,0xf2,0x7b,0x67,0xa0,0xa6,0x3c,0x8a,0xbc,0x2,0x6,0x33,0x80,0x6,0x70,0x4f,0xf5,0x34,0x4,0x93,0x96,0x38,0x7,0xf8,0x99,0x8e,0x0,0xf6,0xe6,0x95,0x5a,0x18,0xf9,0x19,0x91,0xcf,0x57,0xb,0x85,0x1e,0xcb,0x9a,0xd2,0x28,0x4e,0x44,0x65,0x5f,0x69,0x54,0x1f,0x33,0x7f,0xac,0x76,0xe8,0x3d,0x85,0x39,0x52,0xb,0x7c,0x9c,0x97,0x97,0x1f,0x36,0xd1,0x96,0x7,0xd3,0x34,0xd6,0x98,0xc,0xb4,0x8f,0xb4,0xc,0xe1,0x57,0x19,0x3,0xd4,0x9e,0x95,0x9e,0xf7,0xad,0x23,0x8,0xad,0x97,0x19,0x24,0x6,0x3d,0x7d,0xd9,0x89,0xad,0x91,0x93,0x77,0x2f,0x48,0xec,0x48,0xde,0xc1,0x33,0xc0,0x55,0xe5,0x87,0xd0,0x7f,0x33,0x54,0xa6,0xbc,0x54,0xdc,0x91,0x10,0xa3,0xa1,0x23,0x92,0xc7,0xd4,0x9a,0x8a,0x79,0x96,0x18,0xb1,0x1b,0x96,0x92,0x5c,0x87,0x90,0xf5,0x65,0x1d,0x76,0xe7,0xb5,0x67,0xee,0xc9,0xef,0x5a,0xa4,0x64,0xd9,0x67,0xce,0xe7,0x3d,0x4b,0x64,0x65,0xbd,0x3d,0xaa,0x24,0x91,0xb7,0x2,0x49,0x3e,0xb8,0xe8,0x29,0xbb,0xb9,0x42,0x7,0xb7,0xe3,0x41,0xcf,0xe7,0xd7,0x1e,0xb5,0x69,0x19,0x36,0x6e,0x59,0x9d,0xc0,0x1e,0xbc,0xe3,0x8a,0xdb,0xb7,0xe7,0x1f,0x4f,0xce,0xb9,0x7d,0x3e,0x62,0xac,0x14,0x9f,0xff,0x0,0x57,0xa8,0xae,0x9e,0xd5,0x81,0xa,0x47,0x7e,0x45,0x45,0xac,0xc5,0x27,0x74,0x6a,0x42,0x31,0x8a,0xbf,0x1f,0x6a,0xa1,0x17,0x6a,0xba,0xa7,0x0,0x56,0xd1,0x38,0x6a,0x16,0x6,0x29,0x73,0x51,0x87,0x14,0xd2,0xe2,0xb4,0xe6,0x31,0xe5,0x24,0x2c,0x3d,0x6a,0x26,0x70,0x3a,0xd4,0x6d,0x20,0xa8,0x5c,0x3b,0xab,0x10,0x48,0xe0,0xe2,0xa5,0xca,0xe5,0xa8,0x5b,0x72,0xc4,0x72,0x6e,0x27,0x1c,0xe3,0xa9,0xab,0x68,0x38,0xaa,0x96,0x51,0x81,0x10,0x39,0xc9,0x6e,0x49,0x35,0x77,0x85,0xc0,0xad,0xa1,0xb6,0xa6,0x35,0x37,0xb2,0x17,0x1f,0x95,0x41,0x36,0x30,0x7f,0xce,0x6a,0x66,0x6e,0x2a,0xbc,0x8c,0x3a,0x1a,0xa9,0x32,0x23,0x13,0x3a,0x55,0xce,0xef,0x7a,0xa4,0xd0,0xe4,0x91,0x8a,0xd2,0x61,0x92,0xc3,0xdc,0xd4,0x26,0x3e,0xf5,0xcd,0x25,0x73,0xb2,0x12,0xb2,0x29,0xf9,0x6c,0x14,0x8e,0xa0,0x8c,0x57,0x9d,0x6b,0xb2,0xf9,0x9a,0x95,0xc8,0x7,0x88,0x88,0x88,0x7e,0x1d,0x6b,0xd3,0xa5,0xc4,0x71,0xc8,0xe7,0xf8,0x51,0x98,0xfe,0x3,0x35,0xe4,0x77,0x12,0x99,0xae,0x2e,0x65,0x27,0x3b,0xe5,0x91,0xc7,0xe2,0x6b,0x5a,0xb,0x53,0x2a,0xd2,0xba,0x22,0xef,0x4f,0x1d,0x7f,0xa,0x67,0x71,0x4f,0x5e,0xe4,0xd7,0x53,0x39,0xac,0x5f,0xd2,0x90,0x3d,0xfd,0xa0,0x3d,0x4,0x80,0x9f,0xc2,0xbd,0xa,0xde,0x12,0x55,0x80,0xfe,0x26,0x26,0xb8,0x8f,0xf,0x43,0xe6,0xdf,0x3,0xff,0x0,0x3c,0xd7,0x76,0x3d,0x6b,0xd1,0x2d,0x80,0x8,0xf8,0xe7,0x24,0xe0,0xfa,0x62,0xb9,0xa7,0xab,0xb1,0xaa,0xd1,0x5c,0x2d,0x53,0xcb,0x42,0xa3,0xd6,0xa7,0xcd,0x35,0x46,0x3f,0x1a,0x53,0x4e,0x3b,0x1c,0x95,0x9f,0xbc,0xd8,0x6e,0xa3,0x34,0x98,0xa4,0xad,0x2c,0x60,0x3f,0x75,0x2e,0x6a,0x22,0x69,0xc1,0xa9,0x1,0x26,0x6a,0x74,0x19,0x2,0xa1,0x4e,0x48,0xab,0x51,0x8e,0x94,0xd2,0x29,0x12,0x22,0x74,0xab,0xa,0x94,0xd4,0x1d,0x2a,0x75,0x14,0xca,0x10,0xa,0x5c,0x53,0xb1,0x46,0x28,0x2,0x32,0x29,0xa4,0x54,0xa4,0x53,0x8,0xa6,0x32,0x3e,0x6a,0x4e,0x3d,0x69,0x84,0x53,0xe8,0x2,0xed,0x14,0x8c,0xc1,0x41,0x24,0xe0,0xa,0xcc,0xba,0xd4,0x76,0x7c,0x90,0xab,0xc8,0xc4,0xe1,0x44,0x63,0x39,0x3e,0xe7,0xa5,0x4c,0xea,0x28,0x2b,0xb2,0xe1,0x4e,0x53,0x76,0x45,0xd9,0xae,0x23,0x8b,0x0,0xe4,0xb1,0xe8,0x5,0x66,0xcd,0x73,0x3b,0xe7,0x6b,0xe7,0x91,0xf2,0x83,0x88,0xd3,0xfd,0xe3,0xde,0xa2,0x66,0xc0,0xdf,0x3c,0xbb,0x4f,0xf1,0x63,0x3d,0xff,0x0,0x85,0x49,0xaa,0x17,0x7a,0x88,0x8d,0x58,0x2b,0x2d,0xbc,0x79,0xe1,0x98,0x3,0x2b,0xfb,0xa2,0x57,0x9f,0x56,0xb3,0x96,0xe7,0x7d,0x1c,0x35,0xf4,0x4a,0xe5,0xe6,0x61,0x1a,0xe6,0x57,0x8e,0x35,0xc9,0xc1,0x6c,0xc,0xfb,0x85,0x15,0x9b,0x3e,0xa9,0xa6,0xc1,0xbb,0x62,0x19,0x48,0xef,0xc8,0x5c,0xd6,0x2d,0xcd,0xe1,0x97,0x76,0x11,0x97,0x77,0x26,0x5b,0x86,0x2c,0xc4,0x7f,0xbb,0x54,0x95,0x4c,0xa7,0x8d,0xd2,0x31,0xc7,0xcc,0xc0,0x85,0xfc,0x33,0x5c,0x6e,0x6d,0xec,0x7b,0x14,0xb0,0x91,0x4a,0xf3,0x66,0xd3,0x6b,0xae,0xe0,0x82,0x11,0x33,0xc2,0x88,0x97,0x25,0x47,0xaf,0x35,0x1,0xd4,0xa7,0x97,0xfd,0x5c,0x8e,0xaa,0x32,0xb,0x6c,0xc6,0x7e,0x98,0xaa,0xd1,0xda,0xc3,0x18,0xfd,0xf4,0x91,0xa9,0x3c,0x94,0x52,0x7,0x1e,0x84,0xf2,0x7f,0x4a,0x91,0xe7,0xb4,0x8f,0xe4,0x4,0x6d,0x5e,0x0,0x55,0x3f,0xce,0xa1,0xdd,0xee,0xce,0x88,0xc2,0x9a,0x7e,0xea,0x1c,0xd7,0xb3,0x8c,0x3,0x74,0xc5,0xba,0x84,0xdb,0xc9,0xf6,0x66,0xa8,0xa6,0xbc,0xba,0xc6,0x1,0x24,0xe,0x30,0x83,0x92,0x7f,0xda,0x3e,0x94,0xef,0xb4,0x5a,0xf2,0xca,0x33,0xb7,0x19,0x38,0xc7,0xf4,0xaa,0xcd,0x77,0x0,0x63,0x84,0x73,0xd7,0x1f,0x3b,0x29,0xfa,0xf4,0xa8,0x6b,0xcc,0xd6,0x36,0xec,0x44,0xd7,0x17,0x25,0xbe,0x64,0x73,0xed,0xce,0x3f,0xa,0x42,0xf7,0x4,0xfd,0xc7,0x1d,0x3a,0x8e,0x94,0xff,0x0,0xb6,0xda,0x7f,0x12,0xce,0xa7,0x1c,0x90,0xe0,0xf3,0xf9,0x51,0xf6,0xbb,0x6f,0xe0,0x90,0x64,0xf6,0x71,0x8c,0x7e,0x34,0xb9,0x4d,0x79,0x9f,0x61,0xf1,0xc5,0x33,0x90,0xd2,0x9d,0xb1,0x8e,0x2,0x96,0x4,0xb0,0xfa,0x55,0xb0,0xf1,0xe0,0x6,0x58,0x95,0x0,0xe1,0x50,0xf3,0xf9,0xd5,0x7,0xb8,0xc8,0x38,0x2a,0xc3,0x8c,0x90,0x47,0x27,0xd0,0x54,0xd,0x2b,0x9f,0xe1,0x61,0x91,0x9e,0x7,0x19,0xf6,0xcd,0x5a,0x46,0x6f,0xde,0xdc,0xd1,0x79,0xa2,0xc6,0x32,0xa1,0x40,0xc6,0x14,0xc,0xf,0x6c,0x9a,0x80,0xdd,0x46,0xb9,0x23,0x9c,0x74,0xec,0x33,0x59,0xe6,0x59,0x88,0x3b,0x57,0x3,0xfd,0xac,0x66,0xa2,0x2a,0xfb,0x41,0x73,0x92,0x58,0xf4,0xe7,0x8a,0xb5,0x16,0xc8,0x76,0x45,0xd7,0xbd,0x2c,0x78,0xe7,0x1d,0x7b,0xff,0x0,0x3a,0xaf,0x25,0xd9,0xc3,0x63,0x4,0xf4,0x19,0x39,0xc7,0xd2,0xab,0xb8,0x24,0x60,0x74,0xc7,0xa1,0xfe,0x75,0x19,0x8d,0x8e,0x6,0x9,0xf4,0xc7,0x4a,0xd9,0x40,0xcd,0xc9,0x3,0xbc,0x8e,0xa3,0x20,0xb3,0xbb,0x70,0x3a,0x9c,0x74,0x3,0xf1,0xa7,0x39,0x48,0x97,0xc9,0x18,0xf3,0xe,0xd,0xc3,0xe,0xdd,0xfc,0xb5,0x3f,0xce,0x9e,0xa0,0x44,0xcb,0x9f,0xbd,0x8e,0x4f,0x5c,0x60,0x67,0x3,0x15,0x3,0x63,0x9c,0xf5,0x63,0x93,0xf8,0xd6,0xca,0x16,0x30,0x73,0xb8,0xc9,0xb7,0x30,0x8d,0xbd,0x9b,0x3e,0xdc,0xd4,0x4b,0x9e,0xf5,0x39,0x5c,0x8e,0xbf,0x8d,0x42,0xca,0x7b,0x67,0x2b,0xfc,0xbd,0x6a,0xac,0x67,0x71,0xf8,0x18,0x38,0xfa,0xe6,0x9c,0x17,0x20,0x7b,0x8c,0x7e,0x34,0x47,0xd8,0x37,0xf9,0x6,0x9e,0xa0,0xe4,0xae,0x79,0xce,0x45,0x69,0x14,0x65,0x26,0x36,0x22,0xca,0xca,0xc3,0x82,0xad,0x82,0x2b,0xa6,0xd3,0xe6,0x4,0x2f,0x3d,0xfb,0x57,0x38,0x46,0x19,0x5b,0xb1,0xc0,0x3f,0x5a,0xd1,0xb0,0x90,0xc6,0xc0,0x13,0xc1,0x66,0x23,0xe8,0x29,0x4e,0x3a,0x5c,0x4a,0x5d,0xe,0xc2,0x7,0x7,0x15,0x74,0x1c,0x8a,0xc4,0xb5,0x9b,0x38,0xe6,0xb5,0x63,0x60,0x71,0xcf,0x6a,0x88,0xb3,0x1a,0x91,0xb1,0x3d,0x31,0x9b,0x19,0xa1,0xdc,0x28,0xac,0xf9,0xef,0x22,0x46,0x11,0x97,0x5d,0xed,0xd8,0x91,0x9c,0x53,0x6c,0x88,0xc5,0xb2,0xf2,0xe1,0x8f,0xad,0x4c,0xb8,0x15,0x15,0xb8,0x52,0xa0,0xf7,0x22,0xac,0x6c,0x24,0x56,0x91,0x5a,0x19,0x4e,0x5a,0xd8,0x84,0x99,0x10,0x32,0xa3,0x6d,0xce,0x70,0x7f,0xba,0x6b,0x2e,0xd5,0xbc,0x41,0x6b,0x71,0x23,0xdc,0xdd,0xb,0xab,0x32,0xe7,0x2a,0x40,0xf3,0x11,0x4f,0x46,0x52,0x3d,0x2b,0x51,0xd5,0xc7,0x6a,0xa6,0xd3,0x1d,0xdf,0x29,0xc1,0x53,0xd3,0xfc,0x69,0x37,0x63,0x48,0x6a,0xac,0x69,0x99,0xc1,0x50,0x41,0xc8,0x3c,0x8a,0x81,0xa5,0x56,0x70,0x33,0xf4,0xaa,0x8d,0x33,0x39,0xed,0xf4,0x1d,0xa9,0x0,0xda,0xc1,0xb2,0x73,0xdb,0xf1,0xa1,0xce,0xe3,0x50,0x56,0x2c,0x6,0xc9,0x6f,0x73,0x4e,0x3,0x8a,0x8d,0x6a,0x4c,0x80,0x5,0x25,0x22,0x5a,0x30,0xbc,0x4d,0x7a,0x2c,0xf4,0xcb,0x8c,0x10,0x24,0x9c,0x79,0x11,0xfa,0xe5,0xba,0x9a,0xf3,0x1,0xe9,0x5d,0x1f,0x8b,0x75,0x21,0x79,0x7f,0xf6,0x78,0xdb,0x30,0xda,0x65,0x78,0x39,0x6,0x53,0xd4,0xfe,0x15,0xcd,0xe6,0xba,0xa9,0xab,0x23,0x9e,0xa3,0xbb,0xb0,0xe1,0xc6,0x6a,0x41,0xc2,0x9a,0x8c,0x74,0xa7,0x13,0xf2,0xfe,0x22,0xad,0x90,0x91,0xd0,0x78,0x6f,0x8b,0x89,0xd8,0x1e,0x44,0x63,0x18,0xf7,0xaf,0x42,0x81,0x7c,0xb8,0x23,0x1d,0xc2,0x82,0x7e,0xa7,0x9a,0xf3,0xcf,0xe,0xc,0xdc,0x4a,0x33,0x8f,0x90,0x71,0xeb,0xcd,0x7a,0x2a,0x81,0xb1,0x46,0x7b,0xa,0xc7,0x79,0x36,0x15,0x1d,0xa2,0x90,0xfc,0x70,0x39,0xe9,0x9a,0x8c,0x93,0x52,0x38,0xda,0x8b,0xea,0x45,0x43,0x9a,0xb8,0xa3,0x96,0xab,0xd4,0x75,0x21,0x34,0x99,0xa4,0x26,0xac,0xc4,0x33,0x4e,0x5e,0xb5,0x1e,0x69,0xe9,0x40,0x16,0x63,0xea,0x2a,0xec,0x62,0xa9,0xc5,0xd4,0x55,0xd8,0xe8,0x34,0x45,0x85,0x1d,0x2a,0x55,0xc5,0x44,0xbd,0xaa,0x40,0x69,0x8c,0x92,0x8a,0x40,0x69,0xc2,0x80,0x1a,0x45,0x34,0x8a,0x92,0x98,0x68,0x2,0x22,0x3a,0xd3,0xb1,0x43,0x52,0xd0,0x32,0x9c,0x92,0xc9,0x76,0x4e,0x9,0xf2,0xc1,0x3,0xe5,0xca,0xa9,0xf5,0xc9,0x3c,0xd4,0x13,0x49,0x1c,0x7,0x6a,0x5,0x69,0x42,0xf4,0xe8,0xaa,0x3d,0x5a,0xa5,0xba,0x91,0x21,0x42,0x4b,0x64,0x9e,0x17,0x1d,0x7,0xa9,0xae,0x72,0xea,0xe4,0xb7,0x98,0xec,0xc5,0x23,0x1c,0x85,0xcf,0xcc,0xd8,0xe8,0xce,0x47,0xe8,0x2b,0xcc,0xa9,0x27,0x1f,0x53,0xd7,0xc3,0xd2,0xe7,0xf4,0x1d,0x77,0xa8,0xe,0x42,0xbe,0xf7,0xce,0x1a,0x57,0x1f,0x2a,0x9e,0x9b,0x51,0x45,0x50,0x8e,0xb,0x9b,0x96,0x2e,0xaa,0x59,0x83,0x73,0x2c,0xdc,0x5,0xef,0xf4,0x14,0x41,0x16,0xf0,0xd7,0x37,0xc,0x22,0x81,0x7,0xde,0x27,0xe7,0x39,0xec,0x83,0xb6,0x69,0x6e,0x2f,0x37,0x88,0x60,0x8,0x62,0xb3,0x88,0x65,0x21,0x1c,0x4b,0x21,0x6f,0xe3,0x7c,0x7a,0xd6,0x16,0xea,0xcf,0x4e,0x3e,0xef,0xbb,0x2,0xbc,0x90,0x44,0x58,0xa2,0x31,0x9e,0x40,0x49,0x92,0x56,0xca,0xc2,0x84,0x9f,0xe1,0xf5,0xa7,0x79,0x70,0xc6,0xa0,0x3b,0xb1,0x0,0x73,0xc8,0x45,0x27,0xd3,0xd6,0x98,0xf2,0xc8,0xc5,0x55,0x14,0x8f,0xee,0x81,0xc9,0xfc,0xaa,0x35,0xb5,0x67,0x63,0xe6,0x87,0x66,0x3c,0xf1,0xf3,0xf,0xc5,0xbf,0xfa,0xd5,0x16,0x35,0x4f,0xbb,0x15,0xa7,0xb6,0x8f,0x70,0x48,0xd7,0xaf,0x25,0x54,0xb9,0xfc,0xcd,0x40,0xd7,0x3b,0xba,0xc4,0xc7,0xf0,0xb,0x56,0x8c,0x9,0x18,0x19,0xc2,0x9e,0xa4,0x67,0x38,0xaa,0x77,0x13,0x5b,0xa8,0xf9,0x9f,0xf0,0x3,0x93,0xf9,0x54,0xd8,0xd2,0x2c,0x67,0x9f,0x10,0x1c,0xc4,0xe3,0x3d,0x49,0x7c,0x7e,0x38,0xa8,0x9e,0xe6,0x1,0xfc,0x1b,0xb3,0xdb,0x26,0xaa,0x4b,0x70,0x18,0xe1,0x10,0x9f,0xaf,0x5a,0x84,0x89,0xf,0x2d,0x85,0xfa,0x9e,0x68,0xe5,0x2f,0x98,0xb4,0xd7,0x71,0x60,0xe2,0x25,0xe7,0xea,0x4d,0x44,0x6e,0x6,0x38,0x40,0x33,0xd4,0xe3,0xa5,0x57,0x38,0xec,0x79,0xa4,0xc7,0x3c,0xf4,0xfa,0xd5,0x28,0x7,0x39,0x37,0x9b,0x9e,0x80,0x0,0x3b,0x9e,0x9f,0x80,0xa5,0x67,0x95,0xdc,0x10,0xc7,0xa2,0xe3,0x35,0x8,0x65,0xe4,0x60,0xe3,0xdb,0xb7,0xbd,0x4e,0x1,0xd8,0x58,0x75,0x2a,0xbf,0x5c,0xe,0xf5,0xa2,0x81,0x9c,0xaa,0xa,0xcd,0xb4,0xed,0xc,0x49,0xea,0xcd,0xea,0x7d,0xa9,0xc,0xbf,0x28,0x1c,0x9c,0x1c,0xe,0x69,0x9b,0x19,0x89,0x3,0xbf,0x7c,0x75,0xa7,0x8,0x80,0x1c,0xba,0x8f,0xa7,0x26,0xb5,0x50,0x31,0x73,0x13,0xce,0x73,0x81,0xb9,0xbe,0x99,0xa3,0xce,0x93,0xa6,0x58,0x51,0xb1,0x7,0x40,0x5b,0x1e,0xa4,0xa,0x76,0x48,0xe8,0xab,0xf8,0xf2,0x6a,0xd4,0x4c,0xdc,0x85,0x59,0xa4,0x27,0xa9,0xe0,0x60,0x71,0xda,0x95,0xa4,0x25,0x8e,0xe5,0xdc,0x3a,0x74,0xe6,0x9a,0x3a,0x82,0x7a,0xe3,0xd2,0x83,0x9e,0x3a,0xff,0x0,0x8d,0x68,0xa0,0x64,0xe6,0x2b,0x85,0x38,0x65,0xe0,0x11,0x91,0xcf,0xa7,0x62,0x2a,0x21,0x92,0xdc,0x76,0xe6,0xa7,0x8d,0x4f,0xcd,0xb8,0x65,0x4f,0xde,0xcf,0xf3,0x14,0x3a,0x2a,0x2b,0x10,0x73,0x9e,0x7,0xb0,0xf7,0xab,0xe4,0x66,0x7c,0xe4,0x44,0x15,0xd8,0x7b,0x30,0xcf,0x3f,0x5a,0x7b,0x70,0x11,0xc7,0xd0,0xfd,0x6a,0x52,0x80,0xa2,0x7b,0x36,0xdf,0xcc,0x53,0x31,0xf2,0x15,0xf4,0x23,0x8a,0x6a,0x24,0xb9,0x5c,0x50,0x1,0x21,0x73,0xc3,0x8d,0xc3,0xd8,0xf5,0x18,0xa9,0x1,0x28,0x22,0x6e,0x84,0x16,0x7,0xf3,0xa8,0xb9,0x55,0x53,0xcf,0xca,0xc0,0x7f,0x5a,0x91,0xc8,0xc,0x57,0x3c,0x1c,0x10,0x7e,0xa3,0x35,0x76,0xd2,0xc6,0x77,0x36,0xad,0x27,0xe9,0xcd,0x6d,0xc1,0x2e,0x40,0xe7,0xb5,0x72,0x36,0x73,0x6d,0x6f,0x2c,0x9e,0x41,0xfd,0xf,0x7a,0xe8,0xad,0x64,0xe8,0x2b,0x8a,0x49,0xc5,0x9d,0xe,0xd2,0x57,0x34,0xa4,0x2c,0xc3,0x8a,0xc6,0xbf,0xd2,0xa5,0x9c,0xf9,0xf1,0xb3,0x9,0x57,0x4,0x91,0xdc,0xe,0x71,0x5b,0x51,0x60,0xf5,0xab,0x2a,0xa3,0xa6,0x3a,0xd5,0x45,0x5d,0xdc,0xc1,0xcf,0x97,0x43,0x2,0xde,0x6b,0x90,0x61,0x8b,0xcc,0x92,0x29,0x3a,0x1f,0x33,0x98,0xf8,0xf7,0xab,0xcd,0x36,0xa7,0x13,0x6c,0x60,0x64,0xf9,0x77,0x66,0x2e,0x78,0xab,0x33,0xdb,0x44,0x72,0x4a,0x2,0xa7,0xa8,0xc5,0x53,0x66,0x9a,0xdb,0x2d,0xb,0x6e,0x53,0xff,0x0,0x2c,0xdc,0x9c,0x8f,0xf7,0x4d,0x68,0xd5,0x8b,0x8f,0xbf,0xb0,0x7f,0x68,0x4b,0x92,0xb,0xb0,0x23,0xa8,0x61,0xc8,0xfa,0xd0,0x66,0x89,0x89,0x72,0x70,0xc7,0x82,0x7,0x73,0xea,0x2a,0xb9,0x9a,0xc6,0x60,0xc6,0x7c,0x8b,0x86,0x38,0xf9,0xb2,0xa5,0x9,0xf7,0xac,0x9b,0xfb,0xfb,0x6b,0x5b,0x98,0xa1,0x86,0x53,0x27,0x1f,0xbc,0x6e,0xc8,0x7e,0xa3,0xd6,0xa2,0xcd,0x9a,0xfb,0xbb,0x35,0x63,0xa2,0x40,0x6,0x1c,0x1c,0xa9,0xef,0xe9,0x52,0x16,0xdc,0x41,0x1e,0xb5,0x9b,0x6d,0x70,0x5a,0xe,0x8,0x3b,0xc8,0x2b,0x8f,0xe7,0x57,0xd7,0xe5,0x41,0x9a,0x86,0xfa,0x19,0xb8,0xd9,0x96,0x3,0xc,0x56,0xf,0x88,0x75,0xd4,0xd3,0xa0,0x68,0x21,0x60,0x6f,0x26,0x52,0x10,0x3,0xfe,0xad,0x4f,0x5,0xcf,0xf4,0xa6,0x6b,0x7a,0xe4,0x5a,0x6c,0x65,0x23,0x21,0xee,0x9c,0x7e,0xed,0x3b,0x2f,0xfb,0x4d,0x5e,0x7d,0x3c,0xf3,0x5c,0x49,0x24,0xd3,0x39,0x79,0x64,0x24,0xb3,0x37,0x5f,0xc3,0xda,0xb7,0xa5,0x6,0xf5,0x7b,0x1c,0xf5,0x64,0xa3,0xa2,0xdc,0x8d,0x99,0x98,0xb1,0x62,0x4b,0x12,0x49,0x27,0xa9,0x27,0x9e,0x68,0xa6,0xd2,0x8e,0xb5,0xd8,0x71,0x92,0x11,0xf2,0xaf,0xbe,0x69,0xd8,0xf9,0x33,0xe9,0x8a,0x46,0xe9,0x18,0xf6,0xa5,0x27,0xe5,0x23,0xe9,0x53,0x72,0xcd,0x8d,0xa,0x4d,0xb7,0x91,0xaf,0xf7,0x80,0x1f,0xad,0x7a,0x5c,0x78,0x38,0xf4,0x2,0xbc,0xb7,0x4c,0x26,0x3b,0xbb,0x47,0xec,0x58,0x3,0x5e,0xa3,0x19,0x1e,0x5c,0x67,0xd5,0x41,0x3f,0x95,0x67,0xd4,0xce,0xaa,0xd8,0x74,0x8c,0x5b,0xad,0x44,0x69,0xcd,0xd0,0x9a,0x8b,0x35,0xa4,0x56,0x87,0x14,0xdd,0xd8,0xec,0xd3,0x49,0xa3,0x34,0xd3,0x56,0x40,0x64,0xd3,0xd0,0xf4,0xa8,0xa9,0xe8,0x68,0x19,0x7a,0x23,0xc8,0xab,0xc8,0x7a,0x56,0x74,0x47,0x91,0x57,0xa3,0x34,0x8d,0x11,0x64,0x53,0xc1,0xa8,0xc1,0xa7,0x66,0x82,0x89,0x41,0xa7,0x83,0x50,0x83,0x4f,0x6,0x80,0x24,0xcd,0x25,0x26,0x69,0x9,0xa0,0x43,0x5a,0x97,0x22,0x98,0xc6,0x8c,0xd2,0x19,0xcb,0x4d,0x73,0x34,0xc7,0x92,0x48,0x45,0x2c,0x55,0x3b,0xb6,0x38,0x27,0x1d,0x85,0x66,0xaf,0x97,0xe6,0xb4,0x93,0x72,0x23,0x19,0x11,0xe3,0x20,0xb1,0xe7,0xa1,0xad,0xa9,0x22,0x75,0x9c,0x34,0x41,0x42,0xb6,0x15,0xc0,0xea,0x46,0x3f,0x2a,0xca,0xbc,0x7b,0xef,0x35,0x14,0x5b,0x39,0x88,0x96,0xe6,0x38,0x80,0x62,0xc3,0x8c,0xb1,0x26,0xbc,0xb9,0x45,0xde,0xec,0xfa,0x1a,0x73,0x56,0xe5,0x44,0x52,0x96,0x91,0x83,0x9c,0x97,0x50,0x59,0x62,0x5c,0x98,0xe2,0x51,0xdd,0xbb,0x13,0x54,0xed,0x18,0x5d,0x4f,0x31,0xed,0x1e,0x3,0x33,0x1,0x92,0xc7,0xa0,0x15,0xa0,0xa6,0x3f,0xde,0x2b,0x2b,0x6f,0x64,0x2b,0xe5,0xa9,0x4,0xae,0x7b,0xb1,0x5e,0x33,0x4d,0x55,0xb7,0xb5,0x8d,0xb6,0xa8,0x8d,0x58,0xee,0xc6,0x7e,0x67,0x7f,0x52,0x4d,0x41,0xb2,0x93,0xb5,0x90,0xf3,0x1c,0x49,0x83,0xb0,0xe4,0xe,0x7,0xa7,0xb9,0x35,0x4e,0xe3,0x50,0x58,0x91,0xd7,0x7a,0xf5,0xe3,0x6f,0x4f,0xa6,0x6a,0xb,0x9b,0xa7,0x70,0x41,0x91,0x55,0x7,0x45,0x53,0x93,0xf8,0xd6,0x6b,0x4b,0x6e,0xa4,0x90,0x37,0xb7,0xf7,0xe4,0xe7,0xf0,0x51,0xd2,0xa5,0xea,0x6b,0x18,0xa5,0xb8,0xf9,0x2e,0xae,0xa7,0xfb,0xaa,0x54,0x7a,0x9e,0x7,0xeb,0x55,0x99,0x61,0x5e,0x64,0x66,0x76,0xef,0x83,0x85,0x1f,0x89,0xa4,0x92,0xe5,0x98,0xf1,0x83,0x8e,0xdd,0xcf,0xd6,0xa0,0x33,0x31,0x38,0xda,0xa4,0xfa,0x81,0x90,0x3e,0x94,0x28,0xdc,0xd3,0x98,0x7b,0xc9,0xb3,0x85,0x1,0x73,0xd8,0xe,0x7f,0x3a,0x84,0xfa,0x9c,0x92,0x4f,0x4,0xf3,0x4a,0x15,0x9b,0x2c,0xc7,0x3f,0xcc,0x9a,0x5c,0x1e,0x33,0xdb,0xa5,0x6a,0xa9,0x99,0xba,0x83,0x46,0xee,0xb8,0xff,0x0,0x1a,0x70,0x50,0x79,0x3d,0x69,0x42,0xf5,0xa9,0x55,0x7f,0x32,0x38,0xcf,0x6a,0xd5,0x40,0xcd,0xcc,0x45,0x45,0xee,0x9,0x3e,0xfd,0x7,0xd6,0xa7,0x12,0x85,0x55,0x54,0x3,0x38,0x21,0xf2,0x3a,0xf3,0x91,0x51,0xf4,0xc7,0x73,0xd0,0xe7,0xb5,0x1d,0x7,0x3d,0x73,0xd3,0xdb,0xeb,0x5a,0x28,0x99,0xb9,0x1,0x60,0x4e,0x4f,0x53,0xd7,0x1c,0x51,0x81,0xcf,0x14,0x87,0xbf,0x6f,0x6a,0x4e,0x9d,0x3d,0x3b,0xd5,0x58,0x87,0x21,0xd8,0xfd,0x47,0x7a,0x4c,0x74,0xef,0xed,0x4d,0xdc,0x7d,0xff,0x0,0x1a,0x37,0x1f,0x5f,0xc2,0xa8,0x87,0x21,0xdf,0x53,0xd2,0x81,0x90,0x4f,0xa7,0xbd,0x33,0x3d,0x68,0xdd,0xd3,0x15,0x49,0x11,0x72,0x6d,0xd9,0xfc,0x7,0x14,0xc6,0x63,0xc7,0x3e,0xe4,0x7a,0x81,0xda,0x98,0x1b,0xd4,0xf1,0xd2,0x91,0xc8,0xc1,0x3e,0xd4,0xc9,0xb9,0x3a,0xbe,0x63,0x3e,0xa6,0x52,0x47,0xb6,0x5,0x3f,0x68,0x66,0x7c,0xe,0xa8,0x87,0x3f,0x89,0x15,0x56,0x39,0x6,0xd3,0xfe,0xf9,0x3,0xf2,0xab,0x88,0x72,0x53,0xd4,0xa2,0x8c,0xfe,0x66,0x9c,0x75,0x26,0x5a,0x6a,0x42,0x1,0x68,0xc8,0x3d,0x40,0xff,0x0,0xd0,0x4e,0x29,0x85,0xf7,0x2,0x3b,0xa7,0xcb,0xf4,0x22,0x9e,0xbc,0x13,0xe9,0xbb,0x9f,0xa1,0x35,0x55,0xdf,0x64,0xf3,0x2f,0x66,0x7c,0xfe,0x94,0x4b,0x41,0x2d,0x49,0x19,0x99,0x59,0x25,0x53,0x86,0x1c,0x7f,0xfa,0xeb,0xa3,0xd3,0x6e,0x56,0x64,0x46,0x7,0x9e,0x8c,0x3d,0xf,0xa5,0x73,0x99,0xca,0x91,0x91,0x9a,0x9a,0xca,0xe0,0xdb,0xca,0xad,0x9c,0x23,0x10,0x1f,0xd8,0xf6,0x35,0xcf,0x52,0x37,0xd4,0xda,0xc,0xef,0x6d,0xdb,0x81,0x57,0x97,0xa5,0x64,0x5a,0x4e,0xae,0xaa,0x73,0xd7,0x1c,0xd6,0xaa,0x1c,0x8e,0xdc,0xd4,0x44,0xc6,0x6b,0x51,0x24,0x61,0x8c,0x1a,0xcf,0x99,0xe,0xef,0x97,0x9f,0xf3,0xd2,0xb4,0x24,0x4c,0x8c,0x55,0x63,0x13,0xa,0x52,0x6c,0xd2,0x9b,0xe5,0x32,0xe4,0x8e,0x36,0xc9,0x65,0xeb,0xd7,0x23,0x9a,0xa8,0x34,0xcb,0x79,0x64,0x24,0x20,0xda,0x39,0x35,0xb2,0x61,0xd,0xf7,0xb9,0x1e,0xf4,0xc9,0x66,0xb6,0xb5,0x89,0xdd,0xd9,0x11,0x14,0x12,0xcc,0x4e,0x0,0xc5,0x4d,0xd9,0xd1,0x2a,0xb7,0x56,0x44,0x76,0xf6,0xd1,0xc0,0xb9,0xc0,0xe0,0x74,0xf4,0xac,0x8d,0x63,0xc4,0x36,0xd6,0x6a,0xf0,0xdb,0x95,0x96,0xe7,0x4,0x61,0x79,0x48,0xfd,0xd8,0xd6,0x3e,0xad,0xe2,0x49,0xee,0x8b,0xc1,0x66,0x5a,0x38,0x39,0x56,0x93,0xa3,0xb8,0xf6,0xf4,0xae,0x6d,0x8e,0x73,0xd7,0x9e,0x4f,0xa9,0xfa,0xd6,0xb4,0xe9,0x5f,0x59,0x1c,0xb3,0xab,0xfc,0xa2,0xcf,0x34,0xb3,0xcb,0x24,0xb3,0x39,0x79,0x1c,0xe5,0x98,0xd4,0x39,0xcd,0x29,0x3d,0x69,0xb9,0xae,0xc5,0xb1,0xc6,0xc0,0xf6,0xa7,0xe,0xa2,0x9b,0xe9,0x4f,0x51,0xf3,0xa0,0xa1,0x89,0x6e,0x4d,0x20,0xc7,0x96,0x3f,0xd9,0x14,0xd2,0x78,0x7f,0xa8,0xa7,0xcc,0x7e,0x70,0x3d,0x0,0x15,0x19,0xe8,0x71,0xeb,0x50,0x8b,0x66,0x95,0xa7,0xca,0xb6,0x92,0x1e,0x9e,0x6e,0xd2,0x7d,0xfb,0x57,0xa7,0x40,0x73,0xc,0x24,0xf7,0x45,0xfe,0x55,0xe6,0xf6,0xf1,0xe2,0xc2,0x29,0x78,0x23,0x76,0x71,0xf4,0x35,0xdf,0xd8,0x49,0xe6,0x5a,0x5b,0x36,0x7a,0xc6,0x2a,0x16,0xac,0xce,0xbe,0x90,0x4c,0xb4,0xc7,0x35,0x19,0xa5,0x26,0x9a,0x4d,0x74,0x23,0xcd,0x7b,0x86,0x69,0x29,0xa6,0x93,0x34,0xc0,0x53,0x4a,0xa7,0x6,0x99,0x9a,0x4c,0xd2,0x19,0x76,0x27,0xe9,0x57,0x63,0x6e,0x95,0x94,0x8f,0x82,0x33,0x57,0x63,0x92,0x91,0x69,0x9a,0x4a,0xdc,0x54,0x80,0xd5,0x34,0x7a,0x9d,0x5f,0x34,0x16,0x4e,0xd,0x38,0x1a,0x84,0x35,0x1b,0xc5,0x0,0x4f,0xb8,0x53,0x4b,0x54,0x45,0xe9,0x8d,0x25,0x20,0x1e,0xcf,0x4b,0xba,0xab,0x17,0xa7,0x6e,0xa5,0x72,0x8e,0x3e,0xc3,0x56,0x59,0xd6,0x54,0xbc,0x93,0x7a,0x91,0x85,0x91,0x38,0x1f,0x43,0xdc,0x1a,0x9a,0x79,0xac,0xd5,0x19,0x4d,0xcc,0x8f,0x19,0xc1,0x51,0xe7,0xf5,0xf6,0x3e,0xd5,0xc9,0xf9,0x92,0x60,0x28,0x5,0x9c,0x91,0xc9,0xe4,0x9f,0x40,0x14,0x55,0xd8,0xed,0x76,0xc6,0x64,0x9f,0xe6,0x63,0xf2,0xa2,0x1e,0x81,0x8f,0xd3,0xd2,0xbc,0xe9,0x37,0xd4,0xfa,0x18,0xc1,0x5e,0xe8,0xb9,0x3e,0xaf,0xa,0x8f,0x2a,0x2,0x15,0x73,0xb7,0x10,0x80,0xcc,0x4f,0xfb,0xc6,0xb1,0xae,0x2f,0xee,0x5d,0xc8,0x3,0x3,0xa7,0x27,0x73,0x7e,0x66,0xac,0xdd,0x2c,0x50,0x2c,0x40,0x28,0xf3,0x18,0x12,0x3d,0x46,0x7f,0x88,0xff,0x0,0x4a,0xa6,0xaa,0xb8,0xdc,0xc4,0x75,0xfc,0x7f,0xa,0x23,0xb,0xab,0xb2,0xdc,0xf9,0x5d,0x91,0x1e,0xf9,0xdc,0x1c,0x8e,0x7e,0xa7,0x3f,0x8d,0x31,0x95,0x87,0xde,0x3c,0x9e,0x82,0xa5,0x76,0x51,0x90,0x38,0x1f,0xaf,0xe2,0x6a,0x21,0x9e,0xa3,0xbf,0xad,0x57,0x22,0x41,0xed,0x1b,0x10,0x9e,0x3d,0x7,0x4f,0xaf,0xd6,0x95,0x78,0xeb,0xf9,0xfa,0xd3,0x49,0x4,0x81,0xe9,0xcf,0xb5,0x39,0x79,0x39,0xef,0xed,0x54,0xa2,0x2e,0x62,0x60,0x6,0x0,0xfc,0x4f,0xad,0x38,0x81,0xcf,0x6e,0xfc,0xd2,0x28,0xfa,0x74,0xeb,0x4b,0x8e,0x46,0x38,0xfa,0xd6,0x89,0x58,0xcd,0xc8,0x50,0x17,0xa9,0x7,0xf1,0xf5,0xa7,0x6e,0x1c,0x1c,0x74,0xfc,0xa9,0x99,0xe9,0xfc,0xbb,0x50,0x78,0xc8,0xfc,0x78,0xe9,0x55,0x62,0x79,0x85,0xce,0x4f,0x3e,0xbf,0x85,0x5,0x86,0x48,0xe8,0x3b,0x62,0x9a,0x71,0xcf,0x3d,0x69,0xbb,0x87,0xd2,0x98,0xae,0x38,0x93,0xf4,0xcd,0x27,0x3c,0x62,0x9a,0x18,0x7e,0xbf,0x86,0x28,0x2d,0xd7,0xfa,0x55,0x12,0x29,0x3d,0x7b,0xf7,0xa6,0xe4,0xf3,0xdb,0xbd,0x4,0xe3,0xf1,0xa3,0x3d,0x3d,0x7d,0xe8,0xb1,0x37,0x13,0x3e,0x94,0x99,0xe2,0x90,0x9f,0xff,0x0,0x55,0x30,0x9e,0xb4,0xa,0xe3,0xf7,0x7e,0x94,0x85,0xb8,0x3c,0xf6,0xa8,0xf7,0x53,0x4b,0x75,0xa2,0xe2,0x24,0x56,0xf9,0x5c,0x7b,0xe7,0xfa,0x55,0xe5,0x70,0xa5,0xbf,0xd9,0x41,0xfc,0xab,0x31,0xe,0x5f,0x1e,0xe3,0xf9,0xd5,0xbd,0xf8,0x69,0x87,0xfb,0x5f,0xa1,0xed,0x44,0x5e,0xa0,0xf5,0x43,0xd1,0xfa,0x7b,0xff,0x0,0x8e,0x6a,0xb,0xb1,0x99,0x5c,0xf4,0xce,0xe,0x69,0x15,0xb1,0xcf,0xf7,0x58,0x83,0xcd,0x4d,0x3e,0xd6,0x3c,0x8f,0xbc,0xab,0x82,0x7e,0x95,0x4f,0x54,0x4e,0xcc,0x82,0x39,0x38,0x21,0xba,0x8e,0xf,0xbd,0x4c,0xa4,0x67,0xeb,0xc8,0xf7,0xcd,0x54,0xc1,0x7,0x69,0xe1,0x87,0x4c,0xf7,0xf6,0xa9,0x56,0x42,0x85,0x41,0xec,0x7,0x15,0x9b,0xd8,0xd1,0x33,0xa2,0xd3,0x2f,0x1a,0x32,0x21,0x63,0x91,0xd6,0x33,0xfe,0xcf,0xa5,0x75,0x16,0xf3,0xab,0x5,0x39,0xfc,0xab,0x83,0x86,0x4c,0xe0,0xa9,0x1,0x87,0xcc,0xbe,0xcd,0xe9,0x5d,0x1d,0x8d,0xce,0xf8,0xd1,0xbb,0xe3,0x9c,0x74,0xcd,0x73,0x4b,0xdd,0xd4,0xdb,0x95,0x49,0x1d,0x26,0xf2,0x40,0xe9,0x48,0x79,0xce,0x48,0xaa,0x69,0x38,0xc0,0xe6,0xb2,0xf5,0x5f,0x11,0x5a,0x69,0xea,0xc8,0xac,0xb2,0xdd,0x10,0x42,0xc4,0x87,0x85,0x3e,0xb2,0x11,0x42,0x7c,0xda,0x23,0x17,0xe,0x5d,0x4b,0x7a,0xa6,0xa9,0x67,0xa6,0x42,0x5e,0x66,0xf9,0x8e,0x44,0x71,0xaf,0xdf,0x73,0xec,0x2b,0xcf,0x35,0x1d,0x52,0xf3,0x51,0x90,0xb4,0xac,0x44,0x60,0xfc,0x91,0x29,0xf9,0x54,0x7b,0xfb,0xd4,0x17,0x77,0x97,0x57,0xb3,0x3c,0xf7,0xe,0x5e,0x46,0xfc,0x94,0x7f,0x75,0x47,0xa5,0x55,0xcd,0x74,0xc2,0x9a,0x8e,0xac,0xc6,0x53,0x6f,0x44,0x3c,0x74,0x34,0xd3,0xde,0xa4,0xc0,0x9,0xef,0x51,0xb7,0xa,0x4f,0x73,0x5a,0x5f,0x52,0x36,0x44,0x5e,0xb4,0x86,0x96,0x93,0x8c,0x55,0x99,0x8b,0xe9,0x53,0xc4,0xb9,0x95,0x3d,0xaa,0x15,0xe5,0x85,0x59,0x83,0x1e,0x69,0x27,0xb2,0x9a,0x89,0x15,0x1d,0xc4,0x97,0xfd,0x63,0x7b,0x53,0x7,0xf1,0x63,0xd3,0xbd,0x2b,0x9f,0x98,0xd0,0x6,0x43,0xf,0x4c,0xd0,0x37,0xb9,0xd1,0x69,0xb1,0x2c,0xda,0x61,0x5e,0xa4,0x2b,0x9f,0xc4,0x73,0x5d,0x46,0x87,0x26,0xfb,0x8,0xb3,0xd5,0x46,0x2b,0x9d,0xd1,0x39,0xb2,0x5c,0x64,0x7d,0xf0,0x7d,0xf8,0xad,0x9f,0xf,0xb1,0x10,0x49,0x19,0xe8,0x1d,0xc0,0xfc,0xeb,0x35,0xf1,0x11,0x59,0x5e,0x6,0xd1,0xef,0x4d,0xcd,0x6,0x90,0x9a,0xe9,0x47,0x96,0x21,0x34,0xd2,0x68,0x26,0x93,0x34,0xc4,0x19,0xa3,0x34,0xdc,0xd2,0x73,0x52,0x50,0xed,0xd5,0x22,0x4c,0xcb,0x8f,0x4a,0xae,0x4d,0x19,0xa4,0x6,0x9a,0x4e,0x38,0xe6,0xac,0x2c,0xe2,0xb1,0x84,0x84,0x77,0xa9,0x56,0x63,0x41,0x4a,0x46,0xc0,0x9c,0x51,0xe7,0x8f,0x5a,0xc9,0xfb,0x41,0x1d,0xe9,0xd,0xc9,0xf5,0xa4,0x3e,0x63,0x63,0xce,0x7,0xbd,0x34,0xbd,0x67,0x47,0x36,0xee,0xa6,0xac,0xab,0xe4,0xa,0x45,0x27,0x72,0xc6,0xea,0x93,0x35,0x58,0x35,0x49,0xba,0x91,0x7a,0x1e,0x77,0x6e,0x8a,0x5f,0xe5,0x57,0x44,0x1d,0x58,0xe0,0xca,0xe7,0xfb,0xa0,0xf6,0x15,0x67,0xcc,0x2c,0xc6,0x57,0xc7,0x95,0x8,0x28,0x8b,0xdb,0x7f,0x7f,0xca,0x98,0xc1,0xa0,0x8d,0x90,0x60,0xcf,0x21,0x3,0xe5,0x39,0x58,0x94,0xfa,0x7b,0x9a,0xaf,0x75,0x26,0xc8,0x52,0x15,0x3d,0x46,0x7e,0xb8,0x3d,0x6b,0x86,0xdc,0xcc,0xfa,0x2b,0xd9,0x14,0xa7,0x99,0xe6,0x91,0xd8,0xf2,0x49,0xeb,0x51,0xee,0xe3,0x96,0xe8,0x29,0x2,0x9e,0x49,0xe2,0xa2,0x7e,0x4f,0xb7,0xb5,0x6c,0xd1,0x95,0xc7,0x17,0xcf,0xe3,0xc5,0x7,0x70,0xef,0xc0,0xa6,0x0,0xdc,0xfb,0x74,0xa5,0xc3,0xe4,0xe,0xb4,0xac,0x17,0x1e,0xb9,0xfa,0x66,0xa6,0x8d,0x4f,0x18,0xa4,0x8e,0x32,0x71,0x9e,0xa0,0xfe,0x15,0x65,0x40,0x5c,0x7b,0x9e,0xd5,0xa4,0x62,0x43,0x98,0x9c,0x28,0x1d,0x3e,0x86,0xa2,0x2d,0xf9,0xe7,0x9a,0x73,0xb8,0xc6,0x3b,0xe7,0xa5,0x40,0x4f,0x5a,0xa6,0x24,0xc9,0x77,0x75,0xf6,0xe7,0x14,0x85,0xb3,0xec,0x8,0xe6,0xa3,0xdd,0xd8,0x7e,0x39,0xa6,0x96,0xa4,0x31,0xc5,0xfa,0x52,0x13,0xc5,0x37,0x27,0xbd,0x19,0xeb,0x48,0x5,0xcd,0x19,0x39,0xa0,0xf,0xf2,0x69,0x45,0x55,0x85,0x71,0x47,0xad,0x1d,0xbf,0x1e,0x94,0x99,0xa6,0x3b,0x80,0xd,0x3d,0x88,0xdc,0x56,0x6e,0xbf,0x87,0x15,0x11,0x6f,0x7a,0x69,0x6c,0xf7,0xa6,0xe7,0xde,0xa5,0xb2,0xac,0x3b,0x34,0x84,0xf5,0xf4,0xa4,0xc8,0xa6,0xb1,0x27,0x34,0x84,0x49,0x19,0xb,0xb9,0xb3,0xcf,0x4c,0xd5,0x84,0x3b,0x8c,0x9e,0xe4,0x1a,0xa7,0xbb,0x80,0x3d,0x73,0xfa,0xd4,0xf1,0xb8,0xc,0x9f,0xee,0xf3,0xf5,0x14,0xd6,0xe2,0x1e,0xf,0xcd,0x27,0xb8,0x56,0x1f,0xc8,0xd3,0xa4,0x67,0x28,0xae,0xb9,0xca,0x63,0x3e,0x84,0x53,0x1c,0x14,0x24,0xe3,0xa1,0xc7,0xe0,0x79,0xa5,0x46,0xc8,0x20,0x76,0x39,0x3,0xd4,0x1a,0xbb,0x92,0x3b,0x29,0x3a,0xe5,0x78,0x65,0xe9,0x9e,0xfe,0xd5,0x16,0xb,0x9c,0x1f,0x95,0xc7,0x7f,0xe9,0x4d,0x6c,0xc4,0xfb,0x86,0x76,0xbf,0x38,0xf4,0x3d,0xc5,0x48,0xc0,0x30,0xf3,0x57,0xa8,0xc6,0xe2,0x3b,0x8f,0x5a,0x5b,0x8c,0x45,0x62,0x72,0x8d,0xf2,0xb0,0xe3,0xff,0x0,0xaf,0x53,0xa5,0xed,0xfd,0xa2,0xa9,0x49,0x31,0xf3,0x63,0xc,0x32,0x3e,0xb5,0xb,0x2e,0xf4,0x12,0x26,0x37,0x2f,0x27,0x27,0x3b,0x88,0xf4,0xa7,0x43,0xc,0x97,0x6b,0x2b,0x21,0x4,0xc4,0xa1,0xf6,0x77,0x23,0xb9,0x1f,0x4a,0xcd,0xdb,0xa8,0xd3,0x7d,0x9,0xee,0xf5,0x8d,0x61,0xa0,0xff,0x0,0x5e,0xb1,0x2b,0x1d,0xa5,0x62,0x0,0x39,0x7,0xde,0xb1,0x32,0x49,0x2c,0xc4,0x92,0x4e,0x49,0x27,0x24,0x9f,0xa9,0xad,0x67,0x48,0xe6,0xb6,0xb9,0x55,0x5f,0xde,0xa2,0x87,0xcf,0x7e,0x2b,0x1f,0x39,0x15,0x50,0x49,0x6c,0x44,0xdb,0x6f,0x51,0x73,0x4a,0xbc,0x9a,0x60,0xa7,0x8e,0x95,0x64,0x21,0xcc,0x49,0x4,0x53,0x65,0x5,0x42,0x67,0xb8,0xcd,0x4d,0xc,0x7e,0x64,0x88,0x9e,0xa7,0x27,0xe9,0x4c,0xbc,0x60,0x66,0x65,0x5e,0x8b,0xf2,0xd2,0x5b,0x89,0x95,0xa8,0xf4,0xa0,0xf6,0x14,0xbf,0x5f,0x4a,0xbb,0x91,0x61,0xc9,0xd4,0x9a,0xb1,0x6e,0x9,0x79,0x31,0xdc,0x54,0x9,0xc0,0x26,0xad,0xd8,0xae,0xe9,0x58,0x74,0xf9,0x49,0xfc,0x85,0x4c,0x99,0x71,0x5a,0x95,0xc8,0x3b,0x8a,0xfb,0xe4,0xd4,0x90,0xaf,0xcc,0xd9,0x1c,0x60,0xf4,0xa6,0x7f,0xcb,0x43,0x9e,0xe4,0xe6,0xac,0xc2,0x8c,0x1c,0xff,0x0,0xbb,0xd3,0xd4,0x62,0x8b,0x89,0x6a,0xce,0x8b,0xc3,0x83,0x75,0xa7,0xb0,0x95,0xfe,0x95,0xa1,0xa3,0xb7,0x97,0x3d,0xec,0x5f,0xdd,0x9d,0xb8,0xf4,0x7,0x9a,0xa3,0xe1,0xac,0x35,0x95,0xce,0x47,0xdc,0xb8,0x61,0xf9,0x8a,0xbd,0x6b,0xfb,0xbd,0x4e,0x75,0x18,0xc4,0x85,0x18,0x60,0x75,0xca,0xf3,0x59,0xf5,0x9,0x6b,0x3,0x79,0xa9,0x84,0xd1,0x9e,0x29,0xa4,0xd7,0x4a,0x3c,0x86,0x6,0x9a,0x69,0x69,0xa4,0xd0,0xd8,0x5,0x26,0x69,0x9,0xa4,0xcd,0x21,0x81,0xa6,0xd2,0x93,0x4c,0x26,0x81,0xb,0x9a,0x4d,0xc4,0x52,0x66,0x9b,0x9a,0x40,0x3f,0x71,0xa4,0xdc,0x69,0x99,0xa4,0xcd,0x26,0x49,0x3c,0x72,0x10,0x6a,0xf4,0x52,0x82,0x5,0x65,0x82,0x6a,0x68,0xe4,0x23,0xbd,0x49,0x71,0x76,0x35,0x77,0xd3,0xf7,0xd5,0x25,0x97,0x38,0xa9,0xb7,0x8a,0x66,0xb7,0x38,0x58,0xde,0x66,0x22,0x49,0x5b,0xe6,0x76,0x11,0xc4,0xbd,0xe,0x7b,0x9c,0x54,0x57,0x4c,0x77,0x13,0x9e,0xdb,0x79,0xec,0x5,0x24,0x2f,0x24,0xb3,0x49,0x33,0x1f,0x96,0x18,0xf0,0x31,0xfd,0xe6,0xa6,0xce,0xb,0x63,0x9e,0x7,0x20,0x77,0xe7,0xbd,0x73,0xc2,0x3d,0x4f,0x7a,0x72,0x5b,0x15,0x4b,0x9c,0x60,0x50,0x88,0xcd,0xce,0x33,0xef,0x56,0x16,0xdc,0xb1,0x3c,0x60,0x1,0x9c,0x54,0xfe,0x5a,0x8f,0x94,0x2e,0x46,0x39,0x23,0x8a,0xd1,0x41,0x99,0xb9,0x15,0x4a,0x2e,0x54,0xf5,0xf6,0xe9,0xcd,0x4d,0x1c,0x38,0xc1,0x6e,0x79,0xcf,0xd0,0x53,0xd1,0x46,0x73,0x81,0x81,0x9d,0xb9,0xf5,0xf5,0xa5,0x67,0xb,0x8f,0xeb,0xd2,0xb4,0x49,0x22,0x39,0xae,0x2e,0x14,0x1,0xc6,0x6,0x7b,0x54,0x4f,0x27,0xa7,0xaf,0xe3,0x4d,0x69,0x30,0x3d,0xf3,0x50,0x33,0xe,0x72,0x7f,0x1a,0x4d,0x82,0x1c,0xcf,0x9c,0xfa,0x7e,0xb4,0xcc,0x8f,0x53,0xf4,0xa6,0x93,0x4c,0xc9,0xa8,0x2c,0x93,0x77,0xe5,0x49,0x9a,0x8f,0x34,0xb9,0xa4,0x3b,0x8f,0xa5,0x7,0xf1,0xa8,0xf3,0xef,0x46,0x69,0x88,0x90,0xb1,0x38,0x1e,0x94,0x64,0xe2,0xa3,0xcd,0x3b,0x34,0xc4,0x38,0xb6,0x7,0xf8,0xd5,0x77,0x6c,0xd3,0xdd,0x8e,0x2a,0xc,0xff,0x0,0xf5,0xe9,0x49,0x8d,0xe,0x14,0xb9,0xa6,0xd0,0x7a,0x54,0x95,0x70,0x26,0x90,0x9a,0x4f,0x6a,0x3b,0x53,0x20,0x33,0x80,0x9,0xf5,0xe2,0x9c,0x8d,0xc1,0x3d,0xd4,0x83,0xf5,0x6,0xa3,0x63,0xd3,0xda,0x91,0x5b,0x7,0x9f,0xc6,0x98,0xae,0x68,0x9f,0x9d,0x1,0x1c,0xe7,0xfa,0x74,0xa8,0x32,0x55,0xbe,0x9c,0x8f,0x71,0x49,0x13,0xe0,0xb2,0x9e,0x9d,0x8f,0xb7,0xad,0x49,0x22,0x64,0x2,0x3e,0xf0,0xe4,0x7b,0xfb,0x50,0x3,0x9c,0x7,0x3,0xd1,0x87,0xfd,0xf2,0x47,0x71,0x50,0xc5,0x21,0x8c,0x94,0x3e,0xbf,0xaf,0xf8,0x53,0xa3,0x6e,0xdd,0xbd,0x28,0x91,0x33,0xd7,0xef,0x1,0x95,0x3e,0xa2,0x81,0x12,0xc5,0xb5,0x24,0x5c,0xff,0x0,0xab,0x90,0xe0,0x7f,0xb2,0xd5,0x61,0x1d,0xf4,0xfb,0xb8,0xe5,0x55,0xfd,0xdb,0x31,0xc,0x3f,0x98,0xfc,0x6a,0x8c,0x6c,0xa,0x94,0x63,0xc1,0xe8,0x7a,0xe0,0xd5,0xa5,0x7f,0x3a,0x37,0x8a,0x42,0x7c,0xc4,0x1f,0x29,0x1d,0x4e,0x3a,0x1a,0x4c,0x69,0x9b,0xeb,0x63,0x6d,0x26,0x6e,0x22,0x64,0x51,0x22,0x9d,0xea,0x46,0x15,0x90,0x8c,0xe7,0xeb,0x5c,0x44,0xc1,0x52,0x59,0x91,0x4e,0x55,0x64,0x75,0x52,0x3b,0x80,0x6b,0x5d,0xee,0xef,0xd,0x85,0xca,0xac,0x85,0x76,0x11,0x1b,0xa8,0xe3,0xa,0x4e,0x2b,0x10,0xe7,0xff,0x0,0xaf,0x44,0x13,0x5b,0x91,0x36,0x87,0x7a,0x53,0x97,0xa8,0xa6,0x90,0x70,0x2a,0x4b,0x75,0xdc,0xf8,0x3d,0x2a,0xd9,0x28,0xb7,0x6f,0x95,0x2e,0xde,0x88,0x71,0x54,0x1d,0xb7,0x3b,0xb1,0xee,0x6b,0x4e,0xe5,0x3c,0x88,0xc1,0xfe,0xf2,0x56,0x4f,0x6c,0x9f,0xad,0x28,0x84,0xb4,0xd0,0x74,0x6b,0xbd,0xc0,0xf7,0xa7,0x30,0x1b,0xdc,0xe,0x8b,0x4f,0xb5,0x3,0x71,0x72,0x38,0x50,0x4d,0x22,0xc,0xc7,0x3b,0xfa,0xb7,0xf3,0x35,0x42,0x43,0x56,0xae,0xd8,0xe5,0x5e,0x56,0xec,0x23,0x6f,0xd4,0x55,0x25,0xef,0x57,0xec,0xc6,0x52,0xeb,0x1f,0xc3,0x11,0x27,0xe9,0x4a,0x5b,0x15,0xd,0xca,0xb1,0xe0,0xc8,0xa4,0x9c,0xe4,0x90,0x6b,0x42,0xd9,0xb,0x4a,0xf9,0xfe,0x1c,0x7e,0x58,0xac,0xf8,0x94,0x96,0x41,0xdc,0xb5,0x6c,0x5b,0x0,0xb2,0xcb,0x9e,0x80,0xc7,0x93,0xf5,0xe2,0xa6,0x4e,0xc1,0x5,0x76,0x69,0x78,0x60,0xe1,0x75,0x8,0xbb,0x9,0xc3,0x63,0xeb,0x57,0x78,0x4d,0x4e,0xd4,0xf3,0xcf,0xca,0x4f,0xe2,0x45,0x53,0xf0,0xf8,0xc5,0xde,0xaa,0xa3,0xa0,0xda,0xdf,0xad,0x5c,0x97,0x9d,0x51,0x39,0xfb,0xae,0x87,0x1f,0x5a,0x96,0x4f,0x75,0xe4,0x6e,0x9e,0x33,0xf5,0xa6,0x9f,0x5a,0x5c,0xe2,0x93,0x23,0xd2,0xba,0x4f,0x21,0x8d,0x34,0xdc,0xd3,0x8e,0x3b,0x53,0x9,0xa0,0x42,0x66,0x90,0x9a,0x33,0x4c,0x26,0x81,0x8a,0x4d,0x34,0x9a,0x9,0xa6,0x52,0x13,0x14,0x9a,0x4c,0xd1,0x46,0x29,0x5c,0x42,0x1a,0x0,0xa7,0x62,0x97,0x18,0xa9,0xb8,0x58,0x4c,0x50,0x38,0xa7,0x62,0x8c,0x71,0x50,0xd9,0x56,0x1e,0xb2,0x63,0x15,0x37,0x98,0x3d,0x6a,0xa9,0x6,0x97,0xe6,0xf5,0xa5,0x72,0x8e,0x66,0x38,0x8c,0x10,0x84,0x61,0xf3,0xb1,0x2c,0xe4,0x7e,0x40,0x54,0x5,0xb9,0x27,0x3d,0x7a,0x93,0xfc,0xaa,0x4b,0x8b,0x81,0xb9,0xf1,0xc1,0xf9,0x79,0x1d,0x0,0xc5,0x52,0x79,0x81,0x18,0xea,0x1,0xcf,0xd6,0x9e,0xc7,0xb7,0xb9,0x6f,0xed,0xa,0x0,0x55,0x18,0xc8,0xc1,0xc1,0xeb,0x51,0x99,0x5c,0x8c,0x75,0xcf,0x4c,0x55,0x25,0x72,0x49,0xea,0x3b,0x8f,0x4a,0x91,0x64,0x39,0xea,0x38,0xa7,0xcc,0x16,0x2d,0x19,0x5b,0x8f,0x61,0x8c,0x54,0x4c,0xe7,0x3c,0xe7,0x83,0xd3,0xb5,0x44,0x24,0xc,0x4e,0x7a,0x3,0xf8,0xd3,0x89,0x3,0x38,0xfd,0x69,0xdc,0x42,0x13,0xc9,0xcd,0x30,0x9f,0xc2,0x91,0x9a,0xa3,0x2d,0x48,0x13,0x1d,0xba,0x93,0x34,0xc2,0x69,0x37,0x50,0x32,0x42,0x68,0xcd,0x33,0x34,0xa0,0xd1,0x61,0xdc,0x7d,0x19,0xa0,0xa,0xd,0x16,0x15,0xc5,0x14,0x66,0x9a,0x33,0x48,0x4e,0x3f,0xa,0x0,0x6b,0x9a,0x66,0x68,0x62,0x33,0x49,0x52,0x3b,0x8e,0x14,0x84,0xd2,0x3,0x45,0x1,0x70,0xa0,0x9a,0x4a,0x6b,0x35,0x32,0x5b,0x10,0x9f,0xd6,0x9b,0xda,0x8e,0x4d,0x21,0xfd,0x29,0x92,0xc9,0xe3,0x6c,0x8c,0x1e,0xab,0xc7,0xe1,0x57,0xd5,0x49,0x8e,0x3c,0xe7,0x91,0x90,0x7d,0xd,0x66,0xc2,0xac,0xd2,0x46,0xa3,0x92,0xec,0x17,0x3,0xde,0xba,0x37,0xb6,0xc4,0x2a,0x31,0x8f,0x94,0x80,0x7b,0x8c,0xe,0x86,0xa5,0x94,0x8c,0x77,0x56,0x53,0xbb,0xa1,0xfe,0x21,0x52,0x23,0x7,0x1,0x5b,0xf0,0x6f,0x43,0x40,0x70,0xc7,0x63,0x1c,0x30,0xe3,0x3e,0x9f,0x5a,0x47,0x88,0xa7,0xce,0xbc,0x83,0xd4,0xe,0xd4,0x1,0xb,0xab,0xc7,0x26,0x40,0xf9,0x81,0xc9,0x3,0xbf,0xb8,0xa9,0x12,0x61,0xbd,0x5d,0xf,0xcc,0xbc,0xaf,0xae,0x3f,0xba,0x69,0x43,0x23,0x80,0xae,0x70,0x57,0xee,0x91,0xc9,0x5a,0x8e,0x68,0xca,0x30,0x71,0x8f,0x98,0x70,0x57,0xa1,0xa6,0x21,0x6e,0x66,0x7,0xed,0x3b,0x14,0x85,0x99,0x6,0xf1,0xe8,0x41,0xc9,0xcd,0x66,0xf7,0xab,0xcd,0xf3,0x2,0x7f,0x8b,0x1d,0x8f,0x5f,0x63,0x54,0xca,0xe1,0x80,0xf6,0x4,0xd5,0x22,0x1e,0xa1,0xcf,0xe5,0x57,0xf4,0xe8,0xc,0xb2,0x20,0xec,0xcc,0x0,0xfc,0xea,0xa1,0x3,0x6e,0x7b,0x93,0xfa,0x57,0x49,0xa2,0x5b,0xa6,0xeb,0x66,0xc7,0xdd,0x52,0xc7,0xeb,0x49,0x8d,0x22,0x9e,0xbc,0x3c,0xb7,0x48,0xd7,0x80,0xaa,0x17,0xf1,0x15,0x82,0x7a,0x56,0xef,0x88,0xf,0xef,0x94,0x67,0xbb,0x1f,0x7a,0xc1,0xea,0x45,0x38,0xec,0x29,0x3d,0x4b,0x90,0xa8,0x10,0x4c,0xfd,0xc2,0x9f,0xd6,0xa4,0x86,0x22,0x74,0xf9,0x24,0xc7,0xfc,0xb4,0x2,0x9c,0x76,0xa5,0x8b,0x71,0xcb,0x71,0x57,0x2d,0xa3,0xff,0x0,0x89,0x4d,0xc2,0x9e,0xb9,0x56,0x14,0xae,0x3b,0x6a,0x63,0xa7,0x52,0x3d,0x6b,0x42,0xc7,0x1b,0x6f,0x17,0xb9,0x81,0xc0,0xfc,0x2a,0x86,0xd2,0xb2,0xe0,0xfb,0x55,0xdb,0x66,0xf2,0xde,0x5f,0x75,0x71,0xf9,0x8a,0x1e,0xa8,0x23,0xa3,0x2b,0x42,0x1b,0xe5,0x2b,0xd4,0x38,0x19,0xfa,0x9a,0xdd,0x85,0x14,0x35,0xe9,0x3f,0xc2,0xb1,0x71,0xef,0xc5,0x63,0xc2,0xb9,0x4c,0x77,0x69,0x10,0x7e,0xb5,0xbb,0x6e,0xe,0xfd,0x47,0x1c,0x9c,0x46,0x7,0xe0,0x40,0xcd,0x4c,0xca,0xa6,0x4d,0xa0,0x71,0xa9,0xea,0xa,0x4f,0xdf,0x87,0x35,0xa4,0xca,0x1f,0x54,0xc0,0x1c,0xa8,0x42,0x7f,0xa,0xce,0xd1,0x41,0x1a,0xd5,0xd1,0xff,0x0,0xa6,0x20,0x11,0xef,0x5b,0x11,0xae,0x6f,0xe7,0x90,0xe,0x87,0x4,0xfd,0x7,0x4a,0x1f,0x43,0x27,0xa7,0x33,0x7d,0x8d,0x3,0xd3,0xa5,0x30,0x9a,0x79,0x23,0xad,0x46,0x6b,0xa0,0xf2,0x58,0x86,0x9a,0x4d,0x29,0xa6,0x9a,0x4,0x21,0x34,0xd2,0x69,0x4d,0x25,0x21,0x8d,0xa4,0x34,0xea,0x4a,0x90,0x12,0x94,0x51,0x8a,0x5c,0x52,0x1,0x69,0x40,0xa4,0xc5,0x38,0xa,0xcd,0xb2,0x83,0x14,0x53,0xb1,0x46,0x2a,0x1b,0x18,0xc3,0x4b,0x83,0x41,0x1d,0x69,0xd4,0x5,0x8f,0x3c,0x79,0x78,0xea,0x7d,0xea,0x12,0xe4,0xfe,0x14,0x87,0x27,0x8a,0x92,0x38,0x8b,0x63,0x83,0xed,0xde,0xaf,0x73,0xda,0xd8,0x45,0xde,0x73,0x8e,0xfc,0x53,0xc6,0x54,0x1c,0xf2,0x7a,0x55,0x91,0x0,0xa,0x3a,0x71,0xd7,0x1d,0x72,0x6a,0x68,0xed,0x41,0x39,0x39,0x3e,0xa7,0xde,0xad,0x44,0x87,0x32,0xa4,0x71,0x3b,0x63,0x8f,0xc2,0x9f,0x26,0x54,0x60,0xd5,0xc9,0x1a,0x28,0x57,0x3,0x5,0xb0,0x79,0x1d,0x6b,0x3a,0x47,0x2c,0x72,0x69,0xda,0xc2,0xe6,0xb8,0xd2,0xd4,0xd2,0x69,0x29,0x33,0xd4,0xd2,0x1d,0xc0,0xfa,0xa,0x39,0xa3,0x9a,0x51,0x4e,0xc1,0xcc,0x3,0x34,0xf5,0xa4,0x2,0x9c,0x28,0xe5,0x13,0x90,0xe1,0xeb,0x49,0x9a,0x9,0xe9,0xfc,0xa9,0xa4,0xd1,0x61,0x5c,0x52,0x71,0x4c,0x26,0x9a,0x5a,0x90,0x9a,0x4c,0xa4,0x34,0x9e,0x68,0x14,0xcc,0xf2,0x69,0xd9,0xa9,0x2a,0xe3,0xb3,0x49,0x9a,0x4c,0xd2,0x76,0xa0,0x42,0xe7,0x19,0x26,0xa3,0x2d,0xb8,0xd2,0x33,0x67,0x8e,0xd4,0xa,0xa1,0x5c,0x53,0xc0,0xfa,0xd2,0x52,0x13,0xc9,0xa5,0x4,0xe7,0xfc,0x68,0x25,0xb3,0x4f,0x47,0x84,0x49,0x7b,0xb,0x11,0x95,0x8c,0x86,0x3f,0x52,0x71,0x5d,0x65,0xcc,0x4a,0x91,0x96,0xfe,0x1c,0x15,0x3e,0xc4,0xf7,0xac,0x5d,0x2,0xcd,0xd9,0xa0,0x94,0xe5,0x77,0xb9,0x90,0x7a,0xb2,0x2f,0x1c,0xfb,0x57,0x57,0x71,0xa,0x35,0xbc,0x8a,0xc0,0xf2,0xa7,0xf5,0xe8,0x6a,0x18,0xef,0x6d,0xf,0x3f,0x98,0x6d,0x79,0x8,0xe9,0x9c,0xe7,0xd3,0x6,0xa6,0x52,0xcd,0x10,0x6e,0x8,0x1,0xb3,0x8e,0xbf,0x2e,0x9,0x3f,0xad,0x3a,0xe2,0x3d,0xb2,0x5c,0x29,0xcf,0xc8,0xf,0x4e,0x99,0xf7,0xa7,0x44,0xa4,0xec,0x4f,0x99,0xb,0x1,0x19,0xe9,0xb4,0x92,0xa,0xd3,0x45,0x3d,0x19,0x14,0x88,0xae,0xc8,0xc0,0x60,0x10,0x39,0x3,0x1e,0xd9,0x35,0x19,0x66,0x8c,0x95,0x6c,0x63,0x24,0x1c,0xf2,0xe,0x2b,0x62,0xcf,0x4c,0xf,0x6b,0x75,0x21,0x25,0xa4,0x8e,0x46,0x87,0x24,0xfd,0xdd,0xa7,0xa2,0x8a,0xa1,0x79,0x2,0xa4,0x5e,0x69,0x5,0xd9,0x1b,0x64,0x87,0x1c,0xa8,0x23,0xe5,0x63,0x8e,0x39,0xa7,0x62,0x6e,0x56,0x2a,0xac,0x9,0x89,0x55,0x5b,0xdf,0x9c,0xfd,0x2a,0x3,0x1,0x2f,0x9c,0x1c,0xb6,0x1,0x7,0xd7,0xbe,0x29,0x82,0x5d,0xac,0xd8,0x38,0x18,0xe0,0x75,0xab,0x56,0xce,0xd2,0x3e,0xf,0x24,0xd,0xc3,0x3d,0x45,0xc,0x16,0xac,0xaf,0x32,0x0,0x4a,0x81,0xc0,0x21,0x45,0x75,0xda,0xc,0x4a,0x61,0xe9,0xfb,0xc6,0xc2,0x8f,0xa5,0x73,0xc,0xbb,0xa5,0x8d,0x3f,0x89,0x9a,0xbb,0x4d,0x1a,0x13,0x16,0xd2,0x7f,0x84,0x2,0x6b,0x19,0x4b,0x63,0x78,0xc7,0x46,0xce,0x5b,0xc4,0xe3,0x65,0xfa,0xc6,0x38,0x2b,0x1f,0x3e,0xe4,0xd6,0x14,0x63,0x32,0xf,0xad,0x6d,0xf8,0xa9,0xc3,0xea,0xf7,0x24,0x74,0xda,0xa0,0x7e,0x55,0x93,0x68,0xa5,0xa5,0x1e,0xb9,0x2,0xb6,0x5f,0xd,0xce,0x7b,0x5e,0x56,0x2f,0x5e,0xae,0xdb,0x7b,0x64,0xc6,0x33,0xc9,0xad,0x85,0x85,0x56,0xd9,0x14,0xe,0x1a,0xd8,0x1e,0x3a,0x64,0x73,0x9a,0xa1,0xab,0xa6,0xdf,0xb2,0x20,0xea,0x14,0x7e,0xb5,0xd0,0xc3,0x6e,0xd2,0xe9,0xd6,0xb2,0xf,0xe1,0x5d,0x8d,0x8f,0x42,0x31,0x59,0x73,0x68,0x6d,0x28,0xda,0x47,0x29,0xa8,0x44,0x62,0x92,0xd5,0xf1,0xc4,0x91,0x2b,0x67,0xd4,0xd4,0x45,0xba,0x91,0xd4,0xae,0x33,0x5a,0x1a,0xba,0xe6,0xd,0x39,0xbf,0xbb,0xbe,0x3c,0x7b,0x83,0x59,0xf2,0x2b,0x2a,0x2,0x73,0xc8,0xc5,0x6a,0x8c,0x9f,0x56,0x3e,0x10,0x44,0x2a,0xc3,0xb4,0x83,0x1f,0x50,0x6b,0xa5,0xb7,0x8d,0x63,0x8e,0xf3,0xbb,0xc9,0x1c,0x18,0x3d,0xf2,0xc7,0x26,0xb0,0x23,0x5c,0xa5,0xac,0x43,0xb9,0x4,0x81,0xee,0x6b,0xa2,0x5f,0x93,0x7e,0xef,0xba,0xa6,0x3d,0xdf,0x45,0x5c,0xd6,0x73,0x35,0xa7,0xb0,0xdd,0x19,0x4f,0xf6,0xa5,0xd3,0x1f,0xba,0xb,0x29,0x3e,0xb8,0x15,0xbd,0x6e,0xa0,0x99,0x9c,0xe3,0xe6,0x76,0xc6,0x3a,0x91,0x9a,0xc9,0xd2,0x11,0xd4,0x6e,0xa,0x77,0xdc,0x79,0xb2,0x33,0x1f,0xe1,0x56,0x38,0x6,0xb6,0x14,0x4,0x5d,0xa0,0x74,0xaa,0x8a,0xbb,0x39,0x6b,0xc9,0x46,0x2f,0xcc,0x56,0xe3,0xa6,0x30,0x69,0xa6,0x83,0xff,0x0,0xd7,0xa6,0x93,0x5d,0x7,0x94,0x14,0xda,0x5a,0x4a,0x40,0x25,0x21,0x14,0xea,0x4a,0x96,0x50,0x98,0xa4,0xa7,0x51,0x8a,0x96,0x31,0xa0,0x52,0xe2,0x9d,0x4a,0x5,0x43,0x61,0x60,0xb,0x52,0x1,0x40,0x14,0xf0,0x2b,0x16,0xca,0x48,0x6e,0xd1,0x48,0x45,0x4b,0x4d,0x22,0xa4,0xa2,0x22,0x28,0xc5,0x38,0x8a,0x76,0x29,0xdc,0xf,0x36,0x86,0x17,0x72,0x0,0x1d,0xfb,0x75,0xad,0x48,0xed,0xc4,0x48,0x4e,0x3e,0x7c,0x71,0xed,0x9a,0x9e,0xb,0x74,0xb6,0x41,0x24,0x80,0x9,0x1c,0x90,0x83,0xd0,0xe,0xf8,0xa6,0x81,0xb8,0xbe,0x5b,0xbe,0x49,0xed,0x8e,0xc0,0x57,0x62,0x8d,0x8f,0x41,0xca,0xe0,0x10,0x0,0xac,0xdf,0x81,0xf5,0xfc,0x2a,0x39,0x65,0xda,0x30,0xe,0x38,0x3f,0x8d,0x12,0xcc,0x17,0x39,0x38,0xe3,0x0,0x7a,0xd6,0x6c,0x93,0x64,0x9c,0x1e,0xdd,0xea,0x9b,0xb0,0x90,0xb2,0x38,0xeb,0xde,0xab,0x16,0xcd,0x21,0x72,0x69,0xb9,0xcd,0x45,0xcb,0x43,0xf3,0x46,0x7d,0xe9,0xb9,0xa0,0x67,0x8a,0x0,0x78,0xe2,0x94,0x62,0x98,0x3b,0xf3,0xde,0xa4,0x2,0xa9,0x12,0xd8,0xe1,0x8f,0xd3,0xb5,0x38,0x63,0x8a,0x68,0x3d,0x31,0x48,0x4f,0x1d,0x6a,0x89,0xb8,0x31,0xa6,0x16,0xa4,0x66,0xa8,0xc9,0xa8,0x65,0xa1,0x73,0x41,0x34,0xdc,0xd1,0x9e,0xd,0x41,0x57,0x10,0x1e,0x69,0x69,0xa2,0x90,0xb8,0x5f,0x73,0xe9,0x40,0xae,0x3c,0x9e,0xd5,0x19,0x62,0x78,0x1d,0x29,0xa5,0x89,0xa0,0x76,0xa7,0x60,0x1c,0x3b,0x52,0xb3,0x60,0x52,0x67,0x15,0x19,0x39,0x34,0xc4,0x38,0x74,0xfc,0x6a,0x7b,0x68,0x5a,0x79,0x63,0x8c,0x75,0x76,0x3,0xe8,0x2a,0x1,0xd2,0xb5,0xf4,0x58,0x8b,0x5e,0x5b,0x9c,0x64,0x12,0xc9,0xf9,0x8e,0xb4,0x98,0x1d,0x54,0x46,0xd,0x2e,0xcf,0xcd,0xd8,0xd2,0x48,0x36,0x43,0x12,0xe,0x5a,0x69,0x5b,0x84,0x8d,0x7f,0xad,0x17,0x1f,0xdb,0xb6,0x56,0xff,0x0,0x68,0xba,0x9d,0x6e,0x52,0x52,0x1e,0xea,0x15,0x50,0xd,0xa9,0x3d,0x3c,0x82,0x3a,0x81,0xd0,0x8a,0x8f,0xed,0x49,0x1e,0xa6,0xf3,0x4b,0x13,0x3e,0x9b,0xa4,0xa8,0x89,0xe6,0x5d,0xa5,0x21,0xba,0x93,0xac,0x85,0x4f,0x27,0x1d,0x3d,0xaa,0xfd,0xec,0xf6,0xf7,0x30,0x3,0xb,0x89,0x23,0x76,0xc0,0x61,0xca,0xb7,0x19,0xe3,0xda,0x93,0xd1,0x2,0xd5,0x9c,0x9c,0xf8,0x66,0x79,0x10,0xee,0x47,0x3f,0x2b,0x76,0x26,0x9b,0x1a,0x24,0xd2,0xaf,0xc,0x24,0x92,0x45,0x52,0x77,0x70,0x80,0x72,0x7f,0x3a,0x98,0x20,0x69,0xae,0x16,0x25,0x22,0x15,0x91,0x33,0xe8,0x1f,0xab,0x63,0x35,0x21,0x84,0xad,0xda,0x15,0x0,0x6,0x75,0x3b,0x41,0xe3,0xe5,0x19,0xe3,0xeb,0xde,0xa4,0xd6,0xd7,0x34,0x2c,0x63,0x91,0x6e,0xaf,0x20,0x1d,0x19,0xe1,0x6f,0x9b,0x24,0x2,0x57,0x4,0xe3,0xd6,0xa1,0xd5,0xe1,0x16,0xd6,0x77,0xe8,0x33,0x87,0x31,0xae,0x7a,0xee,0x64,0x70,0xd9,0x27,0xf1,0xab,0x50,0x4e,0xbf,0xda,0x17,0x32,0x2a,0x3c,0x87,0x6a,0x10,0x91,0x2e,0x49,0x20,0x60,0x64,0x92,0x5,0x45,0xad,0xac,0xff,0x0,0x60,0xba,0x59,0x95,0x7c,0xd0,0x52,0x62,0xa9,0xce,0xd5,0x2d,0xf9,0x0,0x3f,0x5a,0xa5,0xa9,0x12,0xd1,0x9c,0x70,0x1f,0x32,0x56,0xa5,0xa4,0x7,0x7a,0x37,0x76,0xf,0x9c,0x7a,0x0,0x2b,0x3e,0x30,0x19,0xd3,0x27,0x3,0xa1,0x35,0xd4,0x59,0xd9,0x3a,0x5b,0x99,0xa5,0x52,0xac,0xe9,0xb6,0x24,0x3d,0x55,0x3a,0xe4,0xfb,0x9e,0xb5,0x32,0x76,0x45,0x41,0x6a,0x67,0xd9,0xc0,0xd3,0x6a,0x11,0x85,0x1f,0x75,0xb3,0xf8,0x57,0x6b,0x1c,0x2,0x22,0x48,0xe0,0x10,0x9,0xfa,0xd6,0x16,0x85,0x6f,0x99,0x67,0x9c,0x8e,0xac,0x55,0x7f,0xa,0xea,0x4a,0x82,0xa0,0x7b,0x56,0x32,0x8d,0xfd,0xe2,0xfd,0xa7,0x2b,0xe4,0x3c,0xdb,0xc4,0xb8,0x3a,0x9c,0x9e,0xf1,0xa9,0xaa,0x5a,0x6a,0xe6,0x55,0xe3,0xf8,0x97,0xf9,0xd6,0x9f,0x8a,0xe1,0xf2,0xf5,0x24,0x23,0xa3,0xc2,0x1b,0xf5,0xc5,0x52,0xd2,0x70,0x65,0x23,0x1d,0xc5,0x6b,0x7f,0x70,0x85,0xfc,0x4d,0xd,0x8d,0x72,0x0,0xbe,0x4b,0x81,0xce,0xd5,0x1e,0xdc,0xd6,0xde,0x91,0x99,0x34,0xd3,0x1f,0x52,0x53,0x8f,0x62,0x2a,0x86,0xaa,0xbb,0xad,0x55,0x8f,0x52,0x6,0x7,0xd2,0xac,0x78,0x7e,0x55,0x8,0x10,0x9a,0xc1,0xe8,0x74,0xfc,0x49,0xb3,0x9e,0xd5,0x78,0x89,0xa3,0x6f,0xbd,0x15,0xc1,0x24,0x7d,0x4d,0x55,0x9f,0x91,0xc,0x40,0x67,0x0,0x39,0x3d,0x7a,0x8e,0xf5,0xab,0xe2,0x15,0x81,0x2e,0x65,0x0,0x82,0x24,0xa,0xd8,0x5e,0xcc,0x3d,0x6a,0x94,0x70,0x2a,0xdb,0x34,0xae,0x7f,0x78,0xec,0x0,0xf5,0xc7,0xa5,0x74,0x47,0x6b,0xb3,0x9a,0x5b,0xe8,0x16,0x2a,0x3c,0xe5,0x95,0xf8,0x44,0x23,0x9f,0x4c,0x73,0x5b,0x2b,0xe6,0xde,0x4a,0xb1,0x26,0x71,0x21,0x2f,0x27,0xa0,0x52,0x7b,0xfe,0x15,0x42,0x8,0xd9,0xe3,0x5b,0x78,0x90,0xbc,0x8e,0x7a,0x28,0xe7,0x27,0xbd,0x75,0x7a,0x2e,0x9d,0x25,0xb2,0x15,0x95,0x47,0x98,0xec,0xb,0xb7,0xfe,0xca,0x28,0x6a,0xec,0x39,0x94,0x22,0x4b,0xc,0x62,0x14,0x6c,0x28,0x1,0xb0,0xaa,0x3d,0x14,0xc,0xc,0x51,0x9a,0xb3,0x76,0x15,0x5b,0x3,0xb1,0xe7,0xff,0x0,0xad,0x55,0x6b,0x68,0xc6,0xc8,0xf2,0xab,0x54,0x73,0x90,0xac,0x41,0x55,0xeb,0xb8,0x64,0x1f,0xe9,0x4d,0xa2,0x8a,0xa3,0x1,0x28,0xa5,0xc5,0x15,0x2d,0x8c,0x6d,0x14,0xec,0x53,0x6a,0x6,0x14,0xa0,0x50,0x29,0x45,0x43,0x63,0xc,0x53,0xc0,0xa4,0xa7,0xa8,0xac,0xe4,0x52,0x1c,0x5,0x3a,0x92,0x9c,0x2b,0x2b,0x94,0x84,0xc5,0x21,0x14,0xea,0x43,0x53,0x72,0x88,0xc8,0xa7,0x62,0x9a,0xc6,0x97,0x34,0x5c,0x56,0x38,0x89,0xae,0xa4,0x72,0x72,0x41,0x27,0x82,0x7d,0xbd,0xaa,0xb3,0xdc,0xe3,0x70,0x18,0x3,0x1c,0x8a,0xa8,0x64,0x63,0xb8,0xe6,0xa1,0x66,0x66,0xef,0x5e,0x87,0x31,0xdf,0x62,0x59,0x27,0x67,0x3d,0x6a,0x1c,0xb3,0x7d,0x28,0x0,0x70,0x69,0x45,0x22,0x84,0xdb,0x4b,0x8a,0x5c,0x8a,0x29,0xd8,0x9b,0x89,0xc7,0x2,0x97,0x9a,0x51,0xcd,0x2f,0xaf,0xf3,0xaa,0xb1,0x37,0x14,0x0,0x3f,0xfa,0xf4,0xb9,0xa6,0xe4,0x7d,0x69,0x47,0x6c,0x9a,0x64,0x8b,0x9c,0x7f,0x5a,0x63,0x37,0x5a,0x9,0xc7,0x15,0x19,0x34,0x80,0x9,0xa6,0x13,0x48,0x4f,0x3f,0xca,0x93,0x35,0xc,0xd0,0x76,0x7b,0x50,0x4f,0x6,0x9b,0x9a,0x6b,0xb6,0xd1,0xee,0x7a,0x52,0xb0,0x5c,0x56,0x7d,0xbc,0xf,0xbc,0x7f,0x4a,0x8c,0x64,0xf2,0x4d,0x37,0x93,0x4b,0x4e,0xc2,0xb8,0xe1,0x4e,0x14,0xd0,0x29,0x58,0xe0,0x50,0x17,0x11,0xdb,0xb5,0x20,0xcd,0x34,0x1c,0x9f,0xd6,0x9c,0x29,0x8a,0xe3,0xc1,0xe3,0x9e,0x95,0xd1,0xe9,0x10,0xa4,0x42,0xda,0x76,0x7d,0xcd,0x89,0x67,0xd8,0x46,0x14,0x43,0x12,0x16,0x62,0x7f,0x1c,0x57,0x38,0x4e,0x17,0xeb,0x9a,0xed,0x34,0xb,0x5,0x5b,0x66,0x7b,0xaf,0x9d,0x6e,0x22,0x58,0x95,0x41,0x27,0x6c,0x7,0xe6,0x23,0x3e,0xfd,0xe9,0x32,0xba,0xf,0x78,0x2e,0x5b,0x4f,0xd2,0x34,0x9b,0x7c,0x1b,0xdd,0x4e,0x46,0xd4,0x6e,0xd8,0xf3,0xb1,0xb,0x6f,0xde,0xfe,0xd5,0x42,0x75,0x68,0x67,0xb8,0x3a,0x53,0x39,0x58,0x65,0x8e,0xce,0x51,0x8f,0xdd,0x5c,0x5c,0xb9,0xc3,0x8,0xd3,0xb6,0x39,0x26,0xba,0x3c,0x5c,0xda,0x43,0x25,0xea,0x40,0xef,0x7f,0xa9,0x4b,0x1d,0xac,0x22,0x30,0x1f,0xec,0xd6,0xe3,0xe5,0x45,0x0,0xfa,0xe,0x4d,0x59,0xb3,0xd2,0x12,0xd9,0x55,0xe4,0x55,0x32,0x8d,0xe5,0x40,0xe5,0x62,0xde,0x72,0xc4,0x1e,0xee,0xdf,0xc4,0x7f,0x1,0xc7,0x51,0x93,0x17,0x63,0x12,0x2b,0x16,0x48,0xa2,0x8b,0xaf,0xdf,0x67,0x7e,0xf2,0xc8,0xdc,0xb1,0xfa,0x54,0x3f,0x2b,0xbc,0x4e,0xb9,0x32,0x26,0xe5,0x2a,0x7,0x3b,0xbe,0xe0,0xc5,0x6b,0x5e,0x3e,0xc9,0x4c,0x71,0x0,0x4e,0xc1,0xeb,0x9f,0x98,0xe3,0x8c,0x55,0xa8,0x2c,0xa0,0x48,0xd0,0x84,0x53,0x26,0xb,0x17,0x23,0x7,0x27,0x8c,0xf3,0xcf,0xd2,0xb1,0xea,0x74,0x36,0x92,0xb9,0x84,0xde,0x65,0x84,0xf0,0xdc,0x28,0xca,0xbe,0xc8,0x65,0x24,0xe3,0xe,0x4e,0x14,0x80,0x7a,0xd5,0xcd,0x50,0xc9,0x26,0x97,0xa9,0x6e,0x4c,0x37,0x93,0xb9,0xf2,0x9,0x66,0xd8,0xc0,0x92,0x4d,0x68,0xb4,0x36,0xf3,0x2c,0xb0,0xc9,0x18,0x92,0x32,0x10,0x6c,0xc0,0x38,0x23,0x90,0xc4,0xfa,0x8e,0xb5,0x4a,0x59,0xd8,0xe8,0xda,0xe7,0x98,0x9,0x9e,0xce,0x19,0xad,0x59,0x9c,0x0,0x59,0xe,0x36,0xb0,0x1e,0xe3,0xbf,0xb5,0x54,0x48,0x93,0xee,0x71,0x76,0x1,0x7e,0xd3,0x6b,0xb8,0x2,0x37,0x6,0x39,0xe9,0xd6,0xbb,0x69,0x98,0x1b,0x69,0x24,0x3,0x80,0x30,0xbf,0x52,0x2b,0x89,0xd2,0xfe,0x7b,0xa8,0xb3,0xcf,0x6f,0x6a,0xed,0xe1,0x52,0xc8,0x96,0xcc,0x38,0xce,0xec,0xfa,0xd4,0x54,0xdc,0xd6,0xa,0xea,0xe4,0xfa,0x5c,0x2,0x3b,0x68,0xdb,0x18,0x24,0x96,0x6f,0xa9,0xad,0x42,0xc3,0x1f,0x85,0x32,0xd6,0x26,0x11,0x95,0x3,0xa5,0x48,0x10,0x64,0xfa,0x9e,0x31,0x4e,0x1f,0xe,0xa7,0x35,0x5f,0x8e,0xe8,0xe1,0x7c,0x63,0x19,0x17,0x76,0x52,0x76,0x78,0xa,0xfe,0x46,0xb1,0xb4,0x82,0x5,0xda,0x29,0xee,0x78,0xae,0xab,0xc5,0xd6,0xe0,0x88,0x18,0xfd,0xe4,0x8d,0x8f,0xeb,0x5c,0x95,0xab,0x79,0x37,0x30,0x38,0xeb,0xb9,0x79,0xf4,0xa7,0xba,0x68,0xd6,0x1a,0x34,0xd9,0xdb,0xde,0x44,0xd2,0x59,0x3,0xb4,0x7c,0xab,0x83,0x9a,0xc5,0xb2,0x2e,0x4b,0x46,0x85,0x95,0x94,0xf1,0xb3,0x8f,0xcc,0xd7,0x47,0x18,0x8a,0x5b,0x7c,0x1f,0xde,0x33,0x20,0x20,0x13,0x9e,0xbe,0xc2,0xb0,0x9e,0xde,0x58,0x6e,0x88,0x6c,0xc4,0xaf,0xd7,0x6f,0x7,0x1e,0xd5,0x83,0xd8,0xe9,0xa7,0xa3,0x68,0xa3,0xaa,0xc4,0x8b,0x3c,0x4a,0xae,0x1e,0x42,0x3e,0x65,0x1c,0x90,0x7d,0xcd,0x5b,0x82,0xd0,0xa5,0xbf,0x9a,0xe3,0x9c,0x1c,0xb1,0xec,0x7,0x65,0x15,0x14,0x69,0xc,0xb7,0xfb,0x63,0x5e,0x22,0xee,0x4e,0x4b,0x37,0xa9,0x26,0xba,0x9,0xd1,0x31,0x15,0xb0,0xc3,0x12,0x10,0x0,0x3a,0x97,0x6e,0x4d,0x5a,0x95,0x91,0x32,0x4a,0xf7,0x2c,0xe8,0x56,0xb0,0x43,0x11,0x9b,0x68,0xdc,0xe8,0x1b,0x73,0xf,0x9b,0x9a,0xd2,0x32,0x80,0x58,0x83,0x80,0x38,0x1f,0xed,0x1f,0x5a,0x48,0xe2,0x11,0xc4,0x10,0xf0,0x2,0xaa,0xed,0x1e,0xc3,0xb9,0xa4,0x75,0xce,0x30,0x31,0xc6,0x2b,0x68,0x26,0xcf,0x3a,0xbc,0x92,0xd8,0xaf,0x2b,0x92,0x18,0x36,0x9,0x3d,0x2a,0xa,0x9d,0xd7,0x9c,0xd4,0x44,0x77,0xfc,0x2b,0x6d,0x8f,0x3d,0xeb,0xa8,0x94,0x52,0xd2,0x1a,0x9b,0x88,0x28,0xa2,0x92,0xa5,0xb1,0x85,0x25,0x2d,0x34,0xf1,0x52,0xd9,0x41,0x4e,0x14,0xcc,0xd1,0xba,0xa1,0x8c,0x94,0x53,0xc1,0x15,0x6,0xea,0x70,0x6a,0xc9,0xb1,0xa2,0x6c,0xd3,0xb7,0x54,0x40,0xd2,0xe6,0xb3,0x2d,0xf,0xcd,0x4,0xd3,0x69,0x33,0x52,0x31,0x1a,0x8e,0x29,0xac,0x69,0x37,0x53,0x3,0xcd,0x5b,0x1d,0x33,0x9a,0x6f,0x14,0x71,0x4d,0xe7,0x35,0xe8,0x1d,0xe1,0x93,0x4a,0x9,0x2,0x93,0x9a,0x52,0x48,0xef,0xed,0x40,0x83,0x34,0xbb,0xb1,0x51,0xe7,0x1f,0x8d,0x15,0x44,0xb2,0x4d,0xde,0x94,0x16,0xa8,0xf9,0x34,0xe0,0xa4,0xd3,0x10,0xe0,0x69,0xc0,0xe0,0x1a,0x40,0xbd,0x28,0x6e,0xe2,0x99,0x23,0x49,0xce,0x4d,0x30,0x9a,0x52,0x6a,0x36,0x34,0x98,0xd0,0x1a,0x4a,0x4c,0x9a,0x33,0x52,0x31,0x69,0x8f,0xcb,0x1,0xe8,0x29,0xd9,0xa6,0x1f,0xe7,0x40,0x0,0xa5,0xa3,0x8a,0x5,0x0,0x3b,0x38,0xa8,0xd8,0xe7,0xe9,0x43,0x36,0x3a,0x77,0xa6,0x66,0x98,0x87,0x2d,0x3c,0x73,0xd2,0x98,0x3a,0x54,0xd1,0x29,0x2c,0x3d,0x1,0x5,0xbd,0xa9,0xc,0x59,0x17,0xc,0x54,0xe,0x42,0x81,0xf8,0xe2,0xbd,0x1f,0x46,0xa,0x2c,0x6c,0x49,0x19,0xdb,0x6c,0xa4,0xf,0x52,0x7e,0x50,0x2b,0xce,0xb,0x65,0xa4,0x3f,0xc4,0xee,0x40,0xf6,0xec,0x2b,0xd2,0xb4,0x0,0x1e,0xca,0xc7,0x3d,0x63,0x89,0x43,0xe,0xf9,0x5c,0x80,0xd,0x21,0xc8,0xd8,0x67,0xfb,0x2d,0xbb,0xca,0xe0,0xcb,0x22,0x82,0xc1,0x54,0x72,0x5d,0x87,0xa,0x9e,0xd4,0xf8,0x64,0xfb,0x44,0x10,0xbb,0x4,0xe,0xf1,0xab,0xc8,0x8a,0xd9,0xa,0x48,0xce,0x3d,0x68,0x73,0x6e,0xe6,0x38,0x64,0xdc,0xd9,0x95,0x14,0x15,0xce,0xdf,0x33,0xa8,0x52,0xc2,0x9b,0x34,0xfa,0x79,0x67,0x46,0x96,0x3d,0xc8,0x40,0x72,0x9b,0xbe,0x42,0x3b,0x17,0x41,0x81,0xf9,0xd3,0x66,0x65,0x4b,0x9d,0x39,0x26,0x95,0x25,0x12,0xcb,0x13,0xaa,0xba,0x7e,0xeb,0x4,0x38,0x3c,0x80,0xf9,0xec,0x2a,0x7b,0x78,0xee,0x76,0x7f,0xa4,0x79,0x7e,0x69,0x3c,0xf9,0x44,0x95,0x20,0x0,0x33,0xcf,0xaf,0x5a,0x8a,0xea,0xe6,0xea,0xc9,0x12,0x51,0x6e,0xf7,0x96,0xec,0x70,0x5a,0x26,0x51,0x2c,0x60,0xf4,0x2d,0xd8,0x8f,0x7a,0xb7,0x9,0xb9,0x75,0x57,0x92,0xdc,0x28,0x65,0x57,0x0,0x38,0x2e,0x1,0x19,0x0,0xaf,0x4f,0xd6,0xa7,0x94,0xa7,0x27,0x62,0x15,0x89,0x5c,0xbe,0xd2,0x40,0x2c,0x43,0x6d,0xe3,0xa7,0x18,0xac,0xef,0x13,0x2c,0x70,0x68,0x9a,0x94,0xa1,0x70,0xd2,0x47,0x1d,0xbb,0x1f,0xef,0x2b,0x48,0xb8,0xcf,0xd3,0xb5,0x6e,0x20,0x4f,0x30,0x95,0xe9,0x26,0x73,0xea,0xae,0x3b,0x10,0x6b,0x98,0xf1,0xcd,0xc0,0x4d,0x2e,0xb,0x75,0x61,0xba,0x6b,0xa8,0xdd,0x94,0x75,0x28,0x80,0x9c,0xfd,0x33,0x8a,0x76,0x48,0x5c,0xcd,0xb3,0x8d,0xd2,0x89,0x5b,0x98,0xcf,0xa5,0x7a,0x5,0xaa,0xf9,0x91,0x89,0xf,0x7,0x18,0x1f,0x85,0x79,0xe6,0x9e,0xd8,0x96,0x30,0x7b,0x91,0x5e,0x8d,0x60,0x7,0x93,0x1a,0xff,0x0,0xb2,0x3a,0x56,0x4f,0xe2,0xd4,0xe9,0x77,0xe4,0xba,0x34,0xed,0x24,0x52,0x36,0x9e,0xbd,0x2a,0xf0,0x81,0x57,0x32,0x63,0x35,0x97,0x1f,0xc8,0xc3,0x1d,0xab,0x42,0x39,0xcb,0x2e,0x3f,0x4a,0x6a,0x36,0x39,0xdc,0xf9,0x8e,0x6f,0xc4,0x50,0xb5,0xd6,0xf5,0xc6,0x2,0x42,0xc4,0x57,0xd,0xb0,0x46,0xd1,0x64,0x2,0xc1,0xb6,0xd7,0xa5,0x5f,0xa0,0x92,0x59,0x14,0x8c,0x93,0x3,0x71,0x5e,0x7b,0x7f,0x9,0x8a,0xe6,0x64,0x3,0x90,0x52,0x45,0xf6,0x19,0xa4,0xd5,0x8d,0xe9,0xcb,0x43,0xbc,0xd0,0x92,0x37,0xb4,0x52,0x31,0xb8,0x70,0xf8,0xeb,0xc7,0xbd,0x53,0xf1,0x1d,0xac,0x71,0xc0,0x2e,0x47,0xca,0xc8,0xd8,0xfa,0xe6,0xae,0x68,0xb,0xb2,0x13,0xcf,0xc8,0xea,0xae,0xf,0x3d,0x31,0xcd,0x43,0xab,0xb7,0xdb,0x6e,0x3e,0xca,0x88,0x5a,0x34,0x5d,0xd8,0x18,0xc1,0x6f,0x52,0x7d,0x2b,0x37,0x65,0xb,0x1a,0x46,0xfe,0xd5,0xb3,0x9a,0xb0,0x6,0x36,0x49,0x2,0xee,0x9a,0x43,0xf2,0xf,0x56,0x3d,0x2b,0xae,0xd3,0xf4,0xf9,0x62,0x61,0x3d,0xc1,0xdd,0x33,0x29,0x54,0x1d,0x90,0x1e,0x4e,0x3d,0xeb,0x2b,0x49,0xb7,0x89,0x27,0x66,0x93,0xd,0x22,0xb0,0x9,0xe8,0xa0,0x1f,0xe1,0xae,0xb8,0xa3,0x79,0x90,0x7d,0x19,0x8f,0xd3,0x1c,0x53,0xa6,0xb9,0xb5,0x16,0x26,0x7c,0xba,0x22,0x16,0x8f,0x6f,0x1d,0xb1,0xfc,0xea,0x26,0x4a,0xba,0xcb,0xc9,0xa8,0x99,0x6b,0xad,0x2b,0x1e,0x54,0xb5,0x28,0x3a,0x7b,0x55,0x57,0x5c,0x1a,0xd2,0x74,0xe2,0xa9,0x4a,0xb4,0xa4,0x64,0xd1,0x5e,0x8a,0x5a,0x2b,0x26,0xc5,0x61,0xa7,0x34,0x94,0xe3,0x4d,0x26,0xa4,0x76,0x10,0x9a,0x69,0x34,0xa4,0xd3,0xd,0x21,0x81,0x34,0xdc,0xd0,0x69,0x33,0x4d,0x8f,0x94,0x70,0x35,0x22,0x9a,0x88,0x53,0xc5,0x61,0x22,0xac,0x4a,0xd,0x3c,0x54,0x41,0xa9,0xc1,0xab,0x31,0xa1,0xf4,0x99,0xa6,0xe6,0x90,0x9a,0x92,0x86,0xb9,0xa4,0xcd,0x23,0x9a,0x4c,0x9a,0xa2,0x4f,0x39,0x3b,0x40,0xe2,0x99,0x9a,0x40,0x46,0x3a,0xd0,0x7a,0xd7,0xa2,0x77,0x5c,0x5a,0x4c,0xe4,0x8c,0x51,0x8c,0x7d,0x69,0x40,0xcd,0x2,0xb8,0x98,0xa5,0xc7,0x51,0x4e,0x1c,0xe,0x29,0xc0,0xf,0xad,0x51,0x22,0x5,0xcf,0x4a,0x70,0xc0,0xc6,0x3b,0x7a,0xd2,0xe7,0xa7,0x7a,0xf,0x4c,0x55,0x8,0x42,0x70,0x2a,0x36,0x27,0x9e,0x29,0xc7,0x3,0x35,0x1b,0xb5,0xc,0x43,0x49,0xa8,0xfa,0xd0,0xc6,0x9b,0x50,0xca,0x42,0xd2,0x66,0x8a,0x6b,0x11,0xd2,0x80,0x17,0x24,0xf2,0x7f,0x1,0x48,0x3d,0xe9,0xd,0x19,0xa0,0x2e,0x2d,0x3b,0x38,0x14,0xd1,0x4c,0x63,0x93,0x8c,0xd0,0x17,0x2,0x72,0x49,0xa4,0xef,0x49,0x4a,0x3a,0xd3,0x10,0xf1,0xcf,0x15,0x76,0x38,0xc8,0xb5,0x49,0xe,0x7f,0x7d,0x33,0x0,0x7d,0x56,0x31,0xdb,0xf1,0xaa,0x59,0xc0,0xcf,0x73,0xc5,0x68,0xb4,0x52,0x44,0xb6,0xb1,0x17,0x57,0x5d,0x81,0xd4,0x29,0xc8,0x52,0xdc,0x90,0x6a,0x64,0x5c,0x42,0xce,0x14,0xb8,0x32,0x46,0x4e,0x30,0xc3,0xa7,0x4,0x1,0xdf,0x9a,0xf4,0x3f,0xf,0xc7,0xe5,0x69,0xbf,0xb9,0x3b,0xc8,0x79,0xa,0x72,0xe,0xe2,0x3b,0x66,0xb8,0x68,0xf4,0xa1,0x37,0x2b,0x70,0x10,0xbf,0x3b,0x71,0xcf,0xe0,0x45,0x77,0xde,0x1d,0x8e,0x1b,0x6b,0x1b,0x7b,0x35,0x72,0xcf,0x10,0x91,0x9f,0x2b,0x8c,0xe5,0xba,0xd4,0xad,0x58,0x4a,0xf6,0x9,0xa2,0xb9,0xd4,0xe2,0x64,0xb7,0x94,0x5a,0xbd,0xa4,0x89,0x30,0xb6,0x49,0x31,0x3b,0x12,0x79,0x12,0x1f,0xe1,0xdd,0xda,0xae,0x5b,0xdd,0xe9,0xb0,0x1,0x6c,0xd0,0xc9,0x64,0x4f,0xfc,0xb3,0xba,0x8f,0x0,0x9f,0x79,0x39,0x53,0xf9,0xd5,0xa9,0x6c,0xe1,0x92,0x58,0xee,0x93,0x11,0x5d,0xc6,0x36,0xac,0xc8,0x39,0x65,0xfe,0xe4,0xa3,0xba,0xfd,0x6a,0x7c,0x3b,0x46,0x12,0x60,0x8e,0x48,0xf9,0xd4,0x29,0x31,0x9f,0xa2,0xbe,0x6a,0xcc,0xee,0x64,0xc1,0x7f,0x65,0xfd,0xb3,0x2e,0x95,0x3,0x23,0x42,0xd6,0x7e,0x71,0xf2,0x88,0x68,0x96,0x7e,0xac,0xb9,0x1c,0x1,0x8a,0xbf,0x2b,0xdc,0x5b,0x85,0x54,0x11,0x18,0x86,0x3e,0x79,0x9,0xca,0x2f,0x60,0xc0,0x7f,0x3a,0x80,0x69,0xd6,0x36,0xf0,0xdd,0xb,0x1b,0x48,0x22,0x99,0xd2,0x52,0x9b,0x6,0xd2,0xd2,0x30,0xce,0xd2,0xdd,0x70,0x4f,0x5a,0x5b,0x2b,0x89,0xee,0x6c,0x2d,0x65,0x2a,0x5,0xdb,0x2f,0x93,0x32,0xb8,0xc2,0xa5,0xc2,0x9d,0x8e,0x1c,0xe,0xdd,0xe8,0x10,0x1,0x79,0x25,0xcc,0x1b,0xa6,0x8f,0x60,0xd,0x21,0x58,0xd4,0x72,0xa4,0x60,0x65,0x85,0x72,0x5e,0x24,0xb6,0x9a,0xe9,0xb5,0x62,0x41,0x2d,0x6f,0x71,0x4,0x50,0x81,0xd9,0x4,0x45,0xc9,0x1f,0x9f,0x35,0xda,0xda,0xf9,0x25,0x5d,0x95,0x16,0x39,0x81,0x29,0x3c,0x60,0x82,0xc8,0xc8,0x71,0xc0,0xeb,0xb7,0xb8,0xac,0x99,0xe0,0x12,0x6a,0x1a,0x80,0x2a,0xbb,0x25,0x11,0xbf,0xd4,0xf9,0x61,0xf,0x1f,0x85,0x4b,0x45,0x26,0x79,0xb5,0x89,0xc4,0x89,0x91,0xd0,0x80,0x7f,0x3a,0xf4,0x7d,0x3c,0x8f,0x26,0x36,0x1d,0xa,0x8a,0xe2,0x6f,0x6c,0xdb,0x4f,0xd4,0xa5,0x8c,0xf,0xdd,0xca,0x4c,0x91,0x1f,0xaf,0x6a,0xeb,0x34,0x59,0x84,0x91,0x6d,0x3d,0x57,0x82,0x2b,0x29,0xad,0x4e,0x98,0x35,0x28,0x68,0x6c,0xe4,0xf1,0xd3,0x9e,0xf5,0x2a,0x6,0x7,0xd2,0x91,0x11,0x4e,0x31,0xd6,0xa7,0x55,0x3c,0x67,0xf0,0xad,0xa2,0x79,0xf3,0x56,0x64,0x2c,0xbb,0xe6,0x52,0x4e,0x7e,0x5d,0xbf,0x81,0x15,0xc7,0xeb,0xb6,0x9b,0x6f,0xe,0xc0,0x3e,0x68,0x19,0x49,0x3f,0xde,0x1c,0xd7,0x72,0xb1,0x12,0xfb,0x80,0xeb,0xc5,0x61,0xeb,0x76,0xc5,0xdc,0xbe,0x6,0x2,0x9c,0x1e,0x87,0x3d,0xc9,0xa9,0x92,0xd2,0xe6,0xf4,0x5f,0xbd,0x66,0x41,0xa5,0x5d,0x4b,0x1d,0x84,0x38,0x5d,0xd2,0x18,0x56,0x34,0x1d,0x6,0x73,0x8c,0x9a,0xda,0x8e,0xc2,0x38,0x50,0x44,0xbf,0x34,0xd3,0xed,0x7b,0xb9,0x4f,0x56,0xdd,0xce,0xd1,0xed,0x59,0x3e,0x1e,0x88,0x49,0x1c,0x44,0xa7,0xc9,0x3,0x10,0x7b,0xef,0x72,0x78,0x15,0xd6,0x45,0x10,0x44,0x62,0xc7,0xe6,0x4,0xb3,0x9f,0x7f,0x6a,0xce,0x11,0xbe,0xac,0xd6,0xac,0xf9,0x74,0x46,0x13,0xdb,0x24,0x5a,0x81,0x44,0x4c,0xf,0x25,0x18,0x95,0xfa,0xe2,0xb7,0xa3,0x8c,0xe7,0x27,0xb2,0x80,0x3d,0xaa,0xa2,0x47,0xe7,0x5d,0xbc,0xd8,0xe1,0xf0,0xab,0xfe,0xe2,0xf7,0xad,0x40,0xb8,0x18,0xad,0x63,0x1b,0x6c,0x73,0xd4,0x9b,0x69,0x26,0x56,0x65,0xa8,0x59,0x6a,0xe3,0xe,0x31,0x50,0x30,0xab,0x30,0x29,0xc8,0xb5,0x46,0x65,0x3c,0xd6,0x8c,0x98,0xaa,0x53,0xe,0xd,0x4b,0x25,0x94,0xf,0x14,0x94,0xac,0x39,0xa4,0xac,0x1b,0x20,0x69,0xa6,0x9a,0x71,0xa8,0xc9,0xa9,0x18,0x84,0xd3,0x9,0xa5,0x26,0xa2,0x63,0x54,0x8b,0x48,0x52,0xd8,0xa4,0x6,0xa3,0x26,0x93,0x34,0x31,0x93,0xe6,0x9e,0xd,0x56,0xd,0xd2,0xa4,0xc,0x6b,0x26,0x8a,0x25,0xcd,0x38,0x35,0x45,0x9a,0x50,0x6b,0x31,0x32,0x70,0x45,0x21,0x35,0x1e,0x68,0xcd,0x21,0x83,0x52,0x50,0x4d,0x2d,0x0,0x79,0xa1,0xeb,0xd3,0xde,0x9c,0xe,0x72,0x7a,0xd2,0xb2,0xe3,0xa7,0x34,0x9f,0xa5,0x7a,0x27,0x48,0xb9,0xc9,0xe6,0x97,0xd2,0xa3,0xa9,0x14,0x1a,0xa0,0x14,0x11,0xcf,0x7a,0x5c,0xd2,0x12,0x7,0xff,0x0,0x5a,0x93,0x27,0x8a,0x62,0x1e,0x9,0xe0,0x92,0x5,0x1b,0x80,0x1f,0xd6,0x99,0xcf,0x14,0x1f,0x4a,0x62,0x1a,0xcc,0x79,0xf5,0xa8,0x89,0xa7,0x39,0x2,0xa1,0x63,0x49,0xb0,0xe,0xb4,0x53,0x73,0x46,0x6a,0x46,0x2e,0x7d,0xe9,0xb9,0xa4,0x27,0xb5,0x25,0x0,0x3b,0xa5,0x2,0x9b,0xcf,0x4a,0x77,0x6a,0x62,0x6,0x6c,0x54,0x74,0xa4,0x93,0x4d,0xa0,0x7,0x52,0xad,0x30,0xd4,0x8b,0xdb,0xf3,0xa0,0xb,0xba,0x6d,0xa9,0xbc,0xbf,0xb3,0xb7,0xc7,0xca,0x64,0xf,0x27,0xb2,0x27,0x26,0xb6,0x75,0x88,0x62,0x86,0xfd,0xbc,0xa4,0xa,0xa2,0x4,0x6d,0xa9,0xd0,0xb3,0x1c,0xa,0x87,0xc3,0xd6,0x92,0xe2,0xe3,0x51,0x19,0xb,0x1b,0x88,0x53,0x1d,0x4f,0x76,0xc5,0x68,0x5e,0xaf,0x9f,0xa8,0xca,0xcb,0x8c,0x2a,0xc1,0x9c,0xfb,0xc,0x9a,0xc2,0x52,0xf7,0x8e,0x88,0xaf,0x74,0x86,0xf,0xb4,0xc7,0x22,0x23,0xa3,0xc9,0x6d,0x11,0x5c,0xbc,0x4a,0x37,0x87,0x3,0x24,0x38,0xeb,0x81,0x5d,0xd6,0x8d,0xa,0x98,0xfe,0xd4,0x30,0x7c,0xc8,0xd6,0x28,0xc8,0x3c,0x34,0x6a,0x77,0x6e,0xfc,0x4d,0x73,0x16,0x1,0x73,0x76,0x37,0x2f,0xc9,0x71,0x26,0xec,0xb0,0x18,0xcf,0x3c,0xe4,0xd7,0x57,0xa7,0x4f,0x6b,0x6f,0xa5,0xc3,0x38,0x24,0xc0,0x9b,0x86,0x62,0x1b,0xf1,0x99,0x8,0x24,0x5,0xed,0x55,0xd,0xc9,0xa9,0xf0,0x9a,0x67,0x3d,0xaa,0xa5,0xc8,0x9b,0xcc,0x89,0xb1,0x21,0x86,0x35,0x24,0xac,0x44,0x86,0x32,0x13,0x80,0x4f,0xb0,0xe4,0xd5,0xa0,0xc8,0xea,0xae,0x8c,0x19,0x5b,0x95,0x23,0xa1,0x15,0x40,0x6a,0x56,0x4e,0x65,0x2,0x50,0x15,0x67,0x36,0xc8,0xdf,0x31,0x12,0x48,0xa3,0x2c,0x6,0xd1,0xda,0xb4,0xb9,0xcf,0x14,0xc5,0x8a,0x79,0x9f,0x2c,0xa0,0x4b,0x1e,0xe6,0x8,0xb9,0xc4,0xe0,0x3,0x8c,0xb0,0xe8,0x73,0x53,0xc3,0x1d,0xa8,0x79,0xe4,0x0,0x9,0x26,0xc7,0x9a,0xe,0x57,0x24,0x74,0x3b,0x4f,0x7f,0x7a,0x72,0x45,0x6d,0x21,0xe,0x36,0xb4,0x80,0x64,0x32,0x1f,0x98,0x7b,0x8c,0x52,0x3f,0x98,0x72,0x8c,0x16,0x4d,0xc0,0x88,0xd9,0xc7,0x19,0x1f,0xc2,0xf8,0xfe,0x74,0x20,0x6e,0xfa,0x22,0x16,0xb5,0x83,0xed,0x31,0x4c,0x37,0x34,0xca,0xee,0xe2,0x42,0x4e,0xe7,0x47,0x5d,0xac,0x8c,0x7b,0x8f,0x4a,0x89,0x6d,0xdd,0x6e,0xae,0x37,0x9e,0x5b,0x98,0xc9,0xe7,0x28,0x79,0x3,0xf0,0xa8,0x3e,0xdf,0x73,0x14,0x97,0x37,0x62,0x36,0x92,0xd2,0xdd,0x44,0x7a,0x85,0x98,0x2b,0xf6,0xab,0x6,0x4f,0xf9,0x6d,0x1a,0xff,0x0,0x12,0x11,0xc9,0xab,0xe6,0x44,0x9d,0xd2,0x58,0xc8,0x68,0xde,0x34,0x28,0xc3,0xa1,0x56,0x1b,0x81,0xfd,0x68,0xb5,0xd8,0x36,0xd2,0xb1,0xcd,0xf8,0xa2,0xc4,0x3d,0xac,0x77,0x4a,0xbf,0xbd,0xb7,0x91,0x4e,0x47,0x75,0xef,0x55,0xb4,0x59,0x92,0x39,0x62,0x6c,0xfe,0xee,0x60,0x15,0xbf,0xde,0xae,0x9e,0xfe,0x1f,0x36,0xda,0x54,0x61,0x90,0x46,0x8,0x3f,0xce,0xb9,0x98,0x6d,0x9a,0xd6,0x63,0x9,0x53,0xe5,0xca,0x43,0x42,0xe0,0x70,0xae,0x39,0xc1,0xac,0xea,0xab,0x33,0x7c,0x33,0xba,0x68,0xeb,0x55,0x49,0x23,0x1f,0x85,0x5a,0x55,0x3c,0xc,0x7d,0x6a,0xbd,0x99,0x32,0x43,0x1b,0x1c,0x6e,0x1c,0x30,0xfa,0x55,0xd5,0xe3,0x93,0x8a,0xb8,0x9c,0xf3,0xbd,0xc7,0x2a,0x80,0x57,0x8e,0x32,0x49,0xfc,0xab,0x1b,0x58,0x42,0x61,0x91,0x47,0xde,0x65,0x70,0x47,0x73,0xba,0xb4,0xee,0x2f,0x2d,0xed,0x93,0x2c,0xd9,0x62,0x70,0xaa,0xbc,0x96,0x3e,0x95,0x52,0x1b,0x59,0xaf,0x59,0xa4,0x93,0x21,0x58,0x12,0xc7,0x18,0x58,0xd4,0xf5,0xa,0x4f,0x52,0x68,0x93,0xe8,0x87,0x4f,0x4f,0x79,0x8d,0xf0,0xfd,0x98,0xb7,0xb1,0x89,0x98,0x60,0xbb,0x97,0x51,0xdc,0xe3,0xbd,0x6c,0xb0,0x66,0x57,0xcf,0xdd,0x27,0xa7,0x73,0x52,0x5b,0xc4,0xb1,0xc5,0x1a,0xaa,0x81,0xb5,0x40,0x1e,0xc2,0xa6,0x8,0xb9,0xdd,0xde,0x85,0x1d,0x9,0x94,0xee,0xdb,0x21,0x82,0x11,0x1e,0x58,0x8e,0x5b,0xa0,0xf4,0x15,0x31,0x14,0xec,0x52,0x1a,0xbb,0x19,0xb6,0xdb,0x21,0x61,0x50,0x49,0xc0,0xab,0xf,0x55,0x65,0x34,0x98,0x15,0x5c,0x9a,0xa9,0x2f,0x4a,0xb3,0x21,0xc6,0x6a,0xa4,0xa7,0x8a,0x87,0xb1,0x2c,0xa5,0x27,0x5a,0x8f,0x75,0x3a,0x53,0xd6,0xa1,0x2d,0x58,0x3d,0xc8,0x14,0x9a,0x61,0x3d,0x69,0x19,0xaa,0x22,0xd4,0xac,0x31,0xc4,0xd4,0x4c,0xd4,0xa5,0xaa,0x36,0x3d,0x6a,0xac,0x68,0x86,0x93,0x48,0x4d,0x34,0x93,0x45,0x31,0xd8,0x70,0x35,0x2a,0x9a,0x82,0xa4,0x5c,0xd6,0x72,0x2,0x5d,0xd4,0xec,0xd4,0x42,0x9e,0x2b,0x32,0x59,0x20,0xcd,0x2e,0x69,0x99,0xa5,0xcd,0x20,0x1c,0x69,0xdf,0x85,0x47,0x9a,0x93,0x34,0x86,0x79,0xd9,0xe4,0xf5,0x1d,0x3b,0x54,0x4c,0x18,0xe3,0x3,0x3,0xd6,0xa6,0xc7,0x24,0xf0,0x38,0xed,0xd2,0x94,0xe,0x9f,0xae,0x7a,0x57,0xa9,0xca,0x6f,0xcc,0x40,0x8a,0x7a,0xfe,0x42,0x9f,0x86,0x39,0xed,0xed,0x52,0x7a,0xf,0x53,0xd2,0x97,0x8e,0x71,0xf8,0xfa,0xd3,0xe5,0x7,0x21,0x81,0x7f,0x97,0x7e,0xf4,0xa1,0x47,0x1f,0xe4,0x53,0xfa,0x67,0xa7,0x4e,0xf4,0x9e,0x9d,0x69,0xf2,0x8a,0xe3,0x8,0xfe,0x7d,0xa9,0x87,0xa1,0xa9,0xf,0x4e,0xdd,0x6a,0x19,0x1d,0x40,0x3c,0xd2,0x6a,0xc0,0x9d,0xc8,0x24,0x6e,0x6a,0x3c,0xd0,0x49,0x27,0x34,0x56,0x65,0x85,0x21,0x20,0xf,0x7a,0x9,0xa8,0xc9,0x27,0x9a,0x0,0x5a,0x29,0x33,0x4e,0x14,0xc4,0x2,0x86,0x3d,0xa8,0xce,0x1,0xa6,0x1a,0x0,0x29,0x33,0x46,0x68,0xa6,0x20,0x15,0x3c,0x69,0x24,0x8c,0x91,0xc6,0x37,0x49,0x2b,0xac,0x71,0x81,0xd4,0xb3,0x1c,0xa,0x81,0x7a,0xd7,0x4b,0xe1,0x78,0x2d,0xcd,0xe3,0xdd,0xcf,0x92,0x2d,0x80,0x10,0x2e,0x33,0xba,0x66,0xe3,0x3f,0x85,0x44,0x9f,0x2a,0xb9,0x51,0x5c,0xce,0xc7,0x63,0x61,0xa6,0x25,0xad,0x8d,0xad,0x98,0xe0,0xc4,0x80,0xbb,0xe,0xad,0x29,0xe5,0x8d,0x61,0xc4,0x3c,0xc9,0xee,0xdf,0x39,0x63,0x70,0xea,0xc7,0xa7,0xdd,0xe3,0xa5,0x74,0x21,0x26,0x9e,0x6f,0x99,0x59,0x54,0x80,0x38,0x27,0x0,0x7a,0xe4,0x56,0x14,0x28,0x16,0xf2,0xe1,0x7,0xdd,0xe5,0x47,0xbb,0x6,0x27,0x35,0xcb,0x1e,0xe7,0x67,0x91,0x5e,0xef,0x49,0xb3,0xb8,0xba,0x81,0xb7,0xcb,0x1b,0xcd,0xcc,0xc9,0x9,0xff,0x0,0x5b,0x83,0xd5,0xc6,0x72,0x5,0x77,0x16,0x16,0xd1,0xfd,0x86,0xde,0x2,0xaa,0xb6,0xcb,0x19,0x55,0x86,0x3e,0x14,0xae,0x7f,0x88,0xff,0x0,0x4a,0xe5,0xec,0x6d,0x51,0xaf,0x75,0xb,0xe3,0xcb,0xc8,0xff,0x0,0x67,0x8b,0x3c,0x94,0x8a,0x21,0x83,0x8f,0xad,0x75,0xda,0x7b,0x7,0xb7,0x84,0x7a,0x2,0x8,0xcf,0xbd,0x6d,0x17,0xd0,0xc2,0xa6,0xd7,0x27,0x82,0x1,0xa,0xba,0x86,0x26,0x32,0xc5,0x94,0x36,0x31,0x1a,0xe3,0x18,0x18,0xaa,0x9a,0x58,0x87,0xec,0xe4,0x24,0x4b,0xb6,0x39,0xae,0x15,0x24,0xc0,0xc3,0xae,0xf2,0x72,0xbf,0x9d,0x3f,0x50,0x93,0xe5,0x11,0x2b,0xa2,0xaa,0xec,0x96,0xe1,0x1f,0x70,0x69,0xe1,0x27,0x1e,0x5c,0x65,0x79,0xc9,0xef,0x8a,0xb1,0x14,0x6b,0x4,0x51,0xc2,0x87,0xe4,0x8c,0x10,0xbc,0x63,0xb,0x9c,0x85,0xfc,0x3a,0x56,0xc7,0x3f,0x42,0xa4,0xb6,0x70,0xa8,0xd,0xa,0x31,0x61,0xf2,0xed,0x69,0x99,0x3e,0x43,0xd4,0x6,0x15,0x1c,0x33,0xce,0xf2,0x3d,0x8d,0xcb,0x95,0x95,0xa3,0x31,0xc7,0x2c,0x6a,0x53,0xe6,0xc1,0xe5,0x4b,0x75,0xed,0x83,0x5a,0x20,0x64,0xf6,0xfa,0xd5,0x59,0x1f,0xc9,0xbc,0x8c,0xca,0xa4,0xae,0x40,0x88,0x65,0x76,0xec,0xe3,0xc,0xaa,0x3e,0x62,0xdb,0x8f,0x3e,0x82,0x90,0xef,0xd0,0xa3,0x25,0xa4,0x86,0xe6,0xce,0x1b,0xa0,0xff,0x0,0x68,0x86,0x26,0xff,0x0,0x89,0x84,0x24,0x2b,0x4d,0x2,0x8f,0x9a,0x2b,0x85,0xe8,0x43,0xe,0xf5,0x7f,0x4f,0x45,0x10,0xa0,0x1c,0x2a,0x9d,0xa9,0x9e,0xca,0x3a,0xa,0x75,0xef,0x94,0x42,0x2b,0xb6,0xd9,0x25,0x12,0x4,0xe4,0xf2,0x8b,0xf3,0x30,0xa9,0xec,0x90,0x8,0x63,0x3d,0xca,0x8c,0xe7,0xbe,0x79,0xa7,0xf,0x88,0x52,0xf8,0x6,0x5c,0xaf,0xc8,0xfe,0x80,0x67,0x8e,0xd5,0x4d,0x2d,0xc4,0xb1,0x10,0x4f,0x60,0x54,0xfa,0x1e,0xa2,0xb4,0x6e,0x40,0xf2,0xdf,0x1d,0x48,0xc0,0xa6,0x40,0x98,0x8d,0x0,0xeb,0xd4,0xfb,0x55,0x54,0x49,0xb2,0x29,0xc9,0xc5,0x15,0xec,0xbc,0xd5,0x67,0x86,0x5f,0x95,0x81,0x1b,0x48,0xc0,0xd,0x57,0x8d,0xb1,0x90,0xf3,0x2c,0x83,0x1d,0x94,0xf1,0x4c,0x68,0x11,0x99,0x9,0xe1,0xbb,0x11,0xd4,0x11,0x57,0x63,0x5c,0x2a,0xe4,0xf3,0xd0,0xd6,0x6a,0x9,0x17,0x2a,0x8d,0x91,0xc7,0x61,0x68,0xa4,0x33,0x26,0xf6,0x1c,0x82,0xfc,0xf3,0xeb,0x57,0x46,0x30,0x14,0xe,0x3b,0xe0,0x70,0x5,0x30,0x1,0xef,0xf9,0xd4,0x82,0xa9,0x23,0x26,0xef,0xb8,0xf0,0x3a,0x53,0xc5,0x30,0x53,0x85,0x50,0x85,0x34,0xc3,0x4e,0x26,0x98,0x4d,0x2,0x22,0x7a,0xab,0x29,0xab,0x2e,0x6a,0xb4,0x95,0x2c,0x65,0x39,0x2a,0xa4,0xbd,0xea,0xe4,0x98,0xe6,0xaa,0xc8,0x2a,0x18,0x9a,0x33,0x65,0xaa,0xe7,0x35,0x7a,0x54,0x1c,0xd5,0x63,0x1d,0x64,0xd6,0xa4,0xd8,0xac,0x73,0x4c,0xe4,0xf6,0xab,0x5e,0x56,0x69,0x3c,0xa0,0x28,0xe,0x52,0xb6,0xc6,0x34,0x86,0x32,0x6a,0xde,0xca,0x36,0x53,0x34,0x51,0x29,0xf9,0x46,0x9a,0x62,0x6a,0xbd,0xe5,0xd0,0x23,0xcd,0x21,0xd8,0xa1,0xe5,0xb6,0x71,0x8a,0x95,0x22,0x7f,0x4a,0xb7,0xe5,0x8a,0x50,0xb8,0xa9,0x68,0x2c,0x57,0x10,0x9a,0x70,0x88,0xd4,0xe0,0x1f,0x4a,0x5d,0xa6,0xa2,0xc2,0xb1,0x5c,0xc6,0x69,0x84,0x11,0xda,0xae,0x6d,0xa8,0xd9,0x6a,0x6c,0x1c,0xa5,0x5c,0x9a,0x76,0x4d,0x39,0x97,0xad,0x2e,0x29,0x5,0x8e,0xb,0x6e,0x3f,0x13,0x46,0xde,0xb4,0xc3,0x27,0x3e,0x94,0xdf,0x37,0x8c,0x7b,0xd7,0xa9,0x72,0xec,0xc9,0xa,0xfe,0x94,0x80,0x74,0xe7,0xa9,0xc9,0x15,0x17,0x9b,0xd7,0xd3,0xdf,0xb7,0xd2,0x98,0x65,0x3f,0x85,0x3e,0x61,0xd8,0x9c,0xb2,0x8c,0xf4,0xfe,0xb5,0x1b,0x4a,0xa3,0xbd,0x57,0x32,0x1a,0x8d,0x98,0x9a,0x9e,0x61,0xf2,0x92,0x3c,0xc4,0xf4,0xa8,0x9,0x24,0xe4,0xd0,0x4d,0x25,0x43,0x65,0x21,0x73,0x49,0x9a,0x29,0xa4,0xe3,0xea,0x68,0x18,0x31,0xed,0xf9,0xd3,0x7a,0xd1,0xd6,0x94,0x50,0x20,0x2,0x9d,0x49,0xe9,0x4b,0x40,0x8,0x69,0xb4,0xa6,0x98,0x28,0x10,0xb4,0x94,0x51,0x4c,0x7,0x2d,0x77,0x5e,0x15,0x92,0x38,0xe3,0x5b,0x57,0x85,0x72,0xcc,0x64,0x66,0x61,0xf3,0x16,0x3c,0xf1,0x5c,0x8e,0x9b,0x6f,0xf6,0xab,0xdb,0x3b,0x70,0x32,0x1e,0x50,0x58,0x7f,0xb2,0xbf,0x31,0xaf,0x50,0xb4,0x82,0xd6,0x31,0xbe,0x25,0x45,0xc9,0xf9,0xb6,0xf5,0xcf,0x4a,0xc2,0xac,0xba,0x1b,0x52,0x5f,0x68,0xd3,0x1b,0x42,0x39,0x0,0xc,0x23,0x1f,0xc8,0x57,0x1d,0x3,0x29,0x93,0x76,0xe1,0xbe,0x4b,0x89,0x8,0x19,0xf9,0x8a,0xe3,0x4,0xd7,0x4b,0x71,0x1d,0xc3,0xc3,0x33,0x7,0x31,0xa0,0x8d,0xf9,0xfe,0x26,0xe3,0xb0,0xae,0x42,0x40,0xd0,0x47,0x2d,0xbd,0x9a,0x79,0x93,0x47,0x3,0x4f,0x76,0xee,0x4e,0xe5,0x8f,0xef,0x0,0xf,0xad,0x63,0x1d,0x4d,0x76,0xd4,0xe8,0x63,0x50,0xa8,0x48,0xc7,0x3e,0x9e,0xbe,0xbc,0x55,0xdb,0x19,0x8d,0xbb,0x44,0xec,0x31,0x4,0xa5,0x90,0xc8,0x39,0x2,0x45,0x38,0xda,0xc3,0xdf,0xa8,0xfa,0x57,0x37,0x69,0x1e,0xab,0xe4,0x5b,0x94,0xbb,0x8a,0x16,0xb8,0x12,0x5c,0x2c,0x22,0x3f,0x30,0x63,0x1b,0x81,0x76,0x63,0x91,0x9a,0xd5,0xd0,0xee,0xef,0x25,0x81,0x8b,0xa1,0x77,0x4b,0x83,0x23,0xc5,0x10,0xe7,0x11,0x30,0xf,0xb0,0x1f,0xaf,0x4a,0xd2,0x2a,0xcc,0x53,0x77,0x89,0xbf,0x77,0x5,0xc4,0x93,0x5b,0xdc,0xc2,0x51,0x84,0x4b,0xc0,0xda,0xa5,0xd4,0xf5,0x3b,0x4b,0x71,0x86,0xef,0x4e,0x82,0xed,0xa4,0x73,0x1c,0xb1,0xa2,0x92,0xfb,0x23,0x74,0x6c,0xa3,0xb0,0x5d,0xc4,0x60,0xf2,0x3b,0xe3,0xe9,0x53,0xc3,0xb8,0xc4,0xac,0x63,0xf2,0xc9,0xc9,0x11,0x93,0x92,0xa0,0x9c,0x8d,0xde,0xf4,0xc9,0xed,0xd6,0x75,0x1f,0x30,0x46,0xe0,0x89,0x15,0x41,0x6c,0xf,0x7f,0xfe,0xbd,0x6d,0x73,0x97,0xc8,0xb0,0x59,0x54,0x12,0x48,0x1,0x47,0x27,0xa0,0x15,0x41,0x5d,0x6e,0x6f,0x19,0x93,0xc,0xb1,0x22,0xa8,0x90,0x60,0xed,0x2a,0x4b,0x10,0xf,0xbf,0x4f,0xff,0x0,0x55,0x2,0xcc,0x95,0x8d,0xb,0x85,0x44,0xee,0xa4,0xb9,0x94,0x7f,0xd3,0x40,0xc7,0x15,0x99,0xab,0xcb,0x3e,0x98,0xa2,0x5b,0x79,0x5c,0xf9,0xd8,0x46,0x5d,0xaa,0xa,0xaa,0x9c,0x82,0xac,0x8b,0xdb,0x3c,0xe4,0x77,0xa3,0x71,0xa8,0xf6,0x36,0xee,0x82,0xbc,0x4c,0x0,0x6,0x40,0x6,0x1b,0x1c,0xa8,0x63,0x83,0x83,0x56,0xa2,0x1b,0x51,0x40,0xe8,0x0,0x1f,0x4e,0x2a,0xb5,0xbb,0x19,0xed,0x2d,0x66,0x38,0xdd,0x34,0x71,0xb1,0xa,0x49,0x19,0x3d,0xb2,0x6a,0xd7,0x38,0x20,0x74,0x15,0xa4,0x7b,0x99,0x4d,0xf4,0x21,0x9b,0xe6,0x2a,0x83,0xb9,0xe6,0xa5,0x55,0xda,0x0,0x14,0xd5,0x3,0x25,0xb1,0xec,0x3e,0xb4,0xfa,0x64,0x8f,0x50,0x3a,0xf7,0xa9,0x97,0xad,0x42,0xa6,0xa5,0x53,0x52,0x4,0xa2,0xa4,0x15,0x8,0x35,0x20,0x34,0x8,0x90,0x52,0xd4,0x61,0xa9,0x77,0x50,0x16,0x1e,0x4d,0x46,0xc6,0x90,0xb5,0x46,0xcd,0x48,0x62,0x31,0xa8,0x1c,0xd3,0x99,0xaa,0x26,0x35,0x37,0x19,0x4,0x95,0x3,0xa,0x9d,0xcd,0x40,0xdd,0x29,0xe,0xc5,0x69,0x14,0x73,0x50,0x94,0xab,0xd,0x9a,0x8f,0x15,0x98,0xd2,0x22,0xd8,0x29,0xa,0xd4,0xdb,0x69,0x8,0xa0,0xae,0x52,0x1d,0x94,0x6c,0x15,0x2e,0x28,0xc5,0x21,0xf2,0x91,0x6c,0xa7,0x84,0xa7,0x81,0x4e,0x2,0x81,0xd8,0x8b,0x60,0xa6,0x95,0x15,0x63,0x14,0xdc,0x50,0x2e,0x52,0x20,0xa2,0x97,0x65,0x49,0x8a,0x5c,0xa,0x91,0xf2,0x91,0xec,0x14,0xd6,0x41,0x53,0x60,0x53,0x48,0x15,0x36,0xe,0x52,0xa3,0x20,0xa3,0xcb,0xfa,0x54,0xcc,0x28,0xdb,0x53,0x60,0xe5,0x3c,0xa0,0x91,0x49,0xbb,0x3,0xad,0x30,0x9f,0x7a,0x42,0x6b,0xbc,0x43,0x8b,0x66,0x9a,0x58,0xd3,0x72,0x68,0x34,0xc,0x4c,0xd0,0x68,0x34,0xd2,0x68,0x10,0x52,0x51,0x9a,0x4f,0xf2,0x6a,0x46,0x19,0xc0,0xa6,0xf2,0x4d,0x4,0xe4,0xd1,0x4c,0x42,0xd2,0xd2,0x66,0x8c,0x9a,0x6,0x2d,0x14,0xdc,0xd2,0x93,0xc5,0x0,0x35,0xa9,0x28,0xa4,0xef,0x40,0x85,0xa0,0x75,0xa2,0xa4,0x86,0x29,0x26,0x92,0x38,0xa3,0x4,0xc9,0x2b,0xac,0x71,0x8f,0x56,0x63,0x81,0x40,0x1d,0x57,0x85,0xac,0x26,0x54,0x9f,0x53,0x31,0xe5,0x33,0xf6,0x68,0xb3,0xdc,0x75,0x76,0x1f,0xca,0xbb,0x38,0x2d,0xc3,0x3c,0x53,0xa1,0x2b,0xcf,0xce,0xa7,0x95,0x6f,0x62,0x3d,0x6a,0x5d,0x36,0xc6,0x2b,0x1b,0x2b,0x4b,0x34,0xc1,0x10,0xc4,0xa8,0xc7,0x1f,0x79,0x88,0xcb,0x1f,0xc4,0xd3,0xe6,0x69,0x6c,0xff,0x0,0x79,0x1c,0x7b,0xe0,0x3f,0xeb,0x40,0xce,0xf4,0xf7,0x1e,0xd5,0xc7,0x27,0xcc,0xee,0x75,0x47,0x45,0x61,0x2f,0xe4,0xc5,0xbc,0x83,0xd5,0x71,0xfd,0x2b,0x97,0xd2,0xd5,0x2e,0x5f,0x5d,0x57,0x20,0xb4,0x93,0x79,0x2d,0x8e,0xa2,0x2f,0x2f,0x60,0xc5,0x6e,0x5e,0xdc,0xc3,0x3c,0x40,0xc2,0xea,0xea,0xc4,0x60,0xa9,0xcf,0xe0,0x6b,0x98,0xbd,0xb5,0xd5,0x34,0xeb,0x96,0xd4,0x2c,0xc,0x8f,0x13,0x82,0xf2,0x80,0xb,0xec,0xf5,0x46,0x4f,0xee,0x9e,0xa2,0x9c,0x35,0xb9,0x52,0xf7,0x52,0x66,0x89,0x3a,0xc5,0xbc,0x29,0x6d,0xf6,0x65,0x73,0x1a,0x8,0x85,0xc2,0x91,0xca,0x8e,0x1,0xe6,0xaf,0xf8,0x44,0x93,0x1d,0xea,0x3a,0x85,0x9a,0xde,0xf2,0x74,0x6e,0xe4,0x87,0x50,0x73,0x9a,0xe7,0x27,0xf1,0x2d,0xd3,0x29,0x4f,0xb0,0xaa,0xca,0x2,0xe7,0x97,0x2a,0x73,0xd3,0x6a,0xe3,0x35,0xb7,0xe1,0x68,0xb5,0x1,0x16,0xa1,0x77,0xf2,0xfd,0xa2,0x7b,0xb5,0x6f,0x25,0xd8,0x0,0xf1,0xec,0x3f,0x26,0x4f,0x7a,0xd2,0x37,0xbe,0xa6,0x72,0xd6,0x3a,0x1d,0x5e,0xa0,0x92,0xc9,0x6a,0xf1,0x46,0x5c,0x19,0x8a,0xc6,0xe5,0x3e,0xf6,0xc6,0xe0,0xfe,0x1e,0xa6,0x91,0x5,0xc4,0x10,0xc3,0x10,0x44,0x90,0x45,0x1a,0x46,0x3c,0xb3,0xb4,0x90,0xa3,0x1d,0x1b,0xfc,0x6a,0xba,0xdf,0xea,0x68,0x6d,0xcd,0xde,0x96,0xd0,0xc0,0xd1,0x33,0x5c,0x48,0x93,0x2c,0x9e,0x43,0x86,0xc0,0x52,0xa0,0x64,0xe6,0xae,0xc5,0x24,0x33,0x82,0xf0,0x49,0x1c,0x89,0x9d,0xa5,0xa3,0x60,0xc0,0x30,0xea,0xa7,0x1d,0xeb,0x43,0x1d,0x91,0xb,0xde,0x5b,0x44,0x33,0x70,0x5e,0xc,0x72,0x4c,0xa8,0xc1,0x47,0xfc,0xb,0xa5,0x43,0x2d,0xd6,0x91,0x74,0xa2,0x21,0x22,0x5c,0xe4,0x83,0xb2,0x6,0xc,0xc0,0x83,0x9e,0x71,0x5a,0xc,0x14,0xab,0x21,0x0,0xa9,0x18,0x2a,0xc0,0x10,0x47,0xb8,0x35,0x42,0xde,0xd3,0x4f,0xd3,0x1a,0xea,0x68,0xa3,0x58,0xa2,0x95,0x54,0xb9,0x8d,0x32,0x50,0x82,0x4e,0x38,0xe7,0x7,0x34,0xc4,0x68,0xc3,0xb3,0xcb,0x8f,0x6a,0x95,0xb,0x95,0xda,0xc3,0x4,0x63,0xda,0x9f,0xcb,0x1f,0x45,0xfe,0x75,0x1c,0x52,0x79,0x91,0xab,0xed,0x65,0x52,0x4e,0xc0,0xdc,0x16,0x1f,0xde,0xa7,0xee,0xad,0x16,0xc6,0xf,0x71,0xdc,0xa,0x4c,0xd3,0x49,0xef,0x49,0xb8,0x50,0x4,0xa0,0xf4,0xa7,0xab,0x62,0xab,0x86,0xa7,0x6f,0xa4,0x32,0xc8,0x6a,0x78,0x6a,0xa9,0xe6,0x53,0xc4,0x83,0xd6,0x90,0x16,0xb7,0x52,0x6e,0xaa,0xfe,0x67,0xbd,0x27,0x99,0xef,0x45,0xc0,0x9c,0xb5,0x46,0xcd,0x51,0x79,0x9e,0xf4,0xd2,0xf4,0x86,0x38,0x9a,0x61,0x34,0xc2,0xe2,0x98,0xcf,0x48,0x2c,0x23,0x9a,0x85,0x8d,0xc,0xd5,0x19,0x6a,0x45,0x24,0x34,0x9a,0x6f,0x5a,0x42,0x68,0x6,0xa0,0xbb,0xf,0xa4,0x34,0x66,0x8a,0x45,0x9,0x8a,0x31,0x4b,0x45,0x20,0x0,0x29,0xe0,0xa,0x68,0x34,0xf1,0x4c,0x2c,0x21,0x14,0xdc,0x53,0x89,0xa6,0xe6,0x81,0xd8,0x31,0x46,0x29,0x69,0x69,0xc,0x6e,0x29,0xa4,0x53,0xe9,0xa4,0xd2,0xb0,0x10,0xb0,0xa3,0x14,0xa7,0xbd,0x2d,0x4d,0x80,0xf1,0xd2,0x68,0xa4,0x7,0x26,0x97,0x20,0x57,0x61,0x90,0xa3,0x14,0x87,0x14,0x84,0xd3,0x58,0xd0,0x0,0x5a,0x9b,0x49,0x47,0x14,0x86,0x28,0xa6,0x96,0xec,0x28,0x2d,0x8e,0x7,0xe3,0x4c,0xa0,0x2e,0x3a,0x8a,0x4a,0x5a,0x64,0x85,0x2d,0x25,0x2d,0x0,0x14,0x9d,0x73,0x41,0x34,0x9e,0x94,0x0,0x52,0x52,0x9a,0x6f,0x7a,0x0,0x75,0x75,0x5e,0xc,0xd3,0xd,0xd5,0xfb,0xde,0xb8,0xfd,0xcd,0x82,0x86,0x5c,0xf4,0x33,0xbf,0xa,0x3f,0xe,0x4d,0x72,0xaa,0x9,0x20,0x1,0x92,0x4e,0x0,0xf5,0x27,0x80,0x2b,0xd6,0xb4,0x1d,0x3e,0x3d,0x2f,0x4b,0xb7,0xb7,0x69,0xf,0x9d,0x28,0x13,0xcf,0xe5,0x8c,0xb0,0x95,0xc6,0x70,0x8,0xf4,0x1c,0x56,0x55,0x25,0x64,0x69,0x4e,0x37,0x77,0x35,0xda,0x48,0x61,0x5d,0xd2,0xc8,0xaa,0x3b,0xee,0x38,0xac,0xdb,0xcb,0xdb,0x99,0x1c,0x41,0x6d,0xc,0x86,0x22,0xb9,0x67,0xfb,0xbb,0x87,0xa6,0x4f,0x6a,0xbe,0x2c,0xa3,0x25,0x58,0xc,0xe,0x18,0xbc,0x9f,0x3c,0xac,0x7d,0x3e,0x6e,0x5,0x50,0xd6,0x6e,0xc5,0x94,0x1b,0x21,0x5d,0xd7,0x13,0x9f,0x2a,0x10,0x79,0x2c,0xc7,0xb9,0xfa,0x57,0x23,0x67,0x4c,0x6c,0xd9,0x8a,0xd7,0x11,0x25,0xe7,0xd9,0x94,0x46,0xb2,0x94,0x69,0x66,0x2b,0xc4,0x48,0x47,0xa,0xd,0x4e,0x75,0xb,0xab,0x6f,0x29,0x65,0xd3,0xae,0x49,0x92,0x51,0xe,0xe8,0x8,0x74,0x0,0xf4,0x7c,0xfa,0x55,0x3b,0x5b,0x3b,0x42,0xf2,0xdb,0xcd,0x89,0x6e,0x19,0x7c,0xdb,0x96,0xe7,0x21,0xdb,0x8e,0x8,0xad,0xb,0x7b,0x4d,0x56,0xd9,0x24,0x8a,0x2b,0xb8,0x8d,0xb2,0x84,0x5b,0x61,0x32,0x33,0xcb,0x1a,0x0,0x72,0x1d,0xb3,0xcd,0x5c,0x2d,0x62,0xa7,0x72,0x94,0xfa,0x91,0x37,0x52,0xc1,0xfd,0x9d,0x72,0xc,0x71,0x17,0xf3,0xc,0x6a,0x9,0xe3,0xee,0x8f,0xff,0x0,0x5d,0x6c,0x78,0x6c,0x41,0x79,0x61,0x74,0x26,0x89,0x86,0xfb,0x92,0xc6,0x39,0xe,0xd9,0x14,0x1,0x80,0xd9,0x5e,0x45,0x61,0xdc,0x49,0xac,0xc3,0x1a,0xc7,0x29,0xb7,0xbb,0x91,0x8b,0xab,0xbc,0x47,0xcb,0x11,0xe,0xdb,0x87,0xe9,0x5a,0x9e,0x1f,0x9a,0x7b,0x54,0xd3,0x12,0x77,0x4,0xde,0xcd,0x70,0x24,0x20,0xd,0xbb,0xf0,0x14,0x28,0xfa,0x1a,0xb8,0xfc,0x44,0xd4,0xbf,0x21,0xb5,0x24,0x7a,0x9d,0x84,0x97,0x57,0x6b,0x3b,0xdd,0x58,0x47,0x0,0xd9,0x62,0x46,0x66,0x52,0xa3,0x25,0x95,0xfa,0x92,0x7d,0x2a,0xb5,0x9d,0xb6,0x87,0xaa,0xd8,0x13,0xc,0x33,0xd9,0xb,0xa7,0x32,0x4b,0x1c,0x72,0x34,0x37,0x9,0x26,0xed,0xc5,0xb6,0x83,0xde,0xb7,0xbb,0xa,0xa9,0x71,0x61,0x67,0x74,0xf1,0x4b,0x2a,0x1f,0x3a,0xd,0xc6,0x19,0x63,0x66,0x49,0x23,0x2c,0x31,0x90,0x56,0xb6,0x39,0x53,0x2a,0x58,0x5d,0x5f,0x2d,0xcd,0xe6,0x9d,0xa8,0xb2,0x7d,0xa2,0x33,0xe6,0xd9,0xb4,0x6a,0x42,0xcb,0x69,0xd1,0x4b,0x31,0xe0,0xbf,0xa8,0xad,0x41,0x9e,0x95,0x8d,0xe4,0x4c,0xeb,0x75,0xa3,0x5c,0xcd,0x23,0x95,0xb6,0x17,0x16,0x17,0x9b,0xc7,0xda,0xdd,0x47,0x52,0xc7,0xb3,0x3,0xc5,0x5d,0xd3,0x6e,0x9a,0xe6,0xd2,0xda,0x57,0x47,0x8e,0x5d,0xbe,0x5c,0xb1,0xcb,0x81,0x22,0xb2,0x12,0x84,0xb0,0xeb,0xce,0x33,0xf8,0xd3,0x6,0x8b,0x67,0x64,0x6a,0xa1,0x78,0x7,0x27,0x3,0xa0,0xfa,0x53,0x4b,0xd2,0xcf,0xc7,0x97,0xf4,0x27,0xf5,0xa8,0x33,0x45,0xec,0x67,0x6b,0x92,0xef,0xa4,0xdd,0x51,0x67,0xad,0x26,0xe3,0x45,0xc2,0xc4,0xdb,0xa8,0xdf,0x50,0xee,0x34,0x85,0xa8,0xb8,0x58,0x9b,0x79,0xf5,0xa4,0xf3,0x71,0xde,0xa0,0x2c,0x69,0xbb,0x8d,0x2b,0x8e,0xc5,0xaf,0x34,0xfa,0xd1,0xe6,0xd5,0x4d,0xf4,0x9e,0x65,0x2b,0x85,0x8b,0x9e,0x6d,0x21,0x92,0xa9,0x99,0x29,0xc,0x9e,0xf4,0x73,0x5,0x8b,0x46,0x4a,0x63,0x49,0x55,0x8c,0xa3,0xd6,0x9a,0x64,0x14,0xae,0x3e,0x52,0x62,0xf4,0xc2,0xd5,0x1e,0xfa,0x4d,0xfe,0xf4,0xae,0x52,0x43,0xc9,0xa3,0x35,0x1e,0xe1,0x49,0xba,0x90,0xc9,0xc3,0x52,0xe6,0xa0,0xdf,0x4a,0x1e,0x90,0xc9,0xf3,0x46,0x6a,0x1f,0x30,0x51,0xe6,0x50,0x3b,0x13,0x66,0x8d,0xf5,0x5f,0xcc,0xa3,0x7d,0x3,0xb1,0x63,0x76,0x69,0xc0,0xd5,0x61,0x25,0x3d,0x64,0xa2,0xe1,0x62,0xc0,0xa4,0xce,0x2a,0x3f,0x32,0x8d,0xd9,0xa0,0x7,0x96,0xa6,0x16,0x34,0x99,0xa4,0xcd,0x21,0x88,0x69,0xd4,0xc3,0x4e,0xa0,0x67,0x8d,0x66,0x93,0x26,0x92,0x8a,0xea,0x39,0xc5,0xc9,0xef,0x48,0x4e,0x69,0x9,0xa4,0xcd,0x0,0x2d,0x34,0x9c,0x7d,0x68,0x2d,0x8f,0xaf,0x6a,0x66,0x7f,0xfa,0xf4,0x80,0x5f,0xf2,0x69,0x45,0x36,0x96,0x98,0x87,0x52,0xd3,0x69,0x68,0x1,0x69,0x9,0xf4,0xa6,0x92,0x68,0xa0,0x5,0xa2,0x8a,0x28,0x10,0x13,0x48,0x29,0xf,0x26,0x9c,0x3f,0x95,0x20,0x3a,0x2f,0x8,0xe9,0xa9,0xa8,0xea,0xf0,0x19,0x31,0xe4,0xd9,0x8f,0xb4,0xc8,0xad,0xfc,0x6c,0xbf,0x75,0x40,0x3e,0xfd,0x6b,0xd6,0x95,0x0,0xe7,0x0,0x64,0xe4,0xe0,0x57,0x2f,0xe1,0xad,0x12,0x5b,0x1b,0x2d,0x26,0x47,0x11,0xa5,0xc4,0xcd,0x25,0xd4,0xac,0x46,0x5c,0x9,0x17,0xe5,0x8c,0xfd,0x5,0x74,0x56,0xd3,0xdd,0x1b,0x9b,0x9b,0x4b,0x88,0x94,0x18,0x95,0x64,0x8a,0x68,0xcf,0xc9,0x32,0x1f,0xf6,0x4f,0x20,0x8a,0xe5,0x9b,0xbb,0x3a,0x62,0xac,0x8b,0xe,0x0,0x6,0xb9,0xdd,0x50,0xcb,0x20,0xfd,0xca,0x27,0x99,0xb8,0xac,0x6e,0xc3,0x3b,0x3d,0x58,0x56,0xf5,0xd3,0x6d,0x42,0xa3,0xab,0xc,0x7d,0x7,0xad,0x61,0x5c,0x2,0xd8,0xc9,0x21,0x7,0x41,0xdd,0xbd,0xcd,0x73,0x54,0x95,0x8e,0xaa,0x11,0xbe,0xa6,0x65,0x84,0x4b,0xc,0xd3,0xc6,0x1,0x67,0xf9,0x1a,0x49,0x4f,0xfc,0xb4,0x66,0xad,0x69,0x55,0xde,0x9,0x51,0x1f,0x63,0xbc,0x6e,0xaa,0xff,0x0,0xdc,0x62,0x8,0x6,0xb3,0xdd,0xce,0x43,0xdb,0x14,0x79,0xa2,0xcb,0x18,0x73,0x8f,0x35,0x3b,0xae,0x7d,0x7d,0x29,0xc3,0x58,0xd3,0x5d,0x7,0xef,0x8c,0x72,0xe,0x1e,0x19,0x54,0x89,0x55,0xbb,0xae,0x3d,0xab,0x58,0x5d,0xc6,0xe1,0x55,0x7b,0xd6,0x31,0x9a,0x7b,0x81,0xe5,0xc5,0x35,0x9c,0x91,0x49,0x7,0xfa,0xe7,0x8c,0x86,0x89,0x80,0x18,0xdc,0xe,0x73,0xf3,0x75,0xae,0x83,0x4f,0x11,0xb6,0x9b,0xa7,0xc8,0xc8,0x18,0x47,0x7d,0x32,0x86,0xe7,0x28,0x19,0x77,0x6e,0x1f,0x95,0x73,0xd3,0xb5,0xc4,0x97,0x57,0x2f,0x6f,0x2c,0xf,0x6f,0x30,0x8f,0x7a,0x31,0x22,0x48,0xd9,0x46,0x9,0x3,0xde,0xba,0x5d,0x1,0x7c,0xdd,0x3a,0x0,0x6,0x44,0x7a,0x9b,0x6,0x1f,0xec,0xe0,0x29,0xab,0x87,0xc4,0x4d,0x4f,0x80,0xe9,0x51,0x83,0xc7,0x1b,0xf6,0x74,0x57,0x7,0xd9,0x86,0x69,0x9,0xc1,0x3d,0x3d,0x6a,0x3b,0x7d,0xab,0x4,0x68,0x8c,0x59,0x62,0x2d,0x16,0x48,0xc1,0x3b,0xe,0x29,0x19,0xfe,0x75,0x44,0x1b,0xdd,0x81,0x62,0x3,0xc,0x2a,0x3,0x82,0x4d,0x74,0x1c,0x29,0x15,0x6f,0x21,0x22,0x68,0x75,0x8,0x63,0x2d,0x75,0x6b,0x13,0xc6,0x2,0xf5,0x92,0x17,0x39,0x64,0xe7,0xf4,0xac,0xd6,0xbb,0xb5,0x97,0x56,0xd3,0xa6,0xb1,0x8e,0x49,0x2e,0xee,0xc3,0x5b,0xdf,0x20,0x24,0x14,0xb6,0x3,0xe5,0x79,0x7,0x4f,0x94,0xe2,0xb6,0x44,0xb9,0x96,0x58,0xa,0xed,0x92,0x35,0x59,0x31,0x9c,0xe6,0x36,0xe8,0xdf,0xfd,0x6a,0xa5,0xac,0x5e,0x1d,0x3b,0x4f,0xbc,0xba,0x8a,0x35,0xf3,0xd6,0x3f,0x2e,0x36,0xa,0x3e,0x56,0x95,0x82,0x6,0x62,0x3b,0xe,0xa6,0x91,0x7e,0x43,0xe0,0xbb,0xfb,0x54,0xba,0x86,0xdc,0xf9,0x76,0xd7,0x3f,0x66,0x8c,0x9e,0x8d,0xb1,0x46,0xe2,0xa7,0xeb,0x53,0x66,0xa3,0xb0,0xb5,0x4b,0x4d,0x36,0xc2,0x20,0x72,0xdb,0x37,0xbb,0x13,0x92,0xec,0xff,0x0,0x31,0x62,0x47,0xad,0x4d,0x8a,0x66,0x6f,0x71,0xb9,0xa6,0x93,0x4f,0xc5,0x26,0x29,0x0,0xc2,0x69,0x33,0x4e,0xc5,0x34,0x8a,0x40,0x37,0x34,0xd2,0x69,0xf8,0xa6,0x91,0x48,0x64,0x64,0x9a,0x69,0x35,0x26,0xda,0x69,0x14,0xc,0x8c,0x93,0x4d,0x26,0xa4,0x2b,0x4d,0x2b,0x48,0x64,0x79,0xfa,0xd2,0x12,0x6a,0x42,0xb4,0x85,0x68,0x2,0x3c,0xd2,0x64,0xd3,0xf6,0xd1,0xb6,0x90,0xc,0xcd,0x19,0x3e,0xb4,0xed,0xb4,0x6d,0xa0,0x63,0x72,0x68,0xc9,0xa5,0xdb,0x46,0xda,0x6,0x37,0x71,0xf5,0xa5,0xc9,0xa5,0xdb,0x46,0xda,0x6,0x26,0x68,0xcd,0x2e,0xda,0x5d,0xb4,0x86,0x26,0x69,0xc0,0xd2,0x6d,0xa7,0x5,0xa0,0x7,0x6,0xa7,0x6e,0xa6,0x81,0xd2,0x97,0x14,0xc0,0x76,0x68,0xcd,0x37,0x14,0x50,0x0,0x4f,0x5a,0x76,0x6a,0x33,0x4e,0xe2,0x90,0x1e,0x3b,0x4d,0x26,0x93,0x38,0xa6,0x16,0xae,0xa3,0x98,0x5c,0xf3,0x46,0x7a,0x9a,0x6f,0x5a,0x46,0x3d,0xbd,0x28,0x18,0x50,0x33,0x49,0x4b,0x40,0xb,0x4b,0x4d,0xa5,0xa0,0x7,0x66,0x94,0xd3,0x69,0xd4,0x0,0x94,0x52,0xd1,0x40,0x82,0x82,0x69,0x37,0x52,0x66,0x81,0x8b,0x5d,0xf,0x84,0xb4,0x7f,0xed,0x7d,0x56,0x21,0x20,0xcd,0xad,0x9e,0xdb,0xab,0x9f,0x46,0xa,0x7e,0x44,0xfc,0x4d,0x73,0xca,0x19,0x8a,0xaa,0xa9,0x66,0x62,0x2,0xa8,0x4,0x96,0x63,0xc0,0x0,0xa,0xf6,0x4f,0xc,0x68,0xb6,0x9a,0x7e,0x9b,0xf,0x93,0x2b,0xfd,0xaa,0x65,0x49,0x2f,0x1d,0x4e,0x8,0x9b,0x19,0xf2,0xd9,0x4f,0xf7,0x7a,0x56,0x75,0x25,0x64,0x54,0x15,0xdd,0xce,0x83,0xcb,0x56,0x1b,0x48,0xc7,0x4c,0x63,0x82,0xa7,0xb6,0x29,0x9e,0x5a,0x43,0xe6,0x4c,0xc5,0x99,0xf6,0xe0,0xb1,0xeb,0xb4,0x7d,0x29,0x56,0x47,0x47,0x48,0x66,0x2b,0xb9,0xf3,0xe4,0xb0,0xe0,0x49,0x8e,0xa3,0x1e,0xb5,0x2b,0x64,0x8f,0x6a,0xe5,0x36,0x32,0xe5,0x76,0x91,0xce,0x8,0x64,0x65,0xdc,0xcc,0x3a,0x20,0xf4,0x6,0xb0,0x75,0x29,0xe4,0x9,0x20,0x88,0x65,0xbe,0xea,0x8f,0xd2,0xb7,0xef,0x4a,0xc3,0x13,0x2c,0x60,0x2e,0xe2,0x7a,0x71,0x5c,0xc4,0xc4,0x17,0xe4,0xff,0x0,0x18,0xc7,0xe7,0x5c,0xb2,0x7a,0x9e,0x8d,0x18,0xe9,0x72,0x3b,0x5,0x22,0xe6,0xd7,0x7a,0xd,0xc5,0x24,0x19,0x5e,0x47,0x3c,0x9c,0x9f,0x5a,0xb3,0x75,0x1d,0xa4,0x17,0x73,0x5d,0x4c,0xb1,0x85,0x9a,0x25,0x54,0x77,0x50,0x42,0x48,0xf,0x3f,0x89,0x14,0x3f,0x98,0x92,0xdb,0x34,0x7f,0x2a,0xab,0xf,0x39,0xc6,0x38,0xc,0xd8,0x3,0x6f,0xa9,0xab,0x57,0x61,0x59,0x65,0x46,0x0,0xa9,0x4,0x15,0x3c,0x8c,0x57,0x42,0x7e,0xea,0x31,0x92,0xbc,0xcc,0x2b,0xc9,0xac,0x5a,0x3d,0xc9,0x24,0x3e,0x61,0x3b,0x81,0x5c,0x6,0xc8,0xec,0x6b,0x6b,0xc2,0x13,0x33,0x5b,0xdc,0xc0,0xd9,0x56,0x8e,0xf1,0xa5,0x3,0xfb,0xd1,0xe0,0x67,0xf5,0xac,0x4b,0xc8,0x4a,0x4,0x1b,0x51,0xc7,0x0,0x33,0x5,0xe,0x9f,0x53,0xdc,0x54,0xfa,0x2c,0x7a,0x94,0xf0,0xdf,0xd,0x3a,0x58,0xa3,0x9a,0x59,0x3e,0xcd,0x34,0x92,0xf2,0x62,0x86,0x4c,0xee,0x78,0xc7,0xad,0x5d,0x3d,0xc5,0x59,0x7b,0x9a,0x9d,0x74,0x92,0x47,0x14,0x10,0x48,0xe9,0x23,0x5a,0xc9,0x3c,0xad,0x27,0x93,0x96,0xf9,0x99,0xbe,0x52,0xe0,0x73,0xb6,0xa8,0x44,0xda,0x5e,0xaf,0x70,0xcd,0x69,0xd,0xc4,0x71,0x5b,0x2c,0x91,0x4d,0x75,0x19,0x92,0xdc,0x99,0x1b,0x81,0x1c,0x7e,0xbe,0xa4,0xd6,0xd4,0x30,0xac,0x16,0xf0,0x5b,0xa6,0x4a,0x43,0x12,0xc4,0x9,0xea,0xc1,0x46,0x32,0x7e,0xb4,0xbb,0x40,0x18,0xe0,0xe,0x78,0x0,0x1,0xf9,0xa,0xe8,0x38,0x53,0x20,0xb5,0xb3,0xb5,0xb3,0x46,0x58,0x43,0x92,0xe4,0x19,0x64,0x95,0xcc,0x92,0xc8,0x47,0x4d,0xce,0xdc,0xd4,0xae,0x22,0x70,0xca,0xea,0xac,0xac,0x8,0x65,0x71,0x95,0x60,0x78,0x20,0x83,0x4a,0x5e,0x35,0x2a,0x8d,0x24,0x6a,0xc7,0xa0,0x66,0x50,0x7f,0x22,0x6a,0xb2,0x4c,0x65,0xf3,0x36,0xc6,0x7e,0x49,0x1a,0x36,0x1,0xb2,0xeb,0xb4,0xf5,0x65,0xf4,0xef,0x49,0xb1,0xa5,0x71,0xd6,0xd6,0xa9,0x69,0x2,0xc3,0x13,0x39,0x80,0x48,0xed,0xa,0xb9,0xcf,0x94,0xa7,0x9f,0x2d,0x49,0xec,0x3b,0x54,0xb8,0xa7,0xa1,0xcc,0x1e,0xc1,0xb2,0x8,0xe9,0xcd,0x37,0x34,0xcc,0x9e,0xe3,0x31,0x49,0x8a,0x7f,0x14,0x50,0x4,0x64,0x53,0x71,0x52,0xe2,0x8c,0x50,0x3b,0x90,0x91,0x4d,0x22,0xa6,0x22,0x98,0x46,0x2a,0x6c,0x17,0x22,0x22,0x9a,0x56,0xa5,0xa4,0xc0,0xa2,0xc3,0xb9,0x11,0x5a,0x4d,0xb5,0x31,0x2,0x93,0x2,0x90,0xc8,0x76,0xd3,0x4a,0xd4,0xf8,0xa4,0xdb,0x40,0xc8,0x4a,0xd2,0x6d,0xa9,0xb1,0x49,0x8a,0x0,0x8b,0x6d,0x1b,0x6a,0x5c,0x51,0x81,0x40,0xc8,0x76,0xd1,0xb6,0xa5,0xdb,0x4b,0x8a,0x2c,0x4,0x1b,0x69,0x76,0xd4,0xb8,0x14,0x62,0x90,0xee,0x45,0xb6,0x8d,0xbe,0xd5,0x36,0x28,0xc0,0xe2,0x81,0xdc,0x87,0x6d,0x38,0x2d,0x49,0x81,0x46,0x28,0x18,0xcd,0xa2,0x8d,0xb4,0xec,0x52,0xd2,0x19,0x1e,0xda,0x42,0x2a,0x4e,0x29,0x28,0x2,0x12,0x29,0xd8,0xa5,0x34,0xec,0x52,0x3,0xc4,0x89,0xa4,0xa6,0xe6,0x8c,0xd7,0x59,0xca,0x38,0x9c,0x71,0x4d,0xa4,0xa2,0x80,0x16,0x8a,0x33,0x45,0x0,0x3a,0x8a,0x4a,0x3d,0x28,0x1,0xf4,0xa0,0xd3,0x33,0x4a,0xd,0x0,0x3f,0x34,0x94,0x94,0x50,0x31,0x29,0x69,0x2a,0xf6,0x97,0xa6,0xdd,0x6a,0xd7,0xb6,0xf6,0x36,0xca,0x4b,0xca,0xc3,0x73,0x63,0x2b,0x14,0x63,0xef,0x48,0xde,0xc2,0x96,0xc2,0xb7,0x43,0xa7,0xf0,0x16,0x8d,0xf6,0xbb,0xf7,0xd4,0xa5,0x11,0x98,0xac,0x8,0xf2,0x12,0x41,0x91,0x24,0xe7,0xf8,0x80,0xff,0x0,0x66,0xbd,0x32,0x7b,0x47,0x62,0xf3,0x5b,0x48,0x20,0xbb,0x23,0xfd,0x66,0x33,0x1c,0x87,0xd2,0x54,0xe8,0x7e,0xb5,0x4e,0xdb,0x4f,0xb1,0xd2,0x2d,0xac,0x2d,0xed,0x54,0x81,0x6c,0x2,0x21,0xea,0xf2,0xe7,0xef,0x13,0x8e,0xa4,0xf5,0xad,0xb0,0xb9,0x0,0xf6,0xc6,0x6b,0x96,0x4f,0x99,0xdc,0xe8,0xf8,0x55,0x8c,0x8,0x2c,0x35,0x84,0xd4,0x97,0x51,0xd4,0xaf,0x60,0x96,0x28,0xe0,0x31,0xc5,0x14,0x28,0x56,0x34,0x66,0xea,0x7e,0x6f,0xe7,0x5b,0x32,0x1c,0xc,0x8f,0x4a,0x6d,0xfd,0xa4,0x77,0xb6,0x77,0x16,0xae,0xcc,0xab,0x2a,0xe0,0x32,0x92,0xa,0xb0,0xe4,0x1e,0x2a,0x99,0x9c,0xc7,0x6c,0x4,0xf9,0x47,0x82,0x30,0x92,0x33,0x70,0xa7,0x68,0xc6,0xe0,0x7d,0xeb,0x19,0xbb,0x1a,0x42,0x3c,0xc6,0x36,0xa7,0x75,0xba,0x79,0x61,0x12,0x85,0x68,0x90,0x3e,0xd3,0x8f,0x98,0x56,0x5b,0x27,0xda,0x12,0x39,0x50,0x6d,0xd,0xca,0x9c,0xf5,0x22,0x87,0xbf,0xd1,0xef,0xee,0xc1,0x23,0x17,0x11,0x92,0xb1,0xb4,0xaa,0x57,0x78,0xff,0x0,0x60,0x9e,0x8,0xa9,0xe3,0xb4,0x58,0xd9,0x8c,0x6c,0xea,0x85,0x8b,0x4,0x27,0x2a,0xa4,0xf7,0x51,0x5c,0x92,0x76,0x3d,0x6a,0x6b,0x4b,0x21,0x6c,0xa2,0x2d,0x2c,0x92,0x48,0xdb,0x8c,0x41,0x62,0xa,0x7a,0x6,0x1c,0xee,0xfa,0xd4,0xd7,0x7,0x3b,0xb8,0xeb,0x58,0xb1,0xea,0x17,0x30,0x6a,0xb7,0x16,0xc8,0xa4,0x42,0x26,0x5,0xc2,0xa9,0x70,0xcc,0xc0,0x2e,0x18,0x2f,0x0,0x1e,0xa0,0xf5,0xad,0x6b,0xb7,0x11,0x2c,0xcf,0xfd,0xc5,0x63,0xcf,0x4c,0x8e,0x39,0xae,0xc6,0xac,0x91,0xc0,0x9d,0xe4,0xcc,0x3d,0x4e,0xe2,0x3f,0x35,0x2d,0x81,0x1b,0xf6,0xee,0x97,0x7,0xee,0x26,0x33,0xcf,0xd6,0xae,0x78,0x62,0x71,0x6f,0x25,0xe7,0x3,0x6b,0x49,0x6,0xef,0x76,0x7c,0x81,0xcd,0x61,0x85,0x49,0x7e,0xd7,0x29,0x21,0xcb,0x36,0x1,0xc6,0x19,0x89,0x39,0xe4,0xd7,0x43,0xe1,0x68,0x3,0xc3,0xac,0xee,0xf9,0x8c,0xa9,0x19,0x18,0xea,0xc,0x6d,0x95,0x0,0xd5,0x42,0xca,0x56,0xa,0x8e,0xf0,0xb9,0xdb,0xf1,0x81,0x8e,0xe3,0x22,0xa8,0x5d,0x5c,0xe2,0xe2,0xd2,0xc5,0x24,0x11,0x4d,0x74,0xb2,0x48,0x1c,0xf5,0x11,0x47,0x8d,0xc2,0x3c,0xf1,0xbc,0xe7,0x8a,0xba,0xa5,0x8a,0xa1,0x6e,0x9,0x55,0xdc,0x3d,0xf1,0x58,0x3a,0xf5,0x91,0xd5,0x7e,0xcf,0x6b,0xc,0xe6,0x1b,0xab,0x59,0x52,0xe1,0x1d,0x70,0x76,0x86,0xca,0xe5,0xb0,0x43,0xf,0x63,0x5d,0x17,0x38,0x62,0x5e,0xb9,0xb7,0xd2,0x63,0xb7,0x76,0xb9,0x48,0xc4,0x31,0xfc,0xcd,0x2c,0xa4,0x97,0xdd,0xeb,0xbb,0xae,0x4d,0x63,0xc7,0x6d,0x15,0xad,0xae,0xa1,0x7a,0xb0,0xdf,0x46,0xd7,0x73,0xc6,0x2c,0xed,0xfc,0xe6,0x13,0xb0,0x60,0x23,0x40,0x73,0xd3,0x71,0xe7,0xe9,0x57,0xed,0x34,0xcb,0x98,0xe5,0xf3,0x75,0xb,0xf9,0x2f,0xda,0x2c,0xb,0x45,0x95,0x15,0x52,0x12,0x7,0x2f,0xb4,0x70,0x5b,0xde,0xaf,0x3c,0x5b,0xe4,0x8a,0x46,0x62,0x56,0x22,0xcc,0xa9,0x80,0x41,0x90,0xf0,0x1c,0x9e,0xbc,0x73,0x8a,0x93,0x44,0xc9,0x60,0x51,0x15,0xa0,0x8c,0x92,0x4c,0x6b,0x18,0x24,0x9e,0xad,0xdf,0x34,0xcd,0xf4,0x33,0x5,0x8a,0x6c,0x90,0xb,0x2f,0xca,0x9,0x19,0x38,0x3d,0x81,0xaa,0x9e,0x6e,0x7b,0xd5,0xad,0x8c,0x24,0xb5,0x2d,0xee,0xcd,0x38,0x55,0x74,0x6c,0xd4,0xca,0x69,0x88,0x94,0x51,0x4d,0xdc,0x28,0xdd,0x40,0x85,0x22,0x98,0x69,0x77,0x52,0x13,0x9a,0x6,0x44,0xdc,0x53,0x37,0x53,0x9c,0xf5,0xaa,0xae,0xf8,0xa9,0x29,0x13,0xef,0xa3,0x75,0x55,0xf3,0x3d,0xe8,0xf3,0x29,0xc,0xb5,0xbe,0x8d,0xc2,0xaa,0xf9,0x94,0x79,0x94,0xc,0xb3,0xb8,0x52,0x6e,0x15,0x5b,0xcd,0xa3,0xcc,0xa0,0xb,0x3b,0xa9,0x37,0xa,0xad,0xe6,0x51,0xe6,0x50,0x5,0x9d,0xd4,0x6e,0xaa,0xa6,0x4a,0x3c,0xca,0x6,0x59,0xdd,0x46,0xea,0xab,0xe6,0x51,0xe6,0xd2,0x2,0xd6,0xea,0x37,0x55,0x5f,0x37,0xde,0x93,0xcc,0xa4,0x51,0x6f,0x7d,0x26,0xfa,0xab,0xe6,0xfb,0xd1,0xe6,0x8f,0x5a,0x43,0x2d,0x6f,0xa4,0xdc,0x2a,0xaf,0x9a,0x3d,0x69,0x3c,0xd1,0xeb,0x40,0x16,0xb7,0x52,0x83,0x9a,0xaa,0x1f,0x71,0xa9,0xd3,0xb5,0x0,0x48,0x5,0x4b,0xb4,0x53,0x1,0x15,0x26,0xe1,0x40,0x1e,0x10,0x29,0x33,0x43,0x1e,0xc3,0xf1,0xa6,0xd7,0x51,0xca,0x3a,0x8a,0x4a,0x5a,0x0,0x29,0x45,0x25,0x2e,0x68,0x1,0x69,0x69,0xb4,0xb4,0xc,0x5a,0x5a,0x6d,0x2d,0x0,0x3b,0x34,0x66,0x9b,0x56,0xec,0x34,0xfb,0xfd,0x4e,0xe6,0x2b,0x3b,0x18,0x1e,0x6b,0x89,0xf,0xa,0xbd,0x14,0x77,0x67,0x6e,0x80,0xa,0x40,0x45,0x6f,0x5,0xc5,0xd4,0xd0,0xdb,0xdb,0xc6,0xf2,0xcf,0x33,0x84,0x8a,0x38,0xc6,0x59,0xd8,0xf6,0x2,0xbd,0x73,0xc3,0x5a,0x1c,0x9e,0x1e,0xb7,0x78,0xe5,0x8a,0x39,0x2f,0x2e,0x42,0x49,0x71,0x22,0xb0,0xca,0xe3,0xfe,0x58,0xab,0x1e,0xc3,0xbd,0x49,0xe1,0xbf,0xd,0x69,0xbe,0x1d,0xc3,0x4e,0xe2,0xe3,0x56,0x99,0x3f,0x79,0x32,0x21,0x29,0xa,0x9f,0xf9,0x67,0xf,0xa7,0xb9,0xae,0x8e,0x2b,0x9b,0x19,0x7c,0xcc,0x4a,0x80,0xc6,0xc5,0x5d,0x65,0xf9,0x19,0x48,0xe7,0xee,0xbd,0x72,0xd4,0x9f,0x36,0x88,0xe8,0x8c,0x79,0x75,0x68,0x82,0x38,0xae,0xae,0x9e,0x33,0x3a,0xc6,0x8b,0x14,0x9b,0xe3,0xf2,0x98,0xb6,0x31,0xfd,0xe3,0xeb,0x57,0x24,0xb8,0x4d,0xed,0x4,0x2c,0x8f,0x70,0xbb,0x77,0x46,0x8,0xdc,0x8a,0xdf,0xc4,0xe2,0xaa,0x5c,0x7d,0xa7,0x50,0x82,0x58,0x74,0xf9,0xde,0xd5,0x33,0x1b,0x25,0xec,0x61,0x59,0x64,0x19,0xc9,0x58,0xc7,0xe8,0x69,0xe0,0x43,0x4,0xfe,0x54,0x36,0xec,0x6e,0xa4,0x84,0x79,0xd7,0x3b,0x78,0x3b,0x78,0xf9,0xdf,0xd7,0xb8,0x15,0x9d,0xca,0xdc,0x73,0x4e,0xf2,0xb1,0x48,0x59,0xa,0x44,0xdb,0x25,0x93,0x39,0xf9,0x87,0x55,0x0,0x77,0xae,0x77,0x56,0xb9,0x6b,0xd9,0x9a,0xd6,0x33,0xfe,0x8d,0x3,0xf,0xb4,0x9c,0xf0,0xed,0xda,0x30,0x7f,0x9d,0x6e,0xa4,0x6d,0x6d,0x6,0xc7,0x71,0x24,0x99,0x67,0x92,0x4d,0xa1,0x77,0xb1,0xe7,0x24,0xa,0xe3,0xef,0x2d,0xaf,0x6d,0xae,0xa7,0x9f,0x4f,0x70,0xf0,0xca,0xe6,0x49,0x6d,0x26,0x3c,0x17,0x3d,0x5a,0x36,0xec,0x6b,0x9,0xbe,0xe7,0x55,0x18,0x95,0x75,0x68,0x61,0x78,0x38,0x8c,0x79,0xc4,0x85,0xb7,0xa,0x30,0x77,0x76,0xc1,0x14,0xcd,0x3a,0xfa,0x78,0xd1,0xad,0x2e,0xa4,0x66,0x95,0x14,0xa1,0xde,0xa5,0x64,0x8c,0x91,0x80,0xe,0x7a,0x8f,0x7a,0xaf,0x73,0x71,0xd,0xfc,0xe9,0x5,0xe3,0x4f,0xa7,0xb2,0x73,0x16,0xf1,0x85,0x66,0xef,0xf3,0x74,0xab,0xb1,0x2d,0xd4,0x41,0x12,0xec,0x45,0x75,0x2,0xe3,0xcb,0xbc,0x8f,0x1b,0xd0,0xe,0x7f,0x79,0x8a,0x8e,0x9c,0xac,0xeb,0x4f,0x5e,0x64,0x6a,0xc1,0x67,0x6a,0x8e,0x6e,0x44,0x60,0xdc,0x14,0xda,0x64,0x24,0xfd,0x49,0xdb,0xd2,0xa0,0xbb,0x50,0xeb,0x3a,0x32,0xe4,0x32,0x32,0x91,0xd8,0xfd,0x6a,0xe5,0xbd,0xd5,0xa4,0xeb,0x88,0xa6,0x8d,0x9b,0x7,0xe5,0xce,0x1b,0xf0,0x6,0xb3,0xef,0x5c,0xa8,0x9f,0x1c,0x36,0x30,0x3e,0xa4,0xe2,0xba,0x25,0xa1,0xc9,0x4f,0x56,0xce,0x62,0x16,0x0,0x9b,0x62,0x3e,0x74,0x95,0x99,0xcf,0xe9,0x5b,0xfe,0x17,0x5b,0x83,0x36,0xa5,0x6e,0xb2,0x14,0x56,0x11,0x48,0x8,0x3,0x76,0xcd,0xd8,0x6c,0x66,0xb2,0xe7,0x85,0x4,0xbe,0x6a,0x61,0x64,0x62,0x3,0x31,0xe9,0xcf,0xb5,0x6c,0x78,0x6d,0xee,0xa3,0xd4,0x5e,0x29,0x3c,0xa6,0x86,0x6b,0x69,0xc,0x52,0x28,0xda,0xfb,0xd0,0x86,0x28,0x45,0x38,0x3b,0xc8,0xaa,0xb1,0xb4,0xe,0xd7,0x80,0xa3,0xd8,0x77,0xf4,0x15,0x83,0xd,0xb2,0x5c,0xeb,0x97,0xba,0xb2,0xb1,0x31,0x45,0x6d,0x15,0x8c,0x5,0x49,0xa,0xed,0xcb,0x48,0xde,0xe0,0x70,0x2b,0x43,0x50,0xbd,0x9a,0xca,0x8,0x1a,0x1b,0x57,0xba,0x9a,0x7b,0x84,0xb7,0x8e,0x14,0x60,0xb9,0xdd,0xc9,0x62,0x4f,0x60,0x2a,0xb,0x3b,0xb9,0x66,0x2f,0x6f,0x73,0xa,0xdb,0xdd,0xc5,0xbc,0xbc,0x51,0x9d,0xd1,0x88,0xf7,0x61,0x59,0x58,0x7e,0xbc,0x57,0x4b,0xd0,0xe0,0x8a,0xea,0x58,0x9c,0x95,0x10,0xc9,0xcf,0xee,0xa5,0x46,0x3f,0xee,0xb7,0xca,0x69,0xd3,0x3b,0x29,0x54,0x4c,0x19,0x18,0x1d,0xb9,0xfb,0xaa,0xa3,0xab,0x37,0xb5,0x2b,0xa8,0x91,0x1d,0x9,0xfb,0xea,0x57,0xf3,0x15,0x42,0x6,0xbe,0x94,0x48,0x49,0x8a,0x19,0x41,0xdb,0x2e,0xe0,0x5d,0xc0,0x4c,0xa8,0xeb,0xc0,0x1d,0xea,0x4a,0x44,0xbf,0x64,0x85,0x56,0x57,0x91,0x9a,0x49,0xb0,0xce,0xb2,0x4a,0xc7,0x21,0xb1,0xfc,0x20,0x71,0x54,0x11,0xfe,0x6e,0xb5,0x6e,0x2b,0x75,0xf3,0x5a,0x77,0x92,0x47,0x8,0xaf,0xfb,0xd9,0x18,0x90,0xcf,0x8c,0x7e,0xed,0x7a,0x5,0x15,0x92,0x92,0xe5,0xf3,0xea,0x4d,0x57,0x43,0x39,0xee,0x6d,0x44,0x6a,0x6d,0xd5,0x4a,0x19,0x1,0x15,0x36,0xea,0xb3,0x32,0x6d,0xd4,0x6e,0xa8,0x77,0x51,0xba,0x90,0x13,0x6f,0xa4,0xdd,0x51,0x16,0xa4,0xdd,0x41,0x44,0x8c,0x78,0xaa,0x53,0x36,0x2a,0x76,0x7e,0xd,0x50,0xb8,0x94,0x73,0xcd,0x4b,0x1a,0x13,0xcc,0x34,0x79,0xa6,0xaa,0xf9,0x9e,0xf4,0xbe,0x65,0x21,0x96,0x7c,0xc3,0x47,0x98,0x6a,0xb6,0xfa,0x4d,0xf4,0x80,0xb5,0xe6,0x52,0x79,0x86,0xaa,0xef,0xf7,0xa3,0xcc,0xa0,0xb,0x3e,0x61,0xa3,0xcc,0x35,0x57,0xcc,0xa4,0xf3,0x28,0x19,0x6b,0x79,0xa3,0xcc,0x35,0x57,0xcc,0xf7,0xa4,0xf3,0x28,0x2,0xd7,0x98,0x69,0x3c,0xc3,0x55,0xbc,0xca,0x6f,0x99,0x48,0x65,0xbf,0x30,0xd3,0x7c,0xc3,0x55,0xbc,0xca,0x4f,0x32,0x80,0x2d,0x6f,0x3e,0xb4,0x6f,0x35,0x57,0xcc,0xf7,0xa3,0xcc,0xf7,0xa0,0x77,0x2c,0xf9,0x86,0x93,0xcc,0x26,0xab,0xef,0xa5,0x46,0xcb,0x1,0x4a,0xc1,0x73,0x42,0x1c,0x9c,0x55,0xb5,0xe0,0xa,0xab,0x9,0xa9,0xf7,0x53,0x40,0x4b,0xba,0x9f,0xb8,0xd5,0x6d,0xde,0xf5,0x26,0xea,0x65,0x1e,0x21,0x4b,0x49,0x45,0x75,0x1c,0x62,0xe6,0x96,0x92,0x8a,0x6,0x2e,0x68,0xa4,0xa5,0xa0,0x5,0xa5,0xcd,0x36,0x96,0x80,0x1d,0x45,0x3a,0x18,0x67,0xb8,0x95,0x21,0x82,0x27,0x96,0x69,0x8,0x9,0x1c,0x6a,0x59,0x8f,0xe0,0x2b,0xa8,0xb5,0xf0,0xd0,0xb1,0x3e,0x76,0xae,0x14,0xb8,0x50,0xc9,0x6c,0xad,0x95,0xe,0x7a,0x2b,0xb0,0xea,0x7d,0xab,0x39,0xcd,0x41,0x5d,0x9a,0x53,0xa6,0xea,0x4b,0x95,0x19,0x9a,0x1e,0x89,0x3e,0xb7,0x79,0x1d,0xb0,0x9e,0x2b,0x68,0x48,0xdf,0x25,0xc4,0xfc,0x28,0x50,0x7a,0x20,0xee,0xc7,0xb5,0x7b,0x46,0x8b,0xa1,0xe9,0x5a,0x15,0xb8,0xb7,0xb1,0x8f,0x97,0x0,0xcf,0x3c,0x98,0x33,0x4e,0xde,0xac,0xde,0x9e,0x82,0xb9,0x4d,0x7,0x43,0xd3,0xf5,0x58,0xb5,0x43,0x33,0x18,0xca,0x49,0x1c,0x50,0x88,0x99,0x54,0xa1,0x51,0x92,0x42,0x8e,0xd5,0xb9,0xa6,0x4f,0x7d,0xa4,0xdd,0xc7,0xa3,0xea,0x4e,0x24,0x86,0x41,0xff,0x0,0x12,0xfb,0xb6,0x62,0x7c,0xcf,0xfa,0x66,0xd9,0xae,0x67,0x51,0xc9,0x5c,0xe9,0x74,0x94,0x1d,0x91,0xad,0x24,0x17,0xb0,0x5c,0xdc,0x5c,0x5a,0x2c,0x12,0x24,0xf1,0x83,0x24,0x52,0xb3,0x2b,0xf9,0xcb,0xd1,0x91,0xfa,0x60,0xf7,0x14,0xd9,0x85,0xeb,0x1f,0x32,0x4d,0x3a,0xd6,0xe7,0xb,0x1b,0xc6,0xab,0x22,0x89,0x56,0x4f,0xe2,0x52,0x5f,0x83,0x8e,0xd5,0x72,0x6f,0x98,0x79,0x6b,0x23,0x46,0xed,0xca,0xb2,0x8c,0x9e,0x3f,0x4a,0x45,0x2f,0x10,0x40,0xec,0x18,0x1e,0x37,0x74,0x39,0xf7,0xa8,0xb2,0x11,0x5a,0x68,0xb5,0x87,0xda,0x2d,0x67,0xb4,0xb5,0x8c,0x34,0x67,0xcb,0xf2,0x8b,0xb0,0x5f,0xe3,0x4c,0x8e,0x39,0xed,0x4c,0x33,0x41,0xa7,0x44,0xf1,0x86,0xb8,0xb8,0x91,0xa6,0x25,0x94,0x9d,0xd3,0x16,0x7e,0x78,0xf6,0x1d,0xab,0x49,0x88,0xa,0xc4,0xf4,0xa,0x49,0xfa,0xa,0xe6,0xe6,0xb6,0x9a,0xe4,0xa5,0xc2,0xdd,0x18,0x19,0x18,0xbd,0xac,0x72,0x26,0xf1,0xc1,0xea,0xc7,0xd0,0xd4,0xcd,0xdb,0x62,0xe1,0x1b,0xee,0x56,0xbc,0xf1,0x2d,0x8c,0x45,0xa3,0xb8,0x86,0xe6,0xdd,0xb3,0xb4,0x9,0x50,0x8f,0xce,0xab,0x97,0x49,0x80,0x95,0x18,0x32,0xb0,0xdc,0xac,0xa7,0x20,0x8a,0x6d,0xe3,0xff,0x0,0x6a,0xc5,0x34,0x17,0x71,0x22,0xcd,0x9,0x64,0x6d,0xbf,0x30,0xe,0x3a,0x3a,0x31,0xe7,0x6,0xb3,0x34,0x39,0xb3,0x15,0xd5,0xb3,0x11,0x9b,0x79,0x4a,0x80,0x3b,0xa,0xe4,0x9d,0xa4,0xae,0xba,0x1e,0x8d,0x18,0xf2,0xe8,0xfa,0x96,0xee,0x5a,0x22,0x63,0x8a,0x68,0x96,0x50,0xe4,0x80,0xae,0xa0,0x81,0xef,0x93,0x50,0xc3,0x69,0x67,0x6e,0x5d,0xa2,0x56,0x8c,0x13,0x89,0x23,0xde,0x5a,0x2d,0xbd,0x4f,0xca,0x6a,0x6b,0xdb,0x5f,0xb4,0x34,0xc,0xb2,0xb4,0x4f,0x19,0xdc,0xac,0xbc,0xe7,0xd8,0x8a,0x82,0xd8,0x4a,0xb7,0x6e,0x93,0x65,0x89,0x70,0x1,0x23,0x8,0xca,0x54,0xf4,0x1d,0x29,0x53,0xd5,0xad,0x4d,0x6a,0x68,0x9b,0xb1,0x7c,0x4f,0xa3,0xb2,0x8f,0xde,0xda,0x6e,0xa,0x17,0x82,0x15,0x80,0xf6,0x22,0xb2,0x2e,0x26,0x43,0x33,0x40,0x26,0x12,0xee,0x70,0xd1,0x9d,0xc0,0xb0,0x55,0xe4,0xab,0x63,0xf4,0x35,0xae,0x6d,0x55,0x46,0x52,0x38,0x24,0x41,0x82,0x23,0x9d,0x17,0x20,0xfa,0x23,0x81,0x9f,0xce,0xb1,0xe5,0x40,0x2e,0x27,0x9d,0xe2,0x58,0x55,0x14,0xaa,0x8f,0x97,0xea,0xcc,0x48,0xed,0x5d,0x93,0xb1,0xc3,0x49,0x6a,0x56,0x98,0x23,0xb2,0xee,0x19,0xda,0xf9,0xc1,0xe9,0x9a,0xb9,0xa0,0xda,0x5e,0x7f,0x6b,0xdb,0x5d,0x49,0x29,0x31,0x2a,0xca,0x76,0x9e,0x30,0x58,0x15,0xa,0x80,0x7e,0xb5,0x9e,0x1d,0xe4,0x93,0x38,0x2,0x23,0xca,0xe,0x77,0x91,0xfd,0xe3,0xed,0x5b,0xba,0x6b,0xb4,0x72,0xd9,0x90,0xb9,0xd,0x32,0x46,0xc7,0xfb,0xaa,0xdc,0x66,0xa6,0x9b,0x6a,0x56,0x35,0xac,0x93,0x89,0xb5,0xab,0x34,0x51,0xff,0x0,0x63,0x4e,0xdf,0x6a,0x32,0xa6,0xa1,0x1a,0xc0,0xb6,0xb9,0x3b,0x8c,0x83,0x6b,0x79,0x83,0xfb,0xb8,0xeb,0x4d,0x33,0x42,0x75,0xa3,0xa,0xa9,0x32,0xc7,0x64,0x59,0xd9,0x78,0x54,0x52,0xf8,0x0,0xfa,0x93,0xda,0x9f,0xa8,0x14,0x8e,0xe3,0x43,0xba,0x92,0x67,0x8e,0x38,0x6e,0xde,0x12,0x83,0x25,0x64,0x79,0xd7,0x6a,0x86,0x2,0xa0,0xb2,0x6d,0x9a,0x8e,0xbb,0xc,0xbb,0xbc,0xc6,0x9e,0x39,0xa3,0x2e,0xa1,0x43,0x45,0xb3,0x6e,0x23,0x3d,0xf1,0xde,0xbb,0x19,0xe6,0x47,0x63,0x4c,0x90,0x6,0x79,0x24,0xfd,0xd0,0x3a,0x93,0xe8,0x2a,0x9a,0xcb,0x61,0x77,0x20,0x4,0x14,0x9c,0x17,0x42,0x8c,0xdb,0x4c,0x9b,0xe,0xd6,0x1c,0x70,0xc0,0x52,0x5e,0x4b,0x71,0x6e,0x26,0x9e,0x38,0x7c,0xcf,0x2e,0xdd,0xda,0x36,0x2c,0x16,0x38,0xdb,0x1c,0x96,0xef,0x9f,0x4a,0xcf,0xb4,0x58,0x66,0xb7,0xd2,0xe0,0xd4,0xac,0x84,0x33,0x4a,0xaf,0x3d,0xac,0xab,0x21,0x27,0xcd,0x62,0x64,0x65,0x57,0x18,0x60,0xfd,0xf1,0xde,0xa4,0xa4,0x8d,0x8b,0x81,0x98,0x64,0x3,0x3,0x0,0x67,0xd0,0x28,0x3c,0xf0,0x2b,0x95,0xdd,0x86,0x38,0xe9,0xb8,0xff,0x0,0x3a,0xea,0xa1,0x49,0x2,0x98,0xe4,0x93,0xcc,0xe4,0x84,0x6c,0xd,0xfb,0x3b,0x6,0xed,0x9a,0xe6,0x24,0x53,0xe6,0x4b,0xc7,0xfc,0xb4,0x7e,0xbf,0x5a,0xae,0x84,0x34,0x5c,0xb7,0x9b,0xa7,0x35,0x7d,0x58,0x10,0x2b,0x1a,0x32,0x54,0xd5,0xe8,0xe4,0xa2,0xe6,0x76,0x2e,0xe6,0x8c,0xd4,0x4a,0xf4,0xed,0xd5,0x41,0x61,0xf9,0x34,0xd2,0xd4,0xc2,0xf5,0xc,0x92,0x7b,0xd2,0xb8,0xec,0x2c,0xb2,0xe0,0x1a,0xcc,0x9a,0x52,0x4e,0x2a,0x59,0xa4,0x27,0x3c,0xd5,0x36,0x4,0x9a,0x92,0xd2,0x1d,0xbc,0xd1,0xbe,0x99,0x83,0x4a,0x1,0xa4,0x3b,0xf,0xdd,0x46,0xef,0x7a,0x66,0xd,0x18,0x34,0x5,0x87,0x6e,0xf7,0xa4,0xdd,0x4d,0xc1,0xa4,0xc1,0xa0,0x2c,0x38,0xbd,0x34,0xbd,0x18,0x3f,0xad,0x37,0x6,0x81,0xd8,0x76,0xea,0x6e,0xf3,0x49,0x83,0x49,0xb4,0xd0,0x16,0x1d,0xb8,0xd2,0x6f,0xa6,0xe1,0xa9,0x30,0x68,0xb,0xe,0x2f,0x49,0xbc,0xe2,0x9b,0x83,0x46,0xd3,0x40,0x58,0x5d,0xe6,0x8d,0xfe,0xf4,0x9b,0x4d,0x1b,0x28,0xb,0xb,0xbc,0xfa,0xd4,0x91,0x3f,0xcd,0xd6,0xa2,0xdb,0x4f,0x40,0x41,0x14,0xc,0xd7,0x85,0xb8,0x15,0x31,0x6a,0xa5,0xb,0xf1,0x56,0x37,0x3,0x52,0x22,0x4d,0xd4,0xfd,0xde,0xe6,0xa1,0xc8,0xa7,0x65,0x7d,0x68,0x3,0xc6,0xa9,0x69,0x28,0xae,0xc3,0x90,0x5a,0x5a,0x4a,0x28,0x1,0x68,0xa4,0xe9,0xc9,0xad,0x6d,0x33,0x40,0xd6,0x35,0x56,0x53,0x6f,0x1,0x48,0xf,0x5b,0x89,0xc1,0x48,0x80,0xf6,0xcf,0x27,0xf0,0xa2,0xd7,0x6,0xd2,0x32,0xfb,0x56,0xfe,0x8d,0xe1,0x7d,0x4f,0x56,0x29,0x2b,0x83,0x6b,0x65,0x9e,0x67,0x95,0x4e,0xe7,0x1f,0xf4,0xc9,0xf,0x27,0xeb,0x5d,0x6e,0x95,0xe1,0x3d,0x23,0x4f,0xd9,0x2c,0xe3,0xed,0x97,0x4b,0x83,0xbe,0x61,0xfb,0x94,0x6f,0xf6,0x23,0xe9,0xf9,0xd7,0x48,0xbf,0xcb,0x81,0xf4,0xf4,0xad,0x55,0x3e,0xe6,0x4e,0xa7,0x62,0xb6,0x95,0xa4,0x69,0x7a,0x3c,0x42,0x3b,0x28,0x40,0x72,0x3f,0x7b,0x3c,0x98,0x69,0xe5,0x3e,0xac,0xdf,0xd0,0x56,0x16,0xb4,0x1e,0x4d,0x48,0x16,0x27,0xca,0x8a,0x16,0x91,0x47,0x62,0xc3,0xb9,0x15,0xd5,0xa9,0xc9,0x0,0x75,0xcd,0x73,0x7a,0xd4,0x6e,0xf7,0x57,0x11,0x46,0xe,0xf9,0x44,0x76,0xfc,0xc,0x95,0xde,0x40,0x24,0x57,0x26,0x31,0xf2,0xc5,0x23,0xbf,0x0,0xaf,0x36,0xce,0x87,0xc3,0xda,0x74,0x4b,0xa3,0xdb,0x97,0x4d,0xb7,0x12,0x86,0xba,0xf3,0xe3,0x24,0x38,0x2c,0x49,0x50,0x48,0xa8,0x35,0x9d,0x5e,0xcd,0xa2,0x86,0xcd,0x95,0xdf,0x51,0x89,0xe3,0x96,0x27,0xf2,0x89,0x55,0x65,0x3f,0x79,0x58,0xf1,0x93,0x5b,0x30,0xe9,0x29,0xc,0x36,0xf0,0xdb,0xdc,0x5c,0x41,0xc,0x71,0x22,0x3c,0x4a,0xf9,0x57,0x20,0xe,0x7e,0x6e,0x41,0xab,0x8b,0x65,0x67,0x88,0x83,0xc1,0x1b,0x98,0xb9,0x46,0x75,0x5,0x81,0xfa,0xd7,0x1d,0x9e,0xc6,0xce,0x5a,0xdd,0x91,0x3c,0xd2,0x6c,0xb2,0xb8,0x55,0xdc,0xa5,0x54,0xc8,0x3a,0x1d,0xac,0x39,0x38,0x3e,0x95,0x69,0x82,0xbc,0x6c,0x38,0x2a,0xca,0x7a,0xf4,0xc5,0x50,0xb9,0xd4,0x74,0xe8,0xee,0xd3,0x4e,0x79,0xa,0xdc,0xc8,0xb9,0x51,0xb1,0xb6,0x73,0xd1,0x4b,0x81,0x8c,0x9a,0x69,0xd4,0xe1,0xb7,0x54,0x85,0xad,0xef,0x25,0x60,0xc6,0x2c,0xdb,0xc5,0xbd,0x32,0x3b,0x16,0xa3,0x99,0x27,0xa8,0xb9,0x5b,0x2e,0x82,0xbe,0x5b,0xc4,0x79,0xa,0x36,0x1c,0x9c,0xe4,0x11,0xeb,0x5c,0xc6,0xa7,0x79,0x3e,0x95,0x6f,0x2e,0xc6,0xf,0x6e,0x84,0xed,0xdc,0x32,0xd1,0x82,0x7e,0xe8,0xef,0x8a,0xbd,0x26,0xa3,0x31,0x89,0xde,0xde,0x35,0x32,0x7,0xf2,0x9e,0x3b,0x82,0x51,0xd5,0x87,0x40,0xd8,0xf5,0xac,0x4b,0x99,0xd2,0xff,0x0,0xcd,0xb6,0xba,0x85,0xe0,0x91,0xf2,0x36,0x39,0x7,0x3e,0xe8,0xe3,0x8a,0xc2,0x73,0x4c,0xec,0xa3,0x4d,0x90,0x41,0x3c,0x71,0xdb,0x4b,0x7b,0x23,0x86,0x59,0x1,0x91,0x9d,0x4f,0x0,0x63,0xa5,0x66,0x68,0x2f,0xe6,0x49,0xa8,0xdc,0x28,0x3b,0x64,0x93,0xe5,0x4,0x7a,0x9c,0xf0,0x45,0x48,0x34,0x19,0xbe,0x64,0x37,0x4e,0x22,0xdd,0xf7,0x17,0x38,0x65,0xf4,0x20,0xf1,0x5a,0x96,0x96,0x70,0xd9,0xc4,0x22,0x88,0x61,0x41,0xcf,0xd4,0xd6,0x52,0x94,0x52,0x76,0xea,0x75,0xc6,0x32,0x72,0x4d,0xad,0x88,0xa7,0x90,0x86,0x84,0x48,0xe6,0x30,0xcd,0x91,0x83,0x83,0x51,0xcf,0x2a,0x89,0x6d,0x2,0xce,0xc4,0x89,0x54,0x81,0x8e,0xa0,0x9c,0x61,0x87,0xa5,0x4d,0x72,0xaa,0xf2,0x27,0xca,0xb,0x28,0x24,0x13,0xd8,0xd4,0x41,0x5a,0x5b,0x8b,0x61,0xb5,0x32,0x66,0x42,0xe5,0x7a,0x6d,0x8d,0x4b,0x7f,0x85,0x14,0x55,0xe5,0x70,0xae,0xed,0x3,0x56,0x53,0x84,0x3,0xda,0xb0,0xaf,0x94,0xc8,0x93,0x26,0x33,0xbb,0x8c,0x7a,0x8c,0x8c,0x8a,0xdb,0x9b,0xee,0xfe,0x19,0xe2,0xb0,0xee,0xd8,0xe0,0x81,0xd5,0x8e,0x1,0x3d,0xbb,0x93,0x5d,0x33,0xdc,0xe5,0xa3,0xb1,0x9b,0x6e,0x1d,0xae,0x6e,0xa4,0x61,0x81,0xb5,0x11,0x17,0xd0,0x2f,0xa5,0x74,0x5a,0x78,0xca,0xa8,0x1c,0x1c,0x8c,0x1f,0x43,0xda,0xb0,0x2d,0x26,0x8e,0x62,0xfb,0x1b,0x77,0x96,0x36,0x96,0x3,0x0,0x9c,0xf6,0xcd,0x6f,0xd8,0x9d,0xa1,0x4f,0x3,0x5,0x49,0x27,0x81,0x9c,0xf7,0xcd,0x25,0xf1,0x17,0x3f,0x87,0x42,0xee,0xa2,0xef,0x7b,0xa7,0x41,0x71,0x17,0xda,0xfc,0xdb,0xb,0xc8,0xa4,0x9a,0xde,0xd9,0x47,0x9c,0xee,0x8d,0xb4,0xa1,0x7,0xb7,0x7a,0x7e,0xb3,0x34,0x51,0xdb,0xdb,0xeb,0x10,0x40,0xf7,0x32,0xd8,0xb9,0x68,0xd6,0x12,0x72,0x22,0x93,0xe5,0x95,0xf,0xf5,0xfa,0x54,0xf6,0x66,0x77,0xbd,0xb9,0x31,0x6d,0x4b,0x38,0x1d,0x95,0x9f,0xab,0xcf,0x29,0x1c,0xa7,0xb2,0xaf,0x63,0x55,0x88,0xb7,0xb0,0xd4,0x6e,0x21,0x96,0xe5,0x95,0x35,0x60,0x5e,0xdd,0x25,0x24,0xa8,0x98,0xd,0xac,0x91,0x8f,0xba,0x3d,0x6b,0xb6,0xe7,0x99,0xd4,0xb7,0x39,0xfb,0x45,0x86,0xfd,0x8f,0x89,0x23,0x8a,0x73,0x18,0x3f,0x31,0x51,0x87,0x29,0xc5,0x3a,0x78,0xad,0xaf,0x2c,0xdb,0xe7,0x9,0x1e,0xc1,0x3c,0x13,0x2f,0x1e,0x4b,0x20,0xdc,0x92,0x29,0xf6,0xaa,0x3a,0x5f,0x9d,0x69,0xbf,0x4d,0xb9,0xb8,0x79,0xe7,0x8f,0x74,0xd0,0x48,0xea,0x15,0x5e,0xdc,0x9e,0x15,0x31,0xc7,0xcb,0xde,0xa4,0xba,0xd2,0x21,0xbc,0x85,0xa1,0x37,0x77,0x50,0xda,0x48,0x59,0xe4,0xb7,0x80,0x80,0x8c,0xe7,0x9c,0xe4,0xf3,0x8e,0xf8,0xa8,0xea,0x50,0xfd,0x1a,0xfe,0x4d,0x42,0xce,0xd2,0xed,0xd4,0x2b,0x33,0x3c,0x6f,0x8e,0x8e,0xc8,0xdb,0xb,0xaf,0xb1,0xeb,0x59,0xb7,0x2a,0x12,0xe2,0xe5,0x79,0xc2,0xcd,0x20,0xe7,0xaf,0x5e,0xf4,0xf7,0xb6,0xbb,0xd2,0x6d,0x6d,0xa0,0xd2,0x5a,0xd1,0x22,0x59,0x90,0x13,0x7d,0x2e,0x3c,0xd2,0x4e,0x58,0x67,0xfb,0xcd,0xd2,0x9b,0xa8,0x31,0xfb,0x64,0xe5,0x90,0xa3,0x38,0x8d,0xd9,0x9,0x7,0x6b,0x15,0x4,0x8c,0x8a,0xa4,0xf4,0x22,0x4b,0x52,0x1e,0x2a,0x45,0x6c,0x55,0x7d,0xe2,0x97,0x78,0xa0,0x9b,0x17,0x16,0x5c,0x53,0xfc,0xe1,0xeb,0x54,0x77,0x8a,0xb,0x81,0xde,0x8b,0x85,0x8b,0x86,0x61,0x8e,0xb5,0xb,0x49,0x9a,0xae,0x5e,0x8d,0xde,0xf4,0xae,0x57,0x28,0xf2,0x33,0x4d,0xda,0x28,0xde,0x28,0xde,0x28,0xb8,0x58,0x36,0x8a,0x36,0x8a,0x37,0xa,0x37,0x52,0xb8,0xec,0x1b,0x47,0xa5,0x2e,0xd1,0xe9,0x46,0xe1,0x46,0xe1,0x45,0xc0,0x36,0x8f,0x4a,0x4d,0x82,0x97,0x70,0xf5,0xa3,0x75,0x17,0x1,0xbb,0x7,0xa5,0x26,0xc1,0x4f,0xdc,0x29,0x32,0x28,0xb8,0x58,0x61,0x45,0xa4,0xd8,0x29,0xe5,0xa9,0xa5,0xa9,0x5c,0x6,0x14,0x14,0x9b,0x47,0xa5,0x38,0xb0,0xa4,0x2d,0x4e,0xe3,0x1b,0xb6,0x8d,0xa2,0x97,0x75,0x26,0xea,0x2e,0x2,0x6c,0x1e,0x94,0xbb,0x45,0x1b,0xa9,0x77,0xa,0x2e,0x1,0xb0,0x52,0x6d,0x2,0x8d,0xe2,0x93,0x7d,0x17,0x2,0x45,0x7d,0xb5,0x28,0x97,0xde,0xa9,0x96,0xa6,0x97,0xf7,0xa4,0x16,0x2f,0x99,0xa8,0xf3,0x87,0xad,0x67,0x17,0xf7,0xa5,0xf3,0x28,0xb,0x1e,0x6d,0x4b,0x48,0xaa,0xce,0xc1,0x51,0x4b,0xb9,0xe0,0x2a,0x2,0xc4,0xfe,0x2,0xb7,0x2c,0xfc,0x33,0xaa,0x5c,0xed,0x69,0x8a,0x5a,0xc6,0x7f,0xe7,0xa7,0x32,0x11,0xec,0x82,0xbb,0x6d,0x73,0x86,0xe6,0x27,0xd6,0xb5,0x34,0xed,0xf,0x56,0xd4,0x88,0x30,0x40,0x52,0x13,0xd6,0x79,0xf2,0x91,0x8f,0xa1,0x3c,0x9f,0xc2,0xbb,0xd,0x3f,0xc3,0xba,0x45,0x99,0x57,0x31,0x1b,0x89,0x87,0x3e,0x65,0xc6,0x18,0x3,0xea,0xa9,0xf7,0x6b,0x79,0x7b,0xe,0xc3,0x81,0xe8,0x3d,0x80,0xad,0x14,0x3b,0x91,0x29,0xf6,0x31,0xb4,0xaf,0xa,0x69,0x56,0x45,0x25,0xb9,0xff,0x0,0x4c,0xb9,0x1c,0x83,0x20,0xc4,0x28,0x7f,0xd9,0x4e,0xff,0x0,0x8d,0x74,0xa0,0x80,0x15,0x40,0x1,0x54,0x61,0x40,0x0,0x5,0x3,0xb0,0x2,0xa1,0x5a,0x92,0xb5,0x49,0x2d,0x8c,0x9b,0xb8,0xe0,0x69,0xc0,0xd4,0x79,0xa5,0xcd,0x50,0x89,0xd4,0xf2,0x39,0xef,0x58,0xa8,0xa9,0x7d,0xaa,0xc7,0x6f,0xe7,0x6d,0xf3,0x2e,0x32,0xec,0x87,0xe6,0x55,0x4e,0x78,0x6f,0x5a,0xd6,0xe,0x17,0xe6,0x3d,0x14,0x12,0x73,0xe8,0x7,0xbd,0x67,0xf8,0x72,0xe2,0xb,0xdd,0x42,0xe2,0x68,0xa0,0x62,0xb1,0x79,0xa9,0x89,0x14,0x2e,0xd7,0x27,0x19,0x1d,0xab,0xcb,0xc6,0xeb,0xca,0x7a,0xd8,0x17,0x65,0x26,0x75,0x10,0xce,0x9a,0x72,0x18,0x2f,0xaf,0xc4,0xa1,0x4e,0x62,0x9e,0x6c,0x9,0xa,0x37,0x45,0x93,0x6f,0x71,0xeb,0x5a,0x4a,0xca,0xca,0x1d,0x58,0x32,0x95,0xdc,0xa5,0x4e,0x41,0x1d,0x72,0x8,0xaa,0xf0,0xa4,0x67,0xf7,0xa9,0x14,0x60,0xb0,0xdb,0x22,0x90,0x33,0xc7,0x1c,0x1a,0x9a,0x38,0xc4,0x68,0xca,0xaa,0xa0,0x65,0x88,0x55,0xe1,0x46,0x7b,0x1,0x5c,0xe8,0xa6,0x54,0xba,0x8f,0x74,0x13,0x8,0xc2,0x89,0x65,0x5,0x91,0xb6,0x82,0x77,0x8e,0x86,0xa3,0xb5,0xf3,0x6d,0xed,0x51,0x25,0x93,0x7c,0x84,0x96,0x77,0xe8,0x59,0x8f,0x5c,0x8a,0x7c,0xb7,0x3,0x72,0x28,0xc6,0xdf,0x2c,0xbf,0xb8,0x39,0xc5,0x66,0xdf,0xde,0xed,0x88,0x0,0x7e,0x63,0xc0,0xe6,0xb1,0x9c,0xd2,0x67,0x45,0x3a,0x6e,0x49,0x23,0x1f,0x56,0x79,0xa5,0xbb,0x47,0xdc,0x14,0x2b,0x8d,0xcd,0x1f,0x1,0x94,0x7f,0x7b,0x7,0x93,0xf8,0x54,0x52,0xcd,0x14,0xc3,0xe,0xa7,0x0,0xe5,0x58,0x7d,0xe5,0x3e,0xa0,0xd2,0xb1,0x53,0xf3,0x3f,0x24,0xf3,0x93,0xcd,0x27,0x9b,0x6f,0xc0,0x61,0x81,0xd8,0x91,0xc7,0xe7,0x5c,0x8e,0x57,0x3d,0x38,0xc2,0xca,0xc3,0xa0,0x9c,0x96,0xf2,0x59,0x83,0xc,0x66,0x37,0x3f,0x79,0xbd,0x8f,0xbd,0x3a,0x59,0x8,0x60,0xbd,0x1,0x1d,0x45,0x64,0xea,0x2a,0xc8,0x85,0xad,0xe4,0x3f,0x23,0x2c,0x81,0x93,0x9d,0x98,0x3c,0xd6,0xbc,0x6e,0xb2,0x47,0x13,0x92,0xe,0xe4,0x53,0x9f,0x53,0x8a,0x99,0x2b,0x6a,0x69,0x17,0xad,0x88,0xca,0x16,0x65,0x61,0xd0,0x29,0xce,0x7a,0x9a,0xaf,0xc,0xb1,0x5b,0x33,0x4b,0x3c,0x8e,0xce,0xf9,0x8,0x8a,0xb9,0xc0,0x7,0x9d,0x81,0x7b,0x54,0xd7,0x6d,0x2f,0xd9,0xee,0x4,0x24,0x2c,0xac,0x9b,0x63,0x66,0xfb,0xa1,0xbd,0x48,0x14,0x9a,0x6c,0x4e,0x91,0xa9,0x9a,0x43,0x2c,0xa5,0xb2,0xce,0x40,0x0,0x10,0x3a,0x20,0x1d,0x5,0x75,0x61,0xd7,0x53,0x93,0x12,0xfa,0x11,0xdd,0x6a,0x17,0xa5,0x1c,0xc5,0xa6,0xdc,0xed,0xb,0x9d,0xf2,0x94,0x4c,0x8f,0x50,0xa4,0xe6,0xb2,0x5a,0xe1,0xee,0x10,0xca,0x10,0xa9,0x10,0xc8,0x36,0xb7,0xf7,0x9b,0xe5,0x18,0x3e,0xf5,0xa7,0xaf,0x4d,0x32,0xdb,0x6d,0x8c,0xe0,0xc9,0x2a,0xab,0xb7,0xa2,0xe,0x4f,0x5f,0x5a,0xc4,0x92,0x33,0x6b,0x22,0x48,0x66,0x67,0x8a,0x78,0xc3,0xcd,0xb8,0x63,0x95,0xc1,0x52,0xaa,0x3a,0xe,0xd5,0xbc,0xac,0xce,0x7a,0x77,0x5a,0x74,0x23,0x82,0xe5,0xad,0x61,0x7f,0x36,0x2,0xae,0xa5,0x23,0x8a,0x2c,0x8c,0xc8,0x48,0xec,0x45,0x69,0xda,0xd9,0x5e,0x6a,0x2,0x19,0xaf,0x66,0x96,0x8,0x91,0xd2,0x55,0xb4,0x8b,0xe5,0xfb,0xa7,0x76,0x24,0x3f,0x95,0x53,0xcc,0x2,0x48,0xa7,0xda,0x65,0x7d,0xa4,0x21,0x53,0x90,0x14,0x72,0x58,0xf,0x5a,0xdf,0xb0,0x92,0x39,0x63,0xc,0x8d,0x91,0xd3,0x3d,0xc1,0xee,0x18,0x7a,0xd2,0x52,0xea,0x91,0x53,0x8f,0x46,0xce,0x92,0xd4,0x1,0x12,0x60,0x1,0xbb,0x2e,0x40,0x18,0xe4,0xfa,0xd5,0x3d,0x4e,0x4b,0x16,0x8c,0x5a,0xca,0xb1,0x4d,0x34,0xec,0x22,0x48,0x77,0xf,0x3b,0x6b,0xfc,0xac,0xe8,0x47,0x23,0x3,0xbd,0x50,0x5b,0xfb,0xa9,0x2f,0xa2,0xd2,0x66,0xb7,0x29,0x15,0xdc,0x2c,0xf6,0x97,0x31,0x39,0x1,0xd1,0x46,0x1d,0x24,0xee,0x8,0xf6,0x35,0x6a,0xcf,0x47,0xb0,0xd2,0xfc,0xf3,0x6e,0x24,0x79,0x66,0x63,0xe6,0x4d,0x70,0xc6,0x49,0x8a,0xe7,0x21,0x37,0x1e,0x71,0x5d,0x5d,0xf,0x3e,0xd6,0x64,0x76,0x11,0x2c,0x4d,0x3d,0x93,0xee,0x78,0xec,0x9a,0x26,0xb4,0x77,0x2c,0x5b,0xca,0x61,0xc1,0xde,0x79,0x3e,0x86,0xac,0xea,0x57,0xf1,0xe9,0xd6,0x53,0xdc,0xbe,0xb,0xc,0x24,0x4a,0x7a,0x34,0xad,0xc2,0x83,0x8e,0xdd,0xcd,0x48,0x8d,0xf3,0x11,0x58,0xbe,0x2d,0xe,0x74,0xdb,0x7d,0xa4,0x94,0xfb,0x4e,0x24,0x5,0x37,0xa9,0xca,0x30,0x19,0x3,0xf4,0xa8,0x8e,0xac,0xb9,0x19,0x70,0xe9,0xda,0x86,0xb5,0x6f,0x73,0xaa,0x5c,0x5d,0x32,0x3b,0x9,0xd,0xba,0x48,0x7,0x92,0x42,0xae,0x3,0x2e,0xe,0x0,0xfc,0x2a,0xd5,0xcc,0xb2,0x3d,0xbe,0x92,0xf2,0x60,0x4b,0xf6,0x28,0xe2,0x94,0x13,0xb9,0xb7,0x46,0x48,0xce,0x7b,0x83,0xda,0xaf,0x2e,0x5b,0xc3,0xb6,0xdf,0x67,0x4,0x1,0x69,0x1,0x65,0x51,0x96,0xd8,0x87,0xe7,0x0,0xe,0xfd,0x6a,0x1d,0x50,0xdb,0xcb,0x6,0x9b,0x35,0xbb,0x46,0xd1,0x8,0xda,0x35,0x31,0xb0,0x24,0xa9,0x1,0xb2,0xc0,0x77,0xce,0x6a,0x93,0xdc,0x99,0x19,0xc2,0x46,0xa5,0xf3,0xd,0x45,0x9a,0x4c,0xd0,0x22,0x7f,0x34,0xd0,0x65,0x35,0x6,0xea,0x5c,0xd0,0x34,0x4b,0xe6,0x1a,0x5f,0x30,0xd4,0x19,0xa5,0xcd,0x21,0x93,0x79,0x86,0x97,0xcd,0x35,0x6,0xea,0x33,0x40,0x13,0x79,0x94,0xa2,0x43,0x50,0x3,0x4e,0x6,0x90,0xc9,0xc3,0x9a,0x76,0xf3,0x51,0x3,0x4a,0x29,0x1,0x26,0xe3,0x46,0xe3,0x4c,0xcd,0x19,0xa0,0x7,0xee,0x34,0x85,0x8d,0x33,0x34,0x13,0xef,0x40,0xc5,0x2c,0x69,0xa5,0x8d,0x21,0xa6,0x9a,0x43,0xb0,0xbb,0xcf,0xad,0x26,0xf3,0x4d,0x34,0xda,0x7,0x61,0xe5,0xcd,0x26,0xf6,0xa6,0x66,0x92,0x80,0xb1,0x26,0xf3,0x46,0xf3,0x51,0xd0,0x4d,0x20,0xb0,0xef,0x30,0xd3,0x4b,0x9a,0x67,0x34,0xd3,0x9a,0x62,0x1c,0x64,0x34,0xd3,0x23,0x53,0x4e,0x69,0x86,0x98,0x85,0x32,0x1a,0x5f,0x30,0xd4,0xd,0x9a,0x4c,0xb5,0x30,0x34,0xed,0xad,0x6c,0xed,0x14,0x8b,0x6b,0x68,0xa2,0xeb,0x96,0x55,0xf9,0xbf,0xef,0xa3,0xcd,0x5b,0x8f,0x24,0xfb,0xd1,0x45,0x7a,0x48,0xf2,0x59,0x6d,0x33,0x53,0xc,0xd1,0x45,0x68,0x49,0x2a,0x3,0xe9,0x4f,0xc1,0xa2,0x8a,0x62,0x17,0x9a,0x70,0xcd,0x14,0x52,0x63,0x44,0x77,0x19,0x16,0xf7,0x7,0xcb,0xde,0x3c,0xa6,0x52,0x84,0x81,0x9d,0xc3,0x6f,0x5a,0x9f,0xc3,0x5a,0x7c,0x30,0x43,0x21,0x4d,0xc0,0x2b,0x88,0xf0,0xa7,0x1f,0x74,0x64,0xff,0x0,0x3a,0x28,0xaf,0x2b,0x14,0xdf,0xb4,0x8a,0x3d,0x5c,0x2a,0xfd,0xdc,0x99,0xd4,0x22,0x5,0x18,0x51,0x8e,0xf5,0x26,0x1a,0x8a,0x2b,0x24,0x53,0x39,0x5d,0x4e,0xfd,0x2d,0xae,0xa4,0x8f,0x7,0x88,0xf6,0x60,0x74,0xd,0x9a,0xc4,0xba,0x96,0x5b,0x80,0xa,0x1e,0x47,0xaf,0x14,0x51,0x5e,0x7c,0xfe,0x2b,0x9e,0xcd,0x8,0xae,0x44,0x42,0xbf,0x6a,0x0,0x19,0xb0,0x54,0x11,0xd0,0x8a,0xb0,0xec,0x8c,0xa1,0x47,0x3b,0x86,0x31,0x8e,0x86,0x8a,0x2a,0x2f,0x73,0x64,0x86,0xfd,0x8c,0xf9,0x33,0x27,0x19,0x92,0x36,0x51,0xe8,0x72,0x3b,0xd4,0x1a,0x73,0x98,0xed,0x44,0x64,0x30,0x30,0x33,0x23,0x65,0xb7,0x1c,0x83,0xeb,0x45,0x14,0xd3,0xba,0x77,0xb,0x59,0xa1,0x4c,0xef,0x2b,0x30,0xcf,0x8,0xdd,0x3b,0x66,0xb4,0xad,0x94,0x88,0xe3,0xfa,0x13,0xf9,0xd1,0x45,0x76,0xd3,0x56,0x47,0x9f,0x5b,0x56,0x41,0x76,0x3,0x10,0x19,0x41,0x5c,0xe4,0x83,0xc8,0xe3,0x9e,0x95,0x81,0x7a,0x8d,0x35,0xcb,0x29,0x6f,0xdd,0xa4,0x5b,0x42,0xf4,0xcb,0xbe,0x47,0xcd,0x45,0x15,0x37,0xd4,0xb8,0xc5,0x38,0xa2,0x3d,0x3a,0x12,0x6d,0x23,0x56,0xf9,0x1d,0x1a,0x45,0x56,0x8c,0xfd,0xd1,0x9c,0x71,0x9a,0xd5,0xb6,0x1e,0x49,0x85,0x59,0x8c,0x52,0x10,0x23,0x8e,0x68,0xb9,0x59,0x31,0xda,0x44,0xa2,0x8a,0x69,0xb6,0xd8,0xa5,0x14,0xa2,0x6e,0xc7,0x9,0xb9,0xb9,0xd1,0x16,0x43,0x96,0xb1,0x59,0xef,0x4b,0x2f,0xcb,0xb9,0xff,0x0,0xd5,0x28,0x1e,0xdd,0xcd,0x69,0xcb,0x9e,0x73,0xcd,0x14,0x57,0x67,0x43,0xcd,0x7f,0x11,0x4f,0x7a,0xa3,0xf2,0x7a,0x9c,0xe,0xf,0x5f,0x4a,0x5b,0xdb,0x63,0x7d,0x67,0x71,0x6d,0xf7,0x4c,0x8a,0x3c,0xb6,0xce,0x36,0x48,0x39,0x56,0xe3,0xd0,0xd1,0x45,0x63,0x7d,0x4d,0x5a,0xd0,0xe5,0xac,0xb5,0xaf,0xec,0xa7,0x7b,0x1b,0xb8,0x9c,0xc6,0x8c,0xca,0x16,0x36,0xe,0xf1,0x32,0xf0,0xc7,0x27,0x0,0x86,0xeb,0x52,0x49,0x2d,0x85,0xd0,0xbd,0x9e,0xc1,0x76,0x45,0xfe,0x8a,0x65,0x4d,0x9b,0x0,0x91,0xb7,0xf3,0x8f,0x7e,0xf8,0xa2,0x8a,0xdd,0x2e,0xa6,0x52,0x2b,0x0,0x69,0x70,0x68,0xa2,0x82,0x6,0xe0,0xd2,0x60,0xd1,0x45,0x3,0x14,0x3,0x46,0xd,0x14,0x52,0x18,0x98,0x34,0xb8,0x34,0x51,0x4c,0x5,0x0,0xd3,0x80,0x34,0x51,0x4a,0xc3,0x1e,0x1,0xa5,0xc1,0xa2,0x8a,0x18,0xd0,0x73,0x41,0xcd,0x14,0x52,0x18,0xcd,0xc6,0x93,0x71,0xa2,0x8a,0x45,0xd,0xdc,0x69,0xb,0x1a,0x28,0xa0,0x63,0x4b,0x1a,0x6e,0xe3,0x45,0x14,0x58,0x3,0x34,0x64,0xd1,0x45,0x3,0x17,0x34,0xd2,0xc6,0x8a,0x28,0x13,0x19,0x93,0x46,0x4d,0x14,0x50,0x4b,0x1a,0x73,0x4d,0x39,0xa2,0x8a,0xa2,0x58,0xdc,0x53,0xc4,0x52,0x1c,0x1d,0xbd,0x7d,0xc5,0x14,0x51,0x62,0x6f,0x63,0xff,0xd9,}; 2 | #define PIC_ARRAY_SIZE 29973 3 | --------------------------------------------------------------------------------