diff --git a/examples/png_test/m5logosmall.h b/examples/m5stickc_plus_test/m5logosmall.h similarity index 100% rename from examples/png_test/m5logosmall.h rename to examples/m5stickc_plus_test/m5logosmall.h diff --git a/examples/png_test/png_test.ino b/examples/png_test/png_test.ino deleted file mode 100644 index aa434a3..0000000 --- a/examples/png_test/png_test.ino +++ /dev/null @@ -1,131 +0,0 @@ -#include -#include -#include - -//#include "snaponair.h" -#include "m5logosmall.h" - -PNG png; -SPILCD lcd; -static uint8_t ucTXBuf[1024]; -#define TFT_CS 5 -#define TFT_RST 18 -#define TFT_DC 23 -#define TFT_CLK 13 -#define TFT_MOSI 15 -#define BUTTON_A 37 -#define BUTTON_B 39 - -void Write1Byte( uint8_t Addr , uint8_t Data ) -{ - Wire1.beginTransmission(0x34); - Wire1.write(Addr); - Wire1.write(Data); - Wire1.endTransmission(); -} -uint8_t Read8bit( uint8_t Addr ) -{ - Wire1.beginTransmission(0x34); - Wire1.write(Addr); - Wire1.endTransmission(); - Wire1.requestFrom(0x34, 1); - return Wire1.read(); -} -void AxpBrightness(uint8_t brightness) -{ - if (brightness > 12) - { - brightness = 12; - } - uint8_t buf = Read8bit( 0x28 ); - Write1Byte( 0x28 , ((buf & 0x0f) | (brightness << 4)) ); -} -void AxpPowerUp() -{ - Wire1.begin(21, 22); - Wire1.setClock(400000); - // Set LDO2 & LDO3(TFT_LED & TFT) 3.0V - Write1Byte(0x28, 0xcc); - - // Set ADC sample rate to 200hz - Write1Byte(0x84, 0b11110010); - - // Set ADC to All Enable - Write1Byte(0x82, 0xff); - - // Bat charge voltage to 4.2, Current 100MA - Write1Byte(0x33, 0xc0); - - // Depending on configuration enable LDO2, LDO3, DCDC1, DCDC3. - byte buf = (Read8bit(0x12) & 0xef) | 0x4D; -// if(disableLDO3) buf &= ~(1<<3); -// if(disableLDO2) buf &= ~(1<<2); -// if(disableDCDC3) buf &= ~(1<<1); -// if(disableDCDC1) buf &= ~(1<<0); - Write1Byte(0x12, buf); - // 128ms power on, 4s power off - Write1Byte(0x36, 0x0C); - - if (1) //if(!disableRTC) - { - // Set RTC voltage to 3.3V - Write1Byte(0x91, 0xF0); - - // Set GPIO0 to LDO - Write1Byte(0x90, 0x02); - } - - // Disable vbus hold limit - Write1Byte(0x30, 0x80); - - // Set temperature protection - Write1Byte(0x39, 0xfc); - - // Enable RTC BAT charge -// Write1Byte(0x35, 0xa2 & (disableRTC ? 0x7F : 0xFF)); - Write1Byte(0x35, 0xa2); - // Enable bat detection - Write1Byte(0x32, 0x46); - - // Set Power off voltage 3.0v - Write1Byte(0x31 , (Read8bit(0x31) & 0xf8) | (1 << 2)); - -} /* AxpPowerUp() */ - -void PNGDraw(PNGDRAW *pDraw) -{ -uint16_t usPixels[320]; - - png.getLineAsRGB565(pDraw, usPixels, PNG_RGB565_BIG_ENDIAN, 0xffffffff); - spilcdSetPosition(&lcd, 0, pDraw->y, pDraw->iWidth, 1, DRAW_TO_LCD); - spilcdWriteDataBlock(&lcd, (uint8_t *)usPixels, pDraw->iWidth*2, DRAW_TO_LCD | DRAW_WITH_DMA); -} /* PNGDraw() */ - -void setup() { - AxpPowerUp(); - AxpBrightness(7); // turn on backlight (0-12) - spilcdSetTXBuffer(ucTXBuf, sizeof(ucTXBuf)); - spilcdInit(&lcd, LCD_ST7789_135, FLAGS_NONE, 40000000, TFT_CS, TFT_DC, TFT_RST, -1, -1, TFT_MOSI, TFT_CLK); // M5Stick-C plus pin numbering, 40Mhz - spilcdSetOrientation(&lcd, LCD_ORIENTATION_90); - spilcdFill(&lcd, 0, DRAW_TO_LCD); - spilcdWriteString(&lcd, 0, 4, (char *)"PNG Test", 0xffff, 0, FONT_12x16, DRAW_TO_LCD); - Serial.begin(115200); - delay(2000); -} - -void loop() { - int rc; - ulong ulTime; - spilcdFill(&lcd, 0, DRAW_TO_LCD); - rc = png.openRAM((uint8_t *)m5logosmall, sizeof(m5logosmall), PNGDraw); -// rc = png.openRAM((uint8_t *)snaponair, sizeof(snaponair), PNGDraw); - if (rc == PNG_SUCCESS) { - Serial.printf("image specs: (%d x %d), %d bpp, pixel type: %d\n", png.getWidth(), png.getHeight(), png.getBpp(), png.getPixelType()); - ulTime = millis(); - rc = png.decode(NULL, 0); - ulTime = millis() - ulTime; - png.close(); - Serial.printf("Decode time = %dms\n", (int)ulTime); - } - delay(2000); -} /* loop() */ diff --git a/examples/png_test/snaponair.h b/examples/png_test/snaponair.h deleted file mode 100644 index 0cd80fe..0000000 --- a/examples/png_test/snaponair.h +++ /dev/null @@ -1,403 +0,0 @@ -// -// snaponair -// Data size = 6257 bytes -// -// PNG, Compression=Flate, Size: 160 x 115, 32-Bpp -// -// for non-Arduino builds... -#ifndef PROGMEM -#define PROGMEM -#endif -const uint8_t snaponair[] PROGMEM = { - 0x89,0x50,0x4e,0x47,0x0d,0x0a,0x1a,0x0a,0x00,0x00,0x00,0x0d,0x49,0x48,0x44,0x52, - 0x00,0x00,0x00,0xa0,0x00,0x00,0x00,0x73,0x08,0x06,0x00,0x00,0x00,0x1f,0x65,0x09, - 0xac,0x00,0x00,0x18,0x38,0x49,0x44,0x41,0x54,0x78,0xda,0xed,0x9d,0x79,0x74,0x54, - 0xd7,0x7d,0xc7,0x3f,0x77,0x66,0xa4,0x19,0xed,0x1a,0x89,0x7d,0x19,0xb0,0x00,0xe3, - 0x78,0x01,0x83,0xf0,0xee,0xb8,0x6e,0x24,0x9c,0xe4,0x64,0x71,0x1a,0x47,0xa4,0x27, - 0x5b,0xdd,0x93,0x53,0x68,0x9c,0x48,0x8e,0xe2,0xe3,0x88,0xd8,0x75,0x70,0x92,0xa6, - 0x95,0x9a,0x36,0x60,0x70,0x93,0xa2,0xf6,0xb8,0x38,0x4e,0x4e,0x6b,0x94,0x26,0x24, - 0xcd,0x8e,0x64,0x13,0xc7,0xd8,0xb5,0x8d,0x02,0x38,0xde,0xb1,0x84,0x10,0x20,0x10, - 0x20,0x8d,0xf6,0x6d,0x96,0x5f,0xff,0x98,0x3b,0xf0,0x34,0xcc,0x8c,0x66,0x46,0x9a, - 0x41,0x23,0xde,0x97,0xa3,0x23,0xf1,0xde,0xbb,0xef,0xdd,0xe5,0xfb,0x7e,0xdb,0xfd, - 0xdd,0xfb,0xc0,0x84,0x09,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x09,0x13,0xd3, - 0x1a,0x22,0x72,0xb3,0x88,0xb4,0x8b,0xc8,0x3f,0xcf,0x84,0xf6,0xd8,0xcc,0x21,0x4d, - 0x0b,0xd2,0x59,0x80,0x1c,0xc0,0x0b,0x38,0x80,0xc5,0xc0,0x6c,0x11,0xb1,0x02,0xd9, - 0x80,0x47,0x29,0x35,0x92,0x8e,0x6d,0xb3,0x98,0xc3,0x9b,0x5c,0x34,0xe1,0xfa,0x40, - 0x13,0xae,0x3d,0x4d,0xb8,0xbe,0x1a,0x03,0xd1,0x94,0x88,0x38,0x45,0xa4,0x20,0xe4, - 0xd4,0x32,0xa0,0x0d,0xf8,0x1e,0x30,0xa8,0x8f,0xf5,0x01,0xb7,0xe8,0xe3,0x8f,0x4e, - 0x51,0x5d,0xcb,0x9a,0x70,0xfd,0xb4,0x09,0xd7,0x43,0x4d,0xb8,0x2c,0x26,0x01,0xd3, - 0x9f,0x7c,0x99,0xc0,0x7d,0xc0,0x0a,0xe0,0x33,0x4d,0xb8,0x56,0x45,0x20,0xde,0x2c, - 0x11,0x99,0x0d,0xe4,0x01,0xaf,0x01,0xcf,0x88,0x88,0x45,0x44,0xe6,0x8a,0x88,0x13, - 0xb0,0x02,0x45,0x40,0x01,0x20,0xc1,0x62,0x40,0xa6,0x3e,0x9e,0x29,0x22,0x2b,0x45, - 0xe4,0x51,0x11,0xb9,0x5d,0x44,0xec,0xba,0x6c,0x56,0xc8,0x73,0x3e,0x2a,0x22,0x5b, - 0x44,0x64,0x69,0x98,0xba,0xda,0x74,0x5d,0xaf,0x04,0x3e,0x05,0xac,0x35,0x09,0x98, - 0xfe,0xd8,0x09,0xec,0x2f,0xa3,0xfd,0x1a,0xe0,0x93,0x8e,0x25,0x0b,0xff,0xf7,0xe0, - 0x5d,0x9f,0x79,0x54,0x44,0x6c,0x22,0xf2,0x15,0x11,0xf9,0xa6,0x88,0xe4,0x03,0xfb, - 0x80,0x83,0x40,0x3e,0x90,0x0b,0x64,0x01,0xb3,0x81,0x77,0x80,0x1f,0x01,0xa3,0xfa, - 0x7e,0xbe,0x50,0xee,0xea,0xdf,0x43,0xc0,0xb5,0xc0,0x16,0xe0,0x66,0xe0,0xc3,0x40, - 0x2b,0xf0,0x01,0x11,0xb9,0x53,0x44,0xea,0x44,0x64,0x39,0xf0,0x31,0x2d,0x2d,0x17, - 0x88,0xc8,0x83,0x22,0xb2,0x4f,0x44,0x56,0x88,0xc8,0x82,0xfc,0x9b,0xd7,0xec,0xca, - 0x5e,0x59,0xd2,0xa2,0xeb,0xfa,0x51,0xe0,0x7f,0x9a,0x70,0x7d,0xc9,0xb4,0x01,0xd3, - 0x1b,0x6b,0x81,0xcd,0x00,0x65,0xb4,0xbf,0xd9,0xf9,0x9d,0xef,0xe5,0xe4,0xad,0xb9, - 0xe6,0x8b,0xc0,0xf7,0x81,0x47,0x80,0x42,0xa0,0x5e,0xff,0x9e,0x05,0x28,0x4d,0x32, - 0x9f,0x16,0x0e,0xf9,0xfa,0xdc,0x44,0x50,0x80,0x47,0xff,0x3d,0xac,0xed,0xc4,0x6c, - 0x4d,0xd0,0xbb,0x80,0xaf,0x02,0x7f,0x00,0x7a,0xf4,0x35,0x23,0xc0,0x8d,0xc0,0x9f, - 0x69,0xc2,0x57,0xbd,0xe7,0x3f,0xfe,0xe9,0x2f,0xac,0xb9,0x39,0xdb,0x58,0xba,0x88, - 0x32,0xda,0x5b,0x9b,0x70,0x75,0x02,0xeb,0x4c,0x02,0xa6,0x37,0xf6,0x00,0xdf,0x05, - 0x3e,0xdd,0x84,0x6b,0xc3,0x6b,0x1b,0xee,0x3b,0x09,0x7c,0xa3,0x8c,0xf6,0x4e,0x11, - 0xf9,0xb4,0x26,0x49,0x37,0xf0,0xb2,0x56,0xbf,0x3e,0x7d,0x2c,0x0b,0x18,0x03,0x5e, - 0xd4,0x92,0x71,0x22,0x4d,0x25,0x86,0xb1,0xcc,0x06,0x8e,0x00,0x87,0xb4,0x64,0x7c, - 0x0a,0xf8,0x13,0xf0,0x0a,0xf0,0x09,0xc3,0x35,0x7b,0x80,0xb3,0x40,0x97,0x52,0xaa, - 0xb2,0x09,0xd7,0x09,0x4d,0x4a,0x9a,0x70,0xdd,0xad,0xeb,0xf3,0x73,0x73,0x08,0xd3, - 0xdf,0x0e,0xfc,0x66,0x13,0xae,0x9e,0x26,0x5c,0x3f,0x6f,0xc2,0x35,0x7b,0x02,0x27, - 0x24,0x5b,0x44,0x7e,0x2d,0x22,0x3f,0x0c,0x39,0x7e,0xb5,0x04,0xf0,0x73,0x11,0x59, - 0xa7,0xff,0x7e,0x4c,0x44,0xca,0xf5,0xdf,0x8f,0x8b,0xc8,0x7c,0x11,0xf9,0x84,0x88, - 0x5c,0x15,0xe5,0xfe,0xeb,0xf4,0x35,0x73,0x22,0xd4,0xf5,0x91,0x26,0x5c,0xee,0x26, - 0x5c,0xbf,0x6a,0xc2,0x35,0xdf,0x1c,0xbd,0x99,0x43,0xc2,0x57,0x9b,0x70,0x15,0x4f, - 0x22,0x0c,0xe3,0x12,0x91,0x26,0x11,0xf9,0xba,0x88,0xdc,0xa4,0x49,0xf7,0xaf,0x22, - 0xb2,0x5a,0x44,0xf6,0x8a,0xc8,0x97,0xa6,0xb0,0xae,0x07,0x9a,0x70,0x2d,0x48,0x55, - 0xdf,0x98,0x2a,0x38,0x35,0x50,0x93,0x2a,0xac,0x54,0x3b,0x50,0xa6,0xc9,0x58,0xa6, - 0x0f,0x3b,0x95,0x52,0x87,0x81,0xf5,0xd3,0xa9,0xae,0xa6,0x17,0x3c,0xf3,0x71,0x0a, - 0xf8,0x09,0xb0,0x7f,0x26,0x34,0xc6,0x94,0x80,0xe9,0x26,0x4a,0x95,0x7a,0x03,0xb8, - 0x67,0xa6,0xb4,0xc7,0x24,0x60,0xea,0x50,0xd0,0x84,0xeb,0xb3,0x04,0x62,0x71,0xd7, - 0x13,0x08,0x2a,0x4f,0x27,0xf4,0x6a,0xcf,0x79,0x8e,0xae,0x5b,0xc7,0xb4,0xb7,0x4d, - 0x4c,0xc4,0x64,0xd4,0x17,0x02,0x4f,0x00,0xef,0x9b,0x86,0xa4,0x8b,0x86,0x6f,0x00, - 0xdb,0xca,0x68,0xef,0x31,0x09,0x98,0xde,0xe4,0xdb,0x07,0xac,0x4e,0xd3,0x26,0x1c, - 0x06,0x3e,0x56,0x46,0x7b,0x5b,0xda,0x39,0x21,0x22,0xb2,0x51,0x87,0x08,0x22,0xe1, - 0x80,0x88,0xd4,0x84,0x29,0x17,0x0e,0x1b,0xf5,0xb9,0xf2,0x30,0xe7,0x6a,0x22,0x3c, - 0xbf,0x25,0xd2,0x73,0x23,0x5c,0x5f,0x23,0xb1,0xa1,0x46,0x44,0x2a,0x62,0x24,0xdf, - 0xa1,0x34,0x26,0x1f,0xba,0xee,0x87,0x74,0x5b,0xd2,0xc7,0x06,0xd4,0x84,0xd9,0x39, - 0xc1,0x65,0xa5,0x40,0xa9,0x88,0x94,0x2a,0xa5,0x36,0x4c,0x70,0x6d,0x49,0x02,0xd5, - 0x28,0x99,0xc2,0x7b,0x19,0x51,0xab,0xdb,0xb8,0x41,0x29,0xd5,0x10,0xe5,0xba,0x3d, - 0xc0,0x92,0x99,0x60,0xbb,0x6a,0x29,0x7e,0x7d,0x3a,0x49,0xc0,0xf2,0x38,0xae,0xad, - 0xd0,0x19,0x1f,0x53,0x75,0x3f,0x44,0x24,0x1a,0xc9,0x9c,0x13,0x9c,0x8f,0xb9,0xde, - 0x51,0xa4,0xdf,0xbd,0x04,0xe6,0x59,0x67,0x0a,0x56,0x37,0xe1,0xfa,0xf2,0x4c,0x25, - 0x60,0x50,0x1a,0x4e,0xa5,0x04,0x2c,0x99,0xe2,0xfb,0xc5,0xdb,0xc6,0x47,0x67,0xa0, - 0x49,0x9b,0x56,0x04,0x0c,0x27,0xd1,0x36,0x93,0x78,0x76,0x85,0x53,0x44,0x4a,0x2f, - 0x05,0x01,0x95,0x52,0x0a,0xa8,0x8b,0xb1,0x8d,0x34,0xe1,0xba,0x73,0x86,0xa8,0xde, - 0x50,0x2c,0x69,0xc2,0x75,0x5d,0xda,0x38,0x21,0x61,0xe0,0x56,0x4a,0x35,0xa7,0x48, - 0xaa,0x3a,0x27,0x79,0xfe,0xa2,0xba,0xc7,0x71,0xed,0x9d,0xe9,0xcc,0x32,0x1f,0x17, - 0x92,0x0c,0xc3,0x60,0x51,0x5a,0x38,0x21,0x29,0x94,0xaa,0xa9,0x52,0xc1,0xf1,0x10, - 0xf0,0xfa,0x74,0xe9,0xd0,0x4e,0xbc,0xec,0x57,0x23,0xb4,0x30,0xc6,0x61,0x35,0x4a, - 0xa7,0x21,0xdf,0xf5,0x56,0xc9,0xe2,0x73,0x92,0xcf,0x32,0x32,0x8c,0x45,0x96,0x5f, - 0xce,0x04,0x2c,0x07,0x1a,0x13,0x24,0x60,0x63,0x88,0x04,0x2d,0x49,0x62,0x3d,0x0b, - 0xd3,0x81,0x78,0x3f,0x50,0x7d,0xcc,0xd5,0xc3,0x3f,0x17,0x1b,0x0f,0x4a,0xce,0xf9, - 0xf3,0x03,0xf8,0xf9,0x1d,0x43,0x3c,0x60,0x39,0xcb,0xbf,0xf8,0x67,0x87,0x92,0x30, - 0x6d,0x09,0x58,0x4e,0x20,0xfb,0x37,0x51,0x4c,0xc6,0x06,0x6c,0x0e,0x21,0x60,0x29, - 0x97,0x31,0x02,0x84,0x2b,0x8a,0x7a,0xcd,0x6d,0x64,0xf1,0x3d,0x7a,0xd8,0x62,0x39, - 0xc7,0xbf,0xf9,0xe7,0x92,0x9b,0x24,0x6b,0x2d,0x59,0x36,0x60,0x38,0x5b,0xaf,0x42, - 0x44,0x5a,0x80,0x4d,0xea,0x62,0x34,0x4e,0x31,0x09,0x4b,0x26,0x50,0xa1,0xce,0x18, - 0x42,0x3f,0x33,0x1e,0x02,0xf4,0xe3,0xa7,0x15,0x0f,0xcf,0xab,0x61,0x7e,0xa4,0xfa, - 0x78,0x58,0x9d,0xe3,0x09,0xd5,0x8b,0x1f,0xb8,0x4f,0x0a,0x99,0x8b,0x8d,0x9f,0xa8, - 0x81,0xb4,0x93,0x80,0xf5,0x84,0x0f,0x44,0x97,0x00,0x3b,0xf5,0xec,0x45,0x9d,0x52, - 0x2a,0x5e,0x89,0x38,0x21,0x01,0x23,0xc4,0xf8,0x9a,0x23,0xd4,0xa5,0xf9,0x72,0x21, - 0xdb,0x10,0x7e,0xce,0xe1,0xe3,0x84,0xf2,0x72,0x04,0x0f,0x6d,0x78,0xe8,0x50,0x5e, - 0xce,0xe2,0x63,0x00,0xff,0x38,0xc7,0xe3,0x65,0x46,0x58,0x4e,0x26,0x77,0x48,0x16, - 0xdf,0xf0,0x17,0xb3,0xc5,0xd2,0x15,0xd5,0x33,0x99,0x76,0x04,0x54,0x4a,0xd5,0x6b, - 0x22,0xd4,0x44,0x91,0x50,0x3b,0xf5,0x94,0xd6,0x06,0xa5,0x54,0xac,0x46,0x7e,0x49, - 0x82,0xd7,0x5c,0x36,0x04,0x1c,0x45,0x38,0x83,0x8f,0xa3,0xca,0xc3,0x71,0x3c,0xb4, - 0xe3,0xe5,0xa4,0xf2,0xd2,0x89,0x97,0x5e,0x4d,0x34,0xa5,0xa5,0x5f,0xae,0xd5,0xc2, - 0xe2,0x9c,0x2c,0x16,0x14,0x15,0x71,0xc5,0xe2,0xc5,0xdc,0x7c,0xf3,0x2d,0xbc,0xf3, - 0xfa,0x6b,0x3c,0xf5,0xcc,0xb3,0xb4,0x0d,0x7b,0xb8,0x83,0x2c,0x72,0xb1,0xb0,0x5a, - 0xec,0xe7,0xcb,0xa5,0x8d,0x0d,0xa8,0x94,0xda,0x2c,0x22,0x8d,0x04,0xa6,0xae,0x4a, - 0xa3,0xd8,0x85,0xb5,0xc0,0xa6,0x29,0x54,0xc1,0x25,0x61,0xea,0xe2,0x16,0x11,0x77, - 0x88,0x27,0x1d,0x8f,0x23,0x32,0x69,0x9b,0xb1,0x13,0x2f,0xa7,0x55,0xc0,0xcb,0x3c, - 0xac,0x57,0x59,0xae,0xc6,0xce,0x6a,0xb1,0x27,0x74,0xbf,0x41,0x2d,0xd1,0x4e,0x29, - 0x1f,0xed,0x9a,0x68,0x27,0x94,0x87,0x4e,0x7c,0xb8,0xf1,0x8d,0x5b,0xbf,0x59,0x64, - 0xb3,0xb2,0x30,0x27,0x9b,0x9b,0x8a,0x8b,0x29,0x59,0xb2,0x84,0x55,0x6b,0xd7,0xd2, - 0xf2,0xfa,0x1b,0x5c,0x51,0xb2,0x94,0xcf,0xfd,0xfd,0x3f,0x62,0xcf,0xce,0xc1,0x9a, - 0x11,0x70,0x34,0xba,0xdb,0x8f,0x71,0xe4,0xa3,0x1f,0xa1,0xef,0xd5,0x63,0xe7,0xcb, - 0xbf,0x5f,0xb2,0xf1,0x13,0x58,0x9c,0x9c,0x56,0x4e,0x88,0xb6,0xed,0xd6,0xe9,0xb9, - 0xe1,0xda,0x08,0xa1,0x94,0x8d,0x22,0xb2,0x39,0x8a,0x14,0x6c,0x8e,0x93,0x00,0xa1, - 0xcf,0x68,0x35,0xd8,0x81,0xce,0x78,0xc3,0x3a,0x22,0x12,0x49,0xf9,0xb4,0x4e,0x54, - 0xb6,0x05,0x0f,0x3f,0x50,0x7d,0xbc,0xa0,0x86,0xb5,0xf1,0x6f,0x65,0x99,0x64,0xb2, - 0x1a,0x3b,0xb7,0x89,0xe3,0xbc,0x17,0x1a,0x0d,0x23,0x08,0xdd,0xf8,0xe8,0x50,0x5e, - 0x4e,0xe0,0xe5,0x28,0x1e,0x5a,0x94,0x87,0xd3,0x78,0xe9,0x33,0xa8,0xce,0x0c,0xa5, - 0xc8,0xb7,0x5a,0x70,0xda,0xed,0x5c,0xed,0x2c,0xa0,0x64,0xd1,0x22,0x96,0xaf,0x58, - 0xc1,0xcb,0xfb,0xf7,0x53,0xf9,0xb5,0xaf,0x71,0xe3,0xdd,0x1f,0x27,0xbb,0xb0,0x10, - 0x8b,0x35,0x40,0xa3,0x9e,0x8e,0x93,0x74,0xbe,0xfd,0x16,0xd9,0x05,0xe3,0x9d,0xf6, - 0xcc,0xac,0x6c,0xf2,0x72,0x73,0xe8,0x34,0xe8,0xdc,0xb9,0x49,0xa4,0x49,0x4a,0xbc, - 0x60,0x6d,0xeb,0xd5,0x8b,0xc8,0x6e,0xc2,0xcf,0xa1,0x46,0x53,0x87,0xee,0x38,0x49, - 0x58,0x12,0x85,0x30,0x25,0x53,0x18,0x8a,0x89,0xaa,0xbe,0xf7,0xab,0x61,0xbe,0xa3, - 0xdc,0x2c,0x23,0x83,0x07,0xc5,0xc9,0x6a,0xb1,0x47,0x1d,0xc8,0x31,0x04,0x37,0x3e, - 0x4e,0x2b,0x1f,0x47,0xf1,0x70,0x84,0x31,0x4e,0x28,0x2f,0x9d,0xf8,0xe8,0x31,0x48, - 0xb4,0x4c,0x05,0xf9,0x56,0x2b,0x73,0x1d,0x0e,0x6e,0x98,0x55,0x4c,0xb6,0xc3,0xc1, - 0xb9,0xae,0x2e,0x36,0x3f,0xf4,0x30,0x2b,0x4a,0x4b,0x99,0xbd,0x64,0x29,0x79,0x73, - 0xe6,0x62,0xcb,0xcc,0x04,0xe0,0x8d,0xdf,0xfe,0x9a,0xf9,0x57,0x5f,0x43,0x6e,0xf1, - 0xf8,0x35,0x51,0xb9,0xc5,0xb3,0x38,0xe5,0xf7,0x5f,0x3c,0x56,0x16,0x0b,0x56,0xab, - 0x35,0xc4,0x2a,0x24,0xbd,0x08,0x18,0x41,0x6a,0x6c,0xd2,0x3f,0x15,0x31,0x48,0x2d, - 0xc2,0xc4,0xf1,0x12,0x25,0x60,0x6b,0x04,0x4f,0x78,0x32,0x6a,0xd5,0x4d,0xf8,0xe9, - 0xb9,0xf3,0x76,0xd8,0x77,0x94,0x9b,0xdb,0xc4,0x71,0x51,0xb8,0xc3,0x8b,0xd0,0x83, - 0x9f,0xe3,0x2a,0x20,0xcd,0xda,0xf1,0x70,0x5c,0xdb,0x68,0x5d,0xf8,0xf1,0xea,0x81, - 0xb7,0x29,0xc8,0xb5,0x58,0x70,0xda,0x33,0xb9,0xda,0x39,0x9b,0xae,0xfe,0x01,0xae, - 0x5a,0xb4,0x80,0xcf,0xff,0xed,0x17,0x58,0x72,0xf5,0x35,0xcc,0xbb,0x72,0x25,0x05, - 0xf3,0xe6,0x83,0x08,0x2f,0x3c,0xf9,0x04,0xb7,0x7f,0x7e,0x63,0xd8,0xba,0x14,0x2e, - 0x5a,0xc4,0x70,0x7f,0xff,0x45,0x1d,0x6c,0xb3,0xdb,0x41,0x04,0xbf,0xdf,0x8f,0xc5, - 0x72,0x21,0x18,0xe2,0xf7,0x79,0xf1,0x78,0x3c,0xd8,0x52,0x94,0x2a,0x9a,0xd2,0x40, - 0xb4,0xb6,0xc5,0x12,0x1d,0xf0,0x44,0xed,0xb5,0xf2,0x08,0x2f,0x44,0xac,0x12,0x70, - 0x73,0xa8,0xe4,0x9b,0x28,0x6c,0x74,0x14,0x0f,0xb9,0x28,0xbe,0x28,0x4e,0x0e,0xa9, - 0x51,0x4e,0xe0,0xe5,0x18,0x1e,0x8e,0xe3,0xe5,0x94,0xf2,0xd2,0x85,0x8f,0x51,0x4d, - 0xb4,0x0c,0x05,0x79,0x56,0x0b,0xce,0x4c,0x3b,0x57,0x15,0x3b,0x51,0x80,0x45,0x84, - 0xfb,0x1f,0x78,0x80,0x2b,0xae,0xbd,0x8e,0x79,0xcb,0x96,0x53,0xb4,0xd8,0xc5,0xd1, - 0x97,0x5f,0xc2,0xe7,0x19,0x63,0xc5,0x7b,0x2f,0x4e,0xb2,0x29,0x76,0x2d,0x61,0xb0, - 0xb7,0x97,0x9c,0x82,0x8b,0x13,0xae,0x73,0x8a,0x8a,0x71,0x1f,0x6f,0x0f,0x5b,0x4f, - 0x6b,0x46,0x06,0x63,0x03,0x03,0x38,0xf2,0xf3,0xcf,0x1f,0xf3,0x8c,0x8c,0x30,0x38, - 0x34,0x8c,0x63,0x26,0x12,0x70,0x12,0x88,0x29,0x4e,0xa8,0x63,0x7b,0x31,0xc7,0xf7, - 0x44,0xa4,0x44,0x29,0xd5,0x3a,0xc1,0x4b,0x53,0x17,0x6f,0x65,0x8f,0x2a,0x0f,0x6b, - 0xc5,0xc1,0xb7,0x54,0x17,0x07,0xf4,0xae,0x69,0x56,0x20,0xdb,0x62,0xc1,0x99,0x99, - 0xc1,0xaa,0xbc,0x02,0x4e,0xf7,0xf5,0xf3,0xfe,0xb5,0xd7,0xf3,0xa1,0x7b,0xee,0x61, - 0xe5,0xda,0x52,0xe6,0x2c,0x5b,0x4e,0xfe,0xbc,0xf9,0x0c,0xf7,0xf4,0xf0,0xce,0xef, - 0x9f,0x65,0xed,0x3d,0xe3,0x15,0xc5,0xdc,0x2b,0xaf,0xe4,0xc4,0xe1,0x43,0x61,0x9f, - 0xe7,0x28,0x28,0x60,0x6c,0x60,0x20,0x2c,0x01,0x1d,0xf9,0xf9,0x8c,0x0e,0x0d,0x85, - 0x2d,0x97,0x99,0x9d,0xc3,0x90,0xbb,0x7b,0x1c,0x01,0x07,0x7b,0x7b,0x71,0xf7,0xf5, - 0xb2,0x24,0x45,0x69,0x02,0x69,0x41,0x40,0xa5,0x54,0x73,0x18,0x2f,0x96,0x49,0x48, - 0x35,0xe3,0xf5,0xad,0x53,0x5d,0xdf,0x51,0x84,0x51,0x84,0xc3,0x6a,0x94,0x39,0x99, - 0x19,0x7c,0xf2,0xf6,0x5b,0xb9,0xbd,0xbc,0x9c,0xe5,0xab,0x56,0xb1,0x70,0xc5,0x4a, - 0x8a,0x97,0x2e,0xe5,0x95,0x86,0xa7,0x59,0x74,0xdd,0x6a,0x16,0x5e,0x3b,0x3e,0xc1, - 0x24,0xa7,0xb8,0x98,0x6c,0xa7,0x13,0x41,0x50,0x06,0x29,0xe4,0xc8,0xcb,0x63,0xb8, - 0xb7,0x27,0xec,0xf3,0xb2,0xf2,0x0b,0x18,0xed,0xef,0x03,0x16,0x86,0x25,0x99,0xdf, - 0xe3,0x89,0xd4,0xaf,0x9c,0x7e,0xe7,0x6d,0x8a,0x96,0x2c,0x65,0xf0,0xdc,0x39,0xfa, - 0xcf,0x9d,0xe5,0xc7,0x8f,0x3f,0xc6,0xbb,0x67,0xce,0xb2,0x86,0x6c,0x93,0x80,0x61, - 0x8c,0xfe,0xf2,0x24,0x10,0x70,0xca,0x91,0x87,0x85,0xeb,0xb0,0x73,0x84,0x31,0x6e, - 0xbb,0xfa,0x3d,0xd4,0xfe,0xe4,0x67,0x38,0xf2,0xf2,0xc6,0x5d,0xb3,0xe2,0xb6,0xf7, - 0x32,0xd8,0xdd,0x15,0x96,0x14,0x00,0x9e,0xe1,0x61,0x32,0xb3,0xb2,0x0d,0xea,0x32, - 0x93,0x0c,0x47,0x16,0xde,0xb1,0xb1,0xf3,0x0e,0xc6,0x05,0x02,0xe6,0xe3,0x3e,0x71, - 0x3c,0x22,0xc9,0x06,0xdd,0xdd,0x0c,0xb9,0xbb,0xc9,0x76,0x16,0x31,0xd2,0xdf,0x47, - 0xef,0xa9,0x0e,0xce,0x1c,0x3b,0xc6,0x0f,0x1e,0xdb,0xca,0xbe,0xff,0x7b,0x89,0x92, - 0xf9,0xf3,0x78,0xa7,0xe3,0x34,0x9d,0x83,0x43,0xb8,0xbd,0x3e,0xc6,0x44,0x98,0x4b, - 0xde,0x8c,0x23,0xe0,0x64,0xa7,0xbf,0x12,0x25,0xe0,0x26,0x1d,0x18,0xaf,0x00,0x76, - 0xc7,0xe9,0xfc,0x24,0x4c,0xc0,0x12,0xb1,0xf2,0x16,0x76,0xda,0x3a,0x4f,0xd3,0x7f, - 0xf6,0xcc,0x45,0x04,0x74,0xe4,0xe5,0xd3,0x15,0x61,0xad,0x4f,0x86,0x23,0x8b,0x91, - 0xbe,0xbe,0x71,0x04,0x3c,0xaf,0x4e,0xfb,0xfb,0xb0,0x15,0xcf,0xba,0x48,0x05,0xf7, - 0xff,0xb1,0xd9,0x68,0x5a,0x30,0xd2,0xd7,0x4b,0x6f,0x47,0x07,0xa7,0x5a,0xde,0xe5, - 0x5b,0x8f,0x3c,0x02,0x5b,0xb6,0xe0,0xb0,0xdb,0x69,0xed,0x38,0xc5,0x99,0x81,0x41, - 0x7a,0x3c,0x1e,0x86,0xfc,0x82,0x1f,0xf8,0xa3,0xbb,0x2f,0x84,0x14,0x8a,0xf9,0x62, - 0x4b,0x6b,0x02,0x86,0x53,0x97,0xb5,0xfa,0x27,0x29,0x61,0x8f,0x28,0x84,0x72,0x47, - 0x71,0x64,0x92,0x92,0x94,0x30,0x5b,0xac,0x2c,0x25,0x83,0x75,0xd8,0x79,0xfc,0xcc, - 0x39,0x9e,0x6d,0x78,0x9a,0x0d,0x35,0x0f,0x8d,0xbb,0xc6,0x9e,0x9b,0x8b,0x77,0x74, - 0x34,0xbc,0x6d,0x96,0xe5,0xa0,0xff,0x4c,0x27,0xf9,0x73,0xe7,0x85,0x90,0x36,0x8f, - 0xa1,0xde,0x5e,0x72,0x0c,0x04,0xf4,0x8c,0x8c,0x70,0xb6,0xa5,0x85,0xed,0x5b,0xbe, - 0xce,0x8d,0xcf,0x3d,0x47,0x47,0x7b,0x1b,0x6f,0xbe,0xf1,0x26,0xad,0xa7,0x4e,0xd3, - 0x31,0x30,0x40,0x9f,0xc7,0xcb,0x80,0xff,0x82,0x0f,0xa6,0x02,0x62,0x31,0x6a,0xfd, - 0x67,0x61,0x65,0x76,0x52,0xc2,0xce,0xa9,0x23,0x60,0x6b,0x9c,0x83,0x1b,0x8b,0x1d, - 0x16,0x8b,0x23,0x52,0x12,0x85,0x80,0xad,0xa9,0x52,0xc1,0x57,0xe8,0xf4,0xa5,0xb5, - 0xe2,0xc0,0xe2,0x53,0x3c,0xfd,0xd4,0x53,0x17,0x11,0xd0,0x9a,0x91,0x81,0x6f,0x74, - 0x0c,0xdf,0xd8,0x18,0xd6,0x10,0x95,0x9a,0x3b,0x7b,0x0e,0xe7,0x5a,0x5b,0xc6,0x1d, - 0xf3,0x79,0x3c,0x1c,0x7c,0xa6,0x89,0x17,0x1b,0x1b,0x59,0x73,0xc7,0x1d,0xbc,0x7a, - 0xe0,0x15,0x46,0x8e,0xb5,0xe1,0xe9,0xee,0xe6,0xad,0x6e,0x37,0x7b,0xbb,0xfb,0x78, - 0xe2,0xe0,0xab,0x17,0x45,0xef,0x12,0xf1,0x65,0xaf,0x94,0x0c,0x32,0xd2,0xdc,0x0b, - 0x8e,0x94,0x8c,0x10,0x96,0x58,0x13,0x79,0xa2,0x86,0x10,0xce,0x44,0x8e,0x48,0x49, - 0x14,0x72,0xbb,0x53,0x45,0xc0,0x20,0xf2,0xb1,0x70,0x9b,0x38,0x78,0xfe,0x48,0x0b, - 0x47,0x0f,0xbc,0xcc,0x15,0xeb,0x6e,0x1c,0x77,0xde,0x92,0x91,0xc1,0x50,0x8f,0x9b, - 0xbc,0x39,0x73,0x2f,0xc4,0xe1,0xbc,0x5e,0xce,0x1d,0x6b,0xe3,0xdf,0xbf,0xf9,0x28, - 0xb7,0x7c,0xe8,0x23,0xbc,0x75,0xe8,0x8f,0xbc,0xf9,0xda,0xeb,0x1c,0xed,0xe8,0xe0, - 0xed,0xee,0x1e,0xce,0x79,0xbc,0x58,0x7f,0xf9,0x1b,0x7c,0xc0,0x6d,0xf9,0x39,0x2c, - 0x77,0xd8,0x71,0xa0,0xf0,0xc7,0xea,0xf9,0xc7,0x40,0xca,0x5b,0xc9,0x4a,0x99,0x5d, - 0x96,0xcc,0x64,0x04,0x08,0x04,0x9d,0xa3,0xd9,0x6d,0x0d,0x61,0xe2,0x6c,0x13,0x49, - 0xc1,0x8a,0x44,0x9c,0x8a,0x08,0x31,0x48,0xa7,0x88,0x38,0xe3,0x48,0x86,0x88,0x1b, - 0xe5,0x92,0xc3,0x2f,0xbc,0x83,0xec,0xfc,0xd6,0x37,0xa9,0xfd,0xd9,0x2f,0xc6,0x51, - 0xe1,0xa5,0xdf,0xfe,0x86,0xfd,0xbf,0xfe,0x15,0xf3,0x97,0x2d,0xe3,0xf0,0x4b,0x2f, - 0xf1,0xce,0x5b,0x6f,0xd1,0xd6,0x71,0x8a,0x63,0x6e,0x37,0xc7,0x87,0x47,0xb1,0x3e, - 0xfb,0x1c,0xde,0x30,0x11,0xcc,0xe0,0xac,0x48,0x86,0x56,0xa5,0x85,0x36,0x2b,0xcb, - 0x1c,0x76,0x5a,0x46,0x46,0x23,0x12,0x2e,0xd6,0xe8,0x6b,0x36,0x8a,0x55,0x09,0xce, - 0x4f,0x4f,0x2b,0x27,0x24,0x38,0xfd,0x96,0x40,0x39,0x15,0xe5,0xdc,0x86,0x09,0xca, - 0x16,0x4d,0xe2,0xde,0x75,0x44,0x99,0xdd,0x48,0x14,0xd7,0x90,0xc9,0x3a,0x71,0xb0, - 0xeb,0xb7,0x7b,0xb9,0xe2,0x4b,0x5f,0x60,0xc4,0x33,0x46,0xf3,0xc1,0x83,0x1c,0x3d, - 0xd9,0xc1,0x1b,0xe7,0xba,0x19,0xf0,0xf9,0x02,0xfb,0xeb,0x0a,0x20,0x32,0x8e,0x28, - 0xde,0x28,0xac,0xb1,0x2a,0xc5,0x9c,0x8c,0x0b,0xc3,0x77,0x6b,0x7e,0x0e,0x67,0x3d, - 0x5e,0xfa,0x7c,0xbe,0x58,0x02,0xa0,0x11,0xed,0xc0,0x35,0xe2,0x48,0x99,0xfd,0x97, - 0x6e,0x61,0x98,0xb4,0xc5,0xc7,0xc9,0xe5,0x21,0xcf,0x39,0xee,0xfb,0xfe,0xc4,0xef, - 0xe3,0xc2,0xdc,0x5c,0xae,0x2c,0x2a,0x66,0x45,0x71,0x11,0x4b,0x8b,0x8a,0x28,0xcc, - 0x72,0xe0,0x17,0xe1,0xdc,0xe0,0x20,0x47,0xbb,0xdc,0xbc,0xdb,0xdd,0xcd,0xbb,0xee, - 0x6e,0x7c,0x9e,0x31,0xb2,0x0c,0x53,0x68,0x16,0x60,0x65,0x96,0x9d,0x57,0x06,0x86, - 0x28,0xc8,0xb4,0x33,0x3b,0x3b,0x9b,0xb9,0x39,0x39,0x38,0x1d,0x76,0xb2,0xed,0x76, - 0x50,0x8a,0xe1,0xd1,0x31,0xfa,0x46,0x47,0xe8,0x1c,0x18,0xe4,0xf4,0xf0,0x10,0xbd, - 0x61,0x9c,0xa0,0xbb,0xc9,0x4d,0x69,0xdf,0x24,0x85,0x80,0x4d,0xb8,0x9c,0xc0,0x46, - 0x02,0xf9,0x80,0xce,0x08,0xaa,0xb7,0xbe,0x8c,0xf6,0x46,0x43,0x99,0xd0,0xf7,0xbd, - 0xa1,0x8c,0xf6,0x0d,0x4d,0xb8,0xca,0x81,0xbd,0x46,0x35,0x5c,0x46,0xfb,0xfa,0xf1, - 0x2f,0xb4,0x84,0x5e,0x13,0xc4,0xe6,0xd0,0x99,0x8c,0x30,0xd3,0x72,0x8d,0x4a,0xa9, - 0xf5,0xfa,0x5c,0x4d,0x0c,0x9e,0x7a,0x1d,0x50,0x1f,0x8b,0xdd,0x1a,0xc4,0x0d,0xe2, - 0xe0,0x26,0x1c,0xbc,0x14,0xe1,0x5b,0x32,0x05,0x76,0x3b,0x1f,0x2c,0x29,0xe1,0xee, - 0x2b,0x57,0xb2,0x3a,0xdf,0x49,0xce,0xa8,0x97,0xb1,0xc1,0x11,0x7c,0x23,0x63,0xc8, - 0x90,0x1f,0x8b,0xcd,0x86,0xad,0xb0,0x80,0x4c,0xd7,0x72,0x1c,0xce,0x3c,0xba,0xfc, - 0x5e,0x0e,0xb6,0x1f,0xe7,0xd4,0x89,0x76,0xde,0xe8,0x38,0x89,0xc7,0xe7,0x65,0x71, - 0x51,0x31,0xd7,0x2d,0x9f,0xc5,0xfd,0x73,0xe6,0xf0,0x9e,0xa2,0x62,0x8a,0x94,0x8d, - 0x4c,0xaf,0x1f,0xff,0x98,0x17,0xf1,0x0b,0xca,0xa2,0xb0,0xd8,0x33,0xb0,0x39,0x32, - 0xf1,0x3b,0x32,0x38,0x33,0x32,0xc2,0xe1,0xd3,0xa7,0x79,0xa6,0xa5,0x95,0x67,0xdb, - 0xda,0x68,0x1f,0xe8,0xe7,0x1a,0x32,0x59,0x93,0x42,0xf5,0x9b,0x4c,0x09,0x58,0xab, - 0x09,0x18,0x09,0x15,0x40,0x45,0x13,0xae,0xa2,0x32,0xda,0x23,0xd9,0x5f,0x53,0xb1, - 0x0e,0x38,0x19,0x4e,0x46,0x8d,0xae,0x5b,0x5c,0x3b,0x93,0xfe,0x95,0xe4,0xd3,0xac, - 0x46,0xcf,0x27,0x1b,0x00,0xcc,0xca,0xca,0xe2,0x6f,0x56,0xad,0xe6,0x13,0x0b,0x97, - 0x90,0x79,0xb2,0x9b,0xbe,0x97,0x5a,0xe9,0x38,0xd3,0x83,0xcf,0xeb,0x41,0xc2,0xb8, - 0x15,0x16,0xac,0x64,0xe4,0x64,0x91,0x33,0xaf,0x88,0x35,0x25,0x0b,0x78,0xdf,0x4d, - 0xb7,0xd1,0xaf,0x7c,0x0c,0xb8,0xfb,0xc9,0x1b,0xf2,0x32,0xd8,0xd1,0xc5,0xd0,0xc1, - 0x93,0x0c,0xba,0xdf,0xa6,0x67,0x60,0x18,0xbf,0x2f,0xb0,0xc8,0xf2,0xc2,0xac,0x8a, - 0xc2,0x6a,0xb3,0x91,0x91,0x97,0x45,0xd6,0xac,0x02,0x6e,0x58,0x34,0x8b,0xf2,0x75, - 0x37,0x71,0xff,0xf0,0x08,0xed,0x03,0xfd,0x7c,0x4a,0xf2,0x53,0xae,0x1d,0x92,0x45, - 0xc0,0x58,0xd7,0xf0,0x56,0x44,0xb1,0x13,0x4b,0xb4,0x24,0x8d,0x05,0xce,0x14,0x12, - 0x30,0xe0,0x5b,0xc4,0xe9,0xbc,0xac,0x20,0x93,0xbf,0x94,0x3c,0x7e,0xa8,0xfa,0x58, - 0x9c,0x93,0xcb,0xfb,0x16,0x2f,0xe6,0xbe,0x92,0xab,0x90,0xd7,0xdb,0xe9,0x7a,0xf1, - 0x0f,0xf8,0xf1,0xa2,0xb0,0x62,0xc1,0x82,0x05,0x2b,0x91,0xd2,0x3f,0x3d,0x83,0x23, - 0xb8,0x5b,0x8e,0xd3,0xdd,0x72,0x8c,0x8e,0xe7,0x72,0xc8,0x9e,0x57,0xc4,0x50,0x67, - 0x37,0xa7,0x47,0x86,0x74,0xd8,0x45,0xa1,0xb0,0xe8,0xdf,0x4a,0x1f,0x61,0x9c,0x97, - 0x3d,0xe2,0xee,0x63,0xd8,0xdd,0x43,0xd7,0x91,0xa3,0x3c,0xbf,0xcf,0xcb,0x8f,0x55, - 0x37,0x7f,0x2e,0xd9,0xdc,0x28,0x8e,0x19,0x43,0xc0,0x70,0x8b,0x82,0xc2,0xcd,0x64, - 0xc4,0xb2,0x27,0x8c,0x7b,0x9a,0x49,0x40,0xe3,0xbd,0xe3,0x4a,0xe9,0xff,0xb4,0xe4, - 0xd1,0xac,0x46,0xc8,0x53,0x36,0x6e,0x3f,0x3b,0xc4,0xb9,0x37,0x9e,0xc7,0x86,0x15, - 0x0b,0x36,0xac,0x64,0xc6,0xe6,0xa4,0xa1,0x50,0x7a,0xd8,0xbc,0xa3,0x63,0xf4,0x1e, - 0x3b,0x89,0xc2,0x8a,0x35,0xe6,0xa5,0x93,0xea,0x3c,0x49,0xdf,0x65,0x94,0xef,0x2a, - 0x37,0x73,0xb0,0x72,0x9f,0x14,0x5e,0x12,0xfb,0x38,0x55,0x3b,0x23,0xd4,0x03,0x1b, - 0xa6,0x80,0xc8,0x71,0x13,0x70,0x0a,0x56,0xbf,0x2d,0x8b,0x10,0x2a,0x72,0xc6,0xff, - 0xb6,0x2b,0x6a,0xfc,0x45,0xbc,0x3d,0xd0,0xc7,0x57,0xbb,0x8e,0x73,0x0c,0x4f,0xcc, - 0xf1,0xbb,0x48,0x54,0xb2,0x60,0x0b,0x91,0x71,0xb1,0xa1,0x9d,0x31,0x1e,0xb1,0x74, - 0x33,0x06,0x3c,0x20,0x45,0x14,0x5e,0xa2,0xed,0xc2,0x53,0xf5,0x54,0x77,0x14,0x5b, - 0x2f,0x1a,0x4a,0xa7,0x80,0xa8,0x25,0x4c,0x23,0x2c,0xc4,0xc6,0xdf,0x49,0x31,0x43, - 0x08,0x5b,0x2c,0xfd,0xb4,0x32,0x8c,0x07,0x4f,0xca,0x9e,0x2f,0x08,0xaf,0x33,0xcc, - 0x83,0x96,0x2e,0xba,0xf0,0x51,0x2d,0x4e,0xd6,0xa6,0xd8,0xf1,0xb8,0x14,0x04,0x4c, - 0x14,0x89,0x10,0xb0,0x35,0x09,0x04,0x9c,0xd2,0x40,0xf5,0xf5,0x62,0xe7,0x61,0x29, - 0xa2,0x07,0x3f,0x0f,0x5b,0xfa,0x39,0xa8,0x46,0x18,0x65,0x14,0x49,0x72,0x1a,0xbc, - 0x0f,0x1f,0xbf,0x54,0xfd,0xd4,0x58,0xba,0xe9,0xc1,0xc7,0x57,0xc4,0xc9,0x5d,0x92, - 0x7d,0x49,0x07,0x78,0xba,0x13,0xb0,0x64,0x22,0x55,0x17,0x66,0xd7,0xac,0x64,0x10, - 0x70,0xca,0x71,0x8b,0x64,0xf1,0x0f,0x32,0x0b,0x2f,0xf0,0x75,0xd5,0xcb,0x7f,0xab, - 0x21,0x86,0x18,0xc1,0x8b,0x37,0x29,0xc4,0x7b,0x97,0x21,0xb6,0xa8,0x6e,0x1e,0x53, - 0x7d,0xd8,0x51,0x7c,0x5b,0x66,0xf1,0x01,0xc3,0x76,0x1c,0x97,0x0a,0xe9,0x10,0x88, - 0x8e,0x77,0xef,0xc0,0xd0,0x7d,0x60,0x92,0xb5,0x03,0xc2,0xa4,0xa5,0xe2,0xf5,0x62, - 0xe7,0x71,0x99,0xc3,0xb7,0x2d,0xdd,0xfc,0x50,0x0d,0xf2,0xa2,0x1a,0xe5,0x73,0x92, - 0xcd,0x5a,0xc9,0xc4,0x86,0x0d,0x2b,0xd6,0x84,0xec,0xbb,0xa0,0xaa,0xf5,0xe1,0xa3, - 0x85,0x31,0x7e,0xa1,0x86,0x68,0xd4,0x21,0xa0,0x1b,0xc5,0xc1,0xfd,0xe2,0x64,0x4e, - 0x0a,0x67,0x3b,0xd2,0x9d,0x80,0xf1,0xee,0x74,0xe5,0x4e,0x82,0x04,0xbc,0xe8,0x19, - 0x93,0xdc,0x6a,0x6e,0x9c,0x4d,0xb8,0xcd,0x3f,0x9b,0xa7,0x55,0x3f,0xbb,0x55,0x3f, - 0x5b,0x54,0x1f,0x2b,0x55,0x06,0x1f,0x14,0x07,0x6b,0xc4,0x46,0xb1,0x26,0xa2,0x65, - 0x5c,0x68,0xe5,0x62,0xb2,0x09,0x82,0x5f,0xff,0x3b,0x8e,0x97,0xd7,0x18,0x63,0x9f, - 0x65,0x8c,0xd7,0x19,0x43,0x80,0xa5,0x64,0xf0,0x59,0xc9,0xe7,0xbd,0x92,0x35,0xad, - 0x76,0xa6,0x4f,0x07,0x02,0x4e,0x14,0x53,0x0c,0xb7,0x0e,0xd8,0x98,0x35,0x33,0x59, - 0x02,0xb6,0x84,0x39,0xb6,0x69,0x2a,0x1b,0x98,0x89,0xe2,0xb3,0x92,0x4f,0x99,0x64, - 0xf3,0x5f,0xaa,0x9f,0xdf,0xab,0x21,0xb6,0xa9,0x7e,0xb2,0x95,0x85,0xab,0x25,0x83, - 0x95,0xd8,0x70,0x89,0x95,0x62,0x2c,0xe4,0xa0,0xb0,0x6b,0x0a,0x8d,0x21,0x0c,0xe8, - 0x55,0x76,0xa7,0xf1,0xd1,0xa6,0xfc,0xb4,0x28,0x0f,0x6d,0x3a,0xdc,0x6d,0x43,0x71, - 0x2d,0x76,0x3e,0x2c,0x39,0xdc,0x21,0x59,0x29,0x5b,0xe9,0x36,0x53,0x08,0x18,0x24, - 0x51,0xbc,0xeb,0x40,0xa6,0x9a,0x80,0xa1,0xa8,0x23,0xf6,0x6d,0xe2,0xe2,0xc2,0x02, - 0x6c,0x3c,0x20,0x4e,0xee,0x95,0x7c,0x9a,0xd4,0x10,0x7f,0x50,0xc3,0xfc,0x49,0x8d, - 0x71,0x80,0xd1,0x98,0x13,0xfb,0x0a,0xb0,0xb0,0x4a,0xec,0xdc,0x80,0x83,0xdb,0x25, - 0x8b,0x85,0xd3,0x5c,0xc6,0x4c,0xe7,0xda,0x4d,0x94,0x7a,0x15,0x4d,0x05,0x1b,0x17, - 0xa1,0x4f,0x75,0xca,0x55,0x42,0x53,0x71,0xf1,0xa0,0x18,0x2b,0x1b,0x24,0x8f,0x0d, - 0x92,0xc7,0x39,0x7c,0xb4,0x29,0x0f,0xc7,0xf0,0x72,0x46,0xef,0xef,0x32,0xa2,0xbd, - 0xe5,0x4c,0x14,0x79,0x58,0x28,0xc6,0xc2,0x7c,0x6c,0x2c,0x12,0x1b,0x0b,0xb0,0x91, - 0x63,0xf0,0x2d,0x07,0xf0,0xf3,0x82,0x1a,0xe6,0xae,0x69,0xe0,0x70,0xa4,0x1b,0x01, - 0x63,0x9d,0xec,0x1f,0x47,0x40,0x43,0xe2,0x6a,0xa8,0x23,0x93,0xa8,0xd4,0xaa,0xd3, - 0xe5,0x8d,0xa6,0x40,0x79,0x2c,0x4b,0x3a,0xa7,0x02,0xb3,0xb0,0x32,0x4b,0xac,0x71, - 0x6f,0xae,0xbd,0x5f,0x0d,0xf3,0x02,0xc3,0x9c,0x56,0x3e,0xee,0xf3,0x17,0x9a,0x12, - 0x30,0x01,0x4c,0x68,0xe4,0x87,0x5b,0x07,0x3c,0xc9,0x45,0xe8,0xe1,0x50,0x4f,0xf8, - 0xc4,0xda,0xa4,0x2c,0xe9,0x8c,0x05,0x03,0xf8,0xf9,0x9d,0x1a,0xba,0x68,0xe7,0xd2, - 0xc3,0x8c,0xd2,0x82,0x87,0xc3,0x6a,0x94,0x5c,0x14,0x1f,0x97,0x3c,0x1e,0xf4,0xe7, - 0x32,0x9d,0x31,0xdd,0x09,0x98,0x48,0x0a,0x7e,0x2c,0x8e,0x4a,0xca,0x43,0x2e,0x53, - 0x89,0x5c,0x2c,0xac,0x97,0x6c,0xde,0x54,0x63,0x74,0x18,0xe2,0x86,0xf9,0x58,0x58, - 0x4f,0x36,0xf7,0xfa,0xf3,0xcf,0xaf,0x4b,0x99,0xee,0x98,0xee,0x5e,0xf0,0x44,0x8b, - 0x9b,0x26,0x3b,0x57,0x9c,0x0c,0x1c,0x22,0x05,0x1f,0xa9,0xc9,0xc3,0x72,0x29,0xb2, - 0x57,0xba,0xa7,0xfa,0x86,0xa9,0x9a,0x09,0x49,0x54,0x02,0x35,0xc6,0x49,0xac,0x56, - 0x02,0x89,0x03,0x0d,0x97,0x98,0x80,0x33,0x15,0xef,0xa6,0x2b,0x01,0x37,0x36,0xe1, - 0xda,0x99,0x40,0xb9,0xe6,0x38,0x89,0xdd,0xa8,0x33,0xa0,0x1b,0x2f,0x21,0x01,0xf7, - 0xcc,0x60,0x02,0x1e,0x49,0x17,0x02,0x36,0x87,0x21,0xca,0xc6,0x04,0x6c,0xab,0x89, - 0x8c,0xfc,0x48,0xb3,0x20,0x97,0x6c,0x3e,0x58,0x7f,0x5f,0xf7,0xc9,0x19,0x48,0xbe, - 0x27,0xcb,0x68,0x4f,0x1b,0x15,0xdc,0x30,0x15,0x2a,0xb6,0x8c,0xf6,0xe6,0x09,0x48, - 0x1a,0x89,0x80,0xee,0x30,0x1e,0x73,0x2a,0xa5,0xe0,0xa3,0x04,0xbe,0x40,0x3e,0x53, - 0xd0,0x4b,0x92,0xbe,0x7f,0x67,0x49,0x92,0x14,0xa8,0xd3,0xb6,0x58,0x6b,0x14,0xe2, - 0x6d,0x28,0xa3,0x7d,0xb2,0x3b,0x22,0xc4,0x4c,0xc0,0x14,0x4b,0xc1,0x36,0x92,0xf4, - 0x71,0xbf,0x4b,0x84,0x2f,0x27,0xeb,0xa3,0xd5,0xe6,0x17,0xd3,0x93,0x08,0xfd,0xd9, - 0xd6,0xff,0x4c,0xf3,0x66,0xfc,0x75,0x19,0xed,0xbb,0x92,0x75,0x73,0x93,0x80,0xc9, - 0x27,0xe1,0x9d,0xc0,0x2e,0xd2,0xef,0x0b,0x9a,0xbd,0xc0,0xbd,0x65,0xb4,0x27,0xd5, - 0xa9,0x32,0x09,0x98,0x1a,0x12,0x16,0x02,0xf7,0x6a,0xb5,0x3c,0xdd,0x89,0x78,0x4c, - 0xbf,0x30,0xdb,0xb4,0x43,0x85,0x49,0xc0,0x08,0xa8,0xac,0xaa,0x76,0x12,0xf9,0x3b, - 0x24,0xcd,0xc0,0xe6,0x1d,0xdb,0xb7,0xba,0xf5,0xb5,0x35,0x44,0x4e,0x6e,0x68,0x05, - 0xea,0x76,0x6c,0xdf,0xda,0x6c,0xb8,0xb6,0x1c,0xd8,0x10,0x2c,0x1f,0xf2,0xdc,0x9d, - 0x00,0x3b,0xb6,0x6f,0xdd,0x14,0x27,0x11,0xef,0x04,0x9e,0x4d,0x01,0x81,0xf6,0x00, - 0xf1,0x90,0xa7,0x87,0x40,0xfc,0xb2,0x2d,0x59,0xb6,0x5e,0x24,0xa4,0xfb,0xd6,0x1c, - 0x1b,0xf5,0x4f,0x43,0x88,0xc3,0x53,0xa2,0x8f,0x37,0x02,0x0d,0x95,0x55,0xd5,0xa5, - 0x9a,0xa8,0x8d,0x84,0x8f,0x2d,0xd6,0xe8,0xf2,0xc1,0x73,0x4e,0x4d,0xc0,0xbd,0x84, - 0x7c,0x64,0x5b,0x93,0x6f,0x23,0x71,0x2e,0xc9,0xd4,0x52,0x70,0x57,0x12,0xfb,0xe2, - 0x67,0xc0,0xae,0x64,0xab,0x4c,0x93,0x80,0xe3,0x11,0x0c,0x44,0x37,0xec,0xd8,0xbe, - 0xb5,0xc1,0x40,0x92,0x72,0xc6,0xaf,0xdb,0x0d,0x7a,0xc0,0xcd,0x3b,0xb6,0x6f,0xdd, - 0x1c,0x46,0x8a,0xd6,0x44,0x90,0x8a,0xa5,0x95,0x55,0xd5,0x3b,0x83,0x92,0xce,0x20, - 0x45,0x13,0x49,0x42,0x48,0x86,0x1d,0xd8,0x6b,0x50,0x97,0x6d,0xe9,0x38,0x80,0x33, - 0x72,0x73,0xa2,0x1d,0xdb,0xb7,0x36,0x86,0x4a,0xae,0x04,0xe0,0x26,0x10,0x4a,0xaa, - 0xad,0xac,0xaa,0x76,0x6b,0xe9,0x59,0xab,0x8f,0x55,0xc4,0x73,0xa3,0x26,0x5c,0x5f, - 0x06,0xee,0x9e,0xc2,0x26,0xfe,0x5e,0x4b,0xbb,0x5d,0xe9,0x3e,0x56,0x69,0x43,0xc0, - 0xca,0xaa,0xea,0x0a,0x6d,0xeb,0xb9,0x77,0x6c,0xdf,0x5a,0x37,0xc1,0xb5,0xe5,0x5a, - 0x85,0xd6,0xef,0xd8,0xbe,0xb5,0x75,0x12,0x44,0xae,0xab,0xac,0xaa,0x0e,0x7e,0x74, - 0x71,0xa3,0xbe,0x5f,0x9d,0xae,0x4b,0xac,0xe4,0xbb,0x1e,0xd8,0x3a,0x45,0xd2,0x6e, - 0x8f,0x96,0x76,0x87,0x66,0x8a,0xb0,0x48,0x27,0x09,0x58,0x1a,0x54,0x95,0x95,0x55, - 0xd5,0xf5,0x21,0xce,0x41,0x49,0x08,0x29,0x82,0xa4,0x69,0x0e,0xb5,0x0d,0xe3,0x21, - 0x4f,0xd0,0xd1,0xd0,0x6a,0xda,0x99,0x80,0xd3,0x51,0xc8,0xe4,0xe7,0x86,0x0f,0x03, - 0xdb,0x80,0x3d,0xa9,0xf0,0x4a,0x4d,0x02,0xc6,0xa0,0x1a,0x0d,0xe4,0xab,0xd7,0x92, - 0xa9,0x36,0x82,0x0d,0xd7,0xac,0x49,0xd4,0x50,0x59,0x55,0xdd,0xac,0x55,0x67,0x45, - 0x04,0x75,0x1b,0x4d,0x52,0x26,0xba,0x08,0x69,0xdb,0x24,0xec,0xbe,0x27,0xb5,0x9a, - 0xdd,0xc7,0x0c,0x46,0x5a,0x85,0x61,0x2a,0xab,0xaa,0x9d,0x11,0xc2,0x22,0xce,0x30, - 0x92,0x2b,0xa6,0xeb,0x22,0x5d,0x3b,0x59,0x24,0x38,0x0b,0x72,0x4c,0x93,0x76,0xd7, - 0x4c,0x94,0x76,0x69,0x4f,0xc0,0x74,0x81,0xb6,0xfb,0xf6,0x01,0x05,0x33,0x39,0x84, - 0x62,0x12,0x70,0x7a,0x92,0xaf,0x50,0x93,0x6f,0x75,0x0c,0x4e,0x45,0x50,0xda,0xb5, - 0x5d,0xae,0xfd,0x65,0xee,0x11,0x3d,0xf5,0xd8,0x36,0x01,0xf9,0x66,0x4c,0x08,0xc5, - 0x94,0x80,0xd3,0x4f,0xfa,0x7d,0x0c,0xf8,0x69,0x04,0x69,0xb7,0x07,0x78,0xf4,0x72, - 0x96,0x76,0x26,0x01,0x93,0x4b,0xbe,0xa5,0x04,0xe6,0x53,0x8d,0x76,0xdf,0x8c,0x0e, - 0xa1,0x98,0x2a,0x78,0x7a,0x61,0x8f,0x81,0x7c,0x97,0x45,0x08,0xc5,0x24,0xe0,0xf4, - 0x91,0x7e,0xdb,0x80,0x42,0xa0,0x9a,0xcb,0x28,0x84,0x62,0x62,0xfa,0x10,0x70,0x96, - 0xd9,0x0b,0x26,0x4c,0x98,0x30,0x61,0x22,0x85,0x5e,0x70,0x65,0x55,0xf5,0x6e,0xa0, - 0x7c,0xc7,0xf6,0xad,0x45,0x97,0xba,0x21,0x3a,0x57,0x6f,0x23,0x17,0x72,0xff,0x1a, - 0x09,0x64,0x44,0x37,0xcf,0xc4,0x81,0xd3,0x89,0xb1,0x15,0xd3,0xa1,0xef,0x2f,0x7b, - 0x27,0x24,0xf8,0x22,0x00,0x9b,0x82,0x89,0xa9,0x9a,0x90,0xb5,0x24,0x71,0x1f,0xbf, - 0x19,0x44,0xe6,0x60,0x5f,0x15,0x25,0x63,0x5e,0x7c,0x46,0x13,0x50,0xa7,0x57,0x55, - 0x10,0x58,0xbf,0x71,0x3e,0x2b,0x5a,0xe7,0x0c,0xd6,0xcd,0x54,0xd2,0xe8,0xd4,0xb0, - 0x4d,0xe9,0xde,0x0e,0x5b,0x8a,0xde,0xac,0x20,0xea,0x0d,0xe9,0xed,0x4e,0x02,0xbb, - 0x2d,0x05,0x33,0x8c,0x4b,0xb5,0xca,0xac,0xd3,0xe5,0x8c,0x5f,0xda,0xdc,0x1c,0x25, - 0x09,0x75,0x23,0xd0,0x6a,0x24,0x5f,0x84,0xba,0x04,0xbf,0xde,0x69,0x54,0xd1,0x9b, - 0x82,0x09,0xab,0x95,0x55,0xd5,0x07,0xf4,0x31,0xe3,0x36,0x22,0x41,0x12,0xef,0xe4, - 0x42,0x1a,0xd7,0xa6,0x1d,0xdb,0xb7,0xd6,0xeb,0x32,0xb5,0x5a,0xf2,0x36,0x18,0xea, - 0xdb,0x48,0xe0,0xab,0x50,0xc6,0x34,0xb1,0xb0,0xed,0x0e,0xb6,0x29,0xf4,0x98,0x7e, - 0xa9,0x76,0x6b,0x82,0x6d,0xd4,0x7d,0xd3,0xaa,0xcf,0x37,0x18,0x9e,0xbd,0xd1,0xa8, - 0x82,0x0d,0xeb,0x55,0xc6,0x99,0x20,0x3a,0xa9,0x76,0x27,0x17,0xf6,0x38,0x3c,0xdf, - 0x76,0xdd,0xee,0xe0,0xa2,0xae,0xee,0xca,0xaa,0x6a,0x80,0x75,0xba,0x5c,0x70,0x2d, - 0x4d,0xb0,0x5c,0x33,0x81,0xc5,0x5b,0x0d,0x86,0x97,0x3f,0x58,0xcf,0x5a,0xdd,0xfe, - 0x75,0xf1,0x98,0x3d,0x96,0x24,0x92,0x2f,0xd8,0x19,0xeb,0x76,0x6c,0xdf,0xaa,0x08, - 0xa4,0xc8,0x97,0x6b,0x75,0x69,0x44,0x8d,0x6e,0x94,0x32,0x90,0xaf,0x1c,0x58,0xa6, - 0xcb,0x6d,0x22,0x90,0x16,0x1f,0x69,0xb3,0xf2,0x52,0x26,0x58,0x20,0xa4,0xc9,0xb7, - 0x33,0xf8,0x1c,0x20,0x38,0x68,0x7b,0xc3,0xd4,0x05,0xc3,0x73,0x6b,0x08,0x6c,0x52, - 0xde,0xac,0x8f,0xd5,0x01,0x3b,0xf5,0x80,0x1a,0x9f,0x5f,0x4e,0xe0,0x93,0x5e,0xcb, - 0xf4,0xff,0x5b,0xb4,0x6d,0xac,0x82,0x64,0xd4,0x75,0x88,0x17,0x35,0x9a,0x28,0x4a, - 0x13,0x70,0x67,0x0c,0x66,0x48,0xb0,0xdf,0x1a,0xb9,0xb0,0xd6,0x65,0x2f,0x81,0x75, - 0x33,0x4a,0x9f,0x73,0x06,0xef,0xb5,0x63,0xfb,0xd6,0x75,0x5c,0xf8,0x14,0x59,0x91, - 0xbe,0x26,0x48,0xda,0xbd,0xfa,0xe5,0x0e,0x96,0x6b,0x06,0x76,0x6b,0x62,0x86,0xd6, - 0x73,0x5d,0xb0,0x6c,0x3c,0x0d,0xb4,0x24,0x89,0x7c,0xc1,0x55,0x69,0xf5,0xc1,0x0a, - 0xe9,0xdf,0xf5,0x40,0x45,0xc8,0x00,0x36,0x84,0xaa,0xce,0x1d,0xdb,0xb7,0xae,0x37, - 0xd8,0x22,0x0d,0x86,0x81,0x4e,0x14,0x35,0x40,0x63,0x50,0x72,0xe9,0x7b,0xd7,0x11, - 0xc8,0x90,0x36,0x12,0xa3,0x31,0x28,0xa9,0xf4,0xb5,0x6e,0x5d,0xbf,0xba,0x90,0xba, - 0x18,0x5f,0x06,0x77,0xb0,0xbe,0x5a,0x9a,0x36,0x07,0x8f,0xe9,0xfb,0x34,0xe8,0xfb, - 0x24,0x52,0xff,0x4d,0x86,0x01,0xad,0x07,0x9c,0xe1,0x5e,0x44,0xdd,0x9f,0x15,0x18, - 0x96,0x20,0xe8,0x7e,0xdc,0xa0,0xff,0x5e,0x16,0x6c,0xbb,0x41,0x02,0x96,0xc6,0xd0, - 0x67,0xe3,0x96,0x9e,0xea,0xbf,0xdd,0x5c,0xbc,0xd1,0x54,0x5d,0xa2,0x4b,0x1f,0x92, - 0xa5,0x82,0x4b,0x0d,0x22,0xdb,0x88,0x60,0x25,0x8d,0x2b,0xd6,0x5a,0x23,0xa8,0xee, - 0x48,0x1f,0xbb,0x8e,0xf7,0x65,0x70,0xea,0xe7,0x85,0x7e,0x16,0xd6,0xb8,0x04,0xf3, - 0x3c,0x99,0xc2,0xdc,0x22,0xdc,0xb1,0x68,0xf5,0x72,0x27,0x50,0x26,0xda,0xbd,0x42, - 0xfb,0xce,0x19,0x47,0x7f,0x07,0xfb,0x20,0x54,0x95,0x46,0x6a,0x57,0x2c,0x9a,0xc5, - 0xb8,0x01,0x3c,0xd1,0x9e,0x7b,0x49,0x55,0xf0,0x24,0x08,0x53,0x1b,0xa2,0x7a,0x26, - 0x0a,0x33,0x34,0x4f,0x52,0x3a,0xce,0x74,0x0f,0xd7,0x19,0x34,0x35,0x0c,0xaa,0x74, - 0xda,0x38,0x67,0xc9,0xde,0x1f,0x30,0x94,0x18,0x25,0x5a,0x3d,0x45,0xdb,0xf1,0xaa, - 0x5c,0xab,0xc2,0x78,0xb6,0x78,0x8b,0xb8,0xd8,0x48,0xab,0xdb,0x70,0x5b,0xfd,0x96, - 0x4e,0xf6,0xed,0x9d,0x42,0x38,0xa7,0xa8,0xbf,0x4b,0x22,0xf4,0xa7,0x93,0xf0,0x9f, - 0x9c,0x9d,0xe8,0x9e,0xe1,0xee,0x57,0xc2,0x14,0x7e,0x27,0x25,0x29,0x04,0xd4,0xf6, - 0x40,0xa3,0x36,0xbe,0x4b,0x0d,0x1e,0x53,0x0d,0x91,0xbf,0x90,0x3e,0x4e,0xa2,0x19, - 0xd6,0x6f,0xec,0x9e,0xe0,0x59,0x75,0xba,0x4c,0xad,0x91,0x84,0x95,0x55,0xd5,0x35, - 0x95,0x55,0xd5,0x2d,0x06,0xfb,0xa9,0x22,0x68,0xef,0x69,0x9b,0xa9,0x56,0x3b,0x17, - 0x8d,0xa9,0x64,0x9a,0x7e,0x21,0x9a,0x75,0x7d,0x9c,0xba,0x2e,0xbb,0xa7,0xa0,0xbf, - 0x9b,0x81,0x9a,0xa0,0x7d,0xad,0xdb,0xbf,0xdb,0x40,0xce,0x72,0xc3,0x38,0x6c,0x8c, - 0xa0,0xea,0xc7,0xd9,0xe6,0xfa,0xc5,0xde,0x69,0xe8,0xd3,0xbd,0x86,0xfe,0x9c,0x16, - 0x04,0x74,0x6b,0xc3,0x58,0x42,0x7e,0x9c,0xda,0x08,0x6f,0x04,0x0e,0x54,0x56,0x55, - 0x8b,0xc1,0x0b,0x9d,0xe8,0x4d,0x0c,0xee,0x2b,0xd8,0xad,0xcb,0xb5,0x4e,0x24,0xa5, - 0xb4,0x27,0xd7,0xa0,0x3d,0x34,0xd1,0xe5,0x4a,0xb5,0x07,0x1a,0x24,0x69,0x70,0x91, - 0xb9,0x04,0x3d,0x5b,0xe2,0x0f,0x52,0xbb,0x27,0xd1,0x4f,0x46,0x04,0x3f,0xde,0xdd, - 0xad,0xd5,0x63,0x3d,0x93,0xdf,0x89,0x7f,0xbd,0xee,0xab,0x16,0xdd,0xc6,0x72,0x83, - 0x73,0xb0,0xc9,0xd0,0xf6,0x1a,0x42,0x36,0x10,0xd5,0x0e,0xca,0xf9,0xb1,0xaa,0xac, - 0xaa,0x2e,0xd1,0x2f,0xe6,0x06,0x2d,0x0c,0x82,0x7d,0x0a,0xb0,0x3e,0xd5,0xc1,0x6a, - 0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x09,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2, - 0x84,0x09,0x13,0x26,0x4c,0x98,0x30,0x61,0xc2,0x84,0x09,0x13,0x26,0x4c,0x98,0x30, - 0x61,0xc2,0x84,0x09,0x13,0x26,0x4c,0x98,0x30,0x31,0x21,0xfe,0x1f,0x18,0x62,0x5e, - 0xc3,0xd5,0xb2,0x66,0x2e,0x00,0x00,0x00,0x00,0x49,0x45,0x4e,0x44,0xae,0x42,0x60, - 0x82};