Graphic OLED 100x16 pixels interface

Dependents:   mbed_nicovideo_search_api mbed_recent_nicovideo_display_pub

/media/uploads/va009039/graphicoled_1.jpg

Files at this revision

API Documentation at this revision

Comitter:
va009039
Date:
Tue Aug 12 01:47:43 2014 +0000
Parent:
2:337a2655f815
Commit message:
change from shift-jis to utf-8.

Changed in this revision

GraphicOLED.cpp Show annotated file Show diff for this revision Revisions of this file
GraphicOLED.h Show annotated file Show diff for this revision Revisions of this file
misaki_4x8_jis201.cpp Show annotated file Show diff for this revision Revisions of this file
misaki_8x8.cpp Show diff for this revision Revisions of this file
misaki_8x8_unicode.cpp Show annotated file Show diff for this revision Revisions of this file
diff -r 337a2655f815 -r a6650dd2dbc8 GraphicOLED.cpp
--- a/GraphicOLED.cpp	Mon Aug 04 06:17:36 2014 +0000
+++ b/GraphicOLED.cpp	Tue Aug 12 01:47:43 2014 +0000
@@ -1,53 +1,35 @@
 // GraphicOLED.cpp
 #include "GraphicOLED.h"
-#include <ctype.h>
 
-extern void font_4x8(uint8_t buf[], int i);
-extern void font_8x8(uint8_t buf[], int i);
+extern void font_4x8(uint8_t buf[], int c); // misaki_4x8_jis201.cpp
+extern void font_8x8(uint8_t buf[], uint32_t unicode); // misaki_8x8_unicode.cpp
 
 GraphicOLED::GraphicOLED(PinName rs, PinName e, PinName d4, PinName d5, PinName d6, PinName d7) :  _rs(rs), _e(e), _d(d4, d5, d6, d7) {
     _e  = 1;
     _rs = 0;            // command mode
 
-    wait_ms(15);        // Wait 15ms to ensure powered up
+    wait_ms(500);       // Wait For Stabilization 500ms
 
-    // send "Display Settings" 3 times (Only top nibble of 0x30 as we've got 4-bit bus)
-    for (int i=0; i<3; i++) {
-        writeByte(0x3);
-        wait_ms(2);     // this command takes 1.64ms, so wait for it
-    }
-    writeByte(0x2);     // 4-bit mode
-    wait_us(40);        // most instructions take 40us
-
-    //writeCommand(0x28); // Function set 001 BW N F - -
-    //writeCommand(0x0C);
-    //writeCommand(0x6);  // Cursor Direction and Display Shift : 0000 01 CD S (CD 0-left, 1-right S(hift) 0-no, 1-yes
-    //cls();
-    
-    wait_ms(500); // wait 500ms
-    writeCommand(0x00); // 0x0 x 5
+    writeCommand(0x00); // 0x0 x 5, sync 4bit-mode
     writeCommand(0x00);
     writeCommand(0x02); // function set
-    writeCommand(0x28); // N=1
+    writeCommand(0x28); // N=1 2-line display
     writeCommand(0x0c); // D=1 display on
     writeCommand(0x14); // S/C=0 R/L=1
     writeCommand(0x1f); // G/C=1 graphic mode
-    _kanji_flag = false;
+
+    _uni_len = 0;
 }
 
-void GraphicOLED::g_write(uint8_t pat, int x, int y)
-{
-    writeCommand(0x40+y); // y position
-    writeCommand(0x80+x); // x position
+void GraphicOLED::g_write(uint8_t pat, int x, int y) {
+    writeCommand(0x80 + (x&0x7f)); // x position
+    writeCommand(0x40 + (y&0x01)); //y position
     writeData(pat);
 }
 
-void GraphicOLED::g_write(uint8_t *buf, int len, int x, int y)
-{
-    writeCommand(0x40+y); // y position
-    while(len-- > 0) {
-        writeCommand(0x80 + x++); // x position
-        writeData(*buf++);
+void GraphicOLED::g_write(uint8_t *buf, int len, int x, int y) {
+    for(int i = 0; i < len; i++) {
+        g_write(*buf++, x++, y);
     }
 }
 
@@ -74,15 +56,14 @@
     _e = 1;
 }
 
-void GraphicOLED::cls()
-{
-    for(int y = 0; y < 2; y++) {
+void GraphicOLED::cls() {
+    for(int y = 0; y < rows(); y++) {
         for(int x = 0; x < 100; x++) {
             g_write(0x00, x, y);
         }
     }
     locate(0,0);
-    _kanji_flag = false;
+    _uni_len = 0;
 }
 
 void GraphicOLED::locate(int column, int row) {
@@ -90,7 +71,9 @@
     _row = row;
 }
 
-int GraphicOLED::columns() { return 25; }
+int GraphicOLED::columns() {
+     return 25;
+}
 
 int GraphicOLED::rows() {
     return 2;
@@ -98,37 +81,48 @@
 
 int GraphicOLED::_putc(int value)
 {
+    int step = 0;
     if (value == '\n') {
         _column = 0;
         _row++;
         if (_row >= rows()) {
             _row = 0;
         }
-        _kanji_flag = false;
-    } else if (_kanji_flag) {
-        character2(_column, _row, _kanji_1st<<8 | value);
-        _kanji_flag = false;
-        _column += 2;
+        _uni_len = 0;
+    } else if (value <= 0x7f) {
+        step = character(_column, _row, value);
+    } else if (value >= 0xc2 && value <= 0xdf) {
+        _unicode = value & 0x1f;
+        _uni_len = 1;
+    } else if (value >= 0xe0 && value <= 0xef) {
+        _unicode = value & 0x0f;
+        _uni_len = 2;
+    } else if (value >= 0xf0 && value <= 0xf7) {
+        _unicode = value & 0x07;
+        _uni_len = 3;
+    } else if (value >= 0xf8 && value <= 0xfb) {
+        _unicode = value & 0x03;
+        _uni_len = 4;
+    } else if (value >= 0xfc && value <= 0xfd) {
+        _unicode = value & 0x01;
+        _uni_len = 5;
+    } else if (_uni_len >= 1 && value >= 0x80 && value <= 0xbf) {
+        _unicode = (_unicode<<6) | (value&0x3f);
+        if (--_uni_len == 0) {
+            step = character(_column, _row, _unicode);
+        }
+    } else {
+        _uni_len = 0;
+    }
+    if (step > 0) {
+        _column += step;
         if (_column >= columns()) {
             _column = 0;
-            _row++;
-            if (_row >= rows()) {
+            if (++_row >= rows()) {
                 _row = 0;
             }
         }
-    } else if (iskanji(value)) {
-        _kanji_1st = value;
-        _kanji_flag = true;
-    } else {
-        character(_column, _row, value);
-        _column++;
-        if (_column >= columns()) {
-            _column = 0;
-            _row++;
-            if (_row >= rows()) {
-                _row = 0;
-            }
-        }
+        _uni_len = 0;
     }
     return value;
 }
@@ -137,61 +131,23 @@
     return -1;
 }
 
-void GraphicOLED::character(int column, int row, int c)
-{
-    int i = 0;
-    if (c >= 0xa1 && c <= 0xdf) {
-        i = c - 66;
-    } else if (isprint(c)) { // 20 - 7e
-        i = c - 32;
+int GraphicOLED::character(int column, int row, int c) {
+    if (c <= 0x7f) { // 半角
+        uint8_t buf[4];
+        font_4x8(buf, c);
+        g_write(buf, sizeof(buf), column*4, row);
+        return 1;
+    } else if (c >= 0xff61 && c <= 0xff9f) { // 半角カタカナ
+        int i = c - 0xff61 + 0xa1;
+        uint8_t buf[4];
+        font_4x8(buf, i);
+        g_write(buf, sizeof(buf), column*4, row);
+        return 1;
+    } else { // 全角
+        uint8_t buf[8];
+        font_8x8(buf, c);
+        g_write(buf, sizeof(buf), column*4, row);
+        return 2;
     }
-    uint8_t buf[4];
-    font_4x8(buf, i);
-    g_write(buf, sizeof(buf), column*4, row);
-}
-
-void _jis(int *ph, int *pl)
-{
-    if (*ph <= 0x9F) {
-        if (*pl < 0x9F)  *ph = (*ph << 1) - 0xE1;
-        else             *ph = (*ph << 1) - 0xE0;
-    } else {
-        if (*pl < 0x9F)  *ph = (*ph << 1) - 0x161;
-        else             *ph = (*ph << 1) - 0x160;
-    }
-    if      (*pl < 0x7F) *pl -= 0x1F;
-    else if (*pl < 0x9F) *pl -= 0x20;
-    else                 *pl -= 0x7E;
 }
 
-int _jis2adrs(int jiscode)
-{
-    const int offset_table[][2] ={
-    {0x2121, 0}, {0x223a, 11}, {0x224a, 19}, {0x225c, 30}, {0x2272, 37}, {0x227e, 41}, {0x2330, 56},
-    {0x2341, 63}, {0x2361, 69}, {0x2421, 73}, {0x2521, 84}, {0x2621, 92}, {0x2641, 100}, {0x2721, 138},
-    {0x2751, 153}, {0x2821, 166}, {0x2d21, 604}, {0x2d40, 605}, {0x2d5f, 613}, {0x3021, 803},
-    {0x5021, 846}, {0x7ffff, 846}};
-    int ku = jiscode>>8;
-    int ten = jiscode&0xff; 
-    int adrs = (ku-0x21) * (0x7e-0x21+1);
-    adrs += (ten-0x21);
-    for(int i = 0; ; i++) { // adjust
-        if (jiscode >= offset_table[i][0] && jiscode < offset_table[i+1][0]) {
-            adrs -= offset_table[i][1];
-            break;
-        }
-    }
-    return adrs;
-}
-
-void GraphicOLED::character2(int column, int row, int c)
-{
-    int h,l;
-    h = c >> 8;
-    l = c & 0xff;
-    _jis(&h, &l);
-    int adrs = _jis2adrs(h<<8 | l);
-    uint8_t buf[8];
-    font_8x8(buf, adrs);
-    g_write(buf, sizeof(buf), column*4, row);
-}
diff -r 337a2655f815 -r a6650dd2dbc8 GraphicOLED.h
--- a/GraphicOLED.h	Mon Aug 04 06:17:36 2014 +0000
+++ b/GraphicOLED.h	Tue Aug 12 01:47:43 2014 +0000
@@ -1,11 +1,7 @@
 // GraphicOLED.h
 #pragma once
-
 #include "mbed.h"
 
-#define iskanji(c) ((c)>=0x81 && (c)<=0x9F || (c)>=0xE0 && (c)<=0xFC)
-#define iskanji2(c) ((c)>=0x40 && (c)<=0xFC && (c)!=0x7F)
-
 /** GraphicOLED interface for WS0010
  *
  * Currently support UTF-8 KANJI(misaki font) 
@@ -32,13 +28,13 @@
     GraphicOLED(PinName rs, PinName e, PinName d4, PinName d5, PinName d6, PinName d7);
 
 #if DOXYGEN_ONLY
-    /** Write a character to the LCD
+    /** Write a character to the OLED
      *
      * @param c The character to write to the display
      */
     int putc(int c);
 
-    /** Write a formated string to the LCD
+    /** Write a formated string to the OLED
      *
      * @param format A printf-style format string, followed by the
      *               variables to use in formating the string.
@@ -63,16 +59,14 @@
     void g_write(uint8_t *buf, int len, int x, int y);
        
 private:
-    void character2(int column, int row, int c);
-    bool _kanji_flag;
-    int _kanji_1st;
+    int _uni_len;
+    uint32_t _unicode;
 
     // Stream implementation functions
     virtual int _putc(int value);
     virtual int _getc();
 
-    int address(int column, int row);
-    void character(int column, int row, int c);
+    int character(int column, int row, int c);
     void writeByte(uint8_t value);
     void writeCommand(uint8_t command);
     void writeData(uint8_t data);
diff -r 337a2655f815 -r a6650dd2dbc8 misaki_4x8_jis201.cpp
--- a/misaki_4x8_jis201.cpp	Mon Aug 04 06:17:36 2014 +0000
+++ b/misaki_4x8_jis201.cpp	Tue Aug 12 01:47:43 2014 +0000
@@ -25,9 +25,13 @@
 {35,17,15,0},{33,33,24,0},{1,0,1,0},{2,5,2,0},
 };
 
-void  font_4x8(uint8_t buf[], int i)
-{
-    for(int k = 0; k < 4; k++) {
-        buf[k] = misaki_4x8_jisx0201[i][k];
+void  font_4x8(uint8_t buf[], int c) {
+    int i = 0;
+    if (c >= 0xa1 && c <= 0xdf) {
+        i = c - 66;
+    } else if (c >= 0x20 && c <= 0x7e) { // 20 - 7e
+        i = c - 32;
     }
+    memcpy(buf, misaki_4x8_jisx0201[i], 4);
 }
+
diff -r 337a2655f815 -r a6650dd2dbc8 misaki_8x8.cpp
--- a/misaki_8x8.cpp	Mon Aug 04 06:17:36 2014 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,2292 +0,0 @@
-#include "mbed.h"
-
-const uint8_t misaki_gothic[] = { // misaki_bdf_b11a.tar.gz misaki_gothic.bdf
-0,0,0,0,0,0,0,32,64,0,0,0,0,0,32,80,32,0,0,0,0,80,48,0,0,0,0,0,96,96,0,0,0,0,0,
-0,0,24,24,0,0,0,0,0,54,54,0,0,0,0,0,86,54,0,0,0,0,2,1,81,9,9,6,0,0,0,95,0,0,0,
-1,2,1,2,0,0,0,0,2,5,2,0,0,0,0,0,0,2,1,0,0,0,0,1,2,0,0,0,0,0,1,0,1,0,0,
-0,0,2,1,2,0,0,1,1,1,1,1,1,1,64,64,64,64,64,64,64,0,0,4,8,48,0,0,0,0,4,8,49,0,1,
-0,0,2,36,24,16,0,0,0,2,36,25,16,1,0,32,28,0,32,28,0,68,76,74,121,74,76,68,
-0,16,8,22,36,84,12,112,40,20,8,20,2,1,24,36,66,66,66,36,24,4,8,8,8,8,8,8,
-8,8,8,8,8,8,8,0,0,8,8,8,0,0,64,32,16,8,4,2,1,1,2,4,8,16,32,64,8,4,4,8,16,16,8,
-0,0,127,0,127,0,0,0,0,0,127,0,0,0,8,0,0,8,0,0,8,0,8,0,0,0,8,0,0,0,0,0,0,6,5,
-5,3,0,0,0,0,0,0,0,6,5,0,6,5,5,3,0,5,3,0,0,0,0,0,0,28,34,65,65,34,28,0,0,0,0,
-0,0,0,62,34,65,65,65,65,34,62,0,0,0,0,0,0,0,127,65,65,65,65,127,0,0,0,0,
-0,0,0,8,54,65,65,65,65,54,8,0,0,0,0,0,0,8,20,34,65,65,34,20,8,0,0,0,
-0,8,20,42,85,34,65,65,34,85,42,20,8,0,0,0,0,63,1,1,1,64,64,64,126,0,0,0,
-0,0,127,65,125,5,7,112,80,95,65,127,0,0,0,0,0,0,127,99,65,65,99,127,0,0,0,0,
-8,8,8,127,8,8,8,8,8,8,8,8,8,8,68,68,68,95,68,68,68,65,34,20,8,20,34,65,
-8,8,8,42,8,8,8,20,20,20,20,20,20,20,20,52,20,28,20,22,20,8,8,20,20,20,34,34,
-34,34,20,20,20,8,8,68,68,74,74,74,81,81,81,81,74,74,74,68,68,
-28,34,34,28,34,34,28,0,32,0,2,0,32,0,48,72,72,57,5,3,15,0,38,41,121,41,38,0,
-2,5,2,0,0,0,0,6,3,1,0,0,0,0,6,3,1,6,3,1,0,2,5,2,60,66,66,36,0,43,44,120,44,43,0,
-0,36,42,122,47,42,18,0,28,98,50,46,35,20,32,84,94,37,65,66,32,
-66,37,18,8,36,82,33,32,98,62,99,62,35,2,32,86,73,85,34,88,64,
-0,34,20,127,20,34,0,28,34,89,85,77,18,12,0,0,74,85,85,41,0,4,100,60,23,60,100,4,
-4,100,60,31,60,100,4,28,34,65,65,65,34,28,28,62,127,127,127,62,28,
-28,34,93,85,93,34,28,8,20,34,65,34,20,8,8,28,62,127,62,28,8,
-127,65,65,65,65,65,127,127,127,127,127,127,127,127,64,112,76,67,76,112,64,
-64,112,124,127,124,112,64,1,7,25,97,25,7,1,1,7,31,127,31,7,1,
-73,34,20,73,20,34,73,5,5,5,125,5,5,5,8,8,8,8,42,28,8,8,28,42,8,8,8,8,
-0,4,2,127,2,4,0,0,16,32,127,32,16,0,54,54,54,54,54,54,54,0,28,42,42,42,42,42,
-0,42,42,42,42,42,28,0,78,81,81,81,81,81,0,81,81,81,81,81,78,0,28,34,34,34,34,34,
-0,34,34,34,34,34,28,0,31,32,32,32,32,31,0,124,2,2,2,2,124,64,48,12,3,12,48,64,
-1,6,24,96,24,6,1,8,8,8,8,8,8,56,20,20,20,20,54,20,8,8,20,54,20,54,20,8,
-3,12,52,68,52,12,3,0,73,73,73,73,73,127,0,64,96,80,72,68,66,
-64,64,64,126,64,64,64,0,2,1,1,1,1,2,0,48,74,73,49,14,0,3,13,49,65,49,13,3,
-0,42,42,42,42,42,42,20,21,20,20,20,84,20,8,20,34,73,20,34,65,
-65,34,20,73,34,20,8,16,112,28,3,1,1,1,28,34,32,28,2,34,28,28,34,34,28,34,34,20,
-0,2,0,32,0,2,0,0,0,70,73,49,0,0,0,70,73,49,70,73,49,64,48,42,37,42,48,64,
-34,21,42,84,34,81,32,0,40,126,20,20,63,10,0,0,127,72,36,24,0,0,96,112,63,2,12,0,
-0,0,2,127,2,0,0,0,0,34,127,34,0,0,0,6,15,127,1,127,0,62,65,65,65,65,65,62,
-0,62,65,65,65,65,62,0,0,66,127,64,0,0,0,98,81,81,73,73,70,0,34,65,73,73,73,54,
-0,48,40,36,34,127,32,0,47,69,69,69,69,57,0,62,73,73,73,73,50,0,1,1,97,25,5,3,
-0,54,73,73,73,73,54,0,38,73,73,73,73,62,96,24,22,17,22,24,96,
-0,127,73,73,73,73,54,0,28,34,65,65,65,34,0,127,65,65,65,34,28,
-0,127,73,73,73,73,65,0,127,9,9,9,9,1,0,28,34,65,73,73,58,0,127,8,8,8,8,127,
-0,0,65,127,65,0,0,0,32,64,64,64,64,63,0,127,16,8,20,34,65,0,127,64,64,64,64,64,
-127,2,12,48,12,2,127,0,127,2,4,8,16,127,0,28,34,65,65,34,28,0,127,9,9,9,9,6,
-0,28,34,65,81,34,92,0,127,9,9,25,41,70,0,38,73,73,73,73,50,1,1,1,127,1,1,1,
-0,63,64,64,64,64,63,3,12,48,64,48,12,3,31,96,24,6,24,96,31,65,34,20,8,20,34,65,
-1,2,4,120,4,2,1,0,65,97,81,73,69,67,0,32,84,84,84,120,0,0,127,72,68,68,56,0,
-0,56,68,68,68,40,0,0,56,68,68,72,127,0,0,56,84,84,84,24,0,0,0,4,126,5,1,0,
-0,8,84,84,84,60,0,0,127,8,4,4,120,0,0,0,0,125,0,0,0,0,32,64,64,61,0,0,
-0,0,127,16,40,68,0,0,0,1,127,0,0,0,0,124,4,120,4,120,0,0,124,8,4,4,120,0,
-0,56,68,68,68,56,0,0,124,20,20,20,8,0,0,8,20,20,20,124,0,0,124,8,4,4,8,0,
-0,72,84,84,84,36,0,0,4,62,68,68,32,0,0,60,64,64,32,124,0,0,12,48,64,48,12,0,
-0,28,96,24,96,28,0,0,68,40,16,40,68,0,0,68,88,32,24,4,0,0,68,100,84,76,68,0,
-0,32,84,126,52,20,96,32,82,127,42,26,74,48,0,60,64,32,4,24,0,30,32,64,32,2,4,24,
-0,16,74,74,42,16,0,0,8,69,69,69,37,24,0,72,42,58,74,64,0,0,68,37,21,61,69,64,
-0,36,126,20,80,36,0,34,82,127,10,72,74,52,68,52,79,68,56,4,24,
-68,52,79,68,57,4,25,0,42,90,75,78,90,8,0,42,90,75,78,91,8,0,8,20,20,34,65,0,
-0,8,20,20,34,69,4,63,0,4,68,63,4,4,63,0,4,68,63,4,5,0,32,82,66,66,66,64,
-0,32,82,66,67,66,65,0,36,84,68,71,92,4,0,36,84,68,71,92,5,0,0,63,64,64,64,32,
-0,0,63,64,65,64,33,2,2,10,86,63,2,2,2,2,10,86,63,2,3,4,4,63,68,84,95,68,
-4,4,63,68,84,95,69,0,8,9,61,75,73,8,0,8,9,61,75,73,10,66,58,7,34,84,68,68,
-66,58,7,34,85,68,69,0,2,18,78,75,74,50,0,2,18,78,75,74,51,0,16,16,72,72,48,0,
-4,4,2,34,34,34,28,4,4,2,34,35,34,29,0,2,2,26,37,67,65,0,2,2,26,37,67,69,
-0,32,87,72,72,68,68,0,32,87,72,73,68,69,18,10,39,82,80,58,36,
-127,0,32,82,66,66,64,48,78,56,84,15,100,120,36,20,127,4,34,82,60,
-24,36,18,78,66,36,24,127,0,36,84,84,63,68,127,0,36,84,84,63,69,
-127,0,36,84,86,61,70,2,58,71,64,65,62,4,2,58,71,64,65,62,5,2,58,71,64,67,61,6,
-64,48,64,77,50,16,96,64,48,64,77,50,17,97,64,48,64,77,50,21,98,8,4,2,4,8,16,16,
-8,4,2,4,9,16,17,8,4,2,4,10,21,18,127,0,106,106,126,42,74,
-127,0,106,106,127,42,75,127,0,106,106,126,45,74,0,106,106,106,127,42,74,
-48,41,29,75,72,60,16,18,42,127,66,64,66,36,48,78,56,84,15,68,56,
-0,10,62,75,74,74,48,0,8,12,56,70,20,8,4,7,28,98,3,10,4,0,28,72,62,36,24,0,
-30,4,82,63,18,18,12,0,32,80,80,62,72,0,0,32,80,80,63,36,68,0,28,81,73,74,72,48,
-0,15,66,65,33,30,0,0,16,105,109,75,73,48,36,20,127,4,2,62,64,
-0,16,73,77,75,73,48,0,40,24,126,8,68,56,36,20,127,4,66,66,60,
-48,73,37,31,36,84,56,64,40,37,87,53,40,64,16,10,46,91,114,74,72,
-64,48,12,51,64,64,32,0,4,68,60,20,12,0,0,1,65,61,9,5,3,0,32,32,16,120,4,0,
-0,16,16,8,124,2,1,0,24,72,76,40,24,0,0,6,66,67,34,18,14,0,64,72,120,72,64,0,
-32,34,34,62,34,34,32,0,40,40,88,124,8,0,34,34,18,74,127,2,2,0,66,34,31,2,66,126,
-0,66,34,31,2,66,127,0,18,18,31,114,18,16,0,18,18,31,114,19,16,
-0,8,68,67,34,18,14,0,8,68,67,34,18,15,8,7,66,34,30,2,2,8,7,66,34,31,2,3,
-0,66,66,66,66,66,126,0,66,66,66,67,66,127,2,2,79,66,34,31,2,2,2,79,66,35,30,3,
-0,69,74,64,32,16,12,0,69,74,64,33,16,13,64,66,34,34,26,38,64,
-64,66,34,34,27,38,65,4,4,63,68,68,84,76,4,4,63,68,69,84,77,0,1,70,64,32,16,15,
-0,1,70,64,32,17,15,0,8,68,75,42,18,14,0,8,68,75,42,18,15,8,10,74,62,9,9,8,
-8,10,74,62,9,8,9,0,24,64,88,32,24,0,2,12,66,76,32,16,14,2,12,66,76,33,16,13,
-4,5,69,61,5,5,4,4,5,69,61,5,4,5,0,0,127,8,8,16,0,0,0,127,8,9,16,1,
-4,68,36,31,4,4,4,32,34,34,34,34,34,32,64,65,37,21,25,39,0,32,34,18,123,6,18,32,
-64,64,32,16,8,7,0,64,48,14,0,2,12,112,64,48,14,0,2,13,113,64,48,14,0,2,13,114,
-0,63,72,72,72,68,68,0,63,72,72,73,68,69,0,63,72,72,74,69,70,0,2,66,66,34,18,14,
-0,2,66,66,35,18,15,0,2,66,66,34,21,14,8,4,2,4,8,16,32,8,4,2,4,9,16,33,
-8,4,2,4,10,21,34,36,20,68,127,4,20,36,36,20,68,127,5,20,37,36,20,68,127,6,21,34,
-2,2,18,34,82,10,6,0,33,37,41,74,66,0,64,112,76,67,80,32,64,64,68,36,20,8,55,0,
-0,8,9,63,73,73,72,0,16,28,104,8,24,0,4,4,15,116,2,10,6,0,64,72,72,120,64,0,
-32,34,34,34,62,32,32,0,0,68,84,84,124,0,0,66,74,74,74,74,126,0,4,69,69,37,21,12,
-0,15,64,64,32,31,0,64,32,30,0,127,32,16,0,0,127,64,32,16,8,
-0,126,66,66,66,66,126,0,12,68,68,36,28,0,0,6,66,66,34,18,14,
-16,18,30,18,18,127,18,32,34,34,58,38,34,32,0,1,69,69,37,21,15,
-0,65,66,64,32,16,12,0,6,66,67,34,18,15,0,72,40,28,72,120,0,0,16,12,72,56,8,0,
-96,24,22,17,22,24,96,0,127,73,73,73,73,54,0,127,1,1,1,1,1,96,88,70,65,70,88,96,
-0,127,73,73,73,73,65,0,65,97,81,73,69,67,0,127,8,8,8,8,127,28,34,73,73,73,34,28,
-0,0,65,127,65,0,0,0,127,16,8,20,34,65,96,24,6,1,6,24,96,127,2,12,48,12,2,127,
-0,127,2,4,8,16,127,0,65,73,73,73,73,65,0,28,34,65,65,34,28,0,127,1,1,1,1,127,
-0,127,9,9,9,9,6,0,65,99,85,73,65,65,1,1,1,127,1,1,1,1,2,4,120,4,2,1,
-28,34,34,127,34,34,28,65,34,20,8,20,34,65,1,6,8,127,8,6,1,76,82,97,1,97,82,76,
-0,48,72,68,52,72,4,0,96,28,18,37,37,26,0,4,100,56,8,4,0,0,48,74,69,57,2,0,
-0,32,88,84,68,40,0,0,0,77,82,33,1,0,0,8,36,24,4,100,24,0,56,78,73,57,14,0,
-0,0,48,76,32,0,0,0,96,28,48,72,68,0,0,64,48,9,62,64,0,0,64,48,44,32,16,44,
-0,4,120,32,16,12,0,0,8,86,85,37,5,0,0,48,72,68,36,24,0,0,72,36,28,4,124,68,
-0,96,24,36,36,36,24,0,48,72,68,36,28,4,0,8,4,52,76,36,4,0,8,52,76,64,32,28,
-0,24,36,100,60,39,24,0,64,36,52,72,68,0,0,20,44,96,60,35,24,0,56,68,32,56,64,60,
-96,24,22,17,22,24,96,0,127,73,73,73,73,49,0,127,73,73,73,73,54,0,127,1,1,1,1,1,
-96,48,47,33,33,63,96,0,127,73,73,73,73,65,0,126,75,74,74,75,66,
-65,54,8,127,8,54,65,0,34,65,73,73,73,54,0,127,32,16,8,4,127,
-0,126,33,18,10,5,126,0,127,8,8,22,33,65,64,64,63,1,1,1,127,120,7,24,96,24,7,120,
-0,127,8,8,8,8,127,0,28,34,65,65,34,28,0,127,1,1,1,1,127,0,127,9,9,9,9,6,
-0,28,34,65,65,65,34,1,1,1,127,1,1,1,0,65,70,40,24,6,1,28,34,34,127,34,34,28,
-65,34,20,8,20,34,65,0,63,32,32,32,63,96,0,15,16,16,16,16,127,
-127,64,64,127,64,64,127,63,32,32,63,32,32,127,0,1,127,72,72,72,48,
-0,127,72,72,48,0,127,0,0,127,72,72,72,48,0,34,73,73,73,42,28,
-127,8,62,65,65,65,62,0,70,57,9,9,9,127,0,32,84,84,84,120,0,0,60,70,69,69,57,0,
-0,124,84,84,84,40,0,0,124,4,4,4,4,0,0,96,60,36,60,96,0,0,56,84,84,84,24,0,
-0,56,85,84,85,24,0,68,40,16,124,16,40,68,0,40,68,84,84,40,0,0,124,32,16,8,124,0,
-0,124,33,18,9,124,0,0,124,16,24,36,68,0,64,64,60,4,4,124,0,0,124,8,48,8,124,0,
-0,124,16,16,16,124,0,0,56,68,68,68,56,0,0,124,4,4,4,124,0,0,124,20,20,20,8,0,
-0,56,68,68,68,40,0,0,4,4,124,4,4,0,0,68,88,32,24,4,0,0,24,36,127,36,24,0,
-0,68,40,16,40,68,0,0,60,32,32,60,96,0,0,28,32,32,32,124,0,0,124,64,124,64,124,0,
-0,60,32,60,32,60,96,0,4,124,80,80,80,32,0,124,80,80,32,124,0,
-0,124,80,80,80,32,0,0,40,68,84,84,56,0,0,124,16,56,68,68,56,0,72,52,20,20,124,0,
-8,8,8,8,8,8,8,0,0,0,255,0,0,0,0,0,0,248,8,8,8,8,8,8,248,0,0,0,8,8,8,15,0,0,0,
-0,0,0,15,8,8,8,0,0,0,255,8,8,8,8,8,8,248,8,8,8,8,8,8,255,0,0,0,8,8,8,15,8,8,8,
-8,8,8,255,8,8,8,24,24,24,24,24,24,24,0,0,0,255,255,0,0,0,0,0,248,248,24,24,
-24,24,24,248,248,0,0,24,24,24,31,31,0,0,0,0,0,31,31,24,24,0,0,0,255,255,24,24,
-24,24,24,248,248,24,24,24,24,24,255,255,0,0,24,24,24,31,31,24,24,
-24,24,24,255,255,24,24,0,0,0,255,255,8,8,24,24,24,248,24,24,24,
-8,8,8,255,255,0,0,24,24,24,31,24,24,24,24,24,24,255,24,24,24,0,0,0,255,24,24,24,
-8,8,8,248,248,8,8,24,24,24,255,0,0,0,8,8,8,15,15,8,8,8,8,8,255,255,8,8,
-62,65,69,127,65,65,62,62,65,115,107,101,65,62,62,65,99,107,85,65,62,
-62,65,89,85,127,65,62,62,65,111,107,83,65,62,62,65,93,107,83,65,62,
-62,65,67,123,71,65,62,62,65,85,107,85,65,62,62,65,101,107,93,65,62,
-62,69,127,65,93,85,62,62,69,127,65,69,127,62,62,69,127,65,123,109,62,
-62,69,127,65,107,85,62,62,69,127,65,95,121,62,62,69,127,65,111,91,62,
-62,69,127,65,125,123,62,62,69,127,65,123,71,62,62,69,127,65,119,119,62,
-62,69,127,65,111,95,62,62,123,111,65,93,85,62,0,0,65,127,65,0,0,
-0,65,127,65,127,65,0,65,127,65,127,65,127,65,65,127,65,15,113,15,1,
-1,7,25,96,25,7,1,1,15,113,15,65,127,65,15,113,15,127,65,127,65,
-15,113,15,127,127,127,65,65,127,65,119,73,119,65,65,99,85,8,85,99,65,
-17,21,21,0,24,64,56,10,31,10,0,120,72,120,47,122,38,0,9,9,4,
-117,34,5,64,50,114,66,74,105,87,97,10,11,7,15,4,4,0,72,72,32,73,55,117,67,0,2,2,
-82,41,26,80,58,121,71,115,32,7,64,50,114,70,3,121,39,0,2,2,6,
-53,3,119,0,39,37,39,15,4,69,48,1,112,64,15,122,38,0,9,9,4,118,97,7,83,64,114,34,
-97,23,119,100,51,112,71,90,89,34,21,0,2,2,124,60,120,0,124,60,120,
-56,68,68,0,124,60,120,127,16,108,0,124,60,120,124,60,120,0,72,84,60,
-127,16,108,0,72,84,60,56,68,68,0,56,68,68,124,4,120,4,120,13,11,
-21,127,21,64,62,63,82,0,0,0,3,4,3,4,16,96,16,96,0,0,0,127,4,8,127,56,68,56,
-127,8,119,0,127,8,119,1,127,1,56,84,8,127,62,65,97,127,101,65,62,
-62,93,85,127,85,93,62,62,65,67,127,75,65,62,62,83,111,123,107,65,62,
-62,85,79,117,117,65,62,62,91,126,22,124,85,62,62,81,10,127,42,121,62,
-62,73,62,4,30,101,62,78,63,127,0,117,110,105,100,31,100,121,65,127,73,
-30,103,111,0,53,127,30,20,21,20,20,20,84,20,0,42,42,42,42,42,42,
-0,0,70,73,49,0,0,0,8,86,93,53,8,0,0,65,99,85,73,65,65,16,112,28,3,1,1,1,
-64,64,64,126,64,64,64,0,64,96,80,72,68,66,0,126,64,64,64,64,64,
-0,64,96,80,72,68,126,0,2,0,32,0,2,0,0,124,2,2,2,2,124,0,31,32,32,32,32,31,
-93,85,127,85,127,85,93,30,18,93,127,85,127,93,68,92,55,44,90,127,90,
-127,37,27,29,21,93,127,34,46,122,75,26,46,82,77,87,45,87,61,87,77,
-82,127,10,86,93,52,86,68,92,55,44,118,85,118,73,56,82,86,125,83,84,
-86,78,87,50,87,74,86,10,122,95,74,95,122,10,53,127,21,58,45,127,88,
-105,63,79,95,111,31,105,82,127,74,63,91,119,83,117,64,63,83,91,119,91,
-66,63,2,126,95,85,95,42,58,47,42,123,46,42,74,58,47,42,47,58,10,
-66,29,95,78,85,42,20,26,127,42,46,123,46,42,64,63,65,73,127,73,65,
-45,119,45,42,33,126,36,82,127,33,95,81,39,92,86,90,42,27,122,74,94,
-92,55,76,127,85,127,64,78,123,46,62,66,67,66,122,93,10,108,107,100,8,
-42,117,44,127,86,126,126,42,117,40,90,47,90,72,66,29,95,112,95,84,116,
-66,90,26,66,95,34,83,81,91,51,127,51,91,81,18,123,54,0,118,85,118,
-70,74,90,47,58,74,70,64,62,10,54,59,118,74,82,127,78,90,47,58,78,
-62,42,62,14,107,110,10,86,82,62,123,54,90,86,127,43,123,108,123,43,127,
-55,126,79,90,47,58,78,10,122,86,95,86,122,10,32,31,80,66,36,63,64,
-4,126,5,85,63,21,31,4,126,67,126,99,94,66,4,126,19,122,79,50,74,
-4,126,41,58,47,122,46,127,85,127,85,127,85,127,66,94,86,63,86,118,66,
-74,90,119,95,55,90,74,64,62,86,46,86,63,82,64,63,107,43,2,90,127,
-6,127,4,127,74,127,74,104,42,94,91,126,10,104,80,47,91,75,102,18,95,
-32,87,61,85,53,87,112,26,127,18,90,23,122,18,32,82,27,86,23,92,112,
-80,127,85,31,53,95,80,80,87,29,23,29,87,80,53,127,21,74,85,43,24,
-42,117,40,127,74,127,74,42,117,40,58,47,122,46,0,15,125,47,45,125,15,
-82,90,119,94,55,90,82,18,82,122,71,26,50,74,107,98,15,125,47,125,15,
-73,56,84,93,87,125,87,73,56,110,90,95,90,110,127,65,105,111,93,109,105,
-18,82,63,18,18,127,18,66,74,86,43,18,42,66,36,63,90,90,34,63,82,
-10,122,46,43,42,118,10,18,127,42,122,127,37,27,9,55,114,61,72,58,85,
-8,8,8,8,8,12,8,26,10,122,95,90,74,26,117,0,74,119,114,119,74,
-73,56,66,110,93,127,108,53,127,21,114,6,113,117,74,2,83,78,59,74,90,
-34,42,111,122,47,42,34,93,31,93,119,32,93,119,68,36,30,5,124,66,100,
-62,42,41,0,127,1,31,30,18,127,85,79,85,127,64,124,47,45,47,124,64,
-127,101,85,79,85,101,127,95,60,127,85,79,85,127,29,21,85,119,0,0,127,
-122,93,90,4,67,62,70,117,0,86,82,118,81,85,64,63,122,45,120,127,64,
-126,54,83,122,87,58,82,127,27,86,58,27,122,86,127,27,84,118,93,50,84,
-127,27,102,58,94,89,101,10,110,107,94,23,23,92,30,18,30,10,82,127,2,
-18,10,127,74,74,122,2,22,18,86,127,22,18,22,64,30,90,27,90,30,112,
-33,37,81,127,37,81,127,73,56,68,101,127,69,68,125,5,85,127,5,85,125,
-30,82,61,0,127,1,31,90,43,126,107,94,23,118,86,58,86,67,62,122,94,
-72,73,121,79,73,127,72,9,55,49,127,74,127,74,126,74,73,64,74,74,126,
-117,0,120,15,105,111,120,30,82,62,100,79,106,74,30,18,30,95,21,21,95,
-10,127,122,93,26,127,10,66,62,111,46,27,74,126,93,31,76,95,45,95,76,
-92,55,44,26,111,74,73,64,63,45,83,63,115,95,117,0,122,42,127,42,123,
-64,62,66,126,65,61,64,127,5,87,124,87,5,127,30,18,30,55,82,119,30,
-68,69,101,93,69,37,68,73,56,83,93,127,93,83,86,82,119,87,83,54,86,
-18,122,23,86,127,86,18,122,93,90,33,63,45,127,44,20,111,118,77,49,79,
-6,99,110,123,110,99,6,84,83,123,84,51,83,84,68,31,117,31,68,74,37,
-62,42,126,78,59,78,72,78,74,79,90,46,80,64,70,75,42,127,42,75,70,
-40,24,69,125,16,40,68,117,40,24,69,125,16,40,117,0,78,74,95,46,80,
-42,62,90,87,58,87,90,73,117,91,117,91,114,78,87,58,122,49,93,23,93,
-87,26,122,17,93,23,93,82,90,87,58,87,90,82,10,125,42,119,46,69,125,
-106,99,40,93,125,16,40,86,125,78,59,10,123,78,117,0,18,126,83,42,90,
-84,62,82,78,55,126,82,74,122,87,114,86,123,74,95,31,117,64,63,25,103,
-6,127,78,59,10,123,78,106,107,16,63,45,79,120,106,63,74,126,98,95,106,
-127,67,63,104,95,67,127,26,127,81,95,47,95,65,64,63,123,123,69,63,69,
-127,9,9,15,9,73,127,127,101,95,119,95,101,127,36,63,127,73,111,87,105,
-10,58,54,59,118,122,74,86,82,126,91,62,82,86,85,59,64,90,82,94,85,
-106,43,69,83,111,25,107,82,127,10,54,59,118,74,82,127,70,42,94,41,93,
-117,0,8,119,80,119,8,117,0,54,106,59,106,54,72,90,36,19,36,90,72,
-76,63,36,122,1,125,123,76,63,36,93,95,127,93,86,30,67,30,87,30,86,
-85,74,61,126,87,54,92,42,117,36,93,117,39,84,94,119,118,47,122,93,91,
-82,90,47,26,127,74,90,126,102,95,118,95,102,126,73,56,100,94,119,94,100,
-86,125,10,119,80,119,8,74,11,93,27,95,25,123,36,63,68,111,106,110,66,
-98,31,122,2,41,82,4,101,16,5,31,21,85,117,43,63,42,95,53,95,127,
-127,65,79,72,79,65,127,72,78,42,31,42,78,72,80,94,90,63,86,94,80,
-10,125,68,85,126,84,68,64,62,34,118,75,98,34,82,127,31,21,127,21,31,
-62,42,62,65,73,127,73,26,127,74,63,58,63,74,127,85,73,20,67,62,70,
-127,85,73,20,91,41,91,65,73,73,127,73,73,65,74,90,45,120,89,42,122,
-18,123,54,94,59,86,94,70,3,90,31,90,19,118,127,85,73,20,94,23,118,
-74,122,47,58,47,122,74,127,53,39,61,39,53,127,117,0,30,18,127,18,30,
-86,74,55,90,67,62,74,4,126,107,62,91,94,106,64,63,85,93,117,77,87,
-6,127,106,62,91,94,106,127,21,127,110,59,94,106,26,127,124,21,125,23,125,
-23,127,74,68,127,68,64,32,81,73,69,67,64,96,4,126,11,54,59,118,74,
-108,75,62,42,127,1,31,96,63,77,91,109,31,96,117,64,119,85,117,119,64,
-53,127,102,58,94,89,101,8,122,94,91,94,122,8,1,1,1,127,5,9,1,
-4,126,1,127,72,72,100,4,126,65,63,93,37,93,4,126,1,29,21,93,127,
-12,127,98,31,126,66,126,4,126,1,125,127,69,125,4,126,73,90,127,90,72,
-66,63,66,126,126,66,126,1,29,21,29,65,127,1,82,54,94,119,126,86,114,
-65,81,95,47,95,65,65,95,60,38,90,123,42,86,86,82,46,95,118,34,86,
-86,50,94,59,126,50,86,53,127,37,42,32,127,16,62,42,127,43,88,45,95,
-80,95,53,127,53,95,80,90,87,58,126,62,90,94,45,73,127,68,67,62,70,
-117,0,29,21,29,65,127,64,76,32,31,40,68,64,42,62,42,29,21,93,127,
-18,123,22,120,15,105,127,36,38,22,126,21,37,36,53,127,38,90,123,42,86,
-124,75,110,92,107,78,122,18,122,7,2,127,82,106,10,122,95,122,15,122,10,
-82,58,87,114,119,82,114,18,122,7,106,111,10,122,42,62,43,126,43,62,42,
-82,94,55,126,55,94,82,78,123,127,43,88,45,95,107,106,87,53,127,53,87,
-30,30,42,63,126,63,42,68,78,49,48,63,122,74,73,56,82,79,94,82,94,
-73,58,64,120,79,105,127,126,42,47,7,91,46,94,78,123,78,46,19,46,66,
-12,127,38,126,37,63,85,56,63,38,126,37,63,85,20,86,126,21,95,36,85,
-40,47,25,73,127,9,8,125,65,93,95,93,65,125,127,85,119,93,64,63,64,
-82,94,55,86,127,22,18,78,123,38,126,37,63,85,74,71,58,46,46,122,78,
-47,89,127,4,127,126,75,122,89,38,126,37,63,85,74,7,90,22,94,26,126,
-4,68,58,1,122,4,4,84,84,114,85,86,52,84,66,61,95,124,45,123,47,
-127,65,93,85,93,65,127,36,63,94,42,127,106,94,36,63,50,126,95,58,94,
-85,59,64,127,93,85,127,6,127,72,74,63,78,72,6,127,73,91,117,91,72,
-6,127,20,51,46,126,18,6,127,66,63,77,63,69,6,127,50,126,95,58,94,
-82,58,18,122,82,63,82,82,127,10,87,53,85,119,61,37,55,68,95,34,94,
-78,63,126,85,80,127,72,62,42,62,51,46,126,18,26,127,10,62,74,63,82,
-117,0,20,51,46,126,18,64,63,77,33,31,41,69,32,95,53,31,117,31,32,
-8,111,106,112,111,106,10,42,117,84,114,85,54,84,18,82,59,6,123,18,18,
-82,77,95,120,93,59,79,127,43,123,40,123,43,127,127,37,31,106,112,111,10,
-64,95,21,21,21,95,64,75,90,107,90,63,1,127,74,86,43,82,63,66,126,
-72,71,42,30,127,8,16,30,18,30,74,86,43,82,38,42,106,127,106,42,38,
-67,62,66,87,126,86,67,6,127,62,46,73,63,79,26,127,62,46,73,63,79,
-117,64,63,65,85,127,85,9,55,49,52,87,127,20,74,122,95,126,91,118,74,
-10,125,42,63,42,69,125,106,107,0,74,86,43,82,86,125,75,90,107,90,75,
-12,119,53,127,86,43,82,117,0,95,85,127,85,95,42,38,119,90,123,37,43,
-78,123,78,90,127,90,72,36,63,65,127,107,127,65,26,127,58,10,127,10,58,
-78,123,78,63,101,29,117,86,125,54,52,43,34,126,74,122,127,62,36,64,127,
-30,94,58,127,74,63,122,16,114,90,85,91,112,16,64,62,58,110,59,126,54,
-82,127,64,62,98,91,98,82,127,69,58,59,122,69,26,127,16,106,101,107,16,
-26,127,74,86,43,50,74,90,47,106,88,91,41,91,85,62,66,95,46,95,74,
-9,55,49,22,122,127,86,53,127,66,95,46,95,74,70,67,62,43,126,67,102,
-66,62,21,29,23,84,124,88,58,127,74,58,127,42,45,127,74,86,35,86,74,
-34,46,123,30,127,37,27,127,35,107,84,111,35,127,127,37,27,121,47,111,121,
-34,58,47,122,47,58,34,22,19,86,119,30,19,22,16,126,86,118,93,117,16,
-85,82,54,125,54,82,85,38,106,87,110,93,23,93,11,63,108,11,93,23,93,
-82,127,42,63,42,127,8,68,83,118,92,115,86,66,26,127,71,87,123,85,75,
-26,127,2,73,127,127,73,26,127,74,63,43,127,87,93,31,53,127,76,63,68,
-117,32,86,29,84,23,112,38,106,127,106,46,64,127,30,30,16,63,45,79,120,
-6,127,4,114,85,118,4,82,127,4,118,94,117,4,101,16,4,118,94,117,4,
-117,0,16,63,45,79,120,117,0,12,119,53,119,12,34,30,123,90,27,94,114,
-18,123,54,63,45,79,120,45,127,38,106,127,106,38,64,127,85,85,85,127,64,
-93,31,71,87,123,85,75,30,18,30,4,127,4,4,26,127,18,123,2,127,82,
-26,127,42,63,126,63,42,55,126,55,4,115,86,94,26,127,76,43,127,42,72,
-94,81,62,21,126,81,95,6,58,54,59,126,122,70,86,2,123,42,127,42,122,
-74,106,85,124,85,106,74,86,125,74,43,126,63,90,30,18,126,111,84,111,122,
-15,63,79,30,87,22,112,26,127,10,125,87,85,125,82,86,55,86,127,22,50,
-90,74,127,122,127,74,90,93,119,42,127,42,93,119,64,36,24,39,14,64,127,
-66,42,19,46,27,66,126,65,65,127,85,5,125,65,45,119,45,35,86,78,98,
-4,126,65,55,117,5,119,83,53,117,81,105,125,75,38,26,62,59,94,26,38,
-8,9,127,9,14,64,127,114,95,114,95,98,31,126,20,123,126,74,98,31,126,
-20,13,118,87,94,77,20,30,30,82,93,61,95,80,36,63,114,95,114,95,82,
-82,58,94,59,86,58,82,86,82,54,23,118,82,86,6,2,126,87,94,114,6,
-70,74,62,59,126,74,102,8,9,9,127,9,9,8,45,119,45,0,42,121,42,
-96,56,94,95,126,24,96,104,38,78,78,98,7,106,6,127,66,63,61,63,66,
-6,127,110,46,66,71,106,82,127,82,93,61,95,80,36,61,39,125,92,35,94,
-26,127,2,127,74,127,2,26,127,65,127,107,127,65,26,127,6,122,91,90,118,
-42,111,42,68,67,62,70,20,123,126,74,68,59,70,117,0,8,9,127,9,8,
-117,18,94,91,62,91,94,117,0,127,3,56,59,127,117,0,20,123,78,122,74,
-42,62,71,61,111,61,71,2,2,127,74,74,127,2,79,127,89,116,83,122,74,
-40,26,126,94,93,125,8,36,43,46,124,43,46,34,28,11,126,124,107,110,26,
-124,27,126,100,123,30,122,42,117,70,42,94,41,93,12,107,74,126,74,106,8,
-45,119,77,42,121,42,124,127,21,127,8,9,127,9,126,19,126,79,96,107,74,
-86,82,55,22,119,82,86,20,123,126,74,63,117,95,107,106,66,46,127,46,66,
-66,127,45,47,45,127,66,73,56,99,95,119,95,99,86,125,54,79,96,107,74,
-127,5,127,84,127,5,127,127,43,27,124,27,43,127,127,19,87,56,87,19,127,
-127,37,27,122,1,125,123,45,119,45,58,47,122,46,122,93,90,6,122,91,118,
-106,93,106,6,122,91,118,66,42,31,18,126,64,96,4,116,86,85,94,116,4,
-67,62,34,43,122,42,35,67,62,42,127,90,46,91,42,62,68,61,5,125,68,
-84,62,122,94,103,94,122,127,85,127,127,85,53,95,40,27,106,107,106,107,8,
-5,111,117,111,68,61,69,64,63,77,51,61,63,75,64,63,125,11,125,127,85,
-36,29,61,36,93,23,93,122,14,91,46,93,23,93,127,45,127,45,93,23,93,
-68,116,66,125,82,84,68,4,126,75,90,47,90,66,66,62,5,125,79,92,100,
-18,118,94,87,94,118,18,40,107,107,28,107,107,40,40,26,79,106,79,26,40,
-16,114,90,119,26,114,16,95,60,18,126,87,126,18,22,114,90,119,26,114,22,
-56,63,74,90,47,90,66,40,24,109,42,122,45,104,74,61,40,79,90,45,80,
-96,61,85,85,117,23,96,82,127,39,61,127,61,39,26,127,74,63,1,127,64,
-98,31,122,84,31,30,82,127,85,95,73,47,121,79,82,31,26,95,63,85,127,
-26,127,82,31,26,31,82,82,90,62,123,54,90,82,26,127,74,61,72,58,85,
-78,63,12,53,125,55,12,42,94,123,46,91,41,91,68,91,46,94,14,58,66,
-117,4,11,14,14,58,66,106,109,104,15,90,45,80,18,123,22,64,62,10,121,
-42,42,39,111,63,38,42,53,127,72,45,122,45,104,42,117,40,121,73,73,111,
-10,125,42,119,42,63,94,74,63,42,95,53,117,95,106,107,2,121,73,73,111,
-72,126,42,47,42,126,72,74,58,63,74,93,85,87,45,127,66,63,2,126,64,
-74,60,63,39,61,127,39,122,93,90,63,1,127,64,95,31,117,18,90,23,122,
-64,94,58,31,122,110,80,58,46,45,61,111,120,64,12,127,82,27,86,31,112,
-12,127,42,123,46,59,90,68,92,55,76,90,47,90,70,66,126,87,126,66,70,
-124,68,127,42,68,63,85,82,127,74,90,47,90,66,82,127,87,58,90,61,87,
-82,31,26,95,82,59,70,23,127,42,123,46,59,90,87,58,90,101,61,87,77,
-18,123,22,126,74,62,73,42,42,123,46,122,43,90,78,127,42,123,46,59,90,
-107,106,70,122,91,122,70,107,98,42,123,46,59,90,82,127,4,87,58,86,126,
-18,94,43,122,43,90,122,55,126,55,87,58,86,126,2,106,106,111,106,106,2,
-30,30,4,35,86,78,98,30,30,74,95,58,87,79,26,127,2,106,111,106,2,
-26,127,122,55,95,51,118,107,106,2,106,111,106,2,9,55,49,112,95,84,116,
-26,127,20,19,126,18,16,42,106,55,111,55,106,42,72,106,95,42,127,1,31,
-38,42,106,87,110,34,38,127,21,127,106,95,127,31,64,60,4,116,95,90,90,
-73,56,90,115,94,83,90,64,126,74,74,121,73,64,64,72,71,34,26,38,64,
-4,126,67,62,3,126,64,4,126,35,26,127,26,34,65,49,79,81,39,92,64,
-30,94,33,95,81,39,92,6,98,110,123,110,98,6,16,29,21,21,85,87,112,
-98,54,85,85,119,28,96,42,82,127,42,92,35,94,26,127,10,1,15,73,121,
-34,42,82,127,18,43,66,117,64,33,95,81,39,92,101,16,66,126,99,94,66,
-72,90,41,21,37,91,72,42,62,42,82,127,18,43,86,90,54,19,126,74,102,
-86,90,46,127,2,94,118,68,75,46,92,43,94,66,42,117,40,95,81,39,92,
-42,117,40,62,32,127,16,42,117,4,114,85,118,4,127,0,127,73,73,73,127,
-20,19,18,127,18,18,16,72,74,106,95,74,42,72,64,63,11,107,127,107,11,
-0,127,85,85,85,93,65,82,127,10,127,85,85,93,82,127,76,51,46,66,94,
-42,55,122,123,58,55,42,85,80,63,123,59,95,89,64,60,68,100,79,106,74,
-106,107,20,19,126,18,16,119,125,43,127,85,85,93,86,125,54,63,107,95,107,
-101,16,66,30,93,23,92,74,61,83,126,26,63,71,66,30,85,29,87,28,64,
-2,14,74,107,26,14,2,34,46,42,107,58,46,34,66,46,74,123,10,46,66,
-12,127,82,31,18,31,82,4,126,91,82,63,82,90,12,127,122,23,91,23,122,
-64,95,53,18,117,95,96,74,62,107,94,62,107,94,80,82,31,18,31,82,80,
-127,96,84,72,86,64,127,4,127,36,98,55,98,118,127,65,99,107,127,107,65,
-94,49,126,74,46,127,31,30,30,32,62,32,127,16,122,26,119,91,119,26,122,
-36,63,74,62,59,126,74,56,63,90,82,63,82,90,93,119,68,94,125,92,102,
-93,119,0,73,127,127,73,6,127,72,106,95,42,72,105,47,69,72,103,15,104,
-72,26,111,10,79,26,72,82,127,90,82,63,82,90,40,26,111,58,92,35,94,
-26,127,122,23,91,23,122,117,0,79,57,9,121,79,85,62,65,73,127,73,65,
-85,62,91,82,63,82,90,75,62,122,23,91,23,122,127,21,127,52,43,54,126,
-40,26,110,59,42,126,24,94,85,30,26,30,85,95,122,26,127,86,127,26,122,
-90,53,126,74,46,127,27,86,125,74,62,59,126,74,42,37,127,107,120,47,39,
-42,37,127,59,80,47,39,74,7,94,31,90,21,123,12,127,62,17,126,2,30,
-113,0,87,58,90,61,87,84,86,62,23,126,86,84,62,42,94,62,23,126,84,
-83,90,63,122,63,90,83,64,63,117,85,117,7,124,126,74,127,74,127,74,126,
-26,127,10,89,71,125,89,65,73,73,127,73,105,65,26,127,10,127,53,53,127,
-53,126,9,10,126,9,8,12,127,90,95,122,95,90,90,95,122,95,98,31,126,
-36,63,20,35,42,82,126,62,2,2,127,2,34,62,86,125,54,30,123,30,48,
-64,62,10,10,121,9,8,62,10,121,68,67,62,70,86,125,54,68,67,62,70,
-21,23,45,40,109,23,21,90,54,95,122,22,63,90,114,30,122,85,58,94,114,
-68,59,126,84,59,86,114,87,23,29,112,27,21,91,66,58,31,26,119,22,18,
-126,106,91,126,95,106,126,18,123,54,18,85,54,20,18,123,86,31,120,26,87,
-107,98,90,95,122,95,90,73,58,96,94,74,121,72,84,116,86,125,86,116,84,
-30,18,30,82,85,54,20,86,125,54,127,85,53,95,66,50,15,2,126,64,96,
-4,126,81,31,21,31,80,8,7,58,42,58,66,126,127,65,101,85,73,87,65,
-85,74,61,4,27,90,126,42,62,72,39,18,46,64,68,43,30,42,127,85,93,
-10,106,111,122,111,106,10,80,94,43,126,127,73,85,95,31,117,0,127,73,85,
-95,31,117,126,74,121,72,95,31,117,4,27,90,126,80,95,21,21,21,95,80,
-96,60,87,95,111,28,96,64,60,52,100,63,122,42,30,30,4,122,93,34,84,
-70,74,86,115,94,74,70,4,126,121,75,127,43,120,118,18,94,127,62,82,118,
-73,58,120,107,127,91,120,127,27,120,75,127,43,120,48,54,54,127,54,54,48,
-26,127,123,94,0,123,30,86,125,86,63,30,0,127,64,63,7,123,47,43,127,
-64,63,101,77,125,77,103,82,127,63,101,77,125,111,70,58,126,95,122,94,102,
-10,122,86,95,84,122,8,55,126,55,126,1,127,68,10,125,106,127,110,106,29,
-86,10,86,83,126,90,86,66,31,74,31,64,27,82,127,37,27,119,85,55,87,
-72,90,53,125,53,91,72,81,87,53,127,53,87,81,42,117,92,55,125,55,92,
-84,85,45,117,51,77,84,86,125,54,127,76,63,68,82,31,95,18,90,7,94,
-68,85,53,127,85,95,116,106,58,111,62,111,58,106,106,107,64,63,30,0,127,
-85,63,117,111,43,126,43,39,61,45,127,45,61,39,85,63,117,111,4,127,27,
-72,90,63,42,127,8,16,90,55,122,94,62,90,94,18,123,22,0,127,37,27,
-4,126,81,21,123,17,89,4,126,63,36,93,23,93,73,63,9,127,9,78,127,
-64,79,57,9,121,79,96,9,119,85,87,90,117,11,72,90,90,127,90,90,72,
-42,62,72,90,127,90,72,85,79,85,127,85,70,95,74,95,90,57,87,89,79,
-73,63,9,127,9,74,37,10,125,73,91,117,91,72,98,62,86,95,118,30,98,
-64,62,90,126,43,94,90,106,47,90,88,122,31,106,100,46,78,69,110,11,110,
-82,127,16,63,45,79,120,82,127,84,63,26,63,106,18,47,74,127,92,35,94,
-68,63,85,117,21,63,68,26,127,72,90,127,90,72,117,0,86,90,62,89,85,
-62,62,62,72,90,127,90,53,127,10,118,111,106,11,80,21,21,123,17,9,80,
-42,117,73,91,117,91,72,42,117,40,127,85,78,85,69,23,31,117,27,21,75,
-87,125,87,5,127,21,39,18,82,87,106,87,82,18,86,62,23,126,23,66,122,
-70,91,90,127,90,59,70,106,107,4,4,127,4,4,106,107,0,111,106,106,109,
-42,39,118,127,106,37,43,45,127,73,91,117,91,72,73,91,53,43,93,23,93,
-85,57,85,30,86,23,118,82,90,127,90,95,58,82,73,56,94,81,126,66,94,
-66,29,95,34,78,123,46,124,44,87,122,46,64,127,45,119,45,68,95,36,85,
-37,55,127,117,59,53,43,117,38,95,54,92,35,94,127,37,27,34,76,127,34,
-26,127,10,125,0,69,125,12,127,90,53,123,54,95,72,71,34,30,34,66,70,
-117,0,72,74,63,78,72,117,0,90,31,122,23,95,70,34,26,3,26,34,70,
-42,117,2,106,111,106,2,64,126,67,126,66,126,64,106,99,72,74,63,78,72,
-64,32,31,21,21,85,127,4,126,21,19,127,18,16,4,126,93,86,61,86,92,
-4,126,21,110,87,78,21,4,126,85,59,86,127,86,66,54,127,22,126,47,66,
-20,77,86,55,86,125,20,92,86,61,86,92,14,127,30,30,70,106,107,106,70,
-127,85,79,125,111,85,127,71,87,85,120,91,85,75,95,60,74,43,126,63,90,
-85,59,64,85,127,87,82,102,42,90,95,122,10,102,110,59,75,80,109,27,105,
-20,45,118,119,54,45,20,82,127,21,110,87,78,21,26,127,92,86,61,86,92,
-26,127,10,20,123,126,74,26,46,62,123,58,46,26,68,68,36,31,36,69,68,
-122,58,111,122,68,63,69,9,55,49,73,63,9,127,9,55,49,95,53,117,95,
-42,117,40,120,43,43,120,94,16,31,117,21,31,80,65,63,5,125,45,47,121,
-64,95,53,21,117,95,96,107,98,74,43,126,63,90,71,119,53,48,59,117,75,
-45,127,45,8,9,127,9,73,56,78,122,127,122,110,86,125,54,73,55,74,95,
-127,27,92,86,61,86,92,75,125,61,43,93,23,93,95,31,125,86,61,86,92,
-124,71,122,86,61,86,92,68,37,29,5,125,69,100,64,63,33,77,127,13,33,
-64,63,46,123,82,43,90,68,108,83,104,2,66,62,93,119,74,110,83,42,66,
-117,64,62,106,106,63,82,117,64,63,33,77,127,45,66,74,110,83,74,34,66,
-42,62,42,95,53,117,95,42,117,74,110,83,42,66,126,19,126,74,110,83,106,
-2,98,107,107,107,98,2,107,98,122,14,91,78,42,127,37,27,127,85,53,95,
-18,22,82,126,17,21,17,4,126,127,117,111,117,127,4,116,84,95,84,116,4,
-30,30,22,82,126,17,21,127,65,117,111,117,65,127,68,92,55,44,116,95,116,
-81,125,75,62,66,62,97,57,73,73,73,73,79,96,64,62,42,58,127,58,42,
-93,119,64,62,66,62,97,65,61,21,21,21,29,1,58,47,58,68,95,34,94,
-26,127,4,116,95,116,4,117,58,47,58,127,21,127,85,62,65,62,66,62,97,
-53,126,58,47,122,63,127,18,123,54,10,54,55,106,127,21,127,64,91,41,91,
-58,47,58,64,63,85,127,86,110,67,62,71,62,102,64,60,68,36,15,106,74,
-107,98,10,54,59,54,106,119,125,87,10,54,55,106,86,125,6,116,95,116,4,
-65,63,37,125,85,127,81,17,127,125,87,65,31,93,90,119,42,64,90,47,90,
-64,73,121,79,73,121,64,65,81,95,85,117,77,65,4,126,73,121,79,121,64,
-20,19,18,126,18,18,16,80,86,20,23,21,95,80,16,117,93,87,93,113,16,
-92,55,44,86,20,31,83,10,125,72,90,45,88,76,10,125,51,62,42,127,31,
-6,127,20,125,87,125,16,26,127,20,125,87,125,16,26,127,122,78,125,46,122,
-42,62,58,47,122,63,127,40,90,47,106,111,26,40,106,107,20,125,87,125,16,
-106,107,0,86,20,31,83,107,106,66,95,46,95,74,125,127,58,47,122,63,127,
-4,35,86,86,78,66,98,66,29,95,85,127,85,95,74,74,86,35,86,74,74,
-4,126,75,86,35,86,74,4,126,1,84,93,55,84,4,126,63,84,93,55,84,
-4,126,21,62,119,62,20,72,74,60,15,124,74,104,72,68,99,88,67,36,72,
-34,62,18,66,63,66,126,74,86,35,86,63,66,126,8,39,50,46,18,34,126,
-64,63,17,87,119,31,17,0,126,34,34,34,34,126,126,2,58,43,58,66,126,
-64,62,10,106,105,105,8,30,18,127,84,93,55,84,36,63,66,58,11,122,66,
-36,63,84,62,10,106,105,68,92,55,44,73,125,11,81,125,11,0,127,64,96,
-40,42,26,47,110,58,41,46,26,78,107,90,42,70,64,66,66,126,66,66,64,
-34,62,18,1,15,73,121,40,26,127,90,79,26,40,20,54,62,119,62,54,20,
-64,62,66,98,91,34,66,64,62,66,86,63,86,94,64,62,90,42,127,46,86,
-93,119,64,112,79,32,64,6,127,65,127,107,127,65,6,127,66,47,106,11,98,
-82,127,66,58,11,122,66,82,127,4,27,26,66,126,82,127,70,86,115,86,70,
-34,62,18,68,95,34,94,48,47,37,5,125,15,56,80,95,53,29,117,95,80,
-65,95,53,63,85,95,65,26,127,66,58,11,122,66,26,127,74,86,35,86,74,
-26,127,65,87,63,71,65,26,127,42,127,58,127,42,101,16,64,66,126,66,64,
-117,0,82,31,18,31,82,117,0,12,107,111,106,8,117,40,26,111,90,79,18,
-117,0,42,127,58,127,42,31,21,21,127,21,21,31,80,94,90,123,90,94,80,
-9,55,49,65,87,63,71,53,127,114,30,91,30,114,53,126,62,82,127,46,86,
-42,117,72,66,126,66,64,42,117,34,31,98,90,98,42,117,74,86,35,86,74,
-42,117,127,53,41,53,127,42,127,82,63,18,127,18,40,42,26,63,46,42,105,
-8,126,40,47,42,122,8,127,21,127,18,111,82,106,127,21,127,86,115,86,70,
-26,110,58,59,58,110,26,126,19,126,58,11,122,66,66,46,11,106,11,106,66,
-10,125,4,5,69,125,4,10,125,90,61,91,5,125,107,98,42,127,58,127,42,
-68,125,45,47,45,125,68,95,31,42,127,58,127,42,74,86,35,86,127,37,27,
-125,127,41,26,47,122,41,86,125,54,62,98,91,98,9,55,113,62,98,91,98,
-86,125,127,53,41,53,127,127,19,123,84,123,19,127,127,27,40,58,53,123,40,
-34,62,18,93,23,21,93,20,118,110,126,109,117,20,114,18,126,91,126,18,114,
-117,34,62,82,30,87,118,127,53,41,53,127,14,127,72,106,95,42,98,31,126,
-4,4,31,21,87,116,4,4,116,82,85,86,116,4,36,63,42,94,123,46,90,
-82,127,40,26,63,42,105,117,24,42,94,123,46,90,90,94,42,91,122,46,90,
-42,58,126,47,62,122,42,82,47,90,87,122,86,126,66,94,54,23,118,94,98,
-74,86,43,82,14,64,127,12,107,106,111,106,106,8,127,65,107,127,107,81,127,
-90,42,127,42,91,41,91,125,111,125,12,107,111,106,12,107,111,10,94,23,118,
-80,23,85,31,85,23,80,85,74,61,107,106,63,69,117,64,62,106,79,110,66,
-127,21,127,81,127,55,81,109,108,77,127,85,61,65,100,51,78,82,110,18,110,
-6,127,100,51,78,82,110,12,4,127,45,47,127,12,85,74,61,126,75,74,126,
-73,58,80,73,71,72,80,124,64,63,36,127,72,100,63,36,50,93,23,21,93,
-4,20,82,85,54,20,4,127,85,77,127,77,85,127,36,63,62,42,127,42,62,
-74,86,93,98,95,75,84,92,55,44,31,117,111,21,6,127,2,127,85,53,95,
-106,54,93,66,95,11,84,16,126,118,102,109,117,16,64,127,85,5,125,87,80,
-26,127,10,127,85,53,95,26,127,127,85,127,85,127,117,0,127,85,5,125,87,
-84,62,2,126,87,62,66,42,117,42,127,74,127,2,64,127,85,21,53,95,64,
-53,45,53,94,63,122,94,78,88,95,90,80,95,74,4,126,35,94,75,122,74,
-64,69,41,19,41,71,64,30,30,42,87,50,94,75,56,63,74,59,94,123,90,
-34,82,79,74,122,74,66,74,58,75,94,122,91,74,74,122,86,95,86,122,74,
-117,0,8,70,95,34,20,42,62,74,59,94,123,90,9,55,49,70,95,34,20,
-106,107,4,3,126,42,42,86,125,54,93,20,23,93,85,48,122,88,55,84,82,
-68,83,84,127,84,83,68,64,62,74,86,123,86,74,82,127,68,83,124,83,68,
-4,126,73,58,63,58,72,4,126,19,126,75,126,75,17,127,21,31,85,127,17,
-36,63,37,125,85,39,92,8,106,111,10,79,56,90,86,58,94,123,94,58,86,
-82,90,122,95,58,94,82,38,42,58,111,58,42,38,86,50,118,57,85,74,37,
-34,34,34,82,127,10,2,82,127,86,50,118,57,85,72,42,127,42,79,56,90,
-72,62,104,47,74,58,88,117,0,82,54,43,118,18,66,85,32,26,37,82,69,
-82,86,50,118,57,85,81,64,63,43,59,51,127,43,9,55,49,42,119,46,40,
-46,24,111,106,104,111,10,84,43,85,115,20,45,83,74,58,46,119,46,122,10,
-42,117,40,127,73,127,127,82,86,51,118,59,86,82,40,122,95,42,79,56,90,
-40,58,127,42,79,56,90,127,27,74,21,115,21,75,82,54,43,118,30,64,127,
-18,122,71,74,126,74,66,26,127,34,34,82,127,10,43,107,63,3,127,43,43,
-95,21,95,34,82,127,10,113,0,40,47,89,127,9,36,63,84,63,93,37,93,
-127,27,64,63,93,37,93,36,63,47,117,31,117,47,26,127,10,119,62,107,62,
-40,24,125,42,42,125,8,30,18,94,85,60,85,84,56,63,18,90,23,122,18,
-36,63,18,90,23,122,18,9,55,50,90,23,122,18,75,13,91,22,93,31,116,
-4,126,1,4,127,42,42,125,20,87,125,14,64,127,30,30,4,3,126,42,42,
-82,127,38,30,115,54,38,62,42,62,4,127,42,42,90,51,30,83,63,85,127,
-26,127,8,127,63,9,127,38,26,22,115,46,42,38,92,75,46,124,43,78,90,
-76,22,30,119,14,22,76,86,125,10,127,90,127,10,26,127,73,88,45,58,73,
-66,29,95,8,90,127,90,20,19,126,84,123,126,82,68,55,63,84,127,100,114,
-8,127,63,9,63,9,127,64,63,21,125,55,64,127,86,46,86,115,22,42,86,
-82,127,10,82,93,42,29,82,127,36,63,125,47,92,82,127,86,42,103,42,86,
-34,26,127,10,127,64,96,84,53,122,53,91,41,91,126,54,67,58,79,126,74,
-90,55,126,40,127,126,75,40,46,38,127,38,46,40,66,29,95,8,122,47,122,
-82,127,103,29,119,14,127,86,125,10,122,47,122,8,66,29,95,86,35,86,74,
-64,126,66,126,66,126,64,62,42,125,95,69,95,125,64,66,74,74,74,66,64,
-36,52,42,125,42,52,36,20,78,87,78,37,14,20,124,64,64,127,64,64,124,
-6,127,20,78,85,42,20,82,127,10,127,126,35,94,10,127,42,127,92,35,94,
-26,127,10,74,95,42,83,76,63,84,43,117,42,86,42,62,42,127,63,9,127,
-66,58,78,91,122,94,74,36,123,46,44,107,62,34,84,19,62,124,59,22,82,
-69,93,85,123,85,61,69,107,98,74,55,58,55,74,74,119,58,48,58,119,74,
-125,111,125,42,87,50,79,20,84,123,94,43,85,91,45,127,45,62,10,121,8,
-10,110,127,106,103,125,5,73,55,29,74,95,42,83,4,126,5,68,127,68,4,
-4,126,9,73,125,11,8,4,126,1,53,53,65,127,4,126,83,94,63,74,78,
-90,42,127,42,90,0,127,1,53,53,53,53,65,127,64,78,90,63,74,78,64,
-120,59,27,120,53,53,127,127,81,79,65,79,73,127,4,68,68,127,68,68,4,
-68,92,55,44,108,107,108,92,55,44,58,10,127,58,85,80,116,91,54,90,86,
-8,9,73,125,11,9,8,64,63,85,45,29,125,87,2,58,10,127,10,58,2,62,55,62,5,127,5,61,
-98,42,74,79,106,10,98,96,63,85,95,117,31,96,82,127,0,111,106,106,109,
-66,74,90,47,90,66,66,81,125,11,68,95,34,94,82,31,26,95,62,10,121,
-98,31,122,20,127,74,90,7,122,90,90,89,121,12,26,127,74,90,47,90,66,
-64,124,64,127,68,68,64,73,55,29,1,127,73,101,64,126,74,14,25,41,72,
-85,74,61,62,55,127,61,18,123,86,124,64,127,68,36,21,127,21,112,79,96,
-80,18,26,117,20,10,80,42,117,40,126,74,62,73,78,24,31,122,16,15,90,
-127,21,127,74,90,47,90,127,21,127,0,111,106,109,65,85,87,125,83,85,65,
-18,123,22,95,53,117,95,106,107,2,53,53,65,127,106,99,40,106,47,122,40,
-106,107,84,116,87,60,69,107,106,66,42,79,74,98,107,106,17,100,115,110,118,
-73,112,52,59,54,122,70,95,21,95,39,93,53,119,124,127,36,127,74,127,74,
-122,93,66,53,53,65,127,4,126,108,127,86,110,122,42,46,106,127,42,62,18,
-4,126,33,31,72,34,95,4,126,41,106,47,122,40,64,95,32,31,117,95,96,
-22,18,86,119,30,18,22,40,42,106,47,122,42,40,98,42,87,66,106,23,98,
-82,127,40,106,47,122,40,62,42,62,106,47,122,40,97,16,68,35,30,34,70,
-117,0,106,87,2,107,86,117,0,8,108,107,100,8,125,87,45,127,85,47,125,
-93,119,109,127,117,111,93,84,62,18,54,95,118,18,9,55,49,106,87,106,87,
-36,21,69,125,5,21,36,125,5,125,7,125,5,125,33,33,63,45,45,127,33,
-0,126,74,91,90,82,126,58,58,19,54,95,118,18,118,94,117,42,46,123,46,
-117,0,72,68,43,18,14,64,62,122,94,11,126,82,66,74,58,42,15,50,67,
-107,98,10,111,110,63,85,62,62,62,64,30,87,118,68,83,86,84,83,86,66,
-45,127,45,126,74,127,126,86,82,18,27,18,82,86,22,18,23,119,51,86,22,
-8,8,63,72,68,68,100,30,18,30,127,72,72,100,20,62,119,62,19,126,64,
-76,75,42,31,42,74,72,95,60,84,62,90,51,82,70,82,94,119,74,82,70,
-85,55,77,95,109,23,85,117,0,87,125,69,125,87,117,64,42,86,127,54,74,
-84,62,82,94,59,90,82,72,70,61,40,46,125,68,86,82,86,63,86,82,86,
-42,122,111,122,43,126,54,20,123,86,52,123,54,82,4,126,111,45,79,77,111,
-94,88,63,122,48,95,90,66,42,75,110,91,74,66,64,63,87,123,95,59,87,
-106,62,83,86,59,70,106,42,117,114,30,91,30,114,20,116,90,93,90,116,20,
-19,17,31,85,117,21,19,80,94,43,126,10,82,127,82,127,20,122,93,122,20,
-40,122,15,122,92,35,94,84,22,125,86,42,32,127,72,26,74,31,94,27,72,
-18,123,86,68,127,68,64,42,117,40,70,95,34,20,40,42,26,111,110,106,9,
-107,98,94,43,126,26,127,34,62,42,127,42,62,34,73,56,110,74,111,78,106,
-78,123,46,6,123,82,86,47,89,127,9,127,37,27,12,127,10,127,90,127,10,
-4,3,10,18,2,66,126,64,63,5,13,21,39,64,26,127,4,11,18,66,126,
-76,63,36,11,18,66,126,65,127,93,111,13,95,125,125,111,125,4,11,82,126,
-85,49,127,85,63,25,103,86,125,54,39,93,53,119,42,26,111,106,107,106,10,
-86,18,126,23,90,42,94,45,85,119,0,45,85,119,82,42,95,90,123,10,106,
-68,84,85,126,84,84,68,33,63,45,127,42,18,46,22,18,50,83,122,18,22,
-20,22,86,126,21,21,20,76,75,42,127,42,74,72,73,55,93,43,127,42,72,
-85,74,61,54,83,122,22,42,62,76,43,127,42,72,53,127,68,94,126,93,68,
-127,21,127,68,94,126,93,106,63,74,81,127,74,86,117,0,125,111,101,111,125,
-2,122,91,94,90,123,2,12,127,102,43,127,43,102,77,71,93,47,93,71,77,
-30,82,79,57,9,121,79,84,54,30,87,22,126,20,82,127,77,87,53,87,77,
-26,127,90,111,90,18,127,42,117,77,87,53,87,77,102,42,111,63,107,46,102,
-127,97,81,79,81,97,127,62,32,127,16,77,49,79,64,63,117,95,117,17,127,
-86,50,86,119,22,50,86,34,78,123,46,68,63,69,76,63,12,127,0,12,127,
-4,126,63,4,75,86,42,106,39,79,71,106,7,106,82,127,4,114,85,118,4,
-117,76,63,12,127,12,127,74,90,55,31,55,106,10,53,127,76,32,31,40,68,
-42,117,40,10,85,75,8,42,117,74,58,127,46,116,9,107,117,111,107,101,15,
-80,94,90,59,90,94,80,80,62,18,119,18,126,16,66,90,59,30,123,90,98,
-84,46,6,127,22,38,84,90,62,123,94,58,87,93,20,127,94,91,84,127,26,
-119,125,46,123,46,63,69,45,127,36,63,45,127,36,73,56,95,117,111,117,127,
-2,122,95,74,94,123,2,125,111,125,12,127,12,127,84,82,63,122,63,90,80,
-125,111,125,94,63,122,94,4,126,5,4,127,4,4,4,126,1,68,85,126,84,
-66,74,62,11,118,74,98,4,4,4,127,4,4,4,10,125,66,59,66,127,74,
-82,58,18,66,95,34,83,82,90,55,123,63,82,86,101,16,4,4,127,4,4,
-117,0,88,46,8,47,90,17,119,86,119,68,63,69,42,117,10,125,35,126,75,
-66,94,107,127,107,94,66,86,125,74,62,11,118,74,40,72,127,42,77,49,79,
-64,63,83,47,27,127,64,22,122,2,107,122,106,110,117,40,127,42,77,49,79,
-18,123,22,79,57,121,79,42,117,22,122,11,122,110,72,58,42,127,42,94,116,
-82,78,91,110,95,94,80,82,14,91,14,95,30,80,112,78,72,127,72,78,112,
-10,125,26,127,26,69,125,73,56,90,66,127,66,91,4,126,43,87,50,94,75,
-56,63,42,87,50,94,75,40,26,110,111,110,26,40,127,85,127,55,37,119,45,
-46,51,46,87,50,94,75,77,87,45,31,53,119,45,95,31,117,42,87,50,79,
-97,16,4,127,74,127,74,10,125,32,30,118,126,117,4,3,126,86,126,2,126,
-26,127,32,30,118,126,117,73,55,29,127,86,126,126,117,0,34,46,107,62,34,
-53,32,36,127,42,47,42,117,127,3,87,124,87,127,64,62,6,118,126,117,5,
-42,117,26,18,127,82,90,73,60,91,68,91,68,91,73,58,94,87,114,119,94,
-125,111,125,34,46,107,62,64,63,30,127,93,23,93,72,47,18,46,66,94,80,
-18,123,54,65,63,65,127,65,61,21,93,62,10,121,80,87,61,125,93,119,16,
-62,42,95,53,127,93,119,117,0,40,26,111,106,105,64,62,74,30,91,30,74,
-42,117,40,26,111,106,105,87,85,63,125,95,117,23,40,106,106,127,106,110,36,
-34,110,59,126,123,110,42,106,110,67,42,127,110,106,106,99,40,26,111,106,105,
-64,127,85,63,98,31,126,84,22,125,22,77,49,79,68,84,92,39,52,76,68,
-64,62,18,86,119,30,50,10,125,84,22,125,22,84,106,46,75,70,111,9,111,
-86,125,126,42,126,31,124,127,27,84,22,125,22,84,4,126,37,95,58,94,114,
-4,126,69,62,59,62,69,127,21,127,85,60,95,117,127,97,93,77,123,75,73,
-10,74,62,9,8,127,8,9,121,85,83,81,121,15,30,18,30,125,20,87,125,
-122,42,30,107,122,46,122,30,18,126,87,85,87,124,6,123,86,87,86,115,22,
-74,95,80,53,87,93,87,72,90,126,91,62,90,72,68,92,55,124,87,87,124,
-6,122,46,47,42,126,6,20,127,22,50,86,121,21,16,12,64,127,0,4,24,
-72,70,80,63,32,18,4,125,6,116,87,116,6,125,64,62,66,74,127,74,66,
-64,62,74,42,127,42,74,64,62,118,58,119,46,90,42,62,123,62,42,74,37,
-36,28,41,125,43,24,36,82,127,8,70,95,34,20,82,127,10,117,83,89,127,
-38,51,126,123,62,51,38,82,127,64,42,74,127,86,16,87,61,21,125,23,16,
-124,87,85,85,85,87,124,62,42,62,117,83,89,127,120,87,125,5,125,87,120,
-26,127,68,99,88,35,68,26,127,10,125,20,87,125,26,127,42,62,123,62,42,
-26,127,68,31,82,31,82,117,0,9,117,83,89,127,117,0,125,20,23,84,125,
-117,0,24,78,88,47,26,117,26,127,10,127,85,127,76,63,84,62,23,126,84,
-72,4,95,22,95,22,82,95,21,95,5,91,25,95,84,62,66,118,71,126,86,
-20,18,120,87,84,126,4,9,55,49,125,20,87,125,9,55,49,68,31,94,83,
-18,123,22,34,43,126,43,53,127,36,91,126,10,50,40,58,46,107,46,58,40,
-84,83,86,60,83,86,82,53,126,85,62,74,127,74,42,117,40,117,83,89,127,
-0,125,22,23,20,86,125,114,94,91,90,91,94,114,42,126,23,50,87,122,22,
-74,6,95,22,95,22,82,10,125,90,126,89,5,125,86,51,126,91,62,83,86,
-106,107,68,99,88,35,68,107,106,65,121,65,127,73,106,107,2,117,83,89,127,
-107,106,34,43,126,43,34,82,82,45,93,127,44,80,70,123,46,43,46,123,70,
-10,127,89,75,93,127,9,86,125,54,121,65,127,73,86,125,70,94,126,93,68,
-86,125,74,94,123,94,74,127,27,42,62,123,62,42,55,126,55,125,20,87,125,
-64,64,64,127,68,68,64,66,66,42,31,34,66,66,84,77,97,125,67,73,84,
-74,94,43,127,43,94,74,67,33,29,5,125,65,99,94,43,127,43,94,0,127,
-36,63,126,42,90,63,82,36,63,36,95,53,87,116,36,63,26,126,83,62,90,
-95,60,26,126,83,62,90,6,51,30,123,30,51,6,6,127,8,122,47,122,8,
-82,127,89,95,47,95,89,72,90,58,117,59,88,72,26,127,66,42,31,34,66,
-117,0,42,109,125,47,60,20,127,68,36,31,36,69,88,79,125,95,125,79,88,
-53,127,26,126,83,62,90,106,58,103,62,99,42,118,107,98,26,126,83,62,90,
-125,127,26,126,83,62,90,86,125,70,50,71,126,86,30,82,63,115,91,63,115,
-36,63,122,66,95,90,66,122,93,90,52,19,126,50,82,127,84,116,87,60,69,
-26,127,122,66,95,90,66,73,55,29,122,66,95,90,76,63,75,117,119,37,127,
-42,117,10,111,110,63,85,33,63,127,107,78,63,85,2,62,85,93,87,92,96,
-66,61,127,74,127,74,110,4,68,122,93,34,84,68,122,93,90,78,127,74,110,
-24,23,61,87,127,23,21,64,63,85,53,29,117,71,4,126,63,42,127,42,62,
-4,126,1,98,107,107,98,4,126,89,93,45,95,88,16,15,125,119,111,119,21,
-92,55,44,127,81,53,85,46,122,2,91,94,42,94,86,58,118,127,118,58,86,
-32,24,125,66,64,104,16,6,127,82,30,31,30,82,82,127,63,113,85,53,81,
-82,54,123,54,94,10,121,9,123,95,89,95,123,9,80,58,118,95,54,122,80,
-26,127,82,42,119,42,82,117,0,88,93,45,95,88,117,0,91,53,113,61,91,
-62,42,42,127,42,42,62,84,62,18,74,87,42,18,82,82,30,31,30,82,82,
-18,123,62,42,127,42,62,72,90,46,127,46,90,72,42,117,62,42,127,42,62,
-0,127,85,119,85,93,65,66,50,127,66,103,18,98,82,54,123,54,63,22,114,
-82,54,123,54,95,53,95,106,107,4,66,85,42,20,16,80,94,43,106,126,8,
-8,42,46,123,46,42,8,73,56,68,127,106,127,106,86,125,54,4,127,4,4,
-70,58,127,95,59,94,86,64,32,24,7,24,32,64,4,126,33,34,34,34,32,
-65,41,25,15,17,65,127,64,62,90,86,103,94,82,8,74,74,126,73,73,8,
-20,29,53,81,125,23,28,18,114,95,122,95,114,82,32,31,37,45,69,27,32,
-7,119,53,48,59,117,11,107,98,73,63,5,127,64,73,56,69,95,69,79,80,
-127,27,34,62,127,62,34,55,126,55,73,63,81,127,4,107,110,108,11,78,122,
-107,106,33,63,127,18,46,74,37,0,93,23,21,93,125,111,125,4,127,42,42,
-127,67,105,83,89,101,127,64,63,93,117,45,73,125,73,58,65,111,123,123,111,
-30,30,68,35,30,34,70,84,94,86,126,85,93,84,62,55,62,2,127,2,62,
-82,127,4,127,74,127,74,36,20,76,127,8,20,34,76,63,68,35,30,34,70,
-127,85,127,20,93,127,85,53,126,43,38,115,46,40,41,59,45,127,43,61,47,
-42,42,126,87,62,74,74,73,56,82,107,126,83,106,125,111,125,42,119,46,40,
-86,125,54,127,74,127,74,86,125,86,93,119,93,84,127,37,91,57,74,119,114,
-42,62,107,58,107,42,107,12,119,63,121,74,119,114,76,55,94,127,30,55,76,
-116,23,126,87,126,23,116,85,122,87,50,93,35,94,26,127,10,127,85,73,85,
-106,63,74,100,91,118,118,36,91,54,54,127,126,75,82,127,74,63,107,95,107,
-34,26,127,10,64,74,37,26,127,124,87,85,87,124,26,10,127,122,111,106,26,
-126,90,47,90,93,23,93,20,18,120,87,124,86,84,18,123,86,63,107,95,107,
-101,16,69,91,105,90,69,82,127,5,111,112,101,15,2,2,10,82,127,2,2,
-4,127,68,95,84,95,68,117,46,127,46,93,23,93,122,122,123,122,68,51,78,
-68,55,69,125,85,87,68,113,0,82,122,95,62,82,100,43,127,42,110,0,127,
-20,78,95,58,87,126,8,68,92,55,76,83,127,82,10,125,64,121,65,127,73,
-6,127,68,83,127,82,66,64,62,74,58,66,63,82,121,65,63,41,92,35,94,
-90,118,95,118,122,117,91,80,79,85,125,85,87,68,62,42,62,8,122,47,122,
-26,127,82,122,95,62,82,26,127,125,95,69,95,125,65,121,65,127,73,73,65,
-117,0,8,122,47,122,8,23,127,68,83,127,82,66,68,83,82,127,82,82,66,
-72,118,94,114,90,119,74,53,126,9,122,47,122,8,69,87,87,125,87,85,71,
-66,58,42,63,42,58,2,84,59,127,90,54,80,95,125,85,79,69,95,85,125,
-107,98,126,42,90,63,82,42,63,112,110,102,61,36,106,99,8,122,47,122,8,
-73,56,82,127,82,78,125,125,111,125,72,87,125,87,8,122,42,47,42,122,8,
-8,122,47,122,42,125,59,18,82,54,43,118,18,18,53,127,78,59,10,123,78,
-127,21,127,62,125,79,92,72,68,95,42,95,74,74,64,62,106,46,123,46,106,
-6,127,10,127,90,127,10,64,62,34,126,42,63,82,64,62,10,26,121,41,8,
-8,122,95,90,95,122,8,26,127,64,62,10,121,8,17,9,127,73,73,121,1,
-53,127,72,58,63,58,72,84,51,126,52,27,126,106,42,117,72,58,63,58,72,
-21,117,40,47,40,117,21,72,122,42,47,42,122,72,40,74,58,79,122,10,40,
-119,125,91,62,67,126,26,119,125,75,58,63,58,72,9,55,49,93,23,21,93,
-4,63,36,65,63,65,127,82,127,118,68,127,68,118,82,127,74,94,43,62,74,
-82,127,89,47,9,47,89,82,127,64,62,10,121,8,106,107,68,91,41,95,68,
-22,122,86,3,94,58,118,124,91,94,36,123,14,58,107,98,78,59,10,123,78,
-6,82,87,87,83,118,6,42,117,42,126,93,87,92,4,118,86,94,85,117,4,
-78,123,45,44,125,46,45,4,126,125,64,127,64,124,76,75,58,15,122,74,104,
-8,10,10,126,9,9,8,0,112,80,95,84,84,116,70,66,118,87,118,66,70,
-18,18,62,95,126,18,18,84,82,88,63,80,82,84,64,63,0,30,0,0,127,
-45,44,125,44,71,60,85,65,63,91,43,123,43,121,82,127,77,27,16,29,75,
-26,127,68,86,125,86,68,26,127,36,123,42,122,34,80,62,74,123,26,46,80,
-117,0,10,74,95,42,83,117,0,76,59,15,122,74,85,80,58,118,51,94,88,
-117,0,10,119,90,119,10,66,30,75,30,66,31,66,76,63,69,63,91,43,121,
-98,31,122,68,43,122,90,38,106,54,51,126,42,38,12,123,46,124,11,126,10,
-42,117,80,62,123,46,80,42,117,74,127,42,63,85,90,10,75,94,58,91,74,
-127,21,127,62,123,46,80,72,71,42,30,18,127,18,80,62,19,126,119,80,119,
-66,62,75,30,91,30,114,106,107,68,86,125,86,68,95,21,95,10,95,42,83,
-119,125,87,10,95,42,83,73,56,109,91,80,93,107,73,58,73,119,111,103,73,
-86,125,54,74,95,42,83,86,125,78,59,15,122,72,127,69,39,24,39,69,127,
-66,29,95,34,43,126,43,122,42,123,2,26,67,122,42,122,107,126,106,123,42,
-117,0,45,127,62,10,121,84,19,77,7,82,15,82,68,84,86,125,86,84,68,
-18,123,22,45,45,126,45,42,117,42,123,110,123,42,127,21,127,42,123,110,123,
-53,126,85,63,93,125,93,30,18,30,123,94,123,14,87,94,75,110,95,69,95,
-56,63,64,127,85,127,64,82,127,10,127,90,127,10,4,126,85,92,85,126,4,
-0,14,123,94,90,123,14,90,54,95,122,118,95,74,85,74,61,127,85,127,64,
-49,61,91,62,123,6,106,49,61,91,46,127,42,78,9,55,49,74,55,122,87,
-18,123,86,127,85,127,64,53,127,69,127,85,127,64,53,126,69,127,85,127,64,
-84,22,30,119,22,14,84,42,117,72,127,85,127,64,74,22,95,42,31,126,42,
-106,107,64,62,26,121,40,127,27,64,127,85,127,64,73,58,87,78,103,95,127,
-64,126,85,44,85,63,64,12,127,14,123,94,123,14,68,62,109,98,14,64,127,
-65,37,25,39,77,49,79,43,58,127,26,95,42,91,68,36,30,109,110,100,4,
-82,54,118,95,50,86,86,20,127,4,68,127,68,4,42,26,78,63,78,26,42,
-66,86,42,31,42,86,66,70,74,42,127,42,74,70,64,63,27,119,91,119,27,
-127,65,93,69,127,69,93,107,63,74,84,107,22,94,106,38,95,74,95,21,95,
-82,127,78,90,47,90,78,82,127,12,53,125,55,12,82,127,58,42,126,41,57,
-82,127,73,91,125,91,104,82,127,92,55,125,55,92,32,63,53,117,53,63,32,
-30,118,95,86,95,118,30,80,87,54,127,54,87,80,26,127,36,30,109,98,4,
-26,127,26,127,90,127,26,117,0,26,127,90,127,26,76,63,92,55,125,55,92,
-10,46,109,125,47,60,8,84,62,74,94,47,94,74,34,26,127,10,127,85,127,
-102,42,86,83,110,10,102,53,126,26,127,90,127,26,42,117,106,45,72,69,106,
-42,117,86,26,123,26,86,33,63,127,106,45,72,107,34,62,55,118,55,62,34,
-42,126,19,82,123,82,18,42,118,47,34,127,54,50,74,38,27,122,123,102,10,
-86,2,91,54,123,54,90,90,63,114,90,63,90,82,72,42,74,127,90,90,72,
-73,56,98,107,94,107,98,73,56,90,127,90,127,90,86,125,54,68,62,109,98,
-86,50,127,55,123,78,126,95,31,117,73,91,125,91,4,126,35,94,125,47,80,
-36,63,14,123,94,123,14,6,127,14,123,94,123,14,127,21,127,123,74,63,74,
-66,58,127,122,79,58,82,95,31,78,123,94,123,14,73,56,76,123,111,122,72,
-4,126,65,55,69,125,87,4,126,95,21,95,14,127,95,21,95,0,14,64,127,
-127,85,95,32,127,1,31,96,62,90,91,122,30,96,82,127,74,55,69,125,87,
-66,78,42,127,42,78,66,117,0,95,21,95,14,127,64,55,69,125,85,87,64,
-73,58,110,90,127,90,110,12,127,18,105,100,105,18,64,63,115,91,127,63,115,
-95,31,74,30,74,63,82,98,31,122,20,95,58,82,42,117,90,42,15,106,90,
-50,46,50,99,50,46,50,18,123,54,126,74,127,126,82,82,31,26,31,82,82,
-82,127,122,43,122,3,122,18,122,23,82,118,30,18,81,125,11,80,21,123,81,
-18,30,59,86,126,31,18,82,127,10,92,23,23,92,34,26,127,10,82,127,2,
-73,56,109,115,85,123,81,4,126,9,126,68,95,108,8,74,90,85,43,40,24,
-68,68,36,95,36,68,68,101,16,68,36,95,36,68,107,106,6,122,83,74,102,
-30,30,84,93,119,93,84,95,75,64,106,71,90,90,74,78,90,46,57,77,73,
-6,127,10,119,58,126,10,82,127,10,1,65,127,1,26,127,10,6,122,83,86,
-126,19,126,6,122,83,86,26,127,10,119,58,126,10,127,37,27,6,122,83,86,
-95,31,117,64,36,95,100,95,31,117,44,45,126,45,4,126,19,42,127,42,18,
-36,63,20,127,74,127,74,66,42,19,46,10,82,127,125,7,125,5,125,26,127,
-100,78,65,114,67,70,107,26,111,42,127,42,111,26,10,125,40,106,47,122,40,
-100,60,86,85,116,26,100,98,63,74,95,96,27,82,84,30,95,22,95,36,85,
-10,119,90,80,90,119,10,72,90,46,119,46,90,72,117,0,26,111,58,111,26,
-127,21,127,8,108,107,108,127,21,127,121,80,79,87,18,114,91,86,83,106,18,
-84,62,113,90,51,86,91,68,78,49,50,51,118,75,73,58,64,127,85,117,111,
-73,56,106,86,127,86,104,127,27,42,87,122,19,42,100,46,121,58,123,38,107,
-93,31,127,53,47,53,127,4,126,5,4,15,52,69,8,104,108,107,104,100,8,
-68,68,36,31,36,68,68,68,91,46,124,43,46,98,125,111,125,52,71,127,84,
-68,55,63,84,109,79,109,64,62,78,18,95,30,122,117,0,10,62,59,126,74,
-117,10,126,43,126,119,93,32,60,52,119,54,62,34,30,30,41,87,125,25,37,
-22,18,22,127,86,82,86,82,127,8,10,126,73,104,82,127,74,63,5,29,103,
-82,127,10,17,127,73,121,101,16,64,63,5,29,103,117,0,37,127,80,125,87,
-42,62,41,87,125,25,37,106,99,8,10,126,73,104,86,125,43,59,111,59,43,
-117,0,75,117,119,37,127,107,98,42,31,106,107,106,42,42,63,42,47,122,42,
-64,63,25,125,25,127,64,78,123,46,125,20,87,125,64,79,41,9,41,79,64,
-30,18,30,127,1,17,31,4,126,65,95,85,95,64,73,56,84,94,119,94,84,
-64,63,113,85,53,85,81,26,22,62,95,122,22,26,127,21,127,78,59,122,79,
-81,85,31,24,29,85,87,71,87,117,88,123,85,75,73,56,94,80,95,80,94,
-26,127,63,85,63,85,127,16,18,105,100,105,18,16,85,62,95,85,127,85,95,
-66,29,95,6,83,87,118,26,127,30,55,82,119,30,106,107,4,127,74,127,74,
-80,63,17,21,81,127,16,32,63,42,127,42,63,32,30,18,94,91,62,91,94,
-36,63,84,95,85,95,64,82,127,74,95,85,95,64,82,127,91,53,113,61,91,
-64,95,85,85,85,95,64,90,95,58,95,68,59,70,117,0,85,34,25,34,85,
-117,0,114,95,114,95,82,67,62,90,67,62,82,75,75,62,42,93,117,117,93,
-46,51,111,58,107,42,107,36,59,54,124,51,62,34,42,117,70,50,71,126,86,
-33,63,127,70,63,114,70,127,21,127,0,95,85,95,73,69,89,127,91,41,75,
-107,98,85,59,82,94,85,86,125,54,126,85,43,91,127,69,77,101,127,69,127,
-36,63,78,126,91,126,78,93,119,45,44,125,46,45,127,85,78,85,62,10,121,
-62,42,126,42,94,41,93,26,127,78,126,91,126,78,32,126,21,64,91,41,91,
-80,95,53,31,21,95,112,107,106,85,34,25,34,85,4,126,123,66,95,90,66,
-68,43,30,42,126,66,126,36,63,8,126,68,95,108,93,119,8,126,68,95,108,
-33,63,127,24,125,66,104,20,123,86,90,94,122,14,117,0,8,126,68,95,108,
-84,62,82,62,75,58,58,53,127,21,127,74,127,74,119,69,127,85,87,125,71,
-73,93,59,45,92,35,94,78,127,75,62,74,62,62,73,58,96,95,91,115,91,
-95,31,117,126,68,95,108,84,91,54,100,59,94,82,18,118,86,123,82,114,26,
-4,3,126,4,67,126,2,84,115,86,68,51,118,66,18,118,87,122,83,114,26,
-73,58,105,87,125,73,85,53,127,76,43,31,42,72,70,90,86,123,94,74,86,
-82,50,27,118,27,50,82,95,60,122,110,91,110,122,74,58,123,94,90,123,10,
-30,18,18,127,18,18,30,4,126,31,18,127,18,30,6,122,90,127,90,122,6,
-96,46,74,95,106,14,96,82,127,126,74,127,74,126,80,79,117,85,117,75,80,
-26,127,68,85,126,84,68,101,16,68,85,126,84,68,64,94,82,127,82,62,64,
-34,46,122,79,26,46,82,106,107,68,85,126,84,68,125,111,125,10,82,127,2,
-86,125,54,94,23,126,20,95,31,117,68,85,126,84,26,127,6,27,31,91,118,
-117,40,85,63,26,111,106,85,74,61,40,26,111,106,26,10,95,122,31,10,26,
-82,82,55,126,95,118,18,95,21,95,6,74,123,14,1,1,65,127,1,1,1,
-82,84,63,0,127,76,82,113,0,127,53,47,53,127,30,18,95,50,119,54,87,
-14,122,46,123,10,110,86,14,127,14,112,95,84,116,14,127,16,127,85,53,81,
-64,62,10,74,123,10,10,16,29,21,127,21,87,112,93,119,16,127,85,53,81,
-127,53,47,53,127,74,37,10,125,86,119,86,63,94,106,61,74,91,122,15,86,
-82,127,74,63,0,127,74,62,107,62,36,95,53,119,45,119,45,64,63,85,127,
-117,0,45,127,63,21,127,127,20,119,62,115,54,87,63,37,63,63,66,126,2,
-127,85,127,63,0,127,74,33,63,127,98,46,79,110,127,21,127,112,95,53,85,
-127,21,127,36,95,53,119,78,123,95,50,119,54,87,107,98,127,53,47,53,127,
-107,98,95,50,119,54,87,74,58,63,74,117,83,119,119,125,87,63,0,127,74,
-86,125,118,63,0,127,74,16,80,127,85,53,81,80,33,63,1,93,23,21,93,
-64,30,86,23,86,22,112,66,46,127,42,110,31,126,82,127,24,78,88,47,26,
-122,66,122,111,106,122,66,127,21,127,84,85,60,85,101,16,70,34,31,122,70,
-42,62,4,66,85,42,20,68,78,53,54,62,117,68,86,125,54,82,30,31,82,
-127,27,66,46,127,46,66,117,0,42,42,127,46,36,95,75,74,119,94,75,86,
-26,127,4,127,74,127,74,26,127,74,57,64,126,119,73,58,64,126,87,86,118,
-86,125,46,121,64,126,119,84,62,122,42,123,46,122,73,56,125,85,125,87,125,
-36,63,43,93,125,53,75,26,127,56,47,105,127,40,82,127,65,107,127,107,127,
-26,127,42,31,106,63,95,4,126,127,73,127,73,127,117,0,72,58,63,58,72,
-26,127,10,17,127,73,121,73,56,68,68,127,68,68,66,26,91,30,91,18,114,
-42,117,93,43,93,43,93,86,125,54,11,63,44,107,26,127,42,30,111,126,42,
-117,0,78,58,63,58,78,36,63,21,17,127,17,21,90,106,122,111,122,106,90,
-95,60,102,43,127,43,102,42,117,126,74,127,74,126,64,62,2,126,1,61,64,
-56,15,13,125,13,47,56,86,125,54,4,11,82,126,22,122,127,6,94,23,118,
-26,14,90,123,26,14,26,4,126,65,126,74,94,105,4,126,11,94,123,30,26,
-4,126,65,60,55,62,66,90,43,126,43,110,0,127,64,124,52,55,54,126,66,
-68,87,85,125,85,87,68,36,63,68,52,71,127,84,70,50,70,127,86,82,70,
-26,106,46,123,42,110,26,64,62,66,126,87,62,86,64,62,86,46,83,122,86,
-85,59,72,106,126,105,72,66,90,43,126,42,43,110,6,127,90,43,126,43,110,
-82,127,64,126,74,94,105,82,127,85,59,106,126,105,82,127,66,52,71,127,84,
-26,127,90,43,126,43,110,101,16,1,65,127,1,1,9,55,49,70,42,123,86,
-18,123,22,64,60,63,66,53,127,68,87,125,87,68,42,117,26,110,59,110,26,
-126,127,85,59,106,126,105,106,107,106,1,65,127,1,107,98,26,110,59,110,26,
-119,125,27,110,59,110,26,73,58,96,94,74,126,89,126,74,94,41,64,127,27,
-94,87,50,87,94,127,27,86,125,54,1,65,127,1,79,40,127,7,127,40,111,
-117,64,63,5,125,85,87,82,127,122,110,91,110,122,82,127,37,127,80,125,87,
-122,110,91,110,124,35,94,117,0,122,110,91,110,122,62,43,62,4,11,82,126,
-4,115,86,124,83,118,2,73,56,122,110,91,110,122,86,125,122,110,91,110,122,
-117,32,93,119,32,93,119,10,127,80,94,86,125,4,10,125,10,119,114,63,94,
-82,127,10,119,114,63,94,45,127,10,119,114,63,94,73,56,68,107,106,95,106,
-86,125,78,43,31,42,72,80,94,31,26,31,94,80,36,63,82,30,31,30,82,
-65,69,37,31,37,69,65,64,63,117,93,53,93,87,64,62,2,98,127,106,106,
-117,0,84,14,118,13,84,42,117,62,90,111,94,90,118,94,117,2,127,74,127,
-95,21,95,112,95,84,116,45,127,68,101,93,37,68,82,30,31,82,29,23,93,
-64,24,88,31,90,26,64,4,126,69,101,93,37,68,64,63,93,21,91,41,91,
-117,63,93,21,91,41,91,127,73,73,127,73,73,127,6,58,47,63,107,126,70,
-66,94,54,30,117,93,96,30,18,94,68,127,68,64,36,63,40,26,111,106,105,
-85,64,84,118,93,70,84,92,55,44,17,127,73,121,64,63,83,55,127,119,19,
-10,125,72,42,127,90,72,32,37,42,32,127,16,16,26,127,74,68,127,68,64,
-117,64,62,74,95,46,90,74,69,91,105,90,69,74,74,90,55,30,119,94,98,
-95,21,95,40,26,111,106,73,56,84,70,125,70,84,40,26,111,106,127,37,27,
-86,125,62,74,95,46,90,9,55,49,126,74,94,105,9,55,113,63,101,29,117,
-18,78,91,54,91,117,11,64,62,74,94,43,94,74,64,68,68,127,68,68,64,
-68,92,55,44,77,49,79,106,46,75,70,107,5,107,4,126,45,59,41,78,127,
-70,67,62,23,126,67,102,16,18,42,53,75,80,16,97,16,66,46,127,46,66,
-65,33,25,7,1,65,127,64,62,18,118,95,126,10,36,63,18,123,86,123,18,
-36,63,126,18,119,94,106,90,86,126,91,82,54,90,70,42,122,107,106,106,6,
-96,94,118,87,118,22,112,56,63,88,30,87,22,112,6,127,34,60,119,62,34,
-82,127,68,91,41,95,68,82,127,18,123,86,123,18,66,94,42,127,42,94,66,
-26,127,74,63,0,127,74,26,127,52,94,23,126,20,26,127,66,46,127,46,66,
-73,112,84,123,86,122,70,117,0,100,75,126,106,126,117,0,36,95,53,87,116,
-117,80,52,94,23,126,20,76,63,36,1,65,127,1,76,63,69,91,105,90,69,
-0,69,86,87,84,86,125,84,62,2,94,119,118,94,18,123,54,94,23,126,20,
-20,19,54,92,123,22,18,20,19,110,108,107,22,18,124,11,110,108,107,14,122,
-53,126,62,18,119,94,106,42,117,74,62,11,118,74,73,93,59,45,14,64,127,
-74,122,111,126,111,122,74,86,2,83,62,91,62,114,122,42,127,42,119,42,86,
-106,107,0,10,82,127,2,127,21,127,21,108,111,21,65,93,117,85,117,93,65,
-119,125,43,118,95,116,10,73,56,106,95,64,127,106,73,56,74,103,95,119,74,
-86,125,71,91,105,90,69,127,27,100,75,126,106,126,45,53,45,64,29,23,93,
-127,21,127,69,28,95,117,127,91,107,88,19,123,127,4,126,45,63,98,31,126,
-93,127,93,66,63,66,126,127,1,117,85,117,1,127,70,83,94,123,94,83,70,
-20,29,50,95,126,31,18,6,127,74,94,123,94,74,82,127,74,94,123,94,74,
-117,0,127,53,53,65,127,127,85,127,94,123,94,74,72,90,94,123,94,90,72,
-127,21,127,127,53,53,127,18,110,87,126,87,102,126,73,56,66,123,86,123,66,
-86,125,54,127,53,53,127,56,63,56,8,127,26,42,47,122,42,94,23,86,112,
-127,85,79,125,87,117,69,10,125,20,55,85,127,20,10,125,98,46,79,78,98,
-117,0,90,42,15,106,90,23,127,42,106,47,122,40,12,116,95,86,91,117,11,
-74,74,55,15,119,74,106,68,27,86,28,87,22,114,40,122,106,127,106,122,40,
-85,74,61,78,127,74,110,107,98,90,42,15,106,90,26,127,74,63,101,29,117,
-26,127,34,94,125,47,80,120,72,79,65,79,72,120,86,90,86,51,94,90,86,
-26,127,126,21,91,41,91,64,63,117,85,125,85,119,66,26,90,30,91,22,123,
-2,98,99,126,107,106,2,70,122,46,63,46,122,70,125,117,111,101,127,117,125,
-117,122,47,122,42,125,59,30,18,63,42,77,31,93,2,26,18,127,82,81,89,
-6,127,34,46,107,62,34,34,46,123,30,92,35,94,117,0,26,18,127,82,90,
-127,21,127,41,87,125,41,73,58,80,78,118,126,117,26,18,127,82,93,23,93,
-20,14,118,86,117,13,20,76,87,125,93,85,47,76,86,125,26,18,127,82,90,
-74,58,86,115,22,58,74,85,63,85,127,0,127,27,126,18,10,7,10,82,126,
-8,4,3,126,42,42,42,64,63,49,61,41,127,64,82,62,75,18,127,122,86,
-107,98,121,84,77,126,85,117,91,62,91,127,126,85,82,127,74,22,115,22,74,
-86,125,54,120,15,105,127,26,127,122,95,74,95,122,95,31,117,63,30,0,127,
-42,117,40,63,45,119,92,62,62,93,43,93,43,93,122,42,58,111,58,42,122,
-26,127,122,42,119,42,122,45,127,45,68,67,62,70,90,95,58,95,127,126,75,
-117,0,68,92,55,44,68,64,66,66,66,66,66,64,64,63,5,125,85,85,87,
-68,77,45,36,15,52,69,73,56,84,75,98,126,82,4,3,62,42,42,66,126,
-95,21,95,127,81,53,85,126,2,42,23,42,66,126,78,123,78,66,126,66,64,
-4,4,127,68,68,127,4,0,127,73,73,73,73,127,34,42,105,59,33,127,64,
-64,33,25,7,24,32,64,68,92,55,44,126,66,126,64,63,85,53,125,37,87,
-66,86,127,66,127,86,66,4,126,9,74,126,73,8,68,92,55,44,74,126,73,
-104,57,75,85,107,15,96,107,98,73,43,69,75,111,117,0,102,43,127,43,102,
-18,123,22,125,87,47,125,18,123,22,36,91,126,50,22,26,86,123,30,26,22,
-106,54,79,86,111,30,98,85,62,122,95,122,95,122,84,14,95,20,75,30,80,
-36,59,42,126,42,42,34,100,36,74,77,94,4,100,82,127,100,42,77,94,100,
-82,127,84,11,86,15,82,76,63,84,11,86,15,82,53,126,21,112,95,84,116,
-65,49,15,1,7,68,124,85,59,64,125,111,103,125,64,50,34,83,74,70,64,
-74,86,95,122,86,95,74,90,62,122,95,58,94,90,6,127,121,84,73,84,123,
-117,64,54,119,86,55,86,42,117,126,18,15,82,126,4,126,45,126,0,127,90,
-127,21,127,117,73,84,123,127,21,127,118,87,54,87,64,54,119,86,55,86,80,
-53,53,127,64,63,117,95,72,89,87,125,85,59,72,63,73,73,79,73,79,96,
-82,127,63,73,79,73,111,82,127,21,111,125,111,21,41,119,45,71,61,47,121,
-26,127,63,73,79,73,111,117,64,62,90,47,90,70,117,64,62,122,10,53,85,
-5,63,85,92,85,95,101,9,55,113,62,90,47,94,85,80,120,86,58,87,90,
-71,29,87,29,87,21,119,2,62,87,94,87,94,98,64,31,85,31,85,21,113,
-12,127,42,127,0,127,42,64,62,86,78,55,122,86,82,127,33,43,127,43,33,
-82,127,42,127,0,127,42,95,21,95,4,95,34,94,26,127,17,9,127,9,17,
-73,121,85,127,81,117,73,127,20,119,46,63,122,46,10,122,47,40,47,122,10,
-127,21,127,58,10,127,58,42,58,47,120,47,58,42,125,111,125,0,121,73,111,
-4,126,11,110,107,110,10,36,63,10,110,107,110,10,95,60,82,63,122,63,82,
-26,127,20,51,46,126,18,26,127,82,63,122,63,82,76,63,82,63,122,63,82,
-85,74,61,64,31,21,95,71,125,47,45,47,125,71,90,74,42,15,106,74,90,
-95,21,95,14,107,110,10,127,37,27,110,107,110,10,73,58,64,98,107,107,98,
-78,123,78,56,47,119,92,53,127,21,17,127,17,21,75,62,42,93,119,0,127,
-42,122,39,90,67,62,74,4,126,1,126,75,74,126,84,37,127,36,94,0,127,
-4,127,18,62,95,126,19,82,127,10,126,75,74,126,26,127,10,126,75,74,126,
-117,0,126,74,75,74,126,0,126,74,75,74,74,126,84,3,118,84,91,86,114,
-53,126,21,126,75,74,126,126,19,126,126,75,74,126,86,2,19,62,95,126,18,
-73,58,64,126,107,106,126,62,42,94,43,127,47,91,117,0,82,95,54,95,82,
-76,63,91,47,123,47,91,42,117,18,62,95,126,19,82,94,87,54,87,94,82,
-95,31,117,64,85,34,85,72,42,90,47,90,74,72,125,105,87,125,81,105,125,
-84,51,126,52,123,86,122,9,55,50,9,100,105,18,84,83,54,124,91,118,18,
-41,55,53,119,59,53,43,36,43,110,124,107,38,34,26,127,60,68,111,106,74,
-14,127,21,111,125,111,21,127,21,127,63,1,127,64,76,63,36,127,73,127,127,
-0,120,94,123,90,94,120,64,48,15,0,15,48,64,86,125,54,42,127,42,18,
-117,0,85,59,25,122,85,74,85,59,25,122,85,74,125,127,85,59,25,122,85,
-68,79,45,93,56,90,77,4,126,1,68,95,36,85,103,109,111,5,31,69,127,
-82,127,34,82,47,90,66,20,123,6,84,83,62,74,127,19,123,80,59,75,127,
-34,31,62,32,94,23,118,30,94,54,123,62,10,121,36,63,114,30,91,30,114,
-78,123,46,0,118,85,118,40,36,47,122,47,42,42,4,126,1,42,40,127,42,
-42,40,127,40,42,64,127,32,42,40,127,40,42,32,64,63,69,93,37,93,65,
-85,62,21,127,93,37,93,14,127,64,63,9,127,64,82,127,126,19,126,41,91,
-73,127,74,51,78,127,73,26,127,74,63,93,37,93,117,0,63,65,73,79,96,
-117,64,63,5,9,127,64,127,20,119,63,93,37,93,85,74,61,127,65,73,111,
-41,63,77,32,94,127,73,62,62,62,42,40,127,42,75,30,30,118,26,21,75,
-80,62,19,126,91,41,91,86,2,43,30,111,126,42,95,21,95,63,93,37,93,
-44,59,126,44,123,78,90,74,78,42,126,41,77,73,76,63,36,93,23,21,93,
-68,59,72,123,93,23,93,122,93,90,63,93,37,93,82,127,92,54,29,119,92,
-62,42,94,54,29,119,92,21,119,109,127,109,119,21,76,119,95,116,91,117,75,
-92,55,127,84,91,117,27,42,30,107,126,107,30,42,74,66,94,123,94,34,74,
-127,85,117,95,65,127,85,32,46,58,47,122,46,32,9,121,85,95,81,117,9,
-68,92,55,44,121,73,111,64,62,122,82,3,122,82,10,125,62,90,47,90,70,
-106,42,95,64,95,10,106,65,63,109,61,5,127,41,82,127,10,127,36,127,68,
-82,127,62,90,47,90,70,74,74,95,40,95,74,74,64,127,36,36,127,72,100,
-117,0,88,61,82,72,86,84,62,66,58,91,46,90,64,62,74,90,47,90,70,
-9,55,49,46,63,122,46,53,127,88,61,82,72,86,42,117,42,127,0,127,42,
-23,125,55,125,7,125,87,127,21,127,73,79,73,111,18,123,54,126,90,47,94,
-107,98,42,127,0,127,42,90,122,47,42,47,122,78,73,56,95,91,86,123,86,
-42,106,63,0,127,42,42,85,63,9,127,9,59,84,26,127,73,56,93,79,92,
-84,27,86,60,91,46,90,12,127,58,15,106,47,106,64,63,43,43,127,87,83,
-10,125,86,55,86,63,94,26,127,10,127,36,127,68,64,127,85,7,125,87,80,
-69,127,85,0,125,87,85,64,63,5,125,87,85,127,82,86,87,62,86,87,82,
-32,120,46,59,110,56,32,26,127,8,10,85,75,8,53,127,46,58,47,122,46,
-127,81,79,65,95,81,89,65,57,65,127,73,73,67,100,79,125,85,0,122,85,
-66,58,14,91,90,78,42,127,21,127,42,119,42,82,42,90,95,46,63,90,82,
-127,21,127,10,82,127,2,93,119,58,46,58,93,119,88,64,61,82,72,70,88,
-40,63,45,127,45,63,40,36,43,46,124,43,62,42,73,58,113,87,117,87,113,
-26,127,84,114,85,54,84,92,55,44,127,85,119,93,95,60,70,42,94,41,93,
-42,117,73,127,73,127,72,1,125,85,87,85,125,1,107,106,17,75,84,41,19,
-4,126,43,122,95,42,82,124,68,47,106,64,106,85,26,127,81,23,119,23,81,
-36,21,76,127,8,20,34,117,0,81,23,119,23,81,81,23,119,93,62,2,125,
-81,55,85,119,21,55,81,40,42,122,79,26,42,80,107,106,21,17,127,17,21,
-42,86,61,4,11,82,126,64,62,126,54,123,42,122,82,127,122,95,122,95,122,
-84,62,122,46,31,46,122,53,127,8,70,95,34,20,2,122,95,122,95,122,2,
-86,125,122,95,122,95,122,86,125,82,30,22,29,84,42,126,47,2,43,126,46,
-78,123,46,69,87,125,85,66,29,95,10,103,126,117,112,87,117,5,117,87,112,
-26,127,26,127,26,74,37,74,51,78,117,101,62,69,117,0,80,30,22,29,84,
-117,72,95,42,93,23,93,68,66,53,60,53,126,68,70,90,54,63,54,74,70,
-94,72,63,26,93,23,93,51,46,126,18,92,35,94,85,62,125,127,85,61,65,
-17,17,9,127,1,9,17,4,126,1,10,82,127,2,36,63,36,62,107,46,56,
-72,74,42,31,42,74,72,92,55,44,53,125,55,12,6,114,94,123,94,114,6,
-3,113,95,123,95,113,3,18,10,63,10,126,10,58,64,62,18,126,43,74,126,
-6,127,10,55,18,122,50,82,127,72,42,31,42,72,82,62,95,50,92,35,94,
-74,58,21,20,117,26,10,18,118,95,82,94,119,18,117,0,34,42,105,59,33,
-66,66,45,16,45,66,66,20,123,6,44,75,126,10,64,62,122,86,59,94,114,
-64,60,4,124,63,58,122,82,90,91,62,91,90,82,107,98,42,127,98,127,42,
-66,126,53,53,55,124,64,95,31,101,125,84,63,69,74,58,63,90,64,95,68,
-32,62,42,107,46,56,32,127,37,27,126,9,66,127,4,126,21,51,46,126,18,
-82,127,107,62,106,62,106,68,117,125,84,15,52,69,43,94,42,62,42,126,42,
-10,118,55,126,119,6,126,106,62,107,58,107,58,106,10,110,107,14,127,37,27,
-72,90,63,42,10,82,127,26,127,63,77,127,45,127,64,63,77,127,45,127,64,
-42,46,59,42,43,126,42,110,118,47,106,87,110,34,4,126,69,36,31,36,69,
-113,87,117,87,113,14,127,10,125,68,83,46,94,66,14,127,113,87,117,87,113,
-64,63,85,127,89,41,91,18,123,22,113,87,119,113,127,21,127,83,46,94,66,
-18,123,54,83,46,94,66,41,119,69,87,45,95,65,117,64,63,20,119,20,127,
-90,90,63,22,127,22,54,82,127,74,112,79,32,64,117,0,90,63,22,127,54,
-4,126,65,112,79,32,64,23,127,36,83,46,94,126,66,29,95,126,9,66,127,
-72,68,43,24,75,124,8,62,34,62,83,46,94,126,30,30,74,62,43,62,74,
-36,63,74,62,43,62,74,6,127,74,62,43,62,74,82,127,68,59,72,123,4,
-74,86,47,26,38,95,74,10,118,94,127,90,118,10,53,126,69,59,72,123,4,
-42,103,58,63,58,103,42,42,117,68,59,72,123,4,22,74,87,55,83,126,22,
-66,66,46,19,46,66,66,127,43,59,56,123,11,127,125,37,21,15,21,69,125,
-4,126,85,61,20,125,20,80,94,22,22,29,85,80,36,63,63,109,53,125,39,
-13,54,30,117,26,53,11,17,19,21,127,21,19,17,29,86,62,21,122,21,27,
-26,127,125,21,15,85,125,66,90,127,66,126,83,74,118,90,43,118,83,46,90,
-127,85,55,120,23,69,127,127,27,79,90,112,95,74,36,37,22,127,22,37,36,
-65,125,45,47,45,125,65,4,126,63,54,46,123,46,72,95,91,106,78,91,78,
-84,62,126,110,59,110,58,85,63,117,80,94,123,30,71,61,85,119,14,64,127,
-13,118,126,117,122,117,11,66,62,43,14,91,46,90,68,123,86,12,119,94,66,
-4,126,33,31,117,55,113,74,82,94,43,94,66,74,64,63,20,20,23,116,4,
-68,59,30,124,59,126,98,42,117,33,31,117,55,113,73,58,81,73,71,81,95,
-73,58,96,95,109,85,109,73,58,81,79,123,91,121,4,126,65,87,63,71,65,
-94,53,127,92,114,79,126,92,55,44,94,61,119,92,20,84,62,21,124,18,20,
-55,126,55,126,93,63,77,4,126,81,55,125,55,80,106,109,122,42,127,42,123,
-86,125,122,42,127,42,123,127,69,125,95,125,71,127,82,127,122,42,127,42,123,
-40,94,72,127,42,26,40,0,122,42,127,42,43,122,18,123,54,122,127,42,123,
-45,127,122,42,127,42,123,53,127,98,62,95,94,98,42,90,63,94,127,26,42,
-42,26,79,110,79,26,42,74,26,111,14,79,26,74,64,62,2,66,95,34,83,
-42,26,111,110,111,26,42,8,56,47,59,105,127,40,84,3,22,60,91,126,18,
-18,118,95,86,95,118,18,12,127,98,31,122,63,94,4,126,21,46,119,46,20,
-4,115,86,86,94,66,94,80,87,53,125,53,87,80,20,62,119,62,95,41,91,
-40,26,46,127,46,26,40,70,66,86,127,86,98,70,56,63,40,42,117,43,40,
-19,22,46,123,46,18,19,67,62,86,127,62,86,127,64,62,10,118,95,70,94,
-82,127,4,119,94,66,94,82,127,20,46,119,46,20,66,62,75,122,92,35,94,
-66,34,30,11,74,122,2,64,63,85,127,63,85,127,117,0,72,106,95,42,72,
-117,0,4,119,94,66,94,66,14,74,11,90,14,66,9,55,49,4,115,86,94,
-42,117,72,57,90,117,91,127,21,127,4,115,86,94,74,74,59,46,43,106,10,
-62,42,63,66,63,42,126,82,54,75,90,119,78,82,78,123,46,42,117,43,40,
-42,46,114,79,26,46,82,107,106,66,62,11,74,122,72,94,119,86,119,94,72,
-42,106,63,42,127,37,27,86,125,42,42,117,43,40,122,93,90,4,115,86,94,
-64,63,93,31,113,127,64,127,21,127,127,94,23,118,64,53,37,87,77,69,64,
-2,62,66,67,66,66,66,4,126,27,78,59,110,26,10,110,107,110,14,64,127,
-36,63,20,66,62,75,122,92,55,44,66,62,75,122,14,127,7,125,85,125,7,
-98,62,74,91,106,26,98,6,127,2,62,67,66,66,65,63,85,53,93,119,17,
-72,91,47,123,47,91,72,82,94,91,122,87,85,95,82,82,63,122,63,82,82,
-26,127,20,46,119,46,20,7,125,85,85,85,125,7,42,117,40,66,62,75,122,
-127,21,127,66,62,75,122,127,21,127,90,127,74,37,107,106,82,63,122,63,82,
-42,86,61,94,43,106,94,70,126,45,40,45,123,71,86,125,54,46,125,44,38,
-127,37,27,66,62,75,122,30,18,94,36,31,36,69,90,82,63,90,93,23,93,
-36,20,127,0,127,72,100,4,126,75,94,59,94,75,0,0,127,4,8,16,0,
-84,71,85,103,85,71,84,82,127,75,94,59,94,75,34,26,127,10,127,8,16,
-23,127,68,95,34,94,66,127,85,127,78,103,94,84,53,127,8,70,95,86,40,
-84,118,125,54,126,66,126,44,102,119,44,98,31,126,101,16,68,91,41,95,68,
-73,55,29,108,107,100,8,36,63,31,101,77,125,111,14,127,84,51,31,115,84,
-42,106,54,59,118,42,42,34,18,42,127,42,18,34,21,111,127,53,127,53,127,
-64,63,5,25,1,127,64,68,114,85,124,85,126,68,64,62,42,126,107,62,42,
-64,62,74,62,107,126,42,64,62,74,62,59,126,74,64,62,42,126,43,126,42,
-36,63,95,85,127,85,95,92,55,76,42,127,42,72,62,42,126,42,127,42,72,
-26,127,68,95,34,94,66,12,59,46,62,106,126,42,30,18,95,85,127,85,95,
-26,127,82,30,31,30,82,42,26,111,126,47,122,26,127,21,127,82,95,62,83,
-26,127,70,34,31,122,70,66,29,95,18,127,42,122,26,127,74,121,65,127,73,
-93,31,94,55,82,119,30,26,127,68,43,30,18,127,34,90,62,67,126,10,50,
-4,126,69,87,61,87,68,64,65,45,17,41,71,64,82,127,66,42,127,42,66,
-66,74,42,127,42,74,66,101,16,66,42,127,42,66,73,56,68,83,110,102,114,
-4,126,17,15,85,77,23,122,42,95,122,47,122,122,64,62,106,126,107,126,106,
-65,33,31,5,69,125,1,6,127,76,95,45,95,76,117,0,122,47,58,47,122,
-117,0,76,95,45,95,76,66,90,95,46,95,90,66,30,18,94,42,127,42,72,
-72,74,42,127,42,74,72,78,63,110,90,127,90,104,63,73,73,73,73,79,96,
-36,107,62,44,59,110,34,56,63,63,21,127,21,31,22,106,94,115,86,98,22,
-86,74,94,123,94,42,70,117,40,26,78,63,78,26,42,42,127,86,63,74,74,
-53,127,100,42,77,94,100,127,21,127,122,10,53,85,92,55,44,70,95,34,20,
-53,126,21,42,42,126,85,64,127,85,29,53,87,80,127,85,127,127,85,61,87,
-41,93,123,84,59,86,122,26,78,91,126,59,14,26,107,62,106,62,106,62,106,
-36,52,46,125,44,42,36,40,41,25,75,125,11,24,86,58,127,23,91,46,118,
-117,101,62,69,94,23,118,26,127,34,78,123,14,34,92,55,44,9,119,45,123,
-92,55,44,126,91,58,94,83,81,31,27,31,81,83,32,36,19,125,85,83,112,
-52,52,50,5,118,20,52,31,21,95,32,31,85,127,71,117,87,120,87,117,79,
-73,56,85,76,127,76,85,86,125,54,20,123,85,115,30,30,64,30,87,22,112,
-92,55,44,69,87,125,85,20,19,127,10,127,72,100,117,62,86,62,86,63,82,
-66,94,53,29,119,92,96,26,127,48,30,123,30,48,42,117,48,30,123,30,48,
-42,117,40,125,87,125,125,125,69,125,87,125,69,125,82,47,90,125,87,125,125,
-82,127,82,95,54,95,82,26,127,82,95,54,95,82,66,58,15,74,95,42,90,
-82,94,122,91,58,90,82,68,117,85,125,87,117,68,40,42,42,126,85,85,84,
-85,62,69,116,125,119,68,2,126,90,91,90,122,2,42,125,127,13,57,45,127,
-42,127,42,42,126,85,84,90,90,47,90,127,42,90,4,126,107,98,26,111,106,
-34,18,10,127,10,18,34,87,31,87,18,79,18,83,0,127,85,85,85,85,127,
-74,90,86,127,86,90,74,36,19,78,34,30,66,126,122,93,86,61,20,125,20,
-66,66,34,31,122,67,98,65,63,85,85,61,87,81,53,126,21,73,63,81,127,
-66,127,42,47,42,127,74,127,5,119,80,119,5,127,127,37,119,72,103,37,127,
-42,117,66,46,19,46,66,127,5,7,0,7,69,127,72,71,42,30,18,82,126,
-8,8,62,72,95,68,108,113,0,8,108,107,100,8,18,122,6,83,94,42,90,
-42,58,53,116,5,122,42,33,63,45,127,17,127,27,95,85,127,95,73,125,27,
-93,119,36,91,126,10,50,76,75,42,30,42,74,72,64,63,1,125,69,93,97,
-10,125,68,91,41,95,68,42,117,40,4,11,82,126,86,90,63,118,63,90,86,
-106,107,64,63,5,29,103,119,125,87,32,117,127,87,46,51,46,122,47,122,8,
-26,127,94,61,0,127,31,86,106,95,54,91,38,94,86,125,54,121,70,127,118,
-6,127,4,114,117,6,116,100,60,90,93,102,28,100,117,0,126,74,127,74,126,
-84,62,90,58,71,90,106,106,107,4,114,117,6,116,45,127,45,114,117,6,116,
-30,18,30,127,74,127,74,4,126,19,126,75,74,122,4,126,89,95,47,95,89,
-80,93,53,29,23,93,112,34,82,79,90,42,90,66,38,42,30,123,42,122,6,
-126,90,85,127,90,85,126,100,46,65,78,106,5,107,89,89,47,95,63,73,89,
-82,127,36,63,45,127,36,18,10,127,42,42,122,2,26,127,126,74,127,74,126,
-117,0,80,93,61,87,125,117,0,125,21,125,23,125,85,62,123,95,74,95,122,
-122,95,78,123,68,63,69,126,74,74,127,74,74,126,18,123,22,18,127,74,122,
-18,123,54,9,100,105,18,107,98,90,55,31,55,106,73,56,82,111,90,119,94,
-60,87,85,93,87,92,96,84,93,127,85,127,37,27,18,111,82,127,74,127,74,
-121,47,111,121,78,123,110,0,72,68,75,42,18,14,8,9,75,125,11,9,24,
-84,52,86,125,22,52,84,16,16,31,90,122,18,16,10,103,106,107,106,103,10,
-94,85,26,31,26,85,95,8,73,125,27,93,23,93,4,126,63,122,46,127,122,
-68,108,83,40,98,31,126,68,92,55,44,74,62,73,38,42,118,107,118,42,38,
-64,62,122,46,127,46,122,82,127,36,95,53,87,116,82,127,104,74,126,73,107,
-82,127,90,54,11,126,86,62,42,62,37,119,125,87,26,127,36,95,53,87,116,
-26,127,90,47,126,47,90,117,0,34,43,126,43,34,117,0,38,22,107,118,38,
-76,63,38,22,107,118,38,64,63,21,127,21,85,127,102,42,110,59,110,42,102,
-34,42,43,126,42,43,34,74,60,63,42,117,127,87,82,94,51,118,55,86,82,
-38,42,119,106,119,42,38,81,87,117,95,53,87,81,106,107,96,74,126,73,107,
-119,125,43,124,21,127,125,73,56,106,74,126,73,107,127,27,36,95,53,87,116,
-42,26,123,126,58,91,42,100,61,90,69,83,14,86,82,127,62,17,126,2,30,
-18,105,100,105,68,59,70,117,0,72,74,62,73,72,117,0,18,105,100,105,18,
-73,91,117,95,123,85,79,81,91,21,31,27,85,87,117,0,70,50,71,126,86,
-47,117,39,125,87,125,87,78,123,87,29,119,21,87,18,123,87,53,127,53,87,
-82,86,50,127,50,86,82,82,86,51,126,51,86,82,66,46,127,46,93,23,93,
-6,114,87,119,83,118,6,117,0,16,106,101,107,16,42,117,16,106,101,107,16,
-86,2,43,106,87,110,34,125,111,125,10,101,107,16,4,118,94,117,127,64,96,
-30,86,61,0,127,5,31,67,62,90,127,58,126,67,26,127,127,43,124,43,127,
-117,0,79,105,96,107,74,66,94,119,98,111,74,74,126,86,55,122,55,86,126,
-71,71,61,56,123,70,102,36,21,127,21,14,64,127,66,78,90,63,74,78,66,
-64,63,43,119,95,43,91,42,42,38,111,62,38,42,90,87,63,122,55,80,95,
-42,62,95,85,127,85,95,42,62,114,94,123,62,114,84,62,42,122,39,90,122,
-82,62,122,95,58,94,82,18,123,54,95,85,127,95,64,95,85,127,85,95,64,
-114,94,123,54,127,126,75,127,27,84,78,103,94,84,10,125,42,42,127,46,36,
-34,54,42,119,34,54,34,66,70,122,67,114,78,66,42,118,43,42,127,58,34,
-82,127,34,78,123,14,34,62,62,62,10,101,107,16,86,109,116,107,87,0,127,
-117,0,74,62,123,6,106,117,0,14,122,121,119,15,42,62,74,62,123,6,106,
-14,122,89,116,89,119,15,9,55,113,42,110,11,106,53,126,67,126,99,94,66,
-127,27,72,90,117,91,72,8,58,46,59,110,122,72,10,126,43,126,10,119,93,
-4,126,1,119,93,85,119,64,60,100,60,95,90,106,98,31,122,20,123,38,82,
-64,60,36,116,63,58,106,1,1,65,125,5,3,1,90,78,42,11,106,78,90,
-4,126,75,30,107,30,74,125,53,37,63,37,53,125,113,0,40,90,47,90,72,
-86,10,62,107,62,10,86,53,126,37,42,32,127,16,85,80,57,119,57,95,84,
-117,0,34,78,123,14,34,85,74,61,20,125,22,125,84,62,74,30,107,30,74,
-127,85,127,30,107,30,74,53,127,40,90,47,90,72,53,126,69,95,125,95,68,
-64,126,90,27,58,94,64,107,106,34,78,123,14,34,73,56,106,94,107,94,106,
-68,95,85,125,85,95,68,127,27,40,90,47,90,72,22,117,54,65,29,23,93,
-66,34,26,7,2,66,126,42,117,84,37,125,39,84,4,126,117,50,117,54,116,
-64,63,95,85,127,85,95,34,26,127,18,10,127,18,117,34,26,127,26,127,18,
-76,63,85,50,39,114,37,42,62,26,127,26,127,18,127,85,119,93,100,111,110,
-45,127,45,114,53,118,116,127,37,91,50,39,114,37,93,31,85,50,39,114,37,
-126,59,46,85,50,39,117,42,62,14,122,121,119,15,40,87,69,103,69,87,40,
-117,0,33,95,85,61,87,80,23,29,119,21,15,80,85,82,63,82,93,23,93,
-20,20,18,117,22,20,52,4,126,21,18,117,22,52,4,126,73,55,29,78,127,
-113,0,20,18,117,22,52,127,101,29,117,98,31,126,23,114,54,67,26,30,91,
-6,127,20,18,117,22,52,42,62,20,18,117,22,52,18,123,22,0,127,64,96,
-18,18,27,118,27,18,50,86,125,54,18,117,22,52,42,111,42,90,127,46,84,
-22,18,31,119,27,22,54,86,98,87,119,83,102,86,67,61,119,92,23,125,87,
-126,84,111,122,22,117,54,64,63,117,95,85,95,117,64,63,69,111,69,127,85,
-73,55,29,1,14,64,127,84,82,56,31,20,82,116,73,23,77,1,70,16,95,
-85,59,119,81,54,80,95,64,62,82,54,127,62,90,106,34,78,67,110,2,106,
-6,127,85,50,39,114,37,117,0,121,82,94,127,82,76,63,66,46,127,46,66,
-68,59,86,60,127,54,94,42,117,66,46,127,46,66,33,63,127,90,53,122,53,
-82,54,67,90,127,90,90,73,56,82,94,127,94,82,86,125,86,46,127,46,66,
-0,112,87,93,85,87,112,18,110,125,109,127,108,16,26,127,18,110,125,111,16,
-76,63,68,61,21,21,29,95,21,95,10,101,107,16,119,125,87,10,101,107,16,
-94,106,95,55,107,126,38,70,75,42,31,74,123,6,84,94,118,95,54,94,84,
-64,62,122,94,35,126,54,16,85,61,23,125,21,16,126,75,46,64,63,85,127,
-26,127,85,122,87,50,85,26,127,62,43,14,127,27,117,0,126,90,59,94,64,
-117,64,63,107,123,43,107,54,46,42,127,42,42,38,85,74,61,126,90,59,94,
-20,19,62,52,123,86,82,40,26,10,127,94,90,73,42,62,43,62,50,123,45,
-78,123,61,20,125,22,125,126,75,110,0,127,37,27,66,34,26,3,26,34,66,
-66,63,118,92,22,127,86,18,123,86,37,125,39,84,127,21,127,66,63,66,126,
-86,125,86,37,125,39,84,106,107,116,50,117,54,116,12,127,90,119,95,55,90,
-36,21,127,21,126,66,126,106,107,4,118,94,117,4,69,109,75,127,89,91,69,
-95,21,95,18,127,42,122,127,21,127,34,119,34,118,106,46,78,66,107,6,107,
-26,127,42,38,115,46,40,82,14,91,30,90,23,122,65,81,79,85,109,93,65,
-65,127,107,107,107,127,65,66,29,95,11,63,44,107,107,98,22,26,123,86,86,
-90,74,63,118,63,74,90,66,62,87,58,79,58,90,26,127,86,42,123,74,94,
-117,0,10,62,51,62,106,9,55,49,86,42,123,94,127,21,127,86,42,123,94,
-18,18,18,18,15,50,67,1,29,17,31,21,85,113,73,73,69,127,65,69,73,4,4,2,125,2,4,4,
-30,80,63,0,127,16,30,0,0,2,4,24,0,0,18,82,63,22,18,127,18,0,64,64,32,31,0,0,
-64,67,44,16,44,67,64,44,62,6,126,5,61,44,84,94,38,126,37,93,84,
-114,85,55,125,2,127,64,0,0,64,127,0,0,0,73,125,43,94,125,47,80,
-18,22,90,127,58,62,18,106,93,106,9,75,125,27,34,42,42,34,15,50,67,
-8,9,73,127,9,9,8,93,85,119,65,119,85,93,89,89,103,125,109,85,109,8,8,8,14,8,8,8,
-66,66,58,11,122,66,98,66,62,90,123,26,62,66,26,46,42,123,90,78,90,
-66,78,126,91,126,78,66,64,48,15,80,32,31,96,4,126,65,63,1,71,124,
-64,63,65,33,31,33,65,4,126,1,0,127,8,16,4,126,1,66,63,66,126,
-4,126,67,42,31,34,66,4,126,17,77,63,65,127,4,126,1,69,63,81,127,
-4,126,9,10,126,9,8,4,126,69,58,1,122,4,4,126,67,58,11,122,66,
-4,126,77,43,31,42,72,4,126,5,116,95,116,4,12,127,90,63,22,127,54,
-4,126,5,27,26,66,126,4,126,7,122,83,74,102,4,126,1,6,74,123,14,
-4,126,3,106,111,106,2,4,126,9,74,85,43,24,4,126,77,43,127,42,72,
-4,126,23,26,123,86,86,12,127,74,63,0,127,74,4,126,127,53,125,53,127,
-4,126,1,125,87,85,125,4,126,1,18,127,42,122,12,127,34,43,126,43,34,
-82,78,50,127,50,78,82,116,52,114,53,118,52,116,4,126,81,106,127,110,84,
-4,126,1,95,53,117,95,4,126,1,86,93,52,86,68,51,68,127,85,127,64,
-4,126,35,41,107,57,34,4,126,93,54,29,119,92,4,126,125,21,125,23,125,
-4,126,95,85,127,85,95,4,126,53,127,21,78,127,12,127,90,43,126,43,110,
-4,126,35,62,127,62,34,4,126,19,90,23,122,18,4,126,65,63,107,95,107,
-4,126,63,101,77,125,111,4,126,95,53,16,117,95,4,126,71,86,115,86,70,
-4,126,51,46,115,46,50,4,126,43,38,115,46,40,4,126,41,127,74,49,79,
-12,127,124,87,85,87,124,4,126,9,122,63,122,8,4,126,33,60,119,62,34,
-4,126,47,58,47,122,46,4,126,63,114,11,82,122,4,126,127,7,0,71,127,
-4,126,125,53,127,53,125,4,126,127,73,111,87,105,4,126,127,43,88,45,95,
-4,124,86,93,86,124,4,4,126,15,106,112,111,10,4,126,59,14,91,78,42,
-4,126,17,63,45,79,120,12,127,58,47,122,63,94,4,126,41,26,111,122,105,
-4,126,101,43,78,82,110,4,126,5,115,117,38,84,4,126,95,42,127,106,94,
-12,127,86,35,86,63,94,4,126,19,62,87,126,19,4,126,127,113,71,119,113,
-12,127,74,63,106,63,94,92,52,94,5,94,52,92,4,126,21,111,87,79,21,
-4,126,19,62,95,118,26,4,126,85,126,91,62,84,4,126,19,126,87,126,18,
-4,126,83,29,87,29,114,4,126,93,62,23,126,92,12,127,20,111,118,111,22,
-12,127,10,119,90,119,10,4,126,75,94,123,94,74,4,126,65,59,59,59,65,
-4,126,1,73,127,127,73,4,126,93,54,93,54,92,12,127,116,31,42,31,122,
-12,127,54,119,86,55,86,4,126,79,105,96,107,74,4,126,75,54,43,118,10,
-4,126,53,54,95,118,20,12,127,26,79,94,63,26,4,126,113,119,7,119,112,
-4,126,91,62,91,126,85,4,126,127,85,30,125,87,4,126,127,63,122,47,91,
-4,126,87,26,95,26,87,64,32,31,0,127,64,96,65,33,31,1,127,65,97,
-64,94,53,16,117,95,96,68,94,53,20,117,94,100,66,94,53,125,87,116,92,
-66,58,119,90,58,119,90,74,62,123,94,62,123,94,125,29,37,127,29,37,125,
-116,53,115,37,86,36,84,4,6,29,20,85,114,4,42,106,63,56,63,106,42,
-127,1,1,1,1,65,127,127,1,63,43,47,65,127,72,63,73,127,63,73,127,
-32,126,42,63,42,126,32,127,5,59,41,63,69,127,14,122,10,47,42,122,14,
-42,122,47,58,47,122,42,72,91,53,29,117,95,96,12,4,4,4,4,4,12,
-75,89,55,31,119,93,99,83,53,117,65,109,87,107,43,41,87,79,59,17,43,
-35,93,27,89,31,81,115,83,53,127,125,63,117,51,0,0,97,18,8,0,0,
-97,18,72,74,63,78,72,97,18,65,89,87,117,77,113,0,30,18,127,18,30,
-113,0,20,76,127,20,34,113,0,79,57,9,121,79,113,0,73,55,29,78,127,
-113,0,127,117,111,117,127,113,0,34,78,123,14,34,113,0,82,30,123,30,82,
-64,63,1,1,1,127,64,64,60,84,44,95,122,74,64,63,41,125,41,127,64,
-68,78,53,22,126,85,68,64,63,93,119,93,127,64,127,64,64,64,64,64,127,
-124,121,105,125,87,105,124,65,37,25,15,17,81,127,10,74,62,9,14,64,127,
-72,42,31,46,14,64,127,36,83,46,94,126,0,127,106,95,42,65,63,65,127,
-8,127,63,9,127,14,127,4,118,94,117,14,64,127,10,54,59,54,106,0,127,
-84,53,122,53,94,0,127,85,62,125,69,63,81,127,85,91,117,91,81,14,127,
-90,55,90,64,78,96,127,66,46,127,42,78,0,127,18,90,23,122,30,64,127,
-39,93,53,119,14,64,127,82,94,55,30,18,95,114,75,90,107,58,47,64,127,
-74,47,115,47,74,0,127,18,123,86,123,30,64,127,82,61,126,61,94,0,127,
-77,31,125,31,77,0,127,92,54,93,54,94,0,127,92,54,93,62,101,31,127,
-92,54,93,62,105,31,127,92,86,61,94,101,31,127,84,95,59,16,22,91,118,
-74,54,43,118,14,64,127,86,59,86,63,22,123,22,86,59,86,62,126,123,22,
-4,27,90,126,98,31,126,117,83,119,66,63,66,126,106,111,106,66,63,66,126,
-18,85,76,55,92,117,18,85,91,117,91,98,31,126,34,78,123,14,98,31,126,
-64,127,87,63,107,31,120,77,86,53,28,85,118,13,74,58,63,74,63,66,126,
-82,61,126,61,98,31,126,126,45,46,84,59,82,114,17,75,85,43,98,31,126,
-82,31,95,18,98,31,126,127,109,63,109,98,31,126,38,127,122,87,102,31,126,
-4,3,2,2,2,66,126,36,19,78,42,30,82,126,4,59,54,42,54,66,126,
-4,127,86,126,86,126,126,4,107,42,126,106,2,126,4,107,122,122,106,2,126,
-10,54,55,106,4,123,94,8,63,72,68,68,66,96,127,65,65,65,65,65,65,
-127,65,95,85,127,85,95,127,107,69,127,85,127,85,127,65,101,95,95,101,65,
-127,65,105,93,111,93,105,1,63,65,65,65,65,65,127,65,113,119,69,119,113,
-42,42,38,115,46,40,44,72,63,8,127,8,127,8,4,127,68,127,68,127,4,
-16,82,58,23,18,122,16,121,9,9,127,72,72,79,41,32,36,127,42,47,42,
-2,2,2,127,10,18,2,0,0,127,1,17,31,0,64,62,6,126,77,93,100,72,71,42,30,127,1,31,
-18,105,100,9,127,1,31,42,25,124,75,92,25,42,64,63,1,1,1,1,1,
-64,63,69,63,69,105,85,64,63,95,21,95,1,125,64,63,65,83,47,95,67,
-64,63,91,53,75,61,77,64,63,85,31,95,61,115,64,63,125,59,125,39,93,
-64,96,88,71,80,32,64,44,26,79,90,45,26,44,84,51,94,124,59,86,50,
-68,79,94,43,94,79,74,78,77,88,47,88,77,79,76,79,93,45,93,79,76,
-74,71,90,45,90,71,74,30,18,30,1,65,127,1,30,18,94,33,31,65,127,
-30,30,64,63,0,63,64,30,18,94,49,15,48,64,30,30,8,73,127,9,8,
-30,30,20,19,127,18,16,30,30,40,47,89,127,9,30,30,64,62,10,121,8,
-30,30,66,58,11,122,66,30,30,81,125,11,127,64,30,30,68,62,5,124,70,
-30,18,126,21,15,84,124,30,30,68,59,72,123,4,18,114,118,107,118,114,18,
-30,18,94,63,5,29,103,30,30,40,93,125,16,40,30,30,1,29,21,93,127,
-10,123,85,91,84,115,20,30,30,74,110,83,42,66,30,30,64,62,66,62,97,
-30,18,31,21,127,21,31,14,120,95,90,80,127,10,71,69,63,8,127,69,103,
-30,18,62,42,127,42,62,30,30,64,127,85,127,64,30,30,92,55,76,49,79,
-30,30,118,68,127,68,118,30,18,126,1,10,82,127,30,18,30,4,123,90,94,
-30,30,72,90,127,90,72,11,11,63,44,47,107,11,64,62,106,106,66,63,82,
-30,30,69,87,125,83,69,30,30,74,86,35,86,74,30,30,82,31,18,31,82,
-30,30,4,114,85,118,4,9,112,84,91,86,122,6,64,63,25,39,80,71,87,
-30,18,125,95,69,95,125,30,30,22,26,123,86,86,30,30,40,26,111,74,73,
-120,15,121,95,123,15,120,30,18,30,125,0,69,125,9,127,93,127,9,127,9,
-30,30,38,126,37,63,85,30,30,72,45,122,45,104,30,30,20,125,87,125,16,
-30,30,65,87,63,71,65,30,30,40,26,47,122,41,87,85,87,56,87,93,87,
-30,18,126,42,127,42,123,30,30,85,61,23,125,21,30,30,98,31,122,41,82,
-30,82,63,65,85,127,85,30,30,51,62,42,127,31,30,30,70,86,115,86,70,
-8,4,127,90,95,122,10,30,18,93,43,93,43,93,30,30,32,60,119,62,34,
-30,30,85,34,25,34,85,30,30,112,106,65,109,123,30,30,100,42,77,94,100,
-30,30,33,95,85,61,87,30,94,37,127,21,46,78,30,30,44,86,125,39,85,
-30,30,38,106,87,110,38,30,18,30,106,101,107,16,30,82,62,106,106,63,82,
-30,18,31,125,47,125,15,26,106,126,107,122,110,26,30,30,53,127,76,63,68,
-30,30,107,58,107,42,107,30,18,126,43,14,127,31,39,61,55,124,55,61,39,
-30,30,26,110,59,110,26,30,30,122,42,119,42,122,30,30,117,51,117,38,84,
-30,82,46,127,42,78,127,30,30,90,46,11,110,90,30,30,64,30,91,30,112,
-30,30,80,94,59,94,80,30,30,74,59,94,123,90,30,30,81,93,47,93,65,
-30,30,20,110,127,118,21,30,30,75,90,127,90,107,30,30,88,19,30,30,82,
-30,18,127,113,71,119,113,30,30,74,63,106,63,94,30,30,72,58,63,58,72,
-30,30,98,31,122,63,86,30,82,46,127,78,59,70,94,62,58,126,59,126,58,
-30,30,101,82,94,127,82,30,30,90,106,95,106,90,20,119,119,28,119,119,20,
-13,102,109,124,109,102,13,30,30,79,58,56,127,10,30,18,95,26,95,62,121,
-30,18,45,127,63,21,127,30,30,107,62,106,62,106,30,30,106,62,91,94,106,
-30,30,82,31,120,26,87,30,94,56,106,7,110,116,30,30,107,94,120,91,110,
-30,18,94,55,125,55,92,30,30,114,31,86,31,114,30,18,30,86,127,26,22,
-30,30,56,110,59,110,56,30,30,38,85,106,87,127,30,30,76,46,127,94,76,
-30,30,76,46,127,94,92,30,30,82,31,86,31,82,122,21,127,91,112,31,119,
-30,30,87,123,84,51,87,64,63,47,122,83,43,90,36,103,127,28,127,103,36,
-30,18,126,45,15,93,126,30,18,62,117,39,63,117,30,94,54,123,54,126,85,
-30,18,45,127,46,95,126,30,30,82,127,90,55,90,30,95,21,95,2,109,110,
-30,82,63,91,127,59,119,30,30,10,127,94,107,127,127,65,65,65,65,65,127,
-127,73,125,67,127,101,127,127,73,77,123,77,89,127,127,69,107,89,127,77,127,
-127,85,79,117,117,65,127,127,85,127,119,123,81,127,127,85,93,119,93,85,127,
-127,85,127,125,111,85,127,127,109,109,69,95,101,127,127,85,93,87,127,85,127,
-127,97,95,91,95,97,127,127,85,93,95,125,85,127,127,73,127,109,127,73,127,
-26,118,122,95,122,118,26,127,85,127,111,95,101,127,36,63,84,49,15,48,64,
-36,63,21,1,127,5,9,36,63,124,64,127,64,124,36,63,84,35,30,34,70,
-36,63,84,62,10,121,8,36,63,84,124,64,127,68,36,63,17,9,127,9,17,
-36,63,18,127,74,127,2,84,94,102,126,101,93,84,68,94,81,122,83,86,75,
-36,63,126,90,47,90,70,36,63,20,126,9,66,127,36,63,4,123,90,66,94,
-36,63,74,86,43,50,74,36,63,20,127,85,53,95,36,63,10,125,0,69,125,
-36,63,69,87,125,83,69,36,63,84,61,20,125,20,36,63,20,8,127,26,42,
-36,63,84,94,53,84,86,36,63,66,62,29,87,124,36,63,122,42,127,42,123,
-36,63,10,41,75,125,10,36,63,20,42,77,123,8,81,95,91,113,91,95,81,
-36,63,18,123,2,127,82,36,63,50,46,115,46,50,36,127,63,85,63,85,127,
-36,63,20,93,95,127,93,36,63,20,120,15,105,127,36,63,36,95,58,94,114,
-68,94,85,111,93,79,84,36,63,84,30,91,30,112,77,70,85,124,85,70,77,
-85,64,75,126,94,94,74,78,89,58,46,91,41,91,36,63,62,106,47,122,40,
-36,63,20,119,71,125,87,74,78,95,106,71,93,69,87,95,87,96,85,95,77,
-36,63,127,3,56,59,127,36,63,84,60,68,111,74,36,63,30,61,84,125,30,
-36,63,80,94,63,86,94,36,63,42,110,95,42,78,36,63,122,118,91,118,122,
-36,63,82,55,126,127,18,95,75,64,106,95,90,90,86,74,66,107,94,94,86,
-80,79,91,123,85,79,85,86,91,95,106,87,73,87,36,63,84,106,127,110,84,
-36,63,126,74,63,62,74,88,95,93,103,93,95,88,36,63,31,69,87,103,85,
-36,63,76,111,85,63,76,36,63,54,126,91,62,86,74,94,75,126,66,91,85,
-87,52,127,4,68,127,68,90,106,122,79,122,106,90,90,74,122,95,122,74,90,
-36,63,20,9,119,45,123,90,106,122,95,122,106,90,20,118,118,31,86,118,20,
-72,68,43,18,42,70,64,74,68,43,18,42,70,64,66,82,93,47,95,78,64,
-68,84,85,45,47,28,4,74,86,95,42,46,31,10,72,43,127,43,82,45,27,
-72,74,42,31,42,78,72,72,74,42,30,41,73,72,42,42,38,115,38,42,42,
-10,10,54,51,54,106,10,82,78,82,63,82,78,82,8,122,94,123,14,122,8,
-74,82,94,51,94,82,74,82,94,93,53,95,92,80,74,74,86,123,86,74,74,
-84,83,85,59,81,89,82,75,86,95,50,90,95,74,74,90,54,123,86,122,26,
-82,94,93,52,93,94,82,80,94,94,63,86,94,80,91,86,95,54,93,95,84,
-10,122,102,123,90,102,106,68,92,55,44,9,127,9,68,92,55,44,11,82,126,
-87,52,127,68,92,55,76,4,126,1,84,125,53,84,4,126,83,126,91,58,82,
-92,55,44,127,36,127,68,68,92,55,44,95,85,95,92,55,60,47,105,127,40,
-95,60,66,94,63,86,114,82,86,119,94,54,87,82,95,60,73,63,9,127,9,
-95,60,126,1,74,126,73,95,60,74,63,0,127,74,95,60,38,126,37,63,85,
-68,92,55,124,43,43,120,85,80,122,88,55,84,82,95,60,85,63,85,127,27,
-68,92,55,44,62,47,110,92,55,44,95,53,95,127,95,60,127,27,29,85,127,
-95,60,74,89,123,89,74,95,60,86,42,123,74,94,95,60,33,63,127,18,46,
-85,87,127,85,59,85,91,95,60,46,58,47,122,46,74,86,127,90,54,95,74,
-92,55,76,63,5,119,119,92,55,44,79,109,107,79,95,60,42,127,58,127,42,
-92,55,44,93,119,93,119,95,60,78,89,46,89,79,92,55,44,95,21,95,117,
-92,55,44,93,23,87,117,95,60,127,113,71,119,113,95,60,53,30,123,30,53,
-95,60,46,127,42,63,94,95,60,81,23,119,23,81,95,60,127,35,24,59,127,
-95,60,127,43,124,43,127,95,60,122,23,91,23,122,95,60,35,63,124,63,35,
-84,95,123,80,54,91,86,87,63,92,55,76,63,119,95,60,71,63,118,63,92,
-95,60,78,58,55,58,70,95,60,56,110,59,110,56,95,60,46,127,90,25,91,
-95,60,54,126,91,62,86,95,60,85,126,85,63,84,95,60,38,115,39,115,118,
-16,17,81,125,11,9,8,40,41,39,105,59,42,38,20,19,85,119,29,17,18,
-44,38,46,111,62,38,44,42,46,43,110,59,37,43,81,125,75,86,43,50,74,
-34,46,107,62,19,126,64,34,42,55,114,58,55,34,94,61,126,33,107,57,34,
-44,38,45,110,61,39,44,34,50,54,107,54,50,34,81,125,11,102,43,127,110,
-24,8,8,12,8,8,24,6,58,82,83,74,74,102,6,126,86,119,94,66,6,
-70,62,118,87,54,82,70,78,90,54,31,118,94,102,86,54,86,99,94,106,70,
-38,18,126,91,126,90,86,70,42,78,123,94,74,70,86,54,126,43,126,42,70,
-86,54,126,43,126,122,38,70,74,62,55,62,74,70,86,54,126,3,90,42,94,
-86,90,94,59,94,90,86,22,18,78,87,42,22,22,38,90,22,83,30,82,118,
-38,42,126,95,62,90,70,86,126,54,51,62,122,70,86,126,54,59,54,122,70,
-90,55,90,64,74,98,127,87,52,127,8,42,77,123,18,18,62,95,118,26,18,
-75,94,59,46,9,82,127,36,27,66,126,2,10,50,114,95,114,95,70,47,20,
-66,66,34,31,122,66,98,66,63,122,67,64,106,85,64,63,5,5,5,5,7,
-68,85,53,31,21,31,4,64,63,125,85,5,125,87,64,63,123,83,127,83,123,
-64,63,83,55,127,51,87,64,63,67,63,43,63,67,64,63,43,119,91,47,91,
-64,63,107,63,43,127,43,64,63,107,59,15,111,59,64,63,87,123,63,75,127,
-94,80,48,31,16,16,30,56,32,63,32,127,64,96,72,79,44,31,12,79,120,
-56,63,4,35,86,78,98,67,34,94,83,38,94,67,11,26,86,83,54,26,11,
-100,82,85,108,85,94,100,84,87,118,95,54,87,84,56,63,126,74,127,74,126,
-56,63,56,126,74,94,105,56,63,56,126,75,74,126,56,63,21,19,127,19,21,
-56,63,56,127,85,61,87,56,63,84,62,21,124,22,56,63,56,112,95,84,116,
-19,18,106,111,106,18,19,56,63,40,106,47,122,40,43,46,126,11,94,42,87,
-56,63,82,78,63,78,82,56,63,65,87,63,71,65,56,63,2,125,42,125,2,
-67,30,86,23,86,22,115,56,63,18,105,100,105,18,43,62,42,127,42,62,43,
-56,63,64,63,85,127,85,127,106,78,123,78,106,127,11,122,94,123,10,126,11,
-75,106,90,119,90,106,75,56,63,31,101,77,125,111,67,126,90,11,122,94,83,
-19,10,126,87,126,86,67,56,63,42,41,123,57,18,56,63,40,90,47,90,72,
-11,122,54,115,54,122,11,56,63,116,50,117,54,116,19,122,82,123,78,58,91,
-28,116,95,101,95,116,28,56,63,120,75,127,43,120,56,63,64,63,5,119,119,
-67,90,58,31,122,90,99,75,58,74,95,122,90,75,56,63,56,93,119,93,119,
-56,63,127,113,71,119,113,43,58,126,43,30,118,19,56,63,42,62,123,62,42,
-56,63,92,62,23,126,92,56,63,69,91,105,90,69,56,63,42,123,46,59,90,
-56,63,92,54,93,54,92,87,74,54,107,106,62,75,127,54,82,87,106,86,83,
-95,58,90,119,54,94,87,56,63,94,17,22,29,95,56,63,82,94,45,127,86,
-91,118,62,87,58,126,91,79,26,90,3,90,30,91,10,125,74,119,87,106,29,
-67,62,46,123,94,46,91,8,20,107,20,107,20,99,80,77,81,127,81,77,80,
-61,73,73,73,73,79,96,64,62,126,86,93,85,92,16,126,54,102,45,117,16,
-26,106,47,127,47,111,26,14,127,76,43,31,42,72,10,62,27,118,27,53,11,
-48,30,26,123,26,30,48,26,119,63,122,55,127,26,14,127,4,127,74,127,74,
-14,127,64,63,91,119,83,14,127,40,58,47,122,46,14,127,64,60,55,62,66,
-14,127,83,29,21,29,83,14,127,127,109,79,85,127,14,127,76,95,45,95,76,
-14,127,10,111,110,63,85,14,127,74,94,123,94,74,2,61,30,117,26,53,11,
-10,63,26,112,22,58,15,9,127,9,0,9,127,9,16,84,61,20,22,125,20,
-64,68,108,83,72,36,64,64,62,90,110,91,46,74,64,62,2,2,3,2,2,
-64,62,42,46,123,46,42,64,62,94,22,95,2,122,64,62,126,42,127,86,126,
-64,62,66,82,47,94,66,64,62,58,46,87,62,86,64,62,58,46,95,54,94,
-64,62,22,74,87,42,22,64,62,74,62,59,62,74,64,62,94,22,95,58,118,
-64,62,86,110,55,74,126,64,62,90,94,111,94,90,64,62,86,46,95,42,86,
-64,62,110,58,107,58,106,64,126,54,126,43,118,46,64,62,82,62,123,62,82,
-64,126,58,74,127,118,82,64,62,106,118,75,126,86,64,62,54,126,43,94,106,
-64,62,62,126,43,94,106,81,37,91,64,64,64,64,85,59,64,126,106,127,126,
-8,72,63,8,8,127,8,18,90,62,27,118,26,18,27,86,63,18,122,31,26,
-44,116,46,37,119,61,36,44,116,46,37,119,45,52,4,4,4,31,36,69,100,
-84,53,122,85,116,63,69,64,65,93,85,85,119,64,10,62,59,54,59,37,107,
-93,119,33,63,45,127,33,93,119,63,85,63,85,127,93,119,9,45,73,127,9,
-93,119,35,63,124,63,35,93,119,125,43,127,43,125,10,61,42,47,47,42,109,
-10,50,46,51,62,34,106,64,88,87,82,114,78,64,84,84,46,93,119,37,84,
-42,111,106,104,106,127,42,76,84,62,125,63,85,76,0,84,84,74,42,37,16,
-66,90,111,90,0,74,37,0,0,20,20,122,5,0,10,125,66,62,11,74,122,
-10,125,68,83,127,82,66,10,125,64,127,85,127,64,10,125,90,63,22,127,54,
-10,125,127,93,85,93,127,10,125,0,127,85,53,95,10,125,0,85,91,117,91,
-10,125,4,127,86,126,126,10,125,68,51,68,123,84,10,125,72,46,72,127,90,
-10,125,42,127,0,127,42,10,125,74,38,127,38,74,10,125,80,94,123,94,80,
-10,125,16,106,77,123,104,10,125,38,95,118,63,94,6,127,2,10,82,127,2,
-6,127,64,62,10,121,8,6,127,20,19,126,18,16,6,127,73,127,73,127,72,
-6,127,70,34,31,122,70,84,22,110,6,77,21,84,96,58,82,95,126,18,96,
-100,50,85,76,117,30,100,6,127,8,108,107,100,8,6,127,10,126,83,122,82,
-6,127,4,116,95,116,4,6,127,4,27,26,66,126,6,127,64,63,5,125,87,
-100,52,67,94,106,10,106,100,43,78,90,110,18,110,6,127,64,95,85,95,64,
-6,127,2,126,75,74,126,6,127,90,63,22,127,54,6,127,21,19,127,19,21,
-6,127,72,78,59,78,72,6,127,40,93,125,16,40,84,54,86,95,118,22,84,
-100,62,69,86,94,21,68,6,127,16,106,101,107,16,100,62,83,74,95,10,82,
-6,127,4,55,42,54,126,6,127,32,98,55,98,118,6,127,81,79,117,93,65,
-6,127,74,60,15,124,74,105,32,68,75,102,10,102,6,127,40,106,47,122,40,
-6,127,64,126,67,126,126,6,127,4,127,86,126,126,6,127,4,118,94,117,4,
-6,127,2,127,53,53,127,106,58,75,94,106,27,106,6,127,2,120,43,43,120,
-6,127,40,47,125,47,40,6,127,80,31,21,31,80,6,127,127,85,127,85,127,
-6,127,66,46,127,42,78,6,127,2,125,42,125,2,6,127,42,87,50,94,75,
-6,127,44,38,111,62,44,6,127,92,54,29,119,92,6,127,60,87,93,87,92,
-6,127,53,127,21,78,127,6,127,18,118,107,118,18,105,63,75,89,107,31,105,
-6,127,42,39,111,55,42,98,62,90,95,106,30,98,6,127,22,109,86,77,22,
-6,127,50,46,115,46,50,6,127,42,38,115,46,40,6,127,82,122,95,62,82,
-6,127,127,53,47,53,127,6,127,16,127,85,53,81,6,127,127,13,57,45,127,
-6,127,2,79,109,107,79,6,127,11,63,44,47,107,106,61,64,85,96,21,93,
-6,127,80,94,123,94,80,106,42,71,91,123,6,106,6,127,53,127,76,63,68,
-6,127,107,58,107,42,107,6,127,72,87,125,87,68,6,127,70,106,107,106,70,
-6,127,100,43,78,82,110,6,127,95,21,95,14,127,6,127,0,122,109,90,125,
-111,43,71,75,106,5,107,6,127,68,83,46,94,66,110,38,77,64,107,5,107,
-6,127,91,46,126,46,122,98,46,71,78,107,5,107,6,127,94,42,127,106,94,
-6,127,74,43,126,63,90,80,47,73,87,127,7,105,6,127,88,19,30,30,82,
-87,46,71,72,103,5,111,6,127,36,30,109,98,4,6,127,18,62,87,126,19,
-85,32,93,77,93,15,93,6,127,81,55,127,55,81,6,127,71,87,123,85,75,
-6,127,62,82,127,46,86,6,127,26,79,90,45,26,106,46,95,74,103,29,69,
-6,127,45,127,62,10,121,106,61,82,77,94,21,82,6,127,9,101,111,117,111,
-6,127,36,95,58,94,114,6,127,117,72,123,111,122,6,127,18,62,95,118,26,
-6,127,45,63,98,31,126,95,53,95,93,119,29,85,6,127,81,23,119,23,81,
-6,127,62,122,46,127,122,106,58,94,95,126,26,106,82,46,95,78,82,15,82,
-102,46,77,66,111,10,111,6,127,68,31,117,31,68,6,127,68,31,82,31,82,
-6,127,35,63,124,63,35,100,63,74,95,106,31,90,105,32,87,69,87,5,93,
-6,127,127,91,44,91,127,6,127,107,62,106,62,106,6,127,43,59,111,59,43,
-6,127,80,94,63,86,94,64,62,90,38,91,94,118,6,127,42,110,95,42,78,
-6,127,66,61,127,49,123,82,55,94,87,106,7,110,6,127,92,55,125,55,92,
-6,127,60,46,117,127,44,106,63,73,93,107,31,106,55,125,7,125,87,125,87,
-6,127,82,62,123,62,82,6,127,102,43,127,43,102,85,32,90,79,90,15,90,
-6,127,46,127,90,25,91,6,127,85,126,85,63,85,6,127,84,127,84,63,85,
-90,119,90,101,43,70,106,6,127,38,127,82,127,86,6,127,35,123,80,123,83,
-6,127,48,117,39,63,117,106,61,74,87,87,10,93,2,66,66,47,50,75,98,
-32,62,18,66,95,34,83,64,62,10,82,95,34,83,64,62,10,74,95,34,83,
-18,90,90,55,54,91,108,17,81,95,59,59,95,105,25,73,95,59,59,79,89,
-114,95,114,95,68,63,85,36,118,95,118,95,36,85,17,75,85,43,68,63,85,
-35,63,124,63,35,63,85,124,92,111,90,68,63,85,33,123,113,91,68,63,85,
-65,63,117,53,117,55,113,82,127,10,0,127,64,96,82,127,8,9,127,9,8,
-82,127,10,126,66,66,126,82,127,64,66,126,66,64,82,127,71,41,19,41,71,
-82,127,10,69,63,81,127,82,127,74,63,125,69,93,82,127,65,73,127,73,65,
-82,127,72,74,63,78,72,82,127,10,68,95,36,85,82,127,9,75,125,11,24,
-82,127,62,2,126,61,64,82,127,32,42,32,127,16,82,127,74,34,95,34,91,
-82,127,2,2,127,10,18,82,127,17,9,127,9,17,82,127,116,75,98,31,126,
-82,127,2,127,74,127,2,82,127,62,42,127,42,62,42,62,123,118,59,53,43,
-36,52,126,125,62,52,36,82,127,64,62,26,121,40,82,127,60,46,117,127,44,
-82,127,10,112,95,84,116,86,62,21,33,43,127,43,82,127,42,41,124,41,42,
-82,127,4,126,9,66,127,82,127,90,63,22,127,54,82,127,56,47,105,127,40,
-82,127,66,63,82,79,94,82,127,66,126,99,94,66,82,127,16,106,101,107,16,
-82,127,2,106,111,106,2,82,127,82,31,18,31,82,82,127,41,21,127,21,127,
-82,127,72,90,127,90,72,42,63,118,112,57,55,47,82,127,84,77,125,75,84,
-82,127,10,126,35,118,46,82,127,10,120,43,43,120,82,127,82,78,63,78,82,
-82,127,40,47,125,47,40,82,127,78,89,46,89,79,82,127,71,85,125,85,71,
-82,127,10,126,83,42,90,82,127,18,90,23,122,18,82,127,30,125,68,59,70,
-82,127,33,63,127,18,46,82,127,84,93,119,93,84,36,59,127,122,54,48,47,
-82,127,100,75,126,106,126,82,127,42,60,119,62,34,82,127,70,50,71,126,86,
-82,127,52,50,5,118,52,82,127,127,7,0,71,127,82,127,33,95,85,61,87,
-82,127,44,86,125,39,85,82,127,15,106,112,111,10,82,127,66,46,127,46,78,
-82,127,85,91,57,90,85,82,127,107,58,107,42,107,82,127,90,55,127,51,86,
-82,127,116,86,126,85,117,82,127,33,63,45,127,27,82,127,5,115,117,38,84,
-82,127,16,106,77,123,104,22,42,126,123,62,42,22,82,127,42,127,58,127,42,
-82,127,74,59,94,123,90,82,127,10,93,119,93,119,82,127,36,30,109,98,4,
-82,127,50,117,39,63,117,82,127,10,94,119,86,112,82,127,72,47,125,47,120,
-82,127,18,62,87,126,19,82,127,19,126,75,126,75,36,46,127,122,55,62,40,
-82,127,18,62,95,118,26,82,127,17,75,84,41,19,82,127,78,53,54,117,79,
-82,127,95,26,95,62,121,82,127,92,62,23,126,92,82,127,85,59,89,42,93,
-82,127,74,30,107,30,74,82,127,77,86,61,86,125,82,127,110,46,66,71,106,
-82,127,124,44,87,122,42,82,127,122,78,125,46,122,82,127,78,126,91,126,78,
-82,127,43,59,111,59,43,82,127,105,84,94,119,94,36,63,123,112,54,59,38,
-82,127,118,83,119,83,118,82,127,127,43,116,111,127,40,30,105,126,45,31,40,
-40,30,41,126,45,31,40,82,127,74,54,43,118,10,82,127,90,110,127,110,90,
-82,127,8,108,107,100,8,82,127,52,54,95,118,20,82,127,78,58,55,58,70,
-82,127,71,61,56,127,70,82,127,123,46,120,11,126,82,127,62,74,63,62,74,
-82,127,90,57,90,127,27,82,127,123,119,3,111,75,42,31,106,125,42,31,42,
-82,127,90,53,127,58,85,82,127,54,126,91,62,86,82,127,107,62,87,62,119,
-82,127,74,55,58,55,74,82,127,91,62,91,126,85,42,61,106,119,55,42,61,
-82,127,67,95,44,95,75,64,72,88,47,90,66,64,72,68,43,18,46,66,64,
-1,79,121,68,95,34,94,62,32,127,68,95,34,94,4,126,63,68,95,34,94,
-62,62,62,68,95,34,94,74,86,35,86,92,35,94,74,63,106,68,95,34,94,
-66,46,127,46,92,35,94,84,22,125,22,88,47,90,84,22,125,22,92,35,94,
-122,9,111,122,92,35,94,122,41,127,122,92,35,94,114,30,91,30,120,47,90,
-84,126,91,54,92,35,94,92,54,93,54,92,35,94,82,125,54,29,122,85,91,
-82,77,90,47,47,90,77,66,61,95,124,42,32,127,114,95,114,95,42,32,127,
-9,55,49,64,62,10,121,127,106,93,106,93,62,121,98,31,122,36,123,42,122,
-98,31,122,12,59,126,58,90,74,62,43,42,110,26,98,31,122,4,43,126,86,
-98,31,122,36,91,122,82,98,31,122,4,99,14,106,98,31,122,20,111,126,22,
-98,31,122,21,111,127,21,72,73,41,31,121,73,104,77,73,41,31,121,73,104,
-40,47,45,125,45,47,40,72,79,45,125,45,79,72,68,87,85,61,85,87,68,
-64,56,79,77,61,79,72,72,79,93,45,93,79,72,10,122,118,127,118,122,10,
-62,42,126,63,5,125,87,40,93,125,40,95,85,95,56,111,53,5,125,15,56,
-36,87,61,85,53,87,116,76,87,117,93,53,87,76,62,42,62,74,60,127,74,
-9,127,93,89,95,125,9,84,91,63,3,127,75,84,62,42,126,45,122,45,104,
-80,122,90,95,90,126,84,62,42,62,20,125,87,125,62,42,62,12,107,127,106,
-64,60,119,93,61,95,84,64,60,87,53,69,63,84,10,127,112,126,118,125,4,
-62,42,62,26,127,14,121,40,111,61,5,125,47,40,44,39,61,125,61,39,44,
-62,42,94,87,58,87,90,62,42,62,39,61,127,39,62,42,62,70,106,107,70,
-62,42,62,36,95,53,119,62,42,62,83,29,29,83,78,127,86,89,87,127,73,
-85,48,83,127,107,127,107,62,42,94,62,23,126,92,62,62,46,123,86,63,94,
-2,125,86,93,90,117,11,62,42,62,63,126,63,42,62,42,94,30,107,30,74,
-62,42,93,47,85,55,77,62,42,62,95,122,47,90,62,42,126,74,63,62,74,
-62,42,126,62,98,91,98,62,42,62,91,110,59,90,84,63,125,85,61,95,84,
-0,127,73,73,73,65,127,78,74,79,90,46,81,64,16,119,109,93,109,15,120,
-127,21,127,118,68,127,118,127,21,127,126,90,59,94,40,26,79,58,127,26,40,
-127,21,126,95,122,47,90,127,21,126,43,126,119,93,38,58,119,63,67,54,118,
-66,58,2,127,2,123,66,66,78,38,127,38,78,66,84,85,51,121,51,82,86,
-26,127,74,49,15,48,64,26,127,10,66,63,66,126,26,127,10,65,63,65,127,
-26,127,8,9,127,9,8,26,127,10,121,73,73,111,26,127,64,66,126,66,64,
-26,127,10,4,15,52,69,26,127,124,64,127,64,124,26,127,10,65,63,69,125,
-26,127,65,73,127,73,65,82,18,74,31,74,18,82,42,42,86,111,78,86,42,
-26,127,9,75,125,11,24,26,127,8,70,95,34,20,26,127,68,59,72,123,4,
-26,127,10,66,62,75,122,26,127,10,65,61,21,29,26,127,74,62,9,127,8,
-26,127,73,63,9,127,9,26,127,98,31,126,66,126,26,127,10,29,21,93,127,
-26,127,10,87,53,85,119,66,94,62,127,62,94,66,26,127,79,41,9,41,79,
-26,127,10,127,101,83,111,26,127,10,4,27,90,126,26,127,64,127,85,127,64,
-26,127,10,4,127,42,42,26,127,64,62,26,121,40,26,127,64,126,74,94,105,
-26,127,118,68,127,68,118,26,127,10,4,123,90,94,26,127,4,126,9,66,127,
-26,127,66,126,99,94,66,26,127,64,62,66,62,97,26,127,28,118,93,118,28,
-85,95,53,120,53,95,85,26,127,127,65,107,127,107,26,127,41,21,127,21,127,
-74,91,53,123,52,95,70,26,127,10,54,59,54,106,26,127,40,26,63,42,105,
-26,127,69,87,125,83,69,26,127,74,62,123,6,106,26,127,10,126,35,118,46,
-26,127,52,46,125,44,38,26,127,69,84,87,84,125,26,127,66,62,29,87,124,
-26,127,40,47,125,47,40,80,86,54,127,54,84,92,26,127,12,107,127,106,8,
-26,127,42,87,50,94,75,26,127,64,62,126,86,93,4,126,95,58,117,59,80,
-26,127,85,63,85,127,27,26,127,85,59,106,126,105,26,127,52,54,95,118,20,
-26,127,80,30,22,29,84,26,127,34,41,107,57,34,74,70,63,42,14,127,74,
-26,127,10,119,93,85,119,26,22,31,122,54,95,26,26,127,93,119,65,119,93,
-26,127,16,22,127,86,80,26,127,10,85,63,117,111,26,127,34,46,107,62,34,
-72,90,47,122,47,90,72,26,127,4,87,58,86,126,90,42,127,90,42,127,90,
-26,127,65,107,127,107,127,26,127,86,45,54,109,22,26,127,127,53,41,53,127,
-26,127,70,86,115,86,70,26,127,127,85,5,125,87,26,127,10,127,117,111,21,
-26,127,10,82,91,54,91,26,127,86,26,123,26,86,26,127,47,93,42,93,79,
-26,127,40,127,74,49,79,26,127,74,94,43,62,74,82,86,42,127,42,86,82,
-26,127,90,42,127,46,84,26,127,75,63,74,62,62,26,127,32,60,119,62,34,
-86,83,62,123,62,83,86,26,127,100,42,77,94,100,26,127,62,114,11,82,122,
-26,127,90,127,66,127,90,26,127,127,7,0,71,127,26,127,16,94,31,26,95,
-26,127,45,59,41,78,127,26,127,116,50,117,54,116,26,127,73,119,117,123,78,
-26,127,15,106,112,111,10,26,127,58,47,122,63,127,26,127,53,127,76,63,68,
-26,127,36,63,45,127,36,26,127,86,95,54,83,87,26,127,80,62,123,46,80,
-26,127,40,26,111,122,105,26,127,114,95,114,95,82,26,127,26,110,59,110,26,
-26,127,44,86,125,39,85,26,127,41,125,27,127,26,26,127,33,63,45,127,27,
-26,127,5,115,117,38,84,26,127,2,75,59,47,107,26,127,66,46,127,46,78,
-26,127,86,90,119,74,86,26,127,95,50,119,54,87,26,127,10,79,109,107,79,
-77,86,53,124,53,86,77,26,127,94,42,127,106,94,26,127,75,90,107,90,75,
-26,127,114,30,91,30,114,26,127,68,61,47,61,68,26,127,12,119,53,119,12,
-26,127,74,59,94,123,90,54,90,62,123,62,90,54,87,94,55,120,55,85,95,
-26,127,10,94,119,86,112,26,127,72,47,125,47,120,92,87,63,116,59,85,91,
-26,127,85,127,65,127,85,26,127,81,71,55,71,81,26,127,18,62,87,126,19,
-26,127,83,29,21,29,83,26,127,26,78,59,110,26,26,127,38,22,107,118,38,
-26,127,14,122,121,119,15,26,127,10,62,59,126,74,26,127,46,123,46,127,27,
-90,85,62,123,62,90,85,26,127,17,75,84,41,19,26,127,90,95,122,95,90,
-26,127,38,127,82,127,86,26,127,40,46,119,46,40,26,127,66,61,127,42,127,
-90,94,63,122,55,93,85,26,127,10,125,34,121,82,26,127,42,126,87,62,74,
-26,127,127,113,71,119,113,26,127,34,126,42,63,82,26,127,82,61,126,61,80,
-26,127,18,62,95,118,26,74,95,90,53,90,95,74,26,127,22,106,119,90,102,
-26,127,86,90,119,90,102,26,127,82,55,126,39,82,26,127,84,126,91,62,84,
-26,127,61,39,125,63,94,26,127,66,63,61,63,66,26,127,18,126,87,126,18,
-26,127,36,63,125,47,92,26,127,120,127,5,127,120,26,127,112,90,7,123,90,
-26,127,37,27,126,59,122,26,127,69,91,105,90,69,26,127,74,94,123,94,74,
-26,127,92,62,23,126,92,26,127,75,94,59,94,75,26,127,10,94,23,86,112,
-26,127,60,46,117,127,44,26,127,106,62,91,94,106,90,87,54,127,58,85,91,
-26,127,38,95,118,63,94,26,127,92,54,93,54,92,26,127,122,118,91,118,122,
-84,95,59,112,54,91,86,74,94,55,114,63,90,78,26,127,79,105,96,107,74,
-26,127,127,101,95,95,101,26,127,33,123,80,121,83,26,127,22,94,127,26,22,
-26,127,78,58,55,58,70,26,127,42,95,122,47,90,26,127,42,117,86,45,119,
-26,127,112,119,7,119,112,26,127,90,53,127,58,85,26,127,85,54,121,54,85,
-26,127,127,115,92,87,127,26,127,63,111,69,111,69,26,127,87,123,84,51,87,
-26,127,46,121,126,61,47,66,94,55,114,63,90,78,26,127,102,3,111,3,102,
-90,85,58,119,55,90,85,26,127,71,61,56,127,70,26,127,94,93,14,87,42,
-26,127,119,122,87,63,95,86,93,52,86,68,59,70,72,45,122,45,100,59,70,
-85,64,116,123,86,122,70,18,90,23,122,68,59,70,126,45,46,68,67,62,70,
-48,47,77,127,68,59,70,116,86,126,117,68,59,70,74,43,126,63,68,59,70,
-127,113,71,119,116,59,70,44,122,45,122,68,59,70,124,68,127,42,68,59,70,
-92,54,93,54,92,59,70,94,17,30,95,68,59,70,38,127,82,127,86,59,70,
-110,123,92,24,109,63,122,1,73,73,55,21,13,1,73,55,29,68,91,45,91,
-73,55,93,74,62,73,72,73,55,29,66,85,42,20,73,55,93,78,59,78,72,
-73,55,29,34,107,57,34,73,55,29,82,91,54,91,73,55,29,14,107,110,10,
-73,55,29,92,23,23,92,73,55,29,35,94,62,114,73,55,29,90,106,111,90,
-73,55,29,35,63,124,35,73,55,95,58,55,58,70,73,55,93,126,85,63,85,
-73,55,93,127,84,63,85,68,76,91,41,95,68,70,126,46,109,0,91,41,91,
-90,55,118,90,91,41,91,127,113,71,119,91,41,91,8,63,41,63,105,127,40,
-51,46,126,18,110,11,106,36,42,40,127,84,82,100,42,126,85,106,82,127,106,
-26,46,58,123,122,110,90,36,116,85,15,43,122,82,42,126,85,106,104,87,106,
-64,62,42,46,123,94,74,78,126,123,78,42,126,85,30,35,50,127,85,61,87,
-4,11,14,14,14,58,66,20,75,46,110,30,58,66,12,123,110,94,126,58,66,
-84,43,126,46,94,58,66,84,53,69,127,21,37,84,117,0,124,64,127,64,124,
-101,16,64,68,127,68,64,101,16,65,73,127,73,65,101,16,64,62,10,121,8,
-101,16,65,89,87,117,77,101,16,64,124,64,127,68,117,32,24,125,66,104,16,
-117,0,58,10,127,10,58,101,16,68,59,72,123,4,117,0,127,73,73,73,127,
-117,64,63,69,93,37,93,101,16,68,91,41,93,71,117,0,34,26,127,26,34,
-117,0,127,68,95,84,95,117,0,72,78,59,78,72,117,0,93,119,112,79,96,
-101,16,4,116,95,116,4,117,0,127,79,65,79,127,117,0,127,81,77,81,127,
-101,16,64,62,26,121,40,101,16,64,127,85,127,64,101,16,6,122,83,74,102,
-117,0,112,80,95,84,116,117,0,127,73,127,73,127,117,64,53,37,87,77,64,
-117,0,127,85,29,55,80,117,0,21,19,127,19,21,117,0,127,85,85,85,127,
-117,2,94,86,63,86,114,10,125,0,101,16,69,125,101,16,4,55,42,54,126,
-117,64,126,67,126,66,126,101,16,4,114,85,118,4,117,0,74,60,15,124,74,
-117,0,76,43,127,42,72,101,16,4,127,86,126,126,117,92,55,44,126,66,126,
-117,0,125,95,69,95,125,117,0,73,55,29,78,127,117,0,86,58,27,122,86,
-117,0,120,43,43,43,120,117,72,46,90,111,90,110,117,0,42,87,50,94,75,
-117,0,82,78,63,78,82,117,0,82,127,62,10,121,117,0,85,59,82,94,85,
-117,0,90,43,126,43,110,117,0,52,54,95,118,20,101,16,71,85,125,85,71,
-117,0,10,54,59,118,74,117,0,85,60,85,14,127,117,64,63,42,127,42,127,
-117,0,125,91,127,89,125,117,0,82,31,26,31,82,117,0,84,118,125,118,84,
-117,0,127,117,111,117,127,117,40,24,125,42,125,8,117,0,50,46,115,46,50,
-117,26,127,10,99,88,99,117,0,122,9,110,105,122,117,0,42,41,123,57,18,
-117,0,82,122,95,62,82,117,0,26,127,62,10,121,117,0,18,90,91,54,91,
-117,0,86,26,123,26,86,117,0,98,31,122,41,82,117,0,84,78,103,94,84,
-117,0,116,50,117,54,116,101,16,4,127,74,127,74,117,0,15,125,47,125,15,
-117,0,93,95,117,95,93,117,0,10,111,106,15,122,117,0,82,93,61,95,80,
-101,16,66,41,91,41,90,117,0,80,94,123,94,80,117,0,39,61,127,61,39,
-117,0,74,118,127,118,74,117,0,53,127,76,63,68,117,2,95,50,119,54,87,
-117,0,80,62,123,46,80,117,0,107,58,107,42,107,117,24,10,94,123,30,26,
-117,0,74,62,21,127,21,117,0,127,85,127,70,47,117,0,125,125,87,125,125,
-117,12,38,119,46,31,126,117,0,122,63,122,63,122,117,0,117,51,117,38,84,
-117,98,31,122,39,118,46,117,66,46,127,42,78,127,117,0,82,85,59,81,82,
-117,0,84,126,119,110,84,117,0,84,51,31,115,84,117,0,127,107,119,91,127,
-117,38,42,58,111,58,46,117,8,23,61,87,127,21,117,2,47,26,79,63,127,
-117,0,36,30,109,98,4,117,0,78,89,46,89,79,117,0,114,105,67,105,122,
-127,21,127,45,118,45,86,117,64,62,18,119,94,106,117,0,18,62,87,126,19,
-117,0,26,78,59,110,26,117,0,83,29,21,29,83,87,58,122,41,93,23,93,
-117,0,127,46,73,63,79,117,0,38,127,82,127,86,117,64,63,123,95,95,91,
-117,2,107,106,23,126,18,117,2,42,126,91,38,74,75,86,63,116,38,93,71,
-117,0,26,79,90,45,26,117,66,46,127,78,59,70,117,0,58,23,122,23,58,
-117,0,93,119,112,63,85,117,12,127,62,43,118,42,117,0,82,55,126,39,82,
-117,0,114,94,123,62,114,117,0,124,108,87,110,122,117,0,92,62,23,126,92,
-117,64,63,83,59,87,51,117,0,10,119,58,119,10,117,72,120,94,8,127,90,
-117,64,125,83,5,123,87,117,0,20,61,87,127,26,117,0,20,111,118,111,22,
-117,0,23,110,119,110,22,117,0,33,59,107,59,33,117,0,86,119,86,63,94,
-117,0,74,94,123,94,74,117,0,21,111,125,111,21,117,0,90,111,90,74,37,
-117,0,125,95,113,95,125,117,62,82,54,127,62,90,117,0,74,30,107,30,74,
-117,0,80,94,63,86,94,117,0,45,127,42,121,42,117,0,92,55,125,55,92,
-117,0,43,59,111,59,43,117,0,124,46,117,127,44,117,0,74,62,43,62,74,
-117,0,22,27,119,27,54,117,0,74,54,43,118,10,117,0,91,23,67,27,87,
-117,0,44,20,111,118,46,117,0,125,43,127,43,125,117,0,22,94,127,26,22,
-117,0,78,58,55,58,70,117,12,127,94,59,94,75,117,24,42,95,122,47,90,
-117,0,38,90,23,94,118,117,0,86,58,119,122,54,117,0,95,31,90,55,90,
-117,0,91,47,123,47,91,117,40,26,123,62,91,42,117,0,38,85,106,87,127,
-117,64,60,100,63,90,106,117,66,62,90,43,122,74,117,0,45,127,42,25,122,
-117,0,85,62,26,111,106,117,64,63,111,69,111,69,117,64,60,68,111,106,74,
-117,72,58,111,6,111,122,117,0,93,119,125,43,125,117,0,127,43,124,43,127,
-117,60,86,61,86,63,94,117,32,127,85,30,125,87,117,0,10,61,47,42,109,
-72,90,42,21,37,83,64,76,63,36,70,95,34,20,76,63,127,29,21,93,127,
-76,63,127,59,41,59,127,76,63,36,127,85,85,93,76,63,36,3,126,42,42,
-76,63,125,21,15,85,125,76,63,36,4,123,90,94,76,63,127,85,79,85,127,
-68,30,83,10,95,10,82,84,45,97,61,99,41,84,76,63,16,106,101,107,16,
-73,29,89,31,91,27,121,76,63,44,42,117,43,40,76,63,127,85,5,125,87,
-76,63,10,110,107,110,10,76,63,82,93,61,95,80,95,17,91,21,64,31,87,
-80,15,95,31,64,31,87,95,21,95,4,91,26,94,13,38,45,124,45,62,77,
-76,63,80,94,123,94,80,76,63,66,41,91,41,90,76,63,36,95,53,87,116,
-82,30,95,31,95,30,82,76,63,82,31,95,31,82,76,63,96,46,79,78,96,
-76,63,68,61,63,61,68,72,87,47,19,38,90,79,84,14,95,6,84,11,86,
-76,63,127,35,24,59,127,74,58,110,47,110,58,74,76,63,74,111,110,63,85,
-76,63,92,62,23,126,92,76,63,46,123,86,63,94,76,63,21,111,125,111,21,
-76,63,74,30,107,30,74,76,63,80,94,63,86,94,76,63,86,125,87,41,91,
-76,63,101,82,109,125,86,76,63,105,84,94,119,94,76,63,84,106,127,110,84,
-69,91,45,16,37,91,77,76,63,33,123,80,121,83,76,63,90,53,127,58,85,
-76,63,60,68,111,106,74,76,63,127,43,124,43,127,44,22,93,54,93,23,44,
-20,19,85,127,53,61,18,64,62,126,61,64,94,86,68,43,93,95,45,93,74,
-68,35,93,23,85,29,114,64,69,93,34,90,69,64,85,34,85,127,85,127,64,
-0,80,55,20,20,127,0,87,52,127,26,127,26,34,87,52,127,118,91,118,122,
-127,20,119,18,91,54,91,127,20,119,78,62,59,78,23,127,18,126,74,94,105,
-23,127,20,125,87,125,16,42,39,63,118,59,54,46,42,39,63,122,55,48,47,
-36,63,118,39,62,118,36,23,127,114,30,91,30,114,45,38,61,124,53,54,45,
-23,127,78,62,59,62,78,23,127,10,91,110,59,90,85,74,61,66,63,122,67,
-85,74,61,34,82,127,10,85,62,73,127,73,127,72,85,74,61,18,127,18,30,
-85,62,77,32,31,40,68,85,62,31,21,127,21,31,85,62,90,63,22,127,54,
-85,62,17,106,101,107,16,85,74,61,127,85,53,95,85,62,74,86,35,86,74,
-85,62,82,78,63,78,82,85,74,61,120,43,43,120,4,126,95,90,53,91,80,
-85,62,18,90,23,122,18,85,62,94,53,16,117,95,85,62,9,122,63,122,8,
-85,74,61,124,87,87,124,85,62,50,46,115,46,50,85,62,127,84,93,55,84,
-85,62,107,58,107,42,107,85,74,61,72,87,125,87,85,74,61,119,85,55,87,
-85,62,12,119,53,119,12,91,86,95,52,86,93,87,85,62,82,95,54,95,82,
-87,31,87,36,31,36,69,85,62,91,53,75,61,77,85,62,29,118,93,118,28,
-85,62,75,117,119,37,127,85,62,22,94,127,26,22,19,127,95,127,68,63,69,
-85,62,65,62,117,46,125,124,116,63,106,68,63,69,85,62,46,127,90,25,91,
-42,62,98,31,126,66,126,42,62,126,1,4,63,69,42,62,36,91,126,10,50,
-42,62,126,90,47,90,70,42,62,42,126,75,74,126,42,62,33,63,45,127,33,
-42,62,127,53,125,53,127,42,62,16,106,101,107,16,42,62,125,95,113,95,125,
-42,62,42,126,91,58,94,42,62,126,75,46,127,27,42,62,124,68,47,106,74,
-42,62,20,125,87,125,16,42,62,42,127,0,127,42,42,62,117,0,106,95,74,
-42,62,127,43,88,45,95,42,62,39,61,127,61,39,85,71,61,80,77,71,85,
-42,62,42,122,109,90,125,42,62,7,121,85,125,7,42,62,5,115,117,38,84,
-77,86,85,124,85,118,77,42,62,94,43,126,106,94,42,62,66,57,46,57,66,
-42,62,95,21,95,21,113,42,62,104,74,126,73,107,42,62,90,95,122,95,90,
-42,62,42,62,123,62,42,42,62,75,94,59,94,75,84,95,123,112,118,123,86,
-42,62,42,82,93,47,94,42,62,126,43,126,119,93,42,62,87,123,84,51,87,
-42,62,73,88,45,58,73,10,55,106,62,98,30,97,86,59,126,127,22,123,22,
-65,127,61,65,68,127,68,65,127,61,65,74,126,73,74,74,125,88,25,122,74,
-65,63,125,90,82,127,106,65,127,61,65,106,89,122,65,127,61,65,74,126,101,
-65,127,61,64,125,107,125,89,80,116,91,22,122,86,93,127,93,65,127,61,65,
-90,86,126,85,26,119,90,65,127,61,80,111,125,109,127,113,71,119,127,61,65,
-82,31,126,65,127,61,65,90,78,123,94,27,126,90,90,86,114,95,30,126,90,
-84,95,123,80,22,123,86,22,123,86,87,86,123,22,93,63,77,100,107,127,106,
-0,125,21,125,21,87,125,16,31,85,127,21,31,16,0,125,84,125,84,86,125,
-62,62,126,58,1,122,4,62,62,126,63,18,127,18,62,62,126,42,31,42,72,
-62,62,62,66,85,42,20,122,122,123,122,112,79,96,20,14,119,118,85,126,20,
-62,62,62,122,79,50,74,62,62,62,106,47,122,40,32,39,109,87,109,39,32,
-80,122,90,127,90,126,84,62,62,62,86,125,22,84,62,62,62,90,23,122,18,
-6,115,94,123,94,115,6,81,125,55,73,127,127,73,62,62,62,54,95,118,20,
-62,62,62,94,23,126,20,92,76,127,91,127,76,92,92,108,95,107,95,76,92,
-90,76,123,91,123,76,90,84,62,10,74,123,10,10,84,62,66,74,39,94,66,
-84,62,114,66,123,66,114,84,62,82,58,7,122,18,84,62,74,74,63,122,74,
-84,62,74,62,123,74,122,84,62,10,126,75,126,10,84,62,74,90,111,74,106,
-84,62,114,126,43,126,74,84,62,66,126,87,126,66,84,62,66,94,87,94,66,
-84,62,34,42,87,30,34,84,62,18,14,123,90,90,84,62,70,94,63,86,114,
-84,62,82,90,119,90,82,84,62,42,46,123,46,42,84,62,82,90,119,90,86,
-84,62,98,54,95,86,98,84,62,34,22,111,126,22,84,62,126,54,27,90,126,
-84,62,90,118,95,54,90,84,62,126,106,95,106,126,84,62,54,46,119,46,54,
-84,62,86,82,47,82,86,84,62,2,46,63,122,46,84,62,58,126,59,126,58,
-84,62,42,126,43,126,42,84,126,62,90,123,62,66,84,62,82,62,91,62,114,
-84,62,18,122,119,42,82,84,62,66,126,123,118,94,84,62,66,58,47,118,82,
-84,62,22,118,43,118,22,84,62,82,58,119,106,18,84,62,122,126,91,42,90,
-84,62,26,118,115,110,30,84,62,42,62,123,62,42,84,62,82,30,127,30,82,
-84,62,90,126,95,62,90,84,62,126,70,51,118,126,84,62,86,46,95,42,86,
-84,62,54,90,55,122,54,84,62,94,22,91,42,90,84,62,106,62,123,126,106,
-84,62,94,58,91,54,94,84,62,42,126,59,94,42,84,62,42,118,127,86,74,
-84,62,126,46,67,26,94,84,62,54,126,75,30,90,84,62,66,62,79,102,78,
-84,62,90,94,43,114,42,84,62,106,118,75,126,86,84,62,94,26,67,30,94,
-20,10,6,2,4,10,20,74,85,91,57,90,85,74,10,85,107,1,90,45,90,0,62,90,91,74,78,96,
-64,94,58,27,122,94,96,62,43,62,127,93,37,93,40,30,42,123,42,30,40,
-62,43,94,86,35,86,74,62,43,62,86,58,123,86,62,43,62,12,107,111,106,
-10,102,111,122,103,109,5,62,43,62,75,90,107,91,126,47,90,4,123,90,94,
-74,39,82,55,126,47,90,39,61,127,39,126,47,90,126,47,90,39,61,127,39,
-36,91,54,126,90,47,94,68,117,93,127,85,117,68,84,118,126,119,118,110,84,
-74,122,91,126,90,123,74,68,116,94,125,94,116,68,74,106,118,119,106,107,84,
-80,106,122,111,122,110,84,94,117,106,127,106,117,95,64,60,68,116,127,122,74,
-85,96,116,111,117,111,92,86,98,115,110,123,110,90,127,85,127,4,30,85,118,
-127,85,127,70,63,114,70,127,85,127,70,95,34,20,127,85,127,28,17,95,125,
-127,85,127,74,110,83,106,127,85,127,63,5,125,87,88,83,30,30,30,82,80,
-14,120,127,122,112,127,10,127,85,127,127,36,127,68,127,85,127,42,127,42,72,
-42,25,108,107,108,25,42,127,85,127,54,45,124,46,127,85,127,90,43,126,111,
-127,85,127,63,85,127,85,127,85,127,94,53,114,94,127,85,127,74,42,127,86,
-127,85,127,8,122,63,122,127,85,127,46,63,122,46,44,20,124,119,126,22,44,
-40,46,58,111,58,46,40,127,85,127,40,26,111,106,127,85,127,38,106,127,110,
-127,85,127,88,31,30,82,127,85,127,83,29,29,83,127,85,127,94,123,94,85,
-127,85,127,122,63,122,127,127,85,127,39,125,63,94,127,85,127,78,58,63,78,
-127,85,127,47,85,55,77,32,19,127,88,127,91,72,127,85,127,54,93,54,92,
-26,119,106,96,118,107,22,127,85,127,62,109,119,44,127,85,127,95,122,47,90,
-72,71,95,44,95,75,72,112,122,82,31,126,114,80,127,85,127,91,127,59,119,
-41,93,123,18,85,54,20,68,84,94,53,84,82,68,75,62,90,119,95,55,90,
-9,55,113,66,126,66,64,9,55,49,30,84,63,127,9,55,49,127,36,127,68,
-9,55,113,62,74,31,94,9,55,49,64,127,85,127,9,55,113,63,109,63,109,
-9,55,49,72,90,127,90,9,55,50,46,115,46,50,9,55,50,123,2,127,82,
-85,48,120,86,90,119,26,9,119,63,85,63,85,127,9,55,49,10,110,107,110,
-9,55,116,38,125,39,85,9,55,49,63,45,79,120,9,55,49,64,60,63,66,
-9,55,114,95,114,95,82,9,55,49,122,109,90,125,9,55,49,75,90,107,91,
-9,55,49,12,119,53,127,9,55,49,42,91,126,91,9,55,81,58,117,54,95,
-9,55,63,117,93,61,87,9,55,49,95,21,95,117,9,55,58,78,59,110,26,
-80,53,115,95,59,127,113,90,54,119,82,91,117,27,9,55,49,74,58,63,74,
-9,55,49,18,62,95,122,9,55,61,94,55,126,92,9,55,53,91,105,90,69,
-9,55,49,94,63,86,94,9,55,49,42,123,46,91,9,55,117,94,123,94,117,
-9,55,87,58,90,61,87,42,95,58,117,122,31,42,9,55,90,53,127,58,85,
-53,125,53,127,73,73,111,53,125,53,0,53,53,127,53,125,53,126,74,94,105,
-76,59,90,127,26,59,76,53,125,53,4,127,42,42,53,125,88,61,82,72,86,
-53,125,85,34,95,34,91,53,125,82,31,26,31,82,53,125,84,38,125,39,85,
-53,125,86,95,54,83,87,53,125,84,83,43,95,68,53,125,18,126,87,126,18,
-74,54,46,107,46,118,10,53,125,35,63,124,63,35,53,125,94,119,86,119,94,
-53,125,54,126,91,62,86,114,30,86,126,53,93,112,112,31,85,127,53,95,112,
-66,86,55,127,63,94,74,53,127,21,127,36,127,68,53,127,72,78,59,78,72,
-53,127,21,127,85,85,93,53,127,85,34,95,34,91,53,127,66,42,127,42,66,
-53,127,40,47,125,47,40,53,127,2,125,42,125,2,53,127,82,31,26,31,82,
-53,127,122,66,95,90,66,53,127,127,53,47,53,127,82,94,62,123,62,94,82,
-82,62,94,123,30,62,82,53,127,34,121,63,121,34,53,127,114,105,67,105,122,
-90,74,62,119,62,74,90,53,127,84,83,43,95,68,53,127,38,22,107,118,38,
-53,127,98,46,79,70,106,53,127,63,43,51,127,43,53,127,122,118,91,118,122,
-53,127,72,62,72,63,90,53,127,98,53,95,93,106,53,127,42,126,69,127,92,
-53,127,54,126,91,62,86,6,58,54,51,62,58,102,38,58,118,51,62,122,54,
-70,106,86,3,86,58,118,6,122,110,95,122,126,6,86,90,62,7,122,78,86,
-86,82,54,127,90,118,22,38,50,110,127,106,46,38,102,58,110,111,122,62,102,
-6,58,118,75,126,122,70,38,42,126,87,122,86,102,86,90,126,87,62,90,86,
-86,58,126,7,82,46,94,70,122,22,115,86,62,70,126,58,86,87,106,94,86,
-85,48,102,86,107,118,86,70,90,62,63,58,126,70,86,58,126,39,114,62,118,
-46,51,46,4,127,4,4,46,51,46,10,126,9,8,46,51,78,59,72,123,4,
-46,51,46,42,126,85,85,46,51,46,112,95,84,116,46,51,46,6,74,123,14,
-46,51,46,66,126,99,94,46,51,46,125,87,85,125,46,51,46,86,93,52,86,
-46,51,78,46,127,42,78,46,51,30,55,45,79,120,46,51,78,63,93,125,93,
-68,83,62,84,19,118,66,36,91,62,76,59,78,122,68,59,14,124,7,54,66,
-4,63,86,92,87,94,98,84,59,86,116,115,86,114,4,99,102,124,107,110,2,
-84,75,94,124,91,94,74,20,115,94,84,83,118,18,84,3,62,76,75,94,98,
-44,27,46,124,43,30,42,68,83,94,52,83,86,66,4,123,78,92,123,94,74,
-4,123,78,92,123,94,106,36,107,62,44,123,46,34,20,11,126,84,127,6,126,
-84,83,54,28,23,30,10,84,87,94,116,91,86,82,84,91,54,28,119,86,82,
-84,43,70,116,99,126,106,4,99,110,124,111,102,2,84,75,86,60,87,78,82,
-68,67,62,60,123,70,98,20,123,6,20,123,46,42,20,123,62,4,83,46,90,
-68,59,86,52,71,62,86,84,75,86,124,87,78,82,84,123,22,124,83,126,18,
-124,107,94,124,91,110,122,68,115,94,12,127,94,82,84,123,6,124,95,126,90,
-76,87,110,100,127,86,78,36,19,110,116,27,70,122,20,83,86,60,59,86,106,
-28,107,46,124,47,110,26,20,27,86,124,55,58,18,20,27,86,116,63,54,18,
-68,59,126,4,123,46,90,4,123,94,108,91,110,74,68,83,94,116,95,82,66,
-20,123,6,84,55,94,82,20,123,86,124,91,54,82,68,59,110,108,75,62,90,
-84,83,62,84,127,54,82,44,123,62,60,59,126,42,4,123,110,52,23,126,54,
-44,43,126,84,63,74,74,44,43,126,92,63,74,74,68,127,90,20,123,94,82,
-84,95,54,124,55,94,86,20,127,54,124,19,110,90,76,123,62,60,63,122,74,
-76,59,110,4,91,54,82,68,59,110,124,3,86,42,20,51,62,124,63,50,18,
-84,51,70,84,91,126,82,84,91,54,116,59,86,94,84,91,126,92,63,90,82,
-84,27,82,30,87,22,114,84,127,54,60,55,126,82,76,123,46,60,43,126,74,
-20,107,126,116,111,126,18,36,47,62,108,63,46,34,68,63,46,116,119,126,42,
-68,59,110,4,111,46,122,76,59,54,68,55,58,74,20,119,126,28,95,118,18,
-68,91,126,100,107,78,74,84,123,94,60,83,46,90,76,59,110,84,63,62,82,
-84,123,6,28,119,106,26,124,43,126,52,123,46,82,124,43,126,44,123,62,90,
-68,47,126,44,91,30,90,84,123,118,60,91,54,82,84,123,126,52,91,54,82,
-20,115,62,116,59,118,18,116,95,118,44,127,126,82,53,126,21,4,127,4,4,
-53,126,21,127,36,127,68,53,126,21,64,61,21,29,16,30,58,63,54,126,16,
-53,126,5,114,85,118,4,89,80,52,123,54,90,86,53,126,125,7,125,5,125,
-53,126,21,127,53,53,127,53,126,21,125,87,85,125,53,126,65,87,63,71,65,
-84,92,59,118,59,85,91,85,80,57,119,57,95,84,53,126,21,126,90,59,94,
-53,126,50,46,115,46,50,53,126,86,26,123,26,86,53,126,18,123,2,127,82,
-53,126,90,55,127,51,86,53,126,114,95,114,95,82,53,126,38,90,123,42,86,
-53,126,58,15,106,47,106,64,62,86,62,119,62,86,53,126,82,95,54,95,82,
-109,63,42,111,42,61,111,53,126,102,43,127,43,102,53,126,85,63,109,63,109,
-52,123,20,33,123,113,91,55,126,23,33,123,113,91,42,117,40,0,127,64,96,
-42,117,8,73,127,9,8,42,117,34,10,82,127,2,42,117,68,101,93,37,68,
-42,117,40,127,36,127,68,82,18,54,107,54,18,82,42,117,127,29,21,93,127,
-42,117,72,62,98,91,98,74,22,31,118,31,24,76,42,117,127,68,95,84,95,
-42,117,8,108,107,100,8,42,117,40,6,74,123,14,42,117,42,41,124,41,42,
-42,117,40,42,53,123,40,42,117,74,60,15,124,74,42,117,10,125,0,69,125,
-42,117,40,0,42,117,40,42,117,10,62,74,63,82,74,30,27,118,31,25,79,
-42,117,46,74,95,46,80,42,117,84,61,20,125,20,42,117,40,85,91,117,91,
-42,117,90,55,31,55,106,4,126,95,26,117,27,80,42,117,82,113,91,49,82,
-42,117,40,119,93,85,119,42,117,105,43,69,75,111,42,117,18,90,23,122,18,
-73,23,21,119,26,21,75,42,117,22,109,86,77,22,42,117,82,49,123,49,82,
-42,117,40,122,93,122,125,42,117,40,60,119,62,34,42,117,40,82,91,54,91,
-42,117,104,46,79,78,110,42,117,127,53,47,53,127,42,117,100,75,126,106,126,
-112,30,123,94,21,123,81,42,117,36,114,53,118,116,42,117,41,95,85,61,87,
-42,117,38,122,91,90,118,42,117,62,106,106,63,82,42,117,36,63,45,127,36,
-42,117,95,50,119,54,87,42,117,126,21,91,41,91,42,117,45,59,105,63,94,
-42,117,127,85,127,70,47,42,117,40,31,117,109,119,42,117,126,46,86,63,82,
-42,117,82,109,100,109,82,94,23,119,80,21,123,81,42,117,46,58,111,58,46,
-42,117,74,59,94,123,90,42,117,10,125,34,121,82,42,117,24,55,95,123,21,
-42,117,15,125,89,127,13,42,117,40,117,64,126,119,127,21,127,29,118,13,86,
-42,117,17,75,84,41,19,42,117,93,119,91,125,91,64,62,86,30,119,14,86,
-42,117,76,95,45,95,76,42,117,81,23,119,23,81,42,117,59,122,67,58,123,
-42,117,84,126,91,62,84,42,117,87,29,119,21,87,42,117,40,117,94,127,82,
-42,117,86,115,87,51,86,42,117,127,35,24,59,127,42,117,10,127,126,35,94,
-42,117,92,62,23,126,92,42,117,21,111,125,111,21,42,117,74,30,107,30,74,
-42,117,43,59,111,59,43,42,117,28,118,93,118,28,42,117,27,127,65,127,91,
-42,117,127,106,93,106,93,42,117,102,43,127,43,102,42,117,74,54,43,118,10,
-42,117,82,54,43,118,18,42,117,78,58,55,58,70,86,59,46,117,46,123,22,
-42,117,79,105,96,107,74,42,117,42,111,106,31,93,42,117,74,55,58,55,74,
-42,117,78,62,59,62,78,42,117,63,69,87,103,85,42,117,86,35,86,31,93,
-42,117,87,123,84,51,87,42,117,40,82,45,127,86,42,117,85,126,85,63,85,
-42,117,84,127,84,63,85,52,126,62,79,62,110,52,42,117,71,61,56,127,70,
-108,75,126,106,66,126,66,108,75,126,106,74,63,78,107,126,106,60,84,127,26,
-20,115,91,124,91,123,20,28,124,95,123,95,124,28,107,126,74,108,87,63,76,
-107,126,38,127,82,127,86,127,37,31,41,31,33,127,35,37,43,121,47,37,35,
-127,21,119,93,87,21,127,87,85,55,117,23,53,87,23,117,87,93,87,117,23,
-71,125,87,21,55,93,87,23,13,55,61,119,77,87,39,61,47,109,63,45,39,
-87,53,127,85,55,125,87,111,109,23,53,87,125,23,47,117,39,125,47,45,127,
-71,29,79,29,71,29,87,87,53,127,125,63,117,55,47,117,47,69,31,93,119,
-47,117,47,85,31,125,23,82,86,55,30,118,87,82,82,22,87,30,86,23,82,
-74,58,91,126,90,123,74,85,62,21,126,74,94,105,85,62,21,18,117,22,52,
-42,42,55,127,59,47,34,85,62,21,63,45,79,120,10,90,123,46,122,43,90,
-74,86,127,54,126,87,74,74,86,95,54,94,87,74,85,62,21,78,126,123,78,
-66,62,122,107,58,122,114,106,110,7,126,6,111,106,90,47,90,85,127,85,127,
-33,53,55,108,37,61,51,46,51,46,21,127,21,127,84,52,126,13,94,52,116,
-85,62,41,21,127,21,127,42,90,47,120,95,42,122,82,62,119,14,82,63,114,
-125,53,112,21,127,21,127,95,55,125,21,91,53,123,94,55,126,85,127,85,127,
-21,111,127,53,127,59,84,20,14,102,127,118,117,20,40,42,54,127,90,89,72,
-72,90,86,127,90,89,72,82,86,54,127,54,85,80,42,127,41,68,101,93,101,
-42,127,41,127,73,79,111,42,127,41,127,85,87,112,42,127,63,42,126,31,124,
-42,127,24,55,95,123,21,33,63,45,127,76,63,68,33,63,127,124,64,127,68,
-33,63,127,94,49,126,30,33,63,127,18,117,22,52,33,63,127,4,118,94,117,
-33,63,127,8,62,47,110,69,87,47,117,43,85,75,36,43,54,42,46,122,46,
-33,63,127,70,42,123,86,33,63,127,82,61,122,21,42,45,58,41,46,125,42,
-42,38,55,50,59,117,43,33,63,127,110,47,78,110,45,61,127,7,47,63,125,
-33,63,127,22,94,123,22,41,63,127,106,46,79,110,40,42,42,127,42,46,36,
-87,58,90,40,42,127,36,80,127,85,117,42,127,36,72,58,110,7,110,46,116,
-127,21,127,64,66,126,66,2,126,42,43,42,122,2,127,21,127,64,68,127,68,
-127,21,127,124,21,79,124,7,121,45,45,45,121,7,127,21,127,66,63,122,67,
-127,21,127,31,21,127,31,9,117,41,47,43,121,11,127,21,127,4,127,42,42,
-127,21,127,126,74,94,105,14,122,42,47,42,122,14,127,21,127,73,69,127,73,
-127,21,127,41,124,41,42,127,21,127,40,93,125,40,127,21,127,10,54,55,106,
-127,21,127,74,60,127,74,127,21,127,85,91,117,91,4,126,63,122,45,123,8,
-8,119,63,59,55,123,9,127,21,127,122,127,42,123,127,21,127,18,126,43,90,
-127,37,27,118,59,126,10,127,21,127,94,31,26,95,127,21,127,46,63,122,46,
-127,21,127,42,127,127,42,127,21,127,62,122,19,122,127,21,127,84,61,20,125,
-127,21,127,73,55,74,95,127,21,127,111,45,79,111,127,21,127,72,87,125,87,
-127,21,127,122,109,90,125,127,21,127,94,85,62,94,127,21,127,79,109,107,79,
-127,21,127,121,47,111,121,127,21,127,62,87,126,19,127,21,127,78,59,110,26,
-10,119,62,52,63,118,10,127,21,127,17,75,85,43,127,21,127,109,79,85,127,
-127,21,127,6,83,119,38,127,21,127,86,90,119,86,127,21,127,86,90,107,86,
-127,21,127,36,95,62,114,127,21,127,54,66,63,82,127,21,127,21,111,127,21,
-127,21,127,47,114,47,50,127,21,127,22,125,118,28,127,21,127,101,74,127,122,
-127,21,127,62,117,127,44,8,119,59,55,59,117,11,4,127,59,48,54,123,6,
-64,62,14,114,63,62,122,127,21,127,54,93,54,92,127,21,127,54,43,118,10,
-127,21,127,102,43,127,110,127,21,127,82,31,86,95,127,21,127,114,93,46,125,
-127,21,127,50,47,78,123,127,21,127,68,111,106,74,127,21,127,111,122,63,74,
-122,29,90,55,87,26,125,54,84,62,122,74,63,82,90,106,126,111,94,106,90,
-85,123,93,42,127,46,90,94,85,32,31,32,85,95,32,110,61,40,125,47,32,
-40,26,110,95,78,122,40,80,94,53,28,21,95,112,94,85,27,18,30,85,95,
-10,102,127,86,127,118,18,20,116,86,93,86,116,20,118,94,117,126,74,62,73,
-106,93,122,42,127,42,123,126,19,126,99,88,35,68,126,19,126,66,62,75,122,
-126,19,126,29,21,93,127,126,19,126,74,127,74,126,126,19,126,33,107,57,34,
-126,19,126,36,30,109,98,126,19,126,78,89,46,94,126,19,126,6,83,119,38,
-126,19,126,127,90,127,26,126,19,126,94,123,94,74,126,19,126,123,46,59,90,
-126,19,126,118,91,118,122,126,19,126,95,122,47,90,126,19,126,18,125,111,16,
-126,19,126,68,111,106,74,126,19,126,65,61,21,29,91,62,91,127,85,53,95,
-79,118,119,47,122,93,91,30,80,63,30,16,127,30,66,66,87,34,87,66,66,
-18,10,31,42,15,74,122,10,58,75,78,75,74,74,82,86,55,22,119,86,82,
-74,70,91,42,91,78,74,36,91,126,54,18,90,126,18,74,87,50,87,122,18,
-34,30,83,70,43,62,66,2,126,87,86,87,94,70,18,10,111,106,15,74,122,
-34,126,43,62,43,126,34,66,126,87,86,87,126,66,34,42,43,86,31,34,34,
-10,58,47,62,107,126,42,10,54,47,62,107,126,42,86,2,63,70,87,94,98,
-18,122,7,42,75,126,10,34,42,39,126,39,42,34,10,6,127,86,95,66,94,
-58,106,55,2,127,6,62,2,126,87,86,87,126,2,74,90,59,126,59,90,74,
-74,74,123,78,107,90,74,126,66,107,94,107,66,126,126,70,127,110,127,70,126,
-34,42,107,86,111,34,34,106,86,99,2,107,86,98,82,90,55,126,55,86,82,
-10,6,127,86,127,6,126,74,90,47,90,123,74,122,18,122,23,82,119,30,18,
-18,18,107,110,107,18,18,18,122,7,74,63,74,74,86,2,11,122,79,74,74,
-34,42,43,118,87,94,114,82,54,95,118,55,94,114,18,122,7,74,123,110,90,
-86,46,67,118,103,126,106,42,46,127,10,95,42,86,10,106,103,106,123,102,10,
-82,78,83,62,83,78,82,90,86,83,122,87,90,86,82,90,83,62,87,94,82,
-86,2,19,78,95,38,10,66,126,87,62,107,30,122,90,50,127,18,83,122,82,
-74,58,87,126,23,58,74,66,94,55,30,119,94,98,66,94,119,86,119,94,66,
-98,54,87,78,87,30,98,74,90,55,30,55,106,10,82,54,127,54,27,66,122,
-66,126,87,22,55,94,66,10,58,55,58,119,122,74,90,74,123,94,123,74,90,
-82,94,87,126,87,94,82,66,126,91,10,123,94,82,82,18,127,22,91,42,90,
-50,46,51,98,51,46,50,42,126,43,102,83,70,106,82,90,123,94,59,94,82,
-10,122,47,62,47,122,10,26,106,47,126,47,110,26,18,82,127,86,55,86,82,
-86,2,67,58,91,46,90,42,106,63,2,127,42,42,86,2,55,46,127,46,54,
-86,2,11,118,95,70,94,66,62,87,126,63,86,126,42,106,55,34,119,42,42,
-90,86,67,62,67,86,94,86,2,43,94,47,94,74,42,26,127,42,27,126,42,
-126,42,47,2,91,46,94,42,122,23,34,43,126,34,18,22,63,58,63,118,18,
-18,26,63,54,63,122,18,86,54,119,82,107,126,70,38,58,43,126,43,58,38,
-106,94,107,66,63,86,126,42,86,127,54,19,90,126,34,126,23,74,95,46,90,
-26,106,47,122,43,110,26,122,86,123,2,127,78,110,10,126,83,62,123,62,82,
-114,30,91,126,59,94,114,42,118,35,18,47,74,122,74,62,107,18,127,74,90,
-114,30,115,94,119,30,114,90,58,119,18,87,58,122,82,118,111,118,111,118,82,
-66,54,127,22,127,46,66,114,22,127,86,127,22,114,90,110,91,10,55,54,126,
-66,62,75,86,123,86,74,18,22,111,126,119,114,18,90,42,111,2,91,42,110,
-18,122,63,18,79,86,42,34,30,55,30,95,118,26,74,90,47,126,47,90,74,
-66,62,107,46,123,46,106,66,126,91,22,123,94,82,90,74,63,42,43,110,26,
-82,46,87,114,23,42,86,22,122,3,106,123,106,110,18,18,63,94,119,26,18,
-66,62,75,30,91,30,74,42,26,79,90,43,22,42,102,118,79,58,107,46,106,
-74,62,107,18,95,58,90,26,118,63,122,55,126,26,10,102,127,118,127,6,126,
-18,22,79,90,47,22,18,90,42,127,90,43,126,90,90,110,91,62,43,126,58,
-90,94,63,22,127,94,90,34,46,59,110,59,46,34,42,58,107,38,127,110,58,
-90,78,55,122,43,86,90,106,78,123,110,79,126,90,86,74,55,122,87,118,122,
-86,2,95,122,119,122,94,86,46,87,126,67,126,86,10,126,87,94,87,126,10,
-66,86,127,126,127,86,66,74,22,95,2,27,66,126,90,110,59,30,123,94,90,
-74,58,111,6,111,46,122,26,118,123,94,123,118,26,126,110,111,58,111,58,42,
-86,126,95,62,91,38,94,42,118,83,54,87,62,94,18,126,111,42,59,110,58,
-18,86,127,50,71,30,94,10,118,95,126,87,126,10,42,122,23,42,95,46,90,
-42,126,43,22,127,126,22,74,54,47,42,47,118,10,90,114,59,122,91,62,74,
-90,106,127,110,95,106,90,42,90,119,66,59,110,90,42,126,43,114,95,62,114,
-82,90,127,90,87,62,90,90,86,63,118,63,90,86,42,102,63,106,55,106,46,
-106,110,35,126,87,30,114,42,118,35,94,123,118,94,42,122,71,58,119,62,66,
-26,82,95,42,71,30,94,66,46,127,46,71,26,94,126,38,123,82,123,86,126,
-66,58,75,106,127,118,82,22,126,55,126,23,110,90,74,54,127,42,47,122,46,
-42,118,35,90,95,46,90,46,118,39,126,87,126,86,64,60,20,127,86,86,108,
-64,62,110,46,126,45,109,64,60,68,92,47,90,74,91,107,60,68,47,106,74,
-124,116,127,90,5,95,117,93,85,127,85,93,63,64,78,123,46,93,119,0,127,
-78,123,78,99,88,35,68,68,95,86,127,86,63,68,78,123,46,42,32,127,16,
-78,123,126,21,15,84,124,78,123,78,34,42,127,42,78,123,46,2,127,74,127,
-78,123,78,126,74,121,72,78,123,46,4,116,95,116,78,123,78,127,85,127,64,
-78,123,46,126,74,127,126,78,123,46,18,117,22,52,78,123,78,63,109,63,109,
-78,123,46,4,123,90,94,78,123,46,127,93,85,127,78,123,46,4,118,94,117,
-69,71,93,124,91,39,68,84,78,95,126,95,46,84,78,123,78,86,35,86,74,
-78,123,76,43,127,42,72,78,123,46,26,111,74,73,78,127,85,59,82,94,85,
-78,123,46,95,53,117,95,78,123,46,86,52,95,83,75,69,95,125,95,37,127,
-72,71,127,123,119,43,73,78,123,46,93,52,117,94,85,91,112,122,114,62,85,
-78,123,46,33,107,57,34,78,123,86,22,125,22,84,78,123,46,125,21,127,125,
-78,123,53,127,21,78,127,78,123,78,39,93,53,119,78,123,86,42,123,74,94,
-78,123,22,109,86,77,22,78,123,46,8,122,63,122,78,127,26,127,62,10,121,
-78,123,127,53,47,53,127,74,90,127,112,127,42,74,78,123,46,113,87,119,113,
-78,123,15,125,47,125,15,78,123,46,120,15,105,127,78,123,53,127,37,42,127,
-78,123,46,63,45,79,120,78,127,58,47,122,63,127,78,123,46,80,94,123,94,
-68,117,61,71,117,55,72,78,123,78,83,46,94,66,78,123,47,31,117,55,113,
-78,127,5,115,117,38,84,78,127,98,31,122,119,46,78,123,38,95,53,87,116,
-78,127,27,127,65,127,91,77,70,93,124,93,38,77,78,123,46,83,29,29,83,
-78,123,62,43,14,127,27,84,78,127,116,122,37,75,78,127,85,47,93,79,85,
-72,122,54,77,119,56,72,78,127,54,42,119,42,54,78,123,53,30,123,30,53,
-91,125,91,126,75,126,75,74,71,127,118,122,37,75,68,78,127,122,119,46,72,
-78,123,85,94,123,94,85,42,90,95,126,95,58,82,78,127,82,95,54,95,82,
-78,123,84,126,91,62,84,78,123,92,62,23,126,92,72,126,62,79,126,54,72,
-78,127,21,111,125,111,21,78,127,66,61,127,49,123,78,127,55,45,95,59,70,
-78,123,60,46,117,127,44,78,123,69,87,127,85,71,78,123,117,94,123,94,117,
-78,127,42,103,58,119,42,78,127,42,119,34,119,42,78,123,77,54,125,54,77,
-78,127,66,95,46,95,74,78,127,102,43,127,43,102,74,118,51,79,127,54,74,
-74,122,54,75,127,55,74,80,126,110,119,126,110,84,69,115,63,77,123,55,69,
-74,118,58,95,122,54,74,74,118,62,79,126,54,74,74,93,122,119,119,42,93,
-64,126,63,73,127,73,127,64,126,63,69,63,81,127,10,125,42,55,42,69,125,
-10,125,0,109,111,5,125,10,125,58,119,62,69,125,10,125,35,123,112,91,125,
-18,123,54,0,74,74,37,68,62,118,87,54,94,68,84,52,118,85,62,84,84,
-42,38,122,91,58,70,74,18,123,54,127,73,73,127,18,123,54,8,74,126,73,
-18,123,126,1,74,126,73,18,123,54,124,21,79,124,18,123,54,72,74,63,78,
-18,123,54,66,85,42,20,18,123,54,64,95,85,95,18,123,54,36,91,126,50,
-18,123,54,126,75,74,126,18,123,54,41,124,41,42,18,123,54,4,123,90,94,
-82,54,110,95,46,74,90,84,60,119,95,53,95,84,18,123,54,72,90,127,90,
-18,123,126,1,68,63,69,18,123,54,8,127,26,42,18,123,54,125,0,69,125,
-122,54,30,123,118,26,122,90,54,122,95,54,91,82,18,123,54,85,63,117,111,
-91,54,127,82,58,95,90,82,42,126,95,46,74,82,18,123,54,63,42,127,8,
-18,123,54,39,93,53,119,86,54,127,80,63,86,86,18,123,54,46,63,122,46,
-18,123,54,125,53,127,125,18,123,54,90,127,62,82,18,123,54,39,61,127,39,
-18,123,54,33,127,53,119,18,123,126,55,125,55,80,42,54,114,79,26,46,82,
-18,123,54,79,109,107,79,18,123,62,55,95,123,21,18,123,54,101,80,79,87,
-18,123,63,93,37,111,75,18,123,54,93,119,126,93,82,54,126,91,62,86,82,
-86,62,126,87,46,94,82,18,123,54,5,111,117,111,18,123,86,126,91,62,84,
-18,123,54,35,63,124,35,18,123,54,45,45,126,45,18,123,119,94,123,94,117,
-84,63,123,80,54,91,86,18,123,118,43,127,43,102,18,123,54,79,96,107,74,
-18,123,54,111,106,31,93,18,123,54,122,79,62,91,18,123,54,123,86,63,95,
-18,123,127,43,124,43,127,18,123,46,121,126,61,47,122,10,62,42,62,10,122,
-33,39,59,111,59,39,33,89,63,123,23,91,47,89,41,119,43,71,27,95,105,
-68,67,61,23,117,93,98,112,95,116,95,53,117,95,81,77,63,45,95,53,95,
-40,26,111,106,95,53,95,117,115,37,86,63,117,95,75,90,107,90,63,117,95,
-42,127,58,127,95,53,95,90,95,122,95,95,53,95,76,70,61,46,125,71,108,
-71,71,61,56,127,70,102,78,62,59,78,63,117,95,38,127,122,87,63,117,95,
-66,61,127,62,66,62,97,78,56,47,58,40,127,10,66,61,127,126,74,94,105,
-66,61,127,34,43,126,43,66,61,127,36,95,62,114,66,61,127,75,117,55,127,
-106,107,106,0,127,8,16,106,107,4,35,86,78,98,106,99,8,9,127,9,8,
-106,107,64,66,126,66,64,106,107,4,126,1,127,68,106,99,40,47,89,127,9,
-106,107,124,21,15,84,124,106,107,2,29,21,93,127,106,107,4,116,95,116,4,
-106,107,64,127,85,127,64,106,99,8,108,107,100,8,106,107,0,126,74,94,105,
-23,117,95,93,95,117,23,107,98,10,87,66,58,82,106,107,66,62,125,79,92,
-106,107,64,62,10,106,105,106,107,4,127,86,126,126,106,99,76,43,127,42,72,
-107,98,74,63,0,127,74,107,106,82,54,127,54,85,106,107,20,51,46,126,18,
-107,98,10,62,74,63,82,107,98,85,62,73,127,73,106,99,12,107,127,106,8,
-107,98,125,21,125,23,125,106,107,2,125,42,125,2,107,106,81,77,127,77,81,
-107,106,34,46,107,62,34,106,107,18,85,127,61,18,106,107,0,122,65,109,123,
-107,106,70,50,71,126,86,107,106,66,46,127,46,78,107,98,10,110,107,110,10,
-107,98,15,106,112,111,10,107,98,11,63,44,47,107,106,99,40,58,47,122,46,
-106,107,66,60,116,95,90,106,107,0,70,106,107,70,107,106,39,61,127,61,39,
-107,98,63,77,127,45,127,107,106,65,63,117,55,113,106,99,94,85,62,82,94,
-106,107,2,45,73,127,9,22,106,126,123,126,106,22,106,107,82,109,100,109,82,
-106,107,66,109,108,121,66,106,107,84,83,43,95,68,106,107,84,110,121,116,90,
-107,98,26,78,59,110,26,106,107,16,106,77,123,104,107,98,127,113,71,119,113,
-55,126,55,108,107,2,126,26,118,87,82,91,117,27,107,98,122,110,91,110,122,
-106,99,76,95,45,95,76,106,107,82,95,54,95,82,107,98,42,63,126,63,42,
-107,106,82,29,87,29,114,106,99,74,61,72,58,85,106,99,122,55,95,51,118,
-107,106,69,91,105,90,69,106,99,20,111,118,111,22,107,98,10,119,90,119,10,
-107,106,33,59,107,59,33,106,99,60,46,117,127,44,106,99,92,55,125,55,92,
-4,111,107,104,110,107,6,107,98,43,59,111,59,43,107,98,117,78,122,127,110,
-40,30,105,110,109,31,40,107,98,78,62,59,62,78,107,106,82,31,86,31,82,
-4,127,126,107,106,126,85,106,107,82,94,45,127,86,107,106,54,126,91,62,86,
-106,107,84,127,84,63,85,107,106,38,127,82,127,86,107,98,75,54,59,54,74,
-18,105,100,105,47,89,127,38,106,127,110,9,100,105,82,91,53,90,9,100,105,
-68,95,118,87,118,95,68,45,53,45,86,42,123,94,79,95,125,88,125,91,77,
-71,94,119,86,119,94,71,41,41,87,77,57,21,33,82,89,44,95,124,41,82,
-85,75,61,26,111,122,105,4,86,86,46,85,58,0,42,86,61,34,82,127,10,
-42,86,61,117,83,89,127,42,86,61,10,101,107,16,42,86,61,127,26,127,18,
-42,86,61,125,87,85,125,42,86,61,95,85,127,95,42,86,61,94,53,114,94,
-42,86,61,126,91,118,94,42,86,61,127,36,127,68,42,86,61,95,54,95,82,
-95,21,95,4,95,36,85,64,62,70,62,46,61,69,68,116,54,53,62,116,68,
-95,21,95,8,108,107,108,78,120,47,42,40,127,74,66,54,54,66,15,50,67,
-68,61,61,68,15,52,69,95,21,95,52,37,87,77,65,127,45,47,45,127,65,
-74,126,42,47,42,126,74,95,21,95,18,91,54,91,66,126,42,47,42,126,66,
-74,118,58,55,58,118,74,86,122,46,43,46,122,86,95,21,95,43,126,63,90,
-95,21,95,62,87,126,19,68,78,63,58,55,126,72,84,78,63,52,58,117,75,
-74,119,63,58,55,127,74,86,75,54,61,53,126,85,66,62,122,59,74,122,114,
-95,21,95,62,117,127,44,95,21,95,106,127,110,84,74,54,126,59,126,118,10,
-95,31,108,62,90,63,82,95,21,95,62,74,127,74,64,52,51,67,51,52,64,
-95,21,95,62,59,62,78,88,58,127,42,127,43,91,88,58,127,42,26,111,106,
-68,38,78,103,86,78,68,106,63,74,95,80,127,72,106,63,68,106,101,82,68,
-106,63,74,125,86,125,66,119,125,87,90,47,90,66,119,125,87,124,64,127,72,
-119,125,79,42,31,42,72,119,125,102,31,126,66,126,119,125,43,127,63,9,127,
-119,125,87,17,127,73,121,119,125,78,43,31,42,72,119,125,87,62,90,47,94,
-119,125,87,34,95,34,91,119,125,87,62,125,79,92,69,39,93,124,91,71,68,
-119,125,43,127,85,53,95,119,125,87,76,59,127,74,119,125,87,63,53,71,124,
-119,125,79,46,127,42,78,119,125,87,126,90,59,94,119,125,87,40,74,127,90,
-119,127,87,53,127,53,87,119,125,87,63,107,95,107,119,125,87,18,91,54,91,
-119,125,75,62,74,62,62,119,125,90,55,127,51,86,119,125,71,94,126,93,68,
-119,125,43,115,117,38,84,119,125,43,80,61,95,125,119,125,43,82,91,53,90,
-86,42,94,123,94,74,86,119,125,74,59,94,123,90,119,125,87,36,30,109,98,
-119,125,87,125,42,125,21,119,125,114,105,67,105,122,80,46,90,126,90,79,82,
-119,125,87,125,34,121,82,119,125,95,14,91,30,74,119,125,87,26,123,26,86,
-119,125,122,63,122,63,122,119,125,43,63,107,63,43,119,125,95,53,75,61,77,
-119,125,31,55,82,119,30,119,125,75,94,59,94,75,119,127,92,55,125,55,92,
-119,125,82,55,126,127,18,119,127,75,117,119,37,127,68,47,91,120,94,91,70,
-119,125,75,54,43,118,10,119,125,55,54,95,118,20,119,125,70,61,56,62,69,
-119,125,90,57,90,127,27,119,125,62,90,111,94,90,119,125,127,19,60,59,127,
-119,125,126,23,58,55,126,119,125,55,117,39,63,117,80,94,43,126,29,85,119,
-94,43,126,18,42,127,18,80,94,43,126,87,118,95,94,43,126,53,123,53,86,
-80,94,43,126,87,62,87,94,43,126,63,121,127,85,94,43,126,126,46,79,106,
-45,127,45,0,127,64,96,45,127,45,63,125,69,93,74,94,42,15,42,94,74,
-45,127,76,43,31,42,72,45,127,45,29,21,93,127,45,127,45,66,85,42,20,
-45,127,45,84,116,63,69,45,127,69,87,125,83,69,45,127,45,10,101,107,16,
-45,127,45,85,91,117,91,45,127,33,63,109,127,65,45,127,33,63,127,18,46,
-45,127,92,54,29,119,92,45,127,45,122,93,122,125,45,127,93,43,93,43,93,
-45,127,125,53,127,53,125,45,127,125,53,63,53,125,42,55,58,112,58,55,42,
-45,127,26,78,63,78,26,45,127,45,113,87,119,113,45,127,77,83,46,94,66,
-45,127,45,126,87,54,92,42,62,127,46,91,41,91,45,127,63,117,93,61,87,
-45,127,45,6,83,119,38,45,127,18,62,95,118,26,45,127,126,90,31,126,90,
-45,127,122,23,91,23,122,45,127,110,46,66,71,106,45,127,102,43,127,43,102,
-45,127,90,53,127,58,85,45,127,63,111,69,111,69,45,127,61,68,111,106,74,
-18,54,62,119,62,54,18,16,127,119,42,46,123,46,86,59,94,46,127,42,78,
-114,85,55,125,46,123,46,86,63,106,107,46,123,46,85,48,68,68,68,68,68,
-85,48,78,74,127,74,78,85,48,127,77,77,97,127,85,48,69,125,107,105,127,
-85,48,126,106,127,106,126,85,48,100,91,78,127,68,85,48,69,127,87,109,127,
-85,48,127,93,85,93,127,85,48,96,94,74,106,105,85,48,106,94,99,126,74,
-85,48,125,111,101,111,125,85,48,106,82,127,82,107,85,48,64,109,107,125,107,
-85,48,74,103,114,94,107,85,48,66,125,86,125,66,85,48,68,111,125,111,68,
-85,48,107,94,101,95,100,85,48,66,122,127,90,123,85,48,82,73,116,121,82,
-85,48,106,119,127,87,106,85,48,84,110,119,110,108,85,48,84,94,119,94,84,
-85,48,84,125,84,125,84,85,48,72,95,85,103,124,85,48,127,75,108,85,111,
-85,48,72,110,123,110,72,85,48,122,93,77,93,122,85,48,125,111,101,111,125,
-85,48,96,92,95,94,98,85,48,69,115,117,102,84,85,48,122,90,111,90,122,
-85,48,106,127,122,127,106,85,48,95,109,85,127,107,85,48,86,111,124,83,110,
-85,48,127,85,127,123,85,85,48,108,94,79,126,108,127,37,27,101,74,127,122,
-85,48,127,87,91,127,87,85,48,98,93,127,81,123,85,48,92,108,127,90,106,
-85,48,122,111,122,95,122,85,48,86,111,126,83,110,85,48,88,110,93,126,88,
-85,48,88,110,93,110,88,85,48,87,123,83,127,107,26,127,82,26,127,37,27,
-2,127,74,127,2,127,27,64,126,74,57,40,127,27,9,119,89,127,0,127,27,
-68,87,125,55,36,127,27,18,105,100,9,127,37,27,65,63,125,85,93,87,93,
-34,41,107,57,34,127,27,11,63,108,11,127,37,27,36,91,54,54,127,37,27,
-8,123,125,123,8,127,27,35,63,124,35,127,37,27,85,50,39,114,37,127,27,
-125,111,125,1,65,127,1,125,111,125,70,63,114,70,125,111,125,64,91,41,91,
-125,111,125,2,127,74,127,125,111,125,36,21,127,37,125,111,125,20,123,85,115,
-125,111,125,8,122,45,120,125,111,125,8,91,125,87,125,111,125,10,127,90,127,
-125,111,125,46,115,46,50,125,111,125,26,127,26,127,125,111,125,74,103,122,90,
-31,119,125,85,123,117,27,125,111,125,82,110,123,90,125,111,125,17,75,85,43,
-125,111,125,44,87,122,42,125,111,125,94,119,118,95,125,111,125,82,31,95,82,
-125,127,54,126,91,62,86,68,62,85,54,117,63,68,85,49,127,53,124,127,124,
-85,49,127,43,59,111,59,68,62,95,126,122,117,91,86,125,54,65,63,65,127,
-86,125,86,63,0,63,64,72,106,89,116,89,106,72,86,125,54,66,63,66,126,
-86,125,54,69,63,81,127,86,125,87,41,19,41,71,86,125,54,126,68,95,108,
-86,125,54,4,43,82,126,86,125,54,64,62,10,121,86,125,42,70,95,34,20,
-86,125,86,63,5,29,103,86,125,75,127,73,127,72,86,125,86,63,93,37,93,
-86,125,54,126,66,63,82,86,125,54,127,74,127,2,86,125,54,127,85,85,93,
-86,125,54,74,110,83,106,86,125,54,4,27,90,126,86,125,54,6,122,83,86,
-86,125,54,94,63,86,114,86,125,54,127,73,127,127,86,125,54,4,123,90,94,
-86,125,54,17,127,73,121,10,125,86,125,54,69,125,86,125,78,43,127,42,72,
-86,125,54,69,87,125,86,86,125,54,4,118,94,117,86,125,94,61,0,127,31,
-86,125,86,78,63,78,82,86,125,90,55,31,55,106,86,125,54,125,42,125,2,
-86,125,54,123,78,75,74,86,125,95,119,65,119,93,86,125,86,42,123,74,94,
-86,125,38,78,123,14,34,86,125,127,117,111,117,127,86,125,54,122,93,122,125,
-86,125,54,82,91,54,91,86,125,22,85,127,61,18,86,125,95,43,93,43,93,
-86,125,54,74,59,46,107,86,125,54,123,2,127,82,86,125,54,117,101,62,69,
-86,125,127,43,88,45,95,86,125,86,94,123,94,80,86,125,62,106,106,63,82,
-86,125,55,115,117,38,84,86,125,114,95,114,95,82,86,125,82,109,100,109,82,
-86,125,118,30,91,30,114,86,125,54,88,31,30,82,86,125,38,22,107,118,38,
-86,125,54,117,106,89,106,16,78,106,94,127,94,106,86,125,71,87,123,85,75,
-90,126,95,122,87,125,85,86,125,54,118,11,122,110,86,125,54,127,42,77,123,
-86,125,98,31,122,63,86,86,125,78,95,45,95,76,86,125,54,17,75,85,43,
-86,125,54,101,82,127,94,86,125,86,126,91,62,84,86,125,54,109,47,79,109,
-86,125,39,59,107,59,33,86,125,46,123,86,63,94,86,125,94,62,23,126,92,
-86,125,54,21,111,127,21,86,125,74,30,107,30,74,86,125,55,125,87,53,95,
-86,125,118,31,42,31,122,86,125,94,119,94,63,85,86,125,94,111,94,63,85,
-86,125,119,94,123,94,117,86,125,47,93,42,93,79,87,119,93,120,95,118,86,
-86,125,54,54,95,118,20,86,125,62,74,63,62,74,86,125,90,53,127,58,85,
-86,125,62,100,63,90,106,86,125,86,62,117,46,125,86,125,62,68,111,106,74,
-86,125,54,65,61,21,29,86,125,118,62,125,62,116,86,125,38,127,82,127,86,
-86,125,54,117,39,63,117,86,125,75,54,59,54,74,86,125,74,55,58,55,74,
-86,125,47,117,39,125,87,90,125,90,119,87,122,93,86,125,87,95,44,95,75,
-85,126,95,126,91,117,91,127,5,23,16,23,69,127,127,5,15,120,47,5,127,
-127,53,39,56,39,53,127,127,75,91,44,91,75,127,127,85,55,120,39,85,127,
-127,5,55,112,55,5,127,127,11,59,124,27,59,127,127,5,87,124,87,37,127,
-127,83,123,124,123,83,127,127,107,63,40,63,107,127,127,115,95,84,127,3,127,
-127,75,63,104,87,43,127,127,3,107,84,95,115,127,127,43,27,60,123,91,127,
-127,91,91,8,63,75,127,127,87,11,108,95,107,127,117,127,11,108,95,107,127,
-127,83,95,52,95,83,127,127,83,59,124,123,23,127,127,75,59,124,59,75,127,
-127,87,59,76,59,91,127,127,3,91,124,111,91,127,127,67,31,92,23,115,127,
-127,91,55,16,123,55,127,127,39,63,120,63,39,127,127,87,51,88,127,91,127,
-127,127,111,56,111,59,127,127,27,8,10,126,9,8,127,27,64,63,125,69,93,
-127,27,68,61,5,125,68,127,37,91,124,64,127,68,127,27,64,62,90,47,94,
-127,37,27,125,87,85,125,127,37,27,18,127,42,122,127,37,27,124,85,79,93,
-127,37,27,122,65,109,123,127,27,82,78,63,78,82,127,27,86,78,101,95,68,
-127,27,82,78,63,78,82,127,37,27,78,88,47,26,127,27,52,94,23,126,20,
-127,27,84,93,119,93,84,127,27,33,63,127,18,46,127,27,80,94,123,94,80,
-127,27,82,109,100,109,82,127,37,27,92,23,23,92,127,27,94,42,127,106,94,
-127,27,92,54,93,54,92,127,27,117,82,109,125,86,127,27,98,53,95,93,106,
-127,37,27,69,28,91,105,127,27,88,23,67,27,84,127,27,126,43,126,119,93,
-72,90,42,127,42,94,68,74,22,127,42,127,46,84,8,4,127,74,127,74,66,
-64,127,85,63,127,126,75,116,18,63,42,63,90,122,68,43,30,42,127,126,75,
-90,54,18,127,74,126,74,18,123,86,63,122,63,90,90,54,123,54,127,126,75,
-38,18,127,87,123,86,86,127,53,47,53,127,126,75,22,18,111,111,107,78,94,
-22,10,127,47,123,14,22,86,42,71,87,91,126,86,86,10,111,47,123,46,110,
-70,90,55,23,123,94,70,86,82,127,87,59,86,86,86,2,103,103,123,118,22,
-54,114,63,7,123,54,54,86,50,127,87,51,126,86,86,90,95,63,91,94,86,
-6,26,119,115,111,30,6,86,2,95,95,123,86,86,22,122,55,127,83,46,94,
-38,122,127,47,59,110,62,46,90,63,47,123,30,46,86,106,55,7,91,126,94,
-110,106,7,103,91,30,118,86,115,87,101,82,127,86,94,122,95,127,91,126,94,
-70,58,95,127,107,94,94,86,115,87,47,85,55,77,122,63,122,41,123,57,18,
-36,127,54,23,118,62,36,125,125,87,125,4,123,94,125,125,87,125,95,53,95,
-24,119,127,93,123,119,27,55,126,55,66,63,66,126,55,126,87,41,19,41,71,
-55,126,55,69,63,81,127,55,126,55,124,21,79,124,55,126,55,78,59,78,72,
-55,126,55,64,95,85,95,55,126,55,62,90,47,94,55,126,55,42,127,42,66,
-55,126,55,125,21,79,125,55,126,55,72,90,127,90,37,47,61,124,59,47,36,
-55,126,55,8,127,26,42,55,126,59,118,95,116,10,55,126,55,63,45,79,120,
-55,126,55,127,76,63,68,55,126,91,55,127,51,86,55,126,55,18,123,86,123,
-55,126,55,122,15,106,111,55,126,55,117,94,119,94,55,126,119,73,119,111,73,
-55,126,55,122,79,62,91,40,58,46,43,122,46,40,42,119,46,121,67,105,122,
-84,84,127,64,127,84,84,74,54,94,123,94,118,10,74,86,126,75,126,86,74,
-72,74,62,59,126,74,104,10,110,107,14,117,83,119,10,110,107,14,43,82,126,
-66,58,11,122,93,23,93,68,99,88,35,93,23,93,85,91,117,91,93,23,93,
-127,93,119,93,65,31,93,2,106,111,106,93,23,93,4,118,93,114,93,23,93,
-74,55,31,118,93,23,93,87,53,127,55,93,23,93,122,14,95,42,93,23,93,
-111,45,79,111,93,23,93,78,126,123,46,93,23,93,107,55,107,55,93,23,93,
-38,44,63,118,57,35,43,124,68,111,106,93,23,93,38,127,82,127,93,23,93,
-53,119,63,117,93,23,93,65,61,85,119,111,61,65,46,51,127,77,127,45,127,
-127,77,63,127,70,93,92,127,77,63,127,84,71,87,81,23,119,63,77,63,127,
-127,77,63,127,81,119,87,90,55,122,63,77,63,127,126,45,46,18,127,82,90,
-126,45,74,74,62,73,72,126,45,74,86,35,86,74,126,45,46,126,59,42,126,
-126,45,82,113,91,49,82,126,45,46,122,127,42,123,126,45,46,84,22,125,86,
-126,45,46,122,65,109,123,126,45,74,59,46,107,10,126,45,46,82,91,54,91,
-126,45,46,85,68,59,85,126,45,86,61,22,125,20,126,45,58,47,122,63,127,
-21,87,123,93,42,85,82,126,45,94,42,127,106,94,126,45,14,122,121,119,15,
-126,45,46,79,109,107,79,126,45,90,95,122,95,90,126,45,78,95,45,95,76,
-126,45,46,90,106,111,90,126,45,78,58,63,58,78,126,45,74,61,72,58,85,
-126,45,94,62,23,126,92,126,45,79,27,16,31,75,20,87,127,88,46,95,85,
-66,63,126,66,123,86,123,123,86,123,90,66,63,82,20,109,127,109,87,46,90,
-95,31,117,64,77,49,79,113,0,95,21,95,21,113,95,31,117,66,78,51,78,
-95,31,117,127,81,79,127,95,31,117,78,90,63,78,95,31,117,6,122,83,86,
-95,31,117,8,108,107,108,82,14,91,22,91,21,123,95,31,117,74,86,43,82,
-95,31,117,74,86,35,86,95,31,117,10,101,107,16,95,31,117,76,63,12,127,
-95,31,117,40,47,125,47,95,31,117,88,93,47,90,95,31,117,8,62,47,110,
-95,31,117,82,31,26,95,95,31,117,127,74,127,74,95,31,117,84,61,20,125,
-95,31,117,33,127,53,119,86,10,94,27,94,26,118,95,31,117,72,123,117,91,
-95,31,117,127,71,119,113,95,31,123,79,90,45,26,74,6,95,22,95,22,122,
-95,31,117,23,119,23,81,95,31,119,29,119,21,87,95,31,122,23,91,23,122,
-95,31,125,94,55,126,92,95,31,117,43,59,111,59,95,31,125,54,93,54,92,
-95,31,117,43,127,37,75,95,31,125,68,111,106,74,95,31,117,90,63,63,90,
-95,31,119,126,91,62,86,95,31,119,127,82,127,86,72,119,61,119,125,53,108,
-95,31,127,85,30,125,87,12,119,53,127,9,127,9,12,119,53,127,91,41,91,
-12,119,53,127,10,101,107,12,119,127,46,63,122,46,12,119,127,126,91,62,84,
-12,119,127,75,117,55,127,12,119,127,101,74,127,122,12,119,127,94,119,118,95,
-114,63,126,55,125,55,92,80,127,85,53,80,74,37,36,47,125,93,112,122,85,
-20,95,93,61,48,122,21,36,47,61,125,80,90,85,36,127,45,61,40,122,37,
-36,47,29,109,104,106,29,68,79,45,93,40,90,77,68,95,61,45,124,42,101,
-20,23,109,109,104,74,93,116,87,125,85,112,90,117,4,111,109,125,104,106,5,
-84,63,125,61,104,82,105,68,95,93,45,92,90,69,84,47,5,77,56,58,77,
-84,55,125,93,56,90,85,76,87,61,61,60,118,77,68,127,93,61,88,58,69,
-127,7,5,0,5,71,127,127,11,57,124,25,59,127,127,107,61,40,61,107,127,
-127,91,53,112,93,3,127,127,91,105,88,17,123,127,127,11,57,116,125,67,127,
-15,61,90,93,90,77,111,121,47,29,109,61,47,121,62,43,62,94,63,122,94,
-78,63,126,82,111,82,107,90,119,63,86,63,122,94,78,63,126,127,91,85,127,
-78,63,126,125,101,95,125,78,63,126,114,94,127,114,80,79,63,45,123,119,75,
-66,29,95,66,62,75,122,66,29,95,4,127,42,42,66,29,95,21,19,127,21,
-66,29,95,4,123,90,94,66,29,95,17,127,73,121,66,29,95,10,85,75,8,
-66,29,95,90,47,58,78,66,29,95,62,125,79,92,66,29,95,0,111,106,109,
-66,29,95,127,26,127,26,66,29,95,21,123,17,89,85,48,122,56,119,52,66,
-66,29,95,125,42,125,2,66,29,95,122,127,42,123,66,29,95,53,127,14,127,
-66,29,95,45,122,45,104,66,29,95,124,21,127,125,66,29,95,39,93,53,119,
-66,29,95,94,53,114,94,66,29,127,85,5,125,87,66,29,95,122,93,122,125,
-93,31,106,63,0,127,42,93,31,90,79,90,45,26,93,31,98,31,122,41,82,
-66,29,95,124,36,111,74,66,29,95,42,77,94,100,66,29,127,43,88,45,95,
-66,29,127,106,106,63,82,66,29,95,80,94,123,94,66,29,95,45,79,77,111,
-66,29,95,118,125,125,118,66,29,95,26,111,126,42,66,29,95,50,119,54,87,
-66,29,95,83,46,94,66,66,29,95,46,127,46,78,66,29,127,46,86,63,82,
-66,29,95,79,109,107,79,66,29,95,119,117,117,71,66,29,95,43,119,43,83,
-66,29,127,54,61,127,61,66,29,95,14,105,102,14,93,31,53,125,62,107,62,
-93,31,62,82,126,47,86,84,62,127,52,122,53,75,66,29,95,42,62,123,46,
-66,29,95,17,119,23,81,93,31,82,126,87,126,18,66,29,95,118,93,118,28,
-66,29,95,94,119,118,95,93,31,42,123,62,91,42,66,29,127,68,111,106,74,
-80,78,62,47,62,104,88,64,70,54,23,118,68,108,50,14,80,30,87,22,112,
-47,89,127,9,94,23,118,64,63,125,3,93,31,113,64,63,65,29,95,29,113,
-94,23,118,72,74,63,78,70,63,114,70,30,87,118,70,58,3,58,94,23,118,
-84,14,94,31,86,30,116,77,6,93,28,93,22,125,58,47,58,94,23,86,112,
-126,74,94,41,94,23,118,73,93,59,45,94,23,118,94,23,112,6,122,83,86,
-22,117,54,0,94,23,118,74,86,35,86,94,23,118,118,85,118,0,94,23,118,
-54,45,124,46,94,23,118,10,125,94,23,112,5,125,33,63,45,127,94,23,118,
-38,126,37,127,94,23,118,74,15,95,26,91,22,123,66,61,95,124,94,23,118,
-120,43,43,120,94,23,118,81,77,63,45,94,23,118,95,21,95,0,94,23,118,
-10,127,90,127,94,23,118,34,46,123,30,94,23,118,66,46,127,46,94,23,118,
-78,46,127,46,94,23,118,46,63,122,46,94,23,118,18,126,43,90,30,87,118,
-11,63,108,11,94,23,118,39,61,127,39,94,23,118,74,7,95,29,90,21,123,
-90,45,120,41,122,31,118,82,85,59,81,30,87,118,82,109,109,82,30,87,118,
-12,119,53,119,94,23,118,93,119,93,119,94,23,118,21,125,42,125,94,23,118,
-88,31,30,82,30,87,118,82,30,31,82,30,87,118,106,77,123,104,94,23,118,
-68,14,95,26,87,30,120,126,74,31,90,94,23,118,122,55,95,115,94,23,118,
-68,31,94,19,94,23,118,21,111,125,111,94,23,118,74,30,107,30,94,23,118,
-76,6,93,30,93,23,124,87,123,84,51,95,22,119,38,127,82,127,94,23,118,
-74,29,90,23,87,26,125,0,124,84,111,86,110,122,124,71,122,126,106,63,82,
-79,127,89,116,95,126,78,66,62,117,93,23,124,84,64,62,90,118,103,126,82,
-72,86,62,122,63,94,74,72,118,46,58,63,126,74,126,59,46,82,31,26,95,
-8,118,126,122,95,126,10,72,70,54,42,47,126,74,72,54,94,122,47,78,122,
-10,86,42,87,58,86,10,42,86,47,90,106,95,106,82,47,90,64,106,95,106,
-42,86,47,90,77,111,125,42,86,47,90,68,123,94,64,62,106,62,11,126,42,
-76,86,61,54,61,87,76,42,103,63,106,55,106,46,90,55,127,58,112,95,116,
-90,55,127,58,126,63,114,87,31,87,18,85,54,20,87,31,87,118,68,127,118,
-87,31,87,112,95,84,116,87,31,116,75,98,31,126,87,31,87,2,106,111,106,
-87,31,87,34,78,123,46,86,27,94,23,94,27,86,87,31,87,14,107,110,10,
-10,125,86,31,86,63,94,104,39,127,61,123,39,107,87,31,87,62,59,62,78,
-11,118,51,126,51,118,11,117,62,117,34,95,34,91,117,62,117,122,127,42,123,
-24,27,127,65,127,91,88,20,62,127,76,122,125,75,2,61,126,77,122,117,75,
-90,119,42,126,90,47,94,42,47,62,90,22,47,42,64,61,20,125,22,125,64,
-126,89,42,126,94,95,94,56,110,59,126,9,127,9,74,54,46,43,46,118,10,
-4,126,84,111,86,110,122,126,108,87,122,127,72,100,126,108,87,122,4,91,126,
-126,108,87,122,127,85,127,126,108,87,122,117,83,119,126,108,87,122,22,117,54,
-126,108,87,122,127,53,95,10,127,110,88,109,91,127,126,108,87,122,5,111,109,
-126,108,87,122,39,125,87,124,87,106,127,91,119,83,126,108,87,122,126,63,113,
-126,84,111,122,15,60,107,42,122,46,125,46,118,90,42,62,125,69,127,124,88,
-28,116,62,117,62,116,28,84,94,62,23,126,94,84,26,127,88,19,30,30,82,
-85,48,80,106,77,123,104,42,62,18,106,77,123,104,113,0,82,62,123,62,82,
-95,21,91,21,64,31,87,
-};
-
-void font_8x8(uint8_t buf[], int i)
-{
-    for(int j = 0; j < 7; j++) {
-        buf[j] = misaki_gothic[i*7+j];
-    }
-    buf[7] = 0x00;
-}
diff -r 337a2655f815 -r a6650dd2dbc8 misaki_8x8_unicode.cpp
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/misaki_8x8_unicode.cpp	Tue Aug 12 01:47:43 2014 +0000
@@ -0,0 +1,6936 @@
+// STARTFONT 2.1
+// FONT -Misaki-Gothic-Medium-R-Normal--8-80-75-75-C-80-jisx0208.1990-0
+// SIZE 8 75 75
+// FONTBOUNDINGBOX 8 8 0 -2
+// STARTPROPERTIES 19
+// FONTNAME_REGISTRY ""
+// FOUNDRY "Misaki"
+// FAMILY_NAME "Gothic"
+// WEIGHT_NAME "Medium"
+// SLANT "R"
+// SETWIDTH_NAME "Normal"
+// ADD_STYLE_NAME ""
+// PIXEL_SIZE 8
+// POINT_SIZE 80
+// RESOLUTION_X 75
+// RESOLUTION_Y 75
+// SPACING "C"
+// AVERAGE_WIDTH 80
+// CHARSET_REGISTRY "jisx0208.1990"
+// CHARSET_ENCODING "0"
+// DEFAULT_CHAR 8481
+// FONT_DESCENT 2
+// FONT_ASCENT 6
+// COPYRIGHT "Copyright(C) 2002-2012 Num Kadoma"
+// ENDPROPERTIES
+
+#include "GraphicOLED.h"
+
+struct stfont {
+    uint16_t unicode;
+    uint8_t bitmap[8];
+};
+
+static const struct stfont misaki_gothic[] = {
+{0x00a2,{0x00,0x1c,0x62,0x32,0x2e,0x23,0x14}}, // \xc2\xa2
+{0x00a3,{0x20,0x54,0x5e,0x25,0x41,0x42,0x20}}, // \xc2\xa3
+{0x00a7,{0x00,0x00,0x4a,0x55,0x55,0x29,0x00}}, // \xc2\xa7
+{0x00a8,{0x00,0x00,0x01,0x00,0x01,0x00,0x00}}, // \xc2\xa8
+{0x00ac,{0x08,0x08,0x08,0x08,0x08,0x08,0x38}}, // \xc2\xac
+{0x00b0,{0x02,0x05,0x02,0x00,0x00,0x00,0x00}}, // \xc2\xb0
+{0x00b1,{0x44,0x44,0x44,0x5f,0x44,0x44,0x44}}, // \xc2\xb1
+{0x00b4,{0x00,0x00,0x00,0x02,0x01,0x00,0x00}}, // \xc2\xb4
+{0x00b6,{0x00,0x06,0x0f,0x7f,0x01,0x7f,0x00}}, // \xc2\xb6
+{0x00d7,{0x41,0x22,0x14,0x08,0x14,0x22,0x41}}, // \xc3\x97
+{0x00f7,{0x08,0x08,0x08,0x2a,0x08,0x08,0x08}}, // \xc3\xb7
+{0x0391,{0x60,0x18,0x16,0x11,0x16,0x18,0x60}}, // \xce\x91
+{0x0392,{0x00,0x7f,0x49,0x49,0x49,0x49,0x36}}, // \xce\x92
+{0x0393,{0x00,0x7f,0x01,0x01,0x01,0x01,0x01}}, // \xce\x93
+{0x0394,{0x60,0x58,0x46,0x41,0x46,0x58,0x60}}, // \xce\x94
+{0x0395,{0x00,0x7f,0x49,0x49,0x49,0x49,0x41}}, // \xce\x95
+{0x0396,{0x00,0x41,0x61,0x51,0x49,0x45,0x43}}, // \xce\x96
+{0x0397,{0x00,0x7f,0x08,0x08,0x08,0x08,0x7f}}, // \xce\x97
+{0x0398,{0x1c,0x22,0x49,0x49,0x49,0x22,0x1c}}, // \xce\x98
+{0x0399,{0x00,0x00,0x41,0x7f,0x41,0x00,0x00}}, // \xce\x99
+{0x039a,{0x00,0x7f,0x10,0x08,0x14,0x22,0x41}}, // \xce\x9a
+{0x039b,{0x60,0x18,0x06,0x01,0x06,0x18,0x60}}, // \xce\x9b
+{0x039c,{0x7f,0x02,0x0c,0x30,0x0c,0x02,0x7f}}, // \xce\x9c
+{0x039d,{0x00,0x7f,0x02,0x04,0x08,0x10,0x7f}}, // \xce\x9d
+{0x039e,{0x00,0x41,0x49,0x49,0x49,0x49,0x41}}, // \xce\x9e
+{0x039f,{0x00,0x1c,0x22,0x41,0x41,0x22,0x1c}}, // \xce\x9f
+{0x03a0,{0x00,0x7f,0x01,0x01,0x01,0x01,0x7f}}, // \xce\xa0
+{0x03a1,{0x00,0x7f,0x09,0x09,0x09,0x09,0x06}}, // \xce\xa1
+{0x03a3,{0x00,0x41,0x63,0x55,0x49,0x41,0x41}}, // \xce\xa3
+{0x03a4,{0x01,0x01,0x01,0x7f,0x01,0x01,0x01}}, // \xce\xa4
+{0x03a5,{0x01,0x02,0x04,0x78,0x04,0x02,0x01}}, // \xce\xa5
+{0x03a6,{0x1c,0x22,0x22,0x7f,0x22,0x22,0x1c}}, // \xce\xa6
+{0x03a7,{0x41,0x22,0x14,0x08,0x14,0x22,0x41}}, // \xce\xa7
+{0x03a8,{0x01,0x06,0x08,0x7f,0x08,0x06,0x01}}, // \xce\xa8
+{0x03a9,{0x4c,0x52,0x61,0x01,0x61,0x52,0x4c}}, // \xce\xa9
+{0x03b1,{0x00,0x30,0x48,0x44,0x34,0x48,0x24}}, // \xce\xb1
+{0x03b2,{0x00,0x60,0x1c,0x12,0x25,0x25,0x1a}}, // \xce\xb2
+{0x03b3,{0x00,0x04,0x64,0x38,0x08,0x04,0x00}}, // \xce\xb3
+{0x03b4,{0x00,0x30,0x4a,0x45,0x39,0x02,0x00}}, // \xce\xb4
+{0x03b5,{0x00,0x20,0x58,0x54,0x44,0x28,0x00}}, // \xce\xb5
+{0x03b6,{0x00,0x00,0x0d,0x52,0x51,0x21,0x00}}, // \xce\xb6
+{0x03b7,{0x00,0x08,0x24,0x18,0x04,0x64,0x18}}, // \xce\xb7
+{0x03b8,{0x00,0x38,0x4e,0x49,0x39,0x0e,0x00}}, // \xce\xb8
+{0x03b9,{0x00,0x00,0x30,0x4c,0x20,0x00,0x00}}, // \xce\xb9
+{0x03ba,{0x00,0x60,0x1c,0x30,0x48,0x44,0x00}}, // \xce\xba
+{0x03bb,{0x00,0x40,0x30,0x09,0x3e,0x40,0x00}}, // \xce\xbb
+{0x03bc,{0x00,0x40,0x30,0x2c,0x20,0x10,0x2c}}, // \xce\xbc
+{0x03bd,{0x00,0x04,0x78,0x20,0x10,0x0c,0x00}}, // \xce\xbd
+{0x03be,{0x00,0x08,0x16,0x55,0x55,0x25,0x00}}, // \xce\xbe
+{0x03bf,{0x00,0x30,0x48,0x44,0x24,0x18,0x00}}, // \xce\xbf
+{0x03c0,{0x00,0x48,0x24,0x1c,0x04,0x7c,0x44}}, // \xcf\x80
+{0x03c1,{0x00,0x60,0x18,0x24,0x24,0x24,0x18}}, // \xcf\x81
+{0x03c3,{0x00,0x30,0x48,0x44,0x24,0x1c,0x04}}, // \xcf\x83
+{0x03c4,{0x00,0x08,0x04,0x34,0x4c,0x24,0x04}}, // \xcf\x84
+{0x03c5,{0x00,0x08,0x34,0x4c,0x40,0x20,0x1c}}, // \xcf\x85
+{0x03c6,{0x00,0x18,0x24,0x64,0x3c,0x27,0x18}}, // \xcf\x86
+{0x03c7,{0x00,0x40,0x24,0x34,0x48,0x44,0x00}}, // \xcf\x87
+{0x03c8,{0x00,0x14,0x2c,0x60,0x3c,0x23,0x18}}, // \xcf\x88
+{0x03c9,{0x00,0x38,0x44,0x20,0x38,0x40,0x3c}}, // \xcf\x89
+{0x0401,{0x00,0x7e,0x4b,0x4a,0x4a,0x4b,0x42}}, // \xd0\x81
+{0x0410,{0x60,0x18,0x16,0x11,0x16,0x18,0x60}}, // \xd0\x90
+{0x0411,{0x00,0x7f,0x49,0x49,0x49,0x49,0x31}}, // \xd0\x91
+{0x0412,{0x00,0x7f,0x49,0x49,0x49,0x49,0x36}}, // \xd0\x92
+{0x0413,{0x00,0x7f,0x01,0x01,0x01,0x01,0x01}}, // \xd0\x93
+{0x0414,{0x60,0x30,0x2f,0x21,0x21,0x3f,0x60}}, // \xd0\x94
+{0x0415,{0x00,0x7f,0x49,0x49,0x49,0x49,0x41}}, // \xd0\x95
+{0x0416,{0x41,0x36,0x08,0x7f,0x08,0x36,0x41}}, // \xd0\x96
+{0x0417,{0x00,0x22,0x41,0x49,0x49,0x49,0x36}}, // \xd0\x97
+{0x0418,{0x00,0x7f,0x20,0x10,0x08,0x04,0x7f}}, // \xd0\x98
+{0x0419,{0x00,0x7e,0x21,0x12,0x0a,0x05,0x7e}}, // \xd0\x99
+{0x041a,{0x00,0x7f,0x08,0x08,0x16,0x21,0x41}}, // \xd0\x9a
+{0x041b,{0x40,0x40,0x3f,0x01,0x01,0x01,0x7f}}, // \xd0\x9b
+{0x041c,{0x78,0x07,0x18,0x60,0x18,0x07,0x78}}, // \xd0\x9c
+{0x041d,{0x00,0x7f,0x08,0x08,0x08,0x08,0x7f}}, // \xd0\x9d
+{0x041e,{0x00,0x1c,0x22,0x41,0x41,0x22,0x1c}}, // \xd0\x9e
+{0x041f,{0x00,0x7f,0x01,0x01,0x01,0x01,0x7f}}, // \xd0\x9f
+{0x0420,{0x00,0x7f,0x09,0x09,0x09,0x09,0x06}}, // \xd0\xa0
+{0x0421,{0x00,0x1c,0x22,0x41,0x41,0x41,0x22}}, // \xd0\xa1
+{0x0422,{0x01,0x01,0x01,0x7f,0x01,0x01,0x01}}, // \xd0\xa2
+{0x0423,{0x00,0x41,0x46,0x28,0x18,0x06,0x01}}, // \xd0\xa3
+{0x0424,{0x1c,0x22,0x22,0x7f,0x22,0x22,0x1c}}, // \xd0\xa4
+{0x0425,{0x41,0x22,0x14,0x08,0x14,0x22,0x41}}, // \xd0\xa5
+{0x0426,{0x00,0x3f,0x20,0x20,0x20,0x3f,0x60}}, // \xd0\xa6
+{0x0427,{0x00,0x0f,0x10,0x10,0x10,0x10,0x7f}}, // \xd0\xa7
+{0x0428,{0x7f,0x40,0x40,0x7f,0x40,0x40,0x7f}}, // \xd0\xa8
+{0x0429,{0x3f,0x20,0x20,0x3f,0x20,0x20,0x7f}}, // \xd0\xa9
+{0x042a,{0x00,0x01,0x7f,0x48,0x48,0x48,0x30}}, // \xd0\xaa
+{0x042b,{0x00,0x7f,0x48,0x48,0x30,0x00,0x7f}}, // \xd0\xab
+{0x042c,{0x00,0x00,0x7f,0x48,0x48,0x48,0x30}}, // \xd0\xac
+{0x042d,{0x00,0x22,0x49,0x49,0x49,0x2a,0x1c}}, // \xd0\xad
+{0x042e,{0x7f,0x08,0x3e,0x41,0x41,0x41,0x3e}}, // \xd0\xae
+{0x042f,{0x00,0x46,0x39,0x09,0x09,0x09,0x7f}}, // \xd0\xaf
+{0x0430,{0x00,0x20,0x54,0x54,0x54,0x78,0x00}}, // \xd0\xb0
+{0x0431,{0x00,0x3c,0x46,0x45,0x45,0x39,0x00}}, // \xd0\xb1
+{0x0432,{0x00,0x7c,0x54,0x54,0x54,0x28,0x00}}, // \xd0\xb2
+{0x0433,{0x00,0x7c,0x04,0x04,0x04,0x04,0x00}}, // \xd0\xb3
+{0x0434,{0x00,0x60,0x3c,0x24,0x3c,0x60,0x00}}, // \xd0\xb4
+{0x0435,{0x00,0x38,0x54,0x54,0x54,0x18,0x00}}, // \xd0\xb5
+{0x0436,{0x44,0x28,0x10,0x7c,0x10,0x28,0x44}}, // \xd0\xb6
+{0x0437,{0x00,0x28,0x44,0x54,0x54,0x28,0x00}}, // \xd0\xb7
+{0x0438,{0x00,0x7c,0x20,0x10,0x08,0x7c,0x00}}, // \xd0\xb8
+{0x0439,{0x00,0x7c,0x21,0x12,0x09,0x7c,0x00}}, // \xd0\xb9
+{0x043a,{0x00,0x7c,0x10,0x18,0x24,0x44,0x00}}, // \xd0\xba
+{0x043b,{0x40,0x40,0x3c,0x04,0x04,0x7c,0x00}}, // \xd0\xbb
+{0x043c,{0x00,0x7c,0x08,0x30,0x08,0x7c,0x00}}, // \xd0\xbc
+{0x043d,{0x00,0x7c,0x10,0x10,0x10,0x7c,0x00}}, // \xd0\xbd
+{0x043e,{0x00,0x38,0x44,0x44,0x44,0x38,0x00}}, // \xd0\xbe
+{0x043f,{0x00,0x7c,0x04,0x04,0x04,0x7c,0x00}}, // \xd0\xbf
+{0x0440,{0x00,0x7c,0x14,0x14,0x14,0x08,0x00}}, // \xd1\x80
+{0x0441,{0x00,0x38,0x44,0x44,0x44,0x28,0x00}}, // \xd1\x81
+{0x0442,{0x00,0x04,0x04,0x7c,0x04,0x04,0x00}}, // \xd1\x82
+{0x0443,{0x00,0x44,0x58,0x20,0x18,0x04,0x00}}, // \xd1\x83
+{0x0444,{0x00,0x18,0x24,0x7f,0x24,0x18,0x00}}, // \xd1\x84
+{0x0445,{0x00,0x44,0x28,0x10,0x28,0x44,0x00}}, // \xd1\x85
+{0x0446,{0x00,0x3c,0x20,0x20,0x3c,0x60,0x00}}, // \xd1\x86
+{0x0447,{0x00,0x1c,0x20,0x20,0x20,0x7c,0x00}}, // \xd1\x87
+{0x0448,{0x00,0x7c,0x40,0x7c,0x40,0x7c,0x00}}, // \xd1\x88
+{0x0449,{0x00,0x3c,0x20,0x3c,0x20,0x3c,0x60}}, // \xd1\x89
+{0x044a,{0x00,0x04,0x7c,0x50,0x50,0x50,0x20}}, // \xd1\x8a
+{0x044b,{0x00,0x7c,0x50,0x50,0x20,0x7c,0x00}}, // \xd1\x8b
+{0x044c,{0x00,0x7c,0x50,0x50,0x50,0x20,0x00}}, // \xd1\x8c
+{0x044d,{0x00,0x28,0x44,0x54,0x54,0x38,0x00}}, // \xd1\x8d
+{0x044e,{0x00,0x7c,0x10,0x38,0x44,0x44,0x38}}, // \xd1\x8e
+{0x044f,{0x00,0x48,0x34,0x14,0x14,0x7c,0x00}}, // \xd1\x8f
+{0x0451,{0x00,0x38,0x55,0x54,0x55,0x18,0x00}}, // \xd1\x91
+{0x2010,{0x00,0x00,0x08,0x08,0x08,0x00,0x00}}, // \xe2\x80\x90
+{0x2015,{0x08,0x08,0x08,0x08,0x08,0x08,0x08}}, // \xe2\x80\x95
+{0x2016,{0x00,0x00,0x7f,0x00,0x7f,0x00,0x00}}, // \xe2\x80\x96
+{0x2018,{0x00,0x00,0x00,0x00,0x00,0x06,0x05}}, // \xe2\x80\x98
+{0x2019,{0x05,0x03,0x00,0x00,0x00,0x00,0x00}}, // \xe2\x80\x99
+{0x201c,{0x00,0x00,0x06,0x05,0x00,0x06,0x05}}, // \xe2\x80\x9c
+{0x201d,{0x05,0x03,0x00,0x05,0x03,0x00,0x00}}, // \xe2\x80\x9d
+{0x2020,{0x00,0x00,0x02,0x7f,0x02,0x00,0x00}}, // \xe2\x80\xa0
+{0x2021,{0x00,0x00,0x22,0x7f,0x22,0x00,0x00}}, // \xe2\x80\xa1
+{0x2025,{0x00,0x08,0x00,0x00,0x00,0x08,0x00}}, // \xe2\x80\xa5
+{0x2026,{0x08,0x00,0x00,0x08,0x00,0x00,0x08}}, // \xe2\x80\xa6
+{0x2030,{0x22,0x15,0x2a,0x54,0x22,0x51,0x20}}, // \xe2\x80\xb0
+{0x2032,{0x04,0x03,0x00,0x00,0x00,0x00,0x00}}, // \xe2\x80\xb2
+{0x2033,{0x04,0x03,0x04,0x03,0x00,0x00,0x00}}, // \xe2\x80\xb3
+{0x203b,{0x49,0x22,0x14,0x49,0x14,0x22,0x49}}, // \xe2\x80\xbb
+{0x2103,{0x02,0x05,0x02,0x3c,0x42,0x42,0x24}}, // \xe2\x84\x83
+{0x212b,{0x40,0x30,0x2a,0x25,0x2a,0x30,0x40}}, // \xe2\x84\xab
+{0x2190,{0x08,0x1c,0x2a,0x08,0x08,0x08,0x08}}, // \xe2\x86\x90
+{0x2191,{0x00,0x04,0x02,0x7f,0x02,0x04,0x00}}, // \xe2\x86\x91
+{0x2192,{0x08,0x08,0x08,0x08,0x2a,0x1c,0x08}}, // \xe2\x86\x92
+{0x2193,{0x00,0x10,0x20,0x7f,0x20,0x10,0x00}}, // \xe2\x86\x93
+{0x21d2,{0x14,0x14,0x14,0x14,0x36,0x14,0x08}}, // \xe2\x87\x92
+{0x21d4,{0x08,0x14,0x36,0x14,0x36,0x14,0x08}}, // \xe2\x87\x94
+{0x2200,{0x03,0x0c,0x34,0x44,0x34,0x0c,0x03}}, // \xe2\x88\x80
+{0x2202,{0x00,0x30,0x4a,0x49,0x31,0x0e,0x00}}, // \xe2\x88\x82
+{0x2203,{0x00,0x49,0x49,0x49,0x49,0x49,0x7f}}, // \xe2\x88\x83
+{0x2207,{0x03,0x0d,0x31,0x41,0x31,0x0d,0x03}}, // \xe2\x88\x87
+{0x2208,{0x00,0x1c,0x2a,0x2a,0x2a,0x2a,0x2a}}, // \xe2\x88\x88
+{0x220b,{0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x1c}}, // \xe2\x88\x8b
+{0x2212,{0x08,0x08,0x08,0x08,0x08,0x08,0x08}}, // \xe2\x88\x92
+{0x221a,{0x10,0x70,0x1c,0x03,0x01,0x01,0x01}}, // \xe2\x88\x9a
+{0x221d,{0x1c,0x22,0x22,0x1c,0x22,0x22,0x14}}, // \xe2\x88\x9d
+{0x221e,{0x1c,0x22,0x22,0x1c,0x22,0x22,0x1c}}, // \xe2\x88\x9e
+{0x2220,{0x00,0x40,0x60,0x50,0x48,0x44,0x42}}, // \xe2\x88\xa0
+{0x2227,{0x40,0x30,0x0c,0x03,0x0c,0x30,0x40}}, // \xe2\x88\xa7
+{0x2228,{0x01,0x06,0x18,0x60,0x18,0x06,0x01}}, // \xe2\x88\xa8
+{0x2229,{0x00,0x7c,0x02,0x02,0x02,0x02,0x7c}}, // \xe2\x88\xa9
+{0x222a,{0x00,0x1f,0x20,0x20,0x20,0x20,0x1f}}, // \xe2\x88\xaa
+{0x222b,{0x00,0x00,0x46,0x49,0x31,0x00,0x00}}, // \xe2\x88\xab
+{0x222c,{0x00,0x46,0x49,0x31,0x46,0x49,0x31}}, // \xe2\x88\xac
+{0x2234,{0x00,0x20,0x00,0x02,0x00,0x20,0x00}}, // \xe2\x88\xb4
+{0x2235,{0x00,0x02,0x00,0x20,0x00,0x02,0x00}}, // \xe2\x88\xb5
+{0x223d,{0x1c,0x22,0x20,0x1c,0x02,0x22,0x1c}}, // \xe2\x88\xbd
+{0x2252,{0x14,0x15,0x14,0x14,0x14,0x54,0x14}}, // \xe2\x89\x92
+{0x2260,{0x14,0x34,0x14,0x1c,0x14,0x16,0x14}}, // \xe2\x89\xa0
+{0x2261,{0x00,0x2a,0x2a,0x2a,0x2a,0x2a,0x2a}}, // \xe2\x89\xa1
+{0x2266,{0x44,0x44,0x4a,0x4a,0x4a,0x51,0x51}}, // \xe2\x89\xa6
+{0x2267,{0x51,0x51,0x4a,0x4a,0x4a,0x44,0x44}}, // \xe2\x89\xa7
+{0x226a,{0x08,0x14,0x22,0x08,0x14,0x22,0x00}}, // \xe2\x89\xaa
+{0x226b,{0x00,0x22,0x14,0x08,0x22,0x14,0x08}}, // \xe2\x89\xab
+{0x2282,{0x00,0x1c,0x22,0x22,0x22,0x22,0x22}}, // \xe2\x8a\x82
+{0x2283,{0x00,0x22,0x22,0x22,0x22,0x22,0x1c}}, // \xe2\x8a\x83
+{0x2286,{0x00,0x4e,0x51,0x51,0x51,0x51,0x51}}, // \xe2\x8a\x86
+{0x2287,{0x00,0x51,0x51,0x51,0x51,0x51,0x4e}}, // \xe2\x8a\x87
+{0x22a5,{0x40,0x40,0x40,0x7e,0x40,0x40,0x40}}, // \xe2\x8a\xa5
+{0x2312,{0x02,0x01,0x01,0x01,0x01,0x01,0x02}}, // \xe2\x8c\x92
+{0x2500,{0x08,0x08,0x08,0x08,0x08,0x08,0x08}}, // \xe2\x94\x80
+{0x2501,{0x18,0x18,0x18,0x18,0x18,0x18,0x18}}, // \xe2\x94\x81
+{0x2502,{0x00,0x00,0x00,0xff,0x00,0x00,0x00}}, // \xe2\x94\x82
+{0x2503,{0x00,0x00,0x00,0xff,0xff,0x00,0x00}}, // \xe2\x94\x83
+{0x250c,{0x00,0x00,0x00,0xf8,0x08,0x08,0x08}}, // \xe2\x94\x8c
+{0x250f,{0x00,0x00,0x00,0xf8,0xf8,0x18,0x18}}, // \xe2\x94\x8f
+{0x2510,{0x08,0x08,0x08,0xf8,0x00,0x00,0x00}}, // \xe2\x94\x90
+{0x2513,{0x18,0x18,0x18,0xf8,0xf8,0x00,0x00}}, // \xe2\x94\x93
+{0x2514,{0x00,0x00,0x00,0x0f,0x08,0x08,0x08}}, // \xe2\x94\x94
+{0x2517,{0x00,0x00,0x00,0x1f,0x1f,0x18,0x18}}, // \xe2\x94\x97
+{0x2518,{0x08,0x08,0x08,0x0f,0x00,0x00,0x00}}, // \xe2\x94\x98
+{0x251b,{0x18,0x18,0x18,0x1f,0x1f,0x00,0x00}}, // \xe2\x94\x9b
+{0x251c,{0x00,0x00,0x00,0xff,0x08,0x08,0x08}}, // \xe2\x94\x9c
+{0x251d,{0x00,0x00,0x00,0xff,0x18,0x18,0x18}}, // \xe2\x94\x9d
+{0x2520,{0x00,0x00,0x00,0xff,0xff,0x08,0x08}}, // \xe2\x94\xa0
+{0x2523,{0x00,0x00,0x00,0xff,0xff,0x18,0x18}}, // \xe2\x94\xa3
+{0x2524,{0x08,0x08,0x08,0xff,0x00,0x00,0x00}}, // \xe2\x94\xa4
+{0x2525,{0x18,0x18,0x18,0xff,0x00,0x00,0x00}}, // \xe2\x94\xa5
+{0x2528,{0x08,0x08,0x08,0xff,0xff,0x00,0x00}}, // \xe2\x94\xa8
+{0x252b,{0x18,0x18,0x18,0xff,0xff,0x00,0x00}}, // \xe2\x94\xab
+{0x252c,{0x08,0x08,0x08,0xf8,0x08,0x08,0x08}}, // \xe2\x94\xac
+{0x252f,{0x18,0x18,0x18,0xf8,0x18,0x18,0x18}}, // \xe2\x94\xaf
+{0x2530,{0x08,0x08,0x08,0xf8,0xf8,0x08,0x08}}, // \xe2\x94\xb0
+{0x2533,{0x18,0x18,0x18,0xf8,0xf8,0x18,0x18}}, // \xe2\x94\xb3
+{0x2534,{0x08,0x08,0x08,0x0f,0x08,0x08,0x08}}, // \xe2\x94\xb4
+{0x2537,{0x18,0x18,0x18,0x1f,0x18,0x18,0x18}}, // \xe2\x94\xb7
+{0x2538,{0x08,0x08,0x08,0x0f,0x0f,0x08,0x08}}, // \xe2\x94\xb8
+{0x253b,{0x18,0x18,0x18,0x1f,0x1f,0x18,0x18}}, // \xe2\x94\xbb
+{0x253c,{0x08,0x08,0x08,0xff,0x08,0x08,0x08}}, // \xe2\x94\xbc
+{0x253f,{0x18,0x18,0x18,0xff,0x18,0x18,0x18}}, // \xe2\x94\xbf
+{0x2542,{0x08,0x08,0x08,0xff,0xff,0x08,0x08}}, // \xe2\x95\x82
+{0x254b,{0x18,0x18,0x18,0xff,0xff,0x18,0x18}}, // \xe2\x95\x8b
+{0x25a0,{0x7f,0x7f,0x7f,0x7f,0x7f,0x7f,0x7f}}, // \xe2\x96\xa0
+{0x25a1,{0x7f,0x41,0x41,0x41,0x41,0x41,0x7f}}, // \xe2\x96\xa1
+{0x25b2,{0x40,0x70,0x7c,0x7f,0x7c,0x70,0x40}}, // \xe2\x96\xb2
+{0x25b3,{0x40,0x70,0x4c,0x43,0x4c,0x70,0x40}}, // \xe2\x96\xb3
+{0x25bc,{0x01,0x07,0x1f,0x7f,0x1f,0x07,0x01}}, // \xe2\x96\xbc
+{0x25bd,{0x01,0x07,0x19,0x61,0x19,0x07,0x01}}, // \xe2\x96\xbd
+{0x25c6,{0x08,0x1c,0x3e,0x7f,0x3e,0x1c,0x08}}, // \xe2\x97\x86
+{0x25c7,{0x08,0x14,0x22,0x41,0x22,0x14,0x08}}, // \xe2\x97\x87
+{0x25cb,{0x1c,0x22,0x41,0x41,0x41,0x22,0x1c}}, // \xe2\x97\x8b
+{0x25ce,{0x1c,0x22,0x5d,0x55,0x5d,0x22,0x1c}}, // \xe2\x97\x8e
+{0x25cf,{0x1c,0x3e,0x7f,0x7f,0x7f,0x3e,0x1c}}, // \xe2\x97\x8f
+{0x25ef,{0x3e,0x41,0x41,0x41,0x41,0x41,0x3e}}, // \xe2\x97\xaf
+{0x2605,{0x04,0x64,0x3c,0x1f,0x3c,0x64,0x04}}, // \xe2\x98\x85
+{0x2606,{0x04,0x64,0x3c,0x17,0x3c,0x64,0x04}}, // \xe2\x98\x86
+{0x2640,{0x00,0x26,0x29,0x79,0x29,0x26,0x00}}, // \xe2\x99\x80
+{0x2642,{0x30,0x48,0x48,0x39,0x05,0x03,0x0f}}, // \xe2\x99\x82
+{0x266a,{0x00,0x60,0x70,0x3f,0x02,0x0c,0x00}}, // \xe2\x99\xaa
+{0x266d,{0x00,0x00,0x7f,0x48,0x24,0x18,0x00}}, // \xe2\x99\xad
+{0x266f,{0x00,0x28,0x7e,0x14,0x14,0x3f,0x0a}}, // \xe2\x99\xaf
+{0x3000,{0x00,0x00,0x00,0x00,0x00,0x00,0x00}}, // \xe3\x80\x80
+{0x3001,{0x20,0x40,0x00,0x00,0x00,0x00,0x00}}, // \xe3\x80\x81
+{0x3002,{0x20,0x50,0x20,0x00,0x00,0x00,0x00}}, // \xe3\x80\x82
+{0x3003,{0x00,0x20,0x1c,0x00,0x20,0x1c,0x00}}, // \xe3\x80\x83
+{0x3005,{0x10,0x08,0x16,0x24,0x54,0x0c,0x00}}, // \xe3\x80\x85
+{0x3006,{0x78,0x24,0x12,0x0a,0x04,0x1a,0x01}}, // \xe3\x80\x86
+{0x3007,{0x18,0x24,0x42,0x42,0x42,0x24,0x18}}, // \xe3\x80\x87
+{0x3008,{0x00,0x00,0x00,0x08,0x14,0x22,0x41}}, // \xe3\x80\x88
+{0x3009,{0x41,0x22,0x14,0x08,0x00,0x00,0x00}}, // \xe3\x80\x89
+{0x300a,{0x00,0x08,0x14,0x2a,0x55,0x22,0x41}}, // \xe3\x80\x8a
+{0x300b,{0x41,0x22,0x55,0x2a,0x14,0x08,0x00}}, // \xe3\x80\x8b
+{0x300c,{0x00,0x00,0x00,0x3f,0x01,0x01,0x01}}, // \xe3\x80\x8c
+{0x300d,{0x40,0x40,0x40,0x7e,0x00,0x00,0x00}}, // \xe3\x80\x8d
+{0x300e,{0x00,0x00,0x3f,0x21,0x3d,0x05,0x07}}, // \xe3\x80\x8e
+{0x300f,{0x70,0x50,0x5e,0x42,0x7e,0x00,0x00}}, // \xe3\x80\x8f
+{0x3010,{0x00,0x00,0x00,0x00,0x7f,0x63,0x41}}, // \xe3\x80\x90
+{0x3011,{0x41,0x63,0x7f,0x00,0x00,0x00,0x00}}, // \xe3\x80\x91
+{0x3012,{0x05,0x05,0x05,0x7d,0x05,0x05,0x05}}, // \xe3\x80\x92
+{0x3013,{0x36,0x36,0x36,0x36,0x36,0x36,0x36}}, // \xe3\x80\x93
+{0x3014,{0x00,0x00,0x00,0x3e,0x22,0x41,0x41}}, // \xe3\x80\x94
+{0x3015,{0x41,0x41,0x22,0x3e,0x00,0x00,0x00}}, // \xe3\x80\x95
+{0x301c,{0x08,0x04,0x04,0x08,0x10,0x10,0x08}}, // \xe3\x80\x9c
+{0x3041,{0x00,0x20,0x54,0x7e,0x34,0x14,0x60}}, // \xe3\x81\x81
+{0x3042,{0x20,0x52,0x7f,0x2a,0x1a,0x4a,0x30}}, // \xe3\x81\x82
+{0x3043,{0x00,0x3c,0x40,0x20,0x04,0x18,0x00}}, // \xe3\x81\x83
+{0x3044,{0x1e,0x20,0x40,0x20,0x02,0x04,0x18}}, // \xe3\x81\x84
+{0x3045,{0x00,0x10,0x4a,0x4a,0x2a,0x10,0x00}}, // \xe3\x81\x85
+{0x3046,{0x00,0x08,0x45,0x45,0x45,0x25,0x18}}, // \xe3\x81\x86
+{0x3047,{0x00,0x48,0x2a,0x3a,0x4a,0x40,0x00}}, // \xe3\x81\x87
+{0x3048,{0x00,0x44,0x25,0x15,0x3d,0x45,0x40}}, // \xe3\x81\x88
+{0x3049,{0x00,0x24,0x7e,0x14,0x50,0x24,0x00}}, // \xe3\x81\x89
+{0x304a,{0x22,0x52,0x7f,0x0a,0x48,0x4a,0x34}}, // \xe3\x81\x8a
+{0x304b,{0x44,0x34,0x4f,0x44,0x38,0x04,0x18}}, // \xe3\x81\x8b
+{0x304c,{0x44,0x34,0x4f,0x44,0x39,0x04,0x19}}, // \xe3\x81\x8c
+{0x304d,{0x00,0x2a,0x5a,0x4b,0x4e,0x5a,0x08}}, // \xe3\x81\x8d
+{0x304e,{0x00,0x2a,0x5a,0x4b,0x4e,0x5b,0x08}}, // \xe3\x81\x8e
+{0x304f,{0x00,0x08,0x14,0x14,0x22,0x41,0x00}}, // \xe3\x81\x8f
+{0x3050,{0x00,0x08,0x14,0x14,0x22,0x45,0x04}}, // \xe3\x81\x90
+{0x3051,{0x3f,0x00,0x04,0x44,0x3f,0x04,0x04}}, // \xe3\x81\x91
+{0x3052,{0x3f,0x00,0x04,0x44,0x3f,0x04,0x05}}, // \xe3\x81\x92
+{0x3053,{0x00,0x20,0x52,0x42,0x42,0x42,0x40}}, // \xe3\x81\x93
+{0x3054,{0x00,0x20,0x52,0x42,0x43,0x42,0x41}}, // \xe3\x81\x94
+{0x3055,{0x00,0x24,0x54,0x44,0x47,0x5c,0x04}}, // \xe3\x81\x95
+{0x3056,{0x00,0x24,0x54,0x44,0x47,0x5c,0x05}}, // \xe3\x81\x96
+{0x3057,{0x00,0x00,0x3f,0x40,0x40,0x40,0x20}}, // \xe3\x81\x97
+{0x3058,{0x00,0x00,0x3f,0x40,0x41,0x40,0x21}}, // \xe3\x81\x98
+{0x3059,{0x02,0x02,0x0a,0x56,0x3f,0x02,0x02}}, // \xe3\x81\x99
+{0x305a,{0x02,0x02,0x0a,0x56,0x3f,0x02,0x03}}, // \xe3\x81\x9a
+{0x305b,{0x04,0x04,0x3f,0x44,0x54,0x5f,0x44}}, // \xe3\x81\x9b
+{0x305c,{0x04,0x04,0x3f,0x44,0x54,0x5f,0x45}}, // \xe3\x81\x9c
+{0x305d,{0x00,0x08,0x09,0x3d,0x4b,0x49,0x08}}, // \xe3\x81\x9d
+{0x305e,{0x00,0x08,0x09,0x3d,0x4b,0x49,0x0a}}, // \xe3\x81\x9e
+{0x305f,{0x42,0x3a,0x07,0x22,0x54,0x44,0x44}}, // \xe3\x81\x9f
+{0x3060,{0x42,0x3a,0x07,0x22,0x55,0x44,0x45}}, // \xe3\x81\xa0
+{0x3061,{0x00,0x02,0x12,0x4e,0x4b,0x4a,0x32}}, // \xe3\x81\xa1
+{0x3062,{0x00,0x02,0x12,0x4e,0x4b,0x4a,0x33}}, // \xe3\x81\xa2
+{0x3063,{0x00,0x10,0x10,0x48,0x48,0x30,0x00}}, // \xe3\x81\xa3
+{0x3064,{0x04,0x04,0x02,0x22,0x22,0x22,0x1c}}, // \xe3\x81\xa4
+{0x3065,{0x04,0x04,0x02,0x22,0x23,0x22,0x1d}}, // \xe3\x81\xa5
+{0x3066,{0x00,0x02,0x02,0x1a,0x25,0x43,0x41}}, // \xe3\x81\xa6
+{0x3067,{0x00,0x02,0x02,0x1a,0x25,0x43,0x45}}, // \xe3\x81\xa7
+{0x3068,{0x00,0x20,0x57,0x48,0x48,0x44,0x44}}, // \xe3\x81\xa8
+{0x3069,{0x00,0x20,0x57,0x48,0x49,0x44,0x45}}, // \xe3\x81\xa9
+{0x306a,{0x12,0x0a,0x27,0x52,0x50,0x3a,0x24}}, // \xe3\x81\xaa
+{0x306b,{0x7f,0x00,0x20,0x52,0x42,0x42,0x40}}, // \xe3\x81\xab
+{0x306c,{0x30,0x4e,0x38,0x54,0x0f,0x64,0x78}}, // \xe3\x81\xac
+{0x306d,{0x24,0x14,0x7f,0x04,0x22,0x52,0x3c}}, // \xe3\x81\xad
+{0x306e,{0x18,0x24,0x12,0x4e,0x42,0x24,0x18}}, // \xe3\x81\xae
+{0x306f,{0x7f,0x00,0x24,0x54,0x54,0x3f,0x44}}, // \xe3\x81\xaf
+{0x3070,{0x7f,0x00,0x24,0x54,0x54,0x3f,0x45}}, // \xe3\x81\xb0
+{0x3071,{0x7f,0x00,0x24,0x54,0x56,0x3d,0x46}}, // \xe3\x81\xb1
+{0x3072,{0x02,0x3a,0x47,0x40,0x41,0x3e,0x04}}, // \xe3\x81\xb2
+{0x3073,{0x02,0x3a,0x47,0x40,0x41,0x3e,0x05}}, // \xe3\x81\xb3
+{0x3074,{0x02,0x3a,0x47,0x40,0x43,0x3d,0x06}}, // \xe3\x81\xb4
+{0x3075,{0x40,0x30,0x40,0x4d,0x32,0x10,0x60}}, // \xe3\x81\xb5
+{0x3076,{0x40,0x30,0x40,0x4d,0x32,0x11,0x61}}, // \xe3\x81\xb6
+{0x3077,{0x40,0x30,0x40,0x4d,0x32,0x15,0x62}}, // \xe3\x81\xb7
+{0x3078,{0x08,0x04,0x02,0x04,0x08,0x10,0x10}}, // \xe3\x81\xb8
+{0x3079,{0x08,0x04,0x02,0x04,0x09,0x10,0x11}}, // \xe3\x81\xb9
+{0x307a,{0x08,0x04,0x02,0x04,0x0a,0x15,0x12}}, // \xe3\x81\xba
+{0x307b,{0x7f,0x00,0x6a,0x6a,0x7e,0x2a,0x4a}}, // \xe3\x81\xbb
+{0x307c,{0x7f,0x00,0x6a,0x6a,0x7f,0x2a,0x4b}}, // \xe3\x81\xbc
+{0x307d,{0x7f,0x00,0x6a,0x6a,0x7e,0x2d,0x4a}}, // \xe3\x81\xbd
+{0x307e,{0x00,0x6a,0x6a,0x6a,0x7f,0x2a,0x4a}}, // \xe3\x81\xbe
+{0x307f,{0x30,0x29,0x1d,0x4b,0x48,0x3c,0x10}}, // \xe3\x81\xbf
+{0x3080,{0x12,0x2a,0x7f,0x42,0x40,0x42,0x24}}, // \xe3\x82\x80
+{0x3081,{0x30,0x4e,0x38,0x54,0x0f,0x44,0x38}}, // \xe3\x82\x81
+{0x3082,{0x00,0x0a,0x3e,0x4b,0x4a,0x4a,0x30}}, // \xe3\x82\x82
+{0x3083,{0x00,0x08,0x0e,0x38,0x46,0x14,0x08}}, // \xe3\x82\x83
+{0x3084,{0x04,0x07,0x1c,0x62,0x03,0x0a,0x04}}, // \xe3\x82\x84
+{0x3085,{0x00,0x1c,0x48,0x3e,0x24,0x18,0x00}}, // \xe3\x82\x85
+{0x3086,{0x1e,0x04,0x52,0x3f,0x12,0x12,0x0c}}, // \xe3\x82\x86
+{0x3087,{0x00,0x20,0x50,0x50,0x3e,0x48,0x00}}, // \xe3\x82\x87
+{0x3088,{0x00,0x20,0x50,0x50,0x3f,0x24,0x44}}, // \xe3\x82\x88
+{0x3089,{0x00,0x1c,0x51,0x49,0x4a,0x48,0x30}}, // \xe3\x82\x89
+{0x308a,{0x00,0x0f,0x42,0x41,0x21,0x1e,0x00}}, // \xe3\x82\x8a
+{0x308b,{0x00,0x10,0x69,0x6d,0x4b,0x49,0x30}}, // \xe3\x82\x8b
+{0x308c,{0x24,0x14,0x7f,0x04,0x02,0x3e,0x40}}, // \xe3\x82\x8c
+{0x308d,{0x00,0x10,0x49,0x4d,0x4b,0x49,0x30}}, // \xe3\x82\x8d
+{0x308e,{0x00,0x28,0x18,0x7e,0x08,0x44,0x38}}, // \xe3\x82\x8e
+{0x308f,{0x24,0x14,0x7f,0x04,0x42,0x42,0x3c}}, // \xe3\x82\x8f
+{0x3090,{0x30,0x49,0x25,0x1f,0x24,0x54,0x38}}, // \xe3\x82\x90
+{0x3091,{0x40,0x28,0x25,0x57,0x35,0x28,0x40}}, // \xe3\x82\x91
+{0x3092,{0x10,0x0a,0x2e,0x5b,0x72,0x4a,0x48}}, // \xe3\x82\x92
+{0x3093,{0x40,0x30,0x0c,0x33,0x40,0x40,0x20}}, // \xe3\x82\x93
+{0x309b,{0x01,0x02,0x01,0x02,0x00,0x00,0x00}}, // \xe3\x82\x9b
+{0x309c,{0x02,0x05,0x02,0x00,0x00,0x00,0x00}}, // \xe3\x82\x9c
+{0x309d,{0x00,0x00,0x22,0x24,0x18,0x10,0x00}}, // \xe3\x82\x9d
+{0x309e,{0x00,0x00,0x22,0x24,0x19,0x10,0x01}}, // \xe3\x82\x9e
+{0x30a1,{0x00,0x04,0x44,0x3c,0x14,0x0c,0x00}}, // \xe3\x82\xa1
+{0x30a2,{0x00,0x01,0x41,0x3d,0x09,0x05,0x03}}, // \xe3\x82\xa2
+{0x30a3,{0x00,0x20,0x20,0x10,0x78,0x04,0x00}}, // \xe3\x82\xa3
+{0x30a4,{0x00,0x10,0x10,0x08,0x7c,0x02,0x01}}, // \xe3\x82\xa4
+{0x30a5,{0x00,0x18,0x48,0x4c,0x28,0x18,0x00}}, // \xe3\x82\xa5
+{0x30a6,{0x00,0x06,0x42,0x43,0x22,0x12,0x0e}}, // \xe3\x82\xa6
+{0x30a7,{0x00,0x40,0x48,0x78,0x48,0x40,0x00}}, // \xe3\x82\xa7
+{0x30a8,{0x20,0x22,0x22,0x3e,0x22,0x22,0x20}}, // \xe3\x82\xa8
+{0x30a9,{0x00,0x28,0x28,0x58,0x7c,0x08,0x00}}, // \xe3\x82\xa9
+{0x30aa,{0x22,0x22,0x12,0x4a,0x7f,0x02,0x02}}, // \xe3\x82\xaa
+{0x30ab,{0x00,0x42,0x22,0x1f,0x02,0x42,0x7e}}, // \xe3\x82\xab
+{0x30ac,{0x00,0x42,0x22,0x1f,0x02,0x42,0x7f}}, // \xe3\x82\xac
+{0x30ad,{0x00,0x12,0x12,0x1f,0x72,0x12,0x10}}, // \xe3\x82\xad
+{0x30ae,{0x00,0x12,0x12,0x1f,0x72,0x13,0x10}}, // \xe3\x82\xae
+{0x30af,{0x00,0x08,0x44,0x43,0x22,0x12,0x0e}}, // \xe3\x82\xaf
+{0x30b0,{0x00,0x08,0x44,0x43,0x22,0x12,0x0f}}, // \xe3\x82\xb0
+{0x30b1,{0x08,0x07,0x42,0x22,0x1e,0x02,0x02}}, // \xe3\x82\xb1
+{0x30b2,{0x08,0x07,0x42,0x22,0x1f,0x02,0x03}}, // \xe3\x82\xb2
+{0x30b3,{0x00,0x42,0x42,0x42,0x42,0x42,0x7e}}, // \xe3\x82\xb3
+{0x30b4,{0x00,0x42,0x42,0x42,0x43,0x42,0x7f}}, // \xe3\x82\xb4
+{0x30b5,{0x02,0x02,0x4f,0x42,0x22,0x1f,0x02}}, // \xe3\x82\xb5
+{0x30b6,{0x02,0x02,0x4f,0x42,0x23,0x1e,0x03}}, // \xe3\x82\xb6
+{0x30b7,{0x00,0x45,0x4a,0x40,0x20,0x10,0x0c}}, // \xe3\x82\xb7
+{0x30b8,{0x00,0x45,0x4a,0x40,0x21,0x10,0x0d}}, // \xe3\x82\xb8
+{0x30b9,{0x40,0x42,0x22,0x22,0x1a,0x26,0x40}}, // \xe3\x82\xb9
+{0x30ba,{0x40,0x42,0x22,0x22,0x1b,0x26,0x41}}, // \xe3\x82\xba
+{0x30bb,{0x04,0x04,0x3f,0x44,0x44,0x54,0x4c}}, // \xe3\x82\xbb
+{0x30bc,{0x04,0x04,0x3f,0x44,0x45,0x54,0x4d}}, // \xe3\x82\xbc
+{0x30bd,{0x00,0x01,0x46,0x40,0x20,0x10,0x0f}}, // \xe3\x82\xbd
+{0x30be,{0x00,0x01,0x46,0x40,0x20,0x11,0x0f}}, // \xe3\x82\xbe
+{0x30bf,{0x00,0x08,0x44,0x4b,0x2a,0x12,0x0e}}, // \xe3\x82\xbf
+{0x30c0,{0x00,0x08,0x44,0x4b,0x2a,0x12,0x0f}}, // \xe3\x83\x80
+{0x30c1,{0x08,0x0a,0x4a,0x3e,0x09,0x09,0x08}}, // \xe3\x83\x81
+{0x30c2,{0x08,0x0a,0x4a,0x3e,0x09,0x08,0x09}}, // \xe3\x83\x82
+{0x30c3,{0x00,0x18,0x40,0x58,0x20,0x18,0x00}}, // \xe3\x83\x83
+{0x30c4,{0x02,0x0c,0x42,0x4c,0x20,0x10,0x0e}}, // \xe3\x83\x84
+{0x30c5,{0x02,0x0c,0x42,0x4c,0x21,0x10,0x0d}}, // \xe3\x83\x85
+{0x30c6,{0x04,0x05,0x45,0x3d,0x05,0x05,0x04}}, // \xe3\x83\x86
+{0x30c7,{0x04,0x05,0x45,0x3d,0x05,0x04,0x05}}, // \xe3\x83\x87
+{0x30c8,{0x00,0x00,0x7f,0x08,0x08,0x10,0x00}}, // \xe3\x83\x88
+{0x30c9,{0x00,0x00,0x7f,0x08,0x09,0x10,0x01}}, // \xe3\x83\x89
+{0x30ca,{0x04,0x44,0x24,0x1f,0x04,0x04,0x04}}, // \xe3\x83\x8a
+{0x30cb,{0x20,0x22,0x22,0x22,0x22,0x22,0x20}}, // \xe3\x83\x8b
+{0x30cc,{0x40,0x41,0x25,0x15,0x19,0x27,0x00}}, // \xe3\x83\x8c
+{0x30cd,{0x20,0x22,0x12,0x7b,0x06,0x12,0x20}}, // \xe3\x83\x8d
+{0x30ce,{0x40,0x40,0x20,0x10,0x08,0x07,0x00}}, // \xe3\x83\x8e
+{0x30cf,{0x40,0x30,0x0e,0x00,0x02,0x0c,0x70}}, // \xe3\x83\x8f
+{0x30d0,{0x40,0x30,0x0e,0x00,0x02,0x0d,0x71}}, // \xe3\x83\x90
+{0x30d1,{0x40,0x30,0x0e,0x00,0x02,0x0d,0x72}}, // \xe3\x83\x91
+{0x30d2,{0x00,0x3f,0x48,0x48,0x48,0x44,0x44}}, // \xe3\x83\x92
+{0x30d3,{0x00,0x3f,0x48,0x48,0x49,0x44,0x45}}, // \xe3\x83\x93
+{0x30d4,{0x00,0x3f,0x48,0x48,0x4a,0x45,0x46}}, // \xe3\x83\x94
+{0x30d5,{0x00,0x02,0x42,0x42,0x22,0x12,0x0e}}, // \xe3\x83\x95
+{0x30d6,{0x00,0x02,0x42,0x42,0x23,0x12,0x0f}}, // \xe3\x83\x96
+{0x30d7,{0x00,0x02,0x42,0x42,0x22,0x15,0x0e}}, // \xe3\x83\x97
+{0x30d8,{0x08,0x04,0x02,0x04,0x08,0x10,0x20}}, // \xe3\x83\x98
+{0x30d9,{0x08,0x04,0x02,0x04,0x09,0x10,0x21}}, // \xe3\x83\x99
+{0x30da,{0x08,0x04,0x02,0x04,0x0a,0x15,0x22}}, // \xe3\x83\x9a
+{0x30db,{0x24,0x14,0x44,0x7f,0x04,0x14,0x24}}, // \xe3\x83\x9b
+{0x30dc,{0x24,0x14,0x44,0x7f,0x05,0x14,0x25}}, // \xe3\x83\x9c
+{0x30dd,{0x24,0x14,0x44,0x7f,0x06,0x15,0x22}}, // \xe3\x83\x9d
+{0x30de,{0x02,0x02,0x12,0x22,0x52,0x0a,0x06}}, // \xe3\x83\x9e
+{0x30df,{0x00,0x21,0x25,0x29,0x4a,0x42,0x00}}, // \xe3\x83\x9f
+{0x30e0,{0x40,0x70,0x4c,0x43,0x50,0x20,0x40}}, // \xe3\x83\xa0
+{0x30e1,{0x40,0x44,0x24,0x14,0x08,0x37,0x00}}, // \xe3\x83\xa1
+{0x30e2,{0x00,0x08,0x09,0x3f,0x49,0x49,0x48}}, // \xe3\x83\xa2
+{0x30e3,{0x00,0x10,0x1c,0x68,0x08,0x18,0x00}}, // \xe3\x83\xa3
+{0x30e4,{0x04,0x04,0x0f,0x74,0x02,0x0a,0x06}}, // \xe3\x83\xa4
+{0x30e5,{0x00,0x40,0x48,0x48,0x78,0x40,0x00}}, // \xe3\x83\xa5
+{0x30e6,{0x20,0x22,0x22,0x22,0x3e,0x20,0x20}}, // \xe3\x83\xa6
+{0x30e7,{0x00,0x00,0x44,0x54,0x54,0x7c,0x00}}, // \xe3\x83\xa7
+{0x30e8,{0x00,0x42,0x4a,0x4a,0x4a,0x4a,0x7e}}, // \xe3\x83\xa8
+{0x30e9,{0x00,0x04,0x45,0x45,0x25,0x15,0x0c}}, // \xe3\x83\xa9
+{0x30ea,{0x00,0x0f,0x40,0x40,0x20,0x1f,0x00}}, // \xe3\x83\xaa
+{0x30eb,{0x40,0x20,0x1e,0x00,0x7f,0x20,0x10}}, // \xe3\x83\xab
+{0x30ec,{0x00,0x00,0x7f,0x40,0x20,0x10,0x08}}, // \xe3\x83\xac
+{0x30ed,{0x00,0x7e,0x42,0x42,0x42,0x42,0x7e}}, // \xe3\x83\xad
+{0x30ee,{0x00,0x0c,0x44,0x44,0x24,0x1c,0x00}}, // \xe3\x83\xae
+{0x30ef,{0x00,0x06,0x42,0x42,0x22,0x12,0x0e}}, // \xe3\x83\xaf
+{0x30f0,{0x10,0x12,0x1e,0x12,0x12,0x7f,0x12}}, // \xe3\x83\xb0
+{0x30f1,{0x20,0x22,0x22,0x3a,0x26,0x22,0x20}}, // \xe3\x83\xb1
+{0x30f2,{0x00,0x01,0x45,0x45,0x25,0x15,0x0f}}, // \xe3\x83\xb2
+{0x30f3,{0x00,0x41,0x42,0x40,0x20,0x10,0x0c}}, // \xe3\x83\xb3
+{0x30f4,{0x00,0x06,0x42,0x43,0x22,0x12,0x0f}}, // \xe3\x83\xb4
+{0x30f5,{0x00,0x48,0x28,0x1c,0x48,0x78,0x00}}, // \xe3\x83\xb5
+{0x30f6,{0x00,0x10,0x0c,0x48,0x38,0x08,0x00}}, // \xe3\x83\xb6
+{0x30fb,{0x00,0x00,0x18,0x18,0x00,0x00,0x00}}, // \xe3\x83\xbb
+{0x30fc,{0x04,0x08,0x08,0x08,0x08,0x08,0x08}}, // \xe3\x83\xbc
+{0x30fd,{0x00,0x00,0x04,0x08,0x30,0x00,0x00}}, // \xe3\x83\xbd
+{0x30fe,{0x00,0x00,0x04,0x08,0x31,0x00,0x01}}, // \xe3\x83\xbe
+{0x4e00,{0x08,0x08,0x08,0x08,0x08,0x0c,0x08}}, // \xe4\xb8\x80
+{0x4e01,{0x01,0x01,0x41,0x7f,0x01,0x01,0x01}}, // \xe4\xb8\x81
+{0x4e03,{0x08,0x08,0x3f,0x48,0x44,0x44,0x64}}, // \xe4\xb8\x83
+{0x4e07,{0x41,0x21,0x1f,0x05,0x45,0x7d,0x01}}, // \xe4\xb8\x87
+{0x4e08,{0x42,0x42,0x2a,0x1f,0x22,0x42,0x42}}, // \xe4\xb8\x88
+{0x4e09,{0x40,0x42,0x4a,0x4a,0x4a,0x42,0x40}}, // \xe4\xb8\x89
+{0x4e0a,{0x40,0x40,0x40,0x7f,0x44,0x44,0x40}}, // \xe4\xb8\x8a
+{0x4e0b,{0x01,0x01,0x01,0x7f,0x05,0x09,0x01}}, // \xe4\xb8\x8b
+{0x4e0d,{0x11,0x11,0x09,0x7f,0x01,0x09,0x11}}, // \xe4\xb8\x8d
+{0x4e0e,{0x10,0x10,0x1f,0x5a,0x7a,0x12,0x10}}, // \xe4\xb8\x8e
+{0x4e10,{0x01,0x1d,0x11,0x1f,0x15,0x55,0x71}}, // \xe4\xb8\x90
+{0x4e11,{0x48,0x49,0x79,0x4f,0x49,0x7f,0x48}}, // \xe4\xb8\x91
+{0x4e14,{0x40,0x7f,0x55,0x55,0x55,0x7f,0x40}}, // \xe4\xb8\x94
+{0x4e15,{0x49,0x49,0x45,0x7f,0x41,0x45,0x49}}, // \xe4\xb8\x95
+{0x4e16,{0x04,0x7f,0x44,0x5f,0x54,0x5f,0x44}}, // \xe4\xb8\x96
+{0x4e17,{0x04,0x7f,0x44,0x7f,0x44,0x7f,0x04}}, // \xe4\xb8\x97
+{0x4e18,{0x40,0x7e,0x4a,0x4a,0x79,0x49,0x40}}, // \xe4\xb8\x98
+{0x4e19,{0x7d,0x25,0x15,0x0f,0x15,0x45,0x7d}}, // \xe4\xb8\x99
+{0x4e1e,{0x54,0x4d,0x61,0x7d,0x43,0x49,0x54}}, // \xe4\xb8\x9e
+{0x4e21,{0x7d,0x35,0x25,0x3f,0x25,0x35,0x7d}}, // \xe4\xb8\xa1
+{0x4e26,{0x42,0x5a,0x7f,0x42,0x7e,0x53,0x4a}}, // \xe4\xb8\xa6
+{0x4e2a,{0x04,0x04,0x02,0x7d,0x02,0x04,0x04}}, // \xe4\xb8\xaa
+{0x4e2d,{0x1e,0x12,0x12,0x7f,0x12,0x12,0x1e}}, // \xe4\xb8\xad
+{0x4e31,{0x1e,0x50,0x3f,0x00,0x7f,0x10,0x1e}}, // \xe4\xb8\xb1
+{0x4e32,{0x30,0x36,0x36,0x7f,0x36,0x36,0x30}}, // \xe4\xb8\xb2
+{0x4e36,{0x00,0x00,0x02,0x04,0x18,0x00,0x00}}, // \xe4\xb8\xb6
+{0x4e38,{0x42,0x2a,0x1f,0x12,0x7e,0x40,0x60}}, // \xe4\xb8\xb8
+{0x4e39,{0x50,0x3f,0x11,0x15,0x51,0x7f,0x10}}, // \xe4\xb8\xb9
+{0x4e3b,{0x44,0x54,0x55,0x7e,0x54,0x54,0x44}}, // \xe4\xb8\xbb
+{0x4e3c,{0x12,0x52,0x3f,0x16,0x12,0x7f,0x12}}, // \xe4\xb8\xbc
+{0x4e3f,{0x00,0x40,0x40,0x20,0x1f,0x00,0x00}}, // \xe4\xb8\xbf
+{0x4e42,{0x40,0x43,0x2c,0x10,0x2c,0x43,0x40}}, // \xe4\xb9\x82
+{0x4e43,{0x41,0x31,0x0f,0x01,0x07,0x44,0x7c}}, // \xe4\xb9\x83
+{0x4e45,{0x48,0x44,0x23,0x22,0x1a,0x26,0x40}}, // \xe4\xb9\x85
+{0x4e4b,{0x40,0x32,0x22,0x53,0x4a,0x46,0x40}}, // \xe4\xb9\x8b
+{0x4e4d,{0x08,0x04,0x03,0x7e,0x2a,0x2a,0x2a}}, // \xe4\xb9\x8d
+{0x4e4e,{0x12,0x16,0x52,0x7e,0x11,0x15,0x11}}, // \xe4\xb9\x8e
+{0x4e4f,{0x40,0x35,0x25,0x57,0x4d,0x45,0x40}}, // \xe4\xb9\x8f
+{0x4e55,{0x40,0x3e,0x6e,0x2e,0x7e,0x2d,0x6d}}, // \xe4\xb9\x95
+{0x4e56,{0x2c,0x3e,0x06,0x7e,0x05,0x3d,0x2c}}, // \xe4\xb9\x96
+{0x4e57,{0x54,0x5e,0x36,0x7e,0x35,0x5d,0x54}}, // \xe4\xb9\x97
+{0x4e58,{0x54,0x5e,0x26,0x7e,0x25,0x5d,0x54}}, // \xe4\xb9\x98
+{0x4e59,{0x20,0x51,0x49,0x45,0x43,0x40,0x60}}, // \xe4\xb9\x99
+{0x4e5d,{0x42,0x32,0x0f,0x02,0x7e,0x40,0x60}}, // \xe4\xb9\x9d
+{0x4e5e,{0x04,0x23,0x56,0x56,0x4e,0x42,0x62}}, // \xe4\xb9\x9e
+{0x4e5f,{0x08,0x08,0x3e,0x44,0x5f,0x44,0x6c}}, // \xe4\xb9\x9f
+{0x4e62,{0x38,0x20,0x3f,0x20,0x7f,0x40,0x60}}, // \xe4\xb9\xa2
+{0x4e71,{0x04,0x76,0x5e,0x75,0x7f,0x40,0x60}}, // \xe4\xb9\xb1
+{0x4e73,{0x22,0x2a,0x69,0x3b,0x21,0x7f,0x40}}, // \xe4\xb9\xb3
+{0x4e7e,{0x2d,0x77,0x2d,0x23,0x56,0x4e,0x62}}, // \xe4\xb9\xbe
+{0x4e80,{0x32,0x2e,0x2d,0x3d,0x6f,0x7c,0x40}}, // \xe4\xba\x80
+{0x4e82,{0x72,0x55,0x37,0x7d,0x02,0x7f,0x40}}, // \xe4\xba\x82
+{0x4e85,{0x00,0x00,0x40,0x7f,0x00,0x00,0x00}}, // \xe4\xba\x85
+{0x4e86,{0x01,0x01,0x41,0x7d,0x05,0x03,0x01}}, // \xe4\xba\x86
+{0x4e88,{0x08,0x09,0x4b,0x7d,0x0b,0x09,0x18}}, // \xe4\xba\x88
+{0x4e89,{0x0a,0x2a,0x6d,0x7d,0x2f,0x3c,0x08}}, // \xe4\xba\x89
+{0x4e8a,{0x12,0x16,0x5a,0x7f,0x3a,0x3e,0x12}}, // \xe4\xba\x8a
+{0x4e8b,{0x2a,0x2e,0x6a,0x7f,0x2a,0x3e,0x12}}, // \xe4\xba\x8b
+{0x4e8c,{0x40,0x42,0x42,0x42,0x42,0x42,0x40}}, // \xe4\xba\x8c
+{0x4e8e,{0x08,0x09,0x49,0x7f,0x09,0x09,0x08}}, // \xe4\xba\x8e
+{0x4e91,{0x44,0x45,0x65,0x5d,0x45,0x25,0x44}}, // \xe4\xba\x91
+{0x4e92,{0x41,0x51,0x5f,0x55,0x75,0x4d,0x41}}, // \xe4\xba\x92
+{0x4e94,{0x40,0x49,0x79,0x4f,0x49,0x79,0x40}}, // \xe4\xba\x94
+{0x4e95,{0x12,0x52,0x3f,0x12,0x12,0x7f,0x12}}, // \xe4\xba\x95
+{0x4e98,{0x41,0x7f,0x6b,0x6b,0x6b,0x7f,0x41}}, // \xe4\xba\x98
+{0x4e99,{0x41,0x51,0x4f,0x55,0x6d,0x5d,0x41}}, // \xe4\xba\x99
+{0x4e9b,{0x4e,0x58,0x5f,0x5a,0x50,0x5f,0x4a}}, // \xe4\xba\x9b
+{0x4e9c,{0x5d,0x55,0x7f,0x55,0x7f,0x55,0x5d}}, // \xe4\xba\x9c
+{0x4e9e,{0x5d,0x55,0x77,0x41,0x77,0x55,0x5d}}, // \xe4\xba\x9e
+{0x4e9f,{0x59,0x59,0x67,0x7d,0x6d,0x55,0x6d}}, // \xe4\xba\x9f
+{0x4ea0,{0x08,0x08,0x08,0x0e,0x08,0x08,0x08}}, // \xe4\xba\xa0
+{0x4ea1,{0x02,0x3e,0x42,0x43,0x42,0x42,0x42}}, // \xe4\xba\xa1
+{0x4ea2,{0x42,0x42,0x3a,0x0b,0x7a,0x42,0x62}}, // \xe4\xba\xa2
+{0x4ea4,{0x4a,0x4a,0x56,0x23,0x56,0x4a,0x4a}}, // \xe4\xba\xa4
+{0x4ea5,{0x42,0x4a,0x56,0x2b,0x12,0x2a,0x42}}, // \xe4\xba\xa5
+{0x4ea6,{0x22,0x5a,0x3e,0x43,0x7e,0x0a,0x32}}, // \xe4\xba\xa6
+{0x4ea8,{0x02,0x0e,0x4a,0x6b,0x1a,0x0e,0x02}}, // \xe4\xba\xa8
+{0x4eab,{0x22,0x2e,0x2a,0x6b,0x3a,0x2e,0x22}}, // \xe4\xba\xab
+{0x4eac,{0x42,0x2e,0x4a,0x7b,0x0a,0x2e,0x42}}, // \xe4\xba\xac
+{0x4ead,{0x1a,0x0e,0x5a,0x7b,0x1a,0x0e,0x1a}}, // \xe4\xba\xad
+{0x4eae,{0x5a,0x4e,0x2a,0x0b,0x6a,0x4e,0x5a}}, // \xe4\xba\xae
+{0x4eb0,{0x42,0x3e,0x5a,0x7b,0x1a,0x3e,0x42}}, // \xe4\xba\xb0
+{0x4eb3,{0x1a,0x2e,0x2a,0x7b,0x5a,0x4e,0x5a}}, // \xe4\xba\xb3
+{0x4eb6,{0x42,0x4e,0x7e,0x5b,0x7e,0x4e,0x42}}, // \xe4\xba\xb6
+{0x4eba,{0x40,0x20,0x18,0x07,0x18,0x20,0x40}}, // \xe4\xba\xba
+{0x4ec0,{0x04,0x7e,0x05,0x04,0x7f,0x04,0x04}}, // \xe4\xbb\x80
+{0x4ec1,{0x04,0x7e,0x01,0x40,0x42,0x42,0x42}}, // \xe4\xbb\x81
+{0x4ec2,{0x04,0x7e,0x01,0x42,0x3f,0x42,0x7e}}, // \xe4\xbb\x82
+{0x4ec4,{0x40,0x3f,0x41,0x21,0x1f,0x21,0x41}}, // \xe4\xbb\x84
+{0x4ec6,{0x04,0x7e,0x01,0x00,0x7f,0x08,0x10}}, // \xe4\xbb\x86
+{0x4ec7,{0x04,0x7e,0x43,0x3e,0x03,0x7e,0x40}}, // \xe4\xbb\x87
+{0x4eca,{0x04,0x14,0x52,0x55,0x36,0x14,0x04}}, // \xe4\xbb\x8a
+{0x4ecb,{0x04,0x44,0x3a,0x01,0x7a,0x04,0x04}}, // \xe4\xbb\x8b
+{0x4ecd,{0x04,0x7e,0x41,0x3f,0x01,0x47,0x7c}}, // \xe4\xbb\x8d
+{0x4ece,{0x40,0x30,0x0f,0x50,0x20,0x1f,0x60}}, // \xe4\xbb\x8e
+{0x4ecf,{0x04,0x7e,0x41,0x70,0x4f,0x20,0x40}}, // \xe4\xbb\x8f
+{0x4ed4,{0x04,0x7e,0x09,0x49,0x7d,0x0b,0x08}}, // \xe4\xbb\x94
+{0x4ed5,{0x04,0x7e,0x05,0x44,0x7f,0x44,0x04}}, // \xe4\xbb\x95
+{0x4ed6,{0x04,0x7e,0x09,0x7e,0x44,0x5f,0x6c}}, // \xe4\xbb\x96
+{0x4ed7,{0x04,0x7e,0x43,0x2a,0x1f,0x22,0x42}}, // \xe4\xbb\x97
+{0x4ed8,{0x04,0x7e,0x01,0x0a,0x52,0x7f,0x02}}, // \xe4\xbb\x98
+{0x4ed9,{0x04,0x7e,0x7d,0x40,0x7f,0x40,0x7c}}, // \xe4\xbb\x99
+{0x4edd,{0x44,0x4c,0x4a,0x79,0x4a,0x4c,0x44}}, // \xe4\xbb\x9d
+{0x4ede,{0x04,0x7e,0x11,0x4d,0x3f,0x41,0x7f}}, // \xe4\xbb\x9e
+{0x4edf,{0x04,0x7e,0x09,0x0a,0x7e,0x09,0x08}}, // \xe4\xbb\x9f
+{0x4ee3,{0x04,0x7e,0x01,0x04,0x0f,0x34,0x45}}, // \xe4\xbb\xa3
+{0x4ee4,{0x14,0x14,0x12,0x75,0x16,0x14,0x34}}, // \xe4\xbb\xa4
+{0x4ee5,{0x20,0x1f,0x50,0x42,0x24,0x3f,0x40}}, // \xe4\xbb\xa5
+{0x4eed,{0x04,0x7e,0x01,0x45,0x3f,0x51,0x7f}}, // \xe4\xbb\xad
+{0x4eee,{0x04,0x7e,0x21,0x5f,0x5d,0x25,0x5d}}, // \xe4\xbb\xae
+{0x4ef0,{0x0c,0x7f,0x3e,0x11,0x7e,0x02,0x1e}}, // \xe4\xbb\xb0
+{0x4ef2,{0x04,0x7e,0x1f,0x12,0x7f,0x12,0x1e}}, // \xe4\xbb\xb2
+{0x4ef6,{0x04,0x7e,0x01,0x14,0x13,0x7f,0x12}}, // \xe4\xbb\xb6
+{0x4ef7,{0x04,0x7e,0x45,0x3a,0x01,0x7a,0x04}}, // \xe4\xbb\xb7
+{0x4efb,{0x04,0x7e,0x09,0x4a,0x7e,0x49,0x08}}, // \xe4\xbb\xbb
+{0x4f01,{0x44,0x74,0x42,0x7d,0x52,0x54,0x44}}, // \xe4\xbc\x81
+{0x4f09,{0x04,0x7e,0x43,0x3a,0x0b,0x7a,0x42}}, // \xe4\xbc\x89
+{0x4f0a,{0x04,0x7e,0x05,0x55,0x3f,0x15,0x1f}}, // \xe4\xbc\x8a
+{0x4f0d,{0x04,0x7e,0x49,0x79,0x4f,0x79,0x40}}, // \xe4\xbc\x8d
+{0x4f0e,{0x04,0x7e,0x4b,0x5a,0x2f,0x5a,0x42}}, // \xe4\xbc\x8e
+{0x4f0f,{0x04,0x7e,0x45,0x24,0x1f,0x24,0x45}}, // \xe4\xbc\x8f
+{0x4f10,{0x04,0x7e,0x01,0x44,0x5f,0x24,0x55}}, // \xe4\xbc\x90
+{0x4f11,{0x04,0x7e,0x23,0x1a,0x7f,0x1a,0x22}}, // \xe4\xbc\x91
+{0x4f1a,{0x54,0x54,0x72,0x55,0x56,0x34,0x54}}, // \xe4\xbc\x9a
+{0x4f1c,{0x04,0x7e,0x2b,0x26,0x73,0x2e,0x28}}, // \xe4\xbc\x9c
+{0x4f1d,{0x04,0x7e,0x45,0x65,0x5d,0x25,0x44}}, // \xe4\xbc\x9d
+{0x4f2f,{0x04,0x7e,0x01,0x7e,0x4b,0x4a,0x7e}}, // \xe4\xbc\xaf
+{0x4f30,{0x04,0x7e,0x05,0x74,0x5f,0x74,0x04}}, // \xe4\xbc\xb0
+{0x4f34,{0x04,0x7e,0x01,0x2a,0x28,0x7f,0x2a}}, // \xe4\xbc\xb4
+{0x4f36,{0x04,0x7e,0x15,0x12,0x75,0x16,0x34}}, // \xe4\xbc\xb6
+{0x4f38,{0x04,0x7e,0x3f,0x2a,0x7f,0x2a,0x3e}}, // \xe4\xbc\xb8
+{0x4f3a,{0x04,0x7e,0x01,0x35,0x35,0x41,0x7f}}, // \xe4\xbc\xba
+{0x4f3c,{0x04,0x7e,0x11,0x5f,0x48,0x22,0x5f}}, // \xe4\xbc\xbc
+{0x4f3d,{0x0c,0x7f,0x62,0x1f,0x7e,0x42,0x7e}}, // \xe4\xbc\xbd
+{0x4f43,{0x04,0x7e,0x7f,0x49,0x7f,0x49,0x7f}}, // \xe4\xbd\x83
+{0x4f46,{0x04,0x7e,0x01,0x5f,0x55,0x55,0x5f}}, // \xe4\xbd\x86
+{0x4f47,{0x04,0x7e,0x01,0x06,0x4a,0x7b,0x0e}}, // \xe4\xbd\x87
+{0x4f4d,{0x04,0x7e,0x43,0x7e,0x63,0x5e,0x42}}, // \xe4\xbd\x8d
+{0x4f4e,{0x04,0x7e,0x01,0x7e,0x4a,0x5e,0x69}}, // \xe4\xbd\x8e
+{0x4f4f,{0x04,0x7e,0x01,0x44,0x55,0x7e,0x54}}, // \xe4\xbd\x8f
+{0x4f50,{0x04,0x7e,0x23,0x5e,0x4b,0x7a,0x4a}}, // \xe4\xbd\x90
+{0x4f51,{0x04,0x7e,0x01,0x12,0x7f,0x4a,0x7a}}, // \xe4\xbd\x91
+{0x4f53,{0x04,0x7e,0x13,0x2a,0x7f,0x2a,0x12}}, // \xe4\xbd\x93
+{0x4f55,{0x04,0x7e,0x01,0x1d,0x15,0x5d,0x7f}}, // \xe4\xbd\x95
+{0x4f57,{0x04,0x7e,0x07,0x7a,0x53,0x4a,0x66}}, // \xe4\xbd\x97
+{0x4f59,{0x54,0x34,0x56,0x7d,0x16,0x34,0x54}}, // \xe4\xbd\x99
+{0x4f5a,{0x04,0x7e,0x01,0x4c,0x4b,0x3f,0x4a}}, // \xe4\xbd\x9a
+{0x4f5b,{0x0c,0x7f,0x5a,0x3f,0x16,0x7f,0x36}}, // \xe4\xbd\x9b
+{0x4f5c,{0x04,0x7e,0x01,0x04,0x7f,0x2a,0x2a}}, // \xe4\xbd\x9c
+{0x4f5d,{0x04,0x7e,0x01,0x04,0x1b,0x5a,0x7e}}, // \xe4\xbd\x9d
+{0x4f5e,{0x04,0x7e,0x01,0x54,0x7d,0x35,0x54}}, // \xe4\xbd\x9e
+{0x4f69,{0x04,0x7e,0x7f,0x35,0x7d,0x35,0x7f}}, // \xe4\xbd\xa9
+{0x4f6f,{0x04,0x7e,0x01,0x22,0x2b,0x7e,0x2b}}, // \xe4\xbd\xaf
+{0x4f70,{0x04,0x7e,0x01,0x7d,0x57,0x55,0x7d}}, // \xe4\xbd\xb0
+{0x4f73,{0x04,0x7e,0x49,0x5a,0x7f,0x5a,0x48}}, // \xe4\xbd\xb3
+{0x4f75,{0x04,0x7e,0x55,0x3d,0x14,0x7d,0x14}}, // \xe4\xbd\xb5
+{0x4f76,{0x04,0x7e,0x03,0x6a,0x6f,0x6a,0x02}}, // \xe4\xbd\xb6
+{0x4f7b,{0x0c,0x7f,0x4a,0x3f,0x00,0x7f,0x4a}}, // \xe4\xbd\xbb
+{0x4f7c,{0x04,0x7e,0x4b,0x56,0x23,0x56,0x4a}}, // \xe4\xbd\xbc
+{0x4f7f,{0x04,0x7e,0x53,0x5e,0x3f,0x4a,0x4e}}, // \xe4\xbd\xbf
+{0x4f83,{0x04,0x7e,0x41,0x37,0x75,0x05,0x77}}, // \xe4\xbe\x83
+{0x4f86,{0x52,0x4e,0x32,0x7f,0x32,0x4e,0x52}}, // \xe4\xbe\x86
+{0x4f88,{0x04,0x7e,0x09,0x4a,0x55,0x2b,0x18}}, // \xe4\xbe\x88
+{0x4f8b,{0x04,0x7e,0x49,0x37,0x1d,0x4e,0x7f}}, // \xe4\xbe\x8b
+{0x4f8d,{0x04,0x7e,0x29,0x6a,0x2f,0x7a,0x28}}, // \xe4\xbe\x8d
+{0x4f8f,{0x04,0x7e,0x4d,0x2b,0x7f,0x2a,0x48}}, // \xe4\xbe\x8f
+{0x4f91,{0x04,0x7e,0x01,0x12,0x7f,0x2a,0x7a}}, // \xe4\xbe\x91
+{0x4f96,{0x74,0x34,0x72,0x35,0x76,0x34,0x74}}, // \xe4\xbe\x96
+{0x4f98,{0x04,0x7e,0x17,0x1a,0x7b,0x56,0x56}}, // \xe4\xbe\x98
+{0x4f9b,{0x0c,0x7f,0x52,0x1f,0x12,0x1f,0x52}}, // \xe4\xbe\x9b
+{0x4f9d,{0x04,0x7e,0x13,0x7a,0x4f,0x32,0x4a}}, // \xe4\xbe\x9d
+{0x4fa0,{0x04,0x7e,0x5b,0x52,0x3f,0x52,0x5a}}, // \xe4\xbe\xa0
+{0x4fa1,{0x04,0x7e,0x01,0x7d,0x7f,0x45,0x7d}}, // \xe4\xbe\xa1
+{0x4fab,{0x04,0x7e,0x53,0x7e,0x5b,0x3a,0x52}}, // \xe4\xbe\xab
+{0x4fad,{0x04,0x7e,0x11,0x0f,0x55,0x4d,0x13}}, // \xe4\xbe\xad
+{0x4fae,{0x04,0x7e,0x09,0x3b,0x2e,0x7e,0x2a}}, // \xe4\xbe\xae
+{0x4faf,{0x04,0x7e,0x01,0x54,0x5d,0x37,0x54}}, // \xe4\xbe\xaf
+{0x4fb5,{0x04,0x7e,0x59,0x5d,0x2d,0x5f,0x58}}, // \xe4\xbe\xb5
+{0x4fb6,{0x04,0x7e,0x01,0x77,0x5d,0x55,0x77}}, // \xe4\xbe\xb6
+{0x4fbf,{0x04,0x7e,0x41,0x57,0x3f,0x47,0x41}}, // \xe4\xbe\xbf
+{0x4fc2,{0x04,0x7e,0x51,0x15,0x7b,0x11,0x59}}, // \xe4\xbf\x82
+{0x4fc3,{0x04,0x7e,0x41,0x37,0x45,0x7d,0x57}}, // \xe4\xbf\x83
+{0x4fc4,{0x0c,0x7f,0x26,0x7e,0x25,0x3f,0x55}}, // \xe4\xbf\x84
+{0x4fca,{0x04,0x7e,0x2b,0x57,0x32,0x5e,0x4b}}, // \xe4\xbf\x8a
+{0x4fce,{0x44,0x33,0x44,0x7f,0x55,0x7f,0x40}}, // \xe4\xbf\x8e
+{0x4fd0,{0x04,0x7e,0x35,0x7f,0x15,0x4e,0x7f}}, // \xe4\xbf\x90
+{0x4fd1,{0x04,0x7e,0x7d,0x15,0x7d,0x17,0x7d}}, // \xe4\xbf\x91
+{0x4fd4,{0x04,0x7e,0x01,0x5f,0x35,0x75,0x5f}}, // \xe4\xbf\x94
+{0x4fd7,{0x0c,0x7f,0x12,0x69,0x64,0x69,0x12}}, // \xe4\xbf\x97
+{0x4fd8,{0x04,0x7e,0x23,0x29,0x6b,0x39,0x22}}, // \xe4\xbf\x98
+{0x4fda,{0x04,0x7e,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe4\xbf\x9a
+{0x4fdb,{0x04,0x7e,0x5d,0x36,0x1d,0x77,0x5c}}, // \xe4\xbf\x9b
+{0x4fdd,{0x04,0x7e,0x51,0x37,0x7d,0x37,0x50}}, // \xe4\xbf\x9d
+{0x4fdf,{0x04,0x7e,0x01,0x56,0x5d,0x34,0x56}}, // \xe4\xbf\x9f
+{0x4fe1,{0x04,0x7e,0x01,0x62,0x6b,0x6b,0x62}}, // \xe4\xbf\xa1
+{0x4fe3,{0x04,0x7e,0x45,0x57,0x3d,0x57,0x44}}, // \xe4\xbf\xa3
+{0x4fe4,{0x0c,0x7f,0x5a,0x2b,0x7e,0x2b,0x6e}}, // \xe4\xbf\xa4
+{0x4fe5,{0x04,0x7e,0x23,0x3e,0x7f,0x3e,0x22}}, // \xe4\xbf\xa5
+{0x4fee,{0x04,0x7e,0x3f,0x04,0x4b,0x56,0x2a}}, // \xe4\xbf\xae
+{0x4fef,{0x04,0x7e,0x3f,0x72,0x0b,0x52,0x7a}}, // \xe4\xbf\xaf
+{0x4ff3,{0x0c,0x7f,0x2a,0x7f,0x00,0x7f,0x2a}}, // \xe4\xbf\xb3
+{0x4ff5,{0x04,0x7e,0x2b,0x7a,0x5f,0x2a,0x52}}, // \xe4\xbf\xb5
+{0x4ff6,{0x04,0x7e,0x29,0x7f,0x4a,0x31,0x4f}}, // \xe4\xbf\xb6
+{0x4ff8,{0x04,0x7e,0x15,0x2e,0x77,0x2e,0x14}}, // \xe4\xbf\xb8
+{0x4ffa,{0x04,0x7e,0x0b,0x36,0x3b,0x76,0x4a}}, // \xe4\xbf\xba
+{0x4ffe,{0x04,0x7e,0x2f,0x3a,0x2f,0x7a,0x2e}}, // \xe4\xbf\xbe
+{0x5005,{0x04,0x7e,0x33,0x2e,0x73,0x2e,0x32}}, // \xe5\x80\x85
+{0x5006,{0x04,0x7e,0x7d,0x35,0x7f,0x35,0x7d}}, // \xe5\x80\x86
+{0x5009,{0x44,0x24,0x1e,0x6d,0x6e,0x64,0x04}}, // \xe5\x80\x89
+{0x500b,{0x04,0x7e,0x7f,0x75,0x6f,0x75,0x7f}}, // \xe5\x80\x8b
+{0x500d,{0x04,0x7e,0x0b,0x6e,0x6b,0x6e,0x0a}}, // \xe5\x80\x8d
+{0x500f,{0x04,0x7e,0x5f,0x5a,0x35,0x5b,0x50}}, // \xe5\x80\x8f
+{0x5011,{0x04,0x7e,0x7f,0x07,0x00,0x47,0x7f}}, // \xe5\x80\x91
+{0x5012,{0x04,0x7e,0x2d,0x3b,0x29,0x4e,0x7f}}, // \xe5\x80\x92
+{0x5014,{0x04,0x7e,0x3f,0x65,0x4d,0x7d,0x6f}}, // \xe5\x80\x94
+{0x5016,{0x04,0x7e,0x15,0x3e,0x77,0x3e,0x14}}, // \xe5\x80\x96
+{0x5019,{0x04,0x7e,0x3f,0x54,0x5d,0x37,0x54}}, // \xe5\x80\x99
+{0x501a,{0x04,0x7e,0x13,0x5a,0x17,0x7a,0x12}}, // \xe5\x80\x9a
+{0x501f,{0x0c,0x7f,0x0a,0x7f,0x5a,0x7f,0x0a}}, // \xe5\x80\x9f
+{0x5021,{0x04,0x7e,0x01,0x7c,0x57,0x57,0x7c}}, // \xe5\x80\xa1
+{0x5023,{0x0c,0x7f,0x62,0x1f,0x7a,0x3f,0x5e}}, // \xe5\x80\xa3
+{0x5024,{0x04,0x7e,0x01,0x7a,0x42,0x5f,0x5a}}, // \xe5\x80\xa4
+{0x5025,{0x04,0x7e,0x47,0x56,0x73,0x56,0x46}}, // \xe5\x80\xa5
+{0x5026,{0x04,0x7e,0x15,0x6e,0x57,0x4e,0x15}}, // \xe5\x80\xa6
+{0x5028,{0x04,0x7e,0x21,0x1f,0x6b,0x5f,0x6b}}, // \xe5\x80\xa8
+{0x5029,{0x04,0x7e,0x09,0x7a,0x3f,0x7a,0x08}}, // \xe5\x80\xa9
+{0x502a,{0x04,0x7e,0x5f,0x35,0x10,0x75,0x5f}}, // \xe5\x80\xaa
+{0x502b,{0x04,0x7e,0x75,0x32,0x75,0x36,0x74}}, // \xe5\x80\xab
+{0x502c,{0x04,0x7e,0x21,0x3c,0x77,0x3e,0x22}}, // \xe5\x80\xac
+{0x502d,{0x0c,0x7f,0x5a,0x77,0x5f,0x37,0x5a}}, // \xe5\x80\xad
+{0x5036,{0x04,0x7e,0x51,0x1f,0x15,0x1f,0x50}}, // \xe5\x80\xb6
+{0x5039,{0x04,0x7e,0x5d,0x56,0x3d,0x56,0x5c}}, // \xe5\x80\xb9
+{0x5043,{0x04,0x7e,0x7f,0x49,0x6f,0x57,0x69}}, // \xe5\x81\x83
+{0x5047,{0x04,0x7e,0x7f,0x2b,0x58,0x2d,0x5f}}, // \xe5\x81\x87
+{0x5048,{0x04,0x7e,0x11,0x3f,0x2d,0x4f,0x78}}, // \xe5\x81\x88
+{0x5049,{0x04,0x7e,0x29,0x3a,0x2f,0x7a,0x2e}}, // \xe5\x81\x89
+{0x504f,{0x04,0x7e,0x21,0x1f,0x75,0x37,0x71}}, // \xe5\x81\x8f
+{0x5050,{0x04,0x7e,0x21,0x1a,0x4e,0x5f,0x2a}}, // \xe5\x81\x90
+{0x5055,{0x04,0x7e,0x0f,0x6a,0x70,0x6f,0x0a}}, // \xe5\x81\x95
+{0x5056,{0x04,0x7e,0x29,0x1a,0x6f,0x7a,0x69}}, // \xe5\x81\x96
+{0x505a,{0x0c,0x7f,0x3a,0x2f,0x7a,0x3f,0x5e}}, // \xe5\x81\x9a
+{0x505c,{0x04,0x7e,0x0b,0x5e,0x7b,0x1e,0x1a}}, // \xe5\x81\x9c
+{0x5065,{0x04,0x7e,0x55,0x3b,0x56,0x7f,0x56}}, // \xe5\x81\xa5
+{0x506c,{0x04,0x7e,0x65,0x2b,0x4e,0x52,0x6e}}, // \xe5\x81\xac
+{0x5072,{0x04,0x7e,0x61,0x2f,0x4f,0x4d,0x6f}}, // \xe5\x81\xb2
+{0x5074,{0x04,0x7e,0x5f,0x15,0x5f,0x0e,0x7f}}, // \xe5\x81\xb4
+{0x5075,{0x04,0x7e,0x41,0x3c,0x37,0x3e,0x42}}, // \xe5\x81\xb5
+{0x5076,{0x04,0x7e,0x79,0x4b,0x7f,0x2b,0x78}}, // \xe5\x81\xb6
+{0x5078,{0x04,0x7e,0x05,0x73,0x75,0x26,0x54}}, // \xe5\x81\xb8
+{0x507d,{0x0c,0x7f,0x52,0x1b,0x56,0x1f,0x70}}, // \xe5\x81\xbd
+{0x5080,{0x04,0x7e,0x5f,0x2a,0x7f,0x6a,0x5e}}, // \xe5\x82\x80
+{0x5085,{0x04,0x7e,0x13,0x3e,0x57,0x7e,0x13}}, // \xe5\x82\x85
+{0x508d,{0x04,0x7e,0x1b,0x4e,0x3b,0x6e,0x1a}}, // \xe5\x82\x8d
+{0x5091,{0x0c,0x7f,0x5a,0x35,0x7b,0x36,0x5f}}, // \xe5\x82\x91
+{0x5098,{0x24,0x34,0x2a,0x7d,0x2a,0x34,0x24}}, // \xe5\x82\x98
+{0x5099,{0x0c,0x7f,0x1a,0x6f,0x2a,0x6f,0x6a}}, // \xe5\x82\x99
+{0x509a,{0x0c,0x7f,0x56,0x23,0x56,0x3f,0x5e}}, // \xe5\x82\x9a
+{0x50ac,{0x04,0x7e,0x13,0x7e,0x4b,0x7e,0x4b}}, // \xe5\x82\xac
+{0x50ad,{0x04,0x7e,0x3f,0x7a,0x2e,0x7f,0x7a}}, // \xe5\x82\xad
+{0x50b2,{0x0c,0x7f,0x4a,0x3f,0x6a,0x3f,0x5e}}, // \xe5\x82\xb2
+{0x50b3,{0x04,0x7e,0x13,0x3e,0x5f,0x76,0x1a}}, // \xe5\x82\xb3
+{0x50b4,{0x04,0x7e,0x7f,0x71,0x47,0x77,0x71}}, // \xe5\x82\xb4
+{0x50b5,{0x04,0x7e,0x49,0x3a,0x3f,0x3a,0x48}}, // \xe5\x82\xb5
+{0x50b7,{0x04,0x7e,0x25,0x5f,0x3a,0x5e,0x72}}, // \xe5\x82\xb7
+{0x50be,{0x04,0x7e,0x3f,0x24,0x5d,0x17,0x5d}}, // \xe5\x82\xbe
+{0x50c2,{0x04,0x7e,0x55,0x7e,0x5b,0x3e,0x54}}, // \xe5\x83\x82
+{0x50c5,{0x0c,0x7f,0x5a,0x5f,0x7a,0x5f,0x5a}}, // \xe5\x83\x85
+{0x50c9,{0x5c,0x34,0x5e,0x05,0x5e,0x34,0x5c}}, // \xe5\x83\x89
+{0x50ca,{0x04,0x7e,0x15,0x6f,0x57,0x4f,0x15}}, // \xe5\x83\x8a
+{0x50cd,{0x04,0x7e,0x2d,0x3f,0x62,0x1f,0x7e}}, // \xe5\x83\x8d
+{0x50cf,{0x04,0x7e,0x23,0x5e,0x7d,0x2f,0x50}}, // \xe5\x83\x8f
+{0x50d1,{0x0c,0x7f,0x7a,0x17,0x5b,0x17,0x7a}}, // \xe5\x83\x91
+{0x50d5,{0x04,0x7e,0x4b,0x5e,0x3b,0x5e,0x4b}}, // \xe5\x83\x95
+{0x50d6,{0x04,0x7e,0x13,0x7e,0x57,0x7e,0x12}}, // \xe5\x83\x96
+{0x50da,{0x04,0x7e,0x4b,0x1e,0x6b,0x1e,0x4a}}, // \xe5\x83\x9a
+{0x50de,{0x04,0x7e,0x53,0x1d,0x57,0x1d,0x72}}, // \xe5\x83\x9e
+{0x50e3,{0x0c,0x7f,0x0a,0x77,0x5a,0x77,0x0a}}, // \xe5\x83\xa3
+{0x50e5,{0x04,0x7e,0x5d,0x3e,0x17,0x7e,0x5c}}, // \xe5\x83\xa5
+{0x50e7,{0x0c,0x7f,0x0e,0x7b,0x5e,0x7b,0x0e}}, // \xe5\x83\xa7
+{0x50ed,{0x0c,0x7f,0x14,0x6f,0x76,0x6f,0x16}}, // \xe5\x83\xad
+{0x50ee,{0x04,0x7e,0x4b,0x5e,0x7b,0x5e,0x4a}}, // \xe5\x83\xae
+{0x50f5,{0x04,0x7e,0x01,0x49,0x7f,0x7f,0x49}}, // \xe5\x83\xb5
+{0x50f9,{0x04,0x7e,0x41,0x3b,0x3b,0x3b,0x41}}, // \xe5\x83\xb9
+{0x50fb,{0x04,0x7e,0x3f,0x36,0x2e,0x7b,0x2e}}, // \xe5\x83\xbb
+{0x5100,{0x0c,0x7f,0x2a,0x7b,0x2e,0x3b,0x5a}}, // \xe5\x84\x80
+{0x5101,{0x0c,0x7f,0x74,0x1f,0x2a,0x1f,0x7a}}, // \xe5\x84\x81
+{0x5102,{0x04,0x7e,0x21,0x76,0x57,0x36,0x57}}, // \xe5\x84\x82
+{0x5104,{0x04,0x7e,0x6b,0x3e,0x5b,0x5e,0x6a}}, // \xe5\x84\x84
+{0x5109,{0x04,0x7e,0x5d,0x36,0x5d,0x36,0x5c}}, // \xe5\x84\x89
+{0x5112,{0x0c,0x7f,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe5\x84\x92
+{0x5114,{0x04,0x7e,0x35,0x36,0x5f,0x76,0x14}}, // \xe5\x84\x94
+{0x5115,{0x04,0x7e,0x4b,0x36,0x2b,0x76,0x0a}}, // \xe5\x84\x95
+{0x5116,{0x04,0x7e,0x4f,0x69,0x60,0x6b,0x4a}}, // \xe5\x84\x96
+{0x5118,{0x04,0x7e,0x51,0x6a,0x7f,0x6e,0x54}}, // \xe5\x84\x98
+{0x511a,{0x0c,0x7f,0x1a,0x4f,0x5e,0x3f,0x1a}}, // \xe5\x84\x9a
+{0x511f,{0x04,0x7e,0x45,0x3e,0x3b,0x3e,0x45}}, // \xe5\x84\x9f
+{0x5121,{0x04,0x7e,0x71,0x77,0x07,0x77,0x70}}, // \xe5\x84\xa1
+{0x512a,{0x04,0x7e,0x59,0x5f,0x2f,0x5f,0x59}}, // \xe5\x84\xaa
+{0x5132,{0x04,0x7e,0x6b,0x62,0x1a,0x6f,0x6a}}, // \xe5\x84\xb2
+{0x5137,{0x04,0x7e,0x7f,0x55,0x1e,0x7d,0x57}}, // \xe5\x84\xb7
+{0x513a,{0x04,0x7e,0x5b,0x3e,0x5b,0x7e,0x55}}, // \xe5\x84\xba
+{0x513b,{0x04,0x7e,0x57,0x1a,0x5f,0x1a,0x57}}, // \xe5\x84\xbb
+{0x513c,{0x04,0x7e,0x7f,0x3f,0x7a,0x2f,0x5b}}, // \xe5\x84\xbc
+{0x513f,{0x40,0x20,0x1f,0x00,0x7f,0x40,0x60}}, // \xe5\x84\xbf
+{0x5140,{0x41,0x21,0x1f,0x01,0x7f,0x41,0x61}}, // \xe5\x85\x80
+{0x5141,{0x44,0x24,0x1e,0x05,0x7c,0x42,0x64}}, // \xe5\x85\x81
+{0x5143,{0x44,0x25,0x1d,0x05,0x7d,0x45,0x64}}, // \xe5\x85\x83
+{0x5144,{0x40,0x4f,0x39,0x09,0x79,0x4f,0x60}}, // \xe5\x85\x84
+{0x5145,{0x42,0x4a,0x3e,0x0b,0x76,0x4a,0x62}}, // \xe5\x85\x85
+{0x5146,{0x52,0x48,0x3f,0x00,0x7f,0x4c,0x52}}, // \xe5\x85\x86
+{0x5147,{0x40,0x5f,0x35,0x12,0x75,0x5f,0x60}}, // \xe5\x85\x87
+{0x5148,{0x4c,0x4b,0x3a,0x0f,0x7a,0x4a,0x68}}, // \xe5\x85\x88
+{0x5149,{0x48,0x4a,0x38,0x0f,0x78,0x4a,0x68}}, // \xe5\x85\x89
+{0x514b,{0x42,0x5e,0x36,0x17,0x76,0x5e,0x62}}, // \xe5\x85\x8b
+{0x514c,{0x44,0x5e,0x35,0x14,0x75,0x5e,0x64}}, // \xe5\x85\x8c
+{0x514d,{0x42,0x5e,0x35,0x1d,0x77,0x5c,0x60}}, // \xe5\x85\x8d
+{0x514e,{0x42,0x5e,0x36,0x1e,0x75,0x5d,0x60}}, // \xe5\x85\x8e
+{0x5150,{0x40,0x5f,0x20,0x1f,0x75,0x5f,0x60}}, // \xe5\x85\x90
+{0x5152,{0x40,0x5e,0x35,0x10,0x75,0x5f,0x60}}, // \xe5\x85\x92
+{0x5154,{0x42,0x5e,0x35,0x7d,0x57,0x74,0x5c}}, // \xe5\x85\x94
+{0x515a,{0x46,0x43,0x3e,0x17,0x7e,0x43,0x66}}, // \xe5\x85\x9a
+{0x515c,{0x5e,0x51,0x3e,0x15,0x7e,0x51,0x5f}}, // \xe5\x85\x9c
+{0x5162,{0x42,0x3a,0x77,0x5a,0x3a,0x77,0x5a}}, // \xe5\x85\xa2
+{0x5165,{0x40,0x21,0x19,0x07,0x18,0x20,0x40}}, // \xe5\x85\xa5
+{0x5168,{0x44,0x54,0x56,0x7d,0x56,0x54,0x44}}, // \xe5\x85\xa8
+{0x5169,{0x7d,0x1d,0x25,0x7f,0x1d,0x25,0x7d}}, // \xe5\x85\xa9
+{0x516a,{0x74,0x35,0x73,0x25,0x56,0x24,0x54}}, // \xe5\x85\xaa
+{0x516b,{0x40,0x30,0x0f,0x00,0x0f,0x30,0x40}}, // \xe5\x85\xab
+{0x516c,{0x48,0x44,0x63,0x58,0x43,0x24,0x48}}, // \xe5\x85\xac
+{0x516d,{0x42,0x22,0x1a,0x03,0x1a,0x22,0x42}}, // \xe5\x85\xad
+{0x516e,{0x04,0x06,0x1d,0x54,0x55,0x72,0x04}}, // \xe5\x85\xae
+{0x5171,{0x50,0x52,0x1f,0x12,0x1f,0x52,0x50}}, // \xe5\x85\xb1
+{0x5175,{0x50,0x5e,0x16,0x16,0x1d,0x55,0x50}}, // \xe5\x85\xb5
+{0x5176,{0x52,0x52,0x1f,0x1a,0x1f,0x52,0x52}}, // \xe5\x85\xb6
+{0x5177,{0x50,0x5f,0x15,0x15,0x15,0x5f,0x50}}, // \xe5\x85\xb7
+{0x5178,{0x50,0x5e,0x1f,0x1a,0x1f,0x5e,0x50}}, // \xe5\x85\xb8
+{0x517c,{0x52,0x36,0x7f,0x16,0x7e,0x2b,0x4a}}, // \xe5\x85\xbc
+{0x5180,{0x2a,0x6a,0x3f,0x38,0x3f,0x6a,0x2a}}, // \xe5\x86\x80
+{0x5182,{0x7f,0x01,0x01,0x01,0x01,0x41,0x7f}}, // \xe5\x86\x82
+{0x5185,{0x7e,0x12,0x0a,0x07,0x0a,0x52,0x7e}}, // \xe5\x86\x85
+{0x5186,{0x7f,0x09,0x09,0x0f,0x09,0x49,0x7f}}, // \xe5\x86\x86
+{0x5189,{0x20,0x7e,0x2a,0x3f,0x2a,0x7e,0x20}}, // \xe5\x86\x89
+{0x518a,{0x08,0x7f,0x3f,0x09,0x3f,0x09,0x7f}}, // \xe5\x86\x8a
+{0x518c,{0x48,0x3f,0x49,0x7f,0x3f,0x49,0x7f}}, // \xe5\x86\x8c
+{0x518d,{0x11,0x7f,0x15,0x1f,0x55,0x7f,0x11}}, // \xe5\x86\x8d
+{0x518f,{0x7f,0x05,0x3b,0x29,0x3f,0x45,0x7f}}, // \xe5\x86\x8f
+{0x5190,{0x07,0x79,0x2d,0x2d,0x2d,0x79,0x07}}, // \xe5\x86\x90
+{0x5191,{0x0e,0x7a,0x0a,0x2f,0x2a,0x7a,0x0e}}, // \xe5\x86\x91
+{0x5192,{0x07,0x7d,0x55,0x55,0x55,0x7d,0x07}}, // \xe5\x86\x92
+{0x5193,{0x2a,0x7a,0x2f,0x3a,0x2f,0x7a,0x2a}}, // \xe5\x86\x93
+{0x5195,{0x48,0x5b,0x35,0x1d,0x75,0x5f,0x60}}, // \xe5\x86\x95
+{0x5196,{0x0c,0x04,0x04,0x04,0x04,0x04,0x0c}}, // \xe5\x86\x96
+{0x5197,{0x43,0x21,0x1d,0x05,0x7d,0x41,0x63}}, // \xe5\x86\x97
+{0x5199,{0x13,0x11,0x1f,0x55,0x75,0x15,0x13}}, // \xe5\x86\x99
+{0x51a0,{0x53,0x35,0x75,0x51,0x69,0x7d,0x4b}}, // \xe5\x86\xa0
+{0x51a2,{0x2b,0x29,0x57,0x4f,0x3b,0x11,0x2b}}, // \xe5\x86\xa2
+{0x51a4,{0x4b,0x59,0x37,0x1f,0x77,0x5d,0x63}}, // \xe5\x86\xa4
+{0x51a5,{0x53,0x51,0x1f,0x1b,0x1f,0x51,0x53}}, // \xe5\x86\xa5
+{0x51a6,{0x53,0x35,0x75,0x41,0x6d,0x57,0x6b}}, // \xe5\x86\xa6
+{0x51a8,{0x03,0x71,0x5f,0x7b,0x5f,0x71,0x03}}, // \xe5\x86\xa8
+{0x51a9,{0x23,0x5d,0x1b,0x59,0x1f,0x51,0x73}}, // \xe5\x86\xa9
+{0x51aa,{0x53,0x35,0x7f,0x7d,0x3f,0x75,0x33}}, // \xe5\x86\xaa
+{0x51ab,{0x00,0x00,0x61,0x12,0x08,0x00,0x00}}, // \xe5\x86\xab
+{0x51ac,{0x10,0x12,0x2a,0x35,0x4b,0x50,0x10}}, // \xe5\x86\xac
+{0x51b0,{0x71,0x00,0x14,0x4c,0x7f,0x14,0x22}}, // \xe5\x86\xb0
+{0x51b1,{0x71,0x00,0x41,0x59,0x57,0x75,0x4d}}, // \xe5\x86\xb1
+{0x51b2,{0x71,0x00,0x1e,0x12,0x7f,0x12,0x1e}}, // \xe5\x86\xb2
+{0x51b3,{0x71,0x00,0x48,0x4a,0x3f,0x4e,0x48}}, // \xe5\x86\xb3
+{0x51b4,{0x71,0x00,0x28,0x2f,0x59,0x7f,0x09}}, // \xe5\x86\xb4
+{0x51b5,{0x71,0x00,0x4f,0x39,0x09,0x79,0x4f}}, // \xe5\x86\xb5
+{0x51b6,{0x71,0x00,0x08,0x6c,0x6b,0x64,0x08}}, // \xe5\x86\xb6
+{0x51b7,{0x71,0x00,0x14,0x12,0x75,0x16,0x34}}, // \xe5\x86\xb7
+{0x51bd,{0x71,0x00,0x49,0x37,0x1d,0x4e,0x7f}}, // \xe5\x86\xbd
+{0x51c4,{0x71,0x00,0x52,0x7a,0x5f,0x3e,0x52}}, // \xe5\x87\x84
+{0x51c5,{0x71,0x00,0x7f,0x75,0x6f,0x75,0x7f}}, // \xe5\x87\x85
+{0x51c6,{0x71,0x00,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe5\x87\x86
+{0x51c9,{0x71,0x00,0x22,0x4e,0x7b,0x0e,0x22}}, // \xe5\x87\x89
+{0x51cb,{0x71,0x00,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe5\x87\x8b
+{0x51cc,{0x71,0x40,0x28,0x5a,0x2f,0x5a,0x48}}, // \xe5\x87\x8c
+{0x51cd,{0x71,0x00,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe5\x87\x8d
+{0x51d6,{0x29,0x20,0x24,0x7f,0x2a,0x2f,0x2a}}, // \xe5\x87\x96
+{0x51db,{0x71,0x00,0x52,0x1e,0x7b,0x1e,0x52}}, // \xe5\x87\x9b
+{0x51dc,{0x71,0x00,0x52,0x3e,0x7b,0x3e,0x52}}, // \xe5\x87\x9c
+{0x51dd,{0x71,0x00,0x57,0x3a,0x5a,0x3d,0x57}}, // \xe5\x87\x9d
+{0x51e0,{0x40,0x3f,0x01,0x01,0x01,0x7f,0x40}}, // \xe5\x87\xa0
+{0x51e1,{0x40,0x3f,0x05,0x19,0x01,0x7f,0x40}}, // \xe5\x87\xa1
+{0x51e6,{0x48,0x2f,0x12,0x2e,0x42,0x5e,0x50}}, // \xe5\x87\xa6
+{0x51e7,{0x40,0x3f,0x19,0x7d,0x19,0x7f,0x40}}, // \xe5\x87\xa7
+{0x51e9,{0x40,0x3f,0x29,0x7d,0x29,0x7f,0x40}}, // \xe5\x87\xa9
+{0x51ea,{0x40,0x3f,0x31,0x3d,0x29,0x7f,0x40}}, // \xe5\x87\xaa
+{0x51ed,{0x44,0x4e,0x35,0x16,0x7e,0x55,0x44}}, // \xe5\x87\xad
+{0x51f0,{0x40,0x3f,0x5d,0x77,0x5d,0x7f,0x40}}, // \xe5\x87\xb0
+{0x51f1,{0x4b,0x5a,0x6b,0x5a,0x3f,0x01,0x7f}}, // \xe5\x87\xb1
+{0x51f5,{0x7f,0x40,0x40,0x40,0x40,0x40,0x7f}}, // \xe5\x87\xb5
+{0x51f6,{0x7f,0x60,0x54,0x48,0x56,0x40,0x7f}}, // \xe5\x87\xb6
+{0x51f8,{0x78,0x48,0x4f,0x41,0x4f,0x48,0x78}}, // \xe5\x87\xb8
+{0x51f9,{0x7f,0x41,0x4f,0x48,0x4f,0x41,0x7f}}, // \xe5\x87\xb9
+{0x51fa,{0x70,0x4e,0x48,0x7f,0x48,0x4e,0x70}}, // \xe5\x87\xba
+{0x51fd,{0x7d,0x69,0x57,0x7d,0x51,0x69,0x7d}}, // \xe5\x87\xbd
+{0x51fe,{0x7c,0x79,0x69,0x7d,0x57,0x69,0x7c}}, // \xe5\x87\xbe
+{0x5200,{0x41,0x21,0x19,0x07,0x01,0x41,0x7f}}, // \xe5\x88\x80
+{0x5203,{0x41,0x25,0x15,0x0f,0x11,0x41,0x7f}}, // \xe5\x88\x83
+{0x5204,{0x41,0x25,0x19,0x0f,0x11,0x51,0x7f}}, // \xe5\x88\x84
+{0x5206,{0x48,0x44,0x2b,0x18,0x4b,0x7c,0x08}}, // \xe5\x88\x86
+{0x5207,{0x04,0x3f,0x24,0x41,0x3f,0x41,0x7f}}, // \xe5\x88\x87
+{0x5208,{0x40,0x24,0x18,0x27,0x0e,0x40,0x7f}}, // \xe5\x88\x88
+{0x520a,{0x08,0x09,0x7f,0x09,0x0e,0x40,0x7f}}, // \xe5\x88\x8a
+{0x520b,{0x0a,0x4a,0x3e,0x09,0x0e,0x40,0x7f}}, // \xe5\x88\x8b
+{0x520e,{0x24,0x53,0x2e,0x5e,0x7e,0x00,0x7f}}, // \xe5\x88\x8e
+{0x5211,{0x49,0x3f,0x09,0x7f,0x09,0x4e,0x7f}}, // \xe5\x88\x91
+{0x5214,{0x48,0x2a,0x1f,0x2e,0x0e,0x40,0x7f}}, // \xe5\x88\x94
+{0x5217,{0x49,0x37,0x1d,0x01,0x0e,0x40,0x7f}}, // \xe5\x88\x97
+{0x521d,{0x12,0x7b,0x36,0x41,0x3f,0x41,0x7f}}, // \xe5\x88\x9d
+{0x5224,{0x2a,0x28,0x7f,0x28,0x2a,0x40,0x7f}}, // \xe5\x88\xa4
+{0x5225,{0x47,0x3d,0x55,0x77,0x0e,0x40,0x7f}}, // \xe5\x88\xa5
+{0x5227,{0x6a,0x5f,0x2a,0x41,0x3f,0x41,0x7f}}, // \xe5\x88\xa7
+{0x5229,{0x24,0x15,0x7f,0x15,0x0e,0x40,0x7f}}, // \xe5\x88\xa9
+{0x522a,{0x08,0x7f,0x3f,0x09,0x7f,0x0e,0x7f}}, // \xe5\x88\xaa
+{0x522e,{0x04,0x76,0x5e,0x75,0x0e,0x40,0x7f}}, // \xe5\x88\xae
+{0x5230,{0x49,0x5d,0x3b,0x2d,0x0e,0x40,0x7f}}, // \xe5\x88\xb0
+{0x5233,{0x0a,0x16,0x1b,0x56,0x6a,0x00,0x7f}}, // \xe5\x88\xb3
+{0x5236,{0x64,0x2b,0x7f,0x2a,0x6e,0x00,0x7f}}, // \xe5\x88\xb6
+{0x5237,{0x40,0x3f,0x15,0x7d,0x37,0x40,0x7f}}, // \xe5\x88\xb7
+{0x5238,{0x14,0x4d,0x56,0x37,0x56,0x7d,0x14}}, // \xe5\x88\xb8
+{0x5239,{0x54,0x35,0x7a,0x35,0x5e,0x00,0x7f}}, // \xe5\x88\xb9
+{0x523a,{0x5a,0x2a,0x7f,0x2a,0x5a,0x00,0x7f}}, // \xe5\x88\xba
+{0x523b,{0x4a,0x56,0x2b,0x52,0x0e,0x40,0x7f}}, // \xe5\x88\xbb
+{0x5243,{0x5a,0x2b,0x7e,0x2b,0x6e,0x00,0x7f}}, // \xe5\x89\x83
+{0x5244,{0x55,0x5b,0x75,0x5b,0x51,0x0e,0x7f}}, // \xe5\x89\x84
+{0x5247,{0x5f,0x15,0x5f,0x00,0x0e,0x40,0x7f}}, // \xe5\x89\x87
+{0x524a,{0x7d,0x14,0x57,0x7d,0x0e,0x40,0x7f}}, // \xe5\x89\x8a
+{0x524b,{0x5a,0x37,0x5a,0x40,0x4e,0x60,0x7f}}, // \xe5\x89\x8b
+{0x524c,{0x42,0x2e,0x7f,0x2a,0x4e,0x00,0x7f}}, // \xe5\x89\x8c
+{0x524d,{0x7a,0x2a,0x7b,0x02,0x1a,0x43,0x7a}}, // \xe5\x89\x8d
+{0x524f,{0x55,0x3e,0x7d,0x45,0x3f,0x51,0x7f}}, // \xe5\x89\x8f
+{0x5254,{0x27,0x5d,0x35,0x77,0x0e,0x40,0x7f}}, // \xe5\x89\x94
+{0x5256,{0x0a,0x6e,0x6b,0x6e,0x0e,0x40,0x7f}}, // \xe5\x89\x96
+{0x525b,{0x7f,0x35,0x29,0x35,0x7f,0x0e,0x7f}}, // \xe5\x89\x9b
+{0x525e,{0x12,0x5a,0x17,0x7a,0x1e,0x40,0x7f}}, // \xe5\x89\x9e
+{0x5263,{0x5c,0x56,0x3d,0x56,0x5c,0x0e,0x7f}}, // \xe5\x89\xa3
+{0x5264,{0x52,0x36,0x2b,0x76,0x1e,0x40,0x7f}}, // \xe5\x89\xa4
+{0x5265,{0x54,0x25,0x7f,0x24,0x5e,0x00,0x7f}}, // \xe5\x89\xa5
+{0x5269,{0x4a,0x2f,0x73,0x2f,0x4a,0x00,0x7f}}, // \xe5\x89\xa9
+{0x526a,{0x52,0x5e,0x37,0x1e,0x12,0x5f,0x72}}, // \xe5\x89\xaa
+{0x526f,{0x71,0x57,0x75,0x57,0x71,0x0e,0x7f}}, // \xe5\x89\xaf
+{0x5270,{0x54,0x3e,0x76,0x3d,0x54,0x0e,0x7f}}, // \xe5\x89\xb0
+{0x5271,{0x5c,0x56,0x3d,0x5e,0x65,0x1f,0x7f}}, // \xe5\x89\xb1
+{0x5272,{0x26,0x6a,0x7f,0x6a,0x2e,0x40,0x7f}}, // \xe5\x89\xb2
+{0x5273,{0x12,0x7b,0x56,0x7b,0x1e,0x40,0x7f}}, // \xe5\x89\xb3
+{0x5274,{0x4b,0x5a,0x6b,0x3a,0x2f,0x40,0x7f}}, // \xe5\x89\xb4
+{0x5275,{0x44,0x3e,0x6d,0x62,0x0e,0x40,0x7f}}, // \xe5\x89\xb5
+{0x527d,{0x51,0x17,0x77,0x17,0x51,0x0e,0x7f}}, // \xe5\x89\xbd
+{0x527f,{0x52,0x3d,0x7e,0x3d,0x5e,0x00,0x7f}}, // \xe5\x89\xbf
+{0x5283,{0x4a,0x7a,0x7f,0x3e,0x24,0x40,0x7f}}, // \xe5\x8a\x83
+{0x5287,{0x7c,0x2c,0x57,0x7a,0x2e,0x40,0x7f}}, // \xe5\x8a\x87
+{0x5288,{0x54,0x5f,0x3b,0x10,0x16,0x5b,0x76}}, // \xe5\x8a\x88
+{0x5289,{0x56,0x6d,0x74,0x6b,0x57,0x00,0x7f}}, // \xe5\x8a\x89
+{0x528d,{0x5c,0x36,0x5d,0x36,0x5e,0x00,0x7f}}, // \xe5\x8a\x8d
+{0x5291,{0x4a,0x36,0x2b,0x76,0x0e,0x40,0x7f}}, // \xe5\x8a\x91
+{0x5292,{0x5c,0x36,0x5d,0x3e,0x69,0x1f,0x7f}}, // \xe5\x8a\x92
+{0x5294,{0x5c,0x36,0x5d,0x3e,0x65,0x1f,0x7f}}, // \xe5\x8a\x94
+{0x529b,{0x42,0x22,0x1a,0x07,0x02,0x42,0x7e}}, // \xe5\x8a\x9b
+{0x529f,{0x22,0x3e,0x12,0x42,0x3f,0x42,0x7e}}, // \xe5\x8a\x9f
+{0x52a0,{0x42,0x3f,0x42,0x7e,0x7e,0x42,0x7e}}, // \xe5\x8a\xa0
+{0x52a3,{0x54,0x52,0x38,0x1f,0x14,0x52,0x74}}, // \xe5\x8a\xa3
+{0x52a9,{0x40,0x7f,0x55,0x3f,0x62,0x1f,0x7e}}, // \xe5\x8a\xa9
+{0x52aa,{0x12,0x4e,0x5b,0x36,0x5b,0x75,0x0b}}, // \xe5\x8a\xaa
+{0x52ab,{0x48,0x6a,0x5f,0x6a,0x3f,0x42,0x7e}}, // \xe5\x8a\xab
+{0x52ac,{0x04,0x1b,0x5a,0x7e,0x62,0x1f,0x7e}}, // \xe5\x8a\xac
+{0x52ad,{0x75,0x53,0x77,0x42,0x3f,0x42,0x7e}}, // \xe5\x8a\xad
+{0x52b1,{0x7f,0x65,0x1d,0x75,0x62,0x1f,0x7e}}, // \xe5\x8a\xb1
+{0x52b4,{0x46,0x4b,0x2a,0x1f,0x4a,0x7b,0x06}}, // \xe5\x8a\xb4
+{0x52b5,{0x12,0x55,0x4c,0x37,0x5c,0x75,0x12}}, // \xe5\x8a\xb5
+{0x52b9,{0x4a,0x56,0x23,0x56,0x3f,0x42,0x7e}}, // \xe5\x8a\xb9
+{0x52bc,{0x6a,0x6f,0x6a,0x42,0x3f,0x42,0x7e}}, // \xe5\x8a\xbc
+{0x52be,{0x4a,0x56,0x2b,0x52,0x3f,0x42,0x7e}}, // \xe5\x8a\xbe
+{0x52c1,{0x55,0x5b,0x75,0x5b,0x62,0x1f,0x7e}}, // \xe5\x8b\x81
+{0x52c3,{0x2c,0x66,0x77,0x2c,0x62,0x1f,0x7e}}, // \xe5\x8b\x83
+{0x52c5,{0x42,0x2e,0x7f,0x2a,0x6e,0x1f,0x7e}}, // \xe5\x8b\x85
+{0x52c7,{0x50,0x5d,0x35,0x1d,0x17,0x5d,0x70}}, // \xe5\x8b\x87
+{0x52c9,{0x42,0x2d,0x7f,0x4c,0x72,0x4f,0x7e}}, // \xe5\x8b\x89
+{0x52cd,{0x22,0x4e,0x7b,0x0e,0x62,0x1f,0x7e}}, // \xe5\x8b\x8d
+{0x52d2,{0x37,0x7e,0x37,0x42,0x3f,0x42,0x7e}}, // \xe5\x8b\x92
+{0x52d5,{0x5d,0x7f,0x5d,0x42,0x3f,0x42,0x7e}}, // \xe5\x8b\x95
+{0x52d7,{0x40,0x7f,0x57,0x3f,0x4b,0x3f,0x78}}, // \xe5\x8b\x97
+{0x52d8,{0x72,0x5f,0x72,0x5f,0x62,0x1f,0x7e}}, // \xe5\x8b\x98
+{0x52d9,{0x29,0x5d,0x7b,0x54,0x3b,0x56,0x7a}}, // \xe5\x8b\x99
+{0x52dd,{0x7f,0x15,0x7f,0x55,0x3c,0x5f,0x75}}, // \xe5\x8b\x9d
+{0x52de,{0x4d,0x56,0x35,0x1c,0x55,0x76,0x0d}}, // \xe5\x8b\x9e
+{0x52df,{0x2a,0x5a,0x3f,0x5e,0x7f,0x1a,0x2a}}, // \xe5\x8b\x9f
+{0x52e0,{0x11,0x4b,0x55,0x2b,0x62,0x1f,0x7e}}, // \xe5\x8b\xa0
+{0x52e2,{0x14,0x4e,0x5f,0x3a,0x57,0x7e,0x08}}, // \xe5\x8b\xa2
+{0x52e3,{0x4a,0x3a,0x3f,0x4a,0x3f,0x42,0x7e}}, // \xe5\x8b\xa3
+{0x52e4,{0x5a,0x5f,0x7a,0x5f,0x62,0x1f,0x7e}}, // \xe5\x8b\xa4
+{0x52e6,{0x52,0x3d,0x7e,0x3d,0x62,0x1f,0x7e}}, // \xe5\x8b\xa6
+{0x52e7,{0x14,0x7b,0x7e,0x4a,0x3f,0x42,0x7e}}, // \xe5\x8b\xa7
+{0x52f2,{0x52,0x1f,0x5f,0x12,0x4f,0x12,0x5e}}, // \xe5\x8b\xb2
+{0x52f3,{0x52,0x1f,0x5f,0x12,0x62,0x1f,0x7e}}, // \xe5\x8b\xb3
+{0x52f5,{0x7f,0x6d,0x3f,0x6d,0x62,0x1f,0x7e}}, // \xe5\x8b\xb5
+{0x52f8,{0x26,0x7f,0x7a,0x57,0x66,0x1f,0x7e}}, // \xe5\x8b\xb8
+{0x52f9,{0x08,0x04,0x03,0x02,0x02,0x42,0x7e}}, // \xe5\x8b\xb9
+{0x52fa,{0x08,0x04,0x0b,0x12,0x02,0x42,0x7e}}, // \xe5\x8b\xba
+{0x52fe,{0x08,0x24,0x33,0x2e,0x12,0x22,0x7e}}, // \xe5\x8b\xbe
+{0x52ff,{0x24,0x13,0x4e,0x22,0x1e,0x42,0x7e}}, // \xe5\x8b\xbf
+{0x5301,{0x48,0x44,0x2b,0x1e,0x12,0x52,0x7e}}, // \xe5\x8c\x81
+{0x5302,{0x08,0x04,0x3f,0x2a,0x2a,0x42,0x7e}}, // \xe5\x8c\x82
+{0x5305,{0x04,0x73,0x56,0x56,0x5e,0x42,0x5e}}, // \xe5\x8c\x85
+{0x5306,{0x24,0x13,0x4e,0x2a,0x1e,0x52,0x7e}}, // \xe5\x8c\x86
+{0x5308,{0x04,0x3b,0x36,0x2a,0x36,0x42,0x7e}}, // \xe5\x8c\x88
+{0x530d,{0x04,0x6b,0x2a,0x7e,0x6a,0x02,0x7e}}, // \xe5\x8c\x8d
+{0x530f,{0x0a,0x1e,0x57,0x6a,0x04,0x7b,0x5e}}, // \xe5\x8c\x8f
+{0x5310,{0x04,0x6b,0x7a,0x7a,0x6a,0x02,0x7e}}, // \xe5\x8c\x90
+{0x5315,{0x08,0x3f,0x48,0x44,0x44,0x42,0x60}}, // \xe5\x8c\x95
+{0x5316,{0x04,0x7e,0x01,0x7f,0x48,0x48,0x64}}, // \xe5\x8c\x96
+{0x5317,{0x24,0x14,0x7f,0x00,0x7f,0x48,0x64}}, // \xe5\x8c\x97
+{0x5319,{0x44,0x37,0x3f,0x54,0x7f,0x64,0x72}}, // \xe5\x8c\x99
+{0x531a,{0x7f,0x41,0x41,0x41,0x41,0x41,0x41}}, // \xe5\x8c\x9a
+{0x531d,{0x7f,0x41,0x5d,0x45,0x7f,0x45,0x5d}}, // \xe5\x8c\x9d
+{0x5320,{0x7f,0x61,0x5d,0x4d,0x7b,0x4b,0x49}}, // \xe5\x8c\xa0
+{0x5321,{0x7f,0x41,0x63,0x6b,0x7f,0x6b,0x41}}, // \xe5\x8c\xa1
+{0x5323,{0x7f,0x41,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe5\x8c\xa3
+{0x532a,{0x7f,0x55,0x75,0x5f,0x41,0x7f,0x55}}, // \xe5\x8c\xaa
+{0x532f,{0x7f,0x6b,0x45,0x7f,0x55,0x7f,0x55}}, // \xe5\x8c\xaf
+{0x5331,{0x7f,0x41,0x65,0x5f,0x5f,0x65,0x41}}, // \xe5\x8c\xb1
+{0x5333,{0x7f,0x41,0x69,0x5d,0x6f,0x5d,0x69}}, // \xe5\x8c\xb3
+{0x5338,{0x01,0x3f,0x41,0x41,0x41,0x41,0x41}}, // \xe5\x8c\xb8
+{0x5339,{0x7f,0x51,0x4f,0x41,0x5f,0x51,0x59}}, // \xe5\x8c\xb9
+{0x533a,{0x7f,0x41,0x65,0x55,0x49,0x57,0x41}}, // \xe5\x8c\xba
+{0x533b,{0x7f,0x41,0x69,0x6f,0x5d,0x6d,0x69}}, // \xe5\x8c\xbb
+{0x533f,{0x7f,0x55,0x4f,0x7d,0x57,0x75,0x45}}, // \xe5\x8c\xbf
+{0x5340,{0x7f,0x41,0x71,0x77,0x45,0x77,0x71}}, // \xe5\x8d\x80
+{0x5341,{0x04,0x04,0x04,0x7f,0x04,0x04,0x04}}, // \xe5\x8d\x81
+{0x5343,{0x08,0x0a,0x0a,0x7e,0x09,0x09,0x08}}, // \xe5\x8d\x83
+{0x5345,{0x48,0x3f,0x08,0x7f,0x08,0x7f,0x08}}, // \xe5\x8d\x85
+{0x5346,{0x28,0x2a,0x27,0x72,0x2e,0x28,0x2c}}, // \xe5\x8d\x86
+{0x5347,{0x0a,0x4a,0x3e,0x09,0x08,0x7f,0x08}}, // \xe5\x8d\x87
+{0x5348,{0x14,0x13,0x12,0x7e,0x12,0x12,0x10}}, // \xe5\x8d\x88
+{0x5349,{0x50,0x3a,0x12,0x17,0x12,0x7a,0x10}}, // \xe5\x8d\x89
+{0x534a,{0x20,0x2a,0x28,0x7f,0x28,0x2a,0x20}}, // \xe5\x8d\x8a
+{0x534d,{0x79,0x09,0x09,0x7f,0x48,0x48,0x4f}}, // \xe5\x8d\x8d
+{0x5351,{0x20,0x2e,0x3a,0x2f,0x7a,0x2e,0x20}}, // \xe5\x8d\x91
+{0x5352,{0x32,0x2e,0x32,0x63,0x32,0x2e,0x32}}, // \xe5\x8d\x92
+{0x5353,{0x20,0x3c,0x34,0x77,0x36,0x3e,0x22}}, // \xe5\x8d\x93
+{0x5354,{0x04,0x7f,0x24,0x62,0x37,0x62,0x76}}, // \xe5\x8d\x94
+{0x5357,{0x7a,0x2a,0x3a,0x6f,0x3a,0x2a,0x7a}}, // \xe5\x8d\x97
+{0x5358,{0x20,0x3f,0x2a,0x7f,0x2a,0x3f,0x20}}, // \xe5\x8d\x98
+{0x535a,{0x04,0x7f,0x12,0x3e,0x5f,0x7e,0x13}}, // \xe5\x8d\x9a
+{0x535c,{0x00,0x00,0x7f,0x04,0x08,0x10,0x00}}, // \xe5\x8d\x9c
+{0x535e,{0x02,0x02,0x02,0x7f,0x0a,0x12,0x02}}, // \xe5\x8d\x9e
+{0x5360,{0x00,0x70,0x50,0x5f,0x54,0x54,0x74}}, // \xe5\x8d\xa0
+{0x5366,{0x48,0x5a,0x3f,0x2a,0x7f,0x08,0x10}}, // \xe5\x8d\xa6
+{0x5369,{0x00,0x00,0x7f,0x01,0x11,0x1f,0x00}}, // \xe5\x8d\xa9
+{0x536e,{0x40,0x3e,0x06,0x7e,0x4d,0x5d,0x64}}, // \xe5\x8d\xae
+{0x536f,{0x1e,0x52,0x3d,0x00,0x7f,0x01,0x1f}}, // \xe5\x8d\xaf
+{0x5370,{0x3e,0x2a,0x29,0x00,0x7f,0x01,0x1f}}, // \xe5\x8d\xb0
+{0x5371,{0x42,0x3e,0x05,0x7d,0x4f,0x5c,0x64}}, // \xe5\x8d\xb1
+{0x5373,{0x7f,0x55,0x5f,0x20,0x7f,0x01,0x1f}}, // \xe5\x8d\xb3
+{0x5374,{0x48,0x6a,0x5f,0x2a,0x7f,0x01,0x1f}}, // \xe5\x8d\xb4
+{0x5375,{0x1e,0x56,0x3d,0x00,0x7f,0x05,0x1f}}, // \xe5\x8d\xb5
+{0x5377,{0x2a,0x19,0x7c,0x4b,0x5c,0x19,0x2a}}, // \xe5\x8d\xb7
+{0x5378,{0x6c,0x4b,0x3e,0x2a,0x7f,0x01,0x1f}}, // \xe5\x8d\xb8
+{0x537b,{0x12,0x69,0x64,0x09,0x7f,0x01,0x1f}}, // \xe5\x8d\xbb
+{0x537f,{0x5e,0x31,0x7e,0x4a,0x2e,0x7f,0x1f}}, // \xe5\x8d\xbf
+{0x5382,{0x40,0x3f,0x01,0x01,0x01,0x01,0x01}}, // \xe5\x8e\x82
+{0x5384,{0x40,0x3f,0x01,0x7d,0x45,0x5d,0x61}}, // \xe5\x8e\x84
+{0x5396,{0x40,0x3f,0x45,0x3f,0x45,0x69,0x55}}, // \xe5\x8e\x96
+{0x5398,{0x40,0x3f,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe5\x8e\x98
+{0x539a,{0x40,0x3f,0x11,0x57,0x77,0x1f,0x11}}, // \xe5\x8e\x9a
+{0x539f,{0x40,0x3f,0x21,0x4d,0x7f,0x0d,0x21}}, // \xe5\x8e\x9f
+{0x53a0,{0x40,0x3f,0x5f,0x15,0x5f,0x01,0x7d}}, // \xe5\x8e\xa0
+{0x53a5,{0x40,0x3f,0x5b,0x35,0x4b,0x3d,0x4d}}, // \xe5\x8e\xa5
+{0x53a6,{0x40,0x3f,0x41,0x53,0x2f,0x5f,0x43}}, // \xe5\x8e\xa6
+{0x53a8,{0x40,0x3f,0x5d,0x75,0x2d,0x49,0x7d}}, // \xe5\x8e\xa8
+{0x53a9,{0x40,0x3f,0x2d,0x53,0x3f,0x73,0x5f}}, // \xe5\x8e\xa9
+{0x53ad,{0x40,0x3f,0x7b,0x7b,0x45,0x3f,0x45}}, // \xe5\x8e\xad
+{0x53ae,{0x40,0x3f,0x55,0x1f,0x5f,0x3d,0x73}}, // \xe5\x8e\xae
+{0x53b0,{0x40,0x3f,0x7d,0x3b,0x7d,0x27,0x5d}}, // \xe5\x8e\xb0
+{0x53b3,{0x40,0x3f,0x2e,0x7b,0x52,0x2b,0x5a}}, // \xe5\x8e\xb3
+{0x53b6,{0x40,0x60,0x58,0x47,0x50,0x20,0x40}}, // \xe5\x8e\xb6
+{0x53bb,{0x48,0x4a,0x6a,0x5f,0x4a,0x2a,0x48}}, // \xe5\x8e\xbb
+{0x53c2,{0x14,0x4e,0x57,0x4e,0x25,0x0e,0x14}}, // \xe5\x8f\x82
+{0x53c3,{0x2c,0x1a,0x4f,0x5a,0x2d,0x1a,0x2c}}, // \xe5\x8f\x83
+{0x53c8,{0x40,0x41,0x2d,0x11,0x29,0x47,0x40}}, // \xe5\x8f\x88
+{0x53c9,{0x40,0x45,0x29,0x13,0x29,0x47,0x40}}, // \xe5\x8f\x89
+{0x53ca,{0x41,0x31,0x4f,0x51,0x27,0x5c,0x40}}, // \xe5\x8f\x8a
+{0x53cb,{0x42,0x32,0x4f,0x5a,0x2a,0x5a,0x42}}, // \xe5\x8f\x8b
+{0x53cc,{0x41,0x25,0x19,0x27,0x4d,0x31,0x4f}}, // \xe5\x8f\x8c
+{0x53cd,{0x40,0x3f,0x45,0x5d,0x25,0x5d,0x41}}, // \xe5\x8f\x8d
+{0x53ce,{0x3e,0x20,0x7f,0x10,0x4d,0x31,0x4f}}, // \xe5\x8f\x8e
+{0x53d4,{0x28,0x48,0x7f,0x2a,0x4d,0x31,0x4f}}, // \xe5\x8f\x94
+{0x53d6,{0x21,0x3f,0x2d,0x7f,0x2a,0x12,0x2e}}, // \xe5\x8f\x96
+{0x53d7,{0x4d,0x47,0x5d,0x2f,0x5d,0x47,0x4d}}, // \xe5\x8f\x97
+{0x53d9,{0x54,0x16,0x7d,0x16,0x4d,0x31,0x4f}}, // \xe5\x8f\x99
+{0x53db,{0x55,0x3e,0x15,0x20,0x5f,0x25,0x5d}}, // \xe5\x8f\x9b
+{0x53df,{0x4e,0x4d,0x58,0x2f,0x58,0x4d,0x4f}}, // \xe5\x8f\x9f
+{0x53e1,{0x2c,0x14,0x6f,0x76,0x4d,0x31,0x4f}}, // \xe5\x8f\xa1
+{0x53e2,{0x2b,0x3a,0x7f,0x1a,0x5f,0x2a,0x5b}}, // \xe5\x8f\xa2
+{0x53e3,{0x00,0x7e,0x22,0x22,0x22,0x22,0x7e}}, // \xe5\x8f\xa3
+{0x53e4,{0x04,0x74,0x54,0x5f,0x54,0x74,0x04}}, // \xe5\x8f\xa4
+{0x53e5,{0x08,0x04,0x3b,0x2a,0x3a,0x42,0x7e}}, // \xe5\x8f\xa5
+{0x53e8,{0x1e,0x12,0x5e,0x21,0x1f,0x41,0x7f}}, // \xe5\x8f\xa8
+{0x53e9,{0x1e,0x12,0x1e,0x7f,0x01,0x11,0x1f}}, // \xe5\x8f\xa9
+{0x53ea,{0x40,0x4f,0x29,0x09,0x29,0x4f,0x40}}, // \xe5\x8f\xaa
+{0x53eb,{0x1e,0x1e,0x20,0x3e,0x20,0x7f,0x10}}, // \xe5\x8f\xab
+{0x53ec,{0x09,0x79,0x55,0x53,0x51,0x79,0x0f}}, // \xe5\x8f\xac
+{0x53ed,{0x1e,0x1e,0x40,0x3f,0x00,0x3f,0x40}}, // \xe5\x8f\xad
+{0x53ee,{0x1e,0x12,0x1e,0x01,0x41,0x7f,0x01}}, // \xe5\x8f\xae
+{0x53ef,{0x01,0x1d,0x15,0x1d,0x41,0x7f,0x01}}, // \xe5\x8f\xaf
+{0x53f0,{0x08,0x68,0x6c,0x6b,0x68,0x64,0x08}}, // \xe5\x8f\xb0
+{0x53f1,{0x1e,0x12,0x1e,0x7f,0x48,0x48,0x64}}, // \xe5\x8f\xb1
+{0x53f2,{0x40,0x4e,0x5a,0x3f,0x4a,0x4e,0x40}}, // \xe5\x8f\xb2
+{0x53f3,{0x12,0x0a,0x7f,0x4a,0x4a,0x7a,0x02}}, // \xe5\x8f\xb3
+{0x53f6,{0x1e,0x12,0x1e,0x04,0x04,0x7f,0x04}}, // \xe5\x8f\xb6
+{0x53f7,{0x04,0x04,0x1f,0x55,0x57,0x74,0x04}}, // \xe5\x8f\xb7
+{0x53f8,{0x01,0x35,0x35,0x35,0x35,0x41,0x7f}}, // \xe5\x8f\xb8
+{0x53fa,{0x1e,0x12,0x5e,0x31,0x0f,0x30,0x40}}, // \xe5\x8f\xba
+{0x5401,{0x1e,0x12,0x1e,0x09,0x49,0x7f,0x09}}, // \xe5\x90\x81
+{0x5403,{0x1e,0x1e,0x04,0x23,0x56,0x4e,0x62}}, // \xe5\x90\x83
+{0x5404,{0x10,0x12,0x6a,0x65,0x6b,0x10,0x10}}, // \xe5\x90\x84
+{0x5408,{0x04,0x74,0x52,0x55,0x56,0x74,0x04}}, // \xe5\x90\x88
+{0x5409,{0x02,0x6a,0x6a,0x6f,0x6a,0x6a,0x02}}, // \xe5\x90\x89
+{0x540a,{0x38,0x0f,0x0d,0x7d,0x0d,0x2f,0x38}}, // \xe5\x90\x8a
+{0x540b,{0x1e,0x12,0x1e,0x0a,0x52,0x7f,0x02}}, // \xe5\x90\x8b
+{0x540c,{0x7f,0x01,0x75,0x55,0x75,0x01,0x7f}}, // \xe5\x90\x8c
+{0x540d,{0x20,0x24,0x13,0x7d,0x55,0x53,0x70}}, // \xe5\x90\x8d
+{0x540e,{0x40,0x3e,0x0a,0x6a,0x69,0x69,0x08}}, // \xe5\x90\x8e
+{0x540f,{0x42,0x4e,0x5a,0x3f,0x4a,0x4e,0x42}}, // \xe5\x90\x8f
+{0x5410,{0x1e,0x12,0x1e,0x44,0x44,0x7f,0x44}}, // \xe5\x90\x90
+{0x5411,{0x7e,0x02,0x3a,0x2b,0x3a,0x42,0x7e}}, // \xe5\x90\x91
+{0x541b,{0x24,0x25,0x75,0x5f,0x55,0x5f,0x74}}, // \xe5\x90\x9b
+{0x541d,{0x12,0x72,0x76,0x6b,0x76,0x72,0x12}}, // \xe5\x90\x9d
+{0x541f,{0x1e,0x12,0x1e,0x52,0x55,0x36,0x14}}, // \xe5\x90\x9f
+{0x5420,{0x1e,0x12,0x5e,0x24,0x1f,0x24,0x45}}, // \xe5\x90\xa0
+{0x5426,{0x09,0x79,0x55,0x5f,0x51,0x75,0x09}}, // \xe5\x90\xa6
+{0x5429,{0x1e,0x1e,0x44,0x3b,0x48,0x7b,0x04}}, // \xe5\x90\xa9
+{0x542b,{0x04,0x74,0x56,0x55,0x5e,0x74,0x04}}, // \xe5\x90\xab
+{0x542c,{0x1e,0x1e,0x40,0x3e,0x0a,0x79,0x08}}, // \xe5\x90\xac
+{0x542d,{0x1e,0x1e,0x42,0x3a,0x0b,0x7a,0x42}}, // \xe5\x90\xad
+{0x542e,{0x1e,0x1e,0x44,0x3e,0x05,0x7c,0x46}}, // \xe5\x90\xae
+{0x5436,{0x1e,0x12,0x7e,0x15,0x0f,0x54,0x7c}}, // \xe5\x90\xb6
+{0x5438,{0x1e,0x5e,0x31,0x4f,0x51,0x27,0x5c}}, // \xe5\x90\xb8
+{0x5439,{0x1e,0x1e,0x44,0x23,0x1e,0x22,0x46}}, // \xe5\x90\xb9
+{0x543b,{0x3e,0x22,0x3e,0x53,0x2e,0x5e,0x7e}}, // \xe5\x90\xbb
+{0x543c,{0x1e,0x1e,0x51,0x7d,0x0b,0x7f,0x40}}, // \xe5\x90\xbc
+{0x543d,{0x1e,0x12,0x1e,0x14,0x13,0x7f,0x12}}, // \xe5\x90\xbd
+{0x543e,{0x10,0x75,0x5d,0x57,0x5d,0x71,0x10}}, // \xe5\x90\xbe
+{0x5440,{0x1e,0x1e,0x28,0x2f,0x59,0x7f,0x09}}, // \xe5\x91\x80
+{0x5442,{0x00,0x70,0x57,0x5d,0x55,0x57,0x70}}, // \xe5\x91\x82
+{0x5446,{0x50,0x57,0x35,0x7d,0x35,0x57,0x50}}, // \xe5\x91\x86
+{0x5448,{0x44,0x57,0x55,0x7d,0x55,0x57,0x44}}, // \xe5\x91\x88
+{0x5449,{0x56,0x54,0x17,0x15,0x1d,0x57,0x50}}, // \xe5\x91\x89
+{0x544a,{0x0c,0x6b,0x6a,0x6f,0x6a,0x6a,0x08}}, // \xe5\x91\x8a
+{0x544e,{0x1e,0x1e,0x40,0x3f,0x05,0x1d,0x67}}, // \xe5\x91\x8e
+{0x5451,{0x14,0x0e,0x76,0x56,0x75,0x0d,0x14}}, // \xe5\x91\x91
+{0x545f,{0x1e,0x1e,0x4a,0x6e,0x53,0x2a,0x42}}, // \xe5\x91\x9f
+{0x5468,{0x40,0x3f,0x75,0x5f,0x75,0x11,0x7f}}, // \xe5\x91\xa8
+{0x546a,{0x1e,0x52,0x5f,0x39,0x09,0x79,0x4f}}, // \xe5\x91\xaa
+{0x5470,{0x0e,0x78,0x5f,0x5a,0x50,0x7f,0x0a}}, // \xe5\x91\xb0
+{0x5471,{0x1e,0x1e,0x40,0x3e,0x42,0x3e,0x61}}, // \xe5\x91\xb1
+{0x5473,{0x1e,0x12,0x5e,0x2a,0x7f,0x2a,0x48}}, // \xe5\x91\xb3
+{0x5475,{0x1e,0x1e,0x01,0x1d,0x15,0x5d,0x7f}}, // \xe5\x91\xb5
+{0x5476,{0x1e,0x1e,0x5c,0x37,0x4c,0x31,0x4f}}, // \xe5\x91\xb6
+{0x5477,{0x1e,0x12,0x1f,0x15,0x7f,0x15,0x1f}}, // \xe5\x91\xb7
+{0x547b,{0x1e,0x12,0x3e,0x2a,0x7f,0x2a,0x3e}}, // \xe5\x91\xbb
+{0x547c,{0x1e,0x1e,0x16,0x52,0x7e,0x11,0x15}}, // \xe5\x91\xbc
+{0x547d,{0x34,0x34,0x32,0x05,0x76,0x14,0x34}}, // \xe5\x91\xbd
+{0x5480,{0x1e,0x1e,0x40,0x7f,0x55,0x7f,0x40}}, // \xe5\x92\x80
+{0x5484,{0x1e,0x1e,0x76,0x44,0x7f,0x44,0x76}}, // \xe5\x92\x84
+{0x5486,{0x1e,0x1e,0x04,0x7b,0x5a,0x42,0x5e}}, // \xe5\x92\x86
+{0x548b,{0x1e,0x12,0x1e,0x04,0x7f,0x2a,0x2a}}, // \xe5\x92\x8b
+{0x548c,{0x24,0x15,0x7f,0x15,0x7e,0x42,0x7e}}, // \xe5\x92\x8c
+{0x548e,{0x0a,0x7b,0x55,0x5b,0x54,0x73,0x14}}, // \xe5\x92\x8e
+{0x548f,{0x1e,0x1e,0x28,0x5d,0x7d,0x10,0x28}}, // \xe5\x92\x8f
+{0x5490,{0x1e,0x1e,0x04,0x7e,0x09,0x42,0x7f}}, // \xe5\x92\x90
+{0x5492,{0x47,0x45,0x3f,0x08,0x7f,0x45,0x67}}, // \xe5\x92\x92
+{0x54a2,{0x0b,0x0b,0x1f,0x5c,0x5f,0x7b,0x0b}}, // \xe5\x92\xa2
+{0x54a4,{0x1e,0x1e,0x16,0x1a,0x7b,0x56,0x56}}, // \xe5\x92\xa4
+{0x54a5,{0x1e,0x1e,0x45,0x57,0x7d,0x53,0x45}}, // \xe5\x92\xa5
+{0x54a8,{0x09,0x70,0x54,0x5b,0x56,0x7a,0x06}}, // \xe5\x92\xa8
+{0x54ab,{0x40,0x3f,0x19,0x27,0x50,0x47,0x57}}, // \xe5\x92\xab
+{0x54ac,{0x1e,0x1e,0x4a,0x56,0x23,0x56,0x4a}}, // \xe5\x92\xac
+{0x54af,{0x1e,0x1e,0x10,0x6a,0x65,0x6b,0x10}}, // \xe5\x92\xaf
+{0x54b2,{0x1e,0x12,0x5e,0x55,0x3c,0x55,0x54}}, // \xe5\x92\xb2
+{0x54b3,{0x1e,0x12,0x1e,0x4a,0x56,0x2b,0x52}}, // \xe5\x92\xb3
+{0x54b8,{0x40,0x3e,0x6a,0x6a,0x42,0x3f,0x52}}, // \xe5\x92\xb8
+{0x54bc,{0x78,0x0f,0x79,0x5f,0x7b,0x0f,0x78}}, // \xe5\x92\xbc
+{0x54bd,{0x1e,0x12,0x7f,0x55,0x4f,0x55,0x7f}}, // \xe5\x92\xbd
+{0x54be,{0x1e,0x1e,0x28,0x1a,0x6f,0x5a,0x49}}, // \xe5\x92\xbe
+{0x54c0,{0x22,0x2e,0x7a,0x4b,0x1a,0x2e,0x52}}, // \xe5\x93\x80
+{0x54c1,{0x70,0x57,0x75,0x05,0x75,0x57,0x70}}, // \xe5\x93\x81
+{0x54c2,{0x1e,0x12,0x7d,0x5f,0x45,0x5f,0x7d}}, // \xe5\x93\x82
+{0x54c4,{0x1e,0x1e,0x52,0x1f,0x12,0x1f,0x52}}, // \xe5\x93\x84
+{0x54c7,{0x1e,0x1e,0x48,0x5a,0x7f,0x5a,0x48}}, // \xe5\x93\x87
+{0x54c8,{0x1e,0x1e,0x04,0x72,0x55,0x76,0x04}}, // \xe5\x93\x88
+{0x54c9,{0x08,0x6a,0x6f,0x0a,0x4f,0x38,0x5a}}, // \xe5\x93\x89
+{0x54d8,{0x1e,0x1e,0x0a,0x7d,0x00,0x45,0x7d}}, // \xe5\x93\x98
+{0x54e1,{0x40,0x7c,0x2f,0x2d,0x2f,0x7c,0x40}}, // \xe5\x93\xa1
+{0x54e2,{0x1e,0x1e,0x55,0x3d,0x17,0x7d,0x15}}, // \xe5\x93\xa2
+{0x54e5,{0x09,0x7f,0x5d,0x7f,0x09,0x7f,0x09}}, // \xe5\x93\xa5
+{0x54e6,{0x1e,0x1e,0x26,0x7e,0x25,0x3f,0x55}}, // \xe5\x93\xa6
+{0x54e8,{0x1e,0x12,0x1e,0x7d,0x14,0x57,0x7d}}, // \xe5\x93\xa8
+{0x54e9,{0x1e,0x12,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe5\x93\xa9
+{0x54ed,{0x57,0x55,0x57,0x38,0x57,0x5d,0x57}}, // \xe5\x93\xad
+{0x54ee,{0x1e,0x1e,0x28,0x1a,0x2f,0x7a,0x29}}, // \xe5\x93\xae
+{0x54f2,{0x0a,0x7f,0x50,0x5e,0x56,0x7d,0x04}}, // \xe5\x93\xb2
+{0x54fa,{0x1e,0x12,0x7e,0x2a,0x7f,0x2a,0x7b}}, // \xe5\x93\xba
+{0x54fd,{0x1e,0x1e,0x41,0x57,0x3f,0x47,0x41}}, // \xe5\x93\xbd
+{0x5504,{0x1e,0x12,0x1e,0x5f,0x15,0x15,0x5f}}, // \xe5\x94\x84
+{0x5506,{0x1e,0x1e,0x2a,0x57,0x32,0x5e,0x4b}}, // \xe5\x94\x86
+{0x5507,{0x10,0x0f,0x7d,0x77,0x6f,0x77,0x15}}, // \xe5\x94\x87
+{0x550f,{0x1e,0x1e,0x48,0x2d,0x7a,0x2d,0x68}}, // \xe5\x94\x8f
+{0x5510,{0x40,0x3e,0x12,0x76,0x5f,0x7e,0x0a}}, // \xe5\x94\x90
+{0x5514,{0x1e,0x1e,0x14,0x7d,0x57,0x7d,0x10}}, // \xe5\x94\x94
+{0x5516,{0x1e,0x12,0x5d,0x7f,0x55,0x7f,0x5d}}, // \xe5\x94\x96
+{0x552e,{0x08,0x04,0x7f,0x5a,0x5f,0x7a,0x0a}}, // \xe5\x94\xae
+{0x552f,{0x1e,0x1e,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe5\x94\xaf
+{0x5531,{0x1e,0x12,0x7e,0x57,0x55,0x57,0x7c}}, // \xe5\x94\xb1
+{0x5533,{0x1e,0x1e,0x21,0x5f,0x55,0x3d,0x57}}, // \xe5\x94\xb3
+{0x5538,{0x1e,0x1e,0x64,0x2a,0x4d,0x5e,0x64}}, // \xe5\x94\xb8
+{0x5539,{0x1e,0x1e,0x62,0x1f,0x7a,0x29,0x52}}, // \xe5\x94\xb9
+{0x553e,{0x1e,0x1e,0x54,0x5d,0x77,0x5d,0x54}}, // \xe5\x94\xbe
+{0x5540,{0x1e,0x52,0x3f,0x41,0x55,0x7f,0x55}}, // \xe5\x95\x80
+{0x5544,{0x1e,0x1e,0x29,0x57,0x7d,0x19,0x25}}, // \xe5\x95\x84
+{0x5545,{0x1e,0x1e,0x20,0x3c,0x77,0x3e,0x22}}, // \xe5\x95\x85
+{0x5546,{0x7a,0x2a,0x1e,0x6b,0x7a,0x2e,0x7a}}, // \xe5\x95\x86
+{0x554c,{0x1e,0x1e,0x46,0x56,0x73,0x56,0x46}}, // \xe5\x95\x8c
+{0x554f,{0x7f,0x05,0x77,0x50,0x77,0x05,0x7f}}, // \xe5\x95\x8f
+{0x5553,{0x09,0x77,0x55,0x57,0x5a,0x75,0x0b}}, // \xe5\x95\x93
+{0x5556,{0x1e,0x1e,0x55,0x22,0x19,0x22,0x55}}, // \xe5\x95\x96
+{0x5557,{0x1e,0x1e,0x70,0x6a,0x41,0x6d,0x7b}}, // \xe5\x95\x97
+{0x555c,{0x1e,0x12,0x5d,0x2b,0x5d,0x2b,0x5d}}, // \xe5\x95\x9c
+{0x555d,{0x1e,0x5e,0x25,0x7f,0x15,0x2e,0x4e}}, // \xe5\x95\x9d
+{0x5563,{0x1e,0x1e,0x33,0x3e,0x2a,0x7f,0x1f}}, // \xe5\x95\xa3
+{0x557b,{0x1a,0x6a,0x7e,0x6b,0x7a,0x6e,0x1a}}, // \xe5\x95\xbb
+{0x557c,{0x1e,0x1e,0x1a,0x6e,0x3b,0x6e,0x1a}}, // \xe5\x95\xbc
+{0x557e,{0x1e,0x1e,0x35,0x7f,0x4c,0x3f,0x44}}, // \xe5\x95\xbe
+{0x5580,{0x1e,0x1e,0x26,0x6a,0x57,0x6e,0x26}}, // \xe5\x96\x80
+{0x5583,{0x1e,0x1e,0x7a,0x2a,0x77,0x2a,0x7a}}, // \xe5\x96\x83
+{0x5584,{0x2a,0x7a,0x6b,0x7e,0x6a,0x7b,0x2a}}, // \xe5\x96\x84
+{0x5587,{0x1e,0x52,0x2e,0x7f,0x2a,0x4e,0x7f}}, // \xe5\x96\x87
+{0x5589,{0x1e,0x12,0x7f,0x54,0x5d,0x37,0x54}}, // \xe5\x96\x89
+{0x558a,{0x1e,0x52,0x3e,0x6a,0x6a,0x3f,0x52}}, // \xe5\x96\x8a
+{0x558b,{0x1e,0x12,0x5f,0x32,0x77,0x36,0x57}}, // \xe5\x96\x8b
+{0x5598,{0x1e,0x1e,0x6b,0x3a,0x6b,0x2a,0x6b}}, // \xe5\x96\x98
+{0x5599,{0x1e,0x1e,0x2c,0x56,0x7d,0x27,0x55}}, // \xe5\x96\x99
+{0x559a,{0x1e,0x1e,0x52,0x5d,0x3d,0x5f,0x50}}, // \xe5\x96\x9a
+{0x559c,{0x12,0x76,0x5e,0x57,0x5e,0x76,0x12}}, // \xe5\x96\x9c
+{0x559d,{0x1e,0x1e,0x10,0x3f,0x2d,0x4f,0x78}}, // \xe5\x96\x9d
+{0x559e,{0x1e,0x12,0x7e,0x2b,0x0e,0x7f,0x1f}}, // \xe5\x96\x9e
+{0x559f,{0x1e,0x12,0x1f,0x7d,0x2f,0x7d,0x0f}}, // \xe5\x96\x9f
+{0x55a7,{0x1e,0x1e,0x46,0x72,0x57,0x76,0x46}}, // \xe5\x96\xa7
+{0x55a8,{0x1e,0x1e,0x5a,0x2e,0x0b,0x6e,0x5a}}, // \xe5\x96\xa8
+{0x55a9,{0x1e,0x1e,0x75,0x33,0x75,0x26,0x54}}, // \xe5\x96\xa9
+{0x55aa,{0x52,0x36,0x76,0x5f,0x32,0x56,0x56}}, // \xe5\x96\xaa
+{0x55ab,{0x1e,0x1e,0x4a,0x5f,0x3a,0x57,0x4f}}, // \xe5\x96\xab
+{0x55ac,{0x7a,0x1a,0x77,0x5b,0x77,0x1a,0x7a}}, // \xe5\x96\xac
+{0x55ae,{0x27,0x3d,0x37,0x7c,0x37,0x3d,0x27}}, // \xe5\x96\xae
+{0x55b0,{0x1e,0x1e,0x44,0x7a,0x5d,0x22,0x54}}, // \xe5\x96\xb0
+{0x55b6,{0x06,0x63,0x6e,0x7b,0x6e,0x63,0x06}}, // \xe5\x96\xb6
+{0x55c4,{0x1e,0x1e,0x51,0x5f,0x2f,0x5f,0x41}}, // \xe5\x97\x84
+{0x55c5,{0x1e,0x1e,0x50,0x5e,0x3b,0x5e,0x50}}, // \xe5\x97\x85
+{0x55c7,{0x1a,0x76,0x7a,0x5f,0x7a,0x76,0x1a}}, // \xe5\x97\x87
+{0x55d4,{0x1e,0x1e,0x58,0x13,0x1e,0x1e,0x52}}, // \xe5\x97\x94
+{0x55da,{0x1e,0x1e,0x40,0x1e,0x5b,0x1e,0x70}}, // \xe5\x97\x9a
+{0x55dc,{0x1e,0x1e,0x14,0x6e,0x7f,0x76,0x15}}, // \xe5\x97\x9c
+{0x55df,{0x1e,0x1e,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe5\x97\x9f
+{0x55e3,{0x78,0x3b,0x1b,0x78,0x35,0x35,0x7f}}, // \xe5\x97\xa3
+{0x55e4,{0x1e,0x1e,0x4b,0x5a,0x7f,0x5a,0x6b}}, // \xe5\x97\xa4
+{0x55f7,{0x1e,0x1e,0x4a,0x3f,0x6a,0x3f,0x5e}}, // \xe5\x97\xb7
+{0x55f9,{0x1e,0x1e,0x65,0x52,0x5e,0x7f,0x52}}, // \xe5\x97\xb9
+{0x55fd,{0x1e,0x52,0x2e,0x7f,0x4e,0x3b,0x46}}, // \xe5\x97\xbd
+{0x55fe,{0x1e,0x1e,0x62,0x1f,0x7a,0x3f,0x56}}, // \xe5\x97\xbe
+{0x5606,{0x1e,0x12,0x5e,0x5b,0x3e,0x5b,0x5e}}, // \xe5\x98\x86
+{0x5609,{0x52,0x36,0x5e,0x77,0x7e,0x56,0x72}}, // \xe5\x98\x89
+{0x5614,{0x1e,0x12,0x7f,0x71,0x47,0x77,0x71}}, // \xe5\x98\x94
+{0x5616,{0x1e,0x1e,0x48,0x3a,0x3f,0x3a,0x48}}, // \xe5\x98\x96
+{0x5617,{0x06,0x7b,0x56,0x57,0x56,0x73,0x16}}, // \xe5\x98\x97
+{0x5618,{0x1e,0x52,0x3e,0x64,0x4f,0x6a,0x4a}}, // \xe5\x98\x98
+{0x561b,{0x5e,0x3e,0x3a,0x7e,0x3b,0x7e,0x3a}}, // \xe5\x98\x9b
+{0x5629,{0x1e,0x1e,0x2a,0x3f,0x7e,0x3f,0x2a}}, // \xe5\x98\xa9
+{0x562f,{0x1e,0x5e,0x38,0x6a,0x07,0x6e,0x74}}, // \xe5\x98\xaf
+{0x5631,{0x1e,0x52,0x3f,0x73,0x5b,0x3f,0x73}}, // \xe5\x98\xb1
+{0x5632,{0x1e,0x12,0x2d,0x7f,0x3f,0x15,0x7f}}, // \xe5\x98\xb2
+{0x5634,{0x1e,0x1e,0x4f,0x3a,0x38,0x7f,0x0a}}, // \xe5\x98\xb4
+{0x5636,{0x1e,0x12,0x5f,0x1a,0x5f,0x3e,0x79}}, // \xe5\x98\xb6
+{0x5638,{0x1e,0x1e,0x6b,0x3e,0x6a,0x3e,0x6a}}, // \xe5\x98\xb8
+{0x5642,{0x1e,0x12,0x1e,0x37,0x52,0x77,0x1e}}, // \xe5\x99\x82
+{0x564c,{0x1e,0x12,0x1e,0x7b,0x5e,0x7b,0x0e}}, // \xe5\x99\x8c
+{0x564e,{0x1e,0x1e,0x5a,0x6a,0x5f,0x6a,0x5a}}, // \xe5\x99\x8e
+{0x5650,{0x14,0x77,0x77,0x1c,0x77,0x77,0x14}}, // \xe5\x99\x90
+{0x565b,{0x1e,0x12,0x7e,0x6f,0x54,0x6f,0x7a}}, // \xe5\x99\x9b
+{0x5664,{0x1e,0x1e,0x52,0x1f,0x78,0x1a,0x57}}, // \xe5\x99\xa4
+{0x5668,{0x28,0x6b,0x6b,0x1c,0x6b,0x6b,0x28}}, // \xe5\x99\xa8
+{0x566a,{0x1e,0x12,0x5e,0x37,0x7d,0x37,0x5c}}, // \xe5\x99\xaa
+{0x566b,{0x1e,0x1e,0x6a,0x3e,0x5b,0x5e,0x6a}}, // \xe5\x99\xab
+{0x566c,{0x1e,0x1e,0x6b,0x5e,0x78,0x5b,0x6e}}, // \xe5\x99\xac
+{0x5674,{0x1e,0x1e,0x4a,0x3e,0x2b,0x3e,0x4a}}, // \xe5\x99\xb4
+{0x5678,{0x1e,0x12,0x3f,0x2a,0x4d,0x1f,0x5d}}, // \xe5\x99\xb8
+{0x567a,{0x1e,0x5e,0x36,0x7b,0x3e,0x0a,0x79}}, // \xe5\x99\xba
+{0x5680,{0x1e,0x12,0x1e,0x56,0x7f,0x1a,0x16}}, // \xe5\x9a\x80
+{0x5686,{0x1e,0x1e,0x72,0x1f,0x56,0x1f,0x72}}, // \xe5\x9a\x86
+{0x5687,{0x1e,0x5e,0x3a,0x7f,0x4a,0x3f,0x7a}}, // \xe5\x9a\x87
+{0x568a,{0x1e,0x1e,0x38,0x6e,0x3b,0x6e,0x38}}, // \xe5\x9a\x8a
+{0x568f,{0x1e,0x1e,0x4c,0x2e,0x7f,0x5e,0x5c}}, // \xe5\x9a\x8f
+{0x5694,{0x1e,0x1e,0x4c,0x2e,0x7f,0x5e,0x4c}}, // \xe5\x9a\x94
+{0x56a0,{0x1e,0x1e,0x26,0x55,0x6a,0x57,0x7f}}, // \xe5\x9a\xa0
+{0x56a2,{0x5a,0x3e,0x7a,0x5f,0x3a,0x5e,0x5a}}, // \xe5\x9a\xa2
+{0x56a5,{0x1e,0x1e,0x52,0x1f,0x56,0x1f,0x52}}, // \xe5\x9a\xa5
+{0x56ae,{0x7a,0x15,0x7f,0x5b,0x70,0x1f,0x77}}, // \xe5\x9a\xae
+{0x56b4,{0x40,0x3f,0x2f,0x7a,0x53,0x2b,0x5a}}, // \xe5\x9a\xb4
+{0x56b6,{0x1e,0x1e,0x57,0x7b,0x54,0x33,0x57}}, // \xe5\x9a\xb6
+{0x56bc,{0x1e,0x12,0x7e,0x2d,0x0f,0x5d,0x7e}}, // \xe5\x9a\xbc
+{0x56c0,{0x1e,0x12,0x2d,0x7f,0x2e,0x5f,0x7e}}, // \xe5\x9b\x80
+{0x56c1,{0x1e,0x12,0x3e,0x75,0x27,0x3f,0x75}}, // \xe5\x9b\x81
+{0x56c2,{0x24,0x67,0x7f,0x1c,0x7f,0x67,0x24}}, // \xe5\x9b\x82
+{0x56c3,{0x1e,0x5e,0x36,0x7b,0x36,0x7e,0x55}}, // \xe5\x9b\x83
+{0x56c8,{0x1e,0x1e,0x52,0x7f,0x5a,0x37,0x5a}}, // \xe5\x9b\x88
+{0x56ce,{0x1e,0x5f,0x15,0x5f,0x02,0x6d,0x6e}}, // \xe5\x9b\x8e
+{0x56d1,{0x1e,0x52,0x3f,0x5b,0x7f,0x3b,0x77}}, // \xe5\x9b\x91
+{0x56d3,{0x1e,0x1e,0x0a,0x7f,0x5e,0x6b,0x7f}}, // \xe5\x9b\x93
+{0x56d7,{0x7f,0x41,0x41,0x41,0x41,0x41,0x7f}}, // \xe5\x9b\x97
+{0x56d8,{0x7f,0x01,0x3f,0x2b,0x2f,0x41,0x7f}}, // \xe5\x9b\x98
+{0x56da,{0x7f,0x61,0x51,0x4f,0x51,0x61,0x7f}}, // \xe5\x9b\x9a
+{0x56db,{0x7f,0x51,0x4f,0x41,0x4f,0x49,0x7f}}, // \xe5\x9b\x9b
+{0x56de,{0x7f,0x41,0x5d,0x55,0x5d,0x41,0x7f}}, // \xe5\x9b\x9e
+{0x56e0,{0x7f,0x65,0x55,0x4f,0x55,0x65,0x7f}}, // \xe5\x9b\xa0
+{0x56e3,{0x7f,0x45,0x4d,0x65,0x7f,0x45,0x7f}}, // \xe5\x9b\xa3
+{0x56ee,{0x7f,0x49,0x7d,0x43,0x7f,0x65,0x7f}}, // \xe5\x9b\xae
+{0x56f0,{0x7f,0x55,0x4d,0x7f,0x4d,0x55,0x7f}}, // \xe5\x9b\xb0
+{0x56f2,{0x7f,0x55,0x7f,0x55,0x7f,0x55,0x7f}}, // \xe5\x9b\xb2
+{0x56f3,{0x7f,0x43,0x69,0x53,0x59,0x65,0x7f}}, // \xe5\x9b\xb3
+{0x56f9,{0x7f,0x49,0x4d,0x7b,0x4d,0x59,0x7f}}, // \xe5\x9b\xb9
+{0x56fa,{0x7f,0x41,0x75,0x6f,0x75,0x41,0x7f}}, // \xe5\x9b\xba
+{0x56fd,{0x7f,0x41,0x6b,0x7f,0x6b,0x51,0x7f}}, // \xe5\x9b\xbd
+{0x56ff,{0x7f,0x55,0x4f,0x75,0x75,0x41,0x7f}}, // \xe5\x9b\xbf
+{0x5700,{0x7f,0x45,0x6b,0x59,0x7f,0x4d,0x7f}}, // \xe5\x9c\x80
+{0x5703,{0x7f,0x45,0x7d,0x5f,0x7d,0x47,0x7f}}, // \xe5\x9c\x83
+{0x5704,{0x7f,0x55,0x7f,0x77,0x7b,0x51,0x7f}}, // \xe5\x9c\x84
+{0x5708,{0x7f,0x55,0x7f,0x7d,0x6f,0x55,0x7f}}, // \xe5\x9c\x88
+{0x5709,{0x7f,0x55,0x5d,0x77,0x5d,0x55,0x7f}}, // \xe5\x9c\x89
+{0x570b,{0x7f,0x6d,0x6d,0x45,0x5f,0x65,0x7f}}, // \xe5\x9c\x8b
+{0x570d,{0x7f,0x55,0x5d,0x57,0x7f,0x55,0x7f}}, // \xe5\x9c\x8d
+{0x570f,{0x7f,0x55,0x4f,0x7d,0x6f,0x55,0x7f}}, // \xe5\x9c\x8f
+{0x5712,{0x7f,0x65,0x5f,0x77,0x5f,0x65,0x7f}}, // \xe5\x9c\x92
+{0x5713,{0x7f,0x61,0x5f,0x5b,0x5f,0x61,0x7f}}, // \xe5\x9c\x93
+{0x5716,{0x7f,0x49,0x7f,0x6d,0x7f,0x49,0x7f}}, // \xe5\x9c\x96
+{0x5718,{0x7f,0x55,0x5d,0x5f,0x7d,0x55,0x7f}}, // \xe5\x9c\x98
+{0x571c,{0x7f,0x55,0x7f,0x6f,0x5f,0x65,0x7f}}, // \xe5\x9c\x9c
+{0x571f,{0x40,0x44,0x44,0x7f,0x44,0x44,0x40}}, // \xe5\x9c\x9f
+{0x5726,{0x24,0x3f,0x44,0x31,0x0f,0x30,0x40}}, // \xe5\x9c\xa6
+{0x5727,{0x40,0x3f,0x41,0x49,0x7f,0x49,0x41}}, // \xe5\x9c\xa7
+{0x5728,{0x12,0x7a,0x47,0x4a,0x7e,0x4a,0x42}}, // \xe5\x9c\xa8
+{0x572d,{0x48,0x5a,0x5a,0x7f,0x5a,0x5a,0x48}}, // \xe5\x9c\xad
+{0x5730,{0x24,0x3f,0x08,0x7e,0x44,0x5f,0x6c}}, // \xe5\x9c\xb0
+{0x5737,{0x24,0x3f,0x14,0x01,0x7f,0x05,0x09}}, // \xe5\x9c\xb7
+{0x5738,{0x24,0x3f,0x7c,0x40,0x7f,0x40,0x7c}}, // \xe5\x9c\xb8
+{0x573b,{0x24,0x3f,0x40,0x3e,0x0a,0x79,0x08}}, // \xe5\x9c\xbb
+{0x5740,{0x24,0x3f,0x40,0x7c,0x40,0x7f,0x44}}, // \xe5\x9d\x80
+{0x5742,{0x24,0x3f,0x24,0x5f,0x5d,0x25,0x5d}}, // \xe5\x9d\x82
+{0x5747,{0x24,0x3f,0x14,0x23,0x2a,0x52,0x7e}}, // \xe5\x9d\x87
+{0x574a,{0x24,0x3f,0x14,0x42,0x3e,0x4b,0x7a}}, // \xe5\x9d\x8a
+{0x574e,{0x24,0x3f,0x44,0x23,0x1e,0x22,0x46}}, // \xe5\x9d\x8e
+{0x574f,{0x24,0x3f,0x11,0x09,0x7f,0x09,0x11}}, // \xe5\x9d\x8f
+{0x5750,{0x44,0x53,0x54,0x7f,0x54,0x53,0x44}}, // \xe5\x9d\x90
+{0x5751,{0x24,0x3f,0x42,0x3a,0x0b,0x7a,0x42}}, // \xe5\x9d\x91
+{0x5761,{0x24,0x3f,0x7e,0x5a,0x2f,0x5a,0x46}}, // \xe5\x9d\xa1
+{0x5764,{0x24,0x3f,0x3e,0x2a,0x7f,0x2a,0x3e}}, // \xe5\x9d\xa4
+{0x5766,{0x24,0x3f,0x14,0x5f,0x55,0x55,0x5f}}, // \xe5\x9d\xa6
+{0x5769,{0x24,0x3f,0x02,0x7f,0x4a,0x7f,0x02}}, // \xe5\x9d\xa9
+{0x576a,{0x24,0x3f,0x15,0x11,0x7f,0x11,0x15}}, // \xe5\x9d\xaa
+{0x577f,{0x24,0x3f,0x14,0x7e,0x09,0x42,0x7f}}, // \xe5\x9d\xbf
+{0x5782,{0x54,0x5e,0x56,0x7e,0x55,0x5d,0x54}}, // \xe5\x9e\x82
+{0x5788,{0x44,0x5e,0x51,0x7a,0x53,0x56,0x4b}}, // \xe5\x9e\x88
+{0x5789,{0x24,0x3f,0x04,0x7b,0x5a,0x42,0x5e}}, // \xe5\x9e\x89
+{0x578b,{0x55,0x4f,0x55,0x7f,0x55,0x46,0x5f}}, // \xe5\x9e\x8b
+{0x5793,{0x24,0x3f,0x4a,0x56,0x2b,0x32,0x4a}}, // \xe5\x9e\x93
+{0x57a0,{0x24,0x3f,0x14,0x7f,0x55,0x35,0x5f}}, // \xe5\x9e\xa0
+{0x57a2,{0x24,0x3f,0x40,0x3e,0x0a,0x6a,0x69}}, // \xe5\x9e\xa2
+{0x57a3,{0x24,0x3f,0x41,0x7f,0x6b,0x7f,0x41}}, // \xe5\x9e\xa3
+{0x57a4,{0x24,0x3f,0x45,0x57,0x7d,0x53,0x45}}, // \xe5\x9e\xa4
+{0x57aa,{0x24,0x3f,0x54,0x3d,0x14,0x7d,0x14}}, // \xe5\x9e\xaa
+{0x57b0,{0x24,0x3f,0x14,0x08,0x7f,0x1a,0x2a}}, // \xe5\x9e\xb0
+{0x57b3,{0x24,0x3f,0x0a,0x7d,0x00,0x45,0x7d}}, // \xe5\x9e\xb3
+{0x57c0,{0x54,0x5e,0x66,0x7e,0x65,0x5d,0x54}}, // \xe5\x9f\x80
+{0x57c3,{0x24,0x3f,0x54,0x5e,0x35,0x54,0x56}}, // \xe5\x9f\x83
+{0x57c6,{0x24,0x3f,0x42,0x3e,0x1d,0x57,0x7c}}, // \xe5\x9f\x86
+{0x57cb,{0x24,0x3f,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe5\x9f\x8b
+{0x57ce,{0x24,0x3f,0x7e,0x2a,0x5a,0x3f,0x52}}, // \xe5\x9f\x8e
+{0x57d2,{0x24,0x3f,0x0a,0x29,0x4b,0x7d,0x0a}}, // \xe5\x9f\x92
+{0x57d3,{0x24,0x3f,0x08,0x2a,0x4d,0x7b,0x08}}, // \xe5\x9f\x93
+{0x57d4,{0x24,0x3f,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe5\x9f\x94
+{0x57d6,{0x24,0x3f,0x12,0x7b,0x02,0x7f,0x52}}, // \xe5\x9f\x96
+{0x57dc,{0x4a,0x56,0x5f,0x7a,0x56,0x5f,0x4a}}, // \xe5\x9f\x9c
+{0x57df,{0x24,0x3f,0x5a,0x5a,0x22,0x3f,0x52}}, // \xe5\x9f\x9f
+{0x57e0,{0x24,0x3f,0x24,0x3e,0x6b,0x2e,0x38}}, // \xe5\x9f\xa0
+{0x57e3,{0x24,0x3f,0x32,0x2e,0x73,0x2e,0x32}}, // \xe5\x9f\xa3
+{0x57f4,{0x24,0x3f,0x14,0x7a,0x42,0x5f,0x5a}}, // \xe5\x9f\xb4
+{0x57f7,{0x14,0x3e,0x77,0x3e,0x13,0x7e,0x40}}, // \xe5\x9f\xb7
+{0x57f9,{0x24,0x3f,0x0a,0x6e,0x6b,0x6e,0x0a}}, // \xe5\x9f\xb9
+{0x57fa,{0x28,0x1a,0x4f,0x6a,0x4f,0x1a,0x28}}, // \xe5\x9f\xba
+{0x57fc,{0x24,0x3f,0x12,0x5a,0x17,0x7a,0x12}}, // \xe5\x9f\xbc
+{0x5800,{0x24,0x3f,0x1f,0x65,0x4d,0x7d,0x6f}}, // \xe5\xa0\x80
+{0x5802,{0x46,0x53,0x5e,0x7b,0x5e,0x53,0x46}}, // \xe5\xa0\x82
+{0x5805,{0x47,0x57,0x55,0x78,0x5b,0x55,0x4b}}, // \xe5\xa0\x85
+{0x5806,{0x24,0x3f,0x14,0x7f,0x4a,0x7f,0x4a}}, // \xe5\xa0\x86
+{0x580a,{0x51,0x5f,0x5b,0x71,0x5b,0x5f,0x51}}, // \xe5\xa0\x8a
+{0x580b,{0x24,0x7f,0x3f,0x55,0x3f,0x55,0x7f}}, // \xe5\xa0\x8b
+{0x5815,{0x5f,0x4b,0x40,0x6a,0x47,0x5a,0x5a}}, // \xe5\xa0\x95
+{0x5819,{0x24,0x3f,0x14,0x5d,0x5f,0x7f,0x5d}}, // \xe5\xa0\x99
+{0x581d,{0x24,0x3f,0x14,0x78,0x6f,0x09,0x7f}}, // \xe5\xa0\x9d
+{0x5821,{0x44,0x5e,0x55,0x6f,0x5d,0x4f,0x54}}, // \xe5\xa0\xa1
+{0x5824,{0x24,0x3f,0x44,0x34,0x47,0x7f,0x54}}, // \xe5\xa0\xa4
+{0x582a,{0x24,0x3f,0x72,0x5f,0x72,0x5f,0x52}}, // \xe5\xa0\xaa
+{0x582f,{0x54,0x5e,0x3e,0x17,0x7e,0x5e,0x54}}, // \xe5\xa0\xaf
+{0x5830,{0x24,0x3f,0x7f,0x49,0x6f,0x57,0x69}}, // \xe5\xa0\xb0
+{0x5831,{0x14,0x3e,0x77,0x3e,0x5f,0x29,0x5b}}, // \xe5\xa0\xb1
+{0x5834,{0x24,0x3f,0x24,0x5f,0x35,0x57,0x74}}, // \xe5\xa0\xb4
+{0x5835,{0x24,0x3f,0x28,0x1a,0x6f,0x6a,0x69}}, // \xe5\xa0\xb5
+{0x583a,{0x24,0x3f,0x2f,0x75,0x1f,0x75,0x2f}}, // \xe5\xa0\xba
+{0x583d,{0x24,0x3f,0x00,0x77,0x47,0x7d,0x57}}, // \xe5\xa0\xbd
+{0x5840,{0x24,0x3f,0x3f,0x6d,0x35,0x7d,0x27}}, // \xe5\xa1\x80
+{0x5841,{0x28,0x57,0x45,0x67,0x45,0x57,0x28}}, // \xe5\xa1\x81
+{0x584a,{0x24,0x3f,0x5e,0x2a,0x7f,0x6a,0x5e}}, // \xe5\xa1\x8a
+{0x584b,{0x4d,0x46,0x55,0x7c,0x55,0x46,0x4d}}, // \xe5\xa1\x8b
+{0x5851,{0x57,0x5e,0x4b,0x6e,0x5f,0x45,0x5f}}, // \xe5\xa1\x91
+{0x5852,{0x24,0x3f,0x3e,0x6a,0x2f,0x7a,0x28}}, // \xe5\xa1\x92
+{0x5854,{0x24,0x3f,0x12,0x7b,0x56,0x7b,0x12}}, // \xe5\xa1\x94
+{0x5857,{0x55,0x40,0x54,0x76,0x5d,0x46,0x54}}, // \xe5\xa1\x97
+{0x5858,{0x24,0x3f,0x7e,0x12,0x77,0x5e,0x6a}}, // \xe5\xa1\x98
+{0x5859,{0x24,0x3f,0x72,0x1e,0x5b,0x1e,0x72}}, // \xe5\xa1\x99
+{0x585a,{0x24,0x3f,0x2b,0x5d,0x7d,0x35,0x4b}}, // \xe5\xa1\x9a
+{0x585e,{0x56,0x3a,0x5e,0x7b,0x5e,0x3a,0x56}}, // \xe5\xa1\x9e
+{0x5862,{0x24,0x3f,0x40,0x1e,0x5b,0x1e,0x70}}, // \xe5\xa1\xa2
+{0x5869,{0x24,0x3f,0x44,0x6f,0x6a,0x6e,0x42}}, // \xe5\xa1\xa9
+{0x586b,{0x24,0x3f,0x52,0x1e,0x1f,0x1e,0x52}}, // \xe5\xa1\xab
+{0x5870,{0x55,0x40,0x4b,0x7e,0x5e,0x5e,0x4a}}, // \xe5\xa1\xb0
+{0x5872,{0x24,0x3f,0x24,0x5f,0x3a,0x5e,0x72}}, // \xe5\xa1\xb2
+{0x5875,{0x40,0x3e,0x5a,0x56,0x67,0x5e,0x52}}, // \xe5\xa1\xb5
+{0x5879,{0x4a,0x4e,0x5f,0x6a,0x47,0x5d,0x45}}, // \xe5\xa1\xb9
+{0x587e,{0x52,0x4e,0x5b,0x6e,0x5f,0x5e,0x50}}, // \xe5\xa1\xbe
+{0x5883,{0x24,0x3f,0x4a,0x3e,0x3b,0x7e,0x4a}}, // \xe5\xa2\x83
+{0x5885,{0x57,0x5f,0x57,0x60,0x55,0x5f,0x4d}}, // \xe5\xa2\x85
+{0x5893,{0x2a,0x1a,0x4f,0x6e,0x4f,0x1a,0x2a}}, // \xe5\xa2\x93
+{0x5897,{0x24,0x3f,0x0e,0x7b,0x5e,0x7b,0x0e}}, // \xe5\xa2\x97
+{0x589c,{0x5f,0x4b,0x4a,0x77,0x5e,0x4b,0x56}}, // \xe5\xa2\x9c
+{0x589f,{0x24,0x3f,0x40,0x3c,0x44,0x6f,0x4a}}, // \xe5\xa2\x9f
+{0x58a8,{0x54,0x47,0x55,0x67,0x55,0x47,0x54}}, // \xe5\xa2\xa8
+{0x58ab,{0x24,0x3f,0x1e,0x3d,0x54,0x7d,0x1e}}, // \xe5\xa2\xab
+{0x58ae,{0x5f,0x4b,0x40,0x6a,0x5f,0x5a,0x5a}}, // \xe5\xa2\xae
+{0x58b3,{0x24,0x3f,0x4a,0x3e,0x2b,0x3e,0x4a}}, // \xe5\xa2\xb3
+{0x58b8,{0x24,0x3f,0x52,0x37,0x7e,0x7f,0x12}}, // \xe5\xa2\xb8
+{0x58b9,{0x24,0x3f,0x7f,0x03,0x38,0x3b,0x7f}}, // \xe5\xa2\xb9
+{0x58ba,{0x24,0x3f,0x50,0x5e,0x3f,0x56,0x5e}}, // \xe5\xa2\xba
+{0x58bb,{0x24,0x3f,0x7a,0x76,0x5b,0x76,0x7a}}, // \xe5\xa2\xbb
+{0x58be,{0x4a,0x56,0x5d,0x62,0x5f,0x4b,0x54}}, // \xe5\xa2\xbe
+{0x58c1,{0x48,0x5f,0x5b,0x6a,0x4e,0x5b,0x4e}}, // \xe5\xa3\x81
+{0x58c5,{0x56,0x4a,0x42,0x6b,0x5e,0x5e,0x56}}, // \xe5\xa3\x85
+{0x58c7,{0x24,0x3f,0x4e,0x7e,0x5b,0x7e,0x4e}}, // \xe5\xa3\x87
+{0x58ca,{0x24,0x3f,0x32,0x7e,0x5f,0x3a,0x5e}}, // \xe5\xa3\x8a
+{0x58cc,{0x24,0x3f,0x1a,0x7e,0x53,0x3e,0x5a}}, // \xe5\xa3\x8c
+{0x58d1,{0x56,0x5b,0x5f,0x6a,0x57,0x49,0x57}}, // \xe5\xa3\x91
+{0x58d3,{0x50,0x4f,0x5b,0x7b,0x55,0x4f,0x55}}, // \xe5\xa3\x93
+{0x58d5,{0x24,0x3f,0x2a,0x5e,0x7b,0x2e,0x5a}}, // \xe5\xa3\x95
+{0x58d7,{0x24,0x3f,0x50,0x6a,0x7f,0x6e,0x54}}, // \xe5\xa3\x97
+{0x58d8,{0x58,0x5f,0x5d,0x67,0x5d,0x5f,0x58}}, // \xe5\xa3\x98
+{0x58d9,{0x24,0x3f,0x3e,0x4a,0x3f,0x3e,0x4a}}, // \xe5\xa3\x99
+{0x58dc,{0x24,0x3f,0x4c,0x6f,0x55,0x3f,0x4c}}, // \xe5\xa3\x9c
+{0x58de,{0x24,0x3f,0x2a,0x6e,0x5f,0x2a,0x4e}}, // \xe5\xa3\x9e
+{0x58df,{0x4a,0x5e,0x4b,0x7e,0x42,0x5b,0x55}}, // \xe5\xa3\x9f
+{0x58e4,{0x24,0x3f,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe5\xa3\xa4
+{0x58e5,{0x24,0x3f,0x24,0x5f,0x4b,0x63,0x49}}, // \xe5\xa3\xa5
+{0x58eb,{0x04,0x44,0x44,0x7f,0x44,0x44,0x04}}, // \xe5\xa3\xab
+{0x58ec,{0x08,0x4a,0x4a,0x7e,0x49,0x49,0x08}}, // \xe5\xa3\xac
+{0x58ee,{0x14,0x7f,0x04,0x44,0x7f,0x44,0x04}}, // \xe5\xa3\xae
+{0x58ef,{0x57,0x34,0x7f,0x04,0x44,0x7f,0x44}}, // \xe5\xa3\xaf
+{0x58f0,{0x42,0x3a,0x2a,0x3f,0x2a,0x3a,0x02}}, // \xe5\xa3\xb0
+{0x58f1,{0x1a,0x0a,0x7a,0x5f,0x5a,0x4a,0x1a}}, // \xe5\xa3\xb1
+{0x58f2,{0x5a,0x4a,0x2a,0x0f,0x6a,0x4a,0x5a}}, // \xe5\xa3\xb2
+{0x58f7,{0x5a,0x6a,0x7a,0x6f,0x7a,0x6a,0x5a}}, // \xe5\xa3\xb7
+{0x58f9,{0x5a,0x4a,0x7a,0x5f,0x7a,0x4a,0x5a}}, // \xe5\xa3\xb9
+{0x58fa,{0x5a,0x6a,0x7a,0x4f,0x7a,0x6a,0x5a}}, // \xe5\xa3\xba
+{0x58fb,{0x24,0x3f,0x14,0x09,0x77,0x2d,0x7b}}, // \xe5\xa3\xbb
+{0x58fc,{0x5a,0x6a,0x7a,0x5f,0x7a,0x6a,0x5a}}, // \xe5\xa3\xbc
+{0x58fd,{0x14,0x76,0x76,0x1f,0x56,0x76,0x14}}, // \xe5\xa3\xbd
+{0x5902,{0x48,0x44,0x2b,0x12,0x2a,0x46,0x40}}, // \xe5\xa4\x82
+{0x5909,{0x4a,0x52,0x5e,0x2b,0x5e,0x42,0x4a}}, // \xe5\xa4\x89
+{0x590a,{0x4a,0x44,0x2b,0x12,0x2a,0x46,0x40}}, // \xe5\xa4\x8a
+{0x590f,{0x41,0x51,0x5f,0x2f,0x5f,0x41,0x41}}, // \xe5\xa4\x8f
+{0x5910,{0x42,0x52,0x5d,0x2f,0x5f,0x4e,0x40}}, // \xe5\xa4\x90
+{0x5915,{0x08,0x48,0x44,0x4b,0x2a,0x12,0x0e}}, // \xe5\xa4\x95
+{0x5916,{0x48,0x47,0x2a,0x1e,0x7f,0x08,0x10}}, // \xe5\xa4\x96
+{0x5918,{0x48,0x47,0x2a,0x1e,0x7f,0x01,0x1f}}, // \xe5\xa4\x98
+{0x5919,{0x40,0x3f,0x53,0x2f,0x1b,0x7f,0x40}}, // \xe5\xa4\x99
+{0x591a,{0x08,0x4a,0x5a,0x55,0x2b,0x28,0x18}}, // \xe5\xa4\x9a
+{0x591b,{0x44,0x54,0x55,0x2d,0x2f,0x1c,0x04}}, // \xe5\xa4\x9b
+{0x591c,{0x12,0x7a,0x06,0x53,0x5e,0x2a,0x5a}}, // \xe5\xa4\x9c
+{0x5922,{0x1a,0x4e,0x5b,0x6e,0x3b,0x0e,0x1a}}, // \xe5\xa4\xa2
+{0x5925,{0x57,0x35,0x7f,0x37,0x52,0x2d,0x1b}}, // \xe5\xa4\xa5
+{0x5927,{0x44,0x44,0x24,0x1f,0x24,0x44,0x44}}, // \xe5\xa4\xa7
+{0x5929,{0x41,0x45,0x25,0x1f,0x25,0x45,0x41}}, // \xe5\xa4\xa9
+{0x592a,{0x44,0x44,0x24,0x5f,0x24,0x44,0x44}}, // \xe5\xa4\xaa
+{0x592b,{0x48,0x4a,0x2a,0x1f,0x2a,0x4a,0x48}}, // \xe5\xa4\xab
+{0x592c,{0x48,0x4a,0x2a,0x1f,0x2a,0x4e,0x48}}, // \xe5\xa4\xac
+{0x592d,{0x48,0x4a,0x2a,0x1e,0x29,0x49,0x48}}, // \xe5\xa4\xad
+{0x592e,{0x48,0x4e,0x2a,0x1f,0x2a,0x4e,0x48}}, // \xe5\xa4\xae
+{0x5931,{0x4c,0x4b,0x2a,0x1f,0x2a,0x4a,0x48}}, // \xe5\xa4\xb1
+{0x5932,{0x2a,0x2a,0x26,0x73,0x26,0x2a,0x2a}}, // \xe5\xa4\xb2
+{0x5937,{0x42,0x5e,0x56,0x3f,0x56,0x76,0x42}}, // \xe5\xa4\xb7
+{0x5938,{0x0a,0x1a,0x16,0x53,0x56,0x7a,0x0a}}, // \xe5\xa4\xb8
+{0x593e,{0x52,0x4e,0x52,0x3f,0x52,0x4e,0x52}}, // \xe5\xa4\xbe
+{0x5944,{0x0a,0x3a,0x36,0x3b,0x76,0x7a,0x4a}}, // \xe5\xa5\x84
+{0x5947,{0x10,0x72,0x5a,0x77,0x1a,0x72,0x10}}, // \xe5\xa5\x87
+{0x5948,{0x4a,0x3a,0x56,0x73,0x16,0x3a,0x4a}}, // \xe5\xa5\x88
+{0x5949,{0x28,0x1a,0x2e,0x7f,0x2e,0x1a,0x28}}, // \xe5\xa5\x89
+{0x594e,{0x4a,0x4a,0x56,0x7b,0x56,0x4a,0x4a}}, // \xe5\xa5\x8e
+{0x594f,{0x28,0x1a,0x4e,0x3f,0x4e,0x1a,0x28}}, // \xe5\xa5\x8f
+{0x5950,{0x52,0x5e,0x5d,0x35,0x5f,0x5c,0x50}}, // \xe5\xa5\x90
+{0x5951,{0x4a,0x5f,0x5a,0x39,0x57,0x59,0x4f}}, // \xe5\xa5\x91
+{0x5954,{0x2a,0x6a,0x36,0x3b,0x76,0x2a,0x2a}}, // \xe5\xa5\x94
+{0x5955,{0x4a,0x52,0x5e,0x33,0x5e,0x52,0x4a}}, // \xe5\xa5\x95
+{0x5957,{0x5a,0x56,0x7e,0x5b,0x52,0x36,0x5a}}, // \xe5\xa5\x97
+{0x5958,{0x4b,0x56,0x5f,0x32,0x5a,0x5f,0x4a}}, // \xe5\xa5\x98
+{0x595a,{0x54,0x53,0x55,0x3b,0x51,0x59,0x52}}, // \xe5\xa5\x9a
+{0x5960,{0x52,0x5e,0x5d,0x34,0x5d,0x5e,0x52}}, // \xe5\xa5\xa0
+{0x5962,{0x4a,0x5a,0x36,0x7b,0x56,0x7a,0x1a}}, // \xe5\xa5\xa2
+{0x5965,{0x50,0x5e,0x5a,0x3f,0x56,0x5e,0x50}}, // \xe5\xa5\xa5
+{0x5967,{0x50,0x5e,0x5e,0x3f,0x56,0x5e,0x50}}, // \xe5\xa5\xa7
+{0x5968,{0x4a,0x5f,0x50,0x35,0x57,0x5d,0x57}}, // \xe5\xa5\xa8
+{0x5969,{0x0a,0x7a,0x66,0x7b,0x5a,0x66,0x6a}}, // \xe5\xa5\xa9
+{0x596a,{0x1a,0x16,0x3e,0x5f,0x7a,0x16,0x1a}}, // \xe5\xa5\xaa
+{0x596c,{0x5b,0x56,0x5f,0x36,0x5d,0x5f,0x54}}, // \xe5\xa5\xac
+{0x596e,{0x0a,0x76,0x5e,0x7f,0x5a,0x76,0x0a}}, // \xe5\xa5\xae
+{0x5973,{0x44,0x54,0x5c,0x27,0x34,0x4c,0x44}}, // \xe5\xa5\xb3
+{0x5974,{0x44,0x5c,0x37,0x2c,0x4d,0x31,0x4f}}, // \xe5\xa5\xb4
+{0x5978,{0x44,0x5c,0x37,0x2c,0x09,0x7f,0x09}}, // \xe5\xa5\xb8
+{0x597d,{0x44,0x5c,0x37,0x2c,0x49,0x7d,0x0b}}, // \xe5\xa5\xbd
+{0x5981,{0x44,0x5c,0x37,0x2c,0x0b,0x52,0x7e}}, // \xe5\xa6\x81
+{0x5982,{0x44,0x5c,0x37,0x2c,0x7e,0x42,0x7e}}, // \xe5\xa6\x82
+{0x5983,{0x44,0x5c,0x37,0x2c,0x79,0x49,0x6f}}, // \xe5\xa6\x83
+{0x5984,{0x52,0x5e,0x7a,0x5b,0x3a,0x5a,0x52}}, // \xe5\xa6\x84
+{0x598a,{0x44,0x5c,0x37,0x2c,0x4a,0x7e,0x49}}, // \xe5\xa6\x8a
+{0x598d,{0x5f,0x3c,0x49,0x3f,0x09,0x7f,0x09}}, // \xe5\xa6\x8d
+{0x5993,{0x44,0x5c,0x37,0x4c,0x5a,0x2f,0x5a}}, // \xe5\xa6\x93
+{0x5996,{0x44,0x5c,0x37,0x2c,0x4a,0x3e,0x49}}, // \xe5\xa6\x96
+{0x5999,{0x5c,0x37,0x2c,0x46,0x5f,0x22,0x14}}, // \xe5\xa6\x99
+{0x599b,{0x54,0x57,0x76,0x5f,0x36,0x57,0x54}}, // \xe5\xa6\x9b
+{0x599d,{0x57,0x34,0x7f,0x44,0x5c,0x37,0x4c}}, // \xe5\xa6\x9d
+{0x59a3,{0x5c,0x37,0x4c,0x7f,0x24,0x7f,0x44}}, // \xe5\xa6\xa3
+{0x59a5,{0x4a,0x4e,0x5a,0x2e,0x39,0x4d,0x49}}, // \xe5\xa6\xa5
+{0x59a8,{0x5c,0x37,0x2c,0x42,0x3e,0x4b,0x7a}}, // \xe5\xa6\xa8
+{0x59ac,{0x5c,0x37,0x2c,0x11,0x7f,0x49,0x79}}, // \xe5\xa6\xac
+{0x59b2,{0x44,0x5c,0x37,0x2c,0x5f,0x55,0x5f}}, // \xe5\xa6\xb2
+{0x59b9,{0x5c,0x37,0x4c,0x2a,0x7f,0x2a,0x48}}, // \xe5\xa6\xb9
+{0x59bb,{0x52,0x5a,0x7a,0x5f,0x3a,0x5e,0x52}}, // \xe5\xa6\xbb
+{0x59be,{0x48,0x5a,0x7e,0x5b,0x3e,0x5a,0x48}}, // \xe5\xa6\xbe
+{0x59c6,{0x5c,0x37,0x2c,0x3f,0x69,0x7f,0x28}}, // \xe5\xa7\x86
+{0x59c9,{0x5c,0x37,0x2c,0x3a,0x0a,0x7f,0x3a}}, // \xe5\xa7\x89
+{0x59cb,{0x44,0x5c,0x37,0x2c,0x6c,0x6b,0x6c}}, // \xe5\xa7\x8b
+{0x59d0,{0x5c,0x37,0x4c,0x7f,0x55,0x7f,0x40}}, // \xe5\xa7\x90
+{0x59d1,{0x44,0x5c,0x37,0x2c,0x74,0x5f,0x74}}, // \xe5\xa7\x91
+{0x59d3,{0x44,0x5c,0x37,0x4c,0x53,0x7f,0x52}}, // \xe5\xa7\x93
+{0x59d4,{0x4a,0x5a,0x77,0x5f,0x37,0x5a,0x4a}}, // \xe5\xa7\x94
+{0x59d9,{0x5f,0x3c,0x7e,0x01,0x4a,0x7e,0x49}}, // \xe5\xa7\x99
+{0x59da,{0x5f,0x3c,0x4a,0x3f,0x00,0x7f,0x4a}}, // \xe5\xa7\x9a
+{0x59dc,{0x52,0x56,0x77,0x5e,0x36,0x57,0x52}}, // \xe5\xa7\x9c
+{0x59e5,{0x5c,0x37,0x2c,0x1a,0x6f,0x5a,0x49}}, // \xe5\xa7\xa5
+{0x59e6,{0x52,0x3a,0x5e,0x3b,0x56,0x3a,0x52}}, // \xe5\xa7\xa6
+{0x59e8,{0x5f,0x3c,0x42,0x5e,0x3f,0x56,0x72}}, // \xe5\xa7\xa8
+{0x59ea,{0x5c,0x37,0x2c,0x45,0x57,0x7d,0x55}}, // \xe5\xa7\xaa
+{0x59eb,{0x5c,0x37,0x2c,0x7f,0x55,0x77,0x5d}}, // \xe5\xa7\xab
+{0x59f6,{0x44,0x5c,0x37,0x2c,0x76,0x55,0x76}}, // \xe5\xa7\xb6
+{0x59fb,{0x5f,0x3c,0x7f,0x55,0x4f,0x55,0x7f}}, // \xe5\xa7\xbb
+{0x59ff,{0x55,0x50,0x74,0x5b,0x36,0x5a,0x56}}, // \xe5\xa7\xbf
+{0x5a01,{0x40,0x3e,0x56,0x2e,0x56,0x3f,0x52}}, // \xe5\xa8\x81
+{0x5a03,{0x44,0x5c,0x37,0x4c,0x5a,0x7f,0x5a}}, // \xe5\xa8\x83
+{0x5a09,{0x44,0x5c,0x37,0x2c,0x1e,0x5f,0x6e}}, // \xe5\xa8\x89
+{0x5a11,{0x55,0x50,0x7a,0x58,0x37,0x54,0x52}}, // \xe5\xa8\x91
+{0x5a18,{0x5c,0x37,0x2c,0x7e,0x5a,0x3b,0x5e}}, // \xe5\xa8\x98
+{0x5a1a,{0x5c,0x37,0x2c,0x5f,0x35,0x5f,0x7f}}, // \xe5\xa8\x9a
+{0x5a1c,{0x5f,0x3c,0x55,0x3f,0x55,0x7f,0x1b}}, // \xe5\xa8\x9c
+{0x5a1f,{0x5c,0x37,0x2c,0x78,0x2b,0x2b,0x78}}, // \xe5\xa8\x9f
+{0x5a20,{0x5c,0x37,0x2c,0x7f,0x51,0x35,0x55}}, // \xe5\xa8\xa0
+{0x5a25,{0x5f,0x3c,0x26,0x7e,0x25,0x3f,0x55}}, // \xe5\xa8\xa5
+{0x5a29,{0x5c,0x37,0x2c,0x5e,0x3d,0x77,0x5c}}, // \xe5\xa8\xa9
+{0x5a2f,{0x5c,0x37,0x2c,0x56,0x14,0x1f,0x53}}, // \xe5\xa8\xaf
+{0x5a35,{0x5f,0x3c,0x21,0x3f,0x7f,0x12,0x2e}}, // \xe5\xa8\xb5
+{0x5a36,{0x55,0x57,0x7f,0x55,0x3b,0x55,0x5b}}, // \xe5\xa8\xb6
+{0x5a3c,{0x5c,0x37,0x2c,0x7c,0x57,0x57,0x7c}}, // \xe5\xa8\xbc
+{0x5a40,{0x5f,0x3c,0x7f,0x1b,0x1d,0x55,0x7f}}, // \xe5\xa9\x80
+{0x5a41,{0x54,0x5e,0x76,0x5f,0x36,0x5e,0x54}}, // \xe5\xa9\x81
+{0x5a46,{0x55,0x50,0x78,0x56,0x3a,0x57,0x5a}}, // \xe5\xa9\x86
+{0x5a49,{0x5f,0x3c,0x56,0x2a,0x7b,0x4a,0x5e}}, // \xe5\xa9\x89
+{0x5a5a,{0x5c,0x37,0x2c,0x1f,0x75,0x6f,0x15}}, // \xe5\xa9\x9a
+{0x5a62,{0x5f,0x3c,0x2e,0x3a,0x2f,0x7a,0x2e}}, // \xe5\xa9\xa2
+{0x5a66,{0x5c,0x37,0x2c,0x35,0x7d,0x37,0x0c}}, // \xe5\xa9\xa6
+{0x5a6a,{0x4a,0x56,0x7f,0x5a,0x36,0x5f,0x4a}}, // \xe5\xa9\xaa
+{0x5a6c,{0x5f,0x3c,0x4a,0x59,0x7b,0x59,0x4a}}, // \xe5\xa9\xac
+{0x5a7f,{0x5c,0x37,0x2c,0x09,0x77,0x2d,0x7b}}, // \xe5\xa9\xbf
+{0x5a92,{0x5f,0x3c,0x52,0x3f,0x7a,0x3f,0x52}}, // \xe5\xaa\x92
+{0x5a9a,{0x5c,0x37,0x4c,0x3f,0x05,0x77,0x77}}, // \xe5\xaa\x9a
+{0x5a9b,{0x5c,0x37,0x4c,0x2a,0x5e,0x29,0x5d}}, // \xe5\xaa\x9b
+{0x5abc,{0x5c,0x37,0x2c,0x4f,0x6d,0x6b,0x4f}}, // \xe5\xaa\xbc
+{0x5abd,{0x5c,0x37,0x2c,0x5f,0x15,0x5f,0x75}}, // \xe5\xaa\xbd
+{0x5abe,{0x5f,0x3c,0x2a,0x7f,0x3a,0x7f,0x2a}}, // \xe5\xaa\xbe
+{0x5ac1,{0x5f,0x3c,0x26,0x5a,0x7b,0x2a,0x56}}, // \xe5\xab\x81
+{0x5ac2,{0x5f,0x3c,0x4e,0x59,0x2e,0x59,0x4f}}, // \xe5\xab\x82
+{0x5ac9,{0x5f,0x3c,0x54,0x3e,0x5a,0x33,0x52}}, // \xe5\xab\x89
+{0x5acb,{0x5c,0x37,0x2c,0x5d,0x77,0x5d,0x77}}, // \xe5\xab\x8b
+{0x5acc,{0x5f,0x3c,0x52,0x37,0x7e,0x3f,0x4a}}, // \xe5\xab\x8c
+{0x5ad0,{0x5f,0x3c,0x47,0x3f,0x76,0x3f,0x5c}}, // \xe5\xab\x90
+{0x5ad6,{0x5f,0x3c,0x51,0x17,0x77,0x17,0x51}}, // \xe5\xab\x96
+{0x5ad7,{0x5f,0x3c,0x7f,0x71,0x47,0x77,0x71}}, // \xe5\xab\x97
+{0x5ae1,{0x5f,0x3c,0x7a,0x6e,0x5b,0x6e,0x7a}}, // \xe5\xab\xa1
+{0x5ae3,{0x5c,0x37,0x2c,0x5d,0x19,0x5f,0x75}}, // \xe5\xab\xa3
+{0x5ae6,{0x5f,0x3c,0x35,0x1e,0x7b,0x1e,0x35}}, // \xe5\xab\xa6
+{0x5ae9,{0x5f,0x3c,0x2e,0x7f,0x2a,0x3f,0x5e}}, // \xe5\xab\xa9
+{0x5afa,{0x5f,0x3c,0x7f,0x23,0x18,0x3b,0x7f}}, // \xe5\xab\xba
+{0x5afb,{0x5f,0x3c,0x7f,0x2b,0x7c,0x2b,0x7f}}, // \xe5\xab\xbb
+{0x5b09,{0x5f,0x3c,0x12,0x7e,0x57,0x7e,0x12}}, // \xe5\xac\x89
+{0x5b0b,{0x5f,0x3c,0x23,0x3f,0x7c,0x3f,0x23}}, // \xe5\xac\x8b
+{0x5b0c,{0x5f,0x3c,0x7a,0x17,0x5b,0x17,0x7a}}, // \xe5\xac\x8c
+{0x5b16,{0x54,0x5f,0x7b,0x50,0x36,0x5b,0x56}}, // \xe5\xac\x96
+{0x5b22,{0x5f,0x3c,0x1a,0x7e,0x53,0x3e,0x5a}}, // \xe5\xac\xa2
+{0x5b2a,{0x5f,0x3c,0x4e,0x3a,0x37,0x3a,0x46}}, // \xe5\xac\xaa
+{0x5b2c,{0x5f,0x3c,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe5\xac\xac
+{0x5b30,{0x54,0x53,0x7b,0x54,0x33,0x53,0x54}}, // \xe5\xac\xb0
+{0x5b32,{0x57,0x3f,0x5c,0x37,0x4c,0x3f,0x77}}, // \xe5\xac\xb2
+{0x5b36,{0x5c,0x37,0x3c,0x6e,0x3b,0x6e,0x38}}, // \xe5\xac\xb6
+{0x5b3e,{0x5f,0x3c,0x2e,0x7f,0x5a,0x19,0x5b}}, // \xe5\xac\xbe
+{0x5b40,{0x5f,0x3c,0x26,0x73,0x27,0x73,0x76}}, // \xe5\xad\x80
+{0x5b43,{0x5f,0x3c,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe5\xad\x83
+{0x5b45,{0x5f,0x3c,0x55,0x7e,0x55,0x3f,0x54}}, // \xe5\xad\x85
+{0x5b50,{0x08,0x09,0x49,0x7d,0x0b,0x09,0x08}}, // \xe5\xad\x90
+{0x5b51,{0x10,0x11,0x51,0x7d,0x0b,0x09,0x08}}, // \xe5\xad\x91
+{0x5b54,{0x51,0x7d,0x0b,0x00,0x7f,0x40,0x60}}, // \xe5\xad\x94
+{0x5b55,{0x28,0x29,0x27,0x69,0x3b,0x2a,0x26}}, // \xe5\xad\x95
+{0x5b57,{0x16,0x12,0x56,0x77,0x1e,0x12,0x16}}, // \xe5\xad\x97
+{0x5b58,{0x12,0x7a,0x17,0x52,0x76,0x1e,0x12}}, // \xe5\xad\x98
+{0x5b5a,{0x14,0x13,0x55,0x77,0x1d,0x11,0x12}}, // \xe5\xad\x9a
+{0x5b5b,{0x2c,0x26,0x2e,0x6f,0x3e,0x26,0x2c}}, // \xe5\xad\x9b
+{0x5b5c,{0x51,0x7d,0x0b,0x44,0x5f,0x22,0x5e}}, // \xe5\xad\x9c
+{0x5b5d,{0x28,0x2a,0x1a,0x2f,0x6e,0x3a,0x29}}, // \xe5\xad\x9d
+{0x5b5f,{0x44,0x75,0x55,0x7d,0x57,0x75,0x44}}, // \xe5\xad\x9f
+{0x5b63,{0x2a,0x2a,0x27,0x6f,0x3f,0x26,0x2a}}, // \xe5\xad\xa3
+{0x5b64,{0x51,0x7d,0x4b,0x3e,0x42,0x3e,0x61}}, // \xe5\xad\xa4
+{0x5b65,{0x2a,0x2e,0x2b,0x6e,0x3b,0x25,0x2b}}, // \xe5\xad\xa5
+{0x5b66,{0x16,0x13,0x56,0x77,0x1e,0x13,0x16}}, // \xe5\xad\xa6
+{0x5b69,{0x51,0x7d,0x4b,0x56,0x2b,0x32,0x4a}}, // \xe5\xad\xa9
+{0x5b6b,{0x51,0x7d,0x0b,0x50,0x15,0x7b,0x51}}, // \xe5\xad\xab
+{0x5b70,{0x22,0x2e,0x6b,0x3e,0x13,0x7e,0x40}}, // \xe5\xad\xb0
+{0x5b71,{0x40,0x3f,0x6b,0x3b,0x0f,0x6f,0x3b}}, // \xe5\xad\xb1
+{0x5b73,{0x22,0x2a,0x37,0x72,0x3a,0x37,0x22}}, // \xe5\xad\xb3
+{0x5b75,{0x5e,0x3d,0x7e,0x21,0x6b,0x39,0x22}}, // \xe5\xad\xb5
+{0x5b78,{0x2c,0x26,0x2d,0x6e,0x3d,0x27,0x2c}}, // \xe5\xad\xb8
+{0x5b7a,{0x51,0x7d,0x0b,0x66,0x2b,0x7f,0x6e}}, // \xe5\xad\xba
+{0x5b80,{0x0c,0x04,0x04,0x06,0x04,0x04,0x0c}}, // \xe5\xae\x80
+{0x5b83,{0x06,0x3a,0x52,0x53,0x4a,0x4a,0x66}}, // \xe5\xae\x83
+{0x5b85,{0x16,0x12,0x16,0x7f,0x56,0x52,0x56}}, // \xe5\xae\x85
+{0x5b87,{0x16,0x12,0x56,0x7f,0x16,0x12,0x16}}, // \xe5\xae\x87
+{0x5b88,{0x16,0x12,0x32,0x53,0x7a,0x12,0x16}}, // \xe5\xae\x88
+{0x5b89,{0x46,0x4a,0x5a,0x2f,0x3a,0x4a,0x46}}, // \xe5\xae\x89
+{0x5b8b,{0x46,0x4a,0x2a,0x7f,0x2a,0x4a,0x46}}, // \xe5\xae\x8b
+{0x5b8c,{0x56,0x52,0x36,0x17,0x76,0x52,0x56}}, // \xe5\xae\x8c
+{0x5b8d,{0x56,0x52,0x12,0x1b,0x12,0x52,0x56}}, // \xe5\xae\x8d
+{0x5b8f,{0x2e,0x5a,0x6e,0x5b,0x4a,0x2a,0x46}}, // \xe5\xae\x8f
+{0x5b95,{0x2e,0x1a,0x6a,0x6b,0x6a,0x6a,0x06}}, // \xe5\xae\x95
+{0x5b97,{0x56,0x32,0x56,0x77,0x16,0x32,0x56}}, // \xe5\xae\x97
+{0x5b98,{0x06,0x02,0x7e,0x57,0x5e,0x72,0x06}}, // \xe5\xae\x98
+{0x5b99,{0x06,0x7a,0x5a,0x7f,0x5a,0x7a,0x06}}, // \xe5\xae\x99
+{0x5b9a,{0x46,0x32,0x46,0x7f,0x56,0x52,0x46}}, // \xe5\xae\x9a
+{0x5b9b,{0x56,0x5a,0x2a,0x1b,0x7a,0x4a,0x5e}}, // \xe5\xae\x9b
+{0x5b9c,{0x46,0x42,0x7e,0x57,0x7e,0x42,0x46}}, // \xe5\xae\x9c
+{0x5b9d,{0x46,0x42,0x56,0x7f,0x56,0x62,0x46}}, // \xe5\xae\x9d
+{0x5b9f,{0x56,0x52,0x56,0x3f,0x56,0x52,0x56}}, // \xe5\xae\x9f
+{0x5ba2,{0x26,0x2a,0x6a,0x57,0x6e,0x22,0x26}}, // \xe5\xae\xa2
+{0x5ba3,{0x46,0x42,0x76,0x57,0x76,0x42,0x46}}, // \xe5\xae\xa3
+{0x5ba4,{0x46,0x52,0x5e,0x77,0x4a,0x52,0x46}}, // \xe5\xae\xa4
+{0x5ba5,{0x2e,0x1a,0x7e,0x2b,0x2a,0x7a,0x0e}}, // \xe5\xae\xa5
+{0x5ba6,{0x06,0x7e,0x56,0x77,0x5e,0x42,0x06}}, // \xe5\xae\xa6
+{0x5bae,{0x06,0x62,0x6e,0x7b,0x6e,0x62,0x06}}, // \xe5\xae\xae
+{0x5bb0,{0x26,0x2a,0x3a,0x6f,0x3a,0x2a,0x26}}, // \xe5\xae\xb0
+{0x5bb3,{0x26,0x2a,0x6a,0x7f,0x6a,0x2a,0x26}}, // \xe5\xae\xb3
+{0x5bb4,{0x56,0x52,0x7e,0x5b,0x3e,0x52,0x56}}, // \xe5\xae\xb4
+{0x5bb5,{0x06,0x7a,0x2e,0x2f,0x2a,0x7e,0x06}}, // \xe5\xae\xb5
+{0x5bb6,{0x56,0x52,0x2e,0x5f,0x76,0x22,0x56}}, // \xe5\xae\xb6
+{0x5bb8,{0x46,0x3e,0x76,0x57,0x36,0x52,0x46}}, // \xe5\xae\xb8
+{0x5bb9,{0x26,0x2a,0x76,0x6b,0x76,0x2a,0x26}}, // \xe5\xae\xb9
+{0x5bbf,{0x16,0x7a,0x02,0x6b,0x7a,0x6a,0x6e}}, // \xe5\xae\xbf
+{0x5bc2,{0x56,0x12,0x7e,0x17,0x5a,0x2a,0x5e}}, // \xe5\xaf\x82
+{0x5bc3,{0x4e,0x5a,0x36,0x1f,0x76,0x5e,0x66}}, // \xe5\xaf\x83
+{0x5bc4,{0x16,0x72,0x5a,0x77,0x1a,0x72,0x16}}, // \xe5\xaf\x84
+{0x5bc5,{0x46,0x7a,0x2e,0x3f,0x2e,0x7a,0x46}}, // \xe5\xaf\x85
+{0x5bc6,{0x16,0x6a,0x5e,0x73,0x56,0x62,0x16}}, // \xe5\xaf\x86
+{0x5bc7,{0x56,0x36,0x56,0x63,0x5e,0x6a,0x46}}, // \xe5\xaf\x87
+{0x5bc9,{0x26,0x12,0x7e,0x5b,0x7e,0x5a,0x56}}, // \xe5\xaf\x89
+{0x5bcc,{0x06,0x72,0x5e,0x7b,0x5e,0x72,0x06}}, // \xe5\xaf\x8c
+{0x5bd0,{0x56,0x36,0x7e,0x2b,0x7e,0x2a,0x46}}, // \xe5\xaf\x90
+{0x5bd2,{0x26,0x1a,0x3e,0x3b,0x5e,0x1a,0x26}}, // \xe5\xaf\x92
+{0x5bd3,{0x76,0x12,0x5e,0x7f,0x3e,0x52,0x76}}, // \xe5\xaf\x93
+{0x5bd4,{0x46,0x2a,0x4e,0x7b,0x5e,0x4a,0x46}}, // \xe5\xaf\x94
+{0x5bdb,{0x46,0x4a,0x3e,0x3b,0x7e,0x4a,0x66}}, // \xe5\xaf\x9b
+{0x5bdd,{0x2e,0x7a,0x02,0x5b,0x5a,0x2e,0x5e}}, // \xe5\xaf\x9d
+{0x5bde,{0x56,0x5a,0x5e,0x3b,0x5e,0x5a,0x56}}, // \xe5\xaf\x9e
+{0x5bdf,{0x56,0x2e,0x56,0x73,0x16,0x2a,0x56}}, // \xe5\xaf\x9f
+{0x5be1,{0x56,0x32,0x5e,0x3b,0x7e,0x32,0x56}}, // \xe5\xaf\xa1
+{0x5be2,{0x56,0x36,0x7e,0x03,0x5a,0x2a,0x5e}}, // \xe5\xaf\xa2
+{0x5be4,{0x56,0x36,0x7e,0x2b,0x7e,0x7a,0x26}}, // \xe5\xaf\xa4
+{0x5be5,{0x16,0x12,0x4e,0x57,0x2a,0x16,0x16}}, // \xe5\xaf\xa5
+{0x5be6,{0x46,0x4a,0x3e,0x37,0x3e,0x4a,0x46}}, // \xe5\xaf\xa6
+{0x5be7,{0x16,0x1a,0x56,0x7b,0x1e,0x1a,0x16}}, // \xe5\xaf\xa7
+{0x5be8,{0x36,0x5a,0x3e,0x7b,0x3e,0x5a,0x36}}, // \xe5\xaf\xa8
+{0x5be9,{0x56,0x3a,0x76,0x7f,0x76,0x3a,0x56}}, // \xe5\xaf\xa9
+{0x5beb,{0x26,0x5a,0x16,0x53,0x1e,0x52,0x76}}, // \xe5\xaf\xab
+{0x5bee,{0x56,0x0a,0x3e,0x6b,0x3e,0x0a,0x56}}, // \xe5\xaf\xae
+{0x5bf0,{0x26,0x2a,0x7e,0x5f,0x3e,0x5a,0x46}}, // \xe5\xaf\xb0
+{0x5bf3,{0x56,0x7e,0x36,0x3b,0x36,0x7a,0x46}}, // \xe5\xaf\xb3
+{0x5bf5,{0x0e,0x7a,0x2e,0x7b,0x0a,0x6e,0x56}}, // \xe5\xaf\xb5
+{0x5bf6,{0x56,0x7e,0x36,0x33,0x3e,0x7a,0x46}}, // \xe5\xaf\xb6
+{0x5bf8,{0x02,0x02,0x0a,0x52,0x7f,0x02,0x02}}, // \xe5\xaf\xb8
+{0x5bfa,{0x28,0x2a,0x6a,0x2f,0x7a,0x2a,0x28}}, // \xe5\xaf\xba
+{0x5bfe,{0x42,0x2a,0x13,0x2e,0x0a,0x52,0x7f}}, // \xe5\xaf\xbe
+{0x5bff,{0x54,0x36,0x1e,0x57,0x16,0x7e,0x14}}, // \xe5\xaf\xbf
+{0x5c01,{0x48,0x5a,0x3f,0x2a,0x0a,0x52,0x7f}}, // \xe5\xb0\x81
+{0x5c02,{0x12,0x12,0x3e,0x5f,0x7e,0x12,0x12}}, // \xe5\xb0\x82
+{0x5c04,{0x50,0x5e,0x2b,0x7e,0x0a,0x52,0x7f}}, // \xe5\xb0\x84
+{0x5c05,{0x5a,0x37,0x5a,0x40,0x4a,0x62,0x7f}}, // \xe5\xb0\x85
+{0x5c06,{0x14,0x7f,0x16,0x32,0x56,0x79,0x15}}, // \xe5\xb0\x86
+{0x5c07,{0x57,0x34,0x7f,0x08,0x2a,0x4d,0x7b}}, // \xe5\xb0\x87
+{0x5c08,{0x12,0x12,0x3e,0x5f,0x76,0x1a,0x12}}, // \xe5\xb0\x88
+{0x5c09,{0x40,0x3f,0x6b,0x2b,0x02,0x5a,0x7f}}, // \xe5\xb0\x89
+{0x5c0a,{0x12,0x1e,0x3b,0x56,0x7e,0x1f,0x12}}, // \xe5\xb0\x8a
+{0x5c0b,{0x14,0x1d,0x35,0x51,0x7d,0x17,0x1c}}, // \xe5\xb0\x8b
+{0x5c0d,{0x4b,0x5e,0x3b,0x2e,0x09,0x52,0x7f}}, // \xe5\xb0\x8d
+{0x5c0e,{0x14,0x1d,0x32,0x5f,0x7e,0x1f,0x12}}, // \xe5\xb0\x8e
+{0x5c0f,{0x10,0x0c,0x40,0x7f,0x00,0x04,0x18}}, // \xe5\xb0\x8f
+{0x5c11,{0x48,0x46,0x50,0x3f,0x20,0x12,0x04}}, // \xe5\xb0\x91
+{0x5c13,{0x24,0x1b,0x42,0x7e,0x02,0x0a,0x32}}, // \xe5\xb0\x93
+{0x5c16,{0x54,0x52,0x58,0x3f,0x50,0x52,0x54}}, // \xe5\xb0\x96
+{0x5c1a,{0x7c,0x05,0x74,0x57,0x74,0x05,0x7c}}, // \xe5\xb0\x9a
+{0x5c20,{0x72,0x5f,0x72,0x5f,0x46,0x2f,0x14}}, // \xe5\xb0\xa0
+{0x5c22,{0x42,0x42,0x22,0x1f,0x7a,0x42,0x62}}, // \xe5\xb0\xa2
+{0x5c24,{0x42,0x42,0x22,0x1f,0x7a,0x43,0x62}}, // \xe5\xb0\xa4
+{0x5c28,{0x42,0x3f,0x7a,0x43,0x40,0x6a,0x55}}, // \xe5\xb0\xa8
+{0x5c2d,{0x54,0x56,0x3e,0x17,0x7e,0x56,0x54}}, // \xe5\xb0\xad
+{0x5c31,{0x22,0x4e,0x7b,0x2e,0x44,0x3f,0x45}}, // \xe5\xb0\xb1
+{0x5c38,{0x40,0x3f,0x05,0x05,0x05,0x05,0x07}}, // \xe5\xb0\xb8
+{0x5c39,{0x44,0x55,0x35,0x1f,0x15,0x1f,0x04}}, // \xe5\xb0\xb9
+{0x5c3a,{0x40,0x3f,0x05,0x0d,0x15,0x27,0x40}}, // \xe5\xb0\xba
+{0x5c3b,{0x40,0x3f,0x55,0x3d,0x15,0x75,0x47}}, // \xe5\xb0\xbb
+{0x5c3c,{0x40,0x3f,0x05,0x7d,0x55,0x55,0x57}}, // \xe5\xb0\xbc
+{0x5c3d,{0x20,0x1f,0x25,0x2d,0x45,0x1b,0x20}}, // \xe5\xb0\xbd
+{0x5c3e,{0x40,0x3f,0x2b,0x2b,0x7f,0x57,0x53}}, // \xe5\xb0\xbe
+{0x5c3f,{0x40,0x3f,0x55,0x35,0x7d,0x25,0x57}}, // \xe5\xb0\xbf
+{0x5c40,{0x40,0x3f,0x75,0x55,0x75,0x07,0x7c}}, // \xe5\xb1\x80
+{0x5c41,{0x40,0x3f,0x7d,0x55,0x05,0x7d,0x57}}, // \xe5\xb1\x81
+{0x5c45,{0x40,0x3f,0x0b,0x6b,0x7f,0x6b,0x0b}}, // \xe5\xb1\x85
+{0x5c46,{0x40,0x3f,0x7b,0x53,0x7f,0x53,0x7b}}, // \xe5\xb1\x86
+{0x5c48,{0x40,0x3f,0x65,0x4d,0x7d,0x4d,0x67}}, // \xe5\xb1\x88
+{0x5c4a,{0x40,0x3f,0x75,0x55,0x7d,0x55,0x77}}, // \xe5\xb1\x8a
+{0x5c4b,{0x40,0x3f,0x55,0x5d,0x75,0x4d,0x57}}, // \xe5\xb1\x8b
+{0x5c4d,{0x40,0x3f,0x55,0x2d,0x1d,0x7d,0x57}}, // \xe5\xb1\x8d
+{0x5c4e,{0x40,0x3f,0x53,0x37,0x7f,0x33,0x57}}, // \xe5\xb1\x8e
+{0x5c4f,{0x40,0x3f,0x6b,0x3f,0x2b,0x7f,0x2b}}, // \xe5\xb1\x8f
+{0x5c50,{0x40,0x3f,0x2b,0x77,0x5b,0x2f,0x5b}}, // \xe5\xb1\x90
+{0x5c51,{0x40,0x3f,0x07,0x7b,0x2f,0x2b,0x7f}}, // \xe5\xb1\x91
+{0x5c53,{0x40,0x3f,0x43,0x3f,0x2b,0x3f,0x43}}, // \xe5\xb1\x93
+{0x5c55,{0x40,0x3f,0x75,0x5d,0x35,0x5d,0x57}}, // \xe5\xb1\x95
+{0x5c5e,{0x40,0x3f,0x73,0x5b,0x7f,0x3f,0x73}}, // \xe5\xb1\x9e
+{0x5c60,{0x40,0x3f,0x53,0x37,0x7f,0x77,0x13}}, // \xe5\xb1\xa0
+{0x5c61,{0x40,0x3f,0x57,0x7b,0x5f,0x3b,0x57}}, // \xe5\xb1\xa1
+{0x5c64,{0x40,0x3f,0x1b,0x77,0x5b,0x77,0x1b}}, // \xe5\xb1\xa4
+{0x5c65,{0x40,0x3f,0x2b,0x77,0x5f,0x2b,0x5b}}, // \xe5\xb1\xa5
+{0x5c6c,{0x40,0x3f,0x57,0x7b,0x3f,0x4b,0x7f}}, // \xe5\xb1\xac
+{0x5c6e,{0x5e,0x50,0x30,0x1f,0x10,0x10,0x1e}}, // \xe5\xb1\xae
+{0x5c6f,{0x02,0x1a,0x12,0x7f,0x52,0x51,0x59}}, // \xe5\xb1\xaf
+{0x5c71,{0x7c,0x40,0x40,0x7f,0x40,0x40,0x7c}}, // \xe5\xb1\xb1
+{0x5c76,{0x48,0x4f,0x2c,0x1f,0x0c,0x4f,0x78}}, // \xe5\xb1\xb6
+{0x5c79,{0x38,0x3f,0x04,0x23,0x56,0x4e,0x62}}, // \xe5\xb1\xb9
+{0x5c8c,{0x43,0x32,0x4e,0x53,0x26,0x5e,0x43}}, // \xe5\xb2\x8c
+{0x5c90,{0x38,0x3f,0x38,0x42,0x5a,0x2f,0x5a}}, // \xe5\xb2\x90
+{0x5c91,{0x0b,0x1a,0x56,0x53,0x36,0x1a,0x0b}}, // \xe5\xb2\x91
+{0x5c94,{0x64,0x52,0x55,0x6c,0x55,0x5e,0x64}}, // \xe5\xb2\x94
+{0x5ca1,{0x7f,0x35,0x27,0x3d,0x27,0x35,0x7f}}, // \xe5\xb2\xa1
+{0x5ca8,{0x38,0x3f,0x40,0x7f,0x55,0x7f,0x40}}, // \xe5\xb2\xa8
+{0x5ca9,{0x28,0x1b,0x6a,0x6b,0x6a,0x6b,0x08}}, // \xe5\xb2\xa9
+{0x5cab,{0x38,0x3f,0x7e,0x4a,0x7f,0x4a,0x7e}}, // \xe5\xb2\xab
+{0x5cac,{0x38,0x3f,0x3f,0x15,0x7f,0x15,0x1f}}, // \xe5\xb2\xac
+{0x5cb1,{0x64,0x4e,0x41,0x72,0x43,0x46,0x6b}}, // \xe5\xb2\xb1
+{0x5cb3,{0x10,0x7e,0x56,0x76,0x5d,0x75,0x10}}, // \xe5\xb2\xb3
+{0x5cb6,{0x38,0x3f,0x38,0x7e,0x4b,0x4a,0x7e}}, // \xe5\xb2\xb6
+{0x5cb7,{0x38,0x3f,0x38,0x7f,0x55,0x3d,0x57}}, // \xe5\xb2\xb7
+{0x5cb8,{0x43,0x3e,0x22,0x2b,0x7a,0x2a,0x23}}, // \xe5\xb2\xb8
+{0x5cbb,{0x38,0x3f,0x38,0x7e,0x4a,0x5e,0x69}}, // \xe5\xb2\xbb
+{0x5cbc,{0x38,0x3f,0x15,0x13,0x7f,0x13,0x15}}, // \xe5\xb2\xbc
+{0x5cbe,{0x38,0x3f,0x38,0x70,0x5f,0x54,0x74}}, // \xe5\xb2\xbe
+{0x5cc5,{0x38,0x3f,0x54,0x3e,0x15,0x7c,0x16}}, // \xe5\xb3\x85
+{0x5cc7,{0x13,0x12,0x6a,0x6f,0x6a,0x12,0x13}}, // \xe5\xb3\x87
+{0x5cd9,{0x38,0x3f,0x28,0x6a,0x2f,0x7a,0x28}}, // \xe5\xb3\x99
+{0x5ce0,{0x38,0x3f,0x38,0x08,0x7f,0x1a,0x2a}}, // \xe5\xb3\xa0
+{0x5ce1,{0x38,0x3f,0x5a,0x52,0x3f,0x52,0x5a}}, // \xe5\xb3\xa1
+{0x5ce8,{0x38,0x3f,0x26,0x7e,0x25,0x3f,0x55}}, // \xe5\xb3\xa8
+{0x5ce9,{0x2b,0x2e,0x7e,0x0b,0x5e,0x2a,0x57}}, // \xe5\xb3\xa9
+{0x5cea,{0x38,0x3f,0x12,0x69,0x64,0x69,0x12}}, // \xe5\xb3\xaa
+{0x5ced,{0x38,0x3f,0x02,0x7d,0x2a,0x7d,0x02}}, // \xe5\xb3\xad
+{0x5cef,{0x13,0x16,0x2e,0x7b,0x2e,0x12,0x13}}, // \xe5\xb3\xaf
+{0x5cf0,{0x38,0x3f,0x28,0x2a,0x75,0x2b,0x28}}, // \xe5\xb3\xb0
+{0x5cf6,{0x60,0x5e,0x76,0x57,0x76,0x16,0x70}}, // \xe5\xb3\xb6
+{0x5cfa,{0x38,0x3f,0x41,0x57,0x3f,0x47,0x41}}, // \xe5\xb3\xba
+{0x5cfb,{0x38,0x3f,0x2a,0x57,0x32,0x5e,0x4b}}, // \xe5\xb3\xbb
+{0x5cfd,{0x38,0x3f,0x52,0x4e,0x3f,0x4e,0x52}}, // \xe5\xb3\xbd
+{0x5d07,{0x4c,0x37,0x5e,0x7f,0x1e,0x37,0x4c}}, // \xe5\xb4\x87
+{0x5d0b,{0x2b,0x3e,0x2a,0x7f,0x2a,0x3e,0x2b}}, // \xe5\xb4\x8b
+{0x5d0e,{0x38,0x3f,0x12,0x5a,0x17,0x7a,0x12}}, // \xe5\xb4\x8e
+{0x5d11,{0x43,0x7e,0x5a,0x0b,0x7a,0x5e,0x53}}, // \xe5\xb4\x91
+{0x5d14,{0x13,0x0a,0x7e,0x57,0x7e,0x56,0x43}}, // \xe5\xb4\x94
+{0x5d15,{0x38,0x3f,0x40,0x3f,0x55,0x7f,0x55}}, // \xe5\xb4\x95
+{0x5d16,{0x43,0x3e,0x42,0x57,0x7e,0x56,0x43}}, // \xe5\xb4\x96
+{0x5d17,{0x7f,0x32,0x26,0x3b,0x26,0x32,0x7f}}, // \xe5\xb4\x97
+{0x5d18,{0x38,0x3f,0x74,0x32,0x75,0x36,0x74}}, // \xe5\xb4\x98
+{0x5d19,{0x0b,0x7a,0x36,0x73,0x36,0x7a,0x0b}}, // \xe5\xb4\x99
+{0x5d1a,{0x38,0x3f,0x28,0x5a,0x2f,0x5a,0x48}}, // \xe5\xb4\x9a
+{0x5d1b,{0x38,0x3f,0x1f,0x65,0x4d,0x7d,0x6f}}, // \xe5\xb4\x9b
+{0x5d1f,{0x4b,0x6a,0x5a,0x77,0x5a,0x6a,0x4b}}, // \xe5\xb4\x9f
+{0x5d22,{0x38,0x3f,0x12,0x55,0x7f,0x3d,0x12}}, // \xe5\xb4\xa2
+{0x5d29,{0x43,0x3e,0x56,0x7f,0x3e,0x56,0x7f}}, // \xe5\xb4\xa9
+{0x5d4b,{0x38,0x3f,0x40,0x3f,0x05,0x77,0x77}}, // \xe5\xb5\x8b
+{0x5d4c,{0x13,0x7a,0x52,0x7b,0x4e,0x3a,0x5b}}, // \xe5\xb5\x8c
+{0x5d4e,{0x38,0x3f,0x78,0x4b,0x7f,0x2b,0x78}}, // \xe5\xb5\x8e
+{0x5d50,{0x43,0x3e,0x5a,0x7f,0x3a,0x7e,0x43}}, // \xe5\xb5\x90
+{0x5d52,{0x1c,0x74,0x5f,0x65,0x5f,0x74,0x1c}}, // \xe5\xb5\x92
+{0x5d5c,{0x0b,0x7a,0x5e,0x7b,0x0a,0x7e,0x0b}}, // \xe5\xb5\x9c
+{0x5d69,{0x73,0x12,0x7e,0x5b,0x7e,0x12,0x73}}, // \xe5\xb5\xa9
+{0x5d6c,{0x43,0x5a,0x3a,0x1f,0x7a,0x5a,0x63}}, // \xe5\xb5\xac
+{0x5d6f,{0x38,0x3f,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe5\xb5\xaf
+{0x5d73,{0x4b,0x3a,0x4a,0x5f,0x7a,0x5a,0x4b}}, // \xe5\xb5\xb3
+{0x5d76,{0x38,0x3f,0x38,0x5d,0x77,0x5d,0x77}}, // \xe5\xb5\xb6
+{0x5d82,{0x38,0x3f,0x2a,0x3e,0x7b,0x3e,0x2a}}, // \xe5\xb6\x82
+{0x5d84,{0x2b,0x3a,0x7e,0x2b,0x1e,0x76,0x13}}, // \xe5\xb6\x84
+{0x5d87,{0x38,0x3f,0x7f,0x71,0x47,0x77,0x71}}, // \xe5\xb6\x87
+{0x5d8b,{0x38,0x3f,0x40,0x1e,0x57,0x16,0x70}}, // \xe5\xb6\x8b
+{0x5d8c,{0x43,0x1e,0x56,0x17,0x56,0x16,0x73}}, // \xe5\xb6\x8c
+{0x5d90,{0x7f,0x36,0x52,0x57,0x6a,0x56,0x53}}, // \xe5\xb6\x90
+{0x5d9d,{0x38,0x3f,0x45,0x5b,0x69,0x5a,0x45}}, // \xe5\xb6\x9d
+{0x5da2,{0x38,0x3f,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe5\xb6\xa2
+{0x5dac,{0x38,0x3f,0x2a,0x7b,0x2e,0x3b,0x5a}}, // \xe5\xb6\xac
+{0x5dae,{0x38,0x3f,0x5c,0x36,0x5d,0x36,0x5c}}, // \xe5\xb6\xae
+{0x5db7,{0x5f,0x3a,0x5a,0x77,0x36,0x5e,0x57}}, // \xe5\xb6\xb7
+{0x5dba,{0x17,0x72,0x36,0x43,0x1a,0x1e,0x5b}}, // \xe5\xb6\xba
+{0x5dbc,{0x38,0x3f,0x5e,0x11,0x16,0x1d,0x5f}}, // \xe5\xb6\xbc
+{0x5dbd,{0x57,0x4a,0x36,0x6b,0x6a,0x3e,0x4b}}, // \xe5\xb6\xbd
+{0x5dc9,{0x38,0x3f,0x52,0x5e,0x2d,0x7f,0x56}}, // \xe5\xb7\x89
+{0x5dcc,{0x43,0x3e,0x2a,0x7f,0x5a,0x2e,0x5b}}, // \xe5\xb7\x8c
+{0x5dcd,{0x5b,0x76,0x3e,0x57,0x3a,0x7e,0x5b}}, // \xe5\xb7\x8d
+{0x5dd2,{0x0a,0x7d,0x4a,0x77,0x4a,0x7d,0x08}}, // \xe5\xb7\x92
+{0x5dd3,{0x4f,0x1a,0x5a,0x03,0x5a,0x1e,0x5b}}, // \xe5\xb7\x93
+{0x5dd6,{0x43,0x3e,0x2e,0x7b,0x5e,0x2e,0x5b}}, // \xe5\xb7\x96
+{0x5ddb,{0x08,0x14,0x6b,0x14,0x6b,0x14,0x63}}, // \xe5\xb7\x9b
+{0x5ddd,{0x40,0x3f,0x00,0x1e,0x00,0x00,0x7f}}, // \xe5\xb7\x9d
+{0x5dde,{0x4c,0x3f,0x0c,0x7f,0x00,0x0c,0x7f}}, // \xe5\xb7\x9e
+{0x5de1,{0x49,0x3c,0x5b,0x44,0x5b,0x44,0x5b}}, // \xe5\xb7\xa1
+{0x5de3,{0x50,0x57,0x36,0x7f,0x36,0x57,0x50}}, // \xe5\xb7\xa3
+{0x5de5,{0x40,0x42,0x42,0x7e,0x42,0x42,0x40}}, // \xe5\xb7\xa5
+{0x5de6,{0x22,0x52,0x4f,0x4a,0x7a,0x4a,0x42}}, // \xe5\xb7\xa6
+{0x5de7,{0x22,0x3e,0x12,0x01,0x0f,0x49,0x79}}, // \xe5\xb7\xa7
+{0x5de8,{0x7f,0x55,0x55,0x55,0x55,0x5d,0x41}}, // \xe5\xb7\xa8
+{0x5deb,{0x50,0x4d,0x51,0x7f,0x51,0x4d,0x50}}, // \xe5\xb7\xab
+{0x5dee,{0x4a,0x3a,0x4b,0x5e,0x7a,0x5b,0x4a}}, // \xe5\xb7\xae
+{0x5df1,{0x39,0x49,0x49,0x49,0x49,0x4f,0x60}}, // \xe5\xb7\xb1
+{0x5df2,{0x3d,0x49,0x49,0x49,0x49,0x4f,0x60}}, // \xe5\xb7\xb2
+{0x5df3,{0x3f,0x49,0x49,0x49,0x49,0x4f,0x60}}, // \xe5\xb7\xb3
+{0x5df4,{0x3f,0x49,0x49,0x4f,0x49,0x4f,0x60}}, // \xe5\xb7\xb4
+{0x5df5,{0x40,0x3e,0x7e,0x56,0x5d,0x55,0x5c}}, // \xe5\xb7\xb5
+{0x5df7,{0x28,0x1a,0x7f,0x5a,0x4f,0x1a,0x28}}, // \xe5\xb7\xb7
+{0x5dfb,{0x14,0x0d,0x76,0x57,0x5e,0x4d,0x14}}, // \xe5\xb7\xbb
+{0x5dfd,{0x51,0x55,0x1f,0x18,0x1d,0x55,0x57}}, // \xe5\xb7\xbd
+{0x5dfe,{0x3e,0x02,0x02,0x7f,0x02,0x22,0x3e}}, // \xe5\xb7\xbe
+{0x5e02,{0x02,0x3a,0x0a,0x7f,0x0a,0x3a,0x02}}, // \xe5\xb8\x82
+{0x5e03,{0x12,0x0a,0x3f,0x0a,0x7e,0x0a,0x3a}}, // \xe5\xb8\x83
+{0x5e06,{0x0e,0x7f,0x40,0x3f,0x09,0x7f,0x40}}, // \xe5\xb8\x86
+{0x5e0b,{0x10,0x7e,0x36,0x66,0x2d,0x75,0x10}}, // \xe5\xb8\x8b
+{0x5e0c,{0x28,0x19,0x6d,0x2a,0x7a,0x2d,0x68}}, // \xe5\xb8\x8c
+{0x5e11,{0x0a,0x3e,0x1b,0x76,0x1b,0x35,0x0b}}, // \xe5\xb8\x91
+{0x5e16,{0x0e,0x7f,0x0e,0x70,0x5f,0x54,0x74}}, // \xe5\xb8\x96
+{0x5e19,{0x0e,0x7f,0x4c,0x2b,0x1f,0x2a,0x48}}, // \xe5\xb8\x99
+{0x5e1a,{0x1a,0x6a,0x2f,0x7f,0x2f,0x6f,0x1a}}, // \xe5\xb8\x9a
+{0x5e1b,{0x30,0x1e,0x1a,0x7b,0x1a,0x1e,0x30}}, // \xe5\xb8\x9b
+{0x5e1d,{0x1a,0x6a,0x2e,0x7b,0x2a,0x6e,0x1a}}, // \xe5\xb8\x9d
+{0x5e25,{0x3e,0x37,0x3e,0x02,0x7f,0x02,0x3e}}, // \xe5\xb8\xa5
+{0x5e2b,{0x3e,0x37,0x3e,0x05,0x7f,0x05,0x3d}}, // \xe5\xb8\xab
+{0x5e2d,{0x40,0x3e,0x6a,0x2e,0x7b,0x2e,0x6a}}, // \xe5\xb8\xad
+{0x5e2f,{0x1a,0x6f,0x2a,0x7f,0x2a,0x6f,0x1a}}, // \xe5\xb8\xaf
+{0x5e30,{0x4e,0x3f,0x0c,0x35,0x7d,0x37,0x0c}}, // \xe5\xb8\xb0
+{0x5e33,{0x0e,0x7f,0x10,0x7f,0x55,0x35,0x51}}, // \xe5\xb8\xb3
+{0x5e36,{0x1a,0x77,0x3f,0x7a,0x37,0x7f,0x1a}}, // \xe5\xb8\xb6
+{0x5e37,{0x0e,0x7f,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe5\xb8\xb7
+{0x5e38,{0x06,0x33,0x1e,0x7b,0x1e,0x33,0x06}}, // \xe5\xb8\xb8
+{0x5e3d,{0x0e,0x7f,0x07,0x7d,0x55,0x7d,0x07}}, // \xe5\xb8\xbd
+{0x5e40,{0x0e,0x7f,0x40,0x3c,0x37,0x3e,0x42}}, // \xe5\xb9\x80
+{0x5e43,{0x0e,0x7f,0x28,0x3a,0x2f,0x7a,0x2e}}, // \xe5\xb9\x83
+{0x5e44,{0x0e,0x7f,0x20,0x5f,0x5b,0x77,0x53}}, // \xe5\xb9\x84
+{0x5e45,{0x0e,0x7f,0x71,0x57,0x75,0x57,0x71}}, // \xe5\xb9\x85
+{0x5e47,{0x0a,0x3f,0x1a,0x70,0x16,0x3a,0x0f}}, // \xe5\xb9\x87
+{0x5e4c,{0x0e,0x7f,0x54,0x33,0x1f,0x73,0x54}}, // \xe5\xb9\x8c
+{0x5e4e,{0x0e,0x7f,0x53,0x1d,0x15,0x1d,0x53}}, // \xe5\xb9\x8e
+{0x5e54,{0x0e,0x7f,0x4c,0x5f,0x2d,0x5f,0x4c}}, // \xe5\xb9\x94
+{0x5e55,{0x2a,0x1a,0x6f,0x7e,0x2f,0x7a,0x1a}}, // \xe5\xb9\x95
+{0x5e57,{0x0e,0x7f,0x7f,0x6d,0x4f,0x55,0x7f}}, // \xe5\xb9\x97
+{0x5e5f,{0x0e,0x7f,0x0a,0x6f,0x6e,0x3f,0x55}}, // \xe5\xb9\x9f
+{0x5e61,{0x0e,0x7f,0x15,0x6f,0x7d,0x6f,0x15}}, // \xe5\xb9\xa1
+{0x5e62,{0x0e,0x7f,0x4a,0x5e,0x7b,0x5e,0x4a}}, // \xe5\xb9\xa2
+{0x5e63,{0x0d,0x36,0x1e,0x75,0x1a,0x35,0x0b}}, // \xe5\xb9\xa3
+{0x5e64,{0x02,0x3d,0x1e,0x75,0x1a,0x35,0x0b}}, // \xe5\xb9\xa4
+{0x5e72,{0x08,0x09,0x09,0x7f,0x09,0x09,0x08}}, // \xe5\xb9\xb2
+{0x5e73,{0x11,0x13,0x15,0x7f,0x15,0x13,0x11}}, // \xe5\xb9\xb3
+{0x5e74,{0x24,0x3b,0x2a,0x7e,0x2a,0x2a,0x22}}, // \xe5\xb9\xb4
+{0x5e75,{0x09,0x7f,0x09,0x00,0x09,0x7f,0x09}}, // \xe5\xb9\xb5
+{0x5e76,{0x10,0x54,0x3d,0x14,0x16,0x7d,0x14}}, // \xe5\xb9\xb6
+{0x5e78,{0x14,0x36,0x3e,0x77,0x3e,0x36,0x14}}, // \xe5\xb9\xb8
+{0x5e79,{0x2d,0x77,0x2d,0x00,0x2a,0x79,0x2a}}, // \xe5\xb9\xb9
+{0x5e7a,{0x40,0x44,0x6c,0x53,0x48,0x24,0x40}}, // \xe5\xb9\xba
+{0x5e7b,{0x44,0x6c,0x5b,0x64,0x01,0x41,0x3f}}, // \xe5\xb9\xbb
+{0x5e7c,{0x44,0x6c,0x5b,0x64,0x3f,0x42,0x7e}}, // \xe5\xb9\xbc
+{0x5e7d,{0x7e,0x5a,0x55,0x7f,0x5a,0x55,0x7e}}, // \xe5\xb9\xbd
+{0x5e7e,{0x4a,0x3d,0x28,0x4f,0x5a,0x2d,0x50}}, // \xe5\xb9\xbe
+{0x5e7f,{0x40,0x3e,0x02,0x02,0x03,0x02,0x02}}, // \xe5\xb9\xbf
+{0x5e81,{0x40,0x3e,0x0a,0x4a,0x7b,0x0a,0x0a}}, // \xe5\xba\x81
+{0x5e83,{0x40,0x3e,0x42,0x62,0x5b,0x22,0x42}}, // \xe5\xba\x83
+{0x5e84,{0x40,0x3e,0x42,0x4a,0x7f,0x4a,0x42}}, // \xe5\xba\x84
+{0x5e87,{0x40,0x3e,0x7a,0x52,0x03,0x7a,0x52}}, // \xe5\xba\x87
+{0x5e8a,{0x40,0x3e,0x4a,0x2a,0x7f,0x2a,0x4a}}, // \xe5\xba\x8a
+{0x5e8f,{0x40,0x3e,0x12,0x56,0x77,0x1e,0x32}}, // \xe5\xba\x8f
+{0x5e95,{0x40,0x3e,0x42,0x7e,0x57,0x3e,0x56}}, // \xe5\xba\x95
+{0x5e96,{0x40,0x3e,0x0a,0x76,0x5f,0x46,0x5e}}, // \xe5\xba\x96
+{0x5e97,{0x40,0x3e,0x02,0x62,0x7f,0x6a,0x6a}}, // \xe5\xba\x97
+{0x5e9a,{0x40,0x3e,0x42,0x56,0x3f,0x56,0x5e}}, // \xe5\xba\x9a
+{0x5e9c,{0x40,0x3e,0x12,0x7e,0x2b,0x4a,0x7e}}, // \xe5\xba\x9c
+{0x5ea0,{0x40,0x3e,0x2a,0x2e,0x7b,0x2e,0x2a}}, // \xe5\xba\xa0
+{0x5ea6,{0x40,0x3e,0x4a,0x5e,0x2b,0x5e,0x4a}}, // \xe5\xba\xa6
+{0x5ea7,{0x40,0x3e,0x4a,0x56,0x7b,0x56,0x4a}}, // \xe5\xba\xa7
+{0x5eab,{0x40,0x3e,0x2a,0x3a,0x7f,0x3a,0x2a}}, // \xe5\xba\xab
+{0x5ead,{0x40,0x3e,0x56,0x2e,0x53,0x7a,0x56}}, // \xe5\xba\xad
+{0x5eb5,{0x40,0x3e,0x0a,0x36,0x3b,0x76,0x4a}}, // \xe5\xba\xb5
+{0x5eb6,{0x40,0x3e,0x4a,0x1e,0x5b,0x1e,0x4a}}, // \xe5\xba\xb6
+{0x5eb7,{0x40,0x3e,0x5a,0x2a,0x7f,0x2e,0x56}}, // \xe5\xba\xb7
+{0x5eb8,{0x40,0x3e,0x7a,0x2e,0x7f,0x2e,0x7a}}, // \xe5\xba\xb8
+{0x5ec1,{0x40,0x3e,0x5e,0x16,0x5f,0x02,0x7a}}, // \xe5\xbb\x81
+{0x5ec2,{0x40,0x3e,0x7e,0x2a,0x7f,0x56,0x7e}}, // \xe5\xbb\x82
+{0x5ec3,{0x40,0x3e,0x56,0x3e,0x17,0x7a,0x56}}, // \xe5\xbb\x83
+{0x5ec8,{0x40,0x3e,0x42,0x56,0x2f,0x5e,0x46}}, // \xe5\xbb\x88
+{0x5ec9,{0x40,0x3e,0x52,0x36,0x7f,0x3e,0x5a}}, // \xe5\xbb\x89
+{0x5eca,{0x40,0x3e,0x7a,0x5e,0x23,0x7e,0x36}}, // \xe5\xbb\x8a
+{0x5ecf,{0x40,0x3e,0x3a,0x2e,0x5f,0x36,0x5e}}, // \xe5\xbb\x8f
+{0x5ed0,{0x40,0x3e,0x3a,0x2e,0x57,0x3e,0x56}}, // \xe5\xbb\x90
+{0x5ed3,{0x40,0x3e,0x3a,0x6e,0x3b,0x7e,0x36}}, // \xe5\xbb\x93
+{0x5ed6,{0x40,0x3e,0x16,0x4a,0x57,0x2a,0x16}}, // \xe5\xbb\x96
+{0x5eda,{0x40,0x3e,0x56,0x6e,0x37,0x4a,0x7e}}, // \xe5\xbb\x9a
+{0x5edb,{0x40,0x3e,0x5a,0x5e,0x6f,0x5e,0x5a}}, // \xe5\xbb\x9b
+{0x5edd,{0x40,0x3e,0x5e,0x16,0x5f,0x3a,0x76}}, // \xe5\xbb\x9d
+{0x5edf,{0x40,0x3e,0x7e,0x36,0x7b,0x2a,0x7a}}, // \xe5\xbb\x9f
+{0x5ee0,{0x40,0x3e,0x76,0x3a,0x77,0x2e,0x5a}}, // \xe5\xbb\xa0
+{0x5ee1,{0x40,0x3e,0x6e,0x3a,0x6b,0x3a,0x6a}}, // \xe5\xbb\xa1
+{0x5ee2,{0x40,0x3e,0x56,0x2e,0x5f,0x2a,0x56}}, // \xe5\xbb\xa2
+{0x5ee3,{0x40,0x3e,0x4a,0x3e,0x3b,0x3e,0x4a}}, // \xe5\xbb\xa3
+{0x5ee8,{0x40,0x7e,0x36,0x7e,0x2b,0x76,0x2e}}, // \xe5\xbb\xa8
+{0x5ee9,{0x40,0x3e,0x52,0x3e,0x7b,0x3e,0x52}}, // \xe5\xbb\xa9
+{0x5eec,{0x40,0x7e,0x3a,0x4a,0x7f,0x76,0x52}}, // \xe5\xbb\xac
+{0x5ef0,{0x40,0x3e,0x3e,0x7e,0x2b,0x5e,0x6a}}, // \xe5\xbb\xb0
+{0x5ef1,{0x40,0x3e,0x6a,0x76,0x4b,0x7e,0x56}}, // \xe5\xbb\xb1
+{0x5ef3,{0x40,0x3e,0x36,0x7e,0x2b,0x5e,0x6a}}, // \xe5\xbb\xb3
+{0x5ef4,{0x51,0x25,0x5b,0x40,0x40,0x40,0x40}}, // \xe5\xbb\xb4
+{0x5ef6,{0x55,0x3b,0x40,0x5a,0x52,0x5e,0x55}}, // \xe5\xbb\xb6
+{0x5ef7,{0x55,0x3b,0x48,0x6a,0x7e,0x69,0x48}}, // \xe5\xbb\xb7
+{0x5ef8,{0x55,0x3b,0x40,0x7e,0x6a,0x7f,0x7e}}, // \xe5\xbb\xb8
+{0x5efa,{0x55,0x3b,0x40,0x55,0x7f,0x57,0x52}}, // \xe5\xbb\xba
+{0x5efb,{0x55,0x3b,0x40,0x7f,0x5d,0x55,0x7f}}, // \xe5\xbb\xbb
+{0x5efc,{0x55,0x3b,0x40,0x7d,0x6f,0x67,0x7d}}, // \xe5\xbb\xbc
+{0x5efe,{0x08,0x48,0x3f,0x08,0x08,0x7f,0x08}}, // \xe5\xbb\xbe
+{0x5eff,{0x04,0x7f,0x44,0x44,0x44,0x7f,0x04}}, // \xe5\xbb\xbf
+{0x5f01,{0x14,0x54,0x3e,0x15,0x7c,0x12,0x14}}, // \xe5\xbc\x81
+{0x5f03,{0x12,0x5a,0x3e,0x1b,0x76,0x1a,0x12}}, // \xe5\xbc\x83
+{0x5f04,{0x10,0x55,0x3d,0x17,0x7d,0x15,0x10}}, // \xe5\xbc\x84
+{0x5f09,{0x1b,0x56,0x3f,0x12,0x7a,0x1f,0x1a}}, // \xe5\xbc\x89
+{0x5f0a,{0x1d,0x56,0x3e,0x15,0x7a,0x15,0x1b}}, // \xe5\xbc\x8a
+{0x5f0b,{0x04,0x04,0x04,0x1f,0x24,0x45,0x64}}, // \xe5\xbc\x8b
+{0x5f0c,{0x12,0x12,0x12,0x12,0x0f,0x32,0x43}}, // \xe5\xbc\x8c
+{0x5f0d,{0x42,0x4a,0x4a,0x42,0x0f,0x32,0x43}}, // \xe5\xbc\x8d
+{0x5f0f,{0x42,0x4a,0x3a,0x2a,0x0f,0x32,0x43}}, // \xe5\xbc\x8f
+{0x5f10,{0x44,0x4d,0x2d,0x24,0x0f,0x34,0x45}}, // \xe5\xbc\x90
+{0x5f11,{0x54,0x35,0x7a,0x55,0x74,0x3f,0x45}}, // \xe5\xbc\x91
+{0x5f13,{0x10,0x1d,0x15,0x15,0x55,0x57,0x70}}, // \xe5\xbc\x93
+{0x5f14,{0x10,0x1d,0x15,0x7f,0x15,0x57,0x70}}, // \xe5\xbc\x94
+{0x5f15,{0x1d,0x15,0x55,0x77,0x00,0x00,0x7f}}, // \xe5\xbc\x95
+{0x5f16,{0x40,0x41,0x5d,0x55,0x55,0x77,0x40}}, // \xe5\xbc\x96
+{0x5f17,{0x5a,0x5a,0x3f,0x16,0x7f,0x16,0x36}}, // \xe5\xbc\x97
+{0x5f18,{0x5d,0x77,0x40,0x70,0x4f,0x20,0x40}}, // \xe5\xbc\x98
+{0x5f1b,{0x5d,0x77,0x08,0x7e,0x44,0x5f,0x6c}}, // \xe5\xbc\x9b
+{0x5f1f,{0x42,0x5a,0x2b,0x7e,0x2a,0x2b,0x6e}}, // \xe5\xbc\x9f
+{0x5f25,{0x5d,0x77,0x24,0x5b,0x7e,0x0a,0x32}}, // \xe5\xbc\xa5
+{0x5f26,{0x5d,0x77,0x4a,0x6e,0x53,0x2a,0x42}}, // \xe5\xbc\xa6
+{0x5f27,{0x5d,0x77,0x40,0x3e,0x42,0x3e,0x61}}, // \xe5\xbc\xa7
+{0x5f29,{0x0a,0x3e,0x3b,0x36,0x3b,0x25,0x6b}}, // \xe5\xbc\xa9
+{0x5f2d,{0x5d,0x77,0x21,0x3f,0x2d,0x7f,0x21}}, // \xe5\xbc\xad
+{0x5f2f,{0x0a,0x32,0x3e,0x33,0x3e,0x22,0x6a}}, // \xe5\xbc\xaf
+{0x5f31,{0x2d,0x55,0x77,0x00,0x2d,0x55,0x77}}, // \xe5\xbc\xb1
+{0x5f35,{0x5d,0x77,0x10,0x7f,0x55,0x35,0x51}}, // \xe5\xbc\xb5
+{0x5f37,{0x5d,0x77,0x44,0x5e,0x7d,0x5c,0x66}}, // \xe5\xbc\xb7
+{0x5f38,{0x5d,0x77,0x3f,0x55,0x3f,0x55,0x7f}}, // \xe5\xbc\xb8
+{0x5f3c,{0x5d,0x77,0x3a,0x2e,0x3a,0x5d,0x77}}, // \xe5\xbc\xbc
+{0x5f3e,{0x5d,0x77,0x2d,0x2c,0x7d,0x2e,0x2d}}, // \xe5\xbc\xbe
+{0x5f41,{0x5d,0x77,0x09,0x2d,0x49,0x7f,0x09}}, // \xe5\xbd\x81
+{0x5f48,{0x5d,0x77,0x23,0x3f,0x7c,0x3f,0x23}}, // \xe5\xbd\x88
+{0x5f4a,{0x5d,0x77,0x00,0x49,0x7f,0x7f,0x49}}, // \xe5\xbd\x8a
+{0x5f4c,{0x5d,0x77,0x7d,0x2b,0x7f,0x2b,0x7d}}, // \xe5\xbd\x8c
+{0x5f4e,{0x0a,0x3d,0x3a,0x37,0x3a,0x3d,0x68}}, // \xe5\xbd\x8e
+{0x5f51,{0x40,0x58,0x57,0x52,0x72,0x4e,0x40}}, // \xe5\xbd\x91
+{0x5f53,{0x00,0x45,0x56,0x57,0x54,0x56,0x7d}}, // \xe5\xbd\x93
+{0x5f56,{0x54,0x54,0x2e,0x5d,0x77,0x25,0x54}}, // \xe5\xbd\x96
+{0x5f57,{0x2a,0x6f,0x6a,0x68,0x6a,0x7f,0x2a}}, // \xe5\xbd\x97
+{0x5f59,{0x4c,0x54,0x3e,0x7d,0x3f,0x55,0x4c}}, // \xe5\xbd\x99
+{0x5f5c,{0x24,0x6c,0x3e,0x25,0x77,0x2d,0x3c}}, // \xe5\xbd\x9c
+{0x5f5d,{0x24,0x6c,0x3e,0x25,0x77,0x3d,0x34}}, // \xe5\xbd\x9d
+{0x5f61,{0x00,0x54,0x54,0x4a,0x2a,0x25,0x10}}, // \xe5\xbd\xa1
+{0x5f62,{0x49,0x3f,0x09,0x7f,0x09,0x4a,0x25}}, // \xe5\xbd\xa2
+{0x5f66,{0x42,0x3a,0x0e,0x5b,0x5a,0x4e,0x2a}}, // \xe5\xbd\xa6
+{0x5f69,{0x52,0x36,0x7a,0x35,0x51,0x4a,0x25}}, // \xe5\xbd\xa9
+{0x5f6a,{0x7c,0x44,0x2f,0x6a,0x40,0x6a,0x55}}, // \xe5\xbd\xaa
+{0x5f6b,{0x7f,0x35,0x2f,0x35,0x7f,0x4a,0x25}}, // \xe5\xbd\xab
+{0x5f6c,{0x1a,0x7f,0x1a,0x7f,0x1a,0x4a,0x25}}, // \xe5\xbd\xac
+{0x5f6d,{0x42,0x5a,0x6f,0x5a,0x00,0x4a,0x25}}, // \xe5\xbd\xad
+{0x5f70,{0x2a,0x3e,0x7b,0x3e,0x2a,0x4a,0x25}}, // \xe5\xbd\xb0
+{0x5f71,{0x44,0x1f,0x75,0x1f,0x44,0x4a,0x25}}, // \xe5\xbd\xb1
+{0x5f73,{0x00,0x00,0x14,0x14,0x7a,0x05,0x00}}, // \xe5\xbd\xb3
+{0x5f77,{0x0a,0x7d,0x42,0x3e,0x0b,0x4a,0x7a}}, // \xe5\xbd\xb7
+{0x5f79,{0x0a,0x7d,0x44,0x5b,0x29,0x5f,0x44}}, // \xe5\xbd\xb9
+{0x5f7c,{0x0a,0x7d,0x3e,0x5a,0x2f,0x5a,0x46}}, // \xe5\xbd\xbc
+{0x5f7f,{0x0a,0x7d,0x5a,0x3f,0x16,0x7f,0x36}}, // \xe5\xbd\xbf
+{0x5f80,{0x0a,0x7d,0x44,0x55,0x7e,0x54,0x44}}, // \xe5\xbe\x80
+{0x5f81,{0x0a,0x7d,0x40,0x79,0x41,0x7f,0x49}}, // \xe5\xbe\x81
+{0x5f82,{0x0a,0x7d,0x40,0x7f,0x55,0x7f,0x40}}, // \xe5\xbe\x82
+{0x5f83,{0x0a,0x7d,0x44,0x53,0x7f,0x52,0x42}}, // \xe5\xbe\x83
+{0x5f84,{0x0a,0x7d,0x49,0x5b,0x75,0x5b,0x48}}, // \xe5\xbe\x84
+{0x5f85,{0x0a,0x7d,0x28,0x6a,0x2f,0x7a,0x28}}, // \xe5\xbe\x85
+{0x5f87,{0x0a,0x7d,0x04,0x3f,0x2a,0x3e,0x7e}}, // \xe5\xbe\x87
+{0x5f88,{0x0a,0x7d,0x00,0x7f,0x55,0x35,0x5f}}, // \xe5\xbe\x88
+{0x5f8a,{0x0a,0x7d,0x7f,0x5d,0x55,0x5d,0x7f}}, // \xe5\xbe\x8a
+{0x5f8b,{0x0a,0x7d,0x2a,0x2a,0x7f,0x2e,0x24}}, // \xe5\xbe\x8b
+{0x5f8c,{0x0a,0x7d,0x48,0x5a,0x2d,0x58,0x4c}}, // \xe5\xbe\x8c
+{0x5f90,{0x0a,0x7d,0x54,0x16,0x7d,0x16,0x54}}, // \xe5\xbe\x90
+{0x5f91,{0x0a,0x7d,0x00,0x55,0x5b,0x75,0x5b}}, // \xe5\xbe\x91
+{0x5f92,{0x0a,0x7d,0x48,0x2a,0x7f,0x5a,0x48}}, // \xe5\xbe\x92
+{0x5f93,{0x0a,0x7d,0x42,0x3a,0x43,0x7e,0x4b}}, // \xe5\xbe\x93
+{0x5f97,{0x0a,0x7d,0x14,0x37,0x55,0x7f,0x14}}, // \xe5\xbe\x97
+{0x5f98,{0x0a,0x7d,0x2a,0x7f,0x00,0x7f,0x2a}}, // \xe5\xbe\x98
+{0x5f99,{0x0a,0x7d,0x48,0x2e,0x48,0x7f,0x5a}}, // \xe5\xbe\x99
+{0x5f9e,{0x0a,0x7d,0x44,0x33,0x44,0x7b,0x54}}, // \xe5\xbe\x9e
+{0x5fa0,{0x0a,0x7d,0x4a,0x26,0x7f,0x26,0x4a}}, // \xe5\xbe\xa0
+{0x5fa1,{0x0a,0x7d,0x33,0x3e,0x2a,0x7f,0x1f}}, // \xe5\xbe\xa1
+{0x5fa8,{0x0a,0x7d,0x50,0x5e,0x7b,0x5e,0x50}}, // \xe5\xbe\xa8
+{0x5fa9,{0x0a,0x7d,0x44,0x53,0x2e,0x5e,0x42}}, // \xe5\xbe\xa9
+{0x5faa,{0x0a,0x7d,0x20,0x1e,0x76,0x7e,0x75}}, // \xe5\xbe\xaa
+{0x5fad,{0x0a,0x7d,0x10,0x6a,0x4d,0x7b,0x68}}, // \xe5\xbe\xad
+{0x5fae,{0x0a,0x7d,0x4a,0x3b,0x4a,0x3f,0x5e}}, // \xe5\xbe\xae
+{0x5fb3,{0x0a,0x7d,0x62,0x2e,0x4f,0x4e,0x62}}, // \xe5\xbe\xb3
+{0x5fb4,{0x0a,0x7d,0x2a,0x3b,0x6a,0x3f,0x5e}}, // \xe5\xbe\xb4
+{0x5fb9,{0x0a,0x7d,0x0a,0x77,0x72,0x3f,0x5e}}, // \xe5\xbe\xb9
+{0x5fbc,{0x0a,0x7d,0x2e,0x5f,0x7c,0x23,0x5e}}, // \xe5\xbe\xbc
+{0x5fbd,{0x0a,0x7d,0x2a,0x77,0x2a,0x3f,0x5e}}, // \xe5\xbe\xbd
+{0x5fc3,{0x20,0x18,0x7d,0x42,0x40,0x68,0x10}}, // \xe5\xbf\x83
+{0x5fc5,{0x58,0x40,0x3d,0x52,0x48,0x46,0x58}}, // \xe5\xbf\x85
+{0x5fcc,{0x60,0x3d,0x55,0x55,0x75,0x17,0x60}}, // \xe5\xbf\x8c
+{0x5fcd,{0x60,0x29,0x4b,0x55,0x6b,0x0f,0x60}}, // \xe5\xbf\x8d
+{0x5fd6,{0x06,0x7f,0x02,0x0a,0x52,0x7f,0x02}}, // \xe5\xbf\x96
+{0x5fd7,{0x62,0x2a,0x4a,0x4f,0x6a,0x0a,0x62}}, // \xe5\xbf\x97
+{0x5fd8,{0x62,0x3e,0x4a,0x5b,0x6a,0x1a,0x62}}, // \xe5\xbf\x98
+{0x5fd9,{0x06,0x7f,0x02,0x3e,0x43,0x42,0x42}}, // \xe5\xbf\x99
+{0x5fdc,{0x40,0x3e,0x22,0x76,0x4b,0x62,0x22}}, // \xe5\xbf\x9c
+{0x5fdd,{0x54,0x16,0x6e,0x06,0x4d,0x15,0x54}}, // \xe5\xbf\x9d
+{0x5fe0,{0x60,0x2e,0x4a,0x5f,0x6a,0x0e,0x60}}, // \xe5\xbf\xa0
+{0x5fe4,{0x06,0x7f,0x14,0x13,0x7e,0x12,0x10}}, // \xe5\xbf\xa4
+{0x5feb,{0x06,0x7f,0x48,0x4a,0x3f,0x4e,0x48}}, // \xe5\xbf\xab
+{0x5ff0,{0x06,0x7f,0x2a,0x27,0x72,0x2e,0x28}}, // \xe5\xbf\xb0
+{0x5ff1,{0x06,0x7f,0x46,0x22,0x1f,0x7a,0x46}}, // \xe5\xbf\xb1
+{0x5ff5,{0x64,0x24,0x4a,0x4d,0x5e,0x04,0x64}}, // \xe5\xbf\xb5
+{0x5ff8,{0x06,0x7f,0x49,0x7f,0x49,0x7f,0x48}}, // \xe5\xbf\xb8
+{0x5ffb,{0x06,0x7f,0x40,0x3e,0x0a,0x79,0x08}}, // \xe5\xbf\xbb
+{0x5ffd,{0x64,0x33,0x4e,0x52,0x6e,0x12,0x6e}}, // \xe5\xbf\xbd
+{0x5fff,{0x64,0x32,0x55,0x4c,0x75,0x1e,0x64}}, // \xe5\xbf\xbf
+{0x600e,{0x64,0x34,0x43,0x5e,0x6a,0x0a,0x6a}}, // \xe6\x80\x8e
+{0x600f,{0x06,0x7f,0x48,0x4e,0x3b,0x4e,0x48}}, // \xe6\x80\x8f
+{0x6010,{0x06,0x7f,0x04,0x1b,0x1a,0x42,0x7e}}, // \xe6\x80\x90
+{0x6012,{0x6a,0x2e,0x4b,0x46,0x6b,0x05,0x6b}}, // \xe6\x80\x92
+{0x6015,{0x06,0x7f,0x02,0x7e,0x4b,0x4a,0x7e}}, // \xe6\x80\x95
+{0x6016,{0x06,0x7f,0x0a,0x37,0x12,0x7a,0x32}}, // \xe6\x80\x96
+{0x6019,{0x06,0x7f,0x04,0x74,0x5f,0x74,0x04}}, // \xe6\x80\x99
+{0x601b,{0x06,0x7f,0x00,0x5f,0x55,0x55,0x5f}}, // \xe6\x80\x9b
+{0x601c,{0x06,0x7f,0x14,0x12,0x75,0x16,0x34}}, // \xe6\x80\x9c
+{0x601d,{0x60,0x3f,0x55,0x5f,0x75,0x1f,0x60}}, // \xe6\x80\x9d
+{0x6020,{0x64,0x3c,0x56,0x55,0x74,0x1a,0x64}}, // \xe6\x80\xa0
+{0x6021,{0x06,0x7f,0x08,0x6c,0x6b,0x64,0x08}}, // \xe6\x80\xa1
+{0x6025,{0x62,0x36,0x55,0x55,0x77,0x1c,0x60}}, // \xe6\x80\xa5
+{0x6026,{0x06,0x7f,0x15,0x13,0x7f,0x13,0x15}}, // \xe6\x80\xa6
+{0x6027,{0x06,0x7f,0x44,0x53,0x7f,0x52,0x42}}, // \xe6\x80\xa7
+{0x6028,{0x6a,0x2b,0x45,0x53,0x6f,0x09,0x6b}}, // \xe6\x80\xa8
+{0x6029,{0x06,0x7f,0x40,0x3f,0x05,0x7d,0x57}}, // \xe6\x80\xa9
+{0x602a,{0x06,0x7f,0x49,0x5b,0x75,0x5b,0x48}}, // \xe6\x80\xaa
+{0x602b,{0x06,0x7f,0x5a,0x3f,0x16,0x7f,0x36}}, // \xe6\x80\xab
+{0x602f,{0x06,0x7f,0x48,0x6a,0x5f,0x2a,0x48}}, // \xe6\x80\xaf
+{0x6031,{0x64,0x2b,0x4e,0x5a,0x6e,0x12,0x6e}}, // \xe6\x80\xb1
+{0x603a,{0x06,0x7f,0x28,0x5d,0x7d,0x10,0x28}}, // \xe6\x80\xba
+{0x6041,{0x64,0x3e,0x45,0x56,0x5e,0x15,0x44}}, // \xe6\x81\x81
+{0x6042,{0x06,0x7f,0x04,0x3f,0x2a,0x3e,0x7e}}, // \xe6\x81\x82
+{0x6043,{0x06,0x7f,0x28,0x6a,0x2f,0x7a,0x28}}, // \xe6\x81\x83
+{0x6046,{0x06,0x7f,0x51,0x4f,0x75,0x5d,0x41}}, // \xe6\x81\x86
+{0x604a,{0x06,0x7f,0x20,0x62,0x37,0x62,0x76}}, // \xe6\x81\x8a
+{0x604b,{0x6a,0x22,0x4e,0x43,0x6e,0x02,0x6a}}, // \xe6\x81\x8b
+{0x604d,{0x06,0x7f,0x4a,0x38,0x0f,0x78,0x4a}}, // \xe6\x81\x8d
+{0x6050,{0x69,0x2f,0x45,0x48,0x67,0x0f,0x68}}, // \xe6\x81\x90
+{0x6052,{0x06,0x7f,0x41,0x7f,0x6b,0x7f,0x41}}, // \xe6\x81\x92
+{0x6055,{0x6a,0x2e,0x4b,0x46,0x6f,0x09,0x6f}}, // \xe6\x81\x95
+{0x6059,{0x6a,0x3a,0x4b,0x5e,0x6a,0x1b,0x6a}}, // \xe6\x81\x99
+{0x605a,{0x54,0x36,0x56,0x5f,0x76,0x16,0x54}}, // \xe6\x81\x9a
+{0x605f,{0x06,0x7f,0x04,0x37,0x2a,0x36,0x7e}}, // \xe6\x81\x9f
+{0x6060,{0x06,0x7f,0x0a,0x7e,0x53,0x7a,0x52}}, // \xe6\x81\xa0
+{0x6062,{0x06,0x7f,0x40,0x3f,0x4d,0x3f,0x45}}, // \xe6\x81\xa2
+{0x6063,{0x69,0x20,0x44,0x4b,0x66,0x0a,0x66}}, // \xe6\x81\xa3
+{0x6064,{0x06,0x7f,0x40,0x7e,0x43,0x7e,0x7e}}, // \xe6\x81\xa4
+{0x6065,{0x21,0x3f,0x7f,0x18,0x7d,0x42,0x68}}, // \xe6\x81\xa5
+{0x6068,{0x06,0x7f,0x02,0x7f,0x55,0x35,0x5f}}, // \xe6\x81\xa8
+{0x6069,{0x60,0x3f,0x4d,0x5b,0x6d,0x1f,0x60}}, // \xe6\x81\xa9
+{0x606a,{0x06,0x7f,0x10,0x6a,0x65,0x6b,0x10}}, // \xe6\x81\xaa
+{0x606b,{0x06,0x7f,0x02,0x7f,0x35,0x35,0x7f}}, // \xe6\x81\xab
+{0x606c,{0x06,0x7f,0x04,0x76,0x5e,0x75,0x04}}, // \xe6\x81\xac
+{0x606d,{0x48,0x1a,0x6f,0x0a,0x4f,0x1a,0x48}}, // \xe6\x81\xad
+{0x606f,{0x60,0x3e,0x5a,0x5b,0x7a,0x1e,0x60}}, // \xe6\x81\xaf
+{0x6070,{0x06,0x7f,0x04,0x72,0x55,0x76,0x04}}, // \xe6\x81\xb0
+{0x6075,{0x62,0x3e,0x56,0x5f,0x76,0x1e,0x62}}, // \xe6\x81\xb5
+{0x6077,{0x64,0x3e,0x53,0x4a,0x5f,0x0a,0x52}}, // \xe6\x81\xb7
+{0x6081,{0x06,0x7f,0x02,0x78,0x2b,0x2b,0x78}}, // \xe6\x82\x81
+{0x6083,{0x06,0x7f,0x7f,0x55,0x7f,0x55,0x7f}}, // \xe6\x82\x83
+{0x6084,{0x06,0x7f,0x02,0x7d,0x2a,0x7d,0x02}}, // \xe6\x82\x84
+{0x6089,{0x55,0x37,0x4d,0x5f,0x6d,0x17,0x55}}, // \xe6\x82\x89
+{0x608b,{0x06,0x7f,0x12,0x76,0x6b,0x76,0x12}}, // \xe6\x82\x8b
+{0x608c,{0x06,0x7f,0x5a,0x2b,0x7e,0x2b,0x6e}}, // \xe6\x82\x8c
+{0x608d,{0x06,0x7f,0x28,0x2f,0x7d,0x2f,0x28}}, // \xe6\x82\x8d
+{0x6092,{0x06,0x7f,0x3c,0x57,0x5d,0x57,0x5c}}, // \xe6\x82\x92
+{0x6094,{0x06,0x7f,0x08,0x3b,0x2e,0x7e,0x2a}}, // \xe6\x82\x94
+{0x6096,{0x06,0x7f,0x2c,0x26,0x6f,0x3e,0x2c}}, // \xe6\x82\x96
+{0x6097,{0x06,0x7f,0x5c,0x36,0x1d,0x77,0x5c}}, // \xe6\x82\x97
+{0x609a,{0x06,0x7f,0x42,0x2e,0x7f,0x2a,0x4e}}, // \xe6\x82\x9a
+{0x609b,{0x06,0x7f,0x2a,0x57,0x32,0x5e,0x4b}}, // \xe6\x82\x9b
+{0x609f,{0x06,0x7f,0x14,0x7d,0x57,0x7d,0x10}}, // \xe6\x82\x9f
+{0x60a0,{0x64,0x2e,0x41,0x4e,0x6a,0x05,0x6b}}, // \xe6\x82\xa0
+{0x60a3,{0x60,0x38,0x5e,0x5f,0x7e,0x18,0x60}}, // \xe6\x82\xa3
+{0x60a6,{0x06,0x7f,0x4e,0x3b,0x0a,0x7b,0x4e}}, // \xe6\x82\xa6
+{0x60a7,{0x06,0x7f,0x35,0x7f,0x15,0x4e,0x7f}}, // \xe6\x82\xa7
+{0x60a9,{0x06,0x7f,0x79,0x54,0x49,0x54,0x7b}}, // \xe6\x82\xa9
+{0x60aa,{0x69,0x3f,0x4f,0x5f,0x6f,0x1f,0x69}}, // \xe6\x82\xaa
+{0x60b2,{0x6a,0x2a,0x5f,0x40,0x5f,0x0a,0x6a}}, // \xe6\x82\xb2
+{0x60b3,{0x60,0x3a,0x52,0x5f,0x7e,0x12,0x60}}, // \xe6\x82\xb3
+{0x60b4,{0x06,0x7f,0x32,0x2e,0x73,0x2e,0x32}}, // \xe6\x82\xb4
+{0x60b5,{0x06,0x7f,0x10,0x7f,0x55,0x35,0x51}}, // \xe6\x82\xb5
+{0x60b6,{0x7f,0x25,0x77,0x48,0x67,0x25,0x7f}}, // \xe6\x82\xb6
+{0x60b8,{0x06,0x7f,0x2a,0x27,0x6f,0x37,0x2a}}, // \xe6\x82\xb8
+{0x60bc,{0x06,0x7f,0x20,0x3c,0x77,0x3e,0x22}}, // \xe6\x82\xbc
+{0x60bd,{0x06,0x7f,0x52,0x7a,0x5f,0x3e,0x52}}, // \xe6\x82\xbd
+{0x60c5,{0x06,0x7f,0x08,0x7a,0x2f,0x7a,0x08}}, // \xe6\x83\x85
+{0x60c6,{0x06,0x7f,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe6\x83\x86
+{0x60c7,{0x06,0x7f,0x22,0x2e,0x6b,0x3e,0x22}}, // \xe6\x83\x87
+{0x60d1,{0x6a,0x2e,0x4e,0x42,0x6b,0x06,0x6b}}, // \xe6\x83\x91
+{0x60d3,{0x06,0x7f,0x16,0x6d,0x56,0x4d,0x16}}, // \xe6\x83\x93
+{0x60d8,{0x06,0x7f,0x7f,0x0d,0x39,0x2d,0x7f}}, // \xe6\x83\x98
+{0x60da,{0x06,0x7f,0x64,0x33,0x4e,0x52,0x6e}}, // \xe6\x83\x9a
+{0x60dc,{0x06,0x7f,0x0a,0x7f,0x5a,0x7f,0x0a}}, // \xe6\x83\x9c
+{0x60df,{0x06,0x7f,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe6\x83\x9f
+{0x60e0,{0x62,0x3e,0x5a,0x5f,0x6a,0x1e,0x62}}, // \xe6\x83\xa0
+{0x60e1,{0x69,0x3f,0x4b,0x59,0x6b,0x1f,0x69}}, // \xe6\x83\xa1
+{0x60e3,{0x6b,0x3f,0x4a,0x54,0x6b,0x16,0x5e}}, // \xe6\x83\xa3
+{0x60e7,{0x06,0x7f,0x50,0x1f,0x15,0x1f,0x50}}, // \xe6\x83\xa7
+{0x60e8,{0x06,0x7f,0x14,0x4e,0x55,0x2a,0x14}}, // \xe6\x83\xa8
+{0x60f0,{0x06,0x7f,0x0a,0x77,0x3a,0x7e,0x0a}}, // \xe6\x83\xb0
+{0x60f1,{0x06,0x7f,0x00,0x7a,0x6d,0x5a,0x7d}}, // \xe6\x83\xb1
+{0x60f3,{0x6a,0x26,0x5f,0x4a,0x5f,0x15,0x5f}}, // \xe6\x83\xb3
+{0x60f4,{0x06,0x7f,0x6b,0x3a,0x6b,0x2a,0x6b}}, // \xe6\x83\xb4
+{0x60f6,{0x06,0x7f,0x50,0x5e,0x7b,0x5e,0x50}}, // \xe6\x83\xb6
+{0x60f7,{0x6a,0x2a,0x47,0x5b,0x7b,0x06,0x6a}}, // \xe6\x83\xb7
+{0x60f9,{0x6a,0x3a,0x4f,0x5a,0x7b,0x1a,0x6a}}, // \xe6\x83\xb9
+{0x60fa,{0x06,0x7f,0x48,0x57,0x7d,0x57,0x44}}, // \xe6\x83\xba
+{0x60fb,{0x06,0x7f,0x5f,0x15,0x5f,0x0e,0x7f}}, // \xe6\x83\xbb
+{0x6100,{0x06,0x7f,0x35,0x7f,0x4c,0x3f,0x44}}, // \xe6\x84\x80
+{0x6101,{0x6a,0x27,0x4f,0x47,0x6a,0x07,0x6a}}, // \xe6\x84\x81
+{0x6103,{0x06,0x7f,0x46,0x72,0x57,0x76,0x46}}, // \xe6\x84\x83
+{0x6106,{0x6a,0x3d,0x40,0x55,0x60,0x15,0x5d}}, // \xe6\x84\x86
+{0x6108,{0x64,0x3c,0x5a,0x5d,0x66,0x1c,0x64}}, // \xe6\x84\x88
+{0x6109,{0x06,0x7f,0x04,0x72,0x75,0x06,0x74}}, // \xe6\x84\x89
+{0x610d,{0x6f,0x2b,0x47,0x4b,0x6a,0x05,0x6b}}, // \xe6\x84\x8d
+{0x610e,{0x06,0x7f,0x44,0x53,0x2e,0x5e,0x42}}, // \xe6\x84\x8e
+{0x610f,{0x68,0x2a,0x5e,0x5b,0x7e,0x0a,0x68}}, // \xe6\x84\x8f
+{0x6115,{0x06,0x7f,0x0b,0x1f,0x1c,0x5f,0x6b}}, // \xe6\x84\x95
+{0x611a,{0x60,0x3c,0x57,0x5f,0x6f,0x1c,0x60}}, // \xe6\x84\x9a
+{0x611b,{0x4d,0x57,0x2d,0x57,0x3d,0x57,0x4d}}, // \xe6\x84\x9b
+{0x611f,{0x68,0x26,0x4e,0x4e,0x62,0x07,0x6a}}, // \xe6\x84\x9f
+{0x6121,{0x06,0x7f,0x64,0x2b,0x4e,0x52,0x6e}}, // \xe6\x84\xa1
+{0x6127,{0x06,0x7f,0x5e,0x2a,0x7f,0x6a,0x5e}}, // \xe6\x84\xa7
+{0x6128,{0x62,0x2e,0x47,0x4e,0x6b,0x05,0x6b}}, // \xe6\x84\xa8
+{0x612c,{0x57,0x2e,0x47,0x48,0x67,0x05,0x6f}}, // \xe6\x84\xac
+{0x6134,{0x06,0x7f,0x24,0x1e,0x6d,0x62,0x04}}, // \xe6\x84\xb4
+{0x613c,{0x06,0x7f,0x58,0x13,0x1e,0x1e,0x52}}, // \xe6\x84\xbc
+{0x613d,{0x06,0x7f,0x12,0x3e,0x57,0x7e,0x13}}, // \xe6\x84\xbd
+{0x613e,{0x06,0x7f,0x5b,0x2e,0x7e,0x2e,0x7a}}, // \xe6\x84\xbe
+{0x613f,{0x50,0x2f,0x49,0x57,0x7f,0x07,0x69}}, // \xe6\x84\xbf
+{0x6142,{0x55,0x20,0x5d,0x4d,0x5d,0x0f,0x5d}}, // \xe6\x85\x82
+{0x6144,{0x06,0x7f,0x51,0x37,0x7f,0x37,0x51}}, // \xe6\x85\x84
+{0x6147,{0x6e,0x26,0x4d,0x40,0x6b,0x05,0x6b}}, // \xe6\x85\x87
+{0x6148,{0x62,0x2a,0x57,0x42,0x6a,0x17,0x62}}, // \xe6\x85\x88
+{0x614a,{0x06,0x7f,0x52,0x37,0x7e,0x3f,0x4a}}, // \xe6\x85\x8a
+{0x614b,{0x62,0x3f,0x4a,0x5f,0x60,0x1b,0x52}}, // \xe6\x85\x8b
+{0x614c,{0x06,0x7f,0x42,0x2f,0x6a,0x0b,0x62}}, // \xe6\x85\x8c
+{0x614d,{0x06,0x7f,0x02,0x4f,0x6d,0x6b,0x4f}}, // \xe6\x85\x8d
+{0x614e,{0x06,0x7f,0x52,0x1e,0x1f,0x1e,0x52}}, // \xe6\x85\x8e
+{0x6153,{0x06,0x7f,0x51,0x17,0x77,0x17,0x51}}, // \xe6\x85\x93
+{0x6155,{0x4a,0x1a,0x6f,0x0e,0x4f,0x1a,0x4a}}, // \xe6\x85\x95
+{0x6158,{0x06,0x7f,0x1a,0x4f,0x5a,0x2d,0x1a}}, // \xe6\x85\x98
+{0x6159,{0x6a,0x2e,0x5f,0x4a,0x67,0x1d,0x45}}, // \xe6\x85\x99
+{0x615a,{0x06,0x7f,0x2d,0x7f,0x3e,0x0a,0x79}}, // \xe6\x85\x9a
+{0x615d,{0x5f,0x35,0x5f,0x5d,0x77,0x1d,0x55}}, // \xe6\x85\x9d
+{0x615f,{0x06,0x7f,0x2d,0x3f,0x62,0x1f,0x7e}}, // \xe6\x85\x9f
+{0x6162,{0x06,0x7f,0x4c,0x5f,0x2d,0x5f,0x4c}}, // \xe6\x85\xa2
+{0x6163,{0x06,0x7f,0x42,0x3f,0x3d,0x3f,0x42}}, // \xe6\x85\xa3
+{0x6165,{0x06,0x7f,0x75,0x48,0x7b,0x6f,0x7a}}, // \xe6\x85\xa5
+{0x6167,{0x6a,0x2f,0x5a,0x58,0x7a,0x1f,0x6a}}, // \xe6\x85\xa7
+{0x6168,{0x06,0x7f,0x3e,0x2e,0x49,0x3f,0x4f}}, // \xe6\x85\xa8
+{0x616b,{0x6a,0x3d,0x52,0x4d,0x5e,0x15,0x52}}, // \xe6\x85\xab
+{0x616e,{0x40,0x3c,0x64,0x3c,0x5f,0x5a,0x6a}}, // \xe6\x85\xae
+{0x616f,{0x06,0x7f,0x24,0x5f,0x3a,0x5e,0x72}}, // \xe6\x85\xaf
+{0x6170,{0x50,0x2f,0x5b,0x4b,0x66,0x12,0x5f}}, // \xe6\x85\xb0
+{0x6171,{0x06,0x7f,0x12,0x3e,0x5f,0x76,0x1a}}, // \xe6\x85\xb1
+{0x6173,{0x06,0x7f,0x47,0x57,0x7b,0x55,0x4b}}, // \xe6\x85\xb3
+{0x6174,{0x06,0x7f,0x09,0x65,0x6f,0x75,0x6f}}, // \xe6\x85\xb4
+{0x6175,{0x06,0x7f,0x3e,0x7a,0x2e,0x7f,0x7a}}, // \xe6\x85\xb5
+{0x6176,{0x40,0x3e,0x5a,0x5e,0x3b,0x6e,0x5a}}, // \xe6\x85\xb6
+{0x6177,{0x06,0x7f,0x3e,0x52,0x7f,0x2e,0x56}}, // \xe6\x85\xb7
+{0x617e,{0x64,0x3d,0x5a,0x45,0x53,0x0e,0x56}}, // \xe6\x85\xbe
+{0x6182,{0x59,0x59,0x5f,0x2f,0x5f,0x59,0x59}}, // \xe6\x86\x82
+{0x6187,{0x65,0x2f,0x4d,0x42,0x6f,0x0a,0x6f}}, // \xe6\x86\x87
+{0x618a,{0x64,0x3f,0x4a,0x5f,0x6a,0x1f,0x5a}}, // \xe6\x86\x8a
+{0x618e,{0x06,0x7f,0x0e,0x7b,0x5e,0x7b,0x0e}}, // \xe6\x86\x8e
+{0x6190,{0x06,0x7f,0x55,0x32,0x27,0x72,0x25}}, // \xe6\x86\x90
+{0x6191,{0x69,0x20,0x57,0x45,0x57,0x05,0x5d}}, // \xe6\x86\x91
+{0x6194,{0x06,0x7f,0x44,0x1f,0x52,0x1f,0x52}}, // \xe6\x86\x94
+{0x6196,{0x52,0x2e,0x5f,0x4e,0x52,0x0f,0x52}}, // \xe6\x86\x96
+{0x6199,{0x6a,0x3a,0x5e,0x5f,0x7e,0x1a,0x6a}}, // \xe6\x86\x99
+{0x619a,{0x06,0x7f,0x23,0x3f,0x7c,0x3f,0x23}}, // \xe6\x86\x9a
+{0x61a4,{0x06,0x7f,0x4a,0x3e,0x2b,0x3e,0x4a}}, // \xe6\x86\xa4
+{0x61a7,{0x06,0x7f,0x4a,0x5e,0x7b,0x5e,0x4a}}, // \xe6\x86\xa7
+{0x61a9,{0x65,0x2f,0x4d,0x45,0x6e,0x0b,0x6e}}, // \xe6\x86\xa9
+{0x61ab,{0x06,0x7f,0x7f,0x5b,0x2c,0x5b,0x7f}}, // \xe6\x86\xab
+{0x61ac,{0x06,0x7f,0x44,0x1f,0x75,0x1f,0x44}}, // \xe6\x86\xac
+{0x61ae,{0x06,0x7f,0x6b,0x3e,0x6a,0x3e,0x6a}}, // \xe6\x86\xae
+{0x61b2,{0x66,0x2a,0x5a,0x5f,0x7a,0x0a,0x66}}, // \xe6\x86\xb2
+{0x61b6,{0x06,0x7f,0x6a,0x3e,0x5b,0x5e,0x6a}}, // \xe6\x86\xb6
+{0x61ba,{0x06,0x7f,0x3c,0x2e,0x75,0x7f,0x2c}}, // \xe6\x86\xba
+{0x61be,{0x06,0x7f,0x6e,0x2e,0x42,0x47,0x6a}}, // \xe6\x86\xbe
+{0x61c3,{0x52,0x37,0x5e,0x57,0x6a,0x07,0x6e}}, // \xe6\x87\x83
+{0x61c6,{0x06,0x7f,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe6\x87\x86
+{0x61c7,{0x6a,0x36,0x5d,0x42,0x5f,0x0b,0x54}}, // \xe6\x87\x87
+{0x61c8,{0x06,0x7f,0x42,0x3d,0x7f,0x31,0x7b}}, // \xe6\x87\x88
+{0x61c9,{0x40,0x3e,0x5a,0x26,0x5b,0x5e,0x76}}, // \xe6\x87\x89
+{0x61ca,{0x06,0x7f,0x50,0x5e,0x3f,0x56,0x5e}}, // \xe6\x87\x8a
+{0x61cb,{0x6a,0x3f,0x49,0x5d,0x6b,0x1f,0x6a}}, // \xe6\x87\x8b
+{0x61cc,{0x06,0x7f,0x2b,0x3b,0x6f,0x3b,0x2b}}, // \xe6\x87\x8c
+{0x61cd,{0x06,0x7f,0x52,0x3e,0x7b,0x3e,0x52}}, // \xe6\x87\x8d
+{0x61d0,{0x06,0x7f,0x32,0x7e,0x5f,0x3a,0x5e}}, // \xe6\x87\x90
+{0x61e3,{0x55,0x20,0x5a,0x4f,0x5a,0x0f,0x5a}}, // \xe6\x87\xa3
+{0x61e6,{0x06,0x7f,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe6\x87\xa6
+{0x61f2,{0x6a,0x3d,0x4a,0x5b,0x6a,0x0f,0x56}}, // \xe6\x87\xb2
+{0x61f4,{0x06,0x7f,0x54,0x7f,0x54,0x3f,0x55}}, // \xe6\x87\xb4
+{0x61f6,{0x06,0x7f,0x2e,0x7f,0x5a,0x19,0x5b}}, // \xe6\x87\xb6
+{0x61f7,{0x06,0x7f,0x2a,0x6e,0x5f,0x2a,0x4e}}, // \xe6\x87\xb7
+{0x61f8,{0x6e,0x3b,0x4b,0x50,0x6d,0x1b,0x69}}, // \xe6\x87\xb8
+{0x61fa,{0x06,0x7f,0x55,0x7e,0x55,0x3f,0x55}}, // \xe6\x87\xba
+{0x61fc,{0x06,0x7f,0x23,0x7b,0x50,0x7b,0x53}}, // \xe6\x87\xbc
+{0x61fd,{0x06,0x7f,0x26,0x7f,0x52,0x7f,0x56}}, // \xe6\x87\xbd
+{0x61fe,{0x06,0x7f,0x30,0x75,0x27,0x3f,0x75}}, // \xe6\x87\xbe
+{0x61ff,{0x5a,0x77,0x5a,0x65,0x2b,0x46,0x6a}}, // \xe6\x87\xbf
+{0x6200,{0x6a,0x3d,0x4a,0x57,0x6a,0x1d,0x68}}, // \xe6\x88\x80
+{0x6208,{0x42,0x42,0x42,0x2f,0x32,0x4b,0x62}}, // \xe6\x88\x88
+{0x6209,{0x20,0x3e,0x12,0x42,0x5f,0x22,0x53}}, // \xe6\x88\x89
+{0x620a,{0x40,0x3e,0x42,0x42,0x2f,0x32,0x4b}}, // \xe6\x88\x8a
+{0x620c,{0x40,0x3e,0x0a,0x4a,0x5f,0x22,0x53}}, // \xe6\x88\x8c
+{0x620d,{0x40,0x3e,0x0a,0x52,0x5f,0x22,0x53}}, // \xe6\x88\x8d
+{0x620e,{0x52,0x3a,0x12,0x42,0x5f,0x22,0x53}}, // \xe6\x88\x8e
+{0x6210,{0x40,0x3e,0x4a,0x3a,0x42,0x3f,0x52}}, // \xe6\x88\x90
+{0x6211,{0x14,0x56,0x7e,0x15,0x5f,0x24,0x55}}, // \xe6\x88\x91
+{0x6212,{0x52,0x3a,0x12,0x7a,0x52,0x3f,0x52}}, // \xe6\x88\x92
+{0x6214,{0x12,0x5a,0x5a,0x37,0x36,0x5b,0x6c}}, // \xe6\x88\x94
+{0x6216,{0x42,0x5a,0x1a,0x42,0x5f,0x22,0x53}}, // \xe6\x88\x96
+{0x621a,{0x40,0x3e,0x22,0x7e,0x2a,0x3f,0x52}}, // \xe6\x88\x9a
+{0x621b,{0x11,0x51,0x5f,0x3b,0x3b,0x5f,0x69}}, // \xe6\x88\x9b
+{0x621d,{0x5f,0x15,0x5f,0x04,0x5f,0x24,0x55}}, // \xe6\x88\x9d
+{0x621e,{0x19,0x49,0x5f,0x3f,0x3f,0x49,0x59}}, // \xe6\x88\x9e
+{0x621f,{0x2d,0x77,0x2d,0x44,0x5f,0x24,0x55}}, // \xe6\x88\x9f
+{0x6221,{0x72,0x5f,0x72,0x5f,0x44,0x3f,0x55}}, // \xe6\x88\xa1
+{0x6226,{0x2d,0x2c,0x7d,0x2c,0x47,0x3c,0x55}}, // \xe6\x88\xa6
+{0x622a,{0x24,0x76,0x5f,0x76,0x5f,0x24,0x55}}, // \xe6\x88\xaa
+{0x622e,{0x11,0x4b,0x55,0x2b,0x44,0x3f,0x55}}, // \xe6\x88\xae
+{0x622f,{0x7c,0x44,0x7f,0x2a,0x44,0x3f,0x55}}, // \xe6\x88\xaf
+{0x6230,{0x23,0x3f,0x7c,0x3f,0x23,0x3f,0x55}}, // \xe6\x88\xb0
+{0x6232,{0x7c,0x5c,0x6f,0x5a,0x44,0x3f,0x55}}, // \xe6\x88\xb2
+{0x6233,{0x21,0x7b,0x71,0x5b,0x44,0x3f,0x55}}, // \xe6\x88\xb3
+{0x6234,{0x54,0x1e,0x5f,0x16,0x5f,0x24,0x55}}, // \xe6\x88\xb4
+{0x6238,{0x41,0x3d,0x15,0x15,0x15,0x1d,0x01}}, // \xe6\x88\xb8
+{0x623b,{0x41,0x3f,0x55,0x55,0x3d,0x57,0x51}}, // \xe6\x88\xbb
+{0x623f,{0x41,0x3f,0x55,0x35,0x5d,0x77,0x11}}, // \xe6\x88\xbf
+{0x6240,{0x41,0x3d,0x15,0x5d,0x3e,0x0a,0x79}}, // \xe6\x89\x80
+{0x6241,{0x41,0x3f,0x75,0x35,0x75,0x37,0x71}}, // \xe6\x89\x81
+{0x6247,{0x41,0x3f,0x5b,0x2b,0x7b,0x2b,0x79}}, // \xe6\x89\x87
+{0x6248,{0x41,0x3f,0x7d,0x55,0x5d,0x57,0x5d}}, // \xe6\x89\x88
+{0x6249,{0x41,0x3f,0x6d,0x3d,0x05,0x7f,0x29}}, // \xe6\x89\x89
+{0x624b,{0x14,0x16,0x56,0x7e,0x15,0x15,0x14}}, // \xe6\x89\x8b
+{0x624d,{0x22,0x22,0x22,0x52,0x7f,0x0a,0x02}}, // \xe6\x89\x8d
+{0x624e,{0x52,0x7f,0x0a,0x00,0x7f,0x40,0x60}}, // \xe6\x89\x8e
+{0x6253,{0x52,0x7f,0x0a,0x01,0x41,0x7f,0x01}}, // \xe6\x89\x93
+{0x6255,{0x52,0x7f,0x4a,0x70,0x4f,0x20,0x40}}, // \xe6\x89\x95
+{0x6258,{0x52,0x7f,0x08,0x0a,0x7e,0x49,0x68}}, // \xe6\x89\x98
+{0x625b,{0x52,0x7f,0x0a,0x40,0x42,0x7e,0x42}}, // \xe6\x89\x9b
+{0x625e,{0x52,0x7f,0x08,0x09,0x7f,0x09,0x08}}, // \xe6\x89\x9e
+{0x6260,{0x52,0x7f,0x44,0x29,0x13,0x29,0x47}}, // \xe6\x89\xa0
+{0x6263,{0x52,0x7f,0x0a,0x7e,0x42,0x42,0x7e}}, // \xe6\x89\xa3
+{0x6268,{0x52,0x7f,0x0a,0x45,0x3f,0x51,0x7f}}, // \xe6\x89\xa8
+{0x626e,{0x52,0x7f,0x44,0x3b,0x48,0x7b,0x04}}, // \xe6\x89\xae
+{0x6271,{0x52,0x7f,0x21,0x5f,0x51,0x27,0x5c}}, // \xe6\x89\xb1
+{0x6276,{0x52,0x7f,0x48,0x2a,0x1f,0x2a,0x48}}, // \xe6\x89\xb6
+{0x6279,{0x52,0x7f,0x40,0x7f,0x24,0x7f,0x44}}, // \xe6\x89\xb9
+{0x627c,{0x52,0x7f,0x20,0x1f,0x7d,0x45,0x5d}}, // \xe6\x89\xbc
+{0x627e,{0x52,0x7f,0x0a,0x44,0x5f,0x24,0x55}}, // \xe6\x89\xbe
+{0x627f,{0x24,0x1c,0x29,0x7d,0x2b,0x18,0x24}}, // \xe6\x89\xbf
+{0x6280,{0x52,0x7f,0x4a,0x5a,0x2f,0x5a,0x42}}, // \xe6\x8a\x80
+{0x6282,{0x52,0x7f,0x0a,0x41,0x49,0x7f,0x49}}, // \xe6\x8a\x82
+{0x6283,{0x52,0x7f,0x02,0x02,0x7f,0x0a,0x12}}, // \xe6\x8a\x83
+{0x6284,{0x52,0x7f,0x08,0x46,0x5f,0x22,0x14}}, // \xe6\x8a\x84
+{0x6289,{0x52,0x7f,0x48,0x4a,0x3f,0x4e,0x48}}, // \xe6\x8a\x89
+{0x628a,{0x52,0x7f,0x3f,0x49,0x4f,0x49,0x6f}}, // \xe6\x8a\x8a
+{0x6291,{0x52,0x7f,0x3e,0x11,0x7e,0x02,0x1e}}, // \xe6\x8a\x91
+{0x6292,{0x52,0x7f,0x09,0x4b,0x7d,0x0b,0x18}}, // \xe6\x8a\x92
+{0x6293,{0x52,0x7f,0x3e,0x02,0x7e,0x3d,0x40}}, // \xe6\x8a\x93
+{0x6294,{0x52,0x7f,0x11,0x09,0x7f,0x09,0x11}}, // \xe6\x8a\x94
+{0x6295,{0x52,0x7f,0x44,0x5b,0x29,0x5f,0x44}}, // \xe6\x8a\x95
+{0x6296,{0x52,0x7f,0x20,0x2a,0x20,0x7f,0x10}}, // \xe6\x8a\x96
+{0x6297,{0x52,0x7f,0x42,0x3a,0x0b,0x7a,0x42}}, // \xe6\x8a\x97
+{0x6298,{0x52,0x7f,0x20,0x1e,0x0a,0x79,0x08}}, // \xe6\x8a\x98
+{0x629b,{0x52,0x7f,0x42,0x3f,0x52,0x4f,0x5e}}, // \xe6\x8a\x9b
+{0x629c,{0x52,0x7f,0x22,0x5f,0x2a,0x5a,0x42}}, // \xe6\x8a\x9c
+{0x629e,{0x52,0x7f,0x40,0x3f,0x05,0x1d,0x67}}, // \xe6\x8a\x9e
+{0x62ab,{0x52,0x7f,0x3e,0x5a,0x2f,0x5a,0x46}}, // \xe6\x8a\xab
+{0x62ac,{0x52,0x7f,0x08,0x6c,0x6b,0x64,0x08}}, // \xe6\x8a\xac
+{0x62b1,{0x52,0x7f,0x04,0x77,0x5e,0x42,0x5e}}, // \xe6\x8a\xb1
+{0x62b5,{0x52,0x7f,0x00,0x7e,0x4a,0x5e,0x69}}, // \xe6\x8a\xb5
+{0x62b9,{0x52,0x7f,0x42,0x2a,0x7f,0x2a,0x42}}, // \xe6\x8a\xb9
+{0x62bb,{0x52,0x7f,0x3e,0x2a,0x7f,0x2a,0x3e}}, // \xe6\x8a\xbb
+{0x62bc,{0x52,0x7f,0x1f,0x15,0x7f,0x15,0x1f}}, // \xe6\x8a\xbc
+{0x62bd,{0x52,0x7f,0x7e,0x4a,0x7f,0x4a,0x7e}}, // \xe6\x8a\xbd
+{0x62c2,{0x52,0x7f,0x5a,0x3f,0x16,0x7f,0x36}}, // \xe6\x8b\x82
+{0x62c5,{0x52,0x7f,0x0a,0x5f,0x55,0x55,0x5f}}, // \xe6\x8b\x85
+{0x62c6,{0x52,0x7f,0x40,0x3e,0x1a,0x79,0x28}}, // \xe6\x8b\x86
+{0x62c7,{0x52,0x7f,0x38,0x2f,0x69,0x7f,0x28}}, // \xe6\x8b\x87
+{0x62c8,{0x52,0x7f,0x0a,0x70,0x5f,0x54,0x74}}, // \xe6\x8b\x88
+{0x62c9,{0x52,0x7f,0x42,0x7e,0x63,0x5e,0x42}}, // \xe6\x8b\x89
+{0x62ca,{0x52,0x7f,0x04,0x7e,0x09,0x42,0x7f}}, // \xe6\x8b\x8a
+{0x62cc,{0x52,0x7f,0x2a,0x29,0x7c,0x29,0x2a}}, // \xe6\x8b\x8c
+{0x62cd,{0x52,0x7f,0x0a,0x7e,0x4b,0x4a,0x7e}}, // \xe6\x8b\x8d
+{0x62cf,{0x2a,0x3e,0x7b,0x76,0x3b,0x35,0x2b}}, // \xe6\x8b\x8f
+{0x62d0,{0x52,0x7f,0x0a,0x57,0x35,0x55,0x77}}, // \xe6\x8b\x90
+{0x62d1,{0x52,0x7f,0x02,0x7f,0x4a,0x7f,0x02}}, // \xe6\x8b\x91
+{0x62d2,{0x52,0x7f,0x0a,0x7f,0x55,0x55,0x5d}}, // \xe6\x8b\x92
+{0x62d3,{0x52,0x7f,0x0a,0x11,0x7f,0x49,0x79}}, // \xe6\x8b\x93
+{0x62d4,{0x52,0x7f,0x0a,0x22,0x5f,0x22,0x5b}}, // \xe6\x8b\x94
+{0x62d7,{0x52,0x7f,0x64,0x5b,0x64,0x1f,0x7e}}, // \xe6\x8b\x97
+{0x62d8,{0x52,0x7f,0x04,0x1b,0x1a,0x42,0x7e}}, // \xe6\x8b\x98
+{0x62d9,{0x52,0x7f,0x76,0x44,0x7f,0x44,0x76}}, // \xe6\x8b\x99
+{0x62db,{0x52,0x7f,0x0a,0x75,0x53,0x59,0x7f}}, // \xe6\x8b\x9b
+{0x62dc,{0x56,0x3e,0x15,0x21,0x2b,0x7f,0x2b}}, // \xe6\x8b\x9c
+{0x62dd,{0x52,0x7f,0x21,0x2b,0x7f,0x2b,0x21}}, // \xe6\x8b\x9d
+{0x62e0,{0x52,0x7f,0x4c,0x33,0x5e,0x42,0x5e}}, // \xe6\x8b\xa0
+{0x62e1,{0x52,0x7f,0x20,0x1e,0x62,0x5b,0x62}}, // \xe6\x8b\xa1
+{0x62ec,{0x52,0x7f,0x04,0x76,0x5e,0x75,0x04}}, // \xe6\x8b\xac
+{0x62ed,{0x52,0x7f,0x54,0x74,0x57,0x3c,0x45}}, // \xe6\x8b\xad
+{0x62ee,{0x52,0x7f,0x02,0x6a,0x6f,0x6a,0x02}}, // \xe6\x8b\xae
+{0x62ef,{0x52,0x7f,0x54,0x4d,0x7d,0x4b,0x54}}, // \xe6\x8b\xaf
+{0x62f1,{0x52,0x7f,0x52,0x1f,0x12,0x1f,0x52}}, // \xe6\x8b\xb1
+{0x62f3,{0x14,0x2d,0x76,0x77,0x36,0x2d,0x14}}, // \xe6\x8b\xb3
+{0x62f5,{0x52,0x7f,0x0a,0x7e,0x23,0x76,0x2e}}, // \xe6\x8b\xb5
+{0x62f6,{0x52,0x7f,0x0a,0x52,0x5d,0x2a,0x1d}}, // \xe6\x8b\xb6
+{0x62f7,{0x52,0x7f,0x28,0x1a,0x3f,0x2a,0x69}}, // \xe6\x8b\xb7
+{0x62fe,{0x52,0x7f,0x04,0x72,0x55,0x76,0x04}}, // \xe6\x8b\xbe
+{0x62ff,{0x24,0x34,0x7e,0x7d,0x3e,0x34,0x24}}, // \xe6\x8b\xbf
+{0x6301,{0x52,0x7f,0x28,0x6a,0x2f,0x7a,0x28}}, // \xe6\x8c\x81
+{0x6302,{0x52,0x7f,0x48,0x5a,0x7f,0x5a,0x48}}, // \xe6\x8c\x82
+{0x6307,{0x52,0x7f,0x00,0x6f,0x6a,0x6a,0x6d}}, // \xe6\x8c\x87
+{0x6308,{0x2a,0x3f,0x76,0x70,0x39,0x37,0x2f}}, // \xe6\x8c\x88
+{0x6309,{0x52,0x7f,0x4e,0x5a,0x2f,0x3a,0x4e}}, // \xe6\x8c\x89
+{0x630c,{0x52,0x7f,0x10,0x6a,0x65,0x6b,0x10}}, // \xe6\x8c\x8c
+{0x6311,{0x52,0x7f,0x4a,0x3f,0x00,0x7f,0x4a}}, // \xe6\x8c\x91
+{0x6319,{0x2a,0x37,0x7a,0x7b,0x3a,0x37,0x2a}}, // \xe6\x8c\x99
+{0x631f,{0x52,0x7f,0x5a,0x52,0x3f,0x52,0x5a}}, // \xe6\x8c\x9f
+{0x6327,{0x52,0x7f,0x29,0x15,0x7f,0x15,0x7f}}, // \xe6\x8c\xa7
+{0x6328,{0x52,0x7f,0x0a,0x56,0x5d,0x34,0x56}}, // \xe6\x8c\xa8
+{0x632b,{0x52,0x7f,0x44,0x53,0x7c,0x53,0x44}}, // \xe6\x8c\xab
+{0x632f,{0x52,0x7f,0x20,0x7f,0x51,0x35,0x55}}, // \xe6\x8c\xaf
+{0x633a,{0x52,0x7f,0x55,0x3b,0x6a,0x7e,0x69}}, // \xe6\x8c\xba
+{0x633d,{0x52,0x7f,0x5c,0x36,0x1d,0x77,0x5c}}, // \xe6\x8c\xbd
+{0x633e,{0x52,0x7f,0x52,0x4e,0x3f,0x4e,0x52}}, // \xe6\x8c\xbe
+{0x633f,{0x52,0x7f,0x3a,0x2a,0x7e,0x29,0x39}}, // \xe6\x8c\xbf
+{0x6349,{0x52,0x7f,0x40,0x37,0x45,0x7d,0x57}}, // \xe6\x8d\x89
+{0x634c,{0x52,0x7f,0x67,0x1d,0x77,0x0e,0x7f}}, // \xe6\x8d\x8c
+{0x634d,{0x52,0x7f,0x28,0x2f,0x7d,0x2f,0x28}}, // \xe6\x8d\x8d
+{0x634f,{0x52,0x7f,0x0a,0x47,0x55,0x7d,0x57}}, // \xe6\x8d\x8f
+{0x6350,{0x52,0x7f,0x0a,0x78,0x2b,0x2b,0x78}}, // \xe6\x8d\x90
+{0x6355,{0x52,0x7f,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe6\x8d\x95
+{0x6357,{0x52,0x7f,0x18,0x4e,0x58,0x2f,0x1a}}, // \xe6\x8d\x97
+{0x635c,{0x52,0x7f,0x4e,0x5a,0x2f,0x5a,0x4e}}, // \xe6\x8d\x9c
+{0x6367,{0x52,0x7f,0x14,0x2e,0x77,0x2e,0x14}}, // \xe6\x8d\xa7
+{0x6368,{0x52,0x7f,0x14,0x7a,0x5d,0x7a,0x14}}, // \xe6\x8d\xa8
+{0x6369,{0x52,0x7f,0x21,0x5f,0x55,0x3d,0x57}}, // \xe6\x8d\xa9
+{0x636b,{0x52,0x7f,0x7f,0x07,0x00,0x47,0x7f}}, // \xe6\x8d\xab
+{0x636e,{0x52,0x7f,0x20,0x1f,0x6b,0x5f,0x6b}}, // \xe6\x8d\xae
+{0x6372,{0x52,0x7f,0x15,0x6e,0x57,0x4e,0x15}}, // \xe6\x8d\xb2
+{0x6376,{0x52,0x7f,0x54,0x5d,0x77,0x5d,0x54}}, // \xe6\x8d\xb6
+{0x6377,{0x52,0x7f,0x40,0x2a,0x4a,0x7f,0x56}}, // \xe6\x8d\xb7
+{0x637a,{0x52,0x7f,0x4a,0x16,0x73,0x16,0x4a}}, // \xe6\x8d\xba
+{0x637b,{0x52,0x7f,0x64,0x2a,0x4d,0x5e,0x64}}, // \xe6\x8d\xbb
+{0x6380,{0x52,0x7f,0x1e,0x7d,0x44,0x3b,0x46}}, // \xe6\x8e\x80
+{0x6383,{0x52,0x7f,0x0c,0x35,0x7d,0x37,0x0c}}, // \xe6\x8e\x83
+{0x6388,{0x52,0x7f,0x4d,0x57,0x35,0x57,0x4d}}, // \xe6\x8e\x88
+{0x6389,{0x52,0x7f,0x2a,0x3c,0x77,0x3e,0x22}}, // \xe6\x8e\x89
+{0x638c,{0x26,0x33,0x7e,0x7b,0x3e,0x33,0x26}}, // \xe6\x8e\x8c
+{0x638e,{0x52,0x7f,0x12,0x5a,0x17,0x7a,0x12}}, // \xe6\x8e\x8e
+{0x638f,{0x52,0x7f,0x64,0x4b,0x7e,0x6a,0x7e}}, // \xe6\x8e\x8f
+{0x6392,{0x52,0x7f,0x2a,0x7f,0x00,0x7f,0x2a}}, // \xe6\x8e\x92
+{0x6396,{0x52,0x7f,0x0a,0x7e,0x53,0x2a,0x5a}}, // \xe6\x8e\x96
+{0x6398,{0x52,0x7f,0x1f,0x65,0x4d,0x7d,0x6f}}, // \xe6\x8e\x98
+{0x639b,{0x52,0x7f,0x2a,0x3f,0x2a,0x7f,0x08}}, // \xe6\x8e\x9b
+{0x639f,{0x52,0x7f,0x46,0x32,0x46,0x7f,0x56}}, // \xe6\x8e\x9f
+{0x63a0,{0x52,0x7f,0x22,0x4e,0x7b,0x0e,0x22}}, // \xe6\x8e\xa0
+{0x63a1,{0x52,0x7f,0x56,0x32,0x76,0x39,0x55}}, // \xe6\x8e\xa1
+{0x63a2,{0x52,0x7f,0x5b,0x35,0x71,0x3d,0x5b}}, // \xe6\x8e\xa2
+{0x63a3,{0x24,0x3b,0x7f,0x7a,0x36,0x30,0x2f}}, // \xe6\x8e\xa3
+{0x63a5,{0x52,0x7f,0x4a,0x5e,0x2b,0x3e,0x4a}}, // \xe6\x8e\xa5
+{0x63a7,{0x52,0x7f,0x46,0x56,0x73,0x56,0x46}}, // \xe6\x8e\xa7
+{0x63a8,{0x52,0x7f,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe6\x8e\xa8
+{0x63a9,{0x52,0x7f,0x0a,0x36,0x3b,0x76,0x4a}}, // \xe6\x8e\xa9
+{0x63aa,{0x52,0x7f,0x0a,0x7f,0x5a,0x7f,0x0a}}, // \xe6\x8e\xaa
+{0x63ab,{0x52,0x7f,0x21,0x3f,0x7f,0x12,0x2e}}, // \xe6\x8e\xab
+{0x63ac,{0x52,0x7f,0x04,0x57,0x3a,0x56,0x7e}}, // \xe6\x8e\xac
+{0x63b2,{0x52,0x7f,0x10,0x3f,0x2d,0x4f,0x78}}, // \xe6\x8e\xb2
+{0x63b4,{0x52,0x7f,0x41,0x6b,0x7f,0x6b,0x7f}}, // \xe6\x8e\xb4
+{0x63b5,{0x52,0x7f,0x34,0x32,0x05,0x76,0x34}}, // \xe6\x8e\xb5
+{0x63bb,{0x52,0x7f,0x49,0x5b,0x7d,0x5b,0x68}}, // \xe6\x8e\xbb
+{0x63be,{0x52,0x7f,0x2c,0x56,0x7d,0x27,0x55}}, // \xe6\x8e\xbe
+{0x63c0,{0x52,0x7f,0x42,0x2e,0x7f,0x2e,0x4e}}, // \xe6\x8f\x80
+{0x63c3,{0x52,0x7f,0x7a,0x2b,0x7a,0x03,0x7a}}, // \xe6\x8f\x83
+{0x63c4,{0x52,0x7f,0x05,0x73,0x75,0x26,0x54}}, // \xe6\x8f\x84
+{0x63c6,{0x52,0x7f,0x55,0x5b,0x39,0x5a,0x55}}, // \xe6\x8f\x86
+{0x63c9,{0x52,0x7f,0x5a,0x37,0x7f,0x33,0x56}}, // \xe6\x8f\x89
+{0x63cf,{0x52,0x7f,0x7a,0x5f,0x7a,0x5f,0x7a}}, // \xe6\x8f\x8f
+{0x63d0,{0x52,0x7f,0x42,0x34,0x47,0x7f,0x54}}, // \xe6\x8f\x90
+{0x63d2,{0x52,0x7f,0x74,0x56,0x7e,0x55,0x74}}, // \xe6\x8f\x92
+{0x63d6,{0x52,0x7f,0x24,0x3f,0x2d,0x7f,0x24}}, // \xe6\x8f\x96
+{0x63da,{0x52,0x7f,0x24,0x5f,0x35,0x57,0x74}}, // \xe6\x8f\x9a
+{0x63db,{0x52,0x7f,0x52,0x5d,0x3d,0x5f,0x50}}, // \xe6\x8f\x9b
+{0x63e1,{0x52,0x7f,0x20,0x5f,0x5b,0x77,0x53}}, // \xe6\x8f\xa1
+{0x63e3,{0x52,0x7f,0x6b,0x3a,0x6b,0x2a,0x6b}}, // \xe6\x8f\xa3
+{0x63e9,{0x52,0x7f,0x0f,0x6a,0x70,0x6f,0x0a}}, // \xe6\x8f\xa9
+{0x63ee,{0x52,0x7f,0x27,0x3d,0x7f,0x3d,0x27}}, // \xe6\x8f\xae
+{0x63f4,{0x52,0x7f,0x46,0x2a,0x5e,0x29,0x5d}}, // \xe6\x8f\xb4
+{0x63f6,{0x52,0x7f,0x21,0x3f,0x2d,0x7f,0x1b}}, // \xe6\x8f\xb6
+{0x63fa,{0x52,0x7f,0x68,0x4a,0x7e,0x49,0x6b}}, // \xe6\x8f\xba
+{0x6406,{0x52,0x7f,0x2a,0x7f,0x3a,0x7f,0x2a}}, // \xe6\x90\x86
+{0x640d,{0x52,0x7f,0x0a,0x5c,0x17,0x17,0x5c}}, // \xe6\x90\x8d
+{0x640f,{0x52,0x7f,0x12,0x3e,0x57,0x7e,0x13}}, // \xe6\x90\x8f
+{0x6413,{0x52,0x7f,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe6\x90\x93
+{0x6416,{0x52,0x7f,0x10,0x6a,0x4d,0x7b,0x68}}, // \xe6\x90\x96
+{0x6417,{0x52,0x7f,0x0a,0x5e,0x77,0x56,0x70}}, // \xe6\x90\x97
+{0x641c,{0x52,0x7f,0x4e,0x59,0x2e,0x59,0x4f}}, // \xe6\x90\x9c
+{0x6426,{0x52,0x7f,0x0a,0x5d,0x77,0x5d,0x77}}, // \xe6\x90\xa6
+{0x6428,{0x52,0x7f,0x48,0x2f,0x7d,0x2f,0x78}}, // \xe6\x90\xa8
+{0x642c,{0x52,0x7f,0x7e,0x13,0x7e,0x29,0x5b}}, // \xe6\x90\xac
+{0x642d,{0x52,0x7f,0x12,0x7b,0x56,0x7b,0x12}}, // \xe6\x90\xad
+{0x6434,{0x16,0x2a,0x7e,0x7b,0x3e,0x2a,0x16}}, // \xe6\x90\xb4
+{0x6436,{0x52,0x7f,0x24,0x1e,0x6d,0x62,0x04}}, // \xe6\x90\xb6
+{0x643a,{0x52,0x7f,0x54,0x3f,0x1a,0x3f,0x6a}}, // \xe6\x90\xba
+{0x643e,{0x52,0x7f,0x26,0x1e,0x73,0x36,0x26}}, // \xe6\x90\xbe
+{0x6442,{0x52,0x7f,0x59,0x2f,0x09,0x2f,0x59}}, // \xe6\x91\x82
+{0x644e,{0x52,0x7f,0x11,0x4b,0x54,0x29,0x13}}, // \xe6\x91\x8e
+{0x6458,{0x52,0x7f,0x7a,0x6e,0x5b,0x6e,0x7a}}, // \xe6\x91\x98
+{0x6467,{0x52,0x7f,0x13,0x7e,0x4b,0x7e,0x4b}}, // \xe6\x91\xa7
+{0x6469,{0x40,0x3e,0x2a,0x7e,0x6b,0x3e,0x2a}}, // \xe6\x91\xa9
+{0x646f,{0x24,0x2e,0x7f,0x7a,0x37,0x3e,0x28}}, // \xe6\x91\xaf
+{0x6476,{0x52,0x7f,0x12,0x3e,0x5f,0x76,0x1a}}, // \xe6\x91\xb6
+{0x6478,{0x52,0x7f,0x52,0x5f,0x36,0x5f,0x52}}, // \xe6\x91\xb8
+{0x647a,{0x52,0x7f,0x05,0x6f,0x70,0x65,0x0f}}, // \xe6\x91\xba
+{0x6483,{0x2a,0x2e,0x7f,0x76,0x3b,0x35,0x2b}}, // \xe6\x92\x83
+{0x6488,{0x52,0x7f,0x4d,0x36,0x5d,0x76,0x0d}}, // \xe6\x92\x88
+{0x6492,{0x52,0x7f,0x0a,0x7f,0x7e,0x23,0x5e}}, // \xe6\x92\x92
+{0x6493,{0x52,0x7f,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe6\x92\x93
+{0x6495,{0x52,0x7f,0x5f,0x1a,0x5f,0x3e,0x79}}, // \xe6\x92\x95
+{0x649a,{0x52,0x7f,0x54,0x0b,0x56,0x0f,0x52}}, // \xe6\x92\x9a
+{0x649e,{0x52,0x7f,0x4a,0x5e,0x7b,0x5e,0x4a}}, // \xe6\x92\x9e
+{0x64a4,{0x52,0x7f,0x0a,0x77,0x72,0x3f,0x5e}}, // \xe6\x92\xa4
+{0x64a5,{0x52,0x7f,0x55,0x3b,0x59,0x2a,0x5d}}, // \xe6\x92\xa5
+{0x64a9,{0x52,0x7f,0x4a,0x1e,0x6b,0x1e,0x4a}}, // \xe6\x92\xa9
+{0x64ab,{0x52,0x7f,0x6b,0x3e,0x6a,0x3e,0x6a}}, // \xe6\x92\xab
+{0x64ad,{0x52,0x7f,0x15,0x6f,0x7d,0x6f,0x15}}, // \xe6\x92\xad
+{0x64ae,{0x52,0x7f,0x24,0x3f,0x7d,0x2f,0x5c}}, // \xe6\x92\xae
+{0x64b0,{0x52,0x7f,0x4d,0x1b,0x10,0x1d,0x4b}}, // \xe6\x92\xb0
+{0x64b2,{0x52,0x7f,0x4b,0x5e,0x3b,0x5e,0x4b}}, // \xe6\x92\xb2
+{0x64b9,{0x52,0x7f,0x45,0x3a,0x3b,0x7a,0x45}}, // \xe6\x92\xb9
+{0x64bb,{0x52,0x7f,0x69,0x54,0x5e,0x77,0x5e}}, // \xe6\x92\xbb
+{0x64bc,{0x52,0x7f,0x6e,0x2e,0x42,0x47,0x6a}}, // \xe6\x92\xbc
+{0x64c1,{0x52,0x7f,0x5a,0x36,0x0b,0x7e,0x56}}, // \xe6\x93\x81
+{0x64c2,{0x52,0x7f,0x76,0x53,0x77,0x53,0x76}}, // \xe6\x93\x82
+{0x64c5,{0x52,0x7f,0x4e,0x7e,0x5b,0x7e,0x4e}}, // \xe6\x93\x85
+{0x64c7,{0x52,0x7f,0x2b,0x3b,0x6f,0x3b,0x2b}}, // \xe6\x93\x87
+{0x64cd,{0x52,0x7f,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe6\x93\x8d
+{0x64d2,{0x52,0x7f,0x7a,0x4e,0x7d,0x2e,0x7a}}, // \xe6\x93\x92
+{0x64d4,{0x52,0x7f,0x3c,0x2e,0x75,0x7f,0x2c}}, // \xe6\x93\x94
+{0x64d8,{0x24,0x3f,0x7b,0x70,0x36,0x3b,0x26}}, // \xe6\x93\x98
+{0x64da,{0x52,0x7f,0x7c,0x2c,0x57,0x7a,0x2a}}, // \xe6\x93\x9a
+{0x64e0,{0x52,0x7f,0x4a,0x36,0x2b,0x76,0x0a}}, // \xe6\x93\xa0
+{0x64e1,{0x52,0x7f,0x5a,0x6e,0x7f,0x6e,0x5a}}, // \xe6\x93\xa1
+{0x64e2,{0x52,0x7f,0x25,0x7f,0x50,0x7d,0x57}}, // \xe6\x93\xa2
+{0x64e3,{0x52,0x7f,0x34,0x36,0x5f,0x76,0x14}}, // \xe6\x93\xa3
+{0x64e6,{0x52,0x7f,0x56,0x2a,0x67,0x2a,0x56}}, // \xe6\x93\xa6
+{0x64e7,{0x28,0x1e,0x69,0x7e,0x2d,0x1f,0x28}}, // \xe6\x93\xa7
+{0x64ec,{0x52,0x7f,0x57,0x3a,0x5a,0x3d,0x57}}, // \xe6\x93\xac
+{0x64ef,{0x52,0x7f,0x4e,0x3a,0x37,0x3a,0x46}}, // \xe6\x93\xaf
+{0x64f1,{0x52,0x7f,0x7f,0x2b,0x74,0x6f,0x7f}}, // \xe6\x93\xb1
+{0x64f2,{0x52,0x7f,0x5a,0x39,0x5a,0x7f,0x1b}}, // \xe6\x93\xb2
+{0x64f4,{0x52,0x7f,0x3e,0x4a,0x3e,0x3f,0x4a}}, // \xe6\x93\xb4
+{0x64f6,{0x52,0x7f,0x7b,0x2e,0x78,0x0b,0x7e}}, // \xe6\x93\xb6
+{0x64fa,{0x52,0x7f,0x7b,0x77,0x03,0x6f,0x4b}}, // \xe6\x93\xba
+{0x64fd,{0x52,0x7f,0x5a,0x35,0x7f,0x3a,0x55}}, // \xe6\x93\xbd
+{0x64fe,{0x52,0x7f,0x59,0x5f,0x2f,0x5f,0x59}}, // \xe6\x93\xbe
+{0x6500,{0x2a,0x1f,0x6a,0x7d,0x2a,0x1f,0x2a}}, // \xe6\x94\x80
+{0x6505,{0x52,0x7f,0x4a,0x37,0x3a,0x37,0x4a}}, // \xe6\x94\x85
+{0x6518,{0x52,0x7f,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe6\x94\x98
+{0x651c,{0x52,0x7f,0x6b,0x3e,0x57,0x3e,0x77}}, // \xe6\x94\x9c
+{0x651d,{0x52,0x7f,0x30,0x75,0x27,0x3f,0x75}}, // \xe6\x94\x9d
+{0x6523,{0x2a,0x3d,0x6a,0x77,0x2a,0x3d,0x28}}, // \xe6\x94\xa3
+{0x6524,{0x52,0x7f,0x5b,0x3e,0x5b,0x7e,0x55}}, // \xe6\x94\xa4
+{0x652a,{0x52,0x7f,0x4e,0x35,0x36,0x75,0x4f}}, // \xe6\x94\xaa
+{0x652b,{0x52,0x7f,0x43,0x5f,0x2c,0x5f,0x4b}}, // \xe6\x94\xab
+{0x652c,{0x52,0x7f,0x47,0x3d,0x38,0x7f,0x46}}, // \xe6\x94\xac
+{0x652f,{0x42,0x4a,0x5a,0x2f,0x5a,0x42,0x42}}, // \xe6\x94\xaf
+{0x6534,{0x40,0x48,0x58,0x2f,0x5a,0x42,0x40}}, // \xe6\x94\xb4
+{0x6535,{0x48,0x44,0x2b,0x12,0x2e,0x42,0x40}}, // \xe6\x94\xb5
+{0x6536,{0x3e,0x20,0x7f,0x44,0x5f,0x22,0x5e}}, // \xe6\x94\xb6
+{0x6537,{0x01,0x4f,0x79,0x44,0x5f,0x22,0x5e}}, // \xe6\x94\xb7
+{0x6538,{0x04,0x7e,0x3f,0x44,0x5f,0x22,0x5e}}, // \xe6\x94\xb8
+{0x6539,{0x3d,0x25,0x37,0x44,0x5f,0x22,0x5e}}, // \xe6\x94\xb9
+{0x653b,{0x22,0x3e,0x12,0x44,0x5f,0x22,0x5e}}, // \xe6\x94\xbb
+{0x653e,{0x42,0x3e,0x4b,0x7a,0x5c,0x23,0x5e}}, // \xe6\x94\xbe
+{0x653f,{0x79,0x41,0x3f,0x29,0x5c,0x23,0x5e}}, // \xe6\x94\xbf
+{0x6545,{0x3a,0x2f,0x3a,0x44,0x5f,0x22,0x5e}}, // \xe6\x95\x85
+{0x6548,{0x4a,0x56,0x23,0x56,0x5c,0x23,0x5e}}, // \xe6\x95\x88
+{0x654d,{0x54,0x16,0x7d,0x16,0x58,0x2f,0x5a}}, // \xe6\x95\x8d
+{0x654f,{0x33,0x2e,0x7e,0x2a,0x5c,0x23,0x5e}}, // \xe6\x95\x8f
+{0x6551,{0x2a,0x52,0x7f,0x2a,0x5c,0x23,0x5e}}, // \xe6\x95\x91
+{0x6555,{0x42,0x2e,0x7f,0x2e,0x5c,0x23,0x5e}}, // \xe6\x95\x95
+{0x6556,{0x4a,0x3f,0x6a,0x44,0x5f,0x22,0x5e}}, // \xe6\x95\x96
+{0x6557,{0x5f,0x15,0x5f,0x04,0x5f,0x22,0x5e}}, // \xe6\x95\x97
+{0x6558,{0x54,0x16,0x7d,0x16,0x5c,0x23,0x5e}}, // \xe6\x95\x98
+{0x6559,{0x28,0x1a,0x6f,0x3a,0x5c,0x23,0x5e}}, // \xe6\x95\x99
+{0x655d,{0x7a,0x29,0x7f,0x7a,0x5c,0x23,0x5e}}, // \xe6\x95\x9d
+{0x655e,{0x7a,0x09,0x6f,0x7a,0x5c,0x23,0x5e}}, // \xe6\x95\x9e
+{0x6562,{0x24,0x3d,0x27,0x7d,0x5c,0x23,0x5e}}, // \xe6\x95\xa2
+{0x6563,{0x0a,0x7f,0x2a,0x7f,0x5c,0x23,0x5e}}, // \xe6\x95\xa3
+{0x6566,{0x22,0x2e,0x7b,0x1e,0x5c,0x23,0x5e}}, // \xe6\x95\xa6
+{0x656c,{0x12,0x2f,0x4a,0x7f,0x5c,0x23,0x5e}}, // \xe6\x95\xac
+{0x6570,{0x55,0x7a,0x57,0x32,0x5d,0x23,0x5e}}, // \xe6\x95\xb0
+{0x6572,{0x72,0x1e,0x5b,0x1e,0x78,0x2f,0x5a}}, // \xe6\x95\xb2
+{0x6574,{0x5a,0x76,0x5f,0x76,0x7a,0x75,0x5b}}, // \xe6\x95\xb4
+{0x6575,{0x7a,0x6e,0x5b,0x6e,0x7c,0x23,0x5e}}, // \xe6\x95\xb5
+{0x6577,{0x52,0x3e,0x7f,0x12,0x5c,0x23,0x5e}}, // \xe6\x95\xb7
+{0x6578,{0x54,0x7e,0x5b,0x36,0x5c,0x23,0x5e}}, // \xe6\x95\xb8
+{0x6582,{0x5c,0x36,0x5d,0x36,0x5c,0x23,0x5e}}, // \xe6\x96\x82
+{0x6583,{0x52,0x7d,0x36,0x1d,0x7a,0x55,0x5b}}, // \xe6\x96\x83
+{0x6587,{0x42,0x42,0x2e,0x13,0x2e,0x42,0x42}}, // \xe6\x96\x87
+{0x6588,{0x22,0x32,0x36,0x6b,0x36,0x32,0x22}}, // \xe6\x96\x88
+{0x6589,{0x12,0x52,0x36,0x2b,0x76,0x12,0x12}}, // \xe6\x96\x89
+{0x658c,{0x4a,0x33,0x4e,0x75,0x65,0x3e,0x45}}, // \xe6\x96\x8c
+{0x658e,{0x4a,0x3a,0x2e,0x77,0x2e,0x7a,0x0a}}, // \xe6\x96\x8e
+{0x6590,{0x4a,0x4a,0x5f,0x28,0x5f,0x4a,0x4a}}, // \xe6\x96\x90
+{0x6591,{0x29,0x3f,0x4a,0x33,0x4e,0x7f,0x49}}, // \xe6\x96\x91
+{0x6597,{0x20,0x25,0x2a,0x20,0x7f,0x10,0x10}}, // \xe6\x96\x97
+{0x6599,{0x35,0x7e,0x25,0x2a,0x20,0x7f,0x10}}, // \xe6\x96\x99
+{0x659b,{0x42,0x3d,0x5f,0x7c,0x2a,0x20,0x7f}}, // \xe6\x96\x9b
+{0x659c,{0x54,0x16,0x7d,0x56,0x2a,0x20,0x7f}}, // \xe6\x96\x9c
+{0x659f,{0x72,0x5f,0x72,0x5f,0x2a,0x20,0x7f}}, // \xe6\x96\x9f
+{0x65a1,{0x2d,0x77,0x2d,0x2a,0x21,0x7e,0x24}}, // \xe6\x96\xa1
+{0x65a4,{0x40,0x3e,0x0a,0x0a,0x79,0x09,0x08}}, // \xe6\x96\xa4
+{0x65a5,{0x40,0x3e,0x0a,0x1a,0x79,0x29,0x08}}, // \xe6\x96\xa5
+{0x65a7,{0x4a,0x3a,0x15,0x14,0x75,0x1a,0x0a}}, // \xe6\x96\xa7
+{0x65ab,{0x09,0x37,0x31,0x40,0x3e,0x0a,0x79}}, // \xe6\x96\xab
+{0x65ac,{0x2d,0x7f,0x2d,0x1e,0x0a,0x79,0x08}}, // \xe6\x96\xac
+{0x65ad,{0x7f,0x55,0x4e,0x55,0x3e,0x0a,0x79}}, // \xe6\x96\xad
+{0x65af,{0x52,0x1f,0x1a,0x5f,0x3e,0x0a,0x79}}, // \xe6\x96\xaf
+{0x65b0,{0x52,0x36,0x7b,0x36,0x5e,0x0a,0x79}}, // \xe6\x96\xb0
+{0x65b7,{0x7f,0x6a,0x5d,0x6a,0x5d,0x3e,0x79}}, // \xe6\x96\xb7
+{0x65b9,{0x42,0x22,0x1e,0x0b,0x4a,0x7a,0x02}}, // \xe6\x96\xb9
+{0x65bc,{0x42,0x3e,0x4b,0x7a,0x02,0x29,0x52}}, // \xe6\x96\xbc
+{0x65bd,{0x62,0x1f,0x7a,0x14,0x7f,0x4a,0x5a}}, // \xe6\x96\xbd
+{0x65c1,{0x5a,0x4a,0x3e,0x2b,0x2a,0x6e,0x1a}}, // \xe6\x97\x81
+{0x65c3,{0x62,0x1f,0x7a,0x24,0x7b,0x2a,0x7a}}, // \xe6\x97\x83
+{0x65c4,{0x62,0x1f,0x7a,0x04,0x2b,0x7e,0x56}}, // \xe6\x97\x84
+{0x65c5,{0x62,0x1f,0x7a,0x14,0x7b,0x26,0x52}}, // \xe6\x97\x85
+{0x65c6,{0x62,0x1f,0x7a,0x0c,0x3b,0x7e,0x3a}}, // \xe6\x97\x86
+{0x65cb,{0x62,0x1f,0x7a,0x44,0x2b,0x7a,0x5a}}, // \xe6\x97\x8b
+{0x65cc,{0x62,0x1f,0x7a,0x24,0x5b,0x7a,0x52}}, // \xe6\x97\x8c
+{0x65cf,{0x62,0x1f,0x7a,0x14,0x5f,0x3a,0x52}}, // \xe6\x97\x8f
+{0x65d2,{0x62,0x1f,0x7a,0x04,0x63,0x0e,0x6a}}, // \xe6\x97\x92
+{0x65d7,{0x62,0x1f,0x7a,0x54,0x1f,0x1e,0x52}}, // \xe6\x97\x97
+{0x65d9,{0x62,0x1f,0x7a,0x15,0x6f,0x7f,0x15}}, // \xe6\x97\x99
+{0x65db,{0x62,0x1f,0x7a,0x14,0x6f,0x7e,0x16}}, // \xe6\x97\x9b
+{0x65e0,{0x48,0x49,0x29,0x1f,0x79,0x49,0x68}}, // \xe6\x97\xa0
+{0x65e1,{0x4d,0x49,0x29,0x1f,0x79,0x49,0x68}}, // \xe6\x97\xa1
+{0x65e2,{0x7f,0x55,0x5f,0x49,0x2f,0x79,0x4f}}, // \xe6\x97\xa2
+{0x65e5,{0x00,0x7f,0x49,0x49,0x49,0x49,0x7f}}, // \xe6\x97\xa5
+{0x65e6,{0x40,0x5f,0x55,0x55,0x55,0x5f,0x40}}, // \xe6\x97\xa6
+{0x65e7,{0x7f,0x00,0x7f,0x49,0x49,0x49,0x7f}}, // \xe6\x97\xa7
+{0x65e8,{0x07,0x7a,0x5a,0x5a,0x59,0x79,0x0c}}, // \xe6\x97\xa8
+{0x65e9,{0x20,0x3f,0x35,0x75,0x35,0x3f,0x20}}, // \xe6\x97\xa9
+{0x65ec,{0x08,0x04,0x3f,0x2a,0x3e,0x42,0x7e}}, // \xe6\x97\xac
+{0x65ed,{0x42,0x3f,0x02,0x7e,0x5f,0x55,0x5f}}, // \xe6\x97\xad
+{0x65f1,{0x28,0x2f,0x2d,0x7d,0x2d,0x2f,0x28}}, // \xe6\x97\xb1
+{0x65fa,{0x3e,0x2a,0x3e,0x41,0x49,0x7f,0x49}}, // \xe6\x97\xba
+{0x65fb,{0x48,0x4f,0x5d,0x2d,0x5d,0x4f,0x48}}, // \xe6\x97\xbb
+{0x6602,{0x30,0x2f,0x25,0x05,0x7d,0x0f,0x38}}, // \xe6\x98\x82
+{0x6603,{0x40,0x38,0x4f,0x4d,0x3d,0x4f,0x48}}, // \xe6\x98\x83
+{0x6606,{0x40,0x7f,0x55,0x05,0x7d,0x57,0x50}}, // \xe6\x98\x86
+{0x6607,{0x10,0x57,0x3d,0x15,0x7d,0x17,0x10}}, // \xe6\x98\x87
+{0x660a,{0x44,0x57,0x55,0x3d,0x55,0x57,0x44}}, // \xe6\x98\x8a
+{0x660c,{0x7c,0x57,0x55,0x55,0x55,0x57,0x7c}}, // \xe6\x98\x8c
+{0x660e,{0x1f,0x15,0x5f,0x20,0x1f,0x55,0x7f}}, // \xe6\x98\x8e
+{0x660f,{0x10,0x7e,0x76,0x66,0x6d,0x75,0x10}}, // \xe6\x98\x8f
+{0x6613,{0x20,0x57,0x3d,0x55,0x35,0x57,0x70}}, // \xe6\x98\x93
+{0x6614,{0x08,0x7a,0x5f,0x5a,0x5f,0x7a,0x08}}, // \xe6\x98\x94
+{0x661c,{0x24,0x57,0x3d,0x55,0x35,0x57,0x74}}, // \xe6\x98\x9c
+{0x661f,{0x50,0x4f,0x55,0x7d,0x55,0x57,0x44}}, // \xe6\x98\x9f
+{0x6620,{0x3e,0x2a,0x7e,0x4e,0x3b,0x4e,0x48}}, // \xe6\x98\xa0
+{0x6625,{0x28,0x1a,0x6e,0x6f,0x6e,0x1a,0x28}}, // \xe6\x98\xa5
+{0x6627,{0x3e,0x2a,0x5e,0x2a,0x7f,0x2a,0x48}}, // \xe6\x98\xa7
+{0x6628,{0x3e,0x2a,0x3e,0x04,0x7f,0x2a,0x2a}}, // \xe6\x98\xa8
+{0x662d,{0x3e,0x2a,0x3e,0x75,0x53,0x59,0x7f}}, // \xe6\x98\xad
+{0x662f,{0x44,0x37,0x45,0x7d,0x55,0x57,0x44}}, // \xe6\x98\xaf
+{0x6634,{0x38,0x6f,0x35,0x05,0x7d,0x0f,0x38}}, // \xe6\x98\xb4
+{0x6635,{0x3e,0x2a,0x7e,0x3f,0x05,0x7d,0x57}}, // \xe6\x98\xb5
+{0x6636,{0x28,0x5d,0x7d,0x28,0x5f,0x55,0x5f}}, // \xe6\x98\xb6
+{0x663c,{0x50,0x4f,0x75,0x55,0x75,0x4b,0x50}}, // \xe6\x98\xbc
+{0x663f,{0x3e,0x2a,0x3e,0x1e,0x62,0x5b,0x62}}, // \xe6\x98\xbf
+{0x6641,{0x54,0x5b,0x3f,0x03,0x7f,0x4b,0x54}}, // \xe6\x99\x81
+{0x6642,{0x3e,0x2a,0x3e,0x6a,0x2f,0x7a,0x28}}, // \xe6\x99\x82
+{0x6643,{0x50,0x5b,0x33,0x1f,0x73,0x5b,0x50}}, // \xe6\x99\x83
+{0x6644,{0x3e,0x2a,0x3e,0x4a,0x38,0x7f,0x4a}}, // \xe6\x99\x84
+{0x6649,{0x09,0x7f,0x5d,0x59,0x5f,0x7d,0x09}}, // \xe6\x99\x89
+{0x664b,{0x09,0x7b,0x5f,0x59,0x5f,0x7b,0x09}}, // \xe6\x99\x8b
+{0x664f,{0x4c,0x57,0x75,0x5d,0x35,0x57,0x4c}}, // \xe6\x99\x8f
+{0x6652,{0x3e,0x2a,0x7d,0x5f,0x45,0x5f,0x7d}}, // \xe6\x99\x92
+{0x665d,{0x50,0x7a,0x5a,0x5f,0x5a,0x7e,0x54}}, // \xe6\x99\x9d
+{0x665e,{0x3e,0x2a,0x7e,0x2d,0x7a,0x2d,0x68}}, // \xe6\x99\x9e
+{0x665f,{0x40,0x3c,0x57,0x35,0x45,0x3f,0x54}}, // \xe6\x99\x9f
+{0x6662,{0x0a,0x7f,0x70,0x7e,0x76,0x7d,0x04}}, // \xe6\x99\xa2
+{0x6664,{0x3e,0x2a,0x3e,0x14,0x7d,0x57,0x7d}}, // \xe6\x99\xa4
+{0x6666,{0x3e,0x2a,0x3e,0x33,0x2e,0x7e,0x2a}}, // \xe6\x99\xa6
+{0x6667,{0x3e,0x2a,0x3e,0x0c,0x6b,0x7f,0x6a}}, // \xe6\x99\xa7
+{0x6668,{0x40,0x3c,0x77,0x5d,0x3d,0x5f,0x54}}, // \xe6\x99\xa8
+{0x6669,{0x3e,0x2a,0x5e,0x36,0x1d,0x77,0x5c}}, // \xe6\x99\xa9
+{0x666e,{0x12,0x76,0x5f,0x52,0x5e,0x77,0x12}}, // \xe6\x99\xae
+{0x666f,{0x44,0x3f,0x55,0x75,0x15,0x3f,0x44}}, // \xe6\x99\xaf
+{0x6670,{0x3e,0x2a,0x3e,0x1a,0x7f,0x0e,0x79}}, // \xe6\x99\xb0
+{0x6674,{0x3e,0x2a,0x3e,0x08,0x7a,0x2f,0x7a}}, // \xe6\x99\xb4
+{0x6676,{0x7c,0x57,0x7d,0x05,0x7d,0x57,0x7c}}, // \xe6\x99\xb6
+{0x667a,{0x14,0x7b,0x56,0x5a,0x5e,0x7a,0x0e}}, // \xe6\x99\xba
+{0x6681,{0x3e,0x2a,0x5e,0x3e,0x17,0x7e,0x54}}, // \xe6\x9a\x81
+{0x6683,{0x28,0x6f,0x3d,0x05,0x7d,0x2f,0x28}}, // \xe6\x9a\x83
+{0x6684,{0x3e,0x2a,0x3e,0x46,0x72,0x77,0x46}}, // \xe6\x9a\x84
+{0x6687,{0x3e,0x2a,0x7f,0x2b,0x58,0x2d,0x5f}}, // \xe6\x9a\x87
+{0x6688,{0x2c,0x27,0x3d,0x7d,0x3d,0x27,0x2c}}, // \xe6\x9a\x88
+{0x6689,{0x3e,0x2a,0x3e,0x27,0x3d,0x7f,0x27}}, // \xe6\x9a\x89
+{0x668e,{0x3e,0x2a,0x5e,0x57,0x3a,0x57,0x5a}}, // \xe6\x9a\x8e
+{0x6691,{0x50,0x57,0x3d,0x7d,0x5d,0x77,0x10}}, // \xe6\x9a\x91
+{0x6696,{0x3e,0x2a,0x7e,0x2a,0x5e,0x29,0x5d}}, // \xe6\x9a\x96
+{0x6697,{0x3e,0x2a,0x3e,0x0e,0x6b,0x6e,0x0a}}, // \xe6\x9a\x97
+{0x6698,{0x3e,0x2a,0x3e,0x24,0x5f,0x35,0x77}}, // \xe6\x9a\x98
+{0x669d,{0x3e,0x2a,0x3e,0x53,0x1d,0x1d,0x53}}, // \xe6\x9a\x9d
+{0x66a2,{0x3e,0x6b,0x3e,0x24,0x5f,0x35,0x77}}, // \xe6\x9a\xa2
+{0x66a6,{0x40,0x3f,0x75,0x5f,0x55,0x5f,0x75}}, // \xe6\x9a\xa6
+{0x66ab,{0x0a,0x6e,0x7f,0x6a,0x67,0x7d,0x05}}, // \xe6\x9a\xab
+{0x66ae,{0x2a,0x1a,0x6f,0x6e,0x6f,0x1a,0x2a}}, // \xe6\x9a\xae
+{0x66b4,{0x48,0x5b,0x2f,0x7b,0x2f,0x5b,0x48}}, // \xe6\x9a\xb4
+{0x66b8,{0x3e,0x2a,0x5e,0x1e,0x6b,0x1e,0x4a}}, // \xe6\x9a\xb8
+{0x66b9,{0x55,0x30,0x53,0x7f,0x6b,0x7f,0x6b}}, // \xe6\x9a\xb9
+{0x66bc,{0x02,0x7d,0x56,0x5d,0x5a,0x75,0x0b}}, // \xe6\x9a\xbc
+{0x66be,{0x3e,0x3e,0x2e,0x7b,0x56,0x3f,0x5e}}, // \xe6\x9a\xbe
+{0x66c1,{0x4e,0x7f,0x56,0x59,0x57,0x7f,0x49}}, // \xe6\x9b\x81
+{0x66c4,{0x3e,0x2a,0x3e,0x3f,0x7e,0x3f,0x2a}}, // \xe6\x9b\x84
+{0x66c7,{0x4c,0x57,0x7d,0x5d,0x55,0x2f,0x4c}}, // \xe6\x9b\x87
+{0x66c9,{0x3e,0x2a,0x5e,0x3e,0x17,0x7e,0x5c}}, // \xe6\x9b\x89
+{0x66d6,{0x3e,0x2a,0x5d,0x2f,0x55,0x37,0x4d}}, // \xe6\x9b\x96
+{0x66d9,{0x3e,0x2a,0x5f,0x35,0x7f,0x5d,0x77}}, // \xe6\x9b\x99
+{0x66da,{0x3e,0x2a,0x3e,0x5f,0x7a,0x2f,0x5a}}, // \xe6\x9b\x9a
+{0x66dc,{0x3e,0x2a,0x3e,0x25,0x77,0x7d,0x57}}, // \xe6\x9b\x9c
+{0x66dd,{0x3e,0x2a,0x5e,0x2b,0x7f,0x2f,0x5b}}, // \xe6\x9b\x9d
+{0x66e0,{0x3e,0x2a,0x7e,0x4a,0x3f,0x3e,0x4a}}, // \xe6\x9b\xa0
+{0x66e6,{0x3e,0x2a,0x3e,0x5b,0x6e,0x3b,0x5a}}, // \xe6\x9b\xa6
+{0x66e9,{0x54,0x3f,0x7d,0x55,0x3d,0x5f,0x54}}, // \xe6\x9b\xa9
+{0x66f0,{0x00,0x7f,0x49,0x49,0x49,0x41,0x7f}}, // \xe6\x9b\xb0
+{0x66f2,{0x7e,0x4a,0x7f,0x4a,0x7f,0x4a,0x7e}}, // \xe6\x9b\xb2
+{0x66f3,{0x40,0x4e,0x4a,0x4f,0x5a,0x2e,0x50}}, // \xe6\x9b\xb3
+{0x66f4,{0x41,0x5f,0x35,0x3f,0x55,0x5f,0x41}}, // \xe6\x9b\xb4
+{0x66f5,{0x4e,0x4a,0x4f,0x5a,0x2e,0x51,0x40}}, // \xe6\x9b\xb5
+{0x66f7,{0x10,0x77,0x6d,0x5d,0x6d,0x0f,0x78}}, // \xe6\x9b\xb7
+{0x66f8,{0x28,0x6a,0x6a,0x7f,0x6a,0x6e,0x24}}, // \xe6\x9b\xb8
+{0x66f9,{0x1e,0x76,0x5f,0x56,0x5f,0x76,0x1e}}, // \xe6\x9b\xb9
+{0x66fc,{0x4c,0x4f,0x5d,0x2d,0x5d,0x4f,0x4c}}, // \xe6\x9b\xbc
+{0x66fd,{0x0e,0x7a,0x5b,0x5e,0x5a,0x7b,0x0e}}, // \xe6\x9b\xbd
+{0x66fe,{0x04,0x7e,0x55,0x5c,0x55,0x7e,0x04}}, // \xe6\x9b\xbe
+{0x66ff,{0x0a,0x77,0x5a,0x50,0x5a,0x77,0x0a}}, // \xe6\x9b\xbf
+{0x6700,{0x24,0x3f,0x25,0x7d,0x55,0x27,0x5c}}, // \xe6\x9c\x80
+{0x6703,{0x04,0x7c,0x56,0x5d,0x56,0x7c,0x04}}, // \xe6\x9c\x83
+{0x6708,{0x40,0x20,0x1f,0x15,0x15,0x55,0x7f}}, // \xe6\x9c\x88
+{0x6709,{0x12,0x0a,0x7f,0x2a,0x2a,0x7a,0x02}}, // \xe6\x9c\x89
+{0x670b,{0x40,0x3f,0x55,0x7f,0x3f,0x55,0x7f}}, // \xe6\x9c\x8b
+{0x670d,{0x40,0x3f,0x55,0x7f,0x59,0x29,0x5b}}, // \xe6\x9c\x8d
+{0x670f,{0x7f,0x15,0x7f,0x76,0x44,0x7f,0x76}}, // \xe6\x9c\x8f
+{0x6714,{0x5a,0x33,0x1e,0x53,0x3f,0x55,0x7f}}, // \xe6\x9c\x94
+{0x6715,{0x7f,0x15,0x7f,0x40,0x55,0x3c,0x55}}, // \xe6\x9c\x95
+{0x6716,{0x7f,0x15,0x7f,0x7e,0x5a,0x3b,0x5e}}, // \xe6\x9c\x96
+{0x6717,{0x7e,0x4b,0x2e,0x40,0x3f,0x55,0x7f}}, // \xe6\x9c\x97
+{0x671b,{0x52,0x5e,0x5b,0x7a,0x57,0x55,0x5f}}, // \xe6\x9c\x9b
+{0x671d,{0x2d,0x77,0x2d,0x40,0x3f,0x55,0x7f}}, // \xe6\x9c\x9d
+{0x671e,{0x28,0x1a,0x4f,0x3a,0x7f,0x1a,0x28}}, // \xe6\x9c\x9e
+{0x671f,{0x52,0x1f,0x1a,0x5f,0x3f,0x55,0x7f}}, // \xe6\x9c\x9f
+{0x6726,{0x7f,0x15,0x7e,0x5f,0x7a,0x2f,0x5a}}, // \xe6\x9c\xa6
+{0x6727,{0x7f,0x15,0x7e,0x2b,0x7e,0x77,0x5d}}, // \xe6\x9c\xa7
+{0x6728,{0x22,0x12,0x0a,0x7f,0x0a,0x12,0x22}}, // \xe6\x9c\xa8
+{0x672a,{0x48,0x4a,0x2a,0x7f,0x2a,0x4a,0x48}}, // \xe6\x9c\xaa
+{0x672b,{0x42,0x4a,0x2a,0x7f,0x2a,0x4a,0x42}}, // \xe6\x9c\xab
+{0x672c,{0x22,0x12,0x2a,0x7f,0x2a,0x12,0x22}}, // \xe6\x9c\xac
+{0x672d,{0x22,0x1a,0x7f,0x0a,0x7f,0x40,0x60}}, // \xe6\x9c\xad
+{0x672e,{0x42,0x3a,0x02,0x7f,0x02,0x7b,0x42}}, // \xe6\x9c\xae
+{0x6731,{0x4c,0x4b,0x2a,0x7f,0x2a,0x4a,0x48}}, // \xe6\x9c\xb1
+{0x6734,{0x22,0x1a,0x7f,0x0a,0x7f,0x08,0x10}}, // \xe6\x9c\xb4
+{0x6736,{0x54,0x55,0x33,0x79,0x33,0x52,0x56}}, // \xe6\x9c\xb6
+{0x6737,{0x1a,0x7f,0x0a,0x41,0x3f,0x41,0x7f}}, // \xe6\x9c\xb7
+{0x6738,{0x1a,0x7f,0x0a,0x42,0x3f,0x42,0x7e}}, // \xe6\x9c\xb8
+{0x673a,{0x1a,0x7f,0x40,0x3f,0x01,0x7f,0x40}}, // \xe6\x9c\xba
+{0x673d,{0x1a,0x7f,0x0a,0x01,0x0f,0x49,0x79}}, // \xe6\x9c\xbd
+{0x673f,{0x42,0x4e,0x26,0x7f,0x26,0x4e,0x42}}, // \xe6\x9c\xbf
+{0x6741,{0x1a,0x7f,0x40,0x31,0x0f,0x30,0x40}}, // \xe6\x9d\x81
+{0x6746,{0x1a,0x7f,0x08,0x09,0x7f,0x09,0x08}}, // \xe6\x9d\x86
+{0x6749,{0x22,0x1a,0x7f,0x0a,0x40,0x4a,0x25}}, // \xe6\x9d\x89
+{0x674e,{0x2a,0x2a,0x26,0x6f,0x3e,0x26,0x2a}}, // \xe6\x9d\x8e
+{0x674f,{0x0a,0x7a,0x56,0x5f,0x56,0x7a,0x0a}}, // \xe6\x9d\x8f
+{0x6750,{0x1a,0x7f,0x22,0x22,0x52,0x7f,0x0a}}, // \xe6\x9d\x90
+{0x6751,{0x22,0x1a,0x7f,0x0a,0x52,0x7f,0x02}}, // \xe6\x9d\x91
+{0x6753,{0x1a,0x7f,0x04,0x0b,0x12,0x42,0x7e}}, // \xe6\x9d\x93
+{0x6756,{0x1a,0x7f,0x42,0x2a,0x1f,0x22,0x42}}, // \xe6\x9d\x96
+{0x6759,{0x1a,0x7f,0x0a,0x04,0x0f,0x34,0x45}}, // \xe6\x9d\x99
+{0x675c,{0x1a,0x7f,0x0a,0x44,0x44,0x7f,0x44}}, // \xe6\x9d\x9c
+{0x675e,{0x1a,0x7f,0x0a,0x79,0x49,0x49,0x6f}}, // \xe6\x9d\x9e
+{0x675f,{0x42,0x4e,0x2a,0x7f,0x2a,0x4e,0x42}}, // \xe6\x9d\x9f
+{0x6760,{0x1a,0x7f,0x0a,0x40,0x42,0x7e,0x42}}, // \xe6\x9d\xa0
+{0x6761,{0x48,0x5a,0x3a,0x75,0x3b,0x58,0x48}}, // \xe6\x9d\xa1
+{0x6762,{0x4a,0x5a,0x56,0x7f,0x56,0x5a,0x4a}}, // \xe6\x9d\xa2
+{0x6763,{0x1a,0x7f,0x7c,0x40,0x7f,0x40,0x7c}}, // \xe6\x9d\xa3
+{0x6764,{0x1a,0x7f,0x0a,0x41,0x3f,0x45,0x7d}}, // \xe6\x9d\xa4
+{0x6765,{0x52,0x56,0x32,0x7f,0x32,0x56,0x52}}, // \xe6\x9d\xa5
+{0x676a,{0x1a,0x7f,0x08,0x46,0x5f,0x22,0x14}}, // \xe6\x9d\xaa
+{0x676d,{0x1a,0x7f,0x42,0x3a,0x0b,0x7a,0x42}}, // \xe6\x9d\xad
+{0x676f,{0x1a,0x7f,0x11,0x09,0x7f,0x09,0x11}}, // \xe6\x9d\xaf
+{0x6770,{0x52,0x12,0x4a,0x1f,0x4a,0x12,0x52}}, // \xe6\x9d\xb0
+{0x6771,{0x42,0x5e,0x2a,0x7f,0x2a,0x5e,0x42}}, // \xe6\x9d\xb1
+{0x6772,{0x48,0x4f,0x2d,0x7d,0x2d,0x4f,0x48}}, // \xe6\x9d\xb2
+{0x6773,{0x0a,0x7a,0x76,0x7f,0x76,0x7a,0x0a}}, // \xe6\x9d\xb3
+{0x6775,{0x1a,0x7f,0x14,0x13,0x7e,0x12,0x10}}, // \xe6\x9d\xb5
+{0x6777,{0x1a,0x7f,0x3f,0x49,0x4f,0x49,0x6f}}, // \xe6\x9d\xb7
+{0x677c,{0x1a,0x7f,0x09,0x4b,0x7d,0x0b,0x18}}, // \xe6\x9d\xbc
+{0x677e,{0x1a,0x7f,0x44,0x63,0x58,0x23,0x44}}, // \xe6\x9d\xbe
+{0x677f,{0x1a,0x7f,0x20,0x5f,0x5d,0x25,0x5d}}, // \xe6\x9d\xbf
+{0x6785,{0x1a,0x7f,0x49,0x3f,0x09,0x7f,0x09}}, // \xe6\x9e\x85
+{0x6787,{0x1a,0x7f,0x40,0x7f,0x24,0x7f,0x44}}, // \xe6\x9e\x87
+{0x6789,{0x1a,0x7f,0x0a,0x41,0x49,0x7f,0x49}}, // \xe6\x9e\x89
+{0x678b,{0x1a,0x7f,0x0a,0x42,0x3e,0x4b,0x7a}}, // \xe6\x9e\x8b
+{0x678c,{0x1a,0x7f,0x44,0x3b,0x48,0x7b,0x04}}, // \xe6\x9e\x8c
+{0x6790,{0x1a,0x7f,0x40,0x3e,0x0a,0x79,0x08}}, // \xe6\x9e\x90
+{0x6795,{0x1a,0x7f,0x46,0x22,0x1f,0x7a,0x46}}, // \xe6\x9e\x95
+{0x6797,{0x22,0x1a,0x7f,0x12,0x0a,0x7f,0x12}}, // \xe6\x9e\x97
+{0x679a,{0x1a,0x7f,0x44,0x5f,0x22,0x5e,0x42}}, // \xe6\x9e\x9a
+{0x679c,{0x50,0x5f,0x35,0x7f,0x35,0x5f,0x50}}, // \xe6\x9e\x9c
+{0x679d,{0x1a,0x7f,0x4a,0x5a,0x2f,0x5a,0x42}}, // \xe6\x9e\x9d
+{0x67a0,{0x1a,0x7f,0x2a,0x27,0x72,0x2e,0x28}}, // \xe6\x9e\xa0
+{0x67a1,{0x1a,0x7f,0x4a,0x3e,0x09,0x7f,0x08}}, // \xe6\x9e\xa1
+{0x67a2,{0x1a,0x7f,0x0a,0x7f,0x55,0x49,0x55}}, // \xe6\x9e\xa2
+{0x67a6,{0x1a,0x7f,0x0a,0x41,0x3d,0x15,0x1d}}, // \xe6\x9e\xa6
+{0x67a9,{0x2a,0x2a,0x56,0x6f,0x4e,0x56,0x2a}}, // \xe6\x9e\xa9
+{0x67af,{0x1a,0x7f,0x04,0x74,0x5f,0x74,0x04}}, // \xe6\x9e\xaf
+{0x67b3,{0x1a,0x7f,0x4f,0x29,0x09,0x29,0x4f}}, // \xe6\x9e\xb3
+{0x67b4,{0x1a,0x7f,0x0a,0x57,0x35,0x55,0x77}}, // \xe6\x9e\xb4
+{0x67b6,{0x5a,0x57,0x3a,0x7e,0x3e,0x5a,0x5e}}, // \xe6\x9e\xb6
+{0x67b7,{0x1a,0x7f,0x62,0x1f,0x7e,0x42,0x7e}}, // \xe6\x9e\xb7
+{0x67b8,{0x1a,0x7f,0x0a,0x04,0x1b,0x5a,0x7e}}, // \xe6\x9e\xb8
+{0x67b9,{0x1a,0x7f,0x0a,0x04,0x7b,0x5a,0x5e}}, // \xe6\x9e\xb9
+{0x67c1,{0x1a,0x7f,0x0a,0x06,0x7a,0x53,0x56}}, // \xe6\x9f\x81
+{0x67c4,{0x1a,0x7f,0x7d,0x15,0x0f,0x55,0x7d}}, // \xe6\x9f\x84
+{0x67c6,{0x1a,0x7f,0x42,0x7e,0x63,0x5e,0x42}}, // \xe6\x9f\x86
+{0x67ca,{0x1a,0x7f,0x08,0x0a,0x55,0x4b,0x08}}, // \xe6\x9f\x8a
+{0x67ce,{0x1a,0x7f,0x04,0x7e,0x09,0x42,0x7f}}, // \xe6\x9f\x8e
+{0x67cf,{0x1a,0x7f,0x0a,0x7e,0x4b,0x4a,0x7e}}, // \xe6\x9f\x8f
+{0x67d0,{0x52,0x52,0x3f,0x7a,0x3f,0x52,0x52}}, // \xe6\x9f\x90
+{0x67d1,{0x1a,0x7f,0x02,0x7f,0x4a,0x7f,0x02}}, // \xe6\x9f\x91
+{0x67d3,{0x55,0x50,0x3a,0x77,0x32,0x5e,0x58}}, // \xe6\x9f\x93
+{0x67d4,{0x5a,0x56,0x3b,0x7f,0x33,0x52,0x56}}, // \xe6\x9f\x94
+{0x67d8,{0x1a,0x7f,0x0a,0x11,0x7f,0x49,0x79}}, // \xe6\x9f\x98
+{0x67da,{0x1a,0x7f,0x7e,0x4a,0x7f,0x4a,0x7e}}, // \xe6\x9f\x9a
+{0x67dd,{0x1a,0x7f,0x40,0x3e,0x1a,0x79,0x28}}, // \xe6\x9f\x9d
+{0x67de,{0x1a,0x7f,0x0a,0x04,0x7f,0x2a,0x2a}}, // \xe6\x9f\x9e
+{0x67e2,{0x1a,0x7f,0x00,0x7e,0x4a,0x5e,0x69}}, // \xe6\x9f\xa2
+{0x67e4,{0x1a,0x7f,0x40,0x7f,0x55,0x7f,0x40}}, // \xe6\x9f\xa4
+{0x67e7,{0x1a,0x7f,0x40,0x3e,0x42,0x3e,0x61}}, // \xe6\x9f\xa7
+{0x67e9,{0x1a,0x7f,0x0a,0x7f,0x65,0x53,0x6f}}, // \xe6\x9f\xa9
+{0x67ec,{0x42,0x5e,0x3e,0x7f,0x3e,0x5e,0x42}}, // \xe6\x9f\xac
+{0x67ee,{0x1a,0x7f,0x76,0x44,0x7f,0x44,0x76}}, // \xe6\x9f\xae
+{0x67ef,{0x1a,0x7f,0x0a,0x1d,0x15,0x5d,0x7f}}, // \xe6\x9f\xaf
+{0x67f1,{0x1a,0x7f,0x44,0x55,0x7e,0x54,0x44}}, // \xe6\x9f\xb1
+{0x67f3,{0x1a,0x7f,0x5e,0x3d,0x00,0x7f,0x1f}}, // \xe6\x9f\xb3
+{0x67f4,{0x5e,0x58,0x3f,0x7a,0x30,0x5f,0x5a}}, // \xe6\x9f\xb4
+{0x67f5,{0x1a,0x7f,0x08,0x7f,0x3f,0x09,0x7f}}, // \xe6\x9f\xb5
+{0x67fb,{0x4a,0x7a,0x56,0x5f,0x56,0x7a,0x4a}}, // \xe6\x9f\xbb
+{0x67fe,{0x1a,0x7f,0x0a,0x79,0x41,0x7f,0x49}}, // \xe6\x9f\xbe
+{0x67ff,{0x1a,0x7f,0x3a,0x0a,0x7f,0x0a,0x3a}}, // \xe6\x9f\xbf
+{0x6802,{0x1a,0x7f,0x38,0x2f,0x69,0x7f,0x28}}, // \xe6\xa0\x82
+{0x6803,{0x1a,0x7f,0x20,0x1f,0x65,0x1d,0x75}}, // \xe6\xa0\x83
+{0x6804,{0x46,0x4b,0x2a,0x7f,0x2a,0x4b,0x46}}, // \xe6\xa0\x84
+{0x6813,{0x1a,0x7f,0x44,0x56,0x7d,0x56,0x44}}, // \xe6\xa0\x93
+{0x6816,{0x1a,0x7f,0x7d,0x5f,0x45,0x5f,0x7d}}, // \xe6\xa0\x96
+{0x6817,{0x51,0x57,0x35,0x7f,0x35,0x57,0x51}}, // \xe6\xa0\x97
+{0x681e,{0x55,0x5f,0x35,0x78,0x35,0x5f,0x55}}, // \xe6\xa0\x9e
+{0x6821,{0x1a,0x7f,0x4a,0x56,0x23,0x56,0x4a}}, // \xe6\xa0\xa1
+{0x6822,{0x1a,0x7f,0x0a,0x7d,0x57,0x55,0x7d}}, // \xe6\xa0\xa2
+{0x6829,{0x1a,0x7f,0x29,0x15,0x7f,0x15,0x7f}}, // \xe6\xa0\xa9
+{0x682a,{0x1a,0x7f,0x4c,0x2b,0x7f,0x2a,0x48}}, // \xe6\xa0\xaa
+{0x682b,{0x1a,0x7f,0x0a,0x7e,0x23,0x76,0x2e}}, // \xe6\xa0\xab
+{0x6832,{0x1a,0x7f,0x28,0x1a,0x3f,0x2a,0x69}}, // \xe6\xa0\xb2
+{0x6834,{0x1a,0x7f,0x24,0x7b,0x2a,0x7a,0x22}}, // \xe6\xa0\xb4
+{0x6838,{0x1a,0x7f,0x4a,0x56,0x2b,0x32,0x4a}}, // \xe6\xa0\xb8
+{0x6839,{0x1a,0x7f,0x0a,0x7f,0x55,0x35,0x5f}}, // \xe6\xa0\xb9
+{0x683c,{0x1a,0x7f,0x10,0x6a,0x65,0x6b,0x10}}, // \xe6\xa0\xbc
+{0x683d,{0x48,0x2a,0x7f,0x2a,0x4f,0x38,0x5a}}, // \xe6\xa0\xbd
+{0x6840,{0x4a,0x5b,0x35,0x7b,0x34,0x5f,0x46}}, // \xe6\xa1\x80
+{0x6841,{0x1a,0x7f,0x0a,0x7d,0x00,0x45,0x7d}}, // \xe6\xa1\x81
+{0x6842,{0x1a,0x7f,0x48,0x5a,0x7f,0x5a,0x48}}, // \xe6\xa1\x82
+{0x6843,{0x1a,0x7f,0x4a,0x3f,0x00,0x7f,0x4a}}, // \xe6\xa1\x83
+{0x6846,{0x1a,0x7f,0x7f,0x41,0x6b,0x7f,0x6b}}, // \xe6\xa1\x86
+{0x6848,{0x56,0x5a,0x3e,0x7b,0x36,0x5a,0x56}}, // \xe6\xa1\x88
+{0x684d,{0x1a,0x7f,0x0a,0x16,0x1b,0x56,0x6a}}, // \xe6\xa1\x8d
+{0x684e,{0x1a,0x7f,0x45,0x57,0x7d,0x53,0x45}}, // \xe6\xa1\x8e
+{0x6850,{0x1a,0x7f,0x0a,0x7f,0x35,0x35,0x7f}}, // \xe6\xa1\x90
+{0x6851,{0x54,0x54,0x2d,0x71,0x33,0x54,0x4c}}, // \xe6\xa1\x91
+{0x6853,{0x1a,0x7f,0x41,0x7f,0x6b,0x7f,0x41}}, // \xe6\xa1\x93
+{0x6854,{0x1a,0x7f,0x02,0x6a,0x6f,0x6a,0x02}}, // \xe6\xa1\x94
+{0x6859,{0x1a,0x7f,0x34,0x2e,0x7d,0x2c,0x26}}, // \xe6\xa1\x99
+{0x685c,{0x1a,0x7f,0x49,0x58,0x2d,0x3a,0x49}}, // \xe6\xa1\x9c
+{0x685d,{0x1a,0x7f,0x44,0x2b,0x1e,0x12,0x7f}}, // \xe6\xa1\x9d
+{0x685f,{0x1a,0x7f,0x0a,0x4a,0x5f,0x2a,0x53}}, // \xe6\xa1\x9f
+{0x6863,{0x1a,0x7f,0x45,0x54,0x57,0x54,0x7d}}, // \xe6\xa1\xa3
+{0x6867,{0x1a,0x7f,0x54,0x72,0x55,0x36,0x54}}, // \xe6\xa1\xa7
+{0x6874,{0x1a,0x7f,0x22,0x29,0x6b,0x39,0x22}}, // \xe6\xa1\xb4
+{0x6876,{0x1a,0x7f,0x7c,0x15,0x7d,0x17,0x7d}}, // \xe6\xa1\xb6
+{0x6877,{0x1a,0x7f,0x42,0x3e,0x1d,0x57,0x7c}}, // \xe6\xa1\xb7
+{0x687e,{0x1a,0x7f,0x0a,0x25,0x7f,0x75,0x6f}}, // \xe6\xa1\xbe
+{0x687f,{0x1a,0x7f,0x28,0x2f,0x7d,0x2f,0x28}}, // \xe6\xa1\xbf
+{0x6881,{0x55,0x50,0x39,0x77,0x39,0x5f,0x54}}, // \xe6\xa2\x81
+{0x6883,{0x1a,0x7f,0x55,0x3b,0x6a,0x7e,0x69}}, // \xe6\xa2\x83
+{0x6885,{0x1a,0x7f,0x08,0x3b,0x2e,0x7e,0x2a}}, // \xe6\xa2\x85
+{0x688d,{0x1a,0x7f,0x10,0x16,0x7f,0x56,0x50}}, // \xe6\xa2\x8d
+{0x688f,{0x1a,0x7f,0x0c,0x6b,0x7f,0x6a,0x08}}, // \xe6\xa2\x8f
+{0x6893,{0x1a,0x7f,0x2a,0x2e,0x7b,0x2e,0x2a}}, // \xe6\xa2\x93
+{0x6894,{0x1a,0x7f,0x40,0x3e,0x7e,0x56,0x5d}}, // \xe6\xa2\x94
+{0x6897,{0x1a,0x7f,0x41,0x57,0x3f,0x47,0x41}}, // \xe6\xa2\x97
+{0x689b,{0x1a,0x7f,0x55,0x3f,0x55,0x7f,0x1b}}, // \xe6\xa2\x9b
+{0x689d,{0x04,0x7e,0x5f,0x3a,0x75,0x3b,0x50}}, // \xe6\xa2\x9d
+{0x689f,{0x50,0x56,0x36,0x7f,0x36,0x54,0x5c}}, // \xe6\xa2\x9f
+{0x68a0,{0x1a,0x7f,0x0a,0x77,0x5d,0x55,0x77}}, // \xe6\xa2\xa0
+{0x68a2,{0x1a,0x7f,0x0a,0x7d,0x14,0x57,0x7d}}, // \xe6\xa2\xa2
+{0x68a6,{0x4a,0x56,0x5f,0x2a,0x2e,0x1f,0x0a}}, // \xe6\xa2\xa6
+{0x68a7,{0x1a,0x7f,0x14,0x7d,0x57,0x7d,0x10}}, // \xe6\xa2\xa7
+{0x68a8,{0x5a,0x57,0x3f,0x7a,0x37,0x50,0x5f}}, // \xe6\xa2\xa8
+{0x68ad,{0x1a,0x7f,0x2a,0x57,0x32,0x5e,0x4b}}, // \xe6\xa2\xad
+{0x68af,{0x1a,0x7f,0x5a,0x2b,0x7e,0x2b,0x6e}}, // \xe6\xa2\xaf
+{0x68b0,{0x1a,0x7f,0x0a,0x3e,0x4a,0x3f,0x52}}, // \xe6\xa2\xb0
+{0x68b1,{0x1a,0x7f,0x7f,0x55,0x7f,0x55,0x7f}}, // \xe6\xa2\xb1
+{0x68b3,{0x1a,0x7f,0x4a,0x3e,0x7b,0x06,0x6a}}, // \xe6\xa2\xb3
+{0x68b5,{0x4a,0x26,0x1f,0x2a,0x0e,0x7f,0x4a}}, // \xe6\xa2\xb5
+{0x68b6,{0x1a,0x7f,0x40,0x3f,0x2b,0x7f,0x57}}, // \xe6\xa2\xb6
+{0x68b9,{0x1a,0x7f,0x50,0x1e,0x16,0x1d,0x54}}, // \xe6\xa2\xb9
+{0x68ba,{0x1a,0x16,0x1f,0x7a,0x36,0x5f,0x1a}}, // \xe6\xa2\xba
+{0x68bc,{0x1a,0x7f,0x34,0x5e,0x17,0x7e,0x14}}, // \xe6\xa2\xbc
+{0x68c4,{0x52,0x5a,0x3e,0x7b,0x36,0x5a,0x52}}, // \xe6\xa3\x84
+{0x68c6,{0x1a,0x7f,0x74,0x32,0x75,0x36,0x74}}, // \xe6\xa3\x86
+{0x68c9,{0x1a,0x7f,0x30,0x1e,0x7b,0x1e,0x30}}, // \xe6\xa3\x89
+{0x68ca,{0x48,0x5a,0x2f,0x7a,0x2f,0x5a,0x48}}, // \xe6\xa3\x8a
+{0x68cb,{0x1a,0x7f,0x52,0x1f,0x1a,0x1f,0x52}}, // \xe6\xa3\x8b
+{0x68cd,{0x1a,0x7f,0x7f,0x55,0x05,0x7d,0x57}}, // \xe6\xa3\x8d
+{0x68d2,{0x1a,0x7f,0x14,0x2e,0x77,0x2e,0x14}}, // \xe6\xa3\x92
+{0x68d4,{0x1a,0x7f,0x0a,0x7f,0x75,0x6f,0x15}}, // \xe6\xa3\x94
+{0x68d5,{0x1a,0x7f,0x56,0x12,0x77,0x16,0x56}}, // \xe6\xa3\x95
+{0x68d7,{0x52,0x56,0x2a,0x7f,0x2a,0x56,0x52}}, // \xe6\xa3\x97
+{0x68d8,{0x5a,0x2a,0x7f,0x5a,0x2a,0x7f,0x5a}}, // \xe6\xa3\x98
+{0x68da,{0x1a,0x7f,0x3f,0x55,0x3f,0x55,0x7f}}, // \xe6\xa3\x9a
+{0x68df,{0x1a,0x7f,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe6\xa3\x9f
+{0x68e0,{0x56,0x53,0x3e,0x7b,0x3e,0x53,0x56}}, // \xe6\xa3\xa0
+{0x68e1,{0x1a,0x7f,0x7f,0x35,0x29,0x35,0x7f}}, // \xe6\xa3\xa1
+{0x68e3,{0x1a,0x7f,0x5a,0x2a,0x7f,0x2e,0x54}}, // \xe6\xa3\xa3
+{0x68e7,{0x1a,0x7f,0x0a,0x52,0x5b,0x36,0x5b}}, // \xe6\xa3\xa7
+{0x68ee,{0x50,0x3a,0x76,0x5f,0x36,0x7a,0x50}}, // \xe6\xa3\xae
+{0x68ef,{0x1a,0x7f,0x64,0x2a,0x4d,0x5e,0x64}}, // \xe6\xa3\xaf
+{0x68f2,{0x1a,0x7f,0x52,0x7a,0x5f,0x3e,0x52}}, // \xe6\xa3\xb2
+{0x68f9,{0x1a,0x7f,0x20,0x3c,0x77,0x3e,0x22}}, // \xe6\xa3\xb9
+{0x68fa,{0x1a,0x7f,0x06,0x7a,0x5b,0x5a,0x76}}, // \xe6\xa3\xba
+{0x6900,{0x1a,0x7f,0x56,0x2a,0x7b,0x4a,0x5e}}, // \xe6\xa4\x80
+{0x6901,{0x1a,0x7f,0x22,0x2e,0x6b,0x3e,0x22}}, // \xe6\xa4\x81
+{0x6904,{0x1a,0x7f,0x4a,0x5e,0x2b,0x3e,0x4a}}, // \xe6\xa4\x84
+{0x6905,{0x1a,0x7f,0x12,0x5a,0x17,0x7a,0x12}}, // \xe6\xa4\x85
+{0x6908,{0x1a,0x7f,0x04,0x57,0x3a,0x56,0x7e}}, // \xe6\xa4\x88
+{0x690b,{0x1a,0x7f,0x22,0x4e,0x7b,0x0e,0x22}}, // \xe6\xa4\x8b
+{0x690c,{0x1a,0x7f,0x46,0x56,0x73,0x56,0x46}}, // \xe6\xa4\x8c
+{0x690d,{0x1a,0x7f,0x00,0x7a,0x42,0x5f,0x5a}}, // \xe6\xa4\x8d
+{0x690e,{0x1a,0x7f,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe6\xa4\x8e
+{0x690f,{0x1a,0x7f,0x5d,0x77,0x41,0x77,0x5d}}, // \xe6\xa4\x8f
+{0x6912,{0x1a,0x7f,0x28,0x7f,0x4a,0x31,0x4f}}, // \xe6\xa4\x92
+{0x6919,{0x1a,0x7f,0x0a,0x7c,0x57,0x57,0x7c}}, // \xe6\xa4\x99
+{0x691a,{0x1a,0x7f,0x7f,0x07,0x00,0x47,0x7f}}, // \xe6\xa4\x9a
+{0x691b,{0x1a,0x7f,0x12,0x7b,0x02,0x7f,0x52}}, // \xe6\xa4\x9b
+{0x691c,{0x1a,0x7f,0x5c,0x56,0x3d,0x56,0x5c}}, // \xe6\xa4\x9c
+{0x6921,{0x1a,0x7f,0x2d,0x3b,0x29,0x4e,0x7f}}, // \xe6\xa4\xa1
+{0x6922,{0x1a,0x7f,0x41,0x6b,0x7f,0x6b,0x7f}}, // \xe6\xa4\xa2
+{0x6923,{0x1a,0x7f,0x10,0x5e,0x1f,0x1a,0x5f}}, // \xe6\xa4\xa3
+{0x6925,{0x1a,0x7f,0x4b,0x3f,0x4a,0x3e,0x3e}}, // \xe6\xa4\xa5
+{0x6926,{0x1a,0x7f,0x56,0x2d,0x36,0x6d,0x16}}, // \xe6\xa4\xa6
+{0x6928,{0x1a,0x7f,0x3e,0x72,0x0b,0x52,0x7a}}, // \xe6\xa4\xa8
+{0x692a,{0x1a,0x7f,0x5a,0x7f,0x42,0x7f,0x5a}}, // \xe6\xa4\xaa
+{0x6930,{0x1a,0x7f,0x21,0x3f,0x2d,0x7f,0x1b}}, // \xe6\xa4\xb0
+{0x6934,{0x1a,0x7f,0x7e,0x15,0x5b,0x29,0x5b}}, // \xe6\xa4\xb4
+{0x6936,{0x1a,0x7f,0x2f,0x5d,0x2a,0x5d,0x4f}}, // \xe6\xa4\xb6
+{0x6939,{0x1a,0x7f,0x72,0x5f,0x72,0x5f,0x52}}, // \xe6\xa4\xb9
+{0x693d,{0x1a,0x7f,0x2c,0x56,0x7d,0x27,0x55}}, // \xe6\xa4\xbd
+{0x693f,{0x1a,0x7f,0x2a,0x1e,0x6f,0x7e,0x2a}}, // \xe6\xa4\xbf
+{0x694a,{0x1a,0x7f,0x24,0x5f,0x35,0x57,0x74}}, // \xe6\xa5\x8a
+{0x6953,{0x1a,0x7f,0x3f,0x4d,0x7f,0x2d,0x7f}}, // \xe6\xa5\x93
+{0x6954,{0x1a,0x7f,0x56,0x5f,0x36,0x53,0x57}}, // \xe6\xa5\x94
+{0x6955,{0x1a,0x7f,0x0a,0x77,0x3a,0x7e,0x0a}}, // \xe6\xa5\x95
+{0x6959,{0x1a,0x7f,0x29,0x7d,0x1b,0x7f,0x1a}}, // \xe6\xa5\x99
+{0x695a,{0x5a,0x36,0x5f,0x7a,0x76,0x5f,0x4a}}, // \xe6\xa5\x9a
+{0x695c,{0x1a,0x7f,0x3a,0x2f,0x7a,0x3f,0x7f}}, // \xe6\xa5\x9c
+{0x695d,{0x1a,0x7f,0x42,0x2e,0x7f,0x2e,0x4e}}, // \xe6\xa5\x9d
+{0x695e,{0x1a,0x7f,0x00,0x4b,0x3b,0x2f,0x6b}}, // \xe6\xa5\x9e
+{0x6960,{0x1a,0x7f,0x7a,0x2a,0x77,0x2a,0x7a}}, // \xe6\xa5\xa0
+{0x6961,{0x1a,0x7f,0x05,0x73,0x75,0x26,0x54}}, // \xe6\xa5\xa1
+{0x6962,{0x1a,0x7f,0x7a,0x5f,0x4a,0x5f,0x7a}}, // \xe6\xa5\xa2
+{0x696a,{0x1a,0x7f,0x5f,0x32,0x77,0x36,0x57}}, // \xe6\xa5\xaa
+{0x696b,{0x1a,0x7f,0x24,0x3f,0x2d,0x7f,0x24}}, // \xe6\xa5\xab
+{0x696d,{0x53,0x5a,0x3f,0x7a,0x3f,0x5a,0x53}}, // \xe6\xa5\xad
+{0x696e,{0x1a,0x7f,0x28,0x1a,0x6f,0x7a,0x69}}, // \xe6\xa5\xae
+{0x696f,{0x1a,0x7f,0x20,0x1e,0x76,0x7e,0x75}}, // \xe6\xa5\xaf
+{0x6973,{0x1a,0x7f,0x52,0x3f,0x7a,0x3f,0x52}}, // \xe6\xa5\xb3
+{0x6974,{0x1a,0x7f,0x1a,0x6e,0x3b,0x6e,0x1a}}, // \xe6\xa5\xb4
+{0x6975,{0x1a,0x7f,0x0a,0x59,0x47,0x7d,0x59}}, // \xe6\xa5\xb5
+{0x6977,{0x1a,0x7f,0x0f,0x6a,0x70,0x6f,0x0a}}, // \xe6\xa5\xb7
+{0x6978,{0x1a,0x7f,0x35,0x7f,0x4c,0x3f,0x44}}, // \xe6\xa5\xb8
+{0x6979,{0x1a,0x7f,0x49,0x77,0x75,0x7b,0x4e}}, // \xe6\xa5\xb9
+{0x697c,{0x1a,0x7f,0x55,0x7a,0x57,0x32,0x55}}, // \xe6\xa5\xbc
+{0x697d,{0x55,0x52,0x36,0x7d,0x36,0x52,0x55}}, // \xe6\xa5\xbd
+{0x697e,{0x1a,0x7f,0x50,0x3e,0x7b,0x2e,0x50}}, // \xe6\xa5\xbe
+{0x6981,{0x1a,0x7f,0x56,0x5a,0x77,0x4a,0x56}}, // \xe6\xa6\x81
+{0x6982,{0x1a,0x7f,0x3e,0x2e,0x49,0x3f,0x4f}}, // \xe6\xa6\x82
+{0x698a,{0x1a,0x7f,0x0a,0x77,0x3e,0x6b,0x3e}}, // \xe6\xa6\x8a
+{0x698e,{0x1a,0x7f,0x51,0x5f,0x2f,0x5f,0x41}}, // \xe6\xa6\x8e
+{0x6991,{0x1a,0x7f,0x12,0x3e,0x57,0x7e,0x13}}, // \xe6\xa6\x91
+{0x6994,{0x1a,0x7f,0x7e,0x4b,0x2e,0x7f,0x1b}}, // \xe6\xa6\x94
+{0x6995,{0x1a,0x7f,0x26,0x16,0x6b,0x76,0x26}}, // \xe6\xa6\x95
+{0x699b,{0x1a,0x7f,0x52,0x2a,0x77,0x2a,0x52}}, // \xe6\xa6\x9b
+{0x699c,{0x1a,0x7f,0x1a,0x4e,0x3b,0x6e,0x1a}}, // \xe6\xa6\x9c
+{0x69a0,{0x1a,0x7f,0x53,0x1d,0x15,0x1d,0x53}}, // \xe6\xa6\xa0
+{0x69a7,{0x1a,0x7f,0x55,0x7f,0x41,0x7f,0x55}}, // \xe6\xa6\xa7
+{0x69ae,{0x4d,0x56,0x35,0x7c,0x35,0x56,0x4d}}, // \xe6\xa6\xae
+{0x69b1,{0x1a,0x7f,0x2a,0x7e,0x57,0x3e,0x4a}}, // \xe6\xa6\xb1
+{0x69b2,{0x1a,0x7f,0x02,0x4f,0x6d,0x6b,0x4f}}, // \xe6\xa6\xb2
+{0x69b4,{0x1a,0x7f,0x0e,0x7a,0x79,0x77,0x0f}}, // \xe6\xa6\xb4
+{0x69bb,{0x1a,0x7f,0x48,0x2f,0x7d,0x2f,0x78}}, // \xe6\xa6\xbb
+{0x69be,{0x1a,0x7f,0x0c,0x77,0x35,0x77,0x0c}}, // \xe6\xa6\xbe
+{0x69bf,{0x1a,0x7f,0x5b,0x6a,0x6b,0x6a,0x5b}}, // \xe6\xa6\xbf
+{0x69c1,{0x1a,0x7f,0x72,0x1e,0x5b,0x1e,0x72}}, // \xe6\xa7\x81
+{0x69c3,{0x5c,0x57,0x3f,0x74,0x3b,0x55,0x5b}}, // \xe6\xa7\x83
+{0x69c7,{0x1a,0x7f,0x58,0x13,0x1e,0x1e,0x52}}, // \xe6\xa7\x87
+{0x69ca,{0x57,0x5e,0x37,0x78,0x37,0x55,0x5f}}, // \xe6\xa7\x8a
+{0x69cb,{0x1a,0x7f,0x2a,0x7f,0x3a,0x7f,0x2a}}, // \xe6\xa7\x8b
+{0x69cc,{0x1a,0x7f,0x4a,0x39,0x40,0x7e,0x77}}, // \xe6\xa7\x8c
+{0x69cd,{0x1a,0x7f,0x24,0x1e,0x6d,0x62,0x04}}, // \xe6\xa7\x8d
+{0x69ce,{0x1a,0x7f,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe6\xa7\x8e
+{0x69d0,{0x1a,0x7f,0x5e,0x2a,0x7f,0x6a,0x5e}}, // \xe6\xa7\x90
+{0x69d3,{0x1a,0x7f,0x44,0x3d,0x2f,0x3d,0x44}}, // \xe6\xa7\x93
+{0x69d8,{0x1a,0x7f,0x5a,0x2f,0x7e,0x2f,0x5a}}, // \xe6\xa7\x98
+{0x69d9,{0x1a,0x7f,0x52,0x1e,0x1f,0x1e,0x52}}, // \xe6\xa7\x99
+{0x69dd,{0x1a,0x7f,0x0a,0x5e,0x77,0x56,0x70}}, // \xe6\xa7\x9d
+{0x69de,{0x1a,0x7f,0x0a,0x3e,0x3b,0x7e,0x4a}}, // \xe6\xa7\x9e
+{0x69e7,{0x5a,0x5e,0x3f,0x7a,0x37,0x5d,0x55}}, // \xe6\xa7\xa7
+{0x69e8,{0x1a,0x7f,0x2e,0x7b,0x2e,0x7f,0x1b}}, // \xe6\xa7\xa8
+{0x69eb,{0x1a,0x7f,0x12,0x3e,0x5f,0x76,0x1a}}, // \xe6\xa7\xab
+{0x69ed,{0x1a,0x7f,0x22,0x7e,0x2a,0x3f,0x52}}, // \xe6\xa7\xad
+{0x69f2,{0x1a,0x7f,0x42,0x3d,0x7f,0x2a,0x7f}}, // \xe6\xa7\xb2
+{0x69f9,{0x1a,0x7f,0x28,0x2e,0x77,0x2e,0x28}}, // \xe6\xa7\xb9
+{0x69fb,{0x1a,0x7f,0x4a,0x3f,0x4a,0x3f,0x5f}}, // \xe6\xa7\xbb
+{0x69fd,{0x1a,0x7f,0x1a,0x7f,0x5a,0x7f,0x1a}}, // \xe6\xa7\xbd
+{0x69ff,{0x1a,0x7f,0x5a,0x5f,0x7a,0x5f,0x5a}}, // \xe6\xa7\xbf
+{0x6a02,{0x5a,0x55,0x3e,0x7b,0x3e,0x5a,0x55}}, // \xe6\xa8\x82
+{0x6a05,{0x1a,0x7f,0x0a,0x7d,0x22,0x79,0x52}}, // \xe6\xa8\x85
+{0x6a0a,{0x4a,0x5f,0x5a,0x35,0x5a,0x5f,0x4a}}, // \xe6\xa8\x8a
+{0x6a0b,{0x1a,0x7f,0x49,0x38,0x5d,0x4f,0x5c}}, // \xe6\xa8\x8b
+{0x6a0c,{0x1a,0x7f,0x42,0x3f,0x3d,0x3f,0x42}}, // \xe6\xa8\x8c
+{0x6a12,{0x1a,0x7f,0x16,0x6a,0x77,0x5a,0x66}}, // \xe6\xa8\x92
+{0x6a13,{0x1a,0x7f,0x54,0x7e,0x5b,0x3e,0x54}}, // \xe6\xa8\x93
+{0x6a14,{0x1a,0x7f,0x52,0x3d,0x7e,0x3d,0x50}}, // \xe6\xa8\x94
+{0x6a17,{0x1a,0x7f,0x06,0x1b,0x1f,0x5b,0x76}}, // \xe6\xa8\x97
+{0x6a19,{0x1a,0x7f,0x51,0x17,0x77,0x17,0x51}}, // \xe6\xa8\x99
+{0x6a1b,{0x1a,0x7f,0x11,0x4b,0x54,0x29,0x13}}, // \xe6\xa8\x9b
+{0x6a1e,{0x1a,0x7f,0x7f,0x71,0x47,0x77,0x71}}, // \xe6\xa8\x9e
+{0x6a1f,{0x1a,0x7f,0x2a,0x3e,0x7b,0x3e,0x2a}}, // \xe6\xa8\x9f
+{0x6a21,{0x1a,0x7f,0x52,0x5f,0x36,0x5f,0x52}}, // \xe6\xa8\xa1
+{0x6a22,{0x1a,0x7f,0x0a,0x5e,0x17,0x56,0x70}}, // \xe6\xa8\xa2
+{0x6a23,{0x1a,0x7f,0x52,0x37,0x7e,0x27,0x52}}, // \xe6\xa8\xa3
+{0x6a29,{0x1a,0x7f,0x0a,0x14,0x7b,0x7e,0x4a}}, // \xe6\xa8\xa9
+{0x6a2a,{0x1a,0x7f,0x4a,0x3f,0x3a,0x3f,0x4a}}, // \xe6\xa8\xaa
+{0x6a2b,{0x1a,0x7f,0x47,0x57,0x7b,0x55,0x4b}}, // \xe6\xa8\xab
+{0x6a2e,{0x1a,0x7f,0x51,0x47,0x37,0x47,0x51}}, // \xe6\xa8\xae
+{0x6a35,{0x1a,0x7f,0x44,0x1f,0x52,0x1f,0x52}}, // \xe6\xa8\xb5
+{0x6a36,{0x1a,0x7f,0x24,0x3f,0x7d,0x2f,0x5c}}, // \xe6\xa8\xb6
+{0x6a38,{0x1a,0x7f,0x4b,0x5e,0x3b,0x5e,0x4b}}, // \xe6\xa8\xb8
+{0x6a39,{0x1a,0x7f,0x5a,0x6f,0x5a,0x12,0x7f}}, // \xe6\xa8\xb9
+{0x6a3a,{0x1a,0x7f,0x2a,0x3f,0x7e,0x3f,0x2a}}, // \xe6\xa8\xba
+{0x6a3d,{0x1a,0x7f,0x1e,0x37,0x52,0x77,0x1e}}, // \xe6\xa8\xbd
+{0x6a44,{0x1a,0x7f,0x3d,0x27,0x7d,0x3f,0x5e}}, // \xe6\xa9\x84
+{0x6a47,{0x1a,0x7f,0x72,0x52,0x07,0x75,0x54}}, // \xe6\xa9\x87
+{0x6a48,{0x1a,0x7f,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe6\xa9\x88
+{0x6a4b,{0x1a,0x7f,0x7a,0x17,0x5b,0x17,0x7a}}, // \xe6\xa9\x8b
+{0x6a58,{0x1a,0x7f,0x7a,0x37,0x5f,0x33,0x76}}, // \xe6\xa9\x98
+{0x6a59,{0x1a,0x7f,0x45,0x5b,0x69,0x5a,0x45}}, // \xe6\xa9\x99
+{0x6a5f,{0x1a,0x7f,0x4a,0x3d,0x48,0x3a,0x55}}, // \xe6\xa9\x9f
+{0x6a61,{0x1a,0x7f,0x22,0x5e,0x7d,0x2f,0x50}}, // \xe6\xa9\xa1
+{0x6a62,{0x1a,0x7f,0x25,0x1b,0x7e,0x3b,0x7a}}, // \xe6\xa9\xa2
+{0x6a66,{0x1a,0x7f,0x4a,0x5e,0x7b,0x5e,0x4a}}, // \xe6\xa9\xa6
+{0x6a72,{0x1a,0x7f,0x12,0x7e,0x57,0x7e,0x12}}, // \xe6\xa9\xb2
+{0x6a78,{0x1a,0x7f,0x78,0x7f,0x05,0x7f,0x78}}, // \xe6\xa9\xb8
+{0x6a7f,{0x1a,0x7f,0x02,0x49,0x7f,0x7f,0x49}}, // \xe6\xa9\xbf
+{0x6a80,{0x1a,0x7f,0x4e,0x7e,0x5b,0x7e,0x4e}}, // \xe6\xaa\x80
+{0x6a84,{0x1a,0x7f,0x2e,0x5f,0x7c,0x23,0x5e}}, // \xe6\xaa\x84
+{0x6a8d,{0x1a,0x7f,0x6a,0x3e,0x5b,0x5e,0x6a}}, // \xe6\xaa\x8d
+{0x6a8e,{0x1a,0x7f,0x7a,0x4e,0x7d,0x2e,0x7a}}, // \xe6\xaa\x8e
+{0x6a90,{0x1a,0x7f,0x3c,0x2e,0x75,0x7f,0x2c}}, // \xe6\xaa\x90
+{0x6a97,{0x54,0x5f,0x3b,0x70,0x36,0x5b,0x56}}, // \xe6\xaa\x97
+{0x6a9c,{0x1a,0x7f,0x1c,0x76,0x5d,0x76,0x1c}}, // \xe6\xaa\x9c
+{0x6aa0,{0x5a,0x57,0x36,0x7f,0x3a,0x55,0x5b}}, // \xe6\xaa\xa0
+{0x6aa2,{0x1a,0x7f,0x5c,0x36,0x5d,0x36,0x5c}}, // \xe6\xaa\xa2
+{0x6aa3,{0x1a,0x7f,0x7a,0x76,0x5b,0x76,0x7a}}, // \xe6\xaa\xa3
+{0x6aaa,{0x1a,0x7f,0x55,0x36,0x79,0x36,0x55}}, // \xe6\xaa\xaa
+{0x6aac,{0x1a,0x7f,0x2a,0x5f,0x7a,0x2f,0x5a}}, // \xe6\xaa\xac
+{0x6aae,{0x1a,0x7f,0x34,0x36,0x5f,0x76,0x14}}, // \xe6\xaa\xae
+{0x6ab3,{0x1a,0x7f,0x4e,0x3a,0x37,0x3a,0x46}}, // \xe6\xaa\xb3
+{0x6ab8,{0x1a,0x7f,0x16,0x5e,0x7f,0x1a,0x16}}, // \xe6\xaa\xb8
+{0x6abb,{0x1a,0x7f,0x4f,0x69,0x60,0x6b,0x4a}}, // \xe6\xaa\xbb
+{0x6ac1,{0x1a,0x7f,0x56,0x5a,0x77,0x5a,0x66}}, // \xe6\xab\x81
+{0x6ac2,{0x1a,0x7f,0x21,0x7b,0x50,0x79,0x53}}, // \xe6\xab\x82
+{0x6ac3,{0x1a,0x7f,0x7f,0x65,0x5f,0x5f,0x65}}, // \xe6\xab\x83
+{0x6ad1,{0x1a,0x7f,0x70,0x77,0x07,0x77,0x70}}, // \xe6\xab\x91
+{0x6ad3,{0x1a,0x7f,0x12,0x6e,0x7d,0x6f,0x10}}, // \xe6\xab\x93
+{0x6ada,{0x1a,0x7f,0x7f,0x73,0x5c,0x57,0x7f}}, // \xe6\xab\x9a
+{0x6adb,{0x1a,0x7f,0x7b,0x5e,0x00,0x7b,0x1e}}, // \xe6\xab\x9b
+{0x6ade,{0x1a,0x7f,0x2a,0x75,0x2c,0x5e,0x77}}, // \xe6\xab\x9e
+{0x6adf,{0x1a,0x7f,0x5a,0x35,0x7f,0x3a,0x55}}, // \xe6\xab\x9f
+{0x6ae8,{0x1a,0x7f,0x22,0x5c,0x64,0x6f,0x4a}}, // \xe6\xab\xa8
+{0x6aea,{0x1a,0x7f,0x5f,0x6f,0x45,0x6f,0x45}}, // \xe6\xab\xaa
+{0x6afa,{0x1a,0x7f,0x66,0x03,0x6f,0x03,0x66}}, // \xe6\xab\xba
+{0x6afb,{0x1a,0x7f,0x57,0x7b,0x54,0x33,0x57}}, // \xe6\xab\xbb
+{0x6b04,{0x1a,0x7f,0x7f,0x2b,0x7c,0x2b,0x7f}}, // \xe6\xac\x84
+{0x6b05,{0x1a,0x7f,0x2e,0x79,0x7e,0x3d,0x2f}}, // \xe6\xac\x85
+{0x6b0a,{0x1a,0x7f,0x26,0x7f,0x52,0x7f,0x56}}, // \xe6\xac\x8a
+{0x6b12,{0x4a,0x5d,0x3a,0x77,0x3a,0x5d,0x48}}, // \xe6\xac\x92
+{0x6b16,{0x1a,0x7f,0x47,0x3d,0x38,0x7f,0x46}}, // \xe6\xac\x96
+{0x6b1d,{0x4a,0x7f,0x7a,0x5d,0x0a,0x5f,0x7a}}, // \xe6\xac\x9d
+{0x6b1f,{0x1a,0x7f,0x77,0x7a,0x57,0x3f,0x5f}}, // \xe6\xac\x9f
+{0x6b20,{0x48,0x47,0x22,0x1e,0x22,0x42,0x46}}, // \xe6\xac\xa0
+{0x6b21,{0x71,0x00,0x44,0x23,0x1e,0x22,0x46}}, // \xe6\xac\xa1
+{0x6b23,{0x40,0x3e,0x0a,0x79,0x44,0x3b,0x46}}, // \xe6\xac\xa3
+{0x6b27,{0x7f,0x55,0x49,0x14,0x43,0x3e,0x46}}, // \xe6\xac\xa7
+{0x6b32,{0x12,0x69,0x64,0x69,0x44,0x3b,0x46}}, // \xe6\xac\xb2
+{0x6b37,{0x48,0x2d,0x7a,0x2d,0x64,0x3b,0x46}}, // \xe6\xac\xb7
+{0x6b38,{0x56,0x5d,0x34,0x56,0x44,0x3b,0x46}}, // \xe6\xac\xb8
+{0x6b39,{0x12,0x5a,0x17,0x7a,0x44,0x3b,0x46}}, // \xe6\xac\xb9
+{0x6b3a,{0x52,0x1f,0x1a,0x5f,0x52,0x3b,0x46}}, // \xe6\xac\xba
+{0x6b3d,{0x56,0x7d,0x36,0x44,0x43,0x3e,0x46}}, // \xe6\xac\xbd
+{0x6b3e,{0x2a,0x6f,0x2a,0x44,0x43,0x3e,0x46}}, // \xe6\xac\xbe
+{0x6b43,{0x74,0x56,0x7e,0x75,0x44,0x3b,0x46}}, // \xe6\xad\x83
+{0x6b47,{0x30,0x2f,0x4d,0x7f,0x44,0x3b,0x46}}, // \xe6\xad\x87
+{0x6b49,{0x52,0x37,0x7e,0x3f,0x44,0x3b,0x46}}, // \xe6\xad\x89
+{0x6b4c,{0x2d,0x49,0x7f,0x44,0x43,0x3e,0x46}}, // \xe6\xad\x8c
+{0x6b4e,{0x5a,0x5f,0x3a,0x5f,0x44,0x3b,0x46}}, // \xe6\xad\x8e
+{0x6b50,{0x7f,0x71,0x47,0x77,0x74,0x3b,0x46}}, // \xe6\xad\x90
+{0x6b53,{0x14,0x7b,0x7e,0x4a,0x44,0x3b,0x46}}, // \xe6\xad\x93
+{0x6b54,{0x7c,0x44,0x7f,0x2a,0x44,0x3b,0x46}}, // \xe6\xad\x94
+{0x6b59,{0x2c,0x7a,0x2d,0x7a,0x44,0x3b,0x46}}, // \xe6\xad\x99
+{0x6b5b,{0x5c,0x36,0x5d,0x36,0x5c,0x3b,0x46}}, // \xe6\xad\x9b
+{0x6b5f,{0x5e,0x11,0x1e,0x5f,0x44,0x3b,0x46}}, // \xe6\xad\x9f
+{0x6b61,{0x26,0x7f,0x7a,0x57,0x44,0x3b,0x46}}, // \xe6\xad\xa1
+{0x6b62,{0x40,0x7c,0x40,0x7f,0x44,0x44,0x40}}, // \xe6\xad\xa2
+{0x6b63,{0x41,0x79,0x41,0x7f,0x49,0x49,0x41}}, // \xe6\xad\xa3
+{0x6b64,{0x7c,0x40,0x3f,0x24,0x7f,0x48,0x64}}, // \xe6\xad\xa4
+{0x6b66,{0x44,0x75,0x7d,0x54,0x0f,0x34,0x45}}, // \xe6\xad\xa6
+{0x6b69,{0x28,0x5e,0x48,0x7f,0x2a,0x1a,0x28}}, // \xe6\xad\xa9
+{0x6b6a,{0x45,0x6d,0x4b,0x7f,0x59,0x5b,0x45}}, // \xe6\xad\xaa
+{0x6b6f,{0x04,0x7e,0x6c,0x7f,0x56,0x6e,0x7a}}, // \xe6\xad\xaf
+{0x6b73,{0x48,0x3e,0x68,0x2f,0x4a,0x3a,0x58}}, // \xe6\xad\xb3
+{0x6b74,{0x40,0x3f,0x45,0x6f,0x45,0x7f,0x55}}, // \xe6\xad\xb4
+{0x6b78,{0x6e,0x7b,0x5c,0x18,0x6d,0x3f,0x7a}}, // \xe6\xad\xb8
+{0x6b79,{0x01,0x49,0x49,0x37,0x15,0x0d,0x01}}, // \xe6\xad\xb9
+{0x6b7b,{0x49,0x37,0x1d,0x01,0x7f,0x49,0x65}}, // \xe6\xad\xbb
+{0x6b7f,{0x49,0x37,0x1d,0x44,0x5b,0x2d,0x5b}}, // \xe6\xad\xbf
+{0x6b80,{0x49,0x37,0x1d,0x48,0x4a,0x3e,0x49}}, // \xe6\xae\x80
+{0x6b83,{0x49,0x37,0x1d,0x48,0x4e,0x3b,0x4e}}, // \xe6\xae\x83
+{0x6b84,{0x49,0x37,0x1d,0x42,0x55,0x2a,0x14}}, // \xe6\xae\x84
+{0x6b86,{0x49,0x37,0x1d,0x08,0x6c,0x6b,0x6c}}, // \xe6\xae\x86
+{0x6b89,{0x49,0x37,0x1d,0x3c,0x2b,0x3e,0x7e}}, // \xe6\xae\x89
+{0x6b8a,{0x49,0x37,0x5d,0x2b,0x7f,0x2a,0x48}}, // \xe6\xae\x8a
+{0x6b8b,{0x49,0x37,0x1d,0x4a,0x5f,0x2a,0x53}}, // \xe6\xae\x8b
+{0x6b8d,{0x49,0x37,0x1d,0x22,0x6b,0x39,0x22}}, // \xe6\xae\x8d
+{0x6b95,{0x49,0x37,0x1d,0x0a,0x6e,0x6b,0x6e}}, // \xe6\xae\x95
+{0x6b96,{0x49,0x37,0x1d,0x7a,0x42,0x5f,0x5a}}, // \xe6\xae\x96
+{0x6b98,{0x49,0x37,0x1d,0x52,0x5b,0x36,0x5b}}, // \xe6\xae\x98
+{0x6b9e,{0x49,0x37,0x1d,0x5c,0x17,0x17,0x5c}}, // \xe6\xae\x9e
+{0x6ba4,{0x49,0x37,0x1d,0x23,0x5e,0x3e,0x72}}, // \xe6\xae\xa4
+{0x6baa,{0x49,0x37,0x1d,0x5a,0x6a,0x6f,0x5a}}, // \xe6\xae\xaa
+{0x6bab,{0x49,0x37,0x1d,0x23,0x3f,0x7c,0x23}}, // \xe6\xae\xab
+{0x6baf,{0x49,0x37,0x5f,0x3a,0x37,0x3a,0x46}}, // \xe6\xae\xaf
+{0x6bb1,{0x49,0x37,0x5d,0x7f,0x54,0x3f,0x55}}, // \xe6\xae\xb1
+{0x6bb2,{0x49,0x37,0x5d,0x7e,0x55,0x3f,0x55}}, // \xe6\xae\xb2
+{0x6bb3,{0x44,0x4c,0x5b,0x29,0x5f,0x44,0x46}}, // \xe6\xae\xb3
+{0x6bb4,{0x7f,0x55,0x49,0x14,0x5b,0x29,0x5b}}, // \xe6\xae\xb4
+{0x6bb5,{0x20,0x7e,0x15,0x40,0x5b,0x29,0x5b}}, // \xe6\xae\xb5
+{0x6bb7,{0x7e,0x2e,0x6d,0x00,0x5b,0x29,0x5b}}, // \xe6\xae\xb7
+{0x6bba,{0x54,0x35,0x7a,0x35,0x5b,0x29,0x5b}}, // \xe6\xae\xba
+{0x6bbb,{0x5a,0x2f,0x6a,0x58,0x5b,0x29,0x5b}}, // \xe6\xae\xbb
+{0x6bbc,{0x5a,0x37,0x76,0x5a,0x5b,0x29,0x5b}}, // \xe6\xae\xbc
+{0x6bbf,{0x40,0x3f,0x5d,0x15,0x5b,0x29,0x5b}}, // \xe6\xae\xbf
+{0x6bc0,{0x4e,0x59,0x3a,0x2e,0x5b,0x29,0x5b}}, // \xe6\xaf\x80
+{0x6bc5,{0x2a,0x5e,0x7b,0x2e,0x5b,0x29,0x5b}}, // \xe6\xaf\x85
+{0x6bc6,{0x7f,0x71,0x47,0x77,0x5b,0x29,0x5b}}, // \xe6\xaf\x86
+{0x6bcb,{0x08,0x38,0x2f,0x3f,0x69,0x7f,0x28}}, // \xe6\xaf\x8b
+{0x6bcd,{0x08,0x38,0x2f,0x3b,0x69,0x7f,0x28}}, // \xe6\xaf\x8d
+{0x6bce,{0x0c,0x3b,0x2e,0x3e,0x6a,0x7e,0x2a}}, // \xe6\xaf\x8e
+{0x6bd2,{0x28,0x7a,0x6a,0x7f,0x6a,0x7a,0x28}}, // \xe6\xaf\x92
+{0x6bd3,{0x33,0x2e,0x7e,0x12,0x6e,0x0b,0x6a}}, // \xe6\xaf\x93
+{0x6bd4,{0x40,0x7f,0x24,0x24,0x7f,0x48,0x64}}, // \xe6\xaf\x94
+{0x6bd8,{0x40,0x7f,0x55,0x07,0x7d,0x57,0x50}}, // \xe6\xaf\x98
+{0x6bdb,{0x28,0x2a,0x2a,0x7e,0x55,0x55,0x54}}, // \xe6\xaf\x9b
+{0x6bdf,{0x24,0x2a,0x28,0x7f,0x54,0x52,0x64}}, // \xe6\xaf\x9f
+{0x6beb,{0x1a,0x2e,0x3a,0x7b,0x7a,0x6e,0x5a}}, // \xe6\xaf\xab
+{0x6bec,{0x2a,0x7e,0x55,0x6a,0x52,0x7f,0x6a}}, // \xe6\xaf\xac
+{0x6bef,{0x2a,0x7e,0x55,0x6a,0x68,0x57,0x6a}}, // \xe6\xaf\xaf
+{0x6bf3,{0x24,0x74,0x55,0x0f,0x2b,0x7a,0x52}}, // \xe6\xaf\xb3
+{0x6c08,{0x4e,0x7e,0x7b,0x2e,0x0a,0x7e,0x55}}, // \xe6\xb0\x88
+{0x6c0f,{0x40,0x7e,0x4a,0x0e,0x19,0x29,0x48}}, // \xe6\xb0\x8f
+{0x6c11,{0x40,0x7f,0x55,0x1d,0x35,0x57,0x50}}, // \xe6\xb0\x91
+{0x6c13,{0x1e,0x23,0x22,0x7f,0x55,0x3d,0x57}}, // \xe6\xb0\x93
+{0x6c14,{0x04,0x0b,0x0e,0x0e,0x0e,0x3a,0x42}}, // \xe6\xb0\x94
+{0x6c17,{0x44,0x5b,0x2e,0x5e,0x0e,0x3a,0x42}}, // \xe6\xb0\x97
+{0x6c1b,{0x14,0x4b,0x2e,0x6e,0x1e,0x3a,0x42}}, // \xe6\xb0\x9b
+{0x6c23,{0x54,0x2b,0x7e,0x2e,0x5e,0x3a,0x42}}, // \xe6\xb0\xa3
+{0x6c24,{0x0c,0x7b,0x6e,0x5e,0x7e,0x3a,0x42}}, // \xe6\xb0\xa4
+{0x6c34,{0x24,0x14,0x4c,0x7f,0x08,0x14,0x22}}, // \xe6\xb0\xb4
+{0x6c37,{0x24,0x15,0x4c,0x7f,0x08,0x14,0x22}}, // \xe6\xb0\xb7
+{0x6c38,{0x28,0x18,0x45,0x7d,0x10,0x28,0x44}}, // \xe6\xb0\xb8
+{0x6c3e,{0x75,0x00,0x3f,0x41,0x49,0x4f,0x60}}, // \xe6\xb0\xbe
+{0x6c40,{0x75,0x00,0x01,0x41,0x7f,0x01,0x01}}, // \xe6\xb1\x80
+{0x6c41,{0x75,0x00,0x04,0x04,0x7f,0x04,0x04}}, // \xe6\xb1\x81
+{0x6c42,{0x22,0x2a,0x52,0x7f,0x12,0x2b,0x42}}, // \xe6\xb1\x82
+{0x6c4e,{0x75,0x40,0x3f,0x05,0x09,0x7f,0x40}}, // \xe6\xb1\x8e
+{0x6c50,{0x75,0x00,0x48,0x44,0x2b,0x12,0x0e}}, // \xe6\xb1\x90
+{0x6c55,{0x75,0x00,0x7c,0x40,0x7f,0x40,0x7c}}, // \xe6\xb1\x95
+{0x6c57,{0x75,0x00,0x08,0x09,0x7f,0x09,0x08}}, // \xe6\xb1\x97
+{0x6c5a,{0x75,0x00,0x05,0x1f,0x15,0x55,0x75}}, // \xe6\xb1\x9a
+{0x6c5d,{0x75,0x00,0x44,0x5c,0x37,0x2c,0x44}}, // \xe6\xb1\x9d
+{0x6c5e,{0x54,0x35,0x45,0x7f,0x15,0x25,0x54}}, // \xe6\xb1\x9e
+{0x6c5f,{0x75,0x00,0x42,0x42,0x7e,0x42,0x42}}, // \xe6\xb1\x9f
+{0x6c60,{0x75,0x00,0x08,0x7e,0x44,0x5f,0x6c}}, // \xe6\xb1\xa0
+{0x6c62,{0x75,0x00,0x40,0x44,0x7f,0x44,0x40}}, // \xe6\xb1\xa2
+{0x6c68,{0x75,0x00,0x7f,0x49,0x49,0x49,0x7f}}, // \xe6\xb1\xa8
+{0x6c6a,{0x75,0x00,0x41,0x49,0x7f,0x49,0x41}}, // \xe6\xb1\xaa
+{0x6c70,{0x75,0x00,0x44,0x24,0x5f,0x24,0x44}}, // \xe6\xb1\xb0
+{0x6c72,{0x75,0x40,0x31,0x4f,0x51,0x27,0x5c}}, // \xe6\xb1\xb2
+{0x6c73,{0x75,0x40,0x3f,0x45,0x5d,0x25,0x5d}}, // \xe6\xb1\xb3
+{0x6c7a,{0x75,0x00,0x48,0x4a,0x3f,0x4e,0x48}}, // \xe6\xb1\xba
+{0x6c7d,{0x75,0x04,0x0b,0x0e,0x0e,0x3a,0x42}}, // \xe6\xb1\xbd
+{0x6c7e,{0x75,0x00,0x44,0x3b,0x48,0x7b,0x04}}, // \xe6\xb1\xbe
+{0x6c81,{0x75,0x20,0x18,0x7d,0x42,0x68,0x10}}, // \xe6\xb2\x81
+{0x6c82,{0x75,0x40,0x3e,0x0a,0x0a,0x79,0x08}}, // \xe6\xb2\x82
+{0x6c83,{0x75,0x00,0x48,0x4a,0x3e,0x49,0x48}}, // \xe6\xb2\x83
+{0x6c88,{0x75,0x00,0x46,0x22,0x1f,0x7a,0x46}}, // \xe6\xb2\x88
+{0x6c8c,{0x75,0x00,0x1a,0x12,0x7f,0x52,0x5a}}, // \xe6\xb2\x8c
+{0x6c8d,{0x75,0x00,0x41,0x59,0x57,0x75,0x4d}}, // \xe6\xb2\x8d
+{0x6c90,{0x75,0x00,0x22,0x1a,0x7f,0x1a,0x22}}, // \xe6\xb2\x90
+{0x6c92,{0x75,0x00,0x44,0x5b,0x29,0x5d,0x47}}, // \xe6\xb2\x92
+{0x6c93,{0x0a,0x7a,0x56,0x5f,0x54,0x7a,0x08}}, // \xe6\xb2\x93
+{0x6c96,{0x75,0x00,0x1e,0x12,0x7f,0x12,0x1e}}, // \xe6\xb2\x96
+{0x6c99,{0x75,0x00,0x08,0x46,0x5f,0x22,0x14}}, // \xe6\xb2\x99
+{0x6c9a,{0x75,0x40,0x7c,0x40,0x7f,0x44,0x40}}, // \xe6\xb2\x9a
+{0x6c9b,{0x75,0x00,0x3a,0x0a,0x7f,0x0a,0x3a}}, // \xe6\xb2\x9b
+{0x6ca1,{0x75,0x00,0x44,0x5b,0x29,0x5f,0x44}}, // \xe6\xb2\xa1
+{0x6ca2,{0x75,0x40,0x3f,0x05,0x1d,0x25,0x47}}, // \xe6\xb2\xa2
+{0x6cab,{0x75,0x00,0x42,0x2a,0x7f,0x2a,0x42}}, // \xe6\xb2\xab
+{0x6cae,{0x75,0x40,0x7f,0x55,0x55,0x7f,0x40}}, // \xe6\xb2\xae
+{0x6cb1,{0x75,0x00,0x06,0x7a,0x53,0x4a,0x66}}, // \xe6\xb2\xb1
+{0x6cb3,{0x75,0x00,0x1d,0x15,0x1d,0x41,0x7f}}, // \xe6\xb2\xb3
+{0x6cb8,{0x75,0x00,0x5a,0x3f,0x16,0x7f,0x36}}, // \xe6\xb2\xb8
+{0x6cb9,{0x75,0x00,0x7e,0x4a,0x7f,0x4a,0x7e}}, // \xe6\xb2\xb9
+{0x6cba,{0x75,0x00,0x7f,0x49,0x7f,0x49,0x7f}}, // \xe6\xb2\xba
+{0x6cbb,{0x75,0x00,0x08,0x6c,0x6b,0x64,0x08}}, // \xe6\xb2\xbb
+{0x6cbc,{0x75,0x00,0x09,0x75,0x53,0x59,0x7f}}, // \xe6\xb2\xbc
+{0x6cbd,{0x75,0x00,0x04,0x74,0x5f,0x74,0x04}}, // \xe6\xb2\xbd
+{0x6cbe,{0x75,0x00,0x70,0x50,0x5f,0x54,0x74}}, // \xe6\xb2\xbe
+{0x6cbf,{0x75,0x00,0x08,0x77,0x50,0x77,0x08}}, // \xe6\xb2\xbf
+{0x6cc1,{0x75,0x00,0x4f,0x39,0x09,0x79,0x4f}}, // \xe6\xb3\x81
+{0x6cc4,{0x75,0x00,0x7f,0x44,0x5f,0x54,0x5f}}, // \xe6\xb3\x84
+{0x6cc5,{0x75,0x00,0x7f,0x51,0x4d,0x51,0x7f}}, // \xe6\xb3\x85
+{0x6cc9,{0x50,0x3e,0x4a,0x7b,0x1a,0x2e,0x50}}, // \xe6\xb3\x89
+{0x6cca,{0x75,0x00,0x7e,0x4a,0x4b,0x4a,0x7e}}, // \xe6\xb3\x8a
+{0x6ccc,{0x75,0x00,0x58,0x3d,0x52,0x48,0x56}}, // \xe6\xb3\x8c
+{0x6cd3,{0x75,0x00,0x5d,0x77,0x70,0x4f,0x60}}, // \xe6\xb3\x93
+{0x6cd5,{0x75,0x00,0x48,0x6a,0x5f,0x2a,0x48}}, // \xe6\xb3\x95
+{0x6cd7,{0x75,0x00,0x7f,0x4f,0x41,0x4f,0x7f}}, // \xe6\xb3\x97
+{0x6cd9,{0x75,0x00,0x15,0x13,0x7f,0x13,0x15}}, // \xe6\xb3\x99
+{0x6cdb,{0x75,0x40,0x35,0x25,0x57,0x4d,0x40}}, // \xe6\xb3\x9b
+{0x6cdd,{0x75,0x40,0x3e,0x0a,0x1a,0x79,0x28}}, // \xe6\xb3\x9d
+{0x6ce1,{0x75,0x00,0x04,0x77,0x5e,0x42,0x5e}}, // \xe6\xb3\xa1
+{0x6ce2,{0x75,0x40,0x3e,0x5a,0x2f,0x5a,0x46}}, // \xe6\xb3\xa2
+{0x6ce3,{0x75,0x00,0x42,0x7e,0x63,0x5e,0x42}}, // \xe6\xb3\xa3
+{0x6ce5,{0x75,0x40,0x3f,0x05,0x7d,0x55,0x57}}, // \xe6\xb3\xa5
+{0x6ce8,{0x75,0x00,0x44,0x55,0x7e,0x54,0x44}}, // \xe6\xb3\xa8
+{0x6cea,{0x75,0x00,0x7f,0x55,0x55,0x55,0x7f}}, // \xe6\xb3\xaa
+{0x6cef,{0x75,0x00,0x7f,0x55,0x1d,0x35,0x57}}, // \xe6\xb3\xaf
+{0x6cf0,{0x48,0x5a,0x2e,0x77,0x2e,0x5a,0x48}}, // \xe6\xb3\xb0
+{0x6cf1,{0x75,0x00,0x48,0x4e,0x3b,0x4e,0x48}}, // \xe6\xb3\xb1
+{0x6cf3,{0x75,0x28,0x18,0x45,0x7d,0x10,0x28}}, // \xe6\xb3\xb3
+{0x6d0b,{0x75,0x00,0x22,0x2b,0x7e,0x2b,0x22}}, // \xe6\xb4\x8b
+{0x6d0c,{0x75,0x00,0x49,0x37,0x1d,0x4e,0x7f}}, // \xe6\xb4\x8c
+{0x6d12,{0x75,0x00,0x7d,0x5f,0x45,0x5f,0x7d}}, // \xe6\xb4\x92
+{0x6d17,{0x75,0x00,0x4c,0x3b,0x0f,0x7a,0x4a}}, // \xe6\xb4\x97
+{0x6d19,{0x75,0x00,0x4c,0x2b,0x7f,0x2a,0x48}}, // \xe6\xb4\x99
+{0x6d1b,{0x75,0x00,0x10,0x6a,0x65,0x6b,0x10}}, // \xe6\xb4\x9b
+{0x6d1e,{0x75,0x00,0x7f,0x35,0x35,0x41,0x7f}}, // \xe6\xb4\x9e
+{0x6d1f,{0x75,0x02,0x5e,0x56,0x3f,0x56,0x72}}, // \xe6\xb4\x9f
+{0x6d25,{0x75,0x00,0x2a,0x2a,0x7f,0x2e,0x24}}, // \xe6\xb4\xa5
+{0x6d29,{0x75,0x00,0x4e,0x4a,0x5f,0x2e,0x50}}, // \xe6\xb4\xa9
+{0x6d2a,{0x75,0x00,0x52,0x1f,0x12,0x1f,0x52}}, // \xe6\xb4\xaa
+{0x6d2b,{0x75,0x40,0x7e,0x43,0x7e,0x7e,0x40}}, // \xe6\xb4\xab
+{0x6d32,{0x75,0x4c,0x3f,0x0c,0x7f,0x0c,0x7f}}, // \xe6\xb4\xb2
+{0x6d33,{0x75,0x5c,0x37,0x2c,0x7e,0x42,0x7e}}, // \xe6\xb4\xb3
+{0x6d35,{0x75,0x00,0x04,0x3f,0x2a,0x3e,0x7e}}, // \xe6\xb4\xb5
+{0x6d36,{0x75,0x00,0x04,0x37,0x2a,0x36,0x7e}}, // \xe6\xb4\xb6
+{0x6d38,{0x75,0x00,0x4a,0x38,0x0f,0x78,0x4a}}, // \xe6\xb4\xb8
+{0x6d3b,{0x75,0x00,0x04,0x76,0x5e,0x75,0x04}}, // \xe6\xb4\xbb
+{0x6d3d,{0x75,0x00,0x04,0x72,0x55,0x76,0x04}}, // \xe6\xb4\xbd
+{0x6d3e,{0x75,0x40,0x3e,0x7a,0x0a,0x35,0x54}}, // \xe6\xb4\xbe
+{0x6d41,{0x75,0x00,0x4a,0x3e,0x7b,0x06,0x6a}}, // \xe6\xb5\x81
+{0x6d44,{0x75,0x08,0x2a,0x6e,0x7d,0x2f,0x3c}}, // \xe6\xb5\x84
+{0x6d45,{0x75,0x00,0x4a,0x4a,0x5f,0x2a,0x53}}, // \xe6\xb5\x85
+{0x6d59,{0x75,0x00,0x52,0x7f,0x3e,0x0a,0x79}}, // \xe6\xb5\x99
+{0x6d5a,{0x75,0x00,0x2a,0x57,0x32,0x5e,0x4b}}, // \xe6\xb5\x9a
+{0x6d5c,{0x75,0x00,0x50,0x1e,0x16,0x1d,0x54}}, // \xe6\xb5\x9c
+{0x6d63,{0x75,0x00,0x56,0x32,0x17,0x76,0x56}}, // \xe6\xb5\xa3
+{0x6d64,{0x75,0x00,0x56,0x6a,0x5f,0x4a,0x6e}}, // \xe6\xb5\xa4
+{0x6d66,{0x75,0x00,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe6\xb5\xa6
+{0x6d69,{0x75,0x00,0x0c,0x6b,0x6f,0x6a,0x08}}, // \xe6\xb5\xa9
+{0x6d6a,{0x75,0x00,0x7e,0x5a,0x3b,0x5e,0x40}}, // \xe6\xb5\xaa
+{0x6d6c,{0x75,0x00,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe6\xb5\xac
+{0x6d6e,{0x75,0x00,0x22,0x2a,0x69,0x3b,0x21}}, // \xe6\xb5\xae
+{0x6d74,{0x75,0x00,0x12,0x69,0x64,0x69,0x12}}, // \xe6\xb5\xb4
+{0x6d77,{0x75,0x08,0x3b,0x3e,0x6e,0x7e,0x2a}}, // \xe6\xb5\xb7
+{0x6d78,{0x75,0x00,0x58,0x5d,0x2d,0x5f,0x58}}, // \xe6\xb5\xb8
+{0x6d79,{0x75,0x00,0x52,0x4e,0x3f,0x4e,0x52}}, // \xe6\xb5\xb9
+{0x6d85,{0x75,0x00,0x47,0x55,0x7d,0x55,0x47}}, // \xe6\xb6\x85
+{0x6d88,{0x75,0x00,0x7d,0x14,0x17,0x54,0x7d}}, // \xe6\xb6\x88
+{0x6d8c,{0x75,0x00,0x7d,0x15,0x7d,0x17,0x7d}}, // \xe6\xb6\x8c
+{0x6d8e,{0x75,0x00,0x55,0x3b,0x52,0x5e,0x55}}, // \xe6\xb6\x8e
+{0x6d93,{0x75,0x00,0x78,0x2b,0x2b,0x2b,0x78}}, // \xe6\xb6\x93
+{0x6d95,{0x75,0x00,0x5a,0x2b,0x7e,0x2b,0x6e}}, // \xe6\xb6\x95
+{0x6d99,{0x75,0x00,0x21,0x5f,0x55,0x3d,0x57}}, // \xe6\xb6\x99
+{0x6d9b,{0x75,0x50,0x34,0x5e,0x17,0x7e,0x14}}, // \xe6\xb6\x9b
+{0x6d9c,{0x75,0x00,0x5a,0x2a,0x0f,0x6a,0x5a}}, // \xe6\xb6\x9c
+{0x6daf,{0x75,0x40,0x3f,0x41,0x55,0x7f,0x55}}, // \xe6\xb6\xaf
+{0x6db2,{0x75,0x00,0x12,0x7e,0x53,0x2a,0x5a}}, // \xe6\xb6\xb2
+{0x6db5,{0x75,0x00,0x7d,0x5b,0x7f,0x59,0x7d}}, // \xe6\xb6\xb5
+{0x6db8,{0x75,0x00,0x7f,0x75,0x6f,0x75,0x7f}}, // \xe6\xb6\xb8
+{0x6dbc,{0x75,0x00,0x22,0x4e,0x7b,0x0e,0x22}}, // \xe6\xb6\xbc
+{0x6dc0,{0x75,0x00,0x46,0x32,0x46,0x7f,0x56}}, // \xe6\xb7\x80
+{0x6dc5,{0x75,0x00,0x1a,0x7f,0x3e,0x0a,0x79}}, // \xe6\xb7\x85
+{0x6dc6,{0x75,0x28,0x19,0x7d,0x2a,0x7d,0x08}}, // \xe6\xb7\x86
+{0x6dc7,{0x75,0x00,0x52,0x1f,0x1a,0x1f,0x52}}, // \xe6\xb7\x87
+{0x6dcb,{0x75,0x22,0x1a,0x7f,0x1a,0x7f,0x12}}, // \xe6\xb7\x8b
+{0x6dcc,{0x75,0x00,0x7a,0x09,0x6e,0x69,0x7a}}, // \xe6\xb7\x8c
+{0x6dd1,{0x75,0x28,0x7f,0x2a,0x4d,0x31,0x4f}}, // \xe6\xb7\x91
+{0x6dd2,{0x75,0x00,0x52,0x7a,0x5f,0x3e,0x52}}, // \xe6\xb7\x92
+{0x6dd5,{0x75,0x00,0x54,0x4e,0x67,0x5e,0x54}}, // \xe6\xb7\x95
+{0x6dd8,{0x75,0x00,0x64,0x4b,0x7e,0x6a,0x7e}}, // \xe6\xb7\x98
+{0x6dd9,{0x75,0x00,0x56,0x12,0x77,0x16,0x56}}, // \xe6\xb7\x99
+{0x6dde,{0x75,0x1a,0x7f,0x0a,0x63,0x58,0x63}}, // \xe6\xb7\x9e
+{0x6de1,{0x75,0x00,0x55,0x22,0x19,0x22,0x55}}, // \xe6\xb7\xa1
+{0x6de4,{0x75,0x00,0x62,0x1f,0x7a,0x29,0x52}}, // \xe6\xb7\xa4
+{0x6de6,{0x75,0x00,0x54,0x76,0x7d,0x76,0x54}}, // \xe6\xb7\xa6
+{0x6de8,{0x75,0x00,0x12,0x55,0x7f,0x3d,0x12}}, // \xe6\xb7\xa8
+{0x6dea,{0x75,0x00,0x74,0x32,0x75,0x36,0x74}}, // \xe6\xb7\xaa
+{0x6deb,{0x75,0x00,0x56,0x52,0x76,0x51,0x55}}, // \xe6\xb7\xab
+{0x6dec,{0x75,0x00,0x32,0x2e,0x73,0x2e,0x32}}, // \xe6\xb7\xac
+{0x6dee,{0x75,0x00,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe6\xb7\xae
+{0x6df1,{0x75,0x00,0x5b,0x35,0x71,0x3d,0x5b}}, // \xe6\xb7\xb1
+{0x6df3,{0x75,0x00,0x22,0x2e,0x6b,0x3e,0x22}}, // \xe6\xb7\xb3
+{0x6df5,{0x75,0x40,0x3f,0x14,0x77,0x14,0x7f}}, // \xe6\xb7\xb5
+{0x6df7,{0x75,0x00,0x7f,0x55,0x05,0x7d,0x57}}, // \xe6\xb7\xb7
+{0x6df9,{0x75,0x00,0x0a,0x36,0x3b,0x76,0x4a}}, // \xe6\xb7\xb9
+{0x6dfa,{0x75,0x00,0x12,0x5a,0x5b,0x36,0x5b}}, // \xe6\xb7\xba
+{0x6dfb,{0x75,0x00,0x54,0x0e,0x66,0x0d,0x54}}, // \xe6\xb7\xbb
+{0x6e05,{0x75,0x00,0x08,0x7a,0x2f,0x7a,0x08}}, // \xe6\xb8\x85
+{0x6e07,{0x75,0x00,0x10,0x3f,0x2d,0x4f,0x78}}, // \xe6\xb8\x87
+{0x6e08,{0x75,0x00,0x52,0x36,0x2b,0x76,0x12}}, // \xe6\xb8\x88
+{0x6e09,{0x75,0x08,0x5e,0x48,0x7f,0x2a,0x18}}, // \xe6\xb8\x89
+{0x6e0a,{0x75,0x40,0x3f,0x2a,0x7f,0x2a,0x7f}}, // \xe6\xb8\x8a
+{0x6e0b,{0x75,0x00,0x58,0x2e,0x08,0x2f,0x5a}}, // \xe6\xb8\x8b
+{0x6e13,{0x75,0x00,0x56,0x5a,0x3e,0x59,0x55}}, // \xe6\xb8\x93
+{0x6e15,{0x75,0x00,0x55,0x3c,0x55,0x0e,0x7f}}, // \xe6\xb8\x95
+{0x6e19,{0x75,0x00,0x52,0x5d,0x3d,0x5f,0x50}}, // \xe6\xb8\x99
+{0x6e1a,{0x75,0x00,0x28,0x1a,0x6f,0x6a,0x69}}, // \xe6\xb8\x9a
+{0x6e1b,{0x75,0x40,0x3e,0x6a,0x6a,0x3f,0x52}}, // \xe6\xb8\x9b
+{0x6e1d,{0x75,0x00,0x75,0x33,0x75,0x26,0x54}}, // \xe6\xb8\x9d
+{0x6e1f,{0x75,0x18,0x0a,0x5e,0x7b,0x1e,0x1a}}, // \xe6\xb8\x9f
+{0x6e20,{0x55,0x50,0x3f,0x7b,0x3b,0x5f,0x59}}, // \xe6\xb8\xa0
+{0x6e21,{0x75,0x40,0x3e,0x4a,0x5f,0x2e,0x5a}}, // \xe6\xb8\xa1
+{0x6e23,{0x75,0x00,0x4a,0x76,0x7f,0x76,0x4a}}, // \xe6\xb8\xa3
+{0x6e24,{0x75,0x0c,0x26,0x77,0x2e,0x1f,0x7e}}, // \xe6\xb8\xa4
+{0x6e25,{0x75,0x20,0x5f,0x5d,0x75,0x4d,0x57}}, // \xe6\xb8\xa5
+{0x6e26,{0x75,0x00,0x78,0x6f,0x69,0x0f,0x78}}, // \xe6\xb8\xa6
+{0x6e29,{0x75,0x40,0x77,0x55,0x75,0x77,0x40}}, // \xe6\xb8\xa9
+{0x6e2b,{0x75,0x00,0x5f,0x32,0x77,0x36,0x57}}, // \xe6\xb8\xab
+{0x6e2c,{0x75,0x00,0x5f,0x15,0x5f,0x0e,0x7f}}, // \xe6\xb8\xac
+{0x6e2d,{0x75,0x00,0x0f,0x7d,0x2f,0x7d,0x0f}}, // \xe6\xb8\xad
+{0x6e2e,{0x75,0x00,0x0a,0x6f,0x6a,0x0f,0x7a}}, // \xe6\xb8\xae
+{0x6e2f,{0x75,0x28,0x1a,0x6f,0x5a,0x4f,0x1a}}, // \xe6\xb8\xaf
+{0x6e38,{0x75,0x62,0x1f,0x7a,0x27,0x76,0x2e}}, // \xe6\xb8\xb8
+{0x6e3a,{0x75,0x00,0x7f,0x55,0x7f,0x46,0x2f}}, // \xe6\xb8\xba
+{0x6e3e,{0x75,0x00,0x27,0x3d,0x7f,0x3d,0x27}}, // \xe6\xb8\xbe
+{0x6e43,{0x75,0x00,0x4a,0x3e,0x15,0x7f,0x15}}, // \xe6\xb9\x83
+{0x6e4a,{0x75,0x28,0x1a,0x4e,0x3f,0x4e,0x1a}}, // \xe6\xb9\x8a
+{0x6e4d,{0x75,0x00,0x6b,0x3a,0x6b,0x2a,0x6b}}, // \xe6\xb9\x8d
+{0x6e4e,{0x75,0x00,0x7d,0x7d,0x57,0x7d,0x7d}}, // \xe6\xb9\x8e
+{0x6e56,{0x75,0x3a,0x2f,0x3a,0x7f,0x15,0x7f}}, // \xe6\xb9\x96
+{0x6e58,{0x75,0x1a,0x7f,0x0a,0x7f,0x55,0x7f}}, // \xe6\xb9\x98
+{0x6e5b,{0x75,0x00,0x72,0x5f,0x72,0x5f,0x52}}, // \xe6\xb9\x9b
+{0x6e5f,{0x75,0x00,0x50,0x5e,0x7b,0x5e,0x50}}, // \xe6\xb9\x9f
+{0x6e67,{0x75,0x00,0x50,0x5d,0x3d,0x57,0x7d}}, // \xe6\xb9\xa7
+{0x6e6b,{0x75,0x00,0x35,0x7f,0x4c,0x3f,0x44}}, // \xe6\xb9\xab
+{0x6e6e,{0x75,0x00,0x5d,0x5f,0x75,0x5f,0x5d}}, // \xe6\xb9\xae
+{0x6e6f,{0x75,0x00,0x24,0x5f,0x35,0x57,0x74}}, // \xe6\xb9\xaf
+{0x6e72,{0x75,0x00,0x42,0x29,0x5b,0x29,0x5a}}, // \xe6\xb9\xb2
+{0x6e76,{0x75,0x00,0x50,0x3e,0x7b,0x2e,0x50}}, // \xe6\xb9\xb6
+{0x6e7e,{0x75,0x00,0x0a,0x3e,0x33,0x3e,0x6a}}, // \xe6\xb9\xbe
+{0x6e7f,{0x75,0x00,0x57,0x7d,0x45,0x7d,0x57}}, // \xe6\xb9\xbf
+{0x6e80,{0x75,0x08,0x7a,0x2f,0x3a,0x2f,0x7a}}, // \xe6\xba\x80
+{0x6e82,{0x75,0x42,0x2e,0x7f,0x2a,0x4e,0x7f}}, // \xe6\xba\x82
+{0x6e8c,{0x75,0x00,0x55,0x3b,0x19,0x7a,0x55}}, // \xe6\xba\x8c
+{0x6e8f,{0x75,0x40,0x3e,0x12,0x77,0x5e,0x6a}}, // \xe6\xba\x8f
+{0x6e90,{0x75,0x40,0x3f,0x21,0x4d,0x7f,0x2d}}, // \xe6\xba\x90
+{0x6e96,{0x35,0x20,0x24,0x7f,0x2a,0x2f,0x2a}}, // \xe6\xba\x96
+{0x6e98,{0x75,0x00,0x54,0x7e,0x77,0x6e,0x54}}, // \xe6\xba\x98
+{0x6e9c,{0x75,0x00,0x0e,0x7a,0x79,0x77,0x0f}}, // \xe6\xba\x9c
+{0x6e9d,{0x75,0x00,0x2a,0x7f,0x3a,0x7f,0x2a}}, // \xe6\xba\x9d
+{0x6e9f,{0x75,0x00,0x53,0x1d,0x15,0x1d,0x53}}, // \xe6\xba\x9f
+{0x6ea2,{0x75,0x00,0x4a,0x77,0x72,0x77,0x4a}}, // \xe6\xba\xa2
+{0x6ea5,{0x75,0x00,0x12,0x3e,0x57,0x7e,0x13}}, // \xe6\xba\xa5
+{0x6eaa,{0x75,0x00,0x52,0x55,0x3b,0x51,0x52}}, // \xe6\xba\xaa
+{0x6eaf,{0x75,0x1a,0x53,0x3e,0x3f,0x15,0x7f}}, // \xe6\xba\xaf
+{0x6eb2,{0x75,0x00,0x4e,0x59,0x2e,0x59,0x4f}}, // \xe6\xba\xb2
+{0x6eb6,{0x75,0x00,0x26,0x16,0x6b,0x76,0x26}}, // \xe6\xba\xb6
+{0x6eb7,{0x75,0x00,0x7f,0x6b,0x77,0x5b,0x7f}}, // \xe6\xba\xb7
+{0x6eba,{0x75,0x20,0x5d,0x77,0x20,0x5d,0x77}}, // \xe6\xba\xba
+{0x6ebd,{0x75,0x08,0x17,0x3d,0x57,0x7f,0x15}}, // \xe6\xba\xbd
+{0x6ec2,{0x75,0x00,0x1a,0x4e,0x3b,0x6e,0x1a}}, // \xe6\xbb\x82
+{0x6ec4,{0x75,0x00,0x24,0x1e,0x6d,0x62,0x04}}, // \xe6\xbb\x84
+{0x6ec5,{0x75,0x3e,0x56,0x3e,0x56,0x3f,0x52}}, // \xe6\xbb\x85
+{0x6ec9,{0x75,0x00,0x54,0x33,0x1f,0x73,0x54}}, // \xe6\xbb\x89
+{0x6ecb,{0x75,0x00,0x6a,0x57,0x02,0x6b,0x56}}, // \xe6\xbb\x8b
+{0x6ecc,{0x75,0x0c,0x7f,0x3e,0x2b,0x76,0x2a}}, // \xe6\xbb\x8c
+{0x6ed1,{0x75,0x00,0x0c,0x77,0x35,0x77,0x0c}}, // \xe6\xbb\x91
+{0x6ed3,{0x75,0x26,0x2a,0x3a,0x6f,0x3a,0x2e}}, // \xe6\xbb\x93
+{0x6ed4,{0x75,0x00,0x72,0x69,0x43,0x69,0x7a}}, // \xe6\xbb\x94
+{0x6ed5,{0x7f,0x15,0x7f,0x2d,0x76,0x2d,0x56}}, // \xe6\xbb\x95
+{0x6edd,{0x75,0x00,0x0a,0x3e,0x3b,0x7e,0x4a}}, // \xe6\xbb\x9d
+{0x6ede,{0x75,0x00,0x1a,0x6f,0x3a,0x6f,0x1a}}, // \xe6\xbb\x9e
+{0x6eec,{0x75,0x00,0x21,0x1f,0x7b,0x5f,0x5b}}, // \xe6\xbb\xac
+{0x6eef,{0x75,0x00,0x3a,0x17,0x7a,0x17,0x3a}}, // \xe6\xbb\xaf
+{0x6ef2,{0x75,0x00,0x1a,0x4f,0x5a,0x2d,0x1a}}, // \xe6\xbb\xb2
+{0x6ef4,{0x75,0x00,0x7a,0x6e,0x5b,0x6e,0x7a}}, // \xe6\xbb\xb4
+{0x6ef7,{0x75,0x00,0x7c,0x6c,0x57,0x6e,0x7a}}, // \xe6\xbb\xb7
+{0x6ef8,{0x75,0x00,0x6b,0x6a,0x17,0x7e,0x12}}, // \xe6\xbb\xb8
+{0x6efe,{0x75,0x02,0x2a,0x7e,0x5b,0x26,0x4a}}, // \xe6\xbb\xbe
+{0x6eff,{0x75,0x00,0x7a,0x3f,0x7a,0x3f,0x7a}}, // \xe6\xbb\xbf
+{0x6f01,{0x75,0x00,0x42,0x1e,0x5d,0x17,0x5c}}, // \xe6\xbc\x81
+{0x6f02,{0x75,0x00,0x51,0x17,0x77,0x17,0x51}}, // \xe6\xbc\x82
+{0x6f06,{0x75,0x40,0x2a,0x56,0x7f,0x36,0x4a}}, // \xe6\xbc\x86
+{0x6f09,{0x75,0x40,0x3e,0x6a,0x4f,0x6e,0x42}}, // \xe6\xbc\x89
+{0x6f0f,{0x75,0x20,0x1f,0x6b,0x7b,0x2b,0x6b}}, // \xe6\xbc\x8f
+{0x6f11,{0x75,0x00,0x7f,0x2e,0x49,0x3f,0x4f}}, // \xe6\xbc\x91
+{0x6f13,{0x75,0x00,0x72,0x5e,0x7b,0x3e,0x72}}, // \xe6\xbc\x93
+{0x6f14,{0x75,0x00,0x56,0x2a,0x3b,0x2a,0x56}}, // \xe6\xbc\x94
+{0x6f15,{0x75,0x00,0x1a,0x7f,0x5a,0x7f,0x1a}}, // \xe6\xbc\x95
+{0x6f20,{0x75,0x00,0x52,0x5f,0x36,0x5f,0x52}}, // \xe6\xbc\xa0
+{0x6f22,{0x75,0x12,0x5e,0x5b,0x3e,0x5b,0x5e}}, // \xe6\xbc\xa2
+{0x6f23,{0x75,0x00,0x79,0x52,0x5e,0x7f,0x52}}, // \xe6\xbc\xa3
+{0x6f2b,{0x75,0x00,0x4c,0x5f,0x2d,0x5f,0x4c}}, // \xe6\xbc\xab
+{0x6f2c,{0x75,0x00,0x48,0x3a,0x3f,0x3a,0x48}}, // \xe6\xbc\xac
+{0x6f31,{0x75,0x42,0x2e,0x7f,0x4e,0x3b,0x46}}, // \xe6\xbc\xb1
+{0x6f32,{0x75,0x00,0x5d,0x77,0x70,0x3f,0x55}}, // \xe6\xbc\xb2
+{0x6f38,{0x75,0x00,0x2d,0x7f,0x3e,0x0a,0x79}}, // \xe6\xbc\xb8
+{0x6f3e,{0x75,0x00,0x52,0x37,0x7e,0x27,0x52}}, // \xe6\xbc\xbe
+{0x6f3f,{0x4b,0x56,0x3f,0x74,0x26,0x5d,0x47}}, // \xe6\xbc\xbf
+{0x6f41,{0x57,0x3a,0x7a,0x29,0x5d,0x17,0x5d}}, // \xe6\xbd\x81
+{0x6f45,{0x75,0x00,0x14,0x7b,0x4e,0x7a,0x4a}}, // \xe6\xbd\x85
+{0x6f54,{0x75,0x00,0x5a,0x1f,0x7a,0x17,0x5f}}, // \xe6\xbd\x94
+{0x6f58,{0x75,0x00,0x15,0x6f,0x7d,0x6f,0x15}}, // \xe6\xbd\x98
+{0x6f5b,{0x75,0x00,0x14,0x6f,0x76,0x6f,0x16}}, // \xe6\xbd\x9b
+{0x6f5c,{0x75,0x00,0x0a,0x77,0x5a,0x77,0x0a}}, // \xe6\xbd\x9c
+{0x6f5f,{0x75,0x20,0x56,0x1d,0x54,0x17,0x70}}, // \xe6\xbd\x9f
+{0x6f64,{0x75,0x7f,0x03,0x57,0x7c,0x57,0x7f}}, // \xe6\xbd\xa4
+{0x6f66,{0x75,0x00,0x4a,0x1e,0x6b,0x1e,0x4a}}, // \xe6\xbd\xa6
+{0x6f6d,{0x75,0x00,0x21,0x3b,0x6b,0x3b,0x21}}, // \xe6\xbd\xad
+{0x6f6e,{0x75,0x00,0x2d,0x7f,0x3f,0x15,0x7f}}, // \xe6\xbd\xae
+{0x6f6f,{0x75,0x00,0x14,0x3d,0x57,0x7f,0x1a}}, // \xe6\xbd\xaf
+{0x6f70,{0x75,0x08,0x4e,0x3a,0x3f,0x3a,0x4e}}, // \xe6\xbd\xb0
+{0x6f74,{0x75,0x00,0x55,0x3e,0x1a,0x6f,0x6a}}, // \xe6\xbd\xb4
+{0x6f78,{0x75,0x00,0x0a,0x77,0x3a,0x77,0x0a}}, // \xe6\xbd\xb8
+{0x6f7a,{0x75,0x40,0x3f,0x53,0x3b,0x57,0x33}}, // \xe6\xbd\xba
+{0x6f7c,{0x75,0x00,0x4a,0x5e,0x7b,0x5e,0x4a}}, // \xe6\xbd\xbc
+{0x6f80,{0x75,0x40,0x7d,0x53,0x05,0x7b,0x57}}, // \xe6\xbe\x80
+{0x6f81,{0x75,0x48,0x78,0x5e,0x08,0x7f,0x5a}}, // \xe6\xbe\x81
+{0x6f82,{0x75,0x00,0x56,0x77,0x56,0x3f,0x5e}}, // \xe6\xbe\x82
+{0x6f84,{0x65,0x10,0x45,0x5b,0x69,0x5a,0x45}}, // \xe6\xbe\x84
+{0x6f86,{0x75,0x00,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe6\xbe\x86
+{0x6f8e,{0x75,0x00,0x5a,0x6f,0x5a,0x4a,0x25}}, // \xe6\xbe\x8e
+{0x6f91,{0x75,0x00,0x7d,0x5f,0x71,0x5f,0x7d}}, // \xe6\xbe\x91
+{0x6f97,{0x75,0x00,0x7f,0x03,0x38,0x3b,0x7f}}, // \xe6\xbe\x97
+{0x6fa1,{0x75,0x00,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe6\xbe\xa1
+{0x6fa3,{0x75,0x00,0x2d,0x7f,0x2a,0x79,0x2a}}, // \xe6\xbe\xa3
+{0x6fa4,{0x75,0x00,0x2b,0x3b,0x6f,0x3b,0x2b}}, // \xe6\xbe\xa4
+{0x6faa,{0x75,0x00,0x16,0x1b,0x77,0x1b,0x36}}, // \xe6\xbe\xaa
+{0x6fb1,{0x75,0x20,0x5f,0x1d,0x57,0x29,0x5b}}, // \xe6\xbe\xb1
+{0x6fb3,{0x75,0x00,0x50,0x5e,0x3f,0x56,0x5e}}, // \xe6\xbe\xb3
+{0x6fb9,{0x75,0x40,0x3c,0x2e,0x75,0x7f,0x2c}}, // \xe6\xbe\xb9
+{0x6fc0,{0x75,0x48,0x2e,0x5f,0x7c,0x23,0x5e}}, // \xe6\xbf\x80
+{0x6fc1,{0x75,0x00,0x4b,0x75,0x77,0x25,0x7f}}, // \xe6\xbf\x81
+{0x6fc2,{0x75,0x20,0x5e,0x36,0x7f,0x3e,0x4a}}, // \xe6\xbf\x82
+{0x6fc3,{0x75,0x40,0x36,0x77,0x56,0x37,0x56}}, // \xe6\xbf\x83
+{0x6fc6,{0x75,0x00,0x4a,0x3e,0x2b,0x3e,0x4a}}, // \xe6\xbf\x86
+{0x6fd4,{0x75,0x00,0x7d,0x2b,0x7f,0x2b,0x7d}}, // \xe6\xbf\x94
+{0x6fd5,{0x75,0x00,0x5b,0x17,0x43,0x1b,0x57}}, // \xe6\xbf\x95
+{0x6fd8,{0x75,0x00,0x16,0x5e,0x7f,0x1a,0x16}}, // \xe6\xbf\x98
+{0x6fdb,{0x75,0x18,0x2a,0x5f,0x7a,0x2f,0x5a}}, // \xe6\xbf\x9b
+{0x6fdf,{0x75,0x00,0x4a,0x36,0x2b,0x76,0x0a}}, // \xe6\xbf\x9f
+{0x6fe0,{0x75,0x18,0x2a,0x5e,0x7b,0x2e,0x5a}}, // \xe6\xbf\xa0
+{0x6fe1,{0x75,0x00,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe6\xbf\xa1
+{0x6fe4,{0x75,0x00,0x34,0x36,0x5f,0x76,0x14}}, // \xe6\xbf\xa4
+{0x6feb,{0x75,0x00,0x4f,0x69,0x60,0x6b,0x4a}}, // \xe6\xbf\xab
+{0x6fec,{0x75,0x00,0x2c,0x14,0x6f,0x76,0x2e}}, // \xe6\xbf\xac
+{0x6fee,{0x75,0x0c,0x7f,0x5e,0x3b,0x5e,0x4b}}, // \xe6\xbf\xae
+{0x6fef,{0x75,0x00,0x25,0x7f,0x50,0x7d,0x57}}, // \xe6\xbf\xaf
+{0x6ff1,{0x75,0x00,0x4e,0x3a,0x37,0x3a,0x46}}, // \xe6\xbf\xb1
+{0x6ff3,{0x75,0x00,0x17,0x6e,0x77,0x6e,0x16}}, // \xe6\xbf\xb3
+{0x6ff6,{0x75,0x7f,0x0b,0x6c,0x5f,0x6b,0x7f}}, // \xe6\xbf\xb6
+{0x6ffa,{0x75,0x00,0x5f,0x1f,0x5a,0x37,0x5a}}, // \xe6\xbf\xba
+{0x6ffe,{0x75,0x40,0x3c,0x64,0x3f,0x5a,0x6a}}, // \xe6\xbf\xbe
+{0x7001,{0x75,0x28,0x1a,0x7b,0x3e,0x5b,0x2a}}, // \xe7\x80\x81
+{0x7009,{0x75,0x00,0x26,0x5a,0x17,0x5e,0x76}}, // \xe7\x80\x89
+{0x700b,{0x75,0x00,0x56,0x3a,0x77,0x7a,0x36}}, // \xe7\x80\x8b
+{0x700f,{0x75,0x00,0x26,0x55,0x6a,0x57,0x7f}}, // \xe7\x80\x8f
+{0x7011,{0x75,0x00,0x5b,0x2f,0x7b,0x2f,0x5b}}, // \xe7\x80\x91
+{0x7015,{0x75,0x48,0x5f,0x2a,0x5d,0x17,0x5d}}, // \xe7\x80\x95
+{0x7018,{0x75,0x40,0x3c,0x44,0x6f,0x6a,0x4a}}, // \xe7\x80\x98
+{0x701a,{0x75,0x00,0x2d,0x7f,0x2a,0x19,0x7a}}, // \xe7\x80\x9a
+{0x701b,{0x75,0x42,0x3e,0x5a,0x2b,0x7a,0x4a}}, // \xe7\x80\x9b
+{0x701d,{0x75,0x20,0x5f,0x6f,0x45,0x6f,0x45}}, // \xe7\x80\x9d
+{0x701e,{0x75,0x7a,0x2f,0x7a,0x2a,0x7d,0x3b}}, // \xe7\x80\x9e
+{0x701f,{0x75,0x48,0x3a,0x6f,0x06,0x6f,0x7a}}, // \xe7\x80\x9f
+{0x7026,{0x75,0x28,0x55,0x3f,0x1a,0x6f,0x6a}}, // \xe7\x80\xa6
+{0x7027,{0x75,0x0a,0x7e,0x2b,0x7e,0x77,0x5d}}, // \xe7\x80\xa7
+{0x702c,{0x75,0x2e,0x7f,0x2e,0x5d,0x17,0x5d}}, // \xe7\x80\xac
+{0x7030,{0x75,0x00,0x5d,0x77,0x7d,0x2b,0x7d}}, // \xe7\x80\xb0
+{0x7032,{0x75,0x3c,0x56,0x3d,0x56,0x3f,0x5e}}, // \xe7\x80\xb2
+{0x703e,{0x75,0x00,0x7f,0x2b,0x7c,0x2b,0x7f}}, // \xe7\x80\xbe
+{0x704c,{0x75,0x00,0x26,0x7f,0x52,0x7f,0x56}}, // \xe7\x81\x8c
+{0x7051,{0x75,0x20,0x7f,0x55,0x1e,0x7d,0x57}}, // \xe7\x81\x91
+{0x7058,{0x75,0x5b,0x3e,0x5b,0x7f,0x7e,0x55}}, // \xe7\x81\x98
+{0x7063,{0x75,0x00,0x0a,0x3d,0x3f,0x3a,0x6d}}, // \xe7\x81\xa3
+{0x706b,{0x40,0x4c,0x20,0x1f,0x28,0x44,0x40}}, // \xe7\x81\xab
+{0x706f,{0x4c,0x3f,0x24,0x01,0x41,0x7f,0x01}}, // \xe7\x81\xaf
+{0x7070,{0x40,0x3f,0x4d,0x21,0x1f,0x29,0x45}}, // \xe7\x81\xb0
+{0x7078,{0x48,0x5a,0x29,0x15,0x25,0x5b,0x48}}, // \xe7\x81\xb8
+{0x707c,{0x4c,0x3f,0x24,0x0b,0x12,0x42,0x7e}}, // \xe7\x81\xbc
+{0x707d,{0x42,0x55,0x20,0x1a,0x25,0x52,0x45}}, // \xe7\x81\xbd
+{0x7089,{0x4c,0x3f,0x40,0x3d,0x15,0x15,0x1d}}, // \xe7\x82\x89
+{0x708a,{0x4c,0x3f,0x44,0x23,0x1e,0x22,0x46}}, // \xe7\x82\x8a
+{0x708e,{0x48,0x5a,0x24,0x13,0x24,0x5a,0x48}}, // \xe7\x82\x8e
+{0x7092,{0x4c,0x3f,0x24,0x46,0x5f,0x22,0x14}}, // \xe7\x82\x92
+{0x7099,{0x48,0x5a,0x2a,0x15,0x25,0x53,0x40}}, // \xe7\x82\x99
+{0x70ac,{0x4c,0x3f,0x24,0x7f,0x55,0x55,0x5d}}, // \xe7\x82\xac
+{0x70ad,{0x43,0x3e,0x5a,0x43,0x3e,0x52,0x4b}}, // \xe7\x82\xad
+{0x70ae,{0x4c,0x3f,0x24,0x04,0x7b,0x5a,0x5e}}, // \xe7\x82\xae
+{0x70af,{0x4c,0x3f,0x7f,0x1d,0x15,0x5d,0x7f}}, // \xe7\x82\xaf
+{0x70b3,{0x4c,0x3f,0x7d,0x15,0x0f,0x55,0x7d}}, // \xe7\x82\xb3
+{0x70b8,{0x4c,0x3f,0x24,0x03,0x7e,0x2a,0x2a}}, // \xe7\x82\xb8
+{0x70b9,{0x40,0x18,0x58,0x1f,0x5a,0x1a,0x40}}, // \xe7\x82\xb9
+{0x70ba,{0x20,0x52,0x1b,0x56,0x17,0x5c,0x70}}, // \xe7\x82\xba
+{0x70c8,{0x49,0x17,0x4d,0x01,0x46,0x10,0x5f}}, // \xe7\x83\x88
+{0x70cb,{0x44,0x1e,0x53,0x0a,0x5f,0x0a,0x52}}, // \xe7\x83\x8b
+{0x70cf,{0x40,0x1e,0x5a,0x1b,0x5a,0x1e,0x70}}, // \xe7\x83\x8f
+{0x70d9,{0x4c,0x3f,0x10,0x6a,0x65,0x6b,0x10}}, // \xe7\x83\x99
+{0x70dd,{0x54,0x2d,0x61,0x3d,0x63,0x29,0x54}}, // \xe7\x83\x9d
+{0x70df,{0x4c,0x3f,0x7f,0x55,0x4f,0x55,0x7f}}, // \xe7\x83\x9f
+{0x70f1,{0x4c,0x3f,0x7f,0x3b,0x29,0x3b,0x7f}}, // \xe7\x83\xb1
+{0x70f9,{0x42,0x0e,0x4a,0x0b,0x5a,0x0e,0x42}}, // \xe7\x83\xb9
+{0x70fd,{0x4c,0x3f,0x28,0x2a,0x75,0x2b,0x28}}, // \xe7\x83\xbd
+{0x7109,{0x49,0x1d,0x59,0x1f,0x5b,0x1b,0x79}}, // \xe7\x84\x89
+{0x7114,{0x4c,0x3f,0x24,0x7a,0x01,0x7d,0x7b}}, // \xe7\x84\x94
+{0x7119,{0x4c,0x3f,0x0a,0x6e,0x6b,0x6e,0x0a}}, // \xe7\x84\x99
+{0x711a,{0x4a,0x56,0x2f,0x1a,0x26,0x5f,0x4a}}, // \xe7\x84\x9a
+{0x711c,{0x4c,0x3f,0x7f,0x55,0x05,0x7d,0x57}}, // \xe7\x84\x9c
+{0x7121,{0x6b,0x3e,0x6a,0x3e,0x6a,0x3e,0x6a}}, // \xe7\x84\xa1
+{0x7126,{0x48,0x04,0x5f,0x16,0x5f,0x16,0x52}}, // \xe7\x84\xa6
+{0x7136,{0x54,0x13,0x4d,0x07,0x52,0x0f,0x52}}, // \xe7\x84\xb6
+{0x713c,{0x4c,0x3f,0x54,0x3e,0x17,0x7e,0x54}}, // \xe7\x84\xbc
+{0x7149,{0x4c,0x3f,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe7\x85\x89
+{0x714c,{0x4c,0x3f,0x50,0x5e,0x7b,0x5e,0x50}}, // \xe7\x85\x8c
+{0x714e,{0x42,0x1e,0x4b,0x1e,0x42,0x1f,0x42}}, // \xe7\x85\x8e
+{0x7155,{0x5f,0x11,0x5b,0x15,0x40,0x1f,0x57}}, // \xe7\x85\x95
+{0x7156,{0x4c,0x3f,0x42,0x29,0x5b,0x29,0x5a}}, // \xe7\x85\x96
+{0x7159,{0x4c,0x3f,0x24,0x5d,0x5f,0x7f,0x5d}}, // \xe7\x85\x99
+{0x7162,{0x0d,0x26,0x2d,0x7c,0x2d,0x3e,0x4d}}, // \xe7\x85\xa2
+{0x7164,{0x4c,0x3f,0x52,0x3f,0x7a,0x3f,0x52}}, // \xe7\x85\xa4
+{0x7165,{0x4c,0x3f,0x52,0x5d,0x3d,0x5f,0x50}}, // \xe7\x85\xa5
+{0x7166,{0x5f,0x15,0x5f,0x04,0x5b,0x1a,0x5e}}, // \xe7\x85\xa6
+{0x7167,{0x5f,0x15,0x5f,0x05,0x5b,0x19,0x5f}}, // \xe7\x85\xa7
+{0x7169,{0x4c,0x3f,0x24,0x5d,0x17,0x15,0x5d}}, // \xe7\x85\xa9
+{0x716c,{0x4c,0x3f,0x24,0x5f,0x35,0x57,0x74}}, // \xe7\x85\xac
+{0x716e,{0x48,0x1a,0x4a,0x1f,0x5e,0x1b,0x48}}, // \xe7\x85\xae
+{0x717d,{0x4c,0x3f,0x41,0x3f,0x5b,0x2b,0x79}}, // \xe7\x85\xbd
+{0x7184,{0x4c,0x3f,0x60,0x2e,0x4f,0x4e,0x60}}, // \xe7\x86\x84
+{0x7188,{0x50,0x0f,0x5f,0x1f,0x40,0x1f,0x57}}, // \xe7\x86\x88
+{0x718a,{0x42,0x1f,0x4a,0x1f,0x40,0x1b,0x52}}, // \xe7\x86\x8a
+{0x718f,{0x52,0x1e,0x5f,0x1f,0x5f,0x1e,0x52}}, // \xe7\x86\x8f
+{0x7194,{0x4c,0x3f,0x26,0x16,0x6b,0x76,0x26}}, // \xe7\x86\x94
+{0x7195,{0x4c,0x3f,0x44,0x3d,0x2f,0x3d,0x44}}, // \xe7\x86\x95
+{0x7199,{0x5f,0x15,0x5b,0x15,0x40,0x1f,0x57}}, // \xe7\x86\x99
+{0x719f,{0x52,0x0e,0x5b,0x0e,0x5f,0x1e,0x50}}, // \xe7\x86\x9f
+{0x71a8,{0x48,0x57,0x2f,0x13,0x26,0x5a,0x4f}}, // \xe7\x86\xa8
+{0x71ac,{0x54,0x0e,0x5f,0x06,0x54,0x0b,0x56}}, // \xe7\x86\xac
+{0x71b1,{0x54,0x0e,0x5f,0x14,0x4b,0x1e,0x50}}, // \xe7\x86\xb1
+{0x71b9,{0x4a,0x3a,0x6e,0x2f,0x6e,0x3a,0x4a}}, // \xe7\x86\xb9
+{0x71be,{0x4c,0x3f,0x4a,0x6f,0x6e,0x3f,0x55}}, // \xe7\x86\xbe
+{0x71c3,{0x4c,0x3f,0x54,0x0b,0x56,0x0f,0x52}}, // \xe7\x87\x83
+{0x71c8,{0x4c,0x3f,0x45,0x5b,0x69,0x5a,0x45}}, // \xe7\x87\x88
+{0x71c9,{0x4c,0x3f,0x2e,0x7b,0x56,0x3f,0x5e}}, // \xe7\x87\x89
+{0x71ce,{0x4c,0x3f,0x4a,0x1e,0x6b,0x1e,0x4a}}, // \xe7\x87\x8e
+{0x71d0,{0x4c,0x3f,0x55,0x32,0x27,0x72,0x25}}, // \xe7\x87\x90
+{0x71d2,{0x4c,0x3f,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe7\x87\x92
+{0x71d4,{0x4c,0x3f,0x15,0x6f,0x7d,0x6f,0x15}}, // \xe7\x87\x94
+{0x71d5,{0x56,0x1e,0x43,0x1e,0x57,0x1e,0x56}}, // \xe7\x87\x95
+{0x71d7,{0x4c,0x3f,0x7f,0x23,0x18,0x3b,0x7f}}, // \xe7\x87\x97
+{0x71df,{0x0d,0x66,0x6d,0x7c,0x6d,0x66,0x0d}}, // \xe7\x87\x9f
+{0x71e0,{0x4c,0x3f,0x50,0x5e,0x3f,0x56,0x5e}}, // \xe7\x87\xa0
+{0x71e5,{0x4c,0x3f,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe7\x87\xa5
+{0x71e6,{0x4c,0x3f,0x54,0x2b,0x75,0x2a,0x56}}, // \xe7\x87\xa6
+{0x71e7,{0x4c,0x3f,0x65,0x52,0x6d,0x7d,0x56}}, // \xe7\x87\xa7
+{0x71ec,{0x4c,0x3f,0x56,0x7d,0x57,0x29,0x5b}}, // \xe7\x87\xac
+{0x71ed,{0x4c,0x3f,0x4b,0x75,0x77,0x25,0x7f}}, // \xe7\x87\xad
+{0x71ee,{0x4a,0x47,0x5a,0x2d,0x5a,0x47,0x4a}}, // \xe7\x87\xae
+{0x71f5,{0x4c,0x3f,0x69,0x54,0x5e,0x77,0x5e}}, // \xe7\x87\xb5
+{0x71f9,{0x45,0x5b,0x2d,0x10,0x25,0x5b,0x4d}}, // \xe7\x87\xb9
+{0x71fb,{0x4c,0x3f,0x52,0x1f,0x5f,0x1f,0x52}}, // \xe7\x87\xbb
+{0x71fc,{0x4c,0x3f,0x54,0x6a,0x7f,0x6e,0x54}}, // \xe7\x87\xbc
+{0x71ff,{0x4c,0x3f,0x21,0x7b,0x50,0x79,0x53}}, // \xe7\x87\xbf
+{0x7206,{0x4c,0x3f,0x5b,0x2f,0x7b,0x2f,0x5b}}, // \xe7\x88\x86
+{0x720d,{0x4c,0x3f,0x5a,0x35,0x7f,0x3a,0x55}}, // \xe7\x88\x8d
+{0x7210,{0x4c,0x3f,0x20,0x5c,0x64,0x6f,0x4a}}, // \xe7\x88\x90
+{0x721b,{0x4c,0x3f,0x7f,0x2b,0x7c,0x2b,0x7f}}, // \xe7\x88\x9b
+{0x7228,{0x2c,0x16,0x5d,0x36,0x5d,0x17,0x2c}}, // \xe7\x88\xa8
+{0x722a,{0x40,0x3e,0x02,0x7e,0x01,0x3d,0x40}}, // \xe7\x88\xaa
+{0x722c,{0x40,0x3e,0x7e,0x3d,0x40,0x5e,0x56}}, // \xe7\x88\xac
+{0x722d,{0x14,0x13,0x55,0x7f,0x35,0x3d,0x12}}, // \xe7\x88\xad
+{0x7230,{0x44,0x2b,0x5d,0x5f,0x2d,0x5d,0x4a}}, // \xe7\x88\xb0
+{0x7232,{0x44,0x23,0x5d,0x17,0x55,0x1d,0x72}}, // \xe7\x88\xb2
+{0x7235,{0x41,0x7f,0x5d,0x6f,0x0d,0x5f,0x7d}}, // \xe7\x88\xb5
+{0x7236,{0x42,0x42,0x2d,0x10,0x2d,0x42,0x42}}, // \xe7\x88\xb6
+{0x723a,{0x2a,0x3a,0x35,0x74,0x05,0x7a,0x2a}}, // \xe7\x88\xba
+{0x723b,{0x40,0x45,0x5d,0x22,0x5a,0x45,0x40}}, // \xe7\x88\xbb
+{0x723c,{0x55,0x22,0x55,0x7f,0x55,0x7f,0x40}}, // \xe7\x88\xbc
+{0x723d,{0x42,0x56,0x2a,0x1f,0x2a,0x56,0x42}}, // \xe7\x88\xbd
+{0x723e,{0x7d,0x57,0x2d,0x7f,0x55,0x2f,0x7d}}, // \xe7\x88\xbe
+{0x723f,{0x00,0x50,0x37,0x14,0x14,0x7f,0x00}}, // \xe7\x88\xbf
+{0x7240,{0x57,0x34,0x7f,0x1a,0x7f,0x1a,0x22}}, // \xe7\x89\x80
+{0x7246,{0x57,0x34,0x7f,0x76,0x5b,0x76,0x7a}}, // \xe7\x89\x86
+{0x7247,{0x40,0x3f,0x14,0x14,0x17,0x74,0x04}}, // \xe7\x89\x87
+{0x7248,{0x7f,0x14,0x77,0x20,0x5f,0x25,0x5d}}, // \xe7\x89\x88
+{0x724b,{0x7f,0x14,0x77,0x12,0x5b,0x36,0x5b}}, // \xe7\x89\x8b
+{0x724c,{0x7f,0x14,0x77,0x2e,0x3f,0x7a,0x2e}}, // \xe7\x89\x8c
+{0x7252,{0x7f,0x14,0x77,0x3e,0x73,0x36,0x57}}, // \xe7\x89\x92
+{0x7258,{0x7f,0x14,0x77,0x4e,0x3e,0x3b,0x4e}}, // \xe7\x89\x98
+{0x7259,{0x28,0x2f,0x19,0x49,0x7f,0x09,0x08}}, // \xe7\x89\x99
+{0x725b,{0x14,0x13,0x12,0x7f,0x12,0x12,0x10}}, // \xe7\x89\x9b
+{0x725d,{0x14,0x13,0x7f,0x0a,0x7f,0x48,0x64}}, // \xe7\x89\x9d
+{0x725f,{0x24,0x34,0x2e,0x7d,0x2c,0x2a,0x24}}, // \xe7\x89\x9f
+{0x7261,{0x14,0x13,0x7f,0x0a,0x44,0x7f,0x44}}, // \xe7\x89\xa1
+{0x7262,{0x36,0x2e,0x2a,0x7f,0x2a,0x2a,0x26}}, // \xe7\x89\xa2
+{0x7267,{0x17,0x7f,0x44,0x5f,0x22,0x5e,0x42}}, // \xe7\x89\xa7
+{0x7269,{0x17,0x7f,0x24,0x53,0x2e,0x5e,0x7e}}, // \xe7\x89\xa9
+{0x7272,{0x17,0x7f,0x44,0x53,0x7f,0x52,0x42}}, // \xe7\x89\xb2
+{0x7274,{0x17,0x7f,0x12,0x7e,0x4a,0x5e,0x69}}, // \xe7\x89\xb4
+{0x7279,{0x17,0x7f,0x28,0x6a,0x2f,0x7a,0x28}}, // \xe7\x89\xb9
+{0x727d,{0x1a,0x2e,0x3e,0x7b,0x3a,0x2e,0x1a}}, // \xe7\x89\xbd
+{0x727e,{0x17,0x7f,0x14,0x7d,0x57,0x7d,0x10}}, // \xe7\x89\xbe
+{0x7280,{0x40,0x3f,0x2b,0x3b,0x33,0x7f,0x2b}}, // \xe7\x8a\x80
+{0x7281,{0x2a,0x27,0x3f,0x7a,0x37,0x30,0x2f}}, // \xe7\x8a\x81
+{0x7282,{0x2a,0x27,0x3f,0x76,0x3b,0x36,0x2e}}, // \xe7\x8a\x82
+{0x7287,{0x24,0x3f,0x76,0x27,0x3e,0x76,0x24}}, // \xe7\x8a\x87
+{0x7292,{0x17,0x7f,0x72,0x1e,0x5b,0x1e,0x72}}, // \xe7\x8a\x92
+{0x7296,{0x2d,0x26,0x3d,0x7c,0x35,0x36,0x2d}}, // \xe7\x8a\x96
+{0x72a0,{0x17,0x7f,0x2a,0x7b,0x2e,0x3b,0x5a}}, // \xe7\x8a\xa0
+{0x72a2,{0x17,0x7f,0x4e,0x3e,0x3b,0x3e,0x4e}}, // \xe7\x8a\xa2
+{0x72a7,{0x17,0x7f,0x0a,0x5b,0x6e,0x3b,0x5a}}, // \xe7\x8a\xa7
+{0x72ac,{0x44,0x44,0x24,0x1f,0x24,0x45,0x44}}, // \xe7\x8a\xac
+{0x72af,{0x55,0x4a,0x3d,0x7f,0x41,0x49,0x6f}}, // \xe7\x8a\xaf
+{0x72b2,{0x55,0x4a,0x3d,0x22,0x52,0x7f,0x0a}}, // \xe7\x8a\xb2
+{0x72b6,{0x14,0x7f,0x44,0x24,0x1f,0x24,0x45}}, // \xe7\x8a\xb6
+{0x72b9,{0x55,0x4a,0x3d,0x42,0x3f,0x7a,0x43}}, // \xe7\x8a\xb9
+{0x72c2,{0x55,0x4a,0x3d,0x40,0x49,0x7f,0x49}}, // \xe7\x8b\x82
+{0x72c3,{0x55,0x3e,0x49,0x7f,0x49,0x7f,0x48}}, // \xe7\x8b\x83
+{0x72c4,{0x55,0x4a,0x3d,0x4c,0x40,0x3f,0x44}}, // \xe7\x8b\x84
+{0x72c6,{0x55,0x4a,0x3d,0x1e,0x12,0x7f,0x1e}}, // \xe7\x8b\x86
+{0x72ce,{0x55,0x3e,0x1f,0x15,0x7f,0x15,0x1f}}, // \xe7\x8b\x8e
+{0x72d0,{0x55,0x3e,0x41,0x3e,0x42,0x3e,0x61}}, // \xe7\x8b\x90
+{0x72d2,{0x55,0x3e,0x5a,0x3f,0x16,0x7f,0x36}}, // \xe7\x8b\x92
+{0x72d7,{0x55,0x4a,0x3d,0x04,0x1b,0x5a,0x7e}}, // \xe7\x8b\x97
+{0x72d9,{0x55,0x3e,0x41,0x7f,0x55,0x7f,0x40}}, // \xe7\x8b\x99
+{0x72db,{0x55,0x3e,0x01,0x7e,0x4b,0x4a,0x7e}}, // \xe7\x8b\x9b
+{0x72e0,{0x55,0x3e,0x01,0x7f,0x55,0x35,0x5f}}, // \xe7\x8b\xa0
+{0x72e1,{0x55,0x3e,0x4a,0x56,0x23,0x56,0x4a}}, // \xe7\x8b\xa1
+{0x72e2,{0x55,0x3e,0x11,0x6a,0x65,0x6b,0x10}}, // \xe7\x8b\xa2
+{0x72e9,{0x55,0x3e,0x11,0x36,0x53,0x7a,0x16}}, // \xe7\x8b\xa9
+{0x72ec,{0x55,0x4a,0x3d,0x4e,0x7f,0x4a,0x6e}}, // \xe7\x8b\xac
+{0x72ed,{0x55,0x3e,0x5b,0x52,0x3f,0x52,0x5a}}, // \xe7\x8b\xad
+{0x72f7,{0x55,0x4a,0x3d,0x78,0x2b,0x2b,0x78}}, // \xe7\x8b\xb7
+{0x72f8,{0x55,0x3e,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe7\x8b\xb8
+{0x72f9,{0x55,0x3e,0x52,0x4e,0x3f,0x4e,0x52}}, // \xe7\x8b\xb9
+{0x72fc,{0x55,0x3e,0x01,0x7e,0x5a,0x3b,0x5e}}, // \xe7\x8b\xbc
+{0x72fd,{0x55,0x4a,0x3d,0x5f,0x15,0x15,0x5f}}, // \xe7\x8b\xbd
+{0x730a,{0x55,0x3e,0x5e,0x35,0x10,0x75,0x5f}}, // \xe7\x8c\x8a
+{0x7316,{0x55,0x4a,0x3d,0x7c,0x57,0x57,0x7c}}, // \xe7\x8c\x96
+{0x7317,{0x55,0x3e,0x12,0x5a,0x17,0x7a,0x12}}, // \xe7\x8c\x97
+{0x731b,{0x55,0x3e,0x45,0x74,0x7d,0x77,0x44}}, // \xe7\x8c\x9b
+{0x731c,{0x55,0x3e,0x09,0x7a,0x3f,0x7a,0x08}}, // \xe7\x8c\x9c
+{0x731d,{0x55,0x3e,0x32,0x2e,0x73,0x2e,0x32}}, // \xe7\x8c\x9d
+{0x731f,{0x55,0x4a,0x3d,0x14,0x7d,0x16,0x7d}}, // \xe7\x8c\x9f
+{0x7325,{0x55,0x4a,0x3d,0x77,0x55,0x37,0x57}}, // \xe7\x8c\xa5
+{0x7329,{0x55,0x4a,0x3d,0x48,0x57,0x7d,0x57}}, // \xe7\x8c\xa9
+{0x732a,{0x55,0x3e,0x29,0x1a,0x6f,0x6a,0x69}}, // \xe7\x8c\xaa
+{0x732b,{0x55,0x3e,0x7a,0x5f,0x7a,0x5f,0x7a}}, // \xe7\x8c\xab
+{0x732e,{0x7a,0x3a,0x6f,0x7a,0x44,0x3f,0x45}}, // \xe7\x8c\xae
+{0x732f,{0x55,0x3e,0x6b,0x3a,0x6b,0x2a,0x6b}}, // \xe7\x8c\xaf
+{0x7334,{0x55,0x3e,0x7f,0x54,0x5d,0x37,0x54}}, // \xe7\x8c\xb4
+{0x7336,{0x55,0x3e,0x7a,0x5f,0x4a,0x5f,0x7a}}, // \xe7\x8c\xb6
+{0x7337,{0x7a,0x5f,0x4e,0x7b,0x44,0x3f,0x45}}, // \xe7\x8c\xb7
+{0x733e,{0x55,0x3e,0x0c,0x77,0x35,0x77,0x0c}}, // \xe7\x8c\xbe
+{0x733f,{0x55,0x4a,0x3d,0x7e,0x57,0x36,0x5c}}, // \xe7\x8c\xbf
+{0x7344,{0x55,0x4a,0x3d,0x6b,0x6a,0x3f,0x45}}, // \xe7\x8d\x84
+{0x7345,{0x55,0x4a,0x3f,0x36,0x1d,0x7f,0x1d}}, // \xe7\x8d\x85
+{0x734e,{0x5b,0x56,0x5f,0x34,0x56,0x5d,0x57}}, // \xe7\x8d\x8e
+{0x734f,{0x55,0x3e,0x52,0x5f,0x36,0x5f,0x52}}, // \xe7\x8d\x8f
+{0x7357,{0x55,0x3e,0x5b,0x35,0x4b,0x3d,0x4d}}, // \xe7\x8d\x97
+{0x7363,{0x11,0x77,0x56,0x77,0x44,0x3f,0x45}}, // \xe7\x8d\xa3
+{0x7368,{0x55,0x3e,0x4b,0x75,0x77,0x25,0x7f}}, // \xe7\x8d\xa8
+{0x736a,{0x55,0x3e,0x1d,0x76,0x5d,0x76,0x1c}}, // \xe7\x8d\xaa
+{0x7370,{0x55,0x3e,0x17,0x5e,0x7f,0x1a,0x16}}, // \xe7\x8d\xb0
+{0x7372,{0x55,0x3e,0x42,0x5f,0x2e,0x5f,0x4a}}, // \xe7\x8d\xb2
+{0x7375,{0x55,0x3e,0x41,0x3e,0x75,0x2e,0x7d}}, // \xe7\x8d\xb5
+{0x7378,{0x13,0x7f,0x5f,0x7f,0x44,0x3f,0x45}}, // \xe7\x8d\xb8
+{0x737a,{0x55,0x3e,0x2e,0x7f,0x5a,0x19,0x5b}}, // \xe7\x8d\xba
+{0x737b,{0x7c,0x74,0x3f,0x6a,0x44,0x3f,0x45}}, // \xe7\x8d\xbb
+{0x7384,{0x42,0x4a,0x6e,0x53,0x4a,0x22,0x42}}, // \xe7\x8e\x84
+{0x7387,{0x22,0x36,0x2a,0x77,0x22,0x36,0x22}}, // \xe7\x8e\x87
+{0x7389,{0x41,0x49,0x49,0x7f,0x49,0x69,0x41}}, // \xe7\x8e\x89
+{0x738b,{0x41,0x49,0x49,0x7f,0x49,0x49,0x41}}, // \xe7\x8e\x8b
+{0x7396,{0x29,0x3f,0x29,0x44,0x23,0x1a,0x66}}, // \xe7\x8e\x96
+{0x73a9,{0x29,0x3f,0x44,0x3d,0x05,0x7d,0x44}}, // \xe7\x8e\xa9
+{0x73b2,{0x29,0x3f,0x15,0x12,0x75,0x16,0x34}}, // \xe7\x8e\xb2
+{0x73b3,{0x29,0x3f,0x7e,0x01,0x04,0x3f,0x45}}, // \xe7\x8e\xb3
+{0x73bb,{0x29,0x3f,0x7e,0x5a,0x2f,0x5a,0x46}}, // \xe7\x8e\xbb
+{0x73c0,{0x29,0x3f,0x15,0x7e,0x4b,0x4a,0x7e}}, // \xe7\x8f\x80
+{0x73c2,{0x29,0x3f,0x29,0x1d,0x15,0x5d,0x7f}}, // \xe7\x8f\x82
+{0x73c8,{0x29,0x3f,0x62,0x1f,0x7e,0x42,0x7e}}, // \xe7\x8f\x88
+{0x73ca,{0x29,0x3f,0x08,0x7f,0x3f,0x09,0x7f}}, // \xe7\x8f\x8a
+{0x73cd,{0x29,0x3f,0x15,0x42,0x55,0x2a,0x14}}, // \xe7\x8f\x8d
+{0x73ce,{0x29,0x3f,0x24,0x5b,0x7e,0x0a,0x32}}, // \xe7\x8f\x8e
+{0x73de,{0x29,0x3f,0x11,0x6a,0x65,0x6b,0x10}}, // \xe7\x8f\x9e
+{0x73e0,{0x29,0x3f,0x4c,0x2b,0x7f,0x2a,0x48}}, // \xe7\x8f\xa0
+{0x73e5,{0x29,0x3f,0x21,0x3f,0x2d,0x7f,0x21}}, // \xe7\x8f\xa5
+{0x73ea,{0x29,0x3f,0x49,0x5a,0x7f,0x5a,0x48}}, // \xe7\x8f\xaa
+{0x73ed,{0x29,0x3f,0x4d,0x20,0x5e,0x7f,0x49}}, // \xe7\x8f\xad
+{0x73ee,{0x29,0x3f,0x7f,0x35,0x7d,0x35,0x7f}}, // \xe7\x8f\xae
+{0x73f1,{0x29,0x3f,0x49,0x58,0x2d,0x3a,0x49}}, // \xe7\x8f\xb1
+{0x73f8,{0x29,0x3f,0x14,0x7d,0x57,0x7d,0x10}}, // \xe7\x8f\xb8
+{0x73fe,{0x29,0x3f,0x29,0x5f,0x35,0x75,0x5f}}, // \xe7\x8f\xbe
+{0x7403,{0x29,0x3f,0x2a,0x52,0x7f,0x12,0x2b}}, // \xe7\x90\x83
+{0x7405,{0x29,0x3f,0x15,0x7e,0x5a,0x3b,0x5e}}, // \xe7\x90\x85
+{0x7406,{0x29,0x3f,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe7\x90\x86
+{0x7409,{0x29,0x3f,0x4a,0x3e,0x7b,0x06,0x6a}}, // \xe7\x90\x89
+{0x7422,{0x29,0x3f,0x29,0x57,0x7d,0x19,0x25}}, // \xe7\x90\xa2
+{0x7425,{0x29,0x3f,0x29,0x5c,0x24,0x6f,0x4a}}, // \xe7\x90\xa5
+{0x7432,{0x29,0x3f,0x2a,0x7f,0x00,0x7f,0x2a}}, // \xe7\x90\xb2
+{0x7433,{0x29,0x3f,0x1a,0x7f,0x1a,0x7f,0x12}}, // \xe7\x90\xb3
+{0x7434,{0x15,0x17,0x2d,0x28,0x6d,0x17,0x15}}, // \xe7\x90\xb4
+{0x7435,{0x45,0x7f,0x55,0x00,0x7d,0x57,0x55}}, // \xe7\x90\xb5
+{0x7436,{0x05,0x3f,0x55,0x5c,0x55,0x5f,0x65}}, // \xe7\x90\xb6
+{0x743a,{0x29,0x3f,0x75,0x00,0x6a,0x5f,0x4a}}, // \xe7\x90\xba
+{0x743f,{0x29,0x3f,0x27,0x3d,0x7f,0x3d,0x27}}, // \xe7\x90\xbf
+{0x7441,{0x29,0x3f,0x07,0x79,0x55,0x7d,0x07}}, // \xe7\x91\x81
+{0x7455,{0x29,0x3f,0x7f,0x2b,0x58,0x2d,0x5f}}, // \xe7\x91\x95
+{0x7459,{0x29,0x3f,0x15,0x7a,0x6d,0x5a,0x7d}}, // \xe7\x91\x99
+{0x745a,{0x29,0x3f,0x3a,0x2f,0x7a,0x3f,0x7f}}, // \xe7\x91\x9a
+{0x745b,{0x29,0x3f,0x5a,0x57,0x3a,0x57,0x5a}}, // \xe7\x91\x9b
+{0x745c,{0x29,0x3f,0x04,0x73,0x75,0x26,0x54}}, // \xe7\x91\x9c
+{0x745e,{0x29,0x3f,0x6b,0x3a,0x6b,0x2a,0x6b}}, // \xe7\x91\x9e
+{0x745f,{0x55,0x47,0x3d,0x50,0x4d,0x47,0x55}}, // \xe7\x91\x9f
+{0x7460,{0x29,0x3f,0x0e,0x7a,0x79,0x77,0x0f}}, // \xe7\x91\xa0
+{0x7463,{0x29,0x3f,0x42,0x3d,0x36,0x3d,0x42}}, // \xe7\x91\xa3
+{0x7464,{0x29,0x3f,0x11,0x6a,0x4d,0x7b,0x68}}, // \xe7\x91\xa4
+{0x7469,{0x4d,0x56,0x55,0x7c,0x55,0x76,0x4d}}, // \xe7\x91\xa9
+{0x746a,{0x29,0x3f,0x5f,0x15,0x5f,0x15,0x71}}, // \xe7\x91\xaa
+{0x746f,{0x29,0x3f,0x7e,0x4b,0x2e,0x7f,0x1b}}, // \xe7\x91\xaf
+{0x7470,{0x29,0x3f,0x5e,0x2b,0x7e,0x6a,0x5e}}, // \xe7\x91\xb0
+{0x7473,{0x29,0x3f,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe7\x91\xb3
+{0x7476,{0x29,0x3f,0x69,0x4a,0x7e,0x49,0x6b}}, // \xe7\x91\xb6
+{0x747e,{0x29,0x3f,0x5a,0x5f,0x7a,0x5f,0x5a}}, // \xe7\x91\xbe
+{0x7483,{0x29,0x3f,0x72,0x5e,0x7b,0x3e,0x72}}, // \xe7\x92\x83
+{0x748b,{0x29,0x3f,0x2a,0x3e,0x7b,0x3e,0x2a}}, // \xe7\x92\x8b
+{0x749e,{0x29,0x3f,0x4b,0x5e,0x3b,0x5e,0x4b}}, // \xe7\x92\x9e
+{0x74a2,{0x29,0x3f,0x7d,0x5f,0x71,0x5f,0x7d}}, // \xe7\x92\xa2
+{0x74a7,{0x54,0x5f,0x7b,0x70,0x76,0x7b,0x56}}, // \xe7\x92\xa7
+{0x74b0,{0x29,0x3f,0x47,0x3d,0x6f,0x3d,0x47}}, // \xe7\x92\xb0
+{0x74bd,{0x5d,0x77,0x6d,0x7f,0x75,0x6f,0x5d}}, // \xe7\x92\xbd
+{0x74ca,{0x29,0x3f,0x29,0x52,0x5d,0x2f,0x5e}}, // \xe7\x93\x8a
+{0x74cf,{0x29,0x3f,0x7e,0x2b,0x7e,0x77,0x5d}}, // \xe7\x93\x8f
+{0x74d4,{0x29,0x3f,0x57,0x7b,0x54,0x33,0x57}}, // \xe7\x93\x94
+{0x74dc,{0x40,0x3e,0x42,0x7e,0x41,0x3d,0x40}}, // \xe7\x93\x9c
+{0x74e0,{0x0a,0x57,0x6a,0x3e,0x62,0x1e,0x61}}, // \xe7\x93\xa0
+{0x74e2,{0x51,0x17,0x77,0x3f,0x42,0x3e,0x61}}, // \xe7\x93\xa2
+{0x74e3,{0x56,0x3b,0x7e,0x7f,0x16,0x7b,0x16}}, // \xe7\x93\xa3
+{0x74e6,{0x41,0x71,0x4f,0x15,0x7d,0x41,0x61}}, // \xe7\x93\xa6
+{0x74e7,{0x41,0x7f,0x3d,0x41,0x44,0x7f,0x44}}, // \xe7\x93\xa7
+{0x74e9,{0x41,0x7f,0x3d,0x41,0x4a,0x7e,0x49}}, // \xe7\x93\xa9
+{0x74ee,{0x4a,0x4a,0x7d,0x58,0x19,0x7a,0x4a}}, // \xe7\x93\xae
+{0x74f0,{0x41,0x7f,0x3d,0x41,0x6a,0x59,0x7a}}, // \xe7\x93\xb0
+{0x74f1,{0x41,0x7f,0x3d,0x41,0x4a,0x7e,0x65}}, // \xe7\x93\xb1
+{0x74f2,{0x41,0x3f,0x7d,0x5a,0x52,0x7f,0x6a}}, // \xe7\x93\xb2
+{0x74f6,{0x55,0x3e,0x7d,0x7f,0x55,0x3d,0x41}}, // \xe7\x93\xb6
+{0x74f7,{0x59,0x50,0x74,0x5b,0x16,0x7a,0x56}}, // \xe7\x93\xb7
+{0x74f8,{0x41,0x7f,0x3d,0x40,0x7d,0x6b,0x7d}}, // \xe7\x93\xb8
+{0x7503,{0x5a,0x56,0x7e,0x55,0x1a,0x77,0x5a}}, // \xe7\x94\x83
+{0x7504,{0x5d,0x7f,0x5d,0x41,0x7f,0x3d,0x41}}, // \xe7\x94\x84
+{0x7505,{0x41,0x7f,0x3d,0x50,0x6f,0x7d,0x6d}}, // \xe7\x94\x85
+{0x750c,{0x7f,0x71,0x47,0x77,0x7f,0x3d,0x41}}, // \xe7\x94\x8c
+{0x750d,{0x5a,0x4e,0x7b,0x5e,0x1b,0x7e,0x5a}}, // \xe7\x94\x8d
+{0x750e,{0x52,0x1f,0x7e,0x41,0x7f,0x3d,0x41}}, // \xe7\x94\x8e
+{0x7511,{0x6d,0x6c,0x4d,0x7f,0x55,0x3d,0x41}}, // \xe7\x94\x91
+{0x7513,{0x54,0x5f,0x7b,0x50,0x16,0x7b,0x56}}, // \xe7\x94\x93
+{0x7515,{0x5a,0x56,0x72,0x5f,0x1e,0x7e,0x5a}}, // \xe7\x94\x95
+{0x7518,{0x02,0x7f,0x4a,0x4a,0x4a,0x7f,0x02}}, // \xe7\x94\x98
+{0x751a,{0x12,0x72,0x5f,0x7a,0x5f,0x72,0x52}}, // \xe7\x94\x9a
+{0x751c,{0x76,0x5e,0x75,0x02,0x7f,0x4a,0x7f}}, // \xe7\x94\x9c
+{0x751e,{0x16,0x7b,0x56,0x57,0x56,0x7b,0x16}}, // \xe7\x94\x9e
+{0x751f,{0x44,0x53,0x52,0x7f,0x52,0x52,0x42}}, // \xe7\x94\x9f
+{0x7523,{0x42,0x3a,0x4e,0x5b,0x7a,0x5e,0x4a}}, // \xe7\x94\xa3
+{0x7525,{0x2b,0x3f,0x2a,0x5f,0x35,0x5f,0x7f}}, // \xe7\x94\xa5
+{0x7526,{0x5d,0x3f,0x4d,0x64,0x6b,0x7f,0x6a}}, // \xe7\x94\xa6
+{0x7528,{0x40,0x3f,0x15,0x7f,0x15,0x55,0x7f}}, // \xe7\x94\xa8
+{0x752b,{0x02,0x7a,0x2a,0x7f,0x2a,0x7b,0x02}}, // \xe7\x94\xab
+{0x752c,{0x00,0x7d,0x15,0x7d,0x15,0x57,0x7d}}, // \xe7\x94\xac
+{0x7530,{0x7f,0x49,0x49,0x7f,0x49,0x49,0x7f}}, // \xe7\x94\xb0
+{0x7531,{0x7e,0x4a,0x4a,0x7f,0x4a,0x4a,0x7e}}, // \xe7\x94\xb1
+{0x7532,{0x1f,0x15,0x15,0x7f,0x15,0x15,0x1f}}, // \xe7\x94\xb2
+{0x7533,{0x3e,0x2a,0x2a,0x7f,0x2a,0x2a,0x3e}}, // \xe7\x94\xb3
+{0x7537,{0x50,0x5f,0x35,0x1f,0x15,0x5f,0x70}}, // \xe7\x94\xb7
+{0x7538,{0x04,0x3f,0x2a,0x3e,0x2a,0x3e,0x7e}}, // \xe7\x94\xb8
+{0x753a,{0x3f,0x25,0x3f,0x3f,0x42,0x7e,0x02}}, // \xe7\x94\xba
+{0x753b,{0x7d,0x41,0x5d,0x5f,0x5d,0x41,0x7d}}, // \xe7\x94\xbb
+{0x753c,{0x10,0x1f,0x55,0x7f,0x15,0x1f,0x10}}, // \xe7\x94\xbc
+{0x7544,{0x00,0x7d,0x54,0x7d,0x54,0x56,0x7d}}, // \xe7\x95\x84
+{0x7546,{0x7a,0x7b,0x7a,0x40,0x70,0x4f,0x60}}, // \xe7\x95\x86
+{0x7549,{0x3e,0x3e,0x3e,0x48,0x4a,0x3f,0x4a}}, // \xe7\x95\x89
+{0x754a,{0x3e,0x3e,0x3e,0x52,0x3f,0x12,0x7f}}, // \xe7\x95\x8a
+{0x754b,{0x3e,0x3e,0x3e,0x44,0x5f,0x22,0x5e}}, // \xe7\x95\x8b
+{0x754c,{0x20,0x5f,0x35,0x1f,0x75,0x1f,0x20}}, // \xe7\x95\x8c
+{0x754d,{0x3e,0x3e,0x3e,0x44,0x3a,0x01,0x7a}}, // \xe7\x95\x8d
+{0x754f,{0x50,0x7f,0x55,0x1f,0x35,0x5f,0x50}}, // \xe7\x95\x8f
+{0x7551,{0x4c,0x3f,0x24,0x7f,0x49,0x7f,0x7f}}, // \xe7\x95\x91
+{0x7554,{0x3e,0x3e,0x3e,0x2a,0x28,0x7f,0x2a}}, // \xe7\x95\x94
+{0x7559,{0x0e,0x7a,0x59,0x74,0x59,0x77,0x0f}}, // \xe7\x95\x99
+{0x755a,{0x14,0x0e,0x77,0x76,0x55,0x7e,0x14}}, // \xe7\x95\x9a
+{0x755b,{0x3e,0x3e,0x3e,0x42,0x55,0x2a,0x14}}, // \xe7\x95\x9b
+{0x755c,{0x12,0x76,0x56,0x7b,0x52,0x72,0x1a}}, // \xe7\x95\x9c
+{0x755d,{0x7a,0x7b,0x7a,0x44,0x23,0x1a,0x66}}, // \xe7\x95\x9d
+{0x7560,{0x70,0x5e,0x5a,0x7b,0x5a,0x5e,0x70}}, // \xe7\x95\xa0
+{0x7562,{0x28,0x3f,0x2d,0x7f,0x2d,0x3f,0x28}}, // \xe7\x95\xa2
+{0x7564,{0x3e,0x3e,0x3e,0x6a,0x2f,0x7a,0x28}}, // \xe7\x95\xa4
+{0x7565,{0x3e,0x3e,0x3e,0x10,0x6a,0x65,0x6b}}, // \xe7\x95\xa5
+{0x7566,{0x3e,0x3e,0x3e,0x48,0x5a,0x7f,0x5a}}, // \xe7\x95\xa6
+{0x7567,{0x20,0x27,0x6d,0x57,0x6d,0x27,0x20}}, // \xe7\x95\xa7
+{0x7569,{0x3e,0x3e,0x3e,0x7a,0x4f,0x32,0x4a}}, // \xe7\x95\xa9
+{0x756a,{0x15,0x77,0x6d,0x7f,0x6d,0x77,0x15}}, // \xe7\x95\xaa
+{0x756b,{0x50,0x7a,0x5a,0x7f,0x5a,0x7e,0x54}}, // \xe7\x95\xab
+{0x756d,{0x3e,0x3e,0x3e,0x54,0x16,0x7d,0x56}}, // \xe7\x95\xad
+{0x7570,{0x50,0x57,0x1d,0x17,0x1d,0x57,0x50}}, // \xe7\x95\xb0
+{0x7573,{0x58,0x4f,0x7d,0x5f,0x7d,0x4f,0x58}}, // \xe7\x95\xb3
+{0x7574,{0x3e,0x3e,0x3e,0x5e,0x17,0x7e,0x14}}, // \xe7\x95\xb4
+{0x7576,{0x06,0x73,0x5e,0x7b,0x5e,0x73,0x06}}, // \xe7\x95\xb6
+{0x7577,{0x3e,0x3e,0x5d,0x2b,0x5d,0x2b,0x5d}}, // \xe7\x95\xb7
+{0x7578,{0x3e,0x3e,0x3e,0x12,0x5a,0x17,0x7a}}, // \xe7\x95\xb8
+{0x757f,{0x6a,0x6d,0x68,0x0f,0x5a,0x2d,0x50}}, // \xe7\x95\xbf
+{0x7582,{0x5a,0x4c,0x7b,0x5b,0x7b,0x4c,0x5a}}, // \xe7\x96\x82
+{0x7586,{0x51,0x7d,0x37,0x49,0x7f,0x7f,0x49}}, // \xe7\x96\x86
+{0x7587,{0x3e,0x3e,0x3e,0x36,0x5f,0x76,0x14}}, // \xe7\x96\x87
+{0x7589,{0x5c,0x6c,0x5f,0x6b,0x5f,0x4c,0x5c}}, // \xe7\x96\x89
+{0x758a,{0x5c,0x4c,0x7f,0x5b,0x7f,0x4c,0x5c}}, // \xe7\x96\x8a
+{0x758b,{0x41,0x39,0x41,0x7f,0x49,0x49,0x43}}, // \xe7\x96\x8b
+{0x758e,{0x71,0x7d,0x4b,0x2e,0x7f,0x2a,0x4e}}, // \xe7\x96\x8e
+{0x758f,{0x71,0x7d,0x4b,0x3e,0x7b,0x06,0x6a}}, // \xe7\x96\x8f
+{0x7591,{0x57,0x3a,0x5a,0x65,0x3d,0x57,0x4d}}, // \xe7\x96\x91
+{0x7594,{0x54,0x3e,0x0a,0x4a,0x7b,0x0a,0x0a}}, // \xe7\x96\x94
+{0x759a,{0x54,0x3e,0x42,0x4a,0x27,0x5e,0x42}}, // \xe7\x96\x9a
+{0x759d,{0x54,0x3e,0x72,0x42,0x7b,0x42,0x72}}, // \xe7\x96\x9d
+{0x75a3,{0x54,0x3e,0x4a,0x4a,0x3f,0x7a,0x4a}}, // \xe7\x96\xa3
+{0x75a5,{0x54,0x3e,0x52,0x3a,0x07,0x7a,0x12}}, // \xe7\x96\xa5
+{0x75ab,{0x54,0x3e,0x52,0x4e,0x37,0x7e,0x52}}, // \xe7\x96\xab
+{0x75b1,{0x54,0x3e,0x12,0x0e,0x7b,0x5a,0x5a}}, // \xe7\x96\xb1
+{0x75b2,{0x54,0x3e,0x42,0x3a,0x5b,0x2e,0x5a}}, // \xe7\x96\xb2
+{0x75b3,{0x54,0x3e,0x0a,0x7e,0x4b,0x7e,0x0a}}, // \xe7\x96\xb3
+{0x75b5,{0x54,0x3e,0x72,0x7e,0x2b,0x7e,0x4a}}, // \xe7\x96\xb5
+{0x75b8,{0x54,0x3e,0x42,0x5e,0x57,0x5e,0x42}}, // \xe7\x96\xb8
+{0x75b9,{0x54,0x3e,0x12,0x4a,0x57,0x2a,0x12}}, // \xe7\x96\xb9
+{0x75bc,{0x54,0x3e,0x22,0x2a,0x57,0x1e,0x22}}, // \xe7\x96\xbc
+{0x75bd,{0x54,0x3e,0x42,0x7e,0x57,0x7e,0x42}}, // \xe7\x96\xbd
+{0x75be,{0x54,0x3e,0x52,0x5e,0x3b,0x5a,0x52}}, // \xe7\x96\xbe
+{0x75c2,{0x54,0x3e,0x4a,0x3e,0x7b,0x4a,0x7a}}, // \xe7\x97\x82
+{0x75c3,{0x54,0x3e,0x4a,0x5a,0x6f,0x4a,0x6a}}, // \xe7\x97\x83
+{0x75c5,{0x54,0x3e,0x7a,0x2e,0x1f,0x2e,0x7a}}, // \xe7\x97\x85
+{0x75c7,{0x54,0x3e,0x42,0x76,0x47,0x7e,0x56}}, // \xe7\x97\x87
+{0x75ca,{0x54,0x3e,0x52,0x5a,0x77,0x5a,0x52}}, // \xe7\x97\x8a
+{0x75cd,{0x54,0x3e,0x46,0x5e,0x3f,0x56,0x72}}, // \xe7\x97\x8d
+{0x75d2,{0x54,0x3e,0x2a,0x2e,0x7b,0x2e,0x2a}}, // \xe7\x97\x92
+{0x75d4,{0x54,0x3e,0x12,0x36,0x5f,0x76,0x12}}, // \xe7\x97\x94
+{0x75d5,{0x54,0x3e,0x02,0x7e,0x57,0x3e,0x42}}, // \xe7\x97\x95
+{0x75d8,{0x54,0x3e,0x02,0x5a,0x6b,0x6a,0x5a}}, // \xe7\x97\x98
+{0x75d9,{0x54,0x3e,0x52,0x5a,0x77,0x5a,0x56}}, // \xe7\x97\x99
+{0x75db,{0x54,0x3e,0x7a,0x2a,0x7b,0x2e,0x7a}}, // \xe7\x97\x9b
+{0x75de,{0x54,0x3e,0x22,0x16,0x6f,0x7e,0x16}}, // \xe7\x97\x9e
+{0x75e2,{0x54,0x3e,0x2a,0x7a,0x27,0x5a,0x7a}}, // \xe7\x97\xa2
+{0x75e3,{0x54,0x3e,0x62,0x36,0x5f,0x56,0x62}}, // \xe7\x97\xa3
+{0x75e9,{0x54,0x3e,0x4a,0x5e,0x2f,0x5e,0x4a}}, // \xe7\x97\xa9
+{0x75f0,{0x54,0x3e,0x56,0x52,0x2f,0x52,0x56}}, // \xe7\x97\xb0
+{0x75f2,{0x54,0x3e,0x3a,0x7e,0x3b,0x7e,0x3a}}, // \xe7\x97\xb2
+{0x75f3,{0x54,0x3e,0x2a,0x7e,0x2b,0x7e,0x2a}}, // \xe7\x97\xb3
+{0x75f4,{0x54,0x3e,0x52,0x3e,0x4b,0x3a,0x3a}}, // \xe7\x97\xb4
+{0x75fa,{0x54,0x3e,0x02,0x2e,0x3f,0x7a,0x2e}}, // \xe7\x97\xba
+{0x75fc,{0x54,0x3e,0x7e,0x6a,0x5f,0x6a,0x7e}}, // \xe7\x97\xbc
+{0x75fe,{0x54,0x3e,0x7e,0x36,0x1b,0x5a,0x7e}}, // \xe7\x97\xbe
+{0x75ff,{0x54,0x3e,0x5a,0x76,0x5f,0x36,0x5a}}, // \xe7\x97\xbf
+{0x7601,{0x54,0x3e,0x36,0x2e,0x77,0x2e,0x36}}, // \xe7\x98\x81
+{0x7609,{0x54,0x3e,0x12,0x7a,0x77,0x2a,0x52}}, // \xe7\x98\x89
+{0x760b,{0x54,0x7e,0x3e,0x5a,0x7b,0x3e,0x42}}, // \xe7\x98\x8b
+{0x760d,{0x54,0x3e,0x52,0x3e,0x5b,0x3e,0x72}}, // \xe7\x98\x8d
+{0x761f,{0x54,0x3e,0x02,0x5e,0x7b,0x76,0x5e}}, // \xe7\x98\x9f
+{0x7620,{0x54,0x3e,0x16,0x76,0x2b,0x76,0x16}}, // \xe7\x98\xa0
+{0x7621,{0x54,0x3e,0x52,0x3a,0x77,0x6a,0x12}}, // \xe7\x98\xa1
+{0x7622,{0x54,0x3e,0x7a,0x7e,0x5b,0x2a,0x5a}}, // \xe7\x98\xa2
+{0x7624,{0x54,0x3e,0x1a,0x76,0x73,0x6e,0x1e}}, // \xe7\x98\xa4
+{0x7627,{0x54,0x3e,0x42,0x3a,0x2f,0x76,0x52}}, // \xe7\x98\xa7
+{0x7630,{0x54,0x3e,0x52,0x1e,0x7f,0x1e,0x52}}, // \xe7\x98\xb0
+{0x7634,{0x54,0x3e,0x2a,0x3e,0x7b,0x3e,0x2a}}, // \xe7\x98\xb4
+{0x763b,{0x54,0x3e,0x5a,0x7e,0x5f,0x3e,0x5a}}, // \xe7\x98\xbb
+{0x7642,{0x54,0x3e,0x4a,0x1e,0x6b,0x1e,0x4a}}, // \xe7\x99\x82
+{0x7646,{0x54,0x3e,0x36,0x5a,0x37,0x7a,0x36}}, // \xe7\x99\x86
+{0x7647,{0x54,0x3e,0x7e,0x46,0x33,0x76,0x7e}}, // \xe7\x99\x87
+{0x7648,{0x54,0x3e,0x56,0x2e,0x5f,0x2a,0x56}}, // \xe7\x99\x88
+{0x764c,{0x54,0x3e,0x7a,0x5e,0x67,0x5e,0x7a}}, // \xe7\x99\x8c
+{0x7652,{0x54,0x3e,0x5a,0x3a,0x47,0x5a,0x6a}}, // \xe7\x99\x92
+{0x7656,{0x54,0x3e,0x7e,0x6e,0x3b,0x6e,0x3a}}, // \xe7\x99\x96
+{0x7658,{0x54,0x3e,0x6a,0x3e,0x7b,0x7e,0x6a}}, // \xe7\x99\x98
+{0x765c,{0x54,0x3e,0x5e,0x16,0x5b,0x2a,0x5a}}, // \xe7\x99\x9c
+{0x7661,{0x54,0x3e,0x5e,0x3a,0x5b,0x36,0x5e}}, // \xe7\x99\xa1
+{0x7662,{0x54,0x3e,0x2a,0x7e,0x3b,0x5e,0x2a}}, // \xe7\x99\xa2
+{0x7667,{0x54,0x3e,0x42,0x3e,0x4f,0x66,0x4e}}, // \xe7\x99\xa7
+{0x7668,{0x54,0x3e,0x2a,0x76,0x7f,0x56,0x4a}}, // \xe7\x99\xa8
+{0x7669,{0x54,0x3e,0x7e,0x2e,0x43,0x1a,0x5e}}, // \xe7\x99\xa9
+{0x766a,{0x54,0x3e,0x36,0x7e,0x4b,0x1e,0x5a}}, // \xe7\x99\xaa
+{0x766c,{0x54,0x3e,0x5a,0x5e,0x2b,0x72,0x2a}}, // \xe7\x99\xac
+{0x7670,{0x54,0x3e,0x6a,0x76,0x4b,0x7e,0x56}}, // \xe7\x99\xb0
+{0x7672,{0x54,0x3e,0x5e,0x1a,0x43,0x1e,0x5e}}, // \xe7\x99\xb2
+{0x7676,{0x14,0x0a,0x06,0x02,0x04,0x0a,0x14}}, // \xe7\x99\xb6
+{0x7678,{0x4a,0x55,0x5b,0x39,0x5a,0x55,0x4a}}, // \xe7\x99\xb8
+{0x767a,{0x4a,0x55,0x3b,0x19,0x7a,0x55,0x4a}}, // \xe7\x99\xba
+{0x767b,{0x4a,0x45,0x5b,0x69,0x5a,0x45,0x4a}}, // \xe7\x99\xbb
+{0x767c,{0x0a,0x55,0x6b,0x01,0x5a,0x2d,0x5a}}, // \xe7\x99\xbc
+{0x767d,{0x00,0x7e,0x4a,0x4b,0x4a,0x4a,0x7e}}, // \xe7\x99\xbd
+{0x767e,{0x01,0x7d,0x55,0x57,0x55,0x7d,0x01}}, // \xe7\x99\xbe
+{0x7680,{0x00,0x3e,0x5a,0x5b,0x4a,0x4e,0x60}}, // \xe7\x9a\x80
+{0x7683,{0x40,0x5e,0x3a,0x1b,0x7a,0x5e,0x60}}, // \xe7\x9a\x83
+{0x7684,{0x3e,0x2b,0x3e,0x04,0x0b,0x52,0x7e}}, // \xe7\x9a\x84
+{0x7686,{0x08,0x6f,0x6a,0x70,0x6f,0x6a,0x0a}}, // \xe7\x9a\x86
+{0x7687,{0x50,0x5e,0x5a,0x7b,0x5a,0x5e,0x50}}, // \xe7\x9a\x87
+{0x7688,{0x3e,0x2b,0x3e,0x5f,0x5d,0x25,0x5d}}, // \xe7\x9a\x88
+{0x768b,{0x28,0x1e,0x2a,0x7b,0x2a,0x1e,0x28}}, // \xe7\x9a\x8b
+{0x768e,{0x3e,0x2b,0x3e,0x4a,0x56,0x23,0x56}}, // \xe7\x9a\x8e
+{0x7690,{0x28,0x2e,0x26,0x7f,0x26,0x2e,0x28}}, // \xe7\x9a\x90
+{0x7693,{0x3e,0x2b,0x3e,0x0c,0x6b,0x6f,0x6a}}, // \xe7\x9a\x93
+{0x7696,{0x3e,0x2b,0x3e,0x56,0x32,0x77,0x56}}, // \xe7\x9a\x96
+{0x7699,{0x0a,0x66,0x6f,0x7a,0x67,0x6d,0x05}}, // \xe7\x9a\x99
+{0x769a,{0x3e,0x2b,0x3e,0x5b,0x6a,0x6b,0x5b}}, // \xe7\x9a\x9a
+{0x76ae,{0x40,0x3e,0x4a,0x5a,0x2f,0x5a,0x46}}, // \xe7\x9a\xae
+{0x76b0,{0x7e,0x2f,0x5a,0x04,0x7b,0x5a,0x5e}}, // \xe7\x9a\xb0
+{0x76b4,{0x4a,0x27,0x52,0x37,0x7e,0x2f,0x5a}}, // \xe7\x9a\xb4
+{0x76b7,{0x5a,0x77,0x2a,0x7e,0x5a,0x2f,0x5e}}, // \xe7\x9a\xb7
+{0x76b8,{0x27,0x3d,0x7f,0x27,0x7e,0x2f,0x5a}}, // \xe7\x9a\xb8
+{0x76b9,{0x7e,0x2f,0x5a,0x27,0x3d,0x7f,0x27}}, // \xe7\x9a\xb9
+{0x76ba,{0x24,0x5b,0x36,0x7e,0x5a,0x2f,0x5e}}, // \xe7\x9a\xba
+{0x76bf,{0x40,0x7e,0x42,0x7e,0x42,0x7e,0x40}}, // \xe7\x9a\xbf
+{0x76c2,{0x44,0x75,0x5d,0x7f,0x55,0x75,0x44}}, // \xe7\x9b\x82
+{0x76c3,{0x49,0x79,0x55,0x7f,0x51,0x75,0x49}}, // \xe7\x9b\x83
+{0x76c6,{0x44,0x76,0x5d,0x74,0x5d,0x72,0x44}}, // \xe7\x9b\x86
+{0x76c8,{0x49,0x75,0x5b,0x75,0x5b,0x72,0x4e}}, // \xe7\x9b\x88
+{0x76ca,{0x4a,0x76,0x53,0x72,0x52,0x77,0x4a}}, // \xe7\x9b\x8a
+{0x76cd,{0x54,0x76,0x7e,0x77,0x76,0x6e,0x54}}, // \xe7\x9b\x8d
+{0x76d2,{0x44,0x74,0x5e,0x7d,0x5e,0x74,0x44}}, // \xe7\x9b\x92
+{0x76d6,{0x4a,0x7a,0x5b,0x7e,0x5a,0x7b,0x4a}}, // \xe7\x9b\x96
+{0x76d7,{0x49,0x70,0x54,0x7b,0x56,0x7a,0x46}}, // \xe7\x9b\x97
+{0x76db,{0x48,0x76,0x5e,0x72,0x5a,0x77,0x4a}}, // \xe7\x9b\x9b
+{0x76dc,{0x55,0x40,0x74,0x7b,0x56,0x7a,0x46}}, // \xe7\x9b\x9c
+{0x76de,{0x4a,0x6a,0x76,0x77,0x6a,0x6b,0x54}}, // \xe7\x9b\x9e
+{0x76df,{0x47,0x75,0x57,0x78,0x57,0x75,0x4f}}, // \xe7\x9b\x9f
+{0x76e1,{0x50,0x6a,0x7a,0x6f,0x7a,0x6e,0x54}}, // \xe7\x9b\xa1
+{0x76e3,{0x4f,0x7f,0x59,0x74,0x53,0x7a,0x4a}}, // \xe7\x9b\xa3
+{0x76e4,{0x4c,0x77,0x5f,0x74,0x5b,0x75,0x4b}}, // \xe7\x9b\xa4
+{0x76e5,{0x5e,0x75,0x6a,0x7f,0x6a,0x75,0x5f}}, // \xe7\x9b\xa5
+{0x76e7,{0x40,0x3c,0x44,0x74,0x7f,0x7a,0x4a}}, // \xe7\x9b\xa7
+{0x76ea,{0x55,0x60,0x74,0x6f,0x75,0x6f,0x5c}}, // \xe7\x9b\xaa
+{0x76ee,{0x00,0x7f,0x55,0x55,0x55,0x55,0x7f}}, // \xe7\x9b\xae
+{0x76f2,{0x02,0x7e,0x5a,0x5b,0x5a,0x7a,0x02}}, // \xe7\x9b\xb2
+{0x76f4,{0x7a,0x42,0x7a,0x6f,0x6a,0x7a,0x42}}, // \xe7\x9b\xb4
+{0x76f8,{0x22,0x1a,0x7f,0x0a,0x7f,0x55,0x7f}}, // \xe7\x9b\xb8
+{0x76fb,{0x7f,0x55,0x7f,0x04,0x1e,0x55,0x76}}, // \xe7\x9b\xbb
+{0x76fe,{0x40,0x3e,0x06,0x76,0x7e,0x75,0x05}}, // \xe7\x9b\xbe
+{0x7701,{0x14,0x12,0x78,0x6f,0x68,0x7a,0x04}}, // \xe7\x9c\x81
+{0x7704,{0x7f,0x55,0x7f,0x1c,0x11,0x5f,0x7d}}, // \xe7\x9c\x84
+{0x7707,{0x7f,0x55,0x7f,0x46,0x5f,0x22,0x14}}, // \xe7\x9c\x87
+{0x7708,{0x7f,0x55,0x7f,0x46,0x3f,0x72,0x46}}, // \xe7\x9c\x88
+{0x7709,{0x40,0x3f,0x05,0x7d,0x57,0x55,0x7f}}, // \xe7\x9c\x89
+{0x770b,{0x28,0x1a,0x7e,0x5e,0x5d,0x7d,0x08}}, // \xe7\x9c\x8b
+{0x770c,{0x5e,0x10,0x1f,0x75,0x15,0x1f,0x50}}, // \xe7\x9c\x8c
+{0x771b,{0x7f,0x55,0x7f,0x2a,0x7f,0x2a,0x48}}, // \xe7\x9c\x9b
+{0x771e,{0x58,0x53,0x1e,0x1e,0x1e,0x52,0x50}}, // \xe7\x9c\x9e
+{0x771f,{0x52,0x52,0x1e,0x1f,0x1e,0x52,0x52}}, // \xe7\x9c\x9f
+{0x7720,{0x7f,0x55,0x7f,0x7f,0x55,0x3d,0x57}}, // \xe7\x9c\xa0
+{0x7724,{0x7f,0x55,0x7f,0x3f,0x05,0x7d,0x57}}, // \xe7\x9c\xa4
+{0x7725,{0x0e,0x78,0x7f,0x7a,0x70,0x7f,0x0a}}, // \xe7\x9c\xa5
+{0x7726,{0x7f,0x55,0x7f,0x7f,0x24,0x7f,0x44}}, // \xe7\x9c\xa6
+{0x7729,{0x7f,0x55,0x7f,0x4a,0x6e,0x53,0x6a}}, // \xe7\x9c\xa9
+{0x7737,{0x2a,0x19,0x6c,0x6b,0x6c,0x19,0x2a}}, // \xe7\x9c\xb7
+{0x7738,{0x7f,0x55,0x7f,0x36,0x2d,0x7c,0x2e}}, // \xe7\x9c\xb8
+{0x773a,{0x7f,0x55,0x7f,0x3f,0x00,0x7f,0x4a}}, // \xe7\x9c\xba
+{0x773c,{0x7f,0x55,0x7f,0x7f,0x55,0x35,0x5f}}, // \xe7\x9c\xbc
+{0x7740,{0x4a,0x3a,0x0b,0x7e,0x7a,0x7b,0x0a}}, // \xe7\x9d\x80
+{0x7747,{0x7f,0x55,0x7f,0x5a,0x2b,0x7e,0x6f}}, // \xe7\x9d\x87
+{0x775a,{0x7f,0x55,0x7f,0x3f,0x55,0x7f,0x55}}, // \xe7\x9d\x9a
+{0x775b,{0x7f,0x55,0x7f,0x08,0x7a,0x3f,0x7a}}, // \xe7\x9d\x9b
+{0x7761,{0x7f,0x55,0x7f,0x14,0x5d,0x7f,0x55}}, // \xe7\x9d\xa1
+{0x7763,{0x0c,0x74,0x5f,0x56,0x5b,0x75,0x0b}}, // \xe7\x9d\xa3
+{0x7765,{0x7f,0x55,0x7f,0x2e,0x3f,0x7a,0x2e}}, // \xe7\x9d\xa5
+{0x7766,{0x7f,0x55,0x7f,0x4e,0x67,0x5e,0x54}}, // \xe7\x9d\xa6
+{0x7768,{0x7f,0x55,0x7f,0x5e,0x35,0x72,0x5e}}, // \xe7\x9d\xa8
+{0x776b,{0x7f,0x55,0x7f,0x4a,0x2a,0x7f,0x56}}, // \xe7\x9d\xab
+{0x7779,{0x7f,0x55,0x7f,0x28,0x1a,0x6f,0x6a}}, // \xe7\x9d\xb9
+{0x777e,{0x28,0x2e,0x3a,0x6f,0x3a,0x2e,0x28}}, // \xe7\x9d\xbe
+{0x777f,{0x2c,0x14,0x7c,0x77,0x7e,0x16,0x2c}}, // \xe7\x9d\xbf
+{0x778b,{0x7f,0x55,0x7f,0x58,0x1f,0x1e,0x52}}, // \xe7\x9e\x8b
+{0x778e,{0x7f,0x55,0x7f,0x26,0x6a,0x7f,0x6e}}, // \xe7\x9e\x8e
+{0x7791,{0x7f,0x55,0x7f,0x53,0x1d,0x1d,0x53}}, // \xe7\x9e\x91
+{0x779e,{0x7f,0x55,0x7f,0x7a,0x3f,0x7a,0x7f}}, // \xe7\x9e\x9e
+{0x77a0,{0x7f,0x55,0x7f,0x5e,0x7b,0x5e,0x55}}, // \xe7\x9e\xa0
+{0x77a5,{0x0d,0x76,0x7e,0x75,0x7a,0x75,0x0b}}, // \xe7\x9e\xa5
+{0x77ac,{0x7f,0x55,0x7f,0x37,0x25,0x77,0x2d}}, // \xe7\x9e\xac
+{0x77ad,{0x7f,0x55,0x7f,0x1e,0x6b,0x1e,0x4a}}, // \xe7\x9e\xad
+{0x77b0,{0x7f,0x55,0x7f,0x27,0x7d,0x3f,0x5e}}, // \xe7\x9e\xb0
+{0x77b3,{0x7f,0x55,0x7f,0x4a,0x5e,0x7b,0x5e}}, // \xe7\x9e\xb3
+{0x77b6,{0x7f,0x55,0x7f,0x4e,0x3a,0x3f,0x4e}}, // \xe7\x9e\xb6
+{0x77b9,{0x7f,0x55,0x7f,0x2f,0x55,0x37,0x4d}}, // \xe7\x9e\xb9
+{0x77bb,{0x7f,0x55,0x7f,0x3e,0x6d,0x77,0x2c}}, // \xe7\x9e\xbb
+{0x77bc,{0x7f,0x55,0x7f,0x36,0x5d,0x36,0x5c}}, // \xe7\x9e\xbc
+{0x77bd,{0x1a,0x77,0x6a,0x60,0x76,0x6b,0x16}}, // \xe7\x9e\xbd
+{0x77bf,{0x10,0x0b,0x7f,0x54,0x7f,0x57,0x44}}, // \xe7\x9e\xbf
+{0x77c7,{0x7f,0x55,0x7f,0x5f,0x7a,0x2f,0x5a}}, // \xe7\x9f\x87
+{0x77cd,{0x48,0x47,0x5f,0x2c,0x5f,0x4b,0x48}}, // \xe7\x9f\x8d
+{0x77d7,{0x70,0x7a,0x52,0x1f,0x7e,0x72,0x50}}, // \xe7\x9f\x97
+{0x77da,{0x7f,0x55,0x7f,0x5b,0x7f,0x3b,0x77}}, // \xe7\x9f\x9a
+{0x77db,{0x28,0x29,0x5b,0x7d,0x0b,0x09,0x18}}, // \xe7\x9f\x9b
+{0x77dc,{0x29,0x5d,0x7b,0x12,0x55,0x36,0x14}}, // \xe7\x9f\x9c
+{0x77e2,{0x4c,0x4b,0x2a,0x1e,0x2a,0x4a,0x48}}, // \xe7\x9f\xa2
+{0x77e3,{0x44,0x54,0x5e,0x35,0x54,0x52,0x44}}, // \xe7\x9f\xa3
+{0x77e5,{0x44,0x2b,0x1e,0x2a,0x7e,0x42,0x7e}}, // \xe7\x9f\xa5
+{0x77e7,{0x4b,0x3e,0x2a,0x5d,0x77,0x00,0x7f}}, // \xe7\x9f\xa7
+{0x77e9,{0x44,0x2b,0x1e,0x2a,0x7f,0x55,0x5d}}, // \xe7\x9f\xa9
+{0x77ed,{0x4b,0x3e,0x2a,0x5d,0x75,0x75,0x5d}}, // \xe7\x9f\xad
+{0x77ee,{0x4b,0x3e,0x5a,0x77,0x5f,0x37,0x5a}}, // \xe7\x9f\xae
+{0x77ef,{0x4b,0x3e,0x7a,0x17,0x5b,0x17,0x7a}}, // \xe7\x9f\xaf
+{0x77f3,{0x11,0x09,0x7f,0x49,0x49,0x79,0x01}}, // \xe7\x9f\xb3
+{0x77fc,{0x09,0x37,0x31,0x42,0x42,0x7e,0x42}}, // \xe7\x9f\xbc
+{0x7802,{0x09,0x37,0x31,0x46,0x5f,0x22,0x14}}, // \xe7\xa0\x82
+{0x780c,{0x09,0x37,0x31,0x1e,0x54,0x3f,0x7f}}, // \xe7\xa0\x8c
+{0x7812,{0x09,0x37,0x31,0x7f,0x24,0x7f,0x44}}, // \xe7\xa0\x92
+{0x7814,{0x09,0x37,0x31,0x49,0x3f,0x09,0x7f}}, // \xe7\xa0\x94
+{0x7815,{0x09,0x37,0x31,0x2a,0x77,0x2e,0x28}}, // \xe7\xa0\x95
+{0x7820,{0x09,0x37,0x31,0x40,0x7f,0x55,0x7f}}, // \xe7\xa0\xa0
+{0x7825,{0x09,0x37,0x31,0x7e,0x4a,0x5e,0x69}}, // \xe7\xa0\xa5
+{0x7826,{0x2e,0x18,0x6f,0x6a,0x68,0x6f,0x0a}}, // \xe7\xa0\xa6
+{0x7827,{0x09,0x37,0x31,0x70,0x5f,0x54,0x74}}, // \xe7\xa0\xa7
+{0x7832,{0x09,0x37,0x31,0x04,0x73,0x56,0x5e}}, // \xe7\xa0\xb2
+{0x7834,{0x09,0x37,0x31,0x3e,0x5a,0x2f,0x5e}}, // \xe7\xa0\xb4
+{0x783a,{0x09,0x37,0x31,0x1f,0x65,0x1d,0x75}}, // \xe7\xa0\xba
+{0x783f,{0x09,0x37,0x31,0x1e,0x62,0x5b,0x62}}, // \xe7\xa0\xbf
+{0x7845,{0x09,0x37,0x31,0x48,0x5a,0x7f,0x5a}}, // \xe7\xa1\x85
+{0x785d,{0x09,0x37,0x31,0x7d,0x14,0x57,0x7d}}, // \xe7\xa1\x9d
+{0x786b,{0x09,0x37,0x31,0x4a,0x6e,0x0b,0x6a}}, // \xe7\xa1\xab
+{0x786c,{0x09,0x37,0x31,0x41,0x57,0x3f,0x47}}, // \xe7\xa1\xac
+{0x786f,{0x09,0x37,0x31,0x5f,0x35,0x75,0x5f}}, // \xe7\xa1\xaf
+{0x7872,{0x09,0x37,0x32,0x09,0x64,0x69,0x12}}, // \xe7\xa1\xb2
+{0x7874,{0x09,0x37,0x32,0x7b,0x02,0x7f,0x52}}, // \xe7\xa1\xb4
+{0x787c,{0x09,0x37,0x3f,0x55,0x3f,0x55,0x7f}}, // \xe7\xa1\xbc
+{0x7881,{0x28,0x5a,0x2f,0x6a,0x6f,0x1a,0x28}}, // \xe7\xa2\x81
+{0x7886,{0x55,0x30,0x78,0x56,0x5a,0x77,0x1a}}, // \xe7\xa2\x86
+{0x7887,{0x09,0x37,0x31,0x46,0x32,0x7f,0x56}}, // \xe7\xa2\x87
+{0x788c,{0x09,0x37,0x74,0x26,0x7d,0x27,0x55}}, // \xe7\xa2\x8c
+{0x788d,{0x09,0x37,0x31,0x34,0x57,0x7f,0x14}}, // \xe7\xa2\x8d
+{0x788e,{0x09,0x37,0x32,0x2e,0x73,0x2e,0x32}}, // \xe7\xa2\x8e
+{0x7891,{0x09,0x37,0x31,0x2e,0x3f,0x7a,0x2e}}, // \xe7\xa2\x91
+{0x7893,{0x09,0x37,0x31,0x7f,0x4a,0x7f,0x4a}}, // \xe7\xa2\x93
+{0x7895,{0x09,0x37,0x31,0x5a,0x17,0x7a,0x12}}, // \xe7\xa2\x95
+{0x7897,{0x09,0x37,0x31,0x56,0x2a,0x7b,0x5e}}, // \xe7\xa2\x97
+{0x789a,{0x09,0x37,0x31,0x0a,0x6e,0x6b,0x6e}}, // \xe7\xa2\x9a
+{0x78a3,{0x09,0x37,0x31,0x3f,0x2d,0x4f,0x78}}, // \xe7\xa2\xa3
+{0x78a7,{0x55,0x3f,0x75,0x50,0x5e,0x7b,0x1e}}, // \xe7\xa2\xa7
+{0x78a9,{0x09,0x37,0x31,0x5d,0x17,0x15,0x5d}}, // \xe7\xa2\xa9
+{0x78aa,{0x09,0x37,0x72,0x5f,0x72,0x5f,0x52}}, // \xe7\xa2\xaa
+{0x78af,{0x09,0x37,0x31,0x7a,0x6d,0x5a,0x7d}}, // \xe7\xa2\xaf
+{0x78b5,{0x09,0x37,0x31,0x40,0x3c,0x3f,0x42}}, // \xe7\xa2\xb5
+{0x78ba,{0x09,0x37,0x31,0x16,0x7a,0x7f,0x56}}, // \xe7\xa2\xba
+{0x78bc,{0x09,0x37,0x31,0x5f,0x15,0x5f,0x75}}, // \xe7\xa2\xbc
+{0x78be,{0x09,0x37,0x3f,0x75,0x5d,0x3d,0x57}}, // \xe7\xa2\xbe
+{0x78c1,{0x09,0x37,0x31,0x6a,0x57,0x6a,0x57}}, // \xe7\xa3\x81
+{0x78c5,{0x09,0x37,0x3a,0x4e,0x3b,0x6e,0x1a}}, // \xe7\xa3\x85
+{0x78c6,{0x09,0x37,0x31,0x0c,0x77,0x35,0x7f}}, // \xe7\xa3\x86
+{0x78ca,{0x50,0x35,0x73,0x5f,0x3b,0x7f,0x71}}, // \xe7\xa3\x8a
+{0x78cb,{0x09,0x37,0x31,0x2a,0x5b,0x7e,0x5b}}, // \xe7\xa3\x8b
+{0x78d0,{0x5c,0x37,0x7f,0x54,0x5b,0x75,0x1b}}, // \xe7\xa3\x90
+{0x78d1,{0x09,0x37,0x31,0x5b,0x6a,0x6b,0x5b}}, // \xe7\xa3\x91
+{0x78d4,{0x09,0x37,0x51,0x3a,0x75,0x36,0x5f}}, // \xe7\xa3\x94
+{0x78da,{0x09,0x37,0x31,0x12,0x3e,0x5f,0x7a}}, // \xe7\xa3\x9a
+{0x78e7,{0x09,0x37,0x31,0x4a,0x3a,0x3f,0x4a}}, // \xe7\xa3\xa7
+{0x78e8,{0x40,0x3e,0x4a,0x3e,0x6b,0x7e,0x2a}}, // \xe7\xa3\xa8
+{0x78ec,{0x5a,0x36,0x77,0x52,0x5b,0x75,0x1b}}, // \xe7\xa3\xac
+{0x78ef,{0x09,0x37,0x72,0x3d,0x48,0x3a,0x55}}, // \xe7\xa3\xaf
+{0x78f4,{0x09,0x37,0x31,0x45,0x5b,0x6a,0x5d}}, // \xe7\xa3\xb4
+{0x78fd,{0x09,0x37,0x31,0x5c,0x3e,0x77,0x5e}}, // \xe7\xa3\xbd
+{0x7901,{0x09,0x37,0x31,0x44,0x1f,0x5e,0x53}}, // \xe7\xa4\x81
+{0x7907,{0x09,0x37,0x31,0x5e,0x5f,0x36,0x5e}}, // \xe7\xa4\x87
+{0x790e,{0x09,0x37,0x31,0x4a,0x37,0x7a,0x57}}, // \xe7\xa4\x8e
+{0x7911,{0x09,0x37,0x75,0x5e,0x7b,0x5e,0x75}}, // \xe7\xa4\x91
+{0x7912,{0x09,0x37,0x31,0x2a,0x7b,0x2e,0x5b}}, // \xe7\xa4\x92
+{0x7919,{0x09,0x37,0x57,0x3a,0x5a,0x3d,0x57}}, // \xe7\xa4\x99
+{0x7926,{0x09,0x37,0x31,0x1e,0x4a,0x1f,0x5e}}, // \xe7\xa4\xa6
+{0x792a,{0x09,0x37,0x31,0x1f,0x6d,0x3f,0x6d}}, // \xe7\xa4\xaa
+{0x792b,{0x09,0x37,0x5a,0x35,0x7f,0x3a,0x55}}, // \xe7\xa4\xab
+{0x792c,{0x2a,0x5f,0x3a,0x75,0x7a,0x1f,0x2a}}, // \xe7\xa4\xac
+{0x793a,{0x24,0x15,0x45,0x7d,0x05,0x15,0x24}}, // \xe7\xa4\xba
+{0x793c,{0x12,0x7b,0x16,0x00,0x7f,0x40,0x60}}, // \xe7\xa4\xbc
+{0x793e,{0x12,0x7b,0x16,0x40,0x44,0x7f,0x44}}, // \xe7\xa4\xbe
+{0x7940,{0x35,0x7d,0x15,0x7f,0x49,0x49,0x6f}}, // \xe7\xa5\x80
+{0x7941,{0x12,0x7b,0x16,0x00,0x7f,0x25,0x1b}}, // \xe7\xa5\x81
+{0x7947,{0x12,0x7b,0x16,0x7e,0x4a,0x3e,0x49}}, // \xe7\xa5\x87
+{0x7948,{0x12,0x7b,0x16,0x40,0x3e,0x0a,0x79}}, // \xe7\xa5\x88
+{0x7949,{0x12,0x7b,0x16,0x7c,0x40,0x7f,0x44}}, // \xe7\xa5\x89
+{0x7950,{0x12,0x7b,0x16,0x12,0x7f,0x4a,0x7a}}, // \xe7\xa5\x90
+{0x7953,{0x35,0x7d,0x15,0x22,0x5f,0x22,0x5b}}, // \xe7\xa5\x93
+{0x7955,{0x35,0x7d,0x58,0x3d,0x52,0x48,0x56}}, // \xe7\xa5\x95
+{0x7956,{0x12,0x7b,0x56,0x7f,0x55,0x7f,0x40}}, // \xe7\xa5\x96
+{0x7957,{0x35,0x7d,0x15,0x7e,0x4a,0x5e,0x69}}, // \xe7\xa5\x97
+{0x795a,{0x35,0x7d,0x15,0x04,0x7f,0x2a,0x2a}}, // \xe7\xa5\x9a
+{0x795d,{0x12,0x7b,0x16,0x4f,0x39,0x79,0x4f}}, // \xe7\xa5\x9d
+{0x795e,{0x12,0x7b,0x3e,0x2a,0x7f,0x2a,0x3e}}, // \xe7\xa5\x9e
+{0x795f,{0x4c,0x3b,0x5a,0x7f,0x1a,0x3b,0x4c}}, // \xe7\xa5\x9f
+{0x7960,{0x35,0x7d,0x00,0x35,0x35,0x41,0x7f}}, // \xe7\xa5\xa0
+{0x7962,{0x12,0x7b,0x16,0x24,0x5b,0x7e,0x32}}, // \xe7\xa5\xa2
+{0x7965,{0x12,0x7b,0x16,0x22,0x2b,0x7e,0x2b}}, // \xe7\xa5\xa5
+{0x7968,{0x51,0x37,0x55,0x77,0x15,0x37,0x51}}, // \xe7\xa5\xa8
+{0x796d,{0x54,0x2b,0x55,0x73,0x14,0x2d,0x53}}, // \xe7\xa5\xad
+{0x7977,{0x12,0x7b,0x36,0x5e,0x17,0x7e,0x14}}, // \xe7\xa5\xb7
+{0x797a,{0x35,0x7d,0x52,0x1f,0x1a,0x1f,0x52}}, // \xe7\xa5\xba
+{0x797f,{0x35,0x7d,0x54,0x26,0x7d,0x27,0x55}}, // \xe7\xa5\xbf
+{0x7980,{0x52,0x3e,0x5e,0x7b,0x1e,0x3e,0x52}}, // \xe7\xa6\x80
+{0x7981,{0x5a,0x36,0x5f,0x7a,0x16,0x3f,0x5a}}, // \xe7\xa6\x81
+{0x7984,{0x12,0x7b,0x56,0x25,0x7d,0x27,0x54}}, // \xe7\xa6\x84
+{0x7985,{0x12,0x7b,0x16,0x2d,0x2d,0x7e,0x2d}}, // \xe7\xa6\x85
+{0x798a,{0x35,0x7d,0x56,0x5f,0x36,0x53,0x57}}, // \xe7\xa6\x8a
+{0x798d,{0x12,0x7b,0x16,0x78,0x6f,0x09,0x7f}}, // \xe7\xa6\x8d
+{0x798e,{0x12,0x7b,0x16,0x40,0x3c,0x3f,0x42}}, // \xe7\xa6\x8e
+{0x798f,{0x12,0x7b,0x16,0x71,0x57,0x77,0x71}}, // \xe7\xa6\x8f
+{0x799d,{0x35,0x7d,0x54,0x53,0x2b,0x5f,0x44}}, // \xe7\xa6\x9d
+{0x79a6,{0x4a,0x3d,0x53,0x7e,0x1a,0x3f,0x47}}, // \xe7\xa6\xa6
+{0x79a7,{0x35,0x7d,0x12,0x7e,0x57,0x7e,0x12}}, // \xe7\xa6\xa7
+{0x79aa,{0x35,0x7d,0x23,0x3f,0x7c,0x3f,0x23}}, // \xe7\xa6\xaa
+{0x79ae,{0x35,0x7d,0x15,0x5e,0x6f,0x6e,0x5f}}, // \xe7\xa6\xae
+{0x79b0,{0x12,0x7b,0x16,0x7d,0x57,0x2f,0x7d}}, // \xe7\xa6\xb0
+{0x79b3,{0x35,0x7d,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe7\xa6\xb3
+{0x79b9,{0x72,0x1e,0x56,0x7e,0x35,0x5d,0x70}}, // \xe7\xa6\xb9
+{0x79ba,{0x70,0x1f,0x55,0x7f,0x35,0x5f,0x70}}, // \xe7\xa6\xba
+{0x79bd,{0x72,0x1e,0x7a,0x55,0x3a,0x5e,0x72}}, // \xe7\xa6\xbd
+{0x79be,{0x24,0x26,0x16,0x7e,0x15,0x25,0x24}}, // \xe7\xa6\xbe
+{0x79bf,{0x4a,0x4a,0x37,0x0f,0x77,0x4a,0x6a}}, // \xe7\xa6\xbf
+{0x79c0,{0x4a,0x5a,0x37,0x1f,0x37,0x6a,0x0a}}, // \xe7\xa7\x80
+{0x79c1,{0x24,0x15,0x7f,0x15,0x70,0x4f,0x60}}, // \xe7\xa7\x81
+{0x79c9,{0x42,0x56,0x37,0x7f,0x3f,0x5e,0x4a}}, // \xe7\xa7\x89
+{0x79cb,{0x35,0x7f,0x4c,0x20,0x1f,0x28,0x44}}, // \xe7\xa7\x8b
+{0x79d1,{0x35,0x7f,0x25,0x2a,0x20,0x7f,0x10}}, // \xe7\xa7\x91
+{0x79d2,{0x35,0x7f,0x08,0x46,0x5f,0x22,0x14}}, // \xe7\xa7\x92
+{0x79d5,{0x35,0x7f,0x40,0x7f,0x24,0x7f,0x44}}, // \xe7\xa7\x95
+{0x79d8,{0x35,0x7f,0x58,0x3d,0x52,0x48,0x56}}, // \xe7\xa7\x98
+{0x79df,{0x35,0x7f,0x40,0x7f,0x55,0x7f,0x40}}, // \xe7\xa7\x9f
+{0x79e1,{0x35,0x7f,0x15,0x22,0x5f,0x22,0x5b}}, // \xe7\xa7\xa1
+{0x79e3,{0x35,0x7f,0x42,0x2a,0x7f,0x2a,0x42}}, // \xe7\xa7\xa3
+{0x79e4,{0x35,0x7f,0x15,0x11,0x7f,0x11,0x15}}, // \xe7\xa7\xa4
+{0x79e6,{0x48,0x5a,0x2e,0x7f,0x2e,0x5a,0x48}}, // \xe7\xa7\xa6
+{0x79e7,{0x35,0x7f,0x48,0x4e,0x3b,0x4e,0x48}}, // \xe7\xa7\xa7
+{0x79e9,{0x35,0x7f,0x4c,0x2b,0x1f,0x2a,0x48}}, // \xe7\xa7\xa9
+{0x79ec,{0x35,0x7f,0x15,0x7f,0x55,0x55,0x5d}}, // \xe7\xa7\xac
+{0x79f0,{0x35,0x7f,0x24,0x5b,0x7e,0x0a,0x32}}, // \xe7\xa7\xb0
+{0x79fb,{0x35,0x7f,0x15,0x4a,0x55,0x2b,0x18}}, // \xe7\xa7\xbb
+{0x7a00,{0x35,0x7f,0x48,0x2d,0x7a,0x2d,0x68}}, // \xe7\xa8\x80
+{0x7a08,{0x35,0x7f,0x28,0x2f,0x7d,0x2f,0x28}}, // \xe7\xa8\x88
+{0x7a0b,{0x35,0x7f,0x44,0x57,0x7d,0x57,0x44}}, // \xe7\xa8\x8b
+{0x7a0d,{0x35,0x7f,0x02,0x7d,0x2a,0x7d,0x02}}, // \xe7\xa8\x8d
+{0x7a0e,{0x35,0x7f,0x4e,0x3b,0x0a,0x7b,0x4e}}, // \xe7\xa8\x8e
+{0x7a14,{0x35,0x7f,0x64,0x2a,0x4d,0x5e,0x64}}, // \xe7\xa8\x94
+{0x7a17,{0x35,0x7f,0x2e,0x3a,0x2f,0x7a,0x2e}}, // \xe7\xa8\x97
+{0x7a18,{0x35,0x7f,0x52,0x1f,0x1a,0x1f,0x52}}, // \xe7\xa8\x98
+{0x7a19,{0x35,0x7f,0x15,0x7a,0x42,0x5f,0x5a}}, // \xe7\xa8\x99
+{0x7a1a,{0x35,0x7f,0x15,0x7f,0x4a,0x7f,0x4a}}, // \xe7\xa8\x9a
+{0x7a1c,{0x35,0x7f,0x28,0x5a,0x2f,0x5a,0x48}}, // \xe7\xa8\x9c
+{0x7a1f,{0x52,0x5e,0x3e,0x7b,0x3e,0x5e,0x52}}, // \xe7\xa8\x9f
+{0x7a20,{0x35,0x7f,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe7\xa8\xa0
+{0x7a2e,{0x35,0x7f,0x44,0x5e,0x7e,0x5d,0x44}}, // \xe7\xa8\xae
+{0x7a31,{0x35,0x7f,0x22,0x79,0x3f,0x79,0x22}}, // \xe7\xa8\xb1
+{0x7a32,{0x35,0x7f,0x15,0x72,0x06,0x71,0x75}}, // \xe7\xa8\xb2
+{0x7a37,{0x35,0x7f,0x54,0x53,0x2b,0x5f,0x44}}, // \xe7\xa8\xb7
+{0x7a3b,{0x35,0x7f,0x72,0x69,0x43,0x69,0x7a}}, // \xe7\xa8\xbb
+{0x7a3c,{0x35,0x7f,0x26,0x5a,0x7b,0x2a,0x56}}, // \xe7\xa8\xbc
+{0x7a3d,{0x35,0x7f,0x0a,0x76,0x6f,0x6a,0x6b}}, // \xe7\xa8\xbd
+{0x7a3e,{0x5a,0x4a,0x3e,0x77,0x3e,0x4a,0x5a}}, // \xe7\xa8\xbe
+{0x7a3f,{0x35,0x7f,0x72,0x1e,0x5b,0x1e,0x72}}, // \xe7\xa8\xbf
+{0x7a40,{0x5a,0x2a,0x7f,0x2a,0x5b,0x29,0x5b}}, // \xe7\xa9\x80
+{0x7a42,{0x35,0x7f,0x62,0x2e,0x4f,0x4e,0x62}}, // \xe7\xa9\x82
+{0x7a43,{0x35,0x7f,0x26,0x16,0x6b,0x76,0x26}}, // \xe7\xa9\x83
+{0x7a46,{0x35,0x7f,0x08,0x46,0x5f,0x56,0x28}}, // \xe7\xa9\x86
+{0x7a49,{0x35,0x7f,0x3f,0x2b,0x33,0x7f,0x2b}}, // \xe7\xa9\x89
+{0x7a4d,{0x35,0x7f,0x48,0x3a,0x3f,0x3a,0x48}}, // \xe7\xa9\x8d
+{0x7a4e,{0x57,0x3a,0x7a,0x30,0x5d,0x17,0x5d}}, // \xe7\xa9\x8e
+{0x7a4f,{0x35,0x7f,0x66,0x3a,0x5e,0x59,0x65}}, // \xe7\xa9\x8f
+{0x7a50,{0x35,0x7f,0x15,0x3a,0x2d,0x7f,0x58}}, // \xe7\xa9\x90
+{0x7a57,{0x35,0x7f,0x62,0x2e,0x4f,0x46,0x6a}}, // \xe7\xa9\x97
+{0x7a61,{0x35,0x7f,0x7a,0x76,0x5b,0x76,0x7a}}, // \xe7\xa9\xa1
+{0x7a62,{0x35,0x7f,0x48,0x3e,0x48,0x3f,0x5a}}, // \xe7\xa9\xa2
+{0x7a63,{0x35,0x7f,0x1a,0x7e,0x53,0x3e,0x5a}}, // \xe7\xa9\xa3
+{0x7a69,{0x35,0x7f,0x62,0x35,0x5f,0x5d,0x6a}}, // \xe7\xa9\xa9
+{0x7a6b,{0x35,0x7f,0x42,0x5f,0x2e,0x5f,0x4a}}, // \xe7\xa9\xab
+{0x7a70,{0x35,0x7f,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe7\xa9\xb0
+{0x7a74,{0x46,0x22,0x1a,0x03,0x1a,0x22,0x46}}, // \xe7\xa9\xb4
+{0x7a76,{0x56,0x5a,0x36,0x13,0x7e,0x4a,0x66}}, // \xe7\xa9\xb6
+{0x7a79,{0x06,0x3a,0x36,0x33,0x3e,0x2a,0x66}}, // \xe7\xa9\xb9
+{0x7a7a,{0x46,0x4a,0x56,0x73,0x5e,0x4a,0x46}}, // \xe7\xa9\xba
+{0x7a7d,{0x26,0x3a,0x76,0x33,0x3e,0x7a,0x36}}, // \xe7\xa9\xbd
+{0x7a7f,{0x26,0x6a,0x36,0x33,0x7e,0x2a,0x26}}, // \xe7\xa9\xbf
+{0x7a81,{0x56,0x5a,0x56,0x33,0x5e,0x5a,0x56}}, // \xe7\xaa\x81
+{0x7a83,{0x16,0x7a,0x56,0x03,0x5e,0x3a,0x76}}, // \xe7\xaa\x83
+{0x7a84,{0x26,0x1a,0x16,0x73,0x3e,0x2a,0x26}}, // \xe7\xaa\x84
+{0x7a88,{0x46,0x6a,0x56,0x03,0x56,0x3a,0x76}}, // \xe7\xaa\x88
+{0x7a92,{0x46,0x5a,0x56,0x7b,0x5e,0x4a,0x56}}, // \xe7\xaa\x92
+{0x7a93,{0x66,0x2a,0x56,0x53,0x6e,0x0a,0x66}}, // \xe7\xaa\x93
+{0x7a95,{0x56,0x5a,0x3e,0x07,0x7a,0x4e,0x56}}, // \xe7\xaa\x95
+{0x7a96,{0x26,0x32,0x6e,0x7f,0x6a,0x2e,0x26}}, // \xe7\xaa\x96
+{0x7a97,{0x06,0x7a,0x6e,0x5f,0x7a,0x7e,0x06}}, // \xe7\xaa\x97
+{0x7a98,{0x56,0x52,0x3e,0x7f,0x5a,0x5e,0x76}}, // \xe7\xaa\x98
+{0x7a9f,{0x46,0x3a,0x7e,0x5f,0x7a,0x5e,0x66}}, // \xe7\xaa\x9f
+{0x7aa9,{0x66,0x3a,0x6e,0x6f,0x7a,0x3e,0x66}}, // \xe7\xaa\xa9
+{0x7aaa,{0x56,0x0a,0x56,0x53,0x7e,0x5a,0x56}}, // \xe7\xaa\xaa
+{0x7aae,{0x56,0x5a,0x2e,0x7f,0x02,0x5e,0x76}}, // \xe7\xaa\xae
+{0x7aaf,{0x66,0x2a,0x6e,0x3b,0x6e,0x2a,0x66}}, // \xe7\xaa\xaf
+{0x7ab0,{0x26,0x2a,0x7e,0x57,0x7a,0x56,0x66}}, // \xe7\xaa\xb0
+{0x7ab6,{0x56,0x5a,0x7e,0x57,0x3e,0x5a,0x56}}, // \xe7\xaa\xb6
+{0x7aba,{0x56,0x3a,0x56,0x43,0x3e,0x7a,0x5e}}, // \xe7\xaa\xba
+{0x7abf,{0x7e,0x3a,0x56,0x57,0x6a,0x5e,0x56}}, // \xe7\xaa\xbf
+{0x7ac3,{0x06,0x3a,0x36,0x3b,0x7e,0x7a,0x46}}, // \xe7\xab\x83
+{0x7ac4,{0x46,0x7a,0x16,0x73,0x56,0x3e,0x46}}, // \xe7\xab\x84
+{0x7ac5,{0x56,0x3a,0x7e,0x07,0x52,0x2e,0x5e}}, // \xe7\xab\x85
+{0x7ac7,{0x46,0x5a,0x3e,0x3f,0x3a,0x5e,0x46}}, // \xe7\xab\x87
+{0x7ac8,{0x06,0x3a,0x76,0x4b,0x7e,0x7a,0x46}}, // \xe7\xab\x88
+{0x7aca,{0x56,0x3a,0x7e,0x27,0x72,0x3e,0x76}}, // \xe7\xab\x8a
+{0x7acb,{0x42,0x46,0x7a,0x43,0x72,0x4e,0x42}}, // \xe7\xab\x8b
+{0x7acd,{0x2e,0x33,0x2e,0x04,0x04,0x7f,0x04}}, // \xe7\xab\x8d
+{0x7acf,{0x2e,0x33,0x2e,0x08,0x0a,0x7e,0x09}}, // \xe7\xab\x8f
+{0x7ad2,{0x08,0x7a,0x5e,0x7b,0x0e,0x7a,0x08}}, // \xe7\xab\x92
+{0x7ad3,{0x2e,0x33,0x2e,0x2a,0x7e,0x55,0x55}}, // \xe7\xab\x93
+{0x7ad5,{0x2e,0x33,0x2e,0x44,0x3b,0x48,0x7b}}, // \xe7\xab\x95
+{0x7ad9,{0x2e,0x33,0x2e,0x70,0x5f,0x54,0x74}}, // \xe7\xab\x99
+{0x7ada,{0x2e,0x33,0x2e,0x06,0x4a,0x7b,0x0e}}, // \xe7\xab\x9a
+{0x7adc,{0x08,0x3a,0x2e,0x3b,0x6e,0x7a,0x48}}, // \xe7\xab\x9c
+{0x7add,{0x2e,0x33,0x2e,0x42,0x7e,0x63,0x5e}}, // \xe7\xab\x9d
+{0x7adf,{0x48,0x4a,0x3e,0x3b,0x7e,0x4a,0x68}}, // \xe7\xab\x9f
+{0x7ae0,{0x28,0x3a,0x2e,0x6b,0x2e,0x3a,0x28}}, // \xe7\xab\xa0
+{0x7ae1,{0x2e,0x33,0x2e,0x7d,0x57,0x55,0x7d}}, // \xe7\xab\xa1
+{0x7ae2,{0x2e,0x33,0x2e,0x56,0x5d,0x34,0x56}}, // \xe7\xab\xa2
+{0x7ae3,{0x2e,0x33,0x2e,0x57,0x32,0x5e,0x4b}}, // \xe7\xab\xa3
+{0x7ae5,{0x48,0x5a,0x5e,0x7b,0x5e,0x5a,0x48}}, // \xe7\xab\xa5
+{0x7ae6,{0x2e,0x33,0x4e,0x2e,0x7f,0x2a,0x4e}}, // \xe7\xab\xa6
+{0x7aea,{0x47,0x57,0x75,0x58,0x7b,0x55,0x4b}}, // \xe7\xab\xaa
+{0x7aed,{0x2e,0x33,0x1e,0x37,0x2d,0x4f,0x78}}, // \xe7\xab\xad
+{0x7aef,{0x2e,0x33,0x6f,0x3a,0x6b,0x2a,0x6b}}, // \xe7\xab\xaf
+{0x7af0,{0x2e,0x33,0x1e,0x4f,0x5d,0x7d,0x5d}}, // \xe7\xab\xb0
+{0x7af6,{0x4a,0x3e,0x6b,0x5e,0x3e,0x6b,0x5e}}, // \xe7\xab\xb6
+{0x7af8,{0x4a,0x3e,0x7b,0x5e,0x3e,0x7b,0x5e}}, // \xe7\xab\xb8
+{0x7af9,{0x04,0x03,0x7e,0x04,0x43,0x7e,0x02}}, // \xe7\xab\xb9
+{0x7afa,{0x44,0x53,0x56,0x54,0x53,0x56,0x42}}, // \xe7\xab\xba
+{0x7aff,{0x24,0x2b,0x2e,0x7c,0x2b,0x2e,0x22}}, // \xe7\xab\xbf
+{0x7b02,{0x44,0x53,0x3e,0x54,0x13,0x76,0x42}}, // \xe7\xac\x82
+{0x7b04,{0x24,0x6b,0x3e,0x2c,0x7b,0x2e,0x22}}, // \xe7\xac\x84
+{0x7b06,{0x04,0x3f,0x56,0x5c,0x57,0x5e,0x62}}, // \xe7\xac\x86
+{0x7b08,{0x44,0x4b,0x2e,0x5c,0x2b,0x5e,0x42}}, // \xe7\xac\x88
+{0x7b0a,{0x44,0x3b,0x0e,0x7c,0x07,0x36,0x42}}, // \xe7\xac\x8a
+{0x7b0b,{0x54,0x53,0x36,0x1c,0x17,0x1e,0x0a}}, // \xe7\xac\x8b
+{0x7b0f,{0x24,0x5b,0x3e,0x4c,0x3b,0x4e,0x7a}}, // \xe7\xac\x8f
+{0x7b11,{0x54,0x53,0x56,0x3c,0x53,0x56,0x52}}, // \xe7\xac\x91
+{0x7b18,{0x04,0x63,0x66,0x7c,0x6b,0x6e,0x02}}, // \xe7\xac\x98
+{0x7b19,{0x54,0x4b,0x5e,0x7c,0x5b,0x5e,0x4a}}, // \xe7\xac\x99
+{0x7b1b,{0x04,0x73,0x56,0x7c,0x53,0x76,0x02}}, // \xe7\xac\x9b
+{0x7b1e,{0x14,0x73,0x5e,0x54,0x53,0x76,0x12}}, // \xe7\xac\x9e
+{0x7b20,{0x44,0x53,0x76,0x5c,0x73,0x56,0x42}}, // \xe7\xac\xa0
+{0x7b25,{0x04,0x6b,0x6e,0x6c,0x0b,0x4e,0x7a}}, // \xe7\xac\xa5
+{0x7b26,{0x14,0x7b,0x06,0x2c,0x4b,0x7e,0x0a}}, // \xe7\xac\xa6
+{0x7b28,{0x2c,0x1b,0x2e,0x7c,0x2b,0x1e,0x2a}}, // \xe7\xac\xa8
+{0x7b2c,{0x44,0x5b,0x2e,0x7c,0x2b,0x2e,0x62}}, // \xe7\xac\xac
+{0x7b33,{0x54,0x3b,0x56,0x74,0x73,0x56,0x72}}, // \xe7\xac\xb3
+{0x7b35,{0x54,0x03,0x3e,0x4c,0x4b,0x5e,0x62}}, // \xe7\xac\xb5
+{0x7b36,{0x44,0x53,0x5e,0x34,0x53,0x56,0x42}}, // \xe7\xac\xb6
+{0x7b39,{0x14,0x13,0x7e,0x54,0x7b,0x7e,0x52}}, // \xe7\xac\xb9
+{0x7b45,{0x54,0x5b,0x36,0x1c,0x77,0x56,0x52}}, // \xe7\xad\x85
+{0x7b46,{0x24,0x2b,0x2e,0x7c,0x2b,0x3e,0x2a}}, // \xe7\xad\x86
+{0x7b48,{0x24,0x2b,0x6e,0x7c,0x6b,0x26,0x22}}, // \xe7\xad\x88
+{0x7b49,{0x14,0x13,0x36,0x5c,0x7b,0x16,0x12}}, // \xe7\xad\x89
+{0x7b4b,{0x44,0x3b,0x7e,0x54,0x3b,0x56,0x72}}, // \xe7\xad\x8b
+{0x7b4c,{0x54,0x57,0x5e,0x74,0x5b,0x56,0x52}}, // \xe7\xad\x8c
+{0x7b4d,{0x14,0x0b,0x7e,0x54,0x7f,0x06,0x7e}}, // \xe7\xad\x8d
+{0x7b4f,{0x14,0x7b,0x06,0x54,0x53,0x3e,0x4a}}, // \xe7\xad\x8f
+{0x7b50,{0x04,0x7b,0x4e,0x5c,0x7b,0x5e,0x4a}}, // \xe7\xad\x90
+{0x7b51,{0x54,0x73,0x56,0x44,0x33,0x76,0x42}}, // \xe7\xad\x91
+{0x7b52,{0x7c,0x0b,0x6e,0x6c,0x6b,0x0e,0x7a}}, // \xe7\xad\x92
+{0x7b54,{0x14,0x13,0x6e,0x6c,0x6b,0x16,0x12}}, // \xe7\xad\x94
+{0x7b56,{0x5c,0x4b,0x2e,0x7c,0x2b,0x4e,0x5a}}, // \xe7\xad\x96
+{0x7b5d,{0x14,0x1b,0x56,0x74,0x3f,0x36,0x12}}, // \xe7\xad\x9d
+{0x7b65,{0x04,0x63,0x6e,0x7c,0x6f,0x66,0x02}}, // \xe7\xad\xa5
+{0x7b67,{0x44,0x43,0x3e,0x3c,0x7b,0x46,0x62}}, // \xe7\xad\xa7
+{0x7b6c,{0x44,0x3b,0x56,0x34,0x47,0x3e,0x56}}, // \xe7\xad\xac
+{0x7b6e,{0x54,0x4b,0x56,0x7c,0x57,0x4e,0x52}}, // \xe7\xad\xae
+{0x7b70,{0x14,0x7b,0x06,0x14,0x7b,0x2e,0x2a}}, // \xe7\xad\xb0
+{0x7b71,{0x14,0x7b,0x3e,0x04,0x53,0x2e,0x5a}}, // \xe7\xad\xb1
+{0x7b74,{0x54,0x4b,0x56,0x3c,0x57,0x4e,0x52}}, // \xe7\xad\xb4
+{0x7b75,{0x54,0x2b,0x46,0x74,0x63,0x7e,0x6a}}, // \xe7\xad\xb5
+{0x7b7a,{0x04,0x7b,0x4e,0x5c,0x7b,0x5e,0x6a}}, // \xe7\xad\xba
+{0x7b86,{0x44,0x7f,0x56,0x0c,0x77,0x5e,0x52}}, // \xe7\xae\x86
+{0x7b87,{0x7c,0x4b,0x6e,0x5c,0x6b,0x4e,0x7a}}, // \xe7\xae\x87
+{0x7b8b,{0x14,0x53,0x56,0x3c,0x3b,0x56,0x6a}}, // \xe7\xae\x8b
+{0x7b8d,{0x54,0x7b,0x06,0x7c,0x5f,0x7e,0x5a}}, // \xe7\xae\x8d
+{0x7b8f,{0x14,0x1b,0x56,0x7c,0x37,0x3a,0x12}}, // \xe7\xae\x8f
+{0x7b92,{0x1c,0x6b,0x2e,0x7c,0x2f,0x6e,0x1a}}, // \xe7\xae\x92
+{0x7b94,{0x54,0x03,0x76,0x54,0x5b,0x56,0x72}}, // \xe7\xae\x94
+{0x7b95,{0x24,0x6b,0x3e,0x2c,0x3b,0x6e,0x22}}, // \xe7\xae\x95
+{0x7b97,{0x24,0x7b,0x2e,0x2c,0x6b,0x3e,0x22}}, // \xe7\xae\x97
+{0x7b98,{0x7c,0x6b,0x5e,0x7c,0x5b,0x6e,0x7a}}, // \xe7\xae\x98
+{0x7b99,{0x44,0x3b,0x7e,0x04,0x7b,0x2e,0x5a}}, // \xe7\xae\x99
+{0x7b9a,{0x24,0x13,0x6e,0x74,0x1b,0x46,0x7a}}, // \xe7\xae\x9a
+{0x7b9c,{0x4c,0x57,0x6e,0x64,0x7f,0x56,0x4e}}, // \xe7\xae\x9c
+{0x7b9d,{0x54,0x7b,0x16,0x7c,0x53,0x7e,0x12}}, // \xe7\xae\x9d
+{0x7b9f,{0x44,0x73,0x5e,0x0c,0x7f,0x5e,0x52}}, // \xe7\xae\x9f
+{0x7ba1,{0x1c,0x0b,0x7e,0x7c,0x6b,0x6e,0x1a}}, // \xe7\xae\xa1
+{0x7baa,{0x24,0x3b,0x36,0x7c,0x33,0x3e,0x22}}, // \xe7\xae\xaa
+{0x7bad,{0x0c,0x7b,0x2e,0x7c,0x0b,0x7e,0x0a}}, // \xe7\xae\xad
+{0x7bb1,{0x54,0x33,0x7e,0x34,0x7b,0x56,0x7a}}, // \xe7\xae\xb1
+{0x7bb4,{0x44,0x3b,0x6e,0x6c,0x4b,0x3e,0x5a}}, // \xe7\xae\xb4
+{0x7bb8,{0x54,0x53,0x36,0x7c,0x5b,0x76,0x12}}, // \xe7\xae\xb8
+{0x7bc0,{0x7c,0x5b,0x5e,0x24,0x7b,0x0e,0x3a}}, // \xe7\xaf\x80
+{0x7bc1,{0x44,0x53,0x5e,0x74,0x5f,0x52,0x42}}, // \xe7\xaf\x81
+{0x7bc4,{0x2c,0x3b,0x7e,0x2c,0x7b,0x4e,0x5a}}, // \xe7\xaf\x84
+{0x7bc6,{0x54,0x53,0x3e,0x54,0x7f,0x36,0x52}}, // \xe7\xaf\x86
+{0x7bc7,{0x4c,0x3b,0x1e,0x7c,0x7b,0x2e,0x6a}}, // \xe7\xaf\x87
+{0x7bc9,{0x54,0x5b,0x36,0x64,0x3b,0x5e,0x52}}, // \xe7\xaf\x89
+{0x7bcb,{0x04,0x7b,0x5e,0x6c,0x5b,0x6e,0x4a}}, // \xe7\xaf\x8b
+{0x7bcc,{0x14,0x7b,0x06,0x54,0x37,0x5e,0x52}}, // \xe7\xaf\x8c
+{0x7bcf,{0x14,0x7b,0x56,0x7c,0x5b,0x36,0x52}}, // \xe7\xaf\x8f
+{0x7bdd,{0x2c,0x7b,0x3e,0x3c,0x3b,0x7e,0x2a}}, // \xe7\xaf\x9d
+{0x7be0,{0x14,0x7b,0x56,0x34,0x7b,0x36,0x52}}, // \xe7\xaf\xa0
+{0x7be4,{0x44,0x1b,0x56,0x1c,0x57,0x16,0x72}}, // \xe7\xaf\xa4
+{0x7be5,{0x54,0x5f,0x36,0x7c,0x37,0x5e,0x56}}, // \xe7\xaf\xa5
+{0x7be6,{0x44,0x7f,0x5e,0x1c,0x7f,0x5e,0x52}}, // \xe7\xaf\xa6
+{0x7be9,{0x7c,0x6b,0x6e,0x34,0x17,0x7e,0x36}}, // \xe7\xaf\xa9
+{0x7bed,{0x14,0x13,0x3e,0x34,0x7b,0x56,0x52}}, // \xe7\xaf\xad
+{0x7bf3,{0x14,0x33,0x3e,0x7c,0x3f,0x32,0x12}}, // \xe7\xaf\xb3
+{0x7bf6,{0x54,0x1b,0x52,0x1e,0x57,0x16,0x72}}, // \xe7\xaf\xb6
+{0x7bf7,{0x54,0x33,0x46,0x54,0x5b,0x7e,0x52}}, // \xe7\xaf\xb7
+{0x7c00,{0x4c,0x7b,0x3e,0x3c,0x3f,0x7a,0x4a}}, // \xe7\xb0\x80
+{0x7c07,{0x4c,0x3b,0x6e,0x04,0x5b,0x36,0x52}}, // \xe7\xb0\x87
+{0x7c0d,{0x54,0x5b,0x7e,0x5c,0x3f,0x5a,0x52}}, // \xe7\xb0\x8d
+{0x7c11,{0x2c,0x2b,0x7e,0x54,0x3f,0x4a,0x4a}}, // \xe7\xb0\x91
+{0x7c12,{0x54,0x33,0x5e,0x7c,0x3b,0x56,0x32}}, // \xe7\xb0\x92
+{0x7c13,{0x44,0x3b,0x6e,0x7c,0x03,0x56,0x2a}}, // \xe7\xb0\x93
+{0x7c14,{0x2c,0x2b,0x7e,0x5c,0x3f,0x4a,0x4a}}, // \xe7\xb0\x94
+{0x7c17,{0x54,0x5b,0x36,0x74,0x3b,0x56,0x5e}}, // \xe7\xb0\x97
+{0x7c1f,{0x24,0x2f,0x3e,0x6c,0x3f,0x2e,0x22}}, // \xe7\xb0\x9f
+{0x7c21,{0x7c,0x1b,0x7e,0x64,0x7b,0x1e,0x7a}}, // \xe7\xb0\xa1
+{0x7c23,{0x54,0x7f,0x36,0x3c,0x37,0x7e,0x52}}, // \xe7\xb0\xa3
+{0x7c27,{0x4c,0x7b,0x2e,0x3c,0x2b,0x7e,0x4a}}, // \xe7\xb0\xa7
+{0x7c2a,{0x14,0x6b,0x7e,0x74,0x6f,0x7e,0x12}}, // \xe7\xb0\xaa
+{0x7c2b,{0x44,0x3b,0x6e,0x04,0x6f,0x2e,0x7a}}, // \xe7\xb0\xab
+{0x7c37,{0x44,0x3f,0x2e,0x74,0x77,0x7e,0x2a}}, // \xe7\xb0\xb7
+{0x7c38,{0x54,0x1b,0x56,0x3c,0x5b,0x2e,0x5a}}, // \xe7\xb0\xb8
+{0x7c3d,{0x4c,0x3b,0x36,0x44,0x37,0x3a,0x4a}}, // \xe7\xb0\xbd
+{0x7c3e,{0x44,0x3b,0x56,0x3c,0x7f,0x36,0x5e}}, // \xe7\xb0\xbe
+{0x7c3f,{0x54,0x03,0x16,0x3c,0x5b,0x7e,0x12}}, // \xe7\xb0\xbf
+{0x7c40,{0x54,0x7b,0x06,0x1c,0x77,0x6a,0x1a}}, // \xe7\xb1\x80
+{0x7c43,{0x44,0x5b,0x7e,0x64,0x6b,0x4e,0x4a}}, // \xe7\xb1\x83
+{0x7c4c,{0x14,0x77,0x7e,0x1c,0x5f,0x76,0x12}}, // \xe7\xb1\x8c
+{0x7c4d,{0x54,0x33,0x7e,0x3c,0x6b,0x7e,0x2a}}, // \xe7\xb1\x8d
+{0x7c4f,{0x4c,0x3b,0x6e,0x54,0x3f,0x3e,0x52}}, // \xe7\xb1\x8f
+{0x7c50,{0x7c,0x2b,0x7e,0x34,0x7b,0x2e,0x52}}, // \xe7\xb1\x90
+{0x7c54,{0x54,0x7b,0x5e,0x3c,0x53,0x2e,0x5a}}, // \xe7\xb1\x94
+{0x7c56,{0x54,0x7b,0x7e,0x34,0x5b,0x36,0x52}}, // \xe7\xb1\x96
+{0x7c58,{0x7c,0x2b,0x7e,0x2c,0x7b,0x3e,0x5a}}, // \xe7\xb1\x98
+{0x7c5f,{0x44,0x2f,0x7e,0x2c,0x5b,0x1e,0x5a}}, // \xe7\xb1\x9f
+{0x7c60,{0x14,0x7f,0x36,0x7c,0x13,0x6e,0x5a}}, // \xe7\xb1\xa0
+{0x7c64,{0x54,0x7b,0x76,0x3c,0x5b,0x36,0x52}}, // \xe7\xb1\xa4
+{0x7c65,{0x14,0x73,0x3e,0x74,0x3b,0x76,0x12}}, // \xe7\xb1\xa5
+{0x7c6c,{0x74,0x5f,0x76,0x2c,0x7f,0x7e,0x52}}, // \xe7\xb1\xac
+{0x7c73,{0x24,0x25,0x14,0x7f,0x14,0x25,0x24}}, // \xe7\xb1\xb3
+{0x7c75,{0x35,0x7e,0x15,0x04,0x04,0x7f,0x04}}, // \xe7\xb1\xb5
+{0x7c7e,{0x35,0x7e,0x15,0x49,0x3f,0x51,0x7f}}, // \xe7\xb1\xbe
+{0x7c81,{0x35,0x7e,0x15,0x08,0x0a,0x7e,0x09}}, // \xe7\xb2\x81
+{0x7c82,{0x48,0x5a,0x35,0x7d,0x35,0x5b,0x48}}, // \xe7\xb2\x82
+{0x7c83,{0x35,0x7e,0x15,0x7f,0x24,0x7f,0x44}}, // \xe7\xb2\x83
+{0x7c89,{0x35,0x7e,0x45,0x3b,0x48,0x7b,0x04}}, // \xe7\xb2\x89
+{0x7c8b,{0x35,0x7e,0x2b,0x26,0x73,0x2e,0x28}}, // \xe7\xb2\x8b
+{0x7c8d,{0x35,0x7e,0x15,0x2a,0x2a,0x7e,0x55}}, // \xe7\xb2\x8d
+{0x7c90,{0x35,0x7e,0x15,0x40,0x3d,0x15,0x1d}}, // \xe7\xb2\x90
+{0x7c92,{0x35,0x7e,0x43,0x7e,0x63,0x5e,0x42}}, // \xe7\xb2\x92
+{0x7c95,{0x35,0x7e,0x15,0x7e,0x4b,0x4a,0x7e}}, // \xe7\xb2\x95
+{0x7c97,{0x35,0x7e,0x41,0x7f,0x55,0x7f,0x40}}, // \xe7\xb2\x97
+{0x7c98,{0x35,0x7e,0x15,0x70,0x5f,0x54,0x74}}, // \xe7\xb2\x98
+{0x7c9b,{0x48,0x3a,0x2a,0x7f,0x2a,0x5e,0x74}}, // \xe7\xb2\x9b
+{0x7c9f,{0x51,0x5b,0x33,0x7f,0x33,0x5b,0x51}}, // \xe7\xb2\x9f
+{0x7ca1,{0x35,0x7e,0x01,0x7f,0x35,0x35,0x7f}}, // \xe7\xb2\xa1
+{0x7ca2,{0x59,0x50,0x34,0x7b,0x36,0x5a,0x56}}, // \xe7\xb2\xa2
+{0x7ca4,{0x10,0x1e,0x1a,0x5f,0x56,0x7e,0x10}}, // \xe7\xb2\xa4
+{0x7ca5,{0x5d,0x77,0x2a,0x7f,0x2a,0x5d,0x77}}, // \xe7\xb2\xa5
+{0x7ca7,{0x35,0x7e,0x55,0x3e,0x4a,0x7f,0x4a}}, // \xe7\xb2\xa7
+{0x7ca8,{0x35,0x7e,0x01,0x7d,0x57,0x55,0x7d}}, // \xe7\xb2\xa8
+{0x7cab,{0x35,0x7e,0x7d,0x07,0x7d,0x05,0x7d}}, // \xe7\xb2\xab
+{0x7cad,{0x35,0x7e,0x15,0x00,0x76,0x55,0x76}}, // \xe7\xb2\xad
+{0x7cae,{0x35,0x7e,0x15,0x7e,0x5a,0x3b,0x5e}}, // \xe7\xb2\xae
+{0x7cb1,{0x55,0x50,0x39,0x77,0x39,0x5f,0x54}}, // \xe7\xb2\xb1
+{0x7cb2,{0x54,0x5c,0x3b,0x76,0x3b,0x55,0x5b}}, // \xe7\xb2\xb2
+{0x7cb3,{0x35,0x7e,0x41,0x57,0x3f,0x47,0x41}}, // \xe7\xb2\xb3
+{0x7cb9,{0x35,0x7e,0x33,0x2e,0x73,0x2e,0x32}}, // \xe7\xb2\xb9
+{0x7cbd,{0x35,0x7e,0x56,0x12,0x77,0x16,0x56}}, // \xe7\xb2\xbd
+{0x7cbe,{0x35,0x7e,0x09,0x7a,0x2f,0x7a,0x08}}, // \xe7\xb2\xbe
+{0x7cc0,{0x35,0x7e,0x12,0x7b,0x02,0x7f,0x52}}, // \xe7\xb3\x80
+{0x7cc2,{0x35,0x7e,0x72,0x5f,0x72,0x5f,0x52}}, // \xe7\xb3\x82
+{0x7cc5,{0x35,0x7e,0x5a,0x37,0x7f,0x33,0x56}}, // \xe7\xb3\x85
+{0x7cca,{0x35,0x7e,0x3a,0x2f,0x7a,0x3f,0x7f}}, // \xe7\xb3\x8a
+{0x7cce,{0x35,0x7e,0x15,0x4f,0x5d,0x7d,0x5d}}, // \xe7\xb3\x8e
+{0x7cd2,{0x35,0x7e,0x1a,0x6f,0x2a,0x6f,0x6a}}, // \xe7\xb3\x92
+{0x7cd6,{0x35,0x7e,0x3e,0x12,0x77,0x5e,0x6a}}, // \xe7\xb3\x96
+{0x7cd8,{0x35,0x7e,0x26,0x5a,0x7b,0x2a,0x56}}, // \xe7\xb3\x98
+{0x7cdc,{0x40,0x3e,0x56,0x3e,0x77,0x3e,0x56}}, // \xe7\xb3\x9c
+{0x7cde,{0x2a,0x67,0x3a,0x3f,0x3a,0x67,0x2a}}, // \xe7\xb3\x9e
+{0x7cdf,{0x35,0x7e,0x1a,0x7f,0x5a,0x7f,0x1a}}, // \xe7\xb3\x9f
+{0x7ce0,{0x35,0x7e,0x3e,0x52,0x7f,0x2e,0x56}}, // \xe7\xb3\xa0
+{0x7ce2,{0x35,0x7e,0x52,0x5f,0x36,0x5f,0x52}}, // \xe7\xb3\xa2
+{0x7ce7,{0x35,0x7e,0x45,0x5f,0x7d,0x5f,0x44}}, // \xe7\xb3\xa7
+{0x7cef,{0x35,0x7e,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe7\xb3\xaf
+{0x7cf2,{0x35,0x7e,0x25,0x1f,0x6d,0x3f,0x6d}}, // \xe7\xb3\xb2
+{0x7cf4,{0x34,0x7b,0x14,0x21,0x7b,0x71,0x5b}}, // \xe7\xb3\xb4
+{0x7cf6,{0x37,0x7e,0x17,0x21,0x7b,0x71,0x5b}}, // \xe7\xb3\xb6
+{0x7cf8,{0x50,0x12,0x1a,0x75,0x14,0x0a,0x50}}, // \xe7\xb3\xb8
+{0x7cfa,{0x2a,0x75,0x28,0x00,0x7f,0x40,0x60}}, // \xe7\xb3\xba
+{0x7cfb,{0x50,0x15,0x15,0x7b,0x11,0x09,0x50}}, // \xe7\xb3\xbb
+{0x7cfe,{0x2a,0x75,0x20,0x3e,0x20,0x7f,0x10}}, // \xe7\xb3\xbe
+{0x7d00,{0x2a,0x75,0x28,0x79,0x49,0x49,0x6f}}, // \xe7\xb4\x80
+{0x7d02,{0x2a,0x75,0x22,0x0a,0x52,0x7f,0x02}}, // \xe7\xb4\x82
+{0x7d04,{0x2a,0x75,0x28,0x04,0x0b,0x52,0x7e}}, // \xe7\xb4\x84
+{0x7d05,{0x2a,0x75,0x28,0x42,0x42,0x7e,0x42}}, // \xe7\xb4\x85
+{0x7d06,{0x2a,0x75,0x28,0x09,0x49,0x7f,0x09}}, // \xe7\xb4\x86
+{0x7d0a,{0x52,0x12,0x36,0x6b,0x36,0x12,0x52}}, // \xe7\xb4\x8a
+{0x7d0b,{0x2a,0x75,0x42,0x2e,0x13,0x2e,0x42}}, // \xe7\xb4\x8b
+{0x7d0d,{0x2a,0x75,0x7e,0x12,0x0f,0x52,0x7e}}, // \xe7\xb4\x8d
+{0x7d10,{0x2a,0x75,0x49,0x7f,0x49,0x7f,0x48}}, // \xe7\xb4\x90
+{0x7d14,{0x2a,0x75,0x1a,0x12,0x7f,0x52,0x5a}}, // \xe7\xb4\x94
+{0x7d15,{0x2a,0x75,0x40,0x7f,0x24,0x7f,0x44}}, // \xe7\xb4\x95
+{0x7d17,{0x2a,0x75,0x28,0x46,0x5f,0x22,0x14}}, // \xe7\xb4\x97
+{0x7d18,{0x2a,0x75,0x22,0x5a,0x67,0x52,0x6a}}, // \xe7\xb4\x98
+{0x7d19,{0x2a,0x75,0x28,0x7e,0x4a,0x3e,0x49}}, // \xe7\xb4\x99
+{0x7d1a,{0x2a,0x75,0x21,0x5f,0x51,0x27,0x5c}}, // \xe7\xb4\x9a
+{0x7d1b,{0x2a,0x75,0x44,0x3b,0x48,0x7b,0x04}}, // \xe7\xb4\x9b
+{0x7d1c,{0x2a,0x75,0x28,0x44,0x65,0x5d,0x65}}, // \xe7\xb4\x9c
+{0x7d20,{0x54,0x16,0x1e,0x77,0x16,0x0e,0x54}}, // \xe7\xb4\xa0
+{0x7d21,{0x2a,0x75,0x28,0x42,0x3e,0x4b,0x7a}}, // \xe7\xb4\xa1
+{0x7d22,{0x4c,0x16,0x1e,0x77,0x0e,0x16,0x4c}}, // \xe7\xb4\xa2
+{0x7d2b,{0x4e,0x18,0x1f,0x7a,0x10,0x0f,0x5a}}, // \xe7\xb4\xab
+{0x7d2c,{0x2a,0x75,0x7e,0x4a,0x7f,0x4a,0x7e}}, // \xe7\xb4\xac
+{0x7d2e,{0x4a,0x16,0x1f,0x76,0x1f,0x18,0x4c}}, // \xe7\xb4\xae
+{0x7d2f,{0x50,0x17,0x1d,0x77,0x15,0x0f,0x50}}, // \xe7\xb4\xaf
+{0x7d30,{0x2a,0x75,0x28,0x7f,0x49,0x7f,0x7f}}, // \xe7\xb4\xb0
+{0x7d32,{0x2a,0x75,0x7f,0x44,0x5f,0x54,0x5f}}, // \xe7\xb4\xb2
+{0x7d33,{0x2a,0x75,0x3e,0x2a,0x7f,0x2a,0x3e}}, // \xe7\xb4\xb3
+{0x7d35,{0x2a,0x75,0x28,0x06,0x4a,0x7b,0x0e}}, // \xe7\xb4\xb5
+{0x7d39,{0x2a,0x75,0x28,0x75,0x53,0x59,0x7f}}, // \xe7\xb4\xb9
+{0x7d3a,{0x2a,0x75,0x02,0x7f,0x4a,0x7f,0x02}}, // \xe7\xb4\xba
+{0x7d3f,{0x2a,0x75,0x08,0x6c,0x6b,0x64,0x08}}, // \xe7\xb4\xbf
+{0x7d42,{0x2a,0x75,0x28,0x0a,0x55,0x4b,0x08}}, // \xe7\xb5\x82
+{0x7d43,{0x2a,0x75,0x4a,0x6e,0x53,0x2a,0x42}}, // \xe7\xb5\x83
+{0x7d44,{0x2a,0x75,0x48,0x7f,0x55,0x7f,0x40}}, // \xe7\xb5\x84
+{0x7d45,{0x2a,0x75,0x7f,0x1d,0x15,0x5d,0x7f}}, // \xe7\xb5\x85
+{0x7d46,{0x2a,0x75,0x2a,0x29,0x7c,0x29,0x2a}}, // \xe7\xb5\x86
+{0x7d4b,{0x2a,0x75,0x20,0x1e,0x62,0x5b,0x62}}, // \xe7\xb5\x8b
+{0x7d4c,{0x2a,0x75,0x49,0x5b,0x75,0x5b,0x48}}, // \xe7\xb5\x8c
+{0x7d4e,{0x2a,0x75,0x28,0x7d,0x00,0x45,0x7d}}, // \xe7\xb5\x8e
+{0x7d4f,{0x2a,0x75,0x2e,0x4a,0x5f,0x2e,0x50}}, // \xe7\xb5\x8f
+{0x7d50,{0x2a,0x75,0x02,0x6a,0x6f,0x6a,0x02}}, // \xe7\xb5\x90
+{0x7d56,{0x2a,0x75,0x4a,0x38,0x0f,0x78,0x4a}}, // \xe7\xb5\x96
+{0x7d5b,{0x04,0x7e,0x5f,0x1a,0x75,0x1b,0x50}}, // \xe7\xb5\x9b
+{0x7d5e,{0x2a,0x75,0x4a,0x56,0x23,0x56,0x4a}}, // \xe7\xb5\x9e
+{0x7d61,{0x2a,0x75,0x10,0x6a,0x65,0x6b,0x10}}, // \xe7\xb5\xa1
+{0x7d62,{0x2a,0x75,0x2c,0x3f,0x2a,0x3e,0x7e}}, // \xe7\xb5\xa2
+{0x7d63,{0x2a,0x75,0x54,0x3d,0x14,0x7d,0x14}}, // \xe7\xb5\xa3
+{0x7d66,{0x2a,0x75,0x04,0x72,0x55,0x76,0x04}}, // \xe7\xb5\xa6
+{0x7d68,{0x2a,0x75,0x0a,0x3e,0x4a,0x3f,0x52}}, // \xe7\xb5\xa8
+{0x7d6e,{0x4a,0x1e,0x1b,0x76,0x1f,0x19,0x4f}}, // \xe7\xb5\xae
+{0x7d71,{0x2a,0x75,0x4a,0x3e,0x0b,0x76,0x4a}}, // \xe7\xb5\xb1
+{0x7d72,{0x2a,0x75,0x28,0x00,0x2a,0x75,0x28}}, // \xe7\xb5\xb2
+{0x7d73,{0x2a,0x75,0x28,0x2a,0x35,0x7b,0x28}}, // \xe7\xb5\xb3
+{0x7d75,{0x2a,0x75,0x54,0x72,0x55,0x36,0x54}}, // \xe7\xb5\xb5
+{0x7d76,{0x2a,0x75,0x2a,0x7e,0x5d,0x57,0x5c}}, // \xe7\xb5\xb6
+{0x7d79,{0x2a,0x75,0x28,0x78,0x2b,0x2b,0x78}}, // \xe7\xb5\xb9
+{0x7d7d,{0x2a,0x75,0x28,0x77,0x5d,0x55,0x77}}, // \xe7\xb5\xbd
+{0x7d89,{0x2a,0x75,0x5a,0x37,0x1f,0x37,0x6a}}, // \xe7\xb6\x89
+{0x7d8f,{0x2a,0x75,0x52,0x71,0x5b,0x31,0x52}}, // \xe7\xb6\x8f
+{0x7d93,{0x2a,0x75,0x28,0x55,0x5b,0x75,0x5b}}, // \xe7\xb6\x93
+{0x7d99,{0x2a,0x75,0x28,0x7f,0x55,0x4e,0x55}}, // \xe7\xb6\x99
+{0x7d9a,{0x2a,0x75,0x5a,0x2a,0x0f,0x6a,0x5a}}, // \xe7\xb6\x9a
+{0x7d9b,{0x2a,0x75,0x69,0x2b,0x45,0x4b,0x6f}}, // \xe7\xb6\x9b
+{0x7d9c,{0x2a,0x75,0x56,0x12,0x77,0x16,0x56}}, // \xe7\xb6\x9c
+{0x7d9f,{0x2a,0x75,0x21,0x5f,0x55,0x3d,0x57}}, // \xe7\xb6\x9f
+{0x7da2,{0x2a,0x75,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe7\xb6\xa2
+{0x7da3,{0x2a,0x75,0x16,0x6d,0x56,0x4d,0x16}}, // \xe7\xb6\xa3
+{0x7dab,{0x2a,0x75,0x28,0x52,0x5b,0x36,0x5b}}, // \xe7\xb6\xab
+{0x7dac,{0x2a,0x75,0x4d,0x57,0x35,0x57,0x4d}}, // \xe7\xb6\xac
+{0x7dad,{0x2a,0x75,0x28,0x7f,0x4a,0x7f,0x4a}}, // \xe7\xb6\xad
+{0x7dae,{0x49,0x17,0x15,0x77,0x1a,0x15,0x4b}}, // \xe7\xb6\xae
+{0x7daf,{0x2a,0x75,0x64,0x4b,0x7e,0x6a,0x7e}}, // \xe7\xb6\xaf
+{0x7db0,{0x2a,0x75,0x28,0x06,0x7a,0x5b,0x76}}, // \xe7\xb6\xb0
+{0x7db1,{0x2a,0x75,0x7f,0x35,0x29,0x35,0x7f}}, // \xe7\xb6\xb1
+{0x7db2,{0x2a,0x7d,0x7f,0x0d,0x39,0x2d,0x7f}}, // \xe7\xb6\xb2
+{0x7db4,{0x2a,0x75,0x5d,0x2b,0x5d,0x2b,0x5d}}, // \xe7\xb6\xb4
+{0x7db5,{0x2a,0x75,0x52,0x31,0x7b,0x31,0x52}}, // \xe7\xb6\xb5
+{0x7db8,{0x2a,0x75,0x24,0x72,0x35,0x76,0x74}}, // \xe7\xb6\xb8
+{0x7dba,{0x2a,0x75,0x12,0x5a,0x17,0x7a,0x12}}, // \xe7\xb6\xba
+{0x7dbb,{0x2a,0x75,0x46,0x32,0x46,0x7f,0x56}}, // \xe7\xb6\xbb
+{0x7dbd,{0x2a,0x75,0x20,0x3c,0x77,0x3e,0x22}}, // \xe7\xb6\xbd
+{0x7dbe,{0x2a,0x75,0x28,0x5a,0x2f,0x5a,0x48}}, // \xe7\xb6\xbe
+{0x7dbf,{0x2a,0x75,0x30,0x1e,0x7b,0x1e,0x30}}, // \xe7\xb6\xbf
+{0x7dc7,{0x2a,0x75,0x28,0x7a,0x5d,0x7a,0x7d}}, // \xe7\xb7\x87
+{0x7dca,{0x57,0x17,0x1d,0x70,0x1b,0x15,0x5b}}, // \xe7\xb7\x8a
+{0x7dcb,{0x2a,0x75,0x2a,0x7f,0x00,0x7f,0x2a}}, // \xe7\xb7\x8b
+{0x7dcf,{0x2a,0x75,0x6a,0x2d,0x48,0x45,0x6a}}, // \xe7\xb7\x8f
+{0x7dd1,{0x2a,0x75,0x54,0x25,0x7d,0x27,0x54}}, // \xe7\xb7\x91
+{0x7dd2,{0x2a,0x75,0x28,0x1a,0x6f,0x6a,0x69}}, // \xe7\xb7\x92
+{0x7dd5,{0x2a,0x75,0x52,0x36,0x2b,0x76,0x12}}, // \xe7\xb7\x95
+{0x7dd8,{0x2a,0x75,0x3e,0x6a,0x6a,0x3f,0x52}}, // \xe7\xb7\x98
+{0x7dda,{0x2a,0x75,0x50,0x3e,0x7b,0x2e,0x50}}, // \xe7\xb7\x9a
+{0x7ddc,{0x30,0x1e,0x7b,0x1e,0x35,0x7b,0x31}}, // \xe7\xb7\x9c
+{0x7ddd,{0x2a,0x75,0x24,0x3f,0x2d,0x7f,0x24}}, // \xe7\xb7\x9d
+{0x7dde,{0x2a,0x75,0x7e,0x15,0x5b,0x29,0x5b}}, // \xe7\xb7\x9e
+{0x7de0,{0x2a,0x75,0x1a,0x6e,0x3b,0x6e,0x1a}}, // \xe7\xb7\xa0
+{0x7de1,{0x2a,0x75,0x28,0x1f,0x75,0x6d,0x77}}, // \xe7\xb7\xa1
+{0x7de4,{0x2a,0x75,0x5f,0x32,0x77,0x36,0x57}}, // \xe7\xb7\xa4
+{0x7de8,{0x2a,0x75,0x21,0x1f,0x75,0x37,0x71}}, // \xe7\xb7\xa8
+{0x7de9,{0x2a,0x75,0x46,0x2a,0x5e,0x29,0x5d}}, // \xe7\xb7\xa9
+{0x7dec,{0x2a,0x75,0x28,0x7d,0x57,0x7d,0x7d}}, // \xe7\xb7\xac
+{0x7def,{0x2a,0x75,0x28,0x3a,0x2f,0x7a,0x2e}}, // \xe7\xb7\xaf
+{0x7df2,{0x2a,0x75,0x7f,0x55,0x7f,0x46,0x2f}}, // \xe7\xb7\xb2
+{0x7df4,{0x2a,0x75,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe7\xb7\xb4
+{0x7dfb,{0x2a,0x75,0x2d,0x3b,0x69,0x3f,0x5e}}, // \xe7\xb7\xbb
+{0x7e01,{0x2a,0x75,0x24,0x5d,0x75,0x27,0x54}}, // \xe7\xb8\x81
+{0x7e04,{0x2a,0x75,0x08,0x3f,0x2d,0x77,0x5c}}, // \xe7\xb8\x84
+{0x7e05,{0x2a,0x75,0x7e,0x2e,0x56,0x3f,0x52}}, // \xe7\xb8\x85
+{0x7e09,{0x2a,0x75,0x0f,0x7d,0x59,0x7f,0x0d}}, // \xe7\xb8\x89
+{0x7e0a,{0x2a,0x75,0x52,0x6d,0x64,0x6d,0x52}}, // \xe7\xb8\x8a
+{0x7e0b,{0x2a,0x75,0x28,0x75,0x40,0x7e,0x77}}, // \xe7\xb8\x8b
+{0x7e12,{0x2a,0x75,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe7\xb8\x92
+{0x7e1b,{0x2a,0x75,0x12,0x3e,0x5f,0x7e,0x13}}, // \xe7\xb8\x9b
+{0x7e1e,{0x2a,0x75,0x72,0x1e,0x5b,0x1e,0x72}}, // \xe7\xb8\x9e
+{0x7e1f,{0x2a,0x75,0x18,0x37,0x5f,0x7b,0x15}}, // \xe7\xb8\x9f
+{0x7e21,{0x2a,0x75,0x2e,0x3a,0x6f,0x3a,0x2e}}, // \xe7\xb8\xa1
+{0x7e22,{0x7f,0x15,0x7f,0x1d,0x76,0x0d,0x56}}, // \xe7\xb8\xa2
+{0x7e23,{0x5e,0x17,0x77,0x50,0x15,0x7b,0x51}}, // \xe7\xb8\xa3
+{0x7e26,{0x2a,0x75,0x0a,0x7d,0x23,0x7e,0x4b}}, // \xe7\xb8\xa6
+{0x7e2b,{0x2a,0x75,0x48,0x39,0x5a,0x75,0x5b}}, // \xe7\xb8\xab
+{0x7e2e,{0x2a,0x75,0x16,0x7a,0x0b,0x7a,0x6e}}, // \xe7\xb8\xae
+{0x7e31,{0x2a,0x75,0x0a,0x7d,0x22,0x79,0x52}}, // \xe7\xb8\xb1
+{0x7e32,{0x2a,0x75,0x57,0x1d,0x77,0x15,0x57}}, // \xe7\xb8\xb2
+{0x7e35,{0x2a,0x75,0x4c,0x5f,0x2d,0x5f,0x4c}}, // \xe7\xb8\xb5
+{0x7e37,{0x2a,0x75,0x54,0x7e,0x5b,0x3e,0x54}}, // \xe7\xb8\xb7
+{0x7e39,{0x2a,0x75,0x51,0x17,0x77,0x17,0x51}}, // \xe7\xb8\xb9
+{0x7e3a,{0x2a,0x75,0x28,0x75,0x5e,0x7f,0x52}}, // \xe7\xb8\xba
+{0x7e3b,{0x40,0x3e,0x56,0x1e,0x77,0x0e,0x56}}, // \xe7\xb8\xbb
+{0x7e3d,{0x2a,0x75,0x68,0x2e,0x4f,0x4e,0x6e}}, // \xe7\xb8\xbd
+{0x7e3e,{0x2a,0x75,0x48,0x3a,0x3f,0x3a,0x48}}, // \xe7\xb8\xbe
+{0x7e41,{0x4b,0x1e,0x1e,0x76,0x1a,0x15,0x4b}}, // \xe7\xb9\x81
+{0x7e43,{0x2a,0x75,0x3b,0x7a,0x43,0x3a,0x7b}}, // \xe7\xb9\x83
+{0x7e46,{0x2a,0x75,0x11,0x4b,0x54,0x29,0x13}}, // \xe7\xb9\x86
+{0x7e4a,{0x2a,0x75,0x4a,0x7f,0x2a,0x3f,0x55}}, // \xe7\xb9\x8a
+{0x7e4b,{0x4a,0x1e,0x1f,0x76,0x1b,0x15,0x4b}}, // \xe7\xb9\x8b
+{0x7e4d,{0x2a,0x75,0x4a,0x3a,0x7f,0x2e,0x74}}, // \xe7\xb9\x8d
+{0x7e54,{0x2a,0x75,0x0a,0x6f,0x6e,0x3f,0x55}}, // \xe7\xb9\x94
+{0x7e55,{0x2a,0x75,0x2a,0x7b,0x6e,0x7b,0x2a}}, // \xe7\xb9\x95
+{0x7e56,{0x2a,0x75,0x0a,0x7f,0x7e,0x23,0x5e}}, // \xe7\xb9\x96
+{0x7e59,{0x2a,0x75,0x15,0x6f,0x7d,0x6f,0x15}}, // \xe7\xb9\x99
+{0x7e5a,{0x2a,0x75,0x4a,0x1e,0x6b,0x1e,0x4a}}, // \xe7\xb9\x9a
+{0x7e5d,{0x2a,0x75,0x7f,0x23,0x18,0x3b,0x7f}}, // \xe7\xb9\x9d
+{0x7e5e,{0x2a,0x75,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe7\xb9\x9e
+{0x7e66,{0x2a,0x75,0x5d,0x77,0x5b,0x7d,0x5b}}, // \xe7\xb9\xa6
+{0x7e67,{0x2a,0x75,0x56,0x73,0x57,0x33,0x56}}, // \xe7\xb9\xa7
+{0x7e69,{0x2a,0x75,0x1b,0x7f,0x41,0x7f,0x5b}}, // \xe7\xb9\xa9
+{0x7e6a,{0x2a,0x75,0x1c,0x76,0x5d,0x76,0x1c}}, // \xe7\xb9\xaa
+{0x7e6d,{0x7a,0x2a,0x5f,0x7a,0x2f,0x7a,0x7a}}, // \xe7\xb9\xad
+{0x7e70,{0x2a,0x75,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe7\xb9\xb0
+{0x7e79,{0x2a,0x75,0x2b,0x3b,0x6f,0x3b,0x2b}}, // \xe7\xb9\xb9
+{0x7e7b,{0x2a,0x75,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe7\xb9\xbb
+{0x7e7c,{0x2a,0x75,0x7f,0x6a,0x5d,0x6a,0x5d}}, // \xe7\xb9\xbc
+{0x7e7d,{0x2a,0x75,0x4e,0x3a,0x37,0x3a,0x46}}, // \xe7\xb9\xbd
+{0x7e7f,{0x2a,0x75,0x4f,0x69,0x60,0x6b,0x4a}}, // \xe7\xb9\xbf
+{0x7e82,{0x54,0x13,0x3e,0x6c,0x2f,0x16,0x52}}, // \xe7\xba\x82
+{0x7e83,{0x2a,0x75,0x4a,0x36,0x2b,0x76,0x0a}}, // \xe7\xba\x83
+{0x7e88,{0x2a,0x75,0x2a,0x6f,0x6a,0x1f,0x5d}}, // \xe7\xba\x88
+{0x7e89,{0x2a,0x75,0x4a,0x37,0x3a,0x37,0x4a}}, // \xe7\xba\x89
+{0x7e8c,{0x2a,0x75,0x4e,0x3e,0x3b,0x3e,0x4e}}, // \xe7\xba\x8c
+{0x7e8e,{0x2a,0x75,0x54,0x7f,0x54,0x3f,0x55}}, // \xe7\xba\x8e
+{0x7e8f,{0x2a,0x75,0x3e,0x5a,0x6f,0x5e,0x5a}}, // \xe7\xba\x8f
+{0x7e90,{0x2a,0x75,0x56,0x23,0x56,0x1f,0x5d}}, // \xe7\xba\x90
+{0x7e92,{0x2a,0x75,0x20,0x5f,0x4b,0x63,0x49}}, // \xe7\xba\x92
+{0x7e93,{0x2a,0x75,0x57,0x7b,0x54,0x33,0x57}}, // \xe7\xba\x93
+{0x7e94,{0x2a,0x75,0x28,0x52,0x2d,0x7f,0x56}}, // \xe7\xba\x94
+{0x7e96,{0x2a,0x75,0x55,0x7e,0x55,0x3f,0x55}}, // \xe7\xba\x96
+{0x7e9b,{0x34,0x7e,0x3e,0x4f,0x3e,0x6e,0x34}}, // \xe7\xba\x9b
+{0x7e9c,{0x2a,0x75,0x47,0x3d,0x38,0x7f,0x46}}, // \xe7\xba\x9c
+{0x7f36,{0x08,0x6c,0x4b,0x7e,0x4a,0x6a,0x08}}, // \xe7\xbc\xb6
+{0x7f38,{0x6c,0x4b,0x7e,0x6a,0x42,0x7e,0x42}}, // \xe7\xbc\xb8
+{0x7f3a,{0x6c,0x4b,0x7e,0x6a,0x4a,0x3f,0x4e}}, // \xe7\xbc\xba
+{0x7f45,{0x6b,0x7e,0x6a,0x3c,0x54,0x7f,0x1a}}, // \xe7\xbd\x85
+{0x7f4c,{0x14,0x73,0x5b,0x7c,0x5b,0x7b,0x14}}, // \xe7\xbd\x8c
+{0x7f4d,{0x1c,0x7c,0x5f,0x7b,0x5f,0x7c,0x1c}}, // \xe7\xbd\x8d
+{0x7f4e,{0x6b,0x7e,0x4a,0x6c,0x57,0x3f,0x4c}}, // \xe7\xbd\x8e
+{0x7f50,{0x6b,0x7e,0x26,0x7f,0x52,0x7f,0x56}}, // \xe7\xbd\x90
+{0x7f51,{0x7f,0x25,0x19,0x25,0x19,0x25,0x7f}}, // \xe7\xbd\x91
+{0x7f54,{0x7f,0x15,0x77,0x5d,0x57,0x15,0x7f}}, // \xe7\xbd\x94
+{0x7f55,{0x23,0x25,0x2b,0x79,0x2f,0x25,0x23}}, // \xe7\xbd\x95
+{0x7f58,{0x57,0x55,0x37,0x75,0x17,0x35,0x57}}, // \xe7\xbd\x98
+{0x7f5f,{0x17,0x75,0x57,0x5d,0x57,0x75,0x17}}, // \xe7\xbd\x9f
+{0x7f60,{0x47,0x7d,0x57,0x15,0x37,0x5d,0x57}}, // \xe7\xbd\xa0
+{0x7f67,{0x57,0x35,0x7f,0x55,0x37,0x7d,0x57}}, // \xe7\xbd\xa7
+{0x7f68,{0x17,0x0d,0x37,0x3d,0x77,0x4d,0x57}}, // \xe7\xbd\xa8
+{0x7f69,{0x27,0x35,0x37,0x7d,0x3f,0x2d,0x27}}, // \xe7\xbd\xa9
+{0x7f6a,{0x2b,0x6b,0x3f,0x03,0x7f,0x2b,0x2b}}, // \xe7\xbd\xaa
+{0x7f6b,{0x57,0x7d,0x57,0x05,0x7f,0x15,0x27}}, // \xe7\xbd\xab
+{0x7f6e,{0x77,0x45,0x7f,0x55,0x57,0x7d,0x47}}, // \xe7\xbd\xae
+{0x7f70,{0x67,0x6d,0x6f,0x05,0x1f,0x45,0x7f}}, // \xe7\xbd\xb0
+{0x7f72,{0x57,0x55,0x3f,0x7d,0x5f,0x75,0x17}}, // \xe7\xbd\xb2
+{0x7f75,{0x47,0x1d,0x57,0x1d,0x57,0x15,0x77}}, // \xe7\xbd\xb5
+{0x7f77,{0x17,0x7d,0x37,0x7d,0x07,0x7d,0x57}}, // \xe7\xbd\xb7
+{0x7f78,{0x6f,0x6d,0x17,0x35,0x57,0x7d,0x17}}, // \xe7\xbd\xb8
+{0x7f79,{0x37,0x7d,0x07,0x7d,0x57,0x7d,0x57}}, // \xe7\xbd\xb9
+{0x7f82,{0x2f,0x75,0x27,0x75,0x3f,0x3d,0x77}}, // \xe7\xbe\x82
+{0x7f83,{0x57,0x35,0x7f,0x7d,0x3f,0x75,0x37}}, // \xe7\xbe\x83
+{0x7f85,{0x2f,0x75,0x27,0x7d,0x57,0x7d,0x57}}, // \xe7\xbe\x85
+{0x7f86,{0x47,0x1d,0x4f,0x1d,0x47,0x1d,0x57}}, // \xe7\xbe\x86
+{0x7f87,{0x2f,0x75,0x2f,0x55,0x1f,0x7d,0x17}}, // \xe7\xbe\x87
+{0x7f88,{0x2f,0x75,0x2f,0x45,0x1f,0x5d,0x77}}, // \xe7\xbe\x88
+{0x7f8a,{0x22,0x2a,0x2b,0x7e,0x2a,0x2b,0x22}}, // \xe7\xbe\x8a
+{0x7f8c,{0x52,0x56,0x37,0x1e,0x76,0x57,0x52}}, // \xe7\xbe\x8c
+{0x7f8e,{0x52,0x56,0x57,0x3e,0x56,0x57,0x52}}, // \xe7\xbe\x8e
+{0x7f94,{0x52,0x16,0x57,0x1e,0x56,0x17,0x52}}, // \xe7\xbe\x94
+{0x7f9a,{0x55,0x3e,0x15,0x12,0x75,0x16,0x34}}, // \xe7\xbe\x9a
+{0x7f9d,{0x55,0x3e,0x15,0x7e,0x4a,0x5e,0x69}}, // \xe7\xbe\x9d
+{0x7f9e,{0x4a,0x3a,0x5b,0x7e,0x5a,0x7b,0x4a}}, // \xe7\xbe\x9e
+{0x7fa3,{0x2a,0x2a,0x37,0x7f,0x3b,0x2b,0x2e}}, // \xe7\xbe\xa3
+{0x7fa4,{0x25,0x7f,0x75,0x6f,0x2b,0x7e,0x2b}}, // \xe7\xbe\xa4
+{0x7fa8,{0x5a,0x0a,0x4b,0x5e,0x3a,0x5b,0x4a}}, // \xe7\xbe\xa8
+{0x7fa9,{0x2a,0x2a,0x7b,0x2e,0x7a,0x2b,0x5a}}, // \xe7\xbe\xa9
+{0x7fae,{0x4a,0x56,0x5f,0x36,0x5e,0x57,0x4a}}, // \xe7\xbe\xae
+{0x7faf,{0x55,0x3e,0x15,0x3f,0x2d,0x4f,0x78}}, // \xe7\xbe\xaf
+{0x7fb2,{0x0a,0x5a,0x7b,0x2e,0x7a,0x2b,0x5a}}, // \xe7\xbe\xb2
+{0x7fb6,{0x55,0x3e,0x15,0x4e,0x7e,0x7b,0x4e}}, // \xe7\xbe\xb6
+{0x7fb8,{0x42,0x3e,0x7a,0x6b,0x3a,0x7a,0x72}}, // \xe7\xbe\xb8
+{0x7fb9,{0x4a,0x56,0x7f,0x36,0x7e,0x57,0x4a}}, // \xe7\xbe\xb9
+{0x7fbd,{0x21,0x25,0x51,0x7f,0x25,0x51,0x7f}}, // \xe7\xbe\xbd
+{0x7fc1,{0x4a,0x5a,0x2d,0x78,0x59,0x2a,0x7a}}, // \xe7\xbf\x81
+{0x7fc5,{0x5a,0x2f,0x5a,0x55,0x7f,0x55,0x7f}}, // \xe7\xbf\x85
+{0x7fc6,{0x21,0x35,0x2f,0x64,0x3d,0x31,0x3b}}, // \xe7\xbf\x86
+{0x7fca,{0x2e,0x33,0x2e,0x15,0x7f,0x15,0x7f}}, // \xe7\xbf\x8a
+{0x7fcc,{0x49,0x5b,0x75,0x5f,0x7b,0x55,0x4f}}, // \xe7\xbf\x8c
+{0x7fd2,{0x09,0x6b,0x75,0x6f,0x6b,0x65,0x0f}}, // \xe7\xbf\x92
+{0x7fd4,{0x55,0x3e,0x29,0x15,0x7f,0x15,0x7f}}, // \xe7\xbf\x94
+{0x7fd5,{0x54,0x34,0x7e,0x0d,0x5e,0x34,0x74}}, // \xe7\xbf\x95
+{0x7fe0,{0x29,0x3b,0x2d,0x7f,0x2b,0x3d,0x2f}}, // \xe7\xbf\xa0
+{0x7fe1,{0x2a,0x5a,0x2f,0x78,0x5f,0x2a,0x7a}}, // \xe7\xbf\xa1
+{0x7fe6,{0x52,0x3e,0x77,0x0e,0x52,0x3f,0x72}}, // \xe7\xbf\xa6
+{0x7fe9,{0x7d,0x35,0x70,0x15,0x7f,0x15,0x7f}}, // \xe7\xbf\xa9
+{0x7feb,{0x05,0x6f,0x75,0x6f,0x44,0x3d,0x45}}, // \xe7\xbf\xab
+{0x7ff0,{0x2d,0x77,0x4d,0x2a,0x79,0x2a,0x7c}}, // \xe7\xbf\xb0
+{0x7ff3,{0x5f,0x37,0x7d,0x15,0x5b,0x35,0x7b}}, // \xe7\xbf\xb3
+{0x7ff9,{0x5e,0x37,0x7e,0x55,0x7f,0x55,0x7f}}, // \xe7\xbf\xb9
+{0x7ffb,{0x15,0x6f,0x7f,0x35,0x7f,0x35,0x7f}}, // \xe7\xbf\xbb
+{0x7ffc,{0x51,0x5b,0x15,0x1f,0x1b,0x55,0x57}}, // \xe7\xbf\xbc
+{0x8000,{0x4a,0x38,0x3f,0x2a,0x75,0x7f,0x57}}, // \xe8\x80\x80
+{0x8001,{0x28,0x2a,0x1a,0x7f,0x5e,0x5a,0x49}}, // \xe8\x80\x81
+{0x8003,{0x28,0x2a,0x1a,0x3f,0x2e,0x2a,0x69}}, // \xe8\x80\x83
+{0x8004,{0x28,0x2a,0x36,0x7f,0x5a,0x59,0x48}}, // \xe8\x80\x84
+{0x8005,{0x28,0x2a,0x1a,0x6f,0x6e,0x6a,0x09}}, // \xe8\x80\x85
+{0x8006,{0x14,0x16,0x6e,0x7f,0x76,0x75,0x14}}, // \xe8\x80\x86
+{0x800b,{0x48,0x5a,0x56,0x7f,0x5a,0x59,0x48}}, // \xe8\x80\x8b
+{0x800c,{0x7d,0x05,0x7d,0x07,0x7d,0x05,0x7d}}, // \xe8\x80\x8c
+{0x8010,{0x7d,0x07,0x7d,0x05,0x7d,0x1a,0x7f}}, // \xe8\x80\x90
+{0x8012,{0x52,0x56,0x36,0x7f,0x36,0x55,0x50}}, // \xe8\x80\x92
+{0x8015,{0x2a,0x7f,0x52,0x3f,0x12,0x7f,0x12}}, // \xe8\x80\x95
+{0x8017,{0x2a,0x7f,0x2a,0x2a,0x7e,0x55,0x54}}, // \xe8\x80\x97
+{0x8018,{0x2a,0x7f,0x29,0x44,0x65,0x5d,0x65}}, // \xe8\x80\x98
+{0x8019,{0x2a,0x7f,0x29,0x7f,0x49,0x4f,0x6f}}, // \xe8\x80\x99
+{0x801c,{0x2a,0x7f,0x29,0x7f,0x55,0x57,0x70}}, // \xe8\x80\x9c
+{0x8021,{0x2a,0x7f,0x3f,0x2a,0x7e,0x1f,0x7c}}, // \xe8\x80\xa1
+{0x8028,{0x2a,0x7f,0x18,0x37,0x5f,0x7b,0x15}}, // \xe8\x80\xa8
+{0x8033,{0x21,0x21,0x3f,0x2d,0x2d,0x7f,0x21}}, // \xe8\x80\xb3
+{0x8036,{0x21,0x3f,0x2d,0x7f,0x01,0x7f,0x1b}}, // \xe8\x80\xb6
+{0x803b,{0x21,0x3f,0x7f,0x7c,0x40,0x7f,0x44}}, // \xe8\x80\xbb
+{0x803d,{0x21,0x3f,0x7f,0x46,0x3f,0x72,0x46}}, // \xe8\x80\xbd
+{0x803f,{0x21,0x3f,0x7f,0x4c,0x40,0x3f,0x44}}, // \xe8\x80\xbf
+{0x8046,{0x21,0x3f,0x7f,0x12,0x75,0x16,0x34}}, // \xe8\x81\x86
+{0x804a,{0x21,0x3f,0x7f,0x5e,0x31,0x7e,0x1e}}, // \xe8\x81\x8a
+{0x8052,{0x21,0x3f,0x7f,0x04,0x76,0x5e,0x75}}, // \xe8\x81\x92
+{0x8056,{0x45,0x57,0x57,0x7d,0x57,0x55,0x47}}, // \xe8\x81\x96
+{0x8058,{0x21,0x3f,0x7f,0x08,0x1e,0x5f,0x6e}}, // \xe8\x81\x98
+{0x805a,{0x45,0x57,0x2f,0x75,0x2b,0x55,0x4b}}, // \xe8\x81\x9a
+{0x805e,{0x7f,0x2b,0x3b,0x38,0x7b,0x0b,0x7f}}, // \xe8\x81\x9e
+{0x805f,{0x24,0x2b,0x36,0x2a,0x2e,0x7a,0x2e}}, // \xe8\x81\x9f
+{0x8061,{0x21,0x3f,0x7f,0x6a,0x2d,0x48,0x6b}}, // \xe8\x81\xa1
+{0x8062,{0x21,0x3f,0x7f,0x32,0x46,0x7f,0x56}}, // \xe8\x81\xa2
+{0x8068,{0x21,0x3f,0x7f,0x52,0x3d,0x7a,0x15}}, // \xe8\x81\xa8
+{0x806f,{0x21,0x3f,0x7f,0x5a,0x35,0x7a,0x35}}, // \xe8\x81\xaf
+{0x8070,{0x21,0x3f,0x7f,0x6e,0x2f,0x4e,0x6e}}, // \xe8\x81\xb0
+{0x8072,{0x2a,0x26,0x37,0x32,0x3b,0x75,0x2b}}, // \xe8\x81\xb2
+{0x8073,{0x2a,0x2d,0x3a,0x29,0x2e,0x7d,0x2a}}, // \xe8\x81\xb3
+{0x8074,{0x21,0x3f,0x7f,0x62,0x2e,0x4f,0x6e}}, // \xe8\x81\xb4
+{0x8076,{0x2c,0x3d,0x7f,0x07,0x2f,0x3d,0x7c}}, // \xe8\x81\xb6
+{0x8077,{0x21,0x3f,0x7f,0x6b,0x4e,0x3f,0x55}}, // \xe8\x81\xb7
+{0x8079,{0x21,0x3f,0x7f,0x16,0x5e,0x7b,0x16}}, // \xe8\x81\xb9
+{0x807d,{0x29,0x3f,0x7f,0x6a,0x2e,0x4f,0x6e}}, // \xe8\x81\xbd
+{0x807e,{0x2a,0x3e,0x2b,0x3e,0x32,0x7b,0x2d}}, // \xe8\x81\xbe
+{0x807f,{0x28,0x2a,0x2a,0x7f,0x2a,0x2e,0x24}}, // \xe8\x81\xbf
+{0x8084,{0x57,0x3a,0x5a,0x20,0x2a,0x7f,0x2e}}, // \xe8\x82\x84
+{0x8085,{0x48,0x3a,0x6e,0x07,0x6e,0x2e,0x74}}, // \xe8\x82\x85
+{0x8086,{0x50,0x7f,0x55,0x71,0x2a,0x7f,0x2e}}, // \xe8\x82\x86
+{0x8087,{0x29,0x37,0x35,0x77,0x3b,0x35,0x2b}}, // \xe8\x82\x87
+{0x8089,{0x7e,0x02,0x2a,0x17,0x2a,0x42,0x7e}}, // \xe8\x82\x89
+{0x808b,{0x7f,0x15,0x7f,0x42,0x3f,0x42,0x7e}}, // \xe8\x82\x8b
+{0x808c,{0x7f,0x15,0x7f,0x3f,0x01,0x7f,0x40}}, // \xe8\x82\x8c
+{0x8093,{0x02,0x7e,0x2a,0x2b,0x2a,0x7a,0x02}}, // \xe8\x82\x93
+{0x8096,{0x00,0x7d,0x16,0x17,0x14,0x56,0x7d}}, // \xe8\x82\x96
+{0x8098,{0x7f,0x15,0x7f,0x0a,0x52,0x7f,0x02}}, // \xe8\x82\x98
+{0x809a,{0x7f,0x15,0x7f,0x40,0x44,0x7f,0x44}}, // \xe8\x82\x9a
+{0x809b,{0x7f,0x15,0x7f,0x40,0x42,0x7e,0x42}}, // \xe8\x82\x9b
+{0x809d,{0x7f,0x15,0x7f,0x08,0x09,0x7f,0x09}}, // \xe8\x82\x9d
+{0x80a1,{0x7f,0x15,0x7f,0x40,0x5b,0x29,0x5b}}, // \xe8\x82\xa1
+{0x80a2,{0x7f,0x15,0x7f,0x42,0x5a,0x2f,0x5a}}, // \xe8\x82\xa2
+{0x80a5,{0x7f,0x15,0x7f,0x49,0x4f,0x49,0x6f}}, // \xe8\x82\xa5
+{0x80a9,{0x41,0x3f,0x05,0x7d,0x2d,0x7f,0x01}}, // \xe8\x82\xa9
+{0x80aa,{0x7f,0x15,0x7f,0x42,0x3e,0x4b,0x7a}}, // \xe8\x82\xaa
+{0x80ac,{0x7f,0x15,0x7f,0x42,0x3f,0x7a,0x43}}, // \xe8\x82\xac
+{0x80ad,{0x7f,0x15,0x7f,0x7c,0x15,0x4f,0x7c}}, // \xe8\x82\xad
+{0x80af,{0x08,0x7e,0x28,0x2f,0x2a,0x7a,0x08}}, // \xe8\x82\xaf
+{0x80b1,{0x7f,0x15,0x7f,0x4a,0x67,0x52,0x6a}}, // \xe8\x82\xb1
+{0x80b2,{0x0a,0x7a,0x2e,0x2b,0x2a,0x76,0x0a}}, // \xe8\x82\xb2
+{0x80b4,{0x28,0x19,0x7d,0x2a,0x2a,0x7d,0x08}}, // \xe8\x82\xb4
+{0x80ba,{0x7f,0x15,0x7f,0x3a,0x0a,0x7f,0x3a}}, // \xe8\x82\xba
+{0x80c3,{0x07,0x7d,0x2d,0x2f,0x2d,0x7d,0x07}}, // \xe8\x83\x83
+{0x80c4,{0x0e,0x7a,0x2a,0x2f,0x2a,0x7a,0x0e}}, // \xe8\x83\x84
+{0x80c6,{0x7f,0x15,0x7f,0x00,0x5f,0x55,0x5f}}, // \xe8\x83\x86
+{0x80cc,{0x0a,0x7a,0x2f,0x28,0x2f,0x7a,0x0a}}, // \xe8\x83\x8c
+{0x80ce,{0x7f,0x15,0x7f,0x08,0x6c,0x6b,0x6c}}, // \xe8\x83\x8e
+{0x80d6,{0x7f,0x15,0x7f,0x2a,0x29,0x7c,0x29}}, // \xe8\x83\x96
+{0x80d9,{0x7f,0x15,0x7f,0x04,0x7f,0x2a,0x2a}}, // \xe8\x83\x99
+{0x80da,{0x7f,0x15,0x7f,0x49,0x45,0x7f,0x49}}, // \xe8\x83\x9a
+{0x80db,{0x7f,0x15,0x7f,0x1f,0x15,0x7f,0x1f}}, // \xe8\x83\x9b
+{0x80dd,{0x7f,0x15,0x7f,0x7e,0x4a,0x5e,0x69}}, // \xe8\x83\x9d
+{0x80de,{0x7f,0x15,0x7f,0x04,0x73,0x56,0x5e}}, // \xe8\x83\x9e
+{0x80e1,{0x3a,0x2f,0x3a,0x40,0x3f,0x55,0x7f}}, // \xe8\x83\xa1
+{0x80e4,{0x40,0x3f,0x7a,0x2d,0x78,0x7f,0x40}}, // \xe8\x83\xa4
+{0x80e5,{0x09,0x75,0x29,0x2f,0x2b,0x79,0x0b}}, // \xe8\x83\xa5
+{0x80ef,{0x7f,0x15,0x7f,0x0a,0x1e,0x57,0x6a}}, // \xe8\x83\xaf
+{0x80f1,{0x7f,0x15,0x7f,0x4a,0x38,0x7f,0x4a}}, // \xe8\x83\xb1
+{0x80f4,{0x7f,0x15,0x7f,0x7f,0x35,0x35,0x7f}}, // \xe8\x83\xb4
+{0x80f8,{0x7f,0x15,0x7f,0x34,0x2b,0x36,0x7e}}, // \xe8\x83\xb8
+{0x80fc,{0x7f,0x15,0x7f,0x54,0x3d,0x14,0x7d}}, // \xe8\x83\xbc
+{0x80fd,{0x04,0x7e,0x2d,0x7e,0x00,0x7f,0x5a}}, // \xe8\x83\xbd
+{0x8102,{0x7f,0x15,0x7f,0x00,0x6f,0x6a,0x6d}}, // \xe8\x84\x82
+{0x8105,{0x28,0x1a,0x6e,0x3b,0x2a,0x7e,0x18}}, // \xe8\x84\x85
+{0x8106,{0x7f,0x15,0x7f,0x3e,0x7d,0x4f,0x5c}}, // \xe8\x84\x86
+{0x8107,{0x7f,0x15,0x7f,0x22,0x77,0x22,0x76}}, // \xe8\x84\x87
+{0x8108,{0x7f,0x15,0x7f,0x7a,0x0a,0x35,0x54}}, // \xe8\x84\x88
+{0x8109,{0x7f,0x15,0x7f,0x28,0x5d,0x7d,0x28}}, // \xe8\x84\x89
+{0x810a,{0x15,0x75,0x28,0x2f,0x28,0x75,0x15}}, // \xe8\x84\x8a
+{0x811a,{0x7f,0x15,0x7f,0x6a,0x5f,0x7f,0x1f}}, // \xe8\x84\x9a
+{0x811b,{0x7f,0x15,0x7f,0x55,0x5b,0x75,0x5b}}, // \xe8\x84\x9b
+{0x8123,{0x08,0x77,0x3f,0x3b,0x37,0x7b,0x09}}, // \xe8\x84\xa3
+{0x8129,{0x04,0x7e,0x3f,0x7a,0x2d,0x7b,0x08}}, // \xe8\x84\xa9
+{0x812f,{0x7f,0x15,0x7f,0x7a,0x7f,0x2a,0x7b}}, // \xe8\x84\xaf
+{0x8131,{0x7f,0x15,0x7f,0x4e,0x3b,0x7a,0x4f}}, // \xe8\x84\xb1
+{0x8133,{0x7f,0x15,0x7f,0x75,0x49,0x54,0x7b}}, // \xe8\x84\xb3
+{0x8139,{0x7f,0x15,0x7f,0x10,0x7f,0x35,0x51}}, // \xe8\x84\xb9
+{0x813e,{0x7f,0x15,0x7f,0x2e,0x3f,0x7a,0x2e}}, // \xe8\x84\xbe
+{0x8146,{0x7f,0x15,0x7f,0x5e,0x1f,0x1a,0x5f}}, // \xe8\x85\x86
+{0x814b,{0x7f,0x15,0x7f,0x12,0x7e,0x2b,0x5a}}, // \xe8\x85\x8b
+{0x814e,{0x07,0x77,0x35,0x30,0x3b,0x75,0x0b}}, // \xe8\x85\x8e
+{0x8150,{0x40,0x3e,0x7a,0x56,0x3b,0x5e,0x72}}, // \xe8\x85\x90
+{0x8151,{0x7f,0x15,0x7f,0x3e,0x7a,0x13,0x7a}}, // \xe8\x85\x91
+{0x8153,{0x7f,0x15,0x7f,0x2a,0x7f,0x7f,0x2a}}, // \xe8\x85\x93
+{0x8154,{0x7f,0x15,0x7f,0x46,0x56,0x73,0x56}}, // \xe8\x85\x94
+{0x8155,{0x7f,0x15,0x7f,0x56,0x2a,0x7b,0x5e}}, // \xe8\x85\x95
+{0x815f,{0x7f,0x15,0x7f,0x56,0x5a,0x6b,0x56}}, // \xe8\x85\x9f
+{0x8165,{0x7f,0x15,0x7f,0x48,0x57,0x7d,0x57}}, // \xe8\x85\xa5
+{0x8166,{0x7f,0x15,0x7f,0x7a,0x6d,0x5a,0x7d}}, // \xe8\x85\xa6
+{0x816b,{0x7f,0x15,0x7f,0x44,0x5e,0x7e,0x5d}}, // \xe8\x85\xab
+{0x816e,{0x7f,0x15,0x7f,0x6f,0x2d,0x4f,0x6f}}, // \xe8\x85\xae
+{0x8170,{0x7f,0x15,0x7f,0x51,0x7f,0x37,0x51}}, // \xe8\x85\xb0
+{0x8171,{0x7f,0x15,0x7f,0x49,0x37,0x4a,0x5f}}, // \xe8\x85\xb1
+{0x8174,{0x7f,0x15,0x7f,0x5e,0x55,0x3e,0x5e}}, // \xe8\x85\xb4
+{0x8178,{0x7f,0x15,0x7f,0x24,0x5f,0x35,0x77}}, // \xe8\x85\xb8
+{0x8179,{0x7f,0x15,0x7f,0x53,0x2e,0x5e,0x42}}, // \xe8\x85\xb9
+{0x817a,{0x7f,0x15,0x7f,0x3e,0x7b,0x2e,0x50}}, // \xe8\x85\xba
+{0x817f,{0x7f,0x15,0x7f,0x79,0x50,0x4f,0x57}}, // \xe8\x85\xbf
+{0x8180,{0x7f,0x15,0x7f,0x4e,0x3b,0x6e,0x1a}}, // \xe8\x86\x80
+{0x8182,{0x0a,0x77,0x3e,0x34,0x3f,0x76,0x0a}}, // \xe8\x86\x82
+{0x8183,{0x7f,0x15,0x7f,0x4f,0x6d,0x6b,0x4f}}, // \xe8\x86\x83
+{0x8188,{0x7f,0x15,0x7f,0x79,0x2f,0x6f,0x79}}, // \xe8\x86\x88
+{0x818a,{0x7f,0x15,0x7f,0x3e,0x57,0x7e,0x13}}, // \xe8\x86\x8a
+{0x818f,{0x1a,0x6e,0x3a,0x3b,0x3a,0x6e,0x1a}}, // \xe8\x86\x8f
+{0x8193,{0x7f,0x15,0x7f,0x24,0x5f,0x3e,0x72}}, // \xe8\x86\x93
+{0x8195,{0x7f,0x15,0x7f,0x6d,0x4f,0x55,0x7f}}, // \xe8\x86\x95
+{0x819a,{0x40,0x3c,0x04,0x7c,0x3f,0x3a,0x7a}}, // \xe8\x86\x9a
+{0x819c,{0x7f,0x15,0x7f,0x52,0x5f,0x3e,0x53}}, // \xe8\x86\x9c
+{0x819d,{0x7f,0x15,0x7f,0x2a,0x56,0x7f,0x2a}}, // \xe8\x86\x9d
+{0x81a0,{0x7f,0x15,0x7f,0x11,0x4b,0x55,0x2b}}, // \xe8\x86\xa0
+{0x81a3,{0x7f,0x15,0x7f,0x06,0x5a,0x77,0x56}}, // \xe8\x86\xa3
+{0x81a4,{0x7f,0x15,0x7f,0x06,0x53,0x77,0x26}}, // \xe8\x86\xa4
+{0x81a8,{0x7f,0x15,0x7f,0x5a,0x7f,0x4a,0x25}}, // \xe8\x86\xa8
+{0x81a9,{0x7f,0x15,0x7f,0x36,0x72,0x3f,0x42}}, // \xe8\x86\xa9
+{0x81b0,{0x7f,0x15,0x7f,0x15,0x6f,0x7f,0x15}}, // \xe8\x86\xb0
+{0x81b3,{0x7f,0x15,0x7f,0x2a,0x7b,0x6e,0x7b}}, // \xe8\x86\xb3
+{0x81b5,{0x7f,0x15,0x7f,0x2f,0x72,0x2f,0x32}}, // \xe8\x86\xb5
+{0x81b8,{0x7f,0x15,0x7f,0x65,0x4a,0x7f,0x7a}}, // \xe8\x86\xb8
+{0x81ba,{0x40,0x3e,0x0e,0x72,0x3f,0x3e,0x7a}}, // \xe8\x86\xba
+{0x81bd,{0x7f,0x15,0x7f,0x3e,0x75,0x7f,0x2c}}, // \xe8\x86\xbd
+{0x81be,{0x7f,0x15,0x7f,0x16,0x7d,0x76,0x1c}}, // \xe8\x86\xbe
+{0x81bf,{0x7f,0x15,0x7f,0x76,0x57,0x36,0x57}}, // \xe8\x86\xbf
+{0x81c0,{0x08,0x77,0x3b,0x37,0x3b,0x75,0x0b}}, // \xe8\x87\x80
+{0x81c2,{0x04,0x7f,0x3b,0x30,0x36,0x7b,0x06}}, // \xe8\x87\x82
+{0x81c6,{0x7f,0x15,0x7f,0x6e,0x3b,0x5e,0x6a}}, // \xe8\x87\x86
+{0x81c8,{0x7f,0x15,0x7f,0x32,0x2f,0x4e,0x7b}}, // \xe8\x87\x88
+{0x81c9,{0x7f,0x15,0x7f,0x36,0x5d,0x36,0x5c}}, // \xe8\x87\x89
+{0x81cd,{0x7f,0x15,0x7f,0x36,0x2b,0x76,0x0a}}, // \xe8\x87\x8d
+{0x81d1,{0x7f,0x15,0x7f,0x66,0x2b,0x7f,0x6e}}, // \xe8\x87\x91
+{0x81d3,{0x7f,0x15,0x7f,0x7b,0x4a,0x3f,0x4a}}, // \xe8\x87\x93
+{0x81d8,{0x7f,0x15,0x7f,0x72,0x5d,0x2e,0x7d}}, // \xe8\x87\x98
+{0x81d9,{0x7f,0x15,0x7f,0x52,0x1f,0x56,0x5f}}, // \xe8\x87\x99
+{0x81da,{0x7f,0x15,0x7f,0x5c,0x64,0x6f,0x4a}}, // \xe8\x87\x9a
+{0x81df,{0x7f,0x15,0x7f,0x6f,0x7a,0x3f,0x4a}}, // \xe8\x87\x9f
+{0x81e0,{0x7a,0x1d,0x5a,0x37,0x5a,0x1d,0x78}}, // \xe8\x87\xa0
+{0x81e3,{0x7f,0x55,0x55,0x77,0x55,0x5d,0x41}}, // \xe8\x87\xa3
+{0x81e5,{0x7f,0x55,0x77,0x5d,0x40,0x3f,0x40}}, // \xe8\x87\xa5
+{0x81e7,{0x36,0x54,0x3e,0x7a,0x4a,0x3f,0x52}}, // \xe8\x87\xa7
+{0x81e8,{0x7f,0x55,0x77,0x5d,0x64,0x6f,0x6e}}, // \xe8\x87\xa8
+{0x81ea,{0x00,0x7e,0x4a,0x5b,0x5a,0x52,0x7e}}, // \xe8\x87\xaa
+{0x81ed,{0x50,0x5e,0x5a,0x3b,0x5a,0x5e,0x50}}, // \xe8\x87\xad
+{0x81f3,{0x41,0x55,0x57,0x7d,0x53,0x55,0x41}}, // \xe8\x87\xb3
+{0x81f4,{0x49,0x5d,0x3b,0x2d,0x5c,0x23,0x5e}}, // \xe8\x87\xb4
+{0x81fa,{0x5a,0x6a,0x7e,0x6f,0x5e,0x6a,0x5a}}, // \xe8\x87\xba
+{0x81fb,{0x55,0x7b,0x5d,0x2a,0x7f,0x2e,0x5a}}, // \xe8\x87\xbb
+{0x81fc,{0x7e,0x4a,0x49,0x40,0x4a,0x4a,0x7e}}, // \xe8\x87\xbc
+{0x81fe,{0x5e,0x55,0x20,0x1f,0x20,0x55,0x5f}}, // \xe8\x87\xbe
+{0x8201,{0x20,0x6e,0x3d,0x28,0x7d,0x2f,0x20}}, // \xe8\x88\x81
+{0x8202,{0x28,0x1a,0x6e,0x5f,0x4e,0x7a,0x28}}, // \xe8\x88\x82
+{0x8205,{0x50,0x5e,0x35,0x1c,0x15,0x5f,0x70}}, // \xe8\x88\x85
+{0x8207,{0x5e,0x55,0x1b,0x12,0x1e,0x55,0x5f}}, // \xe8\x88\x87
+{0x8208,{0x5e,0x55,0x1e,0x1a,0x1e,0x55,0x5f}}, // \xe8\x88\x88
+{0x8209,{0x28,0x1e,0x29,0x7e,0x2d,0x1f,0x28}}, // \xe8\x88\x89
+{0x820a,{0x0a,0x66,0x7f,0x56,0x7f,0x76,0x12}}, // \xe8\x88\x8a
+{0x820c,{0x04,0x76,0x56,0x5e,0x55,0x75,0x04}}, // \xe8\x88\x8c
+{0x820d,{0x14,0x74,0x56,0x5d,0x56,0x74,0x14}}, // \xe8\x88\x8d
+{0x820e,{0x14,0x74,0x5a,0x5d,0x5a,0x74,0x14}}, // \xe8\x88\x8e
+{0x8210,{0x76,0x5e,0x75,0x7e,0x4a,0x3e,0x49}}, // \xe8\x88\x90
+{0x8212,{0x6a,0x5d,0x6a,0x09,0x4b,0x7d,0x1b}}, // \xe8\x88\x92
+{0x8216,{0x6a,0x5d,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe8\x88\x96
+{0x8217,{0x6a,0x6d,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe8\x88\x97
+{0x8218,{0x6a,0x5d,0x6a,0x06,0x7a,0x5b,0x76}}, // \xe8\x88\x98
+{0x821b,{0x48,0x47,0x2a,0x1e,0x12,0x7f,0x12}}, // \xe8\x88\x9b
+{0x821c,{0x4d,0x57,0x2d,0x1f,0x35,0x77,0x2d}}, // \xe8\x88\x9c
+{0x821e,{0x2b,0x5e,0x2a,0x3e,0x2a,0x7e,0x2a}}, // \xe8\x88\x9e
+{0x821f,{0x50,0x3e,0x12,0x77,0x12,0x7e,0x10}}, // \xe8\x88\x9f
+{0x8229,{0x7e,0x13,0x7e,0x63,0x58,0x23,0x44}}, // \xe8\x88\xa9
+{0x822a,{0x7e,0x13,0x7e,0x7a,0x0b,0x7a,0x42}}, // \xe8\x88\xaa
+{0x822b,{0x7e,0x13,0x7e,0x42,0x3e,0x4b,0x7a}}, // \xe8\x88\xab
+{0x822c,{0x7e,0x13,0x7e,0x40,0x5b,0x29,0x5b}}, // \xe8\x88\xac
+{0x822e,{0x7e,0x13,0x7e,0x41,0x3d,0x15,0x1d}}, // \xe8\x88\xae
+{0x8233,{0x7e,0x13,0x7e,0x4a,0x7f,0x4a,0x7e}}, // \xe8\x88\xb3
+{0x8235,{0x7e,0x13,0x7e,0x06,0x7a,0x53,0x56}}, // \xe8\x88\xb5
+{0x8236,{0x7e,0x13,0x7e,0x7e,0x4b,0x4a,0x7e}}, // \xe8\x88\xb6
+{0x8237,{0x7e,0x13,0x7e,0x4a,0x6e,0x53,0x6a}}, // \xe8\x88\xb7
+{0x8238,{0x7e,0x13,0x7e,0x1d,0x15,0x5d,0x7f}}, // \xe8\x88\xb8
+{0x8239,{0x7e,0x13,0x7e,0x08,0x77,0x50,0x77}}, // \xe8\x88\xb9
+{0x8240,{0x7e,0x13,0x7e,0x21,0x6b,0x39,0x22}}, // \xe8\x89\x80
+{0x8247,{0x7e,0x7f,0x55,0x3b,0x6a,0x7e,0x69}}, // \xe8\x89\x87
+{0x8258,{0x7e,0x13,0x7e,0x4e,0x59,0x2e,0x5e}}, // \xe8\x89\x98
+{0x8259,{0x7e,0x13,0x7e,0x24,0x1e,0x6d,0x62}}, // \xe8\x89\x99
+{0x825a,{0x7e,0x13,0x7e,0x1a,0x7f,0x5a,0x7f}}, // \xe8\x89\x9a
+{0x825d,{0x7e,0x13,0x7e,0x06,0x53,0x77,0x26}}, // \xe8\x89\x9d
+{0x825f,{0x7e,0x13,0x7e,0x4a,0x5e,0x7b,0x5e}}, // \xe8\x89\x9f
+{0x8262,{0x7e,0x13,0x7e,0x76,0x5b,0x76,0x7a}}, // \xe8\x89\xa2
+{0x8264,{0x7e,0x13,0x7e,0x2a,0x7b,0x2e,0x5b}}, // \xe8\x89\xa4
+{0x8266,{0x7e,0x13,0x7e,0x4f,0x60,0x6b,0x4a}}, // \xe8\x89\xa6
+{0x8268,{0x7e,0x13,0x7e,0x5f,0x7a,0x2f,0x5a}}, // \xe8\x89\xa8
+{0x826a,{0x7e,0x13,0x7e,0x12,0x7d,0x6f,0x10}}, // \xe8\x89\xaa
+{0x826b,{0x7e,0x13,0x7e,0x5c,0x64,0x6f,0x4a}}, // \xe8\x89\xab
+{0x826e,{0x40,0x7f,0x55,0x15,0x35,0x5f,0x40}}, // \xe8\x89\xae
+{0x826f,{0x40,0x7e,0x5a,0x1b,0x3a,0x5e,0x40}}, // \xe8\x89\xaf
+{0x8271,{0x5b,0x3e,0x5b,0x7f,0x55,0x35,0x5f}}, // \xe8\x89\xb1
+{0x8272,{0x02,0x3e,0x55,0x5d,0x57,0x5c,0x60}}, // \xe8\x89\xb2
+{0x8276,{0x5e,0x77,0x76,0x2f,0x7a,0x5d,0x5b}}, // \xe8\x89\xb6
+{0x8277,{0x5f,0x6e,0x6f,0x3f,0x7a,0x5d,0x5b}}, // \xe8\x89\xb7
+{0x8278,{0x1e,0x50,0x3f,0x1e,0x10,0x7f,0x1e}}, // \xe8\x89\xb8
+{0x827e,{0x42,0x42,0x57,0x22,0x57,0x42,0x42}}, // \xe8\x89\xbe
+{0x828b,{0x22,0x2a,0x6f,0x7a,0x2f,0x2a,0x22}}, // \xe8\x8a\x8b
+{0x828d,{0x12,0x0a,0x1f,0x2a,0x0f,0x4a,0x7a}}, // \xe8\x8a\x8d
+{0x8292,{0x0a,0x3a,0x4b,0x4e,0x4b,0x4a,0x4a}}, // \xe8\x8a\x92
+{0x8299,{0x52,0x5a,0x5b,0x3e,0x5b,0x5a,0x52}}, // \xe8\x8a\x99
+{0x829d,{0x42,0x2a,0x4b,0x6e,0x5b,0x4a,0x42}}, // \xe8\x8a\x9d
+{0x829f,{0x4a,0x46,0x5b,0x2a,0x5b,0x4e,0x4a}}, // \xe8\x8a\x9f
+{0x82a5,{0x12,0x52,0x3b,0x06,0x7b,0x12,0x12}}, // \xe8\x8a\xa5
+{0x82a6,{0x4a,0x3a,0x2f,0x2a,0x2f,0x3a,0x0a}}, // \xe8\x8a\xa6
+{0x82ab,{0x52,0x56,0x37,0x16,0x77,0x56,0x52}}, // \xe8\x8a\xab
+{0x82ac,{0x12,0x4a,0x57,0x32,0x57,0x7a,0x12}}, // \xe8\x8a\xac
+{0x82ad,{0x02,0x3e,0x57,0x5e,0x57,0x5e,0x62}}, // \xe8\x8a\xad
+{0x82af,{0x42,0x32,0x7f,0x42,0x67,0x12,0x62}}, // \xe8\x8a\xaf
+{0x82b1,{0x12,0x7a,0x07,0x02,0x7f,0x52,0x6a}}, // \xe8\x8a\xb1
+{0x82b3,{0x4a,0x4a,0x3b,0x2e,0x2b,0x6a,0x0a}}, // \xe8\x8a\xb3
+{0x82b8,{0x52,0x5a,0x7f,0x5a,0x5f,0x3a,0x52}}, // \xe8\x8a\xb8
+{0x82b9,{0x42,0x3a,0x1f,0x1a,0x77,0x16,0x12}}, // \xe8\x8a\xb9
+{0x82bb,{0x24,0x5b,0x7e,0x36,0x12,0x5a,0x7e}}, // \xe8\x8a\xbb
+{0x82bd,{0x52,0x5e,0x37,0x56,0x7f,0x16,0x12}}, // \xe8\x8a\xbd
+{0x82c5,{0x42,0x2a,0x13,0x2e,0x1b,0x42,0x7e}}, // \xe8\x8b\x85
+{0x82d1,{0x52,0x5a,0x2f,0x1a,0x7f,0x4a,0x5a}}, // \xe8\x8b\x91
+{0x82d2,{0x22,0x7e,0x2b,0x3e,0x2b,0x7e,0x22}}, // \xe8\x8b\x92
+{0x82d3,{0x12,0x12,0x1b,0x76,0x1b,0x12,0x32}}, // \xe8\x8b\x93
+{0x82d4,{0x12,0x72,0x5b,0x56,0x53,0x6a,0x12}}, // \xe8\x8b\x94
+{0x82d7,{0x02,0x7a,0x5f,0x7a,0x5f,0x7a,0x02}}, // \xe8\x8b\x97
+{0x82d9,{0x4a,0x4a,0x7b,0x4e,0x6b,0x5a,0x4a}}, // \xe8\x8b\x99
+{0x82db,{0x0a,0x7a,0x5f,0x7a,0x0f,0x7a,0x0a}}, // \xe8\x8b\x9b
+{0x82dc,{0x02,0x7e,0x57,0x56,0x57,0x7e,0x02}}, // \xe8\x8b\x9c
+{0x82de,{0x0a,0x06,0x7f,0x56,0x5f,0x42,0x5e}}, // \xe8\x8b\x9e
+{0x82df,{0x12,0x0a,0x6f,0x6a,0x0f,0x4a,0x7a}}, // \xe8\x8b\x9f
+{0x82e1,{0x22,0x1e,0x53,0x46,0x2b,0x3e,0x42}}, // \xe8\x8b\xa1
+{0x82e3,{0x02,0x7e,0x57,0x56,0x57,0x5e,0x46}}, // \xe8\x8b\xa3
+{0x82e5,{0x2a,0x1a,0x6f,0x6a,0x6b,0x6a,0x0a}}, // \xe8\x8b\xa5
+{0x82e6,{0x0a,0x6a,0x6f,0x7a,0x6f,0x6a,0x0a}}, // \xe8\x8b\xa6
+{0x82e7,{0x1a,0x0a,0x5f,0x7a,0x1f,0x0a,0x1a}}, // \xe8\x8b\xa7
+{0x82eb,{0x02,0x62,0x63,0x7e,0x6b,0x6a,0x02}}, // \xe8\x8b\xab
+{0x82f1,{0x52,0x5a,0x57,0x3a,0x57,0x5a,0x52}}, // \xe8\x8b\xb1
+{0x82f3,{0x22,0x2a,0x2b,0x56,0x1f,0x22,0x22}}, // \xe8\x8b\xb3
+{0x82f4,{0x42,0x7e,0x57,0x56,0x57,0x7e,0x42}}, // \xe8\x8b\xb4
+{0x82f9,{0x22,0x2a,0x27,0x7e,0x27,0x2a,0x22}}, // \xe8\x8b\xb9
+{0x82fa,{0x0a,0x3a,0x2f,0x3e,0x6b,0x7e,0x2a}}, // \xe8\x8b\xba
+{0x82fb,{0x12,0x7a,0x07,0x2a,0x4b,0x7e,0x0a}}, // \xe8\x8b\xbb
+{0x8302,{0x42,0x3a,0x0f,0x4a,0x5f,0x2a,0x5a}}, // \xe8\x8c\x82
+{0x8303,{0x56,0x02,0x3f,0x46,0x57,0x5e,0x62}}, // \xe8\x8c\x83
+{0x8304,{0x52,0x3a,0x57,0x72,0x77,0x52,0x72}}, // \xe8\x8c\x84
+{0x8305,{0x52,0x36,0x57,0x76,0x1f,0x16,0x32}}, // \xe8\x8c\x85
+{0x8306,{0x3a,0x6a,0x37,0x02,0x7f,0x06,0x3e}}, // \xe8\x8c\x86
+{0x8309,{0x4a,0x5a,0x3b,0x7e,0x3b,0x5a,0x4a}}, // \xe8\x8c\x89
+{0x830e,{0x12,0x52,0x57,0x6a,0x57,0x52,0x12}}, // \xe8\x8c\x8e
+{0x8316,{0x22,0x2a,0x6b,0x56,0x6f,0x22,0x22}}, // \xe8\x8c\x96
+{0x8317,{0x22,0x2a,0x2b,0x76,0x57,0x5e,0x72}}, // \xe8\x8c\x97
+{0x8318,{0x52,0x36,0x5f,0x76,0x37,0x5e,0x72}}, // \xe8\x8c\x98
+{0x831c,{0x0a,0x7a,0x5f,0x4a,0x5f,0x7a,0x0a}}, // \xe8\x8c\x9c
+{0x8323,{0x52,0x5a,0x53,0x3e,0x57,0x5e,0x52}}, // \xe8\x8c\xa3
+{0x8328,{0x4a,0x02,0x53,0x4e,0x3b,0x4a,0x5a}}, // \xe8\x8c\xa8
+{0x832b,{0x56,0x02,0x0b,0x7a,0x4f,0x4a,0x4a}}, // \xe8\x8c\xab
+{0x832f,{0x12,0x7a,0x07,0x4a,0x4b,0x3e,0x4a}}, // \xe8\x8c\xaf
+{0x8331,{0x52,0x5a,0x37,0x7e,0x37,0x56,0x52}}, // \xe8\x8c\xb1
+{0x8332,{0x6a,0x56,0x63,0x02,0x6b,0x56,0x62}}, // \xe8\x8c\xb2
+{0x8334,{0x7e,0x46,0x7f,0x6e,0x7f,0x46,0x7e}}, // \xe8\x8c\xb4
+{0x8335,{0x7e,0x42,0x6b,0x5e,0x6b,0x42,0x7e}}, // \xe8\x8c\xb5
+{0x8336,{0x52,0x12,0x1b,0x76,0x1b,0x12,0x52}}, // \xe8\x8c\xb6
+{0x8338,{0x2a,0x2a,0x3f,0x2a,0x2f,0x7a,0x2a}}, // \xe8\x8c\xb8
+{0x8339,{0x4a,0x5a,0x2f,0x5a,0x7b,0x4a,0x7a}}, // \xe8\x8c\xb9
+{0x8340,{0x12,0x0a,0x7f,0x56,0x7f,0x06,0x7e}}, // \xe8\x8d\x80
+{0x8345,{0x12,0x72,0x5b,0x56,0x5b,0x72,0x12}}, // \xe8\x8d\x85
+{0x8349,{0x22,0x3e,0x37,0x76,0x37,0x3e,0x22}}, // \xe8\x8d\x89
+{0x834a,{0x56,0x3e,0x17,0x7e,0x1b,0x42,0x7a}}, // \xe8\x8d\x8a
+{0x834f,{0x12,0x7a,0x17,0x56,0x7f,0x56,0x12}}, // \xe8\x8d\x8f
+{0x8350,{0x12,0x7a,0x17,0x52,0x77,0x1e,0x12}}, // \xe8\x8d\x90
+{0x8352,{0x42,0x2e,0x0b,0x6a,0x0b,0x6a,0x42}}, // \xe8\x8d\x92
+{0x8358,{0x2a,0x7e,0x13,0x52,0x7b,0x52,0x12}}, // \xe8\x8d\x98
+{0x8373,{0x4a,0x5a,0x6f,0x6a,0x6f,0x5a,0x4a}}, // \xe8\x8d\xb3
+{0x8375,{0x62,0x36,0x57,0x4e,0x57,0x1e,0x62}}, // \xe8\x8d\xb5
+{0x8377,{0x12,0x7a,0x07,0x6a,0x6f,0x0a,0x7a}}, // \xe8\x8d\xb7
+{0x837b,{0x56,0x4a,0x37,0x5a,0x43,0x3e,0x4a}}, // \xe8\x8d\xbb
+{0x837c,{0x4a,0x3a,0x57,0x7e,0x17,0x3a,0x4a}}, // \xe8\x8d\xbc
+{0x8385,{0x12,0x7a,0x07,0x4a,0x7b,0x6e,0x5a}}, // \xe8\x8e\x85
+{0x8387,{0x42,0x7e,0x57,0x3e,0x4b,0x3e,0x7a}}, // \xe8\x8e\x87
+{0x8389,{0x52,0x36,0x7f,0x36,0x1b,0x42,0x7a}}, // \xe8\x8e\x89
+{0x838a,{0x5a,0x32,0x7f,0x12,0x53,0x7a,0x52}}, // \xe8\x8e\x8a
+{0x838e,{0x56,0x02,0x13,0x4a,0x5f,0x2a,0x12}}, // \xe8\x8e\x8e
+{0x8393,{0x0a,0x36,0x2f,0x3e,0x6b,0x7e,0x2a}}, // \xe8\x8e\x93
+{0x8396,{0x5a,0x56,0x53,0x7a,0x57,0x5a,0x56}}, // \xe8\x8e\x96
+{0x839a,{0x56,0x2e,0x43,0x76,0x67,0x7e,0x6a}}, // \xe8\x8e\x9a
+{0x839e,{0x56,0x52,0x37,0x16,0x77,0x52,0x56}}, // \xe8\x8e\x9e
+{0x839f,{0x0a,0x6a,0x67,0x6a,0x7b,0x66,0x0a}}, // \xe8\x8e\x9f
+{0x83a0,{0x4a,0x5a,0x37,0x1e,0x37,0x6a,0x0a}}, // \xe8\x8e\xa0
+{0x83a2,{0x52,0x4e,0x53,0x3e,0x53,0x4e,0x52}}, // \xe8\x8e\xa2
+{0x83a8,{0x42,0x7e,0x57,0x16,0x37,0x5e,0x42}}, // \xe8\x8e\xa8
+{0x83aa,{0x2a,0x2e,0x7f,0x0a,0x5f,0x2a,0x56}}, // \xe8\x8e\xaa
+{0x83ab,{0x52,0x5e,0x57,0x36,0x57,0x5e,0x52}}, // \xe8\x8e\xab
+{0x83b1,{0x52,0x56,0x33,0x7e,0x33,0x56,0x52}}, // \xe8\x8e\xb1
+{0x83b5,{0x42,0x5e,0x37,0x1e,0x77,0x5e,0x62}}, // \xe8\x8e\xb5
+{0x83bd,{0x2a,0x6a,0x37,0x22,0x77,0x2a,0x2a}}, // \xe8\x8e\xbd
+{0x83c1,{0x0a,0x7a,0x2f,0x3e,0x2f,0x7a,0x0a}}, // \xe8\x8f\x81
+{0x83c5,{0x1a,0x0a,0x7f,0x7a,0x6f,0x6a,0x1a}}, // \xe8\x8f\x85
+{0x83ca,{0x12,0x5e,0x2b,0x7a,0x2b,0x5a,0x7a}}, // \xe8\x8f\x8a
+{0x83cc,{0x7a,0x6a,0x5f,0x7a,0x5f,0x6a,0x7a}}, // \xe8\x8f\x8c
+{0x83ce,{0x42,0x7e,0x5b,0x0a,0x7b,0x5e,0x52}}, // \xe8\x8f\x8e
+{0x83d3,{0x52,0x5e,0x37,0x7e,0x37,0x5e,0x52}}, // \xe8\x8f\x93
+{0x83d6,{0x72,0x5e,0x57,0x56,0x57,0x5e,0x72}}, // \xe8\x8f\x96
+{0x83d8,{0x2a,0x7e,0x4b,0x66,0x53,0x26,0x4a}}, // \xe8\x8f\x98
+{0x83dc,{0x52,0x56,0x33,0x76,0x3b,0x56,0x52}}, // \xe8\x8f\x9c
+{0x83df,{0x4a,0x5a,0x37,0x1e,0x77,0x5e,0x62}}, // \xe8\x8f\x9f
+{0x83e0,{0x56,0x02,0x43,0x3a,0x5b,0x2e,0x5a}}, // \xe8\x8f\xa0
+{0x83e9,{0x12,0x76,0x5f,0x56,0x5f,0x76,0x12}}, // \xe8\x8f\xa9
+{0x83eb,{0x52,0x5e,0x57,0x7e,0x57,0x5e,0x52}}, // \xe8\x8f\xab
+{0x83ef,{0x2a,0x3e,0x2b,0x7e,0x2b,0x3e,0x2a}}, // \xe8\x8f\xaf
+{0x83f0,{0x56,0x6e,0x43,0x3e,0x47,0x3e,0x66}}, // \xe8\x8f\xb0
+{0x83f1,{0x2a,0x5a,0x5f,0x2e,0x3f,0x5a,0x52}}, // \xe8\x8f\xb1
+{0x83f2,{0x2a,0x6a,0x3f,0x02,0x7f,0x2a,0x2a}}, // \xe8\x8f\xb2
+{0x83f4,{0x0a,0x3a,0x37,0x3a,0x77,0x7a,0x4a}}, // \xe8\x8f\xb4
+{0x83f7,{0x1a,0x6a,0x2f,0x7e,0x2f,0x6e,0x1a}}, // \xe8\x8f\xb7
+{0x83fb,{0x2a,0x1a,0x7f,0x2a,0x1b,0x7e,0x2a}}, // \xe8\x8f\xbb
+{0x83fd,{0x52,0x12,0x7f,0x16,0x5b,0x2a,0x5a}}, // \xe8\x8f\xbd
+{0x8403,{0x32,0x2e,0x33,0x62,0x33,0x2e,0x32}}, // \xe8\x90\x83
+{0x8404,{0x12,0x6e,0x57,0x7e,0x57,0x66,0x7e}}, // \xe8\x90\x84
+{0x8407,{0x12,0x52,0x7f,0x56,0x37,0x56,0x52}}, // \xe8\x90\x87
+{0x840b,{0x52,0x5a,0x7b,0x5e,0x3b,0x5e,0x52}}, // \xe8\x90\x8b
+{0x840c,{0x3e,0x2a,0x3f,0x42,0x3f,0x2a,0x7e}}, // \xe8\x90\x8c
+{0x840d,{0x56,0x02,0x37,0x2e,0x7f,0x2e,0x36}}, // \xe8\x90\x8d
+{0x840e,{0x52,0x5a,0x77,0x5e,0x37,0x5a,0x52}}, // \xe8\x90\x8e
+{0x8413,{0x5a,0x4a,0x7b,0x5e,0x7b,0x4a,0x5a}}, // \xe8\x90\x93
+{0x8420,{0x42,0x3e,0x57,0x7e,0x3f,0x56,0x7e}}, // \xe8\x90\xa0
+{0x8422,{0x56,0x02,0x0b,0x76,0x5f,0x46,0x5e}}, // \xe8\x90\xa2
+{0x8429,{0x2a,0x7a,0x27,0x5a,0x43,0x3e,0x4a}}, // \xe8\x90\xa9
+{0x842a,{0x2a,0x7a,0x17,0x22,0x2b,0x7e,0x22}}, // \xe8\x90\xaa
+{0x842c,{0x72,0x1e,0x5b,0x7e,0x3b,0x5e,0x72}}, // \xe8\x90\xac
+{0x8431,{0x5a,0x4a,0x7f,0x7a,0x7f,0x4a,0x5a}}, // \xe8\x90\xb1
+{0x8435,{0x72,0x1e,0x73,0x5e,0x77,0x1e,0x72}}, // \xe8\x90\xb5
+{0x8438,{0x5a,0x56,0x43,0x3e,0x43,0x56,0x5e}}, // \xe8\x90\xb8
+{0x843c,{0x12,0x16,0x1f,0x5a,0x5f,0x76,0x12}}, // \xe8\x90\xbc
+{0x843d,{0x56,0x02,0x2b,0x6a,0x57,0x6e,0x22}}, // \xe8\x90\xbd
+{0x8446,{0x0a,0x7e,0x53,0x3e,0x7b,0x3e,0x52}}, // \xe8\x91\x86
+{0x8449,{0x52,0x5e,0x33,0x76,0x37,0x56,0x52}}, // \xe8\x91\x89
+{0x844e,{0x2a,0x76,0x2b,0x2a,0x7f,0x3a,0x22}}, // \xe8\x91\x8e
+{0x8457,{0x52,0x52,0x37,0x7e,0x5f,0x76,0x12}}, // \xe8\x91\x97
+{0x845b,{0x22,0x1e,0x7b,0x5a,0x1b,0x5e,0x72}}, // \xe8\x91\x9b
+{0x8461,{0x0a,0x76,0x37,0x7e,0x77,0x06,0x7e}}, // \xe8\x91\xa1
+{0x8462,{0x52,0x76,0x6f,0x76,0x6f,0x76,0x52}}, // \xe8\x91\xa2
+{0x8463,{0x4a,0x7a,0x6f,0x7e,0x6f,0x7a,0x4a}}, // \xe8\x91\xa3
+{0x8466,{0x2a,0x3a,0x2f,0x2a,0x7b,0x2e,0x2a}}, // \xe8\x91\xa6
+{0x8469,{0x7a,0x56,0x7b,0x02,0x7f,0x4e,0x6e}}, // \xe8\x91\xa9
+{0x846b,{0x6a,0x5e,0x6b,0x42,0x3f,0x56,0x7e}}, // \xe8\x91\xab
+{0x846c,{0x2a,0x76,0x2f,0x22,0x7f,0x36,0x32}}, // \xe8\x91\xac
+{0x846d,{0x7e,0x2a,0x2f,0x02,0x5b,0x2e,0x5e}}, // \xe8\x91\xad
+{0x846e,{0x22,0x7e,0x17,0x4a,0x5f,0x2e,0x5a}}, // \xe8\x91\xae
+{0x846f,{0x2a,0x76,0x23,0x12,0x2f,0x4a,0x7a}}, // \xe8\x91\xaf
+{0x8471,{0x6a,0x36,0x4f,0x56,0x6f,0x1e,0x62}}, // \xe8\x91\xb1
+{0x8475,{0x56,0x4e,0x57,0x32,0x57,0x4a,0x56}}, // \xe8\x91\xb5
+{0x8477,{0x26,0x3a,0x2b,0x7e,0x2b,0x3a,0x26}}, // \xe8\x91\xb7
+{0x8479,{0x4a,0x3e,0x6b,0x12,0x7f,0x4a,0x5a}}, // \xe8\x91\xb9
+{0x847a,{0x2a,0x2e,0x3b,0x2a,0x2b,0x7e,0x2a}}, // \xe8\x91\xba
+{0x8482,{0x1a,0x6a,0x2f,0x7a,0x2b,0x6e,0x1a}}, // \xe8\x92\x82
+{0x8484,{0x56,0x36,0x77,0x52,0x6b,0x7e,0x46}}, // \xe8\x92\x84
+{0x848b,{0x2a,0x7e,0x17,0x32,0x57,0x7a,0x16}}, // \xe8\x92\x8b
+{0x8490,{0x42,0x5a,0x3b,0x1e,0x7b,0x5a,0x62}}, // \xe8\x92\x90
+{0x8494,{0x3a,0x3a,0x13,0x36,0x5f,0x76,0x12}}, // \xe8\x92\x94
+{0x8499,{0x5a,0x5a,0x2f,0x5a,0x7f,0x2a,0x5a}}, // \xe8\x92\x99
+{0x849c,{0x2a,0x7e,0x2f,0x02,0x2b,0x7e,0x2e}}, // \xe8\x92\x9c
+{0x849f,{0x5a,0x6e,0x5b,0x0a,0x37,0x36,0x7e}}, // \xe8\x92\x9f
+{0x84a1,{0x5a,0x4a,0x3f,0x2a,0x2b,0x6e,0x1a}}, // \xe8\x92\xa1
+{0x84ad,{0x2a,0x56,0x7f,0x36,0x13,0x5a,0x7e}}, // \xe8\x92\xad
+{0x84b2,{0x56,0x02,0x7b,0x2a,0x7f,0x2a,0x7a}}, // \xe8\x92\xb2
+{0x84b8,{0x6a,0x3a,0x67,0x3e,0x63,0x2a,0x76}}, // \xe8\x92\xb8
+{0x84b9,{0x52,0x36,0x7f,0x16,0x7f,0x2e,0x4a}}, // \xe8\x92\xb9
+{0x84bb,{0x5a,0x2a,0x6f,0x02,0x5b,0x2a,0x6e}}, // \xe8\x92\xbb
+{0x84bc,{0x4a,0x26,0x1b,0x7a,0x7b,0x66,0x0a}}, // \xe8\x92\xbc
+{0x84bf,{0x72,0x16,0x7f,0x56,0x7f,0x16,0x72}}, // \xe8\x92\xbf
+{0x84c1,{0x4a,0x5a,0x2f,0x7e,0x2f,0x5a,0x4a}}, // \xe8\x93\x81
+{0x84c4,{0x12,0x76,0x57,0x7a,0x53,0x72,0x1a}}, // \xe8\x93\x84
+{0x84c6,{0x42,0x3e,0x6b,0x2e,0x7b,0x2e,0x6a}}, // \xe8\x93\x86
+{0x84c9,{0x26,0x2a,0x77,0x6a,0x77,0x2a,0x26}}, // \xe8\x93\x89
+{0x84ca,{0x5a,0x3a,0x77,0x12,0x57,0x3a,0x7a}}, // \xe8\x93\x8a
+{0x84cb,{0x4a,0x7a,0x5f,0x7e,0x5b,0x76,0x4a}}, // \xe8\x93\x8b
+{0x84cd,{0x12,0x16,0x6f,0x7e,0x77,0x72,0x12}}, // \xe8\x93\x8d
+{0x84d0,{0x22,0x1e,0x37,0x5e,0x7f,0x16,0x1a}}, // \xe8\x93\x90
+{0x84d1,{0x2a,0x2a,0x7f,0x56,0x3f,0x4a,0x4a}}, // \xe8\x93\x91
+{0x84d6,{0x42,0x7e,0x57,0x1a,0x77,0x5e,0x52}}, // \xe8\x93\x96
+{0x84d9,{0x42,0x3e,0x4b,0x56,0x7b,0x56,0x4a}}, // \xe8\x93\x99
+{0x84da,{0x12,0x7a,0x3f,0x12,0x4f,0x56,0x2a}}, // \xe8\x93\x9a
+{0x84ec,{0x52,0x36,0x4b,0x5a,0x77,0x4e,0x52}}, // \xe8\x93\xac
+{0x84ee,{0x52,0x36,0x43,0x52,0x5f,0x7e,0x52}}, // \xe8\x93\xae
+{0x84f4,{0x12,0x12,0x3f,0x5e,0x77,0x1a,0x12}}, // \xe8\x93\xb4
+{0x84fc,{0x12,0x16,0x4f,0x5a,0x2f,0x16,0x12}}, // \xe8\x93\xbc
+{0x84ff,{0x16,0x7a,0x03,0x6a,0x7b,0x6a,0x6e}}, // \xe8\x93\xbf
+{0x8500,{0x2a,0x7a,0x6f,0x7a,0x2b,0x7e,0x36}}, // \xe8\x94\x80
+{0x8506,{0x56,0x02,0x2b,0x5e,0x2f,0x5e,0x4a}}, // \xe8\x94\x86
+{0x8511,{0x42,0x3e,0x2b,0x0e,0x5b,0x2e,0x5a}}, // \xe8\x94\x91
+{0x8513,{0x42,0x5a,0x5f,0x2e,0x5f,0x5a,0x42}}, // \xe8\x94\x93
+{0x8514,{0x0a,0x66,0x7b,0x7a,0x6b,0x02,0x7e}}, // \xe8\x94\x94
+{0x8515,{0x1a,0x76,0x3f,0x7a,0x37,0x7e,0x1a}}, // \xe8\x94\x95
+{0x8517,{0x42,0x3e,0x4b,0x1e,0x5b,0x1e,0x4a}}, // \xe8\x94\x97
+{0x8518,{0x2a,0x1a,0x4f,0x5a,0x2b,0x16,0x2a}}, // \xe8\x94\x98
+{0x851a,{0x42,0x3e,0x6f,0x2e,0x1b,0x4a,0x7e}}, // \xe8\x94\x9a
+{0x851f,{0x4a,0x3e,0x6b,0x12,0x5f,0x3a,0x5a}}, // \xe8\x94\x9f
+{0x8521,{0x52,0x2e,0x57,0x72,0x17,0x2a,0x56}}, // \xe8\x94\xa1
+{0x8526,{0x42,0x1a,0x5b,0x1e,0x5b,0x12,0x72}}, // \xe8\x94\xa6
+{0x852c,{0x66,0x76,0x4f,0x3a,0x6b,0x2e,0x6a}}, // \xe8\x94\xac
+{0x852d,{0x7e,0x36,0x53,0x7a,0x57,0x3a,0x52}}, // \xe8\x94\xad
+{0x8535,{0x42,0x3a,0x7f,0x7a,0x4f,0x3a,0x52}}, // \xe8\x94\xb5
+{0x853d,{0x76,0x5a,0x2b,0x76,0x53,0x2e,0x5a}}, // \xe8\x94\xbd
+{0x8540,{0x5a,0x2a,0x7f,0x5a,0x2b,0x7e,0x5a}}, // \xe8\x95\x80
+{0x8541,{0x2a,0x3a,0x6b,0x26,0x7f,0x6e,0x3a}}, // \xe8\x95\x81
+{0x8543,{0x2a,0x1e,0x6b,0x7e,0x6b,0x1e,0x2a}}, // \xe8\x95\x83
+{0x8548,{0x22,0x2e,0x3b,0x6e,0x3b,0x2e,0x22}}, // \xe8\x95\x88
+{0x8549,{0x4a,0x06,0x5f,0x16,0x5f,0x16,0x52}}, // \xe8\x95\x89
+{0x854a,{0x6a,0x3e,0x53,0x56,0x3b,0x46,0x6a}}, // \xe8\x95\x8a
+{0x854b,{0x6a,0x4e,0x7b,0x6e,0x4f,0x7e,0x5a}}, // \xe8\x95\x8b
+{0x854e,{0x7a,0x1a,0x7f,0x56,0x7f,0x1a,0x7a}}, // \xe8\x95\x8e
+{0x8555,{0x56,0x4a,0x37,0x7a,0x57,0x76,0x7a}}, // \xe8\x95\x95
+{0x8557,{0x6e,0x76,0x2f,0x6a,0x57,0x6e,0x22}}, // \xe8\x95\x97
+{0x8558,{0x5a,0x5e,0x3f,0x16,0x7f,0x5e,0x5a}}, // \xe8\x95\x98
+{0x855a,{0x12,0x1a,0x1f,0x56,0x5f,0x7a,0x12}}, // \xe8\x95\x9a
+{0x8563,{0x5a,0x6e,0x5b,0x3e,0x2b,0x7e,0x3a}}, // \xe8\x95\xa3
+{0x8568,{0x42,0x3e,0x57,0x3a,0x4f,0x3a,0x5a}}, // \xe8\x95\xa8
+{0x8569,{0x56,0x02,0x23,0x5e,0x3b,0x5e,0x72}}, // \xe8\x95\xa9
+{0x856a,{0x6a,0x3e,0x6b,0x3a,0x6b,0x3a,0x6a}}, // \xe8\x95\xaa
+{0x856d,{0x4a,0x3a,0x6f,0x06,0x6f,0x2e,0x7a}}, // \xe8\x95\xad
+{0x8577,{0x12,0x56,0x7f,0x32,0x47,0x1e,0x5e}}, // \xe8\x95\xb7
+{0x857e,{0x0a,0x76,0x5f,0x7e,0x57,0x7e,0x0a}}, // \xe8\x95\xbe
+{0x8580,{0x56,0x02,0x5f,0x7a,0x77,0x7a,0x5e}}, // \xe8\x96\x80
+{0x8584,{0x56,0x02,0x13,0x3e,0x5f,0x7e,0x12}}, // \xe8\x96\x84
+{0x8587,{0x2a,0x76,0x53,0x36,0x57,0x3e,0x5e}}, // \xe8\x96\x87
+{0x8588,{0x0a,0x7e,0x57,0x5e,0x57,0x7e,0x0a}}, // \xe8\x96\x88
+{0x858a,{0x4a,0x16,0x5f,0x02,0x1b,0x42,0x7e}}, // \xe8\x96\x8a
+{0x8590,{0x2a,0x7a,0x17,0x2a,0x5f,0x2e,0x5a}}, // \xe8\x96\x90
+{0x8591,{0x42,0x56,0x7f,0x7e,0x7f,0x56,0x42}}, // \xe8\x96\x91
+{0x8594,{0x1a,0x76,0x7b,0x5e,0x7b,0x76,0x1a}}, // \xe8\x96\x94
+{0x8597,{0x7e,0x66,0x5f,0x76,0x5f,0x66,0x7e}}, // \xe8\x96\x97
+{0x8599,{0x52,0x3e,0x4b,0x12,0x7f,0x7a,0x56}}, // \xe8\x96\x99
+{0x859b,{0x7e,0x6e,0x6f,0x2a,0x3b,0x6e,0x3a}}, // \xe8\x96\x9b
+{0x859c,{0x12,0x7e,0x6f,0x2a,0x3b,0x6e,0x3a}}, // \xe8\x96\x9c
+{0x85a4,{0x56,0x2e,0x57,0x7e,0x43,0x7e,0x56}}, // \xe8\x96\xa4
+{0x85a6,{0x42,0x3e,0x4b,0x1e,0x5b,0x1e,0x72}}, // \xe8\x96\xa6
+{0x85a8,{0x5a,0x6e,0x3b,0x1e,0x7b,0x5e,0x5a}}, // \xe8\x96\xa8
+{0x85a9,{0x7e,0x36,0x43,0x3a,0x5f,0x7e,0x4a}}, // \xe8\x96\xa9
+{0x85aa,{0x52,0x36,0x7b,0x36,0x3f,0x16,0x72}}, // \xe8\x96\xaa
+{0x85ab,{0x6a,0x3a,0x6f,0x3e,0x6f,0x3a,0x6a}}, // \xe8\x96\xab
+{0x85ac,{0x56,0x5a,0x3f,0x76,0x3f,0x5a,0x56}}, // \xe8\x96\xac
+{0x85ae,{0x56,0x6a,0x5f,0x36,0x5b,0x26,0x5e}}, // \xe8\x96\xae
+{0x85af,{0x22,0x6e,0x3b,0x7e,0x7b,0x6e,0x2a}}, // \xe8\x96\xaf
+{0x85b9,{0x5a,0x6a,0x7f,0x6e,0x5f,0x6a,0x5a}}, // \xe8\x96\xb9
+{0x85ba,{0x4a,0x36,0x2f,0x2a,0x2f,0x76,0x0a}}, // \xe8\x96\xba
+{0x85c1,{0x5a,0x4a,0x3f,0x76,0x3f,0x4a,0x5a}}, // \xe8\x97\x81
+{0x85c9,{0x52,0x36,0x7f,0x3e,0x6b,0x7e,0x2a}}, // \xe8\x97\x89
+{0x85cd,{0x42,0x5e,0x77,0x62,0x6f,0x4a,0x4a}}, // \xe8\x97\x8d
+{0x85cf,{0x5a,0x72,0x3b,0x7a,0x5b,0x3e,0x4a}}, // \xe8\x97\x8f
+{0x85d0,{0x2a,0x5a,0x77,0x42,0x3b,0x6e,0x5a}}, // \xe8\x97\x90
+{0x85d5,{0x2a,0x7e,0x2b,0x72,0x5f,0x3e,0x72}}, // \xe8\x97\x95
+{0x85dc,{0x2a,0x66,0x3f,0x6a,0x37,0x6a,0x2e}}, // \xe8\x97\x9c
+{0x85dd,{0x52,0x5a,0x7f,0x5a,0x57,0x3e,0x5a}}, // \xe8\x97\x9d
+{0x85e4,{0x7a,0x2a,0x7f,0x2a,0x77,0x2a,0x56}}, // \xe8\x97\xa4
+{0x85e5,{0x5a,0x56,0x3f,0x76,0x3f,0x5a,0x56}}, // \xe8\x97\xa5
+{0x85e9,{0x56,0x02,0x2b,0x1e,0x6f,0x7e,0x2a}}, // \xe8\x97\xa9
+{0x85ea,{0x56,0x7e,0x5f,0x3e,0x5b,0x26,0x5e}}, // \xe8\x97\xaa
+{0x85f7,{0x6a,0x6e,0x43,0x2a,0x7f,0x6e,0x6a}}, // \xe8\x97\xb7
+{0x85f9,{0x6a,0x6e,0x23,0x7e,0x57,0x1e,0x72}}, // \xe8\x97\xb9
+{0x85fa,{0x7e,0x26,0x7b,0x52,0x7b,0x56,0x7e}}, // \xe8\x97\xba
+{0x85fb,{0x56,0x02,0x5b,0x36,0x7b,0x36,0x5a}}, // \xe8\x97\xbb
+{0x85fe,{0x42,0x2e,0x7f,0x2e,0x47,0x1a,0x5e}}, // \xe8\x97\xbe
+{0x8602,{0x5a,0x4e,0x37,0x7a,0x2b,0x56,0x5a}}, // \xe8\x98\x82
+{0x8606,{0x42,0x3a,0x4b,0x6a,0x7f,0x76,0x52}}, // \xe8\x98\x86
+{0x8607,{0x4a,0x16,0x5f,0x2a,0x1f,0x7e,0x2a}}, // \xe8\x98\x87
+{0x860a,{0x2a,0x76,0x23,0x5e,0x7b,0x76,0x5e}}, // \xe8\x98\x8a
+{0x860b,{0x1a,0x52,0x5f,0x2a,0x47,0x1e,0x5e}}, // \xe8\x98\x8b
+{0x8613,{0x2a,0x7a,0x47,0x3a,0x77,0x3e,0x42}}, // \xe8\x98\x93
+{0x8616,{0x42,0x5e,0x37,0x72,0x3f,0x5a,0x4e}}, // \xe8\x98\x96
+{0x8617,{0x4a,0x5e,0x37,0x72,0x3f,0x5a,0x4e}}, // \xe8\x98\x97
+{0x861a,{0x4a,0x36,0x7f,0x2a,0x2f,0x7a,0x2e}}, // \xe8\x98\x9a
+{0x8622,{0x16,0x7e,0x37,0x7e,0x17,0x6e,0x5a}}, // \xe8\x98\xa2
+{0x862d,{0x7e,0x56,0x37,0x7a,0x37,0x56,0x7e}}, // \xe8\x98\xad
+{0x862f,{0x56,0x62,0x73,0x6e,0x7b,0x6e,0x5a}}, // \xe8\x98\xaf
+{0x8630,{0x2a,0x76,0x23,0x5a,0x5f,0x2e,0x5a}}, // \xe8\x98\xb0
+{0x863f,{0x2e,0x76,0x27,0x7e,0x57,0x7e,0x56}}, // \xe8\x98\xbf
+{0x864d,{0x40,0x3c,0x14,0x7f,0x56,0x56,0x6c}}, // \xe8\x99\x8d
+{0x864e,{0x40,0x3c,0x44,0x24,0x0f,0x6a,0x4a}}, // \xe8\x99\x8e
+{0x8650,{0x40,0x3c,0x04,0x74,0x5f,0x5a,0x5a}}, // \xe8\x99\x90
+{0x8654,{0x40,0x3c,0x44,0x5c,0x2f,0x5a,0x4a}}, // \xe8\x99\x94
+{0x8655,{0x40,0x3c,0x54,0x2c,0x5f,0x7a,0x4a}}, // \xe8\x99\x95
+{0x865a,{0x40,0x3c,0x44,0x64,0x4f,0x6a,0x4a}}, // \xe8\x99\x9a
+{0x865c,{0x40,0x3c,0x54,0x5c,0x3f,0x5a,0x7a}}, // \xe8\x99\x9c
+{0x865e,{0x40,0x3c,0x34,0x64,0x3f,0x7a,0x2a}}, // \xe8\x99\x9e
+{0x865f,{0x5b,0x6b,0x3c,0x44,0x2f,0x6a,0x4a}}, // \xe8\x99\x9f
+{0x8667,{0x7c,0x74,0x7f,0x5a,0x05,0x5f,0x75}}, // \xe8\x99\xa7
+{0x866b,{0x40,0x5e,0x52,0x7f,0x52,0x3e,0x40}}, // \xe8\x99\xab
+{0x8671,{0x5d,0x55,0x7f,0x55,0x5d,0x3f,0x40}}, // \xe8\x99\xb1
+{0x8679,{0x4e,0x7b,0x2e,0x40,0x42,0x7e,0x42}}, // \xe8\x99\xb9
+{0x867b,{0x4e,0x7b,0x2e,0x3e,0x42,0x43,0x42}}, // \xe8\x99\xbb
+{0x868a,{0x4e,0x7f,0x42,0x2e,0x13,0x2e,0x42}}, // \xe8\x9a\x8a
+{0x868b,{0x4e,0x7b,0x7e,0x15,0x0f,0x54,0x7c}}, // \xe8\x9a\x8b
+{0x868c,{0x4e,0x7b,0x2e,0x22,0x2a,0x7f,0x2a}}, // \xe8\x9a\x8c
+{0x8693,{0x4e,0x7b,0x2e,0x5d,0x77,0x00,0x7f}}, // \xe8\x9a\x93
+{0x8695,{0x45,0x5d,0x55,0x7b,0x55,0x3d,0x45}}, // \xe8\x9a\x95
+{0x86a3,{0x4e,0x7b,0x44,0x63,0x58,0x23,0x44}}, // \xe8\x9a\xa3
+{0x86a4,{0x48,0x59,0x57,0x7d,0x55,0x3b,0x48}}, // \xe8\x9a\xa4
+{0x86a9,{0x44,0x5f,0x56,0x7f,0x56,0x3f,0x44}}, // \xe8\x9a\xa9
+{0x86aa,{0x4e,0x7b,0x2e,0x2a,0x20,0x7f,0x10}}, // \xe8\x9a\xaa
+{0x86ab,{0x4e,0x7b,0x2e,0x04,0x7b,0x5a,0x5e}}, // \xe8\x9a\xab
+{0x86af,{0x4e,0x7b,0x4e,0x7e,0x4a,0x79,0x48}}, // \xe8\x9a\xaf
+{0x86b0,{0x4e,0x7b,0x2e,0x7e,0x4a,0x7f,0x7e}}, // \xe8\x9a\xb0
+{0x86b6,{0x4e,0x7b,0x2e,0x02,0x7f,0x4a,0x7f}}, // \xe8\x9a\xb6
+{0x86c4,{0x4e,0x7b,0x2e,0x04,0x74,0x5f,0x74}}, // \xe8\x9b\x84
+{0x86c6,{0x4e,0x7b,0x4e,0x7f,0x55,0x7f,0x40}}, // \xe8\x9b\x86
+{0x86c7,{0x4e,0x7b,0x2e,0x06,0x7a,0x53,0x56}}, // \xe8\x9b\x87
+{0x86c9,{0x4e,0x7b,0x2e,0x12,0x75,0x16,0x34}}, // \xe8\x9b\x89
+{0x86cb,{0x49,0x45,0x59,0x7f,0x5b,0x29,0x4b}}, // \xe8\x9b\x8b
+{0x86cd,{0x46,0x5b,0x5a,0x7f,0x5a,0x3b,0x46}}, // \xe8\x9b\x8d
+{0x86ce,{0x4e,0x7b,0x2e,0x1f,0x65,0x1d,0x75}}, // \xe8\x9b\x8e
+{0x86d4,{0x4e,0x7b,0x2e,0x7f,0x5d,0x55,0x7f}}, // \xe8\x9b\x94
+{0x86d9,{0x4e,0x7b,0x2e,0x48,0x5a,0x7f,0x5a}}, // \xe8\x9b\x99
+{0x86db,{0x4e,0x7f,0x4c,0x2b,0x7f,0x2a,0x48}}, // \xe8\x9b\x9b
+{0x86de,{0x4e,0x7b,0x2e,0x04,0x76,0x5e,0x75}}, // \xe8\x9b\x9e
+{0x86df,{0x4e,0x7f,0x4a,0x56,0x23,0x56,0x4a}}, // \xe8\x9b\x9f
+{0x86e4,{0x4e,0x7b,0x2e,0x00,0x76,0x55,0x76}}, // \xe8\x9b\xa4
+{0x86e9,{0x45,0x47,0x5d,0x7c,0x5b,0x27,0x44}}, // \xe8\x9b\xa9
+{0x86ec,{0x54,0x4e,0x5f,0x7e,0x5f,0x2e,0x54}}, // \xe8\x9b\xac
+{0x86ed,{0x4e,0x7b,0x2e,0x45,0x57,0x7d,0x55}}, // \xe8\x9b\xad
+{0x86ee,{0x4a,0x42,0x5e,0x7b,0x5e,0x22,0x4a}}, // \xe8\x9b\xae
+{0x86ef,{0x4e,0x7f,0x28,0x1a,0x6f,0x5a,0x49}}, // \xe8\x9b\xaf
+{0x86f8,{0x4e,0x7b,0x2e,0x7d,0x14,0x57,0x7d}}, // \xe8\x9b\xb8
+{0x86f9,{0x4e,0x7b,0x2e,0x7d,0x15,0x7f,0x7d}}, // \xe8\x9b\xb9
+{0x86fb,{0x4e,0x7b,0x2e,0x5d,0x34,0x75,0x5e}}, // \xe8\x9b\xbb
+{0x86fe,{0x4e,0x7b,0x26,0x7e,0x25,0x3f,0x55}}, // \xe8\x9b\xbe
+{0x8700,{0x4b,0x45,0x5f,0x7d,0x5f,0x25,0x7f}}, // \xe8\x9c\x80
+{0x8702,{0x4e,0x7b,0x2e,0x2a,0x75,0x2b,0x28}}, // \xe8\x9c\x82
+{0x8703,{0x48,0x47,0x7f,0x7b,0x77,0x2b,0x49}}, // \xe8\x9c\x83
+{0x8706,{0x4e,0x7b,0x2e,0x5f,0x35,0x75,0x5f}}, // \xe8\x9c\x86
+{0x8708,{0x4e,0x7b,0x2e,0x56,0x34,0x5f,0x53}}, // \xe8\x9c\x88
+{0x8709,{0x4e,0x7b,0x2e,0x21,0x6b,0x39,0x22}}, // \xe8\x9c\x89
+{0x870a,{0x4e,0x7f,0x35,0x7f,0x15,0x4e,0x7f}}, // \xe8\x9c\x8a
+{0x870d,{0x4e,0x7b,0x54,0x16,0x7d,0x16,0x54}}, // \xe8\x9c\x8d
+{0x8711,{0x55,0x5b,0x70,0x7a,0x72,0x3e,0x55}}, // \xe8\x9c\x91
+{0x8712,{0x4e,0x7f,0x55,0x3b,0x52,0x5e,0x55}}, // \xe8\x9c\x92
+{0x8718,{0x4e,0x7f,0x4b,0x3e,0x4a,0x3e,0x3e}}, // \xe8\x9c\x98
+{0x871a,{0x4a,0x5a,0x7f,0x70,0x7f,0x2a,0x4a}}, // \xe8\x9c\x9a
+{0x871c,{0x56,0x4a,0x5e,0x7b,0x5e,0x2a,0x46}}, // \xe8\x9c\x9c
+{0x8725,{0x4e,0x7f,0x1a,0x7f,0x3e,0x0a,0x79}}, // \xe8\x9c\xa5
+{0x8729,{0x4e,0x7b,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe8\x9c\xa9
+{0x8734,{0x4e,0x7b,0x4e,0x27,0x5d,0x35,0x77}}, // \xe8\x9c\xb4
+{0x8737,{0x4e,0x7b,0x16,0x6d,0x56,0x4d,0x16}}, // \xe8\x9c\xb7
+{0x873b,{0x4e,0x7b,0x2e,0x08,0x7a,0x3f,0x7a}}, // \xe8\x9c\xbb
+{0x873f,{0x4e,0x7b,0x56,0x2a,0x7b,0x4a,0x5e}}, // \xe8\x9c\xbf
+{0x8749,{0x4e,0x7b,0x2d,0x2c,0x7d,0x2e,0x2d}}, // \xe8\x9d\x89
+{0x874b,{0x4e,0x7b,0x3d,0x14,0x7d,0x16,0x7d}}, // \xe8\x9d\x8b
+{0x874c,{0x4e,0x7b,0x35,0x7f,0x25,0x2a,0x7f}}, // \xe8\x9d\x8c
+{0x874e,{0x4e,0x7f,0x10,0x3f,0x2d,0x4f,0x78}}, // \xe8\x9d\x8e
+{0x8753,{0x4e,0x7f,0x05,0x73,0x75,0x26,0x54}}, // \xe8\x9d\x93
+{0x8755,{0x7a,0x5d,0x22,0x4e,0x7f,0x4a,0x6e}}, // \xe8\x9d\x95
+{0x8757,{0x4e,0x7b,0x2e,0x50,0x5e,0x7b,0x5e}}, // \xe8\x9d\x97
+{0x8759,{0x4e,0x7b,0x2e,0x11,0x7f,0x35,0x77}}, // \xe8\x9d\x99
+{0x875f,{0x4e,0x7b,0x0f,0x7d,0x2f,0x7d,0x0f}}, // \xe8\x9d\x9f
+{0x8760,{0x4e,0x7b,0x2e,0x71,0x57,0x77,0x71}}, // \xe8\x9d\xa0
+{0x8763,{0x4e,0x7f,0x62,0x1f,0x7a,0x77,0x2e}}, // \xe8\x9d\xa3
+{0x8766,{0x4e,0x7b,0x7f,0x2b,0x58,0x2d,0x5f}}, // \xe8\x9d\xa6
+{0x8768,{0x44,0x75,0x3d,0x47,0x75,0x37,0x48}}, // \xe8\x9d\xa8
+{0x876a,{0x4e,0x7b,0x26,0x5f,0x35,0x57,0x74}}, // \xe8\x9d\xaa
+{0x876e,{0x4e,0x7b,0x4e,0x53,0x2e,0x5e,0x42}}, // \xe8\x9d\xae
+{0x8774,{0x4e,0x7f,0x3a,0x2f,0x7a,0x3f,0x7f}}, // \xe8\x9d\xb4
+{0x8776,{0x4e,0x7b,0x5f,0x32,0x77,0x36,0x57}}, // \xe8\x9d\xb6
+{0x8778,{0x4e,0x7b,0x2e,0x78,0x6f,0x09,0x7f}}, // \xe8\x9d\xb8
+{0x877f,{0x4e,0x7b,0x4e,0x38,0x2f,0x77,0x5c}}, // \xe8\x9d\xbf
+{0x8782,{0x4e,0x7b,0x3e,0x2b,0x0e,0x7f,0x1b}}, // \xe8\x9e\x82
+{0x878d,{0x79,0x2f,0x6f,0x79,0x4e,0x7b,0x6e}}, // \xe8\x9e\x8d
+{0x879f,{0x4e,0x7b,0x2e,0x53,0x1d,0x1d,0x53}}, // \xe8\x9e\x9f
+{0x87a2,{0x4d,0x46,0x5d,0x7c,0x5d,0x26,0x4d}}, // \xe8\x9e\xa2
+{0x87ab,{0x4a,0x47,0x7f,0x76,0x7a,0x25,0x4b}}, // \xe8\x9e\xab
+{0x87af,{0x54,0x4e,0x7f,0x74,0x7a,0x25,0x4b}}, // \xe8\x9e\xaf
+{0x87b3,{0x4e,0x7f,0x55,0x5e,0x7b,0x5e,0x55}}, // \xe8\x9e\xb3
+{0x87ba,{0x4e,0x7b,0x57,0x1d,0x77,0x15,0x57}}, // \xe8\x9e\xba
+{0x87bb,{0x4e,0x7f,0x54,0x7e,0x5b,0x3e,0x54}}, // \xe8\x9e\xbb
+{0x87bd,{0x48,0x7a,0x36,0x4d,0x77,0x38,0x48}}, // \xe8\x9e\xbd
+{0x87c0,{0x4e,0x7f,0x36,0x2a,0x77,0x2a,0x36}}, // \xe8\x9f\x80
+{0x87c4,{0x44,0x4e,0x7f,0x7a,0x77,0x2e,0x48}}, // \xe8\x9f\x84
+{0x87c6,{0x4e,0x7f,0x52,0x5f,0x36,0x5f,0x52}}, // \xe8\x9f\x86
+{0x87c7,{0x2a,0x5a,0x5f,0x7e,0x5f,0x3a,0x52}}, // \xe8\x9f\x87
+{0x87cb,{0x4e,0x7f,0x55,0x2f,0x5d,0x4f,0x55}}, // \xe8\x9f\x8b
+{0x87d0,{0x4e,0x7b,0x35,0x1e,0x7b,0x1e,0x35}}, // \xe8\x9f\x90
+{0x87d2,{0x4e,0x7f,0x2a,0x77,0x22,0x77,0x2a}}, // \xe8\x9f\x92
+{0x87e0,{0x4e,0x7f,0x15,0x6f,0x7d,0x6f,0x15}}, // \xe8\x9f\xa0
+{0x87ef,{0x4e,0x7b,0x5c,0x3e,0x17,0x7e,0x5c}}, // \xe8\x9f\xaf
+{0x87f2,{0x48,0x7e,0x3e,0x4f,0x7e,0x36,0x48}}, // \xe8\x9f\xb2
+{0x87f6,{0x4e,0x7b,0x45,0x57,0x7f,0x55,0x47}}, // \xe8\x9f\xb6
+{0x87f7,{0x4e,0x7b,0x75,0x5e,0x7b,0x5e,0x75}}, // \xe8\x9f\xb7
+{0x87f9,{0x52,0x4d,0x5f,0x78,0x5d,0x3b,0x4f}}, // \xe8\x9f\xb9
+{0x87fb,{0x4e,0x7f,0x2a,0x7b,0x2e,0x3b,0x5a}}, // \xe8\x9f\xbb
+{0x87fe,{0x4e,0x7b,0x3c,0x2e,0x75,0x7f,0x2c}}, // \xe8\x9f\xbe
+{0x8805,{0x4e,0x7f,0x1b,0x7f,0x41,0x7f,0x5b}}, // \xe8\xa0\x85
+{0x880d,{0x4e,0x7f,0x37,0x2d,0x5f,0x3b,0x46}}, // \xe8\xa0\x8d
+{0x880e,{0x4e,0x7f,0x2a,0x67,0x3a,0x77,0x2a}}, // \xe8\xa0\x8e
+{0x880f,{0x4e,0x7f,0x42,0x3d,0x7f,0x31,0x7b}}, // \xe8\xa0\x8f
+{0x8811,{0x4e,0x7b,0x4d,0x36,0x7d,0x36,0x4d}}, // \xe8\xa0\x91
+{0x8815,{0x4e,0x7f,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe8\xa0\x95
+{0x8816,{0x4e,0x7f,0x42,0x5f,0x2e,0x5f,0x4a}}, // \xe8\xa0\x96
+{0x8821,{0x4a,0x7a,0x36,0x4b,0x7f,0x37,0x4a}}, // \xe8\xa0\xa1
+{0x8822,{0x4a,0x76,0x33,0x4f,0x7f,0x36,0x4a}}, // \xe8\xa0\xa2
+{0x8823,{0x4e,0x7b,0x2e,0x1f,0x6d,0x3f,0x6d}}, // \xe8\xa0\xa3
+{0x8827,{0x4a,0x76,0x3e,0x4f,0x7e,0x36,0x4a}}, // \xe8\xa0\xa7
+{0x8831,{0x50,0x7e,0x6e,0x77,0x7e,0x6e,0x54}}, // \xe8\xa0\xb1
+{0x8836,{0x45,0x73,0x3f,0x4d,0x7b,0x37,0x45}}, // \xe8\xa0\xb6
+{0x8839,{0x4a,0x76,0x3a,0x5f,0x7a,0x36,0x4a}}, // \xe8\xa0\xb9
+{0x883b,{0x4a,0x5d,0x7a,0x77,0x7a,0x3d,0x48}}, // \xe8\xa0\xbb
+{0x8840,{0x40,0x7e,0x43,0x7e,0x42,0x7e,0x40}}, // \xe8\xa1\x80
+{0x8842,{0x40,0x7e,0x3f,0x45,0x3f,0x51,0x7f}}, // \xe8\xa1\x82
+{0x8844,{0x40,0x7e,0x3f,0x49,0x7f,0x49,0x7f}}, // \xe8\xa1\x84
+{0x8846,{0x54,0x2e,0x06,0x7f,0x16,0x26,0x54}}, // \xe8\xa1\x86
+{0x884c,{0x0a,0x7d,0x04,0x05,0x45,0x7d,0x04}}, // \xe8\xa1\x8c
+{0x884d,{0x0a,0x7d,0x00,0x75,0x00,0x45,0x7d}}, // \xe8\xa1\x8d
+{0x8852,{0x0a,0x7d,0x2a,0x37,0x2a,0x45,0x7d}}, // \xe8\xa1\x92
+{0x8853,{0x0a,0x7d,0x1a,0x7f,0x1a,0x45,0x7d}}, // \xe8\xa1\x93
+{0x8857,{0x0a,0x7d,0x2a,0x3f,0x2a,0x45,0x7d}}, // \xe8\xa1\x97
+{0x8859,{0x0a,0x7d,0x00,0x6d,0x6f,0x05,0x7d}}, // \xe8\xa1\x99
+{0x885b,{0x0a,0x7d,0x2a,0x77,0x2e,0x45,0x7d}}, // \xe8\xa1\x9b
+{0x885d,{0x0a,0x7d,0x5a,0x7e,0x59,0x05,0x7d}}, // \xe8\xa1\x9d
+{0x885e,{0x0a,0x7d,0x3a,0x77,0x3e,0x45,0x7d}}, // \xe8\xa1\x9e
+{0x8861,{0x0a,0x7d,0x5a,0x3d,0x5b,0x05,0x7d}}, // \xe8\xa1\xa1
+{0x8862,{0x0a,0x7d,0x23,0x7b,0x70,0x5b,0x7d}}, // \xe8\xa1\xa2
+{0x8863,{0x12,0x52,0x7a,0x47,0x1a,0x32,0x4a}}, // \xe8\xa1\xa3
+{0x8868,{0x28,0x2a,0x7a,0x4f,0x1a,0x2a,0x50}}, // \xe8\xa1\xa8
+{0x886b,{0x12,0x7b,0x36,0x00,0x4a,0x4a,0x25}}, // \xe8\xa1\xab
+{0x8870,{0x2a,0x2a,0x7e,0x57,0x3e,0x4a,0x4a}}, // \xe8\xa1\xb0
+{0x8872,{0x12,0x7b,0x36,0x7c,0x15,0x4f,0x7c}}, // \xe8\xa1\xb2
+{0x8875,{0x12,0x7b,0x36,0x7f,0x49,0x49,0x7f}}, // \xe8\xa1\xb5
+{0x8877,{0x22,0x2e,0x7a,0x4f,0x1a,0x2e,0x52}}, // \xe8\xa1\xb7
+{0x887d,{0x12,0x7b,0x36,0x08,0x4a,0x7e,0x49}}, // \xe8\xa1\xbd
+{0x887e,{0x54,0x34,0x76,0x55,0x3e,0x54,0x54}}, // \xe8\xa1\xbe
+{0x887f,{0x12,0x7b,0x36,0x12,0x55,0x36,0x14}}, // \xe8\xa1\xbf
+{0x8881,{0x44,0x3e,0x76,0x57,0x36,0x5e,0x44}}, // \xe8\xa2\x81
+{0x8882,{0x12,0x7b,0x36,0x48,0x4a,0x3f,0x4e}}, // \xe8\xa2\x82
+{0x8888,{0x5a,0x37,0x7a,0x5e,0x3e,0x5a,0x5e}}, // \xe8\xa2\x88
+{0x888b,{0x54,0x3e,0x71,0x5a,0x33,0x56,0x5b}}, // \xe8\xa2\x8b
+{0x888d,{0x12,0x7b,0x36,0x04,0x7b,0x5a,0x5e}}, // \xe8\xa2\x8d
+{0x8892,{0x12,0x7b,0x36,0x40,0x5f,0x55,0x5f}}, // \xe8\xa2\x92
+{0x8896,{0x12,0x7b,0x36,0x7e,0x4a,0x7f,0x7e}}, // \xe8\xa2\x96
+{0x8897,{0x12,0x7b,0x36,0x42,0x55,0x2a,0x14}}, // \xe8\xa2\x97
+{0x8899,{0x12,0x7b,0x36,0x7e,0x4b,0x4a,0x7e}}, // \xe8\xa2\x99
+{0x889e,{0x2a,0x26,0x7a,0x5b,0x3a,0x46,0x4a}}, // \xe8\xa2\x9e
+{0x88a2,{0x12,0x7b,0x36,0x2a,0x29,0x7c,0x29}}, // \xe8\xa2\xa2
+{0x88a4,{0x52,0x36,0x6e,0x5f,0x2e,0x4a,0x5a}}, // \xe8\xa2\xa4
+{0x88ab,{0x12,0x7b,0x36,0x7e,0x5a,0x2f,0x5e}}, // \xe8\xa2\xab
+{0x88ae,{0x12,0x7b,0x36,0x24,0x5b,0x7e,0x32}}, // \xe8\xa2\xae
+{0x88b0,{0x54,0x3c,0x77,0x5f,0x35,0x5f,0x54}}, // \xe8\xa2\xb0
+{0x88b1,{0x12,0x7b,0x7e,0x01,0x44,0x3f,0x45}}, // \xe8\xa2\xb1
+{0x88b4,{0x12,0x7b,0x36,0x0a,0x1e,0x57,0x6a}}, // \xe8\xa2\xb4
+{0x88b5,{0x12,0x7b,0x7e,0x01,0x4a,0x7e,0x49}}, // \xe8\xa2\xb5
+{0x88b7,{0x12,0x7b,0x36,0x00,0x76,0x55,0x76}}, // \xe8\xa2\xb7
+{0x88bf,{0x12,0x7b,0x36,0x48,0x5a,0x7f,0x5a}}, // \xe8\xa2\xbf
+{0x88c1,{0x28,0x7a,0x5f,0x2a,0x4f,0x38,0x5a}}, // \xe8\xa3\x81
+{0x88c2,{0x55,0x3b,0x77,0x51,0x36,0x50,0x5f}}, // \xe8\xa3\x82
+{0x88c3,{0x12,0x7b,0x36,0x08,0x7f,0x1a,0x2a}}, // \xe8\xa3\x83
+{0x88c4,{0x12,0x7b,0x36,0x7d,0x00,0x45,0x7d}}, // \xe8\xa3\x84
+{0x88c5,{0x5a,0x3f,0x72,0x5a,0x3f,0x5a,0x52}}, // \xe8\xa3\x85
+{0x88cf,{0x52,0x3e,0x7a,0x5f,0x3a,0x5e,0x52}}, // \xe8\xa3\x8f
+{0x88d4,{0x7a,0x36,0x1e,0x7b,0x76,0x1a,0x7a}}, // \xe8\xa3\x94
+{0x88d5,{0x12,0x7b,0x36,0x09,0x64,0x69,0x12}}, // \xe8\xa3\x95
+{0x88d8,{0x5a,0x36,0x7a,0x5f,0x36,0x5b,0x52}}, // \xe8\xa3\x98
+{0x88d9,{0x12,0x7b,0x36,0x25,0x7f,0x75,0x6f}}, // \xe8\xa3\x99
+{0x88dc,{0x12,0x7b,0x36,0x7a,0x7f,0x2a,0x7b}}, // \xe8\xa3\x9c
+{0x88dd,{0x5b,0x36,0x7f,0x52,0x3a,0x5f,0x5a}}, // \xe8\xa3\x9d
+{0x88df,{0x55,0x30,0x7a,0x58,0x37,0x54,0x52}}, // \xe8\xa3\x9f
+{0x88e1,{0x12,0x7b,0x36,0x5f,0x55,0x7f,0x5f}}, // \xe8\xa3\xa1
+{0x88e8,{0x12,0x7b,0x36,0x2e,0x3f,0x7a,0x2e}}, // \xe8\xa3\xa8
+{0x88f2,{0x12,0x7b,0x36,0x7d,0x35,0x7f,0x7d}}, // \xe8\xa3\xb2
+{0x88f3,{0x56,0x33,0x7e,0x5b,0x3e,0x53,0x56}}, // \xe8\xa3\xb3
+{0x88f4,{0x56,0x36,0x7f,0x50,0x3f,0x56,0x56}}, // \xe8\xa3\xb4
+{0x88f8,{0x12,0x7b,0x57,0x35,0x7f,0x35,0x57}}, // \xe8\xa3\xb8
+{0x88f9,{0x52,0x2a,0x7e,0x5f,0x2e,0x4a,0x52}}, // \xe8\xa3\xb9
+{0x88fc,{0x12,0x7b,0x36,0x27,0x5d,0x35,0x77}}, // \xe8\xa3\xbc
+{0x88fd,{0x54,0x3b,0x7f,0x5a,0x36,0x50,0x5f}}, // \xe8\xa3\xbd
+{0x88fe,{0x12,0x7b,0x36,0x1f,0x6b,0x5f,0x6b}}, // \xe8\xa3\xbe
+{0x8902,{0x12,0x7b,0x36,0x3f,0x2a,0x7f,0x08}}, // \xe8\xa4\x82
+{0x8904,{0x12,0x7b,0x36,0x5a,0x7f,0x3e,0x52}}, // \xe8\xa4\x84
+{0x8907,{0x12,0x7b,0x36,0x53,0x2e,0x5e,0x42}}, // \xe8\xa4\x87
+{0x890a,{0x12,0x7b,0x36,0x21,0x7f,0x35,0x77}}, // \xe8\xa4\x8a
+{0x890c,{0x12,0x7b,0x36,0x27,0x3d,0x7f,0x27}}, // \xe8\xa4\x8c
+{0x8910,{0x12,0x7b,0x36,0x3f,0x2d,0x4f,0x78}}, // \xe8\xa4\x90
+{0x8912,{0x2a,0x2e,0x72,0x4f,0x1a,0x2e,0x52}}, // \xe8\xa4\x92
+{0x8913,{0x12,0x7b,0x7e,0x37,0x7d,0x37,0x50}}, // \xe8\xa4\x93
+{0x891d,{0x12,0x7b,0x36,0x2d,0x2d,0x7e,0x2d}}, // \xe8\xa4\x9d
+{0x891e,{0x12,0x7b,0x36,0x4f,0x6d,0x6b,0x4f}}, // \xe8\xa4\x9e
+{0x8925,{0x12,0x7b,0x3e,0x37,0x5f,0x7b,0x15}}, // \xe8\xa4\xa5
+{0x892a,{0x12,0x7b,0x36,0x65,0x50,0x4f,0x57}}, // \xe8\xa4\xaa
+{0x892b,{0x12,0x7b,0x3f,0x5d,0x25,0x6f,0x4b}}, // \xe8\xa4\xab
+{0x8936,{0x12,0x7b,0x36,0x05,0x6f,0x75,0x6f}}, // \xe8\xa4\xb6
+{0x8938,{0x12,0x7b,0x56,0x7e,0x5b,0x3e,0x54}}, // \xe8\xa4\xb8
+{0x893b,{0x56,0x3e,0x7e,0x57,0x2e,0x5e,0x52}}, // \xe8\xa4\xbb
+{0x8941,{0x12,0x7b,0x36,0x5d,0x77,0x7e,0x5d}}, // \xe8\xa5\x81
+{0x8943,{0x2a,0x36,0x72,0x4f,0x1a,0x2e,0x52}}, // \xe8\xa5\x83
+{0x8944,{0x52,0x36,0x7e,0x5b,0x3e,0x56,0x52}}, // \xe8\xa5\x84
+{0x894c,{0x12,0x7b,0x36,0x23,0x3f,0x7c,0x23}}, // \xe8\xa5\x8c
+{0x894d,{0x12,0x7b,0x56,0x3c,0x7b,0x3e,0x5b}}, // \xe8\xa5\x8d
+{0x8956,{0x12,0x7b,0x36,0x5e,0x5b,0x36,0x5e}}, // \xe8\xa5\x96
+{0x895e,{0x54,0x3f,0x7b,0x50,0x36,0x5b,0x56}}, // \xe8\xa5\x9e
+{0x895f,{0x12,0x7b,0x56,0x1f,0x78,0x1a,0x57}}, // \xe8\xa5\x9f
+{0x8960,{0x12,0x7b,0x77,0x5e,0x7b,0x5e,0x75}}, // \xe8\xa5\xa0
+{0x8964,{0x12,0x7b,0x36,0x4f,0x60,0x6b,0x4a}}, // \xe8\xa5\xa4
+{0x8966,{0x12,0x7b,0x76,0x2b,0x7f,0x2b,0x66}}, // \xe8\xa5\xa6
+{0x896a,{0x12,0x7b,0x36,0x7a,0x4f,0x3e,0x5b}}, // \xe8\xa5\xaa
+{0x896d,{0x12,0x7b,0x36,0x6f,0x6a,0x1f,0x5d}}, // \xe8\xa5\xad
+{0x896f,{0x12,0x7b,0x36,0x7b,0x56,0x3f,0x5f}}, // \xe8\xa5\xaf
+{0x8972,{0x5a,0x3e,0x7b,0x5e,0x3a,0x57,0x5d}}, // \xe8\xa5\xb2
+{0x8974,{0x12,0x7b,0x7f,0x2b,0x7c,0x2b,0x7f}}, // \xe8\xa5\xb4
+{0x8977,{0x12,0x7b,0x2e,0x79,0x7e,0x3d,0x2f}}, // \xe8\xa5\xb7
+{0x897e,{0x7a,0x0a,0x3e,0x2a,0x3e,0x0a,0x7a}}, // \xe8\xa5\xbe
+{0x897f,{0x7d,0x55,0x4f,0x45,0x5f,0x55,0x7d}}, // \xe8\xa5\xbf
+{0x8981,{0x51,0x57,0x75,0x5f,0x35,0x57,0x51}}, // \xe8\xa6\x81
+{0x8983,{0x21,0x27,0x3b,0x6f,0x3b,0x27,0x21}}, // \xe8\xa6\x83
+{0x8986,{0x29,0x77,0x45,0x57,0x2d,0x5f,0x41}}, // \xe8\xa6\x86
+{0x8987,{0x29,0x77,0x2d,0x47,0x3d,0x2f,0x79}}, // \xe8\xa6\x87
+{0x8988,{0x59,0x3f,0x7b,0x17,0x5b,0x2f,0x59}}, // \xe8\xa6\x88
+{0x898a,{0x29,0x77,0x2b,0x47,0x1b,0x5f,0x69}}, // \xe8\xa6\x8a
+{0x898b,{0x40,0x5f,0x35,0x15,0x75,0x5f,0x60}}, // \xe8\xa6\x8b
+{0x898f,{0x4a,0x3f,0x2a,0x5f,0x35,0x75,0x5f}}, // \xe8\xa6\x8f
+{0x8993,{0x44,0x43,0x3d,0x17,0x75,0x5d,0x62}}, // \xe8\xa6\x93
+{0x8996,{0x12,0x7b,0x16,0x5f,0x35,0x75,0x5f}}, // \xe8\xa6\x96
+{0x8997,{0x35,0x35,0x7f,0x40,0x3f,0x75,0x5f}}, // \xe8\xa6\x97
+{0x8998,{0x70,0x5f,0x74,0x5f,0x35,0x75,0x5f}}, // \xe8\xa6\x98
+{0x899a,{0x46,0x43,0x3e,0x2b,0x7e,0x43,0x66}}, // \xe8\xa6\x9a
+{0x89a1,{0x51,0x4d,0x3f,0x2d,0x5f,0x35,0x5f}}, // \xe8\xa6\xa1
+{0x89a6,{0x75,0x73,0x25,0x56,0x3f,0x75,0x5f}}, // \xe8\xa6\xa6
+{0x89a7,{0x47,0x47,0x3d,0x38,0x7b,0x46,0x66}}, // \xe8\xa6\xa7
+{0x89a9,{0x28,0x1a,0x6f,0x6a,0x5f,0x35,0x5f}}, // \xe8\xa6\xa9
+{0x89aa,{0x52,0x36,0x7b,0x36,0x5f,0x35,0x5f}}, // \xe8\xa6\xaa
+{0x89ac,{0x4b,0x5a,0x6b,0x5a,0x3f,0x75,0x5f}}, // \xe8\xa6\xac
+{0x89af,{0x2a,0x7f,0x3a,0x7f,0x5f,0x35,0x5f}}, // \xe8\xa6\xaf
+{0x89b2,{0x5a,0x5f,0x7a,0x5f,0x3f,0x75,0x5f}}, // \xe8\xa6\xb2
+{0x89b3,{0x14,0x7b,0x7e,0x4a,0x3f,0x75,0x5f}}, // \xe8\xa6\xb3
+{0x89ba,{0x4c,0x46,0x3d,0x2e,0x7d,0x47,0x6c}}, // \xe8\xa6\xba
+{0x89bd,{0x47,0x47,0x3d,0x38,0x7f,0x46,0x66}}, // \xe8\xa6\xbd
+{0x89bf,{0x4e,0x3e,0x3b,0x4e,0x3f,0x75,0x5f}}, // \xe8\xa6\xbf
+{0x89c0,{0x26,0x7f,0x7a,0x57,0x3f,0x75,0x5f}}, // \xe8\xa7\x80
+{0x89d2,{0x42,0x3e,0x15,0x1d,0x17,0x54,0x7c}}, // \xe8\xa7\x92
+{0x89da,{0x42,0x3d,0x7f,0x3e,0x42,0x3e,0x61}}, // \xe8\xa7\x9a
+{0x89dc,{0x4e,0x38,0x2f,0x3a,0x28,0x7f,0x0a}}, // \xe8\xa7\x9c
+{0x89dd,{0x42,0x3d,0x7f,0x7e,0x4a,0x5e,0x69}}, // \xe8\xa7\x9d
+{0x89e3,{0x42,0x3d,0x5f,0x7c,0x2d,0x7b,0x2f}}, // \xe8\xa7\xa3
+{0x89e6,{0x42,0x3d,0x7f,0x4a,0x7f,0x4a,0x6e}}, // \xe8\xa7\xa6
+{0x89e7,{0x42,0x3d,0x7f,0x22,0x2b,0x7e,0x2b}}, // \xe8\xa7\xa7
+{0x89f4,{0x42,0x3d,0x7f,0x24,0x5f,0x3e,0x72}}, // \xe8\xa7\xb4
+{0x89f8,{0x42,0x3d,0x7f,0x4b,0x75,0x37,0x7f}}, // \xe8\xa7\xb8
+{0x8a00,{0x02,0x62,0x6b,0x6b,0x6b,0x62,0x02}}, // \xe8\xa8\x80
+{0x8a02,{0x6a,0x6b,0x62,0x01,0x41,0x7f,0x01}}, // \xe8\xa8\x82
+{0x8a03,{0x6a,0x6b,0x62,0x00,0x7f,0x08,0x10}}, // \xe8\xa8\x83
+{0x8a08,{0x6a,0x6b,0x62,0x04,0x04,0x7f,0x04}}, // \xe8\xa8\x88
+{0x8a0a,{0x6b,0x62,0x49,0x3f,0x05,0x7f,0x40}}, // \xe8\xa8\x8a
+{0x8a0c,{0x6a,0x6b,0x00,0x42,0x42,0x7e,0x42}}, // \xe8\xa8\x8c
+{0x8a0e,{0x6a,0x6b,0x00,0x0a,0x52,0x7f,0x02}}, // \xe8\xa8\x8e
+{0x8a10,{0x6a,0x63,0x08,0x09,0x7f,0x09,0x08}}, // \xe8\xa8\x90
+{0x8a13,{0x6a,0x6b,0x40,0x3f,0x1e,0x00,0x7f}}, // \xe8\xa8\x93
+{0x8a16,{0x6a,0x6b,0x04,0x23,0x56,0x4e,0x62}}, // \xe8\xa8\x96
+{0x8a17,{0x6a,0x63,0x08,0x0a,0x7e,0x49,0x68}}, // \xe8\xa8\x97
+{0x8a18,{0x6a,0x6b,0x02,0x79,0x49,0x49,0x6f}}, // \xe8\xa8\x98
+{0x8a1b,{0x6a,0x6b,0x04,0x7e,0x01,0x7f,0x44}}, // \xe8\xa8\x9b
+{0x8a1d,{0x6a,0x63,0x28,0x2f,0x59,0x7f,0x09}}, // \xe8\xa8\x9d
+{0x8a1f,{0x6a,0x6b,0x44,0x63,0x58,0x23,0x44}}, // \xe8\xa8\x9f
+{0x8a23,{0x6a,0x63,0x48,0x4a,0x3f,0x4e,0x48}}, // \xe8\xa8\xa3
+{0x8a25,{0x6a,0x6b,0x7c,0x15,0x0f,0x54,0x7c}}, // \xe8\xa8\xa5
+{0x8a2a,{0x6a,0x6b,0x42,0x3e,0x0b,0x4a,0x7a}}, // \xe8\xa8\xaa
+{0x8a2d,{0x6a,0x6b,0x44,0x5b,0x29,0x5f,0x44}}, // \xe8\xa8\xad
+{0x8a31,{0x6a,0x6b,0x14,0x13,0x7e,0x12,0x10}}, // \xe8\xa8\xb1
+{0x8a33,{0x6a,0x6b,0x40,0x3f,0x05,0x1d,0x67}}, // \xe8\xa8\xb3
+{0x8a34,{0x6a,0x6b,0x40,0x3e,0x1a,0x79,0x28}}, // \xe8\xa8\xb4
+{0x8a36,{0x6a,0x6b,0x02,0x1d,0x15,0x5d,0x7f}}, // \xe8\xa8\xb6
+{0x8a3a,{0x6a,0x6b,0x04,0x42,0x55,0x2a,0x14}}, // \xe8\xa8\xba
+{0x8a3b,{0x6a,0x6b,0x44,0x55,0x7e,0x54,0x44}}, // \xe8\xa8\xbb
+{0x8a3c,{0x6a,0x6b,0x42,0x79,0x41,0x7f,0x49}}, // \xe8\xa8\xbc
+{0x8a41,{0x6a,0x6b,0x04,0x74,0x5f,0x74,0x04}}, // \xe8\xa9\x81
+{0x8a46,{0x6a,0x6b,0x00,0x7e,0x4a,0x5e,0x69}}, // \xe8\xa9\x86
+{0x8a48,{0x17,0x75,0x5f,0x5d,0x5f,0x75,0x17}}, // \xe8\xa9\x88
+{0x8a50,{0x6a,0x6b,0x04,0x03,0x7e,0x2a,0x2a}}, // \xe8\xa9\x90
+{0x8a51,{0x6a,0x6b,0x06,0x7a,0x53,0x4a,0x66}}, // \xe8\xa9\x91
+{0x8a52,{0x6a,0x63,0x08,0x6c,0x6b,0x64,0x08}}, // \xe8\xa9\x92
+{0x8a54,{0x6a,0x6b,0x02,0x75,0x53,0x59,0x7f}}, // \xe8\xa9\x94
+{0x8a55,{0x6b,0x6a,0x15,0x11,0x7f,0x11,0x15}}, // \xe8\xa9\x95
+{0x8a5b,{0x6a,0x6b,0x40,0x7f,0x55,0x7f,0x40}}, // \xe8\xa9\x9b
+{0x8a5e,{0x6a,0x6b,0x02,0x35,0x35,0x41,0x7f}}, // \xe8\xa9\x9e
+{0x8a60,{0x6a,0x63,0x28,0x5d,0x7d,0x10,0x28}}, // \xe8\xa9\xa0
+{0x8a62,{0x6a,0x6b,0x04,0x3f,0x2a,0x3e,0x7e}}, // \xe8\xa9\xa2
+{0x8a63,{0x6a,0x6b,0x00,0x6f,0x6a,0x6a,0x6d}}, // \xe8\xa9\xa3
+{0x8a66,{0x6a,0x6b,0x54,0x74,0x57,0x3c,0x45}}, // \xe8\xa9\xa6
+{0x8a69,{0x6a,0x63,0x28,0x6a,0x2f,0x7a,0x28}}, // \xe8\xa9\xa9
+{0x8a6b,{0x6a,0x63,0x16,0x1a,0x7b,0x56,0x56}}, // \xe8\xa9\xab
+{0x8a6c,{0x6a,0x6b,0x40,0x3e,0x0a,0x6a,0x69}}, // \xe8\xa9\xac
+{0x8a6d,{0x6a,0x6b,0x42,0x3e,0x7d,0x4f,0x5c}}, // \xe8\xa9\xad
+{0x8a6e,{0x6a,0x6b,0x44,0x56,0x7d,0x56,0x44}}, // \xe8\xa9\xae
+{0x8a70,{0x6a,0x6b,0x02,0x6a,0x6f,0x6a,0x02}}, // \xe8\xa9\xb0
+{0x8a71,{0x6a,0x6b,0x04,0x76,0x5e,0x75,0x04}}, // \xe8\xa9\xb1
+{0x8a72,{0x6a,0x6b,0x00,0x4a,0x56,0x2b,0x52}}, // \xe8\xa9\xb2
+{0x8a73,{0x6b,0x6a,0x22,0x2b,0x7e,0x2b,0x22}}, // \xe8\xa9\xb3
+{0x8a7c,{0x6a,0x63,0x0a,0x57,0x42,0x3a,0x52}}, // \xe8\xa9\xbc
+{0x8a82,{0x6a,0x63,0x4a,0x3f,0x00,0x7f,0x4a}}, // \xe8\xaa\x82
+{0x8a84,{0x6a,0x6b,0x52,0x36,0x7f,0x36,0x55}}, // \xe8\xaa\x84
+{0x8a85,{0x6a,0x63,0x4c,0x2b,0x7f,0x2a,0x48}}, // \xe8\xaa\x85
+{0x8a87,{0x6a,0x63,0x0a,0x16,0x1b,0x56,0x6a}}, // \xe8\xaa\x87
+{0x8a89,{0x0a,0x67,0x6a,0x6b,0x6a,0x67,0x0a}}, // \xe8\xaa\x89
+{0x8a8c,{0x6a,0x6b,0x42,0x2a,0x4f,0x4a,0x62}}, // \xe8\xaa\x8c
+{0x8a8d,{0x6a,0x6b,0x40,0x2b,0x45,0x4b,0x6f}}, // \xe8\xaa\x8d
+{0x8a91,{0x6b,0x62,0x55,0x3e,0x49,0x7f,0x49}}, // \xe8\xaa\x91
+{0x8a93,{0x2a,0x3f,0x70,0x6e,0x66,0x3d,0x24}}, // \xe8\xaa\x93
+{0x8a95,{0x6b,0x62,0x55,0x3b,0x52,0x5e,0x55}}, // \xe8\xaa\x95
+{0x8a98,{0x6a,0x63,0x5a,0x37,0x1f,0x37,0x6a}}, // \xe8\xaa\x98
+{0x8a9a,{0x6a,0x6b,0x02,0x7d,0x2a,0x7d,0x02}}, // \xe8\xaa\x9a
+{0x8a9e,{0x6a,0x6b,0x14,0x7d,0x57,0x7d,0x10}}, // \xe8\xaa\x9e
+{0x8aa0,{0x6a,0x63,0x7e,0x2a,0x5a,0x3f,0x52}}, // \xe8\xaa\xa0
+{0x8aa1,{0x6a,0x63,0x0a,0x3e,0x4a,0x3f,0x52}}, // \xe8\xaa\xa1
+{0x8aa3,{0x6b,0x6a,0x51,0x4d,0x7f,0x4d,0x51}}, // \xe8\xaa\xa3
+{0x8aa4,{0x6a,0x6b,0x00,0x56,0x14,0x1f,0x53}}, // \xe8\xaa\xa4
+{0x8aa5,{0x6a,0x63,0x0c,0x6b,0x7f,0x6a,0x08}}, // \xe8\xaa\xa5
+{0x8aa6,{0x6a,0x6b,0x7c,0x15,0x7d,0x17,0x7d}}, // \xe8\xaa\xa6
+{0x8aa8,{0x6a,0x6b,0x14,0x33,0x2e,0x7e,0x12}}, // \xe8\xaa\xa8
+{0x8aac,{0x6b,0x62,0x4e,0x3b,0x0a,0x7b,0x4e}}, // \xe8\xaa\xac
+{0x8aad,{0x6a,0x63,0x5a,0x2a,0x0f,0x6a,0x5a}}, // \xe8\xaa\xad
+{0x8ab0,{0x6a,0x6b,0x04,0x7f,0x4a,0x7f,0x4a}}, // \xe8\xaa\xb0
+{0x8ab2,{0x6b,0x6a,0x57,0x35,0x7f,0x35,0x57}}, // \xe8\xaa\xb2
+{0x8ab9,{0x6a,0x63,0x2a,0x7f,0x00,0x7f,0x2a}}, // \xe8\xaa\xb9
+{0x8abc,{0x6a,0x6b,0x00,0x46,0x7a,0x7b,0x46}}, // \xe8\xaa\xbc
+{0x8abf,{0x6b,0x62,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe8\xaa\xbf
+{0x8ac2,{0x6a,0x6b,0x00,0x7a,0x41,0x6d,0x7b}}, // \xe8\xab\x82
+{0x8ac4,{0x6a,0x6b,0x22,0x2e,0x6b,0x3e,0x22}}, // \xe8\xab\x84
+{0x8ac7,{0x6b,0x6a,0x55,0x22,0x19,0x22,0x55}}, // \xe8\xab\x87
+{0x8acb,{0x6a,0x63,0x08,0x7a,0x2f,0x7a,0x08}}, // \xe8\xab\x8b
+{0x8acc,{0x6a,0x6b,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe8\xab\x8c
+{0x8acd,{0x6a,0x6b,0x12,0x55,0x7f,0x3d,0x12}}, // \xe8\xab\x8d
+{0x8acf,{0x6b,0x6a,0x21,0x3f,0x7f,0x12,0x2e}}, // \xe8\xab\x8f
+{0x8ad2,{0x6a,0x6b,0x22,0x4e,0x7b,0x0e,0x22}}, // \xe8\xab\x92
+{0x8ad6,{0x6a,0x6b,0x74,0x32,0x75,0x36,0x74}}, // \xe8\xab\x96
+{0x8ada,{0x6a,0x63,0x46,0x32,0x46,0x7f,0x56}}, // \xe8\xab\x9a
+{0x8adb,{0x6a,0x63,0x5e,0x55,0x3e,0x52,0x5e}}, // \xe8\xab\x9b
+{0x8adc,{0x6b,0x62,0x5f,0x32,0x77,0x36,0x57}}, // \xe8\xab\x9c
+{0x8ade,{0x6b,0x6a,0x41,0x3f,0x75,0x37,0x71}}, // \xe8\xab\x9e
+{0x8ae0,{0x6a,0x6b,0x00,0x46,0x72,0x77,0x46}}, // \xe8\xab\xa0
+{0x8ae1,{0x6a,0x6b,0x42,0x71,0x76,0x7d,0x42}}, // \xe8\xab\xa1
+{0x8ae2,{0x6b,0x6a,0x27,0x3d,0x7f,0x3d,0x27}}, // \xe8\xab\xa2
+{0x8ae4,{0x6a,0x6b,0x00,0x0b,0x1f,0x5c,0x6b}}, // \xe8\xab\xa4
+{0x8ae6,{0x6a,0x63,0x1a,0x6e,0x3b,0x6e,0x1a}}, // \xe8\xab\xa6
+{0x8ae7,{0x6b,0x62,0x0f,0x6a,0x70,0x6f,0x0a}}, // \xe8\xab\xa7
+{0x8aeb,{0x6a,0x6b,0x42,0x2e,0x7f,0x2e,0x4e}}, // \xe8\xab\xab
+{0x8aed,{0x6a,0x6b,0x04,0x72,0x75,0x06,0x74}}, // \xe8\xab\xad
+{0x8aee,{0x6b,0x6a,0x11,0x64,0x73,0x6e,0x76}}, // \xe8\xab\xae
+{0x8af1,{0x6a,0x63,0x28,0x3a,0x2f,0x7a,0x2e}}, // \xe8\xab\xb1
+{0x8af3,{0x6a,0x63,0x0a,0x6e,0x6b,0x6e,0x0a}}, // \xe8\xab\xb3
+{0x8af7,{0x6b,0x62,0x3f,0x4d,0x7f,0x2d,0x7f}}, // \xe8\xab\xb7
+{0x8af8,{0x6a,0x63,0x28,0x1a,0x6f,0x6a,0x69}}, // \xe8\xab\xb8
+{0x8afa,{0x6a,0x63,0x7a,0x0e,0x5b,0x4e,0x2a}}, // \xe8\xab\xba
+{0x8afe,{0x6b,0x62,0x2a,0x1f,0x6a,0x6b,0x6a}}, // \xe8\xab\xbe
+{0x8b00,{0x6b,0x6a,0x52,0x3f,0x7a,0x3f,0x52}}, // \xe8\xac\x80
+{0x8b01,{0x6a,0x6b,0x10,0x3f,0x2d,0x4f,0x78}}, // \xe8\xac\x81
+{0x8b02,{0x6b,0x62,0x0f,0x7d,0x2f,0x7d,0x0f}}, // \xe8\xac\x82
+{0x8b04,{0x7f,0x15,0x7f,0x15,0x6c,0x6f,0x15}}, // \xe8\xac\x84
+{0x8b07,{0x16,0x6a,0x7e,0x7b,0x7e,0x6a,0x16}}, // \xe8\xac\x87
+{0x8b0c,{0x6a,0x6b,0x02,0x2d,0x49,0x7f,0x09}}, // \xe8\xac\x8c
+{0x8b0e,{0x6b,0x62,0x79,0x54,0x4d,0x7e,0x55}}, // \xe8\xac\x8e
+{0x8b10,{0x6a,0x6b,0x54,0x6e,0x79,0x74,0x5a}}, // \xe8\xac\x90
+{0x8b14,{0x6a,0x6b,0x42,0x3c,0x74,0x5f,0x5a}}, // \xe8\xac\x94
+{0x8b16,{0x6a,0x6b,0x44,0x53,0x2b,0x5f,0x44}}, // \xe8\xac\x96
+{0x8b17,{0x6a,0x63,0x1a,0x4e,0x3b,0x6e,0x1a}}, // \xe8\xac\x97
+{0x8b19,{0x6b,0x6a,0x52,0x37,0x7e,0x3f,0x4a}}, // \xe8\xac\x99
+{0x8b1a,{0x6a,0x6b,0x52,0x6d,0x64,0x6d,0x52}}, // \xe8\xac\x9a
+{0x8b1b,{0x6b,0x62,0x2a,0x7f,0x3a,0x7f,0x2a}}, // \xe8\xac\x9b
+{0x8b1d,{0x6a,0x63,0x5e,0x2b,0x7e,0x1a,0x7f}}, // \xe8\xac\x9d
+{0x8b20,{0x6a,0x6b,0x10,0x6a,0x4d,0x7b,0x68}}, // \xe8\xac\xa0
+{0x8b21,{0x6a,0x6b,0x60,0x4a,0x7e,0x49,0x6b}}, // \xe8\xac\xa1
+{0x8b26,{0x1a,0x76,0x57,0x52,0x5b,0x75,0x1b}}, // \xe8\xac\xa6
+{0x8b28,{0x6b,0x6a,0x52,0x5f,0x36,0x5f,0x52}}, // \xe8\xac\xa8
+{0x8b2b,{0x6a,0x63,0x7a,0x6e,0x5b,0x6e,0x7a}}, // \xe8\xac\xab
+{0x8b2c,{0x6b,0x6a,0x11,0x4b,0x54,0x29,0x13}}, // \xe8\xac\xac
+{0x8b33,{0x6b,0x62,0x7f,0x71,0x47,0x77,0x71}}, // \xe8\xac\xb3
+{0x8b39,{0x6b,0x62,0x5a,0x5f,0x7a,0x5f,0x5a}}, // \xe8\xac\xb9
+{0x8b3e,{0x6a,0x63,0x4c,0x5f,0x2d,0x5f,0x4c}}, // \xe8\xac\xbe
+{0x8b41,{0x6b,0x62,0x2a,0x3f,0x7e,0x3f,0x2a}}, // \xe8\xad\x81
+{0x8b49,{0x6b,0x6a,0x45,0x5b,0x69,0x5a,0x45}}, // \xe8\xad\x89
+{0x8b4c,{0x6a,0x6b,0x52,0x1d,0x57,0x1d,0x72}}, // \xe8\xad\x8c
+{0x8b4e,{0x6a,0x63,0x7a,0x37,0x5f,0x33,0x76}}, // \xe8\xad\x8e
+{0x8b4f,{0x6a,0x63,0x4a,0x3d,0x48,0x3a,0x55}}, // \xe8\xad\x8f
+{0x8b56,{0x6a,0x63,0x14,0x6f,0x76,0x6f,0x16}}, // \xe8\xad\x96
+{0x8b58,{0x6a,0x63,0x0a,0x6f,0x6e,0x3f,0x55}}, // \xe8\xad\x98
+{0x8b5a,{0x6b,0x6a,0x21,0x3b,0x6b,0x3b,0x21}}, // \xe8\xad\x9a
+{0x8b5b,{0x6b,0x62,0x0a,0x77,0x5a,0x77,0x0a}}, // \xe8\xad\x9b
+{0x8b5c,{0x6b,0x62,0x2a,0x7f,0x62,0x7f,0x2a}}, // \xe8\xad\x9c
+{0x8b5f,{0x6a,0x63,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe8\xad\x9f
+{0x8b66,{0x2a,0x27,0x76,0x7f,0x6a,0x25,0x2b}}, // \xe8\xad\xa6
+{0x8b6b,{0x6a,0x63,0x3c,0x2e,0x75,0x7f,0x2c}}, // \xe8\xad\xab
+{0x8b6c,{0x04,0x6f,0x6b,0x68,0x6e,0x6b,0x06}}, // \xe8\xad\xac
+{0x8b6f,{0x6b,0x62,0x2b,0x3b,0x6f,0x3b,0x2b}}, // \xe8\xad\xaf
+{0x8b70,{0x6b,0x62,0x2a,0x7b,0x2e,0x3b,0x5a}}, // \xe8\xad\xb0
+{0x8b71,{0x6a,0x6e,0x07,0x7e,0x06,0x6f,0x6a}}, // \xe8\xad\xb1
+{0x8b72,{0x6a,0x63,0x1a,0x7e,0x53,0x3e,0x5a}}, // \xe8\xad\xb2
+{0x8b74,{0x6b,0x62,0x75,0x4e,0x7a,0x7f,0x6e}}, // \xe8\xad\xb4
+{0x8b77,{0x6b,0x6a,0x42,0x5f,0x2e,0x5f,0x4a}}, // \xe8\xad\xb7
+{0x8b7d,{0x28,0x1e,0x69,0x6e,0x6d,0x1f,0x28}}, // \xe8\xad\xbd
+{0x8b80,{0x6a,0x63,0x4e,0x3e,0x3b,0x3e,0x4e}}, // \xe8\xae\x80
+{0x8b83,{0x6b,0x62,0x4a,0x37,0x3a,0x37,0x4a}}, // \xe8\xae\x83
+{0x8b8a,{0x52,0x4d,0x5a,0x2f,0x2a,0x5d,0x48}}, // \xe8\xae\x8a
+{0x8b8c,{0x6b,0x6a,0x52,0x1f,0x56,0x1f,0x52}}, // \xe8\xae\x8c
+{0x8b8e,{0x04,0x7f,0x7e,0x6b,0x6a,0x7e,0x55}}, // \xe8\xae\x8e
+{0x8b90,{0x14,0x7f,0x5e,0x5b,0x54,0x7f,0x1a}}, // \xe8\xae\x90
+{0x8b92,{0x6a,0x6b,0x52,0x5e,0x2d,0x7f,0x56}}, // \xe8\xae\x92
+{0x8b93,{0x6a,0x6b,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe8\xae\x93
+{0x8b96,{0x6b,0x6a,0x55,0x7e,0x55,0x3f,0x55}}, // \xe8\xae\x96
+{0x8b99,{0x6b,0x6a,0x26,0x7f,0x52,0x7f,0x56}}, // \xe8\xae\x99
+{0x8b9a,{0x6b,0x62,0x4b,0x36,0x3b,0x36,0x4a}}, // \xe8\xae\x9a
+{0x8c37,{0x10,0x12,0x69,0x64,0x69,0x12,0x10}}, // \xe8\xb0\xb7
+{0x8c3a,{0x12,0x69,0x64,0x69,0x2f,0x59,0x7f}}, // \xe8\xb0\xba
+{0x8c3f,{0x52,0x5b,0x35,0x5a,0x09,0x64,0x69}}, // \xe8\xb0\xbf
+{0x8c41,{0x26,0x6a,0x7f,0x6e,0x09,0x64,0x69}}, // \xe8\xb1\x81
+{0x8c46,{0x41,0x5d,0x75,0x55,0x75,0x5d,0x41}}, // \xe8\xb1\x86
+{0x8c48,{0x48,0x5b,0x6a,0x6b,0x6a,0x5b,0x48}}, // \xe8\xb1\x88
+{0x8c4a,{0x48,0x5e,0x6f,0x6e,0x6f,0x5e,0x48}}, // \xe8\xb1\x8a
+{0x8c4c,{0x2d,0x35,0x2d,0x56,0x2a,0x7b,0x5e}}, // \xe8\xb1\x8c
+{0x8c4e,{0x4f,0x5f,0x6d,0x68,0x6d,0x5b,0x4d}}, // \xe8\xb1\x8e
+{0x8c50,{0x48,0x5f,0x6e,0x6f,0x6e,0x5f,0x48}}, // \xe8\xb1\x90
+{0x8c55,{0x29,0x29,0x57,0x4d,0x39,0x15,0x21}}, // \xe8\xb1\x95
+{0x8c5a,{0x7f,0x15,0x7f,0x29,0x57,0x7d,0x29}}, // \xe8\xb1\x9a
+{0x8c61,{0x52,0x52,0x2d,0x5d,0x7f,0x2c,0x50}}, // \xe8\xb1\xa1
+{0x8c62,{0x52,0x59,0x2c,0x5f,0x7c,0x29,0x52}}, // \xe8\xb1\xa2
+{0x8c6a,{0x5a,0x5e,0x2a,0x5b,0x7a,0x2e,0x5a}}, // \xe8\xb1\xaa
+{0x8c6b,{0x49,0x7d,0x2b,0x5e,0x7d,0x2f,0x50}}, // \xe8\xb1\xab
+{0x8c6c,{0x55,0x4b,0x3d,0x1a,0x6f,0x7a,0x69}}, // \xe8\xb1\xac
+{0x8c78,{0x00,0x54,0x56,0x2e,0x55,0x3a,0x00}}, // \xe8\xb1\xb8
+{0x8c79,{0x2a,0x56,0x3d,0x04,0x0b,0x52,0x7e}}, // \xe8\xb1\xb9
+{0x8c7a,{0x2a,0x56,0x3d,0x22,0x52,0x7f,0x0a}}, // \xe8\xb1\xba
+{0x8c7c,{0x2a,0x56,0x3d,0x7f,0x24,0x7f,0x44}}, // \xe8\xb1\xbc
+{0x8c82,{0x2a,0x56,0x3d,0x00,0x75,0x53,0x77}}, // \xe8\xb2\x82
+{0x8c85,{0x2a,0x56,0x3d,0x7f,0x1a,0x7f,0x12}}, // \xe8\xb2\x85
+{0x8c89,{0x2a,0x56,0x3d,0x10,0x6a,0x65,0x6b}}, // \xe8\xb2\x89
+{0x8c8a,{0x2a,0x56,0x3d,0x7d,0x57,0x55,0x7d}}, // \xe8\xb2\x8a
+{0x8c8c,{0x2a,0x56,0x3d,0x5e,0x2b,0x6a,0x5e}}, // \xe8\xb2\x8c
+{0x8c8d,{0x2a,0x56,0x3d,0x5f,0x55,0x7f,0x5f}}, // \xe8\xb2\x8d
+{0x8c8e,{0x2a,0x56,0x3d,0x5e,0x35,0x72,0x5e}}, // \xe8\xb2\x8e
+{0x8c94,{0x2a,0x56,0x3d,0x7e,0x5b,0x76,0x5e}}, // \xe8\xb2\x94
+{0x8c98,{0x2a,0x56,0x3d,0x52,0x5f,0x36,0x5f}}, // \xe8\xb2\x98
+{0x8c9d,{0x40,0x5f,0x15,0x15,0x15,0x5f,0x40}}, // \xe8\xb2\x9d
+{0x8c9e,{0x40,0x7c,0x34,0x37,0x36,0x7e,0x42}}, // \xe8\xb2\x9e
+{0x8ca0,{0x42,0x7e,0x35,0x35,0x37,0x7c,0x40}}, // \xe8\xb2\xa0
+{0x8ca1,{0x5f,0x15,0x5f,0x22,0x52,0x7f,0x0a}}, // \xe8\xb2\xa1
+{0x8ca2,{0x44,0x7d,0x2d,0x2f,0x2d,0x7d,0x44}}, // \xe8\xb2\xa2
+{0x8ca7,{0x44,0x76,0x3d,0x34,0x3d,0x72,0x44}}, // \xe8\xb2\xa7
+{0x8ca8,{0x44,0x4e,0x31,0x30,0x3f,0x7a,0x4a}}, // \xe8\xb2\xa8
+{0x8ca9,{0x5f,0x15,0x5f,0x20,0x5f,0x25,0x5d}}, // \xe8\xb2\xa9
+{0x8caa,{0x44,0x74,0x36,0x35,0x3e,0x74,0x44}}, // \xe8\xb2\xaa
+{0x8cab,{0x42,0x7f,0x2d,0x2f,0x2d,0x7f,0x42}}, // \xe8\xb2\xab
+{0x8cac,{0x48,0x7a,0x2a,0x2f,0x2a,0x7a,0x48}}, // \xe8\xb2\xac
+{0x8cad,{0x40,0x3e,0x46,0x3e,0x2e,0x3d,0x45}}, // \xe8\xb2\xad
+{0x8cae,{0x44,0x3d,0x3d,0x44,0x0f,0x34,0x45}}, // \xe8\xb2\xae
+{0x8caf,{0x5f,0x15,0x5f,0x06,0x4a,0x7b,0x0e}}, // \xe8\xb2\xaf
+{0x8cb0,{0x42,0x7f,0x2a,0x2f,0x2a,0x7f,0x4a}}, // \xe8\xb2\xb0
+{0x8cb2,{0x4e,0x78,0x2f,0x2a,0x28,0x7f,0x4a}}, // \xe8\xb2\xb2
+{0x8cb3,{0x42,0x36,0x36,0x42,0x0f,0x32,0x43}}, // \xe8\xb2\xb3
+{0x8cb4,{0x48,0x7e,0x2a,0x2f,0x2a,0x7e,0x48}}, // \xe8\xb2\xb4
+{0x8cb6,{0x5f,0x15,0x5f,0x34,0x25,0x57,0x4d}}, // \xe8\xb2\xb6
+{0x8cb7,{0x47,0x7d,0x2f,0x2d,0x2f,0x7d,0x47}}, // \xe8\xb2\xb7
+{0x8cb8,{0x44,0x4e,0x31,0x32,0x33,0x76,0x4b}}, // \xe8\xb2\xb8
+{0x8cbb,{0x5a,0x7a,0x2f,0x2a,0x2f,0x7a,0x4e}}, // \xe8\xb2\xbb
+{0x8cbc,{0x5f,0x15,0x5f,0x70,0x5f,0x54,0x74}}, // \xe8\xb2\xbc
+{0x8cbd,{0x5f,0x15,0x5f,0x08,0x6c,0x6b,0x6c}}, // \xe8\xb2\xbd
+{0x8cbf,{0x46,0x7e,0x2d,0x28,0x2d,0x7b,0x47}}, // \xe8\xb2\xbf
+{0x8cc0,{0x4a,0x47,0x3a,0x2e,0x2e,0x7a,0x4e}}, // \xe8\xb3\x80
+{0x8cc1,{0x4a,0x7e,0x2a,0x2f,0x2a,0x7e,0x4a}}, // \xe8\xb3\x81
+{0x8cc2,{0x5f,0x15,0x5f,0x10,0x6a,0x65,0x6b}}, // \xe8\xb3\x82
+{0x8cc3,{0x44,0x4e,0x35,0x36,0x3e,0x75,0x44}}, // \xe8\xb3\x83
+{0x8cc4,{0x5f,0x15,0x5f,0x12,0x7f,0x2a,0x7a}}, // \xe8\xb3\x84
+{0x8cc7,{0x49,0x70,0x34,0x3b,0x36,0x7a,0x46}}, // \xe8\xb3\x87
+{0x8cc8,{0x41,0x7f,0x2d,0x2f,0x2d,0x7f,0x41}}, // \xe8\xb3\x88
+{0x8cca,{0x5f,0x1f,0x4a,0x1e,0x4a,0x3f,0x52}}, // \xe8\xb3\x8a
+{0x8ccd,{0x5f,0x15,0x5f,0x3e,0x4a,0x7f,0x4a}}, // \xe8\xb3\x8d
+{0x8cce,{0x5f,0x15,0x5f,0x0a,0x5f,0x2a,0x53}}, // \xe8\xb3\x8e
+{0x8cd1,{0x5f,0x15,0x5f,0x7f,0x51,0x35,0x55}}, // \xe8\xb3\x91
+{0x8cd3,{0x46,0x5a,0x36,0x3f,0x36,0x4a,0x46}}, // \xe8\xb3\x93
+{0x8cda,{0x4a,0x76,0x3a,0x37,0x3a,0x76,0x4a}}, // \xe8\xb3\x9a
+{0x8cdb,{0x4a,0x77,0x3a,0x30,0x3a,0x77,0x4a}}, // \xe8\xb3\x9b
+{0x8cdc,{0x5f,0x15,0x5f,0x27,0x5d,0x35,0x77}}, // \xe8\xb3\x9c
+{0x8cde,{0x46,0x7b,0x2e,0x2b,0x2e,0x7b,0x46}}, // \xe8\xb3\x9e
+{0x8ce0,{0x5f,0x15,0x5f,0x0a,0x6e,0x6b,0x6e}}, // \xe8\xb3\xa0
+{0x8ce2,{0x47,0x77,0x35,0x30,0x3b,0x75,0x4b}}, // \xe8\xb3\xa2
+{0x8ce3,{0x42,0x7e,0x2a,0x2f,0x2a,0x7e,0x42}}, // \xe8\xb3\xa3
+{0x8ce4,{0x5f,0x15,0x5f,0x12,0x5b,0x36,0x5b}}, // \xe8\xb3\xa4
+{0x8ce6,{0x5f,0x1f,0x65,0x7d,0x54,0x3f,0x45}}, // \xe8\xb3\xa6
+{0x8cea,{0x48,0x46,0x3d,0x28,0x2e,0x7d,0x44}}, // \xe8\xb3\xaa
+{0x8ced,{0x5f,0x15,0x5f,0x28,0x1a,0x6f,0x6a}}, // \xe8\xb3\xad
+{0x8cfa,{0x5f,0x1f,0x52,0x37,0x7e,0x3f,0x4a}}, // \xe8\xb3\xba
+{0x8cfb,{0x5f,0x15,0x5f,0x3e,0x57,0x7e,0x13}}, // \xe8\xb3\xbb
+{0x8cfc,{0x5f,0x1f,0x2a,0x7f,0x3a,0x7f,0x2a}}, // \xe8\xb3\xbc
+{0x8cfd,{0x56,0x7a,0x2e,0x2b,0x2e,0x7a,0x56}}, // \xe8\xb3\xbd
+{0x8d04,{0x44,0x4e,0x3f,0x3a,0x37,0x7e,0x48}}, // \xe8\xb4\x84
+{0x8d05,{0x54,0x4e,0x3f,0x34,0x3a,0x75,0x4b}}, // \xe8\xb4\x85
+{0x8d07,{0x56,0x4b,0x36,0x3d,0x35,0x7e,0x55}}, // \xe8\xb4\x87
+{0x8d08,{0x5f,0x1f,0x4e,0x7b,0x5e,0x7b,0x0e}}, // \xe8\xb4\x88
+{0x8d0a,{0x4a,0x77,0x3f,0x3a,0x37,0x7f,0x4a}}, // \xe8\xb4\x8a
+{0x8d0b,{0x40,0x3f,0x4d,0x33,0x3d,0x3f,0x4b}}, // \xe8\xb4\x8b
+{0x8d0d,{0x5f,0x15,0x5f,0x3e,0x75,0x7f,0x2c}}, // \xe8\xb4\x8d
+{0x8d0f,{0x42,0x3e,0x7a,0x3b,0x4a,0x7a,0x72}}, // \xe8\xb4\x8f
+{0x8d10,{0x5f,0x15,0x5f,0x6a,0x7f,0x6e,0x54}}, // \xe8\xb4\x90
+{0x8d13,{0x5f,0x1f,0x6c,0x3e,0x5a,0x3f,0x52}}, // \xe8\xb4\x93
+{0x8d14,{0x40,0x34,0x33,0x43,0x33,0x34,0x40}}, // \xe8\xb4\x94
+{0x8d16,{0x5f,0x15,0x5f,0x3e,0x3b,0x3e,0x4e}}, // \xe8\xb4\x96
+{0x8d64,{0x28,0x4a,0x3a,0x4f,0x7a,0x0a,0x28}}, // \xe8\xb5\xa4
+{0x8d66,{0x28,0x7a,0x0f,0x7a,0x5c,0x23,0x5e}}, // \xe8\xb5\xa6
+{0x8d67,{0x58,0x3a,0x7f,0x2a,0x7f,0x2b,0x5b}}, // \xe8\xb5\xa7
+{0x8d6b,{0x58,0x3a,0x7f,0x4a,0x3a,0x7f,0x2a}}, // \xe8\xb5\xab
+{0x8d6d,{0x58,0x3a,0x7f,0x2a,0x1a,0x6f,0x6a}}, // \xe8\xb5\xad
+{0x8d70,{0x48,0x2a,0x4a,0x7f,0x5a,0x5a,0x48}}, // \xe8\xb5\xb0
+{0x8d71,{0x44,0x26,0x4e,0x67,0x56,0x4e,0x44}}, // \xe8\xb5\xb1
+{0x8d73,{0x6a,0x3f,0x4a,0x5f,0x50,0x7f,0x48}}, // \xe8\xb5\xb3
+{0x8d74,{0x4a,0x3a,0x3f,0x5a,0x40,0x5f,0x44}}, // \xe8\xb5\xb4
+{0x8d77,{0x4a,0x3a,0x3f,0x4a,0x5d,0x55,0x57}}, // \xe8\xb5\xb7
+{0x8d81,{0x6a,0x3f,0x44,0x6a,0x65,0x52,0x44}}, // \xe8\xb6\x81
+{0x8d85,{0x4a,0x3a,0x3f,0x4a,0x75,0x53,0x77}}, // \xe8\xb6\x85
+{0x8d8a,{0x6a,0x3f,0x4a,0x7e,0x62,0x5f,0x6a}}, // \xe8\xb6\x8a
+{0x8d99,{0x6a,0x3f,0x4a,0x7d,0x56,0x7d,0x42}}, // \xe8\xb6\x99
+{0x8da3,{0x6a,0x3f,0x4a,0x55,0x7f,0x4a,0x56}}, // \xe8\xb6\xa3
+{0x8da8,{0x6a,0x3f,0x4a,0x64,0x5b,0x76,0x76}}, // \xe8\xb6\xa8
+{0x8db3,{0x40,0x37,0x45,0x7d,0x55,0x57,0x40}}, // \xe8\xb6\xb3
+{0x8dba,{0x77,0x7d,0x57,0x08,0x4a,0x3f,0x4a}}, // \xe8\xb6\xba
+{0x8dbe,{0x77,0x7d,0x57,0x7c,0x40,0x7f,0x44}}, // \xe8\xb6\xbe
+{0x8dc2,{0x77,0x7d,0x57,0x42,0x5a,0x2f,0x5a}}, // \xe8\xb7\x82
+{0x8dcb,{0x77,0x7d,0x57,0x22,0x5f,0x22,0x5b}}, // \xe8\xb7\x8b
+{0x8dcc,{0x77,0x7d,0x57,0x4c,0x4b,0x3f,0x4a}}, // \xe8\xb7\x8c
+{0x8dcf,{0x77,0x7d,0x66,0x1f,0x7e,0x42,0x7e}}, // \xe8\xb7\x8f
+{0x8dd6,{0x77,0x7d,0x57,0x11,0x7f,0x49,0x79}}, // \xe8\xb7\x96
+{0x8dda,{0x77,0x7d,0x2b,0x7f,0x3f,0x09,0x7f}}, // \xe8\xb7\x9a
+{0x8ddb,{0x77,0x7d,0x57,0x3e,0x5a,0x2f,0x5e}}, // \xe8\xb7\x9b
+{0x8ddd,{0x77,0x7d,0x2b,0x7f,0x55,0x55,0x5d}}, // \xe8\xb7\x9d
+{0x8ddf,{0x77,0x7d,0x2b,0x7f,0x55,0x35,0x5f}}, // \xe8\xb7\x9f
+{0x8de1,{0x77,0x7d,0x5b,0x3e,0x43,0x7e,0x1a}}, // \xe8\xb7\xa1
+{0x8de3,{0x77,0x7d,0x57,0x4c,0x3b,0x7f,0x4a}}, // \xe8\xb7\xa3
+{0x8de8,{0x77,0x7d,0x57,0x0a,0x1e,0x57,0x6a}}, // \xe8\xb7\xa8
+{0x8dea,{0x77,0x7d,0x57,0x3e,0x7d,0x4f,0x5c}}, // \xe8\xb7\xaa
+{0x8deb,{0x45,0x27,0x5d,0x7c,0x5b,0x47,0x44}}, // \xe8\xb7\xab
+{0x8def,{0x77,0x7d,0x57,0x10,0x6a,0x65,0x6b}}, // \xe8\xb7\xaf
+{0x8df3,{0x77,0x7d,0x57,0x3f,0x00,0x7f,0x4a}}, // \xe8\xb7\xb3
+{0x8df5,{0x77,0x7d,0x37,0x4a,0x5f,0x2a,0x53}}, // \xe8\xb7\xb5
+{0x8dfc,{0x77,0x7d,0x57,0x3f,0x35,0x47,0x7c}}, // \xe8\xb7\xbc
+{0x8dff,{0x77,0x7d,0x57,0x28,0x4a,0x7f,0x5a}}, // \xe8\xb7\xbf
+{0x8e08,{0x77,0x7d,0x4f,0x2e,0x7f,0x2a,0x4e}}, // \xe8\xb8\x88
+{0x8e09,{0x77,0x7d,0x57,0x7e,0x5a,0x3b,0x5e}}, // \xe8\xb8\x89
+{0x8e0a,{0x77,0x7d,0x2b,0x7c,0x15,0x7f,0x7d}}, // \xe8\xb8\x8a
+{0x8e0f,{0x77,0x7d,0x2b,0x76,0x5f,0x74,0x0a}}, // \xe8\xb8\x8f
+{0x8e10,{0x77,0x7d,0x57,0x12,0x5b,0x36,0x5b}}, // \xe8\xb8\x90
+{0x8e1d,{0x77,0x7f,0x57,0x35,0x7f,0x35,0x57}}, // \xe8\xb8\x9d
+{0x8e1e,{0x77,0x7d,0x57,0x3f,0x6b,0x5f,0x6b}}, // \xe8\xb8\x9e
+{0x8e1f,{0x77,0x7d,0x4b,0x3e,0x4a,0x3e,0x3e}}, // \xe8\xb8\x9f
+{0x8e2a,{0x77,0x7d,0x56,0x12,0x77,0x16,0x56}}, // \xe8\xb8\xaa
+{0x8e30,{0x77,0x7d,0x2b,0x73,0x75,0x26,0x54}}, // \xe8\xb8\xb0
+{0x8e34,{0x77,0x7d,0x2b,0x50,0x3d,0x5f,0x7d}}, // \xe8\xb8\xb4
+{0x8e35,{0x77,0x7d,0x47,0x5e,0x7e,0x5d,0x44}}, // \xe8\xb8\xb5
+{0x8e42,{0x77,0x7d,0x5a,0x37,0x7f,0x33,0x56}}, // \xe8\xb9\x82
+{0x8e44,{0x77,0x7d,0x1b,0x6e,0x3b,0x6e,0x1a}}, // \xe8\xb9\x84
+{0x8e47,{0x56,0x2a,0x5e,0x7b,0x5e,0x4a,0x56}}, // \xe8\xb9\x87
+{0x8e48,{0x77,0x7d,0x72,0x69,0x43,0x69,0x7a}}, // \xe8\xb9\x88
+{0x8e49,{0x77,0x7d,0x4a,0x3b,0x5e,0x7b,0x5a}}, // \xe8\xb9\x89
+{0x8e4a,{0x77,0x7d,0x2b,0x52,0x5b,0x35,0x5a}}, // \xe8\xb9\x8a
+{0x8e4c,{0x77,0x7d,0x57,0x24,0x1e,0x6d,0x62}}, // \xe8\xb9\x8c
+{0x8e50,{0x77,0x7d,0x4b,0x15,0x7d,0x2a,0x7d}}, // \xe8\xb9\x90
+{0x8e55,{0x77,0x7d,0x2b,0x3f,0x6b,0x3f,0x2b}}, // \xe8\xb9\x95
+{0x8e59,{0x50,0x2e,0x5a,0x7e,0x5a,0x4f,0x52}}, // \xe8\xb9\x99
+{0x8e5f,{0x77,0x7d,0x4b,0x3a,0x3f,0x3a,0x48}}, // \xe8\xb9\x9f
+{0x8e60,{0x77,0x7d,0x5f,0x0e,0x5b,0x1e,0x4a}}, // \xe8\xb9\xa0
+{0x8e63,{0x77,0x7d,0x7a,0x3f,0x7a,0x3f,0x7a}}, // \xe8\xb9\xa3
+{0x8e64,{0x77,0x7d,0x57,0x7d,0x22,0x79,0x52}}, // \xe8\xb9\xa4
+{0x8e72,{0x77,0x7d,0x1e,0x3d,0x54,0x7d,0x1e}}, // \xe8\xb9\xb2
+{0x8e74,{0x77,0x7d,0x2e,0x7b,0x2e,0x3f,0x45}}, // \xe8\xb9\xb4
+{0x8e76,{0x77,0x7d,0x5f,0x35,0x4b,0x3d,0x4d}}, // \xe8\xb9\xb6
+{0x8e7c,{0x77,0x7d,0x4b,0x5e,0x3b,0x5e,0x4b}}, // \xe8\xb9\xbc
+{0x8e81,{0x77,0x7f,0x5c,0x37,0x7d,0x37,0x5c}}, // \xe8\xba\x81
+{0x8e84,{0x44,0x2f,0x5b,0x78,0x5e,0x5b,0x46}}, // \xe8\xba\x84
+{0x8e85,{0x77,0x7f,0x4b,0x75,0x77,0x25,0x7f}}, // \xe8\xba\x85
+{0x8e87,{0x77,0x7d,0x52,0x37,0x7e,0x7f,0x12}}, // \xe8\xba\x87
+{0x8e8a,{0x77,0x7d,0x37,0x36,0x5f,0x76,0x14}}, // \xe8\xba\x8a
+{0x8e8b,{0x77,0x7d,0x4b,0x36,0x2b,0x76,0x0a}}, // \xe8\xba\x8b
+{0x8e8d,{0x77,0x7d,0x57,0x20,0x75,0x7f,0x57}}, // \xe8\xba\x8d
+{0x8e91,{0x77,0x7d,0x5a,0x39,0x5a,0x7f,0x1b}}, // \xe8\xba\x91
+{0x8e93,{0x77,0x7d,0x46,0x3d,0x38,0x3e,0x45}}, // \xe8\xba\x93
+{0x8e94,{0x77,0x7d,0x3e,0x5a,0x6f,0x5e,0x5a}}, // \xe8\xba\x94
+{0x8e99,{0x77,0x7d,0x7f,0x13,0x3c,0x3b,0x7f}}, // \xe8\xba\x99
+{0x8ea1,{0x77,0x7d,0x37,0x75,0x27,0x3f,0x75}}, // \xe8\xba\xa1
+{0x8eaa,{0x77,0x7d,0x7e,0x17,0x3a,0x37,0x7e}}, // \xe8\xba\xaa
+{0x8eab,{0x10,0x50,0x5e,0x3b,0x5a,0x7e,0x08}}, // \xe8\xba\xab
+{0x8eac,{0x50,0x5e,0x2b,0x7e,0x1d,0x55,0x77}}, // \xe8\xba\xac
+{0x8eaf,{0x50,0x5e,0x2b,0x7e,0x7f,0x49,0x55}}, // \xe8\xba\xaf
+{0x8eb0,{0x5e,0x2b,0x7e,0x12,0x2a,0x7f,0x12}}, // \xe8\xba\xb0
+{0x8eb1,{0x5e,0x2b,0x7e,0x35,0x7b,0x35,0x56}}, // \xe8\xba\xb1
+{0x8ebe,{0x5e,0x2b,0x7e,0x12,0x57,0x3e,0x57}}, // \xe8\xba\xbe
+{0x8ec5,{0x5e,0x2b,0x7e,0x3f,0x79,0x7f,0x55}}, // \xe8\xbb\x85
+{0x8ec6,{0x50,0x5e,0x2b,0x7e,0x5f,0x6e,0x5f}}, // \xe8\xbb\x86
+{0x8ec8,{0x5e,0x2b,0x7e,0x7e,0x2e,0x4f,0x6a}}, // \xe8\xbb\x88
+{0x8eca,{0x22,0x3e,0x2a,0x7f,0x2a,0x3e,0x22}}, // \xe8\xbb\x8a
+{0x8ecb,{0x2d,0x7f,0x2d,0x00,0x7f,0x40,0x60}}, // \xe8\xbb\x8b
+{0x8ecc,{0x2d,0x7f,0x42,0x3f,0x02,0x7e,0x40}}, // \xe8\xbb\x8c
+{0x8ecd,{0x27,0x3d,0x2d,0x7f,0x2d,0x3d,0x27}}, // \xe8\xbb\x8d
+{0x8ed2,{0x2d,0x7f,0x2d,0x08,0x09,0x7f,0x09}}, // \xe8\xbb\x92
+{0x8edb,{0x2d,0x7f,0x2d,0x1f,0x7d,0x45,0x5d}}, // \xe8\xbb\x9b
+{0x8edf,{0x2d,0x7f,0x2d,0x44,0x43,0x3e,0x46}}, // \xe8\xbb\x9f
+{0x8ee2,{0x2d,0x7f,0x2d,0x44,0x65,0x5d,0x65}}, // \xe8\xbb\xa2
+{0x8ee3,{0x4a,0x5e,0x2a,0x0f,0x2a,0x5e,0x4a}}, // \xe8\xbb\xa3
+{0x8eeb,{0x2d,0x7f,0x2d,0x42,0x55,0x2a,0x14}}, // \xe8\xbb\xab
+{0x8ef8,{0x2d,0x7f,0x2d,0x7e,0x4a,0x7f,0x7e}}, // \xe8\xbb\xb8
+{0x8efb,{0x2d,0x7f,0x2d,0x1d,0x15,0x5d,0x7f}}, // \xe8\xbb\xbb
+{0x8efc,{0x2d,0x7f,0x4c,0x2b,0x1f,0x2a,0x48}}, // \xe8\xbb\xbc
+{0x8efd,{0x2d,0x7f,0x49,0x5b,0x75,0x5b,0x48}}, // \xe8\xbb\xbd
+{0x8efe,{0x2d,0x7f,0x2d,0x54,0x74,0x3f,0x45}}, // \xe8\xbb\xbe
+{0x8f03,{0x2d,0x7f,0x4a,0x56,0x23,0x56,0x4a}}, // \xe8\xbc\x83
+{0x8f05,{0x2d,0x7f,0x10,0x6a,0x65,0x6b,0x10}}, // \xe8\xbc\x85
+{0x8f09,{0x28,0x3a,0x7f,0x2a,0x4f,0x38,0x5a}}, // \xe8\xbc\x89
+{0x8f0a,{0x2d,0x7f,0x45,0x57,0x7d,0x53,0x45}}, // \xe8\xbc\x8a
+{0x8f0c,{0x2d,0x7f,0x7d,0x35,0x3f,0x35,0x7d}}, // \xe8\xbc\x8c
+{0x8f12,{0x2d,0x7f,0x21,0x3f,0x6d,0x7f,0x41}}, // \xe8\xbc\x92
+{0x8f13,{0x2d,0x7f,0x5c,0x36,0x1d,0x77,0x5c}}, // \xe8\xbc\x93
+{0x8f14,{0x2d,0x7f,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe8\xbc\x94
+{0x8f15,{0x2d,0x7f,0x2d,0x55,0x5b,0x75,0x5b}}, // \xe8\xbc\x95
+{0x8f19,{0x2d,0x7f,0x21,0x3f,0x7f,0x12,0x2e}}, // \xe8\xbc\x99
+{0x8f1b,{0x2d,0x7f,0x7d,0x35,0x7f,0x35,0x7d}}, // \xe8\xbc\x9b
+{0x8f1c,{0x2d,0x7f,0x2d,0x7a,0x5d,0x7a,0x7d}}, // \xe8\xbc\x9c
+{0x8f1d,{0x4a,0x38,0x3f,0x27,0x3d,0x7f,0x27}}, // \xe8\xbc\x9d
+{0x8f1f,{0x2d,0x7f,0x5d,0x2b,0x5d,0x2b,0x5d}}, // \xe8\xbc\x9f
+{0x8f26,{0x2a,0x37,0x3a,0x70,0x3a,0x37,0x2a}}, // \xe8\xbc\xa6
+{0x8f29,{0x2a,0x3a,0x2f,0x78,0x2f,0x3a,0x2a}}, // \xe8\xbc\xa9
+{0x8f2a,{0x2d,0x7f,0x2d,0x72,0x35,0x76,0x74}}, // \xe8\xbc\xaa
+{0x8f2f,{0x2d,0x7f,0x24,0x3f,0x2d,0x7f,0x24}}, // \xe8\xbc\xaf
+{0x8f33,{0x2d,0x7f,0x1a,0x4e,0x3f,0x4e,0x1a}}, // \xe8\xbc\xb3
+{0x8f38,{0x2d,0x7f,0x2d,0x72,0x75,0x06,0x74}}, // \xe8\xbc\xb8
+{0x8f39,{0x2d,0x7f,0x4d,0x53,0x2e,0x5e,0x42}}, // \xe8\xbc\xb9
+{0x8f3b,{0x2d,0x7f,0x2d,0x71,0x57,0x77,0x71}}, // \xe8\xbc\xbb
+{0x8f3e,{0x2d,0x7f,0x3f,0x75,0x5d,0x3d,0x57}}, // \xe8\xbc\xbe
+{0x8f3f,{0x5e,0x55,0x1a,0x1f,0x1a,0x55,0x5f}}, // \xe8\xbc\xbf
+{0x8f42,{0x2a,0x3e,0x7f,0x2e,0x5b,0x29,0x5b}}, // \xe8\xbd\x82
+{0x8f44,{0x2d,0x7f,0x26,0x6a,0x7f,0x6a,0x26}}, // \xe8\xbd\x84
+{0x8f45,{0x2d,0x7f,0x2d,0x7e,0x57,0x36,0x5c}}, // \xe8\xbd\x85
+{0x8f46,{0x2d,0x7f,0x7e,0x5a,0x1f,0x7e,0x5a}}, // \xe8\xbd\x86
+{0x8f49,{0x2d,0x7f,0x12,0x3e,0x5f,0x76,0x1a}}, // \xe8\xbd\x89
+{0x8f4c,{0x2d,0x7f,0x2d,0x06,0x53,0x77,0x26}}, // \xe8\xbd\x8c
+{0x8f4d,{0x2d,0x7f,0x0a,0x77,0x72,0x3f,0x5e}}, // \xe8\xbd\x8d
+{0x8f4e,{0x2d,0x7f,0x7a,0x17,0x5b,0x17,0x7a}}, // \xe8\xbd\x8e
+{0x8f57,{0x2d,0x7f,0x6e,0x2e,0x42,0x47,0x6a}}, // \xe8\xbd\x97
+{0x8f5c,{0x2d,0x7f,0x66,0x2b,0x7f,0x2b,0x66}}, // \xe8\xbd\x9c
+{0x8f5f,{0x28,0x3a,0x7e,0x2f,0x3e,0x7a,0x28}}, // \xe8\xbd\x9f
+{0x8f61,{0x0a,0x7d,0x6a,0x77,0x6a,0x7d,0x08}}, // \xe8\xbd\xa1
+{0x8f62,{0x2d,0x7f,0x5a,0x35,0x7f,0x3a,0x55}}, // \xe8\xbd\xa2
+{0x8f63,{0x2d,0x7f,0x5f,0x6f,0x45,0x6f,0x45}}, // \xe8\xbd\xa3
+{0x8f64,{0x2d,0x7f,0x2d,0x5c,0x64,0x6f,0x4a}}, // \xe8\xbd\xa4
+{0x8f9b,{0x08,0x2a,0x2e,0x7b,0x2e,0x2a,0x08}}, // \xe8\xbe\x9b
+{0x8f9c,{0x12,0x3a,0x3e,0x77,0x3e,0x3a,0x12}}, // \xe8\xbe\x9c
+{0x8f9e,{0x76,0x5e,0x75,0x2a,0x2e,0x7b,0x2e}}, // \xe8\xbe\x9e
+{0x8f9f,{0x10,0x7f,0x77,0x2a,0x2e,0x7b,0x2e}}, // \xe8\xbe\x9f
+{0x8fa3,{0x56,0x3b,0x5e,0x2e,0x7f,0x2a,0x4e}}, // \xe8\xbe\xa3
+{0x8fa7,{0x56,0x3b,0x56,0x3e,0x7e,0x7b,0x16}}, // \xe8\xbe\xa7
+{0x8fa8,{0x56,0x3b,0x56,0x3f,0x16,0x7b,0x16}}, // \xe8\xbe\xa8
+{0x8fad,{0x72,0x55,0x37,0x7d,0x2e,0x7b,0x2e}}, // \xe8\xbe\xad
+{0x8fae,{0x56,0x3b,0x2e,0x75,0x2e,0x7b,0x16}}, // \xe8\xbe\xae
+{0x8faf,{0x56,0x3f,0x6a,0x6b,0x2e,0x7b,0x2e}}, // \xe8\xbe\xaf
+{0x8fb0,{0x40,0x3f,0x71,0x55,0x35,0x55,0x51}}, // \xe8\xbe\xb0
+{0x8fb1,{0x18,0x17,0x3d,0x57,0x7f,0x17,0x15}}, // \xe8\xbe\xb1
+{0x8fb2,{0x40,0x36,0x77,0x56,0x37,0x56,0x50}}, // \xe8\xbe\xb2
+{0x8fb7,{0x55,0x30,0x44,0x44,0x44,0x44,0x44}}, // \xe8\xbe\xb7
+{0x8fba,{0x49,0x3a,0x51,0x49,0x47,0x51,0x5f}}, // \xe8\xbe\xba
+{0x8fbb,{0x49,0x38,0x44,0x44,0x7f,0x44,0x44}}, // \xe8\xbe\xbb
+{0x8fbc,{0x49,0x3a,0x50,0x49,0x47,0x48,0x50}}, // \xe8\xbe\xbc
+{0x8fbf,{0x49,0x38,0x5e,0x50,0x5f,0x50,0x5e}}, // \xe8\xbe\xbf
+{0x8fc2,{0x49,0x38,0x44,0x65,0x7f,0x45,0x44}}, // \xe8\xbf\x82
+{0x8fc4,{0x49,0x38,0x44,0x53,0x6e,0x66,0x72}}, // \xe8\xbf\x84
+{0x8fc5,{0x49,0x38,0x45,0x5f,0x45,0x4f,0x50}}, // \xe8\xbf\x85
+{0x8fce,{0x49,0x38,0x5e,0x51,0x7e,0x42,0x5e}}, // \xe8\xbf\x8e
+{0x8fd1,{0x49,0x3a,0x60,0x5e,0x4a,0x79,0x48}}, // \xe8\xbf\x91
+{0x8fd4,{0x49,0x3a,0x60,0x5f,0x6d,0x55,0x6d}}, // \xe8\xbf\x94
+{0x8fda,{0x55,0x30,0x4e,0x4a,0x7f,0x4a,0x4e}}, // \xe8\xbf\x9a
+{0x8fe2,{0x55,0x30,0x45,0x7d,0x6b,0x69,0x7f}}, // \xe8\xbf\xa2
+{0x8fe5,{0x55,0x30,0x7f,0x4d,0x4d,0x61,0x7f}}, // \xe8\xbf\xa5
+{0x8fe6,{0x49,0x38,0x52,0x4f,0x5e,0x52,0x5e}}, // \xe8\xbf\xa6
+{0x8fe9,{0x49,0x38,0x54,0x4b,0x62,0x7e,0x52}}, // \xe8\xbf\xa9
+{0x8fea,{0x55,0x30,0x7e,0x6a,0x7f,0x6a,0x7e}}, // \xe8\xbf\xaa
+{0x8feb,{0x49,0x3a,0x40,0x7e,0x6b,0x6a,0x7e}}, // \xe8\xbf\xab
+{0x8fed,{0x49,0x3a,0x40,0x6c,0x6b,0x5f,0x6a}}, // \xe8\xbf\xad
+{0x8fef,{0x55,0x30,0x64,0x5b,0x4e,0x7f,0x44}}, // \xe8\xbf\xaf
+{0x8ff0,{0x49,0x38,0x5a,0x42,0x7f,0x42,0x5b}}, // \xe8\xbf\xb0
+{0x8ff4,{0x55,0x30,0x7f,0x5d,0x55,0x5d,0x7f}}, // \xe8\xbf\xb4
+{0x8ff7,{0x49,0x38,0x55,0x4c,0x7f,0x4c,0x55}}, // \xe8\xbf\xb7
+{0x8ff8,{0x55,0x30,0x54,0x7d,0x54,0x7d,0x54}}, // \xe8\xbf\xb8
+{0x8ff9,{0x55,0x30,0x6a,0x5e,0x63,0x7e,0x4a}}, // \xe8\xbf\xb9
+{0x8ffa,{0x55,0x30,0x7d,0x6f,0x65,0x6f,0x7d}}, // \xe8\xbf\xba
+{0x8ffd,{0x49,0x3a,0x40,0x7e,0x57,0x56,0x76}}, // \xe8\xbf\xbd
+{0x9000,{0x49,0x3a,0x40,0x7f,0x55,0x75,0x6f}}, // \xe9\x80\x80
+{0x9001,{0x49,0x38,0x62,0x6b,0x5e,0x6b,0x62}}, // \xe9\x80\x81
+{0x9003,{0x49,0x38,0x6a,0x5f,0x40,0x7f,0x6a}}, // \xe9\x80\x83
+{0x9005,{0x55,0x30,0x60,0x5e,0x4a,0x6a,0x69}}, // \xe9\x80\x85
+{0x9006,{0x49,0x38,0x5a,0x73,0x5e,0x53,0x5a}}, // \xe9\x80\x86
+{0x900b,{0x55,0x30,0x42,0x7a,0x7f,0x5a,0x7b}}, // \xe9\x80\x8b
+{0x900d,{0x55,0x30,0x42,0x7d,0x56,0x7d,0x42}}, // \xe9\x80\x8d
+{0x900e,{0x55,0x30,0x7d,0x6f,0x65,0x6f,0x7d}}, // \xe9\x80\x8e
+{0x900f,{0x49,0x38,0x4a,0x67,0x5f,0x77,0x4a}}, // \xe9\x80\x8f
+{0x9010,{0x49,0x3a,0x69,0x57,0x7d,0x49,0x55}}, // \xe9\x80\x90
+{0x9011,{0x55,0x30,0x6a,0x52,0x7f,0x52,0x6b}}, // \xe9\x80\x91
+{0x9013,{0x49,0x3a,0x60,0x5e,0x4a,0x7e,0x59}}, // \xe9\x80\x93
+{0x9014,{0x49,0x38,0x54,0x66,0x7d,0x46,0x54}}, // \xe9\x80\x94
+{0x9015,{0x55,0x30,0x40,0x6d,0x6b,0x7d,0x6b}}, // \xe9\x80\x95
+{0x9016,{0x55,0x30,0x6b,0x5e,0x65,0x5f,0x64}}, // \xe9\x80\x96
+{0x9017,{0x49,0x3a,0x40,0x6d,0x75,0x75,0x6d}}, // \xe9\x80\x97
+{0x9019,{0x49,0x3a,0x40,0x62,0x6b,0x6b,0x62}}, // \xe9\x80\x99
+{0x901a,{0x49,0x38,0x7d,0x55,0x7d,0x57,0x7d}}, // \xe9\x80\x9a
+{0x901d,{0x49,0x38,0x52,0x7f,0x52,0x4e,0x7d}}, // \xe9\x80\x9d
+{0x901e,{0x55,0x30,0x44,0x6f,0x7d,0x6f,0x44}}, // \xe9\x80\x9e
+{0x901f,{0x49,0x3a,0x6e,0x5a,0x7f,0x5a,0x6e}}, // \xe9\x80\x9f
+{0x9020,{0x49,0x38,0x4c,0x7b,0x6f,0x7a,0x48}}, // \xe9\x80\xa0
+{0x9021,{0x55,0x30,0x4a,0x67,0x72,0x5e,0x6b}}, // \xe9\x80\xa1
+{0x9022,{0x49,0x38,0x52,0x56,0x7d,0x53,0x54}}, // \xe9\x80\xa2
+{0x9023,{0x49,0x38,0x52,0x5e,0x7f,0x5e,0x52}}, // \xe9\x80\xa3
+{0x9027,{0x55,0x30,0x52,0x49,0x74,0x79,0x52}}, // \xe9\x80\xa7
+{0x902e,{0x49,0x38,0x6a,0x56,0x7f,0x56,0x68}}, // \xe9\x80\xae
+{0x9031,{0x49,0x38,0x5f,0x75,0x6f,0x75,0x7f}}, // \xe9\x80\xb1
+{0x9032,{0x49,0x38,0x44,0x7f,0x6a,0x7f,0x6a}}, // \xe9\x80\xb2
+{0x9035,{0x55,0x30,0x54,0x6e,0x77,0x6e,0x6c}}, // \xe9\x80\xb5
+{0x9036,{0x55,0x30,0x6a,0x77,0x7f,0x57,0x6a}}, // \xe9\x80\xb6
+{0x9038,{0x49,0x38,0x42,0x6e,0x5d,0x77,0x6c}}, // \xe9\x80\xb8
+{0x9039,{0x55,0x30,0x54,0x5e,0x77,0x5e,0x54}}, // \xe9\x80\xb9
+{0x903c,{0x49,0x3a,0x71,0x57,0x75,0x57,0x71}}, // \xe9\x80\xbc
+{0x903e,{0x55,0x30,0x45,0x73,0x75,0x66,0x54}}, // \xe9\x80\xbe
+{0x9041,{0x49,0x3a,0x50,0x4e,0x76,0x7e,0x75}}, // \xe9\x81\x81
+{0x9042,{0x49,0x38,0x52,0x6b,0x7e,0x53,0x6a}}, // \xe9\x81\x82
+{0x9045,{0x49,0x3a,0x60,0x5f,0x5b,0x73,0x5b}}, // \xe9\x81\x85
+{0x9047,{0x49,0x3a,0x78,0x6b,0x7f,0x5b,0x78}}, // \xe9\x81\x87
+{0x9049,{0x55,0x30,0x60,0x5c,0x5f,0x5e,0x62}}, // \xe9\x81\x89
+{0x904a,{0x49,0x38,0x52,0x6f,0x5a,0x77,0x5e}}, // \xe9\x81\x8a
+{0x904b,{0x49,0x38,0x53,0x5d,0x7f,0x5d,0x53}}, // \xe9\x81\x8b
+{0x904d,{0x49,0x3a,0x51,0x4f,0x7b,0x5b,0x79}}, // \xe9\x81\x8d
+{0x904e,{0x49,0x3a,0x40,0x78,0x6f,0x49,0x7f}}, // \xe9\x81\x8e
+{0x904f,{0x55,0x30,0x48,0x5f,0x55,0x67,0x7c}}, // \xe9\x81\x8f
+{0x9050,{0x55,0x30,0x7f,0x4b,0x6c,0x55,0x6f}}, // \xe9\x81\x90
+{0x9051,{0x55,0x30,0x48,0x6e,0x7b,0x6e,0x48}}, // \xe9\x81\x91
+{0x9052,{0x55,0x30,0x7a,0x5d,0x4c,0x5d,0x7a}}, // \xe9\x81\x92
+{0x9053,{0x49,0x38,0x42,0x7b,0x56,0x7b,0x42}}, // \xe9\x81\x93
+{0x9054,{0x49,0x38,0x54,0x5e,0x77,0x5e,0x54}}, // \xe9\x81\x94
+{0x9055,{0x49,0x38,0x54,0x5d,0x57,0x7d,0x57}}, // \xe9\x81\x95
+{0x9056,{0x55,0x30,0x7a,0x5a,0x6f,0x5a,0x7a}}, // \xe9\x81\x96
+{0x9058,{0x55,0x30,0x6a,0x7f,0x7a,0x7f,0x6a}}, // \xe9\x81\x98
+{0x9059,{0x55,0x30,0x50,0x6a,0x4d,0x7b,0x68}}, // \xe9\x81\x99
+{0x905c,{0x49,0x38,0x6d,0x73,0x55,0x7b,0x51}}, // \xe9\x81\x9c
+{0x905e,{0x55,0x30,0x5f,0x6d,0x55,0x7f,0x6b}}, // \xe9\x81\x9e
+{0x9060,{0x49,0x38,0x64,0x5e,0x77,0x5e,0x64}}, // \xe9\x81\xa0
+{0x9061,{0x49,0x3a,0x57,0x4e,0x5f,0x45,0x5f}}, // \xe9\x81\xa1
+{0x9063,{0x49,0x38,0x4e,0x7a,0x7f,0x7a,0x6e}}, // \xe9\x81\xa3
+{0x9065,{0x49,0x38,0x6a,0x4a,0x7e,0x49,0x6b}}, // \xe9\x81\xa5
+{0x9068,{0x55,0x30,0x56,0x6f,0x7c,0x53,0x6e}}, // \xe9\x81\xa8
+{0x9069,{0x49,0x38,0x7a,0x6e,0x5b,0x6e,0x7a}}, // \xe9\x81\xa9
+{0x906d,{0x49,0x38,0x5a,0x7f,0x5a,0x7f,0x5a}}, // \xe9\x81\xad
+{0x906e,{0x49,0x38,0x6e,0x4a,0x6f,0x4e,0x6a}}, // \xe9\x81\xae
+{0x906f,{0x55,0x30,0x7f,0x55,0x7f,0x7b,0x55}}, // \xe9\x81\xaf
+{0x9072,{0x55,0x30,0x7f,0x57,0x5b,0x7f,0x57}}, // \xe9\x81\xb2
+{0x9075,{0x49,0x3a,0x5e,0x57,0x72,0x77,0x5e}}, // \xe9\x81\xb5
+{0x9076,{0x55,0x30,0x6c,0x5e,0x4f,0x7e,0x6c}}, // \xe9\x81\xb6
+{0x9077,{0x49,0x3a,0x49,0x77,0x6f,0x67,0x49}}, // \xe9\x81\xb7
+{0x9078,{0x49,0x38,0x6d,0x5b,0x50,0x5d,0x6b}}, // \xe9\x81\xb8
+{0x907a,{0x49,0x38,0x6e,0x5a,0x5f,0x5a,0x6e}}, // \xe9\x81\xba
+{0x907c,{0x49,0x38,0x6a,0x5e,0x6b,0x5e,0x6a}}, // \xe9\x81\xbc
+{0x907d,{0x55,0x30,0x5c,0x6c,0x7f,0x5a,0x6a}}, // \xe9\x81\xbd
+{0x907f,{0x49,0x38,0x5f,0x5b,0x56,0x7b,0x56}}, // \xe9\x81\xbf
+{0x9080,{0x55,0x30,0x56,0x6f,0x7c,0x53,0x6e}}, // \xe9\x82\x80
+{0x9081,{0x55,0x30,0x7a,0x6f,0x7a,0x5f,0x7a}}, // \xe9\x82\x81
+{0x9082,{0x55,0x30,0x62,0x5d,0x7f,0x51,0x7b}}, // \xe9\x82\x82
+{0x9083,{0x55,0x30,0x66,0x56,0x6b,0x76,0x56}}, // \xe9\x82\x83
+{0x9084,{0x49,0x38,0x63,0x5f,0x77,0x5f,0x63}}, // \xe9\x82\x84
+{0x9087,{0x55,0x30,0x45,0x7f,0x57,0x6d,0x7f}}, // \xe9\x82\x87
+{0x9089,{0x55,0x30,0x58,0x6e,0x5d,0x6e,0x58}}, // \xe9\x82\x89
+{0x908a,{0x55,0x30,0x58,0x6e,0x5d,0x7e,0x58}}, // \xe9\x82\x8a
+{0x908f,{0x55,0x30,0x57,0x7b,0x53,0x7f,0x6b}}, // \xe9\x82\x8f
+{0x9091,{0x3c,0x57,0x55,0x5d,0x57,0x5c,0x60}}, // \xe9\x82\x91
+{0x90a3,{0x55,0x3f,0x55,0x7f,0x00,0x7f,0x1b}}, // \xe9\x82\xa3
+{0x90a6,{0x2a,0x6a,0x3f,0x2a,0x7f,0x25,0x1b}}, // \xe9\x82\xa6
+{0x90a8,{0x1a,0x7f,0x52,0x1a,0x7f,0x25,0x1b}}, // \xe9\x82\xa8
+{0x90aa,{0x2f,0x59,0x7f,0x09,0x7f,0x25,0x1b}}, // \xe9\x82\xaa
+{0x90af,{0x02,0x7f,0x4a,0x7f,0x02,0x7f,0x1b}}, // \xe9\x82\xaf
+{0x90b1,{0x40,0x7e,0x4a,0x39,0x28,0x7f,0x1b}}, // \xe9\x82\xb1
+{0x90b5,{0x75,0x53,0x59,0x7f,0x00,0x7f,0x1b}}, // \xe9\x82\xb5
+{0x90b8,{0x7e,0x4a,0x5e,0x29,0x40,0x7f,0x1b}}, // \xe9\x82\xb8
+{0x90c1,{0x12,0x7f,0x2a,0x7a,0x7f,0x25,0x1b}}, // \xe9\x83\x81
+{0x90ca,{0x4a,0x56,0x23,0x56,0x7f,0x25,0x1b}}, // \xe9\x83\x8a
+{0x90ce,{0x7e,0x4b,0x6e,0x00,0x7f,0x25,0x1b}}, // \xe9\x83\x8e
+{0x90db,{0x22,0x29,0x6b,0x39,0x22,0x7f,0x1b}}, // \xe9\x83\x9b
+{0x90e1,{0x25,0x7f,0x75,0x6f,0x04,0x7f,0x1b}}, // \xe9\x83\xa1
+{0x90e2,{0x44,0x57,0x7d,0x37,0x24,0x7f,0x1b}}, // \xe9\x83\xa2
+{0x90e4,{0x12,0x69,0x64,0x09,0x7f,0x25,0x1b}}, // \xe9\x83\xa4
+{0x90e8,{0x0a,0x6e,0x6b,0x0e,0x7f,0x25,0x1b}}, // \xe9\x83\xa8
+{0x90ed,{0x22,0x2e,0x7b,0x1e,0x7f,0x25,0x1b}}, // \xe9\x83\xad
+{0x90f5,{0x54,0x5d,0x7f,0x55,0x7f,0x25,0x1b}}, // \xe9\x83\xb5
+{0x90f7,{0x5a,0x35,0x7e,0x4a,0x2e,0x7f,0x1b}}, // \xe9\x83\xb7
+{0x90fd,{0x28,0x1a,0x6f,0x6a,0x7f,0x25,0x1b}}, // \xe9\x83\xbd
+{0x9102,{0x0b,0x5f,0x6c,0x0b,0x7f,0x25,0x1b}}, // \xe9\x84\x82
+{0x9112,{0x24,0x5b,0x36,0x36,0x7f,0x25,0x1b}}, // \xe9\x84\x92
+{0x9119,{0x08,0x7b,0x7d,0x7b,0x08,0x7f,0x1b}}, // \xe9\x84\x99
+{0x912d,{0x5e,0x57,0x32,0x57,0x5e,0x7f,0x1b}}, // \xe9\x84\xad
+{0x9130,{0x55,0x32,0x27,0x72,0x25,0x7f,0x1b}}, // \xe9\x84\xb0
+{0x9132,{0x23,0x3f,0x7c,0x23,0x7f,0x25,0x1b}}, // \xe9\x84\xb2
+{0x9149,{0x7d,0x75,0x6f,0x65,0x7f,0x75,0x7d}}, // \xe9\x85\x89
+{0x914a,{0x7d,0x6f,0x7d,0x01,0x41,0x7f,0x01}}, // \xe9\x85\x8a
+{0x914b,{0x02,0x7a,0x5f,0x4a,0x5e,0x7b,0x02}}, // \xe9\x85\x8b
+{0x914c,{0x7d,0x6f,0x7d,0x04,0x0b,0x52,0x7e}}, // \xe9\x85\x8c
+{0x914d,{0x7d,0x6f,0x7d,0x00,0x79,0x49,0x6f}}, // \xe9\x85\x8d
+{0x914e,{0x7d,0x6f,0x7d,0x0a,0x52,0x7f,0x02}}, // \xe9\x85\x8e
+{0x9152,{0x75,0x00,0x7d,0x6f,0x65,0x6f,0x7d}}, // \xe9\x85\x92
+{0x9154,{0x7d,0x6f,0x7d,0x2a,0x77,0x2e,0x28}}, // \xe9\x85\x94
+{0x9156,{0x7d,0x6f,0x7d,0x46,0x3f,0x72,0x46}}, // \xe9\x85\x96
+{0x9158,{0x7d,0x6f,0x7d,0x40,0x5b,0x29,0x5b}}, // \xe9\x85\x98
+{0x9162,{0x7d,0x6f,0x7d,0x04,0x7f,0x2a,0x2a}}, // \xe9\x85\xa2
+{0x9163,{0x7d,0x6f,0x7d,0x02,0x7f,0x4a,0x7f}}, // \xe9\x85\xa3
+{0x9165,{0x7d,0x6f,0x7d,0x24,0x15,0x7f,0x25}}, // \xe9\x85\xa5
+{0x9169,{0x7d,0x6f,0x7d,0x14,0x7b,0x55,0x73}}, // \xe9\x85\xa9
+{0x916a,{0x7d,0x6f,0x7d,0x10,0x6a,0x65,0x6b}}, // \xe9\x85\xaa
+{0x916c,{0x7d,0x6f,0x7d,0x0c,0x7f,0x0c,0x7f}}, // \xe9\x85\xac
+{0x9172,{0x7d,0x6f,0x7d,0x08,0x5b,0x7d,0x57}}, // \xe9\x85\xb2
+{0x9173,{0x7d,0x6f,0x7d,0x08,0x7a,0x2d,0x78}}, // \xe9\x85\xb3
+{0x9175,{0x7d,0x7f,0x29,0x1a,0x2f,0x7a,0x29}}, // \xe9\x85\xb5
+{0x9177,{0x7d,0x6f,0x7d,0x0c,0x6b,0x6f,0x6a}}, // \xe9\x85\xb7
+{0x9178,{0x7d,0x6f,0x7d,0x2a,0x57,0x32,0x4f}}, // \xe9\x85\xb8
+{0x9182,{0x7d,0x6f,0x7d,0x1a,0x7f,0x1a,0x7f}}, // \xe9\x86\x82
+{0x9187,{0x7d,0x6f,0x7d,0x22,0x2e,0x6b,0x3e}}, // \xe9\x86\x87
+{0x9189,{0x7d,0x6f,0x7d,0x2e,0x73,0x2e,0x32}}, // \xe9\x86\x89
+{0x918b,{0x7d,0x6f,0x7d,0x0a,0x7f,0x5a,0x7f}}, // \xe9\x86\x8b
+{0x918d,{0x7d,0x6f,0x7d,0x34,0x47,0x7f,0x54}}, // \xe9\x86\x8d
+{0x9190,{0x7d,0x7f,0x3a,0x2f,0x7a,0x3f,0x7f}}, // \xe9\x86\x90
+{0x9192,{0x7d,0x6f,0x7d,0x48,0x57,0x7d,0x57}}, // \xe9\x86\x92
+{0x9197,{0x7d,0x7f,0x55,0x3b,0x19,0x7a,0x55}}, // \xe9\x86\x97
+{0x919c,{0x7d,0x6f,0x7d,0x5e,0x3f,0x7a,0x5e}}, // \xe9\x86\x9c
+{0x91a2,{0x7d,0x6f,0x7d,0x4a,0x67,0x7a,0x5a}}, // \xe9\x86\xa2
+{0x91a4,{0x0a,0x7f,0x59,0x4b,0x5d,0x7f,0x09}}, // \xe9\x86\xa4
+{0x91aa,{0x7d,0x6f,0x7d,0x11,0x4b,0x55,0x2b}}, // \xe9\x86\xaa
+{0x91ab,{0x1f,0x77,0x7d,0x55,0x7b,0x75,0x1b}}, // \xe9\x86\xab
+{0x91af,{0x7d,0x6f,0x7d,0x52,0x6e,0x7b,0x5a}}, // \xe9\x86\xaf
+{0x91b4,{0x7d,0x6f,0x7d,0x5e,0x6f,0x6e,0x5f}}, // \xe9\x86\xb4
+{0x91b5,{0x7d,0x6f,0x7d,0x2c,0x57,0x7a,0x2a}}, // \xe9\x86\xb5
+{0x91b8,{0x7d,0x7f,0x1a,0x7e,0x53,0x3e,0x5a}}, // \xe9\x86\xb8
+{0x91ba,{0x7d,0x6f,0x7d,0x52,0x1f,0x5f,0x52}}, // \xe9\x86\xba
+{0x91c0,{0x7d,0x7f,0x36,0x7e,0x5b,0x3e,0x56}}, // \xe9\x87\x80
+{0x91c1,{0x44,0x3e,0x55,0x36,0x75,0x3f,0x44}}, // \xe9\x87\x81
+{0x91c6,{0x4a,0x4e,0x2a,0x7e,0x29,0x4d,0x49}}, // \xe9\x87\x86
+{0x91c7,{0x52,0x56,0x32,0x76,0x39,0x55,0x51}}, // \xe9\x87\x87
+{0x91c8,{0x55,0x31,0x7f,0x55,0x3f,0x19,0x67}}, // \xe9\x87\x88
+{0x91c9,{0x55,0x31,0x7f,0x35,0x7c,0x7f,0x7c}}, // \xe9\x87\x89
+{0x91cb,{0x55,0x31,0x7f,0x2b,0x3b,0x6f,0x3b}}, // \xe9\x87\x8b
+{0x91cc,{0x40,0x5f,0x55,0x7f,0x55,0x5f,0x40}}, // \xe9\x87\x8c
+{0x91cd,{0x42,0x5e,0x6b,0x7f,0x6b,0x5e,0x42}}, // \xe9\x87\x8d
+{0x91ce,{0x5f,0x55,0x7f,0x5f,0x49,0x7d,0x1b}}, // \xe9\x87\x8e
+{0x91cf,{0x44,0x5f,0x55,0x7d,0x55,0x5f,0x44}}, // \xe9\x87\x8f
+{0x91d0,{0x44,0x3e,0x5f,0x7e,0x7a,0x75,0x5b}}, // \xe9\x87\x90
+{0x91d1,{0x54,0x74,0x56,0x7d,0x56,0x74,0x54}}, // \xe9\x87\x91
+{0x91d6,{0x56,0x7d,0x36,0x41,0x3f,0x41,0x7f}}, // \xe9\x87\x96
+{0x91d8,{0x56,0x7d,0x36,0x01,0x41,0x7f,0x01}}, // \xe9\x87\x98
+{0x91db,{0x56,0x7d,0x36,0x42,0x3f,0x42,0x7e}}, // \xe9\x87\x9b
+{0x91dc,{0x4a,0x6a,0x55,0x7c,0x55,0x6a,0x4a}}, // \xe9\x87\x9c
+{0x91dd,{0x56,0x7d,0x36,0x04,0x04,0x7f,0x04}}, // \xe9\x87\x9d
+{0x91df,{0x56,0x7d,0x56,0x3f,0x00,0x3f,0x40}}, // \xe9\x87\x9f
+{0x91e1,{0x48,0x6a,0x59,0x74,0x59,0x6a,0x48}}, // \xe9\x87\xa1
+{0x91e3,{0x56,0x7d,0x36,0x04,0x0b,0x52,0x7e}}, // \xe9\x87\xa3
+{0x91e6,{0x54,0x76,0x7d,0x36,0x7e,0x42,0x7e}}, // \xe9\x87\xa6
+{0x91e7,{0x56,0x7d,0x56,0x3f,0x1e,0x00,0x7f}}, // \xe9\x87\xa7
+{0x91f5,{0x56,0x7d,0x57,0x29,0x13,0x29,0x47}}, // \xe9\x87\xb5
+{0x91f6,{0x56,0x7d,0x36,0x7e,0x44,0x5f,0x6c}}, // \xe9\x87\xb6
+{0x91fc,{0x56,0x7d,0x36,0x45,0x3f,0x51,0x7f}}, // \xe9\x87\xbc
+{0x91ff,{0x56,0x7d,0x36,0x40,0x3e,0x0a,0x79}}, // \xe9\x87\xbf
+{0x920d,{0x56,0x7d,0x1a,0x12,0x7f,0x52,0x5a}}, // \xe9\x88\x8d
+{0x920e,{0x56,0x7d,0x36,0x34,0x2b,0x22,0x7e}}, // \xe9\x88\x8e
+{0x9211,{0x56,0x7d,0x36,0x5f,0x5d,0x25,0x5d}}, // \xe9\x88\x91
+{0x9214,{0x56,0x7d,0x2a,0x46,0x5f,0x22,0x14}}, // \xe9\x88\x94
+{0x9215,{0x56,0x7d,0x4b,0x7f,0x49,0x7f,0x48}}, // \xe9\x88\x95
+{0x921e,{0x56,0x7d,0x36,0x04,0x2b,0x52,0x7e}}, // \xe9\x88\x9e
+{0x9229,{0x56,0x7d,0x36,0x41,0x3d,0x15,0x1d}}, // \xe9\x88\xa9
+{0x922c,{0x56,0x7d,0x56,0x3f,0x05,0x1d,0x67}}, // \xe9\x88\xac
+{0x9234,{0x56,0x7d,0x36,0x12,0x75,0x16,0x34}}, // \xe9\x88\xb4
+{0x9237,{0x56,0x7d,0x36,0x04,0x74,0x5f,0x74}}, // \xe9\x88\xb7
+{0x923f,{0x56,0x7d,0x36,0x7f,0x49,0x7f,0x7f}}, // \xe9\x88\xbf
+{0x9244,{0x56,0x7d,0x36,0x4c,0x4b,0x3f,0x4a}}, // \xe9\x89\x84
+{0x9245,{0x56,0x7d,0x36,0x7f,0x55,0x55,0x5d}}, // \xe9\x89\x85
+{0x9248,{0x56,0x7d,0x36,0x06,0x7a,0x53,0x56}}, // \xe9\x89\x88
+{0x9249,{0x56,0x7d,0x36,0x4a,0x6e,0x53,0x6a}}, // \xe9\x89\x89
+{0x924b,{0x56,0x7d,0x36,0x04,0x7b,0x5a,0x5e}}, // \xe9\x89\x8b
+{0x9250,{0x56,0x7d,0x36,0x11,0x7f,0x49,0x79}}, // \xe9\x89\x90
+{0x9257,{0x56,0x7d,0x36,0x02,0x7f,0x4a,0x7f}}, // \xe9\x89\x97
+{0x925a,{0x56,0x7d,0x5e,0x3d,0x00,0x7f,0x1f}}, // \xe9\x89\x9a
+{0x925b,{0x56,0x7d,0x36,0x08,0x77,0x50,0x77}}, // \xe9\x89\x9b
+{0x925e,{0x56,0x7d,0x36,0x7e,0x42,0x3f,0x52}}, // \xe9\x89\x9e
+{0x9262,{0x56,0x7d,0x12,0x2a,0x7f,0x2a,0x12}}, // \xe9\x89\xa2
+{0x9264,{0x56,0x7d,0x36,0x04,0x1b,0x5a,0x7e}}, // \xe9\x89\xa4
+{0x9266,{0x56,0x7d,0x36,0x79,0x41,0x7f,0x49}}, // \xe9\x89\xa6
+{0x9271,{0x56,0x7d,0x36,0x1e,0x62,0x5b,0x62}}, // \xe9\x89\xb1
+{0x927e,{0x56,0x7d,0x36,0x2e,0x7d,0x2c,0x26}}, // \xe9\x89\xbe
+{0x9280,{0x56,0x7d,0x36,0x7f,0x55,0x35,0x5f}}, // \xe9\x8a\x80
+{0x9283,{0x56,0x7d,0x4a,0x3e,0x0b,0x76,0x4a}}, // \xe9\x8a\x83
+{0x9285,{0x56,0x7d,0x36,0x7f,0x35,0x35,0x7f}}, // \xe9\x8a\x85
+{0x9291,{0x56,0x7d,0x4e,0x3b,0x0f,0x7a,0x48}}, // \xe9\x8a\x91
+{0x9293,{0x56,0x7d,0x36,0x45,0x57,0x7d,0x56}}, // \xe9\x8a\x93
+{0x9295,{0x56,0x7d,0x36,0x5e,0x3f,0x56,0x72}}, // \xe9\x8a\x95
+{0x9296,{0x56,0x7d,0x4e,0x2b,0x7f,0x2a,0x48}}, // \xe9\x8a\x96
+{0x9298,{0x56,0x7d,0x36,0x14,0x7b,0x55,0x73}}, // \xe9\x8a\x98
+{0x929a,{0x56,0x7d,0x76,0x3f,0x00,0x7f,0x4a}}, // \xe9\x8a\x9a
+{0x929b,{0x56,0x7d,0x36,0x04,0x76,0x5e,0x75}}, // \xe9\x8a\x9b
+{0x929c,{0x0a,0x7d,0x56,0x7d,0x36,0x45,0x7d}}, // \xe9\x8a\x9c
+{0x92ad,{0x56,0x7d,0x36,0x4a,0x5f,0x2a,0x53}}, // \xe9\x8a\xad
+{0x92b7,{0x56,0x7d,0x02,0x7d,0x2a,0x7d,0x02}}, // \xe9\x8a\xb7
+{0x92b9,{0x56,0x7d,0x5a,0x37,0x1f,0x37,0x6a}}, // \xe9\x8a\xb9
+{0x92cf,{0x56,0x7d,0x56,0x4e,0x3f,0x4e,0x52}}, // \xe9\x8b\x8f
+{0x92d2,{0x56,0x7d,0x2a,0x2a,0x75,0x2b,0x28}}, // \xe9\x8b\x92
+{0x92e4,{0x56,0x7d,0x7e,0x2a,0x7e,0x1f,0x7c}}, // \xe9\x8b\xa4
+{0x92e9,{0x56,0x7d,0x36,0x0a,0x7b,0x4e,0x4b}}, // \xe9\x8b\xa9
+{0x92ea,{0x56,0x7d,0x7a,0x2a,0x7f,0x2a,0x7b}}, // \xe9\x8b\xaa
+{0x92ed,{0x56,0x7d,0x4e,0x3b,0x0a,0x7b,0x4e}}, // \xe9\x8b\xad
+{0x92f2,{0x56,0x7d,0x52,0x1e,0x16,0x1d,0x54}}, // \xe9\x8b\xb2
+{0x92f3,{0x56,0x7d,0x36,0x5e,0x17,0x7e,0x14}}, // \xe9\x8b\xb3
+{0x92f8,{0x56,0x7d,0x36,0x1f,0x6b,0x5f,0x6b}}, // \xe9\x8b\xb8
+{0x92fa,{0x56,0x7d,0x56,0x2a,0x7b,0x4a,0x5e}}, // \xe9\x8b\xba
+{0x92fc,{0x56,0x7d,0x7f,0x35,0x29,0x35,0x7f}}, // \xe9\x8b\xbc
+{0x9306,{0x56,0x7d,0x36,0x08,0x7a,0x2f,0x7a}}, // \xe9\x8c\x86
+{0x930f,{0x56,0x7d,0x5f,0x77,0x41,0x77,0x5d}}, // \xe9\x8c\x8f
+{0x9310,{0x56,0x7d,0x36,0x7f,0x4a,0x7f,0x4a}}, // \xe9\x8c\x90
+{0x9318,{0x56,0x7d,0x56,0x5d,0x77,0x5d,0x54}}, // \xe9\x8c\x98
+{0x9319,{0x56,0x7d,0x36,0x7a,0x5d,0x7a,0x7d}}, // \xe9\x8c\x99
+{0x931a,{0x56,0x7d,0x12,0x55,0x7f,0x3d,0x12}}, // \xe9\x8c\x9a
+{0x9320,{0x56,0x7d,0x46,0x32,0x46,0x7f,0x56}}, // \xe9\x8c\xa0
+{0x9322,{0x56,0x7d,0x36,0x52,0x5b,0x36,0x5b}}, // \xe9\x8c\xa2
+{0x9323,{0x56,0x7d,0x5f,0x2b,0x5d,0x2b,0x5d}}, // \xe9\x8c\xa3
+{0x9326,{0x56,0x7d,0x32,0x1e,0x7b,0x1e,0x30}}, // \xe9\x8c\xa6
+{0x9328,{0x56,0x7d,0x7a,0x5f,0x7a,0x5f,0x7a}}, // \xe9\x8c\xa8
+{0x932b,{0x56,0x7d,0x36,0x27,0x5d,0x35,0x77}}, // \xe9\x8c\xab
+{0x932c,{0x56,0x7d,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe9\x8c\xac
+{0x932e,{0x56,0x7d,0x7f,0x75,0x6f,0x75,0x7f}}, // \xe9\x8c\xae
+{0x932f,{0x56,0x7d,0x0a,0x7f,0x5a,0x7f,0x0a}}, // \xe9\x8c\xaf
+{0x9332,{0x56,0x7d,0x56,0x25,0x7d,0x27,0x54}}, // \xe9\x8c\xb2
+{0x9335,{0x56,0x7d,0x36,0x7b,0x02,0x7f,0x52}}, // \xe9\x8c\xb5
+{0x933a,{0x56,0x7d,0x36,0x4a,0x3b,0x2e,0x6b}}, // \xe9\x8c\xba
+{0x933b,{0x56,0x7d,0x36,0x75,0x65,0x3e,0x45}}, // \xe9\x8c\xbb
+{0x9344,{0x56,0x7d,0x22,0x4e,0x7b,0x0e,0x22}}, // \xe9\x8d\x84
+{0x934b,{0x56,0x7d,0x36,0x78,0x6f,0x09,0x7f}}, // \xe9\x8d\x8b
+{0x934d,{0x56,0x7d,0x3e,0x4a,0x5f,0x2e,0x5a}}, // \xe9\x8d\x8d
+{0x9354,{0x56,0x7d,0x36,0x0b,0x1f,0x5c,0x6b}}, // \xe9\x8d\x94
+{0x9356,{0x56,0x7d,0x72,0x5f,0x72,0x5f,0x52}}, // \xe9\x8d\x96
+{0x935b,{0x56,0x7d,0x36,0x7e,0x55,0x2b,0x5b}}, // \xe9\x8d\x9b
+{0x935c,{0x56,0x7d,0x7f,0x2b,0x58,0x2d,0x5f}}, // \xe9\x8d\x9c
+{0x9360,{0x56,0x7d,0x36,0x50,0x5e,0x7b,0x5e}}, // \xe9\x8d\xa0
+{0x936c,{0x56,0x7d,0x36,0x7f,0x4c,0x3f,0x44}}, // \xe9\x8d\xac
+{0x936e,{0x56,0x7d,0x36,0x73,0x75,0x26,0x54}}, // \xe9\x8d\xae
+{0x9375,{0x56,0x7d,0x36,0x49,0x37,0x4a,0x5f}}, // \xe9\x8d\xb5
+{0x937c,{0x56,0x7d,0x3e,0x6a,0x6a,0x3f,0x52}}, // \xe9\x8d\xbc
+{0x937e,{0x56,0x7d,0x36,0x44,0x5e,0x7e,0x5d}}, // \xe9\x8d\xbe
+{0x938c,{0x56,0x7d,0x52,0x37,0x7e,0x3f,0x4a}}, // \xe9\x8e\x8c
+{0x9394,{0x56,0x7d,0x26,0x16,0x6b,0x76,0x26}}, // \xe9\x8e\x94
+{0x9396,{0x56,0x7d,0x36,0x5d,0x14,0x17,0x5d}}, // \xe9\x8e\x96
+{0x9397,{0x56,0x7d,0x36,0x44,0x3e,0x6d,0x62}}, // \xe9\x8e\x97
+{0x939a,{0x56,0x7d,0x36,0x79,0x40,0x7e,0x77}}, // \xe9\x8e\x9a
+{0x93a7,{0x56,0x7d,0x36,0x5b,0x6a,0x6b,0x5b}}, // \xe9\x8e\xa7
+{0x93ac,{0x56,0x7d,0x72,0x1e,0x5b,0x1e,0x72}}, // \xe9\x8e\xac
+{0x93ad,{0x56,0x7d,0x36,0x58,0x1f,0x1e,0x52}}, // \xe9\x8e\xad
+{0x93ae,{0x56,0x7d,0x36,0x52,0x1e,0x1f,0x52}}, // \xe9\x8e\xae
+{0x93b0,{0x56,0x7d,0x52,0x6d,0x64,0x6d,0x52}}, // \xe9\x8e\xb0
+{0x93b9,{0x56,0x7d,0x36,0x75,0x6a,0x59,0x6a}}, // \xe9\x8e\xb9
+{0x93c3,{0x56,0x7d,0x62,0x1f,0x7a,0x3f,0x56}}, // \xe9\x8f\x83
+{0x93c8,{0x56,0x7d,0x32,0x65,0x5e,0x7f,0x52}}, // \xe9\x8f\x88
+{0x93d0,{0x56,0x7d,0x36,0x11,0x4b,0x55,0x2b}}, // \xe9\x8f\x90
+{0x93d1,{0x56,0x7d,0x7a,0x6e,0x5b,0x6e,0x7a}}, // \xe9\x8f\x91
+{0x93d6,{0x10,0x4e,0x6a,0x5e,0x7f,0x5e,0x6a}}, // \xe9\x8f\x96
+{0x93d7,{0x56,0x7d,0x47,0x57,0x7b,0x55,0x4b}}, // \xe9\x8f\x97
+{0x93d8,{0x56,0x7d,0x36,0x7f,0x2a,0x4d,0x7b}}, // \xe9\x8f\x98
+{0x93dd,{0x56,0x7d,0x36,0x4c,0x5f,0x2d,0x5f}}, // \xe9\x8f\x9d
+{0x93e1,{0x56,0x7d,0x4a,0x3e,0x3b,0x7e,0x4a}}, // \xe9\x8f\xa1
+{0x93e4,{0x56,0x7d,0x56,0x7e,0x5b,0x3e,0x54}}, // \xe9\x8f\xa4
+{0x93e5,{0x56,0x7d,0x36,0x76,0x0b,0x7a,0x6e}}, // \xe9\x8f\xa5
+{0x93e8,{0x5a,0x7e,0x5f,0x7a,0x57,0x7d,0x55}}, // \xe9\x8f\xa8
+{0x9403,{0x56,0x7d,0x5e,0x3e,0x17,0x7e,0x5c}}, // \xe9\x90\x83
+{0x9407,{0x56,0x7d,0x36,0x15,0x6f,0x7f,0x15}}, // \xe9\x90\x87
+{0x9410,{0x56,0x7d,0x4a,0x1e,0x6b,0x1e,0x4a}}, // \xe9\x90\x90
+{0x9413,{0x56,0x7d,0x2e,0x7b,0x56,0x3f,0x5e}}, // \xe9\x90\x93
+{0x9414,{0x56,0x7d,0x36,0x21,0x3b,0x7b,0x21}}, // \xe9\x90\x94
+{0x9418,{0x56,0x7d,0x4a,0x5e,0x7b,0x5e,0x4a}}, // \xe9\x90\x98
+{0x9419,{0x56,0x7d,0x46,0x5b,0x69,0x5a,0x45}}, // \xe9\x90\x99
+{0x941a,{0x56,0x7d,0x36,0x6d,0x2f,0x4f,0x6d}}, // \xe9\x90\x9a
+{0x9421,{0x56,0x7d,0x5e,0x6f,0x5e,0x3f,0x55}}, // \xe9\x90\xa1
+{0x942b,{0x56,0x7d,0x76,0x1f,0x2a,0x1f,0x7a}}, // \xe9\x90\xab
+{0x9435,{0x56,0x7d,0x5e,0x77,0x5e,0x3f,0x55}}, // \xe9\x90\xb5
+{0x9436,{0x56,0x7d,0x36,0x7f,0x55,0x37,0x5f}}, // \xe9\x90\xb6
+{0x9438,{0x56,0x7d,0x2b,0x3b,0x6f,0x3b,0x2b}}, // \xe9\x90\xb8
+{0x943a,{0x56,0x7d,0x77,0x5e,0x7b,0x5e,0x75}}, // \xe9\x90\xba
+{0x9441,{0x56,0x7d,0x2f,0x5d,0x2a,0x5d,0x4f}}, // \xe9\x91\x81
+{0x9444,{0x56,0x7d,0x36,0x36,0x5f,0x76,0x14}}, // \xe9\x91\x84
+{0x9451,{0x56,0x7d,0x36,0x4f,0x60,0x6b,0x4a}}, // \xe9\x91\x91
+{0x9452,{0x57,0x77,0x5d,0x78,0x5f,0x76,0x56}}, // \xe9\x91\x92
+{0x9453,{0x56,0x7d,0x36,0x79,0x46,0x7f,0x76}}, // \xe9\x91\x93
+{0x945a,{0x56,0x7d,0x4a,0x37,0x3a,0x37,0x4a}}, // \xe9\x91\x9a
+{0x945b,{0x56,0x7d,0x3e,0x4a,0x3f,0x3e,0x4a}}, // \xe9\x91\x9b
+{0x945e,{0x56,0x7d,0x56,0x3e,0x75,0x2e,0x7d}}, // \xe9\x91\x9e
+{0x9460,{0x56,0x7d,0x5a,0x35,0x7f,0x3a,0x55}}, // \xe9\x91\xa0
+{0x9462,{0x56,0x7d,0x3e,0x64,0x3f,0x5a,0x6a}}, // \xe9\x91\xa2
+{0x946a,{0x56,0x7d,0x36,0x5c,0x64,0x6f,0x4a}}, // \xe9\x91\xaa
+{0x9470,{0x56,0x7d,0x76,0x3e,0x7d,0x3e,0x74}}, // \xe9\x91\xb0
+{0x9475,{0x56,0x7d,0x26,0x7f,0x52,0x7f,0x56}}, // \xe9\x91\xb5
+{0x9477,{0x56,0x7d,0x36,0x75,0x27,0x3f,0x75}}, // \xe9\x91\xb7
+{0x947c,{0x56,0x7d,0x2f,0x75,0x27,0x7d,0x57}}, // \xe9\x91\xbc
+{0x947d,{0x56,0x7d,0x4b,0x36,0x3b,0x36,0x4a}}, // \xe9\x91\xbd
+{0x947e,{0x4a,0x6d,0x5a,0x77,0x5a,0x6d,0x48}}, // \xe9\x91\xbe
+{0x947f,{0x55,0x7e,0x5f,0x7e,0x5b,0x75,0x5b}}, // \xe9\x91\xbf
+{0x9481,{0x56,0x7d,0x43,0x5f,0x2c,0x5f,0x4b}}, // \xe9\x92\x81
+{0x9577,{0x10,0x50,0x7f,0x55,0x35,0x51,0x50}}, // \xe9\x95\xb7
+{0x9580,{0x7f,0x05,0x07,0x00,0x07,0x45,0x7f}}, // \xe9\x96\x80
+{0x9582,{0x7f,0x05,0x17,0x10,0x17,0x45,0x7f}}, // \xe9\x96\x82
+{0x9583,{0x7f,0x45,0x27,0x18,0x27,0x45,0x7f}}, // \xe9\x96\x83
+{0x9587,{0x7f,0x05,0x0f,0x78,0x2f,0x05,0x7f}}, // \xe9\x96\x87
+{0x9589,{0x7f,0x55,0x37,0x78,0x17,0x45,0x7f}}, // \xe9\x96\x89
+{0x958a,{0x7f,0x35,0x27,0x38,0x27,0x35,0x7f}}, // \xe9\x96\x8a
+{0x958b,{0x7f,0x2b,0x7b,0x28,0x7b,0x2b,0x7f}}, // \xe9\x96\x8b
+{0x958f,{0x7f,0x05,0x57,0x7c,0x57,0x05,0x7f}}, // \xe9\x96\x8f
+{0x9591,{0x7f,0x2b,0x1b,0x7c,0x1b,0x2b,0x7f}}, // \xe9\x96\x91
+{0x9593,{0x7f,0x05,0x7f,0x54,0x7f,0x05,0x7f}}, // \xe9\x96\x93
+{0x9594,{0x7f,0x4b,0x5b,0x2c,0x5b,0x4b,0x7f}}, // \xe9\x96\x94
+{0x9596,{0x7f,0x55,0x37,0x78,0x27,0x55,0x7f}}, // \xe9\x96\x96
+{0x9598,{0x7f,0x05,0x37,0x70,0x37,0x05,0x7f}}, // \xe9\x96\x98
+{0x9599,{0x7f,0x0b,0x3b,0x7c,0x1b,0x3b,0x7f}}, // \xe9\x96\x99
+{0x95a0,{0x7f,0x05,0x57,0x7c,0x57,0x25,0x7f}}, // \xe9\x96\xa0
+{0x95a2,{0x7f,0x13,0x57,0x38,0x57,0x13,0x7f}}, // \xe9\x96\xa2
+{0x95a3,{0x7f,0x23,0x6b,0x54,0x6f,0x23,0x7f}}, // \xe9\x96\xa3
+{0x95a4,{0x7f,0x13,0x7b,0x54,0x7b,0x13,0x7f}}, // \xe9\x96\xa4
+{0x95a5,{0x7f,0x13,0x7b,0x50,0x3b,0x4b,0x7f}}, // \xe9\x96\xa5
+{0x95a7,{0x7f,0x6b,0x3f,0x28,0x3f,0x6b,0x7f}}, // \xe9\x96\xa7
+{0x95a8,{0x7f,0x53,0x7b,0x7c,0x7b,0x53,0x7f}}, // \xe9\x96\xa8
+{0x95ad,{0x7f,0x73,0x5f,0x54,0x7f,0x03,0x7f}}, // \xe9\x96\xad
+{0x95b2,{0x7f,0x43,0x5f,0x28,0x7f,0x43,0x7f}}, // \xe9\x96\xb2
+{0x95b9,{0x7f,0x2b,0x1b,0x3c,0x7b,0x5b,0x7f}}, // \xe9\x96\xb9
+{0x95bb,{0x7f,0x03,0x6b,0x54,0x5f,0x73,0x7f}}, // \xe9\x96\xbb
+{0x95bc,{0x7f,0x4b,0x3f,0x68,0x57,0x2b,0x7f}}, // \xe9\x96\xbc
+{0x95be,{0x7f,0x5b,0x5b,0x08,0x3f,0x4b,0x7f}}, // \xe9\x96\xbe
+{0x95c3,{0x7f,0x53,0x5f,0x34,0x5f,0x53,0x7f}}, // \xe9\x97\x83
+{0x95c7,{0x7f,0x2b,0x7b,0x6c,0x7b,0x2b,0x7f}}, // \xe9\x97\x87
+{0x95ca,{0x7f,0x57,0x0b,0x6c,0x5f,0x6b,0x7f}}, // \xe9\x97\x8a
+{0x95cc,{0x7f,0x4b,0x3b,0x7c,0x3b,0x4b,0x7f}}, // \xe9\x97\x8c
+{0x95cd,{0x7f,0x53,0x3b,0x7c,0x7b,0x17,0x7f}}, // \xe9\x97\x8d
+{0x95d4,{0x7f,0x03,0x5b,0x7c,0x6f,0x5b,0x7f}}, // \xe9\x97\x94
+{0x95d5,{0x7f,0x57,0x3b,0x4c,0x3b,0x5b,0x7f}}, // \xe9\x97\x95
+{0x95d6,{0x7f,0x43,0x1f,0x5c,0x17,0x73,0x7f}}, // \xe9\x97\x96
+{0x95d8,{0x7f,0x5b,0x6b,0x58,0x13,0x7b,0x7f}}, // \xe9\x97\x98
+{0x95dc,{0x7f,0x5b,0x37,0x10,0x7b,0x37,0x7f}}, // \xe9\x97\x9c
+{0x95e1,{0x7f,0x27,0x3f,0x78,0x3f,0x27,0x7f}}, // \xe9\x97\xa1
+{0x95e2,{0x7f,0x7f,0x6f,0x38,0x6f,0x3b,0x7f}}, // \xe9\x97\xa2
+{0x95e5,{0x7f,0x57,0x33,0x58,0x7f,0x5b,0x7f}}, // \xe9\x97\xa5
+{0x961c,{0x20,0x3e,0x2a,0x6b,0x2e,0x38,0x20}}, // \xe9\x98\x9c
+{0x9621,{0x7f,0x25,0x1b,0x08,0x0a,0x7e,0x09}}, // \xe9\x98\xa1
+{0x9628,{0x7f,0x1b,0x40,0x3f,0x7d,0x45,0x5d}}, // \xe9\x98\xa8
+{0x962a,{0x7f,0x1b,0x20,0x5f,0x5d,0x25,0x5d}}, // \xe9\x98\xaa
+{0x962e,{0x7f,0x1b,0x44,0x3d,0x05,0x7d,0x44}}, // \xe9\x98\xae
+{0x962f,{0x7f,0x1b,0x40,0x7c,0x40,0x7f,0x44}}, // \xe9\x98\xaf
+{0x9632,{0x7f,0x25,0x1b,0x42,0x3e,0x4b,0x7a}}, // \xe9\x98\xb2
+{0x963b,{0x7f,0x1b,0x40,0x7f,0x55,0x7f,0x40}}, // \xe9\x98\xbb
+{0x963f,{0x7f,0x25,0x1b,0x1d,0x15,0x5d,0x7f}}, // \xe9\x98\xbf
+{0x9640,{0x7f,0x25,0x1b,0x06,0x7a,0x53,0x56}}, // \xe9\x99\x80
+{0x9642,{0x7f,0x1b,0x40,0x3e,0x5a,0x2f,0x5e}}, // \xe9\x99\x82
+{0x9644,{0x7f,0x25,0x1b,0x7e,0x09,0x42,0x7f}}, // \xe9\x99\x84
+{0x964b,{0x7f,0x25,0x1b,0x7c,0x55,0x4f,0x5d}}, // \xe9\x99\x8b
+{0x964c,{0x7f,0x1b,0x00,0x7d,0x57,0x55,0x7d}}, // \xe9\x99\x8c
+{0x964d,{0x7f,0x1b,0x28,0x3a,0x35,0x7b,0x28}}, // \xe9\x99\x8d
+{0x964f,{0x7f,0x25,0x1b,0x12,0x7f,0x2a,0x7a}}, // \xe9\x99\x8f
+{0x9650,{0x7f,0x25,0x1b,0x7f,0x55,0x35,0x5f}}, // \xe9\x99\x90
+{0x965b,{0x7f,0x1b,0x4f,0x5a,0x70,0x5f,0x4a}}, // \xe9\x99\x9b
+{0x965c,{0x7f,0x1b,0x52,0x4e,0x3f,0x4e,0x52}}, // \xe9\x99\x9c
+{0x965d,{0x7f,0x1b,0x52,0x4e,0x3f,0x4e,0x52}}, // \xe9\x99\x9d
+{0x965e,{0x7f,0x1b,0x56,0x4e,0x65,0x5f,0x44}}, // \xe9\x99\x9e
+{0x965f,{0x7f,0x25,0x1b,0x4e,0x58,0x2f,0x1a}}, // \xe9\x99\x9f
+{0x9662,{0x7f,0x1b,0x56,0x32,0x17,0x76,0x56}}, // \xe9\x99\xa2
+{0x9663,{0x7f,0x1b,0x22,0x3e,0x7f,0x3e,0x22}}, // \xe9\x99\xa3
+{0x9664,{0x7f,0x1b,0x54,0x16,0x7d,0x16,0x54}}, // \xe9\x99\xa4
+{0x9665,{0x7f,0x25,0x1b,0x7a,0x01,0x7d,0x7b}}, // \xe9\x99\xa5
+{0x9666,{0x7f,0x1b,0x34,0x5e,0x17,0x7e,0x14}}, // \xe9\x99\xa6
+{0x966a,{0x7f,0x1b,0x0a,0x6e,0x6b,0x6e,0x0a}}, // \xe9\x99\xaa
+{0x966c,{0x7f,0x1b,0x21,0x3f,0x7f,0x12,0x2e}}, // \xe9\x99\xac
+{0x9670,{0x7f,0x1b,0x54,0x76,0x5d,0x32,0x54}}, // \xe9\x99\xb0
+{0x9672,{0x7f,0x1b,0x54,0x5d,0x77,0x5d,0x54}}, // \xe9\x99\xb2
+{0x9673,{0x7f,0x1b,0x42,0x2e,0x7f,0x2e,0x42}}, // \xe9\x99\xb3
+{0x9675,{0x7f,0x1b,0x28,0x5a,0x2f,0x5a,0x48}}, // \xe9\x99\xb5
+{0x9676,{0x7f,0x1b,0x64,0x4b,0x7e,0x6a,0x7e}}, // \xe9\x99\xb6
+{0x9677,{0x7f,0x25,0x1b,0x7a,0x41,0x6d,0x7b}}, // \xe9\x99\xb7
+{0x9678,{0x7f,0x1b,0x54,0x4e,0x67,0x5e,0x54}}, // \xe9\x99\xb8
+{0x967a,{0x7f,0x1b,0x5c,0x56,0x3d,0x56,0x5c}}, // \xe9\x99\xba
+{0x967d,{0x7f,0x1b,0x24,0x5f,0x35,0x57,0x74}}, // \xe9\x99\xbd
+{0x9685,{0x7f,0x1b,0x78,0x4b,0x7f,0x2b,0x78}}, // \xe9\x9a\x85
+{0x9686,{0x7f,0x1b,0x48,0x5a,0x75,0x5b,0x48}}, // \xe9\x9a\x86
+{0x9688,{0x7f,0x25,0x1b,0x77,0x55,0x37,0x57}}, // \xe9\x9a\x88
+{0x968a,{0x7f,0x1b,0x2a,0x57,0x7a,0x13,0x2a}}, // \xe9\x9a\x8a
+{0x968b,{0x7f,0x25,0x1b,0x76,0x3b,0x7e,0x0a}}, // \xe9\x9a\x8b
+{0x968d,{0x7f,0x1b,0x50,0x5e,0x7b,0x5e,0x50}}, // \xe9\x9a\x8d
+{0x968e,{0x7f,0x25,0x1f,0x6a,0x70,0x6f,0x0a}}, // \xe9\x9a\x8e
+{0x968f,{0x7f,0x25,0x5b,0x39,0x4a,0x77,0x72}}, // \xe9\x9a\x8f
+{0x9694,{0x7f,0x25,0x1b,0x79,0x2f,0x6f,0x79}}, // \xe9\x9a\x94
+{0x9695,{0x7f,0x25,0x1b,0x5c,0x17,0x17,0x5c}}, // \xe9\x9a\x95
+{0x9697,{0x7f,0x1b,0x5e,0x2a,0x7f,0x6a,0x5e}}, // \xe9\x9a\x97
+{0x9698,{0x7f,0x1b,0x52,0x6d,0x64,0x6d,0x52}}, // \xe9\x9a\x98
+{0x9699,{0x7f,0x25,0x1b,0x22,0x4c,0x7f,0x22}}, // \xe9\x9a\x99
+{0x969b,{0x7f,0x1b,0x4a,0x15,0x73,0x15,0x4b}}, // \xe9\x9a\x9b
+{0x969c,{0x7f,0x1b,0x2a,0x3e,0x7b,0x3e,0x2a}}, // \xe9\x9a\x9c
+{0x96a0,{0x7f,0x1b,0x66,0x3a,0x5e,0x59,0x65}}, // \xe9\x9a\xa0
+{0x96a3,{0x7f,0x25,0x5b,0x32,0x27,0x72,0x25}}, // \xe9\x9a\xa3
+{0x96a7,{0x7f,0x1b,0x75,0x52,0x6d,0x7d,0x56}}, // \xe9\x9a\xa7
+{0x96a8,{0x7f,0x25,0x1b,0x65,0x4a,0x7f,0x7a}}, // \xe9\x9a\xa8
+{0x96aa,{0x7f,0x1b,0x5c,0x36,0x5d,0x36,0x5c}}, // \xe9\x9a\xaa
+{0x96b0,{0x7f,0x1b,0x58,0x17,0x43,0x1b,0x54}}, // \xe9\x9a\xb0
+{0x96b1,{0x7f,0x1b,0x62,0x35,0x5f,0x5d,0x6a}}, // \xe9\x9a\xb1
+{0x96b2,{0x7f,0x25,0x1b,0x45,0x1c,0x5b,0x69}}, // \xe9\x9a\xb2
+{0x96b4,{0x7f,0x1b,0x7e,0x2b,0x7e,0x77,0x5d}}, // \xe9\x9a\xb4
+{0x96b6,{0x48,0x5a,0x2a,0x7f,0x2a,0x5e,0x44}}, // \xe9\x9a\xb6
+{0x96b7,{0x2a,0x6f,0x2a,0x5a,0x7f,0x2e,0x54}}, // \xe9\x9a\xb7
+{0x96b8,{0x4a,0x16,0x7f,0x2a,0x7f,0x2e,0x54}}, // \xe9\x9a\xb8
+{0x96b9,{0x08,0x04,0x7f,0x4a,0x7f,0x4a,0x42}}, // \xe9\x9a\xb9
+{0x96bb,{0x48,0x44,0x5f,0x2a,0x5f,0x4a,0x4a}}, // \xe9\x9a\xbb
+{0x96bc,{0x28,0x24,0x2f,0x7a,0x2f,0x2a,0x2a}}, // \xe9\x9a\xbc
+{0x96c0,{0x14,0x12,0x78,0x5f,0x74,0x52,0x54}}, // \xe9\x9b\x80
+{0x96c1,{0x40,0x3f,0x7d,0x0b,0x7d,0x7f,0x55}}, // \xe9\x9b\x81
+{0x96c4,{0x22,0x5a,0x67,0x52,0x7f,0x7e,0x4b}}, // \xe9\x9b\x84
+{0x96c5,{0x2f,0x59,0x7f,0x04,0x7f,0x7e,0x4b}}, // \xe9\x9b\x85
+{0x96c6,{0x54,0x52,0x3f,0x7a,0x3f,0x5a,0x50}}, // \xe9\x9b\x86
+{0x96c7,{0x41,0x3f,0x25,0x7d,0x55,0x7f,0x51}}, // \xe9\x9b\x87
+{0x96c9,{0x44,0x2b,0x1e,0x2a,0x7f,0x7e,0x4b}}, // \xe9\x9b\x89
+{0x96cb,{0x74,0x12,0x3f,0x2a,0x3f,0x5a,0x7a}}, // \xe9\x9b\x8b
+{0x96cc,{0x7c,0x7f,0x24,0x7f,0x4a,0x7f,0x4a}}, // \xe9\x9b\x8c
+{0x96cd,{0x5a,0x36,0x12,0x7f,0x4a,0x7e,0x4a}}, // \xe9\x9b\x8d
+{0x96ce,{0x40,0x7f,0x55,0x3f,0x7f,0x7e,0x4b}}, // \xe9\x9b\x8e
+{0x96d1,{0x5a,0x37,0x7e,0x28,0x7f,0x7e,0x4b}}, // \xe9\x9b\x91
+{0x96d5,{0x7f,0x35,0x2f,0x35,0x7f,0x7e,0x4b}}, // \xe9\x9b\x95
+{0x96d6,{0x5b,0x7d,0x5b,0x7e,0x4b,0x7e,0x4b}}, // \xe9\x9b\x96
+{0x96d9,{0x44,0x4f,0x5e,0x2b,0x5e,0x4f,0x4a}}, // \xe9\x9b\x99
+{0x96db,{0x24,0x5b,0x36,0x36,0x7f,0x7e,0x4b}}, // \xe9\x9b\x9b
+{0x96dc,{0x5a,0x36,0x7b,0x36,0x7f,0x7e,0x4b}}, // \xe9\x9b\x9c
+{0x96e2,{0x72,0x5e,0x7b,0x36,0x7f,0x7e,0x4b}}, // \xe9\x9b\xa2
+{0x96e3,{0x5a,0x5f,0x3a,0x5f,0x7f,0x7e,0x4b}}, // \xe9\x9b\xa3
+{0x96e8,{0x7d,0x05,0x55,0x7f,0x05,0x55,0x7d}}, // \xe9\x9b\xa8
+{0x96ea,{0x06,0x52,0x57,0x57,0x53,0x76,0x06}}, // \xe9\x9b\xaa
+{0x96eb,{0x16,0x12,0x17,0x77,0x33,0x56,0x16}}, // \xe9\x9b\xab
+{0x96f0,{0x16,0x4a,0x57,0x37,0x53,0x7e,0x16}}, // \xe9\x9b\xb0
+{0x96f2,{0x56,0x52,0x77,0x57,0x53,0x36,0x56}}, // \xe9\x9b\xb2
+{0x96f6,{0x16,0x12,0x1f,0x77,0x1b,0x16,0x36}}, // \xe9\x9b\xb6
+{0x96f7,{0x06,0x72,0x57,0x77,0x53,0x76,0x06}}, // \xe9\x9b\xb7
+{0x96f9,{0x16,0x12,0x6f,0x6f,0x6b,0x4e,0x5e}}, // \xe9\x9b\xb9
+{0x96fb,{0x06,0x3a,0x2f,0x3f,0x6b,0x7e,0x46}}, // \xe9\x9b\xbb
+{0x9700,{0x66,0x2a,0x6f,0x3f,0x6b,0x2e,0x66}}, // \xe9\x9c\x80
+{0x9704,{0x16,0x0a,0x7f,0x2f,0x7b,0x0e,0x16}}, // \xe9\x9c\x84
+{0x9706,{0x56,0x2a,0x47,0x57,0x5b,0x7e,0x56}}, // \xe9\x9c\x86
+{0x9707,{0x46,0x3a,0x7f,0x5f,0x3b,0x5e,0x56}}, // \xe9\x9c\x87
+{0x9708,{0x56,0x0a,0x6f,0x2f,0x7b,0x2e,0x6e}}, // \xe9\x9c\x88
+{0x970a,{0x56,0x62,0x57,0x77,0x53,0x66,0x56}}, // \xe9\x9c\x8a
+{0x970d,{0x26,0x12,0x7f,0x57,0x7b,0x56,0x56}}, // \xe9\x9c\x8d
+{0x970e,{0x56,0x52,0x7f,0x57,0x3b,0x56,0x56}}, // \xe9\x9c\x8e
+{0x970f,{0x36,0x72,0x3f,0x07,0x7b,0x36,0x36}}, // \xe9\x9c\x8f
+{0x9711,{0x56,0x02,0x67,0x67,0x7b,0x76,0x16}}, // \xe9\x9c\x91
+{0x9713,{0x46,0x5a,0x37,0x17,0x7b,0x5e,0x46}}, // \xe9\x9c\x93
+{0x9716,{0x56,0x32,0x7f,0x57,0x33,0x7e,0x56}}, // \xe9\x9c\x96
+{0x9719,{0x56,0x5a,0x5f,0x3f,0x5b,0x5e,0x56}}, // \xe9\x9c\x99
+{0x971c,{0x56,0x32,0x7f,0x37,0x7b,0x4e,0x7e}}, // \xe9\x9c\x9c
+{0x971e,{0x7e,0x2a,0x2f,0x07,0x5b,0x2e,0x5e}}, // \xe9\x9c\x9e
+{0x9724,{0x06,0x1a,0x77,0x73,0x6f,0x1e,0x06}}, // \xe9\x9c\xa4
+{0x9727,{0x56,0x3a,0x7f,0x17,0x5b,0x2e,0x76}}, // \xe9\x9c\xa7
+{0x972a,{0x56,0x02,0x5f,0x5f,0x7b,0x56,0x56}}, // \xe9\x9c\xaa
+{0x9730,{0x16,0x7a,0x37,0x7f,0x53,0x2e,0x5e}}, // \xe9\x9c\xb0
+{0x9732,{0x5e,0x6a,0x5f,0x27,0x6b,0x56,0x6e}}, // \xe9\x9c\xb2
+{0x9738,{0x26,0x3a,0x77,0x3f,0x43,0x36,0x76}}, // \xe9\x9c\xb8
+{0x9739,{0x26,0x7a,0x7f,0x2f,0x3b,0x6e,0x3e}}, // \xe9\x9c\xb9
+{0x973d,{0x2e,0x5a,0x3f,0x2f,0x7b,0x1e,0x2e}}, // \xe9\x9c\xbd
+{0x973e,{0x56,0x6a,0x37,0x07,0x5b,0x7e,0x5e}}, // \xe9\x9c\xbe
+{0x9742,{0x46,0x3a,0x5f,0x7f,0x6b,0x5e,0x5e}}, // \xe9\x9d\x82
+{0x9744,{0x6e,0x6a,0x07,0x67,0x5b,0x1e,0x76}}, // \xe9\x9d\x84
+{0x9746,{0x56,0x73,0x57,0x65,0x52,0x7f,0x56}}, // \xe9\x9d\x86
+{0x9748,{0x5e,0x7a,0x5f,0x7f,0x5b,0x7e,0x5e}}, // \xe9\x9d\x88
+{0x9749,{0x56,0x73,0x57,0x2f,0x55,0x37,0x4d}}, // \xe9\x9d\x89
+{0x9752,{0x08,0x7a,0x2a,0x2f,0x2a,0x7a,0x08}}, // \xe9\x9d\x92
+{0x9756,{0x2e,0x33,0x2e,0x08,0x7a,0x2f,0x7a}}, // \xe9\x9d\x96
+{0x9759,{0x08,0x7a,0x2f,0x7a,0x2a,0x7d,0x3b}}, // \xe9\x9d\x99
+{0x975c,{0x7a,0x3f,0x7a,0x15,0x7f,0x3d,0x12}}, // \xe9\x9d\x9c
+{0x975e,{0x2a,0x6a,0x3f,0x00,0x7f,0x2a,0x2a}}, // \xe9\x9d\x9e
+{0x9760,{0x24,0x7f,0x36,0x17,0x76,0x3e,0x24}}, // \xe9\x9d\xa0
+{0x9761,{0x40,0x3e,0x6a,0x3e,0x0b,0x7e,0x2a}}, // \xe9\x9d\xa1
+{0x9762,{0x7d,0x45,0x7d,0x57,0x7d,0x45,0x7d}}, // \xe9\x9d\xa2
+{0x9764,{0x7d,0x7d,0x57,0x7d,0x04,0x7b,0x5e}}, // \xe9\x9d\xa4
+{0x9766,{0x7d,0x7d,0x57,0x7d,0x5f,0x35,0x5f}}, // \xe9\x9d\xa6
+{0x9768,{0x18,0x77,0x7f,0x5d,0x7b,0x77,0x1b}}, // \xe9\x9d\xa8
+{0x9769,{0x22,0x3a,0x2f,0x7a,0x2f,0x3a,0x22}}, // \xe9\x9d\xa9
+{0x976b,{0x37,0x7e,0x57,0x29,0x13,0x29,0x47}}, // \xe9\x9d\xab
+{0x976d,{0x37,0x7e,0x37,0x49,0x3f,0x51,0x7f}}, // \xe9\x9d\xad
+{0x9771,{0x37,0x7e,0x37,0x45,0x3f,0x51,0x7f}}, // \xe9\x9d\xb1
+{0x9774,{0x37,0x7e,0x37,0x7e,0x01,0x7f,0x44}}, // \xe9\x9d\xb4
+{0x9779,{0x37,0x7e,0x37,0x7c,0x15,0x4f,0x7c}}, // \xe9\x9d\xb9
+{0x977a,{0x37,0x7e,0x47,0x2a,0x7f,0x2a,0x42}}, // \xe9\x9d\xba
+{0x977c,{0x37,0x7e,0x37,0x40,0x5f,0x55,0x5f}}, // \xe9\x9d\xbc
+{0x9781,{0x37,0x7e,0x37,0x3e,0x5a,0x2f,0x5e}}, // \xe9\x9e\x81
+{0x9784,{0x37,0x7e,0x37,0x04,0x73,0x56,0x5e}}, // \xe9\x9e\x84
+{0x9785,{0x37,0x7e,0x37,0x48,0x4e,0x3b,0x4e}}, // \xe9\x9e\x85
+{0x9786,{0x37,0x7e,0x37,0x7d,0x15,0x4f,0x7d}}, // \xe9\x9e\x86
+{0x978b,{0x37,0x7e,0x37,0x48,0x5a,0x7f,0x5a}}, // \xe9\x9e\x8b
+{0x978d,{0x37,0x7e,0x4f,0x5a,0x2f,0x3a,0x4e}}, // \xe9\x9e\x8d
+{0x978f,{0x25,0x2f,0x3d,0x7c,0x3b,0x2f,0x24}}, // \xe9\x9e\x8f
+{0x9790,{0x37,0x7e,0x37,0x08,0x7f,0x1a,0x2a}}, // \xe9\x9e\x90
+{0x9798,{0x37,0x7e,0x37,0x7d,0x14,0x57,0x7d}}, // \xe9\x9e\x98
+{0x979c,{0x37,0x7e,0x3b,0x76,0x5f,0x74,0x0a}}, // \xe9\x9e\x9c
+{0x97a0,{0x37,0x7e,0x37,0x57,0x3a,0x56,0x7e}}, // \xe9\x9e\xa0
+{0x97a3,{0x37,0x7e,0x5b,0x37,0x7f,0x33,0x56}}, // \xe9\x9e\xa3
+{0x97a6,{0x37,0x7e,0x37,0x7f,0x4c,0x3f,0x44}}, // \xe9\x9e\xa6
+{0x97a8,{0x37,0x7e,0x37,0x3f,0x2d,0x4f,0x78}}, // \xe9\x9e\xa8
+{0x97ab,{0x37,0x7e,0x37,0x6c,0x6b,0x02,0x7e}}, // \xe9\x9e\xab
+{0x97ad,{0x37,0x7e,0x37,0x7e,0x5d,0x3f,0x4d}}, // \xe9\x9e\xad
+{0x97b3,{0x37,0x7e,0x37,0x12,0x7b,0x56,0x7b}}, // \xe9\x9e\xb3
+{0x97b4,{0x37,0x7e,0x37,0x1a,0x6f,0x2a,0x6f}}, // \xe9\x9e\xb4
+{0x97c3,{0x37,0x7e,0x6b,0x54,0x5e,0x77,0x5e}}, // \xe9\x9f\x83
+{0x97c6,{0x37,0x7e,0x77,0x49,0x77,0x6f,0x49}}, // \xe9\x9f\x86
+{0x97c8,{0x37,0x7e,0x37,0x7a,0x4f,0x3e,0x5b}}, // \xe9\x9f\x88
+{0x97cb,{0x28,0x3a,0x2e,0x2b,0x7a,0x2e,0x28}}, // \xe9\x9f\x8b
+{0x97d3,{0x2d,0x77,0x2d,0x3a,0x2f,0x7a,0x2e}}, // \xe9\x9f\x93
+{0x97dc,{0x2a,0x77,0x2e,0x79,0x43,0x69,0x7a}}, // \xe9\x9f\x9c
+{0x97ed,{0x54,0x54,0x7f,0x40,0x7f,0x54,0x54}}, // \xe9\x9f\xad
+{0x97ee,{0x42,0x56,0x7f,0x42,0x7f,0x56,0x42}}, // \xe9\x9f\xae
+{0x97f2,{0x4a,0x56,0x7e,0x4b,0x7e,0x56,0x4a}}, // \xe9\x9f\xb2
+{0x97f3,{0x08,0x7a,0x5e,0x5b,0x5e,0x7a,0x08}}, // \xe9\x9f\xb3
+{0x97f5,{0x0a,0x6e,0x6b,0x0e,0x2b,0x52,0x7e}}, // \xe9\x9f\xb5
+{0x97f6,{0x0a,0x6e,0x6b,0x0e,0x75,0x53,0x77}}, // \xe9\x9f\xb6
+{0x97fb,{0x0a,0x6e,0x6b,0x5e,0x17,0x17,0x5c}}, // \xe9\x9f\xbb
+{0x97ff,{0x2a,0x25,0x7f,0x6b,0x78,0x2f,0x27}}, // \xe9\x9f\xbf
+{0x9801,{0x41,0x7d,0x2d,0x2f,0x2d,0x7d,0x41}}, // \xe9\xa0\x81
+{0x9802,{0x21,0x3f,0x01,0x5d,0x17,0x15,0x5d}}, // \xe9\xa0\x82
+{0x9803,{0x3f,0x24,0x32,0x5d,0x17,0x15,0x5d}}, // \xe9\xa0\x83
+{0x9805,{0x22,0x3e,0x12,0x5d,0x17,0x15,0x5d}}, // \xe9\xa0\x85
+{0x9806,{0x40,0x3f,0x1e,0x7f,0x5d,0x17,0x5d}}, // \xe9\xa0\x86
+{0x9808,{0x4a,0x25,0x00,0x5d,0x17,0x15,0x5d}}, // \xe9\xa0\x88
+{0x980c,{0x44,0x63,0x58,0x23,0x5d,0x17,0x5d}}, // \xe9\xa0\x8c
+{0x980f,{0x42,0x3a,0x0b,0x7a,0x5d,0x17,0x5d}}, // \xe9\xa0\x8f
+{0x9810,{0x49,0x7d,0x1b,0x40,0x1d,0x17,0x5d}}, // \xe9\xa0\x90
+{0x9811,{0x24,0x1d,0x3d,0x24,0x5d,0x17,0x5d}}, // \xe9\xa0\x91
+{0x9812,{0x44,0x3b,0x48,0x7b,0x5d,0x17,0x5d}}, // \xe9\xa0\x92
+{0x9813,{0x1a,0x12,0x7f,0x52,0x5d,0x17,0x5d}}, // \xe9\xa0\x93
+{0x9817,{0x7e,0x5a,0x2f,0x5a,0x5d,0x17,0x5d}}, // \xe9\xa0\x97
+{0x9818,{0x16,0x75,0x36,0x41,0x1d,0x17,0x5d}}, // \xe9\xa0\x98
+{0x981a,{0x49,0x5b,0x35,0x2b,0x5d,0x17,0x5d}}, // \xe9\xa0\x9a
+{0x9821,{0x02,0x6a,0x6f,0x0a,0x5d,0x17,0x5d}}, // \xe9\xa0\xa1
+{0x9824,{0x7f,0x5d,0x77,0x5d,0x41,0x1f,0x5d}}, // \xe9\xa0\xa4
+{0x982c,{0x5a,0x52,0x3f,0x5a,0x5d,0x17,0x5d}}, // \xe9\xa0\xac
+{0x982d,{0x2d,0x35,0x2d,0x40,0x1d,0x17,0x5d}}, // \xe9\xa0\xad
+{0x9834,{0x57,0x1a,0x7a,0x10,0x5d,0x17,0x5d}}, // \xe9\xa0\xb4
+{0x9837,{0x04,0x76,0x5d,0x72,0x5d,0x17,0x5d}}, // \xe9\xa0\xb7
+{0x9838,{0x55,0x5b,0x75,0x5b,0x5d,0x17,0x5d}}, // \xe9\xa0\xb8
+{0x983b,{0x5e,0x48,0x3f,0x1a,0x5d,0x17,0x5d}}, // \xe9\xa0\xbb
+{0x983c,{0x42,0x2e,0x7f,0x2e,0x5d,0x17,0x5d}}, // \xe9\xa0\xbc
+{0x983d,{0x4a,0x37,0x1f,0x76,0x5d,0x17,0x5d}}, // \xe9\xa0\xbd
+{0x9846,{0x57,0x35,0x7f,0x37,0x5d,0x17,0x5d}}, // \xe9\xa1\x86
+{0x984b,{0x6f,0x2d,0x4f,0x6f,0x5d,0x17,0x5d}}, // \xe9\xa1\x8b
+{0x984c,{0x44,0x37,0x3f,0x54,0x6d,0x4f,0x6d}}, // \xe9\xa1\x8c
+{0x984d,{0x26,0x6a,0x57,0x6e,0x5d,0x17,0x5d}}, // \xe9\xa1\x8d
+{0x984e,{0x0b,0x5f,0x6c,0x0b,0x5d,0x17,0x5d}}, // \xe9\xa1\x8e
+{0x984f,{0x7a,0x0e,0x5f,0x2a,0x5d,0x17,0x5d}}, // \xe9\xa1\x8f
+{0x9854,{0x7a,0x0e,0x5b,0x2e,0x5d,0x17,0x5d}}, // \xe9\xa1\x94
+{0x9855,{0x4b,0x7d,0x3d,0x2b,0x5d,0x17,0x5d}}, // \xe9\xa1\x95
+{0x9858,{0x7f,0x2d,0x7f,0x2d,0x5d,0x17,0x5d}}, // \xe9\xa1\x98
+{0x985b,{0x52,0x1e,0x1f,0x52,0x1d,0x17,0x5d}}, // \xe9\xa1\x9b
+{0x985e,{0x55,0x52,0x3f,0x52,0x5d,0x17,0x5d}}, // \xe9\xa1\x9e
+{0x9867,{0x11,0x7f,0x7d,0x57,0x41,0x1f,0x5d}}, // \xe9\xa1\xa7
+{0x986b,{0x4e,0x7e,0x7b,0x2e,0x5d,0x17,0x5d}}, // \xe9\xa1\xab
+{0x986f,{0x6b,0x37,0x6b,0x37,0x5d,0x17,0x5d}}, // \xe9\xa1\xaf
+{0x9870,{0x26,0x2c,0x3f,0x76,0x39,0x23,0x2b}}, // \xe9\xa1\xb0
+{0x9871,{0x7c,0x44,0x6f,0x6a,0x5d,0x17,0x5d}}, // \xe9\xa1\xb1
+{0x9873,{0x35,0x77,0x3f,0x75,0x5d,0x17,0x5d}}, // \xe9\xa1\xb3
+{0x9874,{0x26,0x7f,0x52,0x7f,0x5d,0x17,0x5d}}, // \xe9\xa1\xb4
+{0x98a8,{0x40,0x3f,0x4d,0x7f,0x2d,0x7f,0x40}}, // \xe9\xa2\xa8
+{0x98aa,{0x41,0x3d,0x55,0x77,0x6f,0x3d,0x41}}, // \xe9\xa2\xaa
+{0x98af,{0x2e,0x33,0x7f,0x4d,0x7f,0x2d,0x7f}}, // \xe9\xa2\xaf
+{0x98b1,{0x7f,0x4d,0x3f,0x7f,0x46,0x5d,0x5c}}, // \xe9\xa2\xb1
+{0x98b6,{0x7f,0x4d,0x3f,0x7f,0x54,0x47,0x57}}, // \xe9\xa2\xb6
+{0x98c3,{0x7f,0x4d,0x3f,0x7f,0x51,0x77,0x57}}, // \xe9\xa3\x83
+{0x98c4,{0x51,0x17,0x77,0x3f,0x4d,0x3f,0x7f}}, // \xe9\xa3\x84
+{0x98c6,{0x5a,0x37,0x7a,0x3f,0x4d,0x3f,0x7f}}, // \xe9\xa3\x86
+{0x98db,{0x55,0x3f,0x09,0x7f,0x09,0x3b,0x54}}, // \xe9\xa3\x9b
+{0x98dc,{0x15,0x6f,0x7f,0x35,0x7f,0x3b,0x54}}, // \xe9\xa3\x9c
+{0x98df,{0x04,0x44,0x7a,0x5d,0x22,0x54,0x44}}, // \xe9\xa3\x9f
+{0x98e2,{0x7a,0x5d,0x42,0x3f,0x01,0x7f,0x40}}, // \xe9\xa3\xa2
+{0x98e9,{0x7e,0x2d,0x2e,0x12,0x7f,0x52,0x5a}}, // \xe9\xa3\xa9
+{0x98eb,{0x7e,0x2d,0x4a,0x4a,0x3e,0x49,0x48}}, // \xe9\xa3\xab
+{0x98ed,{0x7e,0x2d,0x2e,0x54,0x3b,0x52,0x72}}, // \xe9\xa3\xad
+{0x98ee,{0x7e,0x2d,0x2e,0x44,0x43,0x3e,0x46}}, // \xe9\xa3\xae
+{0x98ef,{0x7a,0x5d,0x42,0x3f,0x5d,0x25,0x5d}}, // \xe9\xa3\xaf
+{0x98f2,{0x7a,0x5d,0x5a,0x04,0x43,0x3e,0x46}}, // \xe9\xa3\xb2
+{0x98f4,{0x7a,0x5d,0x5a,0x08,0x6c,0x6b,0x6c}}, // \xe9\xa3\xb4
+{0x98fc,{0x7a,0x5d,0x42,0x35,0x35,0x41,0x7f}}, // \xe9\xa3\xbc
+{0x98fd,{0x7a,0x5d,0x5a,0x04,0x73,0x56,0x5e}}, // \xe9\xa3\xbd
+{0x98fe,{0x7a,0x5d,0x42,0x34,0x13,0x7e,0x32}}, // \xe9\xa3\xbe
+{0x9903,{0x7e,0x2d,0x4a,0x56,0x23,0x56,0x4a}}, // \xe9\xa4\x83
+{0x9905,{0x7a,0x5d,0x56,0x3d,0x14,0x7d,0x14}}, // \xe9\xa4\x85
+{0x9909,{0x7e,0x2d,0x02,0x7e,0x3b,0x2a,0x7e}}, // \xe9\xa4\x89
+{0x990a,{0x2a,0x1a,0x7b,0x7e,0x5a,0x2b,0x5a}}, // \xe9\xa4\x8a
+{0x990c,{0x7a,0x5d,0x5a,0x21,0x3f,0x2d,0x7f}}, // \xe9\xa4\x8c
+{0x9910,{0x14,0x54,0x7b,0x5e,0x2b,0x55,0x5b}}, // \xe9\xa4\x90
+{0x9912,{0x7e,0x2d,0x52,0x71,0x5b,0x31,0x52}}, // \xe9\xa4\x92
+{0x9913,{0x7a,0x59,0x26,0x7e,0x25,0x3f,0x55}}, // \xe9\xa4\x93
+{0x9914,{0x7e,0x2d,0x2e,0x7a,0x7f,0x2a,0x7b}}, // \xe9\xa4\x94
+{0x9918,{0x7e,0x2d,0x2e,0x54,0x16,0x7d,0x56}}, // \xe9\xa4\x98
+{0x991d,{0x7e,0x2d,0x4a,0x3b,0x2e,0x2b,0x6a}}, // \xe9\xa4\x9d
+{0x991e,{0x7e,0x2d,0x2e,0x52,0x5b,0x36,0x5b}}, // \xe9\xa4\x9e
+{0x9920,{0x7e,0x2d,0x56,0x3d,0x16,0x7d,0x14}}, // \xe9\xa4\xa0
+{0x9921,{0x7e,0x2d,0x2e,0x7a,0x41,0x6d,0x7b}}, // \xe9\xa4\xa1
+{0x9924,{0x7e,0x2d,0x2e,0x55,0x44,0x3b,0x55}}, // \xe9\xa4\xa4
+{0x9928,{0x7a,0x5d,0x5a,0x06,0x7a,0x5b,0x76}}, // \xe9\xa4\xa8
+{0x992c,{0x7e,0x2d,0x3a,0x2f,0x7a,0x3f,0x7f}}, // \xe9\xa4\xac
+{0x992e,{0x15,0x57,0x7b,0x5d,0x2a,0x55,0x52}}, // \xe9\xa4\xae
+{0x993d,{0x7e,0x2d,0x5e,0x2a,0x7f,0x6a,0x5e}}, // \xe9\xa4\xbd
+{0x993e,{0x7e,0x2d,0x0e,0x7a,0x79,0x77,0x0f}}, // \xe9\xa4\xbe
+{0x9942,{0x7e,0x2d,0x2e,0x4f,0x6d,0x6b,0x4f}}, // \xe9\xa5\x82
+{0x9945,{0x7e,0x2d,0x4e,0x5f,0x2d,0x5f,0x4c}}, // \xe9\xa5\x85
+{0x9949,{0x7e,0x2d,0x5a,0x5f,0x7a,0x5f,0x5a}}, // \xe9\xa5\x89
+{0x994b,{0x7e,0x2d,0x4e,0x3a,0x3f,0x3a,0x4e}}, // \xe9\xa5\x8b
+{0x994c,{0x7e,0x2d,0x4f,0x1b,0x10,0x1f,0x4b}}, // \xe9\xa5\x8c
+{0x9950,{0x7e,0x2d,0x2e,0x5a,0x6a,0x6f,0x5a}}, // \xe9\xa5\x90
+{0x9951,{0x7e,0x2d,0x4a,0x3d,0x48,0x3a,0x55}}, // \xe9\xa5\x91
+{0x9952,{0x7e,0x2d,0x5e,0x3e,0x17,0x7e,0x5c}}, // \xe9\xa5\x92
+{0x9955,{0x14,0x57,0x7f,0x58,0x2e,0x5f,0x55}}, // \xe9\xa5\x95
+{0x9957,{0x1a,0x55,0x7f,0x7b,0x28,0x57,0x53}}, // \xe9\xa5\x97
+{0x9996,{0x02,0x7a,0x5b,0x5e,0x5a,0x7b,0x02}}, // \xe9\xa6\x96
+{0x9997,{0x42,0x3f,0x7e,0x42,0x7b,0x56,0x7b}}, // \xe9\xa6\x97
+{0x9998,{0x7b,0x56,0x7b,0x5a,0x42,0x3f,0x52}}, // \xe9\xa6\x98
+{0x9999,{0x14,0x76,0x6e,0x7e,0x6d,0x75,0x14}}, // \xe9\xa6\x99
+{0x99a5,{0x14,0x6d,0x7f,0x6d,0x57,0x2e,0x5a}}, // \xe9\xa6\xa5
+{0x99a8,{0x2a,0x26,0x77,0x5a,0x7b,0x25,0x2b}}, // \xe9\xa6\xa8
+{0x99ac,{0x40,0x1f,0x55,0x1f,0x55,0x15,0x71}}, // \xe9\xa6\xac
+{0x99ad,{0x5f,0x1f,0x75,0x40,0x4d,0x31,0x4f}}, // \xe9\xa6\xad
+{0x99ae,{0x71,0x00,0x5f,0x15,0x5f,0x15,0x71}}, // \xe9\xa6\xae
+{0x99b3,{0x5f,0x1f,0x75,0x7e,0x44,0x5f,0x6c}}, // \xe9\xa6\xb3
+{0x99b4,{0x5f,0x1f,0x75,0x3f,0x1e,0x00,0x7f}}, // \xe9\xa6\xb4
+{0x99bc,{0x5f,0x1f,0x75,0x42,0x4e,0x33,0x4e}}, // \xe9\xa6\xbc
+{0x99c1,{0x5f,0x1f,0x75,0x40,0x55,0x22,0x55}}, // \xe9\xa7\x81
+{0x99c4,{0x5f,0x1f,0x75,0x40,0x24,0x5f,0x64}}, // \xe9\xa7\x84
+{0x99c5,{0x5f,0x1f,0x75,0x40,0x3f,0x19,0x67}}, // \xe9\xa7\x85
+{0x99c6,{0x5f,0x1f,0x75,0x00,0x7f,0x49,0x55}}, // \xe9\xa7\x86
+{0x99c8,{0x5f,0x1f,0x75,0x7e,0x4a,0x79,0x48}}, // \xe9\xa7\x88
+{0x99d0,{0x5f,0x1f,0x75,0x00,0x55,0x7e,0x54}}, // \xe9\xa7\x90
+{0x99d1,{0x52,0x0e,0x5b,0x16,0x5b,0x15,0x7b}}, // \xe9\xa7\x91
+{0x99d2,{0x5f,0x1f,0x75,0x04,0x1b,0x5a,0x7e}}, // \xe9\xa7\x92
+{0x99d5,{0x4a,0x07,0x5a,0x16,0x5e,0x1a,0x7e}}, // \xe9\xa7\x95
+{0x99d8,{0x5f,0x1f,0x75,0x08,0x6c,0x6b,0x6c}}, // \xe9\xa7\x98
+{0x99db,{0x5f,0x1f,0x75,0x4e,0x5a,0x3f,0x4e}}, // \xe9\xa7\x9b
+{0x99dd,{0x5f,0x1f,0x75,0x06,0x7a,0x53,0x56}}, // \xe9\xa7\x9d
+{0x99df,{0x5f,0x1f,0x75,0x7f,0x51,0x4f,0x7f}}, // \xe9\xa7\x9f
+{0x99e2,{0x5f,0x1f,0x75,0x54,0x3d,0x14,0x7d}}, // \xe9\xa7\xa2
+{0x99ed,{0x5f,0x1f,0x75,0x4a,0x56,0x2b,0x52}}, // \xe9\xa7\xad
+{0x99ee,{0x5f,0x1f,0x75,0x4a,0x56,0x23,0x56}}, // \xe9\xa7\xae
+{0x99f1,{0x5f,0x1f,0x75,0x10,0x6a,0x65,0x6b}}, // \xe9\xa7\xb1
+{0x99f2,{0x5f,0x1f,0x75,0x4c,0x3f,0x0c,0x7f}}, // \xe9\xa7\xb2
+{0x99f8,{0x5f,0x1f,0x75,0x58,0x5d,0x2f,0x5a}}, // \xe9\xa7\xb8
+{0x99fb,{0x5f,0x1f,0x75,0x28,0x2f,0x7d,0x2f}}, // \xe9\xa7\xbb
+{0x99ff,{0x5f,0x1f,0x75,0x2a,0x57,0x32,0x4f}}, // \xe9\xa7\xbf
+{0x9a01,{0x5f,0x1f,0x75,0x08,0x1e,0x5f,0x6e}}, // \xe9\xa8\x81
+{0x9a05,{0x5f,0x1f,0x75,0x7f,0x4a,0x7f,0x4a}}, // \xe9\xa8\x85
+{0x9a0e,{0x5f,0x1f,0x75,0x12,0x5a,0x17,0x7a}}, // \xe9\xa8\x8e
+{0x9a0f,{0x5f,0x1f,0x75,0x52,0x1f,0x1a,0x5f}}, // \xe9\xa8\x8f
+{0x9a12,{0x5f,0x1f,0x75,0x49,0x5b,0x7d,0x5b}}, // \xe9\xa8\x92
+{0x9a13,{0x5f,0x1f,0x7d,0x56,0x3d,0x56,0x5c}}, // \xe9\xa8\x93
+{0x9a19,{0x5f,0x1f,0x75,0x21,0x7f,0x35,0x77}}, // \xe9\xa8\x99
+{0x9a28,{0x5f,0x1f,0x75,0x2c,0x2d,0x7e,0x2d}}, // \xe9\xa8\xa8
+{0x9a2b,{0x56,0x0a,0x5e,0x1b,0x5e,0x1a,0x76}}, // \xe9\xa8\xab
+{0x9a30,{0x7f,0x15,0x7f,0x45,0x1c,0x5f,0x75}}, // \xe9\xa8\xb0
+{0x9a37,{0x5f,0x1f,0x75,0x48,0x7b,0x75,0x5b}}, // \xe9\xa8\xb7
+{0x9a3e,{0x5f,0x1f,0x77,0x1d,0x77,0x15,0x57}}, // \xe9\xa8\xbe
+{0x9a40,{0x4a,0x06,0x5f,0x16,0x5f,0x16,0x7a}}, // \xe9\xa9\x80
+{0x9a42,{0x5f,0x1f,0x7a,0x4f,0x5a,0x2d,0x1a}}, // \xe9\xa9\x82
+{0x9a43,{0x5f,0x1f,0x75,0x11,0x77,0x17,0x51}}, // \xe9\xa9\x83
+{0x9a45,{0x5f,0x1f,0x75,0x7f,0x47,0x77,0x71}}, // \xe9\xa9\x85
+{0x9a4d,{0x5f,0x1f,0x75,0x5c,0x3e,0x77,0x5e}}, // \xe9\xa9\x8d
+{0x9a55,{0x5f,0x1f,0x7a,0x17,0x5b,0x17,0x7a}}, // \xe9\xa9\x95
+{0x9a57,{0x5f,0x1f,0x7d,0x36,0x5d,0x36,0x5c}}, // \xe9\xa9\x97
+{0x9a5a,{0x4a,0x07,0x5e,0x1f,0x5a,0x15,0x7b}}, // \xe9\xa9\x9a
+{0x9a5b,{0x5f,0x1f,0x75,0x2b,0x3b,0x6f,0x3b}}, // \xe9\xa9\x9b
+{0x9a5f,{0x5f,0x1f,0x75,0x2b,0x7f,0x25,0x4b}}, // \xe9\xa9\x9f
+{0x9a62,{0x5f,0x1f,0x75,0x5c,0x64,0x6f,0x4a}}, // \xe9\xa9\xa2
+{0x9a64,{0x5f,0x1f,0x77,0x7e,0x5b,0x3e,0x56}}, // \xe9\xa9\xa4
+{0x9a65,{0x5f,0x1f,0x75,0x5a,0x3f,0x3f,0x5a}}, // \xe9\xa9\xa5
+{0x9a69,{0x5f,0x1f,0x77,0x7f,0x52,0x7f,0x56}}, // \xe9\xa9\xa9
+{0x9a6a,{0x5f,0x1f,0x7f,0x55,0x1e,0x7d,0x57}}, // \xe9\xa9\xaa
+{0x9a6b,{0x48,0x77,0x3d,0x77,0x7d,0x35,0x6c}}, // \xe9\xa9\xab
+{0x9aa8,{0x0c,0x7f,0x15,0x15,0x57,0x7f,0x0c}}, // \xe9\xaa\xa8
+{0x9aad,{0x0c,0x77,0x35,0x7f,0x09,0x7f,0x09}}, // \xe9\xaa\xad
+{0x9ab0,{0x0c,0x77,0x35,0x7f,0x5b,0x29,0x5b}}, // \xe9\xaa\xb0
+{0x9ab8,{0x0c,0x77,0x35,0x7f,0x56,0x2b,0x52}}, // \xe9\xaa\xb8
+{0x9abc,{0x0c,0x77,0x35,0x7f,0x0a,0x65,0x6b}}, // \xe9\xaa\xbc
+{0x9ac0,{0x0c,0x77,0x7f,0x2e,0x3f,0x7a,0x2e}}, // \xe9\xab\x80
+{0x9ac4,{0x0c,0x77,0x3f,0x79,0x4a,0x77,0x72}}, // \xe9\xab\x84
+{0x9acf,{0x0c,0x77,0x7f,0x7e,0x5b,0x3e,0x54}}, // \xe9\xab\x8f
+{0x9ad1,{0x0c,0x77,0x7f,0x4b,0x75,0x37,0x7f}}, // \xe9\xab\x91
+{0x9ad3,{0x0c,0x77,0x7f,0x65,0x4a,0x7f,0x7a}}, // \xe9\xab\x93
+{0x9ad4,{0x0c,0x77,0x7f,0x5e,0x6f,0x6e,0x5f}}, // \xe9\xab\x94
+{0x9ad8,{0x72,0x12,0x7e,0x5b,0x7e,0x12,0x72}}, // \xe9\xab\x98
+{0x9ade,{0x72,0x3f,0x7e,0x37,0x7d,0x37,0x5c}}, // \xe9\xab\x9e
+{0x9adf,{0x50,0x7f,0x55,0x35,0x50,0x4a,0x25}}, // \xe9\xab\x9f
+{0x9ae2,{0x24,0x2f,0x7d,0x5d,0x70,0x7a,0x55}}, // \xe9\xab\xa2
+{0x9ae3,{0x14,0x5f,0x5d,0x3d,0x30,0x7a,0x15}}, // \xe9\xab\xa3
+{0x9ae6,{0x24,0x2f,0x3d,0x7d,0x50,0x5a,0x55}}, // \xe9\xab\xa6
+{0x9aea,{0x44,0x4f,0x2d,0x5d,0x38,0x5a,0x4d}}, // \xe9\xab\xaa
+{0x9aeb,{0x24,0x2f,0x1d,0x6d,0x68,0x6a,0x1d}}, // \xe9\xab\xab
+{0x9aed,{0x64,0x4f,0x7d,0x55,0x00,0x7a,0x55}}, // \xe9\xab\xad
+{0x9aee,{0x44,0x4f,0x2d,0x5d,0x28,0x5a,0x4d}}, // \xe9\xab\xae
+{0x9aef,{0x24,0x7f,0x2d,0x3d,0x28,0x7a,0x25}}, // \xe9\xab\xaf
+{0x9af1,{0x14,0x17,0x6d,0x6d,0x68,0x4a,0x5d}}, // \xe9\xab\xb1
+{0x9af4,{0x44,0x5f,0x3d,0x2d,0x7c,0x2a,0x65}}, // \xe9\xab\xb4
+{0x9af7,{0x74,0x57,0x7d,0x55,0x70,0x5a,0x75}}, // \xe9\xab\xb7
+{0x9afb,{0x04,0x6f,0x6d,0x7d,0x68,0x6a,0x05}}, // \xe9\xab\xbb
+{0x9b06,{0x54,0x3f,0x7d,0x3d,0x68,0x52,0x69}}, // \xe9\xac\x86
+{0x9b18,{0x44,0x5f,0x5d,0x2d,0x5c,0x5a,0x45}}, // \xe9\xac\x98
+{0x9b1a,{0x54,0x2f,0x05,0x4d,0x38,0x3a,0x4d}}, // \xe9\xac\x9a
+{0x9b1f,{0x54,0x37,0x7d,0x5d,0x38,0x5a,0x55}}, // \xe9\xac\x9f
+{0x9b22,{0x4c,0x57,0x3d,0x3d,0x3c,0x76,0x4d}}, // \xe9\xac\xa2
+{0x9b23,{0x44,0x7f,0x5d,0x3d,0x58,0x3a,0x45}}, // \xe9\xac\xa3
+{0x9b25,{0x7f,0x07,0x05,0x00,0x05,0x47,0x7f}}, // \xe9\xac\xa5
+{0x9b27,{0x7f,0x0b,0x39,0x7c,0x19,0x3b,0x7f}}, // \xe9\xac\xa7
+{0x9b28,{0x7f,0x6b,0x3d,0x28,0x3d,0x6b,0x7f}}, // \xe9\xac\xa8
+{0x9b29,{0x7f,0x03,0x59,0x34,0x71,0x5b,0x7f}}, // \xe9\xac\xa9
+{0x9b2a,{0x7f,0x5b,0x69,0x58,0x11,0x7b,0x7f}}, // \xe9\xac\xaa
+{0x9b2e,{0x7f,0x0b,0x39,0x74,0x7d,0x43,0x7f}}, // \xe9\xac\xae
+{0x9b2f,{0x0f,0x3d,0x5a,0x5d,0x5a,0x4d,0x6f}}, // \xe9\xac\xaf
+{0x9b31,{0x1a,0x7f,0x5e,0x5d,0x0e,0x57,0x2a}}, // \xe9\xac\xb1
+{0x9b32,{0x79,0x2f,0x1d,0x6d,0x3d,0x2f,0x79}}, // \xe9\xac\xb2
+{0x9b3b,{0x6d,0x3f,0x2a,0x6f,0x2a,0x3d,0x6f}}, // \xe9\xac\xbb
+{0x9b3c,{0x40,0x5e,0x3a,0x1f,0x7a,0x6e,0x50}}, // \xe9\xac\xbc
+{0x9b41,{0x4e,0x3f,0x7e,0x55,0x50,0x7f,0x48}}, // \xe9\xad\x81
+{0x9b42,{0x35,0x2d,0x35,0x5e,0x3f,0x7a,0x5e}}, // \xe9\xad\x82
+{0x9b43,{0x4e,0x3f,0x7e,0x52,0x6f,0x52,0x6b}}, // \xe9\xad\x83
+{0x9b44,{0x3e,0x2b,0x3e,0x5e,0x3f,0x7a,0x5e}}, // \xe9\xad\x84
+{0x9b45,{0x4e,0x3f,0x6e,0x5a,0x7f,0x5a,0x68}}, // \xe9\xad\x85
+{0x9b4d,{0x4e,0x3f,0x7e,0x7f,0x5b,0x55,0x7f}}, // \xe9\xad\x8d
+{0x9b4e,{0x4e,0x3f,0x7e,0x7d,0x65,0x5f,0x7d}}, // \xe9\xad\x8e
+{0x9b4f,{0x5a,0x77,0x3f,0x56,0x3f,0x7a,0x5e}}, // \xe9\xad\x8f
+{0x9b51,{0x4e,0x3f,0x7e,0x72,0x5e,0x7f,0x72}}, // \xe9\xad\x91
+{0x9b54,{0x40,0x3e,0x4a,0x3e,0x3b,0x7e,0x4a}}, // \xe9\xad\x94
+{0x9b58,{0x50,0x4f,0x3f,0x2d,0x7b,0x77,0x4b}}, // \xe9\xad\x98
+{0x9b5a,{0x42,0x1e,0x55,0x1d,0x57,0x1c,0x40}}, // \xe9\xad\x9a
+{0x9b6f,{0x12,0x6e,0x7d,0x6d,0x7f,0x6c,0x10}}, // \xe9\xad\xaf
+{0x9b74,{0x42,0x1d,0x5f,0x42,0x3e,0x4b,0x7a}}, // \xe9\xad\xb4
+{0x9b83,{0x42,0x1d,0x5f,0x15,0x13,0x7f,0x15}}, // \xe9\xae\x83
+{0x9b8e,{0x42,0x1d,0x5f,0x70,0x5f,0x54,0x74}}, // \xe9\xae\x8e
+{0x9b91,{0x42,0x1d,0x5f,0x04,0x7b,0x5a,0x5e}}, // \xe9\xae\x91
+{0x9b92,{0x42,0x1d,0x5f,0x7e,0x09,0x42,0x7f}}, // \xe9\xae\x92
+{0x9b93,{0x42,0x1d,0x5f,0x04,0x7f,0x2a,0x2a}}, // \xe9\xae\x93
+{0x9b96,{0x42,0x1d,0x5f,0x11,0x7f,0x49,0x79}}, // \xe9\xae\x96
+{0x9b97,{0x42,0x1d,0x5f,0x08,0x0a,0x55,0x4b}}, // \xe9\xae\x97
+{0x9b9f,{0x42,0x1d,0x5f,0x5a,0x2f,0x3a,0x4e}}, // \xe9\xae\x9f
+{0x9ba0,{0x42,0x1d,0x5f,0x3e,0x7d,0x4f,0x5c}}, // \xe9\xae\xa0
+{0x9ba8,{0x42,0x1d,0x5f,0x00,0x6f,0x6a,0x6d}}, // \xe9\xae\xa8
+{0x9baa,{0x42,0x1d,0x5f,0x12,0x7f,0x2a,0x7a}}, // \xe9\xae\xaa
+{0x9bab,{0x42,0x1d,0x5f,0x4a,0x56,0x23,0x56}}, // \xe9\xae\xab
+{0x9bad,{0x42,0x1d,0x5f,0x08,0x5a,0x7f,0x5a}}, // \xe9\xae\xad
+{0x9bae,{0x42,0x1d,0x5f,0x22,0x2b,0x7e,0x2b}}, // \xe9\xae\xae
+{0x9bb4,{0x42,0x1d,0x5f,0x7f,0x1a,0x7f,0x1a}}, // \xe9\xae\xb4
+{0x9bb9,{0x5d,0x1f,0x42,0x7d,0x2a,0x7d,0x02}}, // \xe9\xae\xb9
+{0x9bc0,{0x42,0x1d,0x5f,0x15,0x7b,0x11,0x59}}, // \xe9\xaf\x80
+{0x9bc6,{0x42,0x1d,0x5f,0x7a,0x7f,0x2a,0x7b}}, // \xe9\xaf\x86
+{0x9bc9,{0x42,0x1d,0x5f,0x55,0x7f,0x55,0x5f}}, // \xe9\xaf\x89
+{0x9bca,{0x55,0x30,0x7a,0x38,0x77,0x34,0x42}}, // \xe9\xaf\x8a
+{0x9bcf,{0x42,0x1d,0x5f,0x35,0x7f,0x0e,0x7f}}, // \xe9\xaf\x8f
+{0x9bd1,{0x42,0x1d,0x5f,0x2d,0x7a,0x2d,0x68}}, // \xe9\xaf\x91
+{0x9bd2,{0x42,0x1d,0x5f,0x7c,0x15,0x7f,0x7d}}, // \xe9\xaf\x92
+{0x9bd4,{0x42,0x1d,0x5f,0x7a,0x5d,0x7a,0x7d}}, // \xe9\xaf\x94
+{0x9bd6,{0x42,0x1d,0x5f,0x08,0x7a,0x2f,0x7a}}, // \xe9\xaf\x96
+{0x9bdb,{0x5d,0x1f,0x7f,0x35,0x2f,0x35,0x7f}}, // \xe9\xaf\x9b
+{0x9be1,{0x5d,0x1f,0x6a,0x3f,0x00,0x7f,0x2a}}, // \xe9\xaf\xa1
+{0x9be2,{0x42,0x1d,0x5f,0x5e,0x35,0x72,0x5e}}, // \xe9\xaf\xa2
+{0x9be3,{0x42,0x1d,0x5f,0x27,0x5d,0x35,0x77}}, // \xe9\xaf\xa3
+{0x9be4,{0x42,0x1d,0x7f,0x55,0x05,0x7d,0x57}}, // \xe9\xaf\xa4
+{0x9be8,{0x42,0x1d,0x5f,0x22,0x4e,0x7b,0x2e}}, // \xe9\xaf\xa8
+{0x9bf0,{0x42,0x1d,0x5f,0x2a,0x4d,0x5e,0x64}}, // \xe9\xaf\xb0
+{0x9bf1,{0x42,0x1d,0x5f,0x7c,0x24,0x6f,0x4a}}, // \xe9\xaf\xb1
+{0x9bf2,{0x5d,0x1f,0x62,0x1f,0x7a,0x29,0x52}}, // \xe9\xaf\xb2
+{0x9bf5,{0x42,0x1d,0x5f,0x14,0x4e,0x55,0x2a}}, // \xe9\xaf\xb5
+{0x9c04,{0x42,0x1d,0x7f,0x2e,0x56,0x3f,0x52}}, // \xe9\xb0\x84
+{0x9c06,{0x42,0x1d,0x5f,0x1a,0x6f,0x7e,0x2a}}, // \xe9\xb0\x86
+{0x9c08,{0x42,0x1d,0x5f,0x32,0x77,0x36,0x57}}, // \xe9\xb0\x88
+{0x9c09,{0x42,0x1d,0x5f,0x10,0x5e,0x7b,0x5e}}, // \xe9\xb0\x89
+{0x9c0a,{0x42,0x1d,0x5f,0x2e,0x7f,0x2e,0x4e}}, // \xe9\xb0\x8a
+{0x9c0c,{0x42,0x1d,0x5f,0x76,0x7d,0x7d,0x76}}, // \xe9\xb0\x8c
+{0x9c0d,{0x5d,0x1f,0x35,0x7f,0x4c,0x3f,0x44}}, // \xe9\xb0\x8d
+{0x9c10,{0x42,0x1d,0x5f,0x0b,0x1f,0x5c,0x6b}}, // \xe9\xb0\x90
+{0x9c12,{0x42,0x1d,0x5f,0x53,0x2e,0x5e,0x42}}, // \xe9\xb0\x92
+{0x9c13,{0x42,0x1d,0x5f,0x2d,0x4f,0x4d,0x6f}}, // \xe9\xb0\x93
+{0x9c14,{0x42,0x1d,0x7f,0x6a,0x6a,0x3f,0x52}}, // \xe9\xb0\x94
+{0x9c15,{0x42,0x1d,0x7f,0x2b,0x58,0x2d,0x5f}}, // \xe9\xb0\x95
+{0x9c1b,{0x42,0x1d,0x5f,0x47,0x75,0x75,0x47}}, // \xe9\xb0\x9b
+{0x9c21,{0x42,0x1d,0x5f,0x0e,0x69,0x66,0x0e}}, // \xe9\xb0\xa1
+{0x9c24,{0x42,0x1d,0x7f,0x36,0x1d,0x7f,0x1d}}, // \xe9\xb0\xa4
+{0x9c25,{0x42,0x1d,0x5f,0x2b,0x77,0x2b,0x53}}, // \xe9\xb0\xa5
+{0x9c2d,{0x42,0x1d,0x5f,0x0a,0x67,0x7e,0x75}}, // \xe9\xb0\xad
+{0x9c2e,{0x42,0x1d,0x5f,0x4f,0x6d,0x6b,0x4f}}, // \xe9\xb0\xae
+{0x9c2f,{0x5d,0x1f,0x5d,0x77,0x20,0x5d,0x77}}, // \xe9\xb0\xaf
+{0x9c30,{0x5d,0x1f,0x35,0x7d,0x3e,0x6b,0x3e}}, // \xe9\xb0\xb0
+{0x9c32,{0x54,0x3e,0x7f,0x34,0x7a,0x35,0x4b}}, // \xe9\xb0\xb2
+{0x9c39,{0x5d,0x1f,0x47,0x57,0x7b,0x55,0x4b}}, // \xe9\xb0\xb9
+{0x9c3a,{0x5d,0x1f,0x5a,0x4f,0x5a,0x2d,0x1a}}, // \xe9\xb0\xba
+{0x9c3b,{0x5d,0x1f,0x4c,0x5f,0x2d,0x5f,0x4c}}, // \xe9\xb0\xbb
+{0x9c3e,{0x42,0x1d,0x5f,0x11,0x77,0x17,0x51}}, // \xe9\xb0\xbe
+{0x9c46,{0x42,0x1d,0x5f,0x2a,0x3e,0x7b,0x2e}}, // \xe9\xb1\x86
+{0x9c47,{0x42,0x1d,0x3f,0x52,0x7f,0x2e,0x56}}, // \xe9\xb1\x87
+{0x9c48,{0x42,0x1d,0x5f,0x06,0x53,0x57,0x76}}, // \xe9\xb1\x88
+{0x9c52,{0x42,0x1d,0x5f,0x1e,0x37,0x52,0x7f}}, // \xe9\xb1\x92
+{0x9c57,{0x5d,0x1f,0x55,0x32,0x27,0x72,0x25}}, // \xe9\xb1\x97
+{0x9c5a,{0x5d,0x1f,0x52,0x7e,0x57,0x7e,0x12}}, // \xe9\xb1\x9a
+{0x9c60,{0x42,0x1d,0x5f,0x76,0x5d,0x76,0x1c}}, // \xe9\xb1\xa0
+{0x9c67,{0x42,0x1d,0x5f,0x5e,0x6f,0x6e,0x5f}}, // \xe9\xb1\xa7
+{0x9c76,{0x5d,0x1f,0x2a,0x7b,0x3e,0x5b,0x2a}}, // \xe9\xb1\xb6
+{0x9c78,{0x42,0x1d,0x5f,0x5c,0x64,0x6f,0x4a}}, // \xe9\xb1\xb8
+{0x9ce5,{0x40,0x1e,0x56,0x17,0x56,0x16,0x70}}, // \xe9\xb3\xa5
+{0x9ce7,{0x50,0x4e,0x3e,0x2f,0x3e,0x68,0x58}}, // \xe9\xb3\xa7
+{0x9ce9,{0x22,0x1f,0x3e,0x20,0x5e,0x17,0x76}}, // \xe9\xb3\xa9
+{0x9ceb,{0x40,0x3f,0x41,0x1d,0x5f,0x1d,0x71}}, // \xe9\xb3\xab
+{0x9cec,{0x40,0x46,0x36,0x17,0x76,0x44,0x6c}}, // \xe9\xb3\xac
+{0x9cf0,{0x31,0x0f,0x10,0x5e,0x17,0x56,0x70}}, // \xe9\xb3\xb0
+{0x9cf3,{0x40,0x3f,0x5d,0x1f,0x71,0x7f,0x40}}, // \xe9\xb3\xb3
+{0x9cf4,{0x1e,0x1e,0x40,0x1e,0x57,0x16,0x70}}, // \xe9\xb3\xb4
+{0x9cf6,{0x42,0x1a,0x5a,0x1e,0x5b,0x16,0x7b}}, // \xe9\xb3\xb6
+{0x9d03,{0x5e,0x17,0x76,0x48,0x4a,0x3f,0x4e}}, // \xe9\xb4\x83
+{0x9d06,{0x46,0x3f,0x72,0x46,0x1e,0x57,0x76}}, // \xe9\xb4\x86
+{0x9d07,{0x2f,0x7a,0x2a,0x5e,0x17,0x56,0x70}}, // \xe9\xb4\x87
+{0x9d08,{0x40,0x3f,0x7d,0x03,0x5d,0x1f,0x71}}, // \xe9\xb4\x88
+{0x9d09,{0x2f,0x59,0x7f,0x09,0x5e,0x17,0x76}}, // \xe9\xb4\x89
+{0x9d0e,{0x7f,0x55,0x49,0x14,0x5e,0x17,0x76}}, // \xe9\xb4\x8e
+{0x9d12,{0x16,0x75,0x36,0x00,0x5e,0x17,0x76}}, // \xe9\xb4\x92
+{0x9d15,{0x5e,0x17,0x70,0x06,0x7a,0x53,0x56}}, // \xe9\xb4\x95
+{0x9d1b,{0x4a,0x0b,0x5d,0x1b,0x5f,0x19,0x7b}}, // \xe9\xb4\x9b
+{0x9d1f,{0x7e,0x4a,0x5e,0x29,0x5e,0x17,0x76}}, // \xe9\xb4\x9f
+{0x9d23,{0x3a,0x2f,0x3a,0x40,0x1e,0x57,0x76}}, // \xe9\xb4\xa3
+{0x9d26,{0x54,0x0e,0x5e,0x1f,0x56,0x1e,0x74}}, // \xe9\xb4\xa6
+{0x9d28,{0x0f,0x7f,0x0f,0x5e,0x17,0x56,0x70}}, // \xe9\xb4\xa8
+{0x9d2a,{0x46,0x3a,0x03,0x3a,0x5e,0x17,0x76}}, // \xe9\xb4\xaa
+{0x9d2b,{0x3e,0x3e,0x3e,0x40,0x1e,0x57,0x76}}, // \xe9\xb4\xab
+{0x9d2c,{0x46,0x03,0x5a,0x1f,0x5a,0x13,0x76}}, // \xe9\xb4\xac
+{0x9d3b,{0x75,0x22,0x3e,0x52,0x1e,0x57,0x76}}, // \xe9\xb4\xbb
+{0x9d3e,{0x36,0x2d,0x7c,0x2e,0x5e,0x17,0x76}}, // \xe9\xb4\xbe
+{0x9d3f,{0x76,0x55,0x76,0x00,0x5e,0x17,0x76}}, // \xe9\xb4\xbf
+{0x9d41,{0x4a,0x56,0x23,0x56,0x1e,0x57,0x76}}, // \xe9\xb5\x81
+{0x9d44,{0x49,0x5d,0x3b,0x2d,0x5e,0x17,0x76}}, // \xe9\xb5\x84
+{0x9d46,{0x0a,0x7d,0x5e,0x17,0x70,0x05,0x7d}}, // \xe9\xb5\x86
+{0x9d48,{0x21,0x3f,0x2d,0x7f,0x5e,0x17,0x76}}, // \xe9\xb5\x88
+{0x9d50,{0x51,0x4d,0x3f,0x2d,0x5e,0x17,0x76}}, // \xe9\xb5\x90
+{0x9d51,{0x78,0x2b,0x2b,0x78,0x5e,0x17,0x76}}, // \xe9\xb5\x91
+{0x9d59,{0x5f,0x15,0x5f,0x00,0x5e,0x17,0x76}}, // \xe9\xb5\x99
+{0x9d5c,{0x5a,0x2b,0x7e,0x2b,0x5e,0x17,0x76}}, // \xe9\xb5\x9c
+{0x9d5d,{0x26,0x7e,0x25,0x7f,0x5e,0x17,0x76}}, // \xe9\xb5\x9d
+{0x9d5e,{0x4a,0x0f,0x5f,0x1a,0x5b,0x16,0x7b}}, // \xe9\xb5\x9e
+{0x9d60,{0x0c,0x6b,0x6f,0x0a,0x5e,0x17,0x76}}, // \xe9\xb5\xa0
+{0x9d61,{0x75,0x65,0x3e,0x45,0x5e,0x17,0x76}}, // \xe9\xb5\xa1
+{0x9d64,{0x42,0x3d,0x5f,0x7c,0x5e,0x17,0x76}}, // \xe9\xb5\xa4
+{0x9d6c,{0x7f,0x15,0x7f,0x7f,0x5e,0x17,0x76}}, // \xe9\xb5\xac
+{0x9d6f,{0x2e,0x3f,0x7a,0x2e,0x5e,0x17,0x76}}, // \xe9\xb5\xaf
+{0x9d72,{0x0a,0x6f,0x6a,0x0f,0x5e,0x17,0x76}}, // \xe9\xb5\xb2
+{0x9d7a,{0x12,0x7e,0x2b,0x5a,0x1e,0x57,0x76}}, // \xe9\xb5\xba
+{0x9d87,{0x42,0x2e,0x7f,0x2a,0x5e,0x17,0x76}}, // \xe9\xb6\x87
+{0x9d89,{0x22,0x2e,0x7b,0x1e,0x5e,0x17,0x76}}, // \xe9\xb6\x89
+{0x9d8f,{0x55,0x39,0x55,0x00,0x5e,0x17,0x76}}, // \xe9\xb6\x8f
+{0x9d9a,{0x0b,0x5f,0x6c,0x0b,0x5e,0x17,0x76}}, // \xe9\xb6\x9a
+{0x9da4,{0x27,0x3d,0x7f,0x27,0x5e,0x17,0x76}}, // \xe9\xb6\xa4
+{0x9da9,{0x4a,0x07,0x5f,0x1d,0x5a,0x15,0x7b}}, // \xe9\xb6\xa9
+{0x9dab,{0x42,0x2e,0x7f,0x2e,0x5e,0x17,0x76}}, // \xe9\xb6\xab
+{0x9daf,{0x4d,0x06,0x5d,0x1c,0x5d,0x16,0x7d}}, // \xe9\xb6\xaf
+{0x9db2,{0x5a,0x2d,0x58,0x29,0x7a,0x1f,0x76}}, // \xe9\xb6\xb2
+{0x9db4,{0x16,0x7a,0x7f,0x4a,0x1e,0x57,0x76}}, // \xe9\xb6\xb4
+{0x9db8,{0x5d,0x77,0x5d,0x77,0x5e,0x17,0x76}}, // \xe9\xb6\xb8
+{0x9dba,{0x15,0x7d,0x2a,0x7d,0x5e,0x17,0x76}}, // \xe9\xb6\xba
+{0x9dbb,{0x0c,0x77,0x35,0x77,0x5e,0x17,0x76}}, // \xe9\xb6\xbb
+{0x9dc1,{0x52,0x6d,0x6d,0x52,0x1e,0x57,0x76}}, // \xe9\xb7\x81
+{0x9dc2,{0x6a,0x4d,0x7b,0x68,0x5e,0x17,0x76}}, // \xe9\xb7\x82
+{0x9dc4,{0x52,0x55,0x3b,0x51,0x1e,0x57,0x76}}, // \xe9\xb7\x84
+{0x9dc6,{0x58,0x1f,0x1e,0x52,0x1e,0x57,0x76}}, // \xe9\xb7\x86
+{0x9dcf,{0x52,0x1e,0x1f,0x52,0x1e,0x57,0x76}}, // \xe9\xb7\x8f
+{0x9dd3,{0x7e,0x4a,0x1f,0x5a,0x5e,0x17,0x76}}, // \xe9\xb7\x93
+{0x9dd9,{0x44,0x0e,0x5f,0x1a,0x57,0x1e,0x78}}, // \xe9\xb7\x99
+{0x9de6,{0x44,0x1f,0x5e,0x13,0x5e,0x17,0x76}}, // \xe9\xb7\xa6
+{0x9ded,{0x15,0x6f,0x7d,0x6f,0x5e,0x17,0x76}}, // \xe9\xb7\xad
+{0x9def,{0x4a,0x1e,0x6b,0x1e,0x5e,0x17,0x76}}, // \xe9\xb7\xaf
+{0x9df2,{0x52,0x0e,0x5b,0x1e,0x5a,0x17,0x7a}}, // \xe9\xb7\xb2
+{0x9df8,{0x7a,0x37,0x5f,0x73,0x5e,0x17,0x76}}, // \xe9\xb7\xb8
+{0x9df9,{0x40,0x3e,0x4e,0x12,0x5f,0x1e,0x7a}}, // \xe9\xb7\xb9
+{0x9dfa,{0x4b,0x0d,0x5b,0x16,0x5d,0x1f,0x74}}, // \xe9\xb7\xba
+{0x9dfd,{0x4c,0x06,0x5d,0x1e,0x5d,0x17,0x7c}}, // \xe9\xb7\xbd
+{0x9e1a,{0x57,0x7b,0x54,0x33,0x5f,0x16,0x77}}, // \xe9\xb8\x9a
+{0x9e1b,{0x26,0x7f,0x52,0x7f,0x5e,0x17,0x76}}, // \xe9\xb8\x9b
+{0x9e1e,{0x4a,0x1d,0x5a,0x17,0x5a,0x1d,0x78}}, // \xe9\xb8\x9e
+{0x9e75,{0x00,0x7c,0x54,0x6f,0x56,0x6e,0x7a}}, // \xe9\xb9\xb5
+{0x9e78,{0x7c,0x47,0x7a,0x56,0x3d,0x56,0x5c}}, // \xe9\xb9\xb8
+{0x9e79,{0x7c,0x47,0x7a,0x7e,0x6a,0x3f,0x52}}, // \xe9\xb9\xb9
+{0x9e7d,{0x4f,0x7f,0x59,0x74,0x5f,0x7e,0x4e}}, // \xe9\xb9\xbd
+{0x9e7f,{0x40,0x3e,0x7a,0x5e,0x0b,0x7e,0x52}}, // \xe9\xb9\xbf
+{0x9e81,{0x42,0x3e,0x75,0x5d,0x17,0x7c,0x54}}, // \xe9\xba\x81
+{0x9e88,{0x40,0x3e,0x5a,0x76,0x67,0x7e,0x52}}, // \xe9\xba\x88
+{0x9e8b,{0x48,0x56,0x3e,0x7a,0x3f,0x5e,0x4a}}, // \xe9\xba\x8b
+{0x9e8c,{0x28,0x36,0x6e,0x3a,0x3f,0x6e,0x2a}}, // \xe9\xba\x8c
+{0x9e91,{0x48,0x76,0x2e,0x2a,0x2f,0x7e,0x4a}}, // \xe9\xba\x91
+{0x9e92,{0x7e,0x3b,0x2e,0x52,0x1f,0x1a,0x5f}}, // \xe9\xba\x92
+{0x9e93,{0x42,0x3f,0x76,0x5c,0x16,0x7f,0x56}}, // \xe9\xba\x93
+{0x9e95,{0x08,0x76,0x7e,0x7a,0x5f,0x7e,0x0a}}, // \xe9\xba\x95
+{0x9e97,{0x43,0x3d,0x77,0x5c,0x17,0x7d,0x57}}, // \xe9\xba\x97
+{0x9e9d,{0x48,0x36,0x5e,0x7a,0x2f,0x4e,0x7a}}, // \xe9\xba\x9d
+{0x9e9f,{0x7e,0x3b,0x2e,0x55,0x32,0x27,0x75}}, // \xe9\xba\x9f
+{0x9ea5,{0x4a,0x56,0x2a,0x57,0x3a,0x56,0x4a}}, // \xe9\xba\xa5
+{0x9ea6,{0x48,0x2a,0x5a,0x2f,0x5a,0x4a,0x48}}, // \xe9\xba\xa6
+{0x9ea9,{0x2a,0x56,0x2f,0x5a,0x6a,0x5f,0x6a}}, // \xe9\xba\xa9
+{0x9eaa,{0x2a,0x56,0x2f,0x5a,0x4d,0x6f,0x7d}}, // \xe9\xba\xaa
+{0x9ead,{0x2a,0x56,0x2f,0x5a,0x44,0x7b,0x5e}}, // \xe9\xba\xad
+{0x9eb8,{0x52,0x2f,0x5a,0x40,0x6a,0x5f,0x6a}}, // \xe9\xba\xb8
+{0x9eb9,{0x52,0x2f,0x5a,0x57,0x7a,0x56,0x7e}}, // \xe9\xba\xb9
+{0x9eba,{0x52,0x2f,0x5a,0x7d,0x57,0x7d,0x7d}}, // \xe9\xba\xba
+{0x9ebb,{0x40,0x3e,0x2a,0x7e,0x2b,0x7e,0x2a}}, // \xe9\xba\xbb
+{0x9ebc,{0x40,0x3e,0x5a,0x6e,0x5b,0x2e,0x4a}}, // \xe9\xba\xbc
+{0x9ebe,{0x40,0x3e,0x2a,0x2e,0x7b,0x5e,0x4a}}, // \xe9\xba\xbe
+{0x9ebf,{0x40,0x3e,0x6a,0x7e,0x6b,0x7e,0x6a}}, // \xe9\xba\xbf
+{0x9ec4,{0x4a,0x7a,0x2f,0x3a,0x2f,0x7a,0x4a}}, // \xe9\xbb\x84
+{0x9ecc,{0x4c,0x56,0x3d,0x36,0x3d,0x57,0x4c}}, // \xe9\xbb\x8c
+{0x9ecd,{0x2a,0x6a,0x37,0x6f,0x37,0x6a,0x2a}}, // \xe9\xbb\x8d
+{0x9ece,{0x2a,0x67,0x3f,0x6a,0x37,0x6a,0x2e}}, // \xe9\xbb\x8e
+{0x9ecf,{0x5a,0x37,0x7f,0x3a,0x70,0x5f,0x74}}, // \xe9\xbb\x8f
+{0x9ed0,{0x5a,0x37,0x7f,0x3a,0x7e,0x3f,0x72}}, // \xe9\xbb\x90
+{0x9ed2,{0x50,0x17,0x55,0x1f,0x55,0x17,0x50}}, // \xe9\xbb\x92
+{0x9ed4,{0x57,0x1f,0x57,0x12,0x55,0x36,0x14}}, // \xe9\xbb\x94
+{0x9ed8,{0x57,0x1f,0x57,0x24,0x1f,0x24,0x45}}, // \xe9\xbb\x98
+{0x9ed9,{0x57,0x1f,0x57,0x12,0x4f,0x12,0x53}}, // \xe9\xbb\x99
+{0x9edb,{0x64,0x2e,0x79,0x3a,0x7b,0x26,0x6b}}, // \xe9\xbb\x9b
+{0x9edc,{0x57,0x1f,0x57,0x76,0x44,0x7f,0x76}}, // \xe9\xbb\x9c
+{0x9edd,{0x57,0x1f,0x64,0x5b,0x64,0x1f,0x7e}}, // \xe9\xbb\x9d
+{0x9ede,{0x57,0x1f,0x57,0x70,0x5f,0x54,0x74}}, // \xe9\xbb\x9e
+{0x9ee0,{0x57,0x1f,0x57,0x02,0x6a,0x6f,0x6a}}, // \xe9\xbb\xa0
+{0x9ee5,{0x57,0x1f,0x57,0x22,0x4e,0x7b,0x2e}}, // \xe9\xbb\xa5
+{0x9ee8,{0x56,0x1b,0x5e,0x17,0x5e,0x1b,0x56}}, // \xe9\xbb\xa8
+{0x9eef,{0x57,0x1f,0x57,0x0a,0x6e,0x6b,0x6e}}, // \xe9\xbb\xaf
+{0x9ef4,{0x0a,0x7d,0x56,0x1f,0x56,0x3f,0x5e}}, // \xe9\xbb\xb4
+{0x9ef6,{0x68,0x27,0x7f,0x3d,0x7b,0x27,0x6b}}, // \xe9\xbb\xb6
+{0x9ef7,{0x57,0x1f,0x57,0x3e,0x3b,0x3e,0x4e}}, // \xe9\xbb\xb7
+{0x9ef9,{0x0b,0x76,0x33,0x7e,0x33,0x76,0x0b}}, // \xe9\xbb\xb9
+{0x9efb,{0x75,0x3e,0x75,0x22,0x5f,0x22,0x5b}}, // \xe9\xbb\xbb
+{0x9efc,{0x75,0x3e,0x75,0x7a,0x7f,0x2a,0x7b}}, // \xe9\xbb\xbc
+{0x9efd,{0x18,0x1b,0x7f,0x41,0x7f,0x5b,0x58}}, // \xe9\xbb\xbd
+{0x9f07,{0x14,0x3e,0x7f,0x4c,0x7a,0x7d,0x4b}}, // \xe9\xbc\x87
+{0x9f08,{0x02,0x3d,0x7e,0x4d,0x7a,0x75,0x4b}}, // \xe9\xbc\x88
+{0x9f0e,{0x4e,0x28,0x7f,0x07,0x7f,0x28,0x6e}}, // \xe9\xbc\x8e
+{0x9f13,{0x5a,0x77,0x2a,0x40,0x5a,0x2f,0x5a}}, // \xe9\xbc\x93
+{0x9f15,{0x2a,0x2f,0x3e,0x5a,0x16,0x2f,0x2a}}, // \xe9\xbc\x95
+{0x9f20,{0x40,0x7e,0x55,0x2c,0x55,0x3f,0x40}}, // \xe9\xbc\xa0
+{0x9f21,{0x40,0x3d,0x14,0x7d,0x16,0x7d,0x40}}, // \xe9\xbc\xa1
+{0x9f2c,{0x7e,0x59,0x2a,0x7e,0x5e,0x5f,0x5e}}, // \xe9\xbc\xac
+{0x9f3b,{0x20,0x78,0x2e,0x3b,0x6e,0x38,0x20}}, // \xe9\xbc\xbb
+{0x9f3e,{0x38,0x6e,0x3b,0x7e,0x09,0x7f,0x09}}, // \xe9\xbc\xbe
+{0x9f4a,{0x4a,0x36,0x2e,0x2b,0x2e,0x76,0x0a}}, // \xe9\xbd\x8a
+{0x9f4b,{0x4a,0x36,0x2e,0x6b,0x2e,0x76,0x0a}}, // \xe9\xbd\x8b
+{0x9f4e,{0x4a,0x36,0x7e,0x3b,0x7e,0x76,0x0a}}, // \xe9\xbd\x8e
+{0x9f4f,{0x4a,0x36,0x5e,0x7b,0x5e,0x76,0x0a}}, // \xe9\xbd\x8f
+{0x9f52,{0x04,0x7e,0x54,0x6f,0x56,0x6e,0x7a}}, // \xe9\xbd\x92
+{0x9f54,{0x7e,0x6c,0x57,0x7a,0x7f,0x48,0x64}}, // \xe9\xbd\x94
+{0x9f5f,{0x7e,0x6c,0x57,0x7a,0x7f,0x55,0x7f}}, // \xe9\xbd\x9f
+{0x9f60,{0x7e,0x6c,0x57,0x7a,0x75,0x53,0x77}}, // \xe9\xbd\xa0
+{0x9f61,{0x7e,0x6c,0x57,0x7a,0x16,0x75,0x36}}, // \xe9\xbd\xa1
+{0x9f62,{0x7e,0x54,0x6f,0x7a,0x16,0x75,0x36}}, // \xe9\xbd\xa2
+{0x9f63,{0x7e,0x6c,0x57,0x7a,0x04,0x5b,0x7e}}, // \xe9\xbd\xa3
+{0x9f66,{0x7e,0x6c,0x57,0x7a,0x7f,0x35,0x5f}}, // \xe9\xbd\xa6
+{0x9f67,{0x0a,0x7f,0x6e,0x58,0x6d,0x5b,0x7f}}, // \xe9\xbd\xa7
+{0x9f6a,{0x7e,0x6c,0x57,0x7a,0x27,0x7d,0x57}}, // \xe9\xbd\xaa
+{0x9f6c,{0x7e,0x6c,0x57,0x7a,0x05,0x6f,0x6d}}, // \xe9\xbd\xac
+{0x9f72,{0x7e,0x6c,0x57,0x7a,0x7e,0x3f,0x71}}, // \xe9\xbd\xb2
+{0x9f76,{0x7e,0x54,0x6f,0x7a,0x0f,0x5c,0x6b}}, // \xe9\xbd\xb6
+{0x9f77,{0x7c,0x57,0x6a,0x7f,0x5b,0x77,0x53}}, // \xe9\xbd\xb7
+{0x9f8d,{0x0a,0x7e,0x2b,0x7e,0x0a,0x77,0x5d}}, // \xe9\xbe\x8d
+{0x9f95,{0x2a,0x7a,0x2e,0x7d,0x2e,0x76,0x5a}}, // \xe9\xbe\x95
+{0x9f9c,{0x2a,0x3e,0x7d,0x45,0x7f,0x7c,0x58}}, // \xe9\xbe\x9c
+{0x9f9d,{0x35,0x7f,0x2a,0x7e,0x45,0x7f,0x5c}}, // \xe9\xbe\x9d
+{0x9fa0,{0x1c,0x74,0x3e,0x75,0x3e,0x74,0x1c}}, // \xe9\xbe\xa0
+{0xff01,{0x00,0x00,0x00,0x5f,0x00,0x00,0x00}}, // \xef\xbc\x81
+{0xff03,{0x20,0x62,0x3e,0x63,0x3e,0x23,0x02}}, // \xef\xbc\x83
+{0xff04,{0x00,0x24,0x2a,0x7a,0x2f,0x2a,0x12}}, // \xef\xbc\x84
+{0xff05,{0x42,0x25,0x12,0x08,0x24,0x52,0x21}}, // \xef\xbc\x85
+{0xff06,{0x20,0x56,0x49,0x55,0x22,0x58,0x40}}, // \xef\xbc\x86
+{0xff08,{0x00,0x00,0x00,0x00,0x1c,0x22,0x41}}, // \xef\xbc\x88
+{0xff09,{0x41,0x22,0x1c,0x00,0x00,0x00,0x00}}, // \xef\xbc\x89
+{0xff0a,{0x00,0x22,0x14,0x7f,0x14,0x22,0x00}}, // \xef\xbc\x8a
+{0xff0b,{0x08,0x08,0x08,0x7f,0x08,0x08,0x08}}, // \xef\xbc\x8b
+{0xff0c,{0x50,0x30,0x00,0x00,0x00,0x00,0x00}}, // \xef\xbc\x8c
+{0xff0e,{0x60,0x60,0x00,0x00,0x00,0x00,0x00}}, // \xef\xbc\x8e
+{0xff0f,{0x40,0x20,0x10,0x08,0x04,0x02,0x01}}, // \xef\xbc\x8f
+{0xff10,{0x00,0x3e,0x41,0x41,0x41,0x41,0x3e}}, // \xef\xbc\x90
+{0xff11,{0x00,0x00,0x42,0x7f,0x40,0x00,0x00}}, // \xef\xbc\x91
+{0xff12,{0x00,0x62,0x51,0x51,0x49,0x49,0x46}}, // \xef\xbc\x92
+{0xff13,{0x00,0x22,0x41,0x49,0x49,0x49,0x36}}, // \xef\xbc\x93
+{0xff14,{0x00,0x30,0x28,0x24,0x22,0x7f,0x20}}, // \xef\xbc\x94
+{0xff15,{0x00,0x2f,0x45,0x45,0x45,0x45,0x39}}, // \xef\xbc\x95
+{0xff16,{0x00,0x3e,0x49,0x49,0x49,0x49,0x32}}, // \xef\xbc\x96
+{0xff17,{0x00,0x01,0x01,0x61,0x19,0x05,0x03}}, // \xef\xbc\x97
+{0xff18,{0x00,0x36,0x49,0x49,0x49,0x49,0x36}}, // \xef\xbc\x98
+{0xff19,{0x00,0x26,0x49,0x49,0x49,0x49,0x3e}}, // \xef\xbc\x99
+{0xff1a,{0x00,0x00,0x36,0x36,0x00,0x00,0x00}}, // \xef\xbc\x9a
+{0xff1b,{0x00,0x00,0x56,0x36,0x00,0x00,0x00}}, // \xef\xbc\x9b
+{0xff1c,{0x08,0x08,0x14,0x14,0x14,0x22,0x22}}, // \xef\xbc\x9c
+{0xff1d,{0x14,0x14,0x14,0x14,0x14,0x14,0x14}}, // \xef\xbc\x9d
+{0xff1e,{0x22,0x22,0x14,0x14,0x14,0x08,0x08}}, // \xef\xbc\x9e
+{0xff1f,{0x00,0x02,0x01,0x51,0x09,0x09,0x06}}, // \xef\xbc\x9f
+{0xff20,{0x1c,0x22,0x59,0x55,0x4d,0x12,0x0c}}, // \xef\xbc\xa0
+{0xff21,{0x60,0x18,0x16,0x11,0x16,0x18,0x60}}, // \xef\xbc\xa1
+{0xff22,{0x00,0x7f,0x49,0x49,0x49,0x49,0x36}}, // \xef\xbc\xa2
+{0xff23,{0x00,0x1c,0x22,0x41,0x41,0x41,0x22}}, // \xef\xbc\xa3
+{0xff24,{0x00,0x7f,0x41,0x41,0x41,0x22,0x1c}}, // \xef\xbc\xa4
+{0xff25,{0x00,0x7f,0x49,0x49,0x49,0x49,0x41}}, // \xef\xbc\xa5
+{0xff26,{0x00,0x7f,0x09,0x09,0x09,0x09,0x01}}, // \xef\xbc\xa6
+{0xff27,{0x00,0x1c,0x22,0x41,0x49,0x49,0x3a}}, // \xef\xbc\xa7
+{0xff28,{0x00,0x7f,0x08,0x08,0x08,0x08,0x7f}}, // \xef\xbc\xa8
+{0xff29,{0x00,0x00,0x41,0x7f,0x41,0x00,0x00}}, // \xef\xbc\xa9
+{0xff2a,{0x00,0x20,0x40,0x40,0x40,0x40,0x3f}}, // \xef\xbc\xaa
+{0xff2b,{0x00,0x7f,0x10,0x08,0x14,0x22,0x41}}, // \xef\xbc\xab
+{0xff2c,{0x00,0x7f,0x40,0x40,0x40,0x40,0x40}}, // \xef\xbc\xac
+{0xff2d,{0x7f,0x02,0x0c,0x30,0x0c,0x02,0x7f}}, // \xef\xbc\xad
+{0xff2e,{0x00,0x7f,0x02,0x04,0x08,0x10,0x7f}}, // \xef\xbc\xae
+{0xff2f,{0x00,0x1c,0x22,0x41,0x41,0x22,0x1c}}, // \xef\xbc\xaf
+{0xff30,{0x00,0x7f,0x09,0x09,0x09,0x09,0x06}}, // \xef\xbc\xb0
+{0xff31,{0x00,0x1c,0x22,0x41,0x51,0x22,0x5c}}, // \xef\xbc\xb1
+{0xff32,{0x00,0x7f,0x09,0x09,0x19,0x29,0x46}}, // \xef\xbc\xb2
+{0xff33,{0x00,0x26,0x49,0x49,0x49,0x49,0x32}}, // \xef\xbc\xb3
+{0xff34,{0x01,0x01,0x01,0x7f,0x01,0x01,0x01}}, // \xef\xbc\xb4
+{0xff35,{0x00,0x3f,0x40,0x40,0x40,0x40,0x3f}}, // \xef\xbc\xb5
+{0xff36,{0x03,0x0c,0x30,0x40,0x30,0x0c,0x03}}, // \xef\xbc\xb6
+{0xff37,{0x1f,0x60,0x18,0x06,0x18,0x60,0x1f}}, // \xef\xbc\xb7
+{0xff38,{0x41,0x22,0x14,0x08,0x14,0x22,0x41}}, // \xef\xbc\xb8
+{0xff39,{0x01,0x02,0x04,0x78,0x04,0x02,0x01}}, // \xef\xbc\xb9
+{0xff3a,{0x00,0x41,0x61,0x51,0x49,0x45,0x43}}, // \xef\xbc\xba
+{0xff3b,{0x00,0x00,0x00,0x00,0x7f,0x41,0x41}}, // \xef\xbc\xbb
+{0xff3c,{0x01,0x02,0x04,0x08,0x10,0x20,0x40}}, // \xef\xbc\xbc
+{0xff3d,{0x41,0x41,0x7f,0x00,0x00,0x00,0x00}}, // \xef\xbc\xbd
+{0xff3e,{0x00,0x00,0x02,0x01,0x02,0x00,0x00}}, // \xef\xbc\xbe
+{0xff3f,{0x40,0x40,0x40,0x40,0x40,0x40,0x40}}, // \xef\xbc\xbf
+{0xff40,{0x00,0x00,0x01,0x02,0x00,0x00,0x00}}, // \xef\xbd\x80
+{0xff41,{0x00,0x20,0x54,0x54,0x54,0x78,0x00}}, // \xef\xbd\x81
+{0xff42,{0x00,0x7f,0x48,0x44,0x44,0x38,0x00}}, // \xef\xbd\x82
+{0xff43,{0x00,0x38,0x44,0x44,0x44,0x28,0x00}}, // \xef\xbd\x83
+{0xff44,{0x00,0x38,0x44,0x44,0x48,0x7f,0x00}}, // \xef\xbd\x84
+{0xff45,{0x00,0x38,0x54,0x54,0x54,0x18,0x00}}, // \xef\xbd\x85
+{0xff46,{0x00,0x00,0x04,0x7e,0x05,0x01,0x00}}, // \xef\xbd\x86
+{0xff47,{0x00,0x08,0x54,0x54,0x54,0x3c,0x00}}, // \xef\xbd\x87
+{0xff48,{0x00,0x7f,0x08,0x04,0x04,0x78,0x00}}, // \xef\xbd\x88
+{0xff49,{0x00,0x00,0x00,0x7d,0x00,0x00,0x00}}, // \xef\xbd\x89
+{0xff4a,{0x00,0x20,0x40,0x40,0x3d,0x00,0x00}}, // \xef\xbd\x8a
+{0xff4b,{0x00,0x00,0x7f,0x10,0x28,0x44,0x00}}, // \xef\xbd\x8b
+{0xff4c,{0x00,0x00,0x01,0x7f,0x00,0x00,0x00}}, // \xef\xbd\x8c
+{0xff4d,{0x00,0x7c,0x04,0x78,0x04,0x78,0x00}}, // \xef\xbd\x8d
+{0xff4e,{0x00,0x7c,0x08,0x04,0x04,0x78,0x00}}, // \xef\xbd\x8e
+{0xff4f,{0x00,0x38,0x44,0x44,0x44,0x38,0x00}}, // \xef\xbd\x8f
+{0xff50,{0x00,0x7c,0x14,0x14,0x14,0x08,0x00}}, // \xef\xbd\x90
+{0xff51,{0x00,0x08,0x14,0x14,0x14,0x7c,0x00}}, // \xef\xbd\x91
+{0xff52,{0x00,0x7c,0x08,0x04,0x04,0x08,0x00}}, // \xef\xbd\x92
+{0xff53,{0x00,0x48,0x54,0x54,0x54,0x24,0x00}}, // \xef\xbd\x93
+{0xff54,{0x00,0x04,0x3e,0x44,0x44,0x20,0x00}}, // \xef\xbd\x94
+{0xff55,{0x00,0x3c,0x40,0x40,0x20,0x7c,0x00}}, // \xef\xbd\x95
+{0xff56,{0x00,0x0c,0x30,0x40,0x30,0x0c,0x00}}, // \xef\xbd\x96
+{0xff57,{0x00,0x1c,0x60,0x18,0x60,0x1c,0x00}}, // \xef\xbd\x97
+{0xff58,{0x00,0x44,0x28,0x10,0x28,0x44,0x00}}, // \xef\xbd\x98
+{0xff59,{0x00,0x44,0x58,0x20,0x18,0x04,0x00}}, // \xef\xbd\x99
+{0xff5a,{0x00,0x44,0x64,0x54,0x4c,0x44,0x00}}, // \xef\xbd\x9a
+{0xff5b,{0x00,0x00,0x00,0x08,0x36,0x41,0x41}}, // \xef\xbd\x9b
+{0xff5c,{0x00,0x00,0x00,0x7f,0x00,0x00,0x00}}, // \xef\xbd\x9c
+{0xff5d,{0x41,0x41,0x36,0x08,0x00,0x00,0x00}}, // \xef\xbd\x9d
+{0xffe3,{0x01,0x01,0x01,0x01,0x01,0x01,0x01}}, // \xef\xbf\xa3
+{0xffe5,{0x00,0x2b,0x2c,0x78,0x2c,0x2b,0x00}}, // \xef\xbf\xa5
+};
+
+void font_8x8(uint8_t buf[], uint32_t unicode) {
+    buf[7] = 0x00;
+    int head = 0;
+    int tail = sizeof(misaki_gothic)/sizeof(stfont) - 1;
+    while(1) {
+        int i = (head + tail) / 2;
+        if (misaki_gothic[i].unicode == unicode) {
+            memcpy(buf, misaki_gothic[i].bitmap, 7);
+            return;
+        } else if (misaki_gothic[i].unicode < unicode) {
+            head = i+1;
+        } else {
+            tail = i-1;
+        }
+        if (head > tail) {
+            break;
+        }
+    }     
+    memset(buf, 0x55, 7); // not found.
+}
+