Browse Source

Support for MICS-2710, MICS-5525 and MICS-4514, gas sensors

webui
Xose Pérez 6 years ago
parent
commit
227d641a9b
23 changed files with 9710 additions and 9219 deletions
  1. +2
    -2
      README.md
  2. +2
    -0
      code/espurna/config/arduino.h
  3. +4
    -0
      code/espurna/config/hardware.h
  4. +18
    -4
      code/espurna/config/progmem.h
  5. +49
    -0
      code/espurna/config/sensors.h
  6. +6
    -1
      code/espurna/config/types.h
  7. BIN
      code/espurna/data/index.all.html.gz
  8. BIN
      code/espurna/data/index.light.html.gz
  9. BIN
      code/espurna/data/index.rfbridge.html.gz
  10. BIN
      code/espurna/data/index.rfm69.html.gz
  11. BIN
      code/espurna/data/index.sensor.html.gz
  12. BIN
      code/espurna/data/index.small.html.gz
  13. +67
    -5
      code/espurna/sensor.ino
  14. +189
    -0
      code/espurna/sensors/MICS2710Sensor.h
  15. +144
    -0
      code/espurna/sensors/MICS5525Sensor.h
  16. +2329
    -2324
      code/espurna/static/index.all.html.gz.h
  17. +1699
    -1699
      code/espurna/static/index.light.html.gz.h
  18. +176
    -176
      code/espurna/static/index.rfbridge.html.gz.h
  19. +1535
    -1535
      code/espurna/static/index.rfm69.html.gz.h
  20. +2243
    -2238
      code/espurna/static/index.sensor.html.gz.h
  21. +1234
    -1233
      code/espurna/static/index.small.html.gz.h
  22. +5
    -2
      code/html/custom.js
  23. +8
    -0
      code/html/index.html

+ 2
- 2
README.md View File

