VS1053 Library Program demonstration

Dependencies:   mbed VS1053lib MI0283QTlib

Files at this revision

API Documentation at this revision

Comitter:
clemente
Date:
Sat May 26 17:42:43 2012 +0000
Commit message:

Changed in this revision

FATFileSystem.lib Show annotated file Show diff for this revision Revisions of this file
MI0283QTlib.lib Show annotated file Show diff for this revision Revisions of this file
SDFileSystem.cpp Show annotated file Show diff for this revision Revisions of this file
SDFileSystem.h Show annotated file Show diff for this revision Revisions of this file
VS1053lib.lib Show annotated file Show diff for this revision Revisions of this file
main.cpp Show annotated file Show diff for this revision Revisions of this file
mbed.bld Show annotated file Show diff for this revision Revisions of this file
piano_A4.h Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/FATFileSystem.lib	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_unsupported/code/fatfilesystem/
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/MI0283QTlib.lib	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/clemente/code/MI0283QTlib/#7ad454fed160
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDFileSystem.cpp	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,457 @@
+/* mbed SDFileSystem Library, for providing file access to SD cards
+ * Copyright (c) 2008-2010, sford
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+/* Introduction
+ * ------------
+ * SD and MMC cards support a number of interfaces, but common to them all
+ * is one based on SPI. This is the one I'm implmenting because it means
+ * it is much more portable even though not so performant, and we already 
+ * have the mbed SPI Interface!
+ *
+ * The main reference I'm using is Chapter 7, "SPI Mode" of: 
+ *  http://www.sdcard.org/developers/tech/sdcard/pls/Simplified_Physical_Layer_Spec.pdf
+ *
+ * SPI Startup
+ * -----------
+ * The SD card powers up in SD mode. The SPI interface mode is selected by
+ * asserting CS low and sending the reset command (CMD0). The card will 
+ * respond with a (R1) response.
+ *
+ * CMD8 is optionally sent to determine the voltage range supported, and 
+ * indirectly determine whether it is a version 1.x SD/non-SD card or 
+ * version 2.x. I'll just ignore this for now.
+ *
+ * ACMD41 is repeatedly issued to initialise the card, until "in idle"
+ * (bit 0) of the R1 response goes to '0', indicating it is initialised.
+ *
+ * You should also indicate whether the host supports High Capicity cards,
+ * and check whether the card is high capacity - i'll also ignore this
+ *
+ * SPI Protocol
+ * ------------
+ * The SD SPI protocol is based on transactions made up of 8-bit words, with
+ * the host starting every bus transaction by asserting the CS signal low. The
+ * card always responds to commands, data blocks and errors.
+ * 
+ * The protocol supports a CRC, but by default it is off (except for the 
+ * first reset CMD0, where the CRC can just be pre-calculated, and CMD8)
+ * I'll leave the CRC off I think! 
+ * 
+ * Standard capacity cards have variable data block sizes, whereas High 
+ * Capacity cards fix the size of data block to 512 bytes. I'll therefore
+ * just always use the Standard Capacity cards with a block size of 512 bytes.
+ * This is set with CMD16.
+ *
+ * You can read and write single blocks (CMD17, CMD25) or multiple blocks 
+ * (CMD18, CMD25). For simplicity, I'll just use single block accesses. When
+ * the card gets a read command, it responds with a response token, and then 
+ * a data token or an error.
+ * 
+ * SPI Command Format
+ * ------------------
+ * Commands are 6-bytes long, containing the command, 32-bit argument, and CRC.
+ *
+ * +---------------+------------+------------+-----------+----------+--------------+
+ * | 01 | cmd[5:0] | arg[31:24] | arg[23:16] | arg[15:8] | arg[7:0] | crc[6:0] | 1 |
+ * +---------------+------------+------------+-----------+----------+--------------+
+ *
+ * As I'm not using CRC, I can fix that byte to what is needed for CMD0 (0x95)
+ *
+ * All Application Specific commands shall be preceded with APP_CMD (CMD55).
+ *
+ * SPI Response Format
+ * -------------------
+ * The main response format (R1) is a status byte (normally zero). Key flags:
+ *  idle - 1 if the card is in an idle state/initialising 
+ *  cmd  - 1 if an illegal command code was detected
+ *
+ *    +-------------------------------------------------+
+ * R1 | 0 | arg | addr | seq | crc | cmd | erase | idle |
+ *    +-------------------------------------------------+
+ *
+ * R1b is the same, except it is followed by a busy signal (zeros) until
+ * the first non-zero byte when it is ready again.
+ *
+ * Data Response Token
+ * -------------------
+ * Every data block written to the card is acknowledged by a byte 
+ * response token
+ *
+ * +----------------------+
+ * | xxx | 0 | status | 1 |
+ * +----------------------+
+ *              010 - OK!
+ *              101 - CRC Error
+ *              110 - Write Error
+ *
+ * Single Block Read and Write
+ * ---------------------------
+ *
+ * Block transfers have a byte header, followed by the data, followed
+ * by a 16-bit CRC. In our case, the data will always be 512 bytes.
+ *  
+ * +------+---------+---------+- -  - -+---------+-----------+----------+
+ * | 0xFE | data[0] | data[1] |        | data[n] | crc[15:8] | crc[7:0] | 
+ * +------+---------+---------+- -  - -+---------+-----------+----------+
+ */
+ 
+#include "SDFileSystem.h"
+
+#define SD_COMMAND_TIMEOUT 5000
+
+SDFileSystem::SDFileSystem(PinName mosi, PinName miso, PinName sclk, PinName cs, const char* name) :
+  FATFileSystem(name), _spi(mosi, miso, sclk), _cs(cs) {
+      _cs = 1; 
+}
+
+#define R1_IDLE_STATE           (1 << 0)
+#define R1_ERASE_RESET          (1 << 1)
+#define R1_ILLEGAL_COMMAND      (1 << 2)
+#define R1_COM_CRC_ERROR        (1 << 3)
+#define R1_ERASE_SEQUENCE_ERROR (1 << 4)
+#define R1_ADDRESS_ERROR        (1 << 5)
+#define R1_PARAMETER_ERROR      (1 << 6)
+
+// Types
+//  - v1.x Standard Capacity
+//  - v2.x Standard Capacity
+//  - v2.x High Capacity
+//  - Not recognised as an SD Card
+
+#define SDCARD_FAIL 0
+#define SDCARD_V1   1
+#define SDCARD_V2   2
+#define SDCARD_V2HC 3
+
+int SDFileSystem::initialise_card() {
+    // Set to 100kHz for initialisation, and clock card with cs = 1
+    _spi.frequency(100000); 
+    _cs = 1;
+    for(int i=0; i<16; i++) {   
+        _spi.write(0xFF);
+    }
+
+    // send CMD0, should return with all zeros except IDLE STATE set (bit 0)
+    if(_cmd(0, 0) != R1_IDLE_STATE) { 
+        fprintf(stderr, "No disk, or could not put SD card in to SPI idle state\n");
+        return SDCARD_FAIL;
+    }
+
+    // send CMD8 to determine whther it is ver 2.x
+    int r = _cmd8();
+    if(r == R1_IDLE_STATE) {
+        return initialise_card_v2();
+    } else if(r == (R1_IDLE_STATE | R1_ILLEGAL_COMMAND)) {
+        return initialise_card_v1();
+    } else {
+        fprintf(stderr, "Not in idle state after sending CMD8 (not an SD card?)\n");
+        return SDCARD_FAIL;
+    }
+}
+
+int SDFileSystem::initialise_card_v1() {
+    for(int i=0; i<SD_COMMAND_TIMEOUT; i++) {
+        _cmd(55, 0); 
+        if(_cmd(41, 0) == 0) { 
+            return SDCARD_V1;
+        }
+    }
+
+    fprintf(stderr, "Timeout waiting for v1.x card\n");
+    return SDCARD_FAIL;
+}
+
+int SDFileSystem::initialise_card_v2() {
+    
+    for(int i=0; i<SD_COMMAND_TIMEOUT; i++) {
+        _cmd(55, 0); 
+        if(_cmd(41, 0) == 0) { 
+            _cmd58();
+            return SDCARD_V2;
+        }
+    }
+
+    fprintf(stderr, "Timeout waiting for v2.x card\n");
+    return SDCARD_FAIL;
+}
+
+int SDFileSystem::disk_initialize() {
+
+    int i = initialise_card();
+//    printf("init card = %d\n", i);
+//    printf("OK\n");
+
+    _sectors = _sd_sectors();
+
+    // Set block length to 512 (CMD16)
+    if(_cmd(16, 512) != 0) {
+        fprintf(stderr, "Set 512-byte block timed out\n");
+        return 1;
+    }
+        
+    _spi.frequency(1000000); // Set to 1MHz for data transfer
+    return 0;
+}
+
+int SDFileSystem::disk_write(const char *buffer, int block_number) {
+    // set write address for single block (CMD24)
+    if(_cmd(24, block_number * 512) != 0) {
+        return 1;
+    }
+
+    // send the data block
+    _write(buffer, 512);    
+    return 0;    
+}
+
+int SDFileSystem::disk_read(char *buffer, int block_number) {        
+    // set read address for single block (CMD17)
+    if(_cmd(17, block_number * 512) != 0) {
+        return 1;
+    }
+    
+    // receive the data
+    _read(buffer, 512);
+    return 0;
+}
+
+int SDFileSystem::disk_status() { return 0; }
+int SDFileSystem::disk_sync() { return 0; }
+int SDFileSystem::disk_sectors() { return _sectors; }
+
+// PRIVATE FUNCTIONS
+
+int SDFileSystem::_cmd(int cmd, int arg) {
+    _cs = 0; 
+
+    // send a command
+    _spi.write(0x40 | cmd);
+    _spi.write(arg >> 24);
+    _spi.write(arg >> 16);
+    _spi.write(arg >> 8);
+    _spi.write(arg >> 0);
+    _spi.write(0x95);
+
+    // wait for the repsonse (response[7] == 0)
+    for(int i=0; i<SD_COMMAND_TIMEOUT; i++) {
+        int response = _spi.write(0xFF);
+        if(!(response & 0x80)) {
+            _cs = 1;
+            _spi.write(0xFF);
+            return response;
+        }
+    }
+    _cs = 1;
+    _spi.write(0xFF);
+    return -1; // timeout
+}
+int SDFileSystem::_cmdx(int cmd, int arg) {
+    _cs = 0; 
+
+    // send a command
+    _spi.write(0x40 | cmd);
+    _spi.write(arg >> 24);
+    _spi.write(arg >> 16);
+    _spi.write(arg >> 8);
+    _spi.write(arg >> 0);
+    _spi.write(0x95);
+
+    // wait for the repsonse (response[7] == 0)
+    for(int i=0; i<SD_COMMAND_TIMEOUT; i++) {
+        int response = _spi.write(0xFF);
+        if(!(response & 0x80)) {
+            return response;
+        }
+    }
+    _cs = 1;
+    _spi.write(0xFF);
+    return -1; // timeout
+}
+
+
+int SDFileSystem::_cmd58() {
+    _cs = 0; 
+    int arg = 0;
+    
+    // send a command
+    _spi.write(0x40 | 58);
+    _spi.write(arg >> 24);
+    _spi.write(arg >> 16);
+    _spi.write(arg >> 8);
+    _spi.write(arg >> 0);
+    _spi.write(0x95);
+
+    // wait for the repsonse (response[7] == 0)
+    for(int i=0; i<SD_COMMAND_TIMEOUT; i++) {
+        int response = _spi.write(0xFF);
+        if(!(response & 0x80)) {
+            int ocr = _spi.write(0xFF) << 24;
+            ocr |= _spi.write(0xFF) << 16;
+            ocr |= _spi.write(0xFF) << 8;
+            ocr |= _spi.write(0xFF) << 0;
+//            printf("OCR = 0x%08X\n", ocr);
+            _cs = 1;
+            _spi.write(0xFF);
+            return response;
+        }
+    }
+    _cs = 1;
+    _spi.write(0xFF);
+    return -1; // timeout
+}
+
+int SDFileSystem::_cmd8() {
+    _cs = 0; 
+    
+    // send a command
+    _spi.write(0x40 | 8); // CMD8
+    _spi.write(0x00);     // reserved
+    _spi.write(0x00);     // reserved
+    _spi.write(0x01);     // 3.3v
+    _spi.write(0xAA);     // check pattern
+    _spi.write(0x87);     // crc
+
+    // wait for the repsonse (response[7] == 0)
+    for(int i=0; i<SD_COMMAND_TIMEOUT * 1000; i++) {
+        char response[5];
+        response[0] = _spi.write(0xFF);
+        if(!(response[0] & 0x80)) {
+                for(int j=1; j<5; j++) {
+                    response[i] = _spi.write(0xFF);
+                }
+                _cs = 1;
+                _spi.write(0xFF);
+                return response[0];
+        }
+    }
+    _cs = 1;
+    _spi.write(0xFF);
+    return -1; // timeout
+}
+
+int SDFileSystem::_read(char *buffer, int length) {
+    _cs = 0;
+
+    // read until start byte (0xFF)
+    while(_spi.write(0xFF) != 0xFE);
+
+    // read data
+    for(int i=0; i<length; i++) {
+        buffer[i] = _spi.write(0xFF);
+    }
+    _spi.write(0xFF); // checksum
+    _spi.write(0xFF);
+
+    _cs = 1;    
+    _spi.write(0xFF);
+    return 0;
+}
+
+int SDFileSystem::_write(const char *buffer, int length) {
+    _cs = 0;
+    
+    // indicate start of block
+    _spi.write(0xFE);
+    
+    // write the data
+    for(int i=0; i<length; i++) {
+        _spi.write(buffer[i]);
+    }
+    
+    // write the checksum
+    _spi.write(0xFF); 
+    _spi.write(0xFF);
+
+    // check the repsonse token
+    if((_spi.write(0xFF) & 0x1F) != 0x05) {
+        _cs = 1;
+        _spi.write(0xFF);        
+        return 1;
+    }
+
+    // wait for write to finish
+    while(_spi.write(0xFF) == 0);
+
+    _cs = 1; 
+    _spi.write(0xFF);
+    return 0;
+}
+
+static int ext_bits(char *data, int msb, int lsb) {
+    int bits = 0;
+    int size = 1 + msb - lsb; 
+    for(int i=0; i<size; i++) {
+        int position = lsb + i;
+        int byte = 15 - (position >> 3);
+        int bit = position & 0x7;
+        int value = (data[byte] >> bit) & 1;
+        bits |= value << i;
+    }
+    return bits;
+}
+
+int SDFileSystem::_sd_sectors() {
+
+    // CMD9, Response R2 (R1 byte + 16-byte block read)
+    if(_cmdx(9, 0) != 0) {
+        fprintf(stderr, "Didn't get a response from the disk\n");
+        return 0;
+    }
+    
+    char csd[16];    
+    if(_read(csd, 16) != 0) {
+        fprintf(stderr, "Couldn't read csd response from disk\n");
+        return 0;
+    }
+
+    // csd_structure : csd[127:126]
+    // c_size        : csd[73:62]
+    // c_size_mult   : csd[49:47]
+    // read_bl_len   : csd[83:80] - the *maximum* read block length
+
+    int csd_structure = ext_bits(csd, 127, 126);
+    int c_size = ext_bits(csd, 73, 62);
+    int c_size_mult = ext_bits(csd, 49, 47);
+    int read_bl_len = ext_bits(csd, 83, 80);
+
+//    printf("CSD_STRUCT = %d\n", csd_structure);
+    
+    if(csd_structure != 0) {
+        fprintf(stderr, "This disk tastes funny! I only know about type 0 CSD structures\n");
+        return 0;
+    }
+             
+    // memory capacity = BLOCKNR * BLOCK_LEN
+    // where
+    //  BLOCKNR = (C_SIZE+1) * MULT
+    //  MULT = 2^(C_SIZE_MULT+2) (C_SIZE_MULT < 8)
+    //  BLOCK_LEN = 2^READ_BL_LEN, (READ_BL_LEN < 12)         
+                            
+    int block_len = 1 << read_bl_len;
+    int mult = 1 << (c_size_mult + 2);
+    int blocknr = (c_size + 1) * mult;
+    int capacity = blocknr * block_len;
+        
+    int blocks = capacity / 512;
+        
+    return blocks;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SDFileSystem.h	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,81 @@
+/* mbed SDFileSystem Library, for providing file access to SD cards
+ * Copyright (c) 2008-2010, sford
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
+ * of this software and associated documentation files (the "Software"), to deal
+ * in the Software without restriction, including without limitation the rights
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ * copies of the Software, and to permit persons to whom the Software is
+ * furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice shall be included in
+ * all copies or substantial portions of the Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ * THE SOFTWARE.
+ */
+
+#ifndef MBED_SDFILESYSTEM_H
+#define MBED_SDFILESYSTEM_H
+
+#include "mbed.h"
+#include "FATFileSystem.h"
+
+/** Access the filesystem on an SD Card using SPI
+ *
+ * @code
+ * #include "mbed.h"
+ * #include "SDFileSystem.h"
+ *
+ * SDFileSystem sd(p5, p6, p7, p12, "sd"); // mosi, miso, sclk, cs
+ *  
+ * int main() {
+ *     FILE *fp = fopen("/sd/myfile.txt", "w");
+ *     fprintf(fp, "Hello World!\n");
+ *     fclose(fp);
+ * }
+ */
+class SDFileSystem : public FATFileSystem {
+public:
+
+    /** Create the File System for accessing an SD Card using SPI
+     *
+     * @param mosi SPI mosi pin connected to SD Card
+     * @param miso SPI miso pin conencted to SD Card
+     * @param sclk SPI sclk pin connected to SD Card
+     * @param cs   DigitalOut pin used as SD Card chip select
+     * @param name The name used to access the virtual filesystem
+     */
+    SDFileSystem(PinName mosi, PinName miso, PinName sclk, PinName cs, const char* name);
+    virtual int disk_initialize();
+    virtual int disk_write(const char *buffer, int block_number);
+    virtual int disk_read(char *buffer, int block_number);    
+    virtual int disk_status();
+    virtual int disk_sync();
+    virtual int disk_sectors();
+
+protected:
+
+    int _cmd(int cmd, int arg);
+    int _cmdx(int cmd, int arg);
+    int _cmd8();
+    int _cmd58();
+    int initialise_card();
+    int initialise_card_v1();
+    int initialise_card_v2();
+    
+    int _read(char *buffer, int length);
+    int _write(const char *buffer, int length);
+    int _sd_sectors();
+    int _sectors;
+    
+    SPI _spi;
+    DigitalOut _cs;     
+};
+
+#endif
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/VS1053lib.lib	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/clemente/code/VS1053lib/#399afe8151de
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,184 @@
+#include "mbed.h"
+#include "SDFileSystem.h"
+#include "VLSIcodec.h"
+#include "piano_A4.h"
+#include "MI0283QTlib.h"
+
+DigitalOut myled(LED2);
+DigitalOut DBG_LED(LED1);
+DigitalIn Volume( p30);
+DigitalIn Pause( p25);
+VS1053Codec codec( p11, p12, p13, p21, p22, p23, p24);
+
+FILE *fp;
+SDFileSystem sd(p5, p6, p7, p8, "sd");
+
+GLCD lcd(  p11, p12, p13, p14, p17, p26);
+
+void PlayPiano1( void);
+void displayGA( unsigned char *gaval, unsigned char *gapeak, unsigned char bands);
+
+unsigned char volval=0;
+Timer t;
+Serial pc(USBTX, USBRX);
+
+unsigned char buff[64];
+
+unsigned char gaval[14], gapeak[14];
+
+int main() {
+
+    int cnt;
+    
+    pc.baud( 115200);
+    
+    fp = fopen("/sd/mbed.txt", "w");
+    if ( fp == NULL) {
+        printf("Error opening file\n");
+        DBG_LED=1;
+        while(1);
+    }
+    fprintf( fp, "File mbed\n");
+    fclose( fp);
+
+    Volume.mode( PullUp);
+    Pause.mode( PullUp);
+    
+   if ( (fp = fopen("/sd/sounds/0001.mp3", "r")) == NULL) {
+    DBG_LED=1;
+    printf("Errore apertura file MP3\r\n");
+    while(1);
+   }
+    //
+    lcd.backlightoff();
+    lcd.lcd_init();
+    lcd.lcd_clear( LCD_WHITE);
+    lcd.backlighton();
+   
+    //
+    codec.init();
+    // codec.loadpatch();  
+    codec.loadgapatch();  
+    codec.setvolume( volval, volval);
+    
+    printf("Sine Test\r\n");
+    codec.sinetest( 0x7d);
+    wait( .5);
+    codec.sinetest( 0x00);
+    
+    printf("Riproduzione del file MP3\n\r");
+
+    codec.setbassboost( 15, 150);
+    codec.settrebleboost( 7, 15000);
+    codec.setvmeter();
+    
+    //
+    unsigned short bands=codec.readgabands();
+    printf("GA: Num of bands:%d\r\n", bands);
+    
+    t.start();
+    while( 1) {
+        cnt = fread(&buff[0], sizeof(buff[0]), sizeof(buff)/sizeof(buff[0]), fp);
+        // loop di riproduzione.
+        int iSize=0;
+        while( iSize < cnt) {
+            int count=32;
+            codec.testdreq();
+            while( count--) {
+                codec.writedata( buff[ iSize++]);
+                if ( iSize > cnt)
+                    break;
+            }
+        }    
+        // verifico l'esito della lettura. 
+        if ( feof( fp)) {
+            fclose( fp);
+            DBG_LED=1;
+            break;
+        }
+        //
+        if ( !Volume) {
+            volval++;
+            codec.setvolume( volval, volval);
+            printf("Set volume %d\n\r", volval);
+        }
+        //
+        if ( !Pause) {
+            // volume a zero
+            codec.setvolume( 0xFE, 0xFE);
+            // Aspetto finché il pulsante è premuto...
+            while( !Pause);
+            codec.setvolume( volval, volval);
+        }
+        //
+        int tm=t.read_ms();
+        //
+        if ( tm>=100) {
+            t.reset();
+            //
+            codec.readgavalue( &gaval[0], &gapeak[0]);
+            displayGA( &gaval[0], &gapeak[0], bands);
+#if 0            
+            printf("SValue: ");
+            for( int f=0; f<bands; f++) {
+                printf("%2d, ",gaval[f]);
+            }
+#else
+            printf("SPeak: ");
+            for( int f=0; f<bands; f++) {
+                printf("%2d, ",gapeak[f]);
+            }
+#endif            
+            printf("\r\n");
+        }
+    }
+    
+    while(1) {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
+}
+
+void PlayPiano1( void)
+{
+    // piano_note
+    int cnt=sizeof(piano_A4)/sizeof(piano_A4[0]);
+    printf("Riproduzione file MP3 piano_note [%d]\n\r", cnt);
+    //
+    int iSize=0;
+    while( iSize < cnt) {
+        int count=32;
+        codec.testdreq();
+        while( count--) {
+            codec.writedata( piano_A4[ iSize++]);
+            if ( iSize > cnt)
+                break;
+        }
+    }
+}
+
+#define cBAR_MUL    2                       // moltiplicatore per aumentare il valore max della barra.
+#define cBAR_MAX    31                      // massimo valore raggiunto dalla barra, come definito dal VS1053
+#define cBAR_W      5                       // spessore barra
+#define cBAR_H      (cBAR_MUL*cBAR_MAX)     // altezza della barra
+#define cBAR_S      1                       // distanza tra le barre
+#define cBAR_X      20                      // coordinata x iniziale
+#define cBAR_Y      150                     // coordinata y iniziale  
+
+const unsigned int bandscl[14]={ 0xff0000,0xff9933,0xffff66,0x99cc00,0x00ff00,0x33cc66,0x33ffcc,0x99ffff,0x0033cc,0x6666ff,
+                                 0x9933cc,0xccccff,0x0066ff,0x333ff};
+                                 
+void displayGA( unsigned char *gaval, unsigned char *gapeak, unsigned char bands)
+{
+ 
+    lcd.lcd_clear( cBAR_X, cBAR_Y, (cBAR_W+cBAR_S)*bands, cBAR_H, LCD_WHITE);
+    
+    for ( int i=0; i<bands; i++) {
+        //
+        // lcd.lcd_clear( cBAR_X+(( cBAR_W+cBAR_S)*i), cBAR_Y, cBAR_W, cBAR_H, LCD_WHITE);
+        // lcd.lcd_clear(unsigned int x0, unsigned int y0, unsigned int w, unsigned int h, unsigned int color)
+        lcd.lcd_clear( cBAR_X+(( cBAR_W+cBAR_S)*i), cBAR_Y+(cBAR_H-(gaval[i]*cBAR_MUL) ), cBAR_W, gaval[i]*cBAR_MUL, bandscl[i]);
+    }
+}
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mbed.bld	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,1 @@
+http://mbed.org/users/mbed_official/code/mbed/builds/e2ac27c8e93e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/piano_A4.h	Sat May 26 17:42:43 2012 +0000
@@ -0,0 +1,1668 @@
+const unsigned char piano_A4[] = {
+    0x52,0x49,0x46,0x46,0x88,0x61,0x00,0x00,0x57,0x41,0x56,0x45,0x66,0x6d,0x74,
+    0x20,0x10,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x22,0x56,0x00,0x00,0x22,0x56,
+    0x00,0x00,0x01,0x00,0x08,0x00,0x64,0x61,0x74,0x61,0x63,0x61,0x00,0x00,0x80,
+    0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x81,0x81,0x82,0x82,0x82,
+    0x82,0x82,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,
+    0x81,0x80,0x80,0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7f,0x80,0x81,0x83,0x84,
+    0x85,0x86,0x86,0x85,0x85,0x84,0x82,0x81,0x7f,0x7d,0x7c,0x7b,0x7b,0x7a,0x7b,
+    0x7b,0x7b,0x7c,0x7d,0x7f,0x82,0x85,0x88,0x8c,0x8e,0x90,0x91,0x90,0x8e,0x8b,
+    0x87,0x82,0x7d,0x77,0x71,0x6c,0x69,0x69,0x6b,0x6e,0x72,0x77,0x7b,0x7f,0x82,
+    0x85,0x89,0x8d,0x90,0x93,0x95,0x95,0x94,0x90,0x8c,0x86,0x80,0x7a,0x74,0x6f,
+    0x6a,0x67,0x66,0x67,0x6a,0x6f,0x74,0x79,0x7d,0x81,0x84,0x88,0x8b,0x8e,0x90,
+    0x92,0x94,0x96,0x97,0x98,0x97,0x95,0x90,0x89,0x81,0x79,0x71,0x6c,0x69,0x69,
+    0x6a,0x6b,0x6c,0x6d,0x6e,0x71,0x74,0x79,0x7f,0x85,0x8b,0x91,0x97,0x9c,0xa0,
+    0xa2,0xa2,0x9e,0x98,0x8f,0x85,0x7a,0x70,0x68,0x62,0x60,0x61,0x63,0x66,0x69,
+    0x6b,0x6e,0x71,0x75,0x79,0x7c,0x80,0x86,0x8e,0x96,0x9e,0xa5,0xa9,0xa8,0xa5,
+    0x9e,0x94,0x89,0x7f,0x76,0x71,0x6e,0x6c,0x6c,0x6c,0x6d,0x6f,0x72,0x76,0x7b,
+    0x7f,0x84,0x8a,0x92,0x9a,0xa1,0xa7,0xa9,0xa7,0xa0,0x96,0x89,0x7a,0x6c,0x60,
+    0x57,0x51,0x50,0x52,0x56,0x5b,0x60,0x66,0x6d,0x74,0x7b,0x84,0x8f,0x9a,0xa6,
+    0xb1,0xb8,0xbb,0xba,0xb3,0xa8,0x9a,0x89,0x79,0x6a,0x5d,0x54,0x4e,0x4b,0x4b,
+    0x4d,0x51,0x57,0x5e,0x67,0x72,0x7f,0x8e,0x9d,0xab,0xb8,0xc3,0xcb,0xcd,0xca,
+    0xbf,0xaf,0x9c,0x87,0x73,0x62,0x54,0x4a,0x43,0x40,0x41,0x46,0x4e,0x58,0x64,
+    0x71,0x80,0x8f,0x9f,0xad,0xb8,0xc0,0xc5,0xc5,0xc1,0xb7,0xa6,0x91,0x7a,0x62,
+    0x4e,0x3d,0x30,0x29,0x26,0x29,0x31,0x3d,0x4e,0x62,0x78,0x8f,0xa5,0xba,0xcd,
+    0xda,0xe2,0xe3,0xe0,0xd8,0xcb,0xb8,0xa1,0x87,0x6e,0x58,0x45,0x37,0x2d,0x27,
+    0x27,0x2c,0x37,0x45,0x57,0x69,0x7c,0x90,0xa5,0xb8,0xc8,0xd3,0xd9,0xdb,0xd8,
+    0xd0,0xc2,0xae,0x95,0x7a,0x60,0x49,0x37,0x2a,0x22,0x20,0x23,0x2d,0x3c,0x4f,
+    0x63,0x79,0x8f,0xa6,0xba,0xcc,0xd8,0xe1,0xe6,0xe7,0xe3,0xd8,0xc6,0xad,0x92,
+    0x76,0x5c,0x45,0x33,0x26,0x20,0x1e,0x22,0x2c,0x3a,0x4b,0x60,0x77,0x8f,0xa5,
+    0xb9,0xc8,0xd4,0xdc,0xdf,0xdc,0xd3,0xc3,0xad,0x94,0x79,0x60,0x4a,0x39,0x2c,
+    0x25,0x23,0x27,0x32,0x40,0x50,0x61,0x74,0x87,0x9a,0xac,0xbb,0xc6,0xcc,0xce,
+    0xcc,0xc4,0xb6,0xa5,0x90,0x7b,0x66,0x53,0x44,0x38,0x31,0x2f,0x33,0x3d,0x4b,
+    0x5b,0x6d,0x81,0x94,0xa7,0xb8,0xc7,0xd2,0xd9,0xdc,0xda,0xd2,0xc3,0xaf,0x97,
+    0x7e,0x64,0x4e,0x3b,0x2d,0x24,0x1f,0x21,0x29,0x36,0x47,0x5b,0x72,0x89,0x9f,
+    0xb3,0xc3,0xd0,0xd9,0xde,0xdd,0xd7,0xca,0xb6,0x9e,0x84,0x6a,0x53,0x40,0x31,
+    0x26,0x22,0x24,0x2b,0x38,0x47,0x59,0x6e,0x83,0x99,0xac,0xbd,0xcb,0xd6,0xdc,
+    0xde,0xda,0xd0,0xc1,0xac,0x94,0x7b,0x63,0x4d,0x3a,0x2c,0x23,0x21,0x25,0x2f,
+    0x3e,0x50,0x65,0x7c,0x92,0xa7,0xb9,0xc8,0xd4,0xdc,0xdf,0xde,0xd7,0xca,0xb7,
+    0xa0,0x87,0x6f,0x58,0x43,0x31,0x25,0x1e,0x1d,0x21,0x2c,0x3b,0x4f,0x66,0x7e,
+    0x96,0xac,0xc0,0xd0,0xdd,0xe4,0xe6,0xe2,0xd7,0xc6,0xb0,0x98,0x7f,0x66,0x4e,
+    0x39,0x29,0x1e,0x1b,0x1d,0x24,0x30,0x41,0x56,0x6d,0x85,0x9c,0xb1,0xc4,0xd3,
+    0xdf,0xe6,0xe7,0xe2,0xd6,0xc5,0xb1,0x99,0x80,0x67,0x4f,0x3a,0x2a,0x1f,0x1b,
+    0x1b,0x21,0x2d,0x3e,0x53,0x6b,0x83,0x99,0xae,0xc0,0xce,0xd8,0xde,0xdd,0xd6,
+    0xca,0xba,0xa7,0x91,0x7b,0x65,0x52,0x41,0x35,0x2e,0x2b,0x2d,0x35,0x42,0x53,
+    0x66,0x79,0x8c,0x9d,0xac,0xb9,0xc3,0xc9,0xca,0xc4,0xba,0xac,0x9c,0x89,0x74,
+    0x61,0x4f,0x42,0x39,0x35,0x36,0x3a,0x44,0x52,0x63,0x75,0x89,0x9b,0xac,0xba,
+    0xc7,0xd0,0xd6,0xd5,0xce,0xc3,0xb4,0xa2,0x8d,0x78,0x62,0x4d,0x3d,0x31,0x2a,
+    0x29,0x2c,0x35,0x42,0x54,0x68,0x7d,0x92,0xa4,0xb4,0xc2,0xcd,0xd5,0xd7,0xd4,
+    0xcb,0xbd,0xab,0x96,0x7f,0x68,0x54,0x43,0x35,0x2c,0x28,0x29,0x2f,0x3b,0x4b,
+    0x5f,0x73,0x87,0x98,0xa8,0xb7,0xc3,0xcb,0xcf,0xce,0xc8,0xbd,0xae,0x9c,0x89,
+    0x75,0x62,0x53,0x47,0x3f,0x3b,0x3c,0x41,0x49,0x56,0x66,0x77,0x87,0x95,0xa2,
+    0xaf,0xba,0xc2,0xc5,0xc4,0xbd,0xb2,0xa4,0x94,0x82,0x6f,0x5f,0x50,0x44,0x3c,
+    0x38,0x39,0x3d,0x46,0x53,0x63,0x74,0x85,0x94,0xa2,0xb0,0xbb,0xc4,0xc9,0xc9,
+    0xc5,0xbc,0xaf,0x9f,0x8c,0x7a,0x68,0x59,0x4c,0x42,0x3c,0x3a,0x3c,0x43,0x4f,
+    0x5f,0x70,0x81,0x92,0xa2,0xb1,0xbe,0xc8,0xcf,0xd0,0xcd,0xc4,0xb8,0xa8,0x96,
+    0x82,0x6f,0x5d,0x4e,0x42,0x3a,0x35,0x35,0x3b,0x46,0x56,0x67,0x79,0x89,0x99,
+    0xa9,0xb8,0xc4,0xcc,0xd0,0xce,0xc6,0xba,0xaa,0x97,0x82,0x6f,0x5d,0x4c,0x3f,
+    0x36,0x30,0x30,0x34,0x3f,0x4e,0x5f,0x71,0x82,0x93,0xa3,0xb3,0xc0,0xc9,0xce,
+    0xcf,0xca,0xc0,0xb2,0xa1,0x8f,0x7b,0x69,0x58,0x4a,0x3e,0x35,0x30,0x31,0x38,
+    0x44,0x53,0x63,0x74,0x84,0x94,0xa3,0xb1,0xbc,0xc3,0xc5,0xc3,0xbd,0xb2,0xa5,
+    0x95,0x83,0x72,0x62,0x54,0x49,0x3f,0x39,0x38,0x3d,0x47,0x54,0x63,0x73,0x84,
+    0x95,0xa5,0xb5,0xc2,0xcc,0xd1,0xd1,0xcc,0xc2,0xb4,0xa4,0x91,0x7e,0x6b,0x5b,
+    0x4c,0x40,0x37,0x33,0x35,0x3d,0x48,0x55,0x64,0x74,0x84,0x95,0xa6,0xb4,0xc0,
+    0xc8,0xca,0xc8,0xc2,0xb7,0xa9,0x98,0x86,0x74,0x64,0x54,0x47,0x3c,0x36,0x36,
+    0x3b,0x44,0x50,0x5e,0x6e,0x7f,0x90,0xa1,0xb1,0xbe,0xc7,0xcb,0xcb,0xc6,0xbb,
+    0xad,0x9c,0x89,0x77,0x64,0x54,0x45,0x3a,0x33,0x32,0x36,0x3f,0x4b,0x5a,0x6a,
+    0x7b,0x8e,0xa0,0xb0,0xbe,0xc9,0xcf,0xd0,0xcc,0xc3,0xb6,0xa5,0x93,0x80,0x6e,
+    0x5c,0x4c,0x3f,0x36,0x33,0x35,0x3d,0x47,0x55,0x64,0x75,0x87,0x9a,0xac,0xbb,
+    0xc8,0xd1,0xd5,0xd3,0xcc,0xc1,0xb3,0xa2,0x90,0x7d,0x6a,0x57,0x46,0x39,0x31,
+    0x2f,0x33,0x3a,0x44,0x51,0x61,0x73,0x86,0x98,0xaa,0xba,0xc6,0xcd,0xcf,0xcc,
+    0xc4,0xb7,0xa8,0x97,0x84,0x71,0x5e,0x4d,0x3f,0x35,0x31,0x32,0x37,0x40,0x4d,
+    0x5c,0x6e,0x82,0x96,0xa9,0xba,0xc8,0xd1,0xd5,0xd4,0xcd,0xc2,0xb3,0xa2,0x8f,
+    0x7b,0x66,0x53,0x43,0x37,0x30,0x2e,0x2f,0x36,0x40,0x4d,0x5e,0x70,0x84,0x97,
+    0xa9,0xb9,0xc4,0xcb,0xcc,0xc9,0xc0,0xb5,0xa6,0x96,0x83,0x70,0x5d,0x4d,0x40,
+    0x38,0x35,0x36,0x3b,0x44,0x51,0x60,0x71,0x83,0x96,0xa8,0xb8,0xc4,0xcb,0xce,
+    0xcc,0xc5,0xbb,0xad,0x9e,0x8c,0x79,0x66,0x55,0x48,0x3e,0x39,0x39,0x3c,0x42,
+    0x4d,0x5a,0x69,0x7a,0x8b,0x9d,0xad,0xba,0xc4,0xc9,0xc8,0xc4,0xbb,0xb0,0xa2,
+    0x91,0x7f,0x6c,0x5b,0x4d,0x43,0x3d,0x3b,0x3c,0x42,0x4b,0x57,0x65,0x75,0x86,
+    0x97,0xa8,0xb6,0xc0,0xc6,0xc7,0xc4,0xbd,0xb3,0xa6,0x97,0x85,0x73,0x62,0x53,
+    0x48,0x40,0x3c,0x3c,0x40,0x49,0x54,0x63,0x73,0x85,0x98,0xa9,0xb8,0xc3,0xca,
+    0xcc,0xca,0xc4,0xba,0xae,0x9f,0x8d,0x7a,0x67,0x57,0x49,0x3f,0x39,0x36,0x38,
+    0x3e,0x47,0x53,0x63,0x74,0x86,0x98,0xa9,0xb7,0xc0,0xc5,0xc5,0xc2,0xbc,0xb2,
+    0xa6,0x97,0x86,0x74,0x64,0x56,0x4b,0x44,0x3f,0x3f,0x42,0x4a,0x54,0x62,0x72,
+    0x83,0x94,0xa4,0xb1,0xbb,0xc1,0xc2,0xc0,0xbb,0xb4,0xa9,0x9c,0x8c,0x7c,0x6c,
+    0x5e,0x52,0x49,0x43,0x41,0x42,0x46,0x4e,0x59,0x67,0x77,0x87,0x98,0xa7,0xb2,
+    0xb9,0xbc,0xbd,0xba,0xb4,0xab,0x9f,0x90,0x81,0x71,0x63,0x56,0x4c,0x45,0x41,
+    0x41,0x45,0x4b,0x56,0x63,0x72,0x84,0x96,0xa5,0xb2,0xba,0xbf,0xc0,0xbf,0xba,
+    0xb1,0xa5,0x97,0x87,0x77,0x68,0x5a,0x4e,0x46,0x41,0x40,0x42,0x48,0x51,0x5d,
+    0x6c,0x7d,0x8f,0x9f,0xad,0xb7,0xbd,0xc1,0xc2,0xc0,0xba,0xb0,0xa2,0x93,0x83,
+    0x73,0x64,0x57,0x4c,0x45,0x41,0x41,0x45,0x4c,0x56,0x63,0x74,0x85,0x96,0xa5,
+    0xb0,0xb8,0xbd,0xc0,0xbf,0xbb,0xb3,0xa8,0x9a,0x8c,0x7d,0x6e,0x61,0x55,0x4d,
+    0x48,0x46,0x48,0x4d,0x55,0x61,0x70,0x81,0x92,0xa1,0xac,0xb4,0xba,0xbd,0xbd,
+    0xba,0xb2,0xa8,0x9b,0x8c,0x7d,0x6e,0x60,0x53,0x4a,0x43,0x41,0x41,0x45,0x4d,
+    0x58,0x68,0x7a,0x8c,0x9d,0xaa,0xb5,0xbc,0xc1,0xc3,0xc1,0xbb,0xb1,0xa4,0x96,
+    0x86,0x77,0x68,0x5a,0x4e,0x45,0x41,0x3f,0x40,0x46,0x4f,0x5d,0x6e,0x80,0x90,
+    0x9e,0xa9,0xb2,0xb8,0xbb,0xbb,0xb6,0xae,0xa3,0x96,0x88,0x7a,0x6b,0x5e,0x52,
+    0x4a,0x45,0x43,0x43,0x47,0x4f,0x5b,0x6b,0x7b,0x8c,0x9a,0xa5,0xae,0xb4,0xb8,
+    0xb9,0xb6,0xb0,0xa6,0x9a,0x8e,0x81,0x74,0x67,0x5b,0x52,0x4c,0x48,0x48,0x4a,
+    0x51,0x5b,0x6a,0x7b,0x8b,0x9a,0xa6,0xb0,0xb8,0xbd,0xbf,0xbd,0xb7,0xae,0xa2,
+    0x96,0x88,0x7a,0x6c,0x5f,0x54,0x4c,0x46,0x43,0x43,0x46,0x4f,0x5c,0x6c,0x7c,
+    0x8c,0x99,0xa4,0xad,0xb4,0xb9,0xb9,0xb6,0xaf,0xa6,0x9b,0x8f,0x82,0x74,0x67,
+    0x5c,0x53,0x4c,0x47,0x46,0x47,0x4e,0x59,0x68,0x78,0x87,0x95,0xa1,0xab,0xb2,
+    0xb7,0xb9,0xb7,0xb1,0xa9,0x9e,0x92,0x85,0x78,0x6b,0x5f,0x56,0x4f,0x4a,0x47,
+    0x47,0x4d,0x57,0x64,0x73,0x82,0x8f,0x9b,0xa5,0xae,0xb4,0xb7,0xb6,0xb2,0xaa,
+    0xa2,0x97,0x8a,0x7d,0x70,0x64,0x5a,0x52,0x4b,0x48,0x47,0x4b,0x53,0x60,0x6e,
+    0x7d,0x8b,0x98,0xa2,0xac,0xb3,0xb7,0xb8,0xb4,0xae,0xa6,0x9c,0x8f,0x82,0x75,
+    0x69,0x5f,0x56,0x4f,0x4a,0x48,0x4b,0x52,0x5d,0x6c,0x7b,0x8a,0x97,0xa3,0xae,
+    0xb6,0xbc,0xbe,0xbb,0xb5,0xad,0xa2,0x96,0x87,0x79,0x6b,0x5f,0x54,0x4b,0x45,
+    0x41,0x41,0x46,0x4f,0x5c,0x6a,0x79,0x86,0x93,0x9f,0xaa,0xb2,0xb6,0xb6,0xb3,
+    0xae,0xa5,0x9a,0x8e,0x80,0x73,0x68,0x5d,0x55,0x4e,0x49,0x48,0x4b,0x52,0x5e,
+    0x6b,0x79,0x86,0x92,0x9e,0xa8,0xb0,0xb4,0xb5,0xb3,0xae,0xa7,0x9e,0x92,0x86,
+    0x79,0x6e,0x64,0x5b,0x54,0x4e,0x4c,0x4f,0x55,0x60,0x6d,0x7a,0x87,0x94,0x9f,
+    0xaa,0xb2,0xb6,0xb8,0xb6,0xb2,0xab,0xa1,0x95,0x88,0x7b,0x70,0x65,0x5c,0x54,
+    0x4f,0x4c,0x4d,0x52,0x5c,0x68,0x75,0x82,0x90,0x9c,0xa7,0xb0,0xb6,0xb8,0xb8,
+    0xb4,0xae,0xa4,0x98,0x8b,0x7e,0x71,0x66,0x5c,0x54,0x4d,0x49,0x49,0x4d,0x56,
+    0x61,0x6e,0x7a,0x87,0x94,0x9f,0xa8,0xae,0xb1,0xb1,0xaf,0xaa,0xa3,0x98,0x8d,
+    0x81,0x76,0x6b,0x61,0x58,0x51,0x4c,0x4a,0x4c,0x53,0x5c,0x68,0x74,0x81,0x8e,
+    0x99,0xa3,0xaa,0xae,0xb1,0xb0,0xad,0xa7,0x9e,0x93,0x88,0x7c,0x72,0x68,0x5f,
+    0x56,0x50,0x4d,0x4e,0x53,0x5b,0x66,0x71,0x7d,0x89,0x94,0x9e,0xa5,0xaa,0xad,
+    0xae,0xab,0xa6,0x9e,0x95,0x8b,0x81,0x77,0x6d,0x65,0x5c,0x55,0x51,0x50,0x54,
+    0x5b,0x65,0x70,0x7c,0x88,0x94,0x9e,0xa6,0xab,0xae,0xaf,0xad,0xa8,0xa0,0x96,
+    0x8c,0x81,0x77,0x6d,0x64,0x5c,0x55,0x4f,0x4d,0x4f,0x55,0x5e,0x69,0x75,0x82,
+    0x8e,0x99,0xa3,0xaa,0xaf,0xb1,0xb0,0xac,0xa5,0x9c,0x91,0x87,0x7d,0x73,0x6a,
+    0x61,0x58,0x52,0x4f,0x4f,0x53,0x5b,0x64,0x6f,0x7a,0x86,0x90,0x99,0xa1,0xa6,
+    0xaa,0xaa,0xa8,0xa3,0x9c,0x94,0x8b,0x82,0x79,0x71,0x68,0x60,0x59,0x55,0x54,
+    0x56,0x5c,0x64,0x6e,0x79,0x84,0x8f,0x98,0xa0,0xa6,0xaa,0xab,0xab,0xa7,0xa1,
+    0x9a,0x92,0x89,0x81,0x79,0x70,0x68,0x60,0x5b,0x58,0x59,0x5c,0x62,0x6b,0x75,
+    0x7f,0x89,0x92,0x9a,0xa0,0xa4,0xa6,0xa6,0xa3,0x9e,0x98,0x90,0x88,0x81,0x79,
+    0x71,0x69,0x61,0x5c,0x58,0x58,0x5b,0x61,0x69,0x73,0x7d,0x87,0x90,0x98,0x9e,
+    0xa2,0xa4,0xa4,0xa1,0x9d,0x96,0x8f,0x87,0x7f,0x78,0x71,0x69,0x62,0x5d,0x59,
+    0x59,0x5b,0x61,0x69,0x73,0x7d,0x87,0x90,0x97,0x9d,0xa2,0xa4,0xa4,0xa2,0x9d,
+    0x97,0x90,0x88,0x81,0x79,0x72,0x6b,0x64,0x5e,0x5a,0x59,0x5a,0x5f,0x67,0x70,
+    0x7a,0x85,0x8e,0x96,0x9d,0xa1,0xa4,0xa5,0xa3,0x9f,0x99,0x92,0x8b,0x84,0x7d,
+    0x76,0x6f,0x69,0x63,0x5f,0x5d,0x5e,0x62,0x68,0x71,0x7a,0x84,0x8d,0x94,0x9b,
+    0x9f,0xa2,0xa3,0xa2,0x9f,0x9a,0x93,0x8d,0x86,0x7f,0x78,0x71,0x6b,0x66,0x61,
+    0x5e,0x5e,0x61,0x66,0x6e,0x77,0x80,0x89,0x91,0x97,0x9c,0x9f,0xa1,0xa0,0x9e,
+    0x99,0x93,0x8d,0x86,0x7f,0x79,0x73,0x6d,0x68,0x63,0x60,0x5f,0x61,0x65,0x6c,
+    0x74,0x7d,0x85,0x8d,0x94,0x99,0x9d,0x9f,0x9f,0x9c,0x98,0x93,0x8d,0x86,0x7f,
+    0x79,0x73,0x6e,0x69,0x65,0x62,0x60,0x62,0x65,0x6b,0x73,0x7c,0x85,0x8e,0x95,
+    0x9b,0x9f,0xa1,0xa1,0xa0,0x9c,0x96,0x90,0x89,0x82,0x7b,0x75,0x6f,0x6a,0x66,
+    0x63,0x61,0x62,0x65,0x6b,0x73,0x7c,0x85,0x8d,0x94,0x9a,0x9e,0xa1,0xa2,0xa0,
+    0x9d,0x97,0x91,0x8a,0x83,0x7c,0x75,0x70,0x6a,0x66,0x62,0x60,0x60,0x62,0x67,
+    0x6f,0x78,0x81,0x89,0x91,0x97,0x9c,0xa0,0xa1,0xa0,0x9d,0x99,0x93,0x8c,0x85,
+    0x7e,0x78,0x72,0x6d,0x69,0x66,0x64,0x63,0x65,0x68,0x6e,0x76,0x7e,0x87,0x8e,
+    0x94,0x9a,0x9d,0x9f,0x9e,0x9c,0x97,0x91,0x8a,0x83,0x7c,0x76,0x70,0x6b,0x67,
+    0x64,0x62,0x62,0x63,0x67,0x6d,0x75,0x7d,0x85,0x8d,0x94,0x99,0x9e,0xa0,0xa0,
+    0x9e,0x9a,0x95,0x8e,0x87,0x80,0x79,0x72,0x6d,0x68,0x64,0x62,0x60,0x61,0x64,
+    0x69,0x71,0x79,0x81,0x8a,0x91,0x98,0x9d,0xa1,0xa2,0xa1,0x9f,0x9a,0x94,0x8e,
+    0x87,0x80,0x7a,0x74,0x70,0x6b,0x68,0x66,0x65,0x66,0x6a,0x70,0x76,0x7e,0x85,
+    0x8c,0x92,0x97,0x9b,0x9c,0x9c,0x9a,0x96,0x91,0x8b,0x85,0x7e,0x79,0x74,0x6f,
+    0x6b,0x68,0x66,0x65,0x66,0x6a,0x70,0x76,0x7e,0x85,0x8c,0x92,0x96,0x9a,0x9b,
+    0x9b,0x99,0x95,0x8f,0x89,0x82,0x7c,0x76,0x70,0x6c,0x68,0x65,0x63,0x63,0x64,
+    0x68,0x6d,0x75,0x7c,0x85,0x8d,0x94,0x99,0x9d,0x9f,0x9f,0x9d,0x9a,0x95,0x8e,
+    0x87,0x80,0x79,0x74,0x6f,0x6a,0x67,0x64,0x63,0x63,0x66,0x6b,0x71,0x79,0x81,
+    0x89,0x90,0x96,0x9a,0x9c,0x9d,0x9c,0x99,0x94,0x8e,0x88,0x82,0x7c,0x77,0x73,
+    0x6f,0x6c,0x6a,0x68,0x69,0x6b,0x70,0x76,0x7c,0x84,0x8b,0x92,0x98,0x9c,0x9e,
+    0x9e,0x9d,0x9a,0x95,0x8e,0x87,0x80,0x79,0x73,0x6e,0x6a,0x66,0x64,0x62,0x62,
+    0x64,0x69,0x6e,0x75,0x7d,0x85,0x8d,0x94,0x98,0x9b,0x9c,0x9c,0x99,0x95,0x8f,
+    0x89,0x82,0x7b,0x75,0x71,0x6d,0x69,0x66,0x64,0x64,0x66,0x6a,0x6f,0x76,0x7e,
+    0x86,0x8f,0x96,0x9b,0x9e,0xa0,0xa0,0x9e,0x9a,0x94,0x8e,0x86,0x7f,0x79,0x74,
+    0x6f,0x6b,0x67,0x64,0x63,0x64,0x68,0x6d,0x74,0x7c,0x85,0x8d,0x95,0x9b,0x9f,
+    0xa1,0xa1,0xa0,0x9c,0x97,0x91,0x89,0x82,0x7b,0x75,0x70,0x6b,0x67,0x63,0x62,
+    0x63,0x65,0x6a,0x6f,0x77,0x7f,0x88,0x90,0x96,0x9b,0x9e,0x9f,0x9e,0x9b,0x97,
+    0x91,0x8a,0x82,0x7b,0x75,0x70,0x6c,0x67,0x63,0x62,0x62,0x65,0x69,0x6e,0x76,
+    0x7e,0x86,0x8e,0x95,0x9b,0x9e,0x9f,0x9e,0x9b,0x97,0x91,0x8a,0x83,0x7b,0x75,
+    0x70,0x6b,0x66,0x62,0x60,0x61,0x64,0x68,0x6e,0x75,0x7e,0x87,0x90,0x98,0x9e,
+    0xa2,0xa4,0xa4,0xa1,0x9d,0x97,0x90,0x88,0x80,0x79,0x73,0x6d,0x68,0x63,0x60,
+    0x60,0x61,0x65,0x6a,0x71,0x79,0x82,0x8b,0x94,0x9a,0x9f,0xa1,0xa2,0xa0,0x9d,
+    0x97,0x90,0x88,0x80,0x79,0x73,0x6e,0x69,0x64,0x61,0x60,0x61,0x65,0x6a,0x71,
+    0x78,0x82,0x8b,0x94,0x9c,0xa2,0xa6,0xa7,0xa5,0xa2,0x9d,0x96,0x8d,0x84,0x7c,
+    0x75,0x6e,0x68,0x62,0x5e,0x5d,0x5d,0x60,0x65,0x6b,0x73,0x7c,0x86,0x8f,0x98,
+    0x9f,0xa4,0xa6,0xa6,0xa3,0x9f,0x99,0x90,0x88,0x80,0x78,0x71,0x6a,0x63,0x5e,
+    0x5c,0x5b,0x5d,0x61,0x66,0x6d,0x76,0x80,0x8a,0x93,0x9b,0xa1,0xa4,0xa5,0xa4,
+    0xa1,0x9a,0x93,0x8a,0x82,0x7a,0x73,0x6c,0x66,0x61,0x5e,0x5d,0x5e,0x62,0x67,
+    0x6e,0x77,0x80,0x8a,0x93,0x9b,0xa1,0xa5,0xa7,0xa6,0xa4,0x9e,0x97,0x8f,0x87,
+    0x7f,0x78,0x71,0x6a,0x64,0x60,0x5f,0x5f,0x62,0x66,0x6c,0x73,0x7c,0x85,0x8f,
+    0x97,0x9e,0xa2,0xa5,0xa5,0xa3,0x9f,0x98,0x90,0x89,0x81,0x7a,0x72,0x6b,0x65,
+    0x60,0x5e,0x5e,0x5f,0x63,0x69,0x70,0x79,0x82,0x8b,0x94,0x9b,0xa0,0xa4,0xa5,
+    0xa3,0x9f,0x99,0x92,0x8a,0x83,0x7c,0x74,0x6d,0x66,0x61,0x5d,0x5c,0x5d,0x5f,
+    0x64,0x6b,0x73,0x7d,0x87,0x90,0x98,0x9f,0xa4,0xa6,0xa6,0xa3,0x9d,0x97,0x8f,
+    0x88,0x80,0x77,0x6f,0x68,0x62,0x5d,0x5b,0x5b,0x5d,0x61,0x67,0x6e,0x78,0x81,
+    0x8b,0x93,0x9a,0xa0,0xa4,0xa5,0xa4,0x9f,0x9a,0x93,0x8c,0x85,0x7d,0x75,0x6d,
+    0x66,0x61,0x5e,0x5c,0x5e,0x61,0x67,0x6e,0x78,0x82,0x8c,0x95,0x9d,0xa4,0xa8,
+    0xaa,0xa9,0xa5,0x9f,0x98,0x91,0x89,0x81,0x78,0x6e,0x66,0x5f,0x5a,0x58,0x58,
+    0x5a,0x5f,0x66,0x70,0x7a,0x84,0x8e,0x97,0x9f,0xa5,0xa9,0xa9,0xa6,0xa1,0x9b,
+    0x94,0x8c,0x84,0x7b,0x71,0x68,0x61,0x5b,0x58,0x57,0x58,0x5c,0x62,0x6a,0x74,
+    0x7e,0x88,0x92,0x9b,0xa2,0xa6,0xa8,0xa6,0xa2,0x9d,0x96,0x8f,0x87,0x7f,0x75,
+    0x6c,0x65,0x5f,0x5b,0x59,0x5a,0x5d,0x63,0x6b,0x74,0x7e,0x87,0x91,0x9a,0xa1,
+    0xa6,0xa7,0xa6,0xa2,0x9c,0x96,0x8f,0x88,0x7f,0x76,0x6d,0x66,0x5f,0x5b,0x58,
+    0x58,0x5b,0x61,0x69,0x72,0x7c,0x86,0x90,0x99,0xa1,0xa7,0xaa,0xaa,0xa7,0xa2,
+    0x9c,0x95,0x8d,0x84,0x7a,0x70,0x67,0x60,0x5a,0x56,0x55,0x56,0x5b,0x62,0x6b,
+    0x75,0x7f,0x8a,0x94,0x9d,0xa4,0xa9,0xaa,0xa8,0xa3,0x9e,0x98,0x90,0x87,0x7e,
+    0x74,0x6a,0x62,0x5c,0x57,0x55,0x56,0x5a,0x61,0x69,0x73,0x7d,0x88,0x92,0x9c,
+    0xa5,0xab,0xad,0xac,0xa8,0xa3,0x9d,0x96,0x8e,0x84,0x7a,0x70,0x67,0x5f,0x5a,
+    0x57,0x56,0x59,0x5f,0x66,0x70,0x7a,0x84,0x8e,0x98,0xa1,0xa7,0xaa,0xaa,0xa7,
+    0xa2,0x9d,0x96,0x8e,0x85,0x7b,0x71,0x68,0x60,0x59,0x55,0x54,0x56,0x5b,0x62,
+    0x6b,0x76,0x80,0x8b,0x96,0xa0,0xa7,0xac,0xac,0xaa,0xa5,0xa0,0x99,0x91,0x88,
+    0x7e,0x73,0x69,0x60,0x59,0x54,0x51,0x52,0x56,0x5d,0x65,0x6f,0x7a,0x85,0x91,
+    0x9c,0xa4,0xaa,0xac,0xac,0xa9,0xa5,0x9f,0x98,0x8f,0x86,0x7b,0x71,0x67,0x5e,
+    0x57,0x53,0x52,0x55,0x5a,0x61,0x6b,0x75,0x80,0x8b,0x97,0xa0,0xa7,0xab,0xac,
+    0xaa,0xa7,0xa2,0x9b,0x93,0x8a,0x7f,0x75,0x6a,0x61,0x59,0x54,0x52,0x53,0x57,
+    0x5e,0x66,0x70,0x7b,0x87,0x92,0x9d,0xa5,0xaa,0xab,0xab,0xa8,0xa3,0x9d,0x95,
+    0x8c,0x82,0x77,0x6c,0x62,0x5a,0x54,0x51,0x51,0x55,0x5b,0x63,0x6d,0x79,0x85,
+    0x92,0x9d,0xa6,0xac,0xb0,0xb0,0xae,0xaa,0xa4,0x9c,0x93,0x89,0x7e,0x72,0x67,
+    0x5e,0x56,0x52,0x51,0x53,0x58,0x60,0x69,0x74,0x80,0x8d,0x99,0xa4,0xab,0xaf,
+    0xb1,0xb0,0xad,0xa8,0xa1,0x99,0x8f,0x83,0x77,0x6b,0x61,0x58,0x52,0x50,0x51,
+    0x55,0x5b,0x63,0x6d,0x79,0x87,0x93,0x9f,0xa7,0xad,0xaf,0xb0,0xad,0xa9,0xa2,
+    0x9a,0x91,0x86,0x79,0x6d,0x62,0x58,0x51,0x4d,0x4d,0x50,0x56,0x5d,0x67,0x73,
+    0x81,0x8e,0x9a,0xa4,0xab,0xb0,0xb2,0xb0,0xad,0xa8,0xa1,0x98,0x8d,0x81,0x74,
+    0x67,0x5c,0x54,0x4e,0x4c,0x4d,0x51,0x57,0x60,0x6c,0x79,0x87,0x94,0x9f,0xa8,
+    0xae,0xb2,0xb2,0xb0,0xac,0xa7,0x9e,0x94,0x88,0x7b,0x6d,0x61,0x57,0x50,0x4c,
+    0x4b,0x4e,0x53,0x5b,0x65,0x72,0x80,0x8e,0x9a,0xa4,0xac,0xb0,0xb2,0xb2,0xaf,
+    0xa9,0xa2,0x98,0x8c,0x7f,0x72,0x65,0x5a,0x51,0x4c,0x4a,0x4b,0x4f,0x56,0x5f,
+    0x6c,0x7a,0x88,0x95,0xa1,0xaa,0xb0,0xb3,0xb4,0xb2,0xae,0xa8,0x9f,0x94,0x87,
+    0x79,0x6c,0x5f,0x55,0x4e,0x4b,0x4a,0x4c,0x51,0x5a,0x66,0x73,0x81,0x8f,0x9b,
+    0xa6,0xad,0xb1,0xb3,0xb2,0xaf,0xaa,0xa1,0x97,0x8b,0x7d,0x70,0x63,0x58,0x51,
+    0x4c,0x4a,0x4b,0x50,0x58,0x62,0x6f,0x7d,0x8b,0x99,0xa4,0xad,0xb2,0xb5,0xb5,
+    0xb3,0xaf,0xa8,0x9e,0x92,0x85,0x76,0x68,0x5c,0x53,0x4c,0x48,0x48,0x4b,0x52,
+    0x5c,0x68,0x76,0x85,0x94,0xa1,0xab,0xb2,0xb6,0xb7,0xb6,0xb3,0xad,0xa4,0x99,
+    0x8c,0x7d,0x6e,0x61,0x56,0x4e,0x48,0x46,0x47,0x4d,0x56,0x61,0x6f,0x7e,0x8d,
+    0x9b,0xa6,0xaf,0xb4,0xb7,0xb7,0xb5,0xb0,0xa8,0x9e,0x91,0x83,0x74,0x67,0x5b,
+    0x51,0x4a,0x46,0x46,0x4a,0x51,0x5c,0x68,0x77,0x86,0x94,0xa1,0xaa,0xb1,0xb5,
+    0xb6,0xb5,0xb1,0xab,0xa2,0x96,0x88,0x79,0x6b,0x5e,0x53,0x4b,0x45,0x44,0x46,
+    0x4c,0x55,0x61,0x6f,0x7f,0x8e,0x9b,0xa6,0xaf,0xb4,0xb7,0xb7,0xb5,0xb1,0xa9,
+    0x9e,0x91,0x82,0x74,0x67,0x5b,0x51,0x4a,0x46,0x46,0x4a,0x52,0x5c,0x69,0x78,
+    0x87,0x95,0xa1,0xab,0xb1,0xb6,0xb8,0xb7,0xb4,0xae,0xa4,0x98,0x8a,0x7b,0x6e,
+    0x61,0x56,0x4d,0x48,0x46,0x49,0x4f,0x58,0x64,0x72,0x81,0x90,0x9c,0xa7,0xae,
+    0xb4,0xb7,0xb7,0xb5,0xb0,0xa7,0x9b,0x8d,0x7f,0x70,0x63,0x56,0x4d,0x46,0x43,
+    0x45,0x49,0x51,0x5d,0x6b,0x7a,0x89,0x97,0xa3,0xac,0xb3,0xb7,0xba,0xb9,0xb5,
+    0xae,0xa3,0x97,0x88,0x7a,0x6b,0x5e,0x52,0x4a,0x45,0x44,0x47,0x4e,0x58,0x64,
+    0x73,0x82,0x91,0x9d,0xa7,0xaf,0xb5,0xb8,0xba,0xb7,0xb1,0xa8,0x9c,0x8f,0x81,
+    0x72,0x64,0x58,0x4e,0x47,0x45,0x46,0x4b,0x53,0x5f,0x6c,0x7b,0x8a,0x97,0xa2,
+    0xab,0xb1,0xb6,0xb9,0xb8,0xb4,0xac,0xa1,0x95,0x87,0x78,0x69,0x5c,0x51,0x49,
+    0x44,0x43,0x47,0x4e,0x58,0x65,0x74,0x83,0x90,0x9c,0xa5,0xae,0xb4,0xb8,0xb9,
+    0xb7,0xb1,0xa8,0x9c,0x8e,0x80,0x71,0x62,0x56,0x4c,0x46,0x43,0x45,0x4a,0x53,
+    0x5f,0x6e,0x7c,0x8b,0x97,0xa2,0xab,0xb2,0xb7,0xba,0xb8,0xb4,0xab,0xa1,0x94,
+    0x85,0x76,0x66,0x59,0x4e,0x46,0x42,0x42,0x45,0x4d,0x58,0x66,0x74,0x83,0x90,
+    0x9c,0xa6,0xaf,0xb6,0xba,0xba,0xb7,0xb1,0xa7,0x9b,0x8d,0x7e,0x6e,0x5f,0x53,
+    0x4a,0x44,0x42,0x43,0x49,0x52,0x5f,0x6e,0x7c,0x89,0x96,0xa1,0xab,0xb3,0xb8,
+    0xba,0xb9,0xb4,0xac,0xa2,0x95,0x86,0x77,0x68,0x5b,0x51,0x4a,0x46,0x46,0x49,
+    0x51,0x5c,0x6a,0x77,0x84,0x91,0x9c,0xa6,0xaf,0xb5,0xb9,0xb9,0xb5,0xaf,0xa6,
+    0x9a,0x8c,0x7d,0x6d,0x60,0x54,0x4b,0x46,0x44,0x46,0x4c,0x56,0x63,0x70,0x7e,
+    0x8b,0x97,0xa2,0xac,0xb3,0xb8,0xb9,0xb7,0xb2,0xaa,0x9f,0x91,0x82,0x72,0x64,
+    0x57,0x4d,0x45,0x42,0x42,0x47,0x50,0x5b,0x69,0x76,0x84,0x91,0x9d,0xa8,0xb0,
+    0xb6,0xb9,0xb9,0xb5,0xae,0xa5,0x98,0x8a,0x7a,0x6b,0x5d,0x52,0x49,0x44,0x42,
+    0x45,0x4d,0x57,0x64,0x71,0x7e,0x8b,0x97,0xa3,0xad,0xb4,0xb8,0xb9,0xb7,0xb2,
+    0xa9,0x9e,0x90,0x81,0x72,0x64,0x57,0x4d,0x46,0x43,0x45,0x4b,0x54,0x60,0x6d,
+    0x7a,0x87,0x94,0xa0,0xab,0xb3,0xb9,0xbb,0xba,0xb6,0xaf,0xa4,0x97,0x88,0x78,
+    0x69,0x5c,0x50,0x47,0x42,0x42,0x46,0x4e,0x59,0x65,0x72,0x7f,0x8c,0x99,0xa5,
+    0xaf,0xb6,0xba,0xba,0xb8,0xb2,0xa9,0x9d,0x8f,0x80,0x70,0x62,0x56,0x4c,0x45,
+    0x43,0x46,0x4c,0x56,0x61,0x6d,0x7b,0x88,0x95,0xa1,0xac,0xb4,0xb9,0xbb,0xba,
+    0xb6,0xae,0xa3,0x95,0x86,0x76,0x68,0x5a,0x4f,0x46,0x43,0x44,0x49,0x51,0x5c,
+    0x68,0x75,0x83,0x90,0x9d,0xa9,0xb2,0xb8,0xbc,0xbc,0xb9,0xb2,0xa8,0x9b,0x8d,
+    0x7d,0x6e,0x60,0x53,0x4a,0x44,0x43,0x46,0x4d,0x57,0x62,0x6f,0x7c,0x8a,0x97,
+    0xa3,0xae,0xb6,0xba,0xbd,0xbb,0xb6,0xae,0xa2,0x94,0x85,0x75,0x66,0x58,0x4d,
+    0x46,0x43,0x44,0x4a,0x52,0x5d,0x69,0x76,0x83,0x91,0x9e,0xa9,0xb2,0xb8,0xbc,
+    0xbc,0xb9,0xb1,0xa7,0x9a,0x8b,0x7c,0x6c,0x5e,0x51,0x48,0x43,0x43,0x47,0x4e,
+    0x57,0x62,0x6e,0x7c,0x89,0x97,0xa3,0xad,0xb5,0xba,0xbc,0xba,0xb4,0xab,0x9f,
+    0x91,0x82,0x72,0x63,0x56,0x4c,0x45,0x43,0x45,0x4b,0x53,0x5d,0x69,0x76,0x84,
+    0x92,0x9e,0xa9,0xb2,0xb8,0xbc,0xbc,0xb8,0xb0,0xa5,0x98,0x89,0x79,0x69,0x5b,
+    0x4f,0x47,0x43,0x44,0x48,0x4f,0x58,0x63,0x70,0x7e,0x8c,0x99,0xa5,0xaf,0xb6,
+    0xbb,0xbd,0xba,0xb4,0xab,0x9f,0x91,0x81,0x70,0x61,0x54,0x4a,0x44,0x43,0x45,
+    0x4b,0x53,0x5d,0x69,0x77,0x85,0x93,0xa0,0xab,0xb4,0xba,0xbd,0xbd,0xb8,0xb1,
+    0xa6,0x98,0x89,0x78,0x68,0x59,0x4e,0x46,0x43,0x44,0x48,0x4f,0x58,0x63,0x70,
+    0x7e,0x8c,0x99,0xa5,0xaf,0xb7,0xbc,0xbd,0xba,0xb4,0xab,0x9f,0x90,0x80,0x6f,
+    0x5f,0x53,0x4a,0x45,0x44,0x46,0x4c,0x54,0x5e,0x6b,0x79,0x86,0x94,0xa0,0xac,
+    0xb5,0xbb,0xbd,0xbc,0xb8,0xb0,0xa5,0x97,0x87,0x76,0x65,0x57,0x4c,0x46,0x43,
+    0x44,0x48,0x4f,0x58,0x64,0x72,0x7f,0x8d,0x9a,0xa6,0xb1,0xb8,0xbc,0xbd,0xbb,
+    0xb5,0xab,0x9e,0x8f,0x7e,0x6d,0x5e,0x52,0x4a,0x45,0x44,0x47,0x4c,0x55,0x5f,
+    0x6c,0x79,0x87,0x94,0xa1,0xac,0xb5,0xba,0xbd,0xbc,0xb7,0xaf,0xa4,0x96,0x85,
+    0x74,0x64,0x57,0x4d,0x47,0x44,0x45,0x49,0x50,0x5a,0x65,0x72,0x7f,0x8d,0x9b,
+    0xa7,0xb1,0xb8,0xbc,0xbd,0xba,0xb4,0xaa,0x9d,0x8d,0x7c,0x6b,0x5d,0x52,0x4a,
+    0x45,0x44,0x46,0x4c,0x55,0x5f,0x6b,0x79,0x86,0x94,0xa1,0xac,0xb5,0xbb,0xbd,
+    0xbc,0xb7,0xaf,0xa4,0x95,0x83,0x72,0x63,0x57,0x4d,0x47,0x45,0x46,0x4a,0x52,
+    0x5b,0x67,0x74,0x82,0x90,0x9d,0xa9,0xb3,0xba,0xbe,0xbf,0xbc,0xb5,0xab,0x9c,
+    0x8c,0x7a,0x6a,0x5c,0x51,0x49,0x45,0x44,0x47,0x4d,0x56,0x61,0x6d,0x7a,0x88,
+    0x96,0xa3,0xae,0xb6,0xbb,0xbd,0xbc,0xb8,0xaf,0xa2,0x92,0x81,0x70,0x62,0x55,
+    0x4c,0x46,0x44,0x46,0x4b,0x52,0x5b,0x67,0x74,0x81,0x8f,0x9c,0xa8,0xb2,0xb8,
+    0xbc,0xbd,0xba,0xb3,0xa8,0x99,0x89,0x78,0x68,0x5b,0x50,0x49,0x46,0x46,0x49,
+    0x4f,0x57,0x62,0x6e,0x7b,0x89,0x97,0xa3,0xae,0xb6,0xbb,0xbd,0xbc,0xb7,0xad,
+    0xa0,0x90,0x7f,0x6f,0x61,0x55,0x4c,0x47,0x45,0x47,0x4b,0x52,0x5c,0x67,0x74,
+    0x82,0x90,0x9d,0xa9,0xb2,0xb9,0xbd,0xbe,0xba,0xb3,0xa7,0x98,0x87,0x77,0x68,
+    0x5a,0x50,0x49,0x46,0x45,0x48,0x4e,0x56,0x61,0x6d,0x7b,0x89,0x96,0xa2,0xac,
+    0xb5,0xba,0xbd,0xbc,0xb6,0xab,0x9e,0x8f,0x7e,0x6f,0x60,0x55,0x4d,0x48,0x47,
+    0x48,0x4d,0x54,0x5e,0x69,0x76,0x84,0x92,0x9e,0xa9,0xb2,0xb9,0xbe,0xbe,0xb9,
+    0xb1,0xa4,0x95,0x85,0x75,0x66,0x5a,0x51,0x4a,0x47,0x47,0x4b,0x51,0x59,0x64,
+    0x71,0x7e,0x8c,0x99,0xa4,0xaf,0xb7,0xbc,0xbe,0xbb,0xb4,0xaa,0x9c,0x8c,0x7c,
+    0x6d,0x5f,0x54,0x4d,0x48,0x47,0x49,0x4d,0x55,0x5f,0x6a,0x78,0x85,0x92,0x9e,
+    0xa9,0xb3,0xb9,0xbd,0xbc,0xb7,0xae,0xa2,0x93,0x83,0x73,0x65,0x59,0x50,0x4a,
+    0x47,0x48,0x4b,0x50,0x59,0x64,0x71,0x7e,0x8b,0x98,0xa3,0xae,0xb7,0xbc,0xbd,
+    0xba,0xb3,0xa9,0x9b,0x8b,0x7b,0x6c,0x5f,0x55,0x4d,0x49,0x47,0x49,0x4e,0x55,
+    0x5f,0x6b,0x78,0x85,0x92,0x9e,0xa9,0xb3,0xb9,0xbc,0xbb,0xb6,0xad,0xa1,0x92,
+    0x82,0x73,0x65,0x59,0x51,0x4b,0x49,0x49,0x4c,0x52,0x5b,0x67,0x73,0x80,0x8c,
+    0x99,0xa5,0xaf,0xb7,0xbc,0xbd,0xba,0xb2,0xa7,0x99,0x8a,0x7b,0x6c,0x60,0x56,
+    0x50,0x4c,0x4a,0x4c,0x51,0x58,0x63,0x6e,0x7a,0x86,0x93,0x9f,0xaa,0xb3,0xb9,
+    0xbc,0xba,0xb4,0xab,0x9e,0x8f,0x80,0x71,0x64,0x5a,0x52,0x4c,0x4a,0x4a,0x4d,
+    0x54,0x5e,0x68,0x74,0x80,0x8d,0x9a,0xa5,0xaf,0xb7,0xbb,0xbc,0xb8,0xb0,0xa5,
+    0x97,0x88,0x79,0x6b,0x5f,0x56,0x4f,0x4b,0x4a,0x4c,0x52,0x5a,0x64,0x6f,0x7b,
+    0x88,0x94,0xa1,0xac,0xb4,0xba,0xbc,0xba,0xb4,0xaa,0x9d,0x8f,0x7f,0x71,0x65,
+    0x5a,0x52,0x4c,0x4a,0x4b,0x4f,0x57,0x60,0x6a,0x75,0x82,0x8e,0x9b,0xa6,0xb0,
+    0xb7,0xbb,0xbb,0xb7,0xae,0xa3,0x95,0x86,0x77,0x6a,0x5f,0x56,0x4f,0x4b,0x4a,
+    0x4d,0x53,0x5b,0x64,0x6f,0x7b,0x88,0x94,0xa0,0xab,0xb3,0xb8,0xba,0xb8,0xb1,
+    0xa7,0x9b,0x8c,0x7e,0x71,0x65,0x5a,0x52,0x4c,0x4a,0x4c,0x50,0x57,0x60,0x6a,
+    0x75,0x81,0x8e,0x9a,0xa5,0xaf,0xb6,0xb9,0xb9,0xb4,0xac,0xa0,0x92,0x84,0x77,
+    0x6a,0x5f,0x56,0x4f,0x4b,0x4c,0x4f,0x54,0x5c,0x65,0x70,0x7c,0x88,0x95,0xa0,
+    0xab,0xb3,0xb8,0xb9,0xb6,0xb0,0xa5,0x98,0x8a,0x7d,0x70,0x64,0x5a,0x52,0x4d,
+    0x4c,0x4d,0x52,0x58,0x61,0x6a,0x76,0x82,0x8e,0x9b,0xa6,0xaf,0xb6,0xb9,0xb8,
+    0xb3,0xaa,0x9f,0x92,0x85,0x78,0x6b,0x60,0x56,0x50,0x4d,0x4e,0x51,0x56,0x5d,
+    0x66,0x71,0x7d,0x89,0x95,0xa1,0xab,0xb3,0xb8,0xb9,0xb5,0xad,0xa3,0x97,0x8a,
+    0x7d,0x70,0x64,0x5a,0x53,0x4e,0x4e,0x4f,0x53,0x5a,0x62,0x6c,0x77,0x84,0x90,
+    0x9c,0xa6,0xaf,0xb6,0xb8,0xb7,0xb1,0xa7,0x9c,0x90,0x83,0x76,0x6a,0x5f,0x56,
+    0x51,0x4e,0x4f,0x52,0x57,0x5e,0x68,0x72,0x7e,0x8a,0x96,0xa1,0xab,0xb3,0xb8,
+    0xb7,0xb3,0xab,0xa1,0x96,0x8a,0x7d,0x70,0x64,0x5a,0x54,0x50,0x4f,0x50,0x55,
+    0x5b,0x63,0x6d,0x78,0x84,0x90,0x9b,0xa6,0xaf,0xb5,0xb7,0xb4,0xae,0xa6,0x9b,
+    0x90,0x83,0x75,0x69,0x5e,0x56,0x51,0x4f,0x4f,0x52,0x57,0x5e,0x68,0x72,0x7e,
+    0x89,0x95,0xa1,0xab,0xb2,0xb5,0xb4,0xb0,0xa9,0x9f,0x94,0x88,0x7b,0x6e,0x63,
+    0x5a,0x54,0x51,0x50,0x52,0x55,0x5b,0x64,0x6e,0x79,0x84,0x90,0x9b,0xa6,0xae,
+    0xb3,0xb4,0xb1,0xab,0xa3,0x99,0x8d,0x81,0x74,0x68,0x5e,0x57,0x53,0x51,0x51,
+    0x54,0x59,0x60,0x6a,0x74,0x7f,0x8a,0x96,0xa2,0xab,0xb2,0xb4,0xb3,0xaf,0xa8,
+    0x9f,0x94,0x87,0x7b,0x6e,0x64,0x5b,0x56,0x53,0x52,0x53,0x57,0x5e,0x66,0x70,
+    0x7b,0x86,0x92,0x9e,0xa8,0xaf,0xb3,0xb3,0xb1,0xab,0xa3,0x99,0x8d,0x81,0x74,
+    0x69,0x60,0x59,0x54,0x52,0x52,0x55,0x5a,0x62,0x6a,0x74,0x7f,0x8b,0x97,0xa2,
+    0xab,0xb0,0xb2,0xb1,0xad,0xa7,0x9e,0x93,0x86,0x7a,0x6e,0x64,0x5d,0x57,0x54,
+    0x52,0x54,0x59,0x5f,0x67,0x70,0x7b,0x86,0x92,0x9e,0xa7,0xad,0xb1,0xb1,0xae,
+    0xa9,0xa1,0x97,0x8b,0x7f,0x72,0x68,0x60,0x59,0x54,0x52,0x53,0x56,0x5c,0x63,
+    0x6c,0x75,0x81,0x8d,0x99,0xa3,0xaa,0xaf,0xb1,0xb0,0xac,0xa5,0x9c,0x91,0x85,
+    0x79,0x6e,0x65,0x5d,0x57,0x54,0x53,0x55,0x5a,0x60,0x67,0x71,0x7c,0x88,0x94,
+    0x9e,0xa6,0xac,0xaf,0xb0,0xad,0xa8,0xa0,0x95,0x8a,0x7e,0x73,0x69,0x60,0x5a,
+    0x55,0x53,0x54,0x57,0x5c,0x63,0x6b,0x76,0x82,0x8d,0x99,0xa2,0xa9,0xad,0xaf,
+    0xae,0xaa,0xa3,0x99,0x8e,0x82,0x77,0x6d,0x64,0x5c,0x57,0x54,0x54,0x56,0x5a,
+    0x60,0x68,0x72,0x7d,0x89,0x95,0x9f,0xa6,0xac,0xae,0xaf,0xac,0xa7,0x9e,0x94,
+    0x88,0x7d,0x73,0x69,0x61,0x5a,0x56,0x55,0x56,0x59,0x5d,0x64,0x6d,0x78,0x84,
+    0x8f,0x9a,0xa2,0xa8,0xac,0xae,0xad,0xa9,0xa2,0x98,0x8e,0x83,0x78,0x6e,0x65,
+    0x5e,0x59,0x57,0x57,0x58,0x5c,0x62,0x6a,0x74,0x7f,0x8b,0x95,0x9e,0xa5,0xaa,
+    0xad,0xae,0xab,0xa4,0x9c,0x92,0x88,0x7d,0x73,0x69,0x61,0x5c,0x59,0x57,0x58,
+    0x5b,0x60,0x67,0x70,0x7b,0x86,0x91,0x9a,0xa2,0xa8,0xac,0xad,0xac,0xa7,0xa0,
+    0x97,0x8d,0x82,0x78,0x6e,0x65,0x5f,0x5a,0x58,0x58,0x59,0x5d,0x63,0x6b,0x75,
+    0x80,0x8b,0x95,0x9d,0xa4,0xa9,0xac,0xab,0xa8,0xa1,0x99,0x90,0x86,0x7b,0x71,
+    0x68,0x61,0x5c,0x59,0x58,0x58,0x5b,0x60,0x67,0x71,0x7b,0x86,0x90,0x98,0xa0,
+    0xa6,0xaa,0xab,0xa9,0xa3,0x9d,0x94,0x8b,0x80,0x76,0x6d,0x65,0x5f,0x5b,0x59,
+    0x59,0x5a,0x5e,0x64,0x6d,0x78,0x82,0x8c,0x94,0x9c,0xa3,0xa8,0xaa,0xa9,0xa5,
+    0xa0,0x98,0x8f,0x86,0x7c,0x72,0x6b,0x64,0x5f,0x5c,0x5b,0x5b,0x5e,0x63,0x6b,
+    0x74,0x7e,0x87,0x90,0x99,0xa0,0xa5,0xa8,0xa9,0xa6,0xa2,0x9b,0x93,0x89,0x80,
+    0x76,0x6e,0x67,0x62,0x5e,0x5c,0x5b,0x5d,0x61,0x67,0x70,0x79,0x83,0x8b,0x94,
+    0x9c,0xa2,0xa6,0xa7,0xa6,0xa3,0x9d,0x96,0x8d,0x83,0x7a,0x72,0x6a,0x64,0x60,
+    0x5d,0x5c,0x5c,0x5f,0x65,0x6d,0x75,0x7e,0x87,0x90,0x98,0x9f,0xa4,0xa6,0xa7,
+    0xa4,0xa0,0x99,0x91,0x88,0x7f,0x77,0x6f,0x69,0x64,0x60,0x5e,0x5d,0x5f,0x64,
+    0x6b,0x73,0x7b,0x84,0x8d,0x95,0x9c,0xa1,0xa5,0xa6,0xa5,0xa1,0x9b,0x94,0x8b,
+    0x83,0x7a,0x72,0x6c,0x66,0x62,0x5e,0x5d,0x5e,0x61,0x67,0x6f,0x77,0x7f,0x88,
+    0x91,0x98,0x9e,0xa2,0xa5,0xa5,0xa2,0x9e,0x97,0x90,0x87,0x7f,0x77,0x70,0x6a,
+    0x65,0x61,0x5e,0x5d,0x60,0x65,0x6b,0x72,0x7b,0x84,0x8c,0x94,0x9a,0x9f,0xa2,
+    0xa3,0xa2,0x9e,0x99,0x92,0x8a,0x82,0x7a,0x73,0x6d,0x67,0x62,0x5f,0x5e,0x5f,
+    0x63,0x68,0x6f,0x77,0x80,0x88,0x90,0x97,0x9c,0xa0,0xa2,0xa2,0xa0,0x9b,0x95,
+    0x8e,0x86,0x7e,0x77,0x71,0x6b,0x65,0x61,0x5f,0x60,0x62,0x67,0x6d,0x74,0x7d,
+    0x85,0x8d,0x94,0x9a,0x9f,0xa1,0xa2,0xa1,0x9d,0x98,0x91,0x8a,0x83,0x7c,0x75,
+    0x6f,0x69,0x64,0x61,0x61,0x62,0x66,0x6b,0x72,0x7a,0x82,0x8a,0x91,0x97,0x9c,
+    0x9f,0xa1,0xa1,0x9e,0x9a,0x94,0x8d,0x86,0x7f,0x78,0x72,0x6b,0x66,0x63,0x61,
+    0x62,0x64,0x69,0x6f,0x76,0x7e,0x86,0x8d,0x93,0x99,0x9c,0x9f,0x9f,0x9e,0x9a,
+    0x95,0x8e,0x88,0x81,0x7b,0x74,0x6e,0x68,0x64,0x62,0x61,0x62,0x66,0x6b,0x72,
+    0x7a,0x81,0x89,0x8f,0x95,0x9a,0x9d,0x9e,0x9e,0x9b,0x96,0x90,0x8a,0x84,0x7e,
+    0x77,0x71,0x6b,0x66,0x64,0x62,0x63,0x65,0x6a,0x70,0x77,0x7f,0x86,0x8d,0x93,
+    0x97,0x9b,0x9d,0x9d,0x9b,0x97,0x92,0x8d,0x87,0x81,0x7a,0x74,0x6e,0x69,0x65,
+    0x63,0x63,0x65,0x69,0x6e,0x75,0x7c,0x83,0x8a,0x90,0x96,0x9a,0x9c,0x9d,0x9c,
+    0x99,0x94,0x8f,0x8a,0x84,0x7e,0x77,0x71,0x6c,0x68,0x65,0x64,0x65,0x68,0x6c,
+    0x72,0x79,0x80,0x87,0x8d,0x92,0x97,0x9a,0x9c,0x9b,0x98,0x95,0x91,0x8c,0x87,
+    0x80,0x7a,0x74,0x6f,0x6a,0x66,0x64,0x65,0x67,0x6b,0x70,0x76,0x7d,0x84,0x8a,
+    0x90,0x95,0x99,0x9b,0x9b,0x99,0x97,0x93,0x8f,0x8a,0x84,0x7e,0x78,0x72,0x6d,
+    0x69,0x66,0x65,0x67,0x6a,0x6e,0x74,0x7b,0x81,0x87,0x8d,0x92,0x96,0x99,0x9a,
+    0x98,0x96,0x93,0x90,0x8b,0x86,0x80,0x7a,0x75,0x70,0x6b,0x68,0x66,0x67,0x69,
+    0x6d,0x72,0x78,0x7e,0x84,0x8a,0x90,0x94,0x97,0x98,0x98,0x96,0x94,0x91,0x8d,
+    0x88,0x83,0x7e,0x78,0x73,0x6e,0x6a,0x68,0x67,0x69,0x6c,0x71,0x76,0x7c,0x82,
+    0x87,0x8d,0x92,0x96,0x97,0x97,0x96,0x94,0x92,0x8f,0x8a,0x85,0x80,0x7b,0x75,
+    0x70,0x6c,0x69,0x67,0x68,0x6a,0x6e,0x73,0x79,0x7e,0x84,0x8a,0x8f,0x93,0x95,
+    0x95,0x95,0x94,0x92,0x8f,0x8c,0x87,0x82,0x7d,0x78,0x73,0x6e,0x6b,0x69,0x68,
+    0x6a,0x6e,0x72,0x77,0x7c,0x81,0x87,0x8d,0x91,0x93,0x94,0x94,0x93,0x92,0x90,
+    0x8d,0x89,0x85,0x80,0x7b,0x76,0x71,0x6d,0x6a,0x69,0x6b,0x6d,0x71,0x75,0x7a,
+    0x7f,0x85,0x8a,0x8f,0x91,0x93,0x93,0x93,0x92,0x90,0x8e,0x8a,0x87,0x82,0x7d,
+    0x78,0x74,0x6f,0x6c,0x6a,0x6b,0x6d,0x70,0x73,0x78,0x7c,0x82,0x88,0x8c,0x8f,
+    0x91,0x92,0x92,0x91,0x90,0x8e,0x8b,0x88,0x84,0x80,0x7b,0x76,0x72,0x6e,0x6b,
+    0x6b,0x6d,0x6f,0x72,0x76,0x7b,0x80,0x86,0x8a,0x8d,0x8f,0x91,0x91,0x91,0x90,
+    0x8e,0x8c,0x89,0x86,0x82,0x7e,0x79,0x74,0x70,0x6d,0x6c,0x6d,0x6f,0x71,0x74,
+    0x79,0x7e,0x83,0x88,0x8c,0x8e,0x8f,0x90,0x90,0x8f,0x8e,0x8c,0x8a,0x86,0x83,
+    0x7f,0x7b,0x76,0x71,0x6e,0x6d,0x6d,0x6f,0x71,0x73,0x77,0x7c,0x81,0x86,0x8a,
+    0x8d,0x8e,0x8f,0x8f,0x8f,0x8e,0x8d,0x8b,0x88,0x85,0x82,0x7e,0x79,0x74,0x71,
+    0x6f,0x6f,0x6f,0x71,0x73,0x76,0x7b,0x80,0x85,0x89,0x8c,0x8d,0x8e,0x8e,0x8e,
+    0x8e,0x8d,0x8b,0x89,0x86,0x83,0x80,0x7b,0x77,0x73,0x71,0x70,0x70,0x71,0x73,
+    0x76,0x7a,0x7f,0x83,0x87,0x8a,0x8c,0x8d,0x8d,0x8d,0x8d,0x8c,0x8b,0x89,0x87,
+    0x85,0x82,0x7d,0x79,0x75,0x72,0x71,0x71,0x71,0x72,0x75,0x79,0x7d,0x82,0x86,
+    0x89,0x8b,0x8c,0x8c,0x8d,0x8c,0x8c,0x8a,0x89,0x87,0x86,0x83,0x7f,0x7b,0x77,
+    0x74,0x73,0x72,0x72,0x72,0x74,0x78,0x7c,0x80,0x85,0x88,0x8a,0x8b,0x8c,0x8c,
+    0x8c,0x8b,0x8a,0x89,0x88,0x87,0x84,0x81,0x7d,0x79,0x76,0x74,0x73,0x72,0x73,
+    0x74,0x77,0x7b,0x7f,0x83,0x87,0x89,0x8a,0x8b,0x8c,0x8b,0x8b,0x8a,0x89,0x88,
+    0x87,0x85,0x82,0x7e,0x7b,0x78,0x76,0x74,0x73,0x73,0x74,0x77,0x7a,0x7e,0x82,
+    0x86,0x88,0x8a,0x8a,0x8b,0x8a,0x8a,0x88,0x88,0x87,0x87,0x85,0x83,0x7f,0x7c,
+    0x79,0x77,0x75,0x74,0x73,0x74,0x76,0x79,0x7d,0x81,0x84,0x87,0x88,0x89,0x8a,
+    0x89,0x88,0x87,0x86,0x86,0x86,0x85,0x83,0x80,0x7d,0x7a,0x78,0x76,0x74,0x74,
+    0x74,0x75,0x78,0x7b,0x7f,0x83,0x86,0x88,0x89,0x8a,0x89,0x88,0x87,0x87,0x86,
+    0x86,0x86,0x84,0x81,0x7f,0x7c,0x7a,0x78,0x76,0x75,0x75,0x76,0x78,0x7b,0x7f,
+    0x82,0x85,0x87,0x89,0x89,0x89,0x88,0x87,0x86,0x86,0x86,0x85,0x84,0x82,0x80,
+    0x7d,0x7b,0x79,0x77,0x76,0x75,0x75,0x77,0x7a,0x7e,0x81,0x84,0x86,0x88,0x89,
+    0x89,0x88,0x86,0x85,0x85,0x85,0x85,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x79,0x77,
+    0x76,0x76,0x77,0x7a,0x7d,0x80,0x83,0x86,0x87,0x88,0x88,0x87,0x86,0x85,0x85,
+    0x85,0x84,0x84,0x83,0x81,0x7f,0x7d,0x7c,0x7a,0x78,0x77,0x77,0x78,0x7a,0x7d,
+    0x80,0x83,0x85,0x87,0x89,0x89,0x88,0x86,0x85,0x85,0x85,0x85,0x84,0x83,0x82,
+    0x80,0x7f,0x7d,0x7c,0x7a,0x78,0x77,0x78,0x7a,0x7c,0x7f,0x82,0x85,0x87,0x89,
+    0x89,0x88,0x86,0x85,0x84,0x84,0x83,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7c,0x7b,
+    0x79,0x78,0x78,0x79,0x7b,0x7e,0x81,0x84,0x86,0x88,0x88,0x87,0x86,0x84,0x83,
+    0x83,0x83,0x82,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7a,0x79,0x79,0x7a,0x7c,
+    0x7e,0x81,0x84,0x86,0x88,0x89,0x88,0x87,0x85,0x84,0x83,0x82,0x82,0x81,0x81,
+    0x80,0x7f,0x7f,0x7e,0x7c,0x7a,0x79,0x79,0x79,0x7b,0x7d,0x80,0x83,0x85,0x87,
+    0x88,0x88,0x87,0x85,0x84,0x83,0x83,0x82,0x82,0x81,0x81,0x80,0x80,0x7f,0x7e,
+    0x7c,0x7b,0x7a,0x7a,0x7b,0x7d,0x7f,0x82,0x85,0x87,0x88,0x88,0x87,0x85,0x84,
+    0x82,0x81,0x81,0x80,0x7f,0x7f,0x7f,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x7b,
+    0x7c,0x7f,0x82,0x84,0x87,0x88,0x88,0x87,0x85,0x83,0x82,0x81,0x80,0x7f,0x7f,
+    0x7e,0x7e,0x7e,0x7e,0x7d,0x7c,0x7b,0x7b,0x7a,0x7b,0x7c,0x7e,0x81,0x84,0x86,
+    0x88,0x88,0x87,0x86,0x84,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7e,0x7e,0x7e,0x7e,
+    0x7d,0x7c,0x7b,0x7b,0x7b,0x7c,0x7e,0x81,0x83,0x86,0x88,0x88,0x87,0x86,0x84,
+    0x83,0x81,0x80,0x7e,0x7d,0x7d,0x7d,0x7e,0x7e,0x7e,0x7d,0x7d,0x7c,0x7c,0x7c,
+    0x7c,0x7e,0x80,0x83,0x86,0x88,0x88,0x88,0x87,0x85,0x83,0x81,0x80,0x7e,0x7d,
+    0x7c,0x7c,0x7d,0x7e,0x7e,0x7e,0x7d,0x7d,0x7d,0x7c,0x7d,0x7e,0x80,0x83,0x86,
+    0x88,0x89,0x89,0x88,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,
+    0x7d,0x7d,0x7d,0x7d,0x7c,0x7d,0x7e,0x80,0x83,0x86,0x88,0x89,0x89,0x88,0x87,
+    0x85,0x83,0x81,0x7e,0x7c,0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7d,0x7d,0x7d,0x7c,
+    0x7d,0x7d,0x7f,0x82,0x85,0x87,0x89,0x8a,0x89,0x88,0x86,0x84,0x82,0x7f,0x7d,
+    0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x82,0x85,
+    0x87,0x89,0x8a,0x8a,0x89,0x87,0x85,0x82,0x7f,0x7d,0x7b,0x7a,0x7a,0x7a,0x7b,
+    0x7c,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x82,0x84,0x87,0x89,0x8a,0x8a,0x89,
+    0x88,0x86,0x83,0x80,0x7d,0x7b,0x7a,0x79,0x79,0x7a,0x7b,0x7c,0x7d,0x7d,0x7d,
+    0x7d,0x7e,0x7f,0x81,0x84,0x87,0x89,0x8a,0x8b,0x8a,0x89,0x87,0x85,0x81,0x7e,
+    0x7b,0x79,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7c,0x7d,0x7d,0x7d,0x7e,0x80,0x83,
+    0x86,0x89,0x8a,0x8a,0x8a,0x89,0x88,0x85,0x82,0x7e,0x7b,0x79,0x78,0x77,0x77,
+    0x78,0x79,0x7b,0x7c,0x7c,0x7d,0x7d,0x7e,0x80,0x83,0x86,0x89,0x8a,0x8b,0x8b,
+    0x8b,0x89,0x87,0x83,0x80,0x7c,0x7a,0x78,0x76,0x76,0x77,0x78,0x7a,0x7b,0x7c,
+    0x7d,0x7d,0x7e,0x80,0x83,0x86,0x89,0x8b,0x8c,0x8c,0x8c,0x8b,0x88,0x85,0x81,
+    0x7e,0x7b,0x78,0x77,0x76,0x76,0x77,0x79,0x7a,0x7b,0x7c,0x7d,0x7e,0x7f,0x82,
+    0x85,0x88,0x8a,0x8b,0x8c,0x8d,0x8c,0x89,0x86,0x82,0x7f,0x7b,0x78,0x76,0x75,
+    0x74,0x75,0x77,0x79,0x7a,0x7b,0x7c,0x7d,0x7f,0x81,0x84,0x87,0x8a,0x8b,0x8d,
+    0x8d,0x8d,0x8b,0x88,0x85,0x81,0x7e,0x7a,0x77,0x75,0x75,0x75,0x77,0x79,0x7a,
+    0x7b,0x7c,0x7d,0x7e,0x81,0x84,0x87,0x89,0x8b,0x8d,0x8e,0x8e,0x8c,0x8a,0x86,
+    0x83,0x7f,0x7b,0x78,0x75,0x74,0x74,0x75,0x77,0x79,0x7a,0x7b,0x7c,0x7e,0x80,
+    0x83,0x86,0x89,0x8b,0x8d,0x8e,0x8f,0x8e,0x8b,0x88,0x85,0x81,0x7d,0x79,0x76,
+    0x74,0x74,0x74,0x76,0x78,0x79,0x7a,0x7b,0x7d,0x80,0x83,0x86,0x88,0x8b,0x8d,
+    0x8f,0x8f,0x8f,0x8d,0x8a,0x86,0x82,0x7e,0x7a,0x77,0x74,0x73,0x73,0x75,0x77,
+    0x78,0x79,0x7a,0x7c,0x7e,0x81,0x84,0x87,0x8a,0x8c,0x8e,0x8f,0x8f,0x8e,0x8b,
+    0x88,0x84,0x80,0x7b,0x77,0x74,0x72,0x72,0x74,0x75,0x77,0x78,0x79,0x7b,0x7d,
+    0x80,0x83,0x86,0x89,0x8c,0x8f,0x90,0x91,0x90,0x8d,0x8a,0x87,0x82,0x7e,0x79,
+    0x75,0x73,0x72,0x73,0x74,0x76,0x77,0x78,0x7a,0x7c,0x80,0x83,0x86,0x89,0x8c,
+    0x8e,0x90,0x91,0x91,0x8f,0x8c,0x89,0x85,0x80,0x7b,0x77,0x73,0x72,0x72,0x73,
+    0x74,0x75,0x76,0x78,0x7b,0x7e,0x81,0x84,0x87,0x8a,0x8d,0x90,0x91,0x91,0x90,
+    0x8d,0x8a,0x86,0x82,0x7d,0x78,0x74,0x72,0x71,0x72,0x73,0x74,0x75,0x77,0x79,
+    0x7d,0x80,0x83,0x86,0x8a,0x8d,0x8f,0x91,0x92,0x91,0x8f,0x8c,0x88,0x84,0x7f,
+    0x79,0x75,0x72,0x71,0x71,0x72,0x73,0x74,0x76,0x78,0x7b,0x7f,0x82,0x85,0x88,
+    0x8c,0x8f,0x91,0x92,0x92,0x90,0x8d,0x8a,0x86,0x81,0x7b,0x76,0x73,0x71,0x70,
+    0x71,0x71,0x72,0x74,0x77,0x7a,0x7d,0x81,0x84,0x87,0x8b,0x8e,0x91,0x93,0x93,
+    0x91,0x8f,0x8d,0x89,0x83,0x7e,0x78,0x74,0x72,0x71,0x70,0x70,0x71,0x72,0x75,
+    0x78,0x7b,0x7e,0x82,0x85,0x89,0x8d,0x90,0x91,0x92,0x91,0x90,0x8e,0x8a,0x85,
+    0x7f,0x79,0x75,0x72,0x70,0x6f,0x6f,0x6f,0x71,0x73,0x76,0x79,0x7d,0x81,0x84,
+    0x88,0x8c,0x8f,0x91,0x92,0x92,0x91,0x90,0x8c,0x88,0x82,0x7c,0x77,0x73,0x71,
+    0x6f,0x6f,0x6f,0x70,0x72,0x75,0x78,0x7c,0x7f,0x83,0x87,0x8b,0x8f,0x91,0x93,
+    0x93,0x93,0x91,0x8f,0x8a,0x84,0x7e,0x79,0x75,0x71,0x70,0x6e,0x6e,0x6f,0x70,
+    0x73,0x76,0x7a,0x7d,0x81,0x85,0x8a,0x8e,0x91,0x93,0x94,0x94,0x93,0x91,0x8d,
+    0x87,0x82,0x7c,0x77,0x73,0x71,0x6f,0x6e,0x6e,0x6f,0x72,0x75,0x78,0x7c,0x80,
+    0x84,0x88,0x8c,0x90,0x92,0x94,0x95,0x94,0x93,0x8f,0x8a,0x84,0x7e,0x79,0x75,
+    0x71,0x6f,0x6e,0x6d,0x6e,0x70,0x73,0x76,0x7a,0x7e,0x82,0x87,0x8b,0x8f,0x92,
+    0x94,0x95,0x95,0x94,0x91,0x8c,0x87,0x81,0x7c,0x77,0x73,0x70,0x6d,0x6d,0x6d,
+    0x6e,0x71,0x74,0x78,0x7c,0x80,0x85,0x89,0x8d,0x90,0x93,0x95,0x96,0x95,0x93,
+    0x8f,0x89,0x83,0x7e,0x79,0x74,0x70,0x6e,0x6c,0x6c,0x6d,0x70,0x73,0x76,0x7a,
+    0x7e,0x83,0x88,0x8c,0x90,0x93,0x95,0x96,0x96,0x95,0x91,0x8c,0x87,0x81,0x7b,
+    0x76,0x72,0x6f,0x6c,0x6c,0x6c,0x6e,0x71,0x74,0x78,0x7c,0x81,0x86,0x8a,0x8e,
+    0x92,0x94,0x96,0x97,0x96,0x93,0x8f,0x89,0x83,0x7e,0x78,0x74,0x6f,0x6d,0x6b,
+    0x6b,0x6d,0x6f,0x72,0x76,0x7a,0x7f,0x84,0x88,0x8c,0x90,0x94,0x96,0x97,0x97,
+    0x95,0x91,0x8c,0x86,0x81,0x7b,0x76,0x71,0x6d,0x6b,0x6b,0x6c,0x6e,0x70,0x74,
+    0x78,0x7d,0x82,0x87,0x8b,0x8f,0x93,0x96,0x98,0x98,0x96,0x93,0x8e,0x89,0x83,
+    0x7e,0x78,0x73,0x6e,0x6c,0x6b,0x6b,0x6c,0x6e,0x71,0x76,0x7b,0x80,0x84,0x89,
+    0x8d,0x91,0x95,0x97,0x98,0x97,0x95,0x91,0x8c,0x86,0x80,0x7a,0x75,0x70,0x6c,
+    0x6b,0x6a,0x6b,0x6c,0x6f,0x73,0x78,0x7d,0x82,0x87,0x8b,0x90,0x94,0x97,0x98,
+    0x98,0x96,0x93,0x8e,0x89,0x83,0x7d,0x77,0x71,0x6d,0x6b,0x6a,0x69,0x6b,0x6d,
+    0x71,0x76,0x7b,0x80,0x85,0x89,0x8e,0x92,0x96,0x98,0x98,0x97,0x94,0x90,0x8b,
+    0x86,0x80,0x79,0x73,0x6f,0x6b,0x69,0x69,0x69,0x6b,0x6f,0x73,0x78,0x7d,0x82,
+    0x87,0x8c,0x91,0x95,0x97,0x99,0x98,0x96,0x92,0x8e,0x88,0x82,0x7c,0x76,0x71,
+    0x6d,0x6a,0x68,0x68,0x6a,0x6d,0x72,0x76,0x7b,0x80,0x85,0x8a,0x8f,0x94,0x97,
+    0x99,0x99,0x97,0x94,0x90,0x8b,0x85,0x7e,0x78,0x72,0x6e,0x6a,0x68,0x67,0x69,
+    0x6b,0x6f,0x74,0x78,0x7d,0x83,0x88,0x8d,0x92,0x96,0x98,0x99,0x98,0x96,0x92,
+    0x8e,0x88,0x82,0x7b,0x75,0x70,0x6c,0x69,0x67,0x68,0x6a,0x6d,0x71,0x76,0x7b,
+    0x80,0x86,0x8b,0x90,0x95,0x98,0x99,0x99,0x97,0x95,0x91,0x8b,0x85,0x7e,0x78,
+    0x73,0x6e,0x6a,0x68,0x67,0x69,0x6b,0x6f,0x74,0x79,0x7e,0x83,0x89,0x8e,0x93,
+    0x97,0x99,0x99,0x98,0x96,0x93,0x8e,0x88,0x81,0x7b,0x75,0x6f,0x6b,0x68,0x67,
+    0x67,0x6a,0x6d,0x71,0x76,0x7b,0x80,0x86,0x8c,0x92,0x96,0x98,0x9a,0x9a,0x98,
+    0x95,0x91,0x8b,0x85,0x7f,0x78,0x72,0x6d,0x69,0x67,0x67,0x68,0x6b,0x6f,0x74,
+    0x79,0x7e,0x84,0x8a,0x90,0x94,0x97,0x99,0x9a,0x99,0x97,0x93,0x8e,0x88,0x81,
+    0x7b,0x75,0x6f,0x6a,0x67,0x66,0x67,0x6a,0x6d,0x71,0x76,0x7b,0x81,0x87,0x8d,
+    0x92,0x96,0x99,0x9a,0x9a,0x99,0x95,0x91,0x8b,0x85,0x7e,0x78,0x71,0x6c,0x68,
+    0x66,0x66,0x68,0x6b,0x6f,0x73,0x79,0x7e,0x85,0x8b,0x91,0x95,0x98,0x9a,0x9b,
+    0x9a,0x97,0x93,0x8e,0x88,0x82,0x7b,0x74,0x6e,0x69,0x67,0x66,0x67,0x6a,0x6d,
+    0x71,0x76,0x7c,0x82,0x89,0x8e,0x93,0x97,0x9a,0x9b,0x9b,0x99,0x95,0x91,0x8b,
+    0x85,0x7e,0x77,0x70,0x6b,0x67,0x66,0x66,0x68,0x6b,0x6e,0x73,0x79,0x7f,0x86,
+    0x8c,0x91,0x95,0x99,0x9b,0x9b,0x9a,0x97,0x93,0x8e,0x88,0x81,0x7a,0x73,0x6d,
+    0x69,0x66,0x66,0x67,0x69,0x6c,0x70,0x76,0x7c,0x83,0x89,0x8f,0x94,0x98,0x9a,
+    0x9b,0x9b,0x98,0x95,0x90,0x8b,0x84,0x7d,0x76,0x6f,0x6a,0x67,0x65,0x66,0x67,
+    0x6a,0x6e,0x73,0x79,0x7f,0x86,0x8c,0x91,0x96,0x99,0x9b,0x9b,0x99,0x97,0x93,
+    0x8e,0x88,0x81,0x79,0x72,0x6c,0x68,0x66,0x65,0x66,0x68,0x6c,0x70,0x76,0x7d,
+    0x83,0x89,0x8f,0x94,0x98,0x9b,0x9b,0x9a,0x98,0x95,0x90,0x8b,0x84,0x7c,0x75,
+    0x6e,0x6a,0x67,0x66,0x65,0x67,0x69,0x6e,0x73,0x79,0x80,0x86,0x8c,0x92,0x96,
+    0x99,0x9b,0x9a,0x99,0x96,0x92,0x8d,0x87,0x7f,0x77,0x70,0x6b,0x67,0x65,0x65,
+    0x65,0x67,0x6b,0x70,0x76,0x7d,0x83,0x89,0x90,0x95,0x99,0x9b,0x9b,0x9a,0x98,
+    0x95,0x91,0x8a,0x83,0x7b,0x74,0x6e,0x6a,0x67,0x65,0x65,0x66,0x6a,0x6e,0x74,
+    0x7a,0x80,0x87,0x8d,0x93,0x97,0x9a,0x9b,0x9b,0x9a,0x97,0x93,0x8e,0x87,0x7f,
+    0x77,0x71,0x6c,0x68,0x65,0x64,0x65,0x68,0x6c,0x71,0x77,0x7d,0x84,0x8b,0x91,
+    0x96,0x99,0x9b,0x9b,0x9b,0x99,0x96,0x91,0x8a,0x82,0x7b,0x74,0x6e,0x6a,0x66,
+    0x64,0x64,0x66,0x6a,0x6e,0x74,0x7a,0x81,0x88,0x8e,0x94,0x98,0x9a,0x9b,0x9b,
+    0x9a,0x97,0x93,0x8d,0x85,0x7e,0x77,0x71,0x6b,0x67,0x65,0x64,0x65,0x68,0x6c,
+    0x71,0x77,0x7d,0x85,0x8b,0x92,0x96,0x99,0x9b,0x9b,0x9b,0x99,0x96,0x90,0x89,
+    0x81,0x7a,0x73,0x6e,0x69,0x65,0x64,0x64,0x66,0x6a,0x6e,0x74,0x7a,0x81,0x89,
+    0x8f,0x94,0x98,0x9a,0x9b,0x9c,0x9b,0x98,0x93,0x8c,0x85,0x7e,0x77,0x71,0x6b,
+    0x67,0x64,0x64,0x65,0x68,0x6c,0x71,0x77,0x7e,0x86,0x8d,0x92,0x96,0x99,0x9b,
+    0x9c,0x9c,0x9a,0x96,0x90,0x89,0x81,0x7a,0x74,0x6e,0x69,0x65,0x64,0x64,0x67,
+    0x6a,0x6f,0x74,0x7b,0x83,0x8a,0x90,0x94,0x98,0x9a,0x9c,0x9c,0x9b,0x98,0x92,
+    0x8c,0x85,0x7e,0x77,0x70,0x6b,0x66,0x64,0x64,0x65,0x68,0x6c,0x71,0x78,0x7f,
+    0x87,0x8d,0x92,0x96,0x99,0x9b,0x9d,0x9c,0x99,0x95,0x8f,0x88,0x81,0x7a,0x73,
+    0x6d,0x68,0x65,0x64,0x64,0x66,0x69,0x6e,0x74,0x7b,0x83,0x8a,0x90,0x94,0x97,
+    0x9a,0x9c,0x9d,0x9b,0x97,0x92,0x8b,0x84,0x7d,0x76,0x70,0x6a,0x66,0x64,0x64,
+    0x65,0x68,0x6c,0x71,0x79,0x80,0x87,0x8d,0x92,0x96,0x9a,0x9c,0x9d,0x9c,0x99,
+    0x94,0x8e,0x88,0x81,0x7a,0x73,0x6d,0x68,0x65,0x64,0x64,0x66,0x6a,0x6f,0x75,
+    0x7d,0x84,0x8a,0x90,0x94,0x98,0x9b,0x9d,0x9c,0x9a,0x96,0x91,0x8b,0x84,0x7d,
+    0x76,0x6f,0x6a,0x66,0x64,0x64,0x65,0x67,0x6c,0x72,0x79,0x81,0x87,0x8d,0x92,
+    0x96,0x9a,0x9c,0x9d,0x9b,0x98,0x94,0x8e,0x87,0x80,0x79,0x72,0x6c,0x68,0x65,
+    0x64,0x64,0x66,0x69,0x6f,0x76,0x7d,0x84,0x8a,0x90,0x94,0x99,0x9b,0x9d,0x9c,
+    0x9a,0x96,0x90,0x8a,0x84,0x7c,0x75,0x6f,0x6a,0x67,0x64,0x64,0x65,0x67,0x6d,
+    0x73,0x7a,0x81,0x88,0x8d,0x93,0x97,0x9b,0x9d,0x9d,0x9b,0x98,0x94,0x8e,0x87,
+    0x80,0x79,0x72,0x6d,0x68,0x65,0x63,0x63,0x66,0x6a,0x70,0x77,0x7e,0x84,0x8a,
+    0x90,0x95,0x99,0x9b,0x9c,0x9b,0x99,0x95,0x90,0x8a,0x83,0x7c,0x75,0x6f,0x6a,
+    0x66,0x64,0x63,0x64,0x68,0x6d,0x74,0x7b,0x81,0x88,0x8e,0x93,0x97,0x9b,0x9c,
+    0x9c,0x9b,0x98,0x93,0x8e,0x87,0x80,0x78,0x72,0x6d,0x68,0x65,0x63,0x63,0x66,
+    0x6b,0x70,0x77,0x7e,0x84,0x8b,0x90,0x95,0x99,0x9b,0x9c,0x9b,0x99,0x95,0x90,
+    0x8a,0x83,0x7c,0x75,0x6f,0x6a,0x66,0x63,0x63,0x65,0x68,0x6e,0x74,0x7b,0x81,
+    0x88,0x8e,0x93,0x98,0x9b,0x9c,0x9c,0x9b,0x97,0x93,0x8d,0x86,0x7f,0x79,0x72,
+    0x6d,0x68,0x65,0x63,0x64,0x67,0x6b,0x71,0x78,0x7e,0x85,0x8b,0x91,0x96,0x99,
+    0x9c,0x9c,0x9b,0x99,0x95,0x90,0x89,0x83,0x7c,0x76,0x70,0x6a,0x66,0x64,0x64,
+    0x66,0x6a,0x6f,0x75,0x7c,0x82,0x89,0x8f,0x94,0x98,0x9b,0x9c,0x9c,0x9b,0x97,
+    0x92,0x8c,0x86,0x80,0x79,0x73,0x6d,0x68,0x65,0x63,0x64,0x68,0x6c,0x72,0x78,
+    0x7f,0x86,0x8c,0x92,0x96,0x99,0x9b,0x9c,0x9b,0x99,0x94,0x8f,0x89,0x83,0x7c,
+    0x75,0x6f,0x6a,0x66,0x63,0x64,0x66,0x6a,0x6f,0x75,0x7b,0x82,0x89,0x8f,0x94,
+    0x98,0x9b,0x9c,0x9c,0x9a,0x96,0x91,0x8c,0x86,0x7f,0x79,0x72,0x6c,0x67,0x64,
+    0x63,0x64,0x67,0x6c,0x72,0x78,0x7f,0x86,0x8c,0x91,0x96,0x99,0x9b,0x9c,0x9b,
+    0x98,0x93,0x8e,0x89,0x82,0x7c,0x75,0x6e,0x69,0x65,0x64,0x64,0x66,0x6a,0x6f,
+    0x75,0x7c,0x83,0x89,0x8f,0x94,0x98,0x9b,0x9c,0x9b,0x99,0x95,0x91,0x8b,0x85,
+    0x7f,0x78,0x71,0x6b,0x67,0x64,0x63,0x65,0x68,0x6c,0x72,0x78,0x7f,0x86,0x8c,
+    0x91,0x96,0x99,0x9b,0x9b,0x9a,0x97,0x93,0x8e,0x89,0x82,0x7b,0x75,0x6e,0x69,
+    0x66,0x64,0x64,0x66,0x6a,0x6f,0x75,0x7c,0x83,0x8a,0x8f,0x94,0x98,0x9b,0x9c,
+    0x9b,0x98,0x95,0x91,0x8b,0x85,0x7f,0x78,0x71,0x6b,0x67,0x64,0x64,0x65,0x68,
+    0x6c,0x72,0x79,0x80,0x86,0x8c,0x92,0x96,0x99,0x9b,0x9b,0x99,0x96,0x93,0x8e,
+    0x88,0x82,0x7b,0x74,0x6e,0x69,0x66,0x64,0x64,0x66,0x6a,0x70,0x76,0x7d,0x83,
+    0x89,0x8f,0x94,0x98,0x9a,0x9b,0x9a,0x98,0x95,0x91,0x8b,0x85,0x7e,0x77,0x71,
+    0x6b,0x67,0x65,0x64,0x65,0x68,0x6d,0x73,0x79,0x80,0x86,0x8c,0x92,0x96,0x99,
+    0x9a,0x9a,0x98,0x96,0x92,0x8e,0x88,0x82,0x7a,0x74,0x6e,0x69,0x66,0x64,0x64,
+    0x66,0x6a,0x70,0x76,0x7c,0x83,0x89,0x8f,0x94,0x97,0x99,0x99,0x98,0x97,0x94,
+    0x90,0x8b,0x84,0x7d,0x77,0x70,0x6b,0x67,0x64,0x64,0x65,0x68,0x6d,0x73,0x79,
+    0x80,0x86,0x8d,0x92,0x96,0x98,0x99,0x99,0x98,0x96,0x92,0x8d,0x88,0x81,0x7a,
+    0x74,0x6e,0x6a,0x66,0x64,0x65,0x67,0x6c,0x71,0x77,0x7d,0x84,0x8a,0x90,0x94,
+    0x97,0x99,0x99,0x99,0x97,0x94,0x90,0x8b,0x84,0x7e,0x78,0x71,0x6c,0x68,0x65,
+    0x65,0x66,0x6a,0x6e,0x74,0x7a,0x81,0x88,0x8e,0x93,0x96,0x98,0x99,0x99,0x98,
+    0x96,0x92,0x8d,0x88,0x81,0x7b,0x75,0x6f,0x6a,0x66,0x65,0x66,0x68,0x6c,0x71,
+    0x77,0x7e,0x85,0x8b,0x91,0x94,0x97,0x98,0x99,0x99,0x97,0x94,0x90,0x8a,0x84,
+    0x7e,0x78,0x71,0x6c,0x68,0x65,0x65,0x67,0x6a,0x6e,0x74,0x7a,0x81,0x88,0x8e,
+    0x92,0x95,0x97,0x98,0x99,0x98,0x95,0x92,0x8d,0x87,0x81,0x7b,0x74,0x6e,0x6a,
+    0x67,0x65,0x66,0x68,0x6c,0x71,0x77,0x7e,0x85,0x8b,0x90,0x94,0x96,0x98,0x99,
+    0x98,0x96,0x93,0x8f,0x8a,0x84,0x7e,0x78,0x71,0x6c,0x68,0x66,0x66,0x67,0x6a,
+    0x6f,0x74,0x7b,0x82,0x88,0x8e,0x91,0x94,0x96,0x98,0x98,0x97,0x95,0x91,0x8c,
+    0x87,0x81,0x7b,0x74,0x6f,0x6a,0x67,0x66,0x67,0x69,0x6c,0x72,0x78,0x7f,0x86,
+    0x8b,0x8f,0x93,0x95,0x97,0x98,0x97,0x95,0x92,0x8e,0x89,0x84,0x7d,0x77,0x71,
+    0x6c,0x68,0x66,0x66,0x67,0x6a,0x6f,0x75,0x7c,0x82,0x88,0x8d,0x91,0x94,0x96,
+    0x97,0x97,0x96,0x94,0x90,0x8c,0x87,0x81,0x7a,0x74,0x6f,0x6a,0x68,0x66,0x67,
+    0x69,0x6d,0x72,0x79,0x80,0x86,0x8b,0x8f,0x93,0x95,0x97,0x98,0x97,0x95,0x92,
+    0x8e,0x89,0x84,0x7d,0x77,0x71,0x6c,0x69,0x67,0x66,0x67,0x6b,0x70,0x76,0x7d,
+    0x83,0x88,0x8d,0x91,0x94,0x96,0x97,0x97,0x96,0x93,0x90,0x8c,0x86,0x80,0x7a,
+    0x74,0x6f,0x6b,0x68,0x67,0x67,0x69,0x6e,0x73,0x7a,0x80,0x86,0x8b,0x8f,0x92,
+    0x95,0x97,0x97,0x96,0x94,0x92,0x8e,0x89,0x83,0x7d,0x77,0x72,0x6d,0x69,0x67,
+    0x66,0x68,0x6b,0x70,0x77,0x7d,0x83,0x88,0x8c,0x90,0x93,0x95,0x96,0x96,0x95,
+    0x93,0x90,0x8b,0x86,0x80,0x7a,0x74,0x6f,0x6b,0x68,0x66,0x67,0x6a,0x6f,0x74,
+    0x7b,0x80,0x86,0x8a,0x8f,0x92,0x94,0x96,0x96,0x95,0x94,0x91,0x8d,0x88,0x83,
+    0x7d,0x77,0x72,0x6d,0x69,0x67,0x66,0x68,0x6c,0x72,0x77,0x7d,0x83,0x88,0x8c,
+    0x90,0x93,0x95,0x96,0x96,0x95,0x93,0x90,0x8b,0x86,0x80,0x7b,0x75,0x70,0x6c,
+    0x69,0x67,0x68,0x6b,0x70,0x75,0x7b,0x81,0x86,0x8b,0x8f,0x92,0x94,0x95,0x96,
+    0x95,0x94,0x91,0x8d,0x88,0x83,0x7d,0x78,0x73,0x6e,0x6a,0x67,0x67,0x6a,0x6e,
+    0x73,0x78,0x7e,0x83,0x88,0x8d,0x90,0x93,0x94,0x95,0x95,0x95,0x92,0x8f,0x8a,
+    0x85,0x80,0x7b,0x76,0x70,0x6b,0x68,0x67,0x69,0x6c,0x70,0x76,0x7b,0x81,0x86,
+    0x8b,0x8f,0x91,0x93,0x95,0x95,0x95,0x93,0x90,0x8c,0x88,0x83,0x7e,0x78,0x73,
+    0x6e,0x6a,0x68,0x68,0x6b,0x6e,0x73,0x78,0x7e,0x83,0x88,0x8c,0x90,0x92,0x94,
+    0x95,0x95,0x94,0x92,0x8e,0x8a,0x85,0x81,0x7b,0x76,0x70,0x6c,0x69,0x68,0x6a,
+    0x6d,0x71,0x76,0x7c,0x81,0x86,0x8b,0x8e,0x91,0x93,0x94,0x95,0x94,0x92,0x8f,
+    0x8c,0x87,0x83,0x7e,0x78,0x73,0x6d,0x6a,0x68,0x69,0x6b,0x6f,0x74,0x79,0x7e,
+    0x83,0x88,0x8c,0x8f,0x91,0x93,0x94,0x94,0x93,0x90,0x8d,0x89,0x85,0x80,0x7b,
+    0x75,0x70,0x6b,0x69,0x69,0x6a,0x6e,0x72,0x77,0x7c,0x81,0x86,0x8a,0x8d,0x90,
+    0x92,0x93,0x94,0x93,0x91,0x8e,0x8b,0x87,0x83,0x7d,0x78,0x72,0x6d,0x6a,0x69,
+    0x6a,0x6c,0x70,0x74,0x79,0x7f,0x84,0x88,0x8b,0x8e,0x91,0x93,0x94,0x93,0x92,
+    0x90,0x8d,0x89,0x85,0x81,0x7b,0x75,0x70,0x6c,0x6a,0x6a,0x6c,0x6f,0x73,0x78,
+    0x7d,0x82,0x86,0x8a,0x8d,0x90,0x92,0x93,0x94,0x93,0x91,0x8e,0x8b,0x88,0x83,
+    0x7e,0x78,0x72,0x6e,0x6b,0x6a,0x6b,0x6d,0x71,0x75,0x7a,0x7f,0x84,0x88,0x8b,
+    0x8e,0x91,0x92,0x93,0x92,0x91,0x8f,0x8d,0x89,0x85,0x80,0x7b,0x75,0x70,0x6c,
+    0x6a,0x6a,0x6c,0x6f,0x73,0x78,0x7d,0x81,0x85,0x89,0x8c,0x8f,0x91,0x92,0x92,
+    0x91,0x90,0x8e,0x8b,0x87,0x83,0x7d,0x78,0x72,0x6e,0x6b,0x6a,0x6b,0x6d,0x71,
+    0x76,0x7a,0x7f,0x83,0x87,0x8a,0x8e,0x90,0x91,0x92,0x91,0x90,0x8f,0x8c,0x89,
+    0x85,0x80,0x7b,0x75,0x71,0x6d,0x6b,0x6b,0x6d,0x70,0x74,0x78,0x7d,0x81,0x85,
+    0x89,0x8c,0x8f,0x91,0x92,0x91,0x91,0x90,0x8e,0x8b,0x87,0x83,0x7d,0x78,0x73,
+    0x6f,0x6c,0x6b,0x6c,0x6f,0x72,0x76,0x7b,0x7f,0x83,0x87,0x8b,0x8e,0x90,0x91,
+    0x91,0x91,0x90,0x8f,0x8d,0x8a,0x85,0x80,0x7b,0x76,0x71,0x6e,0x6c,0x6c,0x6e,
+    0x71,0x75,0x79,0x7d,0x81,0x85,0x89,0x8c,0x8e,0x90,0x90,0x90,0x90,0x8f,0x8d,
+    0x8a,0x87,0x82,0x7d,0x78,0x73,0x6f,0x6c,0x6c,0x6d,0x6f,0x73,0x76,0x7a,0x7e,
+    0x83,0x87,0x8a,0x8d,0x8f,0x90,0x90,0x90,0x90,0x8e,0x8c,0x89,0x85,0x80,0x7b,
+    0x76,0x72,0x6e,0x6d,0x6d,0x6f,0x72,0x75,0x79,0x7d,0x81,0x85,0x89,0x8c,0x8e,
+    0x8f,0x90,0x90,0x90,0x8f,0x8d,0x8b,0x87,0x82,0x7d,0x78,0x73,0x70,0x6e,0x6d,
+    0x6e,0x70,0x74,0x77,0x7b,0x7f,0x83,0x87,0x8a,0x8c,0x8e,0x8f,0x90,0x90,0x8f,
+    0x8e,0x8c,0x89,0x85,0x80,0x7b,0x76,0x72,0x6f,0x6e,0x6e,0x70,0x72,0x75,0x79,
+    0x7d,0x81,0x85,0x88,0x8b,0x8d,0x8e,0x8f,0x8f,0x8f,0x8e,0x8c,0x8a,0x86,0x82,
+    0x7d,0x78,0x73,0x70,0x6e,0x6e,0x6f,0x71,0x73,0x77,0x7b,0x7f,0x83,0x86,0x89,
+    0x8b,0x8d,0x8e,0x8e,0x8f,0x8e,0x8d,0x8b,0x88,0x84,0x7f,0x7a,0x76,0x72,0x6f,
+    0x6e,0x6f,0x70,0x72,0x76,0x79,0x7d,0x81,0x85,0x88,0x8a,0x8c,0x8d,0x8e,0x8e,
+    0x8e,0x8e,0x8c,0x8a,0x86,0x82,0x7d,0x78,0x74,0x71,0x6f,0x6f,0x70,0x71,0x74,
+    0x77,0x7b,0x7f,0x83,0x86,0x89,0x8b,0x8c,0x8e,0x8e,0x8f,0x8e,0x8d,0x8b,0x88,
+    0x84,0x80,0x7b,0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x76,0x7a,0x7e,0x82,0x85,
+    0x87,0x8a,0x8b,0x8d,0x8e,0x8e,0x8e,0x8d,0x8c,0x8a,0x86,0x82,0x7d,0x78,0x75,
+    0x72,0x70,0x70,0x70,0x72,0x74,0x78,0x7b,0x7f,0x82,0x85,0x88,0x8a,0x8c,0x8d,
+    0x8d,0x8e,0x8e,0x8d,0x8b,0x88,0x84,0x7f,0x7b,0x77,0x74,0x72,0x71,0x71,0x72,
+    0x74,0x77,0x7a,0x7e,0x81,0x84,0x87,0x89,0x8a,0x8c,0x8d,0x8d,0x8d,0x8d,0x8c,
+    0x89,0x86,0x81,0x7d,0x79,0x75,0x73,0x71,0x71,0x71,0x73,0x75,0x78,0x7c,0x7f,
+    0x82,0x85,0x87,0x89,0x8b,0x8c,0x8d,0x8d,0x8d,0x8d,0x8b,0x88,0x84,0x7f,0x7b,
+    0x78,0x75,0x73,0x72,0x72,0x72,0x75,0x78,0x7b,0x7e,0x81,0x84,0x86,0x88,0x8a,
+    0x8b,0x8c,0x8d,0x8d,0x8d,0x8c,0x89,0x85,0x81,0x7d,0x79,0x76,0x74,0x72,0x71,
+    0x72,0x73,0x76,0x79,0x7c,0x7f,0x82,0x84,0x87,0x88,0x8a,0x8b,0x8c,0x8d,0x8d,
+    0x8c,0x8a,0x87,0x83,0x7f,0x7b,0x78,0x76,0x73,0x72,0x72,0x73,0x75,0x78,0x7b,
+    0x7e,0x81,0x84,0x86,0x88,0x89,0x8b,0x8c,0x8d,0x8d,0x8d,0x8b,0x89,0x85,0x81,
+    0x7e,0x7a,0x77,0x75,0x73,0x72,0x73,0x74,0x77,0x79,0x7c,0x7f,0x82,0x84,0x86,
+    0x88,0x89,0x8b,0x8c,0x8d,0x8d,0x8c,0x8a,0x87,0x83,0x80,0x7d,0x79,0x76,0x74,
+    0x73,0x73,0x74,0x76,0x79,0x7b,0x7e,0x81,0x83,0x86,0x87,0x89,0x8a,0x8b,0x8c,
+    0x8d,0x8c,0x8a,0x88,0x85,0x82,0x7e,0x7b,0x78,0x75,0x74,0x73,0x74,0x75,0x77,
+    0x79,0x7c,0x7f,0x81,0x84,0x85,0x87,0x88,0x8a,0x8b,0x8c,0x8c,0x8b,0x89,0x86,
+    0x83,0x80,0x7d,0x79,0x77,0x75,0x74,0x74,0x75,0x76,0x78,0x7b,0x7e,0x80,0x83,
+    0x84,0x86,0x87,0x89,0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x82,0x7f,0x7b,0x78,
+    0x76,0x75,0x74,0x75,0x76,0x77,0x7a,0x7c,0x7f,0x81,0x83,0x85,0x86,0x88,0x8a,
+    0x8b,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x81,0x7d,0x7a,0x78,0x76,0x75,0x75,0x76,
+    0x77,0x79,0x7c,0x7e,0x80,0x82,0x84,0x86,0x87,0x89,0x8a,0x8b,0x8b,0x8b,0x89,
+    0x87,0x85,0x82,0x7f,0x7c,0x79,0x77,0x76,0x75,0x76,0x76,0x78,0x7a,0x7d,0x7f,
+    0x81,0x83,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x88,0x86,0x84,0x81,0x7e,
+    0x7b,0x79,0x77,0x76,0x76,0x76,0x78,0x79,0x7c,0x7e,0x80,0x82,0x83,0x85,0x87,
+    0x89,0x8a,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x82,0x7f,0x7c,0x7a,0x78,0x76,0x76,
+    0x76,0x77,0x78,0x7a,0x7c,0x7e,0x80,0x82,0x83,0x85,0x87,0x89,0x8a,0x8a,0x8a,
+    0x89,0x88,0x86,0x84,0x81,0x7e,0x7b,0x79,0x78,0x77,0x77,0x77,0x78,0x7a,0x7c,
+    0x7e,0x7f,0x81,0x83,0x85,0x87,0x88,0x89,0x8a,0x8a,0x89,0x88,0x87,0x85,0x82,
+    0x80,0x7d,0x7b,0x79,0x77,0x77,0x77,0x77,0x79,0x7b,0x7c,0x7e,0x80,0x81,0x83,
+    0x85,0x87,0x88,0x89,0x89,0x89,0x89,0x88,0x86,0x84,0x81,0x7f,0x7c,0x7a,0x79,
+    0x78,0x77,0x78,0x79,0x7a,0x7c,0x7d,0x7f,0x80,0x82,0x84,0x86,0x87,0x88,0x89,
+    0x89,0x89,0x88,0x87,0x85,0x82,0x80,0x7e,0x7c,0x7a,0x78,0x77,0x77,0x78,0x7a,
+    0x7b,0x7c,0x7e,0x7f,0x81,0x83,0x85,0x87,0x88,0x88,0x89,0x89,0x88,0x87,0x86,
+    0x84,0x81,0x7f,0x7d,0x7b,0x79,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7d,0x7e,0x80,
+    0x82,0x84,0x85,0x87,0x87,0x88,0x88,0x88,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,
+    0x7a,0x79,0x78,0x78,0x79,0x7a,0x7b,0x7c,0x7d,0x7f,0x81,0x83,0x85,0x86,0x87,
+    0x87,0x88,0x88,0x88,0x87,0x85,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x79,0x79,0x79,
+    0x7a,0x7b,0x7b,0x7c,0x7e,0x80,0x82,0x84,0x85,0x86,0x87,0x87,0x88,0x88,0x87,
+    0x86,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x79,0x79,0x79,0x7a,0x7a,0x7b,0x7d,
+    0x7f,0x81,0x82,0x84,0x85,0x86,0x87,0x88,0x88,0x87,0x87,0x86,0x84,0x82,0x80,
+    0x7e,0x7c,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7b,0x7d,0x7e,0x80,0x82,0x83,0x84,
+    0x85,0x86,0x87,0x87,0x87,0x87,0x86,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,
+    0x7a,0x7a,0x7a,0x7a,0x7b,0x7d,0x7f,0x80,0x82,0x83,0x84,0x85,0x86,0x87,0x87,
+    0x87,0x86,0x86,0x84,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,0x7b,
+    0x7c,0x7e,0x80,0x81,0x83,0x84,0x85,0x86,0x86,0x87,0x87,0x87,0x86,0x85,0x84,
+    0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7d,0x7f,0x80,0x82,
+    0x83,0x84,0x85,0x86,0x86,0x87,0x87,0x86,0x86,0x85,0x83,0x81,0x80,0x7e,0x7d,
+    0x7c,0x7b,0x7b,0x7a,0x7a,0x7b,0x7c,0x7e,0x7f,0x81,0x82,0x83,0x84,0x85,0x86,
+    0x86,0x86,0x86,0x86,0x85,0x84,0x82,0x81,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,
+    0x7a,0x7b,0x7d,0x7e,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x86,0x86,0x86,0x86,
+    0x85,0x83,0x82,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x7b,0x7c,0x7e,0x7f,
+    0x80,0x82,0x83,0x83,0x84,0x85,0x85,0x86,0x86,0x86,0x85,0x84,0x83,0x81,0x80,
+    0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x7f,0x80,0x82,0x82,0x83,
+    0x84,0x85,0x86,0x86,0x86,0x86,0x85,0x84,0x82,0x81,0x80,0x7f,0x7d,0x7c,0x7b,
+    0x7a,0x7a,0x7b,0x7c,0x7d,0x7f,0x80,0x81,0x82,0x83,0x83,0x84,0x85,0x85,0x86,
+    0x86,0x85,0x84,0x83,0x82,0x81,0x7f,0x7e,0x7c,0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,
+    0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x84,0x85,0x86,0x86,0x85,0x85,0x84,0x83,
+    0x82,0x81,0x7f,0x7e,0x7c,0x7b,0x7a,0x7a,0x7b,0x7c,0x7d,0x7e,0x7f,0x80,0x81,
+    0x82,0x83,0x84,0x84,0x85,0x85,0x85,0x85,0x84,0x84,0x83,0x82,0x80,0x7e,0x7d,
+    0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,0x7f,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,
+    0x85,0x86,0x85,0x85,0x85,0x84,0x83,0x82,0x80,0x7e,0x7c,0x7b,0x7a,0x7a,0x7b,
+    0x7c,0x7d,0x7e,0x7f,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x85,0x85,0x85,0x85,
+    0x84,0x84,0x82,0x81,0x7f,0x7d,0x7c,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,0x7e,0x7f,
+    0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x85,0x85,0x85,0x85,0x84,0x83,0x82,0x80,
+    0x7e,0x7c,0x7b,0x7a,0x7a,0x7b,0x7c,0x7d,0x7d,0x7e,0x7f,0x7f,0x80,0x81,0x82,
+    0x83,0x84,0x84,0x85,0x85,0x85,0x85,0x84,0x83,0x81,0x7f,0x7d,0x7b,0x7a,0x7a,
+    0x7a,0x7b,0x7c,0x7d,0x7e,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x84,0x85,0x86,
+    0x86,0x86,0x85,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x7b,0x7b,0x7b,0x7c,0x7d,0x7d,
+    0x7e,0x7f,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x86,0x86,0x86,0x85,0x84,
+    0x82,0x80,0x7e,0x7c,0x7b,0x7b,0x7b,0x7c,0x7c,0x7d,0x7e,0x7e,0x7f,0x80,0x81,
+    0x82,0x83,0x84,0x85,0x86,0x86,0x87,0x87,0x87,0x86,0x84,0x82,0x80,0x7d,0x7c,
+    0x7b,0x7b,0x7b,0x7c,0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x82,0x83,0x84,
+    0x85,0x86,0x86,0x86,0x86,0x85,0x83,0x80,0x7e,0x7c,0x7b,0x7b,0x7b,0x7b,0x7c,
+    0x7c,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x87,0x87,
+    0x86,0x84,0x82,0x80,0x7d,0x7c,0x7b,0x7b,0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,
+    0x7f,0x80,0x81,0x82,0x83,0x85,0x86,0x87,0x87,0x88,0x87,0x85,0x83,0x81,0x7e,
+    0x7c,0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x7f,0x80,0x81,0x83,
+    0x84,0x85,0x87,0x88,0x88,0x88,0x87,0x85,0x82,0x80,0x7e,0x7c,0x7c,0x7c,0x7b,
+    0x7b,0x7c,0x7c,0x7d,0x7d,0x7e,0x7f,0x7f,0x80,0x82,0x83,0x84,0x86,0x87,0x88,
+    0x88,0x87,0x86,0x83,0x81,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7d,
+    0x7d,0x7e,0x7f,0x80,0x81,0x82,0x84,0x86,0x87,0x88,0x89,0x89,0x87,0x85,0x83,
+    0x80,0x7e,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7e,0x7e,0x7f,0x80,
+    0x82,0x83,0x85,0x86,0x88,0x89,0x89,0x88,0x86,0x84,0x81,0x7f,0x7e,0x7d,0x7c,
+    0x7b,0x7b,0x7b,0x7c,0x7c,0x7c,0x7d,0x7e,0x7e,0x80,0x81,0x82,0x84,0x86,0x88,
+    0x89,0x8a,0x89,0x88,0x85,0x83,0x80,0x7f,0x7d,0x7c,0x7c,0x7b,0x7b,0x7b,0x7c,
+    0x7c,0x7c,0x7d,0x7d,0x7e,0x7f,0x81,0x82,0x84,0x86,0x88,0x89,0x89,0x88,0x86,
+    0x84,0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7d,0x7e,
+    0x7f,0x80,0x82,0x84,0x86,0x88,0x89,0x8a,0x89,0x88,0x86,0x83,0x81,0x7f,0x7e,
+    0x7c,0x7c,0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x81,0x83,0x85,
+    0x87,0x89,0x8a,0x8a,0x89,0x87,0x84,0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,
+    0x7b,0x7b,0x7b,0x7c,0x7c,0x7d,0x7e,0x80,0x82,0x84,0x86,0x88,0x8a,0x8a,0x8a,
+    0x88,0x86,0x84,0x81,0x7f,0x7e,0x7c,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,
+    0x7c,0x7d,0x7e,0x80,0x82,0x85,0x88,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x82,0x80,
+    0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7d,0x7f,0x81,
+    0x84,0x87,0x89,0x8a,0x8a,0x8a,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7b,0x7b,
+    0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7e,0x80,0x82,0x85,0x88,0x8a,0x8a,
+    0x8a,0x89,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,0x7a,0x7a,
+    0x7b,0x7b,0x7c,0x7d,0x7e,0x81,0x84,0x87,0x89,0x8a,0x8a,0x8a,0x88,0x86,0x84,
+    0x82,0x7f,0x7e,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x7b,0x7d,
+    0x7f,0x82,0x85,0x88,0x89,0x8a,0x8a,0x89,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7c,
+    0x7b,0x7b,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x81,0x84,0x87,0x89,
+    0x8b,0x8b,0x8a,0x89,0x87,0x84,0x82,0x80,0x7e,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,
+    0x7a,0x7a,0x7a,0x7a,0x7b,0x7d,0x80,0x83,0x86,0x88,0x8a,0x8b,0x8b,0x8a,0x88,
+    0x86,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,0x7a,
+    0x7c,0x7f,0x82,0x85,0x88,0x8a,0x8b,0x8b,0x8b,0x89,0x87,0x85,0x83,0x80,0x7e,
+    0x7d,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,0x79,0x79,0x7a,0x7b,0x7d,0x80,0x83,0x86,
+    0x89,0x8a,0x8b,0x8b,0x8a,0x88,0x86,0x84,0x81,0x7f,0x7e,0x7c,0x7b,0x7b,0x7a,
+    0x7a,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x82,0x85,0x88,0x8a,0x8b,0x8b,0x8b,
+    0x89,0x87,0x85,0x83,0x80,0x7e,0x7d,0x7c,0x7b,0x7b,0x7a,0x7a,0x79,0x78,0x78,
+    0x79,0x7a,0x7d,0x80,0x83,0x86,0x89,0x8a,0x8b,0x8b,0x8a,0x89,0x86,0x84,0x81,
+    0x7f,0x7e,0x7c,0x7b,0x7b,0x7a,0x7a,0x79,0x78,0x78,0x79,0x7a,0x7c,0x7f,0x82,
+    0x85,0x88,0x8a,0x8b,0x8c,0x8b,0x8a,0x88,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7b,
+    0x7b,0x7a,0x79,0x79,0x78,0x78,0x79,0x7a,0x7d,0x80,0x84,0x87,0x89,0x8b,0x8c,
+    0x8c,0x8b,0x89,0x87,0x84,0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x78,
+    0x78,0x78,0x79,0x7c,0x7e,0x82,0x85,0x88,0x8a,0x8b,0x8c,0x8b,0x8a,0x88,0x85,
+    0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x79,0x78,0x77,0x77,0x78,0x7a,0x7d,
+    0x80,0x83,0x86,0x89,0x8b,0x8c,0x8c,0x8a,0x89,0x87,0x84,0x82,0x80,0x7e,0x7d,
+    0x7c,0x7b,0x7a,0x79,0x78,0x77,0x77,0x77,0x79,0x7b,0x7e,0x82,0x85,0x88,0x8a,
+    0x8b,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x79,0x78,
+    0x77,0x76,0x77,0x78,0x7a,0x7d,0x80,0x83,0x86,0x89,0x8b,0x8c,0x8c,0x8b,0x89,
+    0x87,0x84,0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x78,0x77,0x77,0x77,0x79,
+    0x7c,0x7f,0x82,0x85,0x88,0x8a,0x8c,0x8c,0x8c,0x8a,0x88,0x86,0x83,0x81,0x7f,
+    0x7e,0x7c,0x7b,0x7a,0x79,0x78,0x76,0x76,0x77,0x78,0x7a,0x7d,0x80,0x83,0x87,
+    0x89,0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x82,0x80,0x7f,0x7d,0x7c,0x7b,0x7a,
+    0x78,0x77,0x76,0x76,0x77,0x79,0x7c,0x7f,0x82,0x85,0x88,0x8a,0x8c,0x8c,0x8c,
+    0x8a,0x88,0x86,0x84,0x81,0x80,0x7e,0x7d,0x7c,0x7a,0x79,0x77,0x76,0x76,0x77,
+    0x78,0x7a,0x7d,0x80,0x84,0x87,0x8a,0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x83,
+    0x81,0x7f,0x7e,0x7c,0x7b,0x79,0x78,0x76,0x76,0x76,0x77,0x79,0x7c,0x7f,0x82,
+    0x85,0x88,0x8b,0x8c,0x8c,0x8c,0x8a,0x88,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7b,
+    0x7a,0x78,0x77,0x76,0x76,0x76,0x78,0x7a,0x7d,0x80,0x84,0x87,0x89,0x8b,0x8c,
+    0x8c,0x8b,0x89,0x87,0x85,0x83,0x81,0x7f,0x7e,0x7c,0x7b,0x79,0x77,0x76,0x76,
+    0x76,0x77,0x79,0x7c,0x7f,0x82,0x86,0x89,0x8b,0x8c,0x8d,0x8c,0x8a,0x88,0x86,
+    0x84,0x82,0x80,0x7f,0x7d,0x7b,0x79,0x78,0x76,0x75,0x75,0x76,0x78,0x7a,0x7d,
+    0x80,0x84,0x87,0x8a,0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x83,0x81,0x80,0x7e,
+    0x7c,0x7a,0x78,0x77,0x76,0x75,0x76,0x77,0x79,0x7c,0x7f,0x82,0x86,0x89,0x8b,
+    0x8c,0x8d,0x8c,0x8a,0x89,0x86,0x84,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x78,0x76,
+    0x75,0x75,0x76,0x78,0x7a,0x7d,0x81,0x84,0x87,0x8a,0x8c,0x8d,0x8c,0x8b,0x8a,
+    0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x78,0x77,0x76,0x75,0x76,0x77,0x79,
+    0x7c,0x7f,0x83,0x86,0x89,0x8b,0x8d,0x8d,0x8c,0x8b,0x89,0x87,0x85,0x83,0x81,
+    0x7f,0x7d,0x7b,0x79,0x77,0x76,0x75,0x75,0x76,0x78,0x7a,0x7d,0x81,0x84,0x87,
+    0x8a,0x8c,0x8d,0x8c,0x8b,0x8a,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x78,
+    0x76,0x75,0x75,0x76,0x77,0x79,0x7c,0x7f,0x83,0x86,0x89,0x8b,0x8d,0x8d,0x8c,
+    0x8b,0x89,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x78,0x77,0x75,0x75,0x75,0x76,
+    0x78,0x7a,0x7d,0x81,0x84,0x87,0x8a,0x8c,0x8c,0x8c,0x8b,0x8a,0x88,0x86,0x84,
+    0x82,0x80,0x7e,0x7c,0x79,0x77,0x76,0x75,0x75,0x76,0x77,0x79,0x7c,0x7f,0x83,
+    0x86,0x89,0x8b,0x8c,0x8d,0x8c,0x8b,0x89,0x87,0x86,0x84,0x82,0x80,0x7d,0x7b,
+    0x79,0x77,0x76,0x75,0x75,0x76,0x78,0x7b,0x7e,0x81,0x84,0x88,0x8a,0x8c,0x8c,
+    0x8c,0x8b,0x8a,0x88,0x86,0x85,0x83,0x80,0x7e,0x7b,0x79,0x77,0x76,0x75,0x75,
+    0x75,0x77,0x79,0x7c,0x7f,0x83,0x86,0x89,0x8b,0x8c,0x8c,0x8b,0x8a,0x89,0x87,
+    0x86,0x84,0x81,0x7f,0x7c,0x7a,0x78,0x76,0x75,0x74,0x75,0x76,0x77,0x7a,0x7d,
+    0x81,0x84,0x87,0x8a,0x8b,0x8c,0x8b,0x8b,0x89,0x88,0x87,0x85,0x82,0x80,0x7d,
+    0x7b,0x79,0x77,0x75,0x74,0x74,0x75,0x76,0x79,0x7b,0x7f,0x82,0x86,0x88,0x8a,
+    0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x86,0x84,0x81,0x7f,0x7c,0x79,0x77,0x76,0x75,
+    0x74,0x74,0x75,0x77,0x7a,0x7d,0x81,0x84,0x87,0x89,0x8b,0x8b,0x8b,0x8a,0x89,
+    0x88,0x87,0x85,0x83,0x80,0x7d,0x7b,0x78,0x76,0x75,0x75,0x74,0x75,0x77,0x79,
+    0x7c,0x7f,0x83,0x86,0x88,0x8a,0x8b,0x8c,0x8b,0x8a,0x89,0x88,0x86,0x84,0x81,
+    0x7f,0x7c,0x79,0x77,0x76,0x75,0x74,0x75,0x76,0x78,0x7a,0x7d,0x81,0x84,0x87,
+    0x89,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x83,0x80,0x7d,0x7b,0x78,0x77,
+    0x75,0x75,0x75,0x75,0x77,0x79,0x7c,0x7f,0x83,0x86,0x88,0x8a,0x8b,0x8c,0x8b,
+    0x8b,0x8a,0x88,0x87,0x84,0x82,0x7f,0x7c,0x7a,0x78,0x76,0x75,0x74,0x75,0x76,
+    0x78,0x7b,0x7e,0x81,0x84,0x87,0x89,0x8a,0x8b,0x8c,0x8b,0x8b,0x89,0x88,0x86,
+    0x83,0x80,0x7e,0x7b,0x79,0x77,0x76,0x75,0x75,0x75,0x77,0x7a,0x7d,0x80,0x83,
+    0x86,0x88,0x8a,0x8b,0x8c,0x8c,0x8b,0x8a,0x89,0x87,0x84,0x82,0x7f,0x7c,0x79,
+    0x77,0x76,0x75,0x74,0x75,0x76,0x78,0x7b,0x7e,0x81,0x84,0x87,0x89,0x8a,0x8b,
+    0x8b,0x8b,0x8a,0x89,0x88,0x86,0x83,0x80,0x7d,0x7a,0x78,0x76,0x75,0x74,0x74,
+    0x75,0x77,0x79,0x7c,0x80,0x83,0x85,0x87,0x89,0x8b,0x8b,0x8b,0x8b,0x8a,0x89,
+    0x87,0x84,0x81,0x7e,0x7c,0x79,0x77,0x76,0x75,0x74,0x75,0x76,0x78,0x7b,0x7e,
+    0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8b,0x8a,0x88,0x86,0x83,0x80,0x7d,
+    0x7b,0x79,0x77,0x75,0x75,0x75,0x76,0x78,0x7a,0x7d,0x80,0x83,0x85,0x87,0x89,
+    0x8b,0x8b,0x8c,0x8b,0x8b,0x89,0x87,0x84,0x81,0x7f,0x7c,0x7a,0x77,0x76,0x75,
+    0x74,0x75,0x76,0x79,0x7b,0x7e,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8b,
+    0x8a,0x88,0x85,0x83,0x80,0x7d,0x7a,0x78,0x76,0x75,0x74,0x74,0x76,0x77,0x7a,
+    0x7c,0x7f,0x82,0x85,0x87,0x89,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x84,0x81,
+    0x7e,0x7c,0x79,0x77,0x76,0x74,0x74,0x75,0x77,0x79,0x7b,0x7e,0x80,0x83,0x85,
+    0x87,0x89,0x8a,0x8b,0x8b,0x8b,0x8a,0x88,0x85,0x82,0x7f,0x7d,0x7a,0x78,0x76,
+    0x75,0x74,0x74,0x76,0x77,0x7a,0x7c,0x7f,0x82,0x84,0x86,0x88,0x8a,0x8b,0x8c,
+    0x8b,0x8b,0x89,0x87,0x84,0x81,0x7e,0x7c,0x79,0x77,0x75,0x75,0x74,0x75,0x77,
+    0x79,0x7b,0x7e,0x80,0x83,0x85,0x87,0x89,0x8a,0x8b,0x8c,0x8b,0x8a,0x88,0x85,
+    0x82,0x80,0x7d,0x7a,0x78,0x76,0x75,0x75,0x75,0x76,0x78,0x7a,0x7d,0x7f,0x82,
+    0x84,0x86,0x88,0x8a,0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x84,0x81,0x7f,0x7c,0x7a,
+    0x77,0x76,0x75,0x75,0x76,0x77,0x79,0x7c,0x7e,0x81,0x83,0x85,0x87,0x89,0x8b,
+    0x8c,0x8c,0x8c,0x8a,0x88,0x85,0x83,0x80,0x7e,0x7b,0x78,0x77,0x76,0x75,0x76,
+    0x77,0x79,0x7b,0x7d,0x80,0x82,0x84,0x86,0x88,0x8a,0x8c,0x8c,0x8c,0x8b,0x89,
+    0x87,0x84,0x82,0x7f,0x7c,0x7a,0x78,0x76,0x76,0x76,0x77,0x78,0x7a,0x7c,0x7e,
+    0x81,0x83,0x85,0x88,0x8a,0x8b,0x8c,0x8d,0x8c,0x8a,0x88,0x86,0x83,0x81,0x7e,
+    0x7b,0x79,0x77,0x76,0x76,0x76,0x78,0x79,0x7b,0x7d,0x80,0x82,0x84,0x86,0x89,
+    0x8b,0x8c,0x8d,0x8c,0x8b,0x89,0x87,0x85,0x82,0x7f,0x7c,0x7a,0x78,0x76,0x76,
+    0x76,0x77,0x78,0x7a,0x7c,0x7e,0x80,0x82,0x85,0x87,0x89,0x8b,0x8c,0x8c,0x8b,
+    0x8a,0x88,0x86,0x83,0x80,0x7d,0x7b,0x78,0x77,0x76,0x76,0x76,0x78,0x79,0x7b,
+    0x7d,0x7f,0x81,0x83,0x86,0x88,0x8b,0x8c,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x82,
+    0x7f,0x7c,0x7a,0x78,0x77,0x76,0x77,0x77,0x79,0x7a,0x7c,0x7e,0x80,0x82,0x85,
+    0x87,0x8a,0x8b,0x8c,0x8c,0x8c,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7b,0x79,0x77,
+    0x77,0x77,0x77,0x78,0x7a,0x7b,0x7d,0x7f,0x81,0x83,0x86,0x88,0x8a,0x8c,0x8c,
+    0x8c,0x8b,0x89,0x87,0x84,0x82,0x7f,0x7c,0x7a,0x78,0x77,0x76,0x77,0x77,0x79,
+    0x7a,0x7c,0x7d,0x7f,0x82,0x84,0x87,0x89,0x8b,0x8c,0x8c,0x8b,0x8a,0x88,0x86,
+    0x83,0x80,0x7d,0x7b,0x79,0x77,0x77,0x77,0x77,0x78,0x79,0x7b,0x7c,0x7e,0x80,
+    0x83,0x86,0x88,0x8a,0x8b,0x8c,0x8b,0x8a,0x89,0x87,0x84,0x81,0x7e,0x7b,0x79,
+    0x78,0x77,0x77,0x77,0x78,0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x84,0x87,0x89,0x8a,
+    0x8b,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7b,0x79,0x78,0x77,0x77,0x78,
+    0x78,0x79,0x7a,0x7c,0x7e,0x80,0x83,0x85,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,
+    0x87,0x84,0x81,0x7e,0x7b,0x79,0x78,0x77,0x77,0x77,0x78,0x79,0x79,0x7b,0x7c,
+    0x7e,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x88,0x85,0x82,0x7f,0x7d,
+    0x7b,0x79,0x78,0x77,0x78,0x78,0x79,0x79,0x7a,0x7c,0x7d,0x80,0x82,0x85,0x87,
+    0x89,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x84,0x81,0x7e,0x7c,0x7a,0x79,0x78,0x78,
+    0x78,0x78,0x79,0x7a,0x7b,0x7c,0x7f,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8b,
+    0x8a,0x88,0x85,0x83,0x80,0x7d,0x7b,0x79,0x79,0x78,0x78,0x78,0x79,0x79,0x7a,
+    0x7b,0x7d,0x80,0x82,0x85,0x87,0x89,0x8b,0x8b,0x8b,0x8a,0x89,0x86,0x84,0x81,
+    0x7e,0x7c,0x7a,0x79,0x78,0x78,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7e,0x80,0x83,
+    0x86,0x88,0x89,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x82,0x7f,0x7d,0x7b,0x79,0x79,
+    0x78,0x78,0x78,0x78,0x78,0x79,0x7b,0x7d,0x7f,0x82,0x84,0x86,0x88,0x8a,0x8b,
+    0x8b,0x8a,0x88,0x86,0x83,0x80,0x7e,0x7b,0x7a,0x79,0x79,0x78,0x78,0x78,0x78,
+    0x79,0x7a,0x7c,0x7e,0x80,0x83,0x85,0x87,0x89,0x8a,0x8b,0x8a,0x89,0x87,0x85,
+    0x82,0x7f,0x7d,0x7b,0x7a,0x79,0x79,0x79,0x78,0x78,0x79,0x79,0x7b,0x7d,0x7f,
+    0x82,0x84,0x87,0x89,0x8a,0x8b,0x8b,0x8a,0x88,0x86,0x83,0x81,0x7e,0x7c,0x7b,
+    0x7a,0x7a,0x79,0x79,0x79,0x78,0x79,0x7a,0x7c,0x7e,0x80,0x83,0x85,0x88,0x89,
+    0x8a,0x8b,0x8a,0x89,0x87,0x85,0x82,0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x79,0x79,
+    0x78,0x79,0x79,0x7b,0x7d,0x7f,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8a,0x88,
+    0x86,0x83,0x80,0x7e,0x7d,0x7b,0x7b,0x7a,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7c,
+    0x7e,0x80,0x83,0x85,0x87,0x89,0x8a,0x8b,0x8a,0x89,0x87,0x84,0x82,0x80,0x7e,
+    0x7c,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x84,0x86,
+    0x88,0x8a,0x8b,0x8b,0x8a,0x88,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7b,0x7a,
+    0x79,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x80,0x82,0x85,0x87,0x89,0x8a,0x8a,0x8a,
+    0x89,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x79,0x79,
+    0x7b,0x7c,0x7f,0x81,0x83,0x86,0x88,0x89,0x8a,0x8a,0x89,0x87,0x85,0x83,0x81,
+    0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x80,0x82,
+    0x84,0x87,0x89,0x8a,0x8a,0x8a,0x88,0x86,0x84,0x82,0x80,0x7f,0x7e,0x7d,0x7c,
+    0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x83,0x86,0x88,0x89,0x8a,
+    0x8a,0x89,0x87,0x85,0x83,0x81,0x80,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x79,0x79,
+    0x79,0x7a,0x7b,0x7d,0x7f,0x82,0x84,0x87,0x89,0x8a,0x8a,0x89,0x88,0x86,0x84,
+    0x82,0x81,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x79,0x79,0x7a,0x7b,0x7c,0x7e,
+    0x81,0x83,0x86,0x88,0x89,0x8a,0x8a,0x88,0x87,0x85,0x83,0x81,0x80,0x7f,0x7e,
+    0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x84,0x86,0x88,
+    0x89,0x8a,0x89,0x87,0x86,0x84,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,
+    0x79,0x79,0x79,0x7a,0x7c,0x7e,0x80,0x83,0x85,0x87,0x89,0x89,0x89,0x88,0x86,
+    0x85,0x83,0x82,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7b,
+    0x7c,0x7e,0x81,0x84,0x86,0x88,0x89,0x89,0x88,0x87,0x85,0x84,0x83,0x81,0x80,
+    0x7f,0x7e,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x80,0x83,0x85,
+    0x87,0x89,0x89,0x89,0x88,0x86,0x85,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7b,
+    0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7c,0x7e,0x81,0x84,0x86,0x88,0x88,0x88,0x88,
+    0x86,0x85,0x84,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7a,0x7a,0x79,0x79,0x79,
+    0x7a,0x7b,0x7d,0x7f,0x82,0x85,0x87,0x88,0x88,0x88,0x87,0x86,0x85,0x83,0x82,
+    0x81,0x80,0x7f,0x7e,0x7d,0x7b,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x81,
+    0x83,0x86,0x87,0x88,0x88,0x87,0x86,0x85,0x84,0x83,0x82,0x81,0x80,0x7f,0x7d,
+    0x7c,0x7b,0x7a,0x79,0x79,0x79,0x79,0x7b,0x7d,0x7f,0x82,0x84,0x86,0x87,0x88,
+    0x87,0x87,0x86,0x85,0x84,0x83,0x82,0x81,0x80,0x7f,0x7d,0x7c,0x7b,0x7a,0x79,
+    0x79,0x79,0x7a,0x7c,0x7e,0x81,0x83,0x85,0x86,0x87,0x87,0x87,0x86,0x85,0x84,
+    0x84,0x83,0x82,0x81,0x7f,0x7e,0x7d,0x7c,0x7a,0x7a,0x79,0x79,0x79,0x7b,0x7d,
+    0x7f,0x82,0x84,0x86,0x87,0x87,0x87,0x87,0x86,0x85,0x84,0x83,0x83,0x82,0x80,
+    0x7f,0x7e,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x80,0x83,0x84,0x86,
+    0x87,0x87,0x86,0x86,0x85,0x84,0x84,0x83,0x82,0x81,0x80,0x7e,0x7d,0x7c,0x7b,
+    0x79,0x79,0x78,0x79,0x7b,0x7d,0x7f,0x81,0x83,0x85,0x86,0x87,0x87,0x86,0x86,
+    0x85,0x85,0x84,0x83,0x82,0x81,0x80,0x7e,0x7d,0x7c,0x7a,0x79,0x79,0x79,0x7a,
+    0x7c,0x7e,0x80,0x82,0x84,0x86,0x86,0x86,0x86,0x86,0x85,0x85,0x85,0x84,0x83,
+    0x82,0x81,0x7f,0x7e,0x7d,0x7b,0x7a,0x79,0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x83,
+    0x85,0x86,0x86,0x86,0x86,0x86,0x85,0x85,0x85,0x84,0x83,0x82,0x80,0x7f,0x7e,
+    0x7c,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x80,0x82,0x84,0x85,0x86,0x86,0x86,
+    0x86,0x86,0x86,0x85,0x84,0x83,0x82,0x81,0x80,0x7f,0x7d,0x7b,0x7a,0x79,0x79,
+    0x7a,0x7b,0x7d,0x7f,0x81,0x83,0x84,0x85,0x86,0x86,0x86,0x86,0x86,0x85,0x85,
+    0x84,0x83,0x82,0x81,0x7f,0x7e,0x7c,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x80,
+    0x81,0x83,0x84,0x85,0x85,0x85,0x85,0x86,0x85,0x85,0x84,0x84,0x83,0x82,0x80,
+    0x7e,0x7d,0x7b,0x79,0x79,0x79,0x79,0x7b,0x7c,0x7e,0x80,0x82,0x83,0x84,0x85,
+    0x85,0x85,0x85,0x86,0x85,0x85,0x84,0x83,0x83,0x81,0x80,0x7e,0x7c,0x7a,0x79,
+    0x78,0x79,0x7a,0x7b,0x7d,0x7f,0x80,0x82,0x83,0x84,0x84,0x85,0x85,0x86,0x85,
+    0x85,0x85,0x84,0x83,0x82,0x81,0x7f,0x7d,0x7b,0x79,0x79,0x79,0x79,0x7a,0x7c,
+    0x7e,0x7f,0x81,0x82,0x83,0x84,0x85,0x85,0x86,0x86,0x85,0x85,0x84,0x84,0x83,
+    0x81,0x80,0x7e,0x7c,0x7a,0x79,0x78,0x79,0x79,0x7b,0x7c,0x7e,0x80,0x81,0x82,
+    0x83,0x84,0x85,0x85,0x86,0x86,0x85,0x85,0x85,0x84,0x82,0x81,0x7f,0x7d,0x7b,
+    0x79,0x79,0x79,0x79,0x7a,0x7c,0x7d,0x7f,0x80,0x82,0x82,0x84,0x84,0x85,0x86,
+    0x86,0x86,0x85,0x85,0x84,0x83,0x82,0x80,0x7e,0x7c,0x7a,0x79,0x78,0x79,0x79,
+    0x7b,0x7c,0x7e,0x7f,0x80,0x81,0x83,0x84,0x85,0x85,0x86,0x86,0x86,0x86,0x85,
+    0x84,0x83,0x81,0x7f,0x7d,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7d,0x7e,0x80,
+    0x81,0x82,0x83,0x84,0x85,0x86,0x86,0x86,0x86,0x86,0x85,0x84,0x83,0x81,0x7e,
+    0x7c,0x7b,0x7a,0x79,0x79,0x7a,0x7b,0x7c,0x7d,0x7f,0x80,0x81,0x83,0x84,0x85,
+    0x85,0x86,0x86,0x86,0x86,0x86,0x85,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x79,0x79,
+    0x7a,0x7b,0x7c,0x7d,0x7e,0x7f,0x81,0x82,0x84,0x85,0x85,0x86,0x87,0x87,0x87,
+    0x87,0x86,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x7a,0x79,0x79,0x7a,0x7b,0x7c,0x7d,
+    0x7e,0x7f,0x81,0x82,0x84,0x85,0x85,0x86,0x87,0x87,0x87,0x87,0x86,0x84,0x82,
+    0x80,0x7e,0x7c,0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7c,0x7d,0x7e,0x80,0x81,0x83,
+    0x84,0x85,0x86,0x87,0x87,0x87,0x87,0x86,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x7a,
+    0x79,0x79,0x7a,0x7a,0x7b,0x7c,0x7d,0x7f,0x80,0x82,0x83,0x84,0x85,0x86,0x87,
+    0x87,0x87,0x87,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x7a,0x79,0x79,0x7a,0x7a,
+    0x7b,0x7c,0x7e,0x7f,0x81,0x83,0x84,0x85,0x86,0x87,0x88,0x88,0x88,0x87,0x86,
+    0x84,0x82,0x80,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,0x7f,0x80,
+    0x82,0x83,0x84,0x86,0x87,0x88,0x88,0x88,0x88,0x87,0x85,0x83,0x81,0x7f,0x7d,
+    0x7b,0x7a,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x7f,0x81,0x82,0x84,0x85,0x87,
+    0x88,0x88,0x89,0x88,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7b,0x7a,0x79,0x79,
+    0x79,0x7a,0x7b,0x7c,0x7e,0x7f,0x81,0x83,0x84,0x86,0x87,0x88,0x88,0x88,0x88,
+    0x87,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7d,
+    0x7e,0x80,0x82,0x84,0x85,0x87,0x88,0x89,0x89,0x89,0x88,0x86,0x84,0x82,0x80,
+    0x7e,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7c,0x7d,0x7f,0x81,0x82,0x84,
+    0x86,0x87,0x88,0x89,0x89,0x88,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7a,0x79,
+    0x79,0x78,0x79,0x79,0x7b,0x7c,0x7e,0x80,0x81,0x83,0x85,0x87,0x88,0x89,0x89,
+    0x89,0x88,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7b,0x7a,0x79,0x78,0x78,0x79,0x7a,
+    0x7b,0x7c,0x7e,0x80,0x82,0x84,0x86,0x87,0x88,0x89,0x89,0x89,0x87,0x86,0x84,
+    0x81,0x80,0x7e,0x7c,0x7a,0x79,0x78,0x78,0x78,0x79,0x7a,0x7b,0x7d,0x7f,0x81,
+    0x83,0x85,0x87,0x88,0x89,0x8a,0x89,0x88,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7b,
+    0x7a,0x79,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7e,0x80,0x82,0x84,0x86,0x88,0x89,
+    0x8a,0x8a,0x89,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7b,0x79,0x78,0x78,0x78,
+    0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x83,0x85,0x87,0x89,0x8a,0x8a,0x8a,0x89,0x87,
+    0x85,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x78,0x77,0x77,0x78,0x78,0x7a,0x7b,0x7d,
+    0x7f,0x82,0x84,0x86,0x88,0x8a,0x8a,0x8a,0x89,0x88,0x86,0x84,0x83,0x81,0x7e,
+    0x7c,0x7a,0x79,0x78,0x77,0x77,0x77,0x79,0x7a,0x7c,0x7e,0x80,0x82,0x85,0x87,
+    0x89,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x84,0x82,0x80,0x7d,0x7b,0x79,0x78,0x77,
+    0x77,0x77,0x78,0x79,0x7b,0x7d,0x7f,0x82,0x84,0x86,0x88,0x8a,0x8b,0x8a,0x89,
+    0x88,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x78,0x77,0x76,0x77,0x78,0x7a,
+    0x7c,0x7e,0x80,0x83,0x85,0x88,0x89,0x8a,0x8b,0x8a,0x89,0x88,0x86,0x84,0x82,
+    0x80,0x7e,0x7c,0x7a,0x78,0x77,0x76,0x76,0x77,0x79,0x7a,0x7c,0x7f,0x81,0x84,
+    0x87,0x89,0x8a,0x8b,0x8a,0x8a,0x89,0x87,0x86,0x84,0x81,0x7f,0x7d,0x7a,0x79,
+    0x77,0x76,0x76,0x77,0x78,0x79,0x7b,0x7d,0x80,0x83,0x86,0x88,0x8a,0x8b,0x8b,
+    0x8a,0x89,0x88,0x87,0x85,0x83,0x80,0x7e,0x7c,0x79,0x78,0x76,0x76,0x76,0x77,
+    0x78,0x7a,0x7c,0x7f,0x81,0x84,0x87,0x89,0x8a,0x8b,0x8b,0x8a,0x89,0x88,0x86,
+    0x84,0x82,0x7f,0x7d,0x7b,0x78,0x77,0x76,0x76,0x76,0x77,0x79,0x7b,0x7d,0x80,
+    0x83,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x83,0x81,0x7e,0x7c,
+    0x79,0x77,0x76,0x75,0x75,0x76,0x77,0x79,0x7b,0x7e,0x81,0x84,0x87,0x89,0x8a,
+    0x8b,0x8b,0x8b,0x8a,0x88,0x86,0x84,0x82,0x80,0x7d,0x7a,0x78,0x76,0x75,0x75,
+    0x75,0x76,0x78,0x7a,0x7d,0x80,0x83,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,
+    0x88,0x86,0x84,0x81,0x7e,0x7b,0x79,0x77,0x75,0x75,0x75,0x75,0x77,0x79,0x7b,
+    0x7e,0x81,0x85,0x87,0x89,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x83,0x80,
+    0x7d,0x7a,0x78,0x76,0x75,0x75,0x75,0x76,0x77,0x7a,0x7d,0x80,0x83,0x86,0x88,
+    0x8a,0x8b,0x8c,0x8c,0x8b,0x8a,0x88,0x87,0x84,0x82,0x7f,0x7b,0x79,0x77,0x75,
+    0x74,0x74,0x75,0x76,0x78,0x7b,0x7e,0x82,0x85,0x87,0x89,0x8b,0x8c,0x8c,0x8c,
+    0x8b,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7a,0x78,0x76,0x75,0x74,0x75,0x75,0x77,
+    0x7a,0x7d,0x80,0x83,0x86,0x89,0x8a,0x8c,0x8c,0x8c,0x8c,0x8b,0x89,0x87,0x85,
+    0x82,0x7f,0x7c,0x79,0x77,0x75,0x74,0x74,0x74,0x76,0x78,0x7b,0x7e,0x82,0x84,
+    0x87,0x89,0x8b,0x8c,0x8c,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7a,0x78,
+    0x76,0x74,0x74,0x74,0x75,0x77,0x7a,0x7d,0x80,0x83,0x86,0x88,0x8a,0x8b,0x8c,
+    0x8c,0x8c,0x8b,0x89,0x88,0x85,0x82,0x7e,0x7b,0x79,0x76,0x74,0x73,0x73,0x74,
+    0x75,0x78,0x7b,0x7e,0x81,0x84,0x87,0x89,0x8b,0x8c,0x8c,0x8c,0x8c,0x8a,0x89,
+    0x86,0x83,0x80,0x7d,0x7a,0x77,0x75,0x73,0x73,0x73,0x74,0x76,0x79,0x7d,0x80,
+    0x83,0x86,0x88,0x8a,0x8b,0x8c,0x8c,0x8c,0x8b,0x8a,0x88,0x85,0x82,0x7f,0x7b,
+    0x79,0x76,0x74,0x73,0x72,0x73,0x75,0x78,0x7b,0x7e,0x81,0x84,0x87,0x89,0x8b,
+    0x8c,0x8d,0x8d,0x8c,0x8b,0x89,0x87,0x84,0x80,0x7d,0x7a,0x77,0x75,0x73,0x72,
+    0x73,0x74,0x76,0x79,0x7c,0x80,0x83,0x86,0x88,0x8a,0x8c,0x8d,0x8d,0x8d,0x8c,
+    0x8b,0x88,0x85,0x82,0x7f,0x7c,0x78,0x76,0x73,0x72,0x72,0x73,0x75,0x78,0x7b,
+    0x7e,0x81,0x84,0x87,0x89,0x8b,0x8c,0x8d,0x8d,0x8d,0x8c,0x8a,0x87,0x84,0x81,
+    0x7d,0x7a,0x77,0x74,0x73,0x72,0x72,0x74,0x76,0x79,0x7c,0x80,0x83,0x86,0x88,
+    0x8a,0x8c,0x8d,0x8e,0x8e,0x8d,0x8b,0x89,0x86,0x82,0x7f,0x7b,0x78,0x75,0x73,
+    0x72,0x72,0x73,0x75,0x77,0x7a,0x7e,0x81,0x84,0x87,0x89,0x8b,0x8d,0x8e,0x8e,
+    0x8d,0x8c,0x8a,0x87,0x84,0x81,0x7d,0x7a,0x76,0x74,0x72,0x71,0x72,0x74,0x76,
+    0x79,0x7c,0x80,0x83,0x86,0x88,0x8b,0x8c,0x8e,0x8e,0x8e,0x8d,0x8b,0x89,0x86,
+    0x83,0x7f,0x7b,0x78,0x75,0x73,0x71,0x71,0x72,0x75,0x77,0x7a,0x7e,0x81,0x84,
+    0x87,0x89,0x8b,0x8d,0x8e,0x8e,0x8e,0x8c,0x8a,0x88,0x84,0x81,0x7d,0x79,0x76,
+    0x73,0x72,0x71,0x72,0x73,0x76,0x79,0x7c,0x7f,0x83,0x86,0x88,0x8b,0x8d,0x8e,
+    0x8f,0x8e,0x8d,0x8c,0x89,0x86,0x83,0x7f,0x7b,0x78,0x75,0x72,0x71,0x71,0x72,
+    0x74,0x77,0x7a,0x7e,0x81,0x84,0x87,0x89,0x8c,0x8d,0x8e,0x8e,0x8e,0x8d,0x8b,
+    0x88,0x85,0x81,0x7d,0x79,0x75,0x73,0x71,0x71,0x71,0x73,0x75,0x79,0x7c,0x7f,
+    0x82,0x85,0x88,0x8b,0x8d,0x8e,0x8f,0x8f,0x8e,0x8c,0x8a,0x87,0x83,0x7f,0x7b,
+    0x77,0x74,0x72,0x71,0x71,0x72,0x74,0x77,0x7a,0x7d,0x81,0x84,0x87,0x8a,0x8c,
+    0x8e,0x8e,0x8f,0x8e,0x8d,0x8b,0x88,0x85,0x81,0x7c,0x78,0x75,0x72,0x71,0x70,
+    0x71,0x73,0x75,0x78,0x7b,0x7f,0x82,0x85,0x88,0x8b,0x8d,0x8e,0x8f,0x8f,0x8e,
+    0x8c,0x8a,0x87,0x83,0x7f,0x7a,0x77,0x74,0x71,0x70,0x71,0x72,0x74,0x77,0x7a,
+    0x7d,0x80,0x84,0x87,0x8a,0x8c,0x8e,0x8f,0x8f,0x8f,0x8e,0x8c,0x89,0x85,0x81,
+    0x7c,0x78,0x75,0x72,0x71,0x70,0x71,0x73,0x75,0x78,0x7b,0x7f,0x82,0x85,0x88,
+    0x8b,0x8d,0x8e,0x8f,0x8f,0x8e,0x8d,0x8a,0x87,0x83,0x7e,0x7a,0x76,0x73,0x71,
+    0x70,0x70,0x72,0x74,0x76,0x79,0x7d,0x80,0x84,0x87,0x8a,0x8c,0x8e,0x8f,0x90,
+    0x8f,0x8e,0x8c,0x89,0x85,0x81,0x7c,0x78,0x75,0x72,0x71,0x70,0x71,0x73,0x75,
+    0x78,0x7b,0x7f,0x82,0x86,0x89,0x8b,0x8d,0x8f,0x90,0x90,0x8f,0x8d,0x8b,0x87,
+    0x83,0x7e,0x7a,0x76,0x73,0x71,0x70,0x71,0x72,0x74,0x76,0x79,0x7d,0x80,0x84,
+    0x87,0x8a,0x8c,0x8e,0x90,0x90,0x90,0x8e,0x8c,0x89,0x85,0x81,0x7c,0x78,0x74,
+    0x72,0x71,0x70,0x71,0x73,0x75,0x78,0x7b,0x7f,0x82,0x86,0x89,0x8b,0x8e,0x8f,
+    0x90,0x90,0x90,0x8e,0x8b,0x87,0x83,0x7e,0x7a,0x76,0x73,0x71,0x70,0x71,0x72,
+    0x74,0x76,0x79,0x7d,0x80,0x84,0x87,0x8a,0x8d,0x8f,0x90,0x91,0x90,0x8f,0x8d,
+    0x89,0x85,0x81,0x7c,0x78,0x74,0x72,0x71,0x70,0x71,0x72,0x75,0x77,0x7b,0x7e,
+    0x82,0x86,0x89,0x8b,0x8e,0x90,0x91,0x91,0x90,0x8e,0x8b,0x87,0x83,0x7e,0x79,
+    0x75,0x73,0x71,0x70,0x70,0x71,0x73,0x76,0x79,0x7d,0x80,0x84,0x87,0x8a,0x8d,
+    0x8f,0x91,0x91,0x91,0x8f,0x8d,0x89,0x85,0x80,0x7c,0x78,0x74,0x72,0x71,0x70,
+    0x71,0x72,0x74,0x77,0x7b,0x7e,0x82,0x86,0x89,0x8c,0x8e,0x90,0x91,0x91,0x90,
+    0x8e,0x8b,0x87,0x82,0x7e,0x79,0x75,0x73,0x71,0x70,0x70,0x71,0x73,0x76,0x79,
+    0x7c,0x80,0x84,0x87,0x8a,0x8d,0x8f,0x91,0x91,0x91,0x8f,0x8d,0x89,0x85,0x80,
+    0x7b,0x77,0x74,0x72,0x71,0x70,0x71,0x72,0x74,0x77,0x7b,0x7e,0x82,0x86,0x89,
+    0x8c,0x8f,0x90,0x91,0x91,0x91,0x8e,0x8b,0x87,0x82,0x7d,0x79,0x76,0x73,0x71,
+    0x70,0x70,0x71,0x73,0x76,0x79,0x7c,0x80,0x84,0x87,0x8a,0x8d,0x90,0x91,0x92,
+    0x91,0x90,0x8d,0x89,0x84,0x80,0x7b,0x77,0x74,0x72,0x70,0x70,0x70,0x72,0x74,
+    0x77,0x7a,0x7e,0x82,0x85,0x89,0x8c,0x8f,0x90,0x92,0x92,0x91,0x8e,0x8b,0x87,
+    0x82,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x75,0x79,0x7c,0x80,0x84,
+    0x87,0x8a,0x8d,0x90,0x91,0x92,0x91,0x90,0x8d,0x89,0x84,0x7f,0x7b,0x77,0x74,
+    0x72,0x70,0x70,0x70,0x72,0x74,0x77,0x7a,0x7e,0x82,0x85,0x89,0x8c,0x8f,0x91,
+    0x92,0x92,0x91,0x8e,0x8b,0x86,0x82,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,
+    0x73,0x76,0x79,0x7c,0x80,0x84,0x88,0x8b,0x8e,0x90,0x92,0x93,0x92,0x90,0x8d,
+    0x89,0x84,0x80,0x7b,0x78,0x74,0x72,0x70,0x70,0x70,0x72,0x74,0x77,0x7a,0x7e,
+    0x82,0x86,0x89,0x8c,0x8f,0x91,0x92,0x92,0x91,0x8e,0x8b,0x86,0x82,0x7d,0x79,
+    0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x75,0x78,0x7c,0x80,0x84,0x87,0x8b,0x8e,
+    0x90,0x92,0x92,0x92,0x90,0x8c,0x88,0x84,0x7f,0x7b,0x77,0x74,0x71,0x70,0x6f,
+    0x70,0x71,0x73,0x76,0x7a,0x7e,0x81,0x85,0x89,0x8c,0x8f,0x91,0x92,0x92,0x91,
+    0x8e,0x8a,0x86,0x82,0x7d,0x79,0x75,0x73,0x71,0x70,0x70,0x71,0x73,0x75,0x78,
+    0x7c,0x80,0x83,0x87,0x8b,0x8e,0x91,0x92,0x93,0x92,0x8f,0x8c,0x88,0x84,0x7f,
+    0x7b,0x77,0x74,0x72,0x70,0x70,0x70,0x71,0x74,0x77,0x7a,0x7e,0x81,0x85,0x89,
+    0x8c,0x90,0x92,0x93,0x92,0x90,0x8e,0x8a,0x86,0x82,0x7d,0x79,0x76,0x73,0x71,
+    0x70,0x70,0x71,0x73,0x75,0x79,0x7c,0x80,0x84,0x87,0x8b,0x8e,0x91,0x93,0x93,
+    0x91,0x8f,0x8c,0x88,0x84,0x7f,0x7b,0x77,0x74,0x72,0x70,0x70,0x70,0x71,0x74,
+    0x77,0x7a,0x7e,0x81,0x85,0x89,0x8d,0x90,0x92,0x93,0x92,0x90,0x8e,0x8a,0x86,
+    0x82,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x75,0x78,0x7c,0x80,0x83,
+    0x88,0x8b,0x8f,0x91,0x93,0x93,0x91,0x8f,0x8c,0x88,0x84,0x7f,0x7b,0x77,0x74,
+    0x72,0x70,0x70,0x70,0x72,0x74,0x77,0x7a,0x7e,0x81,0x86,0x8a,0x8d,0x91,0x92,
+    0x93,0x92,0x90,0x8d,0x8a,0x86,0x81,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,
+    0x73,0x75,0x78,0x7c,0x7f,0x83,0x88,0x8c,0x8f,0x92,0x93,0x92,0x91,0x8f,0x8c,
+    0x88,0x83,0x7f,0x7b,0x77,0x74,0x72,0x70,0x70,0x70,0x72,0x74,0x76,0x7a,0x7d,
+    0x81,0x86,0x8a,0x8e,0x90,0x92,0x92,0x92,0x90,0x8d,0x8a,0x86,0x81,0x7d,0x79,
+    0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x75,0x78,0x7b,0x7f,0x84,0x88,0x8c,0x8f,
+    0x91,0x92,0x92,0x91,0x8f,0x8b,0x87,0x83,0x7f,0x7b,0x77,0x74,0x72,0x70,0x70,
+    0x70,0x72,0x74,0x76,0x79,0x7d,0x81,0x86,0x8a,0x8e,0x90,0x92,0x92,0x92,0x90,
+    0x8d,0x89,0x85,0x81,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,0x72,0x75,0x78,
+    0x7b,0x7f,0x84,0x88,0x8c,0x8f,0x91,0x92,0x92,0x91,0x8e,0x8b,0x87,0x83,0x7f,
+    0x7b,0x77,0x74,0x72,0x70,0x70,0x70,0x71,0x73,0x76,0x79,0x7d,0x81,0x86,0x8a,
+    0x8d,0x90,0x92,0x92,0x91,0x8f,0x8c,0x89,0x85,0x81,0x7d,0x79,0x76,0x73,0x71,
+    0x70,0x70,0x71,0x72,0x75,0x78,0x7b,0x80,0x84,0x88,0x8c,0x8f,0x91,0x92,0x92,
+    0x90,0x8e,0x8b,0x87,0x83,0x7f,0x7b,0x77,0x74,0x72,0x71,0x70,0x70,0x72,0x73,
+    0x76,0x7a,0x7e,0x82,0x86,0x8b,0x8e,0x91,0x92,0x92,0x91,0x8f,0x8c,0x89,0x85,
+    0x81,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,0x72,0x75,0x78,0x7c,0x80,0x84,
+    0x89,0x8c,0x90,0x91,0x92,0x92,0x90,0x8e,0x8b,0x87,0x83,0x7f,0x7b,0x78,0x75,
+    0x72,0x71,0x70,0x71,0x71,0x73,0x76,0x7a,0x7e,0x82,0x87,0x8b,0x8e,0x90,0x92,
+    0x92,0x91,0x8f,0x8c,0x89,0x85,0x81,0x7d,0x79,0x76,0x73,0x72,0x71,0x70,0x71,
+    0x72,0x75,0x78,0x7c,0x80,0x84,0x89,0x8c,0x8f,0x91,0x92,0x91,0x90,0x8e,0x8a,
+    0x87,0x83,0x7f,0x7b,0x78,0x75,0x73,0x71,0x70,0x70,0x71,0x73,0x76,0x7a,0x7e,
+    0x82,0x87,0x8b,0x8e,0x90,0x91,0x91,0x90,0x8f,0x8c,0x89,0x85,0x81,0x7d,0x79,
+    0x76,0x74,0x72,0x70,0x70,0x71,0x72,0x75,0x78,0x7c,0x80,0x84,0x89,0x8c,0x8f,
+    0x91,0x91,0x91,0x8f,0x8d,0x8a,0x87,0x83,0x7f,0x7b,0x78,0x75,0x73,0x71,0x70,
+    0x70,0x71,0x73,0x76,0x7a,0x7e,0x82,0x87,0x8b,0x8e,0x90,0x91,0x91,0x90,0x8e,
+    0x8c,0x88,0x85,0x81,0x7d,0x7a,0x77,0x74,0x72,0x71,0x70,0x71,0x72,0x75,0x78,
+    0x7c,0x80,0x85,0x89,0x8d,0x8f,0x91,0x91,0x91,0x8f,0x8d,0x8a,0x87,0x83,0x7f,
+    0x7c,0x78,0x76,0x73,0x72,0x71,0x71,0x72,0x74,0x77,0x7a,0x7f,0x83,0x87,0x8b,
+    0x8e,0x90,0x91,0x91,0x90,0x8e,0x8c,0x88,0x85,0x81,0x7e,0x7a,0x77,0x75,0x72,
+    0x71,0x71,0x71,0x73,0x75,0x79,0x7d,0x81,0x85,0x89,0x8d,0x8f,0x90,0x91,0x91,
+    0x8f,0x8d,0x8a,0x86,0x83,0x7f,0x7c,0x79,0x76,0x73,0x72,0x71,0x71,0x72,0x74,
+    0x77,0x7b,0x7f,0x84,0x88,0x8b,0x8e,0x90,0x91,0x91,0x90,0x8e,0x8b,0x88,0x85,
+    0x81,0x7e,0x7a,0x77,0x75,0x72,0x71,0x71,0x71,0x73,0x75,0x79,0x7d,0x81,0x85,
+    0x89,0x8c,0x8f,0x90,0x91,0x90,0x8f,0x8c,0x89,0x86,0x83,0x7f,0x7c,0x79,0x76,
+    0x74,0x72,0x71,0x71,0x72,0x74,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8d,0x8f,0x90,
+    0x90,0x8f,0x8d,0x8b,0x88,0x85,0x81,0x7e,0x7b,0x78,0x75,0x73,0x71,0x71,0x71,
+    0x73,0x76,0x79,0x7d,0x81,0x85,0x89,0x8c,0x8e,0x90,0x90,0x90,0x8e,0x8c,0x89,
+    0x86,0x83,0x80,0x7c,0x79,0x76,0x74,0x72,0x71,0x71,0x72,0x74,0x77,0x7b,0x7f,
+    0x84,0x87,0x8a,0x8d,0x8f,0x90,0x90,0x8f,0x8d,0x8a,0x87,0x84,0x81,0x7e,0x7b,
+    0x78,0x75,0x73,0x71,0x71,0x71,0x73,0x76,0x7a,0x7e,0x82,0x85,0x89,0x8c,0x8e,
+    0x90,0x90,0x8f,0x8e,0x8b,0x89,0x86,0x83,0x80,0x7c,0x79,0x76,0x74,0x72,0x71,
+    0x71,0x72,0x75,0x78,0x7c,0x80,0x84,0x87,0x8a,0x8d,0x8f,0x90,0x8f,0x8e,0x8c,
+    0x8a,0x87,0x84,0x81,0x7e,0x7b,0x78,0x75,0x73,0x72,0x71,0x72,0x74,0x76,0x7a,
+    0x7e,0x82,0x85,0x89,0x8c,0x8e,0x8f,0x8f,0x8e,0x8d,0x8b,0x89,0x86,0x83,0x80,
+    0x7c,0x79,0x76,0x74,0x72,0x71,0x71,0x73,0x75,0x78,0x7c,0x80,0x83,0x87,0x8a,
+    0x8d,0x8e,0x8f,0x8f,0x8d,0x8c,0x8a,0x87,0x84,0x81,0x7e,0x7b,0x78,0x75,0x73,
+    0x72,0x71,0x72,0x74,0x77,0x7a,0x7e,0x81,0x85,0x89,0x8b,0x8d,0x8e,0x8e,0x8e,
+    0x8c,0x8b,0x88,0x86,0x83,0x80,0x7d,0x79,0x77,0x74,0x72,0x71,0x72,0x73,0x76,
+    0x79,0x7c,0x80,0x84,0x87,0x8a,0x8d,0x8e,0x8e,0x8e,0x8d,0x8c,0x8a,0x87,0x84,
+    0x81,0x7e,0x7b,0x78,0x76,0x73,0x72,0x72,0x73,0x75,0x77,0x7b,0x7e,0x82,0x85,
+    0x89,0x8b,0x8d,0x8e,0x8e,0x8d,0x8c,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7a,0x77,
+    0x74,0x72,0x72,0x72,0x74,0x76,0x79,0x7c,0x80,0x84,0x87,0x8a,0x8c,0x8d,0x8e,
+    0x8d,0x8d,0x8b,0x89,0x87,0x84,0x82,0x7e,0x7b,0x78,0x76,0x73,0x72,0x72,0x73,
+    0x75,0x78,0x7b,0x7e,0x82,0x85,0x89,0x8b,0x8c,0x8d,0x8d,0x8d,0x8c,0x8a,0x88,
+    0x86,0x83,0x80,0x7d,0x7a,0x77,0x74,0x73,0x72,0x73,0x74,0x77,0x79,0x7d,0x80,
+    0x84,0x87,0x8a,0x8c,0x8d,0x8d,0x8d,0x8c,0x8b,0x89,0x87,0x84,0x82,0x7f,0x7c,
+    0x78,0x76,0x74,0x73,0x73,0x74,0x76,0x78,0x7b,0x7f,0x82,0x86,0x89,0x8b,0x8c,
+    0x8d,0x8d,0x8d,0x8b,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7a,0x77,0x75,0x74,0x73,
+    0x74,0x75,0x77,0x7a,0x7d,0x81,0x84,0x87,0x8a,0x8b,0x8c,0x8d,0x8d,0x8c,0x8b,
+    0x89,0x87,0x85,0x82,0x7f,0x7c,0x79,0x76,0x74,0x73,0x74,0x75,0x76,0x79,0x7c,
+    0x7f,0x83,0x86,0x88,0x8a,0x8c,0x8c,0x8c,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x80,
+    0x7d,0x7a,0x77,0x75,0x74,0x74,0x74,0x75,0x77,0x7a,0x7e,0x81,0x84,0x87,0x89,
+    0x8b,0x8c,0x8c,0x8c,0x8b,0x8a,0x89,0x87,0x85,0x82,0x7f,0x7b,0x79,0x76,0x75,
+    0x74,0x74,0x75,0x77,0x79,0x7c,0x7f,0x83,0x85,0x88,0x8a,0x8b,0x8c,0x8c,0x8b,
+    0x8a,0x89,0x88,0x86,0x83,0x80,0x7d,0x7a,0x77,0x76,0x74,0x74,0x74,0x76,0x78,
+    0x7a,0x7e,0x81,0x84,0x86,0x89,0x8a,0x8b,0x8b,0x8b,0x8a,0x8a,0x88,0x87,0x84,
+    0x82,0x7e,0x7b,0x79,0x77,0x75,0x74,0x74,0x75,0x77,0x79,0x7c,0x7f,0x82,0x85,
+    0x87,0x89,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,0x88,0x86,0x83,0x80,0x7d,0x7a,0x78,
+    0x76,0x75,0x75,0x75,0x76,0x78,0x7b,0x7e,0x81,0x84,0x86,0x88,0x89,0x8a,0x8a,
+    0x8a,0x8a,0x89,0x88,0x86,0x84,0x81,0x7e,0x7c,0x79,0x77,0x76,0x75,0x75,0x76,
+    0x78,0x7a,0x7d,0x7f,0x82,0x85,0x87,0x89,0x8a,0x8a,0x8a,0x8a,0x89,0x89,0x87,
+    0x85,0x83,0x80,0x7d,0x7a,0x78,0x76,0x75,0x75,0x75,0x77,0x79,0x7b,0x7e,0x81,
+    0x84,0x86,0x88,0x89,0x8a,0x8a,0x8a,0x8a,0x89,0x88,0x86,0x84,0x81,0x7f,0x7c,
+    0x7a,0x78,0x76,0x76,0x76,0x77,0x78,0x7b,0x7d,0x80,0x82,0x85,0x87,0x88,0x89,
+    0x89,0x8a,0x8a,0x89,0x89,0x87,0x85,0x82,0x80,0x7d,0x7b,0x78,0x77,0x76,0x76,
+    0x76,0x78,0x79,0x7c,0x7e,0x81,0x83,0x86,0x87,0x88,0x89,0x89,0x89,0x89,0x89,
+    0x88,0x86,0x84,0x81,0x7f,0x7c,0x7a,0x78,0x77,0x76,0x76,0x77,0x79,0x7b,0x7d,
+    0x80,0x82,0x85,0x86,0x87,0x88,0x89,0x89,0x89,0x89,0x88,0x87,0x85,0x82,0x80,
+    0x7d,0x7b,0x79,0x77,0x76,0x76,0x77,0x78,0x7a,0x7c,0x7e,0x81,0x83,0x85,0x86,
+    0x87,0x88,0x88,0x89,0x89,0x88,0x87,0x85,0x83,0x81,0x7e,0x7c,0x7a,0x78,0x77,
+    0x77,0x77,0x78,0x79,0x7b,0x7e,0x80,0x82,0x84,0x85,0x87,0x87,0x88,0x89,0x89,
+    0x89,0x88,0x86,0x84,0x82,0x80,0x7d,0x7b,0x79,0x78,0x77,0x77,0x78,0x79,0x7b,
+    0x7d,0x7f,0x81,0x83,0x85,0x86,0x87,0x88,0x88,0x89,0x89,0x88,0x87,0x85,0x83,
+    0x81,0x7f,0x7c,0x7a,0x79,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7e,0x80,0x82,0x84,
+    0x85,0x86,0x87,0x88,0x88,0x88,0x88,0x87,0x86,0x84,0x82,0x80,0x7d,0x7b,0x7a,
+    0x78,0x78,0x78,0x78,0x79,0x7b,0x7d,0x7f,0x81,0x83,0x84,0x85,0x86,0x87,0x88,
+    0x88,0x88,0x88,0x87,0x85,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x79,0x78,0x79,0x79,
+    0x7b,0x7d,0x7f,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x88,0x88,0x88,0x87,0x86,
+    0x84,0x82,0x80,0x7e,0x7c,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7c,0x7e,0x7f,0x81,
+    0x82,0x83,0x85,0x86,0x86,0x87,0x87,0x87,0x87,0x86,0x85,0x83,0x81,0x7f,0x7d,
+    0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7d,0x7f,0x80,0x81,0x83,0x84,0x85,0x86,
+    0x87,0x87,0x87,0x87,0x86,0x85,0x84,0x82,0x80,0x7e,0x7c,0x7b,0x7a,0x79,0x79,
+    0x7a,0x7b,0x7d,0x7e,0x7f,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x87,0x87,0x87,
+    0x86,0x84,0x83,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x7f,
+    0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x87,0x87,0x87,0x86,0x85,0x83,0x82,0x80,
+    0x7e,0x7d,0x7c,0x7b,0x7a,0x7a,0x7b,0x7c,0x7d,0x7e,0x80,0x80,0x82,0x83,0x84,
+    0x84,0x85,0x86,0x86,0x87,0x86,0x85,0x84,0x82,0x81,0x7f,0x7e,0x7c,0x7b,0x7b,
+    0x7b,0x7b,0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x85,0x86,0x86,
+    0x86,0x85,0x84,0x83,0x82,0x80,0x7f,0x7d,0x7c,0x7b,0x7b,0x7b,0x7c,0x7d,0x7e,
+    0x7f,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x85,0x86,0x86,0x85,0x84,0x83,0x82,
+    0x81,0x7f,0x7e,0x7c,0x7c,0x7b,0x7b,0x7c,0x7d,0x7e,0x7e,0x7f,0x80,0x81,0x82,
+    0x82,0x83,0x84,0x85,0x86,0x86,0x85,0x85,0x84,0x83,0x82,0x80,0x7f,0x7d,0x7c,
+    0x7c,0x7c,0x7c,0x7d,0x7e,0x7e,0x7f,0x80,0x80,0x81,0x82,0x82,0x83,0x84,0x85,
+    0x86,0x85,0x85,0x84,0x83,0x82,0x81,0x80,0x7e,0x7d,0x7c,0x7c,0x7d,0x7d,0x7e,
+    0x7e,0x7f,0x7f,0x80,0x81,0x81,0x82,0x83,0x84,0x84,0x85,0x85,0x85,0x84,0x83,
+    0x83,0x82,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,0x7f,0x7f,0x80,0x80,
+    0x80,0x81,0x82,0x83,0x84,0x84,0x85,0x85,0x84,0x84,0x83,0x82,0x81,0x80,0x7f,
+    0x7e,0x7d,0x7d,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x80,0x80,0x81,0x81,0x82,0x83,
+    0x84,0x84,0x84,0x84,0x84,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,
+    0x7e,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x81,0x82,0x83,0x84,0x84,0x84,0x84,
+    0x83,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,
+    0x7f,0x7f,0x80,0x81,0x81,0x82,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x81,0x80,
+    0x7f,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x81,
+    0x82,0x82,0x83,0x83,0x83,0x83,0x83,0x82,0x81,0x80,0x80,0x7f,0x7f,0x7f,0x7f,
+    0x7f,0x7f,0x7f,0x80,0x80,0x7f,0x7f,0x7f,0x80,0x80,0x81,0x82,0x82,0x82,0x83,
+    0x83,0x83,0x82,0x82,0x81,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x80,
+    0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x81,0x81,
+    0x80,0x80,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,
+    0x80,0x80,0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x81,0x80,0x80,0x80,0x80,0x80,
+    0x80,0x80,0x81,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x81,
+    0x81,0x82,0x82,0x82,0x81,0x81,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x81,
+    0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x81,0x81,0x82,0x82,0x82,0x81,
+    0x81,0x80,0x80,0x81,0x81,0x81,0x81,0x82,0x82,0x81,0x81,0x80,0x80,0x7f,0x7f,
+    0x7f,0x7f,0x7f,0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
+    0x81,0x82,0x82,0x82,0x82,0x82,0x81,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,
+    0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x82,0x82,0x83,0x83,0x83,
+    0x82,0x81,0x81,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x81,0x81,0x81,
+    0x81,0x81,0x81,0x81,0x81,0x82,0x82,0x83,0x83,0x83,0x83,0x82,0x81,0x81,0x80,
+    0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x81,0x80,0x80,0x80,0x81,0x81,
+    0x82,0x83,0x83,0x84,0x84,0x83,0x83,0x82,0x81,0x80,0x80,0x7f,0x7f,0x7e,0x7e,
+    0x7e,0x7f,0x7f,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x82,0x82,0x83,0x84,0x84,
+    0x84,0x83,0x82,0x81,0x81,0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,
+    0x7f,0x7f,0x80,0x80,0x80,0x81,0x82,0x83,0x84,0x84,0x84,0x84,0x83,0x82,0x81,
+    0x80,0x7f,0x7e,0x7e,0x7d,0x7d,0x7e,0x7e,0x7e,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,
+    0x81,0x82,0x83,0x84,0x84,0x85,0x84,0x84,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,
+    0x7d,0x7d,0x7d,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x81,0x82,0x83,0x84,
+    0x85,0x85,0x84,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,
+    0x7d,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x82,0x83,0x84,0x85,0x85,0x85,0x84,0x83,
+    0x82,0x81,0x7f,0x7e,0x7d,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,0x7d,0x7d,0x7e,0x7e,
+    0x7f,0x80,0x81,0x83,0x84,0x85,0x85,0x85,0x85,0x84,0x83,0x82,0x80,0x7f,0x7e,
+    0x7d,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x83,0x84,
+    0x85,0x86,0x86,0x85,0x85,0x84,0x82,0x81,0x80,0x7e,0x7d,0x7c,0x7c,0x7c,0x7c,
+    0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x80,0x82,0x84,0x85,0x86,0x86,0x86,0x85,
+    0x84,0x83,0x82,0x80,0x7f,0x7d,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,
+    0x7d,0x7e,0x80,0x82,0x83,0x85,0x86,0x87,0x87,0x86,0x86,0x85,0x83,0x82,0x80,
+    0x7f,0x7d,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x81,0x83,
+    0x85,0x86,0x87,0x87,0x87,0x86,0x85,0x84,0x82,0x81,0x7f,0x7e,0x7d,0x7c,0x7b,
+    0x7b,0x7b,0x7b,0x7b,0x7c,0x7c,0x7d,0x7e,0x80,0x82,0x84,0x86,0x87,0x87,0x88,
+    0x87,0x86,0x85,0x83,0x82,0x80,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,
+    0x7b,0x7c,0x7d,0x7f,0x81,0x83,0x85,0x87,0x88,0x88,0x88,0x87,0x86,0x84,0x82,
+    0x81,0x7f,0x7d,0x7c,0x7b,0x7b,0x7b,0x7a,0x7a,0x7a,0x7b,0x7b,0x7d,0x7e,0x80,
+    0x83,0x85,0x86,0x88,0x88,0x88,0x88,0x87,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7c,
+    0x7b,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x80,0x82,0x84,0x86,0x88,0x89,
+    0x89,0x89,0x88,0x87,0x85,0x83,0x81,0x7f,0x7e,0x7c,0x7b,0x7b,0x7a,0x7a,0x7a,
+    0x7a,0x7a,0x7b,0x7d,0x7f,0x81,0x83,0x86,0x87,0x89,0x89,0x8a,0x89,0x88,0x86,
+    0x84,0x82,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x79,0x79,0x79,0x7a,0x7c,0x7e,
+    0x80,0x82,0x84,0x87,0x88,0x89,0x8a,0x8a,0x89,0x87,0x85,0x83,0x81,0x7f,0x7d,
+    0x7c,0x7b,0x7a,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7c,0x7f,0x81,0x83,0x86,0x88,
+    0x89,0x8a,0x8a,0x8a,0x88,0x87,0x85,0x83,0x80,0x7e,0x7d,0x7b,0x7a,0x7a,0x79,
+    0x78,0x78,0x79,0x7a,0x7b,0x7e,0x80,0x82,0x85,0x87,0x89,0x8a,0x8a,0x8a,0x89,
+    0x88,0x86,0x84,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x79,0x78,0x78,0x78,0x79,0x7a,
+    0x7c,0x7f,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x83,0x81,
+    0x7f,0x7d,0x7b,0x7a,0x79,0x78,0x78,0x77,0x78,0x79,0x7b,0x7e,0x80,0x83,0x86,
+    0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x84,0x82,0x7f,0x7d,0x7c,0x7a,0x79,
+    0x78,0x77,0x77,0x77,0x78,0x7a,0x7c,0x7f,0x82,0x84,0x87,0x89,0x8b,0x8b,0x8b,
+    0x8b,0x8a,0x88,0x85,0x83,0x80,0x7e,0x7c,0x7b,0x7a,0x78,0x77,0x76,0x76,0x77,
+    0x79,0x7b,0x7d,0x80,0x83,0x86,0x88,0x8a,0x8b,0x8c,0x8b,0x8a,0x89,0x87,0x84,
+    0x82,0x7f,0x7d,0x7c,0x7a,0x78,0x77,0x76,0x76,0x76,0x78,0x79,0x7c,0x7f,0x82,
+    0x85,0x88,0x8a,0x8b,0x8c,0x8c,0x8c,0x8a,0x88,0x86,0x83,0x81,0x7e,0x7d,0x7b,
+    0x79,0x77,0x76,0x76,0x76,0x77,0x78,0x7b,0x7d,0x80,0x83,0x86,0x89,0x8b,0x8c,
+    0x8c,0x8c,0x8b,0x89,0x87,0x84,0x82,0x80,0x7d,0x7b,0x79,0x78,0x76,0x75,0x75,
+    0x76,0x77,0x79,0x7c,0x7f,0x82,0x85,0x88,0x8a,0x8c,0x8d,0x8d,0x8c,0x8b,0x89,
+    0x86,0x83,0x81,0x7f,0x7c,0x7a,0x78,0x77,0x75,0x75,0x75,0x76,0x78,0x7a,0x7d,
+    0x80,0x84,0x87,0x89,0x8b,0x8d,0x8d,0x8d,0x8c,0x89,0x87,0x84,0x82,0x7f,0x7d,
+    0x7b,0x79,0x77,0x75,0x74,0x74,0x75,0x76,0x79,0x7c,0x7f,0x82,0x86,0x88,0x8b,
+    0x8c,0x8d,0x8d,0x8d,0x8b,0x89,0x86,0x84,0x81,0x7f,0x7c,0x7a,0x77,0x76,0x74,
+    0x74,0x74,0x75,0x77,0x7a,0x7d,0x81,0x84,0x87,0x8a,0x8c,0x8d,0x8e,0x8d,0x8c,
+    0x8a,0x87,0x85,0x82,0x80,0x7d,0x7b,0x78,0x76,0x75,0x74,0x74,0x75,0x76,0x79,
+    0x7c,0x7f,0x83,0x86,0x89,0x8b,0x8d,0x8e,0x8e,0x8d,0x8b,0x89,0x87,0x84,0x81,
+    0x7f,0x7c,0x79,0x77,0x75,0x74,0x73,0x74,0x75,0x77,0x7a,0x7d,0x81,0x84,0x88,
+    0x8a,0x8d,0x8e,0x8f,0x8e,0x8d,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7a,0x78,0x75,
+    0x74,0x73,0x73,0x74,0x76,0x78,0x7c,0x7f,0x83,0x86,0x89,0x8c,0x8e,0x8f,0x8e,
+    0x8d,0x8c,0x89,0x87,0x84,0x81,0x7e,0x7b,0x79,0x76,0x74,0x73,0x73,0x73,0x75,
+    0x77,0x7a,0x7d,0x81,0x85,0x88,0x8b,0x8d,0x8e,0x8f,0x8e,0x8c,0x8a,0x88,0x85,
+    0x82,0x7f,0x7c,0x79,0x76,0x74,0x72,0x72,0x72,0x73,0x75,0x78,0x7b,0x7f,0x82,
+    0x86,0x8a,0x8c,0x8e,0x8f,0x8f,0x8d,0x8c,0x8a,0x87,0x84,0x81,0x7e,0x7b,0x78,
+    0x75,0x73,0x72,0x72,0x72,0x74,0x76,0x7a,0x7d,0x81,0x85,0x88,0x8b,0x8e,0x8f,
+    0x8f,0x8e,0x8d,0x8b,0x89,0x86,0x83,0x7f,0x7c,0x79,0x76,0x74,0x72,0x71,0x72,
+    0x73,0x75,0x78,0x7b,0x7f,0x83,0x87,0x8a,0x8d,0x8f,0x8f,0x8f,0x8e,0x8d,0x8a,
+    0x88,0x85,0x81,0x7e,0x7b,0x78,0x75,0x73,0x72,0x71,0x72,0x74,0x77,0x7a,0x7d,
+    0x81,0x85,0x89,0x8c,0x8e,0x8f,0x8f,0x8f,0x8e,0x8c,0x89,0x86,0x83,0x80,0x7c,
+    0x79,0x76,0x73,0x72,0x71,0x71,0x73,0x75,0x78,0x7c,0x7f,0x84,0x88,0x8b,0x8e,
+    0x8f,0x90,0x90,0x8f,0x8d,0x8b,0x89,0x85,0x82,0x7e,0x7a,0x77,0x74,0x72,0x71,
+    0x71,0x72,0x74,0x76,0x79,0x7d,0x81,0x86,0x8a,0x8d,0x8f,0x90,0x90,0x8f,0x8e,
+    0x8c,0x8a,0x87,0x83,0x7f,0x7c,0x78,0x75,0x72,0x71,0x70,0x71,0x72,0x74,0x77,
+    0x7b,0x7f,0x84,0x88,0x8b,0x8e,0x8f,0x90,0x90,0x8f,0x8d,0x8b,0x88,0x85,0x81,
+    0x7d,0x7a,0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x76,0x79,0x7d,0x82,0x86,0x8a,
+    0x8d,0x8f,0x90,0x90,0x90,0x8f,0x8d,0x8a,0x87,0x83,0x7f,0x7b,0x77,0x74,0x72,
+    0x70,0x6f,0x70,0x71,0x74,0x77,0x7b,0x7f,0x84,0x88,0x8b,0x8e,0x8f,0x90,0x90,
+    0x8f,0x8e,0x8b,0x89,0x85,0x81,0x7d,0x79,0x75,0x72,0x70,0x6f,0x70,0x70,0x72,
+    0x75,0x79,0x7d,0x82,0x86,0x8a,0x8d,0x8f,0x90,0x91,0x90,0x8f,0x8d,0x8a,0x87,
+    0x83,0x7f,0x7b,0x77,0x74,0x71,0x70,0x6f,0x70,0x71,0x74,0x77,0x7b,0x80,0x84,
+    0x88,0x8c,0x8e,0x90,0x91,0x91,0x90,0x8e,0x8c,0x89,0x85,0x81,0x7d,0x78,0x75,
+    0x72,0x70,0x6f,0x6f,0x70,0x72,0x75,0x79,0x7d,0x82,0x86,0x8a,0x8d,0x8f,0x90,
+    0x91,0x90,0x8f,0x8d,0x8a,0x87,0x83,0x7e,0x7a,0x76,0x73,0x70,0x6f,0x6e,0x6f,
+    0x71,0x73,0x77,0x7b,0x80,0x84,0x88,0x8c,0x8e,0x90,0x91,0x91,0x90,0x8f,0x8c,
+    0x89,0x85,0x81,0x7c,0x78,0x74,0x72,0x6f,0x6e,0x6e,0x70,0x72,0x75,0x79,0x7e,
+    0x82,0x86,0x8a,0x8d,0x8f,0x91,0x91,0x91,0x90,0x8e,0x8b,0x87,0x83,0x7e,0x7a,
+    0x76,0x72,0x70,0x6e,0x6e,0x6e,0x70,0x73,0x77,0x7c,0x80,0x85,0x89,0x8c,0x8f,
+    0x91,0x92,0x92,0x91,0x8f,0x8d,0x89,0x85,0x81,0x7c,0x78,0x74,0x71,0x6f,0x6e,
+    0x6e,0x6f,0x72,0x76,0x7a,0x7e,0x82,0x87,0x8a,0x8e,0x90,0x91,0x92,0x91,0x90,
+    0x8e,0x8b,0x87,0x82,0x7e,0x79,0x75,0x72,0x6f,0x6e,0x6d,0x6e,0x70,0x73,0x77,
+    0x7b,0x80,0x84,0x89,0x8c,0x8f,0x91,0x92,0x92,0x91,0x8f,0x8d,0x89,0x85,0x80,
+    0x7b,0x77,0x73,0x70,0x6e,0x6d,0x6d,0x6f,0x72,0x75,0x79,0x7e,0x82,0x87,0x8a,
+    0x8d,0x90,0x91,0x92,0x92,0x90,0x8e,0x8b,0x87,0x82,0x7d,0x79,0x75,0x71,0x6e,
+    0x6d,0x6d,0x6e,0x70,0x73,0x77,0x7b,0x80,0x84,0x89,0x8c,0x8f,0x91,0x92,0x92,
+    0x92,0x90,0x8d,0x89,0x84,0x80,0x7b,0x77,0x73,0x70,0x6e,0x6d,0x6d,0x6f,0x72,
+    0x75,0x79,0x7e,0x82,0x87,0x8a,0x8e,0x90,0x92,0x92,0x92,0x91,0x8e,0x8b,0x86,
+    0x82,0x7d,0x79,0x74,0x71,0x6e,0x6d,0x6c,0x6e,0x70,0x73,0x77,0x7c,0x80,0x85,
+    0x89,0x8c,0x8f,0x91,0x93,0x93,0x92,0x90,0x8d,0x89,0x84,0x80,0x7b,0x76,0x72,
+    0x6f,0x6d,0x6c,0x6d,0x6f,0x72,0x75,0x7a,0x7e,0x83,0x87,0x8b,0x8e,0x90,0x92,
+    0x93,0x93,0x91,0x8f,0x8b,0x87,0x82,0x7d,0x78,0x74,0x70,0x6e,0x6c,0x6c,0x6e,
+    0x70,0x74,0x78,0x7c,0x81,0x85,0x89,0x8d,0x90,0x92,0x94,0x94,0x93,0x91,0x8d,
+    0x89,0x85,0x80,0x7b,0x76,0x72,0x6f,0x6d,0x6d,0x6d,0x6f,0x72,0x76,0x7a,0x7f,
+    0x83,0x87,0x8b,0x8f,0x91,0x93,0x94,0x94,0x92,0x8f,0x8c,0x87,0x82,0x7d,0x78,
+    0x74,0x70,0x6e,0x6d,0x6d,0x6e,0x70,0x74,0x78,0x7c,0x81,0x85,0x89,0x8d,0x90,
+    0x92,0x94,0x94,0x93,0x91,0x8d,0x89,0x85,0x80,0x7a,0x76,0x72,0x6f,0x6d,0x6c,
+    0x6d,0x6f,0x72,0x76,0x7a,0x7f,0x83,0x87,0x8b,0x8f,0x91,0x93,0x94,0x94,0x92,
+    0x8f,0x8b,0x87,0x82,0x7d,0x78,0x73,0x70,0x6d,0x6c,0x6c,0x6e,0x70,0x74,0x78,
+    0x7c,0x81,0x85,0x89,0x8d,0x90,0x93,0x94,0x94,0x93,0x91,0x8d,0x89,0x84,0x7f,
+    0x7a,0x75,0x71,0x6e,0x6d,0x6c,0x6d,0x6f,0x72,0x76,0x7a,0x7f,0x83,0x87,0x8b,
+    0x8f,0x92,0x94,0x95,0x94,0x92,0x8f,0x8c,0x87,0x82,0x7d,0x78,0x73,0x70,0x6d,
+    0x6c,0x6c,0x6e,0x70,0x74,0x78,0x7c,0x81,0x85,0x89,0x8d,0x91,0x93,0x94,0x94,
+    0x93,0x91,0x8d,0x89,0x84,0x7f,0x7a,0x75,0x71,0x6e,0x6c,0x6c,0x6d,0x6f,0x72,
+    0x76,0x7a,0x7e,0x83,0x87,0x8b,0x8f,0x92,0x94,0x95,0x94,0x92,0x8f,0x8b,0x86,
+    0x81,0x7c,0x77,0x72,0x6f,0x6d,0x6c,0x6c,0x6e,0x70,0x74,0x78,0x7c,0x81,0x85,
+    0x8a,0x8e,0x91,0x93,0x95,0x95,0x93,0x91,0x8e,0x89,0x84,0x7f,0x79,0x75,0x71,
+    0x6e,0x6c,0x6c,0x6d,0x6f,0x72,0x76,0x7a,0x7e,0x83,0x87,0x8c,0x8f,0x92,0x94,
+    0x95,0x94,0x92,0x8f,0x8b,0x86,0x81,0x7b,0x76,0x72,0x6f,0x6c,0x6b,0x6c,0x6e,
+    0x71,0x74,0x78,0x7c,0x81,0x85,0x8a,0x8e,0x91,0x94,0x95,0x95,0x94,0x91,0x8d,
+    0x89,0x84,0x7e,0x79,0x74,0x70,0x6d,0x6c,0x6c,0x6d,0x6f,0x72,0x76,0x7a,0x7f,
+    0x83,0x88,0x8c,0x90,0x93,0x95,0x95,0x95,0x93,0x8f,0x8b,0x86,0x81,0x7b,0x76,
+    0x72,0x6f,0x6c,0x6c,0x6c,0x6e,0x71,0x74,0x78,0x7c,0x81,0x86,0x8a,0x8e,0x92,
+    0x94,0x95,0x95,0x94,0x91,0x8e,0x89,0x84,0x7e,0x79,0x74,0x70,0x6d,0x6c,0x6c,
+    0x6d,0x6f,0x72,0x76,0x7a,0x7f,0x83,0x88,0x8c,0x90,0x93,0x95,0x96,0x95,0x93,
+    0x8f,0x8b,0x86,0x81,0x7b,0x76,0x72,0x6f,0x6d,0x6c,0x6d,0x6e,0x71,0x74,0x78,
+    0x7d,0x81,0x86,0x8b,0x8f,0x92,0x94,0x96,0x96,0x94,0x91,0x8d,0x89,0x83,0x7e,
+    0x79,0x74,0x70,0x6d,0x6c,0x6c,0x6e,0x70,0x72,0x76,0x7a,0x7f,0x83,0x88,0x8c,
+    0x90,0x93,0x95,0x95,0x95,0x92,0x8f,0x8b,0x86,0x80,0x7b,0x75,0x71,0x6e,0x6c,
+    0x6c,0x6d,0x6e,0x70,0x74,0x78,0x7c,0x81,0x86,0x8a,0x8e,0x92,0x94,0x96,0x95,
+    0x94,0x91,0x8d,0x88,0x83,0x7d,0x78,0x73,0x70,0x6d,0x6c,0x6c,0x6d,0x6f,0x72,
+    0x76,0x7a,0x7f,0x83,0x88,0x8d,0x90,0x93,0x95,0x96,0x95,0x92,0x8f,0x8b,0x85,
+    0x80,0x7a,0x75,0x71,0x6e,0x6d,0x6c,0x6d,0x6e,0x71,0x74,0x78,0x7c,0x81,0x86,
+    0x8a,0x8f,0x92,0x94,0x95,0x95,0x94,0x91,0x8d,0x88,0x82,0x7d,0x77,0x73,0x70,
+    0x6d,0x6c,0x6c,0x6d,0x6f,0x72,0x76,0x7a,0x7f,0x84,0x88,0x8d,0x91,0x93,0x95,
+    0x96,0x95,0x92,0x8f,0x8a,0x85,0x7f,0x7a,0x75,0x71,0x6f,0x6d,0x6c,0x6d,0x6e,
+    0x71,0x74,0x78,0x7d,0x81,0x86,0x8b,0x8f,0x92,0x95,0x96,0x96,0x94,0x91,0x8d,
+    0x88,0x82,0x7d,0x78,0x73,0x70,0x6e,0x6d,0x6d,0x6e,0x70,0x73,0x76,0x7b,0x7f,
+    0x84,0x89,0x8d,0x91,0x94,0x95,0x96,0x95,0x93,0x8f,0x8a,0x85,0x7f,0x7a,0x75,
+    0x71,0x6f,0x6d,0x6d,0x6d,0x6f,0x71,0x74,0x78,0x7d,0x82,0x86,0x8b,0x8f,0x92,
+    0x95,0x96,0x95,0x94,0x91,0x8c,0x87,0x82,0x7c,0x77,0x73,0x70,0x6e,0x6d,0x6d,
+    0x6e,0x70,0x73,0x76,0x7a,0x7f,0x84,0x89,0x8d,0x91,0x93,0x95,0x95,0x94,0x92,
+    0x8e,0x89,0x84,0x7f,0x79,0x75,0x71,0x6f,0x6d,0x6d,0x6d,0x6f,0x71,0x74,0x78,
+    0x7d,0x82,0x86,0x8b,0x8f,0x92,0x95,0x96,0x95,0x94,0x90,0x8c,0x87,0x81,0x7c,
+    0x77,0x73,0x70,0x6e,0x6d,0x6d,0x6e,0x70,0x73,0x77,0x7b,0x7f,0x84,0x89,0x8d,
+    0x91,0x94,0x95,0x96,0x95,0x92,0x8e,0x89,0x84,0x7e,0x79,0x75,0x71,0x6f,0x6d,
+    0x6d,0x6d,0x6f,0x71,0x75,0x79,0x7d,0x82,0x87,0x8b,0x8f,0x92,0x95,0x96,0x95,
+    0x93,0x90,0x8b,0x86,0x81,0x7c,0x77,0x73,0x70,0x6e,0x6d,0x6d,0x6e,0x70,0x73,
+    0x77,0x7b,0x80,0x84,0x89,0x8d,0x91,0x94,0x95,0x96,0x94,0x92,0x8e,0x89,0x84,
+    0x7e,0x79,0x75,0x72,0x6f,0x6e,0x6d,0x6e,0x6f,0x72,0x75,0x79,0x7d,0x82,0x87,
+    0x8b,0x8f,0x92,0x95,0x96,0x95,0x93,0x90,0x8b,0x86,0x81,0x7b,0x77,0x73,0x70,
+    0x6e,0x6d,0x6d,0x6e,0x70,0x73,0x77,0x7b,0x80,0x84,0x89,0x8d,0x91,0x94,0x95,
+    0x95,0x94,0x91,0x8d,0x88,0x83,0x7e,0x79,0x75,0x71,0x6f,0x6e,0x6d,0x6e,0x6f,
+    0x72,0x75,0x79,0x7d,0x82,0x87,0x8b,0x8f,0x92,0x95,0x95,0x95,0x92,0x8f,0x8a,
+    0x85,0x80,0x7b,0x77,0x73,0x70,0x6e,0x6d,0x6e,0x6f,0x71,0x74,0x77,0x7b,0x80,
+    0x85,0x89,0x8d,0x91,0x94,0x95,0x95,0x94,0x91,0x8d,0x88,0x83,0x7e,0x79,0x75,
+    0x72,0x6f,0x6e,0x6d,0x6e,0x6f,0x72,0x75,0x79,0x7d,0x82,0x87,0x8b,0x8f,0x93,
+    0x95,0x95,0x94,0x92,0x8f,0x8a,0x85,0x80,0x7b,0x77,0x74,0x71,0x6f,0x6e,0x6e,
+    0x6f,0x71,0x74,0x77,0x7b,0x80,0x85,0x89,0x8e,0x91,0x94,0x95,0x95,0x93,0x90,
+    0x8c,0x87,0x82,0x7e,0x79,0x75,0x72,0x6f,0x6e,0x6e,0x6e,0x70,0x72,0x75,0x79,
+    0x7e,0x82,0x87,0x8c,0x90,0x93,0x95,0x95,0x94,0x92,0x8e,0x8a,0x85,0x80,0x7b,
+    0x77,0x74,0x71,0x6f,0x6e,0x6e,0x6f,0x71,0x74,0x78,0x7c,0x80,0x85,0x89,0x8e,
+    0x91,0x94,0x95,0x94,0x93,0x90,0x8c,0x87,0x82,0x7d,0x79,0x75,0x72,0x70,0x6e,
+    0x6e,0x6f,0x70,0x73,0x76,0x7a,0x7e,0x83,0x87,0x8c,0x90,0x93,0x95,0x95,0x94,
+    0x91,0x8e,0x89,0x85,0x80,0x7b,0x77,0x74,0x71,0x6f,0x6e,0x6e,0x70,0x71,0x74,
+    0x78,0x7c,0x80,0x85,0x89,0x8e,0x91,0x93,0x94,0x94,0x92,0x8f,0x8b,0x86,0x82,
+    0x7d,0x79,0x75,0x72,0x70,0x6e,0x6e,0x6f,0x70,0x73,0x76,0x7a,0x7e,0x83,0x87,
+    0x8c,0x90,0x92,0x94,0x94,0x93,0x90,0x8d,0x89,0x84,0x80,0x7b,0x77,0x74,0x71,
+    0x6f,0x6e,0x6f,0x70,0x72,0x75,0x78,0x7c,0x80,0x85,0x8a,0x8e,0x91,0x93,0x94,
+    0x94,0x92,0x8f,0x8b,0x86,0x82,0x7d,0x79,0x75,0x72,0x70,0x6f,0x6f,0x70,0x71,
+    0x73,0x76,0x7a,0x7e,0x83,0x88,0x8c,0x90,0x92,0x94,0x94,0x92,0x90,0x8c,0x88,
+    0x84,0x80,0x7b,0x77,0x74,0x71,0x70,0x6f,0x6f,0x70,0x72,0x75,0x78,0x7c,0x81,
+    0x85,0x8a,0x8e,0x91,0x93,0x94,0x93,0x91,0x8e,0x8a,0x86,0x82,0x7d,0x79,0x75,
+    0x72,0x70,0x6f,0x6f,0x70,0x71,0x73,0x76,0x7a,0x7e,0x83,0x88,0x8c,0x90,0x92,
+    0x93,0x93,0x92,0x8f,0x8c,0x88,0x84,0x80,0x7b,0x78,0x74,0x72,0x70,0x70,0x70,
+    0x71,0x73,0x75,0x79,0x7d,0x81,0x86,0x8a,0x8e,0x91,0x93,0x93,0x93,0x90,0x8d,
+    0x8a,0x86,0x82,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x70,0x72,0x74,0x77,0x7b,
+    0x7f,0x84,0x88,0x8c,0x90,0x92,0x93,0x93,0x91,0x8f,0x8c,0x88,0x84,0x80,0x7b,
+    0x78,0x75,0x72,0x71,0x70,0x70,0x71,0x73,0x76,0x79,0x7d,0x82,0x86,0x8a,0x8e,
+    0x91,0x93,0x93,0x92,0x90,0x8d,0x8a,0x86,0x82,0x7d,0x79,0x76,0x73,0x71,0x70,
+    0x70,0x71,0x72,0x75,0x78,0x7b,0x7f,0x84,0x88,0x8c,0x8f,0x92,0x93,0x92,0x91,
+    0x8e,0x8b,0x87,0x83,0x7f,0x7b,0x78,0x75,0x72,0x71,0x70,0x71,0x72,0x74,0x76,
+    0x79,0x7d,0x82,0x86,0x8a,0x8e,0x91,0x92,0x92,0x91,0x8f,0x8d,0x89,0x85,0x81,
+    0x7d,0x79,0x76,0x74,0x72,0x71,0x71,0x71,0x73,0x75,0x78,0x7b,0x80,0x84,0x88,
+    0x8c,0x8f,0x91,0x92,0x91,0x90,0x8e,0x8a,0x87,0x83,0x7f,0x7b,0x78,0x75,0x72,
+    0x71,0x70,0x71,0x72,0x74,0x76,0x7a,0x7e,0x82,0x86,0x8a,0x8d,0x90,0x91,0x91,
+    0x90,0x8e,0x8c,0x88,0x85,0x80,0x7d,0x79,0x76,0x74,0x72,0x71,0x71,0x71,0x73,
+    0x75,0x78,0x7c,0x80,0x84,0x88,0x8c,0x8f,0x90,0x91,0x91,0x8f,0x8d,0x8a,0x86,
+    0x82,0x7e,0x7b,0x78,0x75,0x73,0x71,0x71,0x71,0x72,0x74,0x77,0x7a,0x7e,0x82,
+    0x86,0x8a,0x8d,0x8f,0x90,0x91,0x90,0x8e,0x8b,0x88,0x84,0x80,0x7d,0x79,0x76,
+    0x74,0x72,0x71,0x71,0x72,0x73,0x76,0x79,0x7c,0x80,0x85,0x89,0x8c,0x8f,0x90,
+    0x91,0x90,0x8f,0x8d,0x8a,0x86,0x82,0x7f,0x7b,0x78,0x75,0x73,0x72,0x71,0x72,
+    0x73,0x75,0x77,0x7b,0x7e,0x83,0x87,0x8a,0x8d,0x8f,0x90,0x90,0x8f,0x8d,0x8b,
+    0x87,0x84,0x80,0x7d,0x79,0x76,0x74,0x73,0x72,0x72,0x72,0x74,0x76,0x79,0x7d,
+    0x81,0x85,0x88,0x8b,0x8e,0x8f,0x90,0x8f,0x8e,0x8c,0x89,0x85,0x82,0x7e,0x7b,
+    0x78,0x75,0x74,0x72,0x72,0x72,0x73,0x75,0x78,0x7b,0x7f,0x83,0x87,0x8a,0x8c,
+    0x8e,0x8f,0x8f,0x8e,0x8d,0x8a,0x87,0x83,0x80,0x7c,0x79,0x77,0x74,0x73,0x72,
+    0x72,0x73,0x74,0x76,0x7a,0x7d,0x81,0x85,0x88,0x8b,0x8d,0x8f,0x8f,0x8f,0x8d,
+    0x8b,0x88,0x85,0x82,0x7e,0x7b,0x78,0x76,0x74,0x73,0x73,0x73,0x74,0x76,0x79,
+    0x7c,0x80,0x83,0x87,0x8a,0x8c,0x8e,0x8f,0x8f,0x8e,0x8c,0x8a,0x87,0x83,0x80,
+    0x7d,0x7a,0x77,0x75,0x74,0x73,0x73,0x73,0x75,0x77,0x7a,0x7e,0x81,0x85,0x88,
+    0x8b,0x8d,0x8e,0x8f,0x8e,0x8d,0x8b,0x88,0x85,0x81,0x7e,0x7b,0x78,0x76,0x74,
+    0x73,0x73,0x73,0x74,0x76,0x79,0x7c,0x80,0x83,0x87,0x89,0x8c,0x8d,0x8e,0x8e,
+    0x8d,0x8b,0x89,0x86,0x83,0x80,0x7c,0x7a,0x77,0x75,0x74,0x73,0x73,0x74,0x75,
+    0x78,0x7b,0x7e,0x82,0x85,0x88,0x8b,0x8c,0x8e,0x8e,0x8d,0x8c,0x8a,0x87,0x84,
+    0x81,0x7e,0x7b,0x79,0x77,0x75,0x74,0x73,0x74,0x75,0x77,0x7a,0x7d,0x80,0x83,
+    0x86,0x89,0x8b,0x8d,0x8d,0x8d,0x8c,0x8a,0x88,0x85,0x83,0x7f,0x7c,0x7a,0x78,
+    0x76,0x74,0x74,0x74,0x75,0x76,0x79,0x7c,0x7f,0x82,0x85,0x88,0x8a,0x8c,0x8d,
+    0x8d,0x8d,0x8b,0x89,0x87,0x84,0x81,0x7e,0x7b,0x79,0x77,0x75,0x74,0x74,0x74,
+    0x76,0x78,0x7a,0x7d,0x80,0x84,0x86,0x89,0x8b,0x8c,0x8d,0x8c,0x8b,0x8a,0x87,
+    0x85,0x82,0x7f,0x7c,0x7a,0x78,0x76,0x75,0x74,0x74,0x75,0x77,0x79,0x7c,0x7f,
+    0x82,0x85,0x88,0x8a,0x8b,0x8c,0x8c,0x8c,0x8a,0x89,0x86,0x84,0x81,0x7e,0x7b,
+    0x79,0x77,0x76,0x75,0x74,0x75,0x76,0x78,0x7b,0x7e,0x81,0x84,0x86,0x89,0x8a,
+    0x8b,0x8c,0x8c,0x8b,0x89,0x87,0x84,0x82,0x7f,0x7d,0x7a,0x78,0x76,0x75,0x75,
+    0x75,0x76,0x78,0x7a,0x7d,0x7f,0x82,0x85,0x87,0x89,0x8b,0x8c,0x8c,0x8b,0x8a,
+    0x88,0x86,0x83,0x81,0x7e,0x7c,0x79,0x77,0x76,0x75,0x75,0x76,0x77,0x79,0x7c,
+    0x7e,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x88,0x86,0x84,0x82,0x7f,
+    0x7d,0x7a,0x78,0x77,0x76,0x75,0x76,0x77,0x79,0x7b,0x7d,0x80,0x83,0x85,0x87,
+    0x89,0x8a,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x83,0x81,0x7e,0x7c,0x7a,0x78,0x77,
+    0x76,0x76,0x77,0x78,0x7a,0x7c,0x7f,0x82,0x84,0x86,0x88,0x89,0x8a,0x8b,0x8a,
+    0x89,0x88,0x86,0x84,0x82,0x7f,0x7d,0x7b,0x79,0x77,0x76,0x76,0x77,0x78,0x79,
+    0x7c,0x7e,0x81,0x83,0x85,0x87,0x89,0x8a,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x83,
+    0x80,0x7e,0x7c,0x7a,0x78,0x77,0x77,0x77,0x78,0x79,0x7b,0x7d,0x80,0x82,0x84,
+    0x86,0x88,0x89,0x8a,0x8a,0x89,0x89,0x87,0x86,0x84,0x81,0x7f,0x7d,0x7b,0x79,
+    0x78,0x77,0x77,0x78,0x79,0x7a,0x7c,0x7f,0x81,0x83,0x85,0x87,0x88,0x89,0x89,
+    0x89,0x89,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7a,0x78,0x78,0x77,0x78,0x79,
+    0x7a,0x7c,0x7e,0x80,0x82,0x84,0x86,0x87,0x88,0x89,0x89,0x88,0x87,0x86,0x85,
+    0x83,0x81,0x7f,0x7c,0x7a,0x79,0x78,0x77,0x77,0x78,0x79,0x7b,0x7d,0x7f,0x81,
+    0x83,0x85,0x86,0x87,0x88,0x88,0x88,0x88,0x87,0x85,0x84,0x82,0x80,0x7e,0x7c,
+    0x7a,0x79,0x78,0x78,0x78,0x79,0x7b,0x7c,0x7e,0x80,0x82,0x84,0x86,0x87,0x88,
+    0x88,0x88,0x88,0x87,0x86,0x84,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x79,0x78,0x78,
+    0x79,0x7a,0x7c,0x7e,0x7f,0x81,0x83,0x85,0x86,0x87,0x88,0x88,0x88,0x87,0x86,
+    0x85,0x83,0x82,0x80,0x7e,0x7c,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7c,0x7d,0x7f,
+    0x81,0x83,0x84,0x85,0x87,0x87,0x88,0x88,0x87,0x86,0x85,0x84,0x82,0x81,0x7f,
+    0x7d,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x7e,0x80,0x82,0x83,0x85,0x86,
+    0x87,0x87,0x87,0x87,0x86,0x86,0x84,0x83,0x81,0x7f,0x7e,0x7c,0x7b,0x7a,0x79,
+    0x7a,0x7a,0x7b,0x7d,0x7e,0x80,0x81,0x83,0x84,0x85,0x86,0x87,0x87,0x87,0x86,
+    0x86,0x85,0x83,0x82,0x80,0x7e,0x7d,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,
+    0x7f,0x80,0x82,0x83,0x84,0x85,0x86,0x86,0x86,0x86,0x85,0x85,0x84,0x82,0x81,
+    0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,0x7f,0x80,0x82,0x83,0x84,
+    0x85,0x86,0x86,0x86,0x86,0x85,0x85,0x84,0x83,0x81,0x80,0x7e,0x7d,0x7b,0x7b,
+    0x7a,0x7a,0x7b,0x7c,0x7d,0x7e,0x80,0x81,0x82,0x83,0x84,0x85,0x85,0x86,0x86,
+    0x85,0x85,0x84,0x83,0x82,0x81,0x7f,0x7e,0x7c,0x7b,0x7b,0x7b,0x7b,0x7c,0x7d,
+    0x7e,0x80,0x81,0x82,0x83,0x84,0x85,0x85,0x85,0x85,0x85,0x85,0x84,0x83,0x82,
+    0x81,0x7f,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7c,0x7d,0x7e,0x7f,0x80,0x82,0x83,
+    0x84,0x84,0x85,0x85,0x85,0x85,0x85,0x84,0x84,0x83,0x82,0x80,0x7f,0x7d,0x7c,
+    0x7c,0x7b,0x7c,0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x84,0x84,0x84,
+    0x84,0x84,0x84,0x83,0x83,0x82,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,0x7c,0x7c,0x7d,
+    0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x84,0x83,
+    0x82,0x81,0x80,0x7e,0x7d,0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x82,
+    0x83,0x83,0x84,0x84,0x84,0x84,0x84,0x84,0x83,0x83,0x82,0x81,0x80,0x7f,0x7e,
+    0x7d,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x83,0x84,0x84,
+    0x84,0x84,0x83,0x83,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7c,0x7c,0x7d,
+    0x7e,0x7e,0x80,0x81,0x82,0x82,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x82,
+    0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7d,0x7c,0x7d,0x7d,0x7e,0x7e,0x7f,0x80,0x81,
+    0x82,0x83,0x83,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x82,0x81,0x80,0x80,0x7f,
+    0x7e,0x7d,0x7d,0x7c,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x83,0x83,
+    0x83,0x83,0x82,0x82,0x82,0x82,0x81,0x80,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,
+    0x7e,0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x82,
+    0x82,0x81,0x81,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,
+    0x82,0x83,0x83,0x84,0x84,0x83,0x83,0x82,0x82,0x82,0x81,0x81,0x81,0x80,0x7f,
+    0x7e,0x7e,0x7d,0x7d,0x7d,0x7e,0x7e,0x7f,0x80,0x81,0x82,0x82,0x83,0x83,0x83,
+    0x83,0x82,0x82,0x82,0x81,0x81,0x81,0x80,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,
+    0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x83,0x83,0x82,0x82,0x81,0x81,
+    0x81,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7f,0x80,0x80,0x81,0x82,
+    0x84,0x84,0x85,0x86,0x86,0x85,0x84,0x84,0x83,0x82,0x82,0x82,0x81,0x80,0x80,
+    0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x84,0x84,
+    0x84,0x83,0x82,0x81,0x80,0x80,0x7f,0x7f,0x7e,0x7e,0x7d,0x7d,0x7c,0x7c,0x7c,
+    0x7c,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x83,0x83,0x83,0x83,0x82,0x81,0x81,
+    0x80,0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,
+    0x82,0x83,0x84,0x84,0x85,0x84,0x84,0x83,0x82,0x81,0x80,0x80,0x7f,0x7f,0x7f,
+    0x7e,0x7e,0x7e,0x7d,0x7d,0x7e,0x7e,0x7f,0x80,0x81,0x82,0x84,0x85,0x85,0x86,
+    0x86,0x85,0x84,0x83,0x82,0x81,0x81,0x80,0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7d,
+    0x7e,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x85,0x86,0x85,0x85,0x84,0x83,0x82,
+    0x80,0x7f,0x7f,0x7e,0x7d,0x7d,0x7c,0x7c,0x7c,0x7b,0x7c,0x7c,0x7d,0x7e,0x7f,
+    0x80,0x82,0x83,0x84,0x85,0x85,0x85,0x84,0x83,0x82,0x81,0x80,0x7f,0x7f,0x7e,
+    0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x83,0x84,0x85,0x86,
+    0x86,0x86,0x86,0x85,0x84,0x82,0x81,0x80,0x7f,0x7f,0x7e,0x7e,0x7d,0x7d,0x7d,
+    0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x83,0x84,0x85,0x86,0x87,0x87,0x86,0x85,0x84,
+    0x83,0x81,0x80,0x7f,0x7e,0x7e,0x7d,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,0x7e,0x80,
+    0x81,0x83,0x84,0x85,0x87,0x87,0x87,0x87,0x86,0x85,0x84,0x82,0x81,0x80,0x7f,
+    0x7e,0x7d,0x7d,0x7c,0x7c,0x7c,0x7c,0x7d,0x7d,0x7f,0x80,0x81,0x83,0x85,0x86,
+    0x87,0x87,0x87,0x86,0x85,0x84,0x82,0x81,0x80,0x7e,0x7d,0x7d,0x7c,0x7c,0x7b,
+    0x7b,0x7b,0x7c,0x7d,0x7e,0x7f,0x81,0x82,0x84,0x85,0x87,0x87,0x87,0x86,0x86,
+    0x84,0x83,0x81,0x7f,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,0x7b,0x7b,0x7c,0x7d,
+    0x7f,0x80,0x82,0x84,0x86,0x87,0x88,0x88,0x88,0x87,0x85,0x84,0x82,0x81,0x7f,
+    0x7e,0x7d,0x7c,0x7c,0x7b,0x7b,0x7b,0x7b,0x7c,0x7d,0x7f,0x80,0x82,0x84,0x86,
+    0x87,0x88,0x89,0x89,0x88,0x87,0x86,0x84,0x82,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,
+    0x7b,0x7b,0x7b,0x7c,0x7d,0x7e,0x7f,0x81,0x83,0x85,0x87,0x88,0x89,0x89,0x89,
+    0x88,0x86,0x84,0x82,0x81,0x7f,0x7d,0x7c,0x7b,0x7a,0x7a,0x7a,0x7a,0x7a,0x7b,
+    0x7c,0x7e,0x80,0x81,0x84,0x85,0x87,0x88,0x88,0x88,0x87,0x86,0x84,0x82,0x80,
+    0x7e,0x7c,0x7b,0x7a,0x79,0x79,0x78,0x79,0x79,0x7a,0x7b,0x7d,0x7e,0x80,0x83,
+    0x84,0x86,0x87,0x88,0x88,0x87,0x86,0x84,0x82,0x80,0x7e,0x7d,0x7b,0x7a,0x79,
+    0x78,0x78,0x78,0x78,0x79,0x7a,0x7b,0x7d,0x7f,0x82,0x84,0x86,0x87,0x88,0x89,
+    0x88,0x88,0x86,0x84,0x82,0x80,0x7e,0x7c,0x7b,0x79,0x79,0x78,0x78,0x78,0x79,
+    0x7a,0x7c,0x7d,0x80,0x82,0x84,0x86,0x88,0x89,0x8a,0x8a,0x89,0x88,0x86,0x84,
+    0x82,0x80,0x7e,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x79,0x7a,0x7b,0x7d,0x7f,0x81,
+    0x83,0x86,0x88,0x89,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x83,0x80,0x7e,0x7c,0x7a,
+    0x79,0x78,0x78,0x78,0x78,0x79,0x7a,0x7b,0x7d,0x80,0x82,0x85,0x87,0x88,0x8a,
+    0x8a,0x8a,0x89,0x87,0x86,0x83,0x81,0x7f,0x7d,0x7b,0x79,0x78,0x78,0x78,0x78,
+    0x78,0x79,0x7b,0x7d,0x7f,0x81,0x84,0x86,0x88,0x8a,0x8b,0x8b,0x8a,0x89,0x87,
+    0x85,0x83,0x81,0x7e,0x7c,0x7a,0x79,0x78,0x78,0x78,0x78,0x79,0x7a,0x7c,0x7e,
+    0x81,0x83,0x86,0x88,0x8a,0x8b,0x8b,0x8b,0x8a,0x88,0x86,0x84,0x81,0x7f,0x7d,
+    0x7b,0x79,0x78,0x77,0x77,0x77,0x78,0x79,0x7b,0x7d,0x80,0x82,0x85,0x88,0x8a,
+    0x8b,0x8c,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x80,0x7e,0x7c,0x7a,0x78,0x77,0x77,
+    0x77,0x77,0x78,0x7a,0x7c,0x7e,0x81,0x84,0x86,0x89,0x8a,0x8b,0x8c,0x8b,0x8a,
+    0x88,0x86,0x84,0x81,0x7e,0x7c,0x7a,0x78,0x77,0x76,0x76,0x76,0x77,0x79,0x7b,
+    0x7d,0x7f,0x82,0x85,0x87,0x89,0x8b,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x82,0x80,
+    0x7d,0x7b,0x79,0x77,0x76,0x76,0x76,0x77,0x78,0x7a,0x7c,0x7f,0x81,0x84,0x87,
+    0x89,0x8b,0x8c,0x8c,0x8c,0x8a,0x89,0x86,0x84,0x81,0x7e,0x7b,0x79,0x78,0x76,
+    0x76,0x75,0x76,0x77,0x79,0x7b,0x7d,0x80,0x83,0x85,0x88,0x8a,0x8b,0x8c,0x8c,
+    0x8b,0x89,0x87,0x85,0x82,0x7f,0x7c,0x7a,0x78,0x76,0x75,0x74,0x75,0x76,0x77,
+    0x79,0x7b,0x7e,0x81,0x84,0x87,0x89,0x8b,0x8c,0x8c,0x8c,0x8b,0x89,0x86,0x83,
+    0x80,0x7d,0x7b,0x78,0x77,0x75,0x75,0x74,0x75,0x76,0x78,0x7b,0x7d,0x80,0x84,
+    0x86,0x89,0x8b,0x8c,0x8d,0x8d,0x8c,0x8a,0x88,0x85,0x82,0x7f,0x7c,0x7a,0x78,
+    0x76,0x75,0x75,0x75,0x76,0x78,0x7a,0x7d,0x80,0x83,0x86,0x89,0x8b,0x8d,0x8e,
+    0x8e,0x8d,0x8c,0x8a,0x87,0x84,0x81,0x7e,0x7b,0x79,0x77,0x76,0x75,0x75,0x76,
+    0x77,0x79,0x7c,0x7f,0x82,0x85,0x88,0x8a,0x8c,0x8e,0x8e,0x8e,0x8d,0x8b,0x88,
+    0x85,0x82,0x7f,0x7c,0x79,0x77,0x75,0x74,0x74,0x74,0x76,0x77,0x7a,0x7c,0x7f,
+    0x82,0x86,0x88,0x8b,0x8c,0x8d,0x8d,0x8c,0x8b,0x89,0x86,0x83,0x7f,0x7c,0x79,
+    0x77,0x75,0x73,0x73,0x73,0x74,0x75,0x77,0x7a,0x7d,0x81,0x84,0x87,0x8a,0x8c,
+    0x8d,0x8e,0x8d,0x8c,0x8a,0x88,0x85,0x81,0x7e,0x7b,0x78,0x76,0x74,0x73,0x73,
+    0x74,0x75,0x77,0x7a,0x7d,0x80,0x83,0x87,0x89,0x8c,0x8e,0x8f,0x8f,0x8e,0x8c,
+    0x8a,0x87,0x84,0x80,0x7d,0x7a,0x77,0x75,0x74,0x73,0x73,0x74,0x76,0x78,0x7b,
+    0x7f,0x82,0x85,0x88,0x8b,0x8d,0x8e,0x8f,0x8e,0x8d,0x8b,0x88,0x85,0x82,0x7f,
+    0x7b,0x78,0x76,0x74,0x73,0x73,0x74,0x75,0x77,0x7a,0x7d,0x81,0x84,0x87,0x8a,
+    0x8c,0x8e,0x8f,0x8f,0x8e,0x8c,0x8a,0x87,0x83,0x80,0x7d,0x79,0x77,0x75,0x73,
+    0x73,0x73,0x74,0x76,0x78,0x7b,0x7f,0x82,0x86,0x88,0x8b,0x8d,0x8e,0x8f,0x8e,
+    0x8d,0x8a,0x87,0x84,0x80,0x7d,0x79,0x76,0x74,0x72,0x71,0x71,0x72,0x73,0x76,
+    0x79,0x7c,0x7f,0x83,0x86,0x89,0x8c,0x8d,0x8e,0x8e,0x8d,0x8b,0x88,0x85,0x81,
+    0x7e,0x7a,0x77,0x74,0x72,0x71,0x71,0x71,0x72,0x75,0x77,0x7b,0x7e,0x82,0x86,
+    0x89,0x8c,0x8e,0x8f,0x8f,0x8f,0x8d,0x8b,0x88,0x85,0x81,0x7e,0x7a,0x77,0x75,
+    0x73,0x72,0x72,0x73,0x75,0x77,0x7a,0x7e,0x82,0x85,0x89,0x8c,0x8e,0x90,0x91,
+    0x90,0x8f,0x8d,0x8b,0x87,0x84,0x80,0x7c,0x79,0x76,0x74,0x72,0x72,0x72,0x73,
+    0x76,0x79,0x7c,0x80,0x84,0x87,0x8a,0x8d,0x8f,0x91,0x91,0x90,0x8f,0x8d,0x89,
+    0x86,0x82,0x7e,0x7a,0x77,0x75,0x73,0x72,0x72,0x73,0x75,0x78,0x7b,0x7f,0x82,
+    0x86,0x89,0x8c,0x8f,0x90,0x91,0x91,0x90,0x8e,0x8b,0x88,0x84,0x80,0x7c,0x78,
+    0x76,0x73,0x72,0x71,0x72,0x73,0x76,0x79,0x7c,0x80,0x84,0x87,0x8a,0x8d,0x8f,
+    0x90,0x91,0x90,0x8e,0x8c,0x89,0x85,0x81,0x7d,0x79,0x76,0x73,0x72,0x71,0x71,
+    0x72,0x74,0x77,0x7a,0x7d,0x81,0x85,0x88,0x8b,0x8e,0x8f,0x90,0x90,0x8f,0x8d,
+    0x8a,0x86,0x82,0x7e,0x7a,0x77,0x73,0x71,0x70,0x70,0x70,0x72,0x74,0x78,0x7b,
+    0x7f,0x83,0x86,0x8a,0x8c,0x8e,0x90,0x90,0x8f,0x8d,0x8b,0x87,0x83,0x7f,0x7b,
+    0x78,0x74,0x72,0x70,0x6f,0x6f,0x71,0x73,0x76,0x79,0x7d,0x81,0x85,0x88,0x8b,
+    0x8e,0x8f,0x90,0x90,0x8e,0x8c,0x89,0x85,0x81,0x7d,0x79,0x76,0x73,0x70,0x6f,
+    0x6f,0x70,0x72,0x74,0x78,0x7c,0x80,0x84,0x87,0x8b,0x8d,0x8f,0x91,0x91,0x90,
+    0x8e,0x8c,0x88,0x84,0x80,0x7c,0x78,0x75,0x72,0x71,0x70,0x71,0x72,0x74,0x77,
+    0x7b,0x7f,0x83,0x87,0x8a,0x8d,0x8f,0x91,0x92,0x92,0x90,0x8e,0x8b,0x87,0x83,
+    0x7e,0x7a,0x76,0x73,0x71,0x70,0x70,0x71,0x73,0x75,0x79,0x7d,0x81,0x85,0x89,
+    0x8c,0x8e,0x90,0x92,0x92,0x91,0x8f,0x8c,0x89,0x84,0x80,0x7c,0x78,0x74,0x72,
+    0x70,0x6f,0x70,0x71,0x74,0x77,0x7b,0x7f,0x83,0x87,0x8a,0x8d,0x90,0x91,0x92,
+    0x91,0x90,0x8e,0x8a,0x86,0x82,0x7e,0x79,0x75,0x72,0x70,0x6f,0x6f,0x70,0x72,
+    0x75,0x78,0x7c,0x80,0x84,0x88,0x8b,0x8e,0x90,0x91,0x91,0x90,0x8e,0x8b,0x88,
+    0x84,0x7f,0x7b,0x77,0x73,0x71,0x6f,0x6f,0x6f,0x71,0x74,0x77,0x7b,0x7f,0x83,
+    0x87,0x8a,0x8e,0x90,0x92,0x92,0x92,0x90,0x8d,0x8a,0x86,0x82,0x7d,0x79,0x75,
+    0x72,0x70,0x6f,0x6f,0x70,0x72,0x75,0x79,0x7d,0x81,0x85,0x89,0x8c,0x8f,0x91,
+    0x92,0x92,0x90,0x8e,0x8b,0x88,0x83,0x7f,0x7a,0x76,0x72,0x70,0x6e,0x6e,0x6f,
+    0x70,0x73,0x77,0x7a,0x7e,0x82,0x86,0x8a,0x8d,0x90,0x91,0x92,0x91,0x90,0x8d,
+    0x8a,0x86,0x81,0x7c,0x78,0x74,0x71,0x6f,0x6e,0x6e,0x6f,0x72,0x75,0x79,0x7d,
+    0x81,0x85,0x89,0x8c,0x8f,0x91,0x92,0x92,0x91,0x8f,0x8c,0x88,0x84,0x7f,0x7a,
+    0x76,0x73,0x70,0x6f,0x6e,0x6f,0x71,0x74,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8e,
+    0x91,0x92,0x92,0x92,0x90,0x8e,0x8a,0x86,0x81,0x7c,0x78,0x74,0x71,0x6f,0x6e,
+    0x6f,0x70,0x72,0x76,0x79,0x7d,0x82,0x86,0x8a,0x8d,0x90,0x92,0x93,0x93,0x92,
+    0x90,0x8d,0x89,0x84,0x7f,0x7b,0x76,0x73,0x70,0x6f,0x6f,0x70,0x71,0x74,0x78,
+    0x7c,0x80,0x84,0x88,0x8c,0x8f,0x91,0x92,0x93,0x92,0x91,0x8e,0x8a,0x86,0x81,
+    0x7c,0x78,0x74,0x71,0x6f,0x6e,0x6f,0x70,0x73,0x76,0x79,0x7e,0x82,0x86,0x8a,
+    0x8d,0x90,0x92,0x93,0x93,0x91,0x8f,0x8c,0x88,0x83,0x7e,0x7a,0x75,0x72,0x6f,
+    0x6e,0x6e,0x6f,0x72,0x75,0x78,0x7c,0x80,0x84,0x88,0x8c,0x8f,0x91,0x93,0x93,
+    0x92,0x90,0x8d,0x8a,0x85,0x80,0x7b,0x77,0x73,0x70,0x6e,0x6e,0x6e,0x70,0x72,
+    0x76,0x79,0x7e,0x82,0x86,0x8a,0x8d,0x90,0x92,0x93,0x93,0x91,0x8f,0x8c,0x87,
+    0x83,0x7e,0x79,0x75,0x72,0x6f,0x6e,0x6e,0x6f,0x72,0x75,0x78,0x7c,0x80,0x85,
+    0x89,0x8c,0x8f,0x92,0x93,0x93,0x93,0x91,0x8e,0x8a,0x85,0x80,0x7b,0x77,0x73,
+    0x70,0x6e,0x6e,0x6e,0x70,0x73,0x76,0x7a,0x7e,0x82,0x86,0x8a,0x8d,0x90,0x92,
+    0x93,0x93,0x91,0x8f,0x8b,0x87,0x82,0x7d,0x78,0x74,0x71,0x6e,0x6d,0x6d,0x6f,
+    0x71,0x74,0x78,0x7c,0x80,0x84,0x88,0x8c,0x8f,0x91,0x93,0x93,0x92,0x90,0x8d,
+    0x89,0x84,0x7f,0x7a,0x76,0x72,0x6f,0x6e,0x6d,0x6e,0x70,0x72,0x76,0x79,0x7e,
+    0x82,0x86,0x8a,0x8e,0x90,0x92,0x93,0x93,0x91,0x8f,0x8b,0x87,0x82,0x7d,0x78,
+    0x74,0x71,0x6e,0x6d,0x6e,0x6f,0x72,0x75,0x78,0x7c,0x81,0x85,0x89,0x8d,0x90,
+    0x92,0x94,0x94,0x93,0x90,0x8d,0x89,0x85,0x80,0x7b,0x76,0x72,0x70,0x6e,0x6e,
+    0x6f,0x71,0x73,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8f,0x91,0x93,0x94,0x93,0x92,
+    0x8f,0x8b,0x87,0x82,0x7d,0x78,0x74,0x71,0x6f,0x6e,0x6e,0x6f,0x72,0x75,0x79,
+    0x7d,0x81,0x85,0x89,0x8d,0x90,0x93,0x94,0x94,0x93,0x91,0x8d,0x89,0x84,0x7f,
+    0x7a,0x76,0x72,0x70,0x6e,0x6e,0x6f,0x71,0x74,0x77,0x7b,0x7f,0x84,0x88,0x8c,
+    0x8f,0x92,0x93,0x94,0x94,0x92,0x8f,0x8b,0x87,0x82,0x7d,0x78,0x74,0x71,0x6f,
+    0x6e,0x6e,0x70,0x72,0x75,0x79,0x7d,0x81,0x86,0x8a,0x8d,0x90,0x93,0x94,0x94,
+    0x92,0x90,0x8d,0x88,0x83,0x7e,0x79,0x75,0x71,0x6f,0x6d,0x6d,0x6e,0x70,0x73,
+    0x76,0x7a,0x7e,0x83,0x87,0x8b,0x8e,0x91,0x92,0x93,0x92,0x90,0x8d,0x89,0x85,
+    0x80,0x7b,0x76,0x72,0x6f,0x6d,0x6c,0x6d,0x6e,0x71,0x74,0x78,0x7c,0x80,0x85,
+    0x89,0x8c,0x8f,0x91,0x93,0x92,0x91,0x8f,0x8b,0x87,0x82,0x7d,0x78,0x74,0x70,
+    0x6e,0x6d,0x6d,0x6e,0x70,0x73,0x76,0x7a,0x7f,0x83,0x87,0x8b,0x8e,0x91,0x93,
+    0x93,0x92,0x91,0x8e,0x8a,0x85,0x80,0x7b,0x77,0x73,0x70,0x6e,0x6d,0x6e,0x6f,
+    0x72,0x75,0x79,0x7d,0x81,0x85,0x89,0x8d,0x90,0x92,0x93,0x93,0x91,0x8f,0x8b,
+    0x87,0x82,0x7d,0x78,0x74,0x70,0x6e,0x6d,0x6d,0x6e,0x70,0x73,0x76,0x7a,0x7e,
+    0x83,0x87,0x8a,0x8e,0x90,0x92,0x92,0x91,0x8f,0x8c,0x88,0x84,0x7f,0x7a,0x75,
+    0x72,0x6f,0x6d,0x6c,0x6d,0x6f,0x71,0x74,0x78,0x7c,0x81,0x85,0x89,0x8c,0x8f,
+    0x91,0x92,0x92,0x91,0x8e,0x8b,0x86,0x81,0x7c,0x78,0x74,0x70,0x6e,0x6d,0x6d,
+    0x6e,0x70,0x73,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8e,0x91,0x92,0x93,0x92,0x90,
+    0x8d,0x89,0x84,0x7f,0x7a,0x76,0x72,0x70,0x6e,0x6e,0x6e,0x70,0x73,0x76,0x7a,
+    0x7e,0x82,0x87,0x8b,0x8e,0x91,0x93,0x94,0x94,0x92,0x90,0x8c,0x88,0x83,0x7e,
+    0x7a,0x76,0x72,0x70,0x6f,0x6f,0x70,0x72,0x75,0x79,0x7d,0x81,0x86,0x8a,0x8d,
+    0x91,0x93,0x94,0x95,0x94,0x92,0x8e,0x8a,0x86,0x81,0x7c,0x78,0x74,0x71,0x70,
+    0x6f,0x70,0x72,0x74,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8f,0x91,0x93,0x94,0x93,
+    0x92,0x8f,0x8b,0x87,0x82,0x7d,0x79,0x75,0x72,0x70,0x6f,0x6f,0x70,0x72,0x75,
+    0x79,0x7d,0x81,0x85,0x89,0x8c,0x90,0x92,0x93,0x93,0x92,0x90,0x8c,0x88,0x84,
+    0x7f,0x7a,0x76,0x72,0x70,0x6e,0x6e,0x6e,0x70,0x73,0x76,0x7a,0x7e,0x82,0x86,
+    0x8a,0x8d,0x90,0x92,0x93,0x92,0x90,0x8e,0x8a,0x85,0x81,0x7c,0x77,0x74,0x71,
+    0x6f,0x6e,0x6e,0x70,0x72,0x75,0x78,0x7c,0x80,0x85,0x89,0x8c,0x90,0x92,0x93,
+    0x93,0x92,0x90,0x8c,0x88,0x84,0x7f,0x7a,0x76,0x73,0x70,0x6f,0x6f,0x6f,0x71,
+    0x74,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8e,0x91,0x92,0x93,0x92,0x90,0x8d,0x8a,
+    0x85,0x80,0x7c,0x77,0x74,0x71,0x6f,0x6e,0x6f,0x70,0x72,0x75,0x79,0x7d,0x81,
+    0x85,0x89,0x8c,0x8f,0x91,0x92,0x92,0x91,0x8f,0x8b,0x87,0x83,0x7e,0x7a,0x76,
+    0x72,0x70,0x6f,0x6f,0x6f,0x71,0x74,0x77,0x7b,0x7f,0x83,0x87,0x8b,0x8e,0x91,
+    0x92,0x92,0x92,0x90,0x8d,0x89,0x85,0x80,0x7c,0x77,0x74,0x71,0x6f,0x6f,0x6f,
+    0x70,0x73,0x76,0x79,0x7d,0x81,0x85,0x89,0x8d,0x90,0x91,0x92,0x92,0x91,0x8f,
+    0x8b,0x87,0x83,0x7e,0x7a,0x76,0x73,0x70,0x6f,0x6f,0x70,0x72,0x74,0x78,0x7b,
+    0x7f,0x84,0x88,0x8b,0x8e,0x91,0x92,0x92,0x91,0x8f,0x8c,0x89,0x84,0x80,0x7b,
+    0x77,0x74,0x71,0x6f,0x6f,0x6f,0x71,0x73,0x76,0x7a,0x7d,0x81,0x86,0x89,0x8d,
+    0x90,0x91,0x92,0x92,0x91,0x8e,0x8b,0x87,0x82,0x7e,0x7a,0x76,0x73,0x71,0x70,
+    0x6f,0x70,0x72,0x75,0x78,0x7c,0x80,0x84,0x88,0x8c,0x8e,0x91,0x92,0x92,0x91,
+    0x8f,0x8c,0x89,0x84,0x80,0x7c,0x78,0x74,0x72,0x70,0x6f,0x70,0x71,0x74,0x76,
+    0x7a,0x7e,0x82,0x86,0x8a,0x8d,0x8f,0x91,0x92,0x91,0x90,0x8d,0x8a,0x86,0x82,
+    0x7d,0x79,0x75,0x73,0x71,0x70,0x70,0x70,0x72,0x75,0x78,0x7c,0x80,0x84,0x88,
+    0x8b,0x8e,0x90,0x91,0x91,0x90,0x8e,0x8b,0x87,0x83,0x7f,0x7b,0x77,0x74,0x71,
+    0x70,0x6f,0x70,0x71,0x74,0x76,0x7a,0x7e,0x82,0x86,0x89,0x8c,0x8f,0x91,0x91,
+    0x91,0x8f,0x8d,0x89,0x86,0x81,0x7d,0x79,0x76,0x73,0x71,0x70,0x70,0x71,0x73,
+    0x76,0x79,0x7d,0x81,0x85,0x88,0x8c,0x8e,0x90,0x91,0x91,0x90,0x8e,0x8b,0x88,
+    0x84,0x80,0x7c,0x78,0x75,0x72,0x71,0x71,0x71,0x73,0x75,0x78,0x7b,0x7f,0x83,
+    0x87,0x8a,0x8d,0x90,0x91,0x92,0x91,0x8f,0x8d,0x8a,0x86,0x82,0x7e,0x7a,0x76,
+    0x74,0x72,0x71,0x71,0x72,0x74,0x77,0x7a,0x7e,0x81,0x85,0x89,0x8c,0x8f,0x90,
+    0x91,0x91,0x90,0x8e,0x8b,0x87,0x83,0x7f,0x7b,0x78,0x75,0x72,0x71,0x71,0x71,
+    0x73,0x75,0x78,0x7b,0x7f,0x83,0x86,0x8a,0x8d,0x8f,0x90,0x90,0x90,0x8e,0x8c,
+    0x88,0x85,0x81,0x7d,0x79,0x76,0x73,0x72,0x71,0x71,0x72,0x74,0x77,0x7a,0x7d,
+    0x81,0x85,0x88,0x8b,0x8e,0x8f,0x90,0x90,0x8f,0x8d,0x8a,0x87,0x83,0x7f,0x7b,
+    0x78,0x75,0x73,0x72,0x71,0x72,0x74,0x76,0x79,0x7c,0x80,0x83,0x87,0x8a,0x8d,
+    0x8f,0x90,0x90,0x8f,0x8e,0x8b,0x88,0x85,0x81,0x7d,0x79,0x76,0x74,0x73,0x72,
+    0x72,0x73,0x75,0x78,0x7b,0x7e,0x82,0x85,0x89,0x8b,0x8e,0x8f,0x90,0x8f,0x8e,
+    0x8c,0x89,0x86,0x82,0x7e,0x7a,0x77,0x74,0x72,0x71,0x71,0x72,0x73,0x76,0x78,
+    0x7c,0x7f,0x83,0x86,0x89,0x8c,0x8e,0x8f,0x8f,0x8e,0x8c,0x8a,0x87,0x83,0x80,
+    0x7c,0x79,0x76,0x74,0x72,0x72,0x72,0x73,0x75,0x78,0x7b,0x7e,0x82,0x85,0x88,
+    0x8b,0x8d,0x8e,0x8f,0x8e,0x8d,0x8b,0x88,0x85,0x82,0x7e,0x7b,0x78,0x75,0x73,
+    0x72,0x72,0x73,0x74,0x77,0x79,0x7d,0x80,0x84,0x87,0x8a,0x8c,0x8e,0x8e,0x8e,
+    0x8e,0x8c,0x8a,0x87,0x83,0x80,0x7c,0x79,0x76,0x74,0x73,0x72,0x73,0x74,0x76,
+    0x78,0x7b,0x7e,0x82,0x85,0x88,0x8b,0x8d,0x8e,0x8e,0x8e,0x8c,0x8a,0x88,0x85,
+    0x81,0x7e,0x7a,0x78,0x75,0x73,0x73,0x72,0x73,0x75,0x77,0x7a,0x7d,0x80,0x84,
+    0x87,0x89,0x8b,0x8d,0x8d,0x8d,0x8d,0x8b,0x89,0x86,0x82,0x7f,0x7c,0x79,0x76,
+    0x74,0x73,0x73,0x73,0x74,0x76,0x79,0x7c,0x7f,0x82,0x85,0x88,0x8b,0x8c,0x8d,
+    0x8d,0x8d,0x8c,0x8a,0x87,0x84,0x81,0x7d,0x7a,0x77,0x75,0x74,0x73,0x73,0x74,
+    0x76,0x78,0x7b,0x7e,0x81,0x84,0x87,0x8a,0x8c,0x8d,0x8e,0x8e,0x8d,0x8b,0x89,
+    0x86,0x83,0x80,0x7d,0x7a,0x77,0x75,0x74,0x74,0x75,0x76,0x78,0x7a,0x7d,0x80,
+    0x83,0x86,0x89,0x8b,0x8d,0x8d,0x8e,0x8d,0x8c,0x8a,0x87,0x84,0x81,0x7e,0x7b,
+    0x78,0x76,0x75,0x74,0x74,0x75,0x77,0x79,0x7b,0x7e,0x81,0x84,0x87,0x8a,0x8b,
+    0x8c,0x8d,0x8c,0x8b,0x8a,0x88,0x85,0x82,0x7f,0x7c,0x79,0x77,0x75,0x74,0x74,
+    0x74,0x76,0x78,0x7a,0x7d,0x80,0x83,0x85,0x88,0x8a,0x8b,0x8c,0x8c,0x8b,0x8a,
+    0x88,0x86,0x83,0x80,0x7d,0x7b,0x78,0x76,0x75,0x74,0x74,0x75,0x77,0x79,0x7c,
+    0x7f,0x82,0x85,0x87,0x89,0x8b,0x8c,0x8c,0x8c,0x8b,0x89,0x87,0x85,0x82,0x7f,
+    0x7c,0x7a,0x78,0x76,0x75,0x75,0x76,0x77,0x79,0x7b,0x7e,0x81,0x84,0x86,0x88,
+    0x8a,0x8b,0x8c,0x8c,0x8b,0x8a,0x88,0x86,0x83,0x80,0x7d,0x7b,0x78,0x77,0x75,
+    0x75,0x75,0x76,0x78,0x7a,0x7c,0x7f,0x82,0x84,0x87,0x89,0x8a,0x8b,0x8b,0x8b,
+    0x8a,0x88,0x86,0x84,0x81,0x7e,0x7c,0x7a,0x78,0x76,0x75,0x75,0x76,0x77,0x79,
+    0x7b,0x7e,0x81,0x83,0x86,0x88,0x89,0x8a,0x8b,0x8b,0x8a,0x89,0x87,0x85,0x82,
+    0x80,0x7d,0x7b,0x78,0x77,0x76,0x75,0x76,0x76,0x78,0x7a,0x7d,0x7f,0x82,0x84,
+    0x87,0x88,0x89,0x8a,0x8a,0x8a,0x89,0x87,0x85,0x83,0x81,0x7e,0x7c,0x79,0x78,
+    0x76,0x76,0x76,0x76,0x78,0x7a,0x7c,0x7e,0x81,0x83,0x86,0x87,0x89,0x8a,0x8a,
+    0x8a,0x89,0x88,0x86,0x84,0x82,0x7f,0x7d,0x7b,0x79,0x77,0x76,0x76,0x76,0x77,
+    0x79,0x7b,0x7d,0x80,0x82,0x84,0x86,0x88,0x89,0x89,0x89,0x89,0x88,0x87,0x85,
+    0x83,0x80,0x7e,0x7c,0x7a,0x78,0x77,0x76,0x76,0x77,0x79,0x7a,0x7d,0x7f,0x81,
+    0x84,0x86,0x87,0x89,0x89,0x8a,0x89,0x89,0x87,0x86,0x84,0x82,0x7f,0x7d,0x7b,
+    0x79,0x78,0x77,0x77,0x77,0x78,0x7a,0x7c,0x7e,0x81,0x83,0x85,0x87,0x88,0x89,
+    0x89,0x89,0x89,0x88,0x86,0x85,0x83,0x80,0x7e,0x7c,0x7a,0x79,0x78,0x77,0x78,
+    0x78,0x7a,0x7b,0x7e,0x80,0x82,0x84,0x86,0x87,0x88,0x89,0x89,0x89,0x88,0x87,
+    0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7a,0x79,0x78,0x78,0x78,0x79,0x7b,0x7d,0x7f,
+    0x81,0x83,0x85,0x87,0x88,0x89,0x89,0x89,0x88,0x87,0x86,0x84,0x83,0x81,0x7f,
+    0x7d,0x7b,0x7a,0x79,0x78,0x79,0x7a,0x7b,0x7d,0x7f,0x81,0x83,0x84,0x86,0x87,
+    0x88,0x89,0x89,0x88,0x87,0x86,0x85,0x83,0x81,0x7f,0x7d,0x7c,0x7a,0x79,0x79,
+    0x79,0x79,0x7a,0x7c,0x7e,0x7f,0x81,0x83,0x85,0x86,0x87,0x88,0x88,0x88,0x87,
+    0x86,0x85,0x83,0x82,0x80,0x7e,0x7c,0x7b,0x7a,0x79,0x79,0x79,0x7a,0x7b,0x7d,
+    0x7f,0x81,0x82,0x84,0x85,0x86,0x87,0x88,0x88,0x87,0x86,0x85,0x84,0x82,0x81,
+    0x7f,0x7d,0x7c,0x7b,0x7a,0x79,0x79,0x7a,0x7b,0x7d,0x7e,0x80,0x82,0x84,0x85,
+    0x86,0x87,0x88,0x88,0x87,0x87,0x86,0x85,0x83,0x82,0x80,0x7f,0x7d,0x7c,0x7b,
+    0x7a,0x7a,0x7a,0x7b,0x7d,0x7e,0x80,0x82,0x83,0x85,0x86,0x87,0x87,0x87,0x87,
+    0x87,0x86,0x85,0x84,0x82,0x81,0x7f,0x7e,0x7c,0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,
+    0x7d,0x7f,0x80,0x82,0x84,0x85,0x86,0x86,0x87,0x87,0x86,0x86,0x85,0x84,0x82,
+    0x81,0x7f,0x7e,0x7c,0x7b,0x7a,0x7a,0x7a,0x7a,0x7b,0x7c,0x7e,0x80,0x81,0x83,
+    0x84,0x85,0x86,0x86,0x86,0x86,0x85,0x85,0x84,0x83,0x81,0x80,0x7e,0x7d,0x7c,
+    0x7b,0x7a,0x7a,0x7a,0x7b,0x7c,0x7d,0x7f,0x80,0x82,0x83,0x84,0x85,0x86,0x86,
+    0x86,0x86,0x85,0x84,0x83,0x82,0x81,0x7f,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7b,
+    0x7c,0x7d,0x7f,0x80,0x82,0x83,0x84,0x85,0x86,0x86,0x86,0x86,0x85,0x85,0x84,
+    0x83,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7b,0x7b,0x7b,0x7c,0x7d,0x7e,0x80,0x81,
+    0x82,0x83,0x84,0x85,0x85,0x85,0x85,0x85,0x84,0x84,0x83,0x82,0x80,0x7f,0x7e,
+    0x7d,0x7c,0x7b,0x7b,0x7b,0x7c,0x7d,0x7e,0x7f,0x80,0x82,0x83,0x84,0x84,0x85,
+    0x85,0x85,0x85,0x84,0x83,0x83,0x82,0x81,0x7f,0x7e,0x7d,0x7c,0x7c,0x7b,0x7b,
+    0x7c,0x7c,0x7d,0x7e,0x80,0x81,0x82,0x83,0x84,0x84,0x84,0x84,0x84,0x84,0x83,
+    0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7c,0x7c,0x7c,0x7c,0x7c,0x7d,0x7e,0x7f,
+    0x81,0x82,0x83,0x84,0x84,0x84,0x85,0x84,0x84,0x84,0x83,0x82,0x82,0x81,0x80,
+    0x7f,0x7e,0x7d,0x7c,0x7c,0x7c,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,
+    0x84,0x84,0x84,0x84,0x84,0x83,0x83,0x82,0x81,0x80,0x7f,0x7e,0x7d,0x7d,0x7d,
+    0x7d,0x7d,0x7d,0x7e,0x7f,0x80,0x81,0x82,0x83,0x84,0x84,0x84,0x84,0x84,0x84,
+    0x83,0x83,0x82,0x81,0x80,0x7f,0x7f,0x7e,0x7d,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,
+    0x80,0x81,0x82,0x82,0x83,0x83,0x84,0x84,0x84,0x83,0x83,0x83,0x82,0x81,0x81,
+    0x80,0x7f,0x7e,0x7e,0x7d,0x7d,0x7d,0x7d,0x7e,0x7f,0x7f,0x80,0x81,0x82,0x83,
+    0x83,0x84,0x84,0x84,0x83,0x83,0x83,0x82,0x82,0x81,0x80,0x7f,0x7f,0x7e,0x7e,
+    0x7d,0x7d,0x7d,0x7e,0x7e,0x7f,0x80,0x81,0x82,0x82,0x83,0x83,0x83,0x83,0x83,
+    0x83,0x83,0x82,0x82,0x81,0x80,0x80,0x7f,0x7e,0x7e,0x7e,0x7d,0x7e,0x7e,0x7e,
+    0x7f,0x80,0x81,0x81,0x82,0x83,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x82,0x81,
+    0x81,0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x81,0x82,
+    0x82,0x83,0x83,0x83,0x83,0x83,0x82,0x82,0x82,0x81,0x81,0x80,0x80,0x7f,0x7e,
+    0x7e,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x81,0x81,0x82,0x82,0x83,0x83,0x83,
+    0x83,0x82,0x82,0x82,0x81,0x81,0x80,0x80,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7e,
+    0x7f,0x7f,0x80,0x81,0x81,0x82,0x82,0x82,0x83,0x83,0x82,0x82,0x82,0x82,0x81,
+    0x81,0x80,0x80,0x7f,0x7f,0x7f,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x80,0x81,
+    0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x81,0x80,0x80,0x80,0x7f,
+    0x7f,0x7e,0x7e,0x7e,0x7e,0x7f,0x7f,0x80,0x80,0x81,0x81,0x82,0x82,0x82,0x82,
+    0x82,0x82,0x82,0x81,0x81,0x81,0x81,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,
+    0x7f,0x7f,0x80,0x80,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,
+    0x81,0x81,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,
+    0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x81,0x80,0x80,
+    0x80,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,0x81,0x81,0x82,0x82,0x82,
+    0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7f,
+    0x7f,0x7f,0x80,0x80,0x80,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x82,0x82,0x81,
+    0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x7f,0x7f,0x7f,0x7f,0x80,0x80,0x80,
+    0x81,0x81,0x81,0x81,0x82,0x82,0x82,0x82,0x81,0x81,0x81,0x81,0x81,0x80,0x80,
+    0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,
+    0x81,0x82,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,
+    0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
+    0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
+    0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,
+    0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,
+    0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,
+    0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
+    0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,
+    0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,
+    0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,
+    0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x81,0x80,0x80,0x80,0x80,0x80,0x80,
+    0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x80,0x81,0x81,0x81,0x81,0x81,0x81,0x81,
+    0x00
+};
\ No newline at end of file