//------------------------------------------------- // Shenzhen TOPWAY Technology Co.,Ltd. // System: AT89S52(12MHz) // LCD Module: Color 7" TFT 800x480 // Display Size: 800(x3)x480 (16bit color) // Driver/Controller: T8010 // Interface: generic mode 1bit_Add 16bit_data // with touch panel // by: Kenny // // rev 01: 2011-08-05 // new // example program to show command and function // without touch panel function // rev 02: 2012-11-23 // MCU to TFT connection change // - Data Port change to 0x8000 // - use IO as CS // //------------------------------------------------- #include #include #include #include #define uchar unsigned char // 8bit, 0 ~ 255 #define uint unsigned int // 16bit, 0 ~ 65,535 #define ulong unsigned long // 32bit, 0 ~ 4,294,967,295 uchar xdata CmdPort _at_ 0x0000; uchar xdata DataPort _at_ 0x8000; // using 8051 RAM bus as // LCD.RS connect 8051.A15 // LCD.CS connect 8051.P3.2 // LCD.WR connect 8051.WR // LCD.RD connect 8051.RD // i.e. // pointer 0xnnn0 for RS=0 // pointer 0xnnn1 for RS=1 #define LCD_Data_Hi P1 // using IO as LCD.D8~LCD.D15 data bus sbit _CS = P3^2; // _CS uchar bdata btemp; // create a bit accessable byte sbit btemp_b0 = btemp^0; sbit btemp_b3 = btemp^3; sbit btemp_b7 = btemp^7; uchar BL_Brightness; // 0~15 value (0%~100%) uchar TP_x; // TP data after touch uchar TP_y; #define RED 0xf800 #define GREEN 0x07e0 #define BLUE 0x001f #define YELLOW 0xffe0 #define CYAN 0x07ff #define MAGENTA 0xf81f #define BLACK 0x0000 #define WHITE 0xffff #define mid_re 0x8000 #define mid_or 0x8200 #define mid_ye 0x8400 #define mid_yg 0x4400 #define mid_gr 0x0400 #define mid_gc 0x0408 #define mid_cy 0x0410 #define mid_cb 0x0210 #define mid_bl 0x0010 #define mid_bm 0x4010 #define mid_ma 0x8010 #define mid_mr 0x8010 #define GRAY00 0x0000 #define GRAY01 0x1082 #define GRAY02 0x2104 #define GRAY03 0x3186 #define GRAY04 0x4208 #define GRAY05 0x528a #define GRAY06 0x630c #define GRAY07 0x738e #define GRAY08 0x8410 #define GRAY09 0x9492 #define GRAY10 0xa514 #define GRAY11 0xb596 #define GRAY12 0xc618 #define GRAY13 0xd69a #define GRAY14 0xe71c #define GRAY15 0xffff uchar code icon_F[]={ 0xFF,0xFE,0x80,0x02,0x80,0x02,0x8F,0xF2,0x88,0x1E,0x88,0x00,0x8F,0xC0,0x80,0x40, 0x80,0x40,0x8F,0xC0,0x88,0x00,0x88,0x00,0x88,0x00,0x88,0x00,0xF8,0x00,0x00,0x00 }; uchar code icon_TOPWAY[]={ // 56x32 in size 0x00,0x00,0x00,0x00,0x00,0x0A,0xAA,0x00,0x00,0x00,0x00,0x05,0x55,0x00,0x00,0x00, 0x00,0x00,0xAA,0xA8,0x3F,0x00,0x00,0x00,0x15,0x55,0x43,0xFF,0x00,0x00,0x02,0xAA, 0xAA,0x0F,0xFF,0x00,0x00,0x55,0x55,0x54,0x7F,0xFF,0x00,0xAA,0xAA,0xAA,0xA1,0xFF, 0xFF,0x55,0x55,0x55,0x55,0x47,0xFF,0xFF,0x00,0x00,0x2A,0xAA,0x9F,0xFF,0xFF,0x00, 0x00,0x05,0x54,0x3F,0xFF,0xFF,0x00,0x00,0x0A,0xA8,0xFF,0xFF,0xFF,0x00,0x00,0x15, 0x53,0xFF,0xFF,0xFF,0x00,0x00,0x0A,0xA7,0xFF,0xFF,0xFF,0x00,0x00,0x15,0x4F,0xFF, 0xFF,0xFF,0x00,0x00,0x2A,0x9F,0xFF,0xFF,0xFF,0x00,0x00,0x55,0x3F,0xFF,0xFF,0xFF, 0x00,0x00,0x2A,0x7F,0xFF,0xFF,0xFF,0x00,0x00,0x54,0xFF,0xFF,0xFF,0xFF,0x00,0x00, 0xA9,0xFF,0xFF,0xFF,0xFF,0x00,0x01,0x53,0xFF,0xFF,0xFF,0xFF,0x00,0x00,0xA7,0xFF, 0xFF,0xFF,0xFF,0x00,0x01,0x4F,0xFF,0xFF,0xFF,0xFF,0x00,0x02,0x9F,0xFF,0xFF,0xFF, 0xFF,0x00,0x05,0x3F,0xFF,0xFF,0xFF,0xFF,0x00,0x02,0x7F,0xFF,0xFF,0xFF,0xFF,0x00, 0x04,0x7F,0xFF,0xFF,0xFF,0xFF,0x00,0x08,0xE0,0xC6,0x1B,0xBB,0xBB,0x00,0x05,0xFB, 0xBA,0xEB,0xB5,0xD7,0x00,0x09,0xFB,0xBA,0x1A,0xA0,0xEF,0x00,0x13,0xFB,0xC6,0xFD, 0x6E,0xEF,0x00,0x27,0xFF,0xFF,0xFF,0xFF,0xFF,0x00,0x07,0xFF,0xFF,0xFF,0xFF,0xFF }; unsigned int code color_circle[]={ 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x00e0,0x12a0,0x12a0,0x12a0, 0x12a0,0x12a0,0x1aa0,0x08e0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x1380,0x1d40,0x1d40, 0x2540,0x2540,0x2540,0x2540,0x2e20,0x3fe0,0x3fe0,0x47e0, 0x47e0,0x47e0,0x4fe0,0x3e20,0x3540,0x3540,0x3540,0x3d40, 0x3d40,0x3d40,0x2b80,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0aa0,0x0aa0, 0x1461,0x27e1,0x27e1,0x27e1,0x2fe1,0x2fe1,0x2fe1,0x2fe1, 0x37e1,0x37e1,0x37e0,0x3fe0,0x3fe0,0x3fe0,0x47e0,0x47e0, 0x47e0,0x47e0,0x4fe0,0x4fe0,0x4fe0,0x57e0,0x57e0,0x57e0, 0x5fe0,0x5fe0,0x5fe0,0x67e0,0x67e0,0x67e0,0x6fe0,0x3c60, 0x22a0,0x22a0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0b81,0x1541,0x1541,0x1fe2,0x1fe2, 0x27e2,0x27e2,0x27e2,0x27e1,0x2fe1,0x2fe1,0x2fe1,0x37e1, 0x37e1,0x37e1,0x37e1,0x3fe0,0x3fe0,0x3fe0,0x47e0,0x47e0, 0x47e0,0x4fe0,0x4fe0,0x4fe0,0x57e0,0x57e0,0x57e0,0x5fe0, 0x5fe0,0x5fe0,0x67e0,0x67e0,0x67e0,0x6fe0,0x6fe0,0x6fe0, 0x77e0,0x77e0,0x4d40,0x5540,0x3380,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00e0,0x02a1, 0x0c61,0x17e3,0x17e3,0x17e3,0x1fe2,0x1fe2,0x1fe2,0x1fe2, 0x27e2,0x27e2,0x27e2,0x2fe2,0x2fe2,0x2fe1,0x2fe1,0x37e1, 0x37e1,0x37e1,0x3fe1,0x3fe1,0x3fe1,0x3fe0,0x47e0,0x47e0, 0x47e0,0x4fe0,0x4fe0,0x4fe0,0x57e0,0x57e0,0x57e0,0x5fe0, 0x5fe0,0x5fe0,0x67e0,0x67e0,0x67e0,0x6fe0,0x6fe0,0x6fe0, 0x77e0,0x77e0,0x7fe0,0x7fe0,0x7fe0,0x87e0,0x87e0,0x4c60, 0x2aa0,0x08e0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x01c0,0x0542,0x0e22,0x0fe3, 0x17e3,0x17e3,0x17e3,0x17e3,0x1fe3,0x1fe2,0x1fe2,0x27e2, 0x27e2,0x27e2,0x27e2,0x2fe2,0x2fe2,0x2fe2,0x37e1,0x37e1, 0x37e1,0x37e1,0x3fe1,0x3fe1,0x3fe1,0x47e1,0x47e0,0x47e0, 0x4fe0,0x4fe0,0x4fe0,0x57e0,0x57e0,0x57e0,0x5fe0,0x5fe0, 0x5fe0,0x67e0,0x67e0,0x67e0,0x6fe0,0x6fe0,0x6fe0,0x77e0, 0x77e0,0x77e0,0x7fe0,0x7fe0,0x87e0,0x87e0,0x87e0,0x8fe0, 0x8fe0,0x6e20,0x6540,0x21c0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x01c1,0x02a1,0x0623,0x0fe4,0x0fe4,0x0fe3,0x0fe3, 0x17e3,0x17e3,0x17e3,0x1fe3,0x1fe3,0x1fe3,0x1fe3,0x27e2, 0x27e2,0x27e2,0x27e2,0x2fe2,0x2fe2,0x2fe2,0x37e2,0x37e1, 0x37e1,0x37e1,0x3fe1,0x3fe1,0x3fe1,0x47e1,0x47e1,0x47e0, 0x4fe0,0x4fe0,0x4fe0,0x57e0,0x57e0,0x57e0,0x5fe0,0x5fe0, 0x5fe0,0x67e0,0x67e0,0x67e0,0x6fe0,0x6fe0,0x77e0,0x77e0, 0x77e0,0x7fe0,0x7fe0,0x7fe0,0x87e0,0x87e0,0x8fe0,0x8fe0, 0x8fe0,0x97e0,0x97e0,0x97e0,0x7e20,0x32a0,0x21c0,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0543,0x0704,0x07e4,0x0fe4,0x0fe4,0x0fe4,0x0fe4,0x17e4, 0x17e3,0x17e3,0x17e3,0x1fe3,0x1fe3,0x1fe3,0x1fe3,0x27e3, 0x27e2,0x27e2,0x2fe2,0x2fe2,0x2fe2,0x2fe2,0x37e2,0x37e2, 0x37e2,0x3fe1,0x3fe1,0x3fe1,0x47e1,0x47e1,0x47e1,0x47e1, 0x4fe0,0x4fe0,0x4fe0,0x57e0,0x57e0,0x57e0,0x5fe0,0x5fe0, 0x67e0,0x67e0,0x67e0,0x6fe0,0x6fe0,0x6fe0,0x77e0,0x77e0, 0x77e0,0x7fe0,0x7fe0,0x87e0,0x87e0,0x87e0,0x8fe0,0x8fe0, 0x97e0,0x97e0,0x97e0,0x9fe0,0x9fe0,0xa7e0,0x9700,0x6d40, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x01c1,0x0462,0x07e5, 0x07e4,0x07e4,0x07e4,0x0fe4,0x0fe4,0x0fe4,0x0fe4,0x17e4, 0x17e4,0x17e3,0x17e3,0x1fe3,0x1fe3,0x1fe3,0x27e3,0x27e3, 0x27e3,0x27e3,0x2fe3,0x2fe2,0x2fe2,0x2fe2,0x37e2,0x37e2, 0x37e2,0x3fe2,0x3fe2,0x3fe1,0x47e1,0x47e1,0x47e1,0x4fe1, 0x4fe1,0x4fe1,0x57e0,0x57e0,0x57e0,0x5fe0,0x5fe0,0x5fe0, 0x67e0,0x67e0,0x67e0,0x6fe0,0x6fe0,0x6fe0,0x77e0,0x77e0, 0x7fe0,0x7fe0,0x7fe0,0x87e0,0x87e0,0x87e0,0x8fe0,0x8fe0, 0x97e0,0x97e0,0x9fe0,0x9fe0,0x9fe0,0xa7e0,0xa7e0,0xafe0, 0xafe0,0x6460,0x29c0,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0543,0x0704,0x07e5,0x07e5, 0x07e5,0x07e5,0x07e4,0x0fe4,0x0fe4,0x0fe4,0x0fe4,0x17e4, 0x17e4,0x17e4,0x1fe4,0x1fe3,0x1fe3,0x1fe3,0x27e3,0x27e3, 0x27e3,0x27e3,0x2fe3,0x2fe3,0x2fe2,0x37e2,0x37e2,0x37e2, 0x3fe2,0x3fe2,0x3fe2,0x3fe2,0x47e1,0x47e1,0x47e1,0x4fe1, 0x4fe1,0x4fe1,0x57e1,0x57e1,0x57e0,0x5fe0,0x5fe0,0x5fe0, 0x67e0,0x67e0,0x6fe0,0x6fe0,0x6fe0,0x77e0,0x77e0,0x77e0, 0x7fe0,0x7fe0,0x87e0,0x87e0,0x87e0,0x8fe0,0x8fe0,0x97e0, 0x97e0,0x97e0,0x9fe0,0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0, 0xafe0,0xb7e0,0xa700,0x7d40,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x01c1,0x0463,0x07e5,0x07e5,0x07e5,0x07e5,0x07e5, 0x07e5,0x07e5,0x07e5,0x0fe5,0x0fe4,0x0fe4,0x17e4,0x17e4, 0x17e4,0x17e4,0x1fe4,0x1fe4,0x1fe4,0x1fe3,0x27e3,0x27e3, 0x27e3,0x2fe3,0x2fe3,0x2fe3,0x2fe3,0x37e2,0x37e2,0x37e2, 0x3fe2,0x3fe2,0x3fe2,0x47e2,0x47e2,0x47e1,0x4fe1,0x4fe1, 0x4fe1,0x57e1,0x57e1,0x57e1,0x5fe1,0x5fe0,0x5fe0,0x67e0, 0x67e0,0x67e0,0x6fe0,0x6fe0,0x77e0,0x77e0,0x77e0,0x7fe0, 0x7fe0,0x7fe0,0x87e0,0x87e0,0x8fe0,0x8fe0,0x8fe0,0x97e0, 0x97e0,0x9fe0,0x9fe0,0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0, 0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0x6c60,0x29c0,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0544,0x0705,0x07e6,0x07e6,0x07e5,0x07e5,0x07e5,0x07e5, 0x07e5,0x07e5,0x0fe5,0x0fe5,0x0fe5,0x0fe5,0x17e4,0x17e4, 0x17e4,0x17e4,0x1fe4,0x1fe4,0x1fe4,0x27e4,0x27e4,0x27e3, 0x27e3,0x2fe3,0x2fe3,0x2fe3,0x37e3,0x37e3,0x37e3,0x37e2, 0x3fe2,0x3fe2,0x3fe2,0x47e2,0x47e2,0x47e2,0x4fe2,0x4fe1, 0x4fe1,0x57e1,0x57e1,0x57e1,0x5fe1,0x5fe1,0x5fe0,0x67e0, 0x67e0,0x6fe0,0x6fe0,0x6fe0,0x77e0,0x77e0,0x77e0,0x7fe0, 0x7fe0,0x87e0,0x87e0,0x87e0,0x8fe0,0x8fe0,0x97e0,0x97e0, 0x97e0,0x9fe0,0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0,0xafe0, 0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xb700,0x8d40, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x02a2,0x0625, 0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e5,0x07e5, 0x07e5,0x07e5,0x0fe5,0x0fe5,0x0fe5,0x0fe5,0x17e5,0x17e5, 0x17e4,0x17e4,0x1fe4,0x1fe4,0x1fe4,0x27e4,0x27e4,0x27e4, 0x27e4,0x2fe3,0x2fe3,0x2fe3,0x37e3,0x37e3,0x37e3,0x3fe3, 0x3fe3,0x3fe2,0x47e2,0x47e2,0x47e2,0x47e2,0x4fe2,0x4fe2, 0x57e2,0x57e1,0x57e1,0x5fe1,0x5fe1,0x5fe1,0x67e1,0x67e1, 0x67e0,0x6fe0,0x6fe0,0x6fe0,0x77e0,0x77e0,0x7fe0,0x7fe0, 0x7fe0,0x87e0,0x87e0,0x8fe0,0x8fe0,0x8fe0,0x97e0,0x97e0, 0x9fe0,0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0,0xafe0,0xb7e0, 0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0, 0xa620,0x4aa0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x01c1,0x0544,0x07e6,0x07e6, 0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6, 0x07e5,0x07e5,0x0fe5,0x0fe5,0x0fe5,0x0fe5,0x17e5,0x17e5, 0x17e5,0x1fe4,0x1fe4,0x1fe4,0x1fe4,0x27e4,0x27e4,0x27e4, 0x2fe4,0x2fe4,0x2fe3,0x2fe3,0x37e3,0x37e3,0x37e3,0x3fe3, 0x3fe3,0x3fe3,0x47e2,0x47e2,0x47e2,0x4fe2,0x4fe2,0x4fe2, 0x57e2,0x57e2,0x57e1,0x5fe1,0x5fe1,0x5fe1,0x67e1,0x67e1, 0x6fe1,0x6fe0,0x6fe0,0x77e0,0x77e0,0x77e0,0x7fe0,0x7fe0, 0x87e0,0x87e0,0x87e0,0x8fe0,0x8fe0,0x97e0,0x97e0,0x97e0, 0x9fe0,0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0,0xb7e0,0xb7e0, 0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0,0xd7e0, 0xdfe0,0xdfe0,0x9540,0x31c0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x00e0,0x02a2,0x07e7,0x07e7,0x07e7,0x07e7, 0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6, 0x07e6,0x07e6,0x0fe5,0x0fe5,0x0fe5,0x17e5,0x17e5,0x17e5, 0x17e5,0x1fe5,0x1fe5,0x1fe4,0x27e4,0x27e4,0x27e4,0x27e4, 0x2fe4,0x2fe4,0x2fe4,0x37e4,0x37e3,0x37e3,0x3fe3,0x3fe3, 0x3fe3,0x3fe3,0x47e3,0x47e3,0x4fe2,0x4fe2,0x4fe2,0x4fe2, 0x57e2,0x57e2,0x5fe2,0x5fe2,0x5fe1,0x67e1,0x67e1,0x67e1, 0x6fe1,0x6fe1,0x77e1,0x77e0,0x77e0,0x7fe0,0x7fe0,0x7fe0, 0x87e0,0x87e0,0x8fe0,0x8fe0,0x97e0,0x97e0,0x97e0,0x9fe0, 0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0,0xafe0,0xb7e0,0xb7e0, 0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0,0xd7e0, 0xdfe0,0xdfe0,0xe7e0,0xe7e0,0x4aa0,0x18e0,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0625,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7, 0x07e7,0x07e7,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6,0x07e6, 0x07e6,0x0fe6,0x0fe6,0x0fe6,0x0fe5,0x17e5,0x17e5,0x17e5, 0x17e5,0x1fe5,0x1fe5,0x1fe5,0x27e5,0x27e4,0x27e4,0x27e4, 0x2fe4,0x2fe4,0x2fe4,0x37e4,0x37e4,0x37e4,0x3fe3,0x3fe3, 0x3fe3,0x47e3,0x47e3,0x47e3,0x4fe3,0x4fe3,0x4fe2,0x57e2, 0x57e2,0x57e2,0x5fe2,0x5fe2,0x5fe2,0x67e1,0x67e1,0x6fe1, 0x6fe1,0x6fe1,0x77e1,0x77e1,0x77e0,0x7fe0,0x7fe0,0x87e0, 0x87e0,0x87e0,0x8fe0,0x8fe0,0x97e0,0x97e0,0x9fe0,0x9fe0, 0x9fe0,0xa7e0,0xa7e0,0xafe0,0xafe0,0xb7e0,0xb7e0,0xbfe0, 0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0,0xd7e0,0xdfe0, 0xdfe0,0xe7e0,0xe7e0,0xefe0,0xefe0,0xbe20,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x00e0,0x0626,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7, 0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e6,0x07e6,0x07e6, 0x07e6,0x0fe6,0x0fe6,0x0fe6,0x0fe6,0x17e6,0x17e5,0x17e5, 0x1fe5,0x1fe5,0x1fe5,0x1fe5,0x27e5,0x27e5,0x27e5,0x2fe4, 0x2fe4,0x2fe4,0x37e4,0x37e4,0x37e4,0x37e4,0x3fe4,0x3fe4, 0x3fe3,0x47e3,0x47e3,0x47e3,0x4fe3,0x4fe3,0x4fe3,0x57e2, 0x57e2,0x57e2,0x5fe2,0x5fe2,0x67e2,0x67e2,0x67e2,0x6fe1, 0x6fe1,0x6fe1,0x77e1,0x77e1,0x7fe1,0x7fe0,0x87e0,0x87e0, 0x87e0,0x8fe0,0x8fe0,0x8fe0,0x97e0,0x97e0,0x9fe0,0x9fe0, 0xa7e0,0xa7e0,0xafe0,0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0, 0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0,0xd7e0,0xdfe0,0xdfe0, 0xe7e0,0xe7e0,0xefe0,0xefe0,0xf7e0,0xf7e0,0xc620,0x18e0, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0626,0x07e8,0x07e8,0x07e8,0x07e7,0x07e7,0x07e7,0x07e7, 0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e6,0x07e6, 0x07e6,0x0fe6,0x0fe6,0x0fe6,0x17e6,0x17e6,0x17e6,0x17e6, 0x1fe5,0x1fe5,0x1fe5,0x1fe5,0x27e5,0x27e5,0x27e5,0x2fe5, 0x2fe5,0x2fe4,0x37e4,0x37e4,0x37e4,0x3fe4,0x3fe4,0x3fe4, 0x47e4,0x47e3,0x47e3,0x4fe3,0x4fe3,0x4fe3,0x57e3,0x57e3, 0x57e3,0x5fe2,0x5fe2,0x5fe2,0x67e2,0x67e2,0x6fe2,0x6fe2, 0x6fe1,0x77e1,0x77e1,0x77e1,0x7fe1,0x7fe1,0x87e1,0x87e0, 0x8fe0,0x8fe0,0x8fe0,0x97e0,0x97e0,0x9fe0,0x9fe0,0x9fe0, 0xa7e0,0xa7e0,0xafe0,0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0, 0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0,0xd7e0,0xdfe0,0xdfe0, 0xe7e0,0xefe0,0xefe0,0xf7e0,0xf7e0,0xffe0,0xffe0,0xc600, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0464,0x07e8, 0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e7, 0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7, 0x07e7,0x0fe6,0x0fe6,0x0fe6,0x17e6,0x17e6,0x17e6,0x17e6, 0x1fe6,0x1fe6,0x1fe6,0x27e5,0x27e5,0x27e5,0x2fe5,0x2fe5, 0x2fe5,0x2fe5,0x37e5,0x37e4,0x37e4,0x3fe4,0x3fe4,0x3fe4, 0x47e4,0x47e4,0x47e4,0x4fe3,0x4fe3,0x4fe3,0x57e3,0x57e3, 0x5fe3,0x5fe3,0x5fe3,0x67e2,0x67e2,0x67e2,0x6fe2,0x6fe2, 0x77e2,0x77e2,0x77e1,0x7fe1,0x7fe1,0x7fe1,0x87e1,0x87e1, 0x8fe1,0x8fe0,0x97e0,0x97e0,0x9fe0,0x9fe0,0x9fe0,0xa7e0, 0xa7e0,0xafe0,0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0, 0xc7e0,0xcfe0,0xcfe0,0xd7e0,0xd7e0,0xdfe0,0xdfe0,0xe7e0, 0xe7e0,0xefe0,0xf7e0,0xf7e0,0xffe0,0xffe0,0xffc0,0xffa0, 0xff80,0x8c20,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0384,0x07e8,0x07e8, 0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8, 0x07e8,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7, 0x0fe7,0x0fe7,0x0fe7,0x0fe6,0x17e6,0x17e6,0x17e6,0x1fe6, 0x1fe6,0x1fe6,0x1fe6,0x27e6,0x27e5,0x27e5,0x2fe5,0x2fe5, 0x2fe5,0x37e5,0x37e5,0x37e5,0x3fe5,0x3fe4,0x3fe4,0x3fe4, 0x47e4,0x47e4,0x4fe4,0x4fe4,0x4fe4,0x57e3,0x57e3,0x57e3, 0x5fe3,0x5fe3,0x5fe3,0x67e3,0x67e2,0x6fe2,0x6fe2,0x6fe2, 0x77e2,0x77e2,0x77e2,0x7fe1,0x7fe1,0x87e1,0x87e1,0x8fe1, 0x8fe1,0x8fe1,0x97e0,0x97e0,0x9fe0,0x9fe0,0xa7e0,0xa7e0, 0xafe0,0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xc7e0, 0xcfe0,0xcfe0,0xd7e0,0xd7e0,0xdfe0,0xdfe0,0xe7e0,0xe7e0, 0xefe0,0xefe0,0xf7e0,0xffe0,0xffe0,0xffe0,0xffa0,0xff80, 0xff60,0xff40,0x7320,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0465,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8, 0x07e8,0x07e8,0x07e8,0x07e7,0x07e7,0x07e7,0x07e7,0x07e7, 0x0fe7,0x0fe7,0x0fe7,0x0fe7,0x17e7,0x17e6,0x17e6,0x1fe6, 0x1fe6,0x1fe6,0x1fe6,0x27e6,0x27e6,0x27e6,0x2fe6,0x2fe5, 0x2fe5,0x37e5,0x37e5,0x37e5,0x3fe5,0x3fe5,0x3fe5,0x47e4, 0x47e4,0x47e4,0x4fe4,0x4fe4,0x4fe4,0x57e4,0x57e4,0x57e3, 0x5fe3,0x5fe3,0x67e3,0x67e3,0x67e3,0x6fe3,0x6fe2,0x6fe2, 0x77e2,0x77e2,0x7fe2,0x7fe2,0x87e2,0x87e1,0x87e1,0x8fe1, 0x8fe1,0x97e1,0x97e1,0x9fe0,0x9fe0,0x9fe0,0xa7e0,0xa7e0, 0xafe0,0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xc7e0, 0xcfe0,0xcfe0,0xd7e0,0xd7e0,0xdfe0,0xdfe0,0xe7e0,0xefe0, 0xefe0,0xf7e0,0xf7e0,0xffe0,0xffe0,0xffc0,0xff80,0xff60, 0xff40,0xff20,0xff00,0x8bc0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x01c2,0x0546,0x07e9,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8, 0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e7,0x07e7,0x07e7, 0x0fe7,0x0fe7,0x0fe7,0x17e7,0x17e7,0x17e7,0x17e7,0x1fe6, 0x1fe6,0x1fe6,0x27e6,0x27e6,0x27e6,0x2fe6,0x2fe6,0x2fe6, 0x2fe5,0x37e5,0x37e5,0x37e5,0x3fe5,0x3fe5,0x3fe5,0x47e5, 0x47e5,0x47e4,0x4fe4,0x4fe4,0x57e4,0x57e4,0x57e4,0x5fe4, 0x5fe3,0x5fe3,0x67e3,0x67e3,0x6fe3,0x6fe3,0x6fe3,0x77e3, 0x77e2,0x77e2,0x7fe2,0x7fe2,0x87e2,0x87e2,0x8fe1,0x8fe1, 0x8fe1,0x97e1,0x97e1,0x9fe1,0x9fe0,0xa7e0,0xa7e0,0xafe0, 0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xcfe0, 0xcfe0,0xd7e0,0xd7e0,0xdfe0,0xdfe0,0xe7e0,0xefe0,0xefe0, 0xf7e0,0xf7e0,0xffe0,0xffe0,0xffc0,0xffa0,0xff80,0xff60, 0xff20,0xff00,0xfee0,0xfec0,0xac60,0x3960,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x01c2,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e8,0x07e8,0x07e8, 0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8, 0x0fe7,0x0fe7,0x0fe7,0x17e7,0x17e7,0x17e7,0x17e7,0x1fe7, 0x1fe7,0x1fe7,0x27e6,0x27e6,0x27e6,0x2fe6,0x2fe6,0x2fe6, 0x37e6,0x37e6,0x37e6,0x3fe5,0x3fe5,0x3fe5,0x47e5,0x47e5, 0x47e5,0x4fe5,0x4fe5,0x4fe4,0x57e4,0x57e4,0x57e4,0x5fe4, 0x5fe4,0x5fe4,0x67e4,0x67e3,0x6fe3,0x6fe3,0x77e3,0x77e3, 0x77e3,0x7fe2,0x7fe2,0x7fe2,0x87e2,0x87e2,0x8fe2,0x8fe2, 0x97e1,0x97e1,0x9fe1,0x9fe1,0xa7e1,0xa7e1,0xafe0,0xafe0, 0xafe0,0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xcfe0,0xcfe0, 0xd7e0,0xd7e0,0xdfe0,0xdfe0,0xe7e0,0xe7e0,0xefe0,0xefe0, 0xf7e0,0xffe0,0xffe0,0xffc0,0xffa0,0xff80,0xff60,0xff40, 0xff20,0xff00,0xfec0,0xfec0,0xfea0,0xfe80,0x3960,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x01c2,0x0709,0x07ea,0x07ea,0x07e9,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9, 0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x07e8,0x0fe8, 0x0fe8,0x0fe8,0x0fe7,0x17e7,0x17e7,0x17e7,0x1fe7,0x1fe7, 0x1fe7,0x1fe7,0x27e7,0x27e7,0x27e6,0x2fe6,0x2fe6,0x2fe6, 0x37e6,0x37e6,0x37e6,0x3fe6,0x3fe5,0x3fe5,0x47e5,0x47e5, 0x47e5,0x4fe5,0x4fe5,0x4fe5,0x57e5,0x57e4,0x5fe4,0x5fe4, 0x5fe4,0x67e4,0x67e4,0x67e4,0x6fe3,0x6fe3,0x77e3,0x77e3, 0x7fe3,0x7fe3,0x7fe3,0x87e2,0x87e2,0x8fe2,0x8fe2,0x8fe2, 0x97e2,0x97e1,0x9fe1,0x9fe1,0xa7e1,0xa7e1,0xafe1,0xafe0, 0xb7e0,0xb7e0,0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xcfe0, 0xd7e0,0xd7e0,0xdfe0,0xe7e0,0xe7e0,0xefe0,0xefe0,0xf7e0, 0xffe0,0xffe0,0xffe0,0xffa0,0xff80,0xff60,0xff40,0xff20, 0xff00,0xfee0,0xfec0,0xfea0,0xfe80,0xfe60,0xe580,0x3960, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x01c2, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e8,0x07e8,0x07e8,0x07e8,0x0fe8, 0x0fe8,0x0fe8,0x0fe8,0x17e8,0x17e8,0x17e7,0x1fe7,0x1fe7, 0x1fe7,0x27e7,0x27e7,0x27e7,0x2fe7,0x2fe7,0x2fe6,0x2fe6, 0x37e6,0x37e6,0x3fe6,0x3fe6,0x3fe6,0x3fe6,0x47e6,0x47e5, 0x4fe5,0x4fe5,0x4fe5,0x57e5,0x57e5,0x57e5,0x5fe5,0x5fe4, 0x67e4,0x67e4,0x67e4,0x6fe4,0x6fe4,0x6fe4,0x77e3,0x77e3, 0x7fe3,0x7fe3,0x87e3,0x87e3,0x8fe3,0x8fe2,0x8fe2,0x97e2, 0x97e2,0x9fe2,0x9fe2,0xa7e1,0xa7e1,0xafe1,0xafe1,0xb7e1, 0xb7e1,0xbfe0,0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xcfe0,0xd7e0, 0xd7e0,0xdfe0,0xdfe0,0xe7e0,0xefe0,0xefe0,0xf7e0,0xf7e0, 0xffe0,0xffe0,0xffc0,0xffa0,0xff60,0xff40,0xff20,0xff00, 0xfee0,0xfec0,0xfea0,0xfe80,0xfe60,0xfe40,0xfe20,0xfe00, 0x3940,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x01c2,0x0709, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea, 0x07ea,0x07ea,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e8,0x07e8,0x0fe8, 0x0fe8,0x0fe8,0x17e8,0x17e8,0x17e8,0x17e8,0x1fe8,0x1fe7, 0x1fe7,0x27e7,0x27e7,0x27e7,0x2fe7,0x2fe7,0x2fe7,0x37e7, 0x37e6,0x37e6,0x3fe6,0x3fe6,0x3fe6,0x47e6,0x47e6,0x47e6, 0x4fe6,0x4fe5,0x4fe5,0x57e5,0x57e5,0x5fe5,0x5fe5,0x5fe5, 0x67e4,0x67e4,0x67e4,0x6fe4,0x6fe4,0x77e4,0x77e4,0x7fe4, 0x7fe3,0x7fe3,0x87e3,0x87e3,0x8fe3,0x8fe3,0x97e2,0x97e2, 0x9fe2,0x9fe2,0x9fe2,0xa7e2,0xa7e1,0xafe1,0xafe1,0xb7e1, 0xb7e1,0xbfe1,0xbfe0,0xc7e0,0xc7e0,0xcfe0,0xd7e0,0xd7e0, 0xdfe0,0xdfe0,0xe7e0,0xe7e0,0xefe0,0xf7e0,0xf7e0,0xffe0, 0xffe0,0xffc0,0xffa0,0xff80,0xff40,0xff20,0xff00,0xfee0, 0xfec0,0xfea0,0xfe80,0xfe60,0xfe40,0xfe20,0xfe20,0xfe00, 0xe540,0x3940,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x01c2,0x07eb,0x07eb, 0x07eb,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07e9,0x07e9,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x0fe9, 0x0fe8,0x0fe8,0x17e8,0x17e8,0x17e8,0x1fe8,0x1fe8,0x1fe8, 0x1fe8,0x27e7,0x27e7,0x27e7,0x2fe7,0x2fe7,0x2fe7,0x37e7, 0x37e7,0x37e7,0x3fe7,0x3fe6,0x3fe6,0x47e6,0x47e6,0x47e6, 0x4fe6,0x4fe6,0x57e6,0x57e5,0x57e5,0x5fe5,0x5fe5,0x5fe5, 0x67e5,0x67e5,0x6fe5,0x6fe4,0x77e4,0x77e4,0x77e4,0x7fe4, 0x7fe4,0x87e3,0x87e3,0x87e3,0x8fe3,0x8fe3,0x97e3,0x97e3, 0x9fe2,0x9fe2,0xa7e2,0xa7e2,0xafe2,0xafe2,0xb7e1,0xb7e1, 0xbfe1,0xbfe1,0xc7e1,0xc7e1,0xcfe0,0xcfe0,0xd7e0,0xd7e0, 0xdfe0,0xe7e0,0xe7e0,0xefe0,0xefe0,0xf7e0,0xffe0,0xffe0, 0xffc0,0xffa0,0xff80,0xff60,0xff40,0xff20,0xfee0,0xfec0, 0xfea0,0xfe80,0xfe60,0xfe60,0xfe20,0xfe20,0xfe00,0xfde0, 0xfdc0,0xfda0,0x3920,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0547,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07ea,0x07ea,0x07ea,0x07ea, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07e9, 0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x07e9,0x0fe9,0x0fe9, 0x0fe9,0x0fe9,0x17e8,0x17e8,0x17e8,0x1fe8,0x1fe8,0x1fe8, 0x27e8,0x27e8,0x27e8,0x2fe8,0x2fe7,0x2fe7,0x37e7,0x37e7, 0x37e7,0x3fe7,0x3fe7,0x3fe7,0x47e7,0x47e6,0x47e6,0x4fe6, 0x4fe6,0x4fe6,0x57e6,0x57e6,0x5fe6,0x5fe5,0x5fe5,0x67e5, 0x67e5,0x67e5,0x6fe5,0x6fe5,0x77e4,0x77e4,0x7fe4,0x7fe4, 0x7fe4,0x87e4,0x87e4,0x8fe3,0x8fe3,0x97e3,0x97e3,0x9fe3, 0x9fe3,0x9fe3,0xa7e2,0xa7e2,0xafe2,0xafe2,0xb7e2,0xb7e2, 0xbfe1,0xc7e1,0xc7e1,0xcfe1,0xcfe1,0xd7e0,0xd7e0,0xdfe0, 0xdfe0,0xe7e0,0xefe0,0xefe0,0xf7e0,0xf7e0,0xffe0,0xffe0, 0xffa0,0xff80,0xff60,0xff40,0xff20,0xff00,0xfee0,0xfec0, 0xfea0,0xfe80,0xfe60,0xfe40,0xfe20,0xfe00,0xfde0,0xfdc0, 0xfda0,0xfda0,0xaba0,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0466,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07ea, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea, 0x07ea,0x07ea,0x07ea,0x07e9,0x07e9,0x07e9,0x0fe9,0x0fe9, 0x0fe9,0x0fe9,0x17e9,0x17e9,0x17e9,0x1fe8,0x1fe8,0x1fe8, 0x27e8,0x27e8,0x27e8,0x2fe8,0x2fe8,0x2fe8,0x37e7,0x37e7, 0x37e7,0x3fe7,0x3fe7,0x3fe7,0x47e7,0x47e7,0x47e7,0x4fe6, 0x4fe6,0x4fe6,0x57e6,0x57e6,0x5fe6,0x5fe6,0x67e6,0x67e5, 0x67e5,0x6fe5,0x6fe5,0x6fe5,0x77e5,0x77e5,0x7fe4,0x7fe4, 0x87e4,0x87e4,0x8fe4,0x8fe4,0x8fe4,0x97e3,0x97e3,0x9fe3, 0x9fe3,0xa7e3,0xa7e3,0xafe2,0xafe2,0xb7e2,0xb7e2,0xbfe2, 0xbfe2,0xc7e1,0xc7e1,0xcfe1,0xd7e1,0xd7e1,0xdfe1,0xdfe0, 0xe7e0,0xe7e0,0xefe0,0xf7e0,0xf7e0,0xffe0,0xffe0,0xffc0, 0xff80,0xff60,0xff40,0xff20,0xff00,0xfee0,0xfec0,0xfea0, 0xfe80,0xfe60,0xfe40,0xfe20,0xfe00,0xfde0,0xfdc0,0xfdc0, 0xfd80,0xfd80,0xfd60,0x8ae0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0385,0x07ec,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07e9,0x0fe9,0x0fe9, 0x0fe9,0x17e9,0x17e9,0x17e9,0x1fe9,0x1fe9,0x1fe9,0x1fe8, 0x27e8,0x27e8,0x27e8,0x2fe8,0x2fe8,0x2fe8,0x37e8,0x37e8, 0x37e8,0x3fe7,0x3fe7,0x47e7,0x47e7,0x47e7,0x4fe7,0x4fe7, 0x4fe7,0x57e6,0x57e6,0x57e6,0x5fe6,0x5fe6,0x67e6,0x67e6, 0x67e6,0x6fe5,0x6fe5,0x77e5,0x77e5,0x7fe5,0x7fe5,0x7fe5, 0x87e4,0x87e4,0x8fe4,0x8fe4,0x97e4,0x97e4,0x9fe4,0x9fe3, 0xa7e3,0xa7e3,0xafe3,0xafe3,0xb7e3,0xb7e2,0xbfe2,0xbfe2, 0xc7e2,0xc7e2,0xcfe2,0xcfe1,0xd7e1,0xd7e1,0xdfe1,0xe7e1, 0xe7e0,0xefe0,0xf7e0,0xf7e0,0xffe0,0xffe0,0xffc0,0xffa0, 0xff80,0xff60,0xff20,0xff00,0xfee0,0xfec0,0xfea0,0xfe80, 0xfe60,0xfe40,0xfe20,0xfe00,0xfde0,0xfde0,0xfdc0,0xfda0, 0xfd80,0xfd60,0xfd40,0xfd40,0x7240,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0466,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07ea,0x07ea,0x07ea, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x0fea,0x0fea, 0x0fe9,0x17e9,0x17e9,0x17e9,0x1fe9,0x1fe9,0x1fe9,0x27e9, 0x27e9,0x27e9,0x2fe8,0x2fe8,0x2fe8,0x2fe8,0x37e8,0x37e8, 0x3fe8,0x3fe8,0x3fe8,0x47e7,0x47e7,0x47e7,0x4fe7,0x4fe7, 0x57e7,0x57e7,0x57e7,0x5fe6,0x5fe6,0x5fe6,0x67e6,0x67e6, 0x6fe6,0x6fe6,0x77e6,0x77e5,0x77e5,0x7fe5,0x7fe5,0x87e5, 0x87e5,0x8fe5,0x8fe4,0x8fe4,0x97e4,0x97e4,0x9fe4,0x9fe4, 0xa7e4,0xa7e3,0xafe3,0xafe3,0xb7e3,0xb7e3,0xbfe3,0xbfe2, 0xc7e2,0xcfe2,0xcfe2,0xd7e2,0xd7e1,0xdfe1,0xe7e1,0xe7e1, 0xefe1,0xefe1,0xf7e0,0xffe0,0xffe0,0xffc0,0xffa0,0xff80, 0xff60,0xff40,0xff00,0xfee0,0xfec0,0xfea0,0xfe80,0xfe60, 0xfe40,0xfe20,0xfe00,0xfe00,0xfdc0,0xfdc0,0xfda0,0xfd80, 0xfd60,0xfd40,0xfd40,0xfd20,0xfd00,0x8ac0,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x07eb,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb, 0x07ea,0x07ea,0x07ea,0x07ea,0x07ea,0x0fea,0x0fea,0x0fea, 0x0fea,0x17ea,0x17ea,0x17e9,0x1fe9,0x1fe9,0x1fe9,0x27e9, 0x27e9,0x27e9,0x2fe9,0x2fe9,0x2fe9,0x37e8,0x37e8,0x37e8, 0x3fe8,0x3fe8,0x3fe8,0x47e8,0x47e8,0x4fe7,0x4fe7,0x4fe7, 0x57e7,0x57e7,0x57e7,0x5fe7,0x5fe7,0x67e6,0x67e6,0x67e6, 0x6fe6,0x6fe6,0x77e6,0x77e6,0x7fe6,0x7fe5,0x7fe5,0x87e5, 0x87e5,0x8fe5,0x8fe5,0x97e5,0x97e4,0x9fe4,0x9fe4,0xa7e4, 0xa7e4,0xafe4,0xafe3,0xb7e3,0xb7e3,0xbfe3,0xbfe3,0xc7e3, 0xc7e2,0xcfe2,0xd7e2,0xd7e2,0xdfe2,0xdfe2,0xe7e1,0xe7e1, 0xefe1,0xf7e1,0xf7e1,0xffe0,0xffe0,0xffc0,0xff80,0xff60, 0xff40,0xff20,0xff00,0xfee0,0xfea0,0xfe80,0xfe60,0xfe40, 0xfe20,0xfe20,0xfe00,0xfde0,0xfdc0,0xfda0,0xfd80,0xfd60, 0xfd60,0xfd40,0xfd20,0xfd00,0xfd00,0xfce0,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x00e1,0x062a,0x07ed,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07ea,0x07ea,0x0fea,0x0fea,0x0fea, 0x17ea,0x17ea,0x17ea,0x17ea,0x1fea,0x1fea,0x1fe9,0x27e9, 0x27e9,0x27e9,0x2fe9,0x2fe9,0x2fe9,0x37e9,0x37e9,0x37e8, 0x3fe8,0x3fe8,0x47e8,0x47e8,0x47e8,0x4fe8,0x4fe8,0x4fe8, 0x57e7,0x57e7,0x5fe7,0x5fe7,0x5fe7,0x67e7,0x67e7,0x6fe7, 0x6fe6,0x6fe6,0x77e6,0x77e6,0x7fe6,0x7fe6,0x87e6,0x87e5, 0x8fe5,0x8fe5,0x97e5,0x97e5,0x9fe5,0x9fe5,0xa7e4,0xa7e4, 0xafe4,0xafe4,0xb7e4,0xb7e4,0xbfe3,0xbfe3,0xc7e3,0xc7e3, 0xcfe3,0xcfe3,0xd7e2,0xdfe2,0xdfe2,0xe7e2,0xe7e2,0xefe1, 0xf7e1,0xf7e1,0xffe1,0xffe1,0xffc0,0xffa0,0xff60,0xff40, 0xff20,0xff00,0xfee0,0xfec0,0xfea0,0xfe80,0xfe60,0xfe40, 0xfe20,0xfe00,0xfde0,0xfdc0,0xfda0,0xfd80,0xfd60,0xfd60, 0xfd40,0xfd20,0xfd00,0xfd00,0xfce0,0xfcc0,0xc3a0,0x1880, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x062a,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07eb,0x07eb,0x07eb,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x0feb,0x0fea,0x0fea, 0x17ea,0x17ea,0x17ea,0x1fea,0x1fea,0x1fea,0x27ea,0x27ea, 0x27e9,0x2fe9,0x2fe9,0x2fe9,0x37e9,0x37e9,0x37e9,0x3fe9, 0x3fe9,0x3fe8,0x47e8,0x47e8,0x47e8,0x4fe8,0x4fe8,0x57e8, 0x57e8,0x57e8,0x5fe7,0x5fe7,0x67e7,0x67e7,0x67e7,0x6fe7, 0x6fe7,0x77e7,0x77e6,0x7fe6,0x7fe6,0x7fe6,0x87e6,0x87e6, 0x8fe6,0x8fe5,0x97e5,0x97e5,0x9fe5,0x9fe5,0xa7e5,0xa7e5, 0xafe4,0xafe4,0xb7e4,0xb7e4,0xbfe4,0xbfe4,0xc7e3,0xcfe3, 0xcfe3,0xd7e3,0xd7e3,0xdfe2,0xe7e2,0xe7e2,0xefe2,0xefe2, 0xf7e2,0xffe1,0xffe1,0xffc1,0xffa1,0xff80,0xff40,0xff20, 0xff00,0xfee0,0xfec0,0xfea0,0xfe80,0xfe60,0xfe40,0xfe20, 0xfe00,0xfde0,0xfdc0,0xfda0,0xfd80,0xfd80,0xfd60,0xfd40, 0xfd20,0xfd00,0xfd00,0xfce0,0xfcc0,0xfcc0,0xfca0,0xc380, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x00e1,0x062a, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07eb,0x07eb, 0x07eb,0x07eb,0x07eb,0x07eb,0x07eb,0x0feb,0x0feb,0x0feb, 0x17eb,0x17ea,0x17ea,0x1fea,0x1fea,0x1fea,0x27ea,0x27ea, 0x27ea,0x2fea,0x2fea,0x2fe9,0x37e9,0x37e9,0x37e9,0x3fe9, 0x3fe9,0x3fe9,0x47e9,0x47e9,0x4fe9,0x4fe8,0x4fe8,0x57e8, 0x57e8,0x5fe8,0x5fe8,0x5fe8,0x67e8,0x67e7,0x6fe7,0x6fe7, 0x77e7,0x77e7,0x77e7,0x7fe7,0x7fe6,0x87e6,0x87e6,0x8fe6, 0x8fe6,0x97e6,0x97e6,0x9fe5,0x9fe5,0xa7e5,0xa7e5,0xafe5, 0xafe5,0xb7e5,0xb7e4,0xbfe4,0xbfe4,0xc7e4,0xc7e4,0xcfe4, 0xd7e3,0xd7e3,0xdfe3,0xdfe3,0xe7e3,0xefe2,0xefe2,0xf7e2, 0xffe2,0xffe2,0xffc1,0xffa1,0xff81,0xff61,0xff21,0xff00, 0xfee0,0xfec0,0xfea0,0xfe80,0xfe60,0xfe40,0xfe20,0xfe00, 0xfde0,0xfdc0,0xfda0,0xfda0,0xfd60,0xfd60,0xfd40,0xfd20, 0xfd00,0xfd00,0xfce0,0xfcc0,0xfca0,0xfca0,0xfc80,0xfc60, 0xc360,0x1860,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x02a4,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07eb,0x07eb,0x07eb,0x0feb,0x0feb,0x0feb,0x0feb, 0x17eb,0x17eb,0x17eb,0x1feb,0x1fea,0x1fea,0x27ea,0x27ea, 0x27ea,0x2fea,0x2fea,0x2fea,0x37ea,0x37ea,0x3fe9,0x3fe9, 0x3fe9,0x47e9,0x47e9,0x47e9,0x4fe9,0x4fe9,0x57e9,0x57e8, 0x57e8,0x5fe8,0x5fe8,0x67e8,0x67e8,0x67e8,0x6fe8,0x6fe7, 0x77e7,0x77e7,0x7fe7,0x7fe7,0x87e7,0x87e7,0x87e6,0x8fe6, 0x8fe6,0x97e6,0x97e6,0x9fe6,0x9fe6,0xa7e5,0xa7e5,0xafe5, 0xafe5,0xb7e5,0xbfe5,0xbfe4,0xc7e4,0xc7e4,0xcfe4,0xcfe4, 0xd7e4,0xdfe3,0xdfe3,0xe7e3,0xe7e3,0xefe3,0xf7e3,0xf7e2, 0xffe2,0xffe2,0xffa2,0xff81,0xff61,0xff41,0xff21,0xff01, 0xfec0,0xfea0,0xfe80,0xfe60,0xfe40,0xfe20,0xfe00,0xfde0, 0xfdc0,0xfdc0,0xfda0,0xfd80,0xfd60,0xfd40,0xfd20,0xfd20, 0xfd00,0xfce0,0xfcc0,0xfcc0,0xfca0,0xfc80,0xfc60,0xfc60, 0xfc40,0x5160,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x01c3,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x0fec,0x0feb,0x0feb,0x17eb, 0x17eb,0x17eb,0x1feb,0x1feb,0x1feb,0x27eb,0x27eb,0x27ea, 0x2fea,0x2fea,0x2fea,0x37ea,0x37ea,0x37ea,0x3fea,0x3fea, 0x3fea,0x47e9,0x47e9,0x4fe9,0x4fe9,0x4fe9,0x57e9,0x57e9, 0x5fe9,0x5fe9,0x5fe8,0x67e8,0x67e8,0x6fe8,0x6fe8,0x6fe8, 0x77e8,0x77e8,0x7fe7,0x7fe7,0x87e7,0x87e7,0x8fe7,0x8fe7, 0x97e7,0x97e6,0x9fe6,0x9fe6,0xa7e6,0xa7e6,0xafe6,0xafe6, 0xb7e5,0xb7e5,0xbfe5,0xbfe5,0xc7e5,0xcfe5,0xcfe4,0xd7e4, 0xd7e4,0xdfe4,0xe7e4,0xe7e3,0xefe3,0xefe3,0xf7e3,0xffe3, 0xffe2,0xffc2,0xff82,0xff62,0xff42,0xff21,0xff01,0xfee1, 0xfea1,0xfe80,0xfe60,0xfe40,0xfe20,0xfe00,0xfde0,0xfde0, 0xfda0,0xfda0,0xfd80,0xfd60,0xfd40,0xfd20,0xfd00,0xfd00, 0xfce0,0xfcc0,0xfca0,0xfca0,0xfc80,0xfc80,0xfc60,0xfc40, 0xfc20,0xfc20,0x38e0,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0549,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ec,0x07ec,0x07ec,0x07ec, 0x07ec,0x07ec,0x07ec,0x07ec,0x0fec,0x0fec,0x0fec,0x17ec, 0x17eb,0x17eb,0x1feb,0x1feb,0x1feb,0x27eb,0x27eb,0x27eb, 0x2feb,0x2feb,0x2fea,0x37ea,0x37ea,0x37ea,0x3fea,0x3fea, 0x47ea,0x47ea,0x47ea,0x4fe9,0x4fe9,0x57e9,0x57e9,0x57e9, 0x5fe9,0x5fe9,0x67e9,0x67e9,0x67e8,0x6fe8,0x6fe8,0x77e8, 0x77e8,0x7fe8,0x7fe8,0x87e7,0x87e7,0x87e7,0x8fe7,0x8fe7, 0x97e7,0x97e7,0x9fe7,0x9fe6,0xa7e6,0xa7e6,0xafe6,0xb7e6, 0xb7e6,0xbfe5,0xbfe5,0xc7e5,0xc7e5,0xcfe5,0xd7e5,0xd7e4, 0xdfe4,0xdfe4,0xe7e4,0xefe4,0xefe4,0xf7e3,0xffe3,0xffe3, 0xffc3,0xffa2,0xff82,0xff42,0xff22,0xff02,0xfee1,0xfec1, 0xfea1,0xfe81,0xfe60,0xfe40,0xfe20,0xfe00,0xfde0,0xfdc0, 0xfda0,0xfd80,0xfd60,0xfd40,0xfd40,0xfd20,0xfd00,0xfce0, 0xfcc0,0xfcc0,0xfca0,0xfc80,0xfc80,0xfc60,0xfc40,0xfc40, 0xfc20,0xfc00,0xaaa0,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x02a5,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ec,0x07ec,0x07ec,0x07ec,0x0fec,0x0fec,0x0fec,0x17ec, 0x17ec,0x17ec,0x1fec,0x1feb,0x1feb,0x27eb,0x27eb,0x27eb, 0x2feb,0x2feb,0x37eb,0x37eb,0x37eb,0x3fea,0x3fea,0x3fea, 0x47ea,0x47ea,0x4fea,0x4fea,0x4fea,0x57ea,0x57ea,0x57e9, 0x5fe9,0x5fe9,0x67e9,0x67e9,0x6fe9,0x6fe9,0x77e9,0x77e8, 0x77e8,0x7fe8,0x7fe8,0x87e8,0x87e8,0x8fe8,0x8fe7,0x97e7, 0x97e7,0x9fe7,0x9fe7,0xa7e7,0xa7e7,0xafe6,0xafe6,0xb7e6, 0xbfe6,0xbfe6,0xc7e6,0xc7e6,0xcfe5,0xcfe5,0xd7e5,0xdfe5, 0xdfe5,0xe7e5,0xefe4,0xefe4,0xf7e4,0xf7e4,0xffe4,0xffe3, 0xffa3,0xff83,0xff63,0xff22,0xff02,0xfee2,0xfec2,0xfea1, 0xfe81,0xfe61,0xfe41,0xfe21,0xfe00,0xfde0,0xfdc0,0xfda0, 0xfd80,0xfd60,0xfd40,0xfd40,0xfd20,0xfd00,0xfce0,0xfce0, 0xfcc0,0xfca0,0xfc80,0xfc80,0xfc60,0xfc40,0xfc20,0xfc20, 0xfc00,0xfc00,0xfbe0,0x5140,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x062b,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ed, 0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ed,0x0fec,0x0fec,0x0fec,0x17ec,0x17ec, 0x17ec,0x1fec,0x1fec,0x1fec,0x27ec,0x27ec,0x27eb,0x2feb, 0x2feb,0x2feb,0x37eb,0x37eb,0x37eb,0x3feb,0x3feb,0x47eb, 0x47ea,0x47ea,0x4fea,0x4fea,0x4fea,0x57ea,0x57ea,0x5fea, 0x5fea,0x67e9,0x67e9,0x67e9,0x6fe9,0x6fe9,0x77e9,0x77e9, 0x7fe9,0x7fe8,0x87e8,0x87e8,0x8fe8,0x8fe8,0x97e8,0x97e8, 0x9fe8,0x9fe7,0xa7e7,0xa7e7,0xafe7,0xafe7,0xb7e7,0xb7e6, 0xbfe6,0xbfe6,0xc7e6,0xcfe6,0xcfe6,0xd7e5,0xd7e5,0xdfe5, 0xe7e5,0xe7e5,0xefe5,0xf7e4,0xf7e4,0xffe4,0xffe4,0xffc4, 0xff83,0xff63,0xff43,0xff23,0xfee2,0xfec2,0xfea2,0xfe82, 0xfe61,0xfe41,0xfe21,0xfe01,0xfde1,0xfdc0,0xfda0,0xfd80, 0xfd60,0xfd60,0xfd40,0xfd20,0xfd00,0xfce0,0xfce0,0xfcc0, 0xfca0,0xfc80,0xfc80,0xfc60,0xfc40,0xfc40,0xfc20,0xfc00, 0xfc00,0xfbe0,0xfbc0,0xc2e0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x054a,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ed,0x07ed,0x07ed,0x07ed,0x07ed, 0x07ed,0x07ed,0x07ed,0x0fed,0x0fed,0x0fed,0x17ed,0x17ec, 0x17ec,0x1fec,0x1fec,0x1fec,0x27ec,0x27ec,0x27ec,0x2fec, 0x2fec,0x2fec,0x37eb,0x37eb,0x3feb,0x3feb,0x3feb,0x47eb, 0x47eb,0x47eb,0x4feb,0x4feb,0x57ea,0x57ea,0x5fea,0x5fea, 0x5fea,0x67ea,0x67ea,0x6fea,0x6fe9,0x6fe9,0x77e9,0x77e9, 0x7fe9,0x7fe9,0x87e9,0x87e9,0x8fe8,0x8fe8,0x97e8,0x97e8, 0x9fe8,0x9fe8,0xa7e8,0xa7e7,0xafe7,0xafe7,0xb7e7,0xbfe7, 0xbfe7,0xc7e7,0xc7e6,0xcfe6,0xd7e6,0xd7e6,0xdfe6,0xdfe6, 0xe7e5,0xefe5,0xefe5,0xf7e5,0xffe5,0xffe4,0xffc4,0xffa4, 0xff64,0xff43,0xff23,0xff03,0xfec3,0xfea2,0xfe82,0xfe62, 0xfe42,0xfe21,0xfe01,0xfde1,0xfdc1,0xfda1,0xfd80,0xfd80, 0xfd40,0xfd40,0xfd20,0xfd00,0xfce0,0xfce0,0xfcc0,0xfca0, 0xfc80,0xfc80,0xfc60,0xfc40,0xfc40,0xfc20,0xfc00,0xfc00, 0xfbe0,0xfbc0,0xfbc0,0xfba0,0xaa60,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x01c3,0x070e,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ed, 0x07ed,0x07ed,0x07ed,0x0fed,0x0fed,0x0fed,0x17ed,0x17ed, 0x17ed,0x1fed,0x1fed,0x1fec,0x27ec,0x27ec,0x27ec,0x2fec, 0x2fec,0x37ec,0x37ec,0x37ec,0x3fec,0x3feb,0x3feb,0x47eb, 0x47eb,0x4feb,0x4feb,0x4feb,0x57eb,0x57eb,0x5fea,0x5fea, 0x67ea,0x67ea,0x67ea,0x6fea,0x6fea,0x77ea,0x77ea,0x7fe9, 0x7fe9,0x87e9,0x87e9,0x8fe9,0x8fe9,0x97e9,0x97e8,0x9fe8, 0x9fe8,0xa7e8,0xa7e8,0xafe8,0xafe8,0xb7e7,0xb7e7,0xbfe7, 0xc7e7,0xc7e7,0xcfe7,0xcfe6,0xd7e6,0xdfe6,0xdfe6,0xe7e6, 0xefe6,0xefe5,0xf7e5,0xf7e5,0xffe5,0xffc5,0xffa4,0xff84, 0xff44,0xff24,0xff03,0xfee3,0xfec3,0xfea3,0xfe62,0xfe42, 0xfe22,0xfe02,0xfde1,0xfdc1,0xfda1,0xfda1,0xfd81,0xfd60, 0xfd40,0xfd20,0xfd00,0xfd00,0xfce0,0xfcc0,0xfca0,0xfca0, 0xfc80,0xfc60,0xfc40,0xfc40,0xfc20,0xfc00,0xfc00,0xfbe0, 0xfbc0,0xfbc0,0xfba0,0xfba0,0xe320,0x38c0,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0469,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ee,0x07ee, 0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x0fee,0x0fed,0x0fed,0x0fed,0x17ed,0x17ed, 0x1fed,0x1fed,0x1fed,0x1fed,0x27ed,0x27ed,0x2fec,0x2fec, 0x2fec,0x37ec,0x37ec,0x37ec,0x3fec,0x3fec,0x47ec,0x47ec, 0x47eb,0x4feb,0x4feb,0x57eb,0x57eb,0x57eb,0x5feb,0x5feb, 0x67eb,0x67eb,0x6fea,0x6fea,0x77ea,0x77ea,0x7fea,0x7fea, 0x7fea,0x87ea,0x87e9,0x8fe9,0x8fe9,0x97e9,0x97e9,0x9fe9, 0xa7e9,0xa7e8,0xafe8,0xafe8,0xb7e8,0xb7e8,0xbfe8,0xbfe8, 0xc7e7,0xcfe7,0xcfe7,0xd7e7,0xd7e7,0xdfe7,0xe7e6,0xe7e6, 0xefe6,0xf7e6,0xf7e6,0xffe6,0xffc5,0xffa5,0xff85,0xff64, 0xff24,0xff04,0xfee4,0xfec3,0xfea3,0xfe83,0xfe43,0xfe22, 0xfe02,0xfde2,0xfdc2,0xfdc1,0xfd81,0xfd81,0xfd61,0xfd41, 0xfd21,0xfd00,0xfce0,0xfce0,0xfcc0,0xfca0,0xfc80,0xfc80, 0xfc60,0xfc40,0xfc40,0xfc20,0xfc00,0xfc00,0xfbe0,0xfbc0, 0xfbc0,0xfba0,0xfba0,0xfb80,0xfb60,0x89e0,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee,0x07ee, 0x07ee,0x07ee,0x0fee,0x0fee,0x0fee,0x17ee,0x17ee,0x17ed, 0x1fed,0x1fed,0x1fed,0x27ed,0x27ed,0x27ed,0x2fed,0x2fed, 0x2fed,0x37ec,0x37ec,0x3fec,0x3fec,0x3fec,0x47ec,0x47ec, 0x4fec,0x4fec,0x4fec,0x57eb,0x57eb,0x5feb,0x5feb,0x5feb, 0x67eb,0x67eb,0x6feb,0x6feb,0x77ea,0x77ea,0x7fea,0x7fea, 0x87ea,0x87ea,0x8fea,0x8fea,0x97e9,0x97e9,0x9fe9,0x9fe9, 0xa7e9,0xa7e9,0xafe9,0xafe8,0xb7e8,0xbfe8,0xbfe8,0xc7e8, 0xc7e8,0xcfe8,0xd7e7,0xd7e7,0xdfe7,0xdfe7,0xe7e7,0xefe7, 0xf7e6,0xf7e6,0xffe6,0xffe6,0xffa6,0xff85,0xff65,0xff45, 0xff04,0xfee4,0xfec4,0xfea4,0xfe83,0xfe63,0xfe43,0xfe23, 0xfe02,0xfde2,0xfdc2,0xfda2,0xfd81,0xfd61,0xfd41,0xfd21, 0xfd01,0xfd01,0xfce0,0xfcc0,0xfca0,0xfca0,0xfc80,0xfc60, 0xfc40,0xfc40,0xfc20,0xfc00,0xfc00,0xfbe0,0xfbc0,0xfbc0, 0xfba0,0xfba0,0xfb80,0xfb80,0xfb60,0xfb40,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x054b,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ee, 0x07ee,0x07ee,0x0fee,0x0fee,0x0fee,0x17ee,0x17ee,0x17ee, 0x1fee,0x1fee,0x1fee,0x27ed,0x27ed,0x27ed,0x2fed,0x2fed, 0x37ed,0x37ed,0x37ed,0x3fed,0x3fed,0x3fed,0x47ec,0x47ec, 0x4fec,0x4fec,0x57ec,0x57ec,0x57ec,0x5fec,0x5fec,0x67eb, 0x67eb,0x6feb,0x6feb,0x6feb,0x77eb,0x77eb,0x7feb,0x7feb, 0x87ea,0x87ea,0x8fea,0x8fea,0x97ea,0x97ea,0x9fea,0xa7ea, 0xa7e9,0xafe9,0xafe9,0xb7e9,0xb7e9,0xbfe9,0xc7e8,0xc7e8, 0xcfe8,0xcfe8,0xd7e8,0xdfe8,0xdfe8,0xe7e7,0xefe7,0xefe7, 0xf7e7,0xffe7,0xffe6,0xffc6,0xff86,0xff66,0xff45,0xff25, 0xfee5,0xfec4,0xfea4,0xfe84,0xfe64,0xfe43,0xfe23,0xfe03, 0xfde3,0xfdc2,0xfda2,0xfd82,0xfd62,0xfd42,0xfd21,0xfd21, 0xfd01,0xfce1,0xfcc1,0xfca0,0xfc80,0xfc80,0xfc60,0xfc40, 0xfc40,0xfc20,0xfc00,0xfc00,0xfbe0,0xfbc0,0xfbc0,0xfba0, 0xfba0,0xfb80,0xfb60,0xfb60,0xfb40,0xfb40,0xaa20,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x01c3,0x070f,0x07f1,0x07f1,0x07f1,0x07f1,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x0fef,0x0fee,0x0fee,0x17ee,0x17ee,0x17ee, 0x1fee,0x1fee,0x27ee,0x27ee,0x27ee,0x2fee,0x2fee,0x2fed, 0x37ed,0x37ed,0x37ed,0x3fed,0x3fed,0x47ed,0x47ed,0x47ed, 0x4fed,0x4fec,0x57ec,0x57ec,0x5fec,0x5fec,0x5fec,0x67ec, 0x67ec,0x6fec,0x6feb,0x77eb,0x77eb,0x7feb,0x7feb,0x87eb, 0x87eb,0x8feb,0x8fea,0x97ea,0x97ea,0x9fea,0x9fea,0xa7ea, 0xa7ea,0xafea,0xb7e9,0xb7e9,0xbfe9,0xbfe9,0xc7e9,0xcfe9, 0xcfe9,0xd7e8,0xd7e8,0xdfe8,0xe7e8,0xe7e8,0xefe8,0xf7e7, 0xffe7,0xffe7,0xffc7,0xffa6,0xff66,0xff46,0xff25,0xff05, 0xfec5,0xfea5,0xfe84,0xfe64,0xfe44,0xfe24,0xfe03,0xfde3, 0xfdc3,0xfda3,0xfd82,0xfd62,0xfd42,0xfd22,0xfd22,0xfd01, 0xfce1,0xfcc1,0xfca1,0xfca1,0xfc80,0xfc60,0xfc40,0xfc40, 0xfc20,0xfc00,0xfc00,0xfbe0,0xfbc0,0xfbc0,0xfba0,0xfba0, 0xfb80,0xfb80,0xfb60,0xfb40,0xfb40,0xfb20,0xe2c0,0x38a0, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0469,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07f0,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef,0x07ef, 0x07ef,0x07ef,0x0fef,0x0fef,0x17ef,0x17ef,0x17ef,0x1fee, 0x1fee,0x1fee,0x27ee,0x27ee,0x27ee,0x2fee,0x2fee,0x2fee, 0x37ee,0x37ee,0x3fee,0x3fed,0x3fed,0x47ed,0x47ed,0x4fed, 0x4fed,0x4fed,0x57ed,0x57ed,0x5fed,0x5fec,0x67ec,0x67ec, 0x6fec,0x6fec,0x77ec,0x77ec,0x7fec,0x7fec,0x87eb,0x87eb, 0x8feb,0x8feb,0x97eb,0x97eb,0x9feb,0x9feb,0xa7ea,0xa7ea, 0xafea,0xafea,0xb7ea,0xbfea,0xbfea,0xc7e9,0xc7e9,0xcfe9, 0xd7e9,0xd7e9,0xdfe9,0xe7e9,0xe7e8,0xefe8,0xf7e8,0xf7e8, 0xffe8,0xffe7,0xffa7,0xff87,0xff46,0xff26,0xff06,0xfee5, 0xfea5,0xfe85,0xfe65,0xfe44,0xfe24,0xfe04,0xfde4,0xfdc3, 0xfda3,0xfd83,0xfd63,0xfd42,0xfd22,0xfd22,0xfd02,0xfce2, 0xfcc1,0xfcc1,0xfca1,0xfc81,0xfc61,0xfc60,0xfc40,0xfc20, 0xfc00,0xfc00,0xfbe0,0xfbc0,0xfbc0,0xfba0,0xfba0,0xfb80, 0xfb60,0xfb60,0xfb40,0xfb40,0xfb20,0xfb20,0xfb00,0x89a0, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07ef, 0x07ef,0x0fef,0x0fef,0x0fef,0x17ef,0x17ef,0x17ef,0x1fef, 0x1fef,0x1fef,0x27ef,0x27ee,0x27ee,0x2fee,0x2fee,0x37ee, 0x37ee,0x37ee,0x3fee,0x3fee,0x47ee,0x47ee,0x47ed,0x4fed, 0x4fed,0x57ed,0x57ed,0x5fed,0x5fed,0x5fed,0x67ed,0x67ed, 0x6fec,0x6fec,0x77ec,0x77ec,0x7fec,0x7fec,0x87ec,0x87ec, 0x8fec,0x8feb,0x97eb,0x97eb,0x9feb,0x9feb,0xa7eb,0xafeb, 0xafea,0xb7ea,0xb7ea,0xbfea,0xc7ea,0xc7ea,0xcfea,0xcfe9, 0xd7e9,0xdfe9,0xdfe9,0xe7e9,0xefe9,0xefe9,0xf7e8,0xffe8, 0xffe8,0xffc8,0xff87,0xff67,0xff27,0xff06,0xfee6,0xfec6, 0xfea5,0xfe85,0xfe45,0xfe25,0xfe04,0xfde4,0xfdc4,0xfda4, 0xfd83,0xfd63,0xfd63,0xfd43,0xfd22,0xfd02,0xfce2,0xfcc2, 0xfcc2,0xfca1,0xfc81,0xfc61,0xfc61,0xfc41,0xfc20,0xfc20, 0xfc00,0xfbe0,0xfbc0,0xfbc0,0xfba0,0xfba0,0xfb80,0xfb80, 0xfb60,0xfb40,0xfb40,0xfb20,0xfb20,0xfb00,0xfb00,0xfae0, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x054c, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f0,0x07f0, 0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x0ff0,0x0ff0,0x0ff0,0x17ef,0x17ef,0x17ef,0x1fef, 0x1fef,0x1fef,0x27ef,0x27ef,0x2fef,0x2fef,0x2fef,0x37ef, 0x37ee,0x37ee,0x3fee,0x3fee,0x47ee,0x47ee,0x4fee,0x4fee, 0x57ee,0x57ee,0x57ed,0x5fed,0x5fed,0x67ed,0x67ed,0x6fed, 0x6fed,0x77ed,0x77ed,0x77ed,0x7fec,0x7fec,0x87ec,0x8fec, 0x8fec,0x97ec,0x97ec,0x9fec,0x9feb,0xa7eb,0xa7eb,0xafeb, 0xb7eb,0xb7eb,0xbfeb,0xbfeb,0xc7ea,0xcfea,0xcfea,0xd7ea, 0xdfea,0xdfea,0xe7e9,0xe7e9,0xefe9,0xf7e9,0xffe9,0xffe9, 0xffc8,0xffa8,0xff68,0xff47,0xff07,0xfee7,0xfec6,0xfea6, 0xfe86,0xfe65,0xfe25,0xfe05,0xfde5,0xfdc4,0xfda4,0xfda4, 0xfd64,0xfd63,0xfd43,0xfd23,0xfd03,0xfce2,0xfcc2,0xfcc2, 0xfca2,0xfc82,0xfc61,0xfc61,0xfc41,0xfc21,0xfc01,0xfc01, 0xfbe0,0xfbe0,0xfbc0,0xfba0,0xfba0,0xfb80,0xfb60,0xfb60, 0xfb40,0xfb40,0xfb20,0xfb20,0xfb00,0xfb00,0xfae0,0xfae0, 0xa9e0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x01c4,0x0710, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f0,0x07f0,0x07f0,0x07f0,0x07f0, 0x07f0,0x0ff0,0x0ff0,0x0ff0,0x17f0,0x17f0,0x1ff0,0x1ff0, 0x1fef,0x27ef,0x27ef,0x27ef,0x2fef,0x2fef,0x37ef,0x37ef, 0x37ef,0x3fef,0x3fef,0x3fef,0x47ee,0x47ee,0x4fee,0x4fee, 0x57ee,0x57ee,0x5fee,0x5fee,0x5fee,0x67ee,0x67ed,0x6fed, 0x6fed,0x77ed,0x77ed,0x7fed,0x7fed,0x87ed,0x87ed,0x8fec, 0x8fec,0x97ec,0x97ec,0x9fec,0xa7ec,0xa7ec,0xafec,0xafeb, 0xb7eb,0xb7eb,0xbfeb,0xc7eb,0xc7eb,0xcfeb,0xd7ea,0xd7ea, 0xdfea,0xe7ea,0xe7ea,0xefea,0xf7ea,0xf7e9,0xffe9,0xffc9, 0xffa9,0xff88,0xff48,0xff28,0xff07,0xfec7,0xfea7,0xfe86, 0xfe66,0xfe46,0xfe25,0xfe05,0xfde5,0xfdc5,0xfda4,0xfd84, 0xfd64,0xfd44,0xfd23,0xfd03,0xfce3,0xfce3,0xfcc2,0xfca2, 0xfc82,0xfc62,0xfc62,0xfc42,0xfc21,0xfc21,0xfc01,0xfbe1, 0xfbe1,0xfbc0,0xfba0,0xfba0,0xfb80,0xfb60,0xfb60,0xfb40, 0xfb40,0xfb20,0xfb20,0xfb00,0xfb00,0xfae0,0xfae0,0xfac0, 0xe260,0x3880,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x02a6,0x07f3, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x0ff0,0x0ff0,0x0ff0,0x17f0,0x17f0,0x17f0,0x1ff0,0x1ff0, 0x1ff0,0x27f0,0x27f0,0x27f0,0x2ff0,0x2fef,0x37ef,0x37ef, 0x37ef,0x3fef,0x3fef,0x47ef,0x47ef,0x47ef,0x4fef,0x4fef, 0x57ee,0x57ee,0x5fee,0x5fee,0x67ee,0x67ee,0x6fee,0x6fee, 0x77ee,0x77ee,0x7fed,0x7fed,0x87ed,0x87ed,0x8fed,0x8fed, 0x97ed,0x97ed,0x9fed,0x9fec,0xa7ec,0xa7ec,0xafec,0xb7ec, 0xb7ec,0xbfec,0xc7ec,0xc7eb,0xcfeb,0xcfeb,0xd7eb,0xdfeb, 0xdfeb,0xe7eb,0xefea,0xefea,0xf7ea,0xffea,0xffca,0xffa9, 0xff89,0xff49,0xff28,0xff08,0xfec7,0xfea7,0xfe87,0xfe67, 0xfe46,0xfe26,0xfe06,0xfde5,0xfdc5,0xfda5,0xfd85,0xfd64, 0xfd44,0xfd24,0xfd04,0xfce3,0xfcc3,0xfcc3,0xfca3,0xfc82, 0xfc62,0xfc62,0xfc42,0xfc22,0xfc02,0xfc01,0xfbe1,0xfbe1, 0xfbc1,0xfba1,0xfba0,0xfb80,0xfb60,0xfb60,0xfb40,0xfb40, 0xfb20,0xfb20,0xfb00,0xfb00,0xfae0,0xfae0,0xfac0,0xfac0, 0xfaa0,0x50e0,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x062f,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f1, 0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1,0x07f1, 0x0ff1,0x0ff1,0x0ff1,0x17f1,0x17f1,0x17f0,0x1ff0,0x1ff0, 0x1ff0,0x27f0,0x27f0,0x2ff0,0x2ff0,0x2ff0,0x37f0,0x37f0, 0x3ff0,0x3fef,0x3fef,0x47ef,0x47ef,0x4fef,0x4fef,0x57ef, 0x57ef,0x57ef,0x5fef,0x5fef,0x67ee,0x67ee,0x6fee,0x6fee, 0x77ee,0x77ee,0x7fee,0x7fee,0x87ee,0x87ee,0x8fed,0x8fed, 0x97ed,0x97ed,0x9fed,0xa7ed,0xa7ed,0xafed,0xafec,0xb7ec, 0xbfec,0xbfec,0xc7ec,0xc7ec,0xcfec,0xd7ec,0xdfeb,0xdfeb, 0xe7eb,0xefeb,0xefeb,0xf7eb,0xffea,0xffea,0xffaa,0xff8a, 0xff69,0xff49,0xff08,0xfee8,0xfec8,0xfea7,0xfe67,0xfe47, 0xfe26,0xfe06,0xfde6,0xfdc6,0xfda5,0xfd85,0xfd65,0xfd45, 0xfd24,0xfd04,0xfce4,0xfce4,0xfcc3,0xfca3,0xfc83,0xfc83, 0xfc62,0xfc42,0xfc22,0xfc22,0xfc02,0xfbe2,0xfbe1,0xfbc1, 0xfba1,0xfba1,0xfb81,0xfb61,0xfb60,0xfb40,0xfb40,0xfb20, 0xfb20,0xfb00,0xfb00,0xfae0,0xfae0,0xfac0,0xfac0,0xfaa0, 0xfaa0,0xc200,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x01c4,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f1,0x07f1,0x07f1,0x07f1, 0x0ff1,0x0ff1,0x0ff1,0x17f1,0x17f1,0x17f1,0x1ff1,0x1ff1, 0x27f1,0x27f1,0x27f0,0x2ff0,0x2ff0,0x2ff0,0x37f0,0x37f0, 0x3ff0,0x3ff0,0x47f0,0x47f0,0x4ff0,0x4ff0,0x4fef,0x57ef, 0x57ef,0x5fef,0x5fef,0x67ef,0x67ef,0x6fef,0x6fef,0x77ef, 0x77ef,0x7fee,0x7fee,0x87ee,0x87ee,0x8fee,0x8fee,0x97ee, 0x97ee,0x9fee,0x9fed,0xa7ed,0xafed,0xafed,0xb7ed,0xb7ed, 0xbfed,0xc7ed,0xc7ec,0xcfec,0xd7ec,0xd7ec,0xdfec,0xe7ec, 0xe7ec,0xefeb,0xf7eb,0xffeb,0xffeb,0xffcb,0xff8a,0xff6a, 0xff49,0xff09,0xfee9,0xfec8,0xfea8,0xfe88,0xfe47,0xfe27, 0xfe07,0xfde6,0xfdc6,0xfda6,0xfd86,0xfd65,0xfd45,0xfd25, 0xfd05,0xfd04,0xfce4,0xfcc4,0xfca4,0xfc83,0xfc63,0xfc63, 0xfc43,0xfc23,0xfc02,0xfc02,0xfbe2,0xfbe2,0xfbc2,0xfba1, 0xfb81,0xfb81,0xfb61,0xfb61,0xfb41,0xfb40,0xfb20,0xfb20, 0xfb00,0xfae0,0xfae0,0xfac0,0xfac0,0xfaa0,0xfaa0,0xfaa0, 0xfa80,0xfa80,0x3880,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x054d,0x07f4,0x07f4, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2, 0x0ff2,0x0ff2,0x17f1,0x17f1,0x17f1,0x1ff1,0x1ff1,0x1ff1, 0x27f1,0x27f1,0x27f1,0x2ff1,0x2ff1,0x37f1,0x37f1,0x37f0, 0x3ff0,0x3ff0,0x47f0,0x47f0,0x4ff0,0x4ff0,0x57f0,0x57f0, 0x57f0,0x5ff0,0x5ff0,0x67ef,0x67ef,0x6fef,0x6fef,0x77ef, 0x77ef,0x7fef,0x7fef,0x87ef,0x87ee,0x8fee,0x97ee,0x97ee, 0x9fee,0x9fee,0xa7ee,0xa7ee,0xafee,0xb7ed,0xb7ed,0xbfed, 0xbfed,0xc7ed,0xcfed,0xcfed,0xd7ed,0xdfec,0xdfec,0xe7ec, 0xefec,0xf7ec,0xf7ec,0xffec,0xffcb,0xffab,0xff6a,0xff4a, 0xff2a,0xff09,0xfec9,0xfea9,0xfe88,0xfe68,0xfe28,0xfe07, 0xfde7,0xfdc7,0xfda6,0xfd86,0xfd66,0xfd46,0xfd25,0xfd25, 0xfd05,0xfce5,0xfcc4,0xfca4,0xfc84,0xfc84,0xfc63,0xfc43, 0xfc23,0xfc23,0xfc03,0xfbe2,0xfbe2,0xfbc2,0xfba2,0xfba2, 0xfb81,0xfb61,0xfb61,0xfb41,0xfb41,0xfb21,0xfb00,0xfb00, 0xfae0,0xfae0,0xfac0,0xfac0,0xfaa0,0xfaa0,0xfa80,0xfa80, 0xfa80,0xfa60,0xa980,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x00e2,0x062f,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x07f2,0x0ff2, 0x0ff2,0x0ff2,0x17f2,0x17f2,0x17f2,0x1ff2,0x1ff2,0x1ff2, 0x27f1,0x27f1,0x2ff1,0x2ff1,0x2ff1,0x37f1,0x37f1,0x3ff1, 0x3ff1,0x3ff1,0x47f1,0x47f1,0x4ff0,0x4ff0,0x57f0,0x57f0, 0x5ff0,0x5ff0,0x67f0,0x67f0,0x6ff0,0x6ff0,0x77f0,0x77f0, 0x7fef,0x7fef,0x87ef,0x87ef,0x8fef,0x8fef,0x97ef,0x97ef, 0x9fef,0xa7ee,0xa7ee,0xafee,0xafee,0xb7ee,0xbfee,0xbfee, 0xc7ee,0xc7ee,0xcfed,0xd7ed,0xdfed,0xdfed,0xe7ed,0xefed, 0xefed,0xf7ec,0xffec,0xffec,0xffac,0xff8b,0xff4b,0xff2a, 0xff0a,0xfeca,0xfea9,0xfe89,0xfe68,0xfe48,0xfe08,0xfde8, 0xfdc7,0xfda7,0xfd87,0xfd66,0xfd46,0xfd26,0xfd05,0xfd05, 0xfce5,0xfcc5,0xfca5,0xfc84,0xfc64,0xfc64,0xfc44,0xfc23, 0xfc03,0xfc03,0xfbe3,0xfbe3,0xfbc2,0xfba2,0xfb82,0xfb82, 0xfb62,0xfb61,0xfb41,0xfb41,0xfb21,0xfb01,0xfb01,0xfae0, 0xfae0,0xfac0,0xfac0,0xfaa0,0xfaa0,0xfa80,0xfa80,0xfa60, 0xfa60,0xfa60,0xc1c0,0x1840,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x02a6,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x0ff2, 0x0ff2,0x0ff2,0x17f2,0x17f2,0x17f2,0x1ff2,0x1ff2,0x27f2, 0x27f2,0x27f2,0x2ff2,0x2ff2,0x37f2,0x37f1,0x37f1,0x3ff1, 0x3ff1,0x47f1,0x47f1,0x4ff1,0x4ff1,0x4ff1,0x57f1,0x57f1, 0x5ff1,0x5ff0,0x67f0,0x67f0,0x6ff0,0x6ff0,0x77f0,0x77f0, 0x7ff0,0x7ff0,0x87f0,0x87f0,0x8fef,0x97ef,0x97ef,0x9fef, 0x9fef,0xa7ef,0xafef,0xafef,0xb7ef,0xb7ee,0xbfee,0xc7ee, 0xc7ee,0xcfee,0xd7ee,0xd7ee,0xdfee,0xe7ed,0xe7ed,0xefed, 0xf7ed,0xffed,0xffed,0xffcc,0xff8c,0xff6b,0xff2b,0xff0b, 0xfeea,0xfeca,0xfe89,0xfe69,0xfe49,0xfe28,0xfe08,0xfde8, 0xfda7,0xfd87,0xfd67,0xfd67,0xfd46,0xfd26,0xfd06,0xfce5, 0xfcc5,0xfca5,0xfc85,0xfc85,0xfc64,0xfc44,0xfc24,0xfc24, 0xfc03,0xfbe3,0xfbe3,0xfbc3,0xfba3,0xfba2,0xfb82,0xfb62, 0xfb62,0xfb42,0xfb41,0xfb21,0xfb01,0xfb01,0xfae1,0xfae1, 0xfac0,0xfac0,0xfaa0,0xfaa0,0xfa80,0xfa80,0xfa60,0xfa60, 0xfa60,0xfa40,0xfa40,0x50a0,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x046b,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f3,0x07f3,0x07f3, 0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x07f3,0x0ff3, 0x0ff3,0x0ff3,0x17f3,0x17f3,0x1ff3,0x1ff3,0x1ff2,0x27f2, 0x27f2,0x27f2,0x2ff2,0x2ff2,0x37f2,0x37f2,0x3ff2,0x3ff2, 0x3ff2,0x47f2,0x47f2,0x4ff1,0x4ff1,0x57f1,0x57f1,0x5ff1, 0x5ff1,0x67f1,0x67f1,0x6ff1,0x6ff1,0x77f1,0x77f1,0x7ff0, 0x7ff0,0x87f0,0x87f0,0x8ff0,0x8ff0,0x97f0,0x9ff0,0x9ff0, 0xa7f0,0xa7ef,0xafef,0xafef,0xb7ef,0xbfef,0xbfef,0xc7ef, 0xcfef,0xcfef,0xd7ee,0xdfee,0xe7ee,0xe7ee,0xefee,0xf7ee, 0xffee,0xffed,0xffcd,0xffad,0xff6c,0xff4c,0xff0b,0xfeeb, 0xfeca,0xfe8a,0xfe6a,0xfe49,0xfe29,0xfe09,0xfde8,0xfdc8, 0xfda8,0xfd87,0xfd67,0xfd47,0xfd27,0xfd06,0xfce6,0xfcc6, 0xfca5,0xfca5,0xfc65,0xfc65,0xfc44,0xfc24,0xfc04,0xfc04, 0xfbe4,0xfbe3,0xfbc3,0xfba3,0xfb83,0xfb83,0xfb62,0xfb62, 0xfb42,0xfb22,0xfb22,0xfb01,0xfb01,0xfae1,0xfae1,0xfac1, 0xfac1,0xfaa1,0xfaa0,0xfa80,0xfa80,0xfa60,0xfa60,0xfa40, 0xfa40,0xfa40,0xfa20,0x8920,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f3,0x07f3,0x07f3,0x0ff3, 0x0ff3,0x17f3,0x17f3,0x17f3,0x1ff3,0x1ff3,0x1ff3,0x27f3, 0x27f3,0x2ff3,0x2ff3,0x2ff2,0x37f2,0x37f2,0x3ff2,0x3ff2, 0x47f2,0x47f2,0x47f2,0x4ff2,0x4ff2,0x57f2,0x57f2,0x5ff2, 0x5ff1,0x67f1,0x67f1,0x6ff1,0x6ff1,0x77f1,0x77f1,0x7ff1, 0x7ff1,0x87f1,0x8ff1,0x8ff1,0x97f0,0x97f0,0x9ff0,0x9ff0, 0xa7f0,0xaff0,0xaff0,0xb7f0,0xbff0,0xbfef,0xc7ef,0xc7ef, 0xcfef,0xd7ef,0xdfef,0xdfef,0xe7ef,0xefef,0xf7ee,0xf7ee, 0xffee,0xffee,0xffad,0xff8d,0xff4c,0xff2c,0xfeec,0xfecb, 0xfeab,0xfe8a,0xfe4a,0xfe2a,0xfe09,0xfde9,0xfdc9,0xfda8, 0xfd88,0xfd68,0xfd47,0xfd27,0xfd07,0xfce6,0xfcc6,0xfca6, 0xfca6,0xfc85,0xfc65,0xfc45,0xfc25,0xfc24,0xfc04,0xfbe4, 0xfbe4,0xfbc4,0xfba3,0xfba3,0xfb83,0xfb63,0xfb63,0xfb42, 0xfb22,0xfb22,0xfb02,0xfb02,0xfae1,0xfae1,0xfac1,0xfac1, 0xfaa1,0xfaa1,0xfa81,0xfa80,0xfa60,0xfa60,0xfa40,0xfa40, 0xfa40,0xfa20,0xfa20,0xfa00,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4, 0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x0ff4,0x0ff4, 0x0ff4,0x17f4,0x17f4,0x17f3,0x1ff3,0x1ff3,0x27f3,0x27f3, 0x27f3,0x2ff3,0x2ff3,0x37f3,0x37f3,0x37f3,0x3ff3,0x3ff3, 0x47f3,0x47f3,0x4ff2,0x4ff2,0x57f2,0x57f2,0x5ff2,0x5ff2, 0x67f2,0x67f2,0x6ff2,0x6ff2,0x77f2,0x77f2,0x7ff1,0x7ff1, 0x87f1,0x87f1,0x8ff1,0x8ff1,0x97f1,0x9ff1,0x9ff1,0xa7f1, 0xa7f1,0xaff0,0xb7f0,0xb7f0,0xbff0,0xc7f0,0xc7f0,0xcff0, 0xd7f0,0xd7f0,0xdfef,0xe7ef,0xefef,0xefef,0xf7ef,0xffef, 0xffef,0xffae,0xff8e,0xff4d,0xff2d,0xff0c,0xfecc,0xfeab, 0xfe8b,0xfe6b,0xfe2a,0xfe0a,0xfdea,0xfdc9,0xfda9,0xfd89, 0xfd68,0xfd48,0xfd28,0xfd07,0xfce7,0xfcc7,0xfca6,0xfca6, 0xfc86,0xfc66,0xfc45,0xfc25,0xfc25,0xfc05,0xfbe4,0xfbe4, 0xfbc4,0xfba4,0xfb84,0xfb83,0xfb63,0xfb63,0xfb43,0xfb23, 0xfb22,0xfb02,0xfb02,0xfae2,0xfae2,0xfac2,0xfac1,0xfaa1, 0xfaa1,0xfa81,0xfa81,0xfa61,0xfa60,0xfa40,0xfa40,0xfa20, 0xfa20,0xfa20,0xfa00,0xfa00,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0389,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f4,0x07f4,0x07f4,0x07f4,0x07f4,0x0ff4,0x0ff4, 0x0ff4,0x17f4,0x17f4,0x1ff4,0x1ff4,0x1ff4,0x27f4,0x27f4, 0x2ff4,0x2ff4,0x2ff3,0x37f3,0x37f3,0x3ff3,0x3ff3,0x3ff3, 0x47f3,0x47f3,0x4ff3,0x4ff3,0x57f3,0x57f3,0x5ff3,0x5ff3, 0x67f2,0x67f2,0x6ff2,0x6ff2,0x77f2,0x77f2,0x7ff2,0x7ff2, 0x87f2,0x8ff2,0x8ff2,0x97f2,0x97f1,0x9ff1,0xa7f1,0xa7f1, 0xaff1,0xaff1,0xb7f1,0xbff1,0xbff1,0xc7f1,0xcff0,0xcff0, 0xd7f0,0xdff0,0xe7f0,0xe7f0,0xeff0,0xf7f0,0xffef,0xffef, 0xffcf,0xff8e,0xff6e,0xff2d,0xff0d,0xfeed,0xfeac,0xfe8c, 0xfe6b,0xfe4b,0xfe0a,0xfdea,0xfdca,0xfda9,0xfd89,0xfd69, 0xfd48,0xfd28,0xfd08,0xfce8,0xfcc7,0xfcc7,0xfca7,0xfc86, 0xfc66,0xfc46,0xfc26,0xfc25,0xfc05,0xfbe5,0xfbe5,0xfbc4, 0xfba4,0xfba4,0xfb84,0xfb64,0xfb63,0xfb43,0xfb23,0xfb23, 0xfb03,0xfb02,0xfae2,0xfae2,0xfac2,0xfac2,0xfaa2,0xfaa1, 0xfa81,0xfa81,0xfa61,0xfa61,0xfa41,0xfa40,0xfa20,0xfa20, 0xfa00,0xfa00,0xfa00,0xf9e0,0x70c0,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x054f,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x0ff5,0x0ff5, 0x17f5,0x17f5,0x17f4,0x1ff4,0x1ff4,0x1ff4,0x27f4,0x27f4, 0x2ff4,0x2ff4,0x37f4,0x37f4,0x37f4,0x3ff4,0x3ff4,0x47f4, 0x47f4,0x4ff4,0x4ff3,0x57f3,0x57f3,0x57f3,0x5ff3,0x5ff3, 0x67f3,0x67f3,0x6ff3,0x77f3,0x77f3,0x7ff3,0x7ff3,0x87f2, 0x87f2,0x8ff2,0x97f2,0x97f2,0x9ff2,0x9ff2,0xa7f2,0xa7f2, 0xaff2,0xb7f2,0xbff1,0xbff1,0xc7f1,0xc7f1,0xcff1,0xd7f1, 0xdff1,0xdff1,0xe7f1,0xeff1,0xf7f0,0xf7f0,0xfff0,0xffd0, 0xff8f,0xff6f,0xff2e,0xff0e,0xfeed,0xfead,0xfe8c,0xfe6c, 0xfe4c,0xfe2b,0xfdeb,0xfdca,0xfdaa,0xfd8a,0xfd69,0xfd49, 0xfd29,0xfd08,0xfce8,0xfcc8,0xfca7,0xfca7,0xfc87,0xfc67, 0xfc46,0xfc46,0xfc26,0xfc06,0xfbe5,0xfbe5,0xfbc5,0xfba5, 0xfb84,0xfb84,0xfb64,0xfb64,0xfb44,0xfb23,0xfb23,0xfb03, 0xfb03,0xfae3,0xfac2,0xfac2,0xfaa2,0xfaa2,0xfa82,0xfa82, 0xfa61,0xfa61,0xfa61,0xfa41,0xfa41,0xfa21,0xfa21,0xfa00, 0xfa00,0xfa00,0xf9e0,0xf9e0,0xa920,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x054f,0x07f7,0x07f7,0x07f7,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f5,0x07f5, 0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x07f5,0x0ff5,0x0ff5, 0x17f5,0x17f5,0x17f5,0x1ff5,0x1ff5,0x27f5,0x27f5,0x27f5, 0x2ff5,0x2ff4,0x37f4,0x37f4,0x3ff4,0x3ff4,0x3ff4,0x47f4, 0x47f4,0x4ff4,0x4ff4,0x57f4,0x57f4,0x5ff4,0x5ff4,0x67f4, 0x67f3,0x6ff3,0x6ff3,0x77f3,0x77f3,0x7ff3,0x87f3,0x87f3, 0x8ff3,0x8ff3,0x97f3,0x97f3,0x9ff2,0xa7f2,0xa7f2,0xaff2, 0xb7f2,0xb7f2,0xbff2,0xc7f2,0xc7f2,0xcff2,0xd7f2,0xd7f1, 0xdff1,0xe7f1,0xeff1,0xeff1,0xf7f1,0xfff1,0xffd0,0xffb0, 0xff6f,0xff4f,0xff0e,0xfeee,0xfecd,0xfead,0xfe6d,0xfe4c, 0xfe2c,0xfe0b,0xfdcb,0xfdab,0xfd8a,0xfd6a,0xfd4a,0xfd29, 0xfd09,0xfce9,0xfcc8,0xfcc8,0xfca8,0xfc87,0xfc67,0xfc47, 0xfc47,0xfc26,0xfc06,0xfbe6,0xfbe6,0xfbc5,0xfba5,0xfba5, 0xfb85,0xfb64,0xfb64,0xfb44,0xfb24,0xfb24,0xfb03,0xfb03, 0xfae3,0xfae3,0xfac3,0xfaa2,0xfaa2,0xfa82,0xfa82,0xfa62, 0xfa62,0xfa61,0xfa41,0xfa41,0xfa21,0xfa21,0xfa01,0xfa01, 0xf9e0,0xf9e0,0xf9e0,0xf9c0,0xa920,0x0000,0x0000,0x0000, 0x0000,0x0000,0x02a7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x0ff6,0x0ff6,0x0ff6, 0x17f5,0x17f5,0x1ff5,0x1ff5,0x1ff5,0x27f5,0x27f5,0x27f5, 0x2ff5,0x2ff5,0x37f5,0x37f5,0x3ff5,0x3ff5,0x47f5,0x47f5, 0x4ff5,0x4ff5,0x57f4,0x57f4,0x5ff4,0x5ff4,0x67f4,0x67f4, 0x6ff4,0x6ff4,0x77f4,0x77f4,0x7ff4,0x7ff4,0x87f4,0x87f4, 0x8ff3,0x97f3,0x97f3,0x9ff3,0x9ff3,0xa7f3,0xaff3,0xaff3, 0xb7f3,0xbff3,0xbff3,0xc7f3,0xcff2,0xcff2,0xd7f2,0xdff2, 0xe7f2,0xe7f2,0xeff2,0xf7f2,0xfff2,0xfff1,0xffb1,0xff90, 0xff50,0xff2f,0xfeef,0xfece,0xfeae,0xfe6d,0xfe4d,0xfe2d, 0xfe0c,0xfdec,0xfdab,0xfd8b,0xfd6a,0xfd4a,0xfd2a,0xfd0a, 0xfce9,0xfce9,0xfcc8,0xfca8,0xfc88,0xfc68,0xfc47,0xfc47, 0xfc27,0xfc07,0xfbe6,0xfbe6,0xfbc6,0xfba6,0xfb85,0xfb85, 0xfb65,0xfb65,0xfb44,0xfb24,0xfb24,0xfb04,0xfae4,0xfae3, 0xfac3,0xfac3,0xfaa3,0xfaa3,0xfa83,0xfa82,0xfa62,0xfa62, 0xfa42,0xfa42,0xfa22,0xfa21,0xfa21,0xfa01,0xfa01,0xf9e1, 0xf9e1,0xf9e0,0xf9c0,0xf9c0,0xf9a0,0x5080,0x0000,0x0000, 0x0000,0x0000,0x02a7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f6,0x07f6,0x07f6,0x07f6, 0x07f6,0x07f6,0x07f6,0x07f6,0x07f6,0x0ff6,0x0ff6,0x0ff6, 0x17f6,0x17f6,0x1ff6,0x1ff6,0x1ff6,0x27f6,0x27f6,0x2ff6, 0x2ff5,0x37f5,0x37f5,0x37f5,0x3ff5,0x3ff5,0x47f5,0x47f5, 0x4ff5,0x4ff5,0x57f5,0x57f5,0x5ff5,0x5ff5,0x67f5,0x67f5, 0x6ff5,0x6ff4,0x77f4,0x77f4,0x7ff4,0x7ff4,0x87f4,0x8ff4, 0x8ff4,0x97f4,0x9ff4,0x9ff4,0xa7f4,0xa7f4,0xaff3,0xb7f3, 0xb7f3,0xbff3,0xc7f3,0xc7f3,0xcff3,0xd7f3,0xdff3,0xdff3, 0xe7f3,0xeff2,0xf7f2,0xf7f2,0xfff2,0xffd2,0xff91,0xff70, 0xff30,0xff0f,0xfecf,0xfeae,0xfe8e,0xfe6e,0xfe2d,0xfe0d, 0xfdec,0xfdcc,0xfdab,0xfd8b,0xfd4b,0xfd4a,0xfd0a,0xfd0a, 0xfce9,0xfcc9,0xfca9,0xfc88,0xfc68,0xfc48,0xfc48,0xfc27, 0xfc07,0xfbe7,0xfbe6,0xfbc6,0xfba6,0xfba6,0xfb85,0xfb65, 0xfb65,0xfb45,0xfb25,0xfb24,0xfb04,0xfb04,0xfae4,0xfac4, 0xfac3,0xfaa3,0xfaa3,0xfa83,0xfa83,0xfa63,0xfa62,0xfa42, 0xfa42,0xfa22,0xfa22,0xfa22,0xfa01,0xfa01,0xf9e1,0xf9e1, 0xf9c1,0xf9c1,0xf9c0,0xf9a0,0xf9a0,0x5080,0x0000,0x0000, 0x0000,0x0000,0x046d,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x0ff7,0x0ff7,0x17f7, 0x17f6,0x17f6,0x1ff6,0x1ff6,0x27f6,0x27f6,0x27f6,0x2ff6, 0x2ff6,0x37f6,0x37f6,0x3ff6,0x3ff6,0x3ff6,0x47f6,0x47f6, 0x4ff6,0x4ff6,0x57f6,0x57f5,0x5ff5,0x5ff5,0x67f5,0x67f5, 0x6ff5,0x77f5,0x77f5,0x7ff5,0x7ff5,0x87f5,0x87f5,0x8ff5, 0x97f5,0x97f5,0x9ff4,0x9ff4,0xa7f4,0xaff4,0xb7f4,0xb7f4, 0xbff4,0xbff4,0xc7f4,0xcff4,0xd7f4,0xd7f4,0xdff3,0xe7f3, 0xeff3,0xeff3,0xf7f3,0xfff3,0xffd2,0xff92,0xff71,0xff31, 0xff10,0xfef0,0xfeaf,0xfe8f,0xfe4e,0xfe2e,0xfe0d,0xfded, 0xfdcd,0xfdac,0xfd8c,0xfd6b,0xfd4b,0xfd2b,0xfd0a,0xfcea, 0xfcca,0xfca9,0xfc89,0xfc69,0xfc48,0xfc48,0xfc28,0xfc08, 0xfbe7,0xfbe7,0xfbc7,0xfba6,0xfb86,0xfb86,0xfb66,0xfb45, 0xfb45,0xfb25,0xfb05,0xfb05,0xfae4,0xfae4,0xfac4,0xfac4, 0xfaa4,0xfaa3,0xfa83,0xfa83,0xfa63,0xfa63,0xfa43,0xfa42, 0xfa22,0xfa22,0xfa02,0xfa02,0xfa02,0xf9e1,0xf9e1,0xf9c1, 0xf9c1,0xf9c1,0xf9a1,0xf9a0,0xf980,0x88c0,0x0000,0x0000, 0x0000,0x0000,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x07f7, 0x07f7,0x07f7,0x07f7,0x07f7,0x07f7,0x0ff7,0x0ff7,0x17f7, 0x17f7,0x17f7,0x1ff7,0x1ff7,0x27f7,0x27f7,0x2ff7,0x2ff7, 0x2ff7,0x37f6,0x37f6,0x3ff6,0x3ff6,0x47f6,0x47f6,0x4ff6, 0x4ff6,0x57f6,0x57f6,0x5ff6,0x5ff6,0x67f6,0x67f6,0x6ff6, 0x6ff6,0x77f6,0x77f6,0x7ff5,0x87f5,0x87f5,0x8ff5,0x8ff5, 0x97f5,0x9ff5,0x9ff5,0xa7f5,0xaff5,0xaff5,0xb7f5,0xbff5, 0xbff4,0xc7f4,0xcff4,0xcff4,0xd7f4,0xdff4,0xe7f4,0xe7f4, 0xeff4,0xf7f4,0xfff4,0xfff3,0xffb3,0xff72,0xff52,0xff11, 0xfef0,0xfed0,0xfe8f,0xfe6f,0xfe4e,0xfe2e,0xfdee,0xfdcd, 0xfdad,0xfd8c,0xfd6c,0xfd4c,0xfd2b,0xfd0b,0xfceb,0xfcca, 0xfcaa,0xfc8a,0xfc69,0xfc49,0xfc49,0xfc28,0xfc08,0xfbe8, 0xfbe7,0xfbc7,0xfba7,0xfb87,0xfb86,0xfb66,0xfb46,0xfb46, 0xfb25,0xfb25,0xfb05,0xfae5,0xfae5,0xfac4,0xfac4,0xfaa4, 0xfaa4,0xfa84,0xfa83,0xfa63,0xfa63,0xfa43,0xfa43,0xfa23, 0xfa22,0xfa02,0xfa02,0xf9e2,0xf9e2,0xf9e2,0xf9c1,0xf9c1, 0xf9a1,0xf9a1,0xf9a1,0xf981,0xf980,0xf980,0x0000,0x0000, 0x0000,0x0000,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x0ff8,0x0ff8,0x0ff8,0x17f8, 0x17f7,0x1ff7,0x1ff7,0x1ff7,0x27f7,0x27f7,0x2ff7,0x2ff7, 0x37f7,0x37f7,0x3ff7,0x3ff7,0x3ff7,0x47f7,0x47f7,0x4ff7, 0x4ff7,0x57f7,0x57f7,0x5ff7,0x5ff7,0x67f6,0x6ff6,0x6ff6, 0x77f6,0x77f6,0x7ff6,0x7ff6,0x87f6,0x87f6,0x8ff6,0x97f6, 0x97f6,0x9ff6,0xa7f6,0xa7f6,0xaff5,0xb7f5,0xb7f5,0xbff5, 0xc7f5,0xc7f5,0xcff5,0xd7f5,0xdff5,0xdff5,0xe7f5,0xeff5, 0xf7f5,0xfff4,0xfff4,0xffb4,0xff73,0xff52,0xff12,0xfef1, 0xfed1,0xfe90,0xfe70,0xfe4f,0xfe0f,0xfdee,0xfdce,0xfdae, 0xfd8d,0xfd6d,0xfd4c,0xfd2c,0xfd0b,0xfceb,0xfccb,0xfcaa, 0xfc8a,0xfc6a,0xfc49,0xfc49,0xfc29,0xfc09,0xfbe8,0xfbe8, 0xfbc8,0xfba7,0xfb87,0xfb87,0xfb67,0xfb46,0xfb46,0xfb26, 0xfb06,0xfb05,0xfae5,0xfae5,0xfac5,0xfac5,0xfaa4,0xfaa4, 0xfa84,0xfa64,0xfa64,0xfa63,0xfa43,0xfa43,0xfa23,0xfa23, 0xfa03,0xfa02,0xf9e2,0xf9e2,0xf9c2,0xf9c2,0xf9c2,0xf9a1, 0xf9a1,0xf9a1,0xf981,0xf981,0xf961,0xf961,0x0000,0x0000, 0x0000,0x0000,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8,0x07f8, 0x07f8,0x07f8,0x07f8,0x07f8,0x0ff8,0x0ff8,0x0ff8,0x17f8, 0x17f8,0x1ff8,0x1ff8,0x27f8,0x27f8,0x27f8,0x2ff8,0x2ff8, 0x37f8,0x37f8,0x3ff8,0x3ff7,0x47f7,0x47f7,0x4ff7,0x4ff7, 0x57f7,0x57f7,0x5ff7,0x5ff7,0x67f7,0x67f7,0x6ff7,0x6ff7, 0x77f7,0x77f7,0x7ff7,0x87f7,0x87f7,0x8ff7,0x8ff6,0x97f6, 0x9ff6,0x9ff6,0xa7f6,0xaff6,0xaff6,0xb7f6,0xbff6,0xbff6, 0xc7f6,0xcff6,0xd7f6,0xd7f6,0xdff5,0xe7f5,0xeff5,0xf7f5, 0xfff5,0xfff5,0xffd4,0xff94,0xff53,0xff33,0xfef2,0xfed2, 0xfeb1,0xfe71,0xfe50,0xfe30,0xfe0f,0xfdef,0xfdae,0xfd8e, 0xfd6d,0xfd4d,0xfd2c,0xfd0c,0xfcec,0xfccb,0xfcab,0xfc8b, 0xfc6a,0xfc6a,0xfc4a,0xfc29,0xfc09,0xfbe9,0xfbe8,0xfbc8, 0xfba8,0xfb88,0xfb87,0xfb67,0xfb47,0xfb47,0xfb26,0xfb26, 0xfb06,0xfae6,0xfae5,0xfac5,0xfac5,0xfaa5,0xfa85,0xfa84, 0xfa64,0xfa64,0xfa44,0xfa44,0xfa23,0xfa23,0xfa23,0xfa03, 0xfa03,0xf9e3,0xf9e2,0xf9c2,0xf9c2,0xf9c2,0xf9a2,0xf9a2, 0xf981,0xf981,0xf981,0xf961,0xf961,0xf961,0x0000,0x0000, 0x0000,0x0000,0x07fa,0x07fa,0x07fa,0x07fa,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x0ff9,0x0ff9,0x17f9,0x17f9, 0x17f9,0x1ff8,0x1ff8,0x27f8,0x27f8,0x2ff8,0x2ff8,0x2ff8, 0x37f8,0x37f8,0x3ff8,0x3ff8,0x47f8,0x47f8,0x4ff8,0x4ff8, 0x57f8,0x57f8,0x5ff8,0x5ff8,0x67f8,0x67f8,0x6ff8,0x77f8, 0x77f7,0x7ff7,0x7ff7,0x87f7,0x8ff7,0x8ff7,0x97f7,0x97f7, 0x9ff7,0xa7f7,0xa7f7,0xaff7,0xb7f7,0xb7f7,0xbff7,0xc7f7, 0xcff7,0xcff6,0xd7f6,0xdff6,0xe7f6,0xeff6,0xeff6,0xf7f6, 0xfff6,0xffd5,0xff95,0xff74,0xff34,0xff13,0xfed2,0xfeb2, 0xfe71,0xfe51,0xfe30,0xfe10,0xfdcf,0xfdaf,0xfd8e,0xfd6e, 0xfd4d,0xfd2d,0xfd0d,0xfcec,0xfccc,0xfcac,0xfc8b,0xfc6b, 0xfc4b,0xfc4a,0xfc2a,0xfc0a,0xfbe9,0xfbe9,0xfbc9,0xfba8, 0xfb88,0xfb88,0xfb68,0xfb47,0xfb47,0xfb27,0xfb07,0xfb06, 0xfae6,0xfae6,0xfac6,0xfaa5,0xfaa5,0xfa85,0xfa85,0xfa65, 0xfa64,0xfa44,0xfa44,0xfa24,0xfa24,0xfa03,0xfa03,0xfa03, 0xf9e3,0xf9e3,0xf9c3,0xf9c2,0xf9a2,0xf9a2,0xf9a2,0xf982, 0xf982,0xf981,0xf961,0xf961,0xf941,0xf941,0x0000,0x0000, 0x0000,0x038b,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9,0x07f9, 0x07f9,0x07f9,0x07f9,0x07f9,0x0ff9,0x0ff9,0x17f9,0x17f9, 0x1ff9,0x1ff9,0x1ff9,0x27f9,0x27f9,0x2ff9,0x2ff9,0x37f9, 0x37f9,0x3ff9,0x3ff9,0x3ff9,0x47f9,0x47f9,0x4ff8,0x4ff8, 0x57f8,0x57f8,0x5ff8,0x67f8,0x67f8,0x6ff8,0x6ff8,0x77f8, 0x77f8,0x7ff8,0x87f8,0x87f8,0x8ff8,0x97f8,0x97f8,0x9ff8, 0x9ff8,0xa7f8,0xaff7,0xaff7,0xb7f7,0xbff7,0xc7f7,0xc7f7, 0xcff7,0xd7f7,0xdff7,0xdff7,0xe7f7,0xeff7,0xf7f7,0xfff7, 0xffd6,0xffb6,0xff75,0xff54,0xff14,0xfef3,0xfeb3,0xfe92, 0xfe51,0xfe31,0xfe10,0xfdf0,0xfdcf,0xfdaf,0xfd6f,0xfd4e, 0xfd2e,0xfd0d,0xfced,0xfccd,0xfcac,0xfc8c,0xfc6b,0xfc6b, 0xfc4b,0xfc2a,0xfc0a,0xfbea,0xfbe9,0xfbc9,0xfba9,0xfb89, 0xfb88,0xfb68,0xfb48,0xfb48,0xfb27,0xfb07,0xfb07,0xfae7, 0xfae6,0xfac6,0xfaa6,0xfaa6,0xfa85,0xfa85,0xfa65,0xfa65, 0xfa45,0xfa44,0xfa24,0xfa24,0xfa04,0xfa04,0xf9e3,0xf9e3, 0xf9e3,0xf9c3,0xf9c3,0xf9a3,0xf9a2,0xf9a2,0xf982,0xf982, 0xf962,0xf962,0xf961,0xf941,0xf941,0xf941,0x7080,0x0000, 0x0000,0x0552,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x0ffa,0x0ffa,0x0ffa,0x17fa,0x17fa, 0x1ffa,0x1ffa,0x27fa,0x27fa,0x27f9,0x2ff9,0x2ff9,0x37f9, 0x37f9,0x3ff9,0x3ff9,0x47f9,0x47f9,0x4ff9,0x4ff9,0x57f9, 0x57f9,0x5ff9,0x5ff9,0x67f9,0x67f9,0x6ff9,0x77f9,0x77f9, 0x7ff9,0x7ff9,0x87f9,0x8ff9,0x8ff9,0x97f9,0x9ff8,0x9ff8, 0xa7f8,0xaff8,0xaff8,0xb7f8,0xbff8,0xbff8,0xc7f8,0xcff8, 0xd7f8,0xd7f8,0xdff8,0xe7f8,0xeff8,0xf7f8,0xfff8,0xfff7, 0xffb7,0xff96,0xff55,0xff35,0xfef4,0xfed4,0xfe93,0xfe72, 0xfe32,0xfe11,0xfdf1,0xfdd0,0xfdb0,0xfd8f,0xfd4f,0xfd2f, 0xfd0e,0xfcee,0xfccd,0xfcad,0xfc8c,0xfc8c,0xfc4c,0xfc4b, 0xfc2b,0xfc0b,0xfbea,0xfbea,0xfbca,0xfba9,0xfb89,0xfb89, 0xfb69,0xfb48,0xfb28,0xfb28,0xfb07,0xfb07,0xfae7,0xfac7, 0xfac6,0xfaa6,0xfaa6,0xfa86,0xfa86,0xfa65,0xfa65,0xfa45, 0xfa45,0xfa25,0xfa24,0xfa04,0xfa04,0xf9e4,0xf9e4,0xf9c3, 0xf9c3,0xf9c3,0xf9a3,0xf9a3,0xf983,0xf982,0xf982,0xf962, 0xf962,0xf962,0xf942,0xf941,0xf921,0xf921,0xa8c1,0x0000, 0x0000,0x0552,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa,0x07fa, 0x07fa,0x07fa,0x07fa,0x0ffa,0x0ffa,0x0ffa,0x17fa,0x17fa, 0x1ffa,0x1ffa,0x27fa,0x27fa,0x2ffa,0x2ffa,0x2ffa,0x37fa, 0x37fa,0x3ffa,0x3ffa,0x47fa,0x47fa,0x4ffa,0x4ffa,0x57fa, 0x5ffa,0x5ffa,0x67fa,0x67f9,0x6ff9,0x6ff9,0x77f9,0x77f9, 0x7ff9,0x87f9,0x87f9,0x8ff9,0x97f9,0x97f9,0x9ff9,0xa7f9, 0xa7f9,0xaff9,0xb7f9,0xb7f9,0xbff9,0xc7f9,0xcff9,0xcff9, 0xd7f9,0xdff9,0xe7f8,0xeff8,0xf7f8,0xf7f8,0xfff8,0xffd8, 0xff97,0xff76,0xff36,0xfef5,0xfed4,0xfeb4,0xfe73,0xfe53, 0xfe12,0xfdf2,0xfdd1,0xfdb1,0xfd90,0xfd70,0xfd2f,0xfd0f, 0xfcee,0xfcce,0xfcad,0xfcad,0xfc8d,0xfc6c,0xfc4c,0xfc2c, 0xfc0b,0xfbeb,0xfbeb,0xfbca,0xfbaa,0xfb8a,0xfb89,0xfb69, 0xfb49,0xfb48,0xfb28,0xfb08,0xfb08,0xfae7,0xfac7,0xfac7, 0xfaa7,0xfaa6,0xfa86,0xfa86,0xfa66,0xfa66,0xfa45,0xfa45, 0xfa25,0xfa25,0xfa04,0xfa04,0xf9e4,0xf9e4,0xf9c4,0xf9c4, 0xf9c3,0xf9a3,0xf9a3,0xf983,0xf983,0xf983,0xf962,0xf962, 0xf962,0xf942,0xf942,0xf922,0xf921,0xf921,0xa8a1,0x0000, 0x0000,0x0552,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x0ffb,0x0ffb,0x17fb,0x17fb,0x17fb, 0x1ffb,0x1ffb,0x27fb,0x27fb,0x2ffb,0x2ffb,0x37fb,0x37fb, 0x3ffb,0x3ffb,0x47fa,0x47fa,0x4ffa,0x4ffa,0x57fa,0x57fa, 0x5ffa,0x5ffa,0x67fa,0x67fa,0x6ffa,0x77fa,0x77fa,0x7ffa, 0x7ffa,0x87fa,0x8ffa,0x8ffa,0x97fa,0x9ffa,0x9ffa,0xa7fa, 0xaffa,0xaffa,0xb7fa,0xbffa,0xc7fa,0xc7fa,0xcffa,0xd7f9, 0xdff9,0xe7f9,0xeff9,0xeff9,0xf7f9,0xfff9,0xffd9,0xff98, 0xff77,0xff37,0xfef6,0xfed5,0xfeb5,0xfe74,0xfe53,0xfe33, 0xfdf2,0xfdd2,0xfdb1,0xfd91,0xfd70,0xfd50,0xfd0f,0xfcef, 0xfcce,0xfcae,0xfc8e,0xfc8d,0xfc6d,0xfc4d,0xfc2c,0xfc0c, 0xfbeb,0xfbeb,0xfbcb,0xfbaa,0xfb8a,0xfb8a,0xfb6a,0xfb49, 0xfb29,0xfb29,0xfb08,0xfb08,0xfae8,0xfac8,0xfac7,0xfaa7, 0xfaa7,0xfa87,0xfa66,0xfa66,0xfa46,0xfa46,0xfa26,0xfa25, 0xfa05,0xfa05,0xfa05,0xf9e4,0xf9e4,0xf9c4,0xf9c4,0xf9a4, 0xf9a4,0xf9a3,0xf983,0xf983,0xf963,0xf963,0xf963,0xf942, 0xf942,0xf942,0xf922,0xf922,0xf922,0xf902,0xa8a1,0x0000, 0x0000,0x0552,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x07fc,0x07fc,0x07fb,0x07fb,0x07fb,0x07fb, 0x07fb,0x07fb,0x07fb,0x0ffb,0x0ffb,0x17fb,0x17fb,0x1ffb, 0x1ffb,0x1ffb,0x27fb,0x27fb,0x2ffb,0x2ffb,0x37fb,0x37fb, 0x3ffb,0x3ffb,0x47fb,0x47fb,0x4ffb,0x4ffb,0x57fb,0x57fb, 0x5ffb,0x67fb,0x67fb,0x6ffb,0x6ffb,0x77fb,0x7ffb,0x7ffb, 0x87fb,0x87fb,0x8ffb,0x97fb,0x97fb,0x9ffa,0xa7fa,0xa7fa, 0xaffa,0xb7fa,0xbffa,0xbffa,0xc7fa,0xcffa,0xd7fa,0xd7fa, 0xdffa,0xe7fa,0xeffa,0xf7fa,0xfffa,0xfffa,0xffb9,0xff78, 0xff37,0xff17,0xfed6,0xfeb5,0xfe95,0xfe54,0xfe34,0xfe13, 0xfdd2,0xfdb2,0xfd91,0xfd71,0xfd50,0xfd30,0xfd10,0xfcef, 0xfccf,0xfcae,0xfc8e,0xfc6e,0xfc4d,0xfc2d,0xfc0c,0xfbec, 0xfbec,0xfbcb,0xfbab,0xfb8b,0xfb8a,0xfb6a,0xfb4a,0xfb49, 0xfb29,0xfb09,0xfb09,0xfae8,0xfac8,0xfac8,0xfaa8,0xfaa7, 0xfa87,0xfa87,0xfa67,0xfa46,0xfa46,0xfa26,0xfa26,0xfa06, 0xfa05,0xfa05,0xf9e5,0xf9e5,0xf9c4,0xf9c4,0xf9a4,0xf9a4, 0xf9a4,0xf984,0xf983,0xf963,0xf963,0xf963,0xf943,0xf943, 0xf942,0xf922,0xf922,0xf902,0xf902,0xf902,0xa8a1,0x0000, 0x0000,0x0553,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc,0x07fc, 0x07fc,0x07fc,0x0ffc,0x0ffc,0x0ffc,0x17fc,0x17fc,0x1ffc, 0x1ffc,0x27fc,0x27fc,0x2ffc,0x2ffc,0x2ffc,0x37fc,0x37fc, 0x3ffc,0x3ffc,0x47fc,0x4ffc,0x4ffc,0x57fc,0x57fc,0x5ffc, 0x5ffc,0x67fc,0x67fc,0x6ffc,0x77fc,0x77fc,0x7ffb,0x7ffb, 0x87fb,0x8ffb,0x8ffb,0x97fb,0x9ffb,0x9ffb,0xa7fb,0xaffb, 0xb7fb,0xb7fb,0xbffb,0xc7fb,0xcffb,0xcffb,0xd7fb,0xdffb, 0xe7fb,0xeffb,0xf7fb,0xfffb,0xfffb,0xffba,0xff79,0xff59, 0xff18,0xfef7,0xfeb6,0xfe96,0xfe55,0xfe35,0xfe14,0xfdf3, 0xfdb3,0xfd92,0xfd72,0xfd51,0xfd31,0xfd10,0xfcf0,0xfccf, 0xfcaf,0xfc8f,0xfc6e,0xfc4e,0xfc2d,0xfc0d,0xfbed,0xfbec, 0xfbcc,0xfbac,0xfb8b,0xfb8b,0xfb6b,0xfb4a,0xfb2a,0xfb2a, 0xfb09,0xfae9,0xfae9,0xfac9,0xfac8,0xfaa8,0xfa88,0xfa88, 0xfa67,0xfa67,0xfa47,0xfa47,0xfa26,0xfa26,0xfa06,0xfa06, 0xf9e5,0xf9e5,0xf9c5,0xf9c5,0xf9c5,0xf9a4,0xf9a4,0xf984, 0xf984,0xf984,0xf964,0xf963,0xf943,0xf943,0xf943,0xf923, 0xf923,0xf922,0xf902,0xf902,0xf902,0xf8e2,0xa881,0x0000, 0x0000,0x0553,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x0ffd,0x0ffd,0x17fd,0x17fd,0x17fc,0x1ffc, 0x1ffc,0x27fc,0x27fc,0x2ffc,0x2ffc,0x37fc,0x37fc,0x3ffc, 0x3ffc,0x47fc,0x47fc,0x4ffc,0x4ffc,0x57fc,0x57fc,0x5ffc, 0x67fc,0x67fc,0x6ffc,0x6ffc,0x77fc,0x7ffc,0x7ffc,0x87fc, 0x87fc,0x8ffc,0x97fc,0x97fc,0x9ffc,0xa7fc,0xaffc,0xaffc, 0xb7fc,0xbffc,0xc7fc,0xc7fc,0xcffc,0xd7fc,0xdffc,0xe7fc, 0xeffc,0xeffc,0xf7fc,0xfffc,0xffdb,0xff9a,0xff59,0xff39, 0xfef8,0xfed7,0xfe97,0xfe76,0xfe35,0xfe15,0xfdf4,0xfdd4, 0xfd93,0xfd73,0xfd52,0xfd32,0xfd11,0xfcf1,0xfcd0,0xfcb0, 0xfc8f,0xfc6f,0xfc4e,0xfc2e,0xfc0e,0xfbed,0xfbed,0xfbcc, 0xfbac,0xfb8c,0xfb8b,0xfb6b,0xfb4b,0xfb2a,0xfb2a,0xfb0a, 0xfaea,0xfae9,0xfac9,0xfac9,0xfaa8,0xfa88,0xfa88,0xfa68, 0xfa67,0xfa47,0xfa47,0xfa27,0xfa26,0xfa06,0xfa06,0xf9e6, 0xf9e6,0xf9c5,0xf9c5,0xf9c5,0xf9a5,0xf9a5,0xf984,0xf984, 0xf964,0xf964,0xf964,0xf944,0xf943,0xf943,0xf923,0xf923, 0xf923,0xf903,0xf902,0xf8e2,0xf8e2,0xf8e2,0xa881,0x0000, 0x00e3,0x0637,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd,0x07fd, 0x07fd,0x07fd,0x0ffd,0x0ffd,0x17fd,0x17fd,0x1ffd,0x1ffd, 0x27fd,0x27fd,0x27fd,0x2ffd,0x2ffd,0x37fd,0x37fd,0x3ffd, 0x3ffd,0x47fd,0x4ffd,0x4ffd,0x57fd,0x57fd,0x5ffd,0x5ffd, 0x67fd,0x67fd,0x6ffd,0x77fd,0x77fd,0x7ffd,0x87fd,0x87fd, 0x8ffd,0x8ffd,0x97fd,0x9ffd,0xa7fd,0xa7fd,0xaffd,0xb7fd, 0xbffd,0xbffd,0xc7fd,0xcffd,0xd7fd,0xdffd,0xdffd,0xe7fd, 0xeffd,0xf7fd,0xfffd,0xffdc,0xff9b,0xff7b,0xff3a,0xfef9, 0xfed8,0xfe98,0xfe77,0xfe56,0xfe16,0xfdf5,0xfdd4,0xfd94, 0xfd73,0xfd53,0xfd32,0xfd12,0xfcf1,0xfcd1,0xfcb0,0xfc90, 0xfc6f,0xfc4f,0xfc2f,0xfc0e,0xfbee,0xfbed,0xfbcd,0xfbad, 0xfb8c,0xfb8c,0xfb6c,0xfb4b,0xfb2b,0xfb2b,0xfb0a,0xfaea, 0xfaea,0xfaca,0xfaa9,0xfaa9,0xfa89,0xfa88,0xfa68,0xfa68, 0xfa48,0xfa47,0xfa27,0xfa27,0xfa07,0xfa06,0xf9e6,0xf9e6, 0xf9c6,0xf9c6,0xf9a5,0xf9a5,0xf985,0xf985,0xf985,0xf964, 0xf964,0xf964,0xf944,0xf944,0xf924,0xf923,0xf923,0xf903, 0xf903,0xf903,0xf8e3,0xf8e2,0xf8e2,0xf8c2,0xc0a1,0x1800, 0x02aa,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x0ffe,0x0ffe,0x17fe,0x17fe,0x1ffe,0x1ffe, 0x27fe,0x27fe,0x2ffe,0x2ffe,0x37fe,0x37fe,0x3ffe,0x3ffe, 0x47fe,0x47fe,0x4ffe,0x4ffe,0x57fe,0x57fe,0x5ffe,0x5ffe, 0x67fe,0x6ffe,0x6ffe,0x77fe,0x7ffe,0x7ffe,0x87fe,0x8ffe, 0x8ffe,0x97fe,0x9ffe,0x9ffe,0xa7fe,0xaffe,0xb7fe,0xb7fe, 0xbffe,0xc7fe,0xcffe,0xcffe,0xd7fe,0xdffe,0xe7fe,0xeffe, 0xf7fe,0xfffe,0xfffd,0xffbc,0xff7c,0xff5b,0xff1a,0xfed9, 0xfeb9,0xfe78,0xfe57,0xfe37,0xfdf6,0xfdd5,0xfdb5,0xfd94, 0xfd53,0xfd33,0xfd12,0xfcf2,0xfcd1,0xfcb1,0xfc91,0xfc70, 0xfc50,0xfc2f,0xfc0f,0xfbee,0xfbee,0xfbce,0xfbad,0xfb8d, 0xfb8d,0xfb6c,0xfb4c,0xfb2c,0xfb2b,0xfb0b,0xfaeb,0xfaea, 0xfaca,0xfaaa,0xfaa9,0xfa89,0xfa89,0xfa69,0xfa68,0xfa48, 0xfa28,0xfa28,0xfa07,0xfa07,0xfa07,0xf9e7,0xf9e6,0xf9c6, 0xf9c6,0xf9a6,0xf9a6,0xf985,0xf985,0xf985,0xf965,0xf965, 0xf944,0xf944,0xf944,0xf924,0xf924,0xf924,0xf903,0xf903, 0xf903,0xf8e3,0xf8e3,0xf8e3,0xf8c2,0xf8c2,0xf8c2,0x5020, 0x02aa,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe,0x07fe, 0x07fe,0x0ffe,0x0ffe,0x0ffe,0x17fe,0x17fe,0x1ffe,0x1ffe, 0x27fe,0x27fe,0x2ffe,0x2ffe,0x37fe,0x37fe,0x3ffe,0x3ffe, 0x47fe,0x47fe,0x4ffe,0x4ffe,0x57fe,0x5ffe,0x5ffe,0x67fe, 0x67fe,0x6ffe,0x77ff,0x77ff,0x7fff,0x87ff,0x87ff,0x8fff, 0x97ff,0x97ff,0x9fff,0xa7ff,0xafff,0xafff,0xb7ff,0xbfff, 0xc7ff,0xc7ff,0xcfff,0xd7ff,0xdfff,0xe7ff,0xefff,0xf7ff, 0xffff,0xfffe,0xffbe,0xff9d,0xff5c,0xff1b,0xfeda,0xfeba, 0xfe79,0xfe58,0xfe37,0xfdf7,0xfdd6,0xfdb6,0xfd75,0xfd54, 0xfd34,0xfd13,0xfcf3,0xfcd2,0xfcb2,0xfc91,0xfc71,0xfc50, 0xfc30,0xfc10,0xfbef,0xfbef,0xfbce,0xfbae,0xfb8d,0xfb6d, 0xfb6d,0xfb4c,0xfb2c,0xfb2c,0xfb0b,0xfaeb,0xfacb,0xfacb, 0xfaaa,0xfaaa,0xfa8a,0xfa89,0xfa69,0xfa49,0xfa49,0xfa28, 0xfa28,0xfa08,0xfa08,0xf9e7,0xf9e7,0xf9c7,0xf9c7,0xf9c6, 0xf9a6,0xf9a6,0xf986,0xf986,0xf965,0xf965,0xf965,0xf945, 0xf945,0xf944,0xf924,0xf924,0xf904,0xf904,0xf904,0xf8e3, 0xf8e3,0xf8e3,0xf8c3,0xf8c3,0xf8c3,0xf8a2,0xf8a2,0x5020, 0x02aa,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x0fff,0x0fff,0x17ff,0x17ff,0x17ff,0x1fff,0x1fff, 0x27ff,0x27ff,0x2fff,0x2fff,0x37ff,0x37ff,0x3fff,0x3fff, 0x47ff,0x4fff,0x4fff,0x57ff,0x57ff,0x5fff,0x5fff,0x67ff, 0x6fff,0x6fff,0x77ff,0x7fff,0x7fff,0x87ff,0x8fff,0x8fff, 0x97ff,0x9fff,0x9fff,0xa7ff,0xafff,0xb7ff,0xb7ff,0xbfff, 0xc7ff,0xcfff,0xd7ff,0xd7ff,0xdfff,0xe7ff,0xefff,0xf7ff, 0xffff,0xffdf,0xff9e,0xff5d,0xff1c,0xfefb,0xfeba,0xfe9a, 0xfe59,0xfe38,0xfe18,0xfdd7,0xfdb6,0xfd96,0xfd75,0xfd35, 0xfd14,0xfcf4,0xfcd3,0xfcb2,0xfc92,0xfc72,0xfc51,0xfc31, 0xfc10,0xfbf0,0xfbef,0xfbcf,0xfbae,0xfb8e,0xfb6e,0xfb6d, 0xfb4d,0xfb2d,0xfb2c,0xfb0c,0xfaec,0xfaeb,0xfacb,0xfaab, 0xfaaa,0xfa8a,0xfa8a,0xfa6a,0xfa49,0xfa49,0xfa29,0xfa28, 0xfa08,0xfa08,0xf9e8,0xf9e8,0xf9c7,0xf9c7,0xf9a7,0xf9a7, 0xf9a6,0xf986,0xf986,0xf966,0xf966,0xf965,0xf945,0xf945, 0xf925,0xf925,0xf924,0xf904,0xf904,0xf904,0xf8e4,0xf8e4, 0xf8e3,0xf8c3,0xf8c3,0xf8c3,0xf8a3,0xf8a3,0xf8a2,0x5020, 0x02aa,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff,0x07ff, 0x07ff,0x0fff,0x0fff,0x17ff,0x17df,0x1fdf,0x1fdf,0x27df, 0x27df,0x2fdf,0x2fdf,0x37df,0x37df,0x3fdf,0x3fdf,0x47df, 0x47df,0x4fdf,0x4fdf,0x57df,0x57df,0x5fdf,0x67df,0x67df, 0x6fdf,0x6fdf,0x77df,0x7fdf,0x7fdf,0x87df,0x8fdf,0x8fdf, 0x97df,0x9fdf,0x9fdf,0xa7df,0xafdf,0xb7df,0xb7df,0xbfbf, 0xc7bf,0xcfbf,0xd7bf,0xd7bf,0xdfbf,0xe7bf,0xefbf,0xf7bf, 0xffbf,0xff9f,0xff5e,0xff3d,0xfefc,0xfedc,0xfe9b,0xfe7a, 0xfe39,0xfe19,0xfdd8,0xfdb7,0xfd97,0xfd76,0xfd35,0xfd15, 0xfcf4,0xfcd4,0xfcb3,0xfc93,0xfc72,0xfc52,0xfc31,0xfc11, 0xfbf0,0xfbf0,0xfbcf,0xfbaf,0xfb8f,0xfb6e,0xfb4e,0xfb4e, 0xfb2d,0xfb2d,0xfb0c,0xfaec,0xfacc,0xfacc,0xfaab,0xfaab, 0xfa8b,0xfa6a,0xfa6a,0xfa4a,0xfa49,0xfa29,0xfa29,0xfa09, 0xfa08,0xf9e8,0xf9e8,0xf9c8,0xf9c7,0xf9a7,0xf9a7,0xf987, 0xf987,0xf986,0xf966,0xf966,0xf946,0xf946,0xf945,0xf925, 0xf925,0xf925,0xf905,0xf904,0xf8e4,0xf8e4,0xf8e4,0xf8c4, 0xf8c4,0xf8c3,0xf8a3,0xf8a3,0xf8a3,0xf8a3,0xf883,0x5021, 0x028a,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df, 0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df, 0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df, 0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df,0x07df, 0x07bf,0x0fbf,0x0fbf,0x17bf,0x17bf,0x1fbf,0x1fbf,0x27bf, 0x27bf,0x2fbf,0x2fbf,0x37bf,0x37bf,0x3fbf,0x3fbf,0x47bf, 0x47bf,0x4fbf,0x4fbf,0x57bf,0x57bf,0x5fbf,0x67bf,0x67bf, 0x6fbf,0x6fbf,0x77bf,0x7f9f,0x7f9f,0x879f,0x8f9f,0x8f9f, 0x979f,0x9f9f,0x9f9f,0xa79f,0xaf9f,0xaf9f,0xb79f,0xbf9f, 0xc79f,0xcf9f,0xcf9f,0xd79f,0xdf9f,0xe79f,0xef9f,0xf77f, 0xff7f,0xff7f,0xff3e,0xff1e,0xfedd,0xfebc,0xfe7b,0xfe5a, 0xfe1a,0xfdf9,0xfdb8,0xfd98,0xfd77,0xfd56,0xfd16,0xfcf5, 0xfcd4,0xfcb4,0xfc93,0xfc73,0xfc52,0xfc32,0xfc11,0xfbf1, 0xfbf1,0xfbd0,0xfbb0,0xfb8f,0xfb6f,0xfb6f,0xfb4e,0xfb2e, 0xfb0d,0xfb0d,0xfaed,0xfacc,0xfacc,0xfaac,0xfaab,0xfa8b, 0xfa6b,0xfa6b,0xfa4a,0xfa4a,0xfa2a,0xfa29,0xfa09,0xfa09, 0xf9e9,0xf9e8,0xf9c8,0xf9c8,0xf9a8,0xf9a7,0xf987,0xf987, 0xf967,0xf967,0xf966,0xf946,0xf946,0xf926,0xf925,0xf925, 0xf905,0xf905,0xf905,0xf8e5,0xf8e4,0xf8e4,0xf8c4,0xf8c4, 0xf8c4,0xf8a4,0xf8a3,0xf8a3,0xf883,0xf883,0xf883,0x5021, 0x028a,0x07bf,0x07bf,0x07bf,0x07bf,0x07bf,0x07bf,0x07bf, 0x07bf,0x07bf,0x07bf,0x07bf,0x07bf,0x07bf,0x07bf,0x07bf, 0x07bf,0x07bf,0x07bf,0x07bf,0x079f,0x079f,0x079f,0x079f, 0x079f,0x079f,0x079f,0x079f,0x079f,0x079f,0x079f,0x079f, 0x0f9f,0x0f9f,0x0f9f,0x179f,0x179f,0x1f9f,0x1f9f,0x279f, 0x279f,0x2f9f,0x2f9f,0x379f,0x377f,0x3f7f,0x3f7f,0x477f, 0x477f,0x4f7f,0x4f7f,0x577f,0x577f,0x5f7f,0x677f,0x677f, 0x6f7f,0x6f7f,0x777f,0x7f7f,0x7f7f,0x877f,0x8f7f,0x8f7f, 0x975f,0x975f,0x9f5f,0xa75f,0xaf5f,0xaf5f,0xb75f,0xbf5f, 0xc75f,0xc75f,0xcf5f,0xd75f,0xdf5f,0xe75f,0xef5f,0xef5f, 0xf73f,0xff3f,0xff1f,0xfede,0xfebd,0xfe7c,0xfe3b,0xfe1b, 0xfdfa,0xfdd9,0xfd98,0xfd78,0xfd57,0xfd37,0xfcf6,0xfcd5, 0xfcb5,0xfc94,0xfc74,0xfc53,0xfc33,0xfc12,0xfbf2,0xfbf1, 0xfbd1,0xfbb0,0xfb90,0xfb70,0xfb4f,0xfb4f,0xfb2e,0xfb0e, 0xfb0e,0xfaed,0xfacd,0xfacd,0xfaac,0xfa8c,0xfa8c,0xfa6b, 0xfa6b,0xfa4b,0xfa2a,0xfa2a,0xfa0a,0xfa0a,0xf9e9,0xf9e9, 0xf9c9,0xf9c9,0xf9a8,0xf9a8,0xf9a8,0xf988,0xf987,0xf967, 0xf967,0xf947,0xf947,0xf946,0xf926,0xf926,0xf926,0xf905, 0xf905,0xf8e5,0xf8e5,0xf8e5,0xf8c5,0xf8c4,0xf8c4,0xf8a4, 0xf8a4,0xf8a4,0xf8a4,0xf883,0xf883,0xf883,0xf863,0x5021, 0x00c3,0x05f8,0x079f,0x079f,0x079f,0x079f,0x079f,0x079f, 0x079f,0x079f,0x079f,0x079f,0x079f,0x079f,0x079f,0x079f, 0x079f,0x079f,0x079f,0x079f,0x077f,0x077f,0x077f,0x077f, 0x077f,0x077f,0x077f,0x077f,0x077f,0x077f,0x077f,0x077f, 0x0f7f,0x0f7f,0x177f,0x177f,0x177f,0x1f7f,0x1f7f,0x277f, 0x277f,0x2f7f,0x2f5f,0x375f,0x375f,0x3f5f,0x3f5f,0x475f, 0x475f,0x4f5f,0x4f5f,0x575f,0x575f,0x5f5f,0x675f,0x675f, 0x6f5f,0x6f5f,0x775f,0x7f3f,0x7f3f,0x873f,0x873f,0x8f3f, 0x973f,0x973f,0x9f3f,0xa73f,0xaf3f,0xaf3f,0xb73f,0xbf3f, 0xc73f,0xc71f,0xcf1f,0xd71f,0xdf1f,0xdf1f,0xe71f,0xef1f, 0xf71f,0xff1f,0xfeff,0xfebe,0xfe7d,0xfe5c,0xfe1c,0xfdfb, 0xfdda,0xfdb9,0xfd79,0xfd58,0xfd37,0xfd17,0xfcd6,0xfcb6, 0xfc95,0xfc74,0xfc54,0xfc33,0xfc13,0xfc12,0xfbf2,0xfbd1, 0xfbb1,0xfb91,0xfb70,0xfb70,0xfb4f,0xfb2f,0xfb0f,0xfb0e, 0xfaee,0xfacd,0xfacd,0xfaad,0xfa8c,0xfa8c,0xfa6c,0xfa6c, 0xfa4b,0xfa2b,0xfa2b,0xfa0a,0xfa0a,0xf9ea,0xf9e9,0xf9c9, 0xf9c9,0xf9a9,0xf9a8,0xf9a8,0xf988,0xf988,0xf968,0xf967, 0xf947,0xf947,0xf947,0xf926,0xf926,0xf906,0xf906,0xf906, 0xf8e5,0xf8e5,0xf8e5,0xf8c5,0xf8c5,0xf8c5,0xf8a4,0xf8a4, 0xf8a4,0xf884,0xf884,0xf884,0xf883,0xf863,0xc042,0x1800, 0x0000,0x04f5,0x077f,0x077f,0x077f,0x077f,0x077f,0x077f, 0x077f,0x077f,0x077f,0x077f,0x077f,0x075f,0x075f,0x075f, 0x075f,0x075f,0x075f,0x075f,0x075f,0x075f,0x075f,0x075f, 0x075f,0x075f,0x075f,0x075f,0x075f,0x075f,0x075f,0x075f, 0x0f5f,0x0f5f,0x173f,0x173f,0x173f,0x1f3f,0x1f3f,0x273f, 0x273f,0x2f3f,0x2f3f,0x373f,0x373f,0x3f3f,0x3f3f,0x473f, 0x473f,0x4f3f,0x4f1f,0x571f,0x571f,0x5f1f,0x671f,0x671f, 0x6f1f,0x6f1f,0x771f,0x771f,0x7f1f,0x871f,0x871f,0x8eff, 0x96ff,0x96ff,0x9eff,0xa6ff,0xa6ff,0xaeff,0xb6ff,0xbeff, 0xbeff,0xc6ff,0xceff,0xd6df,0xdedf,0xdedf,0xe6df,0xeedf, 0xf6df,0xfedf,0xfebf,0xfe9e,0xfe5d,0xfe3d,0xfdfc,0xfddb, 0xfd9a,0xfd7a,0xfd59,0xfd38,0xfd18,0xfcf7,0xfcb6,0xfc96, 0xfc75,0xfc55,0xfc34,0xfc14,0xfbf3,0xfbf3,0xfbd2,0xfbb2, 0xfb91,0xfb71,0xfb50,0xfb50,0xfb30,0xfb0f,0xfaef,0xfaee, 0xface,0xface,0xfaad,0xfa8d,0xfa8d,0xfa6c,0xfa4c,0xfa4c, 0xfa2b,0xfa2b,0xfa0b,0xfa0b,0xf9ea,0xf9ea,0xf9ca,0xf9c9, 0xf9a9,0xf9a9,0xf989,0xf988,0xf968,0xf968,0xf968,0xf947, 0xf947,0xf927,0xf927,0xf927,0xf906,0xf906,0xf906,0xf8e6, 0xf8e6,0xf8c5,0xf8c5,0xf8c5,0xf8a5,0xf8a5,0xf8a5,0xf8a4, 0xf884,0xf884,0xf884,0xf864,0xf864,0xf863,0xa822,0x0000, 0x0000,0x04f5,0x075f,0x075f,0x075f,0x075f,0x075f,0x075f, 0x075f,0x075f,0x075f,0x075f,0x075f,0x075f,0x073f,0x073f, 0x073f,0x073f,0x073f,0x073f,0x073f,0x073f,0x073f,0x073f, 0x073f,0x073f,0x073f,0x073f,0x073f,0x073f,0x073f,0x073f, 0x0f3f,0x0f1f,0x171f,0x171f,0x1f1f,0x1f1f,0x1f1f,0x271f, 0x271f,0x2f1f,0x2f1f,0x371f,0x371f,0x3f1f,0x3f1f,0x471f, 0x46ff,0x4eff,0x4eff,0x56ff,0x56ff,0x5eff,0x66ff,0x66ff, 0x6eff,0x6eff,0x76ff,0x76ff,0x7edf,0x86df,0x86df,0x8edf, 0x96df,0x96df,0x9edf,0xa6df,0xa6df,0xaedf,0xb6df,0xb6bf, 0xbebf,0xc6bf,0xcebf,0xd6bf,0xd6bf,0xdebf,0xe6bf,0xeebf, 0xf69f,0xf69f,0xfe9f,0xfe7f,0xfe3e,0xfe1d,0xfddc,0xfdbb, 0xfd7b,0xfd5a,0xfd39,0xfd19,0xfcf8,0xfcd7,0xfc97,0xfc76, 0xfc55,0xfc35,0xfc14,0xfc14,0xfbf3,0xfbd3,0xfbb2,0xfb92, 0xfb71,0xfb51,0xfb51,0xfb30,0xfb10,0xfb0f,0xfaef,0xfacf, 0xfaae,0xfaae,0xfa8e,0xfa8d,0xfa6d,0xfa4d,0xfa4c,0xfa2c, 0xfa2c,0xfa0b,0xfa0b,0xf9eb,0xf9ea,0xf9ca,0xf9ca,0xf9aa, 0xf9a9,0xf989,0xf989,0xf969,0xf968,0xf968,0xf948,0xf948, 0xf927,0xf927,0xf927,0xf907,0xf907,0xf8e6,0xf8e6,0xf8e6, 0xf8c6,0xf8c6,0xf8c5,0xf8a5,0xf8a5,0xf8a5,0xf885,0xf885, 0xf884,0xf864,0xf864,0xf864,0xf864,0xf844,0xa822,0x0000, 0x0000,0x04d5,0x073f,0x073f,0x073f,0x073f,0x073f,0x073f, 0x073f,0x073f,0x071f,0x071f,0x071f,0x071f,0x071f,0x071f, 0x071f,0x071f,0x071f,0x071f,0x071f,0x071f,0x071f,0x071f, 0x071f,0x071f,0x071f,0x071f,0x06ff,0x06ff,0x06ff,0x06ff, 0x0eff,0x0eff,0x16ff,0x16ff,0x1eff,0x1eff,0x26ff,0x26ff, 0x26ff,0x2eff,0x2edf,0x36df,0x36df,0x3edf,0x3edf,0x46df, 0x46df,0x4edf,0x4edf,0x56df,0x56df,0x5edf,0x66bf,0x66bf, 0x6ebf,0x6ebf,0x76bf,0x76bf,0x7ebf,0x86bf,0x86bf,0x8ebf, 0x969f,0x969f,0x9e9f,0x9e9f,0xa69f,0xae9f,0xb69f,0xb69f, 0xbe9f,0xc67f,0xce7f,0xce7f,0xd67f,0xde7f,0xe67f,0xee7f, 0xee7f,0xf65f,0xfe5f,0xfe3f,0xfe1e,0xfddd,0xfdbc,0xfd9c, 0xfd5b,0xfd3a,0xfd19,0xfcf9,0xfcd8,0xfcb7,0xfc77,0xfc56, 0xfc36,0xfc15,0xfbf5,0xfbf4,0xfbd4,0xfbb3,0xfb93,0xfb72, 0xfb52,0xfb51,0xfb31,0xfb10,0xfaf0,0xfaf0,0xfacf,0xfaaf, 0xfaae,0xfa8e,0xfa6e,0xfa6d,0xfa4d,0xfa4d,0xfa2c,0xfa2c, 0xfa0c,0xf9ec,0xf9eb,0xf9cb,0xf9cb,0xf9aa,0xf9aa,0xf98a, 0xf98a,0xf989,0xf969,0xf969,0xf949,0xf948,0xf928,0xf928, 0xf928,0xf907,0xf907,0xf907,0xf8e7,0xf8e7,0xf8c6,0xf8c6, 0xf8c6,0xf8a6,0xf8a6,0xf8a5,0xf885,0xf885,0xf885,0xf885, 0xf865,0xf864,0xf864,0xf844,0xf844,0xf844,0xa822,0x0000, 0x0000,0x04b5,0x071f,0x071f,0x071f,0x071f,0x071f,0x071f, 0x071f,0x071f,0x071f,0x06ff,0x06ff,0x06ff,0x06ff,0x06ff, 0x06ff,0x06ff,0x06ff,0x06ff,0x06ff,0x06ff,0x06ff,0x06ff, 0x06ff,0x06ff,0x06ff,0x06ff,0x06df,0x06df,0x06df,0x0edf, 0x0edf,0x0edf,0x16df,0x16df,0x1edf,0x1edf,0x26df,0x26df, 0x26df,0x2ebf,0x2ebf,0x36bf,0x36bf,0x3ebf,0x3ebf,0x46bf, 0x46bf,0x4ebf,0x4ebf,0x56bf,0x569f,0x5e9f,0x669f,0x669f, 0x6e9f,0x6e9f,0x769f,0x769f,0x7e9f,0x869f,0x867f,0x8e7f, 0x967f,0x967f,0x9e7f,0x9e7f,0xa67f,0xae7f,0xb67f,0xb65f, 0xbe5f,0xc65f,0xc65f,0xce5f,0xd65f,0xde5f,0xe63f,0xe63f, 0xee3f,0xf63f,0xfe3f,0xfe1f,0xfdfe,0xfdbd,0xfd9c,0xfd7c, 0xfd3b,0xfd1a,0xfcfa,0xfcd9,0xfcb8,0xfc98,0xfc57,0xfc56, 0xfc16,0xfc15,0xfbf5,0xfbd4,0xfbb4,0xfb93,0xfb73,0xfb52, 0xfb52,0xfb31,0xfb11,0xfaf1,0xfaf0,0xfad0,0xfaaf,0xfaaf, 0xfa8f,0xfa6e,0xfa6e,0xfa4e,0xfa4d,0xfa2d,0xfa0d,0xfa0c, 0xf9ec,0xf9ec,0xf9cb,0xf9cb,0xf9ab,0xf9ab,0xf98a,0xf98a, 0xf96a,0xf969,0xf969,0xf949,0xf949,0xf929,0xf928,0xf928, 0xf908,0xf908,0xf8e7,0xf8e7,0xf8e7,0xf8c7,0xf8c7,0xf8c6, 0xf8a6,0xf8a6,0xf8a6,0xf886,0xf885,0xf885,0xf865,0xf865, 0xf865,0xf865,0xf844,0xf844,0xf844,0xf824,0xa822,0x0000, 0x0000,0x0495,0x06ff,0x06ff,0x06ff,0x06ff,0x06ff,0x06ff, 0x06ff,0x06df,0x06df,0x06df,0x06df,0x06df,0x06df,0x06df, 0x06df,0x06df,0x06df,0x06df,0x06df,0x06df,0x06df,0x06df, 0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x0ebf, 0x0ebf,0x0ebf,0x16bf,0x16bf,0x1ebf,0x1e9f,0x269f,0x269f, 0x2e9f,0x2e9f,0x2e9f,0x369f,0x369f,0x3e9f,0x3e9f,0x469f, 0x467f,0x4e7f,0x4e7f,0x567f,0x567f,0x5e7f,0x667f,0x667f, 0x6e7f,0x6e5f,0x765f,0x765f,0x7e5f,0x865f,0x865f,0x8e5f, 0x8e5f,0x965f,0x9e3f,0x9e3f,0xa63f,0xae3f,0xae3f,0xb63f, 0xbe3f,0xbe1f,0xc61f,0xce1f,0xd61f,0xde1f,0xde1f,0xe61f, 0xedff,0xf5ff,0xfdff,0xfdff,0xfdbe,0xfd9e,0xfd7d,0xfd3c, 0xfd1b,0xfcfb,0xfcda,0xfcb9,0xfc99,0xfc78,0xfc37,0xfc17, 0xfbf6,0xfbf6,0xfbd5,0xfbb5,0xfb94,0xfb74,0xfb53,0xfb53, 0xfb32,0xfb12,0xfaf1,0xfaf1,0xfad0,0xfab0,0xfa90,0xfa8f, 0xfa6f,0xfa6f,0xfa4e,0xfa2e,0xfa2d,0xfa0d,0xfa0d,0xf9ed, 0xf9ec,0xf9cc,0xf9cc,0xf9ab,0xf9ab,0xf98b,0xf98a,0xf96a, 0xf96a,0xf94a,0xf949,0xf949,0xf929,0xf929,0xf908,0xf908, 0xf908,0xf8e8,0xf8e8,0xf8e7,0xf8c7,0xf8c7,0xf8a7,0xf8a6, 0xf8a6,0xf8a6,0xf886,0xf886,0xf886,0xf865,0xf865,0xf865, 0xf845,0xf845,0xf845,0xf844,0xf824,0xf824,0xa802,0x0000, 0x0000,0x0495,0x06df,0x06df,0x06df,0x06df,0x06df,0x06df, 0x06df,0x06df,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf, 0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf, 0x06bf,0x069f,0x069f,0x069f,0x069f,0x069f,0x069f,0x0e9f, 0x0e9f,0x169f,0x169f,0x169f,0x1e9f,0x1e7f,0x267f,0x267f, 0x2e7f,0x2e7f,0x2e7f,0x367f,0x367f,0x3e7f,0x3e7f,0x465f, 0x465f,0x4e5f,0x4e5f,0x565f,0x565f,0x5e5f,0x665f,0x665f, 0x6e3f,0x6e3f,0x763f,0x763f,0x7e3f,0x7e3f,0x863f,0x8e3f, 0x8e1f,0x961f,0x9e1f,0x9e1f,0xa61f,0xae1f,0xae1f,0xb5ff, 0xbdff,0xbdff,0xc5ff,0xcdff,0xd5ff,0xd5ff,0xdddf,0xe5df, 0xeddf,0xf5df,0xfddf,0xfdbf,0xfd9f,0xfd7e,0xfd5d,0xfd1c, 0xfcfb,0xfcdb,0xfcba,0xfc99,0xfc79,0xfc58,0xfc37,0xfc17, 0xfbf6,0xfbd6,0xfbb5,0xfb95,0xfb74,0xfb54,0xfb53,0xfb33, 0xfb12,0xfaf2,0xfaf1,0xfad1,0xfab1,0xfab0,0xfa90,0xfa6f, 0xfa6f,0xfa4f,0xfa2e,0xfa2e,0xfa0e,0xfa0d,0xf9ed,0xf9ed, 0xf9cc,0xf9cc,0xf9ac,0xf9ab,0xf98b,0xf98b,0xf96b,0xf96a, 0xf94a,0xf94a,0xf92a,0xf929,0xf929,0xf909,0xf909,0xf908, 0xf8e8,0xf8e8,0xf8c8,0xf8c8,0xf8c7,0xf8a7,0xf8a7,0xf8a7, 0xf886,0xf886,0xf886,0xf866,0xf866,0xf866,0xf865,0xf845, 0xf845,0xf845,0xf825,0xf825,0xf824,0xf824,0xa803,0x0000, 0x0000,0x02ee,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf,0x06bf, 0x06bf,0x069f,0x069f,0x069f,0x069f,0x069f,0x069f,0x069f, 0x069f,0x069f,0x069f,0x069f,0x069f,0x069f,0x067f,0x067f, 0x067f,0x067f,0x067f,0x067f,0x067f,0x067f,0x067f,0x0e7f, 0x0e7f,0x167f,0x165f,0x165f,0x1e5f,0x1e5f,0x265f,0x265f, 0x2e5f,0x2e5f,0x365f,0x365f,0x363f,0x3e3f,0x3e3f,0x463f, 0x463f,0x4e3f,0x4e3f,0x563f,0x561f,0x5e1f,0x661f,0x661f, 0x6e1f,0x6e1f,0x761f,0x761f,0x7dff,0x7dff,0x85ff,0x8dff, 0x8dff,0x95ff,0x9dff,0x9ddf,0xa5df,0xa5df,0xaddf,0xb5df, 0xbddf,0xbddf,0xc5bf,0xcdbf,0xd5bf,0xd5bf,0xddbf,0xe5bf, 0xed9f,0xed9f,0xf59f,0xfd9f,0xfd7f,0xfd5e,0xfd1d,0xfcfd, 0xfcdc,0xfcbb,0xfc9a,0xfc7a,0xfc39,0xfc38,0xfbf8,0xfbf7, 0xfbd7,0xfbb6,0xfb95,0xfb75,0xfb54,0xfb34,0xfb13,0xfb13, 0xfaf3,0xfad2,0xfad2,0xfab1,0xfa91,0xfa90,0xfa70,0xfa50, 0xfa4f,0xfa2f,0xfa2e,0xfa0e,0xf9ee,0xf9ee,0xf9cd,0xf9cd, 0xf9ad,0xf9ac,0xf98c,0xf98c,0xf96b,0xf96b,0xf96b,0xf94b, 0xf94a,0xf92a,0xf92a,0xf90a,0xf909,0xf909,0xf8e9,0xf8e9, 0xf8e8,0xf8c8,0xf8c8,0xf8a8,0xf8a7,0xf8a7,0xf887,0xf887, 0xf887,0xf886,0xf866,0xf866,0xf866,0xf846,0xf846,0xf845, 0xf825,0xf825,0xf825,0xf825,0xf805,0xf804,0x7002,0x0000, 0x0000,0x0000,0x069f,0x069f,0x069f,0x069f,0x069f,0x069f, 0x069f,0x069f,0x067f,0x067f,0x067f,0x067f,0x067f,0x067f, 0x067f,0x067f,0x067f,0x067f,0x067f,0x067f,0x067f,0x065f, 0x065f,0x065f,0x065f,0x065f,0x065f,0x065f,0x0e5f,0x0e5f, 0x0e5f,0x165f,0x163f,0x1e3f,0x1e3f,0x1e3f,0x263f,0x263f, 0x2e3f,0x2e3f,0x363f,0x363f,0x3e1f,0x3e1f,0x3e1f,0x461f, 0x461f,0x4e1f,0x4e1f,0x561f,0x55ff,0x5dff,0x65ff,0x65ff, 0x6dff,0x6dff,0x75ff,0x75ff,0x7ddf,0x7ddf,0x85df,0x8ddf, 0x8ddf,0x95df,0x9dbf,0x9dbf,0xa5bf,0xa5bf,0xadbf,0xb5bf, 0xb5bf,0xbd9f,0xc59f,0xcd9f,0xcd9f,0xd59f,0xdd7f,0xe57f, 0xe57f,0xed7f,0xf57f,0xfd5f,0xfd5f,0xfd3e,0xfcfd,0xfcdd, 0xfcbc,0xfc9b,0xfc7b,0xfc5a,0xfc39,0xfc19,0xfbf8,0xfbd7, 0xfbb7,0xfb96,0xfb76,0xfb55,0xfb35,0xfb34,0xfb14,0xfaf3, 0xfad3,0xfad2,0xfab2,0xfa91,0xfa91,0xfa71,0xfa50,0xfa50, 0xfa2f,0xfa2f,0xfa0f,0xf9ee,0xf9ee,0xf9ce,0xf9cd,0xf9ad, 0xf9ad,0xf98c,0xf98c,0xf96c,0xf96c,0xf94b,0xf94b,0xf94b, 0xf92a,0xf92a,0xf90a,0xf90a,0xf909,0xf8e9,0xf8e9,0xf8c9, 0xf8c8,0xf8c8,0xf8a8,0xf8a8,0xf8a8,0xf887,0xf887,0xf887, 0xf867,0xf867,0xf866,0xf846,0xf846,0xf846,0xf846,0xf826, 0xf825,0xf825,0xf825,0xf805,0xf805,0xf805,0x0000,0x0000, 0x0000,0x0000,0x067f,0x067f,0x067f,0x067f,0x067f,0x067f, 0x067f,0x067f,0x065f,0x065f,0x065f,0x065f,0x065f,0x065f, 0x065f,0x065f,0x065f,0x065f,0x065f,0x065f,0x063f,0x063f, 0x063f,0x063f,0x063f,0x063f,0x063f,0x063f,0x0e3f,0x0e3f, 0x0e1f,0x161f,0x161f,0x1e1f,0x1e1f,0x1e1f,0x261f,0x261f, 0x2e1f,0x2e1f,0x35ff,0x35ff,0x3dff,0x3dff,0x45ff,0x45ff, 0x45ff,0x4dff,0x4ddf,0x55df,0x55df,0x5ddf,0x65df,0x65df, 0x6ddf,0x6dbf,0x75bf,0x75bf,0x7dbf,0x7dbf,0x85bf,0x8dbf, 0x8d9f,0x959f,0x959f,0x9d9f,0xa59f,0xa59f,0xad7f,0xb57f, 0xb57f,0xbd7f,0xc57f,0xc55f,0xcd5f,0xd55f,0xdd5f,0xdd5f, 0xe53f,0xed3f,0xf53f,0xfd3f,0xfd1f,0xfcff,0xfcde,0xfcbd, 0xfc9c,0xfc7c,0xfc5b,0xfc3a,0xfc19,0xfbf9,0xfbd8,0xfbb8, 0xfb97,0xfb77,0xfb56,0xfb35,0xfb15,0xfb14,0xfaf4,0xfad3, 0xfab3,0xfab3,0xfa92,0xfa92,0xfa71,0xfa51,0xfa30,0xfa30, 0xfa10,0xfa0f,0xf9ef,0xf9ef,0xf9ce,0xf9ce,0xf9ae,0xf9ad, 0xf98d,0xf98d,0xf96c,0xf96c,0xf94c,0xf94b,0xf92b,0xf92b, 0xf92b,0xf90a,0xf90a,0xf8ea,0xf8ea,0xf8e9,0xf8c9,0xf8c9, 0xf8a9,0xf8a8,0xf8a8,0xf888,0xf888,0xf888,0xf867,0xf867, 0xf867,0xf867,0xf847,0xf846,0xf846,0xf826,0xf826,0xf826, 0xf826,0xf805,0xf805,0xf805,0xf805,0xf805,0x0000,0x0000, 0x0000,0x0000,0x065f,0x065f,0x065f,0x065f,0x065f,0x065f, 0x065f,0x065f,0x065f,0x065f,0x063f,0x063f,0x063f,0x063f, 0x063f,0x063f,0x063f,0x063f,0x063f,0x063f,0x061f,0x061f, 0x061f,0x061f,0x061f,0x061f,0x061f,0x061f,0x0e1f,0x0e1f, 0x0dff,0x15ff,0x15ff,0x1dff,0x1dff,0x1dff,0x25ff,0x25ff, 0x2dff,0x2dff,0x35df,0x35df,0x3ddf,0x3ddf,0x45df,0x45df, 0x45df,0x4ddf,0x4dbf,0x55bf,0x55bf,0x5dbf,0x65bf,0x65bf, 0x6d9f,0x6d9f,0x759f,0x759f,0x7d9f,0x7d9f,0x859f,0x857f, 0x8d7f,0x957f,0x957f,0x9d7f,0xa57f,0xa55f,0xad5f,0xb55f, 0xb55f,0xbd5f,0xc53f,0xc53f,0xcd3f,0xd53f,0xdd3f,0xdd1f, 0xe51f,0xed1f,0xf51f,0xf51f,0xfcff,0xfcdf,0xfcbe,0xfc9d, 0xfc7c,0xfc5c,0xfc3b,0xfc1a,0xfbfa,0xfbd9,0xfbb8,0xfb98, 0xfb77,0xfb57,0xfb36,0xfb36,0xfb15,0xfaf5,0xfad4,0xfad4, 0xfab3,0xfa93,0xfa72,0xfa72,0xfa51,0xfa51,0xfa31,0xfa10, 0xfa10,0xf9f0,0xf9ef,0xf9cf,0xf9ae,0xf9ae,0xf98e,0xf98d, 0xf96d,0xf96d,0xf96d,0xf94c,0xf94c,0xf92c,0xf92b,0xf90b, 0xf90b,0xf90b,0xf8ea,0xf8ea,0xf8ca,0xf8ca,0xf8c9,0xf8a9, 0xf8a9,0xf8a9,0xf888,0xf888,0xf888,0xf868,0xf868,0xf867, 0xf847,0xf847,0xf847,0xf827,0xf826,0xf826,0xf826,0xf806, 0xf806,0xf805,0xf805,0xf805,0xf805,0xf805,0x0000,0x0000, 0x0000,0x0000,0x063f,0x063f,0x063f,0x063f,0x063f,0x063f, 0x063f,0x063f,0x063f,0x061f,0x061f,0x061f,0x061f,0x061f, 0x061f,0x061f,0x061f,0x061f,0x061f,0x061f,0x05ff,0x05ff, 0x05ff,0x05ff,0x05ff,0x05ff,0x05ff,0x05ff,0x0dff,0x0ddf, 0x15df,0x15df,0x15df,0x1ddf,0x1ddf,0x25df,0x25df,0x25df, 0x2dbf,0x2dbf,0x35bf,0x35bf,0x3dbf,0x3dbf,0x45bf,0x45bf, 0x4d9f,0x4d9f,0x4d9f,0x559f,0x559f,0x5d9f,0x657f,0x657f, 0x6d7f,0x6d7f,0x757f,0x757f,0x7d5f,0x7d5f,0x855f,0x855f, 0x8d5f,0x955f,0x953f,0x9d3f,0xa53f,0xa53f,0xad3f,0xad3f, 0xb51f,0xbd1f,0xc51f,0xc51f,0xcd1f,0xd4ff,0xd4ff,0xdcff, 0xe4ff,0xecff,0xecdf,0xf4df,0xfcdf,0xfcbf,0xfc9e,0xfc7d, 0xfc5d,0xfc3c,0xfc1b,0xfbfb,0xfbda,0xfbb9,0xfb99,0xfb78, 0xfb57,0xfb37,0xfb16,0xfb16,0xfaf5,0xfad5,0xfab4,0xfab4, 0xfa93,0xfa73,0xfa52,0xfa52,0xfa32,0xfa31,0xfa11,0xfa11, 0xf9f0,0xf9d0,0xf9cf,0xf9af,0xf9af,0xf98e,0xf98e,0xf96e, 0xf96d,0xf94d,0xf94d,0xf92c,0xf92c,0xf92c,0xf90c,0xf90b, 0xf8eb,0xf8eb,0xf8ea,0xf8ca,0xf8ca,0xf8ca,0xf8a9,0xf8a9, 0xf889,0xf889,0xf889,0xf868,0xf868,0xf868,0xf848,0xf847, 0xf847,0xf847,0xf827,0xf827,0xf827,0xf806,0xf806,0xf806, 0xf806,0xf806,0xf805,0xf805,0xf805,0xf805,0x0000,0x0000, 0x0000,0x0000,0x0371,0x061f,0x061f,0x061f,0x061f,0x061f, 0x061f,0x061f,0x061f,0x061f,0x05ff,0x05ff,0x05ff,0x05ff, 0x05ff,0x05ff,0x05ff,0x05ff,0x05ff,0x05ff,0x05ff,0x05df, 0x05df,0x05df,0x05df,0x05df,0x05df,0x05df,0x0ddf,0x0ddf, 0x15bf,0x15bf,0x15bf,0x1dbf,0x1dbf,0x25bf,0x25bf,0x25bf, 0x2d9f,0x2d9f,0x359f,0x359f,0x3d9f,0x3d9f,0x459f,0x459f, 0x4d7f,0x4d7f,0x4d7f,0x557f,0x557f,0x5d7f,0x655f,0x655f, 0x6d5f,0x6d5f,0x755f,0x755f,0x7d3f,0x7d3f,0x853f,0x853f, 0x8d3f,0x953f,0x951f,0x9d1f,0x9d1f,0xa51f,0xad1f,0xacff, 0xb4ff,0xbcff,0xbcff,0xc4ff,0xccdf,0xccdf,0xd4df,0xdcdf, 0xe4df,0xe4bf,0xecbf,0xf4bf,0xfcbf,0xfc9f,0xfc7e,0xfc5e, 0xfc3d,0xfc1c,0xfbfb,0xfbdb,0xfbba,0xfb9a,0xfb79,0xfb58, 0xfb38,0xfb17,0xfb17,0xfaf6,0xfad5,0xfab5,0xfab4,0xfa94, 0xfa74,0xfa73,0xfa53,0xfa32,0xfa32,0xfa11,0xf9f1,0xf9f1, 0xf9d0,0xf9d0,0xf9b0,0xf9af,0xf98f,0xf98e,0xf96e,0xf96e, 0xf94d,0xf94d,0xf92d,0xf92d,0xf90c,0xf90c,0xf90c,0xf8eb, 0xf8eb,0xf8cb,0xf8cb,0xf8ca,0xf8aa,0xf8aa,0xf8aa,0xf889, 0xf889,0xf889,0xf869,0xf869,0xf868,0xf848,0xf848,0xf848, 0xf827,0xf827,0xf827,0xf827,0xf807,0xf807,0xf806,0xf806, 0xf806,0xf806,0xf806,0xf805,0xf805,0x8803,0x0000,0x0000, 0x0000,0x0000,0x01ea,0x05ff,0x05ff,0x05ff,0x05ff,0x05ff, 0x05ff,0x05ff,0x05ff,0x05ff,0x05ff,0x05df,0x05df,0x05df, 0x05df,0x05df,0x05df,0x05df,0x05df,0x05df,0x05bf,0x05bf, 0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x0dbf,0x0d9f, 0x159f,0x159f,0x159f,0x1d9f,0x1d9f,0x259f,0x259f,0x257f, 0x2d7f,0x2d7f,0x357f,0x357f,0x3d7f,0x3d7f,0x455f,0x455f, 0x4d5f,0x4d5f,0x555f,0x555f,0x555f,0x5d3f,0x653f,0x653f, 0x6d3f,0x6d3f,0x753f,0x751f,0x7d1f,0x7d1f,0x851f,0x851f, 0x8cff,0x8cff,0x94ff,0x9cff,0x9cff,0xa4df,0xacdf,0xacdf, 0xb4df,0xb4df,0xbcbf,0xc4bf,0xccbf,0xccbf,0xd49f,0xdc9f, 0xe49f,0xe49f,0xec9f,0xf47f,0xfc7f,0xfc7f,0xfc5f,0xfc3e, 0xfc1d,0xfbfc,0xfbdc,0xfbbb,0xfb9a,0xfb7a,0xfb59,0xfb39, 0xfb18,0xfaf7,0xfaf7,0xfad6,0xfab6,0xfa95,0xfa95,0xfa74, 0xfa54,0xfa53,0xfa33,0xfa13,0xfa12,0xf9f2,0xf9f1,0xf9d1, 0xf9d0,0xf9b0,0xf990,0xf98f,0xf96f,0xf96f,0xf94e,0xf94e, 0xf94e,0xf92d,0xf92d,0xf90d,0xf90c,0xf8ec,0xf8ec,0xf8ec, 0xf8cb,0xf8cb,0xf8ab,0xf8ab,0xf8aa,0xf88a,0xf88a,0xf88a, 0xf869,0xf869,0xf869,0xf849,0xf848,0xf848,0xf828,0xf828, 0xf828,0xf827,0xf807,0xf807,0xf807,0xf807,0xf806,0xf806, 0xf806,0xf806,0xf806,0xf806,0xf805,0x5001,0x0000,0x0000, 0x0000,0x0000,0x01ea,0x05ff,0x05df,0x05df,0x05df,0x05df, 0x05df,0x05df,0x05df,0x05df,0x05df,0x05df,0x05bf,0x05bf, 0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x059f, 0x059f,0x059f,0x059f,0x059f,0x059f,0x0d9f,0x0d9f,0x0d9f, 0x157f,0x157f,0x1d7f,0x1d7f,0x1d7f,0x257f,0x257f,0x2d5f, 0x2d5f,0x2d5f,0x355f,0x355f,0x3d5f,0x3d5f,0x453f,0x453f, 0x4d3f,0x4d3f,0x553f,0x553f,0x553f,0x5d1f,0x651f,0x651f, 0x6d1f,0x6d1f,0x74ff,0x74ff,0x7cff,0x7cff,0x84ff,0x84ff, 0x8cdf,0x8cdf,0x94df,0x9cdf,0x9cdf,0xa4bf,0xacbf,0xacbf, 0xb4bf,0xb4bf,0xbc9f,0xc49f,0xc49f,0xcc9f,0xd47f,0xdc7f, 0xdc7f,0xe47f,0xec5f,0xf45f,0xf45f,0xfc5f,0xfc3f,0xfc1e, 0xfbfd,0xfbdd,0xfbbc,0xfb9b,0xfb7b,0xfb5a,0xfb39,0xfb19, 0xfaf8,0xfaf8,0xfad7,0xfab6,0xfa96,0xfa95,0xfa75,0xfa54, 0xfa54,0xfa34,0xfa13,0xfa13,0xf9f2,0xf9f2,0xf9d1,0xf9d1, 0xf9b1,0xf990,0xf990,0xf970,0xf96f,0xf94f,0xf94f,0xf94e, 0xf92e,0xf92e,0xf90d,0xf90d,0xf8ed,0xf8ec,0xf8ec,0xf8cc, 0xf8cc,0xf8ab,0xf8ab,0xf8ab,0xf88a,0xf88a,0xf88a,0xf86a, 0xf869,0xf869,0xf849,0xf849,0xf849,0xf828,0xf828,0xf828, 0xf828,0xf808,0xf807,0xf807,0xf807,0xf807,0xf807,0xf806, 0xf806,0xf806,0xf806,0xf806,0xf806,0x5001,0x0000,0x0000, 0x0000,0x0000,0x0000,0x03d5,0x05df,0x05bf,0x05bf,0x05bf, 0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x05bf,0x059f,0x059f, 0x059f,0x059f,0x059f,0x059f,0x059f,0x059f,0x059f,0x057f, 0x057f,0x057f,0x057f,0x057f,0x057f,0x0d7f,0x0d7f,0x0d5f, 0x155f,0x155f,0x1d5f,0x1d5f,0x1d5f,0x255f,0x253f,0x2d3f, 0x2d3f,0x2d3f,0x353f,0x353f,0x3d3f,0x3d1f,0x451f,0x451f, 0x4d1f,0x4d1f,0x551f,0x551f,0x5cff,0x5cff,0x5cff,0x64ff, 0x6cff,0x6cdf,0x74df,0x74df,0x7cdf,0x7cdf,0x84bf,0x84bf, 0x8cbf,0x8cbf,0x94bf,0x9cbf,0x9c9f,0xa49f,0xa49f,0xac9f, 0xb47f,0xb47f,0xbc7f,0xc47f,0xc45f,0xcc5f,0xd45f,0xd45f, 0xdc3f,0xe43f,0xec3f,0xec3f,0xf41f,0xfc1f,0xfc1f,0xfbfe, 0xfbde,0xfbbd,0xfb9c,0xfb7b,0xfb5b,0xfb3a,0xfb1a,0xfaf9, 0xfad8,0xfad8,0xfab7,0xfa97,0xfa76,0xfa76,0xfa55,0xfa35, 0xfa34,0xfa14,0xf9f3,0xf9f3,0xf9d2,0xf9d2,0xf9b2,0xf9b1, 0xf991,0xf991,0xf970,0xf970,0xf94f,0xf94f,0xf92f,0xf92e, 0xf90e,0xf90e,0xf8ed,0xf8ed,0xf8ed,0xf8cd,0xf8cc,0xf8cc, 0xf8ac,0xf8ab,0xf88b,0xf88b,0xf88b,0xf86a,0xf86a,0xf86a, 0xf84a,0xf849,0xf849,0xf829,0xf829,0xf829,0xf828,0xf808, 0xf808,0xf808,0xf808,0xf807,0xf807,0xf807,0xf807,0xf807, 0xf806,0xf806,0xf806,0xf806,0xa804,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x03d5,0x05bf,0x05bf,0x059f,0x059f, 0x059f,0x059f,0x059f,0x059f,0x059f,0x059f,0x059f,0x059f, 0x057f,0x057f,0x057f,0x057f,0x057f,0x057f,0x057f,0x057f, 0x055f,0x055f,0x055f,0x055f,0x055f,0x0d5f,0x0d5f,0x0d5f, 0x153f,0x153f,0x1d3f,0x1d3f,0x1d3f,0x253f,0x253f,0x2d1f, 0x2d1f,0x2d1f,0x351f,0x351f,0x3d1f,0x3d1f,0x44ff,0x44ff, 0x4cff,0x4cff,0x54ff,0x54ff,0x5cdf,0x5cdf,0x5cdf,0x64df, 0x64df,0x6cdf,0x74bf,0x74bf,0x7cbf,0x7cbf,0x849f,0x849f, 0x8c9f,0x8c9f,0x949f,0x949f,0x9c7f,0xa47f,0xa47f,0xac7f, 0xb45f,0xb45f,0xbc5f,0xbc5f,0xc43f,0xcc3f,0xd43f,0xd43f, 0xdc1f,0xe41f,0xe41f,0xec1f,0xf3ff,0xfbff,0xfbff,0xfbdf, 0xfbbe,0xfb9d,0xfb7c,0xfb5c,0xfb3b,0xfb1a,0xfafa,0xfad9, 0xfad8,0xfab8,0xfa97,0xfa77,0xfa76,0xfa56,0xfa35,0xfa35, 0xfa14,0xfa14,0xf9f3,0xf9d3,0xf9d3,0xf9b2,0xf9b2,0xf991, 0xf991,0xf971,0xf970,0xf950,0xf950,0xf92f,0xf92f,0xf90f, 0xf90e,0xf8ee,0xf8ee,0xf8ed,0xf8cd,0xf8cd,0xf8ac,0xf8ac, 0xf8ac,0xf88c,0xf88b,0xf88b,0xf86b,0xf86b,0xf86a,0xf84a, 0xf84a,0xf84a,0xf829,0xf829,0xf829,0xf809,0xf808,0xf808, 0xf808,0xf808,0xf808,0xf808,0xf807,0xf807,0xf807,0xf807, 0xf807,0xf806,0xf806,0xf806,0xa804,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x026e,0x059f,0x059f,0x059f,0x059f, 0x057f,0x057f,0x057f,0x057f,0x057f,0x057f,0x057f,0x057f, 0x055f,0x055f,0x055f,0x055f,0x055f,0x055f,0x055f,0x055f, 0x053f,0x053f,0x053f,0x053f,0x053f,0x0d3f,0x0d3f,0x153f, 0x151f,0x151f,0x1d1f,0x1d1f,0x251f,0x251f,0x24ff,0x2cff, 0x2cff,0x34ff,0x34ff,0x34ff,0x3cff,0x3cdf,0x44df,0x44df, 0x4cdf,0x4cdf,0x54df,0x54bf,0x5cbf,0x5cbf,0x5cbf,0x64bf, 0x649f,0x6c9f,0x749f,0x749f,0x7c9f,0x7c9f,0x847f,0x847f, 0x8c7f,0x8c7f,0x945f,0x945f,0x9c5f,0xa45f,0xa45f,0xac3f, 0xac3f,0xb43f,0xbc3f,0xbc1f,0xc41f,0xcc1f,0xcc1f,0xd3ff, 0xdbff,0xdbff,0xe3df,0xebdf,0xf3df,0xf3df,0xfbbf,0xfbbf, 0xfb9e,0xfb7d,0xfb5d,0xfb3c,0xfb1b,0xfafb,0xfada,0xfad9, 0xfab9,0xfa98,0xfa78,0xfa77,0xfa57,0xfa36,0xfa16,0xfa15, 0xf9f5,0xf9f4,0xf9d4,0xf9d3,0xf9b3,0xf992,0xf992,0xf972, 0xf971,0xf951,0xf950,0xf930,0xf930,0xf90f,0xf90f,0xf90f, 0xf8ee,0xf8ee,0xf8ce,0xf8ce,0xf8cd,0xf8ad,0xf8ad,0xf88c, 0xf88c,0xf88c,0xf86b,0xf86b,0xf86b,0xf84b,0xf84a,0xf84a, 0xf82a,0xf82a,0xf82a,0xf809,0xf809,0xf809,0xf809,0xf808, 0xf808,0xf808,0xf808,0xf808,0xf807,0xf807,0xf807,0xf807, 0xf807,0xf807,0xf806,0xf806,0x7002,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x057f,0x057f,0x057f,0x057f, 0x057f,0x055f,0x055f,0x055f,0x055f,0x055f,0x055f,0x055f, 0x055f,0x055f,0x053f,0x053f,0x053f,0x053f,0x053f,0x053f, 0x053f,0x053f,0x051f,0x051f,0x0d1f,0x0d1f,0x0d1f,0x151f, 0x14ff,0x14ff,0x1cff,0x1cff,0x24ff,0x24ff,0x24ff,0x2cdf, 0x2cdf,0x34df,0x34df,0x34df,0x3cdf,0x3cdf,0x44bf,0x44bf, 0x4cbf,0x4cbf,0x54bf,0x549f,0x5c9f,0x5c9f,0x5c9f,0x649f, 0x647f,0x6c7f,0x6c7f,0x747f,0x7c7f,0x7c7f,0x845f,0x845f, 0x8c5f,0x8c5f,0x943f,0x943f,0x9c3f,0xa43f,0xa43f,0xac1f, 0xac1f,0xb41f,0xbc1f,0xbbff,0xc3ff,0xcbff,0xcbff,0xd3df, 0xdbdf,0xdbdf,0xe3bf,0xebbf,0xf3bf,0xf3bf,0xfb9f,0xfb9f, 0xfb7e,0xfb5e,0xfb3d,0xfb1c,0xfafb,0xfadb,0xfaba,0xfaba, 0xfa99,0xfa78,0xfa78,0xfa57,0xfa37,0xfa36,0xfa16,0xf9f5, 0xf9f5,0xf9d4,0xf9b4,0xf9b3,0xf993,0xf993,0xf972,0xf972, 0xf951,0xf951,0xf931,0xf930,0xf910,0xf910,0xf8ef,0xf8ef, 0xf8ef,0xf8ce,0xf8ce,0xf8ae,0xf8ad,0xf8ad,0xf88d,0xf88d, 0xf88c,0xf86c,0xf86c,0xf84b,0xf84b,0xf84b,0xf84b,0xf82a, 0xf82a,0xf82a,0xf80a,0xf80a,0xf809,0xf809,0xf809,0xf809, 0xf808,0xf808,0xf808,0xf808,0xf808,0xf807,0xf807,0xf807, 0xf807,0xf807,0xf806,0xf806,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x055f,0x055f,0x055f,0x055f, 0x055f,0x055f,0x053f,0x053f,0x053f,0x053f,0x053f,0x053f, 0x053f,0x053f,0x051f,0x051f,0x051f,0x051f,0x051f,0x051f, 0x051f,0x051f,0x04ff,0x04ff,0x0cff,0x0cff,0x0cff,0x14ff, 0x14ff,0x14df,0x1cdf,0x1cdf,0x24df,0x24df,0x24df,0x2cbf, 0x2cbf,0x34bf,0x34bf,0x34bf,0x3cbf,0x3c9f,0x449f,0x449f, 0x4c9f,0x4c9f,0x549f,0x547f,0x5c7f,0x5c7f,0x5c7f,0x647f, 0x645f,0x6c5f,0x6c5f,0x745f,0x745f,0x7c3f,0x843f,0x843f, 0x8c3f,0x8c3f,0x941f,0x941f,0x9c1f,0x9c1f,0xa3ff,0xabff, 0xabff,0xb3ff,0xbbdf,0xbbdf,0xc3df,0xc3df,0xcbbf,0xd3bf, 0xdbbf,0xdb9f,0xe39f,0xeb9f,0xeb9f,0xf37f,0xfb7f,0xfb5f, 0xfb5e,0xfb3e,0xfb1d,0xfafc,0xfadc,0xfabb,0xfa9a,0xfa9a, 0xfa79,0xfa59,0xfa38,0xfa38,0xfa17,0xfa17,0xf9f6,0xf9d6, 0xf9d5,0xf9b5,0xf9b4,0xf994,0xf973,0xf973,0xf952,0xf952, 0xf932,0xf931,0xf931,0xf911,0xf910,0xf8f0,0xf8ef,0xf8cf, 0xf8cf,0xf8ae,0xf8ae,0xf8ae,0xf88e,0xf88d,0xf88d,0xf86d, 0xf86c,0xf86c,0xf84c,0xf84c,0xf84b,0xf82b,0xf82b,0xf82b, 0xf80a,0xf80a,0xf80a,0xf80a,0xf809,0xf809,0xf809,0xf809, 0xf809,0xf808,0xf808,0xf808,0xf808,0xf808,0xf807,0xf807, 0xf807,0xf807,0xf807,0xf806,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x02f1,0x053f,0x053f,0x053f, 0x053f,0x053f,0x053f,0x053f,0x051f,0x051f,0x051f,0x051f, 0x051f,0x051f,0x051f,0x051f,0x04ff,0x04ff,0x04ff,0x04ff, 0x04ff,0x04ff,0x04ff,0x04df,0x0cdf,0x0cdf,0x0cdf,0x14df, 0x14df,0x1cdf,0x1cbf,0x1cbf,0x24bf,0x24bf,0x24bf,0x2cbf, 0x2c9f,0x349f,0x349f,0x349f,0x3c9f,0x3c9f,0x447f,0x447f, 0x4c7f,0x4c7f,0x547f,0x545f,0x5c5f,0x5c5f,0x5c5f,0x645f, 0x643f,0x6c3f,0x6c3f,0x743f,0x743f,0x7c1f,0x841f,0x841f, 0x8c1f,0x8c1f,0x93ff,0x93ff,0x9bff,0x9bff,0xa3df,0xabdf, 0xabdf,0xb3df,0xb3bf,0xbbbf,0xc3bf,0xc3bf,0xcb9f,0xd39f, 0xd39f,0xdb7f,0xe37f,0xe37f,0xeb5f,0xf35f,0xfb5f,0xfb5f, 0xfb3f,0xfb1e,0xfafd,0xfadd,0xfabc,0xfa9b,0xfa9b,0xfa7a, 0xfa59,0xfa59,0xfa38,0xfa18,0xfa17,0xf9f7,0xf9d6,0xf9d6, 0xf9b5,0xf9b5,0xf994,0xf974,0xf973,0xf953,0xf953,0xf932, 0xf932,0xf911,0xf911,0xf911,0xf8f0,0xf8f0,0xf8d0,0xf8cf, 0xf8af,0xf8af,0xf8ae,0xf88e,0xf88e,0xf86d,0xf86d,0xf86d, 0xf84d,0xf84c,0xf84c,0xf82c,0xf82b,0xf82b,0xf80b,0xf80b, 0xf80a,0xf80a,0xf80a,0xf80a,0xf80a,0xf809,0xf809,0xf809, 0xf809,0xf809,0xf808,0xf808,0xf808,0xf808,0xf807,0xf807, 0xf807,0xf807,0xf807,0x8803,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x01aa,0x051f,0x051f,0x051f, 0x051f,0x051f,0x051f,0x051f,0x051f,0x04ff,0x04ff,0x04ff, 0x04ff,0x04ff,0x04ff,0x04ff,0x04df,0x04df,0x04df,0x04df, 0x04df,0x04df,0x04df,0x04df,0x0cbf,0x0cbf,0x0cbf,0x14bf, 0x14bf,0x1cbf,0x1c9f,0x1c9f,0x249f,0x249f,0x249f,0x2c9f, 0x2c7f,0x347f,0x347f,0x3c7f,0x3c7f,0x3c7f,0x445f,0x445f, 0x4c5f,0x4c5f,0x545f,0x543f,0x5c3f,0x5c3f,0x5c3f,0x643f, 0x641f,0x6c1f,0x6c1f,0x741f,0x73ff,0x7bff,0x7bff,0x83ff, 0x8bff,0x8bdf,0x93df,0x93df,0x9bdf,0x9bbf,0xa3bf,0xa3bf, 0xabbf,0xb39f,0xb39f,0xbb9f,0xc39f,0xc37f,0xcb7f,0xcb7f, 0xd35f,0xdb5f,0xe35f,0xe35f,0xeb3f,0xf33f,0xf33f,0xfb1f, 0xfb1f,0xfafe,0xfadd,0xfabd,0xfa9c,0xfa9b,0xfa7b,0xfa5a, 0xfa3a,0xfa39,0xfa18,0xf9f8,0xf9f7,0xf9d7,0xf9b6,0xf9b6, 0xf995,0xf995,0xf974,0xf974,0xf954,0xf953,0xf933,0xf932, 0xf912,0xf912,0xf8f1,0xf8f1,0xf8d0,0xf8d0,0xf8d0,0xf8b0, 0xf8af,0xf88f,0xf88e,0xf88e,0xf86e,0xf86e,0xf84d,0xf84d, 0xf84d,0xf82c,0xf82c,0xf82c,0xf80c,0xf80b,0xf80b,0xf80b, 0xf80b,0xf80a,0xf80a,0xf80a,0xf80a,0xf809,0xf809,0xf809, 0xf809,0xf809,0xf808,0xf808,0xf808,0xf808,0xf808,0xf807, 0xf807,0xf807,0xf807,0x5002,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0083,0x03f8,0x051f,0x04ff, 0x04ff,0x04ff,0x04ff,0x04ff,0x04ff,0x04ff,0x04ff,0x04df, 0x04df,0x04df,0x04df,0x04df,0x04df,0x04df,0x04bf,0x04bf, 0x04bf,0x04bf,0x04bf,0x04bf,0x0cbf,0x0c9f,0x149f,0x149f, 0x149f,0x1c9f,0x1c9f,0x1c7f,0x247f,0x247f,0x2c7f,0x2c7f, 0x2c7f,0x345f,0x345f,0x3c5f,0x3c5f,0x3c5f,0x443f,0x443f, 0x4c3f,0x4c3f,0x543f,0x543f,0x5c1f,0x5c1f,0x5c1f,0x641f, 0x63ff,0x6bff,0x6bff,0x73ff,0x73ff,0x7bdf,0x7bdf,0x83df, 0x8bdf,0x8bbf,0x93bf,0x93bf,0x9bbf,0x9bbf,0xa39f,0xa39f, 0xab9f,0xb37f,0xb37f,0xbb7f,0xbb7f,0xc35f,0xcb5f,0xcb5f, 0xd33f,0xdb3f,0xdb3f,0xe33f,0xeb1f,0xf31f,0xf31f,0xfaff, 0xfaff,0xfade,0xfabe,0xfa9d,0xfa7c,0xfa7c,0xfa5b,0xfa3a, 0xfa3a,0xfa19,0xf9f9,0xf9f8,0xf9d8,0xf9b7,0xf9b7,0xf996, 0xf996,0xf975,0xf955,0xf954,0xf934,0xf933,0xf913,0xf913, 0xf8f2,0xf8f2,0xf8f1,0xf8d1,0xf8d1,0xf8b0,0xf8b0,0xf8b0, 0xf88f,0xf88f,0xf86f,0xf86e,0xf86e,0xf84e,0xf84d,0xf84d, 0xf82d,0xf82d,0xf82c,0xf80c,0xf80c,0xf80c,0xf80b,0xf80b, 0xf80b,0xf80b,0xf80a,0xf80a,0xf80a,0xf80a,0xf809,0xf809, 0xf809,0xf809,0xf809,0xf808,0xf808,0xf808,0xf808,0xf808, 0xf807,0xf807,0xc005,0x1800,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0355,0x04ff,0x04ff, 0x04df,0x04df,0x04df,0x04df,0x04df,0x04df,0x04df,0x04df, 0x04bf,0x04bf,0x04bf,0x04bf,0x04bf,0x04bf,0x04bf,0x049f, 0x049f,0x049f,0x049f,0x0c9f,0x0c9f,0x0c7f,0x147f,0x147f, 0x147f,0x1c7f,0x1c7f,0x1c5f,0x245f,0x245f,0x2c5f,0x2c5f, 0x2c5f,0x343f,0x343f,0x3c3f,0x3c3f,0x3c3f,0x441f,0x441f, 0x4c1f,0x4c1f,0x541f,0x53ff,0x5bff,0x5bff,0x5bff,0x63ff, 0x63df,0x6bdf,0x6bdf,0x73df,0x73bf,0x7bbf,0x7bbf,0x83bf, 0x83bf,0x8b9f,0x939f,0x939f,0x9b9f,0x9b7f,0xa37f,0xa37f, 0xab7f,0xab5f,0xb35f,0xbb5f,0xbb3f,0xc33f,0xcb3f,0xcb3f, 0xd31f,0xd31f,0xdb1f,0xe2ff,0xeaff,0xeaff,0xf2df,0xfadf, 0xfadf,0xfabf,0xfa9e,0xfa7d,0xfa5c,0xfa5c,0xfa3b,0xfa1b, 0xfa1a,0xf9f9,0xf9d9,0xf9d8,0xf9b8,0xf9b7,0xf997,0xf976, 0xf976,0xf955,0xf955,0xf934,0xf934,0xf914,0xf913,0xf8f3, 0xf8f2,0xf8d2,0xf8d2,0xf8b1,0xf8b1,0xf8b1,0xf890,0xf890, 0xf88f,0xf86f,0xf86f,0xf84f,0xf84e,0xf84e,0xf82e,0xf82d, 0xf82d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b,0xf80b, 0xf80b,0xf80b,0xf80b,0xf80a,0xf80a,0xf80a,0xf80a,0xf809, 0xf809,0xf809,0xf809,0xf809,0xf808,0xf808,0xf808,0xf808, 0xf808,0xf807,0xa805,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0107,0x04df,0x04df, 0x04df,0x04df,0x04bf,0x04bf,0x04bf,0x04bf,0x04bf,0x04bf, 0x04bf,0x04bf,0x049f,0x049f,0x049f,0x049f,0x049f,0x049f, 0x047f,0x047f,0x047f,0x0c7f,0x0c7f,0x0c7f,0x145f,0x145f, 0x145f,0x1c5f,0x1c5f,0x1c5f,0x243f,0x243f,0x2c3f,0x2c3f, 0x2c3f,0x343f,0x341f,0x3c1f,0x3c1f,0x3c1f,0x441f,0x43ff, 0x4bff,0x4bff,0x53ff,0x53ff,0x5bdf,0x5bdf,0x5bdf,0x63df, 0x63df,0x6bbf,0x6bbf,0x73bf,0x73bf,0x7b9f,0x7b9f,0x839f, 0x839f,0x8b7f,0x8b7f,0x937f,0x9b7f,0x9b5f,0xa35f,0xa35f, 0xab5f,0xab3f,0xb33f,0xbb3f,0xbb1f,0xc31f,0xcb1f,0xcb1f, 0xd2ff,0xd2ff,0xdaff,0xe2df,0xe2df,0xeadf,0xf2bf,0xfabf, 0xfabf,0xfa9f,0xfa7e,0xfa5d,0xfa5d,0xfa3c,0xfa1b,0xfa1b, 0xf9fa,0xf9da,0xf9d9,0xf9b9,0xf998,0xf997,0xf977,0xf976, 0xf956,0xf956,0xf935,0xf935,0xf914,0xf914,0xf8f3,0xf8f3, 0xf8d3,0xf8d2,0xf8b2,0xf8b1,0xf8b1,0xf891,0xf890,0xf870, 0xf870,0xf86f,0xf84f,0xf84f,0xf84e,0xf82e,0xf82e,0xf82e, 0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b, 0xf80b,0xf80b,0xf80b,0xf80a,0xf80a,0xf80a,0xf80a,0xf80a, 0xf809,0xf809,0xf809,0xf809,0xf808,0xf808,0xf808,0xf808, 0xf808,0xf808,0x3801,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x03b8,0x04bf, 0x04bf,0x04bf,0x04bf,0x04bf,0x049f,0x049f,0x049f,0x049f, 0x049f,0x049f,0x049f,0x047f,0x047f,0x047f,0x047f,0x047f, 0x047f,0x045f,0x045f,0x0c5f,0x0c5f,0x0c5f,0x145f,0x143f, 0x143f,0x1c3f,0x1c3f,0x243f,0x243f,0x241f,0x2c1f,0x2c1f, 0x2c1f,0x341f,0x33ff,0x3bff,0x3bff,0x3bff,0x43ff,0x43df, 0x4bdf,0x4bdf,0x53df,0x53df,0x5bbf,0x5bbf,0x5bbf,0x63bf, 0x63bf,0x6b9f,0x6b9f,0x739f,0x739f,0x7b7f,0x7b7f,0x837f, 0x837f,0x8b5f,0x8b5f,0x935f,0x935f,0x9b3f,0xa33f,0xa33f, 0xab1f,0xab1f,0xb31f,0xb31f,0xbaff,0xc2ff,0xc2ff,0xcaff, 0xd2df,0xd2df,0xdadf,0xe2bf,0xe2bf,0xeabf,0xf29f,0xf29f, 0xfa9f,0xfa7f,0xfa5e,0xfa5e,0xfa3d,0xfa1c,0xf9fc,0xf9fb, 0xf9da,0xf9ba,0xf9b9,0xf999,0xf978,0xf978,0xf957,0xf957, 0xf936,0xf936,0xf915,0xf915,0xf8f4,0xf8f4,0xf8d3,0xf8d3, 0xf8d3,0xf8b2,0xf8b2,0xf892,0xf891,0xf871,0xf870,0xf870, 0xf850,0xf850,0xf84f,0xf82f,0xf82f,0xf82e,0xf80e,0xf80e, 0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c, 0xf80b,0xf80b,0xf80b,0xf80b,0xf80a,0xf80a,0xf80a,0xf80a, 0xf809,0xf809,0xf809,0xf809,0xf809,0xf808,0xf808,0xf808, 0xf808,0xc006,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x018a,0x049f, 0x049f,0x049f,0x049f,0x049f,0x049f,0x049f,0x047f,0x047f, 0x047f,0x047f,0x047f,0x047f,0x045f,0x045f,0x045f,0x045f, 0x045f,0x045f,0x043f,0x0c3f,0x0c3f,0x0c3f,0x143f,0x143f, 0x1c1f,0x1c1f,0x1c1f,0x241f,0x241f,0x241f,0x2bff,0x2bff, 0x2bff,0x33ff,0x33ff,0x3bdf,0x3bdf,0x3bdf,0x43df,0x43df, 0x4bbf,0x4bbf,0x53bf,0x53bf,0x5bbf,0x5b9f,0x5b9f,0x639f, 0x639f,0x6b9f,0x6b7f,0x737f,0x737f,0x7b7f,0x7b5f,0x835f, 0x835f,0x8b5f,0x8b3f,0x933f,0x933f,0x9b3f,0xa31f,0xa31f, 0xab1f,0xaaff,0xb2ff,0xb2ff,0xbadf,0xc2df,0xc2df,0xcadf, 0xd2bf,0xd2bf,0xdabf,0xda9f,0xe29f,0xea9f,0xf27f,0xf27f, 0xfa7f,0xfa5f,0xfa3e,0xfa3e,0xfa1d,0xf9fc,0xf9fc,0xf9db, 0xf9bb,0xf9ba,0xf999,0xf979,0xf978,0xf958,0xf957,0xf937, 0xf936,0xf916,0xf915,0xf8f5,0xf8f5,0xf8d4,0xf8d4,0xf8b3, 0xf8b3,0xf8b3,0xf892,0xf892,0xf871,0xf871,0xf871,0xf850, 0xf850,0xf830,0xf82f,0xf82f,0xf80f,0xf80e,0xf80e,0xf80e, 0xf80e,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c, 0xf80b,0xf80b,0xf80b,0xf80b,0xf80a,0xf80a,0xf80a,0xf80a, 0xf80a,0xf809,0xf809,0xf809,0xf809,0xf809,0xf808,0xf808, 0xf808,0x5002,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0107,0x041c, 0x047f,0x047f,0x047f,0x047f,0x047f,0x047f,0x047f,0x045f, 0x045f,0x045f,0x045f,0x045f,0x045f,0x043f,0x043f,0x043f, 0x043f,0x043f,0x043f,0x0c1f,0x0c1f,0x0c1f,0x141f,0x141f, 0x1c1f,0x1bff,0x1bff,0x23ff,0x23ff,0x23ff,0x2bff,0x2bdf, 0x33df,0x33df,0x33df,0x3bdf,0x3bbf,0x43bf,0x43bf,0x43bf, 0x4b9f,0x4b9f,0x539f,0x539f,0x5b9f,0x5b7f,0x5b7f,0x637f, 0x637f,0x6b5f,0x6b5f,0x735f,0x735f,0x7b5f,0x7b3f,0x833f, 0x833f,0x8b3f,0x8b1f,0x931f,0x931f,0x9aff,0x9aff,0xa2ff, 0xaaff,0xaadf,0xb2df,0xb2df,0xbabf,0xbabf,0xc2bf,0xcabf, 0xca9f,0xd29f,0xda9f,0xda7f,0xe27f,0xea7f,0xea5f,0xf25f, 0xfa3f,0xfa3f,0xfa1f,0xfa1e,0xf9fd,0xf9dd,0xf9dc,0xf9bb, 0xf99b,0xf99a,0xf97a,0xf979,0xf959,0xf938,0xf938,0xf917, 0xf917,0xf8f6,0xf8f6,0xf8d5,0xf8d5,0xf8b4,0xf8b4,0xf8b4, 0xf893,0xf893,0xf872,0xf872,0xf872,0xf851,0xf851,0xf851, 0xf830,0xf830,0xf810,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e, 0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c, 0xf80c,0xf80b,0xf80b,0xf80b,0xf80b,0xf80a,0xf80a,0xf80a, 0xf80a,0xf80a,0xf809,0xf809,0xf809,0xf809,0xf809,0xf808, 0xe007,0x3801,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x02f5, 0x047f,0x047f,0x045f,0x045f,0x045f,0x045f,0x045f,0x045f, 0x045f,0x043f,0x043f,0x043f,0x043f,0x043f,0x043f,0x041f, 0x041f,0x041f,0x0c1f,0x0c1f,0x0c1f,0x13ff,0x13ff,0x13ff, 0x1bff,0x1bff,0x1bdf,0x23df,0x23df,0x23df,0x2bdf,0x2bdf, 0x33bf,0x33bf,0x33bf,0x3bbf,0x3bbf,0x439f,0x439f,0x439f, 0x4b9f,0x4b9f,0x537f,0x537f,0x5b7f,0x5b7f,0x5b5f,0x635f, 0x635f,0x6b5f,0x6b3f,0x733f,0x733f,0x7b3f,0x7b1f,0x831f, 0x831f,0x8b1f,0x8aff,0x92ff,0x92ff,0x9aff,0x9adf,0xa2df, 0xaadf,0xaabf,0xb2bf,0xb2bf,0xbabf,0xba9f,0xc29f,0xca9f, 0xca7f,0xd27f,0xda7f,0xda5f,0xe25f,0xe25f,0xea3f,0xf23f, 0xfa3f,0xfa1f,0xfa1f,0xf9fe,0xf9dd,0xf9dd,0xf9bc,0xf99c, 0xf99b,0xf97a,0xf95a,0xf959,0xf939,0xf938,0xf918,0xf917, 0xf8f7,0xf8f6,0xf8d6,0xf8d5,0xf8b5,0xf8b5,0xf894,0xf894, 0xf893,0xf873,0xf873,0xf852,0xf852,0xf851,0xf831,0xf831, 0xf830,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e, 0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c, 0xf80c,0xf80c,0xf80b,0xf80b,0xf80b,0xf80b,0xf80a,0xf80a, 0xf80a,0xf80a,0xf809,0xf809,0xf809,0xf809,0xf809,0xf809, 0xa805,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x045f,0x045f,0x045f,0x043f,0x043f,0x043f,0x043f,0x043f, 0x043f,0x043f,0x041f,0x041f,0x041f,0x041f,0x041f,0x041f, 0x03ff,0x03ff,0x0bff,0x0bff,0x0bff,0x13ff,0x13df,0x13df, 0x1bdf,0x1bdf,0x1bdf,0x23bf,0x23bf,0x23bf,0x2bbf,0x2bbf, 0x339f,0x339f,0x339f,0x3b9f,0x3b9f,0x437f,0x437f,0x437f, 0x4b7f,0x4b7f,0x535f,0x535f,0x5b5f,0x5b5f,0x5b3f,0x633f, 0x633f,0x6b3f,0x6b1f,0x731f,0x731f,0x7b1f,0x7aff,0x82ff, 0x82ff,0x8aff,0x8adf,0x92df,0x92df,0x9adf,0x9abf,0xa2bf, 0xa2bf,0xaa9f,0xb29f,0xb29f,0xba9f,0xba7f,0xc27f,0xc27f, 0xca5f,0xd25f,0xd25f,0xda3f,0xe23f,0xe23f,0xea1f,0xf21f, 0xf1ff,0xf9ff,0xf9ff,0xf9de,0xf9be,0xf9bd,0xf99c,0xf97c, 0xf97b,0xf95b,0xf95a,0xf93a,0xf919,0xf918,0xf8f8,0xf8f7, 0xf8d7,0xf8d7,0xf8d6,0xf8b6,0xf8b5,0xf895,0xf894,0xf874, 0xf873,0xf873,0xf853,0xf852,0xf832,0xf832,0xf831,0xf811, 0xf810,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80e, 0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c, 0xf80c,0xf80c,0xf80b,0xf80b,0xf80b,0xf80b,0xf80b,0xf80a, 0xf80a,0xf80a,0xf80a,0xf809,0xf809,0xf809,0xf809,0xf809, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0251,0x043f,0x043f,0x043f,0x043f,0x043f,0x041f,0x041f, 0x041f,0x041f,0x041f,0x041f,0x03ff,0x03ff,0x03ff,0x03ff, 0x03ff,0x03ff,0x0bdf,0x0bdf,0x0bdf,0x13df,0x13df,0x13bf, 0x1bbf,0x1bbf,0x1bbf,0x23bf,0x239f,0x2b9f,0x2b9f,0x2b9f, 0x339f,0x339f,0x337f,0x3b7f,0x3b7f,0x437f,0x435f,0x435f, 0x4b5f,0x4b5f,0x535f,0x533f,0x5b3f,0x5b3f,0x5b3f,0x631f, 0x631f,0x6b1f,0x6b1f,0x72ff,0x72ff,0x7aff,0x7aff,0x82df, 0x82df,0x8adf,0x8adf,0x92bf,0x92bf,0x9abf,0x9a9f,0xa29f, 0xa29f,0xaa9f,0xaa7f,0xb27f,0xba7f,0xba5f,0xc25f,0xc25f, 0xca3f,0xd23f,0xd23f,0xda1f,0xe21f,0xe21f,0xe9ff,0xe9ff, 0xf1ff,0xf9df,0xf9df,0xf9bf,0xf9be,0xf99d,0xf97d,0xf97c, 0xf95b,0xf95b,0xf93a,0xf91a,0xf919,0xf8f9,0xf8f8,0xf8d8, 0xf8d7,0xf8b7,0xf8b6,0xf8b6,0xf895,0xf895,0xf874,0xf874, 0xf854,0xf853,0xf853,0xf832,0xf832,0xf832,0xf811,0xf811, 0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80f, 0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c, 0xf80c,0xf80c,0xf80c,0xf80b,0xf80b,0xf80b,0xf80b,0xf80a, 0xf80a,0xf80a,0xf80a,0xf80a,0xf809,0xf809,0xf809,0x8805, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x00e7,0x03bc,0x041f,0x041f,0x041f,0x041f,0x041f,0x03ff, 0x03ff,0x03ff,0x03ff,0x03ff,0x03ff,0x03df,0x03df,0x03df, 0x03df,0x03df,0x0bdf,0x0bbf,0x0bbf,0x13bf,0x13bf,0x13bf, 0x1b9f,0x1b9f,0x1b9f,0x239f,0x239f,0x2b7f,0x2b7f,0x2b7f, 0x337f,0x337f,0x335f,0x3b5f,0x3b5f,0x435f,0x435f,0x433f, 0x4b3f,0x4b3f,0x533f,0x531f,0x5b1f,0x5b1f,0x5b1f,0x62ff, 0x62ff,0x6aff,0x6aff,0x72df,0x72df,0x7adf,0x7adf,0x82bf, 0x82bf,0x8abf,0x8abf,0x929f,0x929f,0x9a9f,0x9a7f,0xa27f, 0xa27f,0xaa7f,0xaa5f,0xb25f,0xb25f,0xba3f,0xc23f,0xc23f, 0xca1f,0xca1f,0xd21f,0xd9ff,0xd9ff,0xe1ff,0xe9df,0xe9df, 0xf1df,0xf9bf,0xf9bf,0xf99f,0xf97e,0xf97d,0xf95d,0xf95c, 0xf93c,0xf93b,0xf91a,0xf91a,0xf8f9,0xf8d9,0xf8d8,0xf8b8, 0xf8b7,0xf8b7,0xf896,0xf896,0xf875,0xf875,0xf855,0xf854, 0xf854,0xf833,0xf833,0xf833,0xf812,0xf812,0xf812,0xf811, 0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f, 0xf80e,0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80c, 0xf80c,0xf80c,0xf80c,0xf80b,0xf80b,0xf80b,0xf80b,0xf80b, 0xf80a,0xf80a,0xf80a,0xf80a,0xf80a,0xf809,0xe008,0x3802, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x02b5,0x03ff,0x03ff,0x03ff,0x03ff,0x03ff,0x03ff, 0x03ff,0x03df,0x03df,0x03df,0x03df,0x03df,0x03df,0x03bf, 0x03bf,0x03bf,0x0bbf,0x0bbf,0x0b9f,0x139f,0x139f,0x139f, 0x1b9f,0x1b9f,0x237f,0x237f,0x237f,0x2b7f,0x2b7f,0x2b5f, 0x335f,0x335f,0x335f,0x3b5f,0x3b3f,0x433f,0x433f,0x433f, 0x4b1f,0x4b1f,0x531f,0x531f,0x5aff,0x5aff,0x5aff,0x62ff, 0x62df,0x6adf,0x6adf,0x72df,0x72bf,0x7abf,0x7abf,0x82bf, 0x829f,0x829f,0x8a9f,0x929f,0x927f,0x9a7f,0x9a7f,0xa25f, 0xa25f,0xaa5f,0xaa3f,0xb23f,0xb23f,0xba3f,0xc21f,0xc21f, 0xca1f,0xc9ff,0xd1ff,0xd9ff,0xd9df,0xe1df,0xe1bf,0xe9bf, 0xf1bf,0xf19f,0xf99f,0xf97f,0xf97e,0xf95e,0xf95d,0xf93c, 0xf91c,0xf91b,0xf8fb,0xf8fa,0xf8d9,0xf8d9,0xf8b8,0xf8b8, 0xf897,0xf897,0xf897,0xf876,0xf876,0xf855,0xf855,0xf854, 0xf834,0xf834,0xf813,0xf813,0xf812,0xf812,0xf812,0xf811, 0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f, 0xf80f,0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d, 0xf80c,0xf80c,0xf80c,0xf80c,0xf80b,0xf80b,0xf80b,0xf80b, 0xf80b,0xf80a,0xf80a,0xf80a,0xf80a,0xf80a,0xa806,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x03ff,0x03ff,0x03df,0x03df,0x03df,0x03df, 0x03df,0x03df,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf, 0x039f,0x0b9f,0x0b9f,0x0b9f,0x139f,0x137f,0x137f,0x1b7f, 0x1b7f,0x1b7f,0x237f,0x235f,0x235f,0x2b5f,0x2b5f,0x2b3f, 0x333f,0x333f,0x3b3f,0x3b3f,0x3b1f,0x431f,0x431f,0x431f, 0x4b1f,0x4aff,0x52ff,0x52ff,0x5aff,0x5adf,0x5adf,0x62df, 0x62df,0x6abf,0x6abf,0x72bf,0x72bf,0x7a9f,0x7a9f,0x7a9f, 0x827f,0x827f,0x8a7f,0x8a7f,0x925f,0x925f,0x9a5f,0x9a3f, 0xa23f,0xaa3f,0xaa3f,0xb21f,0xb21f,0xba1f,0xb9ff,0xc1ff, 0xc9ff,0xc9df,0xd1df,0xd1df,0xd9bf,0xe1bf,0xe19f,0xe99f, 0xf19f,0xf17f,0xf97f,0xf95f,0xf95e,0xf93e,0xf93d,0xf91d, 0xf91c,0xf8fb,0xf8fb,0xf8da,0xf8da,0xf8b9,0xf8b9,0xf898, 0xf898,0xf877,0xf877,0xf856,0xf856,0xf855,0xf835,0xf835, 0xf814,0xf814,0xf813,0xf813,0xf813,0xf812,0xf812,0xf812, 0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f, 0xf80f,0xf80e,0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0xf80d, 0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b,0xf80b,0xf80b, 0xf80b,0xf80a,0xf80a,0xf80a,0xf80a,0xf80a,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0231,0x03df,0x03df,0x03df,0x03bf,0x03bf, 0x03bf,0x03bf,0x03bf,0x03bf,0x039f,0x039f,0x039f,0x039f, 0x039f,0x0b9f,0x0b7f,0x0b7f,0x137f,0x137f,0x137f,0x1b5f, 0x1b5f,0x1b5f,0x235f,0x235f,0x233f,0x2b3f,0x2b3f,0x2b3f, 0x333f,0x331f,0x3b1f,0x3b1f,0x3b1f,0x431f,0x42ff,0x42ff, 0x4aff,0x4aff,0x52df,0x52df,0x5adf,0x5adf,0x5abf,0x62bf, 0x62bf,0x6abf,0x6a9f,0x729f,0x729f,0x729f,0x7a7f,0x7a7f, 0x827f,0x827f,0x8a5f,0x8a5f,0x925f,0x923f,0x9a3f,0x9a3f, 0xa21f,0xaa1f,0xaa1f,0xb21f,0xb1ff,0xb9ff,0xb9df,0xc1df, 0xc9df,0xc9df,0xd1bf,0xd1bf,0xd99f,0xd99f,0xe19f,0xe97f, 0xe97f,0xf17f,0xf95f,0xf95f,0xf93f,0xf93e,0xf91d,0xf91d, 0xf8fc,0xf8dc,0xf8db,0xf8ba,0xf8ba,0xf899,0xf899,0xf898, 0xf878,0xf877,0xf857,0xf856,0xf836,0xf836,0xf835,0xf815, 0xf814,0xf814,0xf814,0xf813,0xf813,0xf812,0xf812,0xf812, 0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f, 0xf80f,0xf80f,0xf80e,0xf80e,0xf80e,0xf80e,0xf80d,0xf80d, 0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b,0xf80b, 0xf80b,0xf80b,0xf80a,0xf80a,0xf80a,0x8805,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x00c7,0x035c,0x03bf,0x03bf,0x03bf,0x03bf, 0x039f,0x039f,0x039f,0x039f,0x039f,0x037f,0x037f,0x037f, 0x037f,0x0b7f,0x0b7f,0x0b5f,0x135f,0x135f,0x135f,0x1b5f, 0x1b3f,0x1b3f,0x233f,0x233f,0x233f,0x2b1f,0x2b1f,0x2b1f, 0x331f,0x32ff,0x3aff,0x3aff,0x3aff,0x42ff,0x42df,0x42df, 0x4adf,0x4adf,0x52bf,0x52bf,0x5abf,0x5abf,0x5abf,0x629f, 0x629f,0x6a9f,0x6a7f,0x727f,0x727f,0x727f,0x7a5f,0x7a5f, 0x825f,0x825f,0x8a3f,0x8a3f,0x923f,0x921f,0x9a1f,0x9a1f, 0xa1ff,0xa1ff,0xa9ff,0xa9df,0xb1df,0xb9df,0xb9df,0xc1bf, 0xc1bf,0xc99f,0xd19f,0xd19f,0xd97f,0xd97f,0xe17f,0xe95f, 0xe95f,0xf15f,0xf93f,0xf93f,0xf91f,0xf91e,0xf8fe,0xf8fd, 0xf8dc,0xf8dc,0xf8bb,0xf8bb,0xf89a,0xf89a,0xf879,0xf879, 0xf858,0xf858,0xf837,0xf837,0xf836,0xf816,0xf815,0xf815, 0xf814,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812,0xf812, 0xf812,0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f, 0xf80f,0xf80f,0xf80e,0xf80e,0xf80e,0xf80e,0xf80d,0xf80d, 0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b,0xf80b, 0xf80b,0xf80b,0xf80b,0xf80a,0xe009,0x3802,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0275,0x039f,0x039f,0x039f,0x039f, 0x039f,0x039f,0x037f,0x037f,0x037f,0x037f,0x037f,0x035f, 0x035f,0x0b5f,0x0b5f,0x0b5f,0x135f,0x133f,0x133f,0x1b3f, 0x1b3f,0x1b3f,0x231f,0x231f,0x231f,0x2b1f,0x2aff,0x2aff, 0x32ff,0x32ff,0x3aff,0x3adf,0x3adf,0x42df,0x42df,0x42df, 0x4abf,0x4abf,0x52bf,0x52bf,0x5a9f,0x5a9f,0x5a9f,0x629f, 0x627f,0x6a7f,0x6a7f,0x727f,0x725f,0x725f,0x7a5f,0x7a3f, 0x823f,0x823f,0x8a1f,0x8a1f,0x921f,0x921f,0x99ff,0x99ff, 0xa1ff,0xa1df,0xa9df,0xa9df,0xb1bf,0xb9bf,0xb9bf,0xc1bf, 0xc19f,0xc99f,0xc97f,0xd17f,0xd97f,0xd95f,0xe15f,0xe15f, 0xe93f,0xf13f,0xf11f,0xf91f,0xf91f,0xf8fe,0xf8de,0xf8dd, 0xf8bc,0xf8bc,0xf89b,0xf89b,0xf87a,0xf87a,0xf859,0xf859, 0xf858,0xf838,0xf837,0xf837,0xf816,0xf816,0xf815,0xf815, 0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf812,0xf812, 0xf812,0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f, 0xf80f,0xf80f,0xf80f,0xf80e,0xf80e,0xf80e,0xf80e,0xf80d, 0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b, 0xf80b,0xf80b,0xf80b,0xf80a,0xa807,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x02b8,0x037f,0x037f,0x037f, 0x037f,0x037f,0x037f,0x035f,0x035f,0x035f,0x035f,0x035f, 0x0b5f,0x0b3f,0x0b3f,0x0b3f,0x133f,0x133f,0x131f,0x1b1f, 0x1b1f,0x1b1f,0x231f,0x22ff,0x22ff,0x2aff,0x2aff,0x32df, 0x32df,0x32df,0x3adf,0x3adf,0x3abf,0x42bf,0x42bf,0x4abf, 0x4a9f,0x4a9f,0x529f,0x529f,0x5a7f,0x5a7f,0x5a7f,0x627f, 0x625f,0x6a5f,0x6a5f,0x725f,0x723f,0x723f,0x7a3f,0x7a1f, 0x821f,0x821f,0x8a1f,0x89ff,0x91ff,0x91ff,0x99df,0x99df, 0xa1df,0xa1bf,0xa9bf,0xa9bf,0xb1bf,0xb19f,0xb99f,0xc17f, 0xc17f,0xc97f,0xc95f,0xd15f,0xd15f,0xd93f,0xe13f,0xe13f, 0xe91f,0xf11f,0xf0ff,0xf8ff,0xf8ff,0xf8df,0xf8de,0xf8bd, 0xf8bd,0xf89c,0xf89c,0xf87b,0xf87a,0xf85a,0xf859,0xf839, 0xf838,0xf818,0xf817,0xf817,0xf817,0xf816,0xf816,0xf815, 0xf815,0xf815,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812, 0xf812,0xf812,0xf811,0xf811,0xf811,0xf810,0xf810,0xf810, 0xf80f,0xf80f,0xf80f,0xf80e,0xf80e,0xf80e,0xf80e,0xf80d, 0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c,0xf80b, 0xf80b,0xf80b,0xf80b,0xc008,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x012a,0x037f,0x037f,0x037f, 0x035f,0x035f,0x035f,0x035f,0x035f,0x033f,0x033f,0x033f, 0x0b3f,0x0b3f,0x0b1f,0x131f,0x131f,0x131f,0x131f,0x1b1f, 0x1aff,0x1aff,0x22ff,0x22ff,0x2adf,0x2adf,0x2adf,0x32df, 0x32df,0x32bf,0x3abf,0x3abf,0x3abf,0x429f,0x429f,0x4a9f, 0x4a9f,0x4a9f,0x527f,0x527f,0x5a7f,0x5a7f,0x5a5f,0x625f, 0x625f,0x6a5f,0x6a3f,0x6a3f,0x723f,0x721f,0x7a1f,0x7a1f, 0x81ff,0x81ff,0x89ff,0x89ff,0x91df,0x91df,0x99df,0x99bf, 0xa1bf,0xa1bf,0xa99f,0xa99f,0xb19f,0xb19f,0xb97f,0xb97f, 0xc15f,0xc95f,0xc95f,0xd13f,0xd13f,0xd93f,0xe11f,0xe11f, 0xe8ff,0xe8ff,0xf0ff,0xf8df,0xf8df,0xf8bf,0xf8be,0xf89e, 0xf89d,0xf87c,0xf87c,0xf87b,0xf85b,0xf85a,0xf83a,0xf839, 0xf819,0xf818,0xf818,0xf817,0xf817,0xf816,0xf816,0xf815, 0xf815,0xf815,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812, 0xf812,0xf812,0xf811,0xf811,0xf811,0xf810,0xf810,0xf810, 0xf80f,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e,0xf80e,0xf80e, 0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c, 0xf80b,0xf80b,0xf80b,0x5003,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0235,0x035f,0x035f, 0x035f,0x033f,0x033f,0x033f,0x033f,0x033f,0x033f,0x031f, 0x0b1f,0x0b1f,0x0b1f,0x131f,0x12ff,0x12ff,0x1aff,0x1aff, 0x1aff,0x22df,0x22df,0x22df,0x2adf,0x2abf,0x2abf,0x32bf, 0x32bf,0x32bf,0x3a9f,0x3a9f,0x3a9f,0x429f,0x427f,0x4a7f, 0x4a7f,0x4a7f,0x525f,0x525f,0x5a5f,0x5a5f,0x5a3f,0x623f, 0x623f,0x6a3f,0x6a1f,0x6a1f,0x721f,0x71ff,0x79ff,0x79ff, 0x81ff,0x81df,0x89df,0x89df,0x91df,0x91bf,0x99bf,0x99bf, 0xa19f,0xa19f,0xa99f,0xa97f,0xb17f,0xb17f,0xb95f,0xb95f, 0xc15f,0xc13f,0xc93f,0xd11f,0xd11f,0xd91f,0xd8ff,0xe0ff, 0xe8ff,0xe8df,0xf0df,0xf0bf,0xf8bf,0xf89f,0xf89e,0xf87e, 0xf87d,0xf87d,0xf85c,0xf85b,0xf83b,0xf83a,0xf81a,0xf819, 0xf819,0xf818,0xf818,0xf817,0xf817,0xf817,0xf816,0xf816, 0xf815,0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf813, 0xf812,0xf812,0xf811,0xf811,0xf811,0xf811,0xf810,0xf810, 0xf810,0xf80f,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e,0xf80e, 0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c,0xf80c, 0xf80c,0xf80b,0xa807,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x00a7,0x033f,0x033f, 0x033f,0x033f,0x033f,0x031f,0x031f,0x031f,0x031f,0x031f, 0x0b1f,0x0aff,0x0aff,0x12ff,0x12ff,0x12ff,0x1adf,0x1adf, 0x1adf,0x22df,0x22bf,0x22bf,0x2abf,0x2abf,0x2abf,0x329f, 0x329f,0x329f,0x3a9f,0x3a9f,0x3a7f,0x427f,0x427f,0x4a7f, 0x4a5f,0x4a5f,0x525f,0x525f,0x5a3f,0x5a3f,0x5a3f,0x623f, 0x621f,0x6a1f,0x6a1f,0x69ff,0x71ff,0x71ff,0x79ff,0x79df, 0x81df,0x81df,0x89bf,0x89bf,0x91bf,0x91bf,0x999f,0x999f, 0xa19f,0xa17f,0xa97f,0xa97f,0xb15f,0xb15f,0xb95f,0xb93f, 0xc13f,0xc13f,0xc91f,0xc91f,0xd0ff,0xd8ff,0xd8ff,0xe0df, 0xe8df,0xe8df,0xf0bf,0xf0bf,0xf89f,0xf89f,0xf87e,0xf87e, 0xf85d,0xf85d,0xf83c,0xf83c,0xf83b,0xf81a,0xf81a,0xf819, 0xf819,0xf818,0xf818,0xf818,0xf817,0xf817,0xf816,0xf816, 0xf815,0xf815,0xf815,0xf814,0xf814,0xf813,0xf813,0xf813, 0xf812,0xf812,0xf812,0xf811,0xf811,0xf811,0xf810,0xf810, 0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e,0xf80e, 0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c,0xf80c, 0xf80c,0xf80c,0x3802,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x010a,0x031f, 0x031f,0x031f,0x031f,0x031f,0x031f,0x02ff,0x02ff,0x02ff, 0x0aff,0x0aff,0x0adf,0x12df,0x12df,0x12df,0x1adf,0x1abf, 0x1abf,0x22bf,0x22bf,0x229f,0x2a9f,0x2a9f,0x2a9f,0x329f, 0x327f,0x327f,0x3a7f,0x3a7f,0x3a5f,0x425f,0x425f,0x4a5f, 0x4a5f,0x4a3f,0x523f,0x523f,0x5a3f,0x5a1f,0x5a1f,0x621f, 0x61ff,0x69ff,0x69ff,0x69ff,0x71df,0x71df,0x79df,0x79bf, 0x81bf,0x81bf,0x89bf,0x899f,0x919f,0x919f,0x997f,0x997f, 0xa17f,0xa15f,0xa95f,0xa95f,0xb13f,0xb13f,0xb93f,0xb91f, 0xc11f,0xc11f,0xc8ff,0xc8ff,0xd0ff,0xd0df,0xd8df,0xe0bf, 0xe0bf,0xe8bf,0xf09f,0xf09f,0xf87f,0xf87f,0xf85f,0xf85e, 0xf85d,0xf83d,0xf83c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a, 0xf819,0xf819,0xf818,0xf818,0xf817,0xf817,0xf816,0xf816, 0xf815,0xf815,0xf815,0xf814,0xf814,0xf814,0xf813,0xf813, 0xf812,0xf812,0xf812,0xf812,0xf811,0xf811,0xf811,0xf810, 0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e, 0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c, 0xf80c,0x5004,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0043,0x0278, 0x031f,0x031f,0x02ff,0x02ff,0x02ff,0x02ff,0x02ff,0x0adf, 0x0adf,0x0adf,0x0adf,0x12df,0x12bf,0x12bf,0x1abf,0x1abf, 0x1abf,0x229f,0x229f,0x229f,0x2a9f,0x2a7f,0x2a7f,0x327f, 0x327f,0x327f,0x3a5f,0x3a5f,0x3a5f,0x425f,0x423f,0x4a3f, 0x4a3f,0x4a3f,0x521f,0x521f,0x5a1f,0x5a1f,0x59ff,0x61ff, 0x61ff,0x69ff,0x69df,0x69df,0x71df,0x71bf,0x79bf,0x79bf, 0x819f,0x819f,0x899f,0x899f,0x917f,0x917f,0x917f,0x995f, 0x995f,0xa15f,0xa13f,0xa93f,0xa93f,0xb11f,0xb91f,0xb91f, 0xc0ff,0xc0ff,0xc8ff,0xc8df,0xd0df,0xd0df,0xd8bf,0xe0bf, 0xe09f,0xe89f,0xe87f,0xf07f,0xf87f,0xf85f,0xf85f,0xf83e, 0xf83e,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a, 0xf819,0xf819,0xf818,0xf818,0xf817,0xf817,0xf817,0xf816, 0xf816,0xf815,0xf815,0xf815,0xf814,0xf814,0xf813,0xf813, 0xf813,0xf812,0xf812,0xf812,0xf811,0xf811,0xf811,0xf810, 0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80e,0xf80e, 0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xf80c,0xf80c, 0xc009,0x1801,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0258,0x02ff,0x02ff,0x02df,0x02df,0x02df,0x02df,0x0adf, 0x0adf,0x0abf,0x0abf,0x12bf,0x12bf,0x129f,0x1a9f,0x1a9f, 0x1a9f,0x229f,0x227f,0x227f,0x2a7f,0x2a7f,0x2a7f,0x325f, 0x325f,0x325f,0x3a5f,0x3a3f,0x423f,0x423f,0x423f,0x4a1f, 0x4a1f,0x4a1f,0x521f,0x51ff,0x59ff,0x59ff,0x59ff,0x61df, 0x61df,0x69df,0x69bf,0x69bf,0x71bf,0x71bf,0x799f,0x799f, 0x819f,0x817f,0x897f,0x897f,0x897f,0x915f,0x915f,0x993f, 0x993f,0xa13f,0xa13f,0xa91f,0xa91f,0xb0ff,0xb0ff,0xb8ff, 0xb8ff,0xc0df,0xc8df,0xc8bf,0xd0bf,0xd0bf,0xd89f,0xd89f, 0xe07f,0xe87f,0xe87f,0xf05f,0xf05f,0xf83f,0xf83f,0xf81e, 0xf81e,0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81a,0xf81a, 0xf819,0xf819,0xf818,0xf818,0xf818,0xf817,0xf817,0xf816, 0xf816,0xf816,0xf815,0xf815,0xf814,0xf814,0xf814,0xf813, 0xf813,0xf813,0xf812,0xf812,0xf811,0xf811,0xf811,0xf811, 0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80f,0xf80e, 0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xf80d,0xc009, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0043,0x0238,0x02df,0x02df,0x02df,0x02bf,0x02bf,0x0abf, 0x0abf,0x0abf,0x129f,0x129f,0x129f,0x129f,0x1a9f,0x1a7f, 0x1a7f,0x227f,0x227f,0x227f,0x2a5f,0x2a5f,0x2a5f,0x325f, 0x323f,0x323f,0x3a3f,0x3a3f,0x421f,0x421f,0x421f,0x4a1f, 0x49ff,0x49ff,0x51ff,0x51ff,0x59df,0x59df,0x59df,0x61df, 0x61bf,0x69bf,0x69bf,0x69bf,0x719f,0x719f,0x799f,0x797f, 0x817f,0x817f,0x815f,0x895f,0x895f,0x915f,0x913f,0x993f, 0x993f,0xa11f,0xa11f,0xa91f,0xa8ff,0xb0ff,0xb0df,0xb8df, 0xb8df,0xc0df,0xc8bf,0xc8bf,0xd09f,0xd09f,0xd89f,0xd87f, 0xe07f,0xe05f,0xe85f,0xf05f,0xf03f,0xf83f,0xf81f,0xf81f, 0xf81e,0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a, 0xf81a,0xf819,0xf819,0xf818,0xf818,0xf817,0xf817,0xf816, 0xf816,0xf816,0xf815,0xf815,0xf814,0xf814,0xf814,0xf813, 0xf813,0xf813,0xf812,0xf812,0xf812,0xf811,0xf811,0xf811, 0xf810,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80e, 0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0xf80d,0xc00a,0x1801, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x02bf,0x02bf,0x02bf,0x02bf,0x02bf,0x0a9f, 0x0a9f,0x0a9f,0x129f,0x129f,0x127f,0x1a7f,0x1a7f,0x1a7f, 0x1a7f,0x225f,0x225f,0x225f,0x2a5f,0x2a3f,0x2a3f,0x323f, 0x323f,0x321f,0x3a1f,0x3a1f,0x421f,0x41ff,0x41ff,0x49ff, 0x49ff,0x49df,0x51df,0x51df,0x59df,0x59bf,0x59bf,0x61bf, 0x61bf,0x699f,0x699f,0x699f,0x717f,0x717f,0x797f,0x797f, 0x815f,0x815f,0x815f,0x893f,0x893f,0x913f,0x911f,0x991f, 0x991f,0xa0ff,0xa0ff,0xa8ff,0xa8df,0xb0df,0xb0df,0xb8bf, 0xb8bf,0xc0bf,0xc09f,0xc89f,0xc89f,0xd07f,0xd87f,0xd85f, 0xe05f,0xe03f,0xe83f,0xe83f,0xf01f,0xf81f,0xf81f,0xf81f, 0xf81e,0xf81e,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a, 0xf81a,0xf819,0xf819,0xf818,0xf818,0xf818,0xf817,0xf817, 0xf816,0xf816,0xf815,0xf815,0xf815,0xf814,0xf814,0xf814, 0xf813,0xf813,0xf812,0xf812,0xf812,0xf812,0xf811,0xf811, 0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f,0xf80f, 0xf80e,0xf80e,0xf80e,0xf80e,0xf80d,0xf80d,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0171,0x02bf,0x029f,0x029f,0x029f,0x0a9f, 0x0a9f,0x0a7f,0x127f,0x127f,0x127f,0x1a7f,0x1a5f,0x1a5f, 0x225f,0x225f,0x223f,0x223f,0x2a3f,0x2a3f,0x2a3f,0x321f, 0x321f,0x3a1f,0x3a1f,0x39ff,0x41ff,0x41ff,0x41ff,0x49df, 0x49df,0x49df,0x51df,0x51bf,0x59bf,0x59bf,0x59bf,0x619f, 0x619f,0x699f,0x697f,0x697f,0x717f,0x717f,0x795f,0x795f, 0x815f,0x813f,0x813f,0x893f,0x891f,0x911f,0x911f,0x98ff, 0x98ff,0xa0ff,0xa0df,0xa8df,0xa8df,0xb0bf,0xb0bf,0xb8bf, 0xb89f,0xc09f,0xc09f,0xc87f,0xc87f,0xd07f,0xd85f,0xd85f, 0xe03f,0xe03f,0xe81f,0xe81f,0xf01f,0xf81f,0xf81f,0xf81f, 0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81b,0xf81b,0xf81a, 0xf81a,0xf819,0xf819,0xf819,0xf818,0xf818,0xf817,0xf817, 0xf816,0xf816,0xf816,0xf815,0xf815,0xf814,0xf814,0xf814, 0xf813,0xf813,0xf813,0xf812,0xf812,0xf812,0xf811,0xf811, 0xf811,0xf810,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f, 0xf80e,0xf80e,0xf80e,0xf80e,0xf80d,0x8807,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x012e,0x029f,0x029f,0x0a7f,0x0a7f, 0x0a7f,0x0a7f,0x127f,0x125f,0x125f,0x1a5f,0x1a5f,0x1a3f, 0x223f,0x223f,0x223f,0x2a1f,0x2a1f,0x2a1f,0x321f,0x321f, 0x31ff,0x39ff,0x39ff,0x39ff,0x41df,0x41df,0x41df,0x49df, 0x49bf,0x49bf,0x51bf,0x51bf,0x599f,0x599f,0x599f,0x617f, 0x617f,0x697f,0x697f,0x695f,0x715f,0x715f,0x795f,0x793f, 0x793f,0x813f,0x811f,0x891f,0x891f,0x90ff,0x90ff,0x98ff, 0x98df,0xa0df,0xa0df,0xa8bf,0xa8bf,0xb0bf,0xb09f,0xb89f, 0xb89f,0xc07f,0xc07f,0xc85f,0xc85f,0xd05f,0xd03f,0xd83f, 0xd83f,0xe01f,0xe81f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f, 0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b, 0xf81a,0xf81a,0xf819,0xf819,0xf818,0xf818,0xf817,0xf817, 0xf816,0xf816,0xf816,0xf815,0xf815,0xf815,0xf814,0xf814, 0xf813,0xf813,0xf813,0xf813,0xf812,0xf812,0xf811,0xf811, 0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f,0xf80f, 0xf80f,0xf80e,0xf80e,0xf80e,0x7006,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0151,0x027f,0x0a7f,0x0a7f, 0x0a5f,0x0a5f,0x125f,0x125f,0x125f,0x1a3f,0x1a3f,0x1a3f, 0x223f,0x221f,0x221f,0x2a1f,0x2a1f,0x2a1f,0x31ff,0x31ff, 0x31ff,0x39ff,0x39df,0x39df,0x41df,0x41df,0x41bf,0x49bf, 0x49bf,0x49bf,0x519f,0x519f,0x599f,0x597f,0x597f,0x617f, 0x617f,0x695f,0x695f,0x695f,0x713f,0x713f,0x793f,0x793f, 0x791f,0x811f,0x811f,0x88ff,0x88ff,0x90ff,0x90df,0x98df, 0x98df,0xa0bf,0xa0bf,0xa0bf,0xa89f,0xa89f,0xb09f,0xb07f, 0xb87f,0xc07f,0xc05f,0xc85f,0xc83f,0xd03f,0xd03f,0xd81f, 0xd81f,0xe01f,0xe81f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f, 0xf81f,0xf81e,0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b, 0xf81a,0xf81a,0xf819,0xf819,0xf818,0xf818,0xf818,0xf817, 0xf817,0xf816,0xf816,0xf816,0xf815,0xf815,0xf814,0xf814, 0xf814,0xf813,0xf813,0xf813,0xf812,0xf812,0xf812,0xf811, 0xf811,0xf811,0xf810,0xf810,0xf810,0xf810,0xf80f,0xf80f, 0xf80f,0xf80f,0xf80e,0x8808,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0195,0x0a5f,0x0a5f, 0x0a5f,0x0a3f,0x123f,0x123f,0x123f,0x1a3f,0x1a1f,0x1a1f, 0x221f,0x221f,0x221f,0x29ff,0x29ff,0x29ff,0x31ff,0x31df, 0x31df,0x39df,0x39df,0x39bf,0x41bf,0x41bf,0x41bf,0x499f, 0x499f,0x499f,0x519f,0x517f,0x597f,0x597f,0x595f,0x615f, 0x615f,0x615f,0x693f,0x693f,0x713f,0x711f,0x791f,0x791f, 0x791f,0x80ff,0x80ff,0x88ff,0x88df,0x90df,0x90df,0x90bf, 0x98bf,0x98bf,0xa09f,0xa09f,0xa89f,0xa87f,0xb07f,0xb05f, 0xb85f,0xb85f,0xc03f,0xc03f,0xc83f,0xc81f,0xd01f,0xd81f, 0xd81f,0xe01f,0xe01f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f, 0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81b,0xf81b, 0xf81a,0xf81a,0xf819,0xf819,0xf819,0xf818,0xf818,0xf817, 0xf817,0xf817,0xf816,0xf816,0xf815,0xf815,0xf814,0xf814, 0xf814,0xf814,0xf813,0xf813,0xf812,0xf812,0xf812,0xf812, 0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f,0xf80f, 0xf80f,0xf80f,0xa809,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0087,0x0a5f,0x0a3f, 0x0a3f,0x123f,0x123f,0x123f,0x121f,0x1a1f,0x1a1f,0x1a1f, 0x21ff,0x21ff,0x21ff,0x29ff,0x29ff,0x29df,0x31df,0x31df, 0x31df,0x39bf,0x39bf,0x39bf,0x41bf,0x419f,0x419f,0x499f, 0x499f,0x497f,0x517f,0x517f,0x595f,0x595f,0x595f,0x615f, 0x613f,0x613f,0x693f,0x691f,0x711f,0x711f,0x791f,0x78ff, 0x78ff,0x80ff,0x80df,0x88df,0x88df,0x90bf,0x90bf,0x90bf, 0x989f,0x989f,0xa09f,0xa07f,0xa87f,0xa87f,0xb05f,0xb05f, 0xb85f,0xb83f,0xc03f,0xc01f,0xc81f,0xc81f,0xd01f,0xd81f, 0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f,0xf81f,0xf81f, 0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81c,0xf81b, 0xf81b,0xf81a,0xf81a,0xf819,0xf819,0xf818,0xf818,0xf817, 0xf817,0xf817,0xf816,0xf816,0xf815,0xf815,0xf815,0xf814, 0xf814,0xf814,0xf813,0xf813,0xf813,0xf812,0xf812,0xf812, 0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf810,0xf80f, 0xf80f,0xf80f,0x3803,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0067,0x09fc, 0x0a3f,0x121f,0x121f,0x121f,0x1a1f,0x19ff,0x19ff,0x19ff, 0x21ff,0x21df,0x21df,0x29df,0x29df,0x29df,0x31bf,0x31bf, 0x31bf,0x39bf,0x399f,0x399f,0x419f,0x419f,0x417f,0x497f, 0x497f,0x497f,0x515f,0x515f,0x595f,0x593f,0x593f,0x613f, 0x613f,0x611f,0x691f,0x691f,0x70ff,0x70ff,0x70ff,0x78ff, 0x78df,0x80df,0x80df,0x88bf,0x88bf,0x88bf,0x909f,0x909f, 0x989f,0x987f,0xa07f,0xa07f,0xa85f,0xa85f,0xb05f,0xb03f, 0xb83f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f,0xd01f, 0xd81f,0xd81f,0xe01f,0xe81f,0xe81f,0xf01f,0xf01f,0xf81f, 0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81c,0xf81c,0xf81b, 0xf81b,0xf81a,0xf81a,0xf819,0xf819,0xf819,0xf818,0xf818, 0xf817,0xf817,0xf816,0xf816,0xf816,0xf815,0xf815,0xf815, 0xf814,0xf814,0xf813,0xf813,0xf813,0xf812,0xf812,0xf812, 0xf811,0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf80f, 0xe00d,0x3803,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0067, 0x0a1f,0x121f,0x121f,0x11ff,0x19ff,0x19ff,0x19ff,0x19df, 0x21df,0x21df,0x21df,0x29df,0x29bf,0x29bf,0x31bf,0x31bf, 0x319f,0x399f,0x399f,0x399f,0x417f,0x417f,0x417f,0x497f, 0x495f,0x495f,0x515f,0x513f,0x593f,0x593f,0x593f,0x611f, 0x611f,0x611f,0x68ff,0x68ff,0x70ff,0x70ff,0x70df,0x78df, 0x78df,0x80bf,0x80bf,0x88bf,0x889f,0x889f,0x909f,0x907f, 0x987f,0x987f,0xa05f,0xa05f,0xa85f,0xa83f,0xb03f,0xb03f, 0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f,0xd01f, 0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xf01f,0xf01f,0xf81f, 0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81b, 0xf81b,0xf81a,0xf81a,0xf81a,0xf819,0xf819,0xf818,0xf818, 0xf817,0xf817,0xf817,0xf816,0xf816,0xf815,0xf815,0xf815, 0xf814,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812,0xf812, 0xf812,0xf811,0xf811,0xf811,0xf810,0xf810,0xf810,0xf810, 0x3803,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0067,0x09bc,0x11ff,0x11ff,0x19df,0x19df,0x19df,0x19df, 0x21df,0x21bf,0x21bf,0x29bf,0x29bf,0x299f,0x319f,0x319f, 0x319f,0x397f,0x397f,0x397f,0x417f,0x415f,0x415f,0x495f, 0x495f,0x493f,0x513f,0x513f,0x593f,0x591f,0x591f,0x611f, 0x60ff,0x60ff,0x68ff,0x68df,0x70df,0x70df,0x70df,0x78bf, 0x78bf,0x80bf,0x809f,0x889f,0x889f,0x887f,0x907f,0x907f, 0x985f,0x985f,0xa05f,0xa03f,0xa83f,0xa83f,0xb01f,0xb01f, 0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f,0xd01f, 0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f,0xf81f, 0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81c, 0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819,0xf818,0xf818, 0xf817,0xf817,0xf817,0xf816,0xf816,0xf816,0xf815,0xf815, 0xf814,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812,0xf812, 0xf812,0xf812,0xf811,0xf811,0xf811,0xf810,0xe00e,0x3803, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0067,0x11df,0x11df,0x19df,0x19df,0x19df,0x21bf, 0x21bf,0x21bf,0x21bf,0x299f,0x299f,0x299f,0x319f,0x317f, 0x317f,0x397f,0x397f,0x395f,0x415f,0x415f,0x415f,0x493f, 0x493f,0x493f,0x513f,0x511f,0x591f,0x591f,0x58ff,0x60ff, 0x60ff,0x60ff,0x68df,0x68df,0x70df,0x70bf,0x70bf,0x78bf, 0x789f,0x809f,0x809f,0x807f,0x887f,0x887f,0x905f,0x905f, 0x985f,0x983f,0xa03f,0xa03f,0xa81f,0xa81f,0xb01f,0xb01f, 0xb01f,0xb81f,0xb81f,0xc01f,0xc81f,0xc81f,0xd01f,0xd01f, 0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f,0xf01f, 0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c,0xf81c, 0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819,0xf818,0xf818, 0xf818,0xf817,0xf817,0xf816,0xf816,0xf816,0xf815,0xf815, 0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812, 0xf812,0xf812,0xf811,0xf811,0xf811,0xf810,0x3803,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0067,0x0935,0x19bf,0x19bf,0x19bf,0x21bf, 0x219f,0x219f,0x299f,0x299f,0x297f,0x297f,0x317f,0x317f, 0x315f,0x395f,0x395f,0x395f,0x413f,0x413f,0x413f,0x493f, 0x491f,0x491f,0x511f,0x511f,0x58ff,0x58ff,0x58ff,0x60df, 0x60df,0x60df,0x68df,0x68bf,0x70bf,0x70bf,0x709f,0x789f, 0x789f,0x807f,0x807f,0x807f,0x885f,0x885f,0x905f,0x903f, 0x983f,0x983f,0xa01f,0xa01f,0xa01f,0xa81f,0xa81f,0xb01f, 0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f, 0xd01f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f,0xf01f, 0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81c,0xf81c, 0xf81b,0xf81b,0xf81a,0xf81a,0xf81a,0xf819,0xf819,0xf818, 0xf818,0xf817,0xf817,0xf817,0xf816,0xf816,0xf815,0xf815, 0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf813,0xf812, 0xf812,0xf812,0xf811,0xf811,0xa80b,0x3803,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x08f1,0x19bf,0x199f,0x219f, 0x219f,0x219f,0x297f,0x297f,0x297f,0x297f,0x315f,0x315f, 0x315f,0x395f,0x393f,0x393f,0x413f,0x413f,0x411f,0x491f, 0x491f,0x491f,0x50ff,0x50ff,0x58ff,0x58df,0x58df,0x60df, 0x60df,0x60bf,0x68bf,0x68bf,0x709f,0x709f,0x709f,0x789f, 0x787f,0x807f,0x807f,0x805f,0x885f,0x885f,0x903f,0x903f, 0x983f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f,0xb01f, 0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f, 0xd01f,0xd81f,0xd81f,0xe01f,0xe81f,0xe81f,0xf01f,0xf01f, 0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c, 0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819,0xf818, 0xf818,0xf818,0xf817,0xf817,0xf816,0xf816,0xf816,0xf815, 0xf815,0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf813, 0xf812,0xf812,0xf812,0x8809,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x08ae,0x199f,0x217f, 0x217f,0x217f,0x297f,0x297f,0x295f,0x295f,0x315f,0x315f, 0x313f,0x393f,0x393f,0x393f,0x411f,0x411f,0x411f,0x48ff, 0x48ff,0x48ff,0x50ff,0x50df,0x58df,0x58df,0x58df,0x60bf, 0x60bf,0x60bf,0x689f,0x689f,0x709f,0x707f,0x707f,0x787f, 0x787f,0x805f,0x805f,0x805f,0x883f,0x883f,0x903f,0x901f, 0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f,0xb01f, 0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f, 0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f, 0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d,0xf81c, 0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819,0xf819, 0xf818,0xf818,0xf817,0xf817,0xf816,0xf816,0xf816,0xf815, 0xf815,0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf813, 0xf812,0xf812,0x7008,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x10d1,0x217f, 0x217f,0x215f,0x295f,0x295f,0x295f,0x315f,0x313f,0x313f, 0x393f,0x393f,0x391f,0x391f,0x411f,0x40ff,0x40ff,0x48ff, 0x48ff,0x48df,0x50df,0x50df,0x58df,0x58bf,0x58bf,0x60bf, 0x609f,0x609f,0x689f,0x689f,0x707f,0x707f,0x707f,0x785f, 0x785f,0x805f,0x803f,0x803f,0x883f,0x881f,0x901f,0x901f, 0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f,0xb01f, 0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f,0xd01f, 0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f, 0xf81f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81d,0xf81d,0xf81c, 0xf81c,0xf81b,0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819, 0xf818,0xf818,0xf817,0xf817,0xf817,0xf816,0xf816,0xf816, 0xf815,0xf815,0xf814,0xf814,0xf814,0xf813,0xf813,0xf813, 0xf813,0x880a,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x1918,0x215f,0x295f,0x293f,0x293f,0x313f,0x313f,0x311f, 0x391f,0x391f,0x391f,0x38ff,0x40ff,0x40ff,0x40ff,0x48df, 0x48df,0x50df,0x50df,0x50bf,0x58bf,0x58bf,0x589f,0x609f, 0x609f,0x607f,0x687f,0x687f,0x707f,0x705f,0x705f,0x785f, 0x783f,0x783f,0x803f,0x801f,0x881f,0x881f,0x901f,0x901f, 0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f,0xb01f, 0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f, 0xd01f,0xd01f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f,0xf01f, 0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d, 0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819, 0xf818,0xf818,0xf818,0xf817,0xf817,0xf817,0xf816,0xf816, 0xf815,0xf815,0xf815,0xf814,0xf814,0xf814,0xf813,0xc00f, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0023,0x18f8,0x293f,0x293f,0x293f,0x311f,0x311f,0x311f, 0x391f,0x38ff,0x38ff,0x40ff,0x40ff,0x40df,0x48df,0x48df, 0x48df,0x50bf,0x50bf,0x50bf,0x589f,0x589f,0x589f,0x609f, 0x607f,0x607f,0x687f,0x685f,0x705f,0x705f,0x703f,0x783f, 0x783f,0x783f,0x801f,0x801f,0x881f,0x881f,0x901f,0x901f, 0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f, 0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xf01f, 0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d,0xf81d, 0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf819,0xf819, 0xf819,0xf818,0xf818,0xf817,0xf817,0xf817,0xf816,0xf816, 0xf815,0xf815,0xf815,0xf814,0xf814,0xf814,0xc00f,0x1802, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x20f8,0x291f,0x291f,0x311f,0x311f,0x30ff, 0x38ff,0x38ff,0x38ff,0x40df,0x40df,0x40df,0x48df,0x48bf, 0x48bf,0x50bf,0x509f,0x509f,0x589f,0x589f,0x587f,0x607f, 0x607f,0x605f,0x685f,0x685f,0x683f,0x703f,0x703f,0x783f, 0x781f,0x781f,0x801f,0x801f,0x881f,0x881f,0x881f,0x901f, 0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa01f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f, 0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f, 0xf01f,0xf81f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81d,0xf81d, 0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf81a,0xf819, 0xf819,0xf818,0xf818,0xf818,0xf817,0xf817,0xf816,0xf816, 0xf816,0xf815,0xf815,0xf815,0xf814,0xc00f,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0003,0x084a,0x291f,0x30ff,0x30ff,0x30ff, 0x38ff,0x38df,0x38df,0x40df,0x40df,0x40bf,0x48bf,0x48bf, 0x489f,0x509f,0x509f,0x509f,0x587f,0x587f,0x587f,0x605f, 0x605f,0x605f,0x685f,0x683f,0x683f,0x703f,0x701f,0x781f, 0x781f,0x781f,0x801f,0x801f,0x881f,0x881f,0x881f,0x901f, 0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa01f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f, 0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f, 0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d, 0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf819, 0xf819,0xf818,0xf818,0xf818,0xf817,0xf817,0xf817,0xf816, 0xf816,0xf815,0xf815,0xf815,0x5006,0x1802,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0827,0x2095,0x30ff,0x30df, 0x38df,0x38df,0x38bf,0x40bf,0x40bf,0x40bf,0x489f,0x489f, 0x489f,0x509f,0x507f,0x507f,0x587f,0x585f,0x585f,0x605f, 0x605f,0x603f,0x683f,0x683f,0x681f,0x701f,0x701f,0x781f, 0x781f,0x781f,0x801f,0x801f,0x881f,0x881f,0x881f,0x901f, 0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f,0xc81f, 0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f,0xe81f, 0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d, 0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a,0xf81a, 0xf819,0xf819,0xf818,0xf818,0xf817,0xf817,0xf817,0xf816, 0xf816,0xf816,0xa80e,0x3804,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x104a,0x2898, 0x38df,0x38bf,0x38bf,0x40bf,0x40bf,0x409f,0x489f,0x489f, 0x487f,0x507f,0x507f,0x507f,0x585f,0x585f,0x585f,0x603f, 0x603f,0x603f,0x683f,0x681f,0x681f,0x701f,0x701f,0x781f, 0x781f,0x781f,0x801f,0x801f,0x881f,0x881f,0x881f,0x901f, 0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc01f,0xc81f, 0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe81f,0xe81f, 0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e,0xf81d, 0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81b,0xf81a,0xf81a, 0xf819,0xf819,0xf818,0xf818,0xf818,0xf817,0xf817,0xf816, 0xc011,0x5007,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x2075,0x309c,0x389f,0x409f,0x409f,0x409f,0x487f,0x487f, 0x487f,0x507f,0x505f,0x505f,0x585f,0x583f,0x583f,0x603f, 0x603f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x781f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x901f, 0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f, 0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f, 0xe81f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e, 0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a, 0xf819,0xf819,0xf818,0xf818,0xf818,0xf817,0xe014,0xa80f, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0827,0x2051,0x409f,0x407f,0x407f,0x487f,0x487f, 0x485f,0x505f,0x505f,0x503f,0x583f,0x583f,0x583f,0x601f, 0x601f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x781f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x901f, 0x901f,0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f, 0xb01f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f, 0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f, 0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e, 0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a, 0xf819,0xf819,0xf819,0xf818,0xf818,0x880d,0x3805,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x2855,0x385c,0x485f,0x485f, 0x485f,0x503f,0x503f,0x503f,0x583f,0x581f,0x581f,0x601f, 0x601f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x781f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x901f, 0x901f,0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f, 0xa81f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f, 0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f,0xe81f, 0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e, 0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a,0xf81a, 0xf81a,0xf819,0xe016,0xa810,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0807,0x2831,0x485f, 0x483f,0x503f,0x503f,0x501f,0x581f,0x581f,0x581f,0x601f, 0x601f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x701f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x901f, 0x901f,0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa81f,0xa81f, 0xa81f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc81f, 0xc81f,0xd01f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f, 0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e,0xf81e, 0xf81d,0xf81d,0xf81c,0xf81c,0xf81c,0xf81b,0xf81b,0xf81a, 0xf81a,0x880e,0x3805,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x3015,0x401c,0x501f,0x501f,0x581f,0x581f,0x581f,0x601f, 0x601f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x701f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x901f, 0x901f,0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa01f,0xa81f, 0xa81f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f,0xc01f, 0xc81f,0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f, 0xe81f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e, 0xf81e,0xf81d,0xf81d,0xf81c,0xf81c,0xf81b,0xe018,0xa811, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x1007,0x180a,0x4018,0x581f,0x581f,0x581f,0x601f, 0x601f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x701f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x881f, 0x901f,0x901f,0x981f,0x981f,0xa01f,0xa01f,0xa01f,0xa81f, 0xa81f,0xb01f,0xb01f,0xb81f,0xb81f,0xb81f,0xc01f,0xc01f, 0xc81f,0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f, 0xe81f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81e, 0xf81e,0xf81d,0xf81d,0xf81c,0xc016,0x5009,0x3806,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x1007,0x3815,0x4818,0x601f, 0x601f,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x701f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x881f, 0x901f,0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f, 0xa81f,0xb01f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f, 0xc81f,0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f, 0xe81f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0xf81f, 0xf81e,0xc017,0xa813,0x3806,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0803,0x200a, 0x3011,0x601f,0x681f,0x681f,0x681f,0x701f,0x701f,0x701f, 0x781f,0x781f,0x801f,0x801f,0x801f,0x881f,0x881f,0x881f, 0x901f,0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f, 0xa81f,0xb01f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f, 0xc81f,0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f,0xe01f, 0xe81f,0xe81f,0xf01f,0xf01f,0xf81f,0xf81f,0xf81f,0x8811, 0x500a,0x1803,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x300e,0x4815,0x4815,0x701f,0x701f, 0x781f,0x781f,0x781f,0x801f,0x801f,0x881f,0x881f,0x881f, 0x901f,0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f, 0xa81f,0xa81f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f, 0xc81f,0xc81f,0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0xe01f, 0xe01f,0xe81f,0x9815,0xa015,0x680e,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x200a,0x200a, 0x4011,0x781f,0x781f,0x801f,0x801f,0x881f,0x881f,0x881f, 0x901f,0x901f,0x981f,0x981f,0x981f,0xa01f,0xa01f,0xa81f, 0xa81f,0xa81f,0xb01f,0xb01f,0xb81f,0xb81f,0xc01f,0xc01f, 0xc01f,0xc81f,0xc81f,0xd01f,0xd01f,0xd81f,0xd81f,0x7811, 0x480a,0x480a,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x380e,0x5815,0x5815, 0x6015,0x6015,0x6015,0x6015,0x7818,0xa01f,0xa01f,0xa01f, 0xa81f,0xa81f,0xb01f,0x8818,0x7815,0x7815,0x8015,0x8015, 0x8015,0x8015,0x580e,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x1003,0x300a,0x300a,0x300a, 0x380a,0x380a,0x380a,0x1003,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000,0x0000 }; uint code bar_Mark[]={ 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0x0000, 0x0000,0x0000,0x0000,0xFFFF, }; uint code bar_Red[]={ 0x0000,0x0000,0x0800,0x0800, 0x1000,0x1000,0x1800,0x1800, 0x2000,0x2000,0x2800,0x2800, 0x3000,0x3000,0x3800,0x3800, 0x4000,0x4000,0x4800,0x4800, 0x5000,0x5000,0x5800,0x5800, 0x6000,0x6000,0x6800,0x6800, 0x7000,0x7000,0x7800,0x7800, 0x8000,0x8000,0x8800,0x8800, 0x9000,0x9000,0x9800,0x9800, 0xA000,0xA000,0xA800,0xA800, 0xB000,0xB000,0xB800,0xB800, 0xC000,0xC000,0xC800,0xC800, 0xD000,0xD000,0xD800,0xD800, 0xE000,0xE000,0xE800,0xE800, 0xF000,0xF000,0xF800,0xF800, }; uint code bar_Green[]={ 0x0000,0x0020,0x0040,0x0060, 0x0080,0x00A0,0x00C0,0x00E0, 0x0100,0x0120,0x0140,0x0160, 0x0180,0x01A0,0x01C0,0x01E0, 0x0200,0x0220,0x0240,0x0260, 0x0280,0x02A0,0x02C0,0x02E0, 0x0300,0x0320,0x0340,0x0360, 0x0380,0x03A0,0x03C0,0x03E0, 0x0400,0x0420,0x0440,0x0460, 0x0480,0x04A0,0x04C0,0x04E0, 0x0500,0x0520,0x0540,0x0560, 0x0580,0x05A0,0x05C0,0x05E0, 0x0600,0x0620,0x0640,0x0660, 0x0680,0x06A0,0x06C0,0x06E0, 0x0700,0x0720,0x0740,0x0760, 0x0780,0x07A0,0x07C0,0x07E0, }; uint code bar_Blue[]={ 0x0000,0x0000,0x0001,0x0001, 0x0002,0x0002,0x0003,0x0003, 0x0004,0x0004,0x0005,0x0005, 0x0006,0x0006,0x0007,0x0007, 0x0008,0x0008,0x0009,0x0009, 0x000A,0x000A,0x000B,0x000B, 0x000C,0x000C,0x000D,0x000D, 0x000E,0x000E,0x000F,0x000F, 0x0010,0x0010,0x0011,0x0011, 0x0012,0x0012,0x0013,0x0013, 0x0014,0x0014,0x0015,0x0015, 0x0016,0x0016,0x0017,0x0017, 0x0018,0x0018,0x0019,0x0019, 0x001A,0x001A,0x001B,0x001B, 0x001C,0x001C,0x001D,0x001D, 0x001E,0x001E,0x001F,0x001F, }; uint code bar_Gray16[]={ 0x0000,0x0000,0x0000,0x0000, 0x1082,0x1082,0x1082,0x1082, 0x2104,0x2104,0x2104,0x2104, 0x3186,0x3186,0x3186,0x3186, 0x4208,0x4208,0x4208,0x4208, 0x528a,0x528a,0x528a,0x528a, 0x630c,0x630c,0x630c,0x630c, 0x738e,0x738e,0x738e,0x738e, 0x8410,0x8410,0x8410,0x8410, 0x9492,0x9492,0x9492,0x9492, 0xa514,0xa514,0xa514,0xa514, 0xb596,0xb596,0xb596,0xb596, 0xc618,0xc618,0xc618,0xc618, 0xd69a,0xd69a,0xd69a,0xd69a, 0xe71c,0xe71c,0xe71c,0xe71c, 0xffff,0xffff,0xffff,0xffff, }; uint code bar_Gray64[]={ 0x0000,0x0020,0x0841,0x0861, 0x1082,0x10A2,0x18C3,0x18E3, 0x2104,0x2124,0x2945,0x2965, 0x3186,0x31A6,0x39C7,0x39E7, 0x4208,0x4228,0x4A49,0x4A69, 0x528A,0x52AA,0x5ACB,0x5AEB, 0x630C,0x632C,0x6B4D,0x6B6D, 0x738E,0x73AE,0x7BCF,0x7BEF, 0x8410,0x8430,0x8C51,0x8C71, 0x9492,0x94B2,0x9CD3,0x9CF3, 0xA514,0xA534,0xAD55,0xAD75, 0xB596,0xB5B6,0xBDD7,0xBDF7, 0xC618,0xC638,0xCE59,0xCE79, 0xD69A,0xD6BA,0xDEDB,0xDEFB, 0xE71C,0xE73C,0xEF5D,0xEF7D, 0xF79E,0xF7BE,0xFFDF,0xFFFF }; //----------------------------------- // delayms routine //----------------------------------- void delayms(uint m) // 12MHz Xtal, close to ms value { uint j; uint i; for(i=0; i>8; // prepare the high byte data // only hi byte to the port LCD_Data_Hi=temp; _CS=0; CmdPort = LCD_Data; // write the low byte (toggle /WR) _CS=1; } void SdData(uint LCD_Data) // Write LCD as RAM // for 16 bit access D0~D7 = for low 8bit // for 16 bit access D8~D15 = for high 8bit { uchar temp; temp=LCD_Data>>8; // prepare the high byte data // only hi byte to the port LCD_Data_Hi=temp; _CS=0; DataPort = LCD_Data; // write the low byte (toggle /WR) _CS=1; } //----------------------------------- // Color Bar Test Screen //----------------------------------- void Bar512x64(uint Y, uint *Data) // using 64 data to generate the bar at the center of the screen { ulong i,temp; uchar j; for (j=0; j<64; j++) { SdCmd(0x0041); SdData(Y+j); //set y0=Y delayms(10); SdCmd(0x0040); SdData(143); //set x0=143 for center the bar delayms(10); SdCmd(0x0081); // sending color for (i=0; i<64; i++) { temp=*(Data+i); SdData(temp);SdData(temp);SdData(temp);SdData(temp); SdData(temp);SdData(temp);SdData(temp);SdData(temp); } } } void BarMark512(uint Y) { ulong i; SdCmd(0x0041); SdData(Y); //set y0=Y SdCmd(0x0040); SdData(143); //set x0=143 for center the bar SdCmd(0x0081); // sending color for (i=0; i<32; i++) { SdData(WHITE);SdData(BLACK);SdData(BLACK);SdData(BLACK); SdData(BLACK);SdData(BLACK);SdData(BLACK);SdData(BLACK); SdData(BLACK);SdData(BLACK);SdData(BLACK);SdData(BLACK); SdData(BLACK);SdData(BLACK);SdData(BLACK);SdData(BLACK); } } void CornerMark(void) { SdCmd(0x0046); SdData(WHITE); // set fg-color // set x0,y0 draw dot fg-color SdCmd(0x0040); SdData(0); SdCmd(0x0041); SdData(0); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0040); SdData(0); SdCmd(0x0041); SdData(1); SdCmd(0x0082); SdCmd(0x0040); SdData(0); SdCmd(0x0041); SdData(2); SdCmd(0x0082); SdCmd(0x0040); SdData(797); SdCmd(0x0041); SdData(0); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0040); SdData(799); SdCmd(0x0041); SdData(1); SdCmd(0x0082); SdCmd(0x0040); SdData(799); SdCmd(0x0041); SdData(2); SdCmd(0x0082); SdCmd(0x0040); SdData(0); SdCmd(0x0041); SdData(477); SdCmd(0x0082); SdCmd(0x0040); SdData(0); SdCmd(0x0041); SdData(478); SdCmd(0x0082); SdCmd(0x0040); SdData(0); SdCmd(0x0041); SdData(479); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0040); SdData(799); SdCmd(0x0041); SdData(477); SdCmd(0x0082); SdCmd(0x0040); SdData(799); SdCmd(0x0041); SdData(478); SdCmd(0x0082); SdCmd(0x0040); SdData(797); SdCmd(0x0041); SdData(479); SdCmd(0x0082); SdCmd(0x0082); SdCmd(0x0082); } //----------------------------------- // draw BMP routine //----------------------------------- void Fill160x160(uint X, uint Y, uint *Data) { uint temp; uint i; SdCmd(0x0042); SdData(X); SdCmd(0x0043); SdData(Y); // set x1, y1 SdCmd(0x0044); SdData(X+159); SdCmd(0x0045); SdData(Y+159); // set x2, y2 SdCmd(0x0087); for (i=0; i<25600; i++) { temp=*(Data+i); SdData(temp); } } void DwgBox112x112(uint x, uint y, uint color) { SdCmd(0x0046); SdData(color); // set foreground color SdCmd(0x0042); SdData(x); SdCmd(0x0043); SdData(y); // set x1, y1 SdCmd(0x0044); SdData(x+112); SdCmd(0x0045); SdData(y+112); // set x2, y2 SdCmd(0x0085); // draw a box delayms(30); } void TOPWAY_rand_icon_T(void) // draw icon 56x32 with fore ground { uint i,j; // icon top left uint p; // pointer offset uchar q; // counter uint temp; // temp color value i=rand(); while(i>743) {i=i-743;} // get a random 0 ~ (799-56) j=rand(); while(j>448) {j=j-448;} // get a random 0 ~ (479-32) p=0; temp= rand()*2; SdCmd(0x0046); SdData(temp); // set random foreground color for (q=0; q<32; q++) { SdCmd(0x0040); SdData(i); SdCmd(0x0041); SdData(j+q); // set x0, y0 SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; SdCmd(0x0084); SdData(*(icon_TOPWAY+p)); p++; } } //----------------------------------- // Main Program主程序 //----------------------------------- void main() { uchar i, test_screen; bit update_screen; SP=0x60; EA=0; // no interrupt test_screen=0; // the 1st diaplsy screen update_screen=1; // need update BL_Brightness=15; SdCmd(0x0048); SdData(0x0030+BL_Brightness); // backlight all on, display on, continue fill while(1) { SdCmd(0x0047); SdData(BLACK); SdCmd(0x0086); delayms(100); CornerMark(); BarMark512(111); Bar512x64(112, bar_Gray64); Bar512x64(176, bar_Red); Bar512x64(240, bar_Green); Bar512x64(304, bar_Blue); BarMark512(368); delayms(3000); SdCmd(0x0047); SdData(RED); SdCmd(0x0086); delayms(3000); SdCmd(0x0047); SdData(GREEN); SdCmd(0x0086); delayms(3000); SdCmd(0x0047); SdData(BLUE); SdCmd(0x0086); delayms(3000); SdCmd(0x0047); SdData(WHITE); SdCmd(0x0086); delayms(3000); SdCmd(0x0047); SdData(BLACK); SdCmd(0x0086); delayms(3000); SdCmd(0x0047); SdData(BLACK); SdCmd(0x0086); delayms(100); DwgBox112x112( 40, 36,mid_ma); DwgBox112x112(192, 36,mid_mr); DwgBox112x112(344, 36,mid_re); DwgBox112x112(496, 36,mid_or); DwgBox112x112(648, 36,mid_ye); DwgBox112x112( 40,184,mid_bm); DwgBox112x112(648,184,mid_yg); DwgBox112x112( 40,332,mid_bl); DwgBox112x112(192,332,mid_cb); DwgBox112x112(344,332,mid_cy); DwgBox112x112(496,332,mid_gc); DwgBox112x112(648,332,mid_gr); delayms(3000); SdCmd(0x0047); SdData(BLACK); SdCmd(0x0086); delayms(100); Fill160x160(319, 159, color_circle); delayms(3000); for (i=0; i<100; i++) { TOPWAY_rand_icon_T(); } delayms(3000); } }