@ -4,8 +4,8 @@ ESPurna ("spark" in Catalan) is a custom firmware for ESP8285/ESP8266 based smar
It uses the Arduino Core for ESP8266 framework and a number of 3rd party libraries.
[![version](https://img.shields.io/badge/version-1.13.3a-brightgreen.svg)](CHANGELOG.md)
[![branch](https://img.shields.io/badge/branch-dev-orange.svg)](https://github.com/xoseperez/espurna/tree/dev/)
[![travis](https://travis-ci.org/xoseperez/espurna.svg?branch=dev)](https://travis-ci.org/xoseperez/espurna)
[![branch](https://img.shields.io/badge/branch-sensors-orange.svg)](https://github.com/xoseperez/espurna/tree/sensors/)
[![travis](https://travis-ci.org/xoseperez/espurna.svg?branch=sensors)](https://travis-ci.org/xoseperez/espurna)
[![codacy](https://api.codacy.com/project/badge/Grade/c9496e25cf07434cba786b462cb15f49)](https://www.codacy.com/app/xoseperez/espurna/dashboard)
[![license](https://img.shields.io/github/license/xoseperez/espurna.svg)](LICENSE)
<br />


+ 2
- 0
code/espurna/config/arduino.h View File

@ -158,6 +158,8 @@
//#define GUVAS12SD_SUPPORT 1
//#define HLW8012_SUPPORT 1
//#define MHZ19_SUPPORT 1
//#define MICS2710_SUPPORT 1
//#define MICS5525_SUPPORT 1
//#define NTC_SUPPORT 1
//#define PMSX003_SUPPORT 1
//#define PZEM004T_SUPPORT 1


+ 4
- 0
code/espurna/config/hardware.h View File

@ -2842,6 +2842,10 @@
#define ECH1560_MISO_PIN 11
#define ECH1560_INVERTED 12
// MICS-2710 & MICS-5525 test
#define MICS2710_SUPPORT 1
#define MICS5525_SUPPORT 1
#elif defined(TRAVIS02)
// Relay provider dual


+ 18
- 4
code/espurna/config/progmem.h View File

@ -187,6 +187,12 @@ PROGMEM const char espurna_sensors[] =
#if MHZ19_SUPPORT
"MHZ19 "
#endif
#if MICS2710_SUPPORT
"MICS2710 "
#endif
#if MICS5525_SUPPORT
"MICS5525 "
#endif
#if NTC_SUPPORT
"NTC "
#endif
@ -228,7 +234,8 @@ PROGMEM const unsigned char magnitude_decimals[] = {
0, 0, 0, // PM
0, 0, 3, 3, 0,
4, 4, // Geiger Counter decimals
0
0,
0, 0, 0 // NO2, CO, Ohms
};
PROGMEM const char magnitude_unknown_topic[] = "unknown";
@ -257,6 +264,9 @@ PROGMEM const char magnitude_hcho_topic[] = "hcho";
PROGMEM const char magnitude_geiger_cpm_topic[] = "ldr_cpm"; // local dose rate [Counts per minute]
PROGMEM const char magnitude_geiger_sv_topic[] = "ldr_uSvh"; // local dose rate [µSievert per hour]
PROGMEM const char magnitude_count_topic[] = "count";
PROGMEM const char magnitude_no2_topic[] = "no2";
PROGMEM const char magnitude_co_topic[] = "co";
PROGMEM const char magnitude_resistance_topic[] = "resistance";
PROGMEM const char* const magnitude_topics[] = {
magnitude_unknown_topic, magnitude_temperature_topic, magnitude_humidity_topic,
@ -268,7 +278,8 @@ PROGMEM const char* const magnitude_topics[] = {
magnitude_co2_topic, magnitude_lux_topic, magnitude_uv_topic,
magnitude_distance_topic, magnitude_hcho_topic,
magnitude_geiger_cpm_topic, magnitude_geiger_sv_topic,
magnitude_count_topic
magnitude_count_topic,
magnitude_no2_topic, magnitude_co_topic, magnitude_resistance_topic
};
PROGMEM const char magnitude_empty[] = "";
@ -290,6 +301,7 @@ PROGMEM const char magnitude_distance[] = "m";
PROGMEM const char magnitude_mgm3[] = "mg/m³";
PROGMEM const char magnitude_geiger_cpm[] = "cpm"; // Counts per Minute: Unit of local dose rate (Geiger counting)
PROGMEM const char magnitude_geiger_sv[] = "µSv/h"; // µSievert per hour: 2nd unit of local dose rate (Geiger counting)
PROGMEM const char magnitude_resistance[] = "ohm";
PROGMEM const char* const magnitude_units[] = {
@ -301,8 +313,10 @@ PROGMEM const char* const magnitude_units[] = {
magnitude_ugm3, magnitude_ugm3, magnitude_ugm3,
magnitude_ppm, magnitude_lux, magnitude_uv,
magnitude_distance, magnitude_mgm3,
magnitude_geiger_cpm, magnitude_geiger_sv, // Geiger counter units
magnitude_empty
magnitude_geiger_cpm, magnitude_geiger_sv, // Geiger counter units
magnitude_empty, //
magnitude_ppm, magnitude_ppm, // NO2 & CO2
magnitude_resistance
};
#endif

+ 49
- 0
code/espurna/config/sensors.h View File

@ -430,6 +430,45 @@
#define MHZ19_TX_PIN 15
#endif
//------------------------------------------------------------------------------
// MICS-2710 (and MICS-4514) NO2 sensor
// Enable support by passing MICS2710_SUPPORT=1 build flag
//------------------------------------------------------------------------------
#ifndef MICS2710_SUPPORT
#define MICS2710_SUPPORT 0
#endif
#ifndef MICS2710_NOX_PIN
#define MICS2710_NOX_PIN 0
#endif
#ifndef MICS2710_PRE_PIN
#define MICS2710_PRE_PIN 4
#endif
#define MICS2710_PREHEAT_TIME 10000 // 10s preheat for NOX read
#define MICS2710_RL 820 // RL, load resistor
#define MICS2710_R0 2200 // R0 calibration value for NO2 sensor,
// Typical value as per datasheet
//------------------------------------------------------------------------------
// MICS-5525 (and MICS-4514) CO sensor
// Enable support by passing MICS5525_SUPPORT=1 build flag
//------------------------------------------------------------------------------
#ifndef MICS5525_SUPPORT
#define MICS5525_SUPPORT 1
#endif
#ifndef MICS5525_RED_PIN
#define MICS5525_RED_PIN 0
#endif
#define MICS5525_RL 820 // RL, load resistor
#define MICS5525_R0 750000 // R0 calibration value for NO2 sensor,
// Typical value as per datasheet
//------------------------------------------------------------------------------
// NTC sensor
// Enable support by passing NTC_SUPPORT=1 build flag
@ -673,6 +712,8 @@
GEIGER_SUPPORT || \
GUVAS12SD_SUPPORT || \
HLW8012_SUPPORT || \
MICS2710_SUPPORT || \
MICS5525_SUPPORT || \
MHZ19_SUPPORT || \
NTC_SUPPORT || \
SDS011_SUPPORT || \
@ -793,6 +834,14 @@
#include "../sensors/MHZ19Sensor.h"
#endif
#if MICS2710_SUPPORT
#include "../sensors/MICS2710Sensor.h"
#endif
#if MICS5525_SUPPORT
#include "../sensors/MICS5525Sensor.h"
#endif
#if NTC_SUPPORT
#include "../sensors/NTCSensor.h"
#endif


+ 6
- 1
code/espurna/config/types.h View File

@ -277,6 +277,8 @@
#define SENSOR_GEIGER_ID 0x25
#define SENSOR_NTC_ID 0x26
#define SENSOR_SDS011_ID 0x27
#define SENSOR_MICS2710_ID 0x28
#define SENSOR_MICS5525_ID 0x29
//--------------------------------------------------------------------------------
// Magnitudes
@ -308,5 +310,8 @@
#define MAGNITUDE_GEIGER_CPM 23
#define MAGNITUDE_GEIGER_SIEVERT 24
#define MAGNITUDE_COUNT 25
#define MAGNITUDE_NO2 26
#define MAGNITUDE_CO 27
#define MAGNITUDE_RESISTANCE 28
#define MAGNITUDE_MAX 26
#define MAGNITUDE_MAX 29

BIN
code/espurna/data/index.all.html.gz View File


BIN
code/espurna/data/index.light.html.gz View File


BIN
code/espurna/data/index.rfbridge.html.gz View File


BIN
code/espurna/data/index.rfm69.html.gz View File


BIN
code/espurna/data/index.sensor.html.gz View File


BIN
code/espurna/data/index.small.html.gz View File


+ 67
- 5
code/espurna/sensor.ino View File

@ -111,6 +111,7 @@ void _sensorWebSocketSendData(JsonObject& root) {
char buffer[10];
bool hasTemperature = false;
bool hasHumidity = false;
bool hasMICS = false;
JsonArray& list = root.createNestedArray("magnitudes");
for (unsigned char i=0; i<_magnitudes.size(); i++) {
@ -137,11 +138,14 @@ void _sensorWebSocketSendData(JsonObject& root) {
if (magnitude.type == MAGNITUDE_TEMPERATURE) hasTemperature = true;
if (magnitude.type == MAGNITUDE_HUMIDITY) hasHumidity = true;
#if MICS2710_SUPPORT || MICS5525_SUPPORT
if (magnitude.type == MAGNITUDE_CO || magnitude.type == MAGNITUDE_NO2) hasMICS = true;
#endif
}
if (hasTemperature) root["temperatureVisible"] = 1;
if (hasHumidity) root["humidityVisible"] = 1;
if (hasMICS) root["micsVisible"] = 1;
}
@ -522,11 +526,21 @@ void _sensorLoad() {
}
#endif
#if SDS011_SUPPORT
#if MICS2710_SUPPORT
{
SDS011Sensor * sensor = new SDS011Sensor();
sensor->setRX(SDS011_RX_PIN);
sensor->setTX(SDS011_TX_PIN);
MICS2710Sensor * sensor = new MICS2710Sensor();
sensor->setAnalogGPIO(MICS2710_NOX_PIN);
sensor->setPreHeatGPIO(MICS2710_PRE_PIN);
sensor->setRL(MICS2710_RL);
_sensors.push_back(sensor);
}
#endif
#if MICS5525_SUPPORT
{
MICS5525Sensor * sensor = new MICS5525Sensor();
sensor->setAnalogGPIO(MICS5525_RED_PIN);
sensor->setRL(MICS5525_RL);
_sensors.push_back(sensor);
}
#endif
@ -554,6 +568,15 @@ void _sensorLoad() {
}
#endif
#if SDS011_SUPPORT
{
SDS011Sensor * sensor = new SDS011Sensor();
sensor->setRX(SDS011_RX_PIN);
sensor->setTX(SDS011_TX_PIN);
_sensors.push_back(sensor);
}
#endif
#if PMSX003_SUPPORT
{
PMSX003Sensor * sensor = new PMSX003Sensor();
@ -698,6 +721,20 @@ void _sensorInit() {
// Custom initializations
#if MICS2710_SUPPORT
if (_sensors[i]->getID() == SENSOR_MICS2710_ID) {
MICS2710Sensor * sensor = (MICS2710Sensor *) _sensors[i];
sensor->setR0(getSetting("snsR0", MICS2710_R0).toInt());
}
#endif // MICS2710_SUPPORT
#if MICS5525_SUPPORT
if (_sensors[i]->getID() == SENSOR_MICS5525_ID) {
MICS5525Sensor * sensor = (MICS5525Sensor *) _sensors[i];
sensor->setR0(getSetting("snsR0", MICS5525_R0).toInt());
}
#endif // MICS5525_SUPPORT
#if EMON_ANALOG_SUPPORT
if (_sensors[i]->getID() == SENSOR_EMON_ANALOG_ID) {
@ -779,6 +816,30 @@ void _sensorConfigure() {
// Specific sensor settings
for (unsigned char i=0; i<_sensors.size(); i++) {
#if MICS2710_SUPPORT
if (_sensors[i]->getID() == SENSOR_MICS2710_ID) {
if (getSetting("snsResetCalibration", 0).toInt() == 1) {
MICS2710Sensor * sensor = (MICS2710Sensor *) _sensors[i];
sensor->calibrate();
setSetting("snsR0", sensor->getR0());
}
}
#endif // MICS2710_SUPPORT
#if MICS5525_SUPPORT
if (_sensors[i]->getID() == SENSOR_MICS5525_ID) {
if (getSetting("snsResetCalibration", 0).toInt() == 1) {
MICS5525Sensor * sensor = (MICS5525Sensor *) _sensors[i];
sensor->calibrate();
setSetting("snsR0", sensor->getR0());
}
}
#endif // MICS5525_SUPPORT
#if EMON_ANALOG_SUPPORT
if (_sensors[i]->getID() == SENSOR_EMON_ANALOG_ID) {
@ -922,6 +983,7 @@ void _sensorConfigure() {
}
// Save settings
delSetting("snsResetCalibration");
delSetting("pwrExpectedP");
delSetting("pwrExpectedC");
delSetting("pwrExpectedV");


+ 189
- 0
code/espurna/sensors/MICS2710Sensor.h View File

@ -0,0 +1,189 @@
// -----------------------------------------------------------------------------
// MICS-2710 (and MICS-4514) NO2 Analog Sensor
// Copyright (C) 2018 by Xose Pérez <xose dot perez at gmail dot com>
// -----------------------------------------------------------------------------
#if SENSOR_SUPPORT && MICS2710_SUPPORT
#pragma once
// Set ADC to TOUT pin
#undef ADC_MODE_VALUE
#define ADC_MODE_VALUE ADC_TOUT
#include "Arduino.h"
#include "BaseSensor.h"
extern "C" {
#include "../libs/fs_math.h"
}
class MICS2710Sensor : public BaseSensor {
public:
// ---------------------------------------------------------------------
// Public
// ---------------------------------------------------------------------
MICS2710Sensor(): BaseSensor() {
_count = 2;
_sensor_id = SENSOR_MICS2710_ID;
}
void calibrate() {
setR0(_getResistance());
}
// ---------------------------------------------------------------------
void setAnalogGPIO(unsigned char gpio) {
_noxGPIO = gpio;
}
unsigned char getAnalogGPIO() {
return _noxGPIO;
}
void setPreHeatGPIO(unsigned char gpio) {
_preGPIO = gpio;
}
unsigned char getPreHeatGPIO() {
return _preGPIO;
}
void setRL(unsigned long Rl) {
if (Rl > 0) _Rl = Rl;
}
unsigned long getRL() {
return _Rl;
}
void setR0(unsigned long R0) {
if (R0 > 0) _R0 = R0;
}
unsigned long getR0() {
return _R0;
}
// ---------------------------------------------------------------------
// Sensor API
// ---------------------------------------------------------------------
// Initialization method, must be idempotent
void begin() {
// Set NOX as analog input
pinMode(_noxGPIO, INPUT);
// Start pre-heating
pinMode(_preGPIO, OUTPUT);
digitalWrite(_preGPIO, HIGH);
_heating = true;
_start = millis();
_ready = true;
}
// Pre-read hook (usually to populate registers with up-to-date data)
void pre() {
// Check pre-heat time
if (_heating && (millis() - _start > MICS2710_PREHEAT_TIME)) {
digitalWrite(_preGPIO, LOW);
_heating = false;
}
if (_ready) {
_Rs = _getResistance();
}
}
// Descriptive name of the sensor
String description() {
return String("MICS-2710 @ TOUT");
}
// Descriptive name of the slot # index
String slot(unsigned char index) {
return description();
};
// Address of the sensor (it could be the GPIO or I2C address)
String address(unsigned char index) {
return String("0");
}
// Type for slot # index
unsigned char type(unsigned char index) {
if (0 == index) return MAGNITUDE_RESISTANCE;
if (1 == index) return MAGNITUDE_NO2;
return MAGNITUDE_NONE;
}
// Current value for slot # index
double value(unsigned char index) {
if (0 == index) return _Rs;
if (1 == index) return _getPPM();
return 0;
}
private:
unsigned long _getReading() {
return analogRead(_noxGPIO);
}
double _getResistance() {
// get voltage (1 == reference) from analog pin
double voltage = (float) _getReading() / 1024.0;
// schematic: 3v3 - Rs - P - Rl - GND
// V(P) = 3v3 * Rl / (Rs + Rl)
// Rs = 3v3 * Rl / V(P) - Rl = Rl * ( 3v3 / V(P) - 1)
// 3V3 voltage is cancelled
double resistance = (voltage > 0) ? _Rl * ( 1 / voltage - 1 ) : 0;
return resistance;
}
double _getPPM() {
// According to the datasheet (https://www.cdiweb.com/datasheets/e2v/mics-2710.pdf)
// there is an almost linear relation between log(Rs/R0) and log(ppm).
// Regression parameters have been calculated based on the graph
// in the datasheet with these readings:
//
// Rs/R0 NO2(ppm)
// 23 0.20
// 42 0.30
// 90 0.40
// 120 0.50
// 200 0.60
// 410 0.90
// 500 1.00
// 1000 1.30
// 10000 5.00
return fs_pow(10, 0.5170 * fs_log10(_Rs / _R0) - 1.3954);
}
bool _heating = false;
unsigned long _start = 0; // monitors the pre-heating time
unsigned long _R0 = MICS2710_R0; // R0, calikbration value at 25º
unsigned long _Rl = MICS2710_RL; // RL, load resistance
unsigned long _Rs = 0; // cached resistance
unsigned char _noxGPIO = MICS2710_PRE_PIN;
unsigned char _preGPIO = MICS2710_NOX_PIN;
};
#endif // SENSOR_SUPPORT && MICS2710_SUPPORT

+ 144
- 0
code/espurna/sensors/MICS5525Sensor.h View File

@ -0,0 +1,144 @@
// -----------------------------------------------------------------------------
// MICS-5525 (and MICS-4514) CO Analog Sensor
// Copyright (C) 2018 by Xose Pérez <xose dot perez at gmail dot com>
// -----------------------------------------------------------------------------
#if SENSOR_SUPPORT && MICS5525_SUPPORT
#pragma once
// Set ADC to TOUT pin
#undef ADC_MODE_VALUE
#define ADC_MODE_VALUE ADC_TOUT
#include "Arduino.h"
#include "BaseSensor.h"
extern "C" {
#include "../libs/fs_math.h"
}
class MICS5525Sensor : public BaseSensor {
public:
// ---------------------------------------------------------------------
// Public
// ---------------------------------------------------------------------
MICS5525Sensor(): BaseSensor() {
_count = 2;
_sensor_id = SENSOR_MICS5525_ID;
}
void calibrate() {
setR0(_getResistance());
}
// ---------------------------------------------------------------------
void setAnalogGPIO(unsigned char gpio) {
_redGPIO = gpio;
}
unsigned char getAnalogGPIO() {
return _redGPIO;
}
void setRL(unsigned long Rl) {
if (Rl > 0) _Rl = Rl;
}
unsigned long getRL() {
return _Rl;
}
void setR0(unsigned long R0) {
if (R0 > 0) _R0 = R0;
}
unsigned long getR0() {
return _R0;
}
// ---------------------------------------------------------------------
// Sensor API
// ---------------------------------------------------------------------
// Initialization method, must be idempotent
void begin() {
pinMode(_redGPIO, INPUT);
_ready = true;
}
// Pre-read hook (usually to populate registers with up-to-date data)
void pre() {
_Rs = _getResistance();
}
// Descriptive name of the sensor
String description() {
return String("MICS-5525 @ TOUT");
}
// Descriptive name of the slot # index
String slot(unsigned char index) {
return description();
};
// Address of the sensor (it could be the GPIO or I2C address)
String address(unsigned char index) {
return String("0");
}
// Type for slot # index
unsigned char type(unsigned char index) {
if (0 == index) return MAGNITUDE_RESISTANCE;
if (1 == index) return MAGNITUDE_CO;
return MAGNITUDE_NONE;
}
// Current value for slot # index
double value(unsigned char index) {
if (0 == index) return _Rs;
if (1 == index) return _getPPM();
return 0;
}
private:
unsigned long _getReading() {
return analogRead(_redGPIO);
}
double _getResistance() {
// get voltage (1 == reference) from analog pin
double voltage = (float) _getReading() / 1024.0;
// schematic: 3v3 - Rs - P - Rl - GND
// V(P) = 3v3 * Rl / (Rs + Rl)
// Rs = 3v3 * Rl / V(P) - Rl = Rl * ( 3v3 / V(P) - 1)
// 3V3 voltage is cancelled
double resistance = (voltage > 0) ? _Rl * ( 1 / voltage - 1 ) : 0;
return resistance;
}
double _getPPM() {
// According to the datasheet (https://airqualityegg.wikispaces.com/file/view/mics-5525-CO.pdf)
return 764.2976 * fs_pow(2.71828, -7.6389 * ((float) _Rs / _R0));
}
unsigned long _R0 = MICS5525_R0; // R0, calibration value at 25º on air
unsigned long _Rl = MICS5525_RL; // RL, load resistance
unsigned long _Rs = 0; // cached resistance
unsigned char _redGPIO = MICS5525_RED_PIN;
};
#endif // SENSOR_SUPPORT && MICS5525_SUPPORT

+ 2329
- 2324
code/espurna/static/index.all.html.gz.h
File diff suppressed because it is too large
View File


+ 1699
- 1699
code/espurna/static/index.light.html.gz.h
File diff suppressed because it is too large
View File


+ 176
- 176
code/espurna/static/index.rfbridge.html.gz.h View File

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

+ 1535
- 1535
code/espurna/static/index.rfm69.html.gz.h
File diff suppressed because it is too large
View File


+ 2243
- 2238
code/espurna/static/index.sensor.html.gz.h
File diff suppressed because it is too large
View File


+ 1234
- 1233
code/espurna/static/index.small.html.gz.h
File diff suppressed because it is too large
View File


+ 5
- 2
code/html/custom.js View File

@ -46,7 +46,8 @@ function sensorName(id) {
"HLW8012", "V9261F", "ECH1560", "Analog", "Digital",
"Events", "PMSX003", "BMX280", "MHZ19", "SI7021",
"SHT3X I2C", "BH1750", "PZEM004T", "AM2320 I2C", "GUVAS12SD",
"TMP3X", "Sonar", "SenseAir", "GeigerTicks", "GeigerCPM"
"TMP3X", "Sonar", "SenseAir", "GeigerTicks", "GeigerCPM",
"NTC", "SDS011", "MICS2710", "MICS5525"
];
if (1 <= id && id <= names.length) {
return names[id - 1];
@ -62,7 +63,8 @@ function magnitudeType(type) {
"Analog", "Digital", "Event",
"PM1.0", "PM2.5", "PM10", "CO2", "Lux", "UV", "Distance" , "HCHO",
"Local Dose Rate", "Local Dose Rate",
"Count"
"Count",
"NO2", "CO", "Resistance"
];
if (1 <= type && type <= types.length) {
return types[type - 1];
@ -484,6 +486,7 @@ function doUpdate() {
// Empty special fields
$(".pwrExpected").val(0);
$("input[name='snsResetCalibration']").prop("checked", false);
$("input[name='pwrResetCalibration']").prop("checked", false);
$("input[name='pwrResetE']").prop("checked", false);


+ 8
- 0
code/html/index.html View File

@ -1247,6 +1247,14 @@
</div>
</div>
<div class="pure-g module module-mics">
<label class="pure-u-1 pure-u-lg-1-4">Calibrate gas sensor</label>
<div class="pure-u-1 pure-u-lg-1-4"><input type="checkbox" name="snsResetCalibration" tabindex="55" /></div>
<div class="pure-u-0 pure-u-lg-1-2"></div>
<div class="pure-u-0 pure-u-lg-1-4"></div>
<div class="pure-u-1 pure-u-lg-3-4 hint">Move this switch to ON and press "Save" to reset gas sensor calibration. Check the sensor datasheet for calibration conditions.</div>
</div>
<legend class="module module-hlw module-cse module-emon">Energy monitor</legend>
<div class="pure-g module module-emon">


Loading…
Cancel
Save