gb2312及对应的区码、位码、机内码等原理知识,这里不再赘述,请参考这里http://blog.csdn.net/zhongguoren666/article/details/7738159,下面GB2312对应的UNICODE编码是本人辛苦一个一个对应过来的,请各位体谅在下的苦衷,转载时,请注明出处(blog.csdn.net/zxwangyun).

#include <stdio.h>
#include <string.h>
#include <stdlib.h>typedef unsigned int    uint32;
typedef unsigned short  uint16;
typedef unsigned char   uchar;#if !defined(_WIN32) && !defined(_WIN64)
typedef int                     BOOL;
#define TRUE                    1
#define FALSE                   0
#endiftypedef struct tagGB2312UTF16UTF8TBL
{uint16  gb2312;uint16  utf16;uchar   utf8[3];uchar   utf8_len;
}GB2312UTF16UTF8TBL;static const GB2312UTF16UTF8TBL gb2312utf8_codetbl[]={{0xa1a1/*gb2312*/, 0x003f/*utf16*/, {0x3f,0x00,0x00}/*utf8*/, 1/*utf8 len*/},{0xa1a2/*gb2312*/, 0x3001/*utf16*/, {0xe3,0x80,0x81}/*utf8*/, 3/*utf8 len*/},{0xa1a3/*gb2312*/, 0x3002/*utf16*/, {0xe3,0x80,0x82}/*utf8*/, 3/*utf8 len*/},{0xa1a4/*gb2312*/, 0x00b7/*utf16*/, {0xc2,0xb7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1a5/*gb2312*/, 0x02c9/*utf16*/, {0xcb,0x89,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1a6/*gb2312*/, 0x02c7/*utf16*/, {0xcb,0x87,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1a7/*gb2312*/, 0x00a8/*utf16*/, {0xc2,0xa8,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1a8/*gb2312*/, 0x3003/*utf16*/, {0xe3,0x80,0x83}/*utf8*/, 3/*utf8 len*/},{0xa1a9/*gb2312*/, 0x3005/*utf16*/, {0xe3,0x80,0x85}/*utf8*/, 3/*utf8 len*/},{0xa1aa/*gb2312*/, 0x2014/*utf16*/, {0xe2,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xa1ab/*gb2312*/, 0xff5e/*utf16*/, {0xef,0xbd,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa1ac/*gb2312*/, 0x2016/*utf16*/, {0xe2,0x80,0x96}/*utf8*/, 3/*utf8 len*/},{0xa1ad/*gb2312*/, 0x2026/*utf16*/, {0xe2,0x80,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa1ae/*gb2312*/, 0x2018/*utf16*/, {0xe2,0x80,0x98}/*utf8*/, 3/*utf8 len*/},{0xa1af/*gb2312*/, 0x2019/*utf16*/, {0xe2,0x80,0x99}/*utf8*/, 3/*utf8 len*/},{0xa1b0/*gb2312*/, 0x201c/*utf16*/, {0xe2,0x80,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa1b1/*gb2312*/, 0x201d/*utf16*/, {0xe2,0x80,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa1b2/*gb2312*/, 0x3014/*utf16*/, {0xe3,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xa1b3/*gb2312*/, 0x3015/*utf16*/, {0xe3,0x80,0x95}/*utf8*/, 3/*utf8 len*/},{0xa1b4/*gb2312*/, 0x3008/*utf16*/, {0xe3,0x80,0x88}/*utf8*/, 3/*utf8 len*/},{0xa1b5/*gb2312*/, 0x3009/*utf16*/, {0xe3,0x80,0x89}/*utf8*/, 3/*utf8 len*/},{0xa1b6/*gb2312*/, 0x300a/*utf16*/, {0xe3,0x80,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa1b7/*gb2312*/, 0x300b/*utf16*/, {0xe3,0x80,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa1b8/*gb2312*/, 0x300c/*utf16*/, {0xe3,0x80,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa1b9/*gb2312*/, 0x300d/*utf16*/, {0xe3,0x80,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa1ba/*gb2312*/, 0x300e/*utf16*/, {0xe3,0x80,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa1bb/*gb2312*/, 0x300f/*utf16*/, {0xe3,0x80,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa1bc/*gb2312*/, 0x3016/*utf16*/, {0xe3,0x80,0x96}/*utf8*/, 3/*utf8 len*/},{0xa1bd/*gb2312*/, 0x3017/*utf16*/, {0xe3,0x80,0x97}/*utf8*/, 3/*utf8 len*/},{0xa1be/*gb2312*/, 0x3010/*utf16*/, {0xe3,0x80,0x90}/*utf8*/, 3/*utf8 len*/},{0xa1bf/*gb2312*/, 0x3011/*utf16*/, {0xe3,0x80,0x91}/*utf8*/, 3/*utf8 len*/},{0xa1c0/*gb2312*/, 0x00b1/*utf16*/, {0xc2,0xb1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1c1/*gb2312*/, 0x00d7/*utf16*/, {0xc3,0x97,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1c2/*gb2312*/, 0x00f7/*utf16*/, {0xc3,0xb7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1c3/*gb2312*/, 0x2236/*utf16*/, {0xe2,0x88,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa1c4/*gb2312*/, 0x2227/*utf16*/, {0xe2,0x88,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa1c5/*gb2312*/, 0x2228/*utf16*/, {0xe2,0x88,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa1c6/*gb2312*/, 0x2211/*utf16*/, {0xe2,0x88,0x91}/*utf8*/, 3/*utf8 len*/},{0xa1c7/*gb2312*/, 0x220f/*utf16*/, {0xe2,0x88,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa1c8/*gb2312*/, 0x222a/*utf16*/, {0xe2,0x88,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa1c9/*gb2312*/, 0x2229/*utf16*/, {0xe2,0x88,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa1ca/*gb2312*/, 0x2208/*utf16*/, {0xe2,0x88,0x88}/*utf8*/, 3/*utf8 len*/},{0xa1cb/*gb2312*/, 0x2237/*utf16*/, {0xe2,0x88,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa1cc/*gb2312*/, 0x221a/*utf16*/, {0xe2,0x88,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa1cd/*gb2312*/, 0x22a5/*utf16*/, {0xe2,0x8a,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa1ce/*gb2312*/, 0x2225/*utf16*/, {0xe2,0x88,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa1cf/*gb2312*/, 0x2220/*utf16*/, {0xe2,0x88,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa1d0/*gb2312*/, 0x2312/*utf16*/, {0xe2,0x8c,0x92}/*utf8*/, 3/*utf8 len*/},{0xa1d1/*gb2312*/, 0x2299/*utf16*/, {0xe2,0x8a,0x99}/*utf8*/, 3/*utf8 len*/},{0xa1d2/*gb2312*/, 0x222b/*utf16*/, {0xe2,0x88,0xab}/*utf8*/, 3/*utf8 len*/},{0xa1d3/*gb2312*/, 0x222e/*utf16*/, {0xe2,0x88,0xae}/*utf8*/, 3/*utf8 len*/},{0xa1d4/*gb2312*/, 0x2261/*utf16*/, {0xe2,0x89,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa1d5/*gb2312*/, 0x224c/*utf16*/, {0xe2,0x89,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa1d6/*gb2312*/, 0x2248/*utf16*/, {0xe2,0x89,0x88}/*utf8*/, 3/*utf8 len*/},{0xa1d7/*gb2312*/, 0x223d/*utf16*/, {0xe2,0x88,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa1d8/*gb2312*/, 0x221d/*utf16*/, {0xe2,0x88,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa1d9/*gb2312*/, 0x2260/*utf16*/, {0xe2,0x89,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa1da/*gb2312*/, 0x226e/*utf16*/, {0xe2,0x89,0xae}/*utf8*/, 3/*utf8 len*/},{0xa1db/*gb2312*/, 0x226f/*utf16*/, {0xe2,0x89,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa1dc/*gb2312*/, 0x2264/*utf16*/, {0xe2,0x89,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa1dd/*gb2312*/, 0x2265/*utf16*/, {0xe2,0x89,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa1de/*gb2312*/, 0x221e/*utf16*/, {0xe2,0x88,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa1df/*gb2312*/, 0x2235/*utf16*/, {0xe2,0x88,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa1e0/*gb2312*/, 0x2234/*utf16*/, {0xe2,0x88,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa1e1/*gb2312*/, 0x2642/*utf16*/, {0xe2,0x99,0x82}/*utf8*/, 3/*utf8 len*/},{0xa1e2/*gb2312*/, 0x2640/*utf16*/, {0xe2,0x99,0x80}/*utf8*/, 3/*utf8 len*/},{0xa1e3/*gb2312*/, 0x00b0/*utf16*/, {0xc2,0xb0,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1e4/*gb2312*/, 0x2032/*utf16*/, {0xe2,0x80,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa1e5/*gb2312*/, 0x2033/*utf16*/, {0xe2,0x80,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa1e6/*gb2312*/, 0x2103/*utf16*/, {0xe2,0x84,0x83}/*utf8*/, 3/*utf8 len*/},{0xa1e7/*gb2312*/, 0xff04/*utf16*/, {0xef,0xbc,0x84}/*utf8*/, 3/*utf8 len*/},{0xa1e8/*gb2312*/, 0x00a4/*utf16*/, {0xc2,0xa4,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1e9/*gb2312*/, 0xffe0/*utf16*/, {0xef,0xbf,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa1ea/*gb2312*/, 0xffe1/*utf16*/, {0xef,0xbf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa1eb/*gb2312*/, 0x2030/*utf16*/, {0xe2,0x80,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa1ec/*gb2312*/, 0x00a7/*utf16*/, {0xc2,0xa7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa1ed/*gb2312*/, 0x2116/*utf16*/, {0xe2,0x84,0x96}/*utf8*/, 3/*utf8 len*/},{0xa1ee/*gb2312*/, 0x2606/*utf16*/, {0xe2,0x98,0x86}/*utf8*/, 3/*utf8 len*/},{0xa1ef/*gb2312*/, 0x2605/*utf16*/, {0xe2,0x98,0x85}/*utf8*/, 3/*utf8 len*/},{0xa1f0/*gb2312*/, 0x25cb/*utf16*/, {0xe2,0x97,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa1f1/*gb2312*/, 0x25cf/*utf16*/, {0xe2,0x97,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa1f2/*gb2312*/, 0x25ce/*utf16*/, {0xe2,0x97,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa1f3/*gb2312*/, 0x25c7/*utf16*/, {0xe2,0x97,0x87}/*utf8*/, 3/*utf8 len*/},{0xa1f4/*gb2312*/, 0x25c6/*utf16*/, {0xe2,0x97,0x86}/*utf8*/, 3/*utf8 len*/},{0xa1f5/*gb2312*/, 0x25a1/*utf16*/, {0xe2,0x96,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa1f6/*gb2312*/, 0x25a0/*utf16*/, {0xe2,0x96,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa1f7/*gb2312*/, 0x25b3/*utf16*/, {0xe2,0x96,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa1f8/*gb2312*/, 0x25b2/*utf16*/, {0xe2,0x96,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa1f9/*gb2312*/, 0x203b/*utf16*/, {0xe2,0x80,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa1fa/*gb2312*/, 0x2192/*utf16*/, {0xe2,0x86,0x92}/*utf8*/, 3/*utf8 len*/},{0xa1fb/*gb2312*/, 0x2190/*utf16*/, {0xe2,0x86,0x90}/*utf8*/, 3/*utf8 len*/},{0xa1fc/*gb2312*/, 0x2191/*utf16*/, {0xe2,0x86,0x91}/*utf8*/, 3/*utf8 len*/},{0xa1fd/*gb2312*/, 0x2193/*utf16*/, {0xe2,0x86,0x93}/*utf8*/, 3/*utf8 len*/},{0xa1fe/*gb2312*/, 0x3013/*utf16*/, {0xe3,0x80,0x93}/*utf8*/, 3/*utf8 len*/},{0xa2a1/*gb2312*/, 0x2170/*utf16*/, {0xe2,0x85,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa2a2/*gb2312*/, 0x2171/*utf16*/, {0xe2,0x85,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa2a3/*gb2312*/, 0x2172/*utf16*/, {0xe2,0x85,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa2a4/*gb2312*/, 0x2173/*utf16*/, {0xe2,0x85,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa2a5/*gb2312*/, 0x2174/*utf16*/, {0xe2,0x85,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa2a6/*gb2312*/, 0x2175/*utf16*/, {0xe2,0x85,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa2a7/*gb2312*/, 0x2176/*utf16*/, {0xe2,0x85,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa2a8/*gb2312*/, 0x2177/*utf16*/, {0xe2,0x85,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa2a9/*gb2312*/, 0x2178/*utf16*/, {0xe2,0x85,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa2aa/*gb2312*/, 0x2179/*utf16*/, {0xe2,0x85,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa2ab/*gb2312*/, 0xe766/*utf16*/, {0xee,0x9d,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa2ac/*gb2312*/, 0xe767/*utf16*/, {0xee,0x9d,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa2ad/*gb2312*/, 0xe768/*utf16*/, {0xee,0x9d,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa2ae/*gb2312*/, 0xe769/*utf16*/, {0xee,0x9d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa2af/*gb2312*/, 0xe76a/*utf16*/, {0xee,0x9d,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa2b0/*gb2312*/, 0xe76b/*utf16*/, {0xee,0x9d,0xab}/*utf8*/, 3/*utf8 len*/},{0xa2b1/*gb2312*/, 0x2488/*utf16*/, {0xe2,0x92,0x88}/*utf8*/, 3/*utf8 len*/},{0xa2b2/*gb2312*/, 0x2489/*utf16*/, {0xe2,0x92,0x89}/*utf8*/, 3/*utf8 len*/},{0xa2b3/*gb2312*/, 0x248a/*utf16*/, {0xe2,0x92,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa2b4/*gb2312*/, 0x248b/*utf16*/, {0xe2,0x92,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa2b5/*gb2312*/, 0x248c/*utf16*/, {0xe2,0x92,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa2b6/*gb2312*/, 0x248d/*utf16*/, {0xe2,0x92,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa2b7/*gb2312*/, 0x248e/*utf16*/, {0xe2,0x92,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa2b8/*gb2312*/, 0x248f/*utf16*/, {0xe2,0x92,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa2b9/*gb2312*/, 0x2490/*utf16*/, {0xe2,0x92,0x90}/*utf8*/, 3/*utf8 len*/},{0xa2ba/*gb2312*/, 0x2491/*utf16*/, {0xe2,0x92,0x91}/*utf8*/, 3/*utf8 len*/},{0xa2bb/*gb2312*/, 0x2492/*utf16*/, {0xe2,0x92,0x92}/*utf8*/, 3/*utf8 len*/},{0xa2bc/*gb2312*/, 0x2493/*utf16*/, {0xe2,0x92,0x93}/*utf8*/, 3/*utf8 len*/},{0xa2bd/*gb2312*/, 0x2494/*utf16*/, {0xe2,0x92,0x94}/*utf8*/, 3/*utf8 len*/},{0xa2be/*gb2312*/, 0x2495/*utf16*/, {0xe2,0x92,0x95}/*utf8*/, 3/*utf8 len*/},{0xa2bf/*gb2312*/, 0x2496/*utf16*/, {0xe2,0x92,0x96}/*utf8*/, 3/*utf8 len*/},{0xa2c0/*gb2312*/, 0x2497/*utf16*/, {0xe2,0x92,0x97}/*utf8*/, 3/*utf8 len*/},{0xa2c1/*gb2312*/, 0x2498/*utf16*/, {0xe2,0x92,0x98}/*utf8*/, 3/*utf8 len*/},{0xa2c2/*gb2312*/, 0x2499/*utf16*/, {0xe2,0x92,0x99}/*utf8*/, 3/*utf8 len*/},{0xa2c3/*gb2312*/, 0x249a/*utf16*/, {0xe2,0x92,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa2c4/*gb2312*/, 0x249b/*utf16*/, {0xe2,0x92,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa2c5/*gb2312*/, 0x2474/*utf16*/, {0xe2,0x91,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa2c6/*gb2312*/, 0x2475/*utf16*/, {0xe2,0x91,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa2c7/*gb2312*/, 0x2476/*utf16*/, {0xe2,0x91,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa2c8/*gb2312*/, 0x2477/*utf16*/, {0xe2,0x91,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa2c9/*gb2312*/, 0x2478/*utf16*/, {0xe2,0x91,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa2ca/*gb2312*/, 0x2479/*utf16*/, {0xe2,0x91,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa2cb/*gb2312*/, 0x247a/*utf16*/, {0xe2,0x91,0xba}/*utf8*/, 3/*utf8 len*/},{0xa2cc/*gb2312*/, 0x247b/*utf16*/, {0xe2,0x91,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa2cd/*gb2312*/, 0x247c/*utf16*/, {0xe2,0x91,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa2ce/*gb2312*/, 0x247d/*utf16*/, {0xe2,0x91,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa2cf/*gb2312*/, 0x247e/*utf16*/, {0xe2,0x91,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa2d0/*gb2312*/, 0x247f/*utf16*/, {0xe2,0x91,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa2d1/*gb2312*/, 0x2480/*utf16*/, {0xe2,0x92,0x80}/*utf8*/, 3/*utf8 len*/},{0xa2d2/*gb2312*/, 0x2481/*utf16*/, {0xe2,0x92,0x81}/*utf8*/, 3/*utf8 len*/},{0xa2d3/*gb2312*/, 0x2482/*utf16*/, {0xe2,0x92,0x82}/*utf8*/, 3/*utf8 len*/},{0xa2d4/*gb2312*/, 0x2483/*utf16*/, {0xe2,0x92,0x83}/*utf8*/, 3/*utf8 len*/},{0xa2d5/*gb2312*/, 0x2484/*utf16*/, {0xe2,0x92,0x84}/*utf8*/, 3/*utf8 len*/},{0xa2d6/*gb2312*/, 0x2485/*utf16*/, {0xe2,0x92,0x85}/*utf8*/, 3/*utf8 len*/},{0xa2d7/*gb2312*/, 0x2486/*utf16*/, {0xe2,0x92,0x86}/*utf8*/, 3/*utf8 len*/},{0xa2d8/*gb2312*/, 0x2487/*utf16*/, {0xe2,0x92,0x87}/*utf8*/, 3/*utf8 len*/},{0xa2d9/*gb2312*/, 0x2460/*utf16*/, {0xe2,0x91,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa2da/*gb2312*/, 0x2461/*utf16*/, {0xe2,0x91,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa2db/*gb2312*/, 0x2462/*utf16*/, {0xe2,0x91,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa2dc/*gb2312*/, 0x2463/*utf16*/, {0xe2,0x91,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa2dd/*gb2312*/, 0x2464/*utf16*/, {0xe2,0x91,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa2de/*gb2312*/, 0x2465/*utf16*/, {0xe2,0x91,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa2df/*gb2312*/, 0x2466/*utf16*/, {0xe2,0x91,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa2e0/*gb2312*/, 0x2467/*utf16*/, {0xe2,0x91,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa2e1/*gb2312*/, 0x2468/*utf16*/, {0xe2,0x91,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa2e2/*gb2312*/, 0x2469/*utf16*/, {0xe2,0x91,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa2e3/*gb2312*/, 0xe76c/*utf16*/, {0xee,0x9d,0xac}/*utf8*/, 3/*utf8 len*/},{0xa2e4/*gb2312*/, 0xe76d/*utf16*/, {0xee,0x9d,0xad}/*utf8*/, 3/*utf8 len*/},{0xa2e5/*gb2312*/, 0x3220/*utf16*/, {0xe3,0x88,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa2e6/*gb2312*/, 0x3221/*utf16*/, {0xe3,0x88,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa2e7/*gb2312*/, 0x3222/*utf16*/, {0xe3,0x88,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa2e8/*gb2312*/, 0x3223/*utf16*/, {0xe3,0x88,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa2e9/*gb2312*/, 0x3224/*utf16*/, {0xe3,0x88,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa2ea/*gb2312*/, 0x3225/*utf16*/, {0xe3,0x88,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa2eb/*gb2312*/, 0x3226/*utf16*/, {0xe3,0x88,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa2ec/*gb2312*/, 0x3227/*utf16*/, {0xe3,0x88,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa2ed/*gb2312*/, 0x3228/*utf16*/, {0xe3,0x88,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa2ee/*gb2312*/, 0x3229/*utf16*/, {0xe3,0x88,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa2ef/*gb2312*/, 0xe76e/*utf16*/, {0xee,0x9d,0xae}/*utf8*/, 3/*utf8 len*/},{0xa2f0/*gb2312*/, 0xe76f/*utf16*/, {0xee,0x9d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa2f1/*gb2312*/, 0x2160/*utf16*/, {0xe2,0x85,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa2f2/*gb2312*/, 0x2161/*utf16*/, {0xe2,0x85,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa2f3/*gb2312*/, 0x2162/*utf16*/, {0xe2,0x85,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa2f4/*gb2312*/, 0x2163/*utf16*/, {0xe2,0x85,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa2f5/*gb2312*/, 0x2164/*utf16*/, {0xe2,0x85,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa2f6/*gb2312*/, 0x2165/*utf16*/, {0xe2,0x85,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa2f7/*gb2312*/, 0x2166/*utf16*/, {0xe2,0x85,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa2f8/*gb2312*/, 0x2167/*utf16*/, {0xe2,0x85,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa2f9/*gb2312*/, 0x2168/*utf16*/, {0xe2,0x85,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa2fa/*gb2312*/, 0x2169/*utf16*/, {0xe2,0x85,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa2fb/*gb2312*/, 0x216a/*utf16*/, {0xe2,0x85,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa2fc/*gb2312*/, 0x216b/*utf16*/, {0xe2,0x85,0xab}/*utf8*/, 3/*utf8 len*/},{0xa2fd/*gb2312*/, 0xe770/*utf16*/, {0xee,0x9d,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa2fe/*gb2312*/, 0xe771/*utf16*/, {0xee,0x9d,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa3a1/*gb2312*/, 0xff01/*utf16*/, {0xef,0xbc,0x81}/*utf8*/, 3/*utf8 len*/},{0xa3a2/*gb2312*/, 0xff02/*utf16*/, {0xef,0xbc,0x82}/*utf8*/, 3/*utf8 len*/},{0xa3a3/*gb2312*/, 0xff03/*utf16*/, {0xef,0xbc,0x83}/*utf8*/, 3/*utf8 len*/},{0xa3a4/*gb2312*/, 0xffe5/*utf16*/, {0xef,0xbf,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa3a5/*gb2312*/, 0xff05/*utf16*/, {0xef,0xbc,0x85}/*utf8*/, 3/*utf8 len*/},{0xa3a6/*gb2312*/, 0xff06/*utf16*/, {0xef,0xbc,0x86}/*utf8*/, 3/*utf8 len*/},{0xa3a7/*gb2312*/, 0xff07/*utf16*/, {0xef,0xbc,0x87}/*utf8*/, 3/*utf8 len*/},{0xa3a8/*gb2312*/, 0xff08/*utf16*/, {0xef,0xbc,0x88}/*utf8*/, 3/*utf8 len*/},{0xa3a9/*gb2312*/, 0xff09/*utf16*/, {0xef,0xbc,0x89}/*utf8*/, 3/*utf8 len*/},{0xa3aa/*gb2312*/, 0xff0a/*utf16*/, {0xef,0xbc,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa3ab/*gb2312*/, 0xff0b/*utf16*/, {0xef,0xbc,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa3ac/*gb2312*/, 0xff0c/*utf16*/, {0xef,0xbc,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa3ad/*gb2312*/, 0xff0d/*utf16*/, {0xef,0xbc,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa3ae/*gb2312*/, 0xff0e/*utf16*/, {0xef,0xbc,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa3af/*gb2312*/, 0xff0f/*utf16*/, {0xef,0xbc,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa3b0/*gb2312*/, 0xff10/*utf16*/, {0xef,0xbc,0x90}/*utf8*/, 3/*utf8 len*/},{0xa3b1/*gb2312*/, 0xff11/*utf16*/, {0xef,0xbc,0x91}/*utf8*/, 3/*utf8 len*/},{0xa3b2/*gb2312*/, 0xff12/*utf16*/, {0xef,0xbc,0x92}/*utf8*/, 3/*utf8 len*/},{0xa3b3/*gb2312*/, 0xff13/*utf16*/, {0xef,0xbc,0x93}/*utf8*/, 3/*utf8 len*/},{0xa3b4/*gb2312*/, 0xff14/*utf16*/, {0xef,0xbc,0x94}/*utf8*/, 3/*utf8 len*/},{0xa3b5/*gb2312*/, 0xff15/*utf16*/, {0xef,0xbc,0x95}/*utf8*/, 3/*utf8 len*/},{0xa3b6/*gb2312*/, 0xff16/*utf16*/, {0xef,0xbc,0x96}/*utf8*/, 3/*utf8 len*/},{0xa3b7/*gb2312*/, 0xff17/*utf16*/, {0xef,0xbc,0x97}/*utf8*/, 3/*utf8 len*/},{0xa3b8/*gb2312*/, 0xff18/*utf16*/, {0xef,0xbc,0x98}/*utf8*/, 3/*utf8 len*/},{0xa3b9/*gb2312*/, 0xff19/*utf16*/, {0xef,0xbc,0x99}/*utf8*/, 3/*utf8 len*/},{0xa3ba/*gb2312*/, 0xff1a/*utf16*/, {0xef,0xbc,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa3bb/*gb2312*/, 0xff1b/*utf16*/, {0xef,0xbc,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa3bc/*gb2312*/, 0xff1c/*utf16*/, {0xef,0xbc,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa3bd/*gb2312*/, 0xff1d/*utf16*/, {0xef,0xbc,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa3be/*gb2312*/, 0xff1e/*utf16*/, {0xef,0xbc,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa3bf/*gb2312*/, 0xff1f/*utf16*/, {0xef,0xbc,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa3c0/*gb2312*/, 0xff20/*utf16*/, {0xef,0xbc,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa3c1/*gb2312*/, 0xff21/*utf16*/, {0xef,0xbc,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa3c2/*gb2312*/, 0xff22/*utf16*/, {0xef,0xbc,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa3c3/*gb2312*/, 0xff23/*utf16*/, {0xef,0xbc,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa3c4/*gb2312*/, 0xff24/*utf16*/, {0xef,0xbc,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa3c5/*gb2312*/, 0xff25/*utf16*/, {0xef,0xbc,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa3c6/*gb2312*/, 0xff26/*utf16*/, {0xef,0xbc,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa3c7/*gb2312*/, 0xff27/*utf16*/, {0xef,0xbc,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa3c8/*gb2312*/, 0xff28/*utf16*/, {0xef,0xbc,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa3c9/*gb2312*/, 0xff29/*utf16*/, {0xef,0xbc,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa3ca/*gb2312*/, 0xff2a/*utf16*/, {0xef,0xbc,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa3cb/*gb2312*/, 0xff2b/*utf16*/, {0xef,0xbc,0xab}/*utf8*/, 3/*utf8 len*/},{0xa3cc/*gb2312*/, 0xff2c/*utf16*/, {0xef,0xbc,0xac}/*utf8*/, 3/*utf8 len*/},{0xa3cd/*gb2312*/, 0xff2d/*utf16*/, {0xef,0xbc,0xad}/*utf8*/, 3/*utf8 len*/},{0xa3ce/*gb2312*/, 0xff2e/*utf16*/, {0xef,0xbc,0xae}/*utf8*/, 3/*utf8 len*/},{0xa3cf/*gb2312*/, 0xff2f/*utf16*/, {0xef,0xbc,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa3d0/*gb2312*/, 0xff30/*utf16*/, {0xef,0xbc,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa3d1/*gb2312*/, 0xff31/*utf16*/, {0xef,0xbc,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa3d2/*gb2312*/, 0xff32/*utf16*/, {0xef,0xbc,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa3d3/*gb2312*/, 0xff33/*utf16*/, {0xef,0xbc,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa3d4/*gb2312*/, 0xff34/*utf16*/, {0xef,0xbc,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa3d5/*gb2312*/, 0xff35/*utf16*/, {0xef,0xbc,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa3d6/*gb2312*/, 0xff36/*utf16*/, {0xef,0xbc,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa3d7/*gb2312*/, 0xff37/*utf16*/, {0xef,0xbc,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa3d8/*gb2312*/, 0xff38/*utf16*/, {0xef,0xbc,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa3d9/*gb2312*/, 0xff39/*utf16*/, {0xef,0xbc,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa3da/*gb2312*/, 0xff3a/*utf16*/, {0xef,0xbc,0xba}/*utf8*/, 3/*utf8 len*/},{0xa3db/*gb2312*/, 0xff3b/*utf16*/, {0xef,0xbc,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa3dc/*gb2312*/, 0xff3c/*utf16*/, {0xef,0xbc,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa3dd/*gb2312*/, 0xff3d/*utf16*/, {0xef,0xbc,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa3de/*gb2312*/, 0xff3e/*utf16*/, {0xef,0xbc,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa3df/*gb2312*/, 0xff3f/*utf16*/, {0xef,0xbc,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa3e0/*gb2312*/, 0xff40/*utf16*/, {0xef,0xbd,0x80}/*utf8*/, 3/*utf8 len*/},{0xa3e1/*gb2312*/, 0xff41/*utf16*/, {0xef,0xbd,0x81}/*utf8*/, 3/*utf8 len*/},{0xa3e2/*gb2312*/, 0xff42/*utf16*/, {0xef,0xbd,0x82}/*utf8*/, 3/*utf8 len*/},{0xa3e3/*gb2312*/, 0xff43/*utf16*/, {0xef,0xbd,0x83}/*utf8*/, 3/*utf8 len*/},{0xa3e4/*gb2312*/, 0xff44/*utf16*/, {0xef,0xbd,0x84}/*utf8*/, 3/*utf8 len*/},{0xa3e5/*gb2312*/, 0xff45/*utf16*/, {0xef,0xbd,0x85}/*utf8*/, 3/*utf8 len*/},{0xa3e6/*gb2312*/, 0xff46/*utf16*/, {0xef,0xbd,0x86}/*utf8*/, 3/*utf8 len*/},{0xa3e7/*gb2312*/, 0xff47/*utf16*/, {0xef,0xbd,0x87}/*utf8*/, 3/*utf8 len*/},{0xa3e8/*gb2312*/, 0xff48/*utf16*/, {0xef,0xbd,0x88}/*utf8*/, 3/*utf8 len*/},{0xa3e9/*gb2312*/, 0xff49/*utf16*/, {0xef,0xbd,0x89}/*utf8*/, 3/*utf8 len*/},{0xa3ea/*gb2312*/, 0xff4a/*utf16*/, {0xef,0xbd,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa3eb/*gb2312*/, 0xff4b/*utf16*/, {0xef,0xbd,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa3ec/*gb2312*/, 0xff4c/*utf16*/, {0xef,0xbd,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa3ed/*gb2312*/, 0xff4d/*utf16*/, {0xef,0xbd,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa3ee/*gb2312*/, 0xff4e/*utf16*/, {0xef,0xbd,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa3ef/*gb2312*/, 0xff4f/*utf16*/, {0xef,0xbd,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa3f0/*gb2312*/, 0xff50/*utf16*/, {0xef,0xbd,0x90}/*utf8*/, 3/*utf8 len*/},{0xa3f1/*gb2312*/, 0xff51/*utf16*/, {0xef,0xbd,0x91}/*utf8*/, 3/*utf8 len*/},{0xa3f2/*gb2312*/, 0xff52/*utf16*/, {0xef,0xbd,0x92}/*utf8*/, 3/*utf8 len*/},{0xa3f3/*gb2312*/, 0xff53/*utf16*/, {0xef,0xbd,0x93}/*utf8*/, 3/*utf8 len*/},{0xa3f4/*gb2312*/, 0xff54/*utf16*/, {0xef,0xbd,0x94}/*utf8*/, 3/*utf8 len*/},{0xa3f5/*gb2312*/, 0xff55/*utf16*/, {0xef,0xbd,0x95}/*utf8*/, 3/*utf8 len*/},{0xa3f6/*gb2312*/, 0xff56/*utf16*/, {0xef,0xbd,0x96}/*utf8*/, 3/*utf8 len*/},{0xa3f7/*gb2312*/, 0xff57/*utf16*/, {0xef,0xbd,0x97}/*utf8*/, 3/*utf8 len*/},{0xa3f8/*gb2312*/, 0xff58/*utf16*/, {0xef,0xbd,0x98}/*utf8*/, 3/*utf8 len*/},{0xa3f9/*gb2312*/, 0xff59/*utf16*/, {0xef,0xbd,0x99}/*utf8*/, 3/*utf8 len*/},{0xa3fa/*gb2312*/, 0xff5a/*utf16*/, {0xef,0xbd,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa3fb/*gb2312*/, 0xff5b/*utf16*/, {0xef,0xbd,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa3fc/*gb2312*/, 0xff5c/*utf16*/, {0xef,0xbd,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa3fd/*gb2312*/, 0xff5d/*utf16*/, {0xef,0xbd,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa3fe/*gb2312*/, 0xffe3/*utf16*/, {0xef,0xbf,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa4a1/*gb2312*/, 0x3041/*utf16*/, {0xe3,0x81,0x81}/*utf8*/, 3/*utf8 len*/},{0xa4a2/*gb2312*/, 0x3042/*utf16*/, {0xe3,0x81,0x82}/*utf8*/, 3/*utf8 len*/},{0xa4a3/*gb2312*/, 0x3043/*utf16*/, {0xe3,0x81,0x83}/*utf8*/, 3/*utf8 len*/},{0xa4a4/*gb2312*/, 0x3044/*utf16*/, {0xe3,0x81,0x84}/*utf8*/, 3/*utf8 len*/},{0xa4a5/*gb2312*/, 0x3045/*utf16*/, {0xe3,0x81,0x85}/*utf8*/, 3/*utf8 len*/},{0xa4a6/*gb2312*/, 0x3046/*utf16*/, {0xe3,0x81,0x86}/*utf8*/, 3/*utf8 len*/},{0xa4a7/*gb2312*/, 0x3047/*utf16*/, {0xe3,0x81,0x87}/*utf8*/, 3/*utf8 len*/},{0xa4a8/*gb2312*/, 0x3048/*utf16*/, {0xe3,0x81,0x88}/*utf8*/, 3/*utf8 len*/},{0xa4a9/*gb2312*/, 0x3049/*utf16*/, {0xe3,0x81,0x89}/*utf8*/, 3/*utf8 len*/},{0xa4aa/*gb2312*/, 0x304a/*utf16*/, {0xe3,0x81,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa4ab/*gb2312*/, 0x304b/*utf16*/, {0xe3,0x81,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa4ac/*gb2312*/, 0x304c/*utf16*/, {0xe3,0x81,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa4ad/*gb2312*/, 0x304d/*utf16*/, {0xe3,0x81,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa4ae/*gb2312*/, 0x304e/*utf16*/, {0xe3,0x81,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa4af/*gb2312*/, 0x304f/*utf16*/, {0xe3,0x81,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa4b0/*gb2312*/, 0x3050/*utf16*/, {0xe3,0x81,0x90}/*utf8*/, 3/*utf8 len*/},{0xa4b1/*gb2312*/, 0x3051/*utf16*/, {0xe3,0x81,0x91}/*utf8*/, 3/*utf8 len*/},{0xa4b2/*gb2312*/, 0x3052/*utf16*/, {0xe3,0x81,0x92}/*utf8*/, 3/*utf8 len*/},{0xa4b3/*gb2312*/, 0x3053/*utf16*/, {0xe3,0x81,0x93}/*utf8*/, 3/*utf8 len*/},{0xa4b4/*gb2312*/, 0x3054/*utf16*/, {0xe3,0x81,0x94}/*utf8*/, 3/*utf8 len*/},{0xa4b5/*gb2312*/, 0x3055/*utf16*/, {0xe3,0x81,0x95}/*utf8*/, 3/*utf8 len*/},{0xa4b6/*gb2312*/, 0x3056/*utf16*/, {0xe3,0x81,0x96}/*utf8*/, 3/*utf8 len*/},{0xa4b7/*gb2312*/, 0x3057/*utf16*/, {0xe3,0x81,0x97}/*utf8*/, 3/*utf8 len*/},{0xa4b8/*gb2312*/, 0x3058/*utf16*/, {0xe3,0x81,0x98}/*utf8*/, 3/*utf8 len*/},{0xa4b9/*gb2312*/, 0x3059/*utf16*/, {0xe3,0x81,0x99}/*utf8*/, 3/*utf8 len*/},{0xa4ba/*gb2312*/, 0x305a/*utf16*/, {0xe3,0x81,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa4bb/*gb2312*/, 0x305b/*utf16*/, {0xe3,0x81,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa4bc/*gb2312*/, 0x305c/*utf16*/, {0xe3,0x81,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa4bd/*gb2312*/, 0x305d/*utf16*/, {0xe3,0x81,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa4be/*gb2312*/, 0x305e/*utf16*/, {0xe3,0x81,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa4bf/*gb2312*/, 0x305f/*utf16*/, {0xe3,0x81,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa4c0/*gb2312*/, 0x3060/*utf16*/, {0xe3,0x81,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa4c1/*gb2312*/, 0x3061/*utf16*/, {0xe3,0x81,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa4c2/*gb2312*/, 0x3062/*utf16*/, {0xe3,0x81,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa4c3/*gb2312*/, 0x3063/*utf16*/, {0xe3,0x81,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa4c4/*gb2312*/, 0x3064/*utf16*/, {0xe3,0x81,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa4c5/*gb2312*/, 0x3065/*utf16*/, {0xe3,0x81,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa4c6/*gb2312*/, 0x3066/*utf16*/, {0xe3,0x81,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa4c7/*gb2312*/, 0x3067/*utf16*/, {0xe3,0x81,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa4c8/*gb2312*/, 0x3068/*utf16*/, {0xe3,0x81,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa4c9/*gb2312*/, 0x3069/*utf16*/, {0xe3,0x81,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa4ca/*gb2312*/, 0x306a/*utf16*/, {0xe3,0x81,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa4cb/*gb2312*/, 0x306b/*utf16*/, {0xe3,0x81,0xab}/*utf8*/, 3/*utf8 len*/},{0xa4cc/*gb2312*/, 0x306c/*utf16*/, {0xe3,0x81,0xac}/*utf8*/, 3/*utf8 len*/},{0xa4cd/*gb2312*/, 0x306d/*utf16*/, {0xe3,0x81,0xad}/*utf8*/, 3/*utf8 len*/},{0xa4ce/*gb2312*/, 0x306e/*utf16*/, {0xe3,0x81,0xae}/*utf8*/, 3/*utf8 len*/},{0xa4cf/*gb2312*/, 0x306f/*utf16*/, {0xe3,0x81,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa4d0/*gb2312*/, 0x3070/*utf16*/, {0xe3,0x81,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa4d1/*gb2312*/, 0x3071/*utf16*/, {0xe3,0x81,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa4d2/*gb2312*/, 0x3072/*utf16*/, {0xe3,0x81,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa4d3/*gb2312*/, 0x3073/*utf16*/, {0xe3,0x81,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa4d4/*gb2312*/, 0x3074/*utf16*/, {0xe3,0x81,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa4d5/*gb2312*/, 0x3075/*utf16*/, {0xe3,0x81,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa4d6/*gb2312*/, 0x3076/*utf16*/, {0xe3,0x81,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa4d7/*gb2312*/, 0x3077/*utf16*/, {0xe3,0x81,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa4d8/*gb2312*/, 0x3078/*utf16*/, {0xe3,0x81,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa4d9/*gb2312*/, 0x3079/*utf16*/, {0xe3,0x81,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa4da/*gb2312*/, 0x307a/*utf16*/, {0xe3,0x81,0xba}/*utf8*/, 3/*utf8 len*/},{0xa4db/*gb2312*/, 0x307b/*utf16*/, {0xe3,0x81,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa4dc/*gb2312*/, 0x307c/*utf16*/, {0xe3,0x81,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa4dd/*gb2312*/, 0x307d/*utf16*/, {0xe3,0x81,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa4de/*gb2312*/, 0x307e/*utf16*/, {0xe3,0x81,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa4df/*gb2312*/, 0x307f/*utf16*/, {0xe3,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa4e0/*gb2312*/, 0x3080/*utf16*/, {0xe3,0x82,0x80}/*utf8*/, 3/*utf8 len*/},{0xa4e1/*gb2312*/, 0x3081/*utf16*/, {0xe3,0x82,0x81}/*utf8*/, 3/*utf8 len*/},{0xa4e2/*gb2312*/, 0x3082/*utf16*/, {0xe3,0x82,0x82}/*utf8*/, 3/*utf8 len*/},{0xa4e3/*gb2312*/, 0x3083/*utf16*/, {0xe3,0x82,0x83}/*utf8*/, 3/*utf8 len*/},{0xa4e4/*gb2312*/, 0x3084/*utf16*/, {0xe3,0x82,0x84}/*utf8*/, 3/*utf8 len*/},{0xa4e5/*gb2312*/, 0x3085/*utf16*/, {0xe3,0x82,0x85}/*utf8*/, 3/*utf8 len*/},{0xa4e6/*gb2312*/, 0x3086/*utf16*/, {0xe3,0x82,0x86}/*utf8*/, 3/*utf8 len*/},{0xa4e7/*gb2312*/, 0x3087/*utf16*/, {0xe3,0x82,0x87}/*utf8*/, 3/*utf8 len*/},{0xa4e8/*gb2312*/, 0x3088/*utf16*/, {0xe3,0x82,0x88}/*utf8*/, 3/*utf8 len*/},{0xa4e9/*gb2312*/, 0x3089/*utf16*/, {0xe3,0x82,0x89}/*utf8*/, 3/*utf8 len*/},{0xa4ea/*gb2312*/, 0x308a/*utf16*/, {0xe3,0x82,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa4eb/*gb2312*/, 0x308b/*utf16*/, {0xe3,0x82,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa4ec/*gb2312*/, 0x308c/*utf16*/, {0xe3,0x82,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa4ed/*gb2312*/, 0x308d/*utf16*/, {0xe3,0x82,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa4ee/*gb2312*/, 0x308e/*utf16*/, {0xe3,0x82,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa4ef/*gb2312*/, 0x308f/*utf16*/, {0xe3,0x82,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa4f0/*gb2312*/, 0x3090/*utf16*/, {0xe3,0x82,0x90}/*utf8*/, 3/*utf8 len*/},{0xa4f1/*gb2312*/, 0x3091/*utf16*/, {0xe3,0x82,0x91}/*utf8*/, 3/*utf8 len*/},{0xa4f2/*gb2312*/, 0x3092/*utf16*/, {0xe3,0x82,0x92}/*utf8*/, 3/*utf8 len*/},{0xa4f3/*gb2312*/, 0x3093/*utf16*/, {0xe3,0x82,0x93}/*utf8*/, 3/*utf8 len*/},{0xa4f4/*gb2312*/, 0xe772/*utf16*/, {0xee,0x9d,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa4f5/*gb2312*/, 0xe773/*utf16*/, {0xee,0x9d,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa4f6/*gb2312*/, 0xe774/*utf16*/, {0xee,0x9d,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa4f7/*gb2312*/, 0xe775/*utf16*/, {0xee,0x9d,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa4f8/*gb2312*/, 0xe776/*utf16*/, {0xee,0x9d,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa4f9/*gb2312*/, 0xe777/*utf16*/, {0xee,0x9d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa4fa/*gb2312*/, 0xe778/*utf16*/, {0xee,0x9d,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa4fb/*gb2312*/, 0xe779/*utf16*/, {0xee,0x9d,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa4fc/*gb2312*/, 0xe77a/*utf16*/, {0xee,0x9d,0xba}/*utf8*/, 3/*utf8 len*/},{0xa4fd/*gb2312*/, 0xe77b/*utf16*/, {0xee,0x9d,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa4fe/*gb2312*/, 0xe77c/*utf16*/, {0xee,0x9d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa5a1/*gb2312*/, 0x30a1/*utf16*/, {0xe3,0x82,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa5a2/*gb2312*/, 0x30a2/*utf16*/, {0xe3,0x82,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa5a3/*gb2312*/, 0x30a3/*utf16*/, {0xe3,0x82,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa5a4/*gb2312*/, 0x30a4/*utf16*/, {0xe3,0x82,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa5a5/*gb2312*/, 0x30a5/*utf16*/, {0xe3,0x82,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa5a6/*gb2312*/, 0x30a6/*utf16*/, {0xe3,0x82,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa5a7/*gb2312*/, 0x30a7/*utf16*/, {0xe3,0x82,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa5a8/*gb2312*/, 0x30a8/*utf16*/, {0xe3,0x82,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa5a9/*gb2312*/, 0x30a9/*utf16*/, {0xe3,0x82,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa5aa/*gb2312*/, 0x30aa/*utf16*/, {0xe3,0x82,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa5ab/*gb2312*/, 0x30ab/*utf16*/, {0xe3,0x82,0xab}/*utf8*/, 3/*utf8 len*/},{0xa5ac/*gb2312*/, 0x30ac/*utf16*/, {0xe3,0x82,0xac}/*utf8*/, 3/*utf8 len*/},{0xa5ad/*gb2312*/, 0x30ad/*utf16*/, {0xe3,0x82,0xad}/*utf8*/, 3/*utf8 len*/},{0xa5ae/*gb2312*/, 0x30ae/*utf16*/, {0xe3,0x82,0xae}/*utf8*/, 3/*utf8 len*/},{0xa5af/*gb2312*/, 0x30af/*utf16*/, {0xe3,0x82,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa5b0/*gb2312*/, 0x30b0/*utf16*/, {0xe3,0x82,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa5b1/*gb2312*/, 0x30b1/*utf16*/, {0xe3,0x82,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa5b2/*gb2312*/, 0x30b2/*utf16*/, {0xe3,0x82,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa5b3/*gb2312*/, 0x30b3/*utf16*/, {0xe3,0x82,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa5b4/*gb2312*/, 0x30b4/*utf16*/, {0xe3,0x82,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa5b5/*gb2312*/, 0x30b5/*utf16*/, {0xe3,0x82,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa5b6/*gb2312*/, 0x30b6/*utf16*/, {0xe3,0x82,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa5b7/*gb2312*/, 0x30b7/*utf16*/, {0xe3,0x82,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa5b8/*gb2312*/, 0x30b8/*utf16*/, {0xe3,0x82,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa5b9/*gb2312*/, 0x30b9/*utf16*/, {0xe3,0x82,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa5ba/*gb2312*/, 0x30ba/*utf16*/, {0xe3,0x82,0xba}/*utf8*/, 3/*utf8 len*/},{0xa5bb/*gb2312*/, 0x30bb/*utf16*/, {0xe3,0x82,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa5bc/*gb2312*/, 0x30bc/*utf16*/, {0xe3,0x82,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa5bd/*gb2312*/, 0x30bd/*utf16*/, {0xe3,0x82,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa5be/*gb2312*/, 0x30be/*utf16*/, {0xe3,0x82,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa5bf/*gb2312*/, 0x30bf/*utf16*/, {0xe3,0x82,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa5c0/*gb2312*/, 0x30c0/*utf16*/, {0xe3,0x83,0x80}/*utf8*/, 3/*utf8 len*/},{0xa5c1/*gb2312*/, 0x30c1/*utf16*/, {0xe3,0x83,0x81}/*utf8*/, 3/*utf8 len*/},{0xa5c2/*gb2312*/, 0x30c2/*utf16*/, {0xe3,0x83,0x82}/*utf8*/, 3/*utf8 len*/},{0xa5c3/*gb2312*/, 0x30c3/*utf16*/, {0xe3,0x83,0x83}/*utf8*/, 3/*utf8 len*/},{0xa5c4/*gb2312*/, 0x30c4/*utf16*/, {0xe3,0x83,0x84}/*utf8*/, 3/*utf8 len*/},{0xa5c5/*gb2312*/, 0x30c5/*utf16*/, {0xe3,0x83,0x85}/*utf8*/, 3/*utf8 len*/},{0xa5c6/*gb2312*/, 0x30c6/*utf16*/, {0xe3,0x83,0x86}/*utf8*/, 3/*utf8 len*/},{0xa5c7/*gb2312*/, 0x30c7/*utf16*/, {0xe3,0x83,0x87}/*utf8*/, 3/*utf8 len*/},{0xa5c8/*gb2312*/, 0x30c8/*utf16*/, {0xe3,0x83,0x88}/*utf8*/, 3/*utf8 len*/},{0xa5c9/*gb2312*/, 0x30c9/*utf16*/, {0xe3,0x83,0x89}/*utf8*/, 3/*utf8 len*/},{0xa5ca/*gb2312*/, 0x30ca/*utf16*/, {0xe3,0x83,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa5cb/*gb2312*/, 0x30cb/*utf16*/, {0xe3,0x83,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa5cc/*gb2312*/, 0x30cc/*utf16*/, {0xe3,0x83,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa5cd/*gb2312*/, 0x30cd/*utf16*/, {0xe3,0x83,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa5ce/*gb2312*/, 0x30ce/*utf16*/, {0xe3,0x83,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa5cf/*gb2312*/, 0x30cf/*utf16*/, {0xe3,0x83,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa5d0/*gb2312*/, 0x30d0/*utf16*/, {0xe3,0x83,0x90}/*utf8*/, 3/*utf8 len*/},{0xa5d1/*gb2312*/, 0x30d1/*utf16*/, {0xe3,0x83,0x91}/*utf8*/, 3/*utf8 len*/},{0xa5d2/*gb2312*/, 0x30d2/*utf16*/, {0xe3,0x83,0x92}/*utf8*/, 3/*utf8 len*/},{0xa5d3/*gb2312*/, 0x30d3/*utf16*/, {0xe3,0x83,0x93}/*utf8*/, 3/*utf8 len*/},{0xa5d4/*gb2312*/, 0x30d4/*utf16*/, {0xe3,0x83,0x94}/*utf8*/, 3/*utf8 len*/},{0xa5d5/*gb2312*/, 0x30d5/*utf16*/, {0xe3,0x83,0x95}/*utf8*/, 3/*utf8 len*/},{0xa5d6/*gb2312*/, 0x30d6/*utf16*/, {0xe3,0x83,0x96}/*utf8*/, 3/*utf8 len*/},{0xa5d7/*gb2312*/, 0x30d7/*utf16*/, {0xe3,0x83,0x97}/*utf8*/, 3/*utf8 len*/},{0xa5d8/*gb2312*/, 0x30d8/*utf16*/, {0xe3,0x83,0x98}/*utf8*/, 3/*utf8 len*/},{0xa5d9/*gb2312*/, 0x30d9/*utf16*/, {0xe3,0x83,0x99}/*utf8*/, 3/*utf8 len*/},{0xa5da/*gb2312*/, 0x30da/*utf16*/, {0xe3,0x83,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa5db/*gb2312*/, 0x30db/*utf16*/, {0xe3,0x83,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa5dc/*gb2312*/, 0x30dc/*utf16*/, {0xe3,0x83,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa5dd/*gb2312*/, 0x30dd/*utf16*/, {0xe3,0x83,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa5de/*gb2312*/, 0x30de/*utf16*/, {0xe3,0x83,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa5df/*gb2312*/, 0x30df/*utf16*/, {0xe3,0x83,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa5e0/*gb2312*/, 0x30e0/*utf16*/, {0xe3,0x83,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa5e1/*gb2312*/, 0x30e1/*utf16*/, {0xe3,0x83,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa5e2/*gb2312*/, 0x30e2/*utf16*/, {0xe3,0x83,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa5e3/*gb2312*/, 0x30e3/*utf16*/, {0xe3,0x83,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa5e4/*gb2312*/, 0x30e4/*utf16*/, {0xe3,0x83,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa5e5/*gb2312*/, 0x30e5/*utf16*/, {0xe3,0x83,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa5e6/*gb2312*/, 0x30e6/*utf16*/, {0xe3,0x83,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa5e7/*gb2312*/, 0x30e7/*utf16*/, {0xe3,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa5e8/*gb2312*/, 0x30e8/*utf16*/, {0xe3,0x83,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa5e9/*gb2312*/, 0x30e9/*utf16*/, {0xe3,0x83,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa5ea/*gb2312*/, 0x30ea/*utf16*/, {0xe3,0x83,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa5eb/*gb2312*/, 0x30eb/*utf16*/, {0xe3,0x83,0xab}/*utf8*/, 3/*utf8 len*/},{0xa5ec/*gb2312*/, 0x30ec/*utf16*/, {0xe3,0x83,0xac}/*utf8*/, 3/*utf8 len*/},{0xa5ed/*gb2312*/, 0x30ed/*utf16*/, {0xe3,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xa5ee/*gb2312*/, 0x30ee/*utf16*/, {0xe3,0x83,0xae}/*utf8*/, 3/*utf8 len*/},{0xa5ef/*gb2312*/, 0x30ef/*utf16*/, {0xe3,0x83,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa5f0/*gb2312*/, 0x30f0/*utf16*/, {0xe3,0x83,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa5f1/*gb2312*/, 0x30f1/*utf16*/, {0xe3,0x83,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa5f2/*gb2312*/, 0x30f2/*utf16*/, {0xe3,0x83,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa5f3/*gb2312*/, 0x30f3/*utf16*/, {0xe3,0x83,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa5f4/*gb2312*/, 0x30f4/*utf16*/, {0xe3,0x83,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa5f5/*gb2312*/, 0x30f5/*utf16*/, {0xe3,0x83,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa5f6/*gb2312*/, 0x30f6/*utf16*/, {0xe3,0x83,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa5f7/*gb2312*/, 0xe77d/*utf16*/, {0xee,0x9d,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa5f8/*gb2312*/, 0xe77e/*utf16*/, {0xee,0x9d,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa5f9/*gb2312*/, 0xe77f/*utf16*/, {0xee,0x9d,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa5fa/*gb2312*/, 0xe780/*utf16*/, {0xee,0x9e,0x80}/*utf8*/, 3/*utf8 len*/},{0xa5fb/*gb2312*/, 0xe781/*utf16*/, {0xee,0x9e,0x81}/*utf8*/, 3/*utf8 len*/},{0xa5fc/*gb2312*/, 0xe782/*utf16*/, {0xee,0x9e,0x82}/*utf8*/, 3/*utf8 len*/},{0xa5fd/*gb2312*/, 0xe783/*utf16*/, {0xee,0x9e,0x83}/*utf8*/, 3/*utf8 len*/},{0xa5fe/*gb2312*/, 0xe784/*utf16*/, {0xee,0x9e,0x84}/*utf8*/, 3/*utf8 len*/},{0xa6a1/*gb2312*/, 0x0391/*utf16*/, {0xce,0x91,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a2/*gb2312*/, 0x0392/*utf16*/, {0xce,0x92,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a3/*gb2312*/, 0x0393/*utf16*/, {0xce,0x93,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a4/*gb2312*/, 0x0394/*utf16*/, {0xce,0x94,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a5/*gb2312*/, 0x0395/*utf16*/, {0xce,0x95,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a6/*gb2312*/, 0x0396/*utf16*/, {0xce,0x96,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a7/*gb2312*/, 0x0397/*utf16*/, {0xce,0x97,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a8/*gb2312*/, 0x0398/*utf16*/, {0xce,0x98,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6a9/*gb2312*/, 0x0399/*utf16*/, {0xce,0x99,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6aa/*gb2312*/, 0x039a/*utf16*/, {0xce,0x9a,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6ab/*gb2312*/, 0x039b/*utf16*/, {0xce,0x9b,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6ac/*gb2312*/, 0x039c/*utf16*/, {0xce,0x9c,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6ad/*gb2312*/, 0x039d/*utf16*/, {0xce,0x9d,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6ae/*gb2312*/, 0x039e/*utf16*/, {0xce,0x9e,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6af/*gb2312*/, 0x039f/*utf16*/, {0xce,0x9f,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b0/*gb2312*/, 0x03a0/*utf16*/, {0xce,0xa0,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b1/*gb2312*/, 0x03a1/*utf16*/, {0xce,0xa1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b2/*gb2312*/, 0x03a3/*utf16*/, {0xce,0xa3,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b3/*gb2312*/, 0x03a4/*utf16*/, {0xce,0xa4,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b4/*gb2312*/, 0x03a5/*utf16*/, {0xce,0xa5,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b5/*gb2312*/, 0x03a6/*utf16*/, {0xce,0xa6,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b6/*gb2312*/, 0x03a7/*utf16*/, {0xce,0xa7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b7/*gb2312*/, 0x03a8/*utf16*/, {0xce,0xa8,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b8/*gb2312*/, 0x03a9/*utf16*/, {0xce,0xa9,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6b9/*gb2312*/, 0xe785/*utf16*/, {0xee,0x9e,0x85}/*utf8*/, 3/*utf8 len*/},{0xa6ba/*gb2312*/, 0xe786/*utf16*/, {0xee,0x9e,0x86}/*utf8*/, 3/*utf8 len*/},{0xa6bb/*gb2312*/, 0xe787/*utf16*/, {0xee,0x9e,0x87}/*utf8*/, 3/*utf8 len*/},{0xa6bc/*gb2312*/, 0xe788/*utf16*/, {0xee,0x9e,0x88}/*utf8*/, 3/*utf8 len*/},{0xa6bd/*gb2312*/, 0xe789/*utf16*/, {0xee,0x9e,0x89}/*utf8*/, 3/*utf8 len*/},{0xa6be/*gb2312*/, 0xe78a/*utf16*/, {0xee,0x9e,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa6bf/*gb2312*/, 0xe78b/*utf16*/, {0xee,0x9e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa6c0/*gb2312*/, 0xe78c/*utf16*/, {0xee,0x9e,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa6c1/*gb2312*/, 0x03b1/*utf16*/, {0xce,0xb1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c2/*gb2312*/, 0x03b2/*utf16*/, {0xce,0xb2,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c3/*gb2312*/, 0x03b3/*utf16*/, {0xce,0xb3,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c4/*gb2312*/, 0x03b4/*utf16*/, {0xce,0xb4,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c5/*gb2312*/, 0x03b5/*utf16*/, {0xce,0xb5,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c6/*gb2312*/, 0x03b6/*utf16*/, {0xce,0xb6,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c7/*gb2312*/, 0x03b7/*utf16*/, {0xce,0xb7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c8/*gb2312*/, 0x03b8/*utf16*/, {0xce,0xb8,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6c9/*gb2312*/, 0x03b9/*utf16*/, {0xce,0xb9,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6ca/*gb2312*/, 0x03ba/*utf16*/, {0xce,0xba,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6cb/*gb2312*/, 0x03bb/*utf16*/, {0xce,0xbb,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6cc/*gb2312*/, 0x03bc/*utf16*/, {0xce,0xbc,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6cd/*gb2312*/, 0x03bd/*utf16*/, {0xce,0xbd,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6ce/*gb2312*/, 0x03be/*utf16*/, {0xce,0xbe,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6cf/*gb2312*/, 0x03bf/*utf16*/, {0xce,0xbf,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d0/*gb2312*/, 0x03c0/*utf16*/, {0xcf,0x80,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d1/*gb2312*/, 0x03c1/*utf16*/, {0xcf,0x81,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d2/*gb2312*/, 0x03c3/*utf16*/, {0xcf,0x83,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d3/*gb2312*/, 0x03c4/*utf16*/, {0xcf,0x84,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d4/*gb2312*/, 0x03c5/*utf16*/, {0xcf,0x85,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d5/*gb2312*/, 0x03c6/*utf16*/, {0xcf,0x86,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d6/*gb2312*/, 0x03c7/*utf16*/, {0xcf,0x87,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d7/*gb2312*/, 0x03c8/*utf16*/, {0xcf,0x88,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d8/*gb2312*/, 0x03c9/*utf16*/, {0xcf,0x89,0x00}/*utf8*/, 2/*utf8 len*/},{0xa6d9/*gb2312*/, 0xe78d/*utf16*/, {0xee,0x9e,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa6da/*gb2312*/, 0xe78e/*utf16*/, {0xee,0x9e,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa6db/*gb2312*/, 0xe78f/*utf16*/, {0xee,0x9e,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa6dc/*gb2312*/, 0xe790/*utf16*/, {0xee,0x9e,0x90}/*utf8*/, 3/*utf8 len*/},{0xa6dd/*gb2312*/, 0xe791/*utf16*/, {0xee,0x9e,0x91}/*utf8*/, 3/*utf8 len*/},{0xa6de/*gb2312*/, 0xe792/*utf16*/, {0xee,0x9e,0x92}/*utf8*/, 3/*utf8 len*/},{0xa6df/*gb2312*/, 0xe793/*utf16*/, {0xee,0x9e,0x93}/*utf8*/, 3/*utf8 len*/},{0xa6e0/*gb2312*/, 0xfe35/*utf16*/, {0xef,0xb8,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa6e1/*gb2312*/, 0xfe36/*utf16*/, {0xef,0xb8,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa6e2/*gb2312*/, 0xfe39/*utf16*/, {0xef,0xb8,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa6e3/*gb2312*/, 0xfe3a/*utf16*/, {0xef,0xb8,0xba}/*utf8*/, 3/*utf8 len*/},{0xa6e4/*gb2312*/, 0xfe3f/*utf16*/, {0xef,0xb8,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa6e5/*gb2312*/, 0xfe40/*utf16*/, {0xef,0xb9,0x80}/*utf8*/, 3/*utf8 len*/},{0xa6e6/*gb2312*/, 0xfe3d/*utf16*/, {0xef,0xb8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa6e7/*gb2312*/, 0xfe3e/*utf16*/, {0xef,0xb8,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa6e8/*gb2312*/, 0xfe41/*utf16*/, {0xef,0xb9,0x81}/*utf8*/, 3/*utf8 len*/},{0xa6e9/*gb2312*/, 0xfe42/*utf16*/, {0xef,0xb9,0x82}/*utf8*/, 3/*utf8 len*/},{0xa6ea/*gb2312*/, 0xfe43/*utf16*/, {0xef,0xb9,0x83}/*utf8*/, 3/*utf8 len*/},{0xa6eb/*gb2312*/, 0xfe44/*utf16*/, {0xef,0xb9,0x84}/*utf8*/, 3/*utf8 len*/},{0xa6ec/*gb2312*/, 0xe794/*utf16*/, {0xee,0x9e,0x94}/*utf8*/, 3/*utf8 len*/},{0xa6ed/*gb2312*/, 0xe795/*utf16*/, {0xee,0x9e,0x95}/*utf8*/, 3/*utf8 len*/},{0xa6ee/*gb2312*/, 0xfe3b/*utf16*/, {0xef,0xb8,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa6ef/*gb2312*/, 0xfe3c/*utf16*/, {0xef,0xb8,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa6f0/*gb2312*/, 0xfe37/*utf16*/, {0xef,0xb8,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa6f1/*gb2312*/, 0xfe38/*utf16*/, {0xef,0xb8,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa6f2/*gb2312*/, 0xfe31/*utf16*/, {0xef,0xb8,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa6f3/*gb2312*/, 0xe796/*utf16*/, {0xee,0x9e,0x96}/*utf8*/, 3/*utf8 len*/},{0xa6f4/*gb2312*/, 0xfe33/*utf16*/, {0xef,0xb8,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa6f5/*gb2312*/, 0xfe34/*utf16*/, {0xef,0xb8,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa6f6/*gb2312*/, 0xe797/*utf16*/, {0xee,0x9e,0x97}/*utf8*/, 3/*utf8 len*/},{0xa6f7/*gb2312*/, 0xe798/*utf16*/, {0xee,0x9e,0x98}/*utf8*/, 3/*utf8 len*/},{0xa6f8/*gb2312*/, 0xe799/*utf16*/, {0xee,0x9e,0x99}/*utf8*/, 3/*utf8 len*/},{0xa6f9/*gb2312*/, 0xe79a/*utf16*/, {0xee,0x9e,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa6fa/*gb2312*/, 0xe79b/*utf16*/, {0xee,0x9e,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa6fb/*gb2312*/, 0xe79c/*utf16*/, {0xee,0x9e,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa6fc/*gb2312*/, 0xe79d/*utf16*/, {0xee,0x9e,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa6fd/*gb2312*/, 0xe79e/*utf16*/, {0xee,0x9e,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa6fe/*gb2312*/, 0xe79f/*utf16*/, {0xee,0x9e,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa7a1/*gb2312*/, 0x0410/*utf16*/, {0xd0,0x90,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a2/*gb2312*/, 0x0411/*utf16*/, {0xd0,0x91,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a3/*gb2312*/, 0x0412/*utf16*/, {0xd0,0x92,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a4/*gb2312*/, 0x0413/*utf16*/, {0xd0,0x93,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a5/*gb2312*/, 0x0414/*utf16*/, {0xd0,0x94,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a6/*gb2312*/, 0x0415/*utf16*/, {0xd0,0x95,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a7/*gb2312*/, 0x0401/*utf16*/, {0xd0,0x81,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a8/*gb2312*/, 0x0416/*utf16*/, {0xd0,0x96,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7a9/*gb2312*/, 0x0417/*utf16*/, {0xd0,0x97,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7aa/*gb2312*/, 0x0418/*utf16*/, {0xd0,0x98,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ab/*gb2312*/, 0x0419/*utf16*/, {0xd0,0x99,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ac/*gb2312*/, 0x041a/*utf16*/, {0xd0,0x9a,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ad/*gb2312*/, 0x041b/*utf16*/, {0xd0,0x9b,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ae/*gb2312*/, 0x041c/*utf16*/, {0xd0,0x9c,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7af/*gb2312*/, 0x041d/*utf16*/, {0xd0,0x9d,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b0/*gb2312*/, 0x041e/*utf16*/, {0xd0,0x9e,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b1/*gb2312*/, 0x041f/*utf16*/, {0xd0,0x9f,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b2/*gb2312*/, 0x0420/*utf16*/, {0xd0,0xa0,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b3/*gb2312*/, 0x0421/*utf16*/, {0xd0,0xa1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b4/*gb2312*/, 0x0422/*utf16*/, {0xd0,0xa2,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b5/*gb2312*/, 0x0423/*utf16*/, {0xd0,0xa3,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b6/*gb2312*/, 0x0424/*utf16*/, {0xd0,0xa4,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b7/*gb2312*/, 0x0425/*utf16*/, {0xd0,0xa5,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b8/*gb2312*/, 0x0426/*utf16*/, {0xd0,0xa6,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7b9/*gb2312*/, 0x0427/*utf16*/, {0xd0,0xa7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ba/*gb2312*/, 0x0428/*utf16*/, {0xd0,0xa8,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7bb/*gb2312*/, 0x0429/*utf16*/, {0xd0,0xa9,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7bc/*gb2312*/, 0x042a/*utf16*/, {0xd0,0xaa,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7bd/*gb2312*/, 0x042b/*utf16*/, {0xd0,0xab,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7be/*gb2312*/, 0x042c/*utf16*/, {0xd0,0xac,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7bf/*gb2312*/, 0x042d/*utf16*/, {0xd0,0xad,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7c0/*gb2312*/, 0x042e/*utf16*/, {0xd0,0xae,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7c1/*gb2312*/, 0x042f/*utf16*/, {0xd0,0xaf,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7c2/*gb2312*/, 0xe7a0/*utf16*/, {0xee,0x9e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa7c3/*gb2312*/, 0xe7a1/*utf16*/, {0xee,0x9e,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa7c4/*gb2312*/, 0xe7a2/*utf16*/, {0xee,0x9e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa7c5/*gb2312*/, 0xe7a3/*utf16*/, {0xee,0x9e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa7c6/*gb2312*/, 0xe7a4/*utf16*/, {0xee,0x9e,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa7c7/*gb2312*/, 0xe7a5/*utf16*/, {0xee,0x9e,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa7c8/*gb2312*/, 0xe7a6/*utf16*/, {0xee,0x9e,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa7c9/*gb2312*/, 0xe7a7/*utf16*/, {0xee,0x9e,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa7ca/*gb2312*/, 0xe7a8/*utf16*/, {0xee,0x9e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa7cb/*gb2312*/, 0xe7a9/*utf16*/, {0xee,0x9e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa7cc/*gb2312*/, 0xe7aa/*utf16*/, {0xee,0x9e,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa7cd/*gb2312*/, 0xe7ab/*utf16*/, {0xee,0x9e,0xab}/*utf8*/, 3/*utf8 len*/},{0xa7ce/*gb2312*/, 0xe7ac/*utf16*/, {0xee,0x9e,0xac}/*utf8*/, 3/*utf8 len*/},{0xa7cf/*gb2312*/, 0xe7ad/*utf16*/, {0xee,0x9e,0xad}/*utf8*/, 3/*utf8 len*/},{0xa7d0/*gb2312*/, 0xe7ae/*utf16*/, {0xee,0x9e,0xae}/*utf8*/, 3/*utf8 len*/},{0xa7d1/*gb2312*/, 0x0430/*utf16*/, {0xd0,0xb0,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d2/*gb2312*/, 0x0431/*utf16*/, {0xd0,0xb1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d3/*gb2312*/, 0x0432/*utf16*/, {0xd0,0xb2,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d4/*gb2312*/, 0x0433/*utf16*/, {0xd0,0xb3,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d5/*gb2312*/, 0x0434/*utf16*/, {0xd0,0xb4,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d6/*gb2312*/, 0x0435/*utf16*/, {0xd0,0xb5,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d7/*gb2312*/, 0x0451/*utf16*/, {0xd1,0x91,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d8/*gb2312*/, 0x0436/*utf16*/, {0xd0,0xb6,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7d9/*gb2312*/, 0x0437/*utf16*/, {0xd0,0xb7,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7da/*gb2312*/, 0x0438/*utf16*/, {0xd0,0xb8,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7db/*gb2312*/, 0x0439/*utf16*/, {0xd0,0xb9,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7dc/*gb2312*/, 0x043a/*utf16*/, {0xd0,0xba,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7dd/*gb2312*/, 0x043b/*utf16*/, {0xd0,0xbb,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7de/*gb2312*/, 0x043c/*utf16*/, {0xd0,0xbc,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7df/*gb2312*/, 0x043d/*utf16*/, {0xd0,0xbd,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e0/*gb2312*/, 0x043e/*utf16*/, {0xd0,0xbe,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e1/*gb2312*/, 0x043f/*utf16*/, {0xd0,0xbf,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e2/*gb2312*/, 0x0440/*utf16*/, {0xd1,0x80,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e3/*gb2312*/, 0x0441/*utf16*/, {0xd1,0x81,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e4/*gb2312*/, 0x0442/*utf16*/, {0xd1,0x82,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e5/*gb2312*/, 0x0443/*utf16*/, {0xd1,0x83,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e6/*gb2312*/, 0x0444/*utf16*/, {0xd1,0x84,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e7/*gb2312*/, 0x0445/*utf16*/, {0xd1,0x85,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e8/*gb2312*/, 0x0446/*utf16*/, {0xd1,0x86,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7e9/*gb2312*/, 0x0447/*utf16*/, {0xd1,0x87,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ea/*gb2312*/, 0x0448/*utf16*/, {0xd1,0x88,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7eb/*gb2312*/, 0x0449/*utf16*/, {0xd1,0x89,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ec/*gb2312*/, 0x044a/*utf16*/, {0xd1,0x8a,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ed/*gb2312*/, 0x044b/*utf16*/, {0xd1,0x8b,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ee/*gb2312*/, 0x044c/*utf16*/, {0xd1,0x8c,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7ef/*gb2312*/, 0x044d/*utf16*/, {0xd1,0x8d,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7f0/*gb2312*/, 0x044e/*utf16*/, {0xd1,0x8e,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7f1/*gb2312*/, 0x044f/*utf16*/, {0xd1,0x8f,0x00}/*utf8*/, 2/*utf8 len*/},{0xa7f2/*gb2312*/, 0xe7af/*utf16*/, {0xee,0x9e,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa7f3/*gb2312*/, 0xe7b0/*utf16*/, {0xee,0x9e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa7f4/*gb2312*/, 0xe7b1/*utf16*/, {0xee,0x9e,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa7f5/*gb2312*/, 0xe7b2/*utf16*/, {0xee,0x9e,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa7f6/*gb2312*/, 0xe7b3/*utf16*/, {0xee,0x9e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa7f7/*gb2312*/, 0xe7b4/*utf16*/, {0xee,0x9e,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa7f8/*gb2312*/, 0xe7b5/*utf16*/, {0xee,0x9e,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa7f9/*gb2312*/, 0xe7b6/*utf16*/, {0xee,0x9e,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa7fa/*gb2312*/, 0xe7b7/*utf16*/, {0xee,0x9e,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa7fb/*gb2312*/, 0xe7b8/*utf16*/, {0xee,0x9e,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa7fc/*gb2312*/, 0xe7b9/*utf16*/, {0xee,0x9e,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa7fd/*gb2312*/, 0xe7ba/*utf16*/, {0xee,0x9e,0xba}/*utf8*/, 3/*utf8 len*/},{0xa7fe/*gb2312*/, 0xe7bb/*utf16*/, {0xee,0x9e,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa8a1/*gb2312*/, 0x0101/*utf16*/, {0xc4,0x81,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a2/*gb2312*/, 0x00e1/*utf16*/, {0xc3,0xa1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a3/*gb2312*/, 0x01ce/*utf16*/, {0xc7,0x8e,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a4/*gb2312*/, 0x00e0/*utf16*/, {0xc3,0xa0,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a5/*gb2312*/, 0x0113/*utf16*/, {0xc4,0x93,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a6/*gb2312*/, 0x00e9/*utf16*/, {0xc3,0xa9,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a7/*gb2312*/, 0x011b/*utf16*/, {0xc4,0x9b,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a8/*gb2312*/, 0x00e8/*utf16*/, {0xc3,0xa8,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8a9/*gb2312*/, 0x012b/*utf16*/, {0xc4,0xab,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8aa/*gb2312*/, 0x00ed/*utf16*/, {0xc3,0xad,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8ab/*gb2312*/, 0x01d0/*utf16*/, {0xc7,0x90,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8ac/*gb2312*/, 0x00ec/*utf16*/, {0xc3,0xac,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8ad/*gb2312*/, 0x014d/*utf16*/, {0xc5,0x8d,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8ae/*gb2312*/, 0x00f3/*utf16*/, {0xc3,0xb3,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8af/*gb2312*/, 0x01d2/*utf16*/, {0xc7,0x92,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b0/*gb2312*/, 0x00f2/*utf16*/, {0xc3,0xb2,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b1/*gb2312*/, 0x016b/*utf16*/, {0xc5,0xab,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b2/*gb2312*/, 0x00fa/*utf16*/, {0xc3,0xba,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b3/*gb2312*/, 0x01d4/*utf16*/, {0xc7,0x94,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b4/*gb2312*/, 0x00f9/*utf16*/, {0xc3,0xb9,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b5/*gb2312*/, 0x01d6/*utf16*/, {0xc7,0x96,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b6/*gb2312*/, 0x01d8/*utf16*/, {0xc7,0x98,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b7/*gb2312*/, 0x01da/*utf16*/, {0xc7,0x9a,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b8/*gb2312*/, 0x01dc/*utf16*/, {0xc7,0x9c,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8b9/*gb2312*/, 0x00fc/*utf16*/, {0xc3,0xbc,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8ba/*gb2312*/, 0x00ea/*utf16*/, {0xc3,0xaa,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8bb/*gb2312*/, 0x0251/*utf16*/, {0xc9,0x91,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8bc/*gb2312*/, 0xe7c7/*utf16*/, {0xee,0x9f,0x87}/*utf8*/, 3/*utf8 len*/},{0xa8bd/*gb2312*/, 0x0144/*utf16*/, {0xc5,0x84,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8be/*gb2312*/, 0x0148/*utf16*/, {0xc5,0x88,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8bf/*gb2312*/, 0xe7c8/*utf16*/, {0xee,0x9f,0x88}/*utf8*/, 3/*utf8 len*/},{0xa8c0/*gb2312*/, 0x0261/*utf16*/, {0xc9,0xa1,0x00}/*utf8*/, 2/*utf8 len*/},{0xa8c1/*gb2312*/, 0xe7c9/*utf16*/, {0xee,0x9f,0x89}/*utf8*/, 3/*utf8 len*/},{0xa8c2/*gb2312*/, 0xe7ca/*utf16*/, {0xee,0x9f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa8c3/*gb2312*/, 0xe7cb/*utf16*/, {0xee,0x9f,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa8c4/*gb2312*/, 0xe7cc/*utf16*/, {0xee,0x9f,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa8c5/*gb2312*/, 0x3105/*utf16*/, {0xe3,0x84,0x85}/*utf8*/, 3/*utf8 len*/},{0xa8c6/*gb2312*/, 0x3106/*utf16*/, {0xe3,0x84,0x86}/*utf8*/, 3/*utf8 len*/},{0xa8c7/*gb2312*/, 0x3107/*utf16*/, {0xe3,0x84,0x87}/*utf8*/, 3/*utf8 len*/},{0xa8c8/*gb2312*/, 0x3108/*utf16*/, {0xe3,0x84,0x88}/*utf8*/, 3/*utf8 len*/},{0xa8c9/*gb2312*/, 0x3109/*utf16*/, {0xe3,0x84,0x89}/*utf8*/, 3/*utf8 len*/},{0xa8ca/*gb2312*/, 0x310a/*utf16*/, {0xe3,0x84,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa8cb/*gb2312*/, 0x310b/*utf16*/, {0xe3,0x84,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa8cc/*gb2312*/, 0x310c/*utf16*/, {0xe3,0x84,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa8cd/*gb2312*/, 0x310d/*utf16*/, {0xe3,0x84,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa8ce/*gb2312*/, 0x310e/*utf16*/, {0xe3,0x84,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa8cf/*gb2312*/, 0x310f/*utf16*/, {0xe3,0x84,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa8d0/*gb2312*/, 0x3110/*utf16*/, {0xe3,0x84,0x90}/*utf8*/, 3/*utf8 len*/},{0xa8d1/*gb2312*/, 0x3111/*utf16*/, {0xe3,0x84,0x91}/*utf8*/, 3/*utf8 len*/},{0xa8d2/*gb2312*/, 0x3112/*utf16*/, {0xe3,0x84,0x92}/*utf8*/, 3/*utf8 len*/},{0xa8d3/*gb2312*/, 0x3113/*utf16*/, {0xe3,0x84,0x93}/*utf8*/, 3/*utf8 len*/},{0xa8d4/*gb2312*/, 0x3114/*utf16*/, {0xe3,0x84,0x94}/*utf8*/, 3/*utf8 len*/},{0xa8d5/*gb2312*/, 0x3115/*utf16*/, {0xe3,0x84,0x95}/*utf8*/, 3/*utf8 len*/},{0xa8d6/*gb2312*/, 0x3116/*utf16*/, {0xe3,0x84,0x96}/*utf8*/, 3/*utf8 len*/},{0xa8d7/*gb2312*/, 0x3117/*utf16*/, {0xe3,0x84,0x97}/*utf8*/, 3/*utf8 len*/},{0xa8d8/*gb2312*/, 0x3118/*utf16*/, {0xe3,0x84,0x98}/*utf8*/, 3/*utf8 len*/},{0xa8d9/*gb2312*/, 0x3119/*utf16*/, {0xe3,0x84,0x99}/*utf8*/, 3/*utf8 len*/},{0xa8da/*gb2312*/, 0x311a/*utf16*/, {0xe3,0x84,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa8db/*gb2312*/, 0x311b/*utf16*/, {0xe3,0x84,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa8dc/*gb2312*/, 0x311c/*utf16*/, {0xe3,0x84,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa8dd/*gb2312*/, 0x311d/*utf16*/, {0xe3,0x84,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa8de/*gb2312*/, 0x311e/*utf16*/, {0xe3,0x84,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa8df/*gb2312*/, 0x311f/*utf16*/, {0xe3,0x84,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa8e0/*gb2312*/, 0x3120/*utf16*/, {0xe3,0x84,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa8e1/*gb2312*/, 0x3121/*utf16*/, {0xe3,0x84,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa8e2/*gb2312*/, 0x3122/*utf16*/, {0xe3,0x84,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa8e3/*gb2312*/, 0x3123/*utf16*/, {0xe3,0x84,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa8e4/*gb2312*/, 0x3124/*utf16*/, {0xe3,0x84,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa8e5/*gb2312*/, 0x3125/*utf16*/, {0xe3,0x84,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa8e6/*gb2312*/, 0x3126/*utf16*/, {0xe3,0x84,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa8e7/*gb2312*/, 0x3127/*utf16*/, {0xe3,0x84,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa8e8/*gb2312*/, 0x3128/*utf16*/, {0xe3,0x84,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa8e9/*gb2312*/, 0x3129/*utf16*/, {0xe3,0x84,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa8ea/*gb2312*/, 0xe7cd/*utf16*/, {0xee,0x9f,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa8eb/*gb2312*/, 0xe7ce/*utf16*/, {0xee,0x9f,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa8ec/*gb2312*/, 0xe7cf/*utf16*/, {0xee,0x9f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa8ed/*gb2312*/, 0xe7d0/*utf16*/, {0xee,0x9f,0x90}/*utf8*/, 3/*utf8 len*/},{0xa8ee/*gb2312*/, 0xe7d1/*utf16*/, {0xee,0x9f,0x91}/*utf8*/, 3/*utf8 len*/},{0xa8ef/*gb2312*/, 0xe7d2/*utf16*/, {0xee,0x9f,0x92}/*utf8*/, 3/*utf8 len*/},{0xa8f0/*gb2312*/, 0xe7d3/*utf16*/, {0xee,0x9f,0x93}/*utf8*/, 3/*utf8 len*/},{0xa8f1/*gb2312*/, 0xe7d4/*utf16*/, {0xee,0x9f,0x94}/*utf8*/, 3/*utf8 len*/},{0xa8f2/*gb2312*/, 0xe7d5/*utf16*/, {0xee,0x9f,0x95}/*utf8*/, 3/*utf8 len*/},{0xa8f3/*gb2312*/, 0xe7d6/*utf16*/, {0xee,0x9f,0x96}/*utf8*/, 3/*utf8 len*/},{0xa8f4/*gb2312*/, 0xe7d7/*utf16*/, {0xee,0x9f,0x97}/*utf8*/, 3/*utf8 len*/},{0xa8f5/*gb2312*/, 0xe7d8/*utf16*/, {0xee,0x9f,0x98}/*utf8*/, 3/*utf8 len*/},{0xa8f6/*gb2312*/, 0xe7d9/*utf16*/, {0xee,0x9f,0x99}/*utf8*/, 3/*utf8 len*/},{0xa8f7/*gb2312*/, 0xe7da/*utf16*/, {0xee,0x9f,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa8f8/*gb2312*/, 0xe7db/*utf16*/, {0xee,0x9f,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa8f9/*gb2312*/, 0xe7dc/*utf16*/, {0xee,0x9f,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa8fa/*gb2312*/, 0xe7dd/*utf16*/, {0xee,0x9f,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa8fb/*gb2312*/, 0xe7de/*utf16*/, {0xee,0x9f,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa8fc/*gb2312*/, 0xe7df/*utf16*/, {0xee,0x9f,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa8fd/*gb2312*/, 0xe7e0/*utf16*/, {0xee,0x9f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa8fe/*gb2312*/, 0xe7e1/*utf16*/, {0xee,0x9f,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa9a1/*gb2312*/, 0xe7fe/*utf16*/, {0xee,0x9f,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa9a2/*gb2312*/, 0xe7ff/*utf16*/, {0xee,0x9f,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa9a3/*gb2312*/, 0xe800/*utf16*/, {0xee,0xa0,0x80}/*utf8*/, 3/*utf8 len*/},{0xa9a4/*gb2312*/, 0x2500/*utf16*/, {0xe2,0x94,0x80}/*utf8*/, 3/*utf8 len*/},{0xa9a5/*gb2312*/, 0x2501/*utf16*/, {0xe2,0x94,0x81}/*utf8*/, 3/*utf8 len*/},{0xa9a6/*gb2312*/, 0x2502/*utf16*/, {0xe2,0x94,0x82}/*utf8*/, 3/*utf8 len*/},{0xa9a7/*gb2312*/, 0x2503/*utf16*/, {0xe2,0x94,0x83}/*utf8*/, 3/*utf8 len*/},{0xa9a8/*gb2312*/, 0x2504/*utf16*/, {0xe2,0x94,0x84}/*utf8*/, 3/*utf8 len*/},{0xa9a9/*gb2312*/, 0x2505/*utf16*/, {0xe2,0x94,0x85}/*utf8*/, 3/*utf8 len*/},{0xa9aa/*gb2312*/, 0x2506/*utf16*/, {0xe2,0x94,0x86}/*utf8*/, 3/*utf8 len*/},{0xa9ab/*gb2312*/, 0x2507/*utf16*/, {0xe2,0x94,0x87}/*utf8*/, 3/*utf8 len*/},{0xa9ac/*gb2312*/, 0x2508/*utf16*/, {0xe2,0x94,0x88}/*utf8*/, 3/*utf8 len*/},{0xa9ad/*gb2312*/, 0x2509/*utf16*/, {0xe2,0x94,0x89}/*utf8*/, 3/*utf8 len*/},{0xa9ae/*gb2312*/, 0x250a/*utf16*/, {0xe2,0x94,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa9af/*gb2312*/, 0x250b/*utf16*/, {0xe2,0x94,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa9b0/*gb2312*/, 0x250c/*utf16*/, {0xe2,0x94,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa9b1/*gb2312*/, 0x250d/*utf16*/, {0xe2,0x94,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa9b2/*gb2312*/, 0x250e/*utf16*/, {0xe2,0x94,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa9b3/*gb2312*/, 0x250f/*utf16*/, {0xe2,0x94,0x8f}/*utf8*/, 3/*utf8 len*/},{0xa9b4/*gb2312*/, 0x2510/*utf16*/, {0xe2,0x94,0x90}/*utf8*/, 3/*utf8 len*/},{0xa9b5/*gb2312*/, 0x2511/*utf16*/, {0xe2,0x94,0x91}/*utf8*/, 3/*utf8 len*/},{0xa9b6/*gb2312*/, 0x2512/*utf16*/, {0xe2,0x94,0x92}/*utf8*/, 3/*utf8 len*/},{0xa9b7/*gb2312*/, 0x2513/*utf16*/, {0xe2,0x94,0x93}/*utf8*/, 3/*utf8 len*/},{0xa9b8/*gb2312*/, 0x2514/*utf16*/, {0xe2,0x94,0x94}/*utf8*/, 3/*utf8 len*/},{0xa9b9/*gb2312*/, 0x2515/*utf16*/, {0xe2,0x94,0x95}/*utf8*/, 3/*utf8 len*/},{0xa9ba/*gb2312*/, 0x2516/*utf16*/, {0xe2,0x94,0x96}/*utf8*/, 3/*utf8 len*/},{0xa9bb/*gb2312*/, 0x2517/*utf16*/, {0xe2,0x94,0x97}/*utf8*/, 3/*utf8 len*/},{0xa9bc/*gb2312*/, 0x2518/*utf16*/, {0xe2,0x94,0x98}/*utf8*/, 3/*utf8 len*/},{0xa9bd/*gb2312*/, 0x2519/*utf16*/, {0xe2,0x94,0x99}/*utf8*/, 3/*utf8 len*/},{0xa9be/*gb2312*/, 0x251a/*utf16*/, {0xe2,0x94,0x9a}/*utf8*/, 3/*utf8 len*/},{0xa9bf/*gb2312*/, 0x251b/*utf16*/, {0xe2,0x94,0x9b}/*utf8*/, 3/*utf8 len*/},{0xa9c0/*gb2312*/, 0x251c/*utf16*/, {0xe2,0x94,0x9c}/*utf8*/, 3/*utf8 len*/},{0xa9c1/*gb2312*/, 0x251d/*utf16*/, {0xe2,0x94,0x9d}/*utf8*/, 3/*utf8 len*/},{0xa9c2/*gb2312*/, 0x251e/*utf16*/, {0xe2,0x94,0x9e}/*utf8*/, 3/*utf8 len*/},{0xa9c3/*gb2312*/, 0x251f/*utf16*/, {0xe2,0x94,0x9f}/*utf8*/, 3/*utf8 len*/},{0xa9c4/*gb2312*/, 0x2520/*utf16*/, {0xe2,0x94,0xa0}/*utf8*/, 3/*utf8 len*/},{0xa9c5/*gb2312*/, 0x2521/*utf16*/, {0xe2,0x94,0xa1}/*utf8*/, 3/*utf8 len*/},{0xa9c6/*gb2312*/, 0x2522/*utf16*/, {0xe2,0x94,0xa2}/*utf8*/, 3/*utf8 len*/},{0xa9c7/*gb2312*/, 0x2523/*utf16*/, {0xe2,0x94,0xa3}/*utf8*/, 3/*utf8 len*/},{0xa9c8/*gb2312*/, 0x2524/*utf16*/, {0xe2,0x94,0xa4}/*utf8*/, 3/*utf8 len*/},{0xa9c9/*gb2312*/, 0x2525/*utf16*/, {0xe2,0x94,0xa5}/*utf8*/, 3/*utf8 len*/},{0xa9ca/*gb2312*/, 0x2526/*utf16*/, {0xe2,0x94,0xa6}/*utf8*/, 3/*utf8 len*/},{0xa9cb/*gb2312*/, 0x2527/*utf16*/, {0xe2,0x94,0xa7}/*utf8*/, 3/*utf8 len*/},{0xa9cc/*gb2312*/, 0x2528/*utf16*/, {0xe2,0x94,0xa8}/*utf8*/, 3/*utf8 len*/},{0xa9cd/*gb2312*/, 0x2529/*utf16*/, {0xe2,0x94,0xa9}/*utf8*/, 3/*utf8 len*/},{0xa9ce/*gb2312*/, 0x252a/*utf16*/, {0xe2,0x94,0xaa}/*utf8*/, 3/*utf8 len*/},{0xa9cf/*gb2312*/, 0x252b/*utf16*/, {0xe2,0x94,0xab}/*utf8*/, 3/*utf8 len*/},{0xa9d0/*gb2312*/, 0x252c/*utf16*/, {0xe2,0x94,0xac}/*utf8*/, 3/*utf8 len*/},{0xa9d1/*gb2312*/, 0x252d/*utf16*/, {0xe2,0x94,0xad}/*utf8*/, 3/*utf8 len*/},{0xa9d2/*gb2312*/, 0x252e/*utf16*/, {0xe2,0x94,0xae}/*utf8*/, 3/*utf8 len*/},{0xa9d3/*gb2312*/, 0x252f/*utf16*/, {0xe2,0x94,0xaf}/*utf8*/, 3/*utf8 len*/},{0xa9d4/*gb2312*/, 0x2530/*utf16*/, {0xe2,0x94,0xb0}/*utf8*/, 3/*utf8 len*/},{0xa9d5/*gb2312*/, 0x2531/*utf16*/, {0xe2,0x94,0xb1}/*utf8*/, 3/*utf8 len*/},{0xa9d6/*gb2312*/, 0x2532/*utf16*/, {0xe2,0x94,0xb2}/*utf8*/, 3/*utf8 len*/},{0xa9d7/*gb2312*/, 0x2533/*utf16*/, {0xe2,0x94,0xb3}/*utf8*/, 3/*utf8 len*/},{0xa9d8/*gb2312*/, 0x2534/*utf16*/, {0xe2,0x94,0xb4}/*utf8*/, 3/*utf8 len*/},{0xa9d9/*gb2312*/, 0x2535/*utf16*/, {0xe2,0x94,0xb5}/*utf8*/, 3/*utf8 len*/},{0xa9da/*gb2312*/, 0x2536/*utf16*/, {0xe2,0x94,0xb6}/*utf8*/, 3/*utf8 len*/},{0xa9db/*gb2312*/, 0x2537/*utf16*/, {0xe2,0x94,0xb7}/*utf8*/, 3/*utf8 len*/},{0xa9dc/*gb2312*/, 0x2538/*utf16*/, {0xe2,0x94,0xb8}/*utf8*/, 3/*utf8 len*/},{0xa9dd/*gb2312*/, 0x2539/*utf16*/, {0xe2,0x94,0xb9}/*utf8*/, 3/*utf8 len*/},{0xa9de/*gb2312*/, 0x253a/*utf16*/, {0xe2,0x94,0xba}/*utf8*/, 3/*utf8 len*/},{0xa9df/*gb2312*/, 0x253b/*utf16*/, {0xe2,0x94,0xbb}/*utf8*/, 3/*utf8 len*/},{0xa9e0/*gb2312*/, 0x253c/*utf16*/, {0xe2,0x94,0xbc}/*utf8*/, 3/*utf8 len*/},{0xa9e1/*gb2312*/, 0x253d/*utf16*/, {0xe2,0x94,0xbd}/*utf8*/, 3/*utf8 len*/},{0xa9e2/*gb2312*/, 0x253e/*utf16*/, {0xe2,0x94,0xbe}/*utf8*/, 3/*utf8 len*/},{0xa9e3/*gb2312*/, 0x253f/*utf16*/, {0xe2,0x94,0xbf}/*utf8*/, 3/*utf8 len*/},{0xa9e4/*gb2312*/, 0x2540/*utf16*/, {0xe2,0x95,0x80}/*utf8*/, 3/*utf8 len*/},{0xa9e5/*gb2312*/, 0x2541/*utf16*/, {0xe2,0x95,0x81}/*utf8*/, 3/*utf8 len*/},{0xa9e6/*gb2312*/, 0x2542/*utf16*/, {0xe2,0x95,0x82}/*utf8*/, 3/*utf8 len*/},{0xa9e7/*gb2312*/, 0x2543/*utf16*/, {0xe2,0x95,0x83}/*utf8*/, 3/*utf8 len*/},{0xa9e8/*gb2312*/, 0x2544/*utf16*/, {0xe2,0x95,0x84}/*utf8*/, 3/*utf8 len*/},{0xa9e9/*gb2312*/, 0x2545/*utf16*/, {0xe2,0x95,0x85}/*utf8*/, 3/*utf8 len*/},{0xa9ea/*gb2312*/, 0x2546/*utf16*/, {0xe2,0x95,0x86}/*utf8*/, 3/*utf8 len*/},{0xa9eb/*gb2312*/, 0x2547/*utf16*/, {0xe2,0x95,0x87}/*utf8*/, 3/*utf8 len*/},{0xa9ec/*gb2312*/, 0x2548/*utf16*/, {0xe2,0x95,0x88}/*utf8*/, 3/*utf8 len*/},{0xa9ed/*gb2312*/, 0x2549/*utf16*/, {0xe2,0x95,0x89}/*utf8*/, 3/*utf8 len*/},{0xa9ee/*gb2312*/, 0x254a/*utf16*/, {0xe2,0x95,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa9ef/*gb2312*/, 0x254b/*utf16*/, {0xe2,0x95,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa9f0/*gb2312*/, 0xe801/*utf16*/, {0xee,0xa0,0x81}/*utf8*/, 3/*utf8 len*/},{0xa9f1/*gb2312*/, 0xe802/*utf16*/, {0xee,0xa0,0x82}/*utf8*/, 3/*utf8 len*/},{0xa9f2/*gb2312*/, 0xe803/*utf16*/, {0xee,0xa0,0x83}/*utf8*/, 3/*utf8 len*/},{0xa9f3/*gb2312*/, 0xe804/*utf16*/, {0xee,0xa0,0x84}/*utf8*/, 3/*utf8 len*/},{0xa9f4/*gb2312*/, 0xe805/*utf16*/, {0xee,0xa0,0x85}/*utf8*/, 3/*utf8 len*/},{0xa9f5/*gb2312*/, 0xe806/*utf16*/, {0xee,0xa0,0x86}/*utf8*/, 3/*utf8 len*/},{0xa9f6/*gb2312*/, 0xe807/*utf16*/, {0xee,0xa0,0x87}/*utf8*/, 3/*utf8 len*/},{0xa9f7/*gb2312*/, 0xe808/*utf16*/, {0xee,0xa0,0x88}/*utf8*/, 3/*utf8 len*/},{0xa9f8/*gb2312*/, 0xe809/*utf16*/, {0xee,0xa0,0x89}/*utf8*/, 3/*utf8 len*/},{0xa9f9/*gb2312*/, 0xe80a/*utf16*/, {0xee,0xa0,0x8a}/*utf8*/, 3/*utf8 len*/},{0xa9fa/*gb2312*/, 0xe80b/*utf16*/, {0xee,0xa0,0x8b}/*utf8*/, 3/*utf8 len*/},{0xa9fb/*gb2312*/, 0xe80c/*utf16*/, {0xee,0xa0,0x8c}/*utf8*/, 3/*utf8 len*/},{0xa9fc/*gb2312*/, 0xe80d/*utf16*/, {0xee,0xa0,0x8d}/*utf8*/, 3/*utf8 len*/},{0xa9fd/*gb2312*/, 0xe80e/*utf16*/, {0xee,0xa0,0x8e}/*utf8*/, 3/*utf8 len*/},{0xa9fe/*gb2312*/, 0xe80f/*utf16*/, {0xee,0xa0,0x8f}/*utf8*/, 3/*utf8 len*/},{0xaaa1/*gb2312*/, 0xe000/*utf16*/, {0xee,0x80,0x80}/*utf8*/, 3/*utf8 len*/},{0xaaa2/*gb2312*/, 0xe001/*utf16*/, {0xee,0x80,0x81}/*utf8*/, 3/*utf8 len*/},{0xaaa3/*gb2312*/, 0xe002/*utf16*/, {0xee,0x80,0x82}/*utf8*/, 3/*utf8 len*/},{0xaaa4/*gb2312*/, 0xe003/*utf16*/, {0xee,0x80,0x83}/*utf8*/, 3/*utf8 len*/},{0xaaa5/*gb2312*/, 0xe004/*utf16*/, {0xee,0x80,0x84}/*utf8*/, 3/*utf8 len*/},{0xaaa6/*gb2312*/, 0xe005/*utf16*/, {0xee,0x80,0x85}/*utf8*/, 3/*utf8 len*/},{0xaaa7/*gb2312*/, 0xe006/*utf16*/, {0xee,0x80,0x86}/*utf8*/, 3/*utf8 len*/},{0xaaa8/*gb2312*/, 0xe007/*utf16*/, {0xee,0x80,0x87}/*utf8*/, 3/*utf8 len*/},{0xaaa9/*gb2312*/, 0xe008/*utf16*/, {0xee,0x80,0x88}/*utf8*/, 3/*utf8 len*/},{0xaaaa/*gb2312*/, 0xe009/*utf16*/, {0xee,0x80,0x89}/*utf8*/, 3/*utf8 len*/},{0xaaab/*gb2312*/, 0xe00a/*utf16*/, {0xee,0x80,0x8a}/*utf8*/, 3/*utf8 len*/},{0xaaac/*gb2312*/, 0xe00b/*utf16*/, {0xee,0x80,0x8b}/*utf8*/, 3/*utf8 len*/},{0xaaad/*gb2312*/, 0xe00c/*utf16*/, {0xee,0x80,0x8c}/*utf8*/, 3/*utf8 len*/},{0xaaae/*gb2312*/, 0xe00d/*utf16*/, {0xee,0x80,0x8d}/*utf8*/, 3/*utf8 len*/},{0xaaaf/*gb2312*/, 0xe00e/*utf16*/, {0xee,0x80,0x8e}/*utf8*/, 3/*utf8 len*/},{0xaab0/*gb2312*/, 0xe00f/*utf16*/, {0xee,0x80,0x8f}/*utf8*/, 3/*utf8 len*/},{0xaab1/*gb2312*/, 0xe010/*utf16*/, {0xee,0x80,0x90}/*utf8*/, 3/*utf8 len*/},{0xaab2/*gb2312*/, 0xe011/*utf16*/, {0xee,0x80,0x91}/*utf8*/, 3/*utf8 len*/},{0xaab3/*gb2312*/, 0xe012/*utf16*/, {0xee,0x80,0x92}/*utf8*/, 3/*utf8 len*/},{0xaab4/*gb2312*/, 0xe013/*utf16*/, {0xee,0x80,0x93}/*utf8*/, 3/*utf8 len*/},{0xaab5/*gb2312*/, 0xe014/*utf16*/, {0xee,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xaab6/*gb2312*/, 0xe015/*utf16*/, {0xee,0x80,0x95}/*utf8*/, 3/*utf8 len*/},{0xaab7/*gb2312*/, 0xe016/*utf16*/, {0xee,0x80,0x96}/*utf8*/, 3/*utf8 len*/},{0xaab8/*gb2312*/, 0xe017/*utf16*/, {0xee,0x80,0x97}/*utf8*/, 3/*utf8 len*/},{0xaab9/*gb2312*/, 0xe018/*utf16*/, {0xee,0x80,0x98}/*utf8*/, 3/*utf8 len*/},{0xaaba/*gb2312*/, 0xe019/*utf16*/, {0xee,0x80,0x99}/*utf8*/, 3/*utf8 len*/},{0xaabb/*gb2312*/, 0xe01a/*utf16*/, {0xee,0x80,0x9a}/*utf8*/, 3/*utf8 len*/},{0xaabc/*gb2312*/, 0xe01b/*utf16*/, {0xee,0x80,0x9b}/*utf8*/, 3/*utf8 len*/},{0xaabd/*gb2312*/, 0xe01c/*utf16*/, {0xee,0x80,0x9c}/*utf8*/, 3/*utf8 len*/},{0xaabe/*gb2312*/, 0xe01d/*utf16*/, {0xee,0x80,0x9d}/*utf8*/, 3/*utf8 len*/},{0xaabf/*gb2312*/, 0xe01e/*utf16*/, {0xee,0x80,0x9e}/*utf8*/, 3/*utf8 len*/},{0xaac0/*gb2312*/, 0xe01f/*utf16*/, {0xee,0x80,0x9f}/*utf8*/, 3/*utf8 len*/},{0xaac1/*gb2312*/, 0xe020/*utf16*/, {0xee,0x80,0xa0}/*utf8*/, 3/*utf8 len*/},{0xaac2/*gb2312*/, 0xe021/*utf16*/, {0xee,0x80,0xa1}/*utf8*/, 3/*utf8 len*/},{0xaac3/*gb2312*/, 0xe022/*utf16*/, {0xee,0x80,0xa2}/*utf8*/, 3/*utf8 len*/},{0xaac4/*gb2312*/, 0xe023/*utf16*/, {0xee,0x80,0xa3}/*utf8*/, 3/*utf8 len*/},{0xaac5/*gb2312*/, 0xe024/*utf16*/, {0xee,0x80,0xa4}/*utf8*/, 3/*utf8 len*/},{0xaac6/*gb2312*/, 0xe025/*utf16*/, {0xee,0x80,0xa5}/*utf8*/, 3/*utf8 len*/},{0xaac7/*gb2312*/, 0xe026/*utf16*/, {0xee,0x80,0xa6}/*utf8*/, 3/*utf8 len*/},{0xaac8/*gb2312*/, 0xe027/*utf16*/, {0xee,0x80,0xa7}/*utf8*/, 3/*utf8 len*/},{0xaac9/*gb2312*/, 0xe028/*utf16*/, {0xee,0x80,0xa8}/*utf8*/, 3/*utf8 len*/},{0xaaca/*gb2312*/, 0xe029/*utf16*/, {0xee,0x80,0xa9}/*utf8*/, 3/*utf8 len*/},{0xaacb/*gb2312*/, 0xe02a/*utf16*/, {0xee,0x80,0xaa}/*utf8*/, 3/*utf8 len*/},{0xaacc/*gb2312*/, 0xe02b/*utf16*/, {0xee,0x80,0xab}/*utf8*/, 3/*utf8 len*/},{0xaacd/*gb2312*/, 0xe02c/*utf16*/, {0xee,0x80,0xac}/*utf8*/, 3/*utf8 len*/},{0xaace/*gb2312*/, 0xe02d/*utf16*/, {0xee,0x80,0xad}/*utf8*/, 3/*utf8 len*/},{0xaacf/*gb2312*/, 0xe02e/*utf16*/, {0xee,0x80,0xae}/*utf8*/, 3/*utf8 len*/},{0xaad0/*gb2312*/, 0xe02f/*utf16*/, {0xee,0x80,0xaf}/*utf8*/, 3/*utf8 len*/},{0xaad1/*gb2312*/, 0xe030/*utf16*/, {0xee,0x80,0xb0}/*utf8*/, 3/*utf8 len*/},{0xaad2/*gb2312*/, 0xe031/*utf16*/, {0xee,0x80,0xb1}/*utf8*/, 3/*utf8 len*/},{0xaad3/*gb2312*/, 0xe032/*utf16*/, {0xee,0x80,0xb2}/*utf8*/, 3/*utf8 len*/},{0xaad4/*gb2312*/, 0xe033/*utf16*/, {0xee,0x80,0xb3}/*utf8*/, 3/*utf8 len*/},{0xaad5/*gb2312*/, 0xe034/*utf16*/, {0xee,0x80,0xb4}/*utf8*/, 3/*utf8 len*/},{0xaad6/*gb2312*/, 0xe035/*utf16*/, {0xee,0x80,0xb5}/*utf8*/, 3/*utf8 len*/},{0xaad7/*gb2312*/, 0xe036/*utf16*/, {0xee,0x80,0xb6}/*utf8*/, 3/*utf8 len*/},{0xaad8/*gb2312*/, 0xe037/*utf16*/, {0xee,0x80,0xb7}/*utf8*/, 3/*utf8 len*/},{0xaad9/*gb2312*/, 0xe038/*utf16*/, {0xee,0x80,0xb8}/*utf8*/, 3/*utf8 len*/},{0xaada/*gb2312*/, 0xe039/*utf16*/, {0xee,0x80,0xb9}/*utf8*/, 3/*utf8 len*/},{0xaadb/*gb2312*/, 0xe03a/*utf16*/, {0xee,0x80,0xba}/*utf8*/, 3/*utf8 len*/},{0xaadc/*gb2312*/, 0xe03b/*utf16*/, {0xee,0x80,0xbb}/*utf8*/, 3/*utf8 len*/},{0xaadd/*gb2312*/, 0xe03c/*utf16*/, {0xee,0x80,0xbc}/*utf8*/, 3/*utf8 len*/},{0xaade/*gb2312*/, 0xe03d/*utf16*/, {0xee,0x80,0xbd}/*utf8*/, 3/*utf8 len*/},{0xaadf/*gb2312*/, 0xe03e/*utf16*/, {0xee,0x80,0xbe}/*utf8*/, 3/*utf8 len*/},{0xaae0/*gb2312*/, 0xe03f/*utf16*/, {0xee,0x80,0xbf}/*utf8*/, 3/*utf8 len*/},{0xaae1/*gb2312*/, 0xe040/*utf16*/, {0xee,0x81,0x80}/*utf8*/, 3/*utf8 len*/},{0xaae2/*gb2312*/, 0xe041/*utf16*/, {0xee,0x81,0x81}/*utf8*/, 3/*utf8 len*/},{0xaae3/*gb2312*/, 0xe042/*utf16*/, {0xee,0x81,0x82}/*utf8*/, 3/*utf8 len*/},{0xaae4/*gb2312*/, 0xe043/*utf16*/, {0xee,0x81,0x83}/*utf8*/, 3/*utf8 len*/},{0xaae5/*gb2312*/, 0xe044/*utf16*/, {0xee,0x81,0x84}/*utf8*/, 3/*utf8 len*/},{0xaae6/*gb2312*/, 0xe045/*utf16*/, {0xee,0x81,0x85}/*utf8*/, 3/*utf8 len*/},{0xaae7/*gb2312*/, 0xe046/*utf16*/, {0xee,0x81,0x86}/*utf8*/, 3/*utf8 len*/},{0xaae8/*gb2312*/, 0xe047/*utf16*/, {0xee,0x81,0x87}/*utf8*/, 3/*utf8 len*/},{0xaae9/*gb2312*/, 0xe048/*utf16*/, {0xee,0x81,0x88}/*utf8*/, 3/*utf8 len*/},{0xaaea/*gb2312*/, 0xe049/*utf16*/, {0xee,0x81,0x89}/*utf8*/, 3/*utf8 len*/},{0xaaeb/*gb2312*/, 0xe04a/*utf16*/, {0xee,0x81,0x8a}/*utf8*/, 3/*utf8 len*/},{0xaaec/*gb2312*/, 0xe04b/*utf16*/, {0xee,0x81,0x8b}/*utf8*/, 3/*utf8 len*/},{0xaaed/*gb2312*/, 0xe04c/*utf16*/, {0xee,0x81,0x8c}/*utf8*/, 3/*utf8 len*/},{0xaaee/*gb2312*/, 0xe04d/*utf16*/, {0xee,0x81,0x8d}/*utf8*/, 3/*utf8 len*/},{0xaaef/*gb2312*/, 0xe04e/*utf16*/, {0xee,0x81,0x8e}/*utf8*/, 3/*utf8 len*/},{0xaaf0/*gb2312*/, 0xe04f/*utf16*/, {0xee,0x81,0x8f}/*utf8*/, 3/*utf8 len*/},{0xaaf1/*gb2312*/, 0xe050/*utf16*/, {0xee,0x81,0x90}/*utf8*/, 3/*utf8 len*/},{0xaaf2/*gb2312*/, 0xe051/*utf16*/, {0xee,0x81,0x91}/*utf8*/, 3/*utf8 len*/},{0xaaf3/*gb2312*/, 0xe052/*utf16*/, {0xee,0x81,0x92}/*utf8*/, 3/*utf8 len*/},{0xaaf4/*gb2312*/, 0xe053/*utf16*/, {0xee,0x81,0x93}/*utf8*/, 3/*utf8 len*/},{0xaaf5/*gb2312*/, 0xe054/*utf16*/, {0xee,0x81,0x94}/*utf8*/, 3/*utf8 len*/},{0xaaf6/*gb2312*/, 0xe055/*utf16*/, {0xee,0x81,0x95}/*utf8*/, 3/*utf8 len*/},{0xaaf7/*gb2312*/, 0xe056/*utf16*/, {0xee,0x81,0x96}/*utf8*/, 3/*utf8 len*/},{0xaaf8/*gb2312*/, 0xe057/*utf16*/, {0xee,0x81,0x97}/*utf8*/, 3/*utf8 len*/},{0xaaf9/*gb2312*/, 0xe058/*utf16*/, {0xee,0x81,0x98}/*utf8*/, 3/*utf8 len*/},{0xaafa/*gb2312*/, 0xe059/*utf16*/, {0xee,0x81,0x99}/*utf8*/, 3/*utf8 len*/},{0xaafb/*gb2312*/, 0xe05a/*utf16*/, {0xee,0x81,0x9a}/*utf8*/, 3/*utf8 len*/},{0xaafc/*gb2312*/, 0xe05b/*utf16*/, {0xee,0x81,0x9b}/*utf8*/, 3/*utf8 len*/},{0xaafd/*gb2312*/, 0xe05c/*utf16*/, {0xee,0x81,0x9c}/*utf8*/, 3/*utf8 len*/},{0xaafe/*gb2312*/, 0xe05d/*utf16*/, {0xee,0x81,0x9d}/*utf8*/, 3/*utf8 len*/},{0xaba1/*gb2312*/, 0xe05e/*utf16*/, {0xee,0x81,0x9e}/*utf8*/, 3/*utf8 len*/},{0xaba2/*gb2312*/, 0xe05f/*utf16*/, {0xee,0x81,0x9f}/*utf8*/, 3/*utf8 len*/},{0xaba3/*gb2312*/, 0xe060/*utf16*/, {0xee,0x81,0xa0}/*utf8*/, 3/*utf8 len*/},{0xaba4/*gb2312*/, 0xe061/*utf16*/, {0xee,0x81,0xa1}/*utf8*/, 3/*utf8 len*/},{0xaba5/*gb2312*/, 0xe062/*utf16*/, {0xee,0x81,0xa2}/*utf8*/, 3/*utf8 len*/},{0xaba6/*gb2312*/, 0xe063/*utf16*/, {0xee,0x81,0xa3}/*utf8*/, 3/*utf8 len*/},{0xaba7/*gb2312*/, 0xe064/*utf16*/, {0xee,0x81,0xa4}/*utf8*/, 3/*utf8 len*/},{0xaba8/*gb2312*/, 0xe065/*utf16*/, {0xee,0x81,0xa5}/*utf8*/, 3/*utf8 len*/},{0xaba9/*gb2312*/, 0xe066/*utf16*/, {0xee,0x81,0xa6}/*utf8*/, 3/*utf8 len*/},{0xabaa/*gb2312*/, 0xe067/*utf16*/, {0xee,0x81,0xa7}/*utf8*/, 3/*utf8 len*/},{0xabab/*gb2312*/, 0xe068/*utf16*/, {0xee,0x81,0xa8}/*utf8*/, 3/*utf8 len*/},{0xabac/*gb2312*/, 0xe069/*utf16*/, {0xee,0x81,0xa9}/*utf8*/, 3/*utf8 len*/},{0xabad/*gb2312*/, 0xe06a/*utf16*/, {0xee,0x81,0xaa}/*utf8*/, 3/*utf8 len*/},{0xabae/*gb2312*/, 0xe06b/*utf16*/, {0xee,0x81,0xab}/*utf8*/, 3/*utf8 len*/},{0xabaf/*gb2312*/, 0xe06c/*utf16*/, {0xee,0x81,0xac}/*utf8*/, 3/*utf8 len*/},{0xabb0/*gb2312*/, 0xe06d/*utf16*/, {0xee,0x81,0xad}/*utf8*/, 3/*utf8 len*/},{0xabb1/*gb2312*/, 0xe06e/*utf16*/, {0xee,0x81,0xae}/*utf8*/, 3/*utf8 len*/},{0xabb2/*gb2312*/, 0xe06f/*utf16*/, {0xee,0x81,0xaf}/*utf8*/, 3/*utf8 len*/},{0xabb3/*gb2312*/, 0xe070/*utf16*/, {0xee,0x81,0xb0}/*utf8*/, 3/*utf8 len*/},{0xabb4/*gb2312*/, 0xe071/*utf16*/, {0xee,0x81,0xb1}/*utf8*/, 3/*utf8 len*/},{0xabb5/*gb2312*/, 0xe072/*utf16*/, {0xee,0x81,0xb2}/*utf8*/, 3/*utf8 len*/},{0xabb6/*gb2312*/, 0xe073/*utf16*/, {0xee,0x81,0xb3}/*utf8*/, 3/*utf8 len*/},{0xabb7/*gb2312*/, 0xe074/*utf16*/, {0xee,0x81,0xb4}/*utf8*/, 3/*utf8 len*/},{0xabb8/*gb2312*/, 0xe075/*utf16*/, {0xee,0x81,0xb5}/*utf8*/, 3/*utf8 len*/},{0xabb9/*gb2312*/, 0xe076/*utf16*/, {0xee,0x81,0xb6}/*utf8*/, 3/*utf8 len*/},{0xabba/*gb2312*/, 0xe077/*utf16*/, {0xee,0x81,0xb7}/*utf8*/, 3/*utf8 len*/},{0xabbb/*gb2312*/, 0xe078/*utf16*/, {0xee,0x81,0xb8}/*utf8*/, 3/*utf8 len*/},{0xabbc/*gb2312*/, 0xe079/*utf16*/, {0xee,0x81,0xb9}/*utf8*/, 3/*utf8 len*/},{0xabbd/*gb2312*/, 0xe07a/*utf16*/, {0xee,0x81,0xba}/*utf8*/, 3/*utf8 len*/},{0xabbe/*gb2312*/, 0xe07b/*utf16*/, {0xee,0x81,0xbb}/*utf8*/, 3/*utf8 len*/},{0xabbf/*gb2312*/, 0xe07c/*utf16*/, {0xee,0x81,0xbc}/*utf8*/, 3/*utf8 len*/},{0xabc0/*gb2312*/, 0xe07d/*utf16*/, {0xee,0x81,0xbd}/*utf8*/, 3/*utf8 len*/},{0xabc1/*gb2312*/, 0xe07e/*utf16*/, {0xee,0x81,0xbe}/*utf8*/, 3/*utf8 len*/},{0xabc2/*gb2312*/, 0xe07f/*utf16*/, {0xee,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xabc3/*gb2312*/, 0xe080/*utf16*/, {0xee,0x82,0x80}/*utf8*/, 3/*utf8 len*/},{0xabc4/*gb2312*/, 0xe081/*utf16*/, {0xee,0x82,0x81}/*utf8*/, 3/*utf8 len*/},{0xabc5/*gb2312*/, 0xe082/*utf16*/, {0xee,0x82,0x82}/*utf8*/, 3/*utf8 len*/},{0xabc6/*gb2312*/, 0xe083/*utf16*/, {0xee,0x82,0x83}/*utf8*/, 3/*utf8 len*/},{0xabc7/*gb2312*/, 0xe084/*utf16*/, {0xee,0x82,0x84}/*utf8*/, 3/*utf8 len*/},{0xabc8/*gb2312*/, 0xe085/*utf16*/, {0xee,0x82,0x85}/*utf8*/, 3/*utf8 len*/},{0xabc9/*gb2312*/, 0xe086/*utf16*/, {0xee,0x82,0x86}/*utf8*/, 3/*utf8 len*/},{0xabca/*gb2312*/, 0xe087/*utf16*/, {0xee,0x82,0x87}/*utf8*/, 3/*utf8 len*/},{0xabcb/*gb2312*/, 0xe088/*utf16*/, {0xee,0x82,0x88}/*utf8*/, 3/*utf8 len*/},{0xabcc/*gb2312*/, 0xe089/*utf16*/, {0xee,0x82,0x89}/*utf8*/, 3/*utf8 len*/},{0xabcd/*gb2312*/, 0xe08a/*utf16*/, {0xee,0x82,0x8a}/*utf8*/, 3/*utf8 len*/},{0xabce/*gb2312*/, 0xe08b/*utf16*/, {0xee,0x82,0x8b}/*utf8*/, 3/*utf8 len*/},{0xabcf/*gb2312*/, 0xe08c/*utf16*/, {0xee,0x82,0x8c}/*utf8*/, 3/*utf8 len*/},{0xabd0/*gb2312*/, 0xe08d/*utf16*/, {0xee,0x82,0x8d}/*utf8*/, 3/*utf8 len*/},{0xabd1/*gb2312*/, 0xe08e/*utf16*/, {0xee,0x82,0x8e}/*utf8*/, 3/*utf8 len*/},{0xabd2/*gb2312*/, 0xe08f/*utf16*/, {0xee,0x82,0x8f}/*utf8*/, 3/*utf8 len*/},{0xabd3/*gb2312*/, 0xe090/*utf16*/, {0xee,0x82,0x90}/*utf8*/, 3/*utf8 len*/},{0xabd4/*gb2312*/, 0xe091/*utf16*/, {0xee,0x82,0x91}/*utf8*/, 3/*utf8 len*/},{0xabd5/*gb2312*/, 0xe092/*utf16*/, {0xee,0x82,0x92}/*utf8*/, 3/*utf8 len*/},{0xabd6/*gb2312*/, 0xe093/*utf16*/, {0xee,0x82,0x93}/*utf8*/, 3/*utf8 len*/},{0xabd7/*gb2312*/, 0xe094/*utf16*/, {0xee,0x82,0x94}/*utf8*/, 3/*utf8 len*/},{0xabd8/*gb2312*/, 0xe095/*utf16*/, {0xee,0x82,0x95}/*utf8*/, 3/*utf8 len*/},{0xabd9/*gb2312*/, 0xe096/*utf16*/, {0xee,0x82,0x96}/*utf8*/, 3/*utf8 len*/},{0xabda/*gb2312*/, 0xe097/*utf16*/, {0xee,0x82,0x97}/*utf8*/, 3/*utf8 len*/},{0xabdb/*gb2312*/, 0xe098/*utf16*/, {0xee,0x82,0x98}/*utf8*/, 3/*utf8 len*/},{0xabdc/*gb2312*/, 0xe099/*utf16*/, {0xee,0x82,0x99}/*utf8*/, 3/*utf8 len*/},{0xabdd/*gb2312*/, 0xe09a/*utf16*/, {0xee,0x82,0x9a}/*utf8*/, 3/*utf8 len*/},{0xabde/*gb2312*/, 0xe09b/*utf16*/, {0xee,0x82,0x9b}/*utf8*/, 3/*utf8 len*/},{0xabdf/*gb2312*/, 0xe09c/*utf16*/, {0xee,0x82,0x9c}/*utf8*/, 3/*utf8 len*/},{0xabe0/*gb2312*/, 0xe09d/*utf16*/, {0xee,0x82,0x9d}/*utf8*/, 3/*utf8 len*/},{0xabe1/*gb2312*/, 0xe09e/*utf16*/, {0xee,0x82,0x9e}/*utf8*/, 3/*utf8 len*/},{0xabe2/*gb2312*/, 0xe09f/*utf16*/, {0xee,0x82,0x9f}/*utf8*/, 3/*utf8 len*/},{0xabe3/*gb2312*/, 0xe0a0/*utf16*/, {0xee,0x82,0xa0}/*utf8*/, 3/*utf8 len*/},{0xabe4/*gb2312*/, 0xe0a1/*utf16*/, {0xee,0x82,0xa1}/*utf8*/, 3/*utf8 len*/},{0xabe5/*gb2312*/, 0xe0a2/*utf16*/, {0xee,0x82,0xa2}/*utf8*/, 3/*utf8 len*/},{0xabe6/*gb2312*/, 0xe0a3/*utf16*/, {0xee,0x82,0xa3}/*utf8*/, 3/*utf8 len*/},{0xabe7/*gb2312*/, 0xe0a4/*utf16*/, {0xee,0x82,0xa4}/*utf8*/, 3/*utf8 len*/},{0xabe8/*gb2312*/, 0xe0a5/*utf16*/, {0xee,0x82,0xa5}/*utf8*/, 3/*utf8 len*/},{0xabe9/*gb2312*/, 0xe0a6/*utf16*/, {0xee,0x82,0xa6}/*utf8*/, 3/*utf8 len*/},{0xabea/*gb2312*/, 0xe0a7/*utf16*/, {0xee,0x82,0xa7}/*utf8*/, 3/*utf8 len*/},{0xabeb/*gb2312*/, 0xe0a8/*utf16*/, {0xee,0x82,0xa8}/*utf8*/, 3/*utf8 len*/},{0xabec/*gb2312*/, 0xe0a9/*utf16*/, {0xee,0x82,0xa9}/*utf8*/, 3/*utf8 len*/},{0xabed/*gb2312*/, 0xe0aa/*utf16*/, {0xee,0x82,0xaa}/*utf8*/, 3/*utf8 len*/},{0xabee/*gb2312*/, 0xe0ab/*utf16*/, {0xee,0x82,0xab}/*utf8*/, 3/*utf8 len*/},{0xabef/*gb2312*/, 0xe0ac/*utf16*/, {0xee,0x82,0xac}/*utf8*/, 3/*utf8 len*/},{0xabf0/*gb2312*/, 0xe0ad/*utf16*/, {0xee,0x82,0xad}/*utf8*/, 3/*utf8 len*/},{0xabf1/*gb2312*/, 0xe0ae/*utf16*/, {0xee,0x82,0xae}/*utf8*/, 3/*utf8 len*/},{0xabf2/*gb2312*/, 0xe0af/*utf16*/, {0xee,0x82,0xaf}/*utf8*/, 3/*utf8 len*/},{0xabf3/*gb2312*/, 0xe0b0/*utf16*/, {0xee,0x82,0xb0}/*utf8*/, 3/*utf8 len*/},{0xabf4/*gb2312*/, 0xe0b1/*utf16*/, {0xee,0x82,0xb1}/*utf8*/, 3/*utf8 len*/},{0xabf5/*gb2312*/, 0xe0b2/*utf16*/, {0xee,0x82,0xb2}/*utf8*/, 3/*utf8 len*/},{0xabf6/*gb2312*/, 0xe0b3/*utf16*/, {0xee,0x82,0xb3}/*utf8*/, 3/*utf8 len*/},{0xabf7/*gb2312*/, 0xe0b4/*utf16*/, {0xee,0x82,0xb4}/*utf8*/, 3/*utf8 len*/},{0xabf8/*gb2312*/, 0xe0b5/*utf16*/, {0xee,0x82,0xb5}/*utf8*/, 3/*utf8 len*/},{0xabf9/*gb2312*/, 0xe0b6/*utf16*/, {0xee,0x82,0xb6}/*utf8*/, 3/*utf8 len*/},{0xabfa/*gb2312*/, 0xe0b7/*utf16*/, {0xee,0x82,0xb7}/*utf8*/, 3/*utf8 len*/},{0xabfb/*gb2312*/, 0xe0b8/*utf16*/, {0xee,0x82,0xb8}/*utf8*/, 3/*utf8 len*/},{0xabfc/*gb2312*/, 0xe0b9/*utf16*/, {0xee,0x82,0xb9}/*utf8*/, 3/*utf8 len*/},{0xabfd/*gb2312*/, 0xe0ba/*utf16*/, {0xee,0x82,0xba}/*utf8*/, 3/*utf8 len*/},{0xabfe/*gb2312*/, 0xe0bb/*utf16*/, {0xee,0x82,0xbb}/*utf8*/, 3/*utf8 len*/},{0xaca1/*gb2312*/, 0xe0bc/*utf16*/, {0xee,0x82,0xbc}/*utf8*/, 3/*utf8 len*/},{0xaca2/*gb2312*/, 0xe0bd/*utf16*/, {0xee,0x82,0xbd}/*utf8*/, 3/*utf8 len*/},{0xaca3/*gb2312*/, 0xe0be/*utf16*/, {0xee,0x82,0xbe}/*utf8*/, 3/*utf8 len*/},{0xaca4/*gb2312*/, 0xe0bf/*utf16*/, {0xee,0x82,0xbf}/*utf8*/, 3/*utf8 len*/},{0xaca5/*gb2312*/, 0xe0c0/*utf16*/, {0xee,0x83,0x80}/*utf8*/, 3/*utf8 len*/},{0xaca6/*gb2312*/, 0xe0c1/*utf16*/, {0xee,0x83,0x81}/*utf8*/, 3/*utf8 len*/},{0xaca7/*gb2312*/, 0xe0c2/*utf16*/, {0xee,0x83,0x82}/*utf8*/, 3/*utf8 len*/},{0xaca8/*gb2312*/, 0xe0c3/*utf16*/, {0xee,0x83,0x83}/*utf8*/, 3/*utf8 len*/},{0xaca9/*gb2312*/, 0xe0c4/*utf16*/, {0xee,0x83,0x84}/*utf8*/, 3/*utf8 len*/},{0xacaa/*gb2312*/, 0xe0c5/*utf16*/, {0xee,0x83,0x85}/*utf8*/, 3/*utf8 len*/},{0xacab/*gb2312*/, 0xe0c6/*utf16*/, {0xee,0x83,0x86}/*utf8*/, 3/*utf8 len*/},{0xacac/*gb2312*/, 0xe0c7/*utf16*/, {0xee,0x83,0x87}/*utf8*/, 3/*utf8 len*/},{0xacad/*gb2312*/, 0xe0c8/*utf16*/, {0xee,0x83,0x88}/*utf8*/, 3/*utf8 len*/},{0xacae/*gb2312*/, 0xe0c9/*utf16*/, {0xee,0x83,0x89}/*utf8*/, 3/*utf8 len*/},{0xacaf/*gb2312*/, 0xe0ca/*utf16*/, {0xee,0x83,0x8a}/*utf8*/, 3/*utf8 len*/},{0xacb0/*gb2312*/, 0xe0cb/*utf16*/, {0xee,0x83,0x8b}/*utf8*/, 3/*utf8 len*/},{0xacb1/*gb2312*/, 0xe0cc/*utf16*/, {0xee,0x83,0x8c}/*utf8*/, 3/*utf8 len*/},{0xacb2/*gb2312*/, 0xe0cd/*utf16*/, {0xee,0x83,0x8d}/*utf8*/, 3/*utf8 len*/},{0xacb3/*gb2312*/, 0xe0ce/*utf16*/, {0xee,0x83,0x8e}/*utf8*/, 3/*utf8 len*/},{0xacb4/*gb2312*/, 0xe0cf/*utf16*/, {0xee,0x83,0x8f}/*utf8*/, 3/*utf8 len*/},{0xacb5/*gb2312*/, 0xe0d0/*utf16*/, {0xee,0x83,0x90}/*utf8*/, 3/*utf8 len*/},{0xacb6/*gb2312*/, 0xe0d1/*utf16*/, {0xee,0x83,0x91}/*utf8*/, 3/*utf8 len*/},{0xacb7/*gb2312*/, 0xe0d2/*utf16*/, {0xee,0x83,0x92}/*utf8*/, 3/*utf8 len*/},{0xacb8/*gb2312*/, 0xe0d3/*utf16*/, {0xee,0x83,0x93}/*utf8*/, 3/*utf8 len*/},{0xacb9/*gb2312*/, 0xe0d4/*utf16*/, {0xee,0x83,0x94}/*utf8*/, 3/*utf8 len*/},{0xacba/*gb2312*/, 0xe0d5/*utf16*/, {0xee,0x83,0x95}/*utf8*/, 3/*utf8 len*/},{0xacbb/*gb2312*/, 0xe0d6/*utf16*/, {0xee,0x83,0x96}/*utf8*/, 3/*utf8 len*/},{0xacbc/*gb2312*/, 0xe0d7/*utf16*/, {0xee,0x83,0x97}/*utf8*/, 3/*utf8 len*/},{0xacbd/*gb2312*/, 0xe0d8/*utf16*/, {0xee,0x83,0x98}/*utf8*/, 3/*utf8 len*/},{0xacbe/*gb2312*/, 0xe0d9/*utf16*/, {0xee,0x83,0x99}/*utf8*/, 3/*utf8 len*/},{0xacbf/*gb2312*/, 0xe0da/*utf16*/, {0xee,0x83,0x9a}/*utf8*/, 3/*utf8 len*/},{0xacc0/*gb2312*/, 0xe0db/*utf16*/, {0xee,0x83,0x9b}/*utf8*/, 3/*utf8 len*/},{0xacc1/*gb2312*/, 0xe0dc/*utf16*/, {0xee,0x83,0x9c}/*utf8*/, 3/*utf8 len*/},{0xacc2/*gb2312*/, 0xe0dd/*utf16*/, {0xee,0x83,0x9d}/*utf8*/, 3/*utf8 len*/},{0xacc3/*gb2312*/, 0xe0de/*utf16*/, {0xee,0x83,0x9e}/*utf8*/, 3/*utf8 len*/},{0xacc4/*gb2312*/, 0xe0df/*utf16*/, {0xee,0x83,0x9f}/*utf8*/, 3/*utf8 len*/},{0xacc5/*gb2312*/, 0xe0e0/*utf16*/, {0xee,0x83,0xa0}/*utf8*/, 3/*utf8 len*/},{0xacc6/*gb2312*/, 0xe0e1/*utf16*/, {0xee,0x83,0xa1}/*utf8*/, 3/*utf8 len*/},{0xacc7/*gb2312*/, 0xe0e2/*utf16*/, {0xee,0x83,0xa2}/*utf8*/, 3/*utf8 len*/},{0xacc8/*gb2312*/, 0xe0e3/*utf16*/, {0xee,0x83,0xa3}/*utf8*/, 3/*utf8 len*/},{0xacc9/*gb2312*/, 0xe0e4/*utf16*/, {0xee,0x83,0xa4}/*utf8*/, 3/*utf8 len*/},{0xacca/*gb2312*/, 0xe0e5/*utf16*/, {0xee,0x83,0xa5}/*utf8*/, 3/*utf8 len*/},{0xaccb/*gb2312*/, 0xe0e6/*utf16*/, {0xee,0x83,0xa6}/*utf8*/, 3/*utf8 len*/},{0xaccc/*gb2312*/, 0xe0e7/*utf16*/, {0xee,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xaccd/*gb2312*/, 0xe0e8/*utf16*/, {0xee,0x83,0xa8}/*utf8*/, 3/*utf8 len*/},{0xacce/*gb2312*/, 0xe0e9/*utf16*/, {0xee,0x83,0xa9}/*utf8*/, 3/*utf8 len*/},{0xaccf/*gb2312*/, 0xe0ea/*utf16*/, {0xee,0x83,0xaa}/*utf8*/, 3/*utf8 len*/},{0xacd0/*gb2312*/, 0xe0eb/*utf16*/, {0xee,0x83,0xab}/*utf8*/, 3/*utf8 len*/},{0xacd1/*gb2312*/, 0xe0ec/*utf16*/, {0xee,0x83,0xac}/*utf8*/, 3/*utf8 len*/},{0xacd2/*gb2312*/, 0xe0ed/*utf16*/, {0xee,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xacd3/*gb2312*/, 0xe0ee/*utf16*/, {0xee,0x83,0xae}/*utf8*/, 3/*utf8 len*/},{0xacd4/*gb2312*/, 0xe0ef/*utf16*/, {0xee,0x83,0xaf}/*utf8*/, 3/*utf8 len*/},{0xacd5/*gb2312*/, 0xe0f0/*utf16*/, {0xee,0x83,0xb0}/*utf8*/, 3/*utf8 len*/},{0xacd6/*gb2312*/, 0xe0f1/*utf16*/, {0xee,0x83,0xb1}/*utf8*/, 3/*utf8 len*/},{0xacd7/*gb2312*/, 0xe0f2/*utf16*/, {0xee,0x83,0xb2}/*utf8*/, 3/*utf8 len*/},{0xacd8/*gb2312*/, 0xe0f3/*utf16*/, {0xee,0x83,0xb3}/*utf8*/, 3/*utf8 len*/},{0xacd9/*gb2312*/, 0xe0f4/*utf16*/, {0xee,0x83,0xb4}/*utf8*/, 3/*utf8 len*/},{0xacda/*gb2312*/, 0xe0f5/*utf16*/, {0xee,0x83,0xb5}/*utf8*/, 3/*utf8 len*/},{0xacdb/*gb2312*/, 0xe0f6/*utf16*/, {0xee,0x83,0xb6}/*utf8*/, 3/*utf8 len*/},{0xacdc/*gb2312*/, 0xe0f7/*utf16*/, {0xee,0x83,0xb7}/*utf8*/, 3/*utf8 len*/},{0xacdd/*gb2312*/, 0xe0f8/*utf16*/, {0xee,0x83,0xb8}/*utf8*/, 3/*utf8 len*/},{0xacde/*gb2312*/, 0xe0f9/*utf16*/, {0xee,0x83,0xb9}/*utf8*/, 3/*utf8 len*/},{0xacdf/*gb2312*/, 0xe0fa/*utf16*/, {0xee,0x83,0xba}/*utf8*/, 3/*utf8 len*/},{0xace0/*gb2312*/, 0xe0fb/*utf16*/, {0xee,0x83,0xbb}/*utf8*/, 3/*utf8 len*/},{0xace1/*gb2312*/, 0xe0fc/*utf16*/, {0xee,0x83,0xbc}/*utf8*/, 3/*utf8 len*/},{0xace2/*gb2312*/, 0xe0fd/*utf16*/, {0xee,0x83,0xbd}/*utf8*/, 3/*utf8 len*/},{0xace3/*gb2312*/, 0xe0fe/*utf16*/, {0xee,0x83,0xbe}/*utf8*/, 3/*utf8 len*/},{0xace4/*gb2312*/, 0xe0ff/*utf16*/, {0xee,0x83,0xbf}/*utf8*/, 3/*utf8 len*/},{0xace5/*gb2312*/, 0xe100/*utf16*/, {0xee,0x84,0x80}/*utf8*/, 3/*utf8 len*/},{0xace6/*gb2312*/, 0xe101/*utf16*/, {0xee,0x84,0x81}/*utf8*/, 3/*utf8 len*/},{0xace7/*gb2312*/, 0xe102/*utf16*/, {0xee,0x84,0x82}/*utf8*/, 3/*utf8 len*/},{0xace8/*gb2312*/, 0xe103/*utf16*/, {0xee,0x84,0x83}/*utf8*/, 3/*utf8 len*/},{0xace9/*gb2312*/, 0xe104/*utf16*/, {0xee,0x84,0x84}/*utf8*/, 3/*utf8 len*/},{0xacea/*gb2312*/, 0xe105/*utf16*/, {0xee,0x84,0x85}/*utf8*/, 3/*utf8 len*/},{0xaceb/*gb2312*/, 0xe106/*utf16*/, {0xee,0x84,0x86}/*utf8*/, 3/*utf8 len*/},{0xacec/*gb2312*/, 0xe107/*utf16*/, {0xee,0x84,0x87}/*utf8*/, 3/*utf8 len*/},{0xaced/*gb2312*/, 0xe108/*utf16*/, {0xee,0x84,0x88}/*utf8*/, 3/*utf8 len*/},{0xacee/*gb2312*/, 0xe109/*utf16*/, {0xee,0x84,0x89}/*utf8*/, 3/*utf8 len*/},{0xacef/*gb2312*/, 0xe10a/*utf16*/, {0xee,0x84,0x8a}/*utf8*/, 3/*utf8 len*/},{0xacf0/*gb2312*/, 0xe10b/*utf16*/, {0xee,0x84,0x8b}/*utf8*/, 3/*utf8 len*/},{0xacf1/*gb2312*/, 0xe10c/*utf16*/, {0xee,0x84,0x8c}/*utf8*/, 3/*utf8 len*/},{0xacf2/*gb2312*/, 0xe10d/*utf16*/, {0xee,0x84,0x8d}/*utf8*/, 3/*utf8 len*/},{0xacf3/*gb2312*/, 0xe10e/*utf16*/, {0xee,0x84,0x8e}/*utf8*/, 3/*utf8 len*/},{0xacf4/*gb2312*/, 0xe10f/*utf16*/, {0xee,0x84,0x8f}/*utf8*/, 3/*utf8 len*/},{0xacf5/*gb2312*/, 0xe110/*utf16*/, {0xee,0x84,0x90}/*utf8*/, 3/*utf8 len*/},{0xacf6/*gb2312*/, 0xe111/*utf16*/, {0xee,0x84,0x91}/*utf8*/, 3/*utf8 len*/},{0xacf7/*gb2312*/, 0xe112/*utf16*/, {0xee,0x84,0x92}/*utf8*/, 3/*utf8 len*/},{0xacf8/*gb2312*/, 0xe113/*utf16*/, {0xee,0x84,0x93}/*utf8*/, 3/*utf8 len*/},{0xacf9/*gb2312*/, 0xe114/*utf16*/, {0xee,0x84,0x94}/*utf8*/, 3/*utf8 len*/},{0xacfa/*gb2312*/, 0xe115/*utf16*/, {0xee,0x84,0x95}/*utf8*/, 3/*utf8 len*/},{0xacfb/*gb2312*/, 0xe116/*utf16*/, {0xee,0x84,0x96}/*utf8*/, 3/*utf8 len*/},{0xacfc/*gb2312*/, 0xe117/*utf16*/, {0xee,0x84,0x97}/*utf8*/, 3/*utf8 len*/},{0xacfd/*gb2312*/, 0xe118/*utf16*/, {0xee,0x84,0x98}/*utf8*/, 3/*utf8 len*/},{0xacfe/*gb2312*/, 0xe119/*utf16*/, {0xee,0x84,0x99}/*utf8*/, 3/*utf8 len*/},{0xada1/*gb2312*/, 0xe11a/*utf16*/, {0xee,0x84,0x9a}/*utf8*/, 3/*utf8 len*/},{0xada2/*gb2312*/, 0xe11b/*utf16*/, {0xee,0x84,0x9b}/*utf8*/, 3/*utf8 len*/},{0xada3/*gb2312*/, 0xe11c/*utf16*/, {0xee,0x84,0x9c}/*utf8*/, 3/*utf8 len*/},{0xada4/*gb2312*/, 0xe11d/*utf16*/, {0xee,0x84,0x9d}/*utf8*/, 3/*utf8 len*/},{0xada5/*gb2312*/, 0xe11e/*utf16*/, {0xee,0x84,0x9e}/*utf8*/, 3/*utf8 len*/},{0xada6/*gb2312*/, 0xe11f/*utf16*/, {0xee,0x84,0x9f}/*utf8*/, 3/*utf8 len*/},{0xada7/*gb2312*/, 0xe120/*utf16*/, {0xee,0x84,0xa0}/*utf8*/, 3/*utf8 len*/},{0xada8/*gb2312*/, 0xe121/*utf16*/, {0xee,0x84,0xa1}/*utf8*/, 3/*utf8 len*/},{0xada9/*gb2312*/, 0xe122/*utf16*/, {0xee,0x84,0xa2}/*utf8*/, 3/*utf8 len*/},{0xadaa/*gb2312*/, 0xe123/*utf16*/, {0xee,0x84,0xa3}/*utf8*/, 3/*utf8 len*/},{0xadab/*gb2312*/, 0xe124/*utf16*/, {0xee,0x84,0xa4}/*utf8*/, 3/*utf8 len*/},{0xadac/*gb2312*/, 0xe125/*utf16*/, {0xee,0x84,0xa5}/*utf8*/, 3/*utf8 len*/},{0xadad/*gb2312*/, 0xe126/*utf16*/, {0xee,0x84,0xa6}/*utf8*/, 3/*utf8 len*/},{0xadae/*gb2312*/, 0xe127/*utf16*/, {0xee,0x84,0xa7}/*utf8*/, 3/*utf8 len*/},{0xadaf/*gb2312*/, 0xe128/*utf16*/, {0xee,0x84,0xa8}/*utf8*/, 3/*utf8 len*/},{0xadb0/*gb2312*/, 0xe129/*utf16*/, {0xee,0x84,0xa9}/*utf8*/, 3/*utf8 len*/},{0xadb1/*gb2312*/, 0xe12a/*utf16*/, {0xee,0x84,0xaa}/*utf8*/, 3/*utf8 len*/},{0xadb2/*gb2312*/, 0xe12b/*utf16*/, {0xee,0x84,0xab}/*utf8*/, 3/*utf8 len*/},{0xadb3/*gb2312*/, 0xe12c/*utf16*/, {0xee,0x84,0xac}/*utf8*/, 3/*utf8 len*/},{0xadb4/*gb2312*/, 0xe12d/*utf16*/, {0xee,0x84,0xad}/*utf8*/, 3/*utf8 len*/},{0xadb5/*gb2312*/, 0xe12e/*utf16*/, {0xee,0x84,0xae}/*utf8*/, 3/*utf8 len*/},{0xadb6/*gb2312*/, 0xe12f/*utf16*/, {0xee,0x84,0xaf}/*utf8*/, 3/*utf8 len*/},{0xadb7/*gb2312*/, 0xe130/*utf16*/, {0xee,0x84,0xb0}/*utf8*/, 3/*utf8 len*/},{0xadb8/*gb2312*/, 0xe131/*utf16*/, {0xee,0x84,0xb1}/*utf8*/, 3/*utf8 len*/},{0xadb9/*gb2312*/, 0xe132/*utf16*/, {0xee,0x84,0xb2}/*utf8*/, 3/*utf8 len*/},{0xadba/*gb2312*/, 0xe133/*utf16*/, {0xee,0x84,0xb3}/*utf8*/, 3/*utf8 len*/},{0xadbb/*gb2312*/, 0xe134/*utf16*/, {0xee,0x84,0xb4}/*utf8*/, 3/*utf8 len*/},{0xadbc/*gb2312*/, 0xe135/*utf16*/, {0xee,0x84,0xb5}/*utf8*/, 3/*utf8 len*/},{0xadbd/*gb2312*/, 0xe136/*utf16*/, {0xee,0x84,0xb6}/*utf8*/, 3/*utf8 len*/},{0xadbe/*gb2312*/, 0xe137/*utf16*/, {0xee,0x84,0xb7}/*utf8*/, 3/*utf8 len*/},{0xadbf/*gb2312*/, 0xe138/*utf16*/, {0xee,0x84,0xb8}/*utf8*/, 3/*utf8 len*/},{0xadc0/*gb2312*/, 0xe139/*utf16*/, {0xee,0x84,0xb9}/*utf8*/, 3/*utf8 len*/},{0xadc1/*gb2312*/, 0xe13a/*utf16*/, {0xee,0x84,0xba}/*utf8*/, 3/*utf8 len*/},{0xadc2/*gb2312*/, 0xe13b/*utf16*/, {0xee,0x84,0xbb}/*utf8*/, 3/*utf8 len*/},{0xadc3/*gb2312*/, 0xe13c/*utf16*/, {0xee,0x84,0xbc}/*utf8*/, 3/*utf8 len*/},{0xadc4/*gb2312*/, 0xe13d/*utf16*/, {0xee,0x84,0xbd}/*utf8*/, 3/*utf8 len*/},{0xadc5/*gb2312*/, 0xe13e/*utf16*/, {0xee,0x84,0xbe}/*utf8*/, 3/*utf8 len*/},{0xadc6/*gb2312*/, 0xe13f/*utf16*/, {0xee,0x84,0xbf}/*utf8*/, 3/*utf8 len*/},{0xadc7/*gb2312*/, 0xe140/*utf16*/, {0xee,0x85,0x80}/*utf8*/, 3/*utf8 len*/},{0xadc8/*gb2312*/, 0xe141/*utf16*/, {0xee,0x85,0x81}/*utf8*/, 3/*utf8 len*/},{0xadc9/*gb2312*/, 0xe142/*utf16*/, {0xee,0x85,0x82}/*utf8*/, 3/*utf8 len*/},{0xadca/*gb2312*/, 0xe143/*utf16*/, {0xee,0x85,0x83}/*utf8*/, 3/*utf8 len*/},{0xadcb/*gb2312*/, 0xe144/*utf16*/, {0xee,0x85,0x84}/*utf8*/, 3/*utf8 len*/},{0xadcc/*gb2312*/, 0xe145/*utf16*/, {0xee,0x85,0x85}/*utf8*/, 3/*utf8 len*/},{0xadcd/*gb2312*/, 0xe146/*utf16*/, {0xee,0x85,0x86}/*utf8*/, 3/*utf8 len*/},{0xadce/*gb2312*/, 0xe147/*utf16*/, {0xee,0x85,0x87}/*utf8*/, 3/*utf8 len*/},{0xadcf/*gb2312*/, 0xe148/*utf16*/, {0xee,0x85,0x88}/*utf8*/, 3/*utf8 len*/},{0xadd0/*gb2312*/, 0xe149/*utf16*/, {0xee,0x85,0x89}/*utf8*/, 3/*utf8 len*/},{0xadd1/*gb2312*/, 0xe14a/*utf16*/, {0xee,0x85,0x8a}/*utf8*/, 3/*utf8 len*/},{0xadd2/*gb2312*/, 0xe14b/*utf16*/, {0xee,0x85,0x8b}/*utf8*/, 3/*utf8 len*/},{0xadd3/*gb2312*/, 0xe14c/*utf16*/, {0xee,0x85,0x8c}/*utf8*/, 3/*utf8 len*/},{0xadd4/*gb2312*/, 0xe14d/*utf16*/, {0xee,0x85,0x8d}/*utf8*/, 3/*utf8 len*/},{0xadd5/*gb2312*/, 0xe14e/*utf16*/, {0xee,0x85,0x8e}/*utf8*/, 3/*utf8 len*/},{0xadd6/*gb2312*/, 0xe14f/*utf16*/, {0xee,0x85,0x8f}/*utf8*/, 3/*utf8 len*/},{0xadd7/*gb2312*/, 0xe150/*utf16*/, {0xee,0x85,0x90}/*utf8*/, 3/*utf8 len*/},{0xadd8/*gb2312*/, 0xe151/*utf16*/, {0xee,0x85,0x91}/*utf8*/, 3/*utf8 len*/},{0xadd9/*gb2312*/, 0xe152/*utf16*/, {0xee,0x85,0x92}/*utf8*/, 3/*utf8 len*/},{0xadda/*gb2312*/, 0xe153/*utf16*/, {0xee,0x85,0x93}/*utf8*/, 3/*utf8 len*/},{0xaddb/*gb2312*/, 0xe154/*utf16*/, {0xee,0x85,0x94}/*utf8*/, 3/*utf8 len*/},{0xaddc/*gb2312*/, 0xe155/*utf16*/, {0xee,0x85,0x95}/*utf8*/, 3/*utf8 len*/},{0xaddd/*gb2312*/, 0xe156/*utf16*/, {0xee,0x85,0x96}/*utf8*/, 3/*utf8 len*/},{0xadde/*gb2312*/, 0xe157/*utf16*/, {0xee,0x85,0x97}/*utf8*/, 3/*utf8 len*/},{0xaddf/*gb2312*/, 0xe158/*utf16*/, {0xee,0x85,0x98}/*utf8*/, 3/*utf8 len*/},{0xade0/*gb2312*/, 0xe159/*utf16*/, {0xee,0x85,0x99}/*utf8*/, 3/*utf8 len*/},{0xade1/*gb2312*/, 0xe15a/*utf16*/, {0xee,0x85,0x9a}/*utf8*/, 3/*utf8 len*/},{0xade2/*gb2312*/, 0xe15b/*utf16*/, {0xee,0x85,0x9b}/*utf8*/, 3/*utf8 len*/},{0xade3/*gb2312*/, 0xe15c/*utf16*/, {0xee,0x85,0x9c}/*utf8*/, 3/*utf8 len*/},{0xade4/*gb2312*/, 0xe15d/*utf16*/, {0xee,0x85,0x9d}/*utf8*/, 3/*utf8 len*/},{0xade5/*gb2312*/, 0xe15e/*utf16*/, {0xee,0x85,0x9e}/*utf8*/, 3/*utf8 len*/},{0xade6/*gb2312*/, 0xe15f/*utf16*/, {0xee,0x85,0x9f}/*utf8*/, 3/*utf8 len*/},{0xade7/*gb2312*/, 0xe160/*utf16*/, {0xee,0x85,0xa0}/*utf8*/, 3/*utf8 len*/},{0xade8/*gb2312*/, 0xe161/*utf16*/, {0xee,0x85,0xa1}/*utf8*/, 3/*utf8 len*/},{0xade9/*gb2312*/, 0xe162/*utf16*/, {0xee,0x85,0xa2}/*utf8*/, 3/*utf8 len*/},{0xadea/*gb2312*/, 0xe163/*utf16*/, {0xee,0x85,0xa3}/*utf8*/, 3/*utf8 len*/},{0xadeb/*gb2312*/, 0xe164/*utf16*/, {0xee,0x85,0xa4}/*utf8*/, 3/*utf8 len*/},{0xadec/*gb2312*/, 0xe165/*utf16*/, {0xee,0x85,0xa5}/*utf8*/, 3/*utf8 len*/},{0xaded/*gb2312*/, 0xe166/*utf16*/, {0xee,0x85,0xa6}/*utf8*/, 3/*utf8 len*/},{0xadee/*gb2312*/, 0xe167/*utf16*/, {0xee,0x85,0xa7}/*utf8*/, 3/*utf8 len*/},{0xadef/*gb2312*/, 0xe168/*utf16*/, {0xee,0x85,0xa8}/*utf8*/, 3/*utf8 len*/},{0xadf0/*gb2312*/, 0xe169/*utf16*/, {0xee,0x85,0xa9}/*utf8*/, 3/*utf8 len*/},{0xadf1/*gb2312*/, 0xe16a/*utf16*/, {0xee,0x85,0xaa}/*utf8*/, 3/*utf8 len*/},{0xadf2/*gb2312*/, 0xe16b/*utf16*/, {0xee,0x85,0xab}/*utf8*/, 3/*utf8 len*/},{0xadf3/*gb2312*/, 0xe16c/*utf16*/, {0xee,0x85,0xac}/*utf8*/, 3/*utf8 len*/},{0xadf4/*gb2312*/, 0xe16d/*utf16*/, {0xee,0x85,0xad}/*utf8*/, 3/*utf8 len*/},{0xadf5/*gb2312*/, 0xe16e/*utf16*/, {0xee,0x85,0xae}/*utf8*/, 3/*utf8 len*/},{0xadf6/*gb2312*/, 0xe16f/*utf16*/, {0xee,0x85,0xaf}/*utf8*/, 3/*utf8 len*/},{0xadf7/*gb2312*/, 0xe170/*utf16*/, {0xee,0x85,0xb0}/*utf8*/, 3/*utf8 len*/},{0xadf8/*gb2312*/, 0xe171/*utf16*/, {0xee,0x85,0xb1}/*utf8*/, 3/*utf8 len*/},{0xadf9/*gb2312*/, 0xe172/*utf16*/, {0xee,0x85,0xb2}/*utf8*/, 3/*utf8 len*/},{0xadfa/*gb2312*/, 0xe173/*utf16*/, {0xee,0x85,0xb3}/*utf8*/, 3/*utf8 len*/},{0xadfb/*gb2312*/, 0xe174/*utf16*/, {0xee,0x85,0xb4}/*utf8*/, 3/*utf8 len*/},{0xadfc/*gb2312*/, 0xe175/*utf16*/, {0xee,0x85,0xb5}/*utf8*/, 3/*utf8 len*/},{0xadfd/*gb2312*/, 0xe176/*utf16*/, {0xee,0x85,0xb6}/*utf8*/, 3/*utf8 len*/},{0xadfe/*gb2312*/, 0xe177/*utf16*/, {0xee,0x85,0xb7}/*utf8*/, 3/*utf8 len*/},{0xaea1/*gb2312*/, 0xe178/*utf16*/, {0xee,0x85,0xb8}/*utf8*/, 3/*utf8 len*/},{0xaea2/*gb2312*/, 0xe179/*utf16*/, {0xee,0x85,0xb9}/*utf8*/, 3/*utf8 len*/},{0xaea3/*gb2312*/, 0xe17a/*utf16*/, {0xee,0x85,0xba}/*utf8*/, 3/*utf8 len*/},{0xaea4/*gb2312*/, 0xe17b/*utf16*/, {0xee,0x85,0xbb}/*utf8*/, 3/*utf8 len*/},{0xaea5/*gb2312*/, 0xe17c/*utf16*/, {0xee,0x85,0xbc}/*utf8*/, 3/*utf8 len*/},{0xaea6/*gb2312*/, 0xe17d/*utf16*/, {0xee,0x85,0xbd}/*utf8*/, 3/*utf8 len*/},{0xaea7/*gb2312*/, 0xe17e/*utf16*/, {0xee,0x85,0xbe}/*utf8*/, 3/*utf8 len*/},{0xaea8/*gb2312*/, 0xe17f/*utf16*/, {0xee,0x85,0xbf}/*utf8*/, 3/*utf8 len*/},{0xaea9/*gb2312*/, 0xe180/*utf16*/, {0xee,0x86,0x80}/*utf8*/, 3/*utf8 len*/},{0xaeaa/*gb2312*/, 0xe181/*utf16*/, {0xee,0x86,0x81}/*utf8*/, 3/*utf8 len*/},{0xaeab/*gb2312*/, 0xe182/*utf16*/, {0xee,0x86,0x82}/*utf8*/, 3/*utf8 len*/},{0xaeac/*gb2312*/, 0xe183/*utf16*/, {0xee,0x86,0x83}/*utf8*/, 3/*utf8 len*/},{0xaead/*gb2312*/, 0xe184/*utf16*/, {0xee,0x86,0x84}/*utf8*/, 3/*utf8 len*/},{0xaeae/*gb2312*/, 0xe185/*utf16*/, {0xee,0x86,0x85}/*utf8*/, 3/*utf8 len*/},{0xaeaf/*gb2312*/, 0xe186/*utf16*/, {0xee,0x86,0x86}/*utf8*/, 3/*utf8 len*/},{0xaeb0/*gb2312*/, 0xe187/*utf16*/, {0xee,0x86,0x87}/*utf8*/, 3/*utf8 len*/},{0xaeb1/*gb2312*/, 0xe188/*utf16*/, {0xee,0x86,0x88}/*utf8*/, 3/*utf8 len*/},{0xaeb2/*gb2312*/, 0xe189/*utf16*/, {0xee,0x86,0x89}/*utf8*/, 3/*utf8 len*/},{0xaeb3/*gb2312*/, 0xe18a/*utf16*/, {0xee,0x86,0x8a}/*utf8*/, 3/*utf8 len*/},{0xaeb4/*gb2312*/, 0xe18b/*utf16*/, {0xee,0x86,0x8b}/*utf8*/, 3/*utf8 len*/},{0xaeb5/*gb2312*/, 0xe18c/*utf16*/, {0xee,0x86,0x8c}/*utf8*/, 3/*utf8 len*/},{0xaeb6/*gb2312*/, 0xe18d/*utf16*/, {0xee,0x86,0x8d}/*utf8*/, 3/*utf8 len*/},{0xaeb7/*gb2312*/, 0xe18e/*utf16*/, {0xee,0x86,0x8e}/*utf8*/, 3/*utf8 len*/},{0xaeb8/*gb2312*/, 0xe18f/*utf16*/, {0xee,0x86,0x8f}/*utf8*/, 3/*utf8 len*/},{0xaeb9/*gb2312*/, 0xe190/*utf16*/, {0xee,0x86,0x90}/*utf8*/, 3/*utf8 len*/},{0xaeba/*gb2312*/, 0xe191/*utf16*/, {0xee,0x86,0x91}/*utf8*/, 3/*utf8 len*/},{0xaebb/*gb2312*/, 0xe192/*utf16*/, {0xee,0x86,0x92}/*utf8*/, 3/*utf8 len*/},{0xaebc/*gb2312*/, 0xe193/*utf16*/, {0xee,0x86,0x93}/*utf8*/, 3/*utf8 len*/},{0xaebd/*gb2312*/, 0xe194/*utf16*/, {0xee,0x86,0x94}/*utf8*/, 3/*utf8 len*/},{0xaebe/*gb2312*/, 0xe195/*utf16*/, {0xee,0x86,0x95}/*utf8*/, 3/*utf8 len*/},{0xaebf/*gb2312*/, 0xe196/*utf16*/, {0xee,0x86,0x96}/*utf8*/, 3/*utf8 len*/},{0xaec0/*gb2312*/, 0xe197/*utf16*/, {0xee,0x86,0x97}/*utf8*/, 3/*utf8 len*/},{0xaec1/*gb2312*/, 0xe198/*utf16*/, {0xee,0x86,0x98}/*utf8*/, 3/*utf8 len*/},{0xaec2/*gb2312*/, 0xe199/*utf16*/, {0xee,0x86,0x99}/*utf8*/, 3/*utf8 len*/},{0xaec3/*gb2312*/, 0xe19a/*utf16*/, {0xee,0x86,0x9a}/*utf8*/, 3/*utf8 len*/},{0xaec4/*gb2312*/, 0xe19b/*utf16*/, {0xee,0x86,0x9b}/*utf8*/, 3/*utf8 len*/},{0xaec5/*gb2312*/, 0xe19c/*utf16*/, {0xee,0x86,0x9c}/*utf8*/, 3/*utf8 len*/},{0xaec6/*gb2312*/, 0xe19d/*utf16*/, {0xee,0x86,0x9d}/*utf8*/, 3/*utf8 len*/},{0xaec7/*gb2312*/, 0xe19e/*utf16*/, {0xee,0x86,0x9e}/*utf8*/, 3/*utf8 len*/},{0xaec8/*gb2312*/, 0xe19f/*utf16*/, {0xee,0x86,0x9f}/*utf8*/, 3/*utf8 len*/},{0xaec9/*gb2312*/, 0xe1a0/*utf16*/, {0xee,0x86,0xa0}/*utf8*/, 3/*utf8 len*/},{0xaeca/*gb2312*/, 0xe1a1/*utf16*/, {0xee,0x86,0xa1}/*utf8*/, 3/*utf8 len*/},{0xaecb/*gb2312*/, 0xe1a2/*utf16*/, {0xee,0x86,0xa2}/*utf8*/, 3/*utf8 len*/},{0xaecc/*gb2312*/, 0xe1a3/*utf16*/, {0xee,0x86,0xa3}/*utf8*/, 3/*utf8 len*/},{0xaecd/*gb2312*/, 0xe1a4/*utf16*/, {0xee,0x86,0xa4}/*utf8*/, 3/*utf8 len*/},{0xaece/*gb2312*/, 0xe1a5/*utf16*/, {0xee,0x86,0xa5}/*utf8*/, 3/*utf8 len*/},{0xaecf/*gb2312*/, 0xe1a6/*utf16*/, {0xee,0x86,0xa6}/*utf8*/, 3/*utf8 len*/},{0xaed0/*gb2312*/, 0xe1a7/*utf16*/, {0xee,0x86,0xa7}/*utf8*/, 3/*utf8 len*/},{0xaed1/*gb2312*/, 0xe1a8/*utf16*/, {0xee,0x86,0xa8}/*utf8*/, 3/*utf8 len*/},{0xaed2/*gb2312*/, 0xe1a9/*utf16*/, {0xee,0x86,0xa9}/*utf8*/, 3/*utf8 len*/},{0xaed3/*gb2312*/, 0xe1aa/*utf16*/, {0xee,0x86,0xaa}/*utf8*/, 3/*utf8 len*/},{0xaed4/*gb2312*/, 0xe1ab/*utf16*/, {0xee,0x86,0xab}/*utf8*/, 3/*utf8 len*/},{0xaed5/*gb2312*/, 0xe1ac/*utf16*/, {0xee,0x86,0xac}/*utf8*/, 3/*utf8 len*/},{0xaed6/*gb2312*/, 0xe1ad/*utf16*/, {0xee,0x86,0xad}/*utf8*/, 3/*utf8 len*/},{0xaed7/*gb2312*/, 0xe1ae/*utf16*/, {0xee,0x86,0xae}/*utf8*/, 3/*utf8 len*/},{0xaed8/*gb2312*/, 0xe1af/*utf16*/, {0xee,0x86,0xaf}/*utf8*/, 3/*utf8 len*/},{0xaed9/*gb2312*/, 0xe1b0/*utf16*/, {0xee,0x86,0xb0}/*utf8*/, 3/*utf8 len*/},{0xaeda/*gb2312*/, 0xe1b1/*utf16*/, {0xee,0x86,0xb1}/*utf8*/, 3/*utf8 len*/},{0xaedb/*gb2312*/, 0xe1b2/*utf16*/, {0xee,0x86,0xb2}/*utf8*/, 3/*utf8 len*/},{0xaedc/*gb2312*/, 0xe1b3/*utf16*/, {0xee,0x86,0xb3}/*utf8*/, 3/*utf8 len*/},{0xaedd/*gb2312*/, 0xe1b4/*utf16*/, {0xee,0x86,0xb4}/*utf8*/, 3/*utf8 len*/},{0xaede/*gb2312*/, 0xe1b5/*utf16*/, {0xee,0x86,0xb5}/*utf8*/, 3/*utf8 len*/},{0xaedf/*gb2312*/, 0xe1b6/*utf16*/, {0xee,0x86,0xb6}/*utf8*/, 3/*utf8 len*/},{0xaee0/*gb2312*/, 0xe1b7/*utf16*/, {0xee,0x86,0xb7}/*utf8*/, 3/*utf8 len*/},{0xaee1/*gb2312*/, 0xe1b8/*utf16*/, {0xee,0x86,0xb8}/*utf8*/, 3/*utf8 len*/},{0xaee2/*gb2312*/, 0xe1b9/*utf16*/, {0xee,0x86,0xb9}/*utf8*/, 3/*utf8 len*/},{0xaee3/*gb2312*/, 0xe1ba/*utf16*/, {0xee,0x86,0xba}/*utf8*/, 3/*utf8 len*/},{0xaee4/*gb2312*/, 0xe1bb/*utf16*/, {0xee,0x86,0xbb}/*utf8*/, 3/*utf8 len*/},{0xaee5/*gb2312*/, 0xe1bc/*utf16*/, {0xee,0x86,0xbc}/*utf8*/, 3/*utf8 len*/},{0xaee6/*gb2312*/, 0xe1bd/*utf16*/, {0xee,0x86,0xbd}/*utf8*/, 3/*utf8 len*/},{0xaee7/*gb2312*/, 0xe1be/*utf16*/, {0xee,0x86,0xbe}/*utf8*/, 3/*utf8 len*/},{0xaee8/*gb2312*/, 0xe1bf/*utf16*/, {0xee,0x86,0xbf}/*utf8*/, 3/*utf8 len*/},{0xaee9/*gb2312*/, 0xe1c0/*utf16*/, {0xee,0x87,0x80}/*utf8*/, 3/*utf8 len*/},{0xaeea/*gb2312*/, 0xe1c1/*utf16*/, {0xee,0x87,0x81}/*utf8*/, 3/*utf8 len*/},{0xaeeb/*gb2312*/, 0xe1c2/*utf16*/, {0xee,0x87,0x82}/*utf8*/, 3/*utf8 len*/},{0xaeec/*gb2312*/, 0xe1c3/*utf16*/, {0xee,0x87,0x83}/*utf8*/, 3/*utf8 len*/},{0xaeed/*gb2312*/, 0xe1c4/*utf16*/, {0xee,0x87,0x84}/*utf8*/, 3/*utf8 len*/},{0xaeee/*gb2312*/, 0xe1c5/*utf16*/, {0xee,0x87,0x85}/*utf8*/, 3/*utf8 len*/},{0xaeef/*gb2312*/, 0xe1c6/*utf16*/, {0xee,0x87,0x86}/*utf8*/, 3/*utf8 len*/},{0xaef0/*gb2312*/, 0xe1c7/*utf16*/, {0xee,0x87,0x87}/*utf8*/, 3/*utf8 len*/},{0xaef1/*gb2312*/, 0xe1c8/*utf16*/, {0xee,0x87,0x88}/*utf8*/, 3/*utf8 len*/},{0xaef2/*gb2312*/, 0xe1c9/*utf16*/, {0xee,0x87,0x89}/*utf8*/, 3/*utf8 len*/},{0xaef3/*gb2312*/, 0xe1ca/*utf16*/, {0xee,0x87,0x8a}/*utf8*/, 3/*utf8 len*/},{0xaef4/*gb2312*/, 0xe1cb/*utf16*/, {0xee,0x87,0x8b}/*utf8*/, 3/*utf8 len*/},{0xaef5/*gb2312*/, 0xe1cc/*utf16*/, {0xee,0x87,0x8c}/*utf8*/, 3/*utf8 len*/},{0xaef6/*gb2312*/, 0xe1cd/*utf16*/, {0xee,0x87,0x8d}/*utf8*/, 3/*utf8 len*/},{0xaef7/*gb2312*/, 0xe1ce/*utf16*/, {0xee,0x87,0x8e}/*utf8*/, 3/*utf8 len*/},{0xaef8/*gb2312*/, 0xe1cf/*utf16*/, {0xee,0x87,0x8f}/*utf8*/, 3/*utf8 len*/},{0xaef9/*gb2312*/, 0xe1d0/*utf16*/, {0xee,0x87,0x90}/*utf8*/, 3/*utf8 len*/},{0xaefa/*gb2312*/, 0xe1d1/*utf16*/, {0xee,0x87,0x91}/*utf8*/, 3/*utf8 len*/},{0xaefb/*gb2312*/, 0xe1d2/*utf16*/, {0xee,0x87,0x92}/*utf8*/, 3/*utf8 len*/},{0xaefc/*gb2312*/, 0xe1d3/*utf16*/, {0xee,0x87,0x93}/*utf8*/, 3/*utf8 len*/},{0xaefd/*gb2312*/, 0xe1d4/*utf16*/, {0xee,0x87,0x94}/*utf8*/, 3/*utf8 len*/},{0xaefe/*gb2312*/, 0xe1d5/*utf16*/, {0xee,0x87,0x95}/*utf8*/, 3/*utf8 len*/},{0xafa1/*gb2312*/, 0xe1d6/*utf16*/, {0xee,0x87,0x96}/*utf8*/, 3/*utf8 len*/},{0xafa2/*gb2312*/, 0xe1d7/*utf16*/, {0xee,0x87,0x97}/*utf8*/, 3/*utf8 len*/},{0xafa3/*gb2312*/, 0xe1d8/*utf16*/, {0xee,0x87,0x98}/*utf8*/, 3/*utf8 len*/},{0xafa4/*gb2312*/, 0xe1d9/*utf16*/, {0xee,0x87,0x99}/*utf8*/, 3/*utf8 len*/},{0xafa5/*gb2312*/, 0xe1da/*utf16*/, {0xee,0x87,0x9a}/*utf8*/, 3/*utf8 len*/},{0xafa6/*gb2312*/, 0xe1db/*utf16*/, {0xee,0x87,0x9b}/*utf8*/, 3/*utf8 len*/},{0xafa7/*gb2312*/, 0xe1dc/*utf16*/, {0xee,0x87,0x9c}/*utf8*/, 3/*utf8 len*/},{0xafa8/*gb2312*/, 0xe1dd/*utf16*/, {0xee,0x87,0x9d}/*utf8*/, 3/*utf8 len*/},{0xafa9/*gb2312*/, 0xe1de/*utf16*/, {0xee,0x87,0x9e}/*utf8*/, 3/*utf8 len*/},{0xafaa/*gb2312*/, 0xe1df/*utf16*/, {0xee,0x87,0x9f}/*utf8*/, 3/*utf8 len*/},{0xafab/*gb2312*/, 0xe1e0/*utf16*/, {0xee,0x87,0xa0}/*utf8*/, 3/*utf8 len*/},{0xafac/*gb2312*/, 0xe1e1/*utf16*/, {0xee,0x87,0xa1}/*utf8*/, 3/*utf8 len*/},{0xafad/*gb2312*/, 0xe1e2/*utf16*/, {0xee,0x87,0xa2}/*utf8*/, 3/*utf8 len*/},{0xafae/*gb2312*/, 0xe1e3/*utf16*/, {0xee,0x87,0xa3}/*utf8*/, 3/*utf8 len*/},{0xafaf/*gb2312*/, 0xe1e4/*utf16*/, {0xee,0x87,0xa4}/*utf8*/, 3/*utf8 len*/},{0xafb0/*gb2312*/, 0xe1e5/*utf16*/, {0xee,0x87,0xa5}/*utf8*/, 3/*utf8 len*/},{0xafb1/*gb2312*/, 0xe1e6/*utf16*/, {0xee,0x87,0xa6}/*utf8*/, 3/*utf8 len*/},{0xafb2/*gb2312*/, 0xe1e7/*utf16*/, {0xee,0x87,0xa7}/*utf8*/, 3/*utf8 len*/},{0xafb3/*gb2312*/, 0xe1e8/*utf16*/, {0xee,0x87,0xa8}/*utf8*/, 3/*utf8 len*/},{0xafb4/*gb2312*/, 0xe1e9/*utf16*/, {0xee,0x87,0xa9}/*utf8*/, 3/*utf8 len*/},{0xafb5/*gb2312*/, 0xe1ea/*utf16*/, {0xee,0x87,0xaa}/*utf8*/, 3/*utf8 len*/},{0xafb6/*gb2312*/, 0xe1eb/*utf16*/, {0xee,0x87,0xab}/*utf8*/, 3/*utf8 len*/},{0xafb7/*gb2312*/, 0xe1ec/*utf16*/, {0xee,0x87,0xac}/*utf8*/, 3/*utf8 len*/},{0xafb8/*gb2312*/, 0xe1ed/*utf16*/, {0xee,0x87,0xad}/*utf8*/, 3/*utf8 len*/},{0xafb9/*gb2312*/, 0xe1ee/*utf16*/, {0xee,0x87,0xae}/*utf8*/, 3/*utf8 len*/},{0xafba/*gb2312*/, 0xe1ef/*utf16*/, {0xee,0x87,0xaf}/*utf8*/, 3/*utf8 len*/},{0xafbb/*gb2312*/, 0xe1f0/*utf16*/, {0xee,0x87,0xb0}/*utf8*/, 3/*utf8 len*/},{0xafbc/*gb2312*/, 0xe1f1/*utf16*/, {0xee,0x87,0xb1}/*utf8*/, 3/*utf8 len*/},{0xafbd/*gb2312*/, 0xe1f2/*utf16*/, {0xee,0x87,0xb2}/*utf8*/, 3/*utf8 len*/},{0xafbe/*gb2312*/, 0xe1f3/*utf16*/, {0xee,0x87,0xb3}/*utf8*/, 3/*utf8 len*/},{0xafbf/*gb2312*/, 0xe1f4/*utf16*/, {0xee,0x87,0xb4}/*utf8*/, 3/*utf8 len*/},{0xafc0/*gb2312*/, 0xe1f5/*utf16*/, {0xee,0x87,0xb5}/*utf8*/, 3/*utf8 len*/},{0xafc1/*gb2312*/, 0xe1f6/*utf16*/, {0xee,0x87,0xb6}/*utf8*/, 3/*utf8 len*/},{0xafc2/*gb2312*/, 0xe1f7/*utf16*/, {0xee,0x87,0xb7}/*utf8*/, 3/*utf8 len*/},{0xafc3/*gb2312*/, 0xe1f8/*utf16*/, {0xee,0x87,0xb8}/*utf8*/, 3/*utf8 len*/},{0xafc4/*gb2312*/, 0xe1f9/*utf16*/, {0xee,0x87,0xb9}/*utf8*/, 3/*utf8 len*/},{0xafc5/*gb2312*/, 0xe1fa/*utf16*/, {0xee,0x87,0xba}/*utf8*/, 3/*utf8 len*/},{0xafc6/*gb2312*/, 0xe1fb/*utf16*/, {0xee,0x87,0xbb}/*utf8*/, 3/*utf8 len*/},{0xafc7/*gb2312*/, 0xe1fc/*utf16*/, {0xee,0x87,0xbc}/*utf8*/, 3/*utf8 len*/},{0xafc8/*gb2312*/, 0xe1fd/*utf16*/, {0xee,0x87,0xbd}/*utf8*/, 3/*utf8 len*/},{0xafc9/*gb2312*/, 0xe1fe/*utf16*/, {0xee,0x87,0xbe}/*utf8*/, 3/*utf8 len*/},{0xafca/*gb2312*/, 0xe1ff/*utf16*/, {0xee,0x87,0xbf}/*utf8*/, 3/*utf8 len*/},{0xafcb/*gb2312*/, 0xe200/*utf16*/, {0xee,0x88,0x80}/*utf8*/, 3/*utf8 len*/},{0xafcc/*gb2312*/, 0xe201/*utf16*/, {0xee,0x88,0x81}/*utf8*/, 3/*utf8 len*/},{0xafcd/*gb2312*/, 0xe202/*utf16*/, {0xee,0x88,0x82}/*utf8*/, 3/*utf8 len*/},{0xafce/*gb2312*/, 0xe203/*utf16*/, {0xee,0x88,0x83}/*utf8*/, 3/*utf8 len*/},{0xafcf/*gb2312*/, 0xe204/*utf16*/, {0xee,0x88,0x84}/*utf8*/, 3/*utf8 len*/},{0xafd0/*gb2312*/, 0xe205/*utf16*/, {0xee,0x88,0x85}/*utf8*/, 3/*utf8 len*/},{0xafd1/*gb2312*/, 0xe206/*utf16*/, {0xee,0x88,0x86}/*utf8*/, 3/*utf8 len*/},{0xafd2/*gb2312*/, 0xe207/*utf16*/, {0xee,0x88,0x87}/*utf8*/, 3/*utf8 len*/},{0xafd3/*gb2312*/, 0xe208/*utf16*/, {0xee,0x88,0x88}/*utf8*/, 3/*utf8 len*/},{0xafd4/*gb2312*/, 0xe209/*utf16*/, {0xee,0x88,0x89}/*utf8*/, 3/*utf8 len*/},{0xafd5/*gb2312*/, 0xe20a/*utf16*/, {0xee,0x88,0x8a}/*utf8*/, 3/*utf8 len*/},{0xafd6/*gb2312*/, 0xe20b/*utf16*/, {0xee,0x88,0x8b}/*utf8*/, 3/*utf8 len*/},{0xafd7/*gb2312*/, 0xe20c/*utf16*/, {0xee,0x88,0x8c}/*utf8*/, 3/*utf8 len*/},{0xafd8/*gb2312*/, 0xe20d/*utf16*/, {0xee,0x88,0x8d}/*utf8*/, 3/*utf8 len*/},{0xafd9/*gb2312*/, 0xe20e/*utf16*/, {0xee,0x88,0x8e}/*utf8*/, 3/*utf8 len*/},{0xafda/*gb2312*/, 0xe20f/*utf16*/, {0xee,0x88,0x8f}/*utf8*/, 3/*utf8 len*/},{0xafdb/*gb2312*/, 0xe210/*utf16*/, {0xee,0x88,0x90}/*utf8*/, 3/*utf8 len*/},{0xafdc/*gb2312*/, 0xe211/*utf16*/, {0xee,0x88,0x91}/*utf8*/, 3/*utf8 len*/},{0xafdd/*gb2312*/, 0xe212/*utf16*/, {0xee,0x88,0x92}/*utf8*/, 3/*utf8 len*/},{0xafde/*gb2312*/, 0xe213/*utf16*/, {0xee,0x88,0x93}/*utf8*/, 3/*utf8 len*/},{0xafdf/*gb2312*/, 0xe214/*utf16*/, {0xee,0x88,0x94}/*utf8*/, 3/*utf8 len*/},{0xafe0/*gb2312*/, 0xe215/*utf16*/, {0xee,0x88,0x95}/*utf8*/, 3/*utf8 len*/},{0xafe1/*gb2312*/, 0xe216/*utf16*/, {0xee,0x88,0x96}/*utf8*/, 3/*utf8 len*/},{0xafe2/*gb2312*/, 0xe217/*utf16*/, {0xee,0x88,0x97}/*utf8*/, 3/*utf8 len*/},{0xafe3/*gb2312*/, 0xe218/*utf16*/, {0xee,0x88,0x98}/*utf8*/, 3/*utf8 len*/},{0xafe4/*gb2312*/, 0xe219/*utf16*/, {0xee,0x88,0x99}/*utf8*/, 3/*utf8 len*/},{0xafe5/*gb2312*/, 0xe21a/*utf16*/, {0xee,0x88,0x9a}/*utf8*/, 3/*utf8 len*/},{0xafe6/*gb2312*/, 0xe21b/*utf16*/, {0xee,0x88,0x9b}/*utf8*/, 3/*utf8 len*/},{0xafe7/*gb2312*/, 0xe21c/*utf16*/, {0xee,0x88,0x9c}/*utf8*/, 3/*utf8 len*/},{0xafe8/*gb2312*/, 0xe21d/*utf16*/, {0xee,0x88,0x9d}/*utf8*/, 3/*utf8 len*/},{0xafe9/*gb2312*/, 0xe21e/*utf16*/, {0xee,0x88,0x9e}/*utf8*/, 3/*utf8 len*/},{0xafea/*gb2312*/, 0xe21f/*utf16*/, {0xee,0x88,0x9f}/*utf8*/, 3/*utf8 len*/},{0xafeb/*gb2312*/, 0xe220/*utf16*/, {0xee,0x88,0xa0}/*utf8*/, 3/*utf8 len*/},{0xafec/*gb2312*/, 0xe221/*utf16*/, {0xee,0x88,0xa1}/*utf8*/, 3/*utf8 len*/},{0xafed/*gb2312*/, 0xe222/*utf16*/, {0xee,0x88,0xa2}/*utf8*/, 3/*utf8 len*/},{0xafee/*gb2312*/, 0xe223/*utf16*/, {0xee,0x88,0xa3}/*utf8*/, 3/*utf8 len*/},{0xafef/*gb2312*/, 0xe224/*utf16*/, {0xee,0x88,0xa4}/*utf8*/, 3/*utf8 len*/},{0xaff0/*gb2312*/, 0xe225/*utf16*/, {0xee,0x88,0xa5}/*utf8*/, 3/*utf8 len*/},{0xaff1/*gb2312*/, 0xe226/*utf16*/, {0xee,0x88,0xa6}/*utf8*/, 3/*utf8 len*/},{0xaff2/*gb2312*/, 0xe227/*utf16*/, {0xee,0x88,0xa7}/*utf8*/, 3/*utf8 len*/},{0xaff3/*gb2312*/, 0xe228/*utf16*/, {0xee,0x88,0xa8}/*utf8*/, 3/*utf8 len*/},{0xaff4/*gb2312*/, 0xe229/*utf16*/, {0xee,0x88,0xa9}/*utf8*/, 3/*utf8 len*/},{0xaff5/*gb2312*/, 0xe22a/*utf16*/, {0xee,0x88,0xaa}/*utf8*/, 3/*utf8 len*/},{0xaff6/*gb2312*/, 0xe22b/*utf16*/, {0xee,0x88,0xab}/*utf8*/, 3/*utf8 len*/},{0xaff7/*gb2312*/, 0xe22c/*utf16*/, {0xee,0x88,0xac}/*utf8*/, 3/*utf8 len*/},{0xaff8/*gb2312*/, 0xe22d/*utf16*/, {0xee,0x88,0xad}/*utf8*/, 3/*utf8 len*/},{0xaff9/*gb2312*/, 0xe22e/*utf16*/, {0xee,0x88,0xae}/*utf8*/, 3/*utf8 len*/},{0xaffa/*gb2312*/, 0xe22f/*utf16*/, {0xee,0x88,0xaf}/*utf8*/, 3/*utf8 len*/},{0xaffb/*gb2312*/, 0xe230/*utf16*/, {0xee,0x88,0xb0}/*utf8*/, 3/*utf8 len*/},{0xaffc/*gb2312*/, 0xe231/*utf16*/, {0xee,0x88,0xb1}/*utf8*/, 3/*utf8 len*/},{0xaffd/*gb2312*/, 0xe232/*utf16*/, {0xee,0x88,0xb2}/*utf8*/, 3/*utf8 len*/},{0xaffe/*gb2312*/, 0xe233/*utf16*/, {0xee,0x88,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb0a1/*gb2312*/, 0x554a/*utf16*/, {0xe5,0x95,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb0a2/*gb2312*/, 0x963f/*utf16*/, {0xe9,0x98,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb0a3/*gb2312*/, 0x57c3/*utf16*/, {0xe5,0x9f,0x83}/*utf8*/, 3/*utf8 len*/},{0xb0a4/*gb2312*/, 0x6328/*utf16*/, {0xe6,0x8c,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb0a5/*gb2312*/, 0x54ce/*utf16*/, {0xe5,0x93,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb0a6/*gb2312*/, 0x5509/*utf16*/, {0xe5,0x94,0x89}/*utf8*/, 3/*utf8 len*/},{0xb0a7/*gb2312*/, 0x54c0/*utf16*/, {0xe5,0x93,0x80}/*utf8*/, 3/*utf8 len*/},{0xb0a8/*gb2312*/, 0x7691/*utf16*/, {0xe7,0x9a,0x91}/*utf8*/, 3/*utf8 len*/},{0xb0a9/*gb2312*/, 0x764c/*utf16*/, {0xe7,0x99,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb0aa/*gb2312*/, 0x853c/*utf16*/, {0xe8,0x94,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb0ab/*gb2312*/, 0x77ee/*utf16*/, {0xe7,0x9f,0xae}/*utf8*/, 3/*utf8 len*/},{0xb0ac/*gb2312*/, 0x827e/*utf16*/, {0xe8,0x89,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb0ad/*gb2312*/, 0x788d/*utf16*/, {0xe7,0xa2,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb0ae/*gb2312*/, 0x7231/*utf16*/, {0xe7,0x88,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb0af/*gb2312*/, 0x9698/*utf16*/, {0xe9,0x9a,0x98}/*utf8*/, 3/*utf8 len*/},{0xb0b0/*gb2312*/, 0x978d/*utf16*/, {0xe9,0x9e,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb0b1/*gb2312*/, 0x6c28/*utf16*/, {0xe6,0xb0,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb0b2/*gb2312*/, 0x5b89/*utf16*/, {0xe5,0xae,0x89}/*utf8*/, 3/*utf8 len*/},{0xb0b3/*gb2312*/, 0x4ffa/*utf16*/, {0xe4,0xbf,0xba}/*utf8*/, 3/*utf8 len*/},{0xb0b4/*gb2312*/, 0x6309/*utf16*/, {0xe6,0x8c,0x89}/*utf8*/, 3/*utf8 len*/},{0xb0b5/*gb2312*/, 0x6697/*utf16*/, {0xe6,0x9a,0x97}/*utf8*/, 3/*utf8 len*/},{0xb0b6/*gb2312*/, 0x5cb8/*utf16*/, {0xe5,0xb2,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb0b7/*gb2312*/, 0x80fa/*utf16*/, {0xe8,0x83,0xba}/*utf8*/, 3/*utf8 len*/},{0xb0b8/*gb2312*/, 0x6848/*utf16*/, {0xe6,0xa1,0x88}/*utf8*/, 3/*utf8 len*/},{0xb0b9/*gb2312*/, 0x80ae/*utf16*/, {0xe8,0x82,0xae}/*utf8*/, 3/*utf8 len*/},{0xb0ba/*gb2312*/, 0x6602/*utf16*/, {0xe6,0x98,0x82}/*utf8*/, 3/*utf8 len*/},{0xb0bb/*gb2312*/, 0x76ce/*utf16*/, {0xe7,0x9b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb0bc/*gb2312*/, 0x51f9/*utf16*/, {0xe5,0x87,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb0bd/*gb2312*/, 0x6556/*utf16*/, {0xe6,0x95,0x96}/*utf8*/, 3/*utf8 len*/},{0xb0be/*gb2312*/, 0x71ac/*utf16*/, {0xe7,0x86,0xac}/*utf8*/, 3/*utf8 len*/},{0xb0bf/*gb2312*/, 0x7ff1/*utf16*/, {0xe7,0xbf,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb0c0/*gb2312*/, 0x8884/*utf16*/, {0xe8,0xa2,0x84}/*utf8*/, 3/*utf8 len*/},{0xb0c1/*gb2312*/, 0x50b2/*utf16*/, {0xe5,0x82,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb0c2/*gb2312*/, 0x5965/*utf16*/, {0xe5,0xa5,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb0c3/*gb2312*/, 0x61ca/*utf16*/, {0xe6,0x87,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb0c4/*gb2312*/, 0x6fb3/*utf16*/, {0xe6,0xbe,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb0c5/*gb2312*/, 0x82ad/*utf16*/, {0xe8,0x8a,0xad}/*utf8*/, 3/*utf8 len*/},{0xb0c6/*gb2312*/, 0x634c/*utf16*/, {0xe6,0x8d,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb0c7/*gb2312*/, 0x6252/*utf16*/, {0xe6,0x89,0x92}/*utf8*/, 3/*utf8 len*/},{0xb0c8/*gb2312*/, 0x53ed/*utf16*/, {0xe5,0x8f,0xad}/*utf8*/, 3/*utf8 len*/},{0xb0c9/*gb2312*/, 0x5427/*utf16*/, {0xe5,0x90,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb0ca/*gb2312*/, 0x7b06/*utf16*/, {0xe7,0xac,0x86}/*utf8*/, 3/*utf8 len*/},{0xb0cb/*gb2312*/, 0x516b/*utf16*/, {0xe5,0x85,0xab}/*utf8*/, 3/*utf8 len*/},{0xb0cc/*gb2312*/, 0x75a4/*utf16*/, {0xe7,0x96,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb0cd/*gb2312*/, 0x5df4/*utf16*/, {0xe5,0xb7,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb0ce/*gb2312*/, 0x62d4/*utf16*/, {0xe6,0x8b,0x94}/*utf8*/, 3/*utf8 len*/},{0xb0cf/*gb2312*/, 0x8dcb/*utf16*/, {0xe8,0xb7,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb0d0/*gb2312*/, 0x9776/*utf16*/, {0xe9,0x9d,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb0d1/*gb2312*/, 0x628a/*utf16*/, {0xe6,0x8a,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb0d2/*gb2312*/, 0x8019/*utf16*/, {0xe8,0x80,0x99}/*utf8*/, 3/*utf8 len*/},{0xb0d3/*gb2312*/, 0x575d/*utf16*/, {0xe5,0x9d,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb0d4/*gb2312*/, 0x9738/*utf16*/, {0xe9,0x9c,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb0d5/*gb2312*/, 0x7f62/*utf16*/, {0xe7,0xbd,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb0d6/*gb2312*/, 0x7238/*utf16*/, {0xe7,0x88,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb0d7/*gb2312*/, 0x767d/*utf16*/, {0xe7,0x99,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb0d8/*gb2312*/, 0x67cf/*utf16*/, {0xe6,0x9f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb0d9/*gb2312*/, 0x767e/*utf16*/, {0xe7,0x99,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb0da/*gb2312*/, 0x6446/*utf16*/, {0xe6,0x91,0x86}/*utf8*/, 3/*utf8 len*/},{0xb0db/*gb2312*/, 0x4f70/*utf16*/, {0xe4,0xbd,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb0dc/*gb2312*/, 0x8d25/*utf16*/, {0xe8,0xb4,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb0dd/*gb2312*/, 0x62dc/*utf16*/, {0xe6,0x8b,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb0de/*gb2312*/, 0x7a17/*utf16*/, {0xe7,0xa8,0x97}/*utf8*/, 3/*utf8 len*/},{0xb0df/*gb2312*/, 0x6591/*utf16*/, {0xe6,0x96,0x91}/*utf8*/, 3/*utf8 len*/},{0xb0e0/*gb2312*/, 0x73ed/*utf16*/, {0xe7,0x8f,0xad}/*utf8*/, 3/*utf8 len*/},{0xb0e1/*gb2312*/, 0x642c/*utf16*/, {0xe6,0x90,0xac}/*utf8*/, 3/*utf8 len*/},{0xb0e2/*gb2312*/, 0x6273/*utf16*/, {0xe6,0x89,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb0e3/*gb2312*/, 0x822c/*utf16*/, {0xe8,0x88,0xac}/*utf8*/, 3/*utf8 len*/},{0xb0e4/*gb2312*/, 0x9881/*utf16*/, {0xe9,0xa2,0x81}/*utf8*/, 3/*utf8 len*/},{0xb0e5/*gb2312*/, 0x677f/*utf16*/, {0xe6,0x9d,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb0e6/*gb2312*/, 0x7248/*utf16*/, {0xe7,0x89,0x88}/*utf8*/, 3/*utf8 len*/},{0xb0e7/*gb2312*/, 0x626e/*utf16*/, {0xe6,0x89,0xae}/*utf8*/, 3/*utf8 len*/},{0xb0e8/*gb2312*/, 0x62cc/*utf16*/, {0xe6,0x8b,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb0e9/*gb2312*/, 0x4f34/*utf16*/, {0xe4,0xbc,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb0ea/*gb2312*/, 0x74e3/*utf16*/, {0xe7,0x93,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb0eb/*gb2312*/, 0x534a/*utf16*/, {0xe5,0x8d,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb0ec/*gb2312*/, 0x529e/*utf16*/, {0xe5,0x8a,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb0ed/*gb2312*/, 0x7eca/*utf16*/, {0xe7,0xbb,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb0ee/*gb2312*/, 0x90a6/*utf16*/, {0xe9,0x82,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb0ef/*gb2312*/, 0x5e2e/*utf16*/, {0xe5,0xb8,0xae}/*utf8*/, 3/*utf8 len*/},{0xb0f0/*gb2312*/, 0x6886/*utf16*/, {0xe6,0xa2,0x86}/*utf8*/, 3/*utf8 len*/},{0xb0f1/*gb2312*/, 0x699c/*utf16*/, {0xe6,0xa6,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb0f2/*gb2312*/, 0x8180/*utf16*/, {0xe8,0x86,0x80}/*utf8*/, 3/*utf8 len*/},{0xb0f3/*gb2312*/, 0x7ed1/*utf16*/, {0xe7,0xbb,0x91}/*utf8*/, 3/*utf8 len*/},{0xb0f4/*gb2312*/, 0x68d2/*utf16*/, {0xe6,0xa3,0x92}/*utf8*/, 3/*utf8 len*/},{0xb0f5/*gb2312*/, 0x78c5/*utf16*/, {0xe7,0xa3,0x85}/*utf8*/, 3/*utf8 len*/},{0xb0f6/*gb2312*/, 0x868c/*utf16*/, {0xe8,0x9a,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb0f7/*gb2312*/, 0x9551/*utf16*/, {0xe9,0x95,0x91}/*utf8*/, 3/*utf8 len*/},{0xb0f8/*gb2312*/, 0x508d/*utf16*/, {0xe5,0x82,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb0f9/*gb2312*/, 0x8c24/*utf16*/, {0xe8,0xb0,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb0fa/*gb2312*/, 0x82de/*utf16*/, {0xe8,0x8b,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb0fb/*gb2312*/, 0x80de/*utf16*/, {0xe8,0x83,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb0fc/*gb2312*/, 0x5305/*utf16*/, {0xe5,0x8c,0x85}/*utf8*/, 3/*utf8 len*/},{0xb0fd/*gb2312*/, 0x8912/*utf16*/, {0xe8,0xa4,0x92}/*utf8*/, 3/*utf8 len*/},{0xb0fe/*gb2312*/, 0x5265/*utf16*/, {0xe5,0x89,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb1a1/*gb2312*/, 0x8584/*utf16*/, {0xe8,0x96,0x84}/*utf8*/, 3/*utf8 len*/},{0xb1a2/*gb2312*/, 0x96f9/*utf16*/, {0xe9,0x9b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb1a3/*gb2312*/, 0x4fdd/*utf16*/, {0xe4,0xbf,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb1a4/*gb2312*/, 0x5821/*utf16*/, {0xe5,0xa0,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb1a5/*gb2312*/, 0x9971/*utf16*/, {0xe9,0xa5,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb1a6/*gb2312*/, 0x5b9d/*utf16*/, {0xe5,0xae,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb1a7/*gb2312*/, 0x62b1/*utf16*/, {0xe6,0x8a,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb1a8/*gb2312*/, 0x62a5/*utf16*/, {0xe6,0x8a,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb1a9/*gb2312*/, 0x66b4/*utf16*/, {0xe6,0x9a,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb1aa/*gb2312*/, 0x8c79/*utf16*/, {0xe8,0xb1,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb1ab/*gb2312*/, 0x9c8d/*utf16*/, {0xe9,0xb2,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb1ac/*gb2312*/, 0x7206/*utf16*/, {0xe7,0x88,0x86}/*utf8*/, 3/*utf8 len*/},{0xb1ad/*gb2312*/, 0x676f/*utf16*/, {0xe6,0x9d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb1ae/*gb2312*/, 0x7891/*utf16*/, {0xe7,0xa2,0x91}/*utf8*/, 3/*utf8 len*/},{0xb1af/*gb2312*/, 0x60b2/*utf16*/, {0xe6,0x82,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb1b0/*gb2312*/, 0x5351/*utf16*/, {0xe5,0x8d,0x91}/*utf8*/, 3/*utf8 len*/},{0xb1b1/*gb2312*/, 0x5317/*utf16*/, {0xe5,0x8c,0x97}/*utf8*/, 3/*utf8 len*/},{0xb1b2/*gb2312*/, 0x8f88/*utf16*/, {0xe8,0xbe,0x88}/*utf8*/, 3/*utf8 len*/},{0xb1b3/*gb2312*/, 0x80cc/*utf16*/, {0xe8,0x83,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb1b4/*gb2312*/, 0x8d1d/*utf16*/, {0xe8,0xb4,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb1b5/*gb2312*/, 0x94a1/*utf16*/, {0xe9,0x92,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb1b6/*gb2312*/, 0x500d/*utf16*/, {0xe5,0x80,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb1b7/*gb2312*/, 0x72c8/*utf16*/, {0xe7,0x8b,0x88}/*utf8*/, 3/*utf8 len*/},{0xb1b8/*gb2312*/, 0x5907/*utf16*/, {0xe5,0xa4,0x87}/*utf8*/, 3/*utf8 len*/},{0xb1b9/*gb2312*/, 0x60eb/*utf16*/, {0xe6,0x83,0xab}/*utf8*/, 3/*utf8 len*/},{0xb1ba/*gb2312*/, 0x7119/*utf16*/, {0xe7,0x84,0x99}/*utf8*/, 3/*utf8 len*/},{0xb1bb/*gb2312*/, 0x88ab/*utf16*/, {0xe8,0xa2,0xab}/*utf8*/, 3/*utf8 len*/},{0xb1bc/*gb2312*/, 0x5954/*utf16*/, {0xe5,0xa5,0x94}/*utf8*/, 3/*utf8 len*/},{0xb1bd/*gb2312*/, 0x82ef/*utf16*/, {0xe8,0x8b,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb1be/*gb2312*/, 0x672c/*utf16*/, {0xe6,0x9c,0xac}/*utf8*/, 3/*utf8 len*/},{0xb1bf/*gb2312*/, 0x7b28/*utf16*/, {0xe7,0xac,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb1c0/*gb2312*/, 0x5d29/*utf16*/, {0xe5,0xb4,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb1c1/*gb2312*/, 0x7ef7/*utf16*/, {0xe7,0xbb,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb1c2/*gb2312*/, 0x752d/*utf16*/, {0xe7,0x94,0xad}/*utf8*/, 3/*utf8 len*/},{0xb1c3/*gb2312*/, 0x6cf5/*utf16*/, {0xe6,0xb3,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb1c4/*gb2312*/, 0x8e66/*utf16*/, {0xe8,0xb9,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb1c5/*gb2312*/, 0x8ff8/*utf16*/, {0xe8,0xbf,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb1c6/*gb2312*/, 0x903c/*utf16*/, {0xe9,0x80,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb1c7/*gb2312*/, 0x9f3b/*utf16*/, {0xe9,0xbc,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb1c8/*gb2312*/, 0x6bd4/*utf16*/, {0xe6,0xaf,0x94}/*utf8*/, 3/*utf8 len*/},{0xb1c9/*gb2312*/, 0x9119/*utf16*/, {0xe9,0x84,0x99}/*utf8*/, 3/*utf8 len*/},{0xb1ca/*gb2312*/, 0x7b14/*utf16*/, {0xe7,0xac,0x94}/*utf8*/, 3/*utf8 len*/},{0xb1cb/*gb2312*/, 0x5f7c/*utf16*/, {0xe5,0xbd,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb1cc/*gb2312*/, 0x78a7/*utf16*/, {0xe7,0xa2,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb1cd/*gb2312*/, 0x84d6/*utf16*/, {0xe8,0x93,0x96}/*utf8*/, 3/*utf8 len*/},{0xb1ce/*gb2312*/, 0x853d/*utf16*/, {0xe8,0x94,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb1cf/*gb2312*/, 0x6bd5/*utf16*/, {0xe6,0xaf,0x95}/*utf8*/, 3/*utf8 len*/},{0xb1d0/*gb2312*/, 0x6bd9/*utf16*/, {0xe6,0xaf,0x99}/*utf8*/, 3/*utf8 len*/},{0xb1d1/*gb2312*/, 0x6bd6/*utf16*/, {0xe6,0xaf,0x96}/*utf8*/, 3/*utf8 len*/},{0xb1d2/*gb2312*/, 0x5e01/*utf16*/, {0xe5,0xb8,0x81}/*utf8*/, 3/*utf8 len*/},{0xb1d3/*gb2312*/, 0x5e87/*utf16*/, {0xe5,0xba,0x87}/*utf8*/, 3/*utf8 len*/},{0xb1d4/*gb2312*/, 0x75f9/*utf16*/, {0xe7,0x97,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb1d5/*gb2312*/, 0x95ed/*utf16*/, {0xe9,0x97,0xad}/*utf8*/, 3/*utf8 len*/},{0xb1d6/*gb2312*/, 0x655d/*utf16*/, {0xe6,0x95,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb1d7/*gb2312*/, 0x5f0a/*utf16*/, {0xe5,0xbc,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb1d8/*gb2312*/, 0x5fc5/*utf16*/, {0xe5,0xbf,0x85}/*utf8*/, 3/*utf8 len*/},{0xb1d9/*gb2312*/, 0x8f9f/*utf16*/, {0xe8,0xbe,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb1da/*gb2312*/, 0x58c1/*utf16*/, {0xe5,0xa3,0x81}/*utf8*/, 3/*utf8 len*/},{0xb1db/*gb2312*/, 0x81c2/*utf16*/, {0xe8,0x87,0x82}/*utf8*/, 3/*utf8 len*/},{0xb1dc/*gb2312*/, 0x907f/*utf16*/, {0xe9,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb1dd/*gb2312*/, 0x965b/*utf16*/, {0xe9,0x99,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb1de/*gb2312*/, 0x97ad/*utf16*/, {0xe9,0x9e,0xad}/*utf8*/, 3/*utf8 len*/},{0xb1df/*gb2312*/, 0x8fb9/*utf16*/, {0xe8,0xbe,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb1e0/*gb2312*/, 0x7f16/*utf16*/, {0xe7,0xbc,0x96}/*utf8*/, 3/*utf8 len*/},{0xb1e1/*gb2312*/, 0x8d2c/*utf16*/, {0xe8,0xb4,0xac}/*utf8*/, 3/*utf8 len*/},{0xb1e2/*gb2312*/, 0x6241/*utf16*/, {0xe6,0x89,0x81}/*utf8*/, 3/*utf8 len*/},{0xb1e3/*gb2312*/, 0x4fbf/*utf16*/, {0xe4,0xbe,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb1e4/*gb2312*/, 0x53d8/*utf16*/, {0xe5,0x8f,0x98}/*utf8*/, 3/*utf8 len*/},{0xb1e5/*gb2312*/, 0x535e/*utf16*/, {0xe5,0x8d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb1e6/*gb2312*/, 0x8fa8/*utf16*/, {0xe8,0xbe,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb1e7/*gb2312*/, 0x8fa9/*utf16*/, {0xe8,0xbe,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb1e8/*gb2312*/, 0x8fab/*utf16*/, {0xe8,0xbe,0xab}/*utf8*/, 3/*utf8 len*/},{0xb1e9/*gb2312*/, 0x904d/*utf16*/, {0xe9,0x81,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb1ea/*gb2312*/, 0x6807/*utf16*/, {0xe6,0xa0,0x87}/*utf8*/, 3/*utf8 len*/},{0xb1eb/*gb2312*/, 0x5f6a/*utf16*/, {0xe5,0xbd,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb1ec/*gb2312*/, 0x8198/*utf16*/, {0xe8,0x86,0x98}/*utf8*/, 3/*utf8 len*/},{0xb1ed/*gb2312*/, 0x8868/*utf16*/, {0xe8,0xa1,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb1ee/*gb2312*/, 0x9cd6/*utf16*/, {0xe9,0xb3,0x96}/*utf8*/, 3/*utf8 len*/},{0xb1ef/*gb2312*/, 0x618b/*utf16*/, {0xe6,0x86,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb1f0/*gb2312*/, 0x522b/*utf16*/, {0xe5,0x88,0xab}/*utf8*/, 3/*utf8 len*/},{0xb1f1/*gb2312*/, 0x762a/*utf16*/, {0xe7,0x98,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb1f2/*gb2312*/, 0x5f6c/*utf16*/, {0xe5,0xbd,0xac}/*utf8*/, 3/*utf8 len*/},{0xb1f3/*gb2312*/, 0x658c/*utf16*/, {0xe6,0x96,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb1f4/*gb2312*/, 0x6fd2/*utf16*/, {0xe6,0xbf,0x92}/*utf8*/, 3/*utf8 len*/},{0xb1f5/*gb2312*/, 0x6ee8/*utf16*/, {0xe6,0xbb,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb1f6/*gb2312*/, 0x5bbe/*utf16*/, {0xe5,0xae,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb1f7/*gb2312*/, 0x6448/*utf16*/, {0xe6,0x91,0x88}/*utf8*/, 3/*utf8 len*/},{0xb1f8/*gb2312*/, 0x5175/*utf16*/, {0xe5,0x85,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb1f9/*gb2312*/, 0x51b0/*utf16*/, {0xe5,0x86,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb1fa/*gb2312*/, 0x67c4/*utf16*/, {0xe6,0x9f,0x84}/*utf8*/, 3/*utf8 len*/},{0xb1fb/*gb2312*/, 0x4e19/*utf16*/, {0xe4,0xb8,0x99}/*utf8*/, 3/*utf8 len*/},{0xb1fc/*gb2312*/, 0x79c9/*utf16*/, {0xe7,0xa7,0x89}/*utf8*/, 3/*utf8 len*/},{0xb1fd/*gb2312*/, 0x997c/*utf16*/, {0xe9,0xa5,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb1fe/*gb2312*/, 0x70b3/*utf16*/, {0xe7,0x82,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb2a1/*gb2312*/, 0x75c5/*utf16*/, {0xe7,0x97,0x85}/*utf8*/, 3/*utf8 len*/},{0xb2a2/*gb2312*/, 0x5e76/*utf16*/, {0xe5,0xb9,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb2a3/*gb2312*/, 0x73bb/*utf16*/, {0xe7,0x8e,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb2a4/*gb2312*/, 0x83e0/*utf16*/, {0xe8,0x8f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb2a5/*gb2312*/, 0x64ad/*utf16*/, {0xe6,0x92,0xad}/*utf8*/, 3/*utf8 len*/},{0xb2a6/*gb2312*/, 0x62e8/*utf16*/, {0xe6,0x8b,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb2a7/*gb2312*/, 0x94b5/*utf16*/, {0xe9,0x92,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb2a8/*gb2312*/, 0x6ce2/*utf16*/, {0xe6,0xb3,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb2a9/*gb2312*/, 0x535a/*utf16*/, {0xe5,0x8d,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb2aa/*gb2312*/, 0x52c3/*utf16*/, {0xe5,0x8b,0x83}/*utf8*/, 3/*utf8 len*/},{0xb2ab/*gb2312*/, 0x640f/*utf16*/, {0xe6,0x90,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb2ac/*gb2312*/, 0x94c2/*utf16*/, {0xe9,0x93,0x82}/*utf8*/, 3/*utf8 len*/},{0xb2ad/*gb2312*/, 0x7b94/*utf16*/, {0xe7,0xae,0x94}/*utf8*/, 3/*utf8 len*/},{0xb2ae/*gb2312*/, 0x4f2f/*utf16*/, {0xe4,0xbc,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb2af/*gb2312*/, 0x5e1b/*utf16*/, {0xe5,0xb8,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb2b0/*gb2312*/, 0x8236/*utf16*/, {0xe8,0x88,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb2b1/*gb2312*/, 0x8116/*utf16*/, {0xe8,0x84,0x96}/*utf8*/, 3/*utf8 len*/},{0xb2b2/*gb2312*/, 0x818a/*utf16*/, {0xe8,0x86,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb2b3/*gb2312*/, 0x6e24/*utf16*/, {0xe6,0xb8,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb2b4/*gb2312*/, 0x6cca/*utf16*/, {0xe6,0xb3,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb2b5/*gb2312*/, 0x9a73/*utf16*/, {0xe9,0xa9,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb2b6/*gb2312*/, 0x6355/*utf16*/, {0xe6,0x8d,0x95}/*utf8*/, 3/*utf8 len*/},{0xb2b7/*gb2312*/, 0x535c/*utf16*/, {0xe5,0x8d,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb2b8/*gb2312*/, 0x54fa/*utf16*/, {0xe5,0x93,0xba}/*utf8*/, 3/*utf8 len*/},{0xb2b9/*gb2312*/, 0x8865/*utf16*/, {0xe8,0xa1,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb2ba/*gb2312*/, 0x57e0/*utf16*/, {0xe5,0x9f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb2bb/*gb2312*/, 0x4e0d/*utf16*/, {0xe4,0xb8,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb2bc/*gb2312*/, 0x5e03/*utf16*/, {0xe5,0xb8,0x83}/*utf8*/, 3/*utf8 len*/},{0xb2bd/*gb2312*/, 0x6b65/*utf16*/, {0xe6,0xad,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb2be/*gb2312*/, 0x7c3f/*utf16*/, {0xe7,0xb0,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb2bf/*gb2312*/, 0x90e8/*utf16*/, {0xe9,0x83,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb2c0/*gb2312*/, 0x6016/*utf16*/, {0xe6,0x80,0x96}/*utf8*/, 3/*utf8 len*/},{0xb2c1/*gb2312*/, 0x64e6/*utf16*/, {0xe6,0x93,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb2c2/*gb2312*/, 0x731c/*utf16*/, {0xe7,0x8c,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb2c3/*gb2312*/, 0x88c1/*utf16*/, {0xe8,0xa3,0x81}/*utf8*/, 3/*utf8 len*/},{0xb2c4/*gb2312*/, 0x6750/*utf16*/, {0xe6,0x9d,0x90}/*utf8*/, 3/*utf8 len*/},{0xb2c5/*gb2312*/, 0x624d/*utf16*/, {0xe6,0x89,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb2c6/*gb2312*/, 0x8d22/*utf16*/, {0xe8,0xb4,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb2c7/*gb2312*/, 0x776c/*utf16*/, {0xe7,0x9d,0xac}/*utf8*/, 3/*utf8 len*/},{0xb2c8/*gb2312*/, 0x8e29/*utf16*/, {0xe8,0xb8,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb2c9/*gb2312*/, 0x91c7/*utf16*/, {0xe9,0x87,0x87}/*utf8*/, 3/*utf8 len*/},{0xb2ca/*gb2312*/, 0x5f69/*utf16*/, {0xe5,0xbd,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb2cb/*gb2312*/, 0x83dc/*utf16*/, {0xe8,0x8f,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb2cc/*gb2312*/, 0x8521/*utf16*/, {0xe8,0x94,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb2cd/*gb2312*/, 0x9910/*utf16*/, {0xe9,0xa4,0x90}/*utf8*/, 3/*utf8 len*/},{0xb2ce/*gb2312*/, 0x53c2/*utf16*/, {0xe5,0x8f,0x82}/*utf8*/, 3/*utf8 len*/},{0xb2cf/*gb2312*/, 0x8695/*utf16*/, {0xe8,0x9a,0x95}/*utf8*/, 3/*utf8 len*/},{0xb2d0/*gb2312*/, 0x6b8b/*utf16*/, {0xe6,0xae,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb2d1/*gb2312*/, 0x60ed/*utf16*/, {0xe6,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xb2d2/*gb2312*/, 0x60e8/*utf16*/, {0xe6,0x83,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb2d3/*gb2312*/, 0x707f/*utf16*/, {0xe7,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb2d4/*gb2312*/, 0x82cd/*utf16*/, {0xe8,0x8b,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb2d5/*gb2312*/, 0x8231/*utf16*/, {0xe8,0x88,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb2d6/*gb2312*/, 0x4ed3/*utf16*/, {0xe4,0xbb,0x93}/*utf8*/, 3/*utf8 len*/},{0xb2d7/*gb2312*/, 0x6ca7/*utf16*/, {0xe6,0xb2,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb2d8/*gb2312*/, 0x85cf/*utf16*/, {0xe8,0x97,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb2d9/*gb2312*/, 0x64cd/*utf16*/, {0xe6,0x93,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb2da/*gb2312*/, 0x7cd9/*utf16*/, {0xe7,0xb3,0x99}/*utf8*/, 3/*utf8 len*/},{0xb2db/*gb2312*/, 0x69fd/*utf16*/, {0xe6,0xa7,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb2dc/*gb2312*/, 0x66f9/*utf16*/, {0xe6,0x9b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb2dd/*gb2312*/, 0x8349/*utf16*/, {0xe8,0x8d,0x89}/*utf8*/, 3/*utf8 len*/},{0xb2de/*gb2312*/, 0x5395/*utf16*/, {0xe5,0x8e,0x95}/*utf8*/, 3/*utf8 len*/},{0xb2df/*gb2312*/, 0x7b56/*utf16*/, {0xe7,0xad,0x96}/*utf8*/, 3/*utf8 len*/},{0xb2e0/*gb2312*/, 0x4fa7/*utf16*/, {0xe4,0xbe,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb2e1/*gb2312*/, 0x518c/*utf16*/, {0xe5,0x86,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb2e2/*gb2312*/, 0x6d4b/*utf16*/, {0xe6,0xb5,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb2e3/*gb2312*/, 0x5c42/*utf16*/, {0xe5,0xb1,0x82}/*utf8*/, 3/*utf8 len*/},{0xb2e4/*gb2312*/, 0x8e6d/*utf16*/, {0xe8,0xb9,0xad}/*utf8*/, 3/*utf8 len*/},{0xb2e5/*gb2312*/, 0x63d2/*utf16*/, {0xe6,0x8f,0x92}/*utf8*/, 3/*utf8 len*/},{0xb2e6/*gb2312*/, 0x53c9/*utf16*/, {0xe5,0x8f,0x89}/*utf8*/, 3/*utf8 len*/},{0xb2e7/*gb2312*/, 0x832c/*utf16*/, {0xe8,0x8c,0xac}/*utf8*/, 3/*utf8 len*/},{0xb2e8/*gb2312*/, 0x8336/*utf16*/, {0xe8,0x8c,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb2e9/*gb2312*/, 0x67e5/*utf16*/, {0xe6,0x9f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb2ea/*gb2312*/, 0x78b4/*utf16*/, {0xe7,0xa2,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb2eb/*gb2312*/, 0x643d/*utf16*/, {0xe6,0x90,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb2ec/*gb2312*/, 0x5bdf/*utf16*/, {0xe5,0xaf,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb2ed/*gb2312*/, 0x5c94/*utf16*/, {0xe5,0xb2,0x94}/*utf8*/, 3/*utf8 len*/},{0xb2ee/*gb2312*/, 0x5dee/*utf16*/, {0xe5,0xb7,0xae}/*utf8*/, 3/*utf8 len*/},{0xb2ef/*gb2312*/, 0x8be7/*utf16*/, {0xe8,0xaf,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb2f0/*gb2312*/, 0x62c6/*utf16*/, {0xe6,0x8b,0x86}/*utf8*/, 3/*utf8 len*/},{0xb2f1/*gb2312*/, 0x67f4/*utf16*/, {0xe6,0x9f,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb2f2/*gb2312*/, 0x8c7a/*utf16*/, {0xe8,0xb1,0xba}/*utf8*/, 3/*utf8 len*/},{0xb2f3/*gb2312*/, 0x6400/*utf16*/, {0xe6,0x90,0x80}/*utf8*/, 3/*utf8 len*/},{0xb2f4/*gb2312*/, 0x63ba/*utf16*/, {0xe6,0x8e,0xba}/*utf8*/, 3/*utf8 len*/},{0xb2f5/*gb2312*/, 0x8749/*utf16*/, {0xe8,0x9d,0x89}/*utf8*/, 3/*utf8 len*/},{0xb2f6/*gb2312*/, 0x998b/*utf16*/, {0xe9,0xa6,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb2f7/*gb2312*/, 0x8c17/*utf16*/, {0xe8,0xb0,0x97}/*utf8*/, 3/*utf8 len*/},{0xb2f8/*gb2312*/, 0x7f20/*utf16*/, {0xe7,0xbc,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb2f9/*gb2312*/, 0x94f2/*utf16*/, {0xe9,0x93,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb2fa/*gb2312*/, 0x4ea7/*utf16*/, {0xe4,0xba,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb2fb/*gb2312*/, 0x9610/*utf16*/, {0xe9,0x98,0x90}/*utf8*/, 3/*utf8 len*/},{0xb2fc/*gb2312*/, 0x98a4/*utf16*/, {0xe9,0xa2,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb2fd/*gb2312*/, 0x660c/*utf16*/, {0xe6,0x98,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb2fe/*gb2312*/, 0x7316/*utf16*/, {0xe7,0x8c,0x96}/*utf8*/, 3/*utf8 len*/},{0xb3a1/*gb2312*/, 0x573a/*utf16*/, {0xe5,0x9c,0xba}/*utf8*/, 3/*utf8 len*/},{0xb3a2/*gb2312*/, 0x5c1d/*utf16*/, {0xe5,0xb0,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb3a3/*gb2312*/, 0x5e38/*utf16*/, {0xe5,0xb8,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb3a4/*gb2312*/, 0x957f/*utf16*/, {0xe9,0x95,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb3a5/*gb2312*/, 0x507f/*utf16*/, {0xe5,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb3a6/*gb2312*/, 0x80a0/*utf16*/, {0xe8,0x82,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb3a7/*gb2312*/, 0x5382/*utf16*/, {0xe5,0x8e,0x82}/*utf8*/, 3/*utf8 len*/},{0xb3a8/*gb2312*/, 0x655e/*utf16*/, {0xe6,0x95,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb3a9/*gb2312*/, 0x7545/*utf16*/, {0xe7,0x95,0x85}/*utf8*/, 3/*utf8 len*/},{0xb3aa/*gb2312*/, 0x5531/*utf16*/, {0xe5,0x94,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb3ab/*gb2312*/, 0x5021/*utf16*/, {0xe5,0x80,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb3ac/*gb2312*/, 0x8d85/*utf16*/, {0xe8,0xb6,0x85}/*utf8*/, 3/*utf8 len*/},{0xb3ad/*gb2312*/, 0x6284/*utf16*/, {0xe6,0x8a,0x84}/*utf8*/, 3/*utf8 len*/},{0xb3ae/*gb2312*/, 0x949e/*utf16*/, {0xe9,0x92,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb3af/*gb2312*/, 0x671d/*utf16*/, {0xe6,0x9c,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb3b0/*gb2312*/, 0x5632/*utf16*/, {0xe5,0x98,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb3b1/*gb2312*/, 0x6f6e/*utf16*/, {0xe6,0xbd,0xae}/*utf8*/, 3/*utf8 len*/},{0xb3b2/*gb2312*/, 0x5de2/*utf16*/, {0xe5,0xb7,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb3b3/*gb2312*/, 0x5435/*utf16*/, {0xe5,0x90,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb3b4/*gb2312*/, 0x7092/*utf16*/, {0xe7,0x82,0x92}/*utf8*/, 3/*utf8 len*/},{0xb3b5/*gb2312*/, 0x8f66/*utf16*/, {0xe8,0xbd,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb3b6/*gb2312*/, 0x626f/*utf16*/, {0xe6,0x89,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb3b7/*gb2312*/, 0x64a4/*utf16*/, {0xe6,0x92,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb3b8/*gb2312*/, 0x63a3/*utf16*/, {0xe6,0x8e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb3b9/*gb2312*/, 0x5f7b/*utf16*/, {0xe5,0xbd,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb3ba/*gb2312*/, 0x6f88/*utf16*/, {0xe6,0xbe,0x88}/*utf8*/, 3/*utf8 len*/},{0xb3bb/*gb2312*/, 0x90f4/*utf16*/, {0xe9,0x83,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb3bc/*gb2312*/, 0x81e3/*utf16*/, {0xe8,0x87,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb3bd/*gb2312*/, 0x8fb0/*utf16*/, {0xe8,0xbe,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb3be/*gb2312*/, 0x5c18/*utf16*/, {0xe5,0xb0,0x98}/*utf8*/, 3/*utf8 len*/},{0xb3bf/*gb2312*/, 0x6668/*utf16*/, {0xe6,0x99,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb3c0/*gb2312*/, 0x5ff1/*utf16*/, {0xe5,0xbf,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb3c1/*gb2312*/, 0x6c89/*utf16*/, {0xe6,0xb2,0x89}/*utf8*/, 3/*utf8 len*/},{0xb3c2/*gb2312*/, 0x9648/*utf16*/, {0xe9,0x99,0x88}/*utf8*/, 3/*utf8 len*/},{0xb3c3/*gb2312*/, 0x8d81/*utf16*/, {0xe8,0xb6,0x81}/*utf8*/, 3/*utf8 len*/},{0xb3c4/*gb2312*/, 0x886c/*utf16*/, {0xe8,0xa1,0xac}/*utf8*/, 3/*utf8 len*/},{0xb3c5/*gb2312*/, 0x6491/*utf16*/, {0xe6,0x92,0x91}/*utf8*/, 3/*utf8 len*/},{0xb3c6/*gb2312*/, 0x79f0/*utf16*/, {0xe7,0xa7,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb3c7/*gb2312*/, 0x57ce/*utf16*/, {0xe5,0x9f,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb3c8/*gb2312*/, 0x6a59/*utf16*/, {0xe6,0xa9,0x99}/*utf8*/, 3/*utf8 len*/},{0xb3c9/*gb2312*/, 0x6210/*utf16*/, {0xe6,0x88,0x90}/*utf8*/, 3/*utf8 len*/},{0xb3ca/*gb2312*/, 0x5448/*utf16*/, {0xe5,0x91,0x88}/*utf8*/, 3/*utf8 len*/},{0xb3cb/*gb2312*/, 0x4e58/*utf16*/, {0xe4,0xb9,0x98}/*utf8*/, 3/*utf8 len*/},{0xb3cc/*gb2312*/, 0x7a0b/*utf16*/, {0xe7,0xa8,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb3cd/*gb2312*/, 0x60e9/*utf16*/, {0xe6,0x83,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb3ce/*gb2312*/, 0x6f84/*utf16*/, {0xe6,0xbe,0x84}/*utf8*/, 3/*utf8 len*/},{0xb3cf/*gb2312*/, 0x8bda/*utf16*/, {0xe8,0xaf,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb3d0/*gb2312*/, 0x627f/*utf16*/, {0xe6,0x89,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb3d1/*gb2312*/, 0x901e/*utf16*/, {0xe9,0x80,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb3d2/*gb2312*/, 0x9a8b/*utf16*/, {0xe9,0xaa,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb3d3/*gb2312*/, 0x79e4/*utf16*/, {0xe7,0xa7,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb3d4/*gb2312*/, 0x5403/*utf16*/, {0xe5,0x90,0x83}/*utf8*/, 3/*utf8 len*/},{0xb3d5/*gb2312*/, 0x75f4/*utf16*/, {0xe7,0x97,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb3d6/*gb2312*/, 0x6301/*utf16*/, {0xe6,0x8c,0x81}/*utf8*/, 3/*utf8 len*/},{0xb3d7/*gb2312*/, 0x5319/*utf16*/, {0xe5,0x8c,0x99}/*utf8*/, 3/*utf8 len*/},{0xb3d8/*gb2312*/, 0x6c60/*utf16*/, {0xe6,0xb1,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb3d9/*gb2312*/, 0x8fdf/*utf16*/, {0xe8,0xbf,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb3da/*gb2312*/, 0x5f1b/*utf16*/, {0xe5,0xbc,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb3db/*gb2312*/, 0x9a70/*utf16*/, {0xe9,0xa9,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb3dc/*gb2312*/, 0x803b/*utf16*/, {0xe8,0x80,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb3dd/*gb2312*/, 0x9f7f/*utf16*/, {0xe9,0xbd,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb3de/*gb2312*/, 0x4f88/*utf16*/, {0xe4,0xbe,0x88}/*utf8*/, 3/*utf8 len*/},{0xb3df/*gb2312*/, 0x5c3a/*utf16*/, {0xe5,0xb0,0xba}/*utf8*/, 3/*utf8 len*/},{0xb3e0/*gb2312*/, 0x8d64/*utf16*/, {0xe8,0xb5,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb3e1/*gb2312*/, 0x7fc5/*utf16*/, {0xe7,0xbf,0x85}/*utf8*/, 3/*utf8 len*/},{0xb3e2/*gb2312*/, 0x65a5/*utf16*/, {0xe6,0x96,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb3e3/*gb2312*/, 0x70bd/*utf16*/, {0xe7,0x82,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb3e4/*gb2312*/, 0x5145/*utf16*/, {0xe5,0x85,0x85}/*utf8*/, 3/*utf8 len*/},{0xb3e5/*gb2312*/, 0x51b2/*utf16*/, {0xe5,0x86,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb3e6/*gb2312*/, 0x866b/*utf16*/, {0xe8,0x99,0xab}/*utf8*/, 3/*utf8 len*/},{0xb3e7/*gb2312*/, 0x5d07/*utf16*/, {0xe5,0xb4,0x87}/*utf8*/, 3/*utf8 len*/},{0xb3e8/*gb2312*/, 0x5ba0/*utf16*/, {0xe5,0xae,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb3e9/*gb2312*/, 0x62bd/*utf16*/, {0xe6,0x8a,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb3ea/*gb2312*/, 0x916c/*utf16*/, {0xe9,0x85,0xac}/*utf8*/, 3/*utf8 len*/},{0xb3eb/*gb2312*/, 0x7574/*utf16*/, {0xe7,0x95,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb3ec/*gb2312*/, 0x8e0c/*utf16*/, {0xe8,0xb8,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb3ed/*gb2312*/, 0x7a20/*utf16*/, {0xe7,0xa8,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb3ee/*gb2312*/, 0x6101/*utf16*/, {0xe6,0x84,0x81}/*utf8*/, 3/*utf8 len*/},{0xb3ef/*gb2312*/, 0x7b79/*utf16*/, {0xe7,0xad,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb3f0/*gb2312*/, 0x4ec7/*utf16*/, {0xe4,0xbb,0x87}/*utf8*/, 3/*utf8 len*/},{0xb3f1/*gb2312*/, 0x7ef8/*utf16*/, {0xe7,0xbb,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb3f2/*gb2312*/, 0x7785/*utf16*/, {0xe7,0x9e,0x85}/*utf8*/, 3/*utf8 len*/},{0xb3f3/*gb2312*/, 0x4e11/*utf16*/, {0xe4,0xb8,0x91}/*utf8*/, 3/*utf8 len*/},{0xb3f4/*gb2312*/, 0x81ed/*utf16*/, {0xe8,0x87,0xad}/*utf8*/, 3/*utf8 len*/},{0xb3f5/*gb2312*/, 0x521d/*utf16*/, {0xe5,0x88,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb3f6/*gb2312*/, 0x51fa/*utf16*/, {0xe5,0x87,0xba}/*utf8*/, 3/*utf8 len*/},{0xb3f7/*gb2312*/, 0x6a71/*utf16*/, {0xe6,0xa9,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb3f8/*gb2312*/, 0x53a8/*utf16*/, {0xe5,0x8e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb3f9/*gb2312*/, 0x8e87/*utf16*/, {0xe8,0xba,0x87}/*utf8*/, 3/*utf8 len*/},{0xb3fa/*gb2312*/, 0x9504/*utf16*/, {0xe9,0x94,0x84}/*utf8*/, 3/*utf8 len*/},{0xb3fb/*gb2312*/, 0x96cf/*utf16*/, {0xe9,0x9b,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb3fc/*gb2312*/, 0x6ec1/*utf16*/, {0xe6,0xbb,0x81}/*utf8*/, 3/*utf8 len*/},{0xb3fd/*gb2312*/, 0x9664/*utf16*/, {0xe9,0x99,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb3fe/*gb2312*/, 0x695a/*utf16*/, {0xe6,0xa5,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb4a1/*gb2312*/, 0x7840/*utf16*/, {0xe7,0xa1,0x80}/*utf8*/, 3/*utf8 len*/},{0xb4a2/*gb2312*/, 0x50a8/*utf16*/, {0xe5,0x82,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb4a3/*gb2312*/, 0x77d7/*utf16*/, {0xe7,0x9f,0x97}/*utf8*/, 3/*utf8 len*/},{0xb4a4/*gb2312*/, 0x6410/*utf16*/, {0xe6,0x90,0x90}/*utf8*/, 3/*utf8 len*/},{0xb4a5/*gb2312*/, 0x89e6/*utf16*/, {0xe8,0xa7,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb4a6/*gb2312*/, 0x5904/*utf16*/, {0xe5,0xa4,0x84}/*utf8*/, 3/*utf8 len*/},{0xb4a7/*gb2312*/, 0x63e3/*utf16*/, {0xe6,0x8f,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb4a8/*gb2312*/, 0x5ddd/*utf16*/, {0xe5,0xb7,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb4a9/*gb2312*/, 0x7a7f/*utf16*/, {0xe7,0xa9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb4aa/*gb2312*/, 0x693d/*utf16*/, {0xe6,0xa4,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb4ab/*gb2312*/, 0x4f20/*utf16*/, {0xe4,0xbc,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb4ac/*gb2312*/, 0x8239/*utf16*/, {0xe8,0x88,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb4ad/*gb2312*/, 0x5598/*utf16*/, {0xe5,0x96,0x98}/*utf8*/, 3/*utf8 len*/},{0xb4ae/*gb2312*/, 0x4e32/*utf16*/, {0xe4,0xb8,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb4af/*gb2312*/, 0x75ae/*utf16*/, {0xe7,0x96,0xae}/*utf8*/, 3/*utf8 len*/},{0xb4b0/*gb2312*/, 0x7a97/*utf16*/, {0xe7,0xaa,0x97}/*utf8*/, 3/*utf8 len*/},{0xb4b1/*gb2312*/, 0x5e62/*utf16*/, {0xe5,0xb9,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb4b2/*gb2312*/, 0x5e8a/*utf16*/, {0xe5,0xba,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb4b3/*gb2312*/, 0x95ef/*utf16*/, {0xe9,0x97,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb4b4/*gb2312*/, 0x521b/*utf16*/, {0xe5,0x88,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb4b5/*gb2312*/, 0x5439/*utf16*/, {0xe5,0x90,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb4b6/*gb2312*/, 0x708a/*utf16*/, {0xe7,0x82,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb4b7/*gb2312*/, 0x6376/*utf16*/, {0xe6,0x8d,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb4b8/*gb2312*/, 0x9524/*utf16*/, {0xe9,0x94,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb4b9/*gb2312*/, 0x5782/*utf16*/, {0xe5,0x9e,0x82}/*utf8*/, 3/*utf8 len*/},{0xb4ba/*gb2312*/, 0x6625/*utf16*/, {0xe6,0x98,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb4bb/*gb2312*/, 0x693f/*utf16*/, {0xe6,0xa4,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb4bc/*gb2312*/, 0x9187/*utf16*/, {0xe9,0x86,0x87}/*utf8*/, 3/*utf8 len*/},{0xb4bd/*gb2312*/, 0x5507/*utf16*/, {0xe5,0x94,0x87}/*utf8*/, 3/*utf8 len*/},{0xb4be/*gb2312*/, 0x6df3/*utf16*/, {0xe6,0xb7,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb4bf/*gb2312*/, 0x7eaf/*utf16*/, {0xe7,0xba,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb4c0/*gb2312*/, 0x8822/*utf16*/, {0xe8,0xa0,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb4c1/*gb2312*/, 0x6233/*utf16*/, {0xe6,0x88,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb4c2/*gb2312*/, 0x7ef0/*utf16*/, {0xe7,0xbb,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb4c3/*gb2312*/, 0x75b5/*utf16*/, {0xe7,0x96,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb4c4/*gb2312*/, 0x8328/*utf16*/, {0xe8,0x8c,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb4c5/*gb2312*/, 0x78c1/*utf16*/, {0xe7,0xa3,0x81}/*utf8*/, 3/*utf8 len*/},{0xb4c6/*gb2312*/, 0x96cc/*utf16*/, {0xe9,0x9b,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb4c7/*gb2312*/, 0x8f9e/*utf16*/, {0xe8,0xbe,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb4c8/*gb2312*/, 0x6148/*utf16*/, {0xe6,0x85,0x88}/*utf8*/, 3/*utf8 len*/},{0xb4c9/*gb2312*/, 0x74f7/*utf16*/, {0xe7,0x93,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb4ca/*gb2312*/, 0x8bcd/*utf16*/, {0xe8,0xaf,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb4cb/*gb2312*/, 0x6b64/*utf16*/, {0xe6,0xad,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb4cc/*gb2312*/, 0x523a/*utf16*/, {0xe5,0x88,0xba}/*utf8*/, 3/*utf8 len*/},{0xb4cd/*gb2312*/, 0x8d50/*utf16*/, {0xe8,0xb5,0x90}/*utf8*/, 3/*utf8 len*/},{0xb4ce/*gb2312*/, 0x6b21/*utf16*/, {0xe6,0xac,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb4cf/*gb2312*/, 0x806a/*utf16*/, {0xe8,0x81,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb4d0/*gb2312*/, 0x8471/*utf16*/, {0xe8,0x91,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb4d1/*gb2312*/, 0x56f1/*utf16*/, {0xe5,0x9b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb4d2/*gb2312*/, 0x5306/*utf16*/, {0xe5,0x8c,0x86}/*utf8*/, 3/*utf8 len*/},{0xb4d3/*gb2312*/, 0x4ece/*utf16*/, {0xe4,0xbb,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb4d4/*gb2312*/, 0x4e1b/*utf16*/, {0xe4,0xb8,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb4d5/*gb2312*/, 0x51d1/*utf16*/, {0xe5,0x87,0x91}/*utf8*/, 3/*utf8 len*/},{0xb4d6/*gb2312*/, 0x7c97/*utf16*/, {0xe7,0xb2,0x97}/*utf8*/, 3/*utf8 len*/},{0xb4d7/*gb2312*/, 0x918b/*utf16*/, {0xe9,0x86,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb4d8/*gb2312*/, 0x7c07/*utf16*/, {0xe7,0xb0,0x87}/*utf8*/, 3/*utf8 len*/},{0xb4d9/*gb2312*/, 0x4fc3/*utf16*/, {0xe4,0xbf,0x83}/*utf8*/, 3/*utf8 len*/},{0xb4da/*gb2312*/, 0x8e7f/*utf16*/, {0xe8,0xb9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb4db/*gb2312*/, 0x7be1/*utf16*/, {0xe7,0xaf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb4dc/*gb2312*/, 0x7a9c/*utf16*/, {0xe7,0xaa,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb4dd/*gb2312*/, 0x6467/*utf16*/, {0xe6,0x91,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb4de/*gb2312*/, 0x5d14/*utf16*/, {0xe5,0xb4,0x94}/*utf8*/, 3/*utf8 len*/},{0xb4df/*gb2312*/, 0x50ac/*utf16*/, {0xe5,0x82,0xac}/*utf8*/, 3/*utf8 len*/},{0xb4e0/*gb2312*/, 0x8106/*utf16*/, {0xe8,0x84,0x86}/*utf8*/, 3/*utf8 len*/},{0xb4e1/*gb2312*/, 0x7601/*utf16*/, {0xe7,0x98,0x81}/*utf8*/, 3/*utf8 len*/},{0xb4e2/*gb2312*/, 0x7cb9/*utf16*/, {0xe7,0xb2,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb4e3/*gb2312*/, 0x6dec/*utf16*/, {0xe6,0xb7,0xac}/*utf8*/, 3/*utf8 len*/},{0xb4e4/*gb2312*/, 0x7fe0/*utf16*/, {0xe7,0xbf,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb4e5/*gb2312*/, 0x6751/*utf16*/, {0xe6,0x9d,0x91}/*utf8*/, 3/*utf8 len*/},{0xb4e6/*gb2312*/, 0x5b58/*utf16*/, {0xe5,0xad,0x98}/*utf8*/, 3/*utf8 len*/},{0xb4e7/*gb2312*/, 0x5bf8/*utf16*/, {0xe5,0xaf,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb4e8/*gb2312*/, 0x78cb/*utf16*/, {0xe7,0xa3,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb4e9/*gb2312*/, 0x64ae/*utf16*/, {0xe6,0x92,0xae}/*utf8*/, 3/*utf8 len*/},{0xb4ea/*gb2312*/, 0x6413/*utf16*/, {0xe6,0x90,0x93}/*utf8*/, 3/*utf8 len*/},{0xb4eb/*gb2312*/, 0x63aa/*utf16*/, {0xe6,0x8e,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb4ec/*gb2312*/, 0x632b/*utf16*/, {0xe6,0x8c,0xab}/*utf8*/, 3/*utf8 len*/},{0xb4ed/*gb2312*/, 0x9519/*utf16*/, {0xe9,0x94,0x99}/*utf8*/, 3/*utf8 len*/},{0xb4ee/*gb2312*/, 0x642d/*utf16*/, {0xe6,0x90,0xad}/*utf8*/, 3/*utf8 len*/},{0xb4ef/*gb2312*/, 0x8fbe/*utf16*/, {0xe8,0xbe,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb4f0/*gb2312*/, 0x7b54/*utf16*/, {0xe7,0xad,0x94}/*utf8*/, 3/*utf8 len*/},{0xb4f1/*gb2312*/, 0x7629/*utf16*/, {0xe7,0x98,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb4f2/*gb2312*/, 0x6253/*utf16*/, {0xe6,0x89,0x93}/*utf8*/, 3/*utf8 len*/},{0xb4f3/*gb2312*/, 0x5927/*utf16*/, {0xe5,0xa4,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb4f4/*gb2312*/, 0x5446/*utf16*/, {0xe5,0x91,0x86}/*utf8*/, 3/*utf8 len*/},{0xb4f5/*gb2312*/, 0x6b79/*utf16*/, {0xe6,0xad,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb4f6/*gb2312*/, 0x50a3/*utf16*/, {0xe5,0x82,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb4f7/*gb2312*/, 0x6234/*utf16*/, {0xe6,0x88,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb4f8/*gb2312*/, 0x5e26/*utf16*/, {0xe5,0xb8,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb4f9/*gb2312*/, 0x6b86/*utf16*/, {0xe6,0xae,0x86}/*utf8*/, 3/*utf8 len*/},{0xb4fa/*gb2312*/, 0x4ee3/*utf16*/, {0xe4,0xbb,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb4fb/*gb2312*/, 0x8d37/*utf16*/, {0xe8,0xb4,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb4fc/*gb2312*/, 0x888b/*utf16*/, {0xe8,0xa2,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb4fd/*gb2312*/, 0x5f85/*utf16*/, {0xe5,0xbe,0x85}/*utf8*/, 3/*utf8 len*/},{0xb4fe/*gb2312*/, 0x902e/*utf16*/, {0xe9,0x80,0xae}/*utf8*/, 3/*utf8 len*/},{0xb5a1/*gb2312*/, 0x6020/*utf16*/, {0xe6,0x80,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb5a2/*gb2312*/, 0x803d/*utf16*/, {0xe8,0x80,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb5a3/*gb2312*/, 0x62c5/*utf16*/, {0xe6,0x8b,0x85}/*utf8*/, 3/*utf8 len*/},{0xb5a4/*gb2312*/, 0x4e39/*utf16*/, {0xe4,0xb8,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb5a5/*gb2312*/, 0x5355/*utf16*/, {0xe5,0x8d,0x95}/*utf8*/, 3/*utf8 len*/},{0xb5a6/*gb2312*/, 0x90f8/*utf16*/, {0xe9,0x83,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb5a7/*gb2312*/, 0x63b8/*utf16*/, {0xe6,0x8e,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb5a8/*gb2312*/, 0x80c6/*utf16*/, {0xe8,0x83,0x86}/*utf8*/, 3/*utf8 len*/},{0xb5a9/*gb2312*/, 0x65e6/*utf16*/, {0xe6,0x97,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb5aa/*gb2312*/, 0x6c2e/*utf16*/, {0xe6,0xb0,0xae}/*utf8*/, 3/*utf8 len*/},{0xb5ab/*gb2312*/, 0x4f46/*utf16*/, {0xe4,0xbd,0x86}/*utf8*/, 3/*utf8 len*/},{0xb5ac/*gb2312*/, 0x60ee/*utf16*/, {0xe6,0x83,0xae}/*utf8*/, 3/*utf8 len*/},{0xb5ad/*gb2312*/, 0x6de1/*utf16*/, {0xe6,0xb7,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb5ae/*gb2312*/, 0x8bde/*utf16*/, {0xe8,0xaf,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb5af/*gb2312*/, 0x5f39/*utf16*/, {0xe5,0xbc,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb5b0/*gb2312*/, 0x86cb/*utf16*/, {0xe8,0x9b,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb5b1/*gb2312*/, 0x5f53/*utf16*/, {0xe5,0xbd,0x93}/*utf8*/, 3/*utf8 len*/},{0xb5b2/*gb2312*/, 0x6321/*utf16*/, {0xe6,0x8c,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb5b3/*gb2312*/, 0x515a/*utf16*/, {0xe5,0x85,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb5b4/*gb2312*/, 0x8361/*utf16*/, {0xe8,0x8d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb5b5/*gb2312*/, 0x6863/*utf16*/, {0xe6,0xa1,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb5b6/*gb2312*/, 0x5200/*utf16*/, {0xe5,0x88,0x80}/*utf8*/, 3/*utf8 len*/},{0xb5b7/*gb2312*/, 0x6363/*utf16*/, {0xe6,0x8d,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb5b8/*gb2312*/, 0x8e48/*utf16*/, {0xe8,0xb9,0x88}/*utf8*/, 3/*utf8 len*/},{0xb5b9/*gb2312*/, 0x5012/*utf16*/, {0xe5,0x80,0x92}/*utf8*/, 3/*utf8 len*/},{0xb5ba/*gb2312*/, 0x5c9b/*utf16*/, {0xe5,0xb2,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb5bb/*gb2312*/, 0x7977/*utf16*/, {0xe7,0xa5,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb5bc/*gb2312*/, 0x5bfc/*utf16*/, {0xe5,0xaf,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb5bd/*gb2312*/, 0x5230/*utf16*/, {0xe5,0x88,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb5be/*gb2312*/, 0x7a3b/*utf16*/, {0xe7,0xa8,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb5bf/*gb2312*/, 0x60bc/*utf16*/, {0xe6,0x82,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb5c0/*gb2312*/, 0x9053/*utf16*/, {0xe9,0x81,0x93}/*utf8*/, 3/*utf8 len*/},{0xb5c1/*gb2312*/, 0x76d7/*utf16*/, {0xe7,0x9b,0x97}/*utf8*/, 3/*utf8 len*/},{0xb5c2/*gb2312*/, 0x5fb7/*utf16*/, {0xe5,0xbe,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb5c3/*gb2312*/, 0x5f97/*utf16*/, {0xe5,0xbe,0x97}/*utf8*/, 3/*utf8 len*/},{0xb5c4/*gb2312*/, 0x7684/*utf16*/, {0xe7,0x9a,0x84}/*utf8*/, 3/*utf8 len*/},{0xb5c5/*gb2312*/, 0x8e6c/*utf16*/, {0xe8,0xb9,0xac}/*utf8*/, 3/*utf8 len*/},{0xb5c6/*gb2312*/, 0x706f/*utf16*/, {0xe7,0x81,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb5c7/*gb2312*/, 0x767b/*utf16*/, {0xe7,0x99,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb5c8/*gb2312*/, 0x7b49/*utf16*/, {0xe7,0xad,0x89}/*utf8*/, 3/*utf8 len*/},{0xb5c9/*gb2312*/, 0x77aa/*utf16*/, {0xe7,0x9e,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb5ca/*gb2312*/, 0x51f3/*utf16*/, {0xe5,0x87,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb5cb/*gb2312*/, 0x9093/*utf16*/, {0xe9,0x82,0x93}/*utf8*/, 3/*utf8 len*/},{0xb5cc/*gb2312*/, 0x5824/*utf16*/, {0xe5,0xa0,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb5cd/*gb2312*/, 0x4f4e/*utf16*/, {0xe4,0xbd,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb5ce/*gb2312*/, 0x6ef4/*utf16*/, {0xe6,0xbb,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb5cf/*gb2312*/, 0x8fea/*utf16*/, {0xe8,0xbf,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb5d0/*gb2312*/, 0x654c/*utf16*/, {0xe6,0x95,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb5d1/*gb2312*/, 0x7b1b/*utf16*/, {0xe7,0xac,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb5d2/*gb2312*/, 0x72c4/*utf16*/, {0xe7,0x8b,0x84}/*utf8*/, 3/*utf8 len*/},{0xb5d3/*gb2312*/, 0x6da4/*utf16*/, {0xe6,0xb6,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb5d4/*gb2312*/, 0x7fdf/*utf16*/, {0xe7,0xbf,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb5d5/*gb2312*/, 0x5ae1/*utf16*/, {0xe5,0xab,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb5d6/*gb2312*/, 0x62b5/*utf16*/, {0xe6,0x8a,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb5d7/*gb2312*/, 0x5e95/*utf16*/, {0xe5,0xba,0x95}/*utf8*/, 3/*utf8 len*/},{0xb5d8/*gb2312*/, 0x5730/*utf16*/, {0xe5,0x9c,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb5d9/*gb2312*/, 0x8482/*utf16*/, {0xe8,0x92,0x82}/*utf8*/, 3/*utf8 len*/},{0xb5da/*gb2312*/, 0x7b2c/*utf16*/, {0xe7,0xac,0xac}/*utf8*/, 3/*utf8 len*/},{0xb5db/*gb2312*/, 0x5e1d/*utf16*/, {0xe5,0xb8,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb5dc/*gb2312*/, 0x5f1f/*utf16*/, {0xe5,0xbc,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb5dd/*gb2312*/, 0x9012/*utf16*/, {0xe9,0x80,0x92}/*utf8*/, 3/*utf8 len*/},{0xb5de/*gb2312*/, 0x7f14/*utf16*/, {0xe7,0xbc,0x94}/*utf8*/, 3/*utf8 len*/},{0xb5df/*gb2312*/, 0x98a0/*utf16*/, {0xe9,0xa2,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb5e0/*gb2312*/, 0x6382/*utf16*/, {0xe6,0x8e,0x82}/*utf8*/, 3/*utf8 len*/},{0xb5e1/*gb2312*/, 0x6ec7/*utf16*/, {0xe6,0xbb,0x87}/*utf8*/, 3/*utf8 len*/},{0xb5e2/*gb2312*/, 0x7898/*utf16*/, {0xe7,0xa2,0x98}/*utf8*/, 3/*utf8 len*/},{0xb5e3/*gb2312*/, 0x70b9/*utf16*/, {0xe7,0x82,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb5e4/*gb2312*/, 0x5178/*utf16*/, {0xe5,0x85,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb5e5/*gb2312*/, 0x975b/*utf16*/, {0xe9,0x9d,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb5e6/*gb2312*/, 0x57ab/*utf16*/, {0xe5,0x9e,0xab}/*utf8*/, 3/*utf8 len*/},{0xb5e7/*gb2312*/, 0x7535/*utf16*/, {0xe7,0x94,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb5e8/*gb2312*/, 0x4f43/*utf16*/, {0xe4,0xbd,0x83}/*utf8*/, 3/*utf8 len*/},{0xb5e9/*gb2312*/, 0x7538/*utf16*/, {0xe7,0x94,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb5ea/*gb2312*/, 0x5e97/*utf16*/, {0xe5,0xba,0x97}/*utf8*/, 3/*utf8 len*/},{0xb5eb/*gb2312*/, 0x60e6/*utf16*/, {0xe6,0x83,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb5ec/*gb2312*/, 0x5960/*utf16*/, {0xe5,0xa5,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb5ed/*gb2312*/, 0x6dc0/*utf16*/, {0xe6,0xb7,0x80}/*utf8*/, 3/*utf8 len*/},{0xb5ee/*gb2312*/, 0x6bbf/*utf16*/, {0xe6,0xae,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb5ef/*gb2312*/, 0x7889/*utf16*/, {0xe7,0xa2,0x89}/*utf8*/, 3/*utf8 len*/},{0xb5f0/*gb2312*/, 0x53fc/*utf16*/, {0xe5,0x8f,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb5f1/*gb2312*/, 0x96d5/*utf16*/, {0xe9,0x9b,0x95}/*utf8*/, 3/*utf8 len*/},{0xb5f2/*gb2312*/, 0x51cb/*utf16*/, {0xe5,0x87,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb5f3/*gb2312*/, 0x5201/*utf16*/, {0xe5,0x88,0x81}/*utf8*/, 3/*utf8 len*/},{0xb5f4/*gb2312*/, 0x6389/*utf16*/, {0xe6,0x8e,0x89}/*utf8*/, 3/*utf8 len*/},{0xb5f5/*gb2312*/, 0x540a/*utf16*/, {0xe5,0x90,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb5f6/*gb2312*/, 0x9493/*utf16*/, {0xe9,0x92,0x93}/*utf8*/, 3/*utf8 len*/},{0xb5f7/*gb2312*/, 0x8c03/*utf16*/, {0xe8,0xb0,0x83}/*utf8*/, 3/*utf8 len*/},{0xb5f8/*gb2312*/, 0x8dcc/*utf16*/, {0xe8,0xb7,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb5f9/*gb2312*/, 0x7239/*utf16*/, {0xe7,0x88,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb5fa/*gb2312*/, 0x789f/*utf16*/, {0xe7,0xa2,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb5fb/*gb2312*/, 0x8776/*utf16*/, {0xe8,0x9d,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb5fc/*gb2312*/, 0x8fed/*utf16*/, {0xe8,0xbf,0xad}/*utf8*/, 3/*utf8 len*/},{0xb5fd/*gb2312*/, 0x8c0d/*utf16*/, {0xe8,0xb0,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb5fe/*gb2312*/, 0x53e0/*utf16*/, {0xe5,0x8f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb6a1/*gb2312*/, 0x4e01/*utf16*/, {0xe4,0xb8,0x81}/*utf8*/, 3/*utf8 len*/},{0xb6a2/*gb2312*/, 0x76ef/*utf16*/, {0xe7,0x9b,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb6a3/*gb2312*/, 0x53ee/*utf16*/, {0xe5,0x8f,0xae}/*utf8*/, 3/*utf8 len*/},{0xb6a4/*gb2312*/, 0x9489/*utf16*/, {0xe9,0x92,0x89}/*utf8*/, 3/*utf8 len*/},{0xb6a5/*gb2312*/, 0x9876/*utf16*/, {0xe9,0xa1,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb6a6/*gb2312*/, 0x9f0e/*utf16*/, {0xe9,0xbc,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb6a7/*gb2312*/, 0x952d/*utf16*/, {0xe9,0x94,0xad}/*utf8*/, 3/*utf8 len*/},{0xb6a8/*gb2312*/, 0x5b9a/*utf16*/, {0xe5,0xae,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb6a9/*gb2312*/, 0x8ba2/*utf16*/, {0xe8,0xae,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb6aa/*gb2312*/, 0x4e22/*utf16*/, {0xe4,0xb8,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb6ab/*gb2312*/, 0x4e1c/*utf16*/, {0xe4,0xb8,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb6ac/*gb2312*/, 0x51ac/*utf16*/, {0xe5,0x86,0xac}/*utf8*/, 3/*utf8 len*/},{0xb6ad/*gb2312*/, 0x8463/*utf16*/, {0xe8,0x91,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb6ae/*gb2312*/, 0x61c2/*utf16*/, {0xe6,0x87,0x82}/*utf8*/, 3/*utf8 len*/},{0xb6af/*gb2312*/, 0x52a8/*utf16*/, {0xe5,0x8a,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb6b0/*gb2312*/, 0x680b/*utf16*/, {0xe6,0xa0,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb6b1/*gb2312*/, 0x4f97/*utf16*/, {0xe4,0xbe,0x97}/*utf8*/, 3/*utf8 len*/},{0xb6b2/*gb2312*/, 0x606b/*utf16*/, {0xe6,0x81,0xab}/*utf8*/, 3/*utf8 len*/},{0xb6b3/*gb2312*/, 0x51bb/*utf16*/, {0xe5,0x86,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb6b4/*gb2312*/, 0x6d1e/*utf16*/, {0xe6,0xb4,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb6b5/*gb2312*/, 0x515c/*utf16*/, {0xe5,0x85,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb6b6/*gb2312*/, 0x6296/*utf16*/, {0xe6,0x8a,0x96}/*utf8*/, 3/*utf8 len*/},{0xb6b7/*gb2312*/, 0x6597/*utf16*/, {0xe6,0x96,0x97}/*utf8*/, 3/*utf8 len*/},{0xb6b8/*gb2312*/, 0x9661/*utf16*/, {0xe9,0x99,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb6b9/*gb2312*/, 0x8c46/*utf16*/, {0xe8,0xb1,0x86}/*utf8*/, 3/*utf8 len*/},{0xb6ba/*gb2312*/, 0x9017/*utf16*/, {0xe9,0x80,0x97}/*utf8*/, 3/*utf8 len*/},{0xb6bb/*gb2312*/, 0x75d8/*utf16*/, {0xe7,0x97,0x98}/*utf8*/, 3/*utf8 len*/},{0xb6bc/*gb2312*/, 0x90fd/*utf16*/, {0xe9,0x83,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb6bd/*gb2312*/, 0x7763/*utf16*/, {0xe7,0x9d,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb6be/*gb2312*/, 0x6bd2/*utf16*/, {0xe6,0xaf,0x92}/*utf8*/, 3/*utf8 len*/},{0xb6bf/*gb2312*/, 0x728a/*utf16*/, {0xe7,0x8a,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb6c0/*gb2312*/, 0x72ec/*utf16*/, {0xe7,0x8b,0xac}/*utf8*/, 3/*utf8 len*/},{0xb6c1/*gb2312*/, 0x8bfb/*utf16*/, {0xe8,0xaf,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb6c2/*gb2312*/, 0x5835/*utf16*/, {0xe5,0xa0,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb6c3/*gb2312*/, 0x7779/*utf16*/, {0xe7,0x9d,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb6c4/*gb2312*/, 0x8d4c/*utf16*/, {0xe8,0xb5,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb6c5/*gb2312*/, 0x675c/*utf16*/, {0xe6,0x9d,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb6c6/*gb2312*/, 0x9540/*utf16*/, {0xe9,0x95,0x80}/*utf8*/, 3/*utf8 len*/},{0xb6c7/*gb2312*/, 0x809a/*utf16*/, {0xe8,0x82,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb6c8/*gb2312*/, 0x5ea6/*utf16*/, {0xe5,0xba,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb6c9/*gb2312*/, 0x6e21/*utf16*/, {0xe6,0xb8,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb6ca/*gb2312*/, 0x5992/*utf16*/, {0xe5,0xa6,0x92}/*utf8*/, 3/*utf8 len*/},{0xb6cb/*gb2312*/, 0x7aef/*utf16*/, {0xe7,0xab,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb6cc/*gb2312*/, 0x77ed/*utf16*/, {0xe7,0x9f,0xad}/*utf8*/, 3/*utf8 len*/},{0xb6cd/*gb2312*/, 0x953b/*utf16*/, {0xe9,0x94,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb6ce/*gb2312*/, 0x6bb5/*utf16*/, {0xe6,0xae,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb6cf/*gb2312*/, 0x65ad/*utf16*/, {0xe6,0x96,0xad}/*utf8*/, 3/*utf8 len*/},{0xb6d0/*gb2312*/, 0x7f0e/*utf16*/, {0xe7,0xbc,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb6d1/*gb2312*/, 0x5806/*utf16*/, {0xe5,0xa0,0x86}/*utf8*/, 3/*utf8 len*/},{0xb6d2/*gb2312*/, 0x5151/*utf16*/, {0xe5,0x85,0x91}/*utf8*/, 3/*utf8 len*/},{0xb6d3/*gb2312*/, 0x961f/*utf16*/, {0xe9,0x98,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb6d4/*gb2312*/, 0x5bf9/*utf16*/, {0xe5,0xaf,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb6d5/*gb2312*/, 0x58a9/*utf16*/, {0xe5,0xa2,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb6d6/*gb2312*/, 0x5428/*utf16*/, {0xe5,0x90,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb6d7/*gb2312*/, 0x8e72/*utf16*/, {0xe8,0xb9,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb6d8/*gb2312*/, 0x6566/*utf16*/, {0xe6,0x95,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb6d9/*gb2312*/, 0x987f/*utf16*/, {0xe9,0xa1,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb6da/*gb2312*/, 0x56e4/*utf16*/, {0xe5,0x9b,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb6db/*gb2312*/, 0x949d/*utf16*/, {0xe9,0x92,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb6dc/*gb2312*/, 0x76fe/*utf16*/, {0xe7,0x9b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb6dd/*gb2312*/, 0x9041/*utf16*/, {0xe9,0x81,0x81}/*utf8*/, 3/*utf8 len*/},{0xb6de/*gb2312*/, 0x6387/*utf16*/, {0xe6,0x8e,0x87}/*utf8*/, 3/*utf8 len*/},{0xb6df/*gb2312*/, 0x54c6/*utf16*/, {0xe5,0x93,0x86}/*utf8*/, 3/*utf8 len*/},{0xb6e0/*gb2312*/, 0x591a/*utf16*/, {0xe5,0xa4,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb6e1/*gb2312*/, 0x593a/*utf16*/, {0xe5,0xa4,0xba}/*utf8*/, 3/*utf8 len*/},{0xb6e2/*gb2312*/, 0x579b/*utf16*/, {0xe5,0x9e,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb6e3/*gb2312*/, 0x8eb2/*utf16*/, {0xe8,0xba,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb6e4/*gb2312*/, 0x6735/*utf16*/, {0xe6,0x9c,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb6e5/*gb2312*/, 0x8dfa/*utf16*/, {0xe8,0xb7,0xba}/*utf8*/, 3/*utf8 len*/},{0xb6e6/*gb2312*/, 0x8235/*utf16*/, {0xe8,0x88,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb6e7/*gb2312*/, 0x5241/*utf16*/, {0xe5,0x89,0x81}/*utf8*/, 3/*utf8 len*/},{0xb6e8/*gb2312*/, 0x60f0/*utf16*/, {0xe6,0x83,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb6e9/*gb2312*/, 0x5815/*utf16*/, {0xe5,0xa0,0x95}/*utf8*/, 3/*utf8 len*/},{0xb6ea/*gb2312*/, 0x86fe/*utf16*/, {0xe8,0x9b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb6eb/*gb2312*/, 0x5ce8/*utf16*/, {0xe5,0xb3,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb6ec/*gb2312*/, 0x9e45/*utf16*/, {0xe9,0xb9,0x85}/*utf8*/, 3/*utf8 len*/},{0xb6ed/*gb2312*/, 0x4fc4/*utf16*/, {0xe4,0xbf,0x84}/*utf8*/, 3/*utf8 len*/},{0xb6ee/*gb2312*/, 0x989d/*utf16*/, {0xe9,0xa2,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb6ef/*gb2312*/, 0x8bb9/*utf16*/, {0xe8,0xae,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb6f0/*gb2312*/, 0x5a25/*utf16*/, {0xe5,0xa8,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb6f1/*gb2312*/, 0x6076/*utf16*/, {0xe6,0x81,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb6f2/*gb2312*/, 0x5384/*utf16*/, {0xe5,0x8e,0x84}/*utf8*/, 3/*utf8 len*/},{0xb6f3/*gb2312*/, 0x627c/*utf16*/, {0xe6,0x89,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb6f4/*gb2312*/, 0x904f/*utf16*/, {0xe9,0x81,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb6f5/*gb2312*/, 0x9102/*utf16*/, {0xe9,0x84,0x82}/*utf8*/, 3/*utf8 len*/},{0xb6f6/*gb2312*/, 0x997f/*utf16*/, {0xe9,0xa5,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb6f7/*gb2312*/, 0x6069/*utf16*/, {0xe6,0x81,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb6f8/*gb2312*/, 0x800c/*utf16*/, {0xe8,0x80,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb6f9/*gb2312*/, 0x513f/*utf16*/, {0xe5,0x84,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb6fa/*gb2312*/, 0x8033/*utf16*/, {0xe8,0x80,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb6fb/*gb2312*/, 0x5c14/*utf16*/, {0xe5,0xb0,0x94}/*utf8*/, 3/*utf8 len*/},{0xb6fc/*gb2312*/, 0x9975/*utf16*/, {0xe9,0xa5,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb6fd/*gb2312*/, 0x6d31/*utf16*/, {0xe6,0xb4,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb6fe/*gb2312*/, 0x4e8c/*utf16*/, {0xe4,0xba,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb7a1/*gb2312*/, 0x8d30/*utf16*/, {0xe8,0xb4,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb7a2/*gb2312*/, 0x53d1/*utf16*/, {0xe5,0x8f,0x91}/*utf8*/, 3/*utf8 len*/},{0xb7a3/*gb2312*/, 0x7f5a/*utf16*/, {0xe7,0xbd,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb7a4/*gb2312*/, 0x7b4f/*utf16*/, {0xe7,0xad,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb7a5/*gb2312*/, 0x4f10/*utf16*/, {0xe4,0xbc,0x90}/*utf8*/, 3/*utf8 len*/},{0xb7a6/*gb2312*/, 0x4e4f/*utf16*/, {0xe4,0xb9,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb7a7/*gb2312*/, 0x9600/*utf16*/, {0xe9,0x98,0x80}/*utf8*/, 3/*utf8 len*/},{0xb7a8/*gb2312*/, 0x6cd5/*utf16*/, {0xe6,0xb3,0x95}/*utf8*/, 3/*utf8 len*/},{0xb7a9/*gb2312*/, 0x73d0/*utf16*/, {0xe7,0x8f,0x90}/*utf8*/, 3/*utf8 len*/},{0xb7aa/*gb2312*/, 0x85e9/*utf16*/, {0xe8,0x97,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb7ab/*gb2312*/, 0x5e06/*utf16*/, {0xe5,0xb8,0x86}/*utf8*/, 3/*utf8 len*/},{0xb7ac/*gb2312*/, 0x756a/*utf16*/, {0xe7,0x95,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb7ad/*gb2312*/, 0x7ffb/*utf16*/, {0xe7,0xbf,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb7ae/*gb2312*/, 0x6a0a/*utf16*/, {0xe6,0xa8,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb7af/*gb2312*/, 0x77fe/*utf16*/, {0xe7,0x9f,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb7b0/*gb2312*/, 0x9492/*utf16*/, {0xe9,0x92,0x92}/*utf8*/, 3/*utf8 len*/},{0xb7b1/*gb2312*/, 0x7e41/*utf16*/, {0xe7,0xb9,0x81}/*utf8*/, 3/*utf8 len*/},{0xb7b2/*gb2312*/, 0x51e1/*utf16*/, {0xe5,0x87,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb7b3/*gb2312*/, 0x70e6/*utf16*/, {0xe7,0x83,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb7b4/*gb2312*/, 0x53cd/*utf16*/, {0xe5,0x8f,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb7b5/*gb2312*/, 0x8fd4/*utf16*/, {0xe8,0xbf,0x94}/*utf8*/, 3/*utf8 len*/},{0xb7b6/*gb2312*/, 0x8303/*utf16*/, {0xe8,0x8c,0x83}/*utf8*/, 3/*utf8 len*/},{0xb7b7/*gb2312*/, 0x8d29/*utf16*/, {0xe8,0xb4,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb7b8/*gb2312*/, 0x72af/*utf16*/, {0xe7,0x8a,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb7b9/*gb2312*/, 0x996d/*utf16*/, {0xe9,0xa5,0xad}/*utf8*/, 3/*utf8 len*/},{0xb7ba/*gb2312*/, 0x6cdb/*utf16*/, {0xe6,0xb3,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb7bb/*gb2312*/, 0x574a/*utf16*/, {0xe5,0x9d,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb7bc/*gb2312*/, 0x82b3/*utf16*/, {0xe8,0x8a,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb7bd/*gb2312*/, 0x65b9/*utf16*/, {0xe6,0x96,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb7be/*gb2312*/, 0x80aa/*utf16*/, {0xe8,0x82,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb7bf/*gb2312*/, 0x623f/*utf16*/, {0xe6,0x88,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb7c0/*gb2312*/, 0x9632/*utf16*/, {0xe9,0x98,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb7c1/*gb2312*/, 0x59a8/*utf16*/, {0xe5,0xa6,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb7c2/*gb2312*/, 0x4eff/*utf16*/, {0xe4,0xbb,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb7c3/*gb2312*/, 0x8bbf/*utf16*/, {0xe8,0xae,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb7c4/*gb2312*/, 0x7eba/*utf16*/, {0xe7,0xba,0xba}/*utf8*/, 3/*utf8 len*/},{0xb7c5/*gb2312*/, 0x653e/*utf16*/, {0xe6,0x94,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb7c6/*gb2312*/, 0x83f2/*utf16*/, {0xe8,0x8f,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb7c7/*gb2312*/, 0x975e/*utf16*/, {0xe9,0x9d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb7c8/*gb2312*/, 0x5561/*utf16*/, {0xe5,0x95,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb7c9/*gb2312*/, 0x98de/*utf16*/, {0xe9,0xa3,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb7ca/*gb2312*/, 0x80a5/*utf16*/, {0xe8,0x82,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb7cb/*gb2312*/, 0x532a/*utf16*/, {0xe5,0x8c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb7cc/*gb2312*/, 0x8bfd/*utf16*/, {0xe8,0xaf,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb7cd/*gb2312*/, 0x5420/*utf16*/, {0xe5,0x90,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb7ce/*gb2312*/, 0x80ba/*utf16*/, {0xe8,0x82,0xba}/*utf8*/, 3/*utf8 len*/},{0xb7cf/*gb2312*/, 0x5e9f/*utf16*/, {0xe5,0xba,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb7d0/*gb2312*/, 0x6cb8/*utf16*/, {0xe6,0xb2,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb7d1/*gb2312*/, 0x8d39/*utf16*/, {0xe8,0xb4,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb7d2/*gb2312*/, 0x82ac/*utf16*/, {0xe8,0x8a,0xac}/*utf8*/, 3/*utf8 len*/},{0xb7d3/*gb2312*/, 0x915a/*utf16*/, {0xe9,0x85,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb7d4/*gb2312*/, 0x5429/*utf16*/, {0xe5,0x90,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb7d5/*gb2312*/, 0x6c1b/*utf16*/, {0xe6,0xb0,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb7d6/*gb2312*/, 0x5206/*utf16*/, {0xe5,0x88,0x86}/*utf8*/, 3/*utf8 len*/},{0xb7d7/*gb2312*/, 0x7eb7/*utf16*/, {0xe7,0xba,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb7d8/*gb2312*/, 0x575f/*utf16*/, {0xe5,0x9d,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb7d9/*gb2312*/, 0x711a/*utf16*/, {0xe7,0x84,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb7da/*gb2312*/, 0x6c7e/*utf16*/, {0xe6,0xb1,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb7db/*gb2312*/, 0x7c89/*utf16*/, {0xe7,0xb2,0x89}/*utf8*/, 3/*utf8 len*/},{0xb7dc/*gb2312*/, 0x594b/*utf16*/, {0xe5,0xa5,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb7dd/*gb2312*/, 0x4efd/*utf16*/, {0xe4,0xbb,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb7de/*gb2312*/, 0x5fff/*utf16*/, {0xe5,0xbf,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb7df/*gb2312*/, 0x6124/*utf16*/, {0xe6,0x84,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb7e0/*gb2312*/, 0x7caa/*utf16*/, {0xe7,0xb2,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb7e1/*gb2312*/, 0x4e30/*utf16*/, {0xe4,0xb8,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb7e2/*gb2312*/, 0x5c01/*utf16*/, {0xe5,0xb0,0x81}/*utf8*/, 3/*utf8 len*/},{0xb7e3/*gb2312*/, 0x67ab/*utf16*/, {0xe6,0x9e,0xab}/*utf8*/, 3/*utf8 len*/},{0xb7e4/*gb2312*/, 0x8702/*utf16*/, {0xe8,0x9c,0x82}/*utf8*/, 3/*utf8 len*/},{0xb7e5/*gb2312*/, 0x5cf0/*utf16*/, {0xe5,0xb3,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb7e6/*gb2312*/, 0x950b/*utf16*/, {0xe9,0x94,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb7e7/*gb2312*/, 0x98ce/*utf16*/, {0xe9,0xa3,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb7e8/*gb2312*/, 0x75af/*utf16*/, {0xe7,0x96,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb7e9/*gb2312*/, 0x70fd/*utf16*/, {0xe7,0x83,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb7ea/*gb2312*/, 0x9022/*utf16*/, {0xe9,0x80,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb7eb/*gb2312*/, 0x51af/*utf16*/, {0xe5,0x86,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb7ec/*gb2312*/, 0x7f1d/*utf16*/, {0xe7,0xbc,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb7ed/*gb2312*/, 0x8bbd/*utf16*/, {0xe8,0xae,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb7ee/*gb2312*/, 0x5949/*utf16*/, {0xe5,0xa5,0x89}/*utf8*/, 3/*utf8 len*/},{0xb7ef/*gb2312*/, 0x51e4/*utf16*/, {0xe5,0x87,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb7f0/*gb2312*/, 0x4f5b/*utf16*/, {0xe4,0xbd,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb7f1/*gb2312*/, 0x5426/*utf16*/, {0xe5,0x90,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb7f2/*gb2312*/, 0x592b/*utf16*/, {0xe5,0xa4,0xab}/*utf8*/, 3/*utf8 len*/},{0xb7f3/*gb2312*/, 0x6577/*utf16*/, {0xe6,0x95,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb7f4/*gb2312*/, 0x80a4/*utf16*/, {0xe8,0x82,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb7f5/*gb2312*/, 0x5b75/*utf16*/, {0xe5,0xad,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb7f6/*gb2312*/, 0x6276/*utf16*/, {0xe6,0x89,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb7f7/*gb2312*/, 0x62c2/*utf16*/, {0xe6,0x8b,0x82}/*utf8*/, 3/*utf8 len*/},{0xb7f8/*gb2312*/, 0x8f90/*utf16*/, {0xe8,0xbe,0x90}/*utf8*/, 3/*utf8 len*/},{0xb7f9/*gb2312*/, 0x5e45/*utf16*/, {0xe5,0xb9,0x85}/*utf8*/, 3/*utf8 len*/},{0xb7fa/*gb2312*/, 0x6c1f/*utf16*/, {0xe6,0xb0,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb7fb/*gb2312*/, 0x7b26/*utf16*/, {0xe7,0xac,0xa6}/*utf8*/, 3/*utf8 len*/},{0xb7fc/*gb2312*/, 0x4f0f/*utf16*/, {0xe4,0xbc,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb7fd/*gb2312*/, 0x4fd8/*utf16*/, {0xe4,0xbf,0x98}/*utf8*/, 3/*utf8 len*/},{0xb7fe/*gb2312*/, 0x670d/*utf16*/, {0xe6,0x9c,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb8a1/*gb2312*/, 0x6d6e/*utf16*/, {0xe6,0xb5,0xae}/*utf8*/, 3/*utf8 len*/},{0xb8a2/*gb2312*/, 0x6daa/*utf16*/, {0xe6,0xb6,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb8a3/*gb2312*/, 0x798f/*utf16*/, {0xe7,0xa6,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb8a4/*gb2312*/, 0x88b1/*utf16*/, {0xe8,0xa2,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb8a5/*gb2312*/, 0x5f17/*utf16*/, {0xe5,0xbc,0x97}/*utf8*/, 3/*utf8 len*/},{0xb8a6/*gb2312*/, 0x752b/*utf16*/, {0xe7,0x94,0xab}/*utf8*/, 3/*utf8 len*/},{0xb8a7/*gb2312*/, 0x629a/*utf16*/, {0xe6,0x8a,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb8a8/*gb2312*/, 0x8f85/*utf16*/, {0xe8,0xbe,0x85}/*utf8*/, 3/*utf8 len*/},{0xb8a9/*gb2312*/, 0x4fef/*utf16*/, {0xe4,0xbf,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb8aa/*gb2312*/, 0x91dc/*utf16*/, {0xe9,0x87,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb8ab/*gb2312*/, 0x65a7/*utf16*/, {0xe6,0x96,0xa7}/*utf8*/, 3/*utf8 len*/},{0xb8ac/*gb2312*/, 0x812f/*utf16*/, {0xe8,0x84,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb8ad/*gb2312*/, 0x8151/*utf16*/, {0xe8,0x85,0x91}/*utf8*/, 3/*utf8 len*/},{0xb8ae/*gb2312*/, 0x5e9c/*utf16*/, {0xe5,0xba,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb8af/*gb2312*/, 0x8150/*utf16*/, {0xe8,0x85,0x90}/*utf8*/, 3/*utf8 len*/},{0xb8b0/*gb2312*/, 0x8d74/*utf16*/, {0xe8,0xb5,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb8b1/*gb2312*/, 0x526f/*utf16*/, {0xe5,0x89,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb8b2/*gb2312*/, 0x8986/*utf16*/, {0xe8,0xa6,0x86}/*utf8*/, 3/*utf8 len*/},{0xb8b3/*gb2312*/, 0x8d4b/*utf16*/, {0xe8,0xb5,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb8b4/*gb2312*/, 0x590d/*utf16*/, {0xe5,0xa4,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb8b5/*gb2312*/, 0x5085/*utf16*/, {0xe5,0x82,0x85}/*utf8*/, 3/*utf8 len*/},{0xb8b6/*gb2312*/, 0x4ed8/*utf16*/, {0xe4,0xbb,0x98}/*utf8*/, 3/*utf8 len*/},{0xb8b7/*gb2312*/, 0x961c/*utf16*/, {0xe9,0x98,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb8b8/*gb2312*/, 0x7236/*utf16*/, {0xe7,0x88,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb8b9/*gb2312*/, 0x8179/*utf16*/, {0xe8,0x85,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb8ba/*gb2312*/, 0x8d1f/*utf16*/, {0xe8,0xb4,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb8bb/*gb2312*/, 0x5bcc/*utf16*/, {0xe5,0xaf,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb8bc/*gb2312*/, 0x8ba3/*utf16*/, {0xe8,0xae,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb8bd/*gb2312*/, 0x9644/*utf16*/, {0xe9,0x99,0x84}/*utf8*/, 3/*utf8 len*/},{0xb8be/*gb2312*/, 0x5987/*utf16*/, {0xe5,0xa6,0x87}/*utf8*/, 3/*utf8 len*/},{0xb8bf/*gb2312*/, 0x7f1a/*utf16*/, {0xe7,0xbc,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb8c0/*gb2312*/, 0x5490/*utf16*/, {0xe5,0x92,0x90}/*utf8*/, 3/*utf8 len*/},{0xb8c1/*gb2312*/, 0x5676/*utf16*/, {0xe5,0x99,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb8c2/*gb2312*/, 0x560e/*utf16*/, {0xe5,0x98,0x8e}/*utf8*/, 3/*utf8 len*/},{0xb8c3/*gb2312*/, 0x8be5/*utf16*/, {0xe8,0xaf,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb8c4/*gb2312*/, 0x6539/*utf16*/, {0xe6,0x94,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb8c5/*gb2312*/, 0x6982/*utf16*/, {0xe6,0xa6,0x82}/*utf8*/, 3/*utf8 len*/},{0xb8c6/*gb2312*/, 0x9499/*utf16*/, {0xe9,0x92,0x99}/*utf8*/, 3/*utf8 len*/},{0xb8c7/*gb2312*/, 0x76d6/*utf16*/, {0xe7,0x9b,0x96}/*utf8*/, 3/*utf8 len*/},{0xb8c8/*gb2312*/, 0x6e89/*utf16*/, {0xe6,0xba,0x89}/*utf8*/, 3/*utf8 len*/},{0xb8c9/*gb2312*/, 0x5e72/*utf16*/, {0xe5,0xb9,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb8ca/*gb2312*/, 0x7518/*utf16*/, {0xe7,0x94,0x98}/*utf8*/, 3/*utf8 len*/},{0xb8cb/*gb2312*/, 0x6746/*utf16*/, {0xe6,0x9d,0x86}/*utf8*/, 3/*utf8 len*/},{0xb8cc/*gb2312*/, 0x67d1/*utf16*/, {0xe6,0x9f,0x91}/*utf8*/, 3/*utf8 len*/},{0xb8cd/*gb2312*/, 0x7aff/*utf16*/, {0xe7,0xab,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb8ce/*gb2312*/, 0x809d/*utf16*/, {0xe8,0x82,0x9d}/*utf8*/, 3/*utf8 len*/},{0xb8cf/*gb2312*/, 0x8d76/*utf16*/, {0xe8,0xb5,0xb6}/*utf8*/, 3/*utf8 len*/},{0xb8d0/*gb2312*/, 0x611f/*utf16*/, {0xe6,0x84,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb8d1/*gb2312*/, 0x79c6/*utf16*/, {0xe7,0xa7,0x86}/*utf8*/, 3/*utf8 len*/},{0xb8d2/*gb2312*/, 0x6562/*utf16*/, {0xe6,0x95,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb8d3/*gb2312*/, 0x8d63/*utf16*/, {0xe8,0xb5,0xa3}/*utf8*/, 3/*utf8 len*/},{0xb8d4/*gb2312*/, 0x5188/*utf16*/, {0xe5,0x86,0x88}/*utf8*/, 3/*utf8 len*/},{0xb8d5/*gb2312*/, 0x521a/*utf16*/, {0xe5,0x88,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb8d6/*gb2312*/, 0x94a2/*utf16*/, {0xe9,0x92,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb8d7/*gb2312*/, 0x7f38/*utf16*/, {0xe7,0xbc,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb8d8/*gb2312*/, 0x809b/*utf16*/, {0xe8,0x82,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb8d9/*gb2312*/, 0x7eb2/*utf16*/, {0xe7,0xba,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb8da/*gb2312*/, 0x5c97/*utf16*/, {0xe5,0xb2,0x97}/*utf8*/, 3/*utf8 len*/},{0xb8db/*gb2312*/, 0x6e2f/*utf16*/, {0xe6,0xb8,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb8dc/*gb2312*/, 0x6760/*utf16*/, {0xe6,0x9d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb8dd/*gb2312*/, 0x7bd9/*utf16*/, {0xe7,0xaf,0x99}/*utf8*/, 3/*utf8 len*/},{0xb8de/*gb2312*/, 0x768b/*utf16*/, {0xe7,0x9a,0x8b}/*utf8*/, 3/*utf8 len*/},{0xb8df/*gb2312*/, 0x9ad8/*utf16*/, {0xe9,0xab,0x98}/*utf8*/, 3/*utf8 len*/},{0xb8e0/*gb2312*/, 0x818f/*utf16*/, {0xe8,0x86,0x8f}/*utf8*/, 3/*utf8 len*/},{0xb8e1/*gb2312*/, 0x7f94/*utf16*/, {0xe7,0xbe,0x94}/*utf8*/, 3/*utf8 len*/},{0xb8e2/*gb2312*/, 0x7cd5/*utf16*/, {0xe7,0xb3,0x95}/*utf8*/, 3/*utf8 len*/},{0xb8e3/*gb2312*/, 0x641e/*utf16*/, {0xe6,0x90,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb8e4/*gb2312*/, 0x9550/*utf16*/, {0xe9,0x95,0x90}/*utf8*/, 3/*utf8 len*/},{0xb8e5/*gb2312*/, 0x7a3f/*utf16*/, {0xe7,0xa8,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb8e6/*gb2312*/, 0x544a/*utf16*/, {0xe5,0x91,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb8e7/*gb2312*/, 0x54e5/*utf16*/, {0xe5,0x93,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb8e8/*gb2312*/, 0x6b4c/*utf16*/, {0xe6,0xad,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb8e9/*gb2312*/, 0x6401/*utf16*/, {0xe6,0x90,0x81}/*utf8*/, 3/*utf8 len*/},{0xb8ea/*gb2312*/, 0x6208/*utf16*/, {0xe6,0x88,0x88}/*utf8*/, 3/*utf8 len*/},{0xb8eb/*gb2312*/, 0x9e3d/*utf16*/, {0xe9,0xb8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb8ec/*gb2312*/, 0x80f3/*utf16*/, {0xe8,0x83,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb8ed/*gb2312*/, 0x7599/*utf16*/, {0xe7,0x96,0x99}/*utf8*/, 3/*utf8 len*/},{0xb8ee/*gb2312*/, 0x5272/*utf16*/, {0xe5,0x89,0xb2}/*utf8*/, 3/*utf8 len*/},{0xb8ef/*gb2312*/, 0x9769/*utf16*/, {0xe9,0x9d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb8f0/*gb2312*/, 0x845b/*utf16*/, {0xe8,0x91,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb8f1/*gb2312*/, 0x683c/*utf16*/, {0xe6,0xa0,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb8f2/*gb2312*/, 0x86e4/*utf16*/, {0xe8,0x9b,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb8f3/*gb2312*/, 0x9601/*utf16*/, {0xe9,0x98,0x81}/*utf8*/, 3/*utf8 len*/},{0xb8f4/*gb2312*/, 0x9694/*utf16*/, {0xe9,0x9a,0x94}/*utf8*/, 3/*utf8 len*/},{0xb8f5/*gb2312*/, 0x94ec/*utf16*/, {0xe9,0x93,0xac}/*utf8*/, 3/*utf8 len*/},{0xb8f6/*gb2312*/, 0x4e2a/*utf16*/, {0xe4,0xb8,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb8f7/*gb2312*/, 0x5404/*utf16*/, {0xe5,0x90,0x84}/*utf8*/, 3/*utf8 len*/},{0xb8f8/*gb2312*/, 0x7ed9/*utf16*/, {0xe7,0xbb,0x99}/*utf8*/, 3/*utf8 len*/},{0xb8f9/*gb2312*/, 0x6839/*utf16*/, {0xe6,0xa0,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb8fa/*gb2312*/, 0x8ddf/*utf16*/, {0xe8,0xb7,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb8fb/*gb2312*/, 0x8015/*utf16*/, {0xe8,0x80,0x95}/*utf8*/, 3/*utf8 len*/},{0xb8fc/*gb2312*/, 0x66f4/*utf16*/, {0xe6,0x9b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xb8fd/*gb2312*/, 0x5e9a/*utf16*/, {0xe5,0xba,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb8fe/*gb2312*/, 0x7fb9/*utf16*/, {0xe7,0xbe,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb9a1/*gb2312*/, 0x57c2/*utf16*/, {0xe5,0x9f,0x82}/*utf8*/, 3/*utf8 len*/},{0xb9a2/*gb2312*/, 0x803f/*utf16*/, {0xe8,0x80,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb9a3/*gb2312*/, 0x6897/*utf16*/, {0xe6,0xa2,0x97}/*utf8*/, 3/*utf8 len*/},{0xb9a4/*gb2312*/, 0x5de5/*utf16*/, {0xe5,0xb7,0xa5}/*utf8*/, 3/*utf8 len*/},{0xb9a5/*gb2312*/, 0x653b/*utf16*/, {0xe6,0x94,0xbb}/*utf8*/, 3/*utf8 len*/},{0xb9a6/*gb2312*/, 0x529f/*utf16*/, {0xe5,0x8a,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb9a7/*gb2312*/, 0x606d/*utf16*/, {0xe6,0x81,0xad}/*utf8*/, 3/*utf8 len*/},{0xb9a8/*gb2312*/, 0x9f9a/*utf16*/, {0xe9,0xbe,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb9a9/*gb2312*/, 0x4f9b/*utf16*/, {0xe4,0xbe,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb9aa/*gb2312*/, 0x8eac/*utf16*/, {0xe8,0xba,0xac}/*utf8*/, 3/*utf8 len*/},{0xb9ab/*gb2312*/, 0x516c/*utf16*/, {0xe5,0x85,0xac}/*utf8*/, 3/*utf8 len*/},{0xb9ac/*gb2312*/, 0x5bab/*utf16*/, {0xe5,0xae,0xab}/*utf8*/, 3/*utf8 len*/},{0xb9ad/*gb2312*/, 0x5f13/*utf16*/, {0xe5,0xbc,0x93}/*utf8*/, 3/*utf8 len*/},{0xb9ae/*gb2312*/, 0x5de9/*utf16*/, {0xe5,0xb7,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb9af/*gb2312*/, 0x6c5e/*utf16*/, {0xe6,0xb1,0x9e}/*utf8*/, 3/*utf8 len*/},{0xb9b0/*gb2312*/, 0x62f1/*utf16*/, {0xe6,0x8b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb9b1/*gb2312*/, 0x8d21/*utf16*/, {0xe8,0xb4,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb9b2/*gb2312*/, 0x5171/*utf16*/, {0xe5,0x85,0xb1}/*utf8*/, 3/*utf8 len*/},{0xb9b3/*gb2312*/, 0x94a9/*utf16*/, {0xe9,0x92,0xa9}/*utf8*/, 3/*utf8 len*/},{0xb9b4/*gb2312*/, 0x52fe/*utf16*/, {0xe5,0x8b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb9b5/*gb2312*/, 0x6c9f/*utf16*/, {0xe6,0xb2,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb9b6/*gb2312*/, 0x82df/*utf16*/, {0xe8,0x8b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb9b7/*gb2312*/, 0x72d7/*utf16*/, {0xe7,0x8b,0x97}/*utf8*/, 3/*utf8 len*/},{0xb9b8/*gb2312*/, 0x57a2/*utf16*/, {0xe5,0x9e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xb9b9/*gb2312*/, 0x6784/*utf16*/, {0xe6,0x9e,0x84}/*utf8*/, 3/*utf8 len*/},{0xb9ba/*gb2312*/, 0x8d2d/*utf16*/, {0xe8,0xb4,0xad}/*utf8*/, 3/*utf8 len*/},{0xb9bb/*gb2312*/, 0x591f/*utf16*/, {0xe5,0xa4,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb9bc/*gb2312*/, 0x8f9c/*utf16*/, {0xe8,0xbe,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb9bd/*gb2312*/, 0x83c7/*utf16*/, {0xe8,0x8f,0x87}/*utf8*/, 3/*utf8 len*/},{0xb9be/*gb2312*/, 0x5495/*utf16*/, {0xe5,0x92,0x95}/*utf8*/, 3/*utf8 len*/},{0xb9bf/*gb2312*/, 0x7b8d/*utf16*/, {0xe7,0xae,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb9c0/*gb2312*/, 0x4f30/*utf16*/, {0xe4,0xbc,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb9c1/*gb2312*/, 0x6cbd/*utf16*/, {0xe6,0xb2,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb9c2/*gb2312*/, 0x5b64/*utf16*/, {0xe5,0xad,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb9c3/*gb2312*/, 0x59d1/*utf16*/, {0xe5,0xa7,0x91}/*utf8*/, 3/*utf8 len*/},{0xb9c4/*gb2312*/, 0x9f13/*utf16*/, {0xe9,0xbc,0x93}/*utf8*/, 3/*utf8 len*/},{0xb9c5/*gb2312*/, 0x53e4/*utf16*/, {0xe5,0x8f,0xa4}/*utf8*/, 3/*utf8 len*/},{0xb9c6/*gb2312*/, 0x86ca/*utf16*/, {0xe8,0x9b,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb9c7/*gb2312*/, 0x9aa8/*utf16*/, {0xe9,0xaa,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb9c8/*gb2312*/, 0x8c37/*utf16*/, {0xe8,0xb0,0xb7}/*utf8*/, 3/*utf8 len*/},{0xb9c9/*gb2312*/, 0x80a1/*utf16*/, {0xe8,0x82,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb9ca/*gb2312*/, 0x6545/*utf16*/, {0xe6,0x95,0x85}/*utf8*/, 3/*utf8 len*/},{0xb9cb/*gb2312*/, 0x987e/*utf16*/, {0xe9,0xa1,0xbe}/*utf8*/, 3/*utf8 len*/},{0xb9cc/*gb2312*/, 0x56fa/*utf16*/, {0xe5,0x9b,0xba}/*utf8*/, 3/*utf8 len*/},{0xb9cd/*gb2312*/, 0x96c7/*utf16*/, {0xe9,0x9b,0x87}/*utf8*/, 3/*utf8 len*/},{0xb9ce/*gb2312*/, 0x522e/*utf16*/, {0xe5,0x88,0xae}/*utf8*/, 3/*utf8 len*/},{0xb9cf/*gb2312*/, 0x74dc/*utf16*/, {0xe7,0x93,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb9d0/*gb2312*/, 0x5250/*utf16*/, {0xe5,0x89,0x90}/*utf8*/, 3/*utf8 len*/},{0xb9d1/*gb2312*/, 0x5be1/*utf16*/, {0xe5,0xaf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb9d2/*gb2312*/, 0x6302/*utf16*/, {0xe6,0x8c,0x82}/*utf8*/, 3/*utf8 len*/},{0xb9d3/*gb2312*/, 0x8902/*utf16*/, {0xe8,0xa4,0x82}/*utf8*/, 3/*utf8 len*/},{0xb9d4/*gb2312*/, 0x4e56/*utf16*/, {0xe4,0xb9,0x96}/*utf8*/, 3/*utf8 len*/},{0xb9d5/*gb2312*/, 0x62d0/*utf16*/, {0xe6,0x8b,0x90}/*utf8*/, 3/*utf8 len*/},{0xb9d6/*gb2312*/, 0x602a/*utf16*/, {0xe6,0x80,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb9d7/*gb2312*/, 0x68fa/*utf16*/, {0xe6,0xa3,0xba}/*utf8*/, 3/*utf8 len*/},{0xb9d8/*gb2312*/, 0x5173/*utf16*/, {0xe5,0x85,0xb3}/*utf8*/, 3/*utf8 len*/},{0xb9d9/*gb2312*/, 0x5b98/*utf16*/, {0xe5,0xae,0x98}/*utf8*/, 3/*utf8 len*/},{0xb9da/*gb2312*/, 0x51a0/*utf16*/, {0xe5,0x86,0xa0}/*utf8*/, 3/*utf8 len*/},{0xb9db/*gb2312*/, 0x89c2/*utf16*/, {0xe8,0xa7,0x82}/*utf8*/, 3/*utf8 len*/},{0xb9dc/*gb2312*/, 0x7ba1/*utf16*/, {0xe7,0xae,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb9dd/*gb2312*/, 0x9986/*utf16*/, {0xe9,0xa6,0x86}/*utf8*/, 3/*utf8 len*/},{0xb9de/*gb2312*/, 0x7f50/*utf16*/, {0xe7,0xbd,0x90}/*utf8*/, 3/*utf8 len*/},{0xb9df/*gb2312*/, 0x60ef/*utf16*/, {0xe6,0x83,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb9e0/*gb2312*/, 0x704c/*utf16*/, {0xe7,0x81,0x8c}/*utf8*/, 3/*utf8 len*/},{0xb9e1/*gb2312*/, 0x8d2f/*utf16*/, {0xe8,0xb4,0xaf}/*utf8*/, 3/*utf8 len*/},{0xb9e2/*gb2312*/, 0x5149/*utf16*/, {0xe5,0x85,0x89}/*utf8*/, 3/*utf8 len*/},{0xb9e3/*gb2312*/, 0x5e7f/*utf16*/, {0xe5,0xb9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xb9e4/*gb2312*/, 0x901b/*utf16*/, {0xe9,0x80,0x9b}/*utf8*/, 3/*utf8 len*/},{0xb9e5/*gb2312*/, 0x7470/*utf16*/, {0xe7,0x91,0xb0}/*utf8*/, 3/*utf8 len*/},{0xb9e6/*gb2312*/, 0x89c4/*utf16*/, {0xe8,0xa7,0x84}/*utf8*/, 3/*utf8 len*/},{0xb9e7/*gb2312*/, 0x572d/*utf16*/, {0xe5,0x9c,0xad}/*utf8*/, 3/*utf8 len*/},{0xb9e8/*gb2312*/, 0x7845/*utf16*/, {0xe7,0xa1,0x85}/*utf8*/, 3/*utf8 len*/},{0xb9e9/*gb2312*/, 0x5f52/*utf16*/, {0xe5,0xbd,0x92}/*utf8*/, 3/*utf8 len*/},{0xb9ea/*gb2312*/, 0x9f9f/*utf16*/, {0xe9,0xbe,0x9f}/*utf8*/, 3/*utf8 len*/},{0xb9eb/*gb2312*/, 0x95fa/*utf16*/, {0xe9,0x97,0xba}/*utf8*/, 3/*utf8 len*/},{0xb9ec/*gb2312*/, 0x8f68/*utf16*/, {0xe8,0xbd,0xa8}/*utf8*/, 3/*utf8 len*/},{0xb9ed/*gb2312*/, 0x9b3c/*utf16*/, {0xe9,0xac,0xbc}/*utf8*/, 3/*utf8 len*/},{0xb9ee/*gb2312*/, 0x8be1/*utf16*/, {0xe8,0xaf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xb9ef/*gb2312*/, 0x7678/*utf16*/, {0xe7,0x99,0xb8}/*utf8*/, 3/*utf8 len*/},{0xb9f0/*gb2312*/, 0x6842/*utf16*/, {0xe6,0xa1,0x82}/*utf8*/, 3/*utf8 len*/},{0xb9f1/*gb2312*/, 0x67dc/*utf16*/, {0xe6,0x9f,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb9f2/*gb2312*/, 0x8dea/*utf16*/, {0xe8,0xb7,0xaa}/*utf8*/, 3/*utf8 len*/},{0xb9f3/*gb2312*/, 0x8d35/*utf16*/, {0xe8,0xb4,0xb5}/*utf8*/, 3/*utf8 len*/},{0xb9f4/*gb2312*/, 0x523d/*utf16*/, {0xe5,0x88,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb9f5/*gb2312*/, 0x8f8a/*utf16*/, {0xe8,0xbe,0x8a}/*utf8*/, 3/*utf8 len*/},{0xb9f6/*gb2312*/, 0x6eda/*utf16*/, {0xe6,0xbb,0x9a}/*utf8*/, 3/*utf8 len*/},{0xb9f7/*gb2312*/, 0x68cd/*utf16*/, {0xe6,0xa3,0x8d}/*utf8*/, 3/*utf8 len*/},{0xb9f8/*gb2312*/, 0x9505/*utf16*/, {0xe9,0x94,0x85}/*utf8*/, 3/*utf8 len*/},{0xb9f9/*gb2312*/, 0x90ed/*utf16*/, {0xe9,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xb9fa/*gb2312*/, 0x56fd/*utf16*/, {0xe5,0x9b,0xbd}/*utf8*/, 3/*utf8 len*/},{0xb9fb/*gb2312*/, 0x679c/*utf16*/, {0xe6,0x9e,0x9c}/*utf8*/, 3/*utf8 len*/},{0xb9fc/*gb2312*/, 0x88f9/*utf16*/, {0xe8,0xa3,0xb9}/*utf8*/, 3/*utf8 len*/},{0xb9fd/*gb2312*/, 0x8fc7/*utf16*/, {0xe8,0xbf,0x87}/*utf8*/, 3/*utf8 len*/},{0xb9fe/*gb2312*/, 0x54c8/*utf16*/, {0xe5,0x93,0x88}/*utf8*/, 3/*utf8 len*/},{0xbaa1/*gb2312*/, 0x9ab8/*utf16*/, {0xe9,0xaa,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbaa2/*gb2312*/, 0x5b69/*utf16*/, {0xe5,0xad,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbaa3/*gb2312*/, 0x6d77/*utf16*/, {0xe6,0xb5,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbaa4/*gb2312*/, 0x6c26/*utf16*/, {0xe6,0xb0,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbaa5/*gb2312*/, 0x4ea5/*utf16*/, {0xe4,0xba,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbaa6/*gb2312*/, 0x5bb3/*utf16*/, {0xe5,0xae,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbaa7/*gb2312*/, 0x9a87/*utf16*/, {0xe9,0xaa,0x87}/*utf8*/, 3/*utf8 len*/},{0xbaa8/*gb2312*/, 0x9163/*utf16*/, {0xe9,0x85,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbaa9/*gb2312*/, 0x61a8/*utf16*/, {0xe6,0x86,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbaaa/*gb2312*/, 0x90af/*utf16*/, {0xe9,0x82,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbaab/*gb2312*/, 0x97e9/*utf16*/, {0xe9,0x9f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbaac/*gb2312*/, 0x542b/*utf16*/, {0xe5,0x90,0xab}/*utf8*/, 3/*utf8 len*/},{0xbaad/*gb2312*/, 0x6db5/*utf16*/, {0xe6,0xb6,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbaae/*gb2312*/, 0x5bd2/*utf16*/, {0xe5,0xaf,0x92}/*utf8*/, 3/*utf8 len*/},{0xbaaf/*gb2312*/, 0x51fd/*utf16*/, {0xe5,0x87,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbab0/*gb2312*/, 0x558a/*utf16*/, {0xe5,0x96,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbab1/*gb2312*/, 0x7f55/*utf16*/, {0xe7,0xbd,0x95}/*utf8*/, 3/*utf8 len*/},{0xbab2/*gb2312*/, 0x7ff0/*utf16*/, {0xe7,0xbf,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbab3/*gb2312*/, 0x64bc/*utf16*/, {0xe6,0x92,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbab4/*gb2312*/, 0x634d/*utf16*/, {0xe6,0x8d,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbab5/*gb2312*/, 0x65f1/*utf16*/, {0xe6,0x97,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbab6/*gb2312*/, 0x61be/*utf16*/, {0xe6,0x86,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbab7/*gb2312*/, 0x608d/*utf16*/, {0xe6,0x82,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbab8/*gb2312*/, 0x710a/*utf16*/, {0xe7,0x84,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbab9/*gb2312*/, 0x6c57/*utf16*/, {0xe6,0xb1,0x97}/*utf8*/, 3/*utf8 len*/},{0xbaba/*gb2312*/, 0x6c49/*utf16*/, {0xe6,0xb1,0x89}/*utf8*/, 3/*utf8 len*/},{0xbabb/*gb2312*/, 0x592f/*utf16*/, {0xe5,0xa4,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbabc/*gb2312*/, 0x676d/*utf16*/, {0xe6,0x9d,0xad}/*utf8*/, 3/*utf8 len*/},{0xbabd/*gb2312*/, 0x822a/*utf16*/, {0xe8,0x88,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbabe/*gb2312*/, 0x58d5/*utf16*/, {0xe5,0xa3,0x95}/*utf8*/, 3/*utf8 len*/},{0xbabf/*gb2312*/, 0x568e/*utf16*/, {0xe5,0x9a,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbac0/*gb2312*/, 0x8c6a/*utf16*/, {0xe8,0xb1,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbac1/*gb2312*/, 0x6beb/*utf16*/, {0xe6,0xaf,0xab}/*utf8*/, 3/*utf8 len*/},{0xbac2/*gb2312*/, 0x90dd/*utf16*/, {0xe9,0x83,0x9d}/*utf8*/, 3/*utf8 len*/},{0xbac3/*gb2312*/, 0x597d/*utf16*/, {0xe5,0xa5,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbac4/*gb2312*/, 0x8017/*utf16*/, {0xe8,0x80,0x97}/*utf8*/, 3/*utf8 len*/},{0xbac5/*gb2312*/, 0x53f7/*utf16*/, {0xe5,0x8f,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbac6/*gb2312*/, 0x6d69/*utf16*/, {0xe6,0xb5,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbac7/*gb2312*/, 0x5475/*utf16*/, {0xe5,0x91,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbac8/*gb2312*/, 0x559d/*utf16*/, {0xe5,0x96,0x9d}/*utf8*/, 3/*utf8 len*/},{0xbac9/*gb2312*/, 0x8377/*utf16*/, {0xe8,0x8d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbaca/*gb2312*/, 0x83cf/*utf16*/, {0xe8,0x8f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbacb/*gb2312*/, 0x6838/*utf16*/, {0xe6,0xa0,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbacc/*gb2312*/, 0x79be/*utf16*/, {0xe7,0xa6,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbacd/*gb2312*/, 0x548c/*utf16*/, {0xe5,0x92,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbace/*gb2312*/, 0x4f55/*utf16*/, {0xe4,0xbd,0x95}/*utf8*/, 3/*utf8 len*/},{0xbacf/*gb2312*/, 0x5408/*utf16*/, {0xe5,0x90,0x88}/*utf8*/, 3/*utf8 len*/},{0xbad0/*gb2312*/, 0x76d2/*utf16*/, {0xe7,0x9b,0x92}/*utf8*/, 3/*utf8 len*/},{0xbad1/*gb2312*/, 0x8c89/*utf16*/, {0xe8,0xb2,0x89}/*utf8*/, 3/*utf8 len*/},{0xbad2/*gb2312*/, 0x9602/*utf16*/, {0xe9,0x98,0x82}/*utf8*/, 3/*utf8 len*/},{0xbad3/*gb2312*/, 0x6cb3/*utf16*/, {0xe6,0xb2,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbad4/*gb2312*/, 0x6db8/*utf16*/, {0xe6,0xb6,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbad5/*gb2312*/, 0x8d6b/*utf16*/, {0xe8,0xb5,0xab}/*utf8*/, 3/*utf8 len*/},{0xbad6/*gb2312*/, 0x8910/*utf16*/, {0xe8,0xa4,0x90}/*utf8*/, 3/*utf8 len*/},{0xbad7/*gb2312*/, 0x9e64/*utf16*/, {0xe9,0xb9,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbad8/*gb2312*/, 0x8d3a/*utf16*/, {0xe8,0xb4,0xba}/*utf8*/, 3/*utf8 len*/},{0xbad9/*gb2312*/, 0x563f/*utf16*/, {0xe5,0x98,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbada/*gb2312*/, 0x9ed1/*utf16*/, {0xe9,0xbb,0x91}/*utf8*/, 3/*utf8 len*/},{0xbadb/*gb2312*/, 0x75d5/*utf16*/, {0xe7,0x97,0x95}/*utf8*/, 3/*utf8 len*/},{0xbadc/*gb2312*/, 0x5f88/*utf16*/, {0xe5,0xbe,0x88}/*utf8*/, 3/*utf8 len*/},{0xbadd/*gb2312*/, 0x72e0/*utf16*/, {0xe7,0x8b,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbade/*gb2312*/, 0x6068/*utf16*/, {0xe6,0x81,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbadf/*gb2312*/, 0x54fc/*utf16*/, {0xe5,0x93,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbae0/*gb2312*/, 0x4ea8/*utf16*/, {0xe4,0xba,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbae1/*gb2312*/, 0x6a2a/*utf16*/, {0xe6,0xa8,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbae2/*gb2312*/, 0x8861/*utf16*/, {0xe8,0xa1,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbae3/*gb2312*/, 0x6052/*utf16*/, {0xe6,0x81,0x92}/*utf8*/, 3/*utf8 len*/},{0xbae4/*gb2312*/, 0x8f70/*utf16*/, {0xe8,0xbd,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbae5/*gb2312*/, 0x54c4/*utf16*/, {0xe5,0x93,0x84}/*utf8*/, 3/*utf8 len*/},{0xbae6/*gb2312*/, 0x70d8/*utf16*/, {0xe7,0x83,0x98}/*utf8*/, 3/*utf8 len*/},{0xbae7/*gb2312*/, 0x8679/*utf16*/, {0xe8,0x99,0xb9}/*utf8*/, 3/*utf8 len*/},{0xbae8/*gb2312*/, 0x9e3f/*utf16*/, {0xe9,0xb8,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbae9/*gb2312*/, 0x6d2a/*utf16*/, {0xe6,0xb4,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbaea/*gb2312*/, 0x5b8f/*utf16*/, {0xe5,0xae,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbaeb/*gb2312*/, 0x5f18/*utf16*/, {0xe5,0xbc,0x98}/*utf8*/, 3/*utf8 len*/},{0xbaec/*gb2312*/, 0x7ea2/*utf16*/, {0xe7,0xba,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbaed/*gb2312*/, 0x5589/*utf16*/, {0xe5,0x96,0x89}/*utf8*/, 3/*utf8 len*/},{0xbaee/*gb2312*/, 0x4faf/*utf16*/, {0xe4,0xbe,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbaef/*gb2312*/, 0x7334/*utf16*/, {0xe7,0x8c,0xb4}/*utf8*/, 3/*utf8 len*/},{0xbaf0/*gb2312*/, 0x543c/*utf16*/, {0xe5,0x90,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbaf1/*gb2312*/, 0x539a/*utf16*/, {0xe5,0x8e,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbaf2/*gb2312*/, 0x5019/*utf16*/, {0xe5,0x80,0x99}/*utf8*/, 3/*utf8 len*/},{0xbaf3/*gb2312*/, 0x540e/*utf16*/, {0xe5,0x90,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbaf4/*gb2312*/, 0x547c/*utf16*/, {0xe5,0x91,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbaf5/*gb2312*/, 0x4e4e/*utf16*/, {0xe4,0xb9,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbaf6/*gb2312*/, 0x5ffd/*utf16*/, {0xe5,0xbf,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbaf7/*gb2312*/, 0x745a/*utf16*/, {0xe7,0x91,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbaf8/*gb2312*/, 0x58f6/*utf16*/, {0xe5,0xa3,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbaf9/*gb2312*/, 0x846b/*utf16*/, {0xe8,0x91,0xab}/*utf8*/, 3/*utf8 len*/},{0xbafa/*gb2312*/, 0x80e1/*utf16*/, {0xe8,0x83,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbafb/*gb2312*/, 0x8774/*utf16*/, {0xe8,0x9d,0xb4}/*utf8*/, 3/*utf8 len*/},{0xbafc/*gb2312*/, 0x72d0/*utf16*/, {0xe7,0x8b,0x90}/*utf8*/, 3/*utf8 len*/},{0xbafd/*gb2312*/, 0x7cca/*utf16*/, {0xe7,0xb3,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbafe/*gb2312*/, 0x6e56/*utf16*/, {0xe6,0xb9,0x96}/*utf8*/, 3/*utf8 len*/},{0xbba1/*gb2312*/, 0x5f27/*utf16*/, {0xe5,0xbc,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbba2/*gb2312*/, 0x864e/*utf16*/, {0xe8,0x99,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbba3/*gb2312*/, 0x552c/*utf16*/, {0xe5,0x94,0xac}/*utf8*/, 3/*utf8 len*/},{0xbba4/*gb2312*/, 0x62a4/*utf16*/, {0xe6,0x8a,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbba5/*gb2312*/, 0x4e92/*utf16*/, {0xe4,0xba,0x92}/*utf8*/, 3/*utf8 len*/},{0xbba6/*gb2312*/, 0x6caa/*utf16*/, {0xe6,0xb2,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbba7/*gb2312*/, 0x6237/*utf16*/, {0xe6,0x88,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbba8/*gb2312*/, 0x82b1/*utf16*/, {0xe8,0x8a,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbba9/*gb2312*/, 0x54d7/*utf16*/, {0xe5,0x93,0x97}/*utf8*/, 3/*utf8 len*/},{0xbbaa/*gb2312*/, 0x534e/*utf16*/, {0xe5,0x8d,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbbab/*gb2312*/, 0x733e/*utf16*/, {0xe7,0x8c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbbac/*gb2312*/, 0x6ed1/*utf16*/, {0xe6,0xbb,0x91}/*utf8*/, 3/*utf8 len*/},{0xbbad/*gb2312*/, 0x753b/*utf16*/, {0xe7,0x94,0xbb}/*utf8*/, 3/*utf8 len*/},{0xbbae/*gb2312*/, 0x5212/*utf16*/, {0xe5,0x88,0x92}/*utf8*/, 3/*utf8 len*/},{0xbbaf/*gb2312*/, 0x5316/*utf16*/, {0xe5,0x8c,0x96}/*utf8*/, 3/*utf8 len*/},{0xbbb0/*gb2312*/, 0x8bdd/*utf16*/, {0xe8,0xaf,0x9d}/*utf8*/, 3/*utf8 len*/},{0xbbb1/*gb2312*/, 0x69d0/*utf16*/, {0xe6,0xa7,0x90}/*utf8*/, 3/*utf8 len*/},{0xbbb2/*gb2312*/, 0x5f8a/*utf16*/, {0xe5,0xbe,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbbb3/*gb2312*/, 0x6000/*utf16*/, {0xe6,0x80,0x80}/*utf8*/, 3/*utf8 len*/},{0xbbb4/*gb2312*/, 0x6dee/*utf16*/, {0xe6,0xb7,0xae}/*utf8*/, 3/*utf8 len*/},{0xbbb5/*gb2312*/, 0x574f/*utf16*/, {0xe5,0x9d,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbbb6/*gb2312*/, 0x6b22/*utf16*/, {0xe6,0xac,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbbb7/*gb2312*/, 0x73af/*utf16*/, {0xe7,0x8e,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbbb8/*gb2312*/, 0x6853/*utf16*/, {0xe6,0xa1,0x93}/*utf8*/, 3/*utf8 len*/},{0xbbb9/*gb2312*/, 0x8fd8/*utf16*/, {0xe8,0xbf,0x98}/*utf8*/, 3/*utf8 len*/},{0xbbba/*gb2312*/, 0x7f13/*utf16*/, {0xe7,0xbc,0x93}/*utf8*/, 3/*utf8 len*/},{0xbbbb/*gb2312*/, 0x6362/*utf16*/, {0xe6,0x8d,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbbbc/*gb2312*/, 0x60a3/*utf16*/, {0xe6,0x82,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbbbd/*gb2312*/, 0x5524/*utf16*/, {0xe5,0x94,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbbbe/*gb2312*/, 0x75ea/*utf16*/, {0xe7,0x97,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbbbf/*gb2312*/, 0x8c62/*utf16*/, {0xe8,0xb1,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbbc0/*gb2312*/, 0x7115/*utf16*/, {0xe7,0x84,0x95}/*utf8*/, 3/*utf8 len*/},{0xbbc1/*gb2312*/, 0x6da3/*utf16*/, {0xe6,0xb6,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbbc2/*gb2312*/, 0x5ba6/*utf16*/, {0xe5,0xae,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbbc3/*gb2312*/, 0x5e7b/*utf16*/, {0xe5,0xb9,0xbb}/*utf8*/, 3/*utf8 len*/},{0xbbc4/*gb2312*/, 0x8352/*utf16*/, {0xe8,0x8d,0x92}/*utf8*/, 3/*utf8 len*/},{0xbbc5/*gb2312*/, 0x614c/*utf16*/, {0xe6,0x85,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbbc6/*gb2312*/, 0x9ec4/*utf16*/, {0xe9,0xbb,0x84}/*utf8*/, 3/*utf8 len*/},{0xbbc7/*gb2312*/, 0x78fa/*utf16*/, {0xe7,0xa3,0xba}/*utf8*/, 3/*utf8 len*/},{0xbbc8/*gb2312*/, 0x8757/*utf16*/, {0xe8,0x9d,0x97}/*utf8*/, 3/*utf8 len*/},{0xbbc9/*gb2312*/, 0x7c27/*utf16*/, {0xe7,0xb0,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbbca/*gb2312*/, 0x7687/*utf16*/, {0xe7,0x9a,0x87}/*utf8*/, 3/*utf8 len*/},{0xbbcb/*gb2312*/, 0x51f0/*utf16*/, {0xe5,0x87,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbbcc/*gb2312*/, 0x60f6/*utf16*/, {0xe6,0x83,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbbcd/*gb2312*/, 0x714c/*utf16*/, {0xe7,0x85,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbbce/*gb2312*/, 0x6643/*utf16*/, {0xe6,0x99,0x83}/*utf8*/, 3/*utf8 len*/},{0xbbcf/*gb2312*/, 0x5e4c/*utf16*/, {0xe5,0xb9,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbbd0/*gb2312*/, 0x604d/*utf16*/, {0xe6,0x81,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbbd1/*gb2312*/, 0x8c0e/*utf16*/, {0xe8,0xb0,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbbd2/*gb2312*/, 0x7070/*utf16*/, {0xe7,0x81,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbbd3/*gb2312*/, 0x6325/*utf16*/, {0xe6,0x8c,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbbd4/*gb2312*/, 0x8f89/*utf16*/, {0xe8,0xbe,0x89}/*utf8*/, 3/*utf8 len*/},{0xbbd5/*gb2312*/, 0x5fbd/*utf16*/, {0xe5,0xbe,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbbd6/*gb2312*/, 0x6062/*utf16*/, {0xe6,0x81,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbbd7/*gb2312*/, 0x86d4/*utf16*/, {0xe8,0x9b,0x94}/*utf8*/, 3/*utf8 len*/},{0xbbd8/*gb2312*/, 0x56de/*utf16*/, {0xe5,0x9b,0x9e}/*utf8*/, 3/*utf8 len*/},{0xbbd9/*gb2312*/, 0x6bc1/*utf16*/, {0xe6,0xaf,0x81}/*utf8*/, 3/*utf8 len*/},{0xbbda/*gb2312*/, 0x6094/*utf16*/, {0xe6,0x82,0x94}/*utf8*/, 3/*utf8 len*/},{0xbbdb/*gb2312*/, 0x6167/*utf16*/, {0xe6,0x85,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbbdc/*gb2312*/, 0x5349/*utf16*/, {0xe5,0x8d,0x89}/*utf8*/, 3/*utf8 len*/},{0xbbdd/*gb2312*/, 0x60e0/*utf16*/, {0xe6,0x83,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbbde/*gb2312*/, 0x6666/*utf16*/, {0xe6,0x99,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbbdf/*gb2312*/, 0x8d3f/*utf16*/, {0xe8,0xb4,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbbe0/*gb2312*/, 0x79fd/*utf16*/, {0xe7,0xa7,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbbe1/*gb2312*/, 0x4f1a/*utf16*/, {0xe4,0xbc,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbbe2/*gb2312*/, 0x70e9/*utf16*/, {0xe7,0x83,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbbe3/*gb2312*/, 0x6c47/*utf16*/, {0xe6,0xb1,0x87}/*utf8*/, 3/*utf8 len*/},{0xbbe4/*gb2312*/, 0x8bb3/*utf16*/, {0xe8,0xae,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbbe5/*gb2312*/, 0x8bf2/*utf16*/, {0xe8,0xaf,0xb2}/*utf8*/, 3/*utf8 len*/},{0xbbe6/*gb2312*/, 0x7ed8/*utf16*/, {0xe7,0xbb,0x98}/*utf8*/, 3/*utf8 len*/},{0xbbe7/*gb2312*/, 0x8364/*utf16*/, {0xe8,0x8d,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbbe8/*gb2312*/, 0x660f/*utf16*/, {0xe6,0x98,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbbe9/*gb2312*/, 0x5a5a/*utf16*/, {0xe5,0xa9,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbbea/*gb2312*/, 0x9b42/*utf16*/, {0xe9,0xad,0x82}/*utf8*/, 3/*utf8 len*/},{0xbbeb/*gb2312*/, 0x6d51/*utf16*/, {0xe6,0xb5,0x91}/*utf8*/, 3/*utf8 len*/},{0xbbec/*gb2312*/, 0x6df7/*utf16*/, {0xe6,0xb7,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbbed/*gb2312*/, 0x8c41/*utf16*/, {0xe8,0xb1,0x81}/*utf8*/, 3/*utf8 len*/},{0xbbee/*gb2312*/, 0x6d3b/*utf16*/, {0xe6,0xb4,0xbb}/*utf8*/, 3/*utf8 len*/},{0xbbef/*gb2312*/, 0x4f19/*utf16*/, {0xe4,0xbc,0x99}/*utf8*/, 3/*utf8 len*/},{0xbbf0/*gb2312*/, 0x706b/*utf16*/, {0xe7,0x81,0xab}/*utf8*/, 3/*utf8 len*/},{0xbbf1/*gb2312*/, 0x83b7/*utf16*/, {0xe8,0x8e,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbbf2/*gb2312*/, 0x6216/*utf16*/, {0xe6,0x88,0x96}/*utf8*/, 3/*utf8 len*/},{0xbbf3/*gb2312*/, 0x60d1/*utf16*/, {0xe6,0x83,0x91}/*utf8*/, 3/*utf8 len*/},{0xbbf4/*gb2312*/, 0x970d/*utf16*/, {0xe9,0x9c,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbbf5/*gb2312*/, 0x8d27/*utf16*/, {0xe8,0xb4,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbbf6/*gb2312*/, 0x7978/*utf16*/, {0xe7,0xa5,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbbf7/*gb2312*/, 0x51fb/*utf16*/, {0xe5,0x87,0xbb}/*utf8*/, 3/*utf8 len*/},{0xbbf8/*gb2312*/, 0x573e/*utf16*/, {0xe5,0x9c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbbf9/*gb2312*/, 0x57fa/*utf16*/, {0xe5,0x9f,0xba}/*utf8*/, 3/*utf8 len*/},{0xbbfa/*gb2312*/, 0x673a/*utf16*/, {0xe6,0x9c,0xba}/*utf8*/, 3/*utf8 len*/},{0xbbfb/*gb2312*/, 0x7578/*utf16*/, {0xe7,0x95,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbbfc/*gb2312*/, 0x7a3d/*utf16*/, {0xe7,0xa8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbbfd/*gb2312*/, 0x79ef/*utf16*/, {0xe7,0xa7,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbbfe/*gb2312*/, 0x7b95/*utf16*/, {0xe7,0xae,0x95}/*utf8*/, 3/*utf8 len*/},{0xbca1/*gb2312*/, 0x808c/*utf16*/, {0xe8,0x82,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbca2/*gb2312*/, 0x9965/*utf16*/, {0xe9,0xa5,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbca3/*gb2312*/, 0x8ff9/*utf16*/, {0xe8,0xbf,0xb9}/*utf8*/, 3/*utf8 len*/},{0xbca4/*gb2312*/, 0x6fc0/*utf16*/, {0xe6,0xbf,0x80}/*utf8*/, 3/*utf8 len*/},{0xbca5/*gb2312*/, 0x8ba5/*utf16*/, {0xe8,0xae,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbca6/*gb2312*/, 0x9e21/*utf16*/, {0xe9,0xb8,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbca7/*gb2312*/, 0x59ec/*utf16*/, {0xe5,0xa7,0xac}/*utf8*/, 3/*utf8 len*/},{0xbca8/*gb2312*/, 0x7ee9/*utf16*/, {0xe7,0xbb,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbca9/*gb2312*/, 0x7f09/*utf16*/, {0xe7,0xbc,0x89}/*utf8*/, 3/*utf8 len*/},{0xbcaa/*gb2312*/, 0x5409/*utf16*/, {0xe5,0x90,0x89}/*utf8*/, 3/*utf8 len*/},{0xbcab/*gb2312*/, 0x6781/*utf16*/, {0xe6,0x9e,0x81}/*utf8*/, 3/*utf8 len*/},{0xbcac/*gb2312*/, 0x68d8/*utf16*/, {0xe6,0xa3,0x98}/*utf8*/, 3/*utf8 len*/},{0xbcad/*gb2312*/, 0x8f91/*utf16*/, {0xe8,0xbe,0x91}/*utf8*/, 3/*utf8 len*/},{0xbcae/*gb2312*/, 0x7c4d/*utf16*/, {0xe7,0xb1,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbcaf/*gb2312*/, 0x96c6/*utf16*/, {0xe9,0x9b,0x86}/*utf8*/, 3/*utf8 len*/},{0xbcb0/*gb2312*/, 0x53ca/*utf16*/, {0xe5,0x8f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbcb1/*gb2312*/, 0x6025/*utf16*/, {0xe6,0x80,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbcb2/*gb2312*/, 0x75be/*utf16*/, {0xe7,0x96,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbcb3/*gb2312*/, 0x6c72/*utf16*/, {0xe6,0xb1,0xb2}/*utf8*/, 3/*utf8 len*/},{0xbcb4/*gb2312*/, 0x5373/*utf16*/, {0xe5,0x8d,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbcb5/*gb2312*/, 0x5ac9/*utf16*/, {0xe5,0xab,0x89}/*utf8*/, 3/*utf8 len*/},{0xbcb6/*gb2312*/, 0x7ea7/*utf16*/, {0xe7,0xba,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbcb7/*gb2312*/, 0x6324/*utf16*/, {0xe6,0x8c,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbcb8/*gb2312*/, 0x51e0/*utf16*/, {0xe5,0x87,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbcb9/*gb2312*/, 0x810a/*utf16*/, {0xe8,0x84,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbcba/*gb2312*/, 0x5df1/*utf16*/, {0xe5,0xb7,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbcbb/*gb2312*/, 0x84df/*utf16*/, {0xe8,0x93,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbcbc/*gb2312*/, 0x6280/*utf16*/, {0xe6,0x8a,0x80}/*utf8*/, 3/*utf8 len*/},{0xbcbd/*gb2312*/, 0x5180/*utf16*/, {0xe5,0x86,0x80}/*utf8*/, 3/*utf8 len*/},{0xbcbe/*gb2312*/, 0x5b63/*utf16*/, {0xe5,0xad,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbcbf/*gb2312*/, 0x4f0e/*utf16*/, {0xe4,0xbc,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbcc0/*gb2312*/, 0x796d/*utf16*/, {0xe7,0xa5,0xad}/*utf8*/, 3/*utf8 len*/},{0xbcc1/*gb2312*/, 0x5242/*utf16*/, {0xe5,0x89,0x82}/*utf8*/, 3/*utf8 len*/},{0xbcc2/*gb2312*/, 0x60b8/*utf16*/, {0xe6,0x82,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbcc3/*gb2312*/, 0x6d4e/*utf16*/, {0xe6,0xb5,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbcc4/*gb2312*/, 0x5bc4/*utf16*/, {0xe5,0xaf,0x84}/*utf8*/, 3/*utf8 len*/},{0xbcc5/*gb2312*/, 0x5bc2/*utf16*/, {0xe5,0xaf,0x82}/*utf8*/, 3/*utf8 len*/},{0xbcc6/*gb2312*/, 0x8ba1/*utf16*/, {0xe8,0xae,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbcc7/*gb2312*/, 0x8bb0/*utf16*/, {0xe8,0xae,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbcc8/*gb2312*/, 0x65e2/*utf16*/, {0xe6,0x97,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbcc9/*gb2312*/, 0x5fcc/*utf16*/, {0xe5,0xbf,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbcca/*gb2312*/, 0x9645/*utf16*/, {0xe9,0x99,0x85}/*utf8*/, 3/*utf8 len*/},{0xbccb/*gb2312*/, 0x5993/*utf16*/, {0xe5,0xa6,0x93}/*utf8*/, 3/*utf8 len*/},{0xbccc/*gb2312*/, 0x7ee7/*utf16*/, {0xe7,0xbb,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbccd/*gb2312*/, 0x7eaa/*utf16*/, {0xe7,0xba,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbcce/*gb2312*/, 0x5609/*utf16*/, {0xe5,0x98,0x89}/*utf8*/, 3/*utf8 len*/},{0xbccf/*gb2312*/, 0x67b7/*utf16*/, {0xe6,0x9e,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbcd0/*gb2312*/, 0x5939/*utf16*/, {0xe5,0xa4,0xb9}/*utf8*/, 3/*utf8 len*/},{0xbcd1/*gb2312*/, 0x4f73/*utf16*/, {0xe4,0xbd,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbcd2/*gb2312*/, 0x5bb6/*utf16*/, {0xe5,0xae,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbcd3/*gb2312*/, 0x52a0/*utf16*/, {0xe5,0x8a,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbcd4/*gb2312*/, 0x835a/*utf16*/, {0xe8,0x8d,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbcd5/*gb2312*/, 0x988a/*utf16*/, {0xe9,0xa2,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbcd6/*gb2312*/, 0x8d3e/*utf16*/, {0xe8,0xb4,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbcd7/*gb2312*/, 0x7532/*utf16*/, {0xe7,0x94,0xb2}/*utf8*/, 3/*utf8 len*/},{0xbcd8/*gb2312*/, 0x94be/*utf16*/, {0xe9,0x92,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbcd9/*gb2312*/, 0x5047/*utf16*/, {0xe5,0x81,0x87}/*utf8*/, 3/*utf8 len*/},{0xbcda/*gb2312*/, 0x7a3c/*utf16*/, {0xe7,0xa8,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbcdb/*gb2312*/, 0x4ef7/*utf16*/, {0xe4,0xbb,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbcdc/*gb2312*/, 0x67b6/*utf16*/, {0xe6,0x9e,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbcdd/*gb2312*/, 0x9a7e/*utf16*/, {0xe9,0xa9,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbcde/*gb2312*/, 0x5ac1/*utf16*/, {0xe5,0xab,0x81}/*utf8*/, 3/*utf8 len*/},{0xbcdf/*gb2312*/, 0x6b7c/*utf16*/, {0xe6,0xad,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbce0/*gb2312*/, 0x76d1/*utf16*/, {0xe7,0x9b,0x91}/*utf8*/, 3/*utf8 len*/},{0xbce1/*gb2312*/, 0x575a/*utf16*/, {0xe5,0x9d,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbce2/*gb2312*/, 0x5c16/*utf16*/, {0xe5,0xb0,0x96}/*utf8*/, 3/*utf8 len*/},{0xbce3/*gb2312*/, 0x7b3a/*utf16*/, {0xe7,0xac,0xba}/*utf8*/, 3/*utf8 len*/},{0xbce4/*gb2312*/, 0x95f4/*utf16*/, {0xe9,0x97,0xb4}/*utf8*/, 3/*utf8 len*/},{0xbce5/*gb2312*/, 0x714e/*utf16*/, {0xe7,0x85,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbce6/*gb2312*/, 0x517c/*utf16*/, {0xe5,0x85,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbce7/*gb2312*/, 0x80a9/*utf16*/, {0xe8,0x82,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbce8/*gb2312*/, 0x8270/*utf16*/, {0xe8,0x89,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbce9/*gb2312*/, 0x5978/*utf16*/, {0xe5,0xa5,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbcea/*gb2312*/, 0x7f04/*utf16*/, {0xe7,0xbc,0x84}/*utf8*/, 3/*utf8 len*/},{0xbceb/*gb2312*/, 0x8327/*utf16*/, {0xe8,0x8c,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbcec/*gb2312*/, 0x68c0/*utf16*/, {0xe6,0xa3,0x80}/*utf8*/, 3/*utf8 len*/},{0xbced/*gb2312*/, 0x67ec/*utf16*/, {0xe6,0x9f,0xac}/*utf8*/, 3/*utf8 len*/},{0xbcee/*gb2312*/, 0x78b1/*utf16*/, {0xe7,0xa2,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbcef/*gb2312*/, 0x7877/*utf16*/, {0xe7,0xa1,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbcf0/*gb2312*/, 0x62e3/*utf16*/, {0xe6,0x8b,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbcf1/*gb2312*/, 0x6361/*utf16*/, {0xe6,0x8d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbcf2/*gb2312*/, 0x7b80/*utf16*/, {0xe7,0xae,0x80}/*utf8*/, 3/*utf8 len*/},{0xbcf3/*gb2312*/, 0x4fed/*utf16*/, {0xe4,0xbf,0xad}/*utf8*/, 3/*utf8 len*/},{0xbcf4/*gb2312*/, 0x526a/*utf16*/, {0xe5,0x89,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbcf5/*gb2312*/, 0x51cf/*utf16*/, {0xe5,0x87,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbcf6/*gb2312*/, 0x8350/*utf16*/, {0xe8,0x8d,0x90}/*utf8*/, 3/*utf8 len*/},{0xbcf7/*gb2312*/, 0x69db/*utf16*/, {0xe6,0xa7,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbcf8/*gb2312*/, 0x9274/*utf16*/, {0xe9,0x89,0xb4}/*utf8*/, 3/*utf8 len*/},{0xbcf9/*gb2312*/, 0x8df5/*utf16*/, {0xe8,0xb7,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbcfa/*gb2312*/, 0x8d31/*utf16*/, {0xe8,0xb4,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbcfb/*gb2312*/, 0x89c1/*utf16*/, {0xe8,0xa7,0x81}/*utf8*/, 3/*utf8 len*/},{0xbcfc/*gb2312*/, 0x952e/*utf16*/, {0xe9,0x94,0xae}/*utf8*/, 3/*utf8 len*/},{0xbcfd/*gb2312*/, 0x7bad/*utf16*/, {0xe7,0xae,0xad}/*utf8*/, 3/*utf8 len*/},{0xbcfe/*gb2312*/, 0x4ef6/*utf16*/, {0xe4,0xbb,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbda1/*gb2312*/, 0x5065/*utf16*/, {0xe5,0x81,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbda2/*gb2312*/, 0x8230/*utf16*/, {0xe8,0x88,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbda3/*gb2312*/, 0x5251/*utf16*/, {0xe5,0x89,0x91}/*utf8*/, 3/*utf8 len*/},{0xbda4/*gb2312*/, 0x996f/*utf16*/, {0xe9,0xa5,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbda5/*gb2312*/, 0x6e10/*utf16*/, {0xe6,0xb8,0x90}/*utf8*/, 3/*utf8 len*/},{0xbda6/*gb2312*/, 0x6e85/*utf16*/, {0xe6,0xba,0x85}/*utf8*/, 3/*utf8 len*/},{0xbda7/*gb2312*/, 0x6da7/*utf16*/, {0xe6,0xb6,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbda8/*gb2312*/, 0x5efa/*utf16*/, {0xe5,0xbb,0xba}/*utf8*/, 3/*utf8 len*/},{0xbda9/*gb2312*/, 0x50f5/*utf16*/, {0xe5,0x83,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbdaa/*gb2312*/, 0x59dc/*utf16*/, {0xe5,0xa7,0x9c}/*utf8*/, 3/*utf8 len*/},{0xbdab/*gb2312*/, 0x5c06/*utf16*/, {0xe5,0xb0,0x86}/*utf8*/, 3/*utf8 len*/},{0xbdac/*gb2312*/, 0x6d46/*utf16*/, {0xe6,0xb5,0x86}/*utf8*/, 3/*utf8 len*/},{0xbdad/*gb2312*/, 0x6c5f/*utf16*/, {0xe6,0xb1,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbdae/*gb2312*/, 0x7586/*utf16*/, {0xe7,0x96,0x86}/*utf8*/, 3/*utf8 len*/},{0xbdaf/*gb2312*/, 0x848b/*utf16*/, {0xe8,0x92,0x8b}/*utf8*/, 3/*utf8 len*/},{0xbdb0/*gb2312*/, 0x6868/*utf16*/, {0xe6,0xa1,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbdb1/*gb2312*/, 0x5956/*utf16*/, {0xe5,0xa5,0x96}/*utf8*/, 3/*utf8 len*/},{0xbdb2/*gb2312*/, 0x8bb2/*utf16*/, {0xe8,0xae,0xb2}/*utf8*/, 3/*utf8 len*/},{0xbdb3/*gb2312*/, 0x5320/*utf16*/, {0xe5,0x8c,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbdb4/*gb2312*/, 0x9171/*utf16*/, {0xe9,0x85,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbdb5/*gb2312*/, 0x964d/*utf16*/, {0xe9,0x99,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbdb6/*gb2312*/, 0x8549/*utf16*/, {0xe8,0x95,0x89}/*utf8*/, 3/*utf8 len*/},{0xbdb7/*gb2312*/, 0x6912/*utf16*/, {0xe6,0xa4,0x92}/*utf8*/, 3/*utf8 len*/},{0xbdb8/*gb2312*/, 0x7901/*utf16*/, {0xe7,0xa4,0x81}/*utf8*/, 3/*utf8 len*/},{0xbdb9/*gb2312*/, 0x7126/*utf16*/, {0xe7,0x84,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbdba/*gb2312*/, 0x80f6/*utf16*/, {0xe8,0x83,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbdbb/*gb2312*/, 0x4ea4/*utf16*/, {0xe4,0xba,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbdbc/*gb2312*/, 0x90ca/*utf16*/, {0xe9,0x83,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbdbd/*gb2312*/, 0x6d47/*utf16*/, {0xe6,0xb5,0x87}/*utf8*/, 3/*utf8 len*/},{0xbdbe/*gb2312*/, 0x9a84/*utf16*/, {0xe9,0xaa,0x84}/*utf8*/, 3/*utf8 len*/},{0xbdbf/*gb2312*/, 0x5a07/*utf16*/, {0xe5,0xa8,0x87}/*utf8*/, 3/*utf8 len*/},{0xbdc0/*gb2312*/, 0x56bc/*utf16*/, {0xe5,0x9a,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbdc1/*gb2312*/, 0x6405/*utf16*/, {0xe6,0x90,0x85}/*utf8*/, 3/*utf8 len*/},{0xbdc2/*gb2312*/, 0x94f0/*utf16*/, {0xe9,0x93,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbdc3/*gb2312*/, 0x77eb/*utf16*/, {0xe7,0x9f,0xab}/*utf8*/, 3/*utf8 len*/},{0xbdc4/*gb2312*/, 0x4fa5/*utf16*/, {0xe4,0xbe,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbdc5/*gb2312*/, 0x811a/*utf16*/, {0xe8,0x84,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbdc6/*gb2312*/, 0x72e1/*utf16*/, {0xe7,0x8b,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbdc7/*gb2312*/, 0x89d2/*utf16*/, {0xe8,0xa7,0x92}/*utf8*/, 3/*utf8 len*/},{0xbdc8/*gb2312*/, 0x997a/*utf16*/, {0xe9,0xa5,0xba}/*utf8*/, 3/*utf8 len*/},{0xbdc9/*gb2312*/, 0x7f34/*utf16*/, {0xe7,0xbc,0xb4}/*utf8*/, 3/*utf8 len*/},{0xbdca/*gb2312*/, 0x7ede/*utf16*/, {0xe7,0xbb,0x9e}/*utf8*/, 3/*utf8 len*/},{0xbdcb/*gb2312*/, 0x527f/*utf16*/, {0xe5,0x89,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbdcc/*gb2312*/, 0x6559/*utf16*/, {0xe6,0x95,0x99}/*utf8*/, 3/*utf8 len*/},{0xbdcd/*gb2312*/, 0x9175/*utf16*/, {0xe9,0x85,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbdce/*gb2312*/, 0x8f7f/*utf16*/, {0xe8,0xbd,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbdcf/*gb2312*/, 0x8f83/*utf16*/, {0xe8,0xbe,0x83}/*utf8*/, 3/*utf8 len*/},{0xbdd0/*gb2312*/, 0x53eb/*utf16*/, {0xe5,0x8f,0xab}/*utf8*/, 3/*utf8 len*/},{0xbdd1/*gb2312*/, 0x7a96/*utf16*/, {0xe7,0xaa,0x96}/*utf8*/, 3/*utf8 len*/},{0xbdd2/*gb2312*/, 0x63ed/*utf16*/, {0xe6,0x8f,0xad}/*utf8*/, 3/*utf8 len*/},{0xbdd3/*gb2312*/, 0x63a5/*utf16*/, {0xe6,0x8e,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbdd4/*gb2312*/, 0x7686/*utf16*/, {0xe7,0x9a,0x86}/*utf8*/, 3/*utf8 len*/},{0xbdd5/*gb2312*/, 0x79f8/*utf16*/, {0xe7,0xa7,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbdd6/*gb2312*/, 0x8857/*utf16*/, {0xe8,0xa1,0x97}/*utf8*/, 3/*utf8 len*/},{0xbdd7/*gb2312*/, 0x9636/*utf16*/, {0xe9,0x98,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbdd8/*gb2312*/, 0x622a/*utf16*/, {0xe6,0x88,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbdd9/*gb2312*/, 0x52ab/*utf16*/, {0xe5,0x8a,0xab}/*utf8*/, 3/*utf8 len*/},{0xbdda/*gb2312*/, 0x8282/*utf16*/, {0xe8,0x8a,0x82}/*utf8*/, 3/*utf8 len*/},{0xbddb/*gb2312*/, 0x6854/*utf16*/, {0xe6,0xa1,0x94}/*utf8*/, 3/*utf8 len*/},{0xbddc/*gb2312*/, 0x6770/*utf16*/, {0xe6,0x9d,0xb0}/*utf8*/, 3/*utf8 len*/},{0xbddd/*gb2312*/, 0x6377/*utf16*/, {0xe6,0x8d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbdde/*gb2312*/, 0x776b/*utf16*/, {0xe7,0x9d,0xab}/*utf8*/, 3/*utf8 len*/},{0xbddf/*gb2312*/, 0x7aed/*utf16*/, {0xe7,0xab,0xad}/*utf8*/, 3/*utf8 len*/},{0xbde0/*gb2312*/, 0x6d01/*utf16*/, {0xe6,0xb4,0x81}/*utf8*/, 3/*utf8 len*/},{0xbde1/*gb2312*/, 0x7ed3/*utf16*/, {0xe7,0xbb,0x93}/*utf8*/, 3/*utf8 len*/},{0xbde2/*gb2312*/, 0x89e3/*utf16*/, {0xe8,0xa7,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbde3/*gb2312*/, 0x59d0/*utf16*/, {0xe5,0xa7,0x90}/*utf8*/, 3/*utf8 len*/},{0xbde4/*gb2312*/, 0x6212/*utf16*/, {0xe6,0x88,0x92}/*utf8*/, 3/*utf8 len*/},{0xbde5/*gb2312*/, 0x85c9/*utf16*/, {0xe8,0x97,0x89}/*utf8*/, 3/*utf8 len*/},{0xbde6/*gb2312*/, 0x82a5/*utf16*/, {0xe8,0x8a,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbde7/*gb2312*/, 0x754c/*utf16*/, {0xe7,0x95,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbde8/*gb2312*/, 0x501f/*utf16*/, {0xe5,0x80,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbde9/*gb2312*/, 0x4ecb/*utf16*/, {0xe4,0xbb,0x8b}/*utf8*/, 3/*utf8 len*/},{0xbdea/*gb2312*/, 0x75a5/*utf16*/, {0xe7,0x96,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbdeb/*gb2312*/, 0x8beb/*utf16*/, {0xe8,0xaf,0xab}/*utf8*/, 3/*utf8 len*/},{0xbdec/*gb2312*/, 0x5c4a/*utf16*/, {0xe5,0xb1,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbded/*gb2312*/, 0x5dfe/*utf16*/, {0xe5,0xb7,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbdee/*gb2312*/, 0x7b4b/*utf16*/, {0xe7,0xad,0x8b}/*utf8*/, 3/*utf8 len*/},{0xbdef/*gb2312*/, 0x65a4/*utf16*/, {0xe6,0x96,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbdf0/*gb2312*/, 0x91d1/*utf16*/, {0xe9,0x87,0x91}/*utf8*/, 3/*utf8 len*/},{0xbdf1/*gb2312*/, 0x4eca/*utf16*/, {0xe4,0xbb,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbdf2/*gb2312*/, 0x6d25/*utf16*/, {0xe6,0xb4,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbdf3/*gb2312*/, 0x895f/*utf16*/, {0xe8,0xa5,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbdf4/*gb2312*/, 0x7d27/*utf16*/, {0xe7,0xb4,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbdf5/*gb2312*/, 0x9526/*utf16*/, {0xe9,0x94,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbdf6/*gb2312*/, 0x4ec5/*utf16*/, {0xe4,0xbb,0x85}/*utf8*/, 3/*utf8 len*/},{0xbdf7/*gb2312*/, 0x8c28/*utf16*/, {0xe8,0xb0,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbdf8/*gb2312*/, 0x8fdb/*utf16*/, {0xe8,0xbf,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbdf9/*gb2312*/, 0x9773/*utf16*/, {0xe9,0x9d,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbdfa/*gb2312*/, 0x664b/*utf16*/, {0xe6,0x99,0x8b}/*utf8*/, 3/*utf8 len*/},{0xbdfb/*gb2312*/, 0x7981/*utf16*/, {0xe7,0xa6,0x81}/*utf8*/, 3/*utf8 len*/},{0xbdfc/*gb2312*/, 0x8fd1/*utf16*/, {0xe8,0xbf,0x91}/*utf8*/, 3/*utf8 len*/},{0xbdfd/*gb2312*/, 0x70ec/*utf16*/, {0xe7,0x83,0xac}/*utf8*/, 3/*utf8 len*/},{0xbdfe/*gb2312*/, 0x6d78/*utf16*/, {0xe6,0xb5,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbea1/*gb2312*/, 0x5c3d/*utf16*/, {0xe5,0xb0,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbea2/*gb2312*/, 0x52b2/*utf16*/, {0xe5,0x8a,0xb2}/*utf8*/, 3/*utf8 len*/},{0xbea3/*gb2312*/, 0x8346/*utf16*/, {0xe8,0x8d,0x86}/*utf8*/, 3/*utf8 len*/},{0xbea4/*gb2312*/, 0x5162/*utf16*/, {0xe5,0x85,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbea5/*gb2312*/, 0x830e/*utf16*/, {0xe8,0x8c,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbea6/*gb2312*/, 0x775b/*utf16*/, {0xe7,0x9d,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbea7/*gb2312*/, 0x6676/*utf16*/, {0xe6,0x99,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbea8/*gb2312*/, 0x9cb8/*utf16*/, {0xe9,0xb2,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbea9/*gb2312*/, 0x4eac/*utf16*/, {0xe4,0xba,0xac}/*utf8*/, 3/*utf8 len*/},{0xbeaa/*gb2312*/, 0x60ca/*utf16*/, {0xe6,0x83,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbeab/*gb2312*/, 0x7cbe/*utf16*/, {0xe7,0xb2,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbeac/*gb2312*/, 0x7cb3/*utf16*/, {0xe7,0xb2,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbead/*gb2312*/, 0x7ecf/*utf16*/, {0xe7,0xbb,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbeae/*gb2312*/, 0x4e95/*utf16*/, {0xe4,0xba,0x95}/*utf8*/, 3/*utf8 len*/},{0xbeaf/*gb2312*/, 0x8b66/*utf16*/, {0xe8,0xad,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbeb0/*gb2312*/, 0x666f/*utf16*/, {0xe6,0x99,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbeb1/*gb2312*/, 0x9888/*utf16*/, {0xe9,0xa2,0x88}/*utf8*/, 3/*utf8 len*/},{0xbeb2/*gb2312*/, 0x9759/*utf16*/, {0xe9,0x9d,0x99}/*utf8*/, 3/*utf8 len*/},{0xbeb3/*gb2312*/, 0x5883/*utf16*/, {0xe5,0xa2,0x83}/*utf8*/, 3/*utf8 len*/},{0xbeb4/*gb2312*/, 0x656c/*utf16*/, {0xe6,0x95,0xac}/*utf8*/, 3/*utf8 len*/},{0xbeb5/*gb2312*/, 0x955c/*utf16*/, {0xe9,0x95,0x9c}/*utf8*/, 3/*utf8 len*/},{0xbeb6/*gb2312*/, 0x5f84/*utf16*/, {0xe5,0xbe,0x84}/*utf8*/, 3/*utf8 len*/},{0xbeb7/*gb2312*/, 0x75c9/*utf16*/, {0xe7,0x97,0x89}/*utf8*/, 3/*utf8 len*/},{0xbeb8/*gb2312*/, 0x9756/*utf16*/, {0xe9,0x9d,0x96}/*utf8*/, 3/*utf8 len*/},{0xbeb9/*gb2312*/, 0x7adf/*utf16*/, {0xe7,0xab,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbeba/*gb2312*/, 0x7ade/*utf16*/, {0xe7,0xab,0x9e}/*utf8*/, 3/*utf8 len*/},{0xbebb/*gb2312*/, 0x51c0/*utf16*/, {0xe5,0x87,0x80}/*utf8*/, 3/*utf8 len*/},{0xbebc/*gb2312*/, 0x70af/*utf16*/, {0xe7,0x82,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbebd/*gb2312*/, 0x7a98/*utf16*/, {0xe7,0xaa,0x98}/*utf8*/, 3/*utf8 len*/},{0xbebe/*gb2312*/, 0x63ea/*utf16*/, {0xe6,0x8f,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbebf/*gb2312*/, 0x7a76/*utf16*/, {0xe7,0xa9,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbec0/*gb2312*/, 0x7ea0/*utf16*/, {0xe7,0xba,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbec1/*gb2312*/, 0x7396/*utf16*/, {0xe7,0x8e,0x96}/*utf8*/, 3/*utf8 len*/},{0xbec2/*gb2312*/, 0x97ed/*utf16*/, {0xe9,0x9f,0xad}/*utf8*/, 3/*utf8 len*/},{0xbec3/*gb2312*/, 0x4e45/*utf16*/, {0xe4,0xb9,0x85}/*utf8*/, 3/*utf8 len*/},{0xbec4/*gb2312*/, 0x7078/*utf16*/, {0xe7,0x81,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbec5/*gb2312*/, 0x4e5d/*utf16*/, {0xe4,0xb9,0x9d}/*utf8*/, 3/*utf8 len*/},{0xbec6/*gb2312*/, 0x9152/*utf16*/, {0xe9,0x85,0x92}/*utf8*/, 3/*utf8 len*/},{0xbec7/*gb2312*/, 0x53a9/*utf16*/, {0xe5,0x8e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbec8/*gb2312*/, 0x6551/*utf16*/, {0xe6,0x95,0x91}/*utf8*/, 3/*utf8 len*/},{0xbec9/*gb2312*/, 0x65e7/*utf16*/, {0xe6,0x97,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbeca/*gb2312*/, 0x81fc/*utf16*/, {0xe8,0x87,0xbc}/*utf8*/, 3/*utf8 len*/},{0xbecb/*gb2312*/, 0x8205/*utf16*/, {0xe8,0x88,0x85}/*utf8*/, 3/*utf8 len*/},{0xbecc/*gb2312*/, 0x548e/*utf16*/, {0xe5,0x92,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbecd/*gb2312*/, 0x5c31/*utf16*/, {0xe5,0xb0,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbece/*gb2312*/, 0x759a/*utf16*/, {0xe7,0x96,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbecf/*gb2312*/, 0x97a0/*utf16*/, {0xe9,0x9e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbed0/*gb2312*/, 0x62d8/*utf16*/, {0xe6,0x8b,0x98}/*utf8*/, 3/*utf8 len*/},{0xbed1/*gb2312*/, 0x72d9/*utf16*/, {0xe7,0x8b,0x99}/*utf8*/, 3/*utf8 len*/},{0xbed2/*gb2312*/, 0x75bd/*utf16*/, {0xe7,0x96,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbed3/*gb2312*/, 0x5c45/*utf16*/, {0xe5,0xb1,0x85}/*utf8*/, 3/*utf8 len*/},{0xbed4/*gb2312*/, 0x9a79/*utf16*/, {0xe9,0xa9,0xb9}/*utf8*/, 3/*utf8 len*/},{0xbed5/*gb2312*/, 0x83ca/*utf16*/, {0xe8,0x8f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbed6/*gb2312*/, 0x5c40/*utf16*/, {0xe5,0xb1,0x80}/*utf8*/, 3/*utf8 len*/},{0xbed7/*gb2312*/, 0x5480/*utf16*/, {0xe5,0x92,0x80}/*utf8*/, 3/*utf8 len*/},{0xbed8/*gb2312*/, 0x77e9/*utf16*/, {0xe7,0x9f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbed9/*gb2312*/, 0x4e3e/*utf16*/, {0xe4,0xb8,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbeda/*gb2312*/, 0x6cae/*utf16*/, {0xe6,0xb2,0xae}/*utf8*/, 3/*utf8 len*/},{0xbedb/*gb2312*/, 0x805a/*utf16*/, {0xe8,0x81,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbedc/*gb2312*/, 0x62d2/*utf16*/, {0xe6,0x8b,0x92}/*utf8*/, 3/*utf8 len*/},{0xbedd/*gb2312*/, 0x636e/*utf16*/, {0xe6,0x8d,0xae}/*utf8*/, 3/*utf8 len*/},{0xbede/*gb2312*/, 0x5de8/*utf16*/, {0xe5,0xb7,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbedf/*gb2312*/, 0x5177/*utf16*/, {0xe5,0x85,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbee0/*gb2312*/, 0x8ddd/*utf16*/, {0xe8,0xb7,0x9d}/*utf8*/, 3/*utf8 len*/},{0xbee1/*gb2312*/, 0x8e1e/*utf16*/, {0xe8,0xb8,0x9e}/*utf8*/, 3/*utf8 len*/},{0xbee2/*gb2312*/, 0x952f/*utf16*/, {0xe9,0x94,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbee3/*gb2312*/, 0x4ff1/*utf16*/, {0xe4,0xbf,0xb1}/*utf8*/, 3/*utf8 len*/},{0xbee4/*gb2312*/, 0x53e5/*utf16*/, {0xe5,0x8f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbee5/*gb2312*/, 0x60e7/*utf16*/, {0xe6,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbee6/*gb2312*/, 0x70ac/*utf16*/, {0xe7,0x82,0xac}/*utf8*/, 3/*utf8 len*/},{0xbee7/*gb2312*/, 0x5267/*utf16*/, {0xe5,0x89,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbee8/*gb2312*/, 0x6350/*utf16*/, {0xe6,0x8d,0x90}/*utf8*/, 3/*utf8 len*/},{0xbee9/*gb2312*/, 0x9e43/*utf16*/, {0xe9,0xb9,0x83}/*utf8*/, 3/*utf8 len*/},{0xbeea/*gb2312*/, 0x5a1f/*utf16*/, {0xe5,0xa8,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbeeb/*gb2312*/, 0x5026/*utf16*/, {0xe5,0x80,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbeec/*gb2312*/, 0x7737/*utf16*/, {0xe7,0x9c,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbeed/*gb2312*/, 0x5377/*utf16*/, {0xe5,0x8d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbeee/*gb2312*/, 0x7ee2/*utf16*/, {0xe7,0xbb,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbeef/*gb2312*/, 0x6485/*utf16*/, {0xe6,0x92,0x85}/*utf8*/, 3/*utf8 len*/},{0xbef0/*gb2312*/, 0x652b/*utf16*/, {0xe6,0x94,0xab}/*utf8*/, 3/*utf8 len*/},{0xbef1/*gb2312*/, 0x6289/*utf16*/, {0xe6,0x8a,0x89}/*utf8*/, 3/*utf8 len*/},{0xbef2/*gb2312*/, 0x6398/*utf16*/, {0xe6,0x8e,0x98}/*utf8*/, 3/*utf8 len*/},{0xbef3/*gb2312*/, 0x5014/*utf16*/, {0xe5,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xbef4/*gb2312*/, 0x7235/*utf16*/, {0xe7,0x88,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbef5/*gb2312*/, 0x89c9/*utf16*/, {0xe8,0xa7,0x89}/*utf8*/, 3/*utf8 len*/},{0xbef6/*gb2312*/, 0x51b3/*utf16*/, {0xe5,0x86,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbef7/*gb2312*/, 0x8bc0/*utf16*/, {0xe8,0xaf,0x80}/*utf8*/, 3/*utf8 len*/},{0xbef8/*gb2312*/, 0x7edd/*utf16*/, {0xe7,0xbb,0x9d}/*utf8*/, 3/*utf8 len*/},{0xbef9/*gb2312*/, 0x5747/*utf16*/, {0xe5,0x9d,0x87}/*utf8*/, 3/*utf8 len*/},{0xbefa/*gb2312*/, 0x83cc/*utf16*/, {0xe8,0x8f,0x8c}/*utf8*/, 3/*utf8 len*/},{0xbefb/*gb2312*/, 0x94a7/*utf16*/, {0xe9,0x92,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbefc/*gb2312*/, 0x519b/*utf16*/, {0xe5,0x86,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbefd/*gb2312*/, 0x541b/*utf16*/, {0xe5,0x90,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbefe/*gb2312*/, 0x5cfb/*utf16*/, {0xe5,0xb3,0xbb}/*utf8*/, 3/*utf8 len*/},{0xbfa1/*gb2312*/, 0x4fca/*utf16*/, {0xe4,0xbf,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbfa2/*gb2312*/, 0x7ae3/*utf16*/, {0xe7,0xab,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbfa3/*gb2312*/, 0x6d5a/*utf16*/, {0xe6,0xb5,0x9a}/*utf8*/, 3/*utf8 len*/},{0xbfa4/*gb2312*/, 0x90e1/*utf16*/, {0xe9,0x83,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbfa5/*gb2312*/, 0x9a8f/*utf16*/, {0xe9,0xaa,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbfa6/*gb2312*/, 0x5580/*utf16*/, {0xe5,0x96,0x80}/*utf8*/, 3/*utf8 len*/},{0xbfa7/*gb2312*/, 0x5496/*utf16*/, {0xe5,0x92,0x96}/*utf8*/, 3/*utf8 len*/},{0xbfa8/*gb2312*/, 0x5361/*utf16*/, {0xe5,0x8d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbfa9/*gb2312*/, 0x54af/*utf16*/, {0xe5,0x92,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfaa/*gb2312*/, 0x5f00/*utf16*/, {0xe5,0xbc,0x80}/*utf8*/, 3/*utf8 len*/},{0xbfab/*gb2312*/, 0x63e9/*utf16*/, {0xe6,0x8f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbfac/*gb2312*/, 0x6977/*utf16*/, {0xe6,0xa5,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfad/*gb2312*/, 0x51ef/*utf16*/, {0xe5,0x87,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfae/*gb2312*/, 0x6168/*utf16*/, {0xe6,0x85,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbfaf/*gb2312*/, 0x520a/*utf16*/, {0xe5,0x88,0x8a}/*utf8*/, 3/*utf8 len*/},{0xbfb0/*gb2312*/, 0x582a/*utf16*/, {0xe5,0xa0,0xaa}/*utf8*/, 3/*utf8 len*/},{0xbfb1/*gb2312*/, 0x52d8/*utf16*/, {0xe5,0x8b,0x98}/*utf8*/, 3/*utf8 len*/},{0xbfb2/*gb2312*/, 0x574e/*utf16*/, {0xe5,0x9d,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbfb3/*gb2312*/, 0x780d/*utf16*/, {0xe7,0xa0,0x8d}/*utf8*/, 3/*utf8 len*/},{0xbfb4/*gb2312*/, 0x770b/*utf16*/, {0xe7,0x9c,0x8b}/*utf8*/, 3/*utf8 len*/},{0xbfb5/*gb2312*/, 0x5eb7/*utf16*/, {0xe5,0xba,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfb6/*gb2312*/, 0x6177/*utf16*/, {0xe6,0x85,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfb7/*gb2312*/, 0x7ce0/*utf16*/, {0xe7,0xb3,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbfb8/*gb2312*/, 0x625b/*utf16*/, {0xe6,0x89,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbfb9/*gb2312*/, 0x6297/*utf16*/, {0xe6,0x8a,0x97}/*utf8*/, 3/*utf8 len*/},{0xbfba/*gb2312*/, 0x4ea2/*utf16*/, {0xe4,0xba,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbfbb/*gb2312*/, 0x7095/*utf16*/, {0xe7,0x82,0x95}/*utf8*/, 3/*utf8 len*/},{0xbfbc/*gb2312*/, 0x8003/*utf16*/, {0xe8,0x80,0x83}/*utf8*/, 3/*utf8 len*/},{0xbfbd/*gb2312*/, 0x62f7/*utf16*/, {0xe6,0x8b,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfbe/*gb2312*/, 0x70e4/*utf16*/, {0xe7,0x83,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbfbf/*gb2312*/, 0x9760/*utf16*/, {0xe9,0x9d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbfc0/*gb2312*/, 0x5777/*utf16*/, {0xe5,0x9d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfc1/*gb2312*/, 0x82db/*utf16*/, {0xe8,0x8b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xbfc2/*gb2312*/, 0x67ef/*utf16*/, {0xe6,0x9f,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfc3/*gb2312*/, 0x68f5/*utf16*/, {0xe6,0xa3,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbfc4/*gb2312*/, 0x78d5/*utf16*/, {0xe7,0xa3,0x95}/*utf8*/, 3/*utf8 len*/},{0xbfc5/*gb2312*/, 0x9897/*utf16*/, {0xe9,0xa2,0x97}/*utf8*/, 3/*utf8 len*/},{0xbfc6/*gb2312*/, 0x79d1/*utf16*/, {0xe7,0xa7,0x91}/*utf8*/, 3/*utf8 len*/},{0xbfc7/*gb2312*/, 0x58f3/*utf16*/, {0xe5,0xa3,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbfc8/*gb2312*/, 0x54b3/*utf16*/, {0xe5,0x92,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbfc9/*gb2312*/, 0x53ef/*utf16*/, {0xe5,0x8f,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfca/*gb2312*/, 0x6e34/*utf16*/, {0xe6,0xb8,0xb4}/*utf8*/, 3/*utf8 len*/},{0xbfcb/*gb2312*/, 0x514b/*utf16*/, {0xe5,0x85,0x8b}/*utf8*/, 3/*utf8 len*/},{0xbfcc/*gb2312*/, 0x523b/*utf16*/, {0xe5,0x88,0xbb}/*utf8*/, 3/*utf8 len*/},{0xbfcd/*gb2312*/, 0x5ba2/*utf16*/, {0xe5,0xae,0xa2}/*utf8*/, 3/*utf8 len*/},{0xbfce/*gb2312*/, 0x8bfe/*utf16*/, {0xe8,0xaf,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbfcf/*gb2312*/, 0x80af/*utf16*/, {0xe8,0x82,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfd0/*gb2312*/, 0x5543/*utf16*/, {0xe5,0x95,0x83}/*utf8*/, 3/*utf8 len*/},{0xbfd1/*gb2312*/, 0x57a6/*utf16*/, {0xe5,0x9e,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbfd2/*gb2312*/, 0x6073/*utf16*/, {0xe6,0x81,0xb3}/*utf8*/, 3/*utf8 len*/},{0xbfd3/*gb2312*/, 0x5751/*utf16*/, {0xe5,0x9d,0x91}/*utf8*/, 3/*utf8 len*/},{0xbfd4/*gb2312*/, 0x542d/*utf16*/, {0xe5,0x90,0xad}/*utf8*/, 3/*utf8 len*/},{0xbfd5/*gb2312*/, 0x7a7a/*utf16*/, {0xe7,0xa9,0xba}/*utf8*/, 3/*utf8 len*/},{0xbfd6/*gb2312*/, 0x6050/*utf16*/, {0xe6,0x81,0x90}/*utf8*/, 3/*utf8 len*/},{0xbfd7/*gb2312*/, 0x5b54/*utf16*/, {0xe5,0xad,0x94}/*utf8*/, 3/*utf8 len*/},{0xbfd8/*gb2312*/, 0x63a7/*utf16*/, {0xe6,0x8e,0xa7}/*utf8*/, 3/*utf8 len*/},{0xbfd9/*gb2312*/, 0x62a0/*utf16*/, {0xe6,0x8a,0xa0}/*utf8*/, 3/*utf8 len*/},{0xbfda/*gb2312*/, 0x53e3/*utf16*/, {0xe5,0x8f,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbfdb/*gb2312*/, 0x6263/*utf16*/, {0xe6,0x89,0xa3}/*utf8*/, 3/*utf8 len*/},{0xbfdc/*gb2312*/, 0x5bc7/*utf16*/, {0xe5,0xaf,0x87}/*utf8*/, 3/*utf8 len*/},{0xbfdd/*gb2312*/, 0x67af/*utf16*/, {0xe6,0x9e,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfde/*gb2312*/, 0x54ed/*utf16*/, {0xe5,0x93,0xad}/*utf8*/, 3/*utf8 len*/},{0xbfdf/*gb2312*/, 0x7a9f/*utf16*/, {0xe7,0xaa,0x9f}/*utf8*/, 3/*utf8 len*/},{0xbfe0/*gb2312*/, 0x82e6/*utf16*/, {0xe8,0x8b,0xa6}/*utf8*/, 3/*utf8 len*/},{0xbfe1/*gb2312*/, 0x9177/*utf16*/, {0xe9,0x85,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfe2/*gb2312*/, 0x5e93/*utf16*/, {0xe5,0xba,0x93}/*utf8*/, 3/*utf8 len*/},{0xbfe3/*gb2312*/, 0x88e4/*utf16*/, {0xe8,0xa3,0xa4}/*utf8*/, 3/*utf8 len*/},{0xbfe4/*gb2312*/, 0x5938/*utf16*/, {0xe5,0xa4,0xb8}/*utf8*/, 3/*utf8 len*/},{0xbfe5/*gb2312*/, 0x57ae/*utf16*/, {0xe5,0x9e,0xae}/*utf8*/, 3/*utf8 len*/},{0xbfe6/*gb2312*/, 0x630e/*utf16*/, {0xe6,0x8c,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbfe7/*gb2312*/, 0x8de8/*utf16*/, {0xe8,0xb7,0xa8}/*utf8*/, 3/*utf8 len*/},{0xbfe8/*gb2312*/, 0x80ef/*utf16*/, {0xe8,0x83,0xaf}/*utf8*/, 3/*utf8 len*/},{0xbfe9/*gb2312*/, 0x5757/*utf16*/, {0xe5,0x9d,0x97}/*utf8*/, 3/*utf8 len*/},{0xbfea/*gb2312*/, 0x7b77/*utf16*/, {0xe7,0xad,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbfeb/*gb2312*/, 0x4fa9/*utf16*/, {0xe4,0xbe,0xa9}/*utf8*/, 3/*utf8 len*/},{0xbfec/*gb2312*/, 0x5feb/*utf16*/, {0xe5,0xbf,0xab}/*utf8*/, 3/*utf8 len*/},{0xbfed/*gb2312*/, 0x5bbd/*utf16*/, {0xe5,0xae,0xbd}/*utf8*/, 3/*utf8 len*/},{0xbfee/*gb2312*/, 0x6b3e/*utf16*/, {0xe6,0xac,0xbe}/*utf8*/, 3/*utf8 len*/},{0xbfef/*gb2312*/, 0x5321/*utf16*/, {0xe5,0x8c,0xa1}/*utf8*/, 3/*utf8 len*/},{0xbff0/*gb2312*/, 0x7b50/*utf16*/, {0xe7,0xad,0x90}/*utf8*/, 3/*utf8 len*/},{0xbff1/*gb2312*/, 0x72c2/*utf16*/, {0xe7,0x8b,0x82}/*utf8*/, 3/*utf8 len*/},{0xbff2/*gb2312*/, 0x6846/*utf16*/, {0xe6,0xa1,0x86}/*utf8*/, 3/*utf8 len*/},{0xbff3/*gb2312*/, 0x77ff/*utf16*/, {0xe7,0x9f,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbff4/*gb2312*/, 0x7736/*utf16*/, {0xe7,0x9c,0xb6}/*utf8*/, 3/*utf8 len*/},{0xbff5/*gb2312*/, 0x65f7/*utf16*/, {0xe6,0x97,0xb7}/*utf8*/, 3/*utf8 len*/},{0xbff6/*gb2312*/, 0x51b5/*utf16*/, {0xe5,0x86,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbff7/*gb2312*/, 0x4e8f/*utf16*/, {0xe4,0xba,0x8f}/*utf8*/, 3/*utf8 len*/},{0xbff8/*gb2312*/, 0x76d4/*utf16*/, {0xe7,0x9b,0x94}/*utf8*/, 3/*utf8 len*/},{0xbff9/*gb2312*/, 0x5cbf/*utf16*/, {0xe5,0xb2,0xbf}/*utf8*/, 3/*utf8 len*/},{0xbffa/*gb2312*/, 0x7aa5/*utf16*/, {0xe7,0xaa,0xa5}/*utf8*/, 3/*utf8 len*/},{0xbffb/*gb2312*/, 0x8475/*utf16*/, {0xe8,0x91,0xb5}/*utf8*/, 3/*utf8 len*/},{0xbffc/*gb2312*/, 0x594e/*utf16*/, {0xe5,0xa5,0x8e}/*utf8*/, 3/*utf8 len*/},{0xbffd/*gb2312*/, 0x9b41/*utf16*/, {0xe9,0xad,0x81}/*utf8*/, 3/*utf8 len*/},{0xbffe/*gb2312*/, 0x5080/*utf16*/, {0xe5,0x82,0x80}/*utf8*/, 3/*utf8 len*/},{0xc0a1/*gb2312*/, 0x9988/*utf16*/, {0xe9,0xa6,0x88}/*utf8*/, 3/*utf8 len*/},{0xc0a2/*gb2312*/, 0x6127/*utf16*/, {0xe6,0x84,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc0a3/*gb2312*/, 0x6e83/*utf16*/, {0xe6,0xba,0x83}/*utf8*/, 3/*utf8 len*/},{0xc0a4/*gb2312*/, 0x5764/*utf16*/, {0xe5,0x9d,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc0a5/*gb2312*/, 0x6606/*utf16*/, {0xe6,0x98,0x86}/*utf8*/, 3/*utf8 len*/},{0xc0a6/*gb2312*/, 0x6346/*utf16*/, {0xe6,0x8d,0x86}/*utf8*/, 3/*utf8 len*/},{0xc0a7/*gb2312*/, 0x56f0/*utf16*/, {0xe5,0x9b,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc0a8/*gb2312*/, 0x62ec/*utf16*/, {0xe6,0x8b,0xac}/*utf8*/, 3/*utf8 len*/},{0xc0a9/*gb2312*/, 0x6269/*utf16*/, {0xe6,0x89,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc0aa/*gb2312*/, 0x5ed3/*utf16*/, {0xe5,0xbb,0x93}/*utf8*/, 3/*utf8 len*/},{0xc0ab/*gb2312*/, 0x9614/*utf16*/, {0xe9,0x98,0x94}/*utf8*/, 3/*utf8 len*/},{0xc0ac/*gb2312*/, 0x5783/*utf16*/, {0xe5,0x9e,0x83}/*utf8*/, 3/*utf8 len*/},{0xc0ad/*gb2312*/, 0x62c9/*utf16*/, {0xe6,0x8b,0x89}/*utf8*/, 3/*utf8 len*/},{0xc0ae/*gb2312*/, 0x5587/*utf16*/, {0xe5,0x96,0x87}/*utf8*/, 3/*utf8 len*/},{0xc0af/*gb2312*/, 0x8721/*utf16*/, {0xe8,0x9c,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc0b0/*gb2312*/, 0x814a/*utf16*/, {0xe8,0x85,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc0b1/*gb2312*/, 0x8fa3/*utf16*/, {0xe8,0xbe,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc0b2/*gb2312*/, 0x5566/*utf16*/, {0xe5,0x95,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc0b3/*gb2312*/, 0x83b1/*utf16*/, {0xe8,0x8e,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc0b4/*gb2312*/, 0x6765/*utf16*/, {0xe6,0x9d,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc0b5/*gb2312*/, 0x8d56/*utf16*/, {0xe8,0xb5,0x96}/*utf8*/, 3/*utf8 len*/},{0xc0b6/*gb2312*/, 0x84dd/*utf16*/, {0xe8,0x93,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc0b7/*gb2312*/, 0x5a6a/*utf16*/, {0xe5,0xa9,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc0b8/*gb2312*/, 0x680f/*utf16*/, {0xe6,0xa0,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc0b9/*gb2312*/, 0x62e6/*utf16*/, {0xe6,0x8b,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc0ba/*gb2312*/, 0x7bee/*utf16*/, {0xe7,0xaf,0xae}/*utf8*/, 3/*utf8 len*/},{0xc0bb/*gb2312*/, 0x9611/*utf16*/, {0xe9,0x98,0x91}/*utf8*/, 3/*utf8 len*/},{0xc0bc/*gb2312*/, 0x5170/*utf16*/, {0xe5,0x85,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc0bd/*gb2312*/, 0x6f9c/*utf16*/, {0xe6,0xbe,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc0be/*gb2312*/, 0x8c30/*utf16*/, {0xe8,0xb0,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc0bf/*gb2312*/, 0x63fd/*utf16*/, {0xe6,0x8f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc0c0/*gb2312*/, 0x89c8/*utf16*/, {0xe8,0xa7,0x88}/*utf8*/, 3/*utf8 len*/},{0xc0c1/*gb2312*/, 0x61d2/*utf16*/, {0xe6,0x87,0x92}/*utf8*/, 3/*utf8 len*/},{0xc0c2/*gb2312*/, 0x7f06/*utf16*/, {0xe7,0xbc,0x86}/*utf8*/, 3/*utf8 len*/},{0xc0c3/*gb2312*/, 0x70c2/*utf16*/, {0xe7,0x83,0x82}/*utf8*/, 3/*utf8 len*/},{0xc0c4/*gb2312*/, 0x6ee5/*utf16*/, {0xe6,0xbb,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc0c5/*gb2312*/, 0x7405/*utf16*/, {0xe7,0x90,0x85}/*utf8*/, 3/*utf8 len*/},{0xc0c6/*gb2312*/, 0x6994/*utf16*/, {0xe6,0xa6,0x94}/*utf8*/, 3/*utf8 len*/},{0xc0c7/*gb2312*/, 0x72fc/*utf16*/, {0xe7,0x8b,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc0c8/*gb2312*/, 0x5eca/*utf16*/, {0xe5,0xbb,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc0c9/*gb2312*/, 0x90ce/*utf16*/, {0xe9,0x83,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc0ca/*gb2312*/, 0x6717/*utf16*/, {0xe6,0x9c,0x97}/*utf8*/, 3/*utf8 len*/},{0xc0cb/*gb2312*/, 0x6d6a/*utf16*/, {0xe6,0xb5,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc0cc/*gb2312*/, 0x635e/*utf16*/, {0xe6,0x8d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc0cd/*gb2312*/, 0x52b3/*utf16*/, {0xe5,0x8a,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc0ce/*gb2312*/, 0x7262/*utf16*/, {0xe7,0x89,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc0cf/*gb2312*/, 0x8001/*utf16*/, {0xe8,0x80,0x81}/*utf8*/, 3/*utf8 len*/},{0xc0d0/*gb2312*/, 0x4f6c/*utf16*/, {0xe4,0xbd,0xac}/*utf8*/, 3/*utf8 len*/},{0xc0d1/*gb2312*/, 0x59e5/*utf16*/, {0xe5,0xa7,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc0d2/*gb2312*/, 0x916a/*utf16*/, {0xe9,0x85,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc0d3/*gb2312*/, 0x70d9/*utf16*/, {0xe7,0x83,0x99}/*utf8*/, 3/*utf8 len*/},{0xc0d4/*gb2312*/, 0x6d9d/*utf16*/, {0xe6,0xb6,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc0d5/*gb2312*/, 0x52d2/*utf16*/, {0xe5,0x8b,0x92}/*utf8*/, 3/*utf8 len*/},{0xc0d6/*gb2312*/, 0x4e50/*utf16*/, {0xe4,0xb9,0x90}/*utf8*/, 3/*utf8 len*/},{0xc0d7/*gb2312*/, 0x96f7/*utf16*/, {0xe9,0x9b,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc0d8/*gb2312*/, 0x956d/*utf16*/, {0xe9,0x95,0xad}/*utf8*/, 3/*utf8 len*/},{0xc0d9/*gb2312*/, 0x857e/*utf16*/, {0xe8,0x95,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc0da/*gb2312*/, 0x78ca/*utf16*/, {0xe7,0xa3,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc0db/*gb2312*/, 0x7d2f/*utf16*/, {0xe7,0xb4,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc0dc/*gb2312*/, 0x5121/*utf16*/, {0xe5,0x84,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc0dd/*gb2312*/, 0x5792/*utf16*/, {0xe5,0x9e,0x92}/*utf8*/, 3/*utf8 len*/},{0xc0de/*gb2312*/, 0x64c2/*utf16*/, {0xe6,0x93,0x82}/*utf8*/, 3/*utf8 len*/},{0xc0df/*gb2312*/, 0x808b/*utf16*/, {0xe8,0x82,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc0e0/*gb2312*/, 0x7c7b/*utf16*/, {0xe7,0xb1,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc0e1/*gb2312*/, 0x6cea/*utf16*/, {0xe6,0xb3,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc0e2/*gb2312*/, 0x68f1/*utf16*/, {0xe6,0xa3,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc0e3/*gb2312*/, 0x695e/*utf16*/, {0xe6,0xa5,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc0e4/*gb2312*/, 0x51b7/*utf16*/, {0xe5,0x86,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc0e5/*gb2312*/, 0x5398/*utf16*/, {0xe5,0x8e,0x98}/*utf8*/, 3/*utf8 len*/},{0xc0e6/*gb2312*/, 0x68a8/*utf16*/, {0xe6,0xa2,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc0e7/*gb2312*/, 0x7281/*utf16*/, {0xe7,0x8a,0x81}/*utf8*/, 3/*utf8 len*/},{0xc0e8/*gb2312*/, 0x9ece/*utf16*/, {0xe9,0xbb,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc0e9/*gb2312*/, 0x7bf1/*utf16*/, {0xe7,0xaf,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc0ea/*gb2312*/, 0x72f8/*utf16*/, {0xe7,0x8b,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc0eb/*gb2312*/, 0x79bb/*utf16*/, {0xe7,0xa6,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc0ec/*gb2312*/, 0x6f13/*utf16*/, {0xe6,0xbc,0x93}/*utf8*/, 3/*utf8 len*/},{0xc0ed/*gb2312*/, 0x7406/*utf16*/, {0xe7,0x90,0x86}/*utf8*/, 3/*utf8 len*/},{0xc0ee/*gb2312*/, 0x674e/*utf16*/, {0xe6,0x9d,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc0ef/*gb2312*/, 0x91cc/*utf16*/, {0xe9,0x87,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc0f0/*gb2312*/, 0x9ca4/*utf16*/, {0xe9,0xb2,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc0f1/*gb2312*/, 0x793c/*utf16*/, {0xe7,0xa4,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc0f2/*gb2312*/, 0x8389/*utf16*/, {0xe8,0x8e,0x89}/*utf8*/, 3/*utf8 len*/},{0xc0f3/*gb2312*/, 0x8354/*utf16*/, {0xe8,0x8d,0x94}/*utf8*/, 3/*utf8 len*/},{0xc0f4/*gb2312*/, 0x540f/*utf16*/, {0xe5,0x90,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc0f5/*gb2312*/, 0x6817/*utf16*/, {0xe6,0xa0,0x97}/*utf8*/, 3/*utf8 len*/},{0xc0f6/*gb2312*/, 0x4e3d/*utf16*/, {0xe4,0xb8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc0f7/*gb2312*/, 0x5389/*utf16*/, {0xe5,0x8e,0x89}/*utf8*/, 3/*utf8 len*/},{0xc0f8/*gb2312*/, 0x52b1/*utf16*/, {0xe5,0x8a,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc0f9/*gb2312*/, 0x783e/*utf16*/, {0xe7,0xa0,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc0fa/*gb2312*/, 0x5386/*utf16*/, {0xe5,0x8e,0x86}/*utf8*/, 3/*utf8 len*/},{0xc0fb/*gb2312*/, 0x5229/*utf16*/, {0xe5,0x88,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc0fc/*gb2312*/, 0x5088/*utf16*/, {0xe5,0x82,0x88}/*utf8*/, 3/*utf8 len*/},{0xc0fd/*gb2312*/, 0x4f8b/*utf16*/, {0xe4,0xbe,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc0fe/*gb2312*/, 0x4fd0/*utf16*/, {0xe4,0xbf,0x90}/*utf8*/, 3/*utf8 len*/},{0xc1a1/*gb2312*/, 0x75e2/*utf16*/, {0xe7,0x97,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc1a2/*gb2312*/, 0x7acb/*utf16*/, {0xe7,0xab,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc1a3/*gb2312*/, 0x7c92/*utf16*/, {0xe7,0xb2,0x92}/*utf8*/, 3/*utf8 len*/},{0xc1a4/*gb2312*/, 0x6ca5/*utf16*/, {0xe6,0xb2,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc1a5/*gb2312*/, 0x96b6/*utf16*/, {0xe9,0x9a,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc1a6/*gb2312*/, 0x529b/*utf16*/, {0xe5,0x8a,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc1a7/*gb2312*/, 0x7483/*utf16*/, {0xe7,0x92,0x83}/*utf8*/, 3/*utf8 len*/},{0xc1a8/*gb2312*/, 0x54e9/*utf16*/, {0xe5,0x93,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc1a9/*gb2312*/, 0x4fe9/*utf16*/, {0xe4,0xbf,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc1aa/*gb2312*/, 0x8054/*utf16*/, {0xe8,0x81,0x94}/*utf8*/, 3/*utf8 len*/},{0xc1ab/*gb2312*/, 0x83b2/*utf16*/, {0xe8,0x8e,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc1ac/*gb2312*/, 0x8fde/*utf16*/, {0xe8,0xbf,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc1ad/*gb2312*/, 0x9570/*utf16*/, {0xe9,0x95,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc1ae/*gb2312*/, 0x5ec9/*utf16*/, {0xe5,0xbb,0x89}/*utf8*/, 3/*utf8 len*/},{0xc1af/*gb2312*/, 0x601c/*utf16*/, {0xe6,0x80,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc1b0/*gb2312*/, 0x6d9f/*utf16*/, {0xe6,0xb6,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc1b1/*gb2312*/, 0x5e18/*utf16*/, {0xe5,0xb8,0x98}/*utf8*/, 3/*utf8 len*/},{0xc1b2/*gb2312*/, 0x655b/*utf16*/, {0xe6,0x95,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc1b3/*gb2312*/, 0x8138/*utf16*/, {0xe8,0x84,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc1b4/*gb2312*/, 0x94fe/*utf16*/, {0xe9,0x93,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc1b5/*gb2312*/, 0x604b/*utf16*/, {0xe6,0x81,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc1b6/*gb2312*/, 0x70bc/*utf16*/, {0xe7,0x82,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc1b7/*gb2312*/, 0x7ec3/*utf16*/, {0xe7,0xbb,0x83}/*utf8*/, 3/*utf8 len*/},{0xc1b8/*gb2312*/, 0x7cae/*utf16*/, {0xe7,0xb2,0xae}/*utf8*/, 3/*utf8 len*/},{0xc1b9/*gb2312*/, 0x51c9/*utf16*/, {0xe5,0x87,0x89}/*utf8*/, 3/*utf8 len*/},{0xc1ba/*gb2312*/, 0x6881/*utf16*/, {0xe6,0xa2,0x81}/*utf8*/, 3/*utf8 len*/},{0xc1bb/*gb2312*/, 0x7cb1/*utf16*/, {0xe7,0xb2,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc1bc/*gb2312*/, 0x826f/*utf16*/, {0xe8,0x89,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc1bd/*gb2312*/, 0x4e24/*utf16*/, {0xe4,0xb8,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc1be/*gb2312*/, 0x8f86/*utf16*/, {0xe8,0xbe,0x86}/*utf8*/, 3/*utf8 len*/},{0xc1bf/*gb2312*/, 0x91cf/*utf16*/, {0xe9,0x87,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc1c0/*gb2312*/, 0x667e/*utf16*/, {0xe6,0x99,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc1c1/*gb2312*/, 0x4eae/*utf16*/, {0xe4,0xba,0xae}/*utf8*/, 3/*utf8 len*/},{0xc1c2/*gb2312*/, 0x8c05/*utf16*/, {0xe8,0xb0,0x85}/*utf8*/, 3/*utf8 len*/},{0xc1c3/*gb2312*/, 0x64a9/*utf16*/, {0xe6,0x92,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc1c4/*gb2312*/, 0x804a/*utf16*/, {0xe8,0x81,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc1c5/*gb2312*/, 0x50da/*utf16*/, {0xe5,0x83,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc1c6/*gb2312*/, 0x7597/*utf16*/, {0xe7,0x96,0x97}/*utf8*/, 3/*utf8 len*/},{0xc1c7/*gb2312*/, 0x71ce/*utf16*/, {0xe7,0x87,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc1c8/*gb2312*/, 0x5be5/*utf16*/, {0xe5,0xaf,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc1c9/*gb2312*/, 0x8fbd/*utf16*/, {0xe8,0xbe,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc1ca/*gb2312*/, 0x6f66/*utf16*/, {0xe6,0xbd,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc1cb/*gb2312*/, 0x4e86/*utf16*/, {0xe4,0xba,0x86}/*utf8*/, 3/*utf8 len*/},{0xc1cc/*gb2312*/, 0x6482/*utf16*/, {0xe6,0x92,0x82}/*utf8*/, 3/*utf8 len*/},{0xc1cd/*gb2312*/, 0x9563/*utf16*/, {0xe9,0x95,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc1ce/*gb2312*/, 0x5ed6/*utf16*/, {0xe5,0xbb,0x96}/*utf8*/, 3/*utf8 len*/},{0xc1cf/*gb2312*/, 0x6599/*utf16*/, {0xe6,0x96,0x99}/*utf8*/, 3/*utf8 len*/},{0xc1d0/*gb2312*/, 0x5217/*utf16*/, {0xe5,0x88,0x97}/*utf8*/, 3/*utf8 len*/},{0xc1d1/*gb2312*/, 0x88c2/*utf16*/, {0xe8,0xa3,0x82}/*utf8*/, 3/*utf8 len*/},{0xc1d2/*gb2312*/, 0x70c8/*utf16*/, {0xe7,0x83,0x88}/*utf8*/, 3/*utf8 len*/},{0xc1d3/*gb2312*/, 0x52a3/*utf16*/, {0xe5,0x8a,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc1d4/*gb2312*/, 0x730e/*utf16*/, {0xe7,0x8c,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc1d5/*gb2312*/, 0x7433/*utf16*/, {0xe7,0x90,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc1d6/*gb2312*/, 0x6797/*utf16*/, {0xe6,0x9e,0x97}/*utf8*/, 3/*utf8 len*/},{0xc1d7/*gb2312*/, 0x78f7/*utf16*/, {0xe7,0xa3,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc1d8/*gb2312*/, 0x9716/*utf16*/, {0xe9,0x9c,0x96}/*utf8*/, 3/*utf8 len*/},{0xc1d9/*gb2312*/, 0x4e34/*utf16*/, {0xe4,0xb8,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc1da/*gb2312*/, 0x90bb/*utf16*/, {0xe9,0x82,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc1db/*gb2312*/, 0x9cde/*utf16*/, {0xe9,0xb3,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc1dc/*gb2312*/, 0x6dcb/*utf16*/, {0xe6,0xb7,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc1dd/*gb2312*/, 0x51db/*utf16*/, {0xe5,0x87,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc1de/*gb2312*/, 0x8d41/*utf16*/, {0xe8,0xb5,0x81}/*utf8*/, 3/*utf8 len*/},{0xc1df/*gb2312*/, 0x541d/*utf16*/, {0xe5,0x90,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc1e0/*gb2312*/, 0x62ce/*utf16*/, {0xe6,0x8b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc1e1/*gb2312*/, 0x73b2/*utf16*/, {0xe7,0x8e,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc1e2/*gb2312*/, 0x83f1/*utf16*/, {0xe8,0x8f,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc1e3/*gb2312*/, 0x96f6/*utf16*/, {0xe9,0x9b,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc1e4/*gb2312*/, 0x9f84/*utf16*/, {0xe9,0xbe,0x84}/*utf8*/, 3/*utf8 len*/},{0xc1e5/*gb2312*/, 0x94c3/*utf16*/, {0xe9,0x93,0x83}/*utf8*/, 3/*utf8 len*/},{0xc1e6/*gb2312*/, 0x4f36/*utf16*/, {0xe4,0xbc,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc1e7/*gb2312*/, 0x7f9a/*utf16*/, {0xe7,0xbe,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc1e8/*gb2312*/, 0x51cc/*utf16*/, {0xe5,0x87,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc1e9/*gb2312*/, 0x7075/*utf16*/, {0xe7,0x81,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc1ea/*gb2312*/, 0x9675/*utf16*/, {0xe9,0x99,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc1eb/*gb2312*/, 0x5cad/*utf16*/, {0xe5,0xb2,0xad}/*utf8*/, 3/*utf8 len*/},{0xc1ec/*gb2312*/, 0x9886/*utf16*/, {0xe9,0xa2,0x86}/*utf8*/, 3/*utf8 len*/},{0xc1ed/*gb2312*/, 0x53e6/*utf16*/, {0xe5,0x8f,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc1ee/*gb2312*/, 0x4ee4/*utf16*/, {0xe4,0xbb,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc1ef/*gb2312*/, 0x6e9c/*utf16*/, {0xe6,0xba,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc1f0/*gb2312*/, 0x7409/*utf16*/, {0xe7,0x90,0x89}/*utf8*/, 3/*utf8 len*/},{0xc1f1/*gb2312*/, 0x69b4/*utf16*/, {0xe6,0xa6,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc1f2/*gb2312*/, 0x786b/*utf16*/, {0xe7,0xa1,0xab}/*utf8*/, 3/*utf8 len*/},{0xc1f3/*gb2312*/, 0x998f/*utf16*/, {0xe9,0xa6,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc1f4/*gb2312*/, 0x7559/*utf16*/, {0xe7,0x95,0x99}/*utf8*/, 3/*utf8 len*/},{0xc1f5/*gb2312*/, 0x5218/*utf16*/, {0xe5,0x88,0x98}/*utf8*/, 3/*utf8 len*/},{0xc1f6/*gb2312*/, 0x7624/*utf16*/, {0xe7,0x98,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc1f7/*gb2312*/, 0x6d41/*utf16*/, {0xe6,0xb5,0x81}/*utf8*/, 3/*utf8 len*/},{0xc1f8/*gb2312*/, 0x67f3/*utf16*/, {0xe6,0x9f,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc1f9/*gb2312*/, 0x516d/*utf16*/, {0xe5,0x85,0xad}/*utf8*/, 3/*utf8 len*/},{0xc1fa/*gb2312*/, 0x9f99/*utf16*/, {0xe9,0xbe,0x99}/*utf8*/, 3/*utf8 len*/},{0xc1fb/*gb2312*/, 0x804b/*utf16*/, {0xe8,0x81,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc1fc/*gb2312*/, 0x5499/*utf16*/, {0xe5,0x92,0x99}/*utf8*/, 3/*utf8 len*/},{0xc1fd/*gb2312*/, 0x7b3c/*utf16*/, {0xe7,0xac,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc1fe/*gb2312*/, 0x7abf/*utf16*/, {0xe7,0xaa,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc2a1/*gb2312*/, 0x9686/*utf16*/, {0xe9,0x9a,0x86}/*utf8*/, 3/*utf8 len*/},{0xc2a2/*gb2312*/, 0x5784/*utf16*/, {0xe5,0x9e,0x84}/*utf8*/, 3/*utf8 len*/},{0xc2a3/*gb2312*/, 0x62e2/*utf16*/, {0xe6,0x8b,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc2a4/*gb2312*/, 0x9647/*utf16*/, {0xe9,0x99,0x87}/*utf8*/, 3/*utf8 len*/},{0xc2a5/*gb2312*/, 0x697c/*utf16*/, {0xe6,0xa5,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc2a6/*gb2312*/, 0x5a04/*utf16*/, {0xe5,0xa8,0x84}/*utf8*/, 3/*utf8 len*/},{0xc2a7/*gb2312*/, 0x6402/*utf16*/, {0xe6,0x90,0x82}/*utf8*/, 3/*utf8 len*/},{0xc2a8/*gb2312*/, 0x7bd3/*utf16*/, {0xe7,0xaf,0x93}/*utf8*/, 3/*utf8 len*/},{0xc2a9/*gb2312*/, 0x6f0f/*utf16*/, {0xe6,0xbc,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc2aa/*gb2312*/, 0x964b/*utf16*/, {0xe9,0x99,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc2ab/*gb2312*/, 0x82a6/*utf16*/, {0xe8,0x8a,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc2ac/*gb2312*/, 0x5362/*utf16*/, {0xe5,0x8d,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc2ad/*gb2312*/, 0x9885/*utf16*/, {0xe9,0xa2,0x85}/*utf8*/, 3/*utf8 len*/},{0xc2ae/*gb2312*/, 0x5e90/*utf16*/, {0xe5,0xba,0x90}/*utf8*/, 3/*utf8 len*/},{0xc2af/*gb2312*/, 0x7089/*utf16*/, {0xe7,0x82,0x89}/*utf8*/, 3/*utf8 len*/},{0xc2b0/*gb2312*/, 0x63b3/*utf16*/, {0xe6,0x8e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc2b1/*gb2312*/, 0x5364/*utf16*/, {0xe5,0x8d,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc2b2/*gb2312*/, 0x864f/*utf16*/, {0xe8,0x99,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc2b3/*gb2312*/, 0x9c81/*utf16*/, {0xe9,0xb2,0x81}/*utf8*/, 3/*utf8 len*/},{0xc2b4/*gb2312*/, 0x9e93/*utf16*/, {0xe9,0xba,0x93}/*utf8*/, 3/*utf8 len*/},{0xc2b5/*gb2312*/, 0x788c/*utf16*/, {0xe7,0xa2,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc2b6/*gb2312*/, 0x9732/*utf16*/, {0xe9,0x9c,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc2b7/*gb2312*/, 0x8def/*utf16*/, {0xe8,0xb7,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc2b8/*gb2312*/, 0x8d42/*utf16*/, {0xe8,0xb5,0x82}/*utf8*/, 3/*utf8 len*/},{0xc2b9/*gb2312*/, 0x9e7f/*utf16*/, {0xe9,0xb9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc2ba/*gb2312*/, 0x6f5e/*utf16*/, {0xe6,0xbd,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc2bb/*gb2312*/, 0x7984/*utf16*/, {0xe7,0xa6,0x84}/*utf8*/, 3/*utf8 len*/},{0xc2bc/*gb2312*/, 0x5f55/*utf16*/, {0xe5,0xbd,0x95}/*utf8*/, 3/*utf8 len*/},{0xc2bd/*gb2312*/, 0x9646/*utf16*/, {0xe9,0x99,0x86}/*utf8*/, 3/*utf8 len*/},{0xc2be/*gb2312*/, 0x622e/*utf16*/, {0xe6,0x88,0xae}/*utf8*/, 3/*utf8 len*/},{0xc2bf/*gb2312*/, 0x9a74/*utf16*/, {0xe9,0xa9,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc2c0/*gb2312*/, 0x5415/*utf16*/, {0xe5,0x90,0x95}/*utf8*/, 3/*utf8 len*/},{0xc2c1/*gb2312*/, 0x94dd/*utf16*/, {0xe9,0x93,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc2c2/*gb2312*/, 0x4fa3/*utf16*/, {0xe4,0xbe,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc2c3/*gb2312*/, 0x65c5/*utf16*/, {0xe6,0x97,0x85}/*utf8*/, 3/*utf8 len*/},{0xc2c4/*gb2312*/, 0x5c65/*utf16*/, {0xe5,0xb1,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc2c5/*gb2312*/, 0x5c61/*utf16*/, {0xe5,0xb1,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc2c6/*gb2312*/, 0x7f15/*utf16*/, {0xe7,0xbc,0x95}/*utf8*/, 3/*utf8 len*/},{0xc2c7/*gb2312*/, 0x8651/*utf16*/, {0xe8,0x99,0x91}/*utf8*/, 3/*utf8 len*/},{0xc2c8/*gb2312*/, 0x6c2f/*utf16*/, {0xe6,0xb0,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc2c9/*gb2312*/, 0x5f8b/*utf16*/, {0xe5,0xbe,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc2ca/*gb2312*/, 0x7387/*utf16*/, {0xe7,0x8e,0x87}/*utf8*/, 3/*utf8 len*/},{0xc2cb/*gb2312*/, 0x6ee4/*utf16*/, {0xe6,0xbb,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc2cc/*gb2312*/, 0x7eff/*utf16*/, {0xe7,0xbb,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc2cd/*gb2312*/, 0x5ce6/*utf16*/, {0xe5,0xb3,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc2ce/*gb2312*/, 0x631b/*utf16*/, {0xe6,0x8c,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc2cf/*gb2312*/, 0x5b6a/*utf16*/, {0xe5,0xad,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc2d0/*gb2312*/, 0x6ee6/*utf16*/, {0xe6,0xbb,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc2d1/*gb2312*/, 0x5375/*utf16*/, {0xe5,0x8d,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc2d2/*gb2312*/, 0x4e71/*utf16*/, {0xe4,0xb9,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc2d3/*gb2312*/, 0x63a0/*utf16*/, {0xe6,0x8e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc2d4/*gb2312*/, 0x7565/*utf16*/, {0xe7,0x95,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc2d5/*gb2312*/, 0x62a1/*utf16*/, {0xe6,0x8a,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc2d6/*gb2312*/, 0x8f6e/*utf16*/, {0xe8,0xbd,0xae}/*utf8*/, 3/*utf8 len*/},{0xc2d7/*gb2312*/, 0x4f26/*utf16*/, {0xe4,0xbc,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc2d8/*gb2312*/, 0x4ed1/*utf16*/, {0xe4,0xbb,0x91}/*utf8*/, 3/*utf8 len*/},{0xc2d9/*gb2312*/, 0x6ca6/*utf16*/, {0xe6,0xb2,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc2da/*gb2312*/, 0x7eb6/*utf16*/, {0xe7,0xba,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc2db/*gb2312*/, 0x8bba/*utf16*/, {0xe8,0xae,0xba}/*utf8*/, 3/*utf8 len*/},{0xc2dc/*gb2312*/, 0x841d/*utf16*/, {0xe8,0x90,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc2dd/*gb2312*/, 0x87ba/*utf16*/, {0xe8,0x9e,0xba}/*utf8*/, 3/*utf8 len*/},{0xc2de/*gb2312*/, 0x7f57/*utf16*/, {0xe7,0xbd,0x97}/*utf8*/, 3/*utf8 len*/},{0xc2df/*gb2312*/, 0x903b/*utf16*/, {0xe9,0x80,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc2e0/*gb2312*/, 0x9523/*utf16*/, {0xe9,0x94,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc2e1/*gb2312*/, 0x7ba9/*utf16*/, {0xe7,0xae,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc2e2/*gb2312*/, 0x9aa1/*utf16*/, {0xe9,0xaa,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc2e3/*gb2312*/, 0x88f8/*utf16*/, {0xe8,0xa3,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc2e4/*gb2312*/, 0x843d/*utf16*/, {0xe8,0x90,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc2e5/*gb2312*/, 0x6d1b/*utf16*/, {0xe6,0xb4,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc2e6/*gb2312*/, 0x9a86/*utf16*/, {0xe9,0xaa,0x86}/*utf8*/, 3/*utf8 len*/},{0xc2e7/*gb2312*/, 0x7edc/*utf16*/, {0xe7,0xbb,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc2e8/*gb2312*/, 0x5988/*utf16*/, {0xe5,0xa6,0x88}/*utf8*/, 3/*utf8 len*/},{0xc2e9/*gb2312*/, 0x9ebb/*utf16*/, {0xe9,0xba,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc2ea/*gb2312*/, 0x739b/*utf16*/, {0xe7,0x8e,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc2eb/*gb2312*/, 0x7801/*utf16*/, {0xe7,0xa0,0x81}/*utf8*/, 3/*utf8 len*/},{0xc2ec/*gb2312*/, 0x8682/*utf16*/, {0xe8,0x9a,0x82}/*utf8*/, 3/*utf8 len*/},{0xc2ed/*gb2312*/, 0x9a6c/*utf16*/, {0xe9,0xa9,0xac}/*utf8*/, 3/*utf8 len*/},{0xc2ee/*gb2312*/, 0x9a82/*utf16*/, {0xe9,0xaa,0x82}/*utf8*/, 3/*utf8 len*/},{0xc2ef/*gb2312*/, 0x561b/*utf16*/, {0xe5,0x98,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc2f0/*gb2312*/, 0x5417/*utf16*/, {0xe5,0x90,0x97}/*utf8*/, 3/*utf8 len*/},{0xc2f1/*gb2312*/, 0x57cb/*utf16*/, {0xe5,0x9f,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc2f2/*gb2312*/, 0x4e70/*utf16*/, {0xe4,0xb9,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc2f3/*gb2312*/, 0x9ea6/*utf16*/, {0xe9,0xba,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc2f4/*gb2312*/, 0x5356/*utf16*/, {0xe5,0x8d,0x96}/*utf8*/, 3/*utf8 len*/},{0xc2f5/*gb2312*/, 0x8fc8/*utf16*/, {0xe8,0xbf,0x88}/*utf8*/, 3/*utf8 len*/},{0xc2f6/*gb2312*/, 0x8109/*utf16*/, {0xe8,0x84,0x89}/*utf8*/, 3/*utf8 len*/},{0xc2f7/*gb2312*/, 0x7792/*utf16*/, {0xe7,0x9e,0x92}/*utf8*/, 3/*utf8 len*/},{0xc2f8/*gb2312*/, 0x9992/*utf16*/, {0xe9,0xa6,0x92}/*utf8*/, 3/*utf8 len*/},{0xc2f9/*gb2312*/, 0x86ee/*utf16*/, {0xe8,0x9b,0xae}/*utf8*/, 3/*utf8 len*/},{0xc2fa/*gb2312*/, 0x6ee1/*utf16*/, {0xe6,0xbb,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc2fb/*gb2312*/, 0x8513/*utf16*/, {0xe8,0x94,0x93}/*utf8*/, 3/*utf8 len*/},{0xc2fc/*gb2312*/, 0x66fc/*utf16*/, {0xe6,0x9b,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc2fd/*gb2312*/, 0x6162/*utf16*/, {0xe6,0x85,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc2fe/*gb2312*/, 0x6f2b/*utf16*/, {0xe6,0xbc,0xab}/*utf8*/, 3/*utf8 len*/},{0xc3a1/*gb2312*/, 0x8c29/*utf16*/, {0xe8,0xb0,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc3a2/*gb2312*/, 0x8292/*utf16*/, {0xe8,0x8a,0x92}/*utf8*/, 3/*utf8 len*/},{0xc3a3/*gb2312*/, 0x832b/*utf16*/, {0xe8,0x8c,0xab}/*utf8*/, 3/*utf8 len*/},{0xc3a4/*gb2312*/, 0x76f2/*utf16*/, {0xe7,0x9b,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc3a5/*gb2312*/, 0x6c13/*utf16*/, {0xe6,0xb0,0x93}/*utf8*/, 3/*utf8 len*/},{0xc3a6/*gb2312*/, 0x5fd9/*utf16*/, {0xe5,0xbf,0x99}/*utf8*/, 3/*utf8 len*/},{0xc3a7/*gb2312*/, 0x83bd/*utf16*/, {0xe8,0x8e,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc3a8/*gb2312*/, 0x732b/*utf16*/, {0xe7,0x8c,0xab}/*utf8*/, 3/*utf8 len*/},{0xc3a9/*gb2312*/, 0x8305/*utf16*/, {0xe8,0x8c,0x85}/*utf8*/, 3/*utf8 len*/},{0xc3aa/*gb2312*/, 0x951a/*utf16*/, {0xe9,0x94,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc3ab/*gb2312*/, 0x6bdb/*utf16*/, {0xe6,0xaf,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc3ac/*gb2312*/, 0x77db/*utf16*/, {0xe7,0x9f,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc3ad/*gb2312*/, 0x94c6/*utf16*/, {0xe9,0x93,0x86}/*utf8*/, 3/*utf8 len*/},{0xc3ae/*gb2312*/, 0x536f/*utf16*/, {0xe5,0x8d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc3af/*gb2312*/, 0x8302/*utf16*/, {0xe8,0x8c,0x82}/*utf8*/, 3/*utf8 len*/},{0xc3b0/*gb2312*/, 0x5192/*utf16*/, {0xe5,0x86,0x92}/*utf8*/, 3/*utf8 len*/},{0xc3b1/*gb2312*/, 0x5e3d/*utf16*/, {0xe5,0xb8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc3b2/*gb2312*/, 0x8c8c/*utf16*/, {0xe8,0xb2,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc3b3/*gb2312*/, 0x8d38/*utf16*/, {0xe8,0xb4,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc3b4/*gb2312*/, 0x4e48/*utf16*/, {0xe4,0xb9,0x88}/*utf8*/, 3/*utf8 len*/},{0xc3b5/*gb2312*/, 0x73ab/*utf16*/, {0xe7,0x8e,0xab}/*utf8*/, 3/*utf8 len*/},{0xc3b6/*gb2312*/, 0x679a/*utf16*/, {0xe6,0x9e,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc3b7/*gb2312*/, 0x6885/*utf16*/, {0xe6,0xa2,0x85}/*utf8*/, 3/*utf8 len*/},{0xc3b8/*gb2312*/, 0x9176/*utf16*/, {0xe9,0x85,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc3b9/*gb2312*/, 0x9709/*utf16*/, {0xe9,0x9c,0x89}/*utf8*/, 3/*utf8 len*/},{0xc3ba/*gb2312*/, 0x7164/*utf16*/, {0xe7,0x85,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc3bb/*gb2312*/, 0x6ca1/*utf16*/, {0xe6,0xb2,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc3bc/*gb2312*/, 0x7709/*utf16*/, {0xe7,0x9c,0x89}/*utf8*/, 3/*utf8 len*/},{0xc3bd/*gb2312*/, 0x5a92/*utf16*/, {0xe5,0xaa,0x92}/*utf8*/, 3/*utf8 len*/},{0xc3be/*gb2312*/, 0x9541/*utf16*/, {0xe9,0x95,0x81}/*utf8*/, 3/*utf8 len*/},{0xc3bf/*gb2312*/, 0x6bcf/*utf16*/, {0xe6,0xaf,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc3c0/*gb2312*/, 0x7f8e/*utf16*/, {0xe7,0xbe,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc3c1/*gb2312*/, 0x6627/*utf16*/, {0xe6,0x98,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc3c2/*gb2312*/, 0x5bd0/*utf16*/, {0xe5,0xaf,0x90}/*utf8*/, 3/*utf8 len*/},{0xc3c3/*gb2312*/, 0x59b9/*utf16*/, {0xe5,0xa6,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc3c4/*gb2312*/, 0x5a9a/*utf16*/, {0xe5,0xaa,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc3c5/*gb2312*/, 0x95e8/*utf16*/, {0xe9,0x97,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc3c6/*gb2312*/, 0x95f7/*utf16*/, {0xe9,0x97,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc3c7/*gb2312*/, 0x4eec/*utf16*/, {0xe4,0xbb,0xac}/*utf8*/, 3/*utf8 len*/},{0xc3c8/*gb2312*/, 0x840c/*utf16*/, {0xe8,0x90,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc3c9/*gb2312*/, 0x8499/*utf16*/, {0xe8,0x92,0x99}/*utf8*/, 3/*utf8 len*/},{0xc3ca/*gb2312*/, 0x6aac/*utf16*/, {0xe6,0xaa,0xac}/*utf8*/, 3/*utf8 len*/},{0xc3cb/*gb2312*/, 0x76df/*utf16*/, {0xe7,0x9b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc3cc/*gb2312*/, 0x9530/*utf16*/, {0xe9,0x94,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc3cd/*gb2312*/, 0x731b/*utf16*/, {0xe7,0x8c,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc3ce/*gb2312*/, 0x68a6/*utf16*/, {0xe6,0xa2,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc3cf/*gb2312*/, 0x5b5f/*utf16*/, {0xe5,0xad,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc3d0/*gb2312*/, 0x772f/*utf16*/, {0xe7,0x9c,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc3d1/*gb2312*/, 0x919a/*utf16*/, {0xe9,0x86,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc3d2/*gb2312*/, 0x9761/*utf16*/, {0xe9,0x9d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc3d3/*gb2312*/, 0x7cdc/*utf16*/, {0xe7,0xb3,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc3d4/*gb2312*/, 0x8ff7/*utf16*/, {0xe8,0xbf,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc3d5/*gb2312*/, 0x8c1c/*utf16*/, {0xe8,0xb0,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc3d6/*gb2312*/, 0x5f25/*utf16*/, {0xe5,0xbc,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc3d7/*gb2312*/, 0x7c73/*utf16*/, {0xe7,0xb1,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc3d8/*gb2312*/, 0x79d8/*utf16*/, {0xe7,0xa7,0x98}/*utf8*/, 3/*utf8 len*/},{0xc3d9/*gb2312*/, 0x89c5/*utf16*/, {0xe8,0xa7,0x85}/*utf8*/, 3/*utf8 len*/},{0xc3da/*gb2312*/, 0x6ccc/*utf16*/, {0xe6,0xb3,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc3db/*gb2312*/, 0x871c/*utf16*/, {0xe8,0x9c,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc3dc/*gb2312*/, 0x5bc6/*utf16*/, {0xe5,0xaf,0x86}/*utf8*/, 3/*utf8 len*/},{0xc3dd/*gb2312*/, 0x5e42/*utf16*/, {0xe5,0xb9,0x82}/*utf8*/, 3/*utf8 len*/},{0xc3de/*gb2312*/, 0x68c9/*utf16*/, {0xe6,0xa3,0x89}/*utf8*/, 3/*utf8 len*/},{0xc3df/*gb2312*/, 0x7720/*utf16*/, {0xe7,0x9c,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc3e0/*gb2312*/, 0x7ef5/*utf16*/, {0xe7,0xbb,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc3e1/*gb2312*/, 0x5195/*utf16*/, {0xe5,0x86,0x95}/*utf8*/, 3/*utf8 len*/},{0xc3e2/*gb2312*/, 0x514d/*utf16*/, {0xe5,0x85,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc3e3/*gb2312*/, 0x52c9/*utf16*/, {0xe5,0x8b,0x89}/*utf8*/, 3/*utf8 len*/},{0xc3e4/*gb2312*/, 0x5a29/*utf16*/, {0xe5,0xa8,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc3e5/*gb2312*/, 0x7f05/*utf16*/, {0xe7,0xbc,0x85}/*utf8*/, 3/*utf8 len*/},{0xc3e6/*gb2312*/, 0x9762/*utf16*/, {0xe9,0x9d,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc3e7/*gb2312*/, 0x82d7/*utf16*/, {0xe8,0x8b,0x97}/*utf8*/, 3/*utf8 len*/},{0xc3e8/*gb2312*/, 0x63cf/*utf16*/, {0xe6,0x8f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc3e9/*gb2312*/, 0x7784/*utf16*/, {0xe7,0x9e,0x84}/*utf8*/, 3/*utf8 len*/},{0xc3ea/*gb2312*/, 0x85d0/*utf16*/, {0xe8,0x97,0x90}/*utf8*/, 3/*utf8 len*/},{0xc3eb/*gb2312*/, 0x79d2/*utf16*/, {0xe7,0xa7,0x92}/*utf8*/, 3/*utf8 len*/},{0xc3ec/*gb2312*/, 0x6e3a/*utf16*/, {0xe6,0xb8,0xba}/*utf8*/, 3/*utf8 len*/},{0xc3ed/*gb2312*/, 0x5e99/*utf16*/, {0xe5,0xba,0x99}/*utf8*/, 3/*utf8 len*/},{0xc3ee/*gb2312*/, 0x5999/*utf16*/, {0xe5,0xa6,0x99}/*utf8*/, 3/*utf8 len*/},{0xc3ef/*gb2312*/, 0x8511/*utf16*/, {0xe8,0x94,0x91}/*utf8*/, 3/*utf8 len*/},{0xc3f0/*gb2312*/, 0x706d/*utf16*/, {0xe7,0x81,0xad}/*utf8*/, 3/*utf8 len*/},{0xc3f1/*gb2312*/, 0x6c11/*utf16*/, {0xe6,0xb0,0x91}/*utf8*/, 3/*utf8 len*/},{0xc3f2/*gb2312*/, 0x62bf/*utf16*/, {0xe6,0x8a,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc3f3/*gb2312*/, 0x76bf/*utf16*/, {0xe7,0x9a,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc3f4/*gb2312*/, 0x654f/*utf16*/, {0xe6,0x95,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc3f5/*gb2312*/, 0x60af/*utf16*/, {0xe6,0x82,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc3f6/*gb2312*/, 0x95fd/*utf16*/, {0xe9,0x97,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc3f7/*gb2312*/, 0x660e/*utf16*/, {0xe6,0x98,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc3f8/*gb2312*/, 0x879f/*utf16*/, {0xe8,0x9e,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc3f9/*gb2312*/, 0x9e23/*utf16*/, {0xe9,0xb8,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc3fa/*gb2312*/, 0x94ed/*utf16*/, {0xe9,0x93,0xad}/*utf8*/, 3/*utf8 len*/},{0xc3fb/*gb2312*/, 0x540d/*utf16*/, {0xe5,0x90,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc3fc/*gb2312*/, 0x547d/*utf16*/, {0xe5,0x91,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc3fd/*gb2312*/, 0x8c2c/*utf16*/, {0xe8,0xb0,0xac}/*utf8*/, 3/*utf8 len*/},{0xc3fe/*gb2312*/, 0x6478/*utf16*/, {0xe6,0x91,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc4a1/*gb2312*/, 0x6479/*utf16*/, {0xe6,0x91,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc4a2/*gb2312*/, 0x8611/*utf16*/, {0xe8,0x98,0x91}/*utf8*/, 3/*utf8 len*/},{0xc4a3/*gb2312*/, 0x6a21/*utf16*/, {0xe6,0xa8,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc4a4/*gb2312*/, 0x819c/*utf16*/, {0xe8,0x86,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc4a5/*gb2312*/, 0x78e8/*utf16*/, {0xe7,0xa3,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc4a6/*gb2312*/, 0x6469/*utf16*/, {0xe6,0x91,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc4a7/*gb2312*/, 0x9b54/*utf16*/, {0xe9,0xad,0x94}/*utf8*/, 3/*utf8 len*/},{0xc4a8/*gb2312*/, 0x62b9/*utf16*/, {0xe6,0x8a,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc4a9/*gb2312*/, 0x672b/*utf16*/, {0xe6,0x9c,0xab}/*utf8*/, 3/*utf8 len*/},{0xc4aa/*gb2312*/, 0x83ab/*utf16*/, {0xe8,0x8e,0xab}/*utf8*/, 3/*utf8 len*/},{0xc4ab/*gb2312*/, 0x58a8/*utf16*/, {0xe5,0xa2,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc4ac/*gb2312*/, 0x9ed8/*utf16*/, {0xe9,0xbb,0x98}/*utf8*/, 3/*utf8 len*/},{0xc4ad/*gb2312*/, 0x6cab/*utf16*/, {0xe6,0xb2,0xab}/*utf8*/, 3/*utf8 len*/},{0xc4ae/*gb2312*/, 0x6f20/*utf16*/, {0xe6,0xbc,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc4af/*gb2312*/, 0x5bde/*utf16*/, {0xe5,0xaf,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc4b0/*gb2312*/, 0x964c/*utf16*/, {0xe9,0x99,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc4b1/*gb2312*/, 0x8c0b/*utf16*/, {0xe8,0xb0,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc4b2/*gb2312*/, 0x725f/*utf16*/, {0xe7,0x89,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc4b3/*gb2312*/, 0x67d0/*utf16*/, {0xe6,0x9f,0x90}/*utf8*/, 3/*utf8 len*/},{0xc4b4/*gb2312*/, 0x62c7/*utf16*/, {0xe6,0x8b,0x87}/*utf8*/, 3/*utf8 len*/},{0xc4b5/*gb2312*/, 0x7261/*utf16*/, {0xe7,0x89,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc4b6/*gb2312*/, 0x4ea9/*utf16*/, {0xe4,0xba,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc4b7/*gb2312*/, 0x59c6/*utf16*/, {0xe5,0xa7,0x86}/*utf8*/, 3/*utf8 len*/},{0xc4b8/*gb2312*/, 0x6bcd/*utf16*/, {0xe6,0xaf,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc4b9/*gb2312*/, 0x5893/*utf16*/, {0xe5,0xa2,0x93}/*utf8*/, 3/*utf8 len*/},{0xc4ba/*gb2312*/, 0x66ae/*utf16*/, {0xe6,0x9a,0xae}/*utf8*/, 3/*utf8 len*/},{0xc4bb/*gb2312*/, 0x5e55/*utf16*/, {0xe5,0xb9,0x95}/*utf8*/, 3/*utf8 len*/},{0xc4bc/*gb2312*/, 0x52df/*utf16*/, {0xe5,0x8b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc4bd/*gb2312*/, 0x6155/*utf16*/, {0xe6,0x85,0x95}/*utf8*/, 3/*utf8 len*/},{0xc4be/*gb2312*/, 0x6728/*utf16*/, {0xe6,0x9c,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc4bf/*gb2312*/, 0x76ee/*utf16*/, {0xe7,0x9b,0xae}/*utf8*/, 3/*utf8 len*/},{0xc4c0/*gb2312*/, 0x7766/*utf16*/, {0xe7,0x9d,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc4c1/*gb2312*/, 0x7267/*utf16*/, {0xe7,0x89,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc4c2/*gb2312*/, 0x7a46/*utf16*/, {0xe7,0xa9,0x86}/*utf8*/, 3/*utf8 len*/},{0xc4c3/*gb2312*/, 0x62ff/*utf16*/, {0xe6,0x8b,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc4c4/*gb2312*/, 0x54ea/*utf16*/, {0xe5,0x93,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc4c5/*gb2312*/, 0x5450/*utf16*/, {0xe5,0x91,0x90}/*utf8*/, 3/*utf8 len*/},{0xc4c6/*gb2312*/, 0x94a0/*utf16*/, {0xe9,0x92,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc4c7/*gb2312*/, 0x90a3/*utf16*/, {0xe9,0x82,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc4c8/*gb2312*/, 0x5a1c/*utf16*/, {0xe5,0xa8,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc4c9/*gb2312*/, 0x7eb3/*utf16*/, {0xe7,0xba,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc4ca/*gb2312*/, 0x6c16/*utf16*/, {0xe6,0xb0,0x96}/*utf8*/, 3/*utf8 len*/},{0xc4cb/*gb2312*/, 0x4e43/*utf16*/, {0xe4,0xb9,0x83}/*utf8*/, 3/*utf8 len*/},{0xc4cc/*gb2312*/, 0x5976/*utf16*/, {0xe5,0xa5,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc4cd/*gb2312*/, 0x8010/*utf16*/, {0xe8,0x80,0x90}/*utf8*/, 3/*utf8 len*/},{0xc4ce/*gb2312*/, 0x5948/*utf16*/, {0xe5,0xa5,0x88}/*utf8*/, 3/*utf8 len*/},{0xc4cf/*gb2312*/, 0x5357/*utf16*/, {0xe5,0x8d,0x97}/*utf8*/, 3/*utf8 len*/},{0xc4d0/*gb2312*/, 0x7537/*utf16*/, {0xe7,0x94,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc4d1/*gb2312*/, 0x96be/*utf16*/, {0xe9,0x9a,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc4d2/*gb2312*/, 0x56ca/*utf16*/, {0xe5,0x9b,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc4d3/*gb2312*/, 0x6320/*utf16*/, {0xe6,0x8c,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc4d4/*gb2312*/, 0x8111/*utf16*/, {0xe8,0x84,0x91}/*utf8*/, 3/*utf8 len*/},{0xc4d5/*gb2312*/, 0x607c/*utf16*/, {0xe6,0x81,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc4d6/*gb2312*/, 0x95f9/*utf16*/, {0xe9,0x97,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc4d7/*gb2312*/, 0x6dd6/*utf16*/, {0xe6,0xb7,0x96}/*utf8*/, 3/*utf8 len*/},{0xc4d8/*gb2312*/, 0x5462/*utf16*/, {0xe5,0x91,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc4d9/*gb2312*/, 0x9981/*utf16*/, {0xe9,0xa6,0x81}/*utf8*/, 3/*utf8 len*/},{0xc4da/*gb2312*/, 0x5185/*utf16*/, {0xe5,0x86,0x85}/*utf8*/, 3/*utf8 len*/},{0xc4db/*gb2312*/, 0x5ae9/*utf16*/, {0xe5,0xab,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc4dc/*gb2312*/, 0x80fd/*utf16*/, {0xe8,0x83,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc4dd/*gb2312*/, 0x59ae/*utf16*/, {0xe5,0xa6,0xae}/*utf8*/, 3/*utf8 len*/},{0xc4de/*gb2312*/, 0x9713/*utf16*/, {0xe9,0x9c,0x93}/*utf8*/, 3/*utf8 len*/},{0xc4df/*gb2312*/, 0x502a/*utf16*/, {0xe5,0x80,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc4e0/*gb2312*/, 0x6ce5/*utf16*/, {0xe6,0xb3,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc4e1/*gb2312*/, 0x5c3c/*utf16*/, {0xe5,0xb0,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc4e2/*gb2312*/, 0x62df/*utf16*/, {0xe6,0x8b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc4e3/*gb2312*/, 0x4f60/*utf16*/, {0xe4,0xbd,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc4e4/*gb2312*/, 0x533f/*utf16*/, {0xe5,0x8c,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc4e5/*gb2312*/, 0x817b/*utf16*/, {0xe8,0x85,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc4e6/*gb2312*/, 0x9006/*utf16*/, {0xe9,0x80,0x86}/*utf8*/, 3/*utf8 len*/},{0xc4e7/*gb2312*/, 0x6eba/*utf16*/, {0xe6,0xba,0xba}/*utf8*/, 3/*utf8 len*/},{0xc4e8/*gb2312*/, 0x852b/*utf16*/, {0xe8,0x94,0xab}/*utf8*/, 3/*utf8 len*/},{0xc4e9/*gb2312*/, 0x62c8/*utf16*/, {0xe6,0x8b,0x88}/*utf8*/, 3/*utf8 len*/},{0xc4ea/*gb2312*/, 0x5e74/*utf16*/, {0xe5,0xb9,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc4eb/*gb2312*/, 0x78be/*utf16*/, {0xe7,0xa2,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc4ec/*gb2312*/, 0x64b5/*utf16*/, {0xe6,0x92,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc4ed/*gb2312*/, 0x637b/*utf16*/, {0xe6,0x8d,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc4ee/*gb2312*/, 0x5ff5/*utf16*/, {0xe5,0xbf,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc4ef/*gb2312*/, 0x5a18/*utf16*/, {0xe5,0xa8,0x98}/*utf8*/, 3/*utf8 len*/},{0xc4f0/*gb2312*/, 0x917f/*utf16*/, {0xe9,0x85,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc4f1/*gb2312*/, 0x9e1f/*utf16*/, {0xe9,0xb8,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc4f2/*gb2312*/, 0x5c3f/*utf16*/, {0xe5,0xb0,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc4f3/*gb2312*/, 0x634f/*utf16*/, {0xe6,0x8d,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc4f4/*gb2312*/, 0x8042/*utf16*/, {0xe8,0x81,0x82}/*utf8*/, 3/*utf8 len*/},{0xc4f5/*gb2312*/, 0x5b7d/*utf16*/, {0xe5,0xad,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc4f6/*gb2312*/, 0x556e/*utf16*/, {0xe5,0x95,0xae}/*utf8*/, 3/*utf8 len*/},{0xc4f7/*gb2312*/, 0x954a/*utf16*/, {0xe9,0x95,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc4f8/*gb2312*/, 0x954d/*utf16*/, {0xe9,0x95,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc4f9/*gb2312*/, 0x6d85/*utf16*/, {0xe6,0xb6,0x85}/*utf8*/, 3/*utf8 len*/},{0xc4fa/*gb2312*/, 0x60a8/*utf16*/, {0xe6,0x82,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc4fb/*gb2312*/, 0x67e0/*utf16*/, {0xe6,0x9f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc4fc/*gb2312*/, 0x72de/*utf16*/, {0xe7,0x8b,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc4fd/*gb2312*/, 0x51dd/*utf16*/, {0xe5,0x87,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc4fe/*gb2312*/, 0x5b81/*utf16*/, {0xe5,0xae,0x81}/*utf8*/, 3/*utf8 len*/},{0xc5a1/*gb2312*/, 0x62e7/*utf16*/, {0xe6,0x8b,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc5a2/*gb2312*/, 0x6cde/*utf16*/, {0xe6,0xb3,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc5a3/*gb2312*/, 0x725b/*utf16*/, {0xe7,0x89,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc5a4/*gb2312*/, 0x626d/*utf16*/, {0xe6,0x89,0xad}/*utf8*/, 3/*utf8 len*/},{0xc5a5/*gb2312*/, 0x94ae/*utf16*/, {0xe9,0x92,0xae}/*utf8*/, 3/*utf8 len*/},{0xc5a6/*gb2312*/, 0x7ebd/*utf16*/, {0xe7,0xba,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc5a7/*gb2312*/, 0x8113/*utf16*/, {0xe8,0x84,0x93}/*utf8*/, 3/*utf8 len*/},{0xc5a8/*gb2312*/, 0x6d53/*utf16*/, {0xe6,0xb5,0x93}/*utf8*/, 3/*utf8 len*/},{0xc5a9/*gb2312*/, 0x519c/*utf16*/, {0xe5,0x86,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc5aa/*gb2312*/, 0x5f04/*utf16*/, {0xe5,0xbc,0x84}/*utf8*/, 3/*utf8 len*/},{0xc5ab/*gb2312*/, 0x5974/*utf16*/, {0xe5,0xa5,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc5ac/*gb2312*/, 0x52aa/*utf16*/, {0xe5,0x8a,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc5ad/*gb2312*/, 0x6012/*utf16*/, {0xe6,0x80,0x92}/*utf8*/, 3/*utf8 len*/},{0xc5ae/*gb2312*/, 0x5973/*utf16*/, {0xe5,0xa5,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc5af/*gb2312*/, 0x6696/*utf16*/, {0xe6,0x9a,0x96}/*utf8*/, 3/*utf8 len*/},{0xc5b0/*gb2312*/, 0x8650/*utf16*/, {0xe8,0x99,0x90}/*utf8*/, 3/*utf8 len*/},{0xc5b1/*gb2312*/, 0x759f/*utf16*/, {0xe7,0x96,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc5b2/*gb2312*/, 0x632a/*utf16*/, {0xe6,0x8c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc5b3/*gb2312*/, 0x61e6/*utf16*/, {0xe6,0x87,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc5b4/*gb2312*/, 0x7cef/*utf16*/, {0xe7,0xb3,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc5b5/*gb2312*/, 0x8bfa/*utf16*/, {0xe8,0xaf,0xba}/*utf8*/, 3/*utf8 len*/},{0xc5b6/*gb2312*/, 0x54e6/*utf16*/, {0xe5,0x93,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc5b7/*gb2312*/, 0x6b27/*utf16*/, {0xe6,0xac,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc5b8/*gb2312*/, 0x9e25/*utf16*/, {0xe9,0xb8,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc5b9/*gb2312*/, 0x6bb4/*utf16*/, {0xe6,0xae,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc5ba/*gb2312*/, 0x85d5/*utf16*/, {0xe8,0x97,0x95}/*utf8*/, 3/*utf8 len*/},{0xc5bb/*gb2312*/, 0x5455/*utf16*/, {0xe5,0x91,0x95}/*utf8*/, 3/*utf8 len*/},{0xc5bc/*gb2312*/, 0x5076/*utf16*/, {0xe5,0x81,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc5bd/*gb2312*/, 0x6ca4/*utf16*/, {0xe6,0xb2,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc5be/*gb2312*/, 0x556a/*utf16*/, {0xe5,0x95,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc5bf/*gb2312*/, 0x8db4/*utf16*/, {0xe8,0xb6,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc5c0/*gb2312*/, 0x722c/*utf16*/, {0xe7,0x88,0xac}/*utf8*/, 3/*utf8 len*/},{0xc5c1/*gb2312*/, 0x5e15/*utf16*/, {0xe5,0xb8,0x95}/*utf8*/, 3/*utf8 len*/},{0xc5c2/*gb2312*/, 0x6015/*utf16*/, {0xe6,0x80,0x95}/*utf8*/, 3/*utf8 len*/},{0xc5c3/*gb2312*/, 0x7436/*utf16*/, {0xe7,0x90,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc5c4/*gb2312*/, 0x62cd/*utf16*/, {0xe6,0x8b,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc5c5/*gb2312*/, 0x6392/*utf16*/, {0xe6,0x8e,0x92}/*utf8*/, 3/*utf8 len*/},{0xc5c6/*gb2312*/, 0x724c/*utf16*/, {0xe7,0x89,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc5c7/*gb2312*/, 0x5f98/*utf16*/, {0xe5,0xbe,0x98}/*utf8*/, 3/*utf8 len*/},{0xc5c8/*gb2312*/, 0x6e43/*utf16*/, {0xe6,0xb9,0x83}/*utf8*/, 3/*utf8 len*/},{0xc5c9/*gb2312*/, 0x6d3e/*utf16*/, {0xe6,0xb4,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc5ca/*gb2312*/, 0x6500/*utf16*/, {0xe6,0x94,0x80}/*utf8*/, 3/*utf8 len*/},{0xc5cb/*gb2312*/, 0x6f58/*utf16*/, {0xe6,0xbd,0x98}/*utf8*/, 3/*utf8 len*/},{0xc5cc/*gb2312*/, 0x76d8/*utf16*/, {0xe7,0x9b,0x98}/*utf8*/, 3/*utf8 len*/},{0xc5cd/*gb2312*/, 0x78d0/*utf16*/, {0xe7,0xa3,0x90}/*utf8*/, 3/*utf8 len*/},{0xc5ce/*gb2312*/, 0x76fc/*utf16*/, {0xe7,0x9b,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc5cf/*gb2312*/, 0x7554/*utf16*/, {0xe7,0x95,0x94}/*utf8*/, 3/*utf8 len*/},{0xc5d0/*gb2312*/, 0x5224/*utf16*/, {0xe5,0x88,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc5d1/*gb2312*/, 0x53db/*utf16*/, {0xe5,0x8f,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc5d2/*gb2312*/, 0x4e53/*utf16*/, {0xe4,0xb9,0x93}/*utf8*/, 3/*utf8 len*/},{0xc5d3/*gb2312*/, 0x5e9e/*utf16*/, {0xe5,0xba,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc5d4/*gb2312*/, 0x65c1/*utf16*/, {0xe6,0x97,0x81}/*utf8*/, 3/*utf8 len*/},{0xc5d5/*gb2312*/, 0x802a/*utf16*/, {0xe8,0x80,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc5d6/*gb2312*/, 0x80d6/*utf16*/, {0xe8,0x83,0x96}/*utf8*/, 3/*utf8 len*/},{0xc5d7/*gb2312*/, 0x629b/*utf16*/, {0xe6,0x8a,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc5d8/*gb2312*/, 0x5486/*utf16*/, {0xe5,0x92,0x86}/*utf8*/, 3/*utf8 len*/},{0xc5d9/*gb2312*/, 0x5228/*utf16*/, {0xe5,0x88,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc5da/*gb2312*/, 0x70ae/*utf16*/, {0xe7,0x82,0xae}/*utf8*/, 3/*utf8 len*/},{0xc5db/*gb2312*/, 0x888d/*utf16*/, {0xe8,0xa2,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc5dc/*gb2312*/, 0x8dd1/*utf16*/, {0xe8,0xb7,0x91}/*utf8*/, 3/*utf8 len*/},{0xc5dd/*gb2312*/, 0x6ce1/*utf16*/, {0xe6,0xb3,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc5de/*gb2312*/, 0x5478/*utf16*/, {0xe5,0x91,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc5df/*gb2312*/, 0x80da/*utf16*/, {0xe8,0x83,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc5e0/*gb2312*/, 0x57f9/*utf16*/, {0xe5,0x9f,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc5e1/*gb2312*/, 0x88f4/*utf16*/, {0xe8,0xa3,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc5e2/*gb2312*/, 0x8d54/*utf16*/, {0xe8,0xb5,0x94}/*utf8*/, 3/*utf8 len*/},{0xc5e3/*gb2312*/, 0x966a/*utf16*/, {0xe9,0x99,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc5e4/*gb2312*/, 0x914d/*utf16*/, {0xe9,0x85,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc5e5/*gb2312*/, 0x4f69/*utf16*/, {0xe4,0xbd,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc5e6/*gb2312*/, 0x6c9b/*utf16*/, {0xe6,0xb2,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc5e7/*gb2312*/, 0x55b7/*utf16*/, {0xe5,0x96,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc5e8/*gb2312*/, 0x76c6/*utf16*/, {0xe7,0x9b,0x86}/*utf8*/, 3/*utf8 len*/},{0xc5e9/*gb2312*/, 0x7830/*utf16*/, {0xe7,0xa0,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc5ea/*gb2312*/, 0x62a8/*utf16*/, {0xe6,0x8a,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc5eb/*gb2312*/, 0x70f9/*utf16*/, {0xe7,0x83,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc5ec/*gb2312*/, 0x6f8e/*utf16*/, {0xe6,0xbe,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc5ed/*gb2312*/, 0x5f6d/*utf16*/, {0xe5,0xbd,0xad}/*utf8*/, 3/*utf8 len*/},{0xc5ee/*gb2312*/, 0x84ec/*utf16*/, {0xe8,0x93,0xac}/*utf8*/, 3/*utf8 len*/},{0xc5ef/*gb2312*/, 0x68da/*utf16*/, {0xe6,0xa3,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc5f0/*gb2312*/, 0x787c/*utf16*/, {0xe7,0xa1,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc5f1/*gb2312*/, 0x7bf7/*utf16*/, {0xe7,0xaf,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc5f2/*gb2312*/, 0x81a8/*utf16*/, {0xe8,0x86,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc5f3/*gb2312*/, 0x670b/*utf16*/, {0xe6,0x9c,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc5f4/*gb2312*/, 0x9e4f/*utf16*/, {0xe9,0xb9,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc5f5/*gb2312*/, 0x6367/*utf16*/, {0xe6,0x8d,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc5f6/*gb2312*/, 0x78b0/*utf16*/, {0xe7,0xa2,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc5f7/*gb2312*/, 0x576f/*utf16*/, {0xe5,0x9d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc5f8/*gb2312*/, 0x7812/*utf16*/, {0xe7,0xa0,0x92}/*utf8*/, 3/*utf8 len*/},{0xc5f9/*gb2312*/, 0x9739/*utf16*/, {0xe9,0x9c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc5fa/*gb2312*/, 0x6279/*utf16*/, {0xe6,0x89,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc5fb/*gb2312*/, 0x62ab/*utf16*/, {0xe6,0x8a,0xab}/*utf8*/, 3/*utf8 len*/},{0xc5fc/*gb2312*/, 0x5288/*utf16*/, {0xe5,0x8a,0x88}/*utf8*/, 3/*utf8 len*/},{0xc5fd/*gb2312*/, 0x7435/*utf16*/, {0xe7,0x90,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc5fe/*gb2312*/, 0x6bd7/*utf16*/, {0xe6,0xaf,0x97}/*utf8*/, 3/*utf8 len*/},{0xc6a1/*gb2312*/, 0x5564/*utf16*/, {0xe5,0x95,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc6a2/*gb2312*/, 0x813e/*utf16*/, {0xe8,0x84,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc6a3/*gb2312*/, 0x75b2/*utf16*/, {0xe7,0x96,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc6a4/*gb2312*/, 0x76ae/*utf16*/, {0xe7,0x9a,0xae}/*utf8*/, 3/*utf8 len*/},{0xc6a5/*gb2312*/, 0x5339/*utf16*/, {0xe5,0x8c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc6a6/*gb2312*/, 0x75de/*utf16*/, {0xe7,0x97,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc6a7/*gb2312*/, 0x50fb/*utf16*/, {0xe5,0x83,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc6a8/*gb2312*/, 0x5c41/*utf16*/, {0xe5,0xb1,0x81}/*utf8*/, 3/*utf8 len*/},{0xc6a9/*gb2312*/, 0x8b6c/*utf16*/, {0xe8,0xad,0xac}/*utf8*/, 3/*utf8 len*/},{0xc6aa/*gb2312*/, 0x7bc7/*utf16*/, {0xe7,0xaf,0x87}/*utf8*/, 3/*utf8 len*/},{0xc6ab/*gb2312*/, 0x504f/*utf16*/, {0xe5,0x81,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc6ac/*gb2312*/, 0x7247/*utf16*/, {0xe7,0x89,0x87}/*utf8*/, 3/*utf8 len*/},{0xc6ad/*gb2312*/, 0x9a97/*utf16*/, {0xe9,0xaa,0x97}/*utf8*/, 3/*utf8 len*/},{0xc6ae/*gb2312*/, 0x98d8/*utf16*/, {0xe9,0xa3,0x98}/*utf8*/, 3/*utf8 len*/},{0xc6af/*gb2312*/, 0x6f02/*utf16*/, {0xe6,0xbc,0x82}/*utf8*/, 3/*utf8 len*/},{0xc6b0/*gb2312*/, 0x74e2/*utf16*/, {0xe7,0x93,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc6b1/*gb2312*/, 0x7968/*utf16*/, {0xe7,0xa5,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc6b2/*gb2312*/, 0x6487/*utf16*/, {0xe6,0x92,0x87}/*utf8*/, 3/*utf8 len*/},{0xc6b3/*gb2312*/, 0x77a5/*utf16*/, {0xe7,0x9e,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc6b4/*gb2312*/, 0x62fc/*utf16*/, {0xe6,0x8b,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc6b5/*gb2312*/, 0x9891/*utf16*/, {0xe9,0xa2,0x91}/*utf8*/, 3/*utf8 len*/},{0xc6b6/*gb2312*/, 0x8d2b/*utf16*/, {0xe8,0xb4,0xab}/*utf8*/, 3/*utf8 len*/},{0xc6b7/*gb2312*/, 0x54c1/*utf16*/, {0xe5,0x93,0x81}/*utf8*/, 3/*utf8 len*/},{0xc6b8/*gb2312*/, 0x8058/*utf16*/, {0xe8,0x81,0x98}/*utf8*/, 3/*utf8 len*/},{0xc6b9/*gb2312*/, 0x4e52/*utf16*/, {0xe4,0xb9,0x92}/*utf8*/, 3/*utf8 len*/},{0xc6ba/*gb2312*/, 0x576a/*utf16*/, {0xe5,0x9d,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc6bb/*gb2312*/, 0x82f9/*utf16*/, {0xe8,0x8b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc6bc/*gb2312*/, 0x840d/*utf16*/, {0xe8,0x90,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc6bd/*gb2312*/, 0x5e73/*utf16*/, {0xe5,0xb9,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc6be/*gb2312*/, 0x51ed/*utf16*/, {0xe5,0x87,0xad}/*utf8*/, 3/*utf8 len*/},{0xc6bf/*gb2312*/, 0x74f6/*utf16*/, {0xe7,0x93,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc6c0/*gb2312*/, 0x8bc4/*utf16*/, {0xe8,0xaf,0x84}/*utf8*/, 3/*utf8 len*/},{0xc6c1/*gb2312*/, 0x5c4f/*utf16*/, {0xe5,0xb1,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc6c2/*gb2312*/, 0x5761/*utf16*/, {0xe5,0x9d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc6c3/*gb2312*/, 0x6cfc/*utf16*/, {0xe6,0xb3,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc6c4/*gb2312*/, 0x9887/*utf16*/, {0xe9,0xa2,0x87}/*utf8*/, 3/*utf8 len*/},{0xc6c5/*gb2312*/, 0x5a46/*utf16*/, {0xe5,0xa9,0x86}/*utf8*/, 3/*utf8 len*/},{0xc6c6/*gb2312*/, 0x7834/*utf16*/, {0xe7,0xa0,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc6c7/*gb2312*/, 0x9b44/*utf16*/, {0xe9,0xad,0x84}/*utf8*/, 3/*utf8 len*/},{0xc6c8/*gb2312*/, 0x8feb/*utf16*/, {0xe8,0xbf,0xab}/*utf8*/, 3/*utf8 len*/},{0xc6c9/*gb2312*/, 0x7c95/*utf16*/, {0xe7,0xb2,0x95}/*utf8*/, 3/*utf8 len*/},{0xc6ca/*gb2312*/, 0x5256/*utf16*/, {0xe5,0x89,0x96}/*utf8*/, 3/*utf8 len*/},{0xc6cb/*gb2312*/, 0x6251/*utf16*/, {0xe6,0x89,0x91}/*utf8*/, 3/*utf8 len*/},{0xc6cc/*gb2312*/, 0x94fa/*utf16*/, {0xe9,0x93,0xba}/*utf8*/, 3/*utf8 len*/},{0xc6cd/*gb2312*/, 0x4ec6/*utf16*/, {0xe4,0xbb,0x86}/*utf8*/, 3/*utf8 len*/},{0xc6ce/*gb2312*/, 0x8386/*utf16*/, {0xe8,0x8e,0x86}/*utf8*/, 3/*utf8 len*/},{0xc6cf/*gb2312*/, 0x8461/*utf16*/, {0xe8,0x91,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc6d0/*gb2312*/, 0x83e9/*utf16*/, {0xe8,0x8f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc6d1/*gb2312*/, 0x84b2/*utf16*/, {0xe8,0x92,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc6d2/*gb2312*/, 0x57d4/*utf16*/, {0xe5,0x9f,0x94}/*utf8*/, 3/*utf8 len*/},{0xc6d3/*gb2312*/, 0x6734/*utf16*/, {0xe6,0x9c,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc6d4/*gb2312*/, 0x5703/*utf16*/, {0xe5,0x9c,0x83}/*utf8*/, 3/*utf8 len*/},{0xc6d5/*gb2312*/, 0x666e/*utf16*/, {0xe6,0x99,0xae}/*utf8*/, 3/*utf8 len*/},{0xc6d6/*gb2312*/, 0x6d66/*utf16*/, {0xe6,0xb5,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc6d7/*gb2312*/, 0x8c31/*utf16*/, {0xe8,0xb0,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc6d8/*gb2312*/, 0x66dd/*utf16*/, {0xe6,0x9b,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc6d9/*gb2312*/, 0x7011/*utf16*/, {0xe7,0x80,0x91}/*utf8*/, 3/*utf8 len*/},{0xc6da/*gb2312*/, 0x671f/*utf16*/, {0xe6,0x9c,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc6db/*gb2312*/, 0x6b3a/*utf16*/, {0xe6,0xac,0xba}/*utf8*/, 3/*utf8 len*/},{0xc6dc/*gb2312*/, 0x6816/*utf16*/, {0xe6,0xa0,0x96}/*utf8*/, 3/*utf8 len*/},{0xc6dd/*gb2312*/, 0x621a/*utf16*/, {0xe6,0x88,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc6de/*gb2312*/, 0x59bb/*utf16*/, {0xe5,0xa6,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc6df/*gb2312*/, 0x4e03/*utf16*/, {0xe4,0xb8,0x83}/*utf8*/, 3/*utf8 len*/},{0xc6e0/*gb2312*/, 0x51c4/*utf16*/, {0xe5,0x87,0x84}/*utf8*/, 3/*utf8 len*/},{0xc6e1/*gb2312*/, 0x6f06/*utf16*/, {0xe6,0xbc,0x86}/*utf8*/, 3/*utf8 len*/},{0xc6e2/*gb2312*/, 0x67d2/*utf16*/, {0xe6,0x9f,0x92}/*utf8*/, 3/*utf8 len*/},{0xc6e3/*gb2312*/, 0x6c8f/*utf16*/, {0xe6,0xb2,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc6e4/*gb2312*/, 0x5176/*utf16*/, {0xe5,0x85,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc6e5/*gb2312*/, 0x68cb/*utf16*/, {0xe6,0xa3,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc6e6/*gb2312*/, 0x5947/*utf16*/, {0xe5,0xa5,0x87}/*utf8*/, 3/*utf8 len*/},{0xc6e7/*gb2312*/, 0x6b67/*utf16*/, {0xe6,0xad,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc6e8/*gb2312*/, 0x7566/*utf16*/, {0xe7,0x95,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc6e9/*gb2312*/, 0x5d0e/*utf16*/, {0xe5,0xb4,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc6ea/*gb2312*/, 0x8110/*utf16*/, {0xe8,0x84,0x90}/*utf8*/, 3/*utf8 len*/},{0xc6eb/*gb2312*/, 0x9f50/*utf16*/, {0xe9,0xbd,0x90}/*utf8*/, 3/*utf8 len*/},{0xc6ec/*gb2312*/, 0x65d7/*utf16*/, {0xe6,0x97,0x97}/*utf8*/, 3/*utf8 len*/},{0xc6ed/*gb2312*/, 0x7948/*utf16*/, {0xe7,0xa5,0x88}/*utf8*/, 3/*utf8 len*/},{0xc6ee/*gb2312*/, 0x7941/*utf16*/, {0xe7,0xa5,0x81}/*utf8*/, 3/*utf8 len*/},{0xc6ef/*gb2312*/, 0x9a91/*utf16*/, {0xe9,0xaa,0x91}/*utf8*/, 3/*utf8 len*/},{0xc6f0/*gb2312*/, 0x8d77/*utf16*/, {0xe8,0xb5,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc6f1/*gb2312*/, 0x5c82/*utf16*/, {0xe5,0xb2,0x82}/*utf8*/, 3/*utf8 len*/},{0xc6f2/*gb2312*/, 0x4e5e/*utf16*/, {0xe4,0xb9,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc6f3/*gb2312*/, 0x4f01/*utf16*/, {0xe4,0xbc,0x81}/*utf8*/, 3/*utf8 len*/},{0xc6f4/*gb2312*/, 0x542f/*utf16*/, {0xe5,0x90,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc6f5/*gb2312*/, 0x5951/*utf16*/, {0xe5,0xa5,0x91}/*utf8*/, 3/*utf8 len*/},{0xc6f6/*gb2312*/, 0x780c/*utf16*/, {0xe7,0xa0,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc6f7/*gb2312*/, 0x5668/*utf16*/, {0xe5,0x99,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc6f8/*gb2312*/, 0x6c14/*utf16*/, {0xe6,0xb0,0x94}/*utf8*/, 3/*utf8 len*/},{0xc6f9/*gb2312*/, 0x8fc4/*utf16*/, {0xe8,0xbf,0x84}/*utf8*/, 3/*utf8 len*/},{0xc6fa/*gb2312*/, 0x5f03/*utf16*/, {0xe5,0xbc,0x83}/*utf8*/, 3/*utf8 len*/},{0xc6fb/*gb2312*/, 0x6c7d/*utf16*/, {0xe6,0xb1,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc6fc/*gb2312*/, 0x6ce3/*utf16*/, {0xe6,0xb3,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc6fd/*gb2312*/, 0x8bab/*utf16*/, {0xe8,0xae,0xab}/*utf8*/, 3/*utf8 len*/},{0xc6fe/*gb2312*/, 0x6390/*utf16*/, {0xe6,0x8e,0x90}/*utf8*/, 3/*utf8 len*/},{0xc7a1/*gb2312*/, 0x6070/*utf16*/, {0xe6,0x81,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc7a2/*gb2312*/, 0x6d3d/*utf16*/, {0xe6,0xb4,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc7a3/*gb2312*/, 0x7275/*utf16*/, {0xe7,0x89,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc7a4/*gb2312*/, 0x6266/*utf16*/, {0xe6,0x89,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc7a5/*gb2312*/, 0x948e/*utf16*/, {0xe9,0x92,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc7a6/*gb2312*/, 0x94c5/*utf16*/, {0xe9,0x93,0x85}/*utf8*/, 3/*utf8 len*/},{0xc7a7/*gb2312*/, 0x5343/*utf16*/, {0xe5,0x8d,0x83}/*utf8*/, 3/*utf8 len*/},{0xc7a8/*gb2312*/, 0x8fc1/*utf16*/, {0xe8,0xbf,0x81}/*utf8*/, 3/*utf8 len*/},{0xc7a9/*gb2312*/, 0x7b7e/*utf16*/, {0xe7,0xad,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc7aa/*gb2312*/, 0x4edf/*utf16*/, {0xe4,0xbb,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc7ab/*gb2312*/, 0x8c26/*utf16*/, {0xe8,0xb0,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc7ac/*gb2312*/, 0x4e7e/*utf16*/, {0xe4,0xb9,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc7ad/*gb2312*/, 0x9ed4/*utf16*/, {0xe9,0xbb,0x94}/*utf8*/, 3/*utf8 len*/},{0xc7ae/*gb2312*/, 0x94b1/*utf16*/, {0xe9,0x92,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc7af/*gb2312*/, 0x94b3/*utf16*/, {0xe9,0x92,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc7b0/*gb2312*/, 0x524d/*utf16*/, {0xe5,0x89,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc7b1/*gb2312*/, 0x6f5c/*utf16*/, {0xe6,0xbd,0x9c}/*utf8*/, 3/*utf8 len*/},{0xc7b2/*gb2312*/, 0x9063/*utf16*/, {0xe9,0x81,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc7b3/*gb2312*/, 0x6d45/*utf16*/, {0xe6,0xb5,0x85}/*utf8*/, 3/*utf8 len*/},{0xc7b4/*gb2312*/, 0x8c34/*utf16*/, {0xe8,0xb0,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc7b5/*gb2312*/, 0x5811/*utf16*/, {0xe5,0xa0,0x91}/*utf8*/, 3/*utf8 len*/},{0xc7b6/*gb2312*/, 0x5d4c/*utf16*/, {0xe5,0xb5,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc7b7/*gb2312*/, 0x6b20/*utf16*/, {0xe6,0xac,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc7b8/*gb2312*/, 0x6b49/*utf16*/, {0xe6,0xad,0x89}/*utf8*/, 3/*utf8 len*/},{0xc7b9/*gb2312*/, 0x67aa/*utf16*/, {0xe6,0x9e,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc7ba/*gb2312*/, 0x545b/*utf16*/, {0xe5,0x91,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc7bb/*gb2312*/, 0x8154/*utf16*/, {0xe8,0x85,0x94}/*utf8*/, 3/*utf8 len*/},{0xc7bc/*gb2312*/, 0x7f8c/*utf16*/, {0xe7,0xbe,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc7bd/*gb2312*/, 0x5899/*utf16*/, {0xe5,0xa2,0x99}/*utf8*/, 3/*utf8 len*/},{0xc7be/*gb2312*/, 0x8537/*utf16*/, {0xe8,0x94,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc7bf/*gb2312*/, 0x5f3a/*utf16*/, {0xe5,0xbc,0xba}/*utf8*/, 3/*utf8 len*/},{0xc7c0/*gb2312*/, 0x62a2/*utf16*/, {0xe6,0x8a,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc7c1/*gb2312*/, 0x6a47/*utf16*/, {0xe6,0xa9,0x87}/*utf8*/, 3/*utf8 len*/},{0xc7c2/*gb2312*/, 0x9539/*utf16*/, {0xe9,0x94,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc7c3/*gb2312*/, 0x6572/*utf16*/, {0xe6,0x95,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc7c4/*gb2312*/, 0x6084/*utf16*/, {0xe6,0x82,0x84}/*utf8*/, 3/*utf8 len*/},{0xc7c5/*gb2312*/, 0x6865/*utf16*/, {0xe6,0xa1,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc7c6/*gb2312*/, 0x77a7/*utf16*/, {0xe7,0x9e,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc7c7/*gb2312*/, 0x4e54/*utf16*/, {0xe4,0xb9,0x94}/*utf8*/, 3/*utf8 len*/},{0xc7c8/*gb2312*/, 0x4fa8/*utf16*/, {0xe4,0xbe,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc7c9/*gb2312*/, 0x5de7/*utf16*/, {0xe5,0xb7,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc7ca/*gb2312*/, 0x9798/*utf16*/, {0xe9,0x9e,0x98}/*utf8*/, 3/*utf8 len*/},{0xc7cb/*gb2312*/, 0x64ac/*utf16*/, {0xe6,0x92,0xac}/*utf8*/, 3/*utf8 len*/},{0xc7cc/*gb2312*/, 0x7fd8/*utf16*/, {0xe7,0xbf,0x98}/*utf8*/, 3/*utf8 len*/},{0xc7cd/*gb2312*/, 0x5ced/*utf16*/, {0xe5,0xb3,0xad}/*utf8*/, 3/*utf8 len*/},{0xc7ce/*gb2312*/, 0x4fcf/*utf16*/, {0xe4,0xbf,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc7cf/*gb2312*/, 0x7a8d/*utf16*/, {0xe7,0xaa,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc7d0/*gb2312*/, 0x5207/*utf16*/, {0xe5,0x88,0x87}/*utf8*/, 3/*utf8 len*/},{0xc7d1/*gb2312*/, 0x8304/*utf16*/, {0xe8,0x8c,0x84}/*utf8*/, 3/*utf8 len*/},{0xc7d2/*gb2312*/, 0x4e14/*utf16*/, {0xe4,0xb8,0x94}/*utf8*/, 3/*utf8 len*/},{0xc7d3/*gb2312*/, 0x602f/*utf16*/, {0xe6,0x80,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc7d4/*gb2312*/, 0x7a83/*utf16*/, {0xe7,0xaa,0x83}/*utf8*/, 3/*utf8 len*/},{0xc7d5/*gb2312*/, 0x94a6/*utf16*/, {0xe9,0x92,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc7d6/*gb2312*/, 0x4fb5/*utf16*/, {0xe4,0xbe,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc7d7/*gb2312*/, 0x4eb2/*utf16*/, {0xe4,0xba,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc7d8/*gb2312*/, 0x79e6/*utf16*/, {0xe7,0xa7,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc7d9/*gb2312*/, 0x7434/*utf16*/, {0xe7,0x90,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc7da/*gb2312*/, 0x52e4/*utf16*/, {0xe5,0x8b,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc7db/*gb2312*/, 0x82b9/*utf16*/, {0xe8,0x8a,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc7dc/*gb2312*/, 0x64d2/*utf16*/, {0xe6,0x93,0x92}/*utf8*/, 3/*utf8 len*/},{0xc7dd/*gb2312*/, 0x79bd/*utf16*/, {0xe7,0xa6,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc7de/*gb2312*/, 0x5bdd/*utf16*/, {0xe5,0xaf,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc7df/*gb2312*/, 0x6c81/*utf16*/, {0xe6,0xb2,0x81}/*utf8*/, 3/*utf8 len*/},{0xc7e0/*gb2312*/, 0x9752/*utf16*/, {0xe9,0x9d,0x92}/*utf8*/, 3/*utf8 len*/},{0xc7e1/*gb2312*/, 0x8f7b/*utf16*/, {0xe8,0xbd,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc7e2/*gb2312*/, 0x6c22/*utf16*/, {0xe6,0xb0,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc7e3/*gb2312*/, 0x503e/*utf16*/, {0xe5,0x80,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc7e4/*gb2312*/, 0x537f/*utf16*/, {0xe5,0x8d,0xbf}/*utf8*/, 3/*utf8 len*/},{0xc7e5/*gb2312*/, 0x6e05/*utf16*/, {0xe6,0xb8,0x85}/*utf8*/, 3/*utf8 len*/},{0xc7e6/*gb2312*/, 0x64ce/*utf16*/, {0xe6,0x93,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc7e7/*gb2312*/, 0x6674/*utf16*/, {0xe6,0x99,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc7e8/*gb2312*/, 0x6c30/*utf16*/, {0xe6,0xb0,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc7e9/*gb2312*/, 0x60c5/*utf16*/, {0xe6,0x83,0x85}/*utf8*/, 3/*utf8 len*/},{0xc7ea/*gb2312*/, 0x9877/*utf16*/, {0xe9,0xa1,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc7eb/*gb2312*/, 0x8bf7/*utf16*/, {0xe8,0xaf,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc7ec/*gb2312*/, 0x5e86/*utf16*/, {0xe5,0xba,0x86}/*utf8*/, 3/*utf8 len*/},{0xc7ed/*gb2312*/, 0x743c/*utf16*/, {0xe7,0x90,0xbc}/*utf8*/, 3/*utf8 len*/},{0xc7ee/*gb2312*/, 0x7a77/*utf16*/, {0xe7,0xa9,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc7ef/*gb2312*/, 0x79cb/*utf16*/, {0xe7,0xa7,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc7f0/*gb2312*/, 0x4e18/*utf16*/, {0xe4,0xb8,0x98}/*utf8*/, 3/*utf8 len*/},{0xc7f1/*gb2312*/, 0x90b1/*utf16*/, {0xe9,0x82,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc7f2/*gb2312*/, 0x7403/*utf16*/, {0xe7,0x90,0x83}/*utf8*/, 3/*utf8 len*/},{0xc7f3/*gb2312*/, 0x6c42/*utf16*/, {0xe6,0xb1,0x82}/*utf8*/, 3/*utf8 len*/},{0xc7f4/*gb2312*/, 0x56da/*utf16*/, {0xe5,0x9b,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc7f5/*gb2312*/, 0x914b/*utf16*/, {0xe9,0x85,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc7f6/*gb2312*/, 0x6cc5/*utf16*/, {0xe6,0xb3,0x85}/*utf8*/, 3/*utf8 len*/},{0xc7f7/*gb2312*/, 0x8d8b/*utf16*/, {0xe8,0xb6,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc7f8/*gb2312*/, 0x533a/*utf16*/, {0xe5,0x8c,0xba}/*utf8*/, 3/*utf8 len*/},{0xc7f9/*gb2312*/, 0x86c6/*utf16*/, {0xe8,0x9b,0x86}/*utf8*/, 3/*utf8 len*/},{0xc7fa/*gb2312*/, 0x66f2/*utf16*/, {0xe6,0x9b,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc7fb/*gb2312*/, 0x8eaf/*utf16*/, {0xe8,0xba,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc7fc/*gb2312*/, 0x5c48/*utf16*/, {0xe5,0xb1,0x88}/*utf8*/, 3/*utf8 len*/},{0xc7fd/*gb2312*/, 0x9a71/*utf16*/, {0xe9,0xa9,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc7fe/*gb2312*/, 0x6e20/*utf16*/, {0xe6,0xb8,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc8a1/*gb2312*/, 0x53d6/*utf16*/, {0xe5,0x8f,0x96}/*utf8*/, 3/*utf8 len*/},{0xc8a2/*gb2312*/, 0x5a36/*utf16*/, {0xe5,0xa8,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc8a3/*gb2312*/, 0x9f8b/*utf16*/, {0xe9,0xbe,0x8b}/*utf8*/, 3/*utf8 len*/},{0xc8a4/*gb2312*/, 0x8da3/*utf16*/, {0xe8,0xb6,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc8a5/*gb2312*/, 0x53bb/*utf16*/, {0xe5,0x8e,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc8a6/*gb2312*/, 0x5708/*utf16*/, {0xe5,0x9c,0x88}/*utf8*/, 3/*utf8 len*/},{0xc8a7/*gb2312*/, 0x98a7/*utf16*/, {0xe9,0xa2,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc8a8/*gb2312*/, 0x6743/*utf16*/, {0xe6,0x9d,0x83}/*utf8*/, 3/*utf8 len*/},{0xc8a9/*gb2312*/, 0x919b/*utf16*/, {0xe9,0x86,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc8aa/*gb2312*/, 0x6cc9/*utf16*/, {0xe6,0xb3,0x89}/*utf8*/, 3/*utf8 len*/},{0xc8ab/*gb2312*/, 0x5168/*utf16*/, {0xe5,0x85,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc8ac/*gb2312*/, 0x75ca/*utf16*/, {0xe7,0x97,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc8ad/*gb2312*/, 0x62f3/*utf16*/, {0xe6,0x8b,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc8ae/*gb2312*/, 0x72ac/*utf16*/, {0xe7,0x8a,0xac}/*utf8*/, 3/*utf8 len*/},{0xc8af/*gb2312*/, 0x5238/*utf16*/, {0xe5,0x88,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc8b0/*gb2312*/, 0x529d/*utf16*/, {0xe5,0x8a,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc8b1/*gb2312*/, 0x7f3a/*utf16*/, {0xe7,0xbc,0xba}/*utf8*/, 3/*utf8 len*/},{0xc8b2/*gb2312*/, 0x7094/*utf16*/, {0xe7,0x82,0x94}/*utf8*/, 3/*utf8 len*/},{0xc8b3/*gb2312*/, 0x7638/*utf16*/, {0xe7,0x98,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc8b4/*gb2312*/, 0x5374/*utf16*/, {0xe5,0x8d,0xb4}/*utf8*/, 3/*utf8 len*/},{0xc8b5/*gb2312*/, 0x9e4a/*utf16*/, {0xe9,0xb9,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc8b6/*gb2312*/, 0x69b7/*utf16*/, {0xe6,0xa6,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc8b7/*gb2312*/, 0x786e/*utf16*/, {0xe7,0xa1,0xae}/*utf8*/, 3/*utf8 len*/},{0xc8b8/*gb2312*/, 0x96c0/*utf16*/, {0xe9,0x9b,0x80}/*utf8*/, 3/*utf8 len*/},{0xc8b9/*gb2312*/, 0x88d9/*utf16*/, {0xe8,0xa3,0x99}/*utf8*/, 3/*utf8 len*/},{0xc8ba/*gb2312*/, 0x7fa4/*utf16*/, {0xe7,0xbe,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc8bb/*gb2312*/, 0x7136/*utf16*/, {0xe7,0x84,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc8bc/*gb2312*/, 0x71c3/*utf16*/, {0xe7,0x87,0x83}/*utf8*/, 3/*utf8 len*/},{0xc8bd/*gb2312*/, 0x5189/*utf16*/, {0xe5,0x86,0x89}/*utf8*/, 3/*utf8 len*/},{0xc8be/*gb2312*/, 0x67d3/*utf16*/, {0xe6,0x9f,0x93}/*utf8*/, 3/*utf8 len*/},{0xc8bf/*gb2312*/, 0x74e4/*utf16*/, {0xe7,0x93,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc8c0/*gb2312*/, 0x58e4/*utf16*/, {0xe5,0xa3,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc8c1/*gb2312*/, 0x6518/*utf16*/, {0xe6,0x94,0x98}/*utf8*/, 3/*utf8 len*/},{0xc8c2/*gb2312*/, 0x56b7/*utf16*/, {0xe5,0x9a,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc8c3/*gb2312*/, 0x8ba9/*utf16*/, {0xe8,0xae,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc8c4/*gb2312*/, 0x9976/*utf16*/, {0xe9,0xa5,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc8c5/*gb2312*/, 0x6270/*utf16*/, {0xe6,0x89,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc8c6/*gb2312*/, 0x7ed5/*utf16*/, {0xe7,0xbb,0x95}/*utf8*/, 3/*utf8 len*/},{0xc8c7/*gb2312*/, 0x60f9/*utf16*/, {0xe6,0x83,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc8c8/*gb2312*/, 0x70ed/*utf16*/, {0xe7,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xc8c9/*gb2312*/, 0x58ec/*utf16*/, {0xe5,0xa3,0xac}/*utf8*/, 3/*utf8 len*/},{0xc8ca/*gb2312*/, 0x4ec1/*utf16*/, {0xe4,0xbb,0x81}/*utf8*/, 3/*utf8 len*/},{0xc8cb/*gb2312*/, 0x4eba/*utf16*/, {0xe4,0xba,0xba}/*utf8*/, 3/*utf8 len*/},{0xc8cc/*gb2312*/, 0x5fcd/*utf16*/, {0xe5,0xbf,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc8cd/*gb2312*/, 0x97e7/*utf16*/, {0xe9,0x9f,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc8ce/*gb2312*/, 0x4efb/*utf16*/, {0xe4,0xbb,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc8cf/*gb2312*/, 0x8ba4/*utf16*/, {0xe8,0xae,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc8d0/*gb2312*/, 0x5203/*utf16*/, {0xe5,0x88,0x83}/*utf8*/, 3/*utf8 len*/},{0xc8d1/*gb2312*/, 0x598a/*utf16*/, {0xe5,0xa6,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc8d2/*gb2312*/, 0x7eab/*utf16*/, {0xe7,0xba,0xab}/*utf8*/, 3/*utf8 len*/},{0xc8d3/*gb2312*/, 0x6254/*utf16*/, {0xe6,0x89,0x94}/*utf8*/, 3/*utf8 len*/},{0xc8d4/*gb2312*/, 0x4ecd/*utf16*/, {0xe4,0xbb,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc8d5/*gb2312*/, 0x65e5/*utf16*/, {0xe6,0x97,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc8d6/*gb2312*/, 0x620e/*utf16*/, {0xe6,0x88,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc8d7/*gb2312*/, 0x8338/*utf16*/, {0xe8,0x8c,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc8d8/*gb2312*/, 0x84c9/*utf16*/, {0xe8,0x93,0x89}/*utf8*/, 3/*utf8 len*/},{0xc8d9/*gb2312*/, 0x8363/*utf16*/, {0xe8,0x8d,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc8da/*gb2312*/, 0x878d/*utf16*/, {0xe8,0x9e,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc8db/*gb2312*/, 0x7194/*utf16*/, {0xe7,0x86,0x94}/*utf8*/, 3/*utf8 len*/},{0xc8dc/*gb2312*/, 0x6eb6/*utf16*/, {0xe6,0xba,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc8dd/*gb2312*/, 0x5bb9/*utf16*/, {0xe5,0xae,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc8de/*gb2312*/, 0x7ed2/*utf16*/, {0xe7,0xbb,0x92}/*utf8*/, 3/*utf8 len*/},{0xc8df/*gb2312*/, 0x5197/*utf16*/, {0xe5,0x86,0x97}/*utf8*/, 3/*utf8 len*/},{0xc8e0/*gb2312*/, 0x63c9/*utf16*/, {0xe6,0x8f,0x89}/*utf8*/, 3/*utf8 len*/},{0xc8e1/*gb2312*/, 0x67d4/*utf16*/, {0xe6,0x9f,0x94}/*utf8*/, 3/*utf8 len*/},{0xc8e2/*gb2312*/, 0x8089/*utf16*/, {0xe8,0x82,0x89}/*utf8*/, 3/*utf8 len*/},{0xc8e3/*gb2312*/, 0x8339/*utf16*/, {0xe8,0x8c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc8e4/*gb2312*/, 0x8815/*utf16*/, {0xe8,0xa0,0x95}/*utf8*/, 3/*utf8 len*/},{0xc8e5/*gb2312*/, 0x5112/*utf16*/, {0xe5,0x84,0x92}/*utf8*/, 3/*utf8 len*/},{0xc8e6/*gb2312*/, 0x5b7a/*utf16*/, {0xe5,0xad,0xba}/*utf8*/, 3/*utf8 len*/},{0xc8e7/*gb2312*/, 0x5982/*utf16*/, {0xe5,0xa6,0x82}/*utf8*/, 3/*utf8 len*/},{0xc8e8/*gb2312*/, 0x8fb1/*utf16*/, {0xe8,0xbe,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc8e9/*gb2312*/, 0x4e73/*utf16*/, {0xe4,0xb9,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc8ea/*gb2312*/, 0x6c5d/*utf16*/, {0xe6,0xb1,0x9d}/*utf8*/, 3/*utf8 len*/},{0xc8eb/*gb2312*/, 0x5165/*utf16*/, {0xe5,0x85,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc8ec/*gb2312*/, 0x8925/*utf16*/, {0xe8,0xa4,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc8ed/*gb2312*/, 0x8f6f/*utf16*/, {0xe8,0xbd,0xaf}/*utf8*/, 3/*utf8 len*/},{0xc8ee/*gb2312*/, 0x962e/*utf16*/, {0xe9,0x98,0xae}/*utf8*/, 3/*utf8 len*/},{0xc8ef/*gb2312*/, 0x854a/*utf16*/, {0xe8,0x95,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc8f0/*gb2312*/, 0x745e/*utf16*/, {0xe7,0x91,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc8f1/*gb2312*/, 0x9510/*utf16*/, {0xe9,0x94,0x90}/*utf8*/, 3/*utf8 len*/},{0xc8f2/*gb2312*/, 0x95f0/*utf16*/, {0xe9,0x97,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc8f3/*gb2312*/, 0x6da6/*utf16*/, {0xe6,0xb6,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc8f4/*gb2312*/, 0x82e5/*utf16*/, {0xe8,0x8b,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc8f5/*gb2312*/, 0x5f31/*utf16*/, {0xe5,0xbc,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc8f6/*gb2312*/, 0x6492/*utf16*/, {0xe6,0x92,0x92}/*utf8*/, 3/*utf8 len*/},{0xc8f7/*gb2312*/, 0x6d12/*utf16*/, {0xe6,0xb4,0x92}/*utf8*/, 3/*utf8 len*/},{0xc8f8/*gb2312*/, 0x8428/*utf16*/, {0xe8,0x90,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc8f9/*gb2312*/, 0x816e/*utf16*/, {0xe8,0x85,0xae}/*utf8*/, 3/*utf8 len*/},{0xc8fa/*gb2312*/, 0x9cc3/*utf16*/, {0xe9,0xb3,0x83}/*utf8*/, 3/*utf8 len*/},{0xc8fb/*gb2312*/, 0x585e/*utf16*/, {0xe5,0xa1,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc8fc/*gb2312*/, 0x8d5b/*utf16*/, {0xe8,0xb5,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc8fd/*gb2312*/, 0x4e09/*utf16*/, {0xe4,0xb8,0x89}/*utf8*/, 3/*utf8 len*/},{0xc8fe/*gb2312*/, 0x53c1/*utf16*/, {0xe5,0x8f,0x81}/*utf8*/, 3/*utf8 len*/},{0xc9a1/*gb2312*/, 0x4f1e/*utf16*/, {0xe4,0xbc,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc9a2/*gb2312*/, 0x6563/*utf16*/, {0xe6,0x95,0xa3}/*utf8*/, 3/*utf8 len*/},{0xc9a3/*gb2312*/, 0x6851/*utf16*/, {0xe6,0xa1,0x91}/*utf8*/, 3/*utf8 len*/},{0xc9a4/*gb2312*/, 0x55d3/*utf16*/, {0xe5,0x97,0x93}/*utf8*/, 3/*utf8 len*/},{0xc9a5/*gb2312*/, 0x4e27/*utf16*/, {0xe4,0xb8,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc9a6/*gb2312*/, 0x6414/*utf16*/, {0xe6,0x90,0x94}/*utf8*/, 3/*utf8 len*/},{0xc9a7/*gb2312*/, 0x9a9a/*utf16*/, {0xe9,0xaa,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc9a8/*gb2312*/, 0x626b/*utf16*/, {0xe6,0x89,0xab}/*utf8*/, 3/*utf8 len*/},{0xc9a9/*gb2312*/, 0x5ac2/*utf16*/, {0xe5,0xab,0x82}/*utf8*/, 3/*utf8 len*/},{0xc9aa/*gb2312*/, 0x745f/*utf16*/, {0xe7,0x91,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc9ab/*gb2312*/, 0x8272/*utf16*/, {0xe8,0x89,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc9ac/*gb2312*/, 0x6da9/*utf16*/, {0xe6,0xb6,0xa9}/*utf8*/, 3/*utf8 len*/},{0xc9ad/*gb2312*/, 0x68ee/*utf16*/, {0xe6,0xa3,0xae}/*utf8*/, 3/*utf8 len*/},{0xc9ae/*gb2312*/, 0x50e7/*utf16*/, {0xe5,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc9af/*gb2312*/, 0x838e/*utf16*/, {0xe8,0x8e,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc9b0/*gb2312*/, 0x7802/*utf16*/, {0xe7,0xa0,0x82}/*utf8*/, 3/*utf8 len*/},{0xc9b1/*gb2312*/, 0x6740/*utf16*/, {0xe6,0x9d,0x80}/*utf8*/, 3/*utf8 len*/},{0xc9b2/*gb2312*/, 0x5239/*utf16*/, {0xe5,0x88,0xb9}/*utf8*/, 3/*utf8 len*/},{0xc9b3/*gb2312*/, 0x6c99/*utf16*/, {0xe6,0xb2,0x99}/*utf8*/, 3/*utf8 len*/},{0xc9b4/*gb2312*/, 0x7eb1/*utf16*/, {0xe7,0xba,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc9b5/*gb2312*/, 0x50bb/*utf16*/, {0xe5,0x82,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc9b6/*gb2312*/, 0x5565/*utf16*/, {0xe5,0x95,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc9b7/*gb2312*/, 0x715e/*utf16*/, {0xe7,0x85,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc9b8/*gb2312*/, 0x7b5b/*utf16*/, {0xe7,0xad,0x9b}/*utf8*/, 3/*utf8 len*/},{0xc9b9/*gb2312*/, 0x6652/*utf16*/, {0xe6,0x99,0x92}/*utf8*/, 3/*utf8 len*/},{0xc9ba/*gb2312*/, 0x73ca/*utf16*/, {0xe7,0x8f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc9bb/*gb2312*/, 0x82eb/*utf16*/, {0xe8,0x8b,0xab}/*utf8*/, 3/*utf8 len*/},{0xc9bc/*gb2312*/, 0x6749/*utf16*/, {0xe6,0x9d,0x89}/*utf8*/, 3/*utf8 len*/},{0xc9bd/*gb2312*/, 0x5c71/*utf16*/, {0xe5,0xb1,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc9be/*gb2312*/, 0x5220/*utf16*/, {0xe5,0x88,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc9bf/*gb2312*/, 0x717d/*utf16*/, {0xe7,0x85,0xbd}/*utf8*/, 3/*utf8 len*/},{0xc9c0/*gb2312*/, 0x886b/*utf16*/, {0xe8,0xa1,0xab}/*utf8*/, 3/*utf8 len*/},{0xc9c1/*gb2312*/, 0x95ea/*utf16*/, {0xe9,0x97,0xaa}/*utf8*/, 3/*utf8 len*/},{0xc9c2/*gb2312*/, 0x9655/*utf16*/, {0xe9,0x99,0x95}/*utf8*/, 3/*utf8 len*/},{0xc9c3/*gb2312*/, 0x64c5/*utf16*/, {0xe6,0x93,0x85}/*utf8*/, 3/*utf8 len*/},{0xc9c4/*gb2312*/, 0x8d61/*utf16*/, {0xe8,0xb5,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc9c5/*gb2312*/, 0x81b3/*utf16*/, {0xe8,0x86,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc9c6/*gb2312*/, 0x5584/*utf16*/, {0xe5,0x96,0x84}/*utf8*/, 3/*utf8 len*/},{0xc9c7/*gb2312*/, 0x6c55/*utf16*/, {0xe6,0xb1,0x95}/*utf8*/, 3/*utf8 len*/},{0xc9c8/*gb2312*/, 0x6247/*utf16*/, {0xe6,0x89,0x87}/*utf8*/, 3/*utf8 len*/},{0xc9c9/*gb2312*/, 0x7f2e/*utf16*/, {0xe7,0xbc,0xae}/*utf8*/, 3/*utf8 len*/},{0xc9ca/*gb2312*/, 0x5892/*utf16*/, {0xe5,0xa2,0x92}/*utf8*/, 3/*utf8 len*/},{0xc9cb/*gb2312*/, 0x4f24/*utf16*/, {0xe4,0xbc,0xa4}/*utf8*/, 3/*utf8 len*/},{0xc9cc/*gb2312*/, 0x5546/*utf16*/, {0xe5,0x95,0x86}/*utf8*/, 3/*utf8 len*/},{0xc9cd/*gb2312*/, 0x8d4f/*utf16*/, {0xe8,0xb5,0x8f}/*utf8*/, 3/*utf8 len*/},{0xc9ce/*gb2312*/, 0x664c/*utf16*/, {0xe6,0x99,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc9cf/*gb2312*/, 0x4e0a/*utf16*/, {0xe4,0xb8,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc9d0/*gb2312*/, 0x5c1a/*utf16*/, {0xe5,0xb0,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc9d1/*gb2312*/, 0x88f3/*utf16*/, {0xe8,0xa3,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc9d2/*gb2312*/, 0x68a2/*utf16*/, {0xe6,0xa2,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc9d3/*gb2312*/, 0x634e/*utf16*/, {0xe6,0x8d,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc9d4/*gb2312*/, 0x7a0d/*utf16*/, {0xe7,0xa8,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc9d5/*gb2312*/, 0x70e7/*utf16*/, {0xe7,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xc9d6/*gb2312*/, 0x828d/*utf16*/, {0xe8,0x8a,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc9d7/*gb2312*/, 0x52fa/*utf16*/, {0xe5,0x8b,0xba}/*utf8*/, 3/*utf8 len*/},{0xc9d8/*gb2312*/, 0x97f6/*utf16*/, {0xe9,0x9f,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc9d9/*gb2312*/, 0x5c11/*utf16*/, {0xe5,0xb0,0x91}/*utf8*/, 3/*utf8 len*/},{0xc9da/*gb2312*/, 0x54e8/*utf16*/, {0xe5,0x93,0xa8}/*utf8*/, 3/*utf8 len*/},{0xc9db/*gb2312*/, 0x90b5/*utf16*/, {0xe9,0x82,0xb5}/*utf8*/, 3/*utf8 len*/},{0xc9dc/*gb2312*/, 0x7ecd/*utf16*/, {0xe7,0xbb,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc9dd/*gb2312*/, 0x5962/*utf16*/, {0xe5,0xa5,0xa2}/*utf8*/, 3/*utf8 len*/},{0xc9de/*gb2312*/, 0x8d4a/*utf16*/, {0xe8,0xb5,0x8a}/*utf8*/, 3/*utf8 len*/},{0xc9df/*gb2312*/, 0x86c7/*utf16*/, {0xe8,0x9b,0x87}/*utf8*/, 3/*utf8 len*/},{0xc9e0/*gb2312*/, 0x820c/*utf16*/, {0xe8,0x88,0x8c}/*utf8*/, 3/*utf8 len*/},{0xc9e1/*gb2312*/, 0x820d/*utf16*/, {0xe8,0x88,0x8d}/*utf8*/, 3/*utf8 len*/},{0xc9e2/*gb2312*/, 0x8d66/*utf16*/, {0xe8,0xb5,0xa6}/*utf8*/, 3/*utf8 len*/},{0xc9e3/*gb2312*/, 0x6444/*utf16*/, {0xe6,0x91,0x84}/*utf8*/, 3/*utf8 len*/},{0xc9e4/*gb2312*/, 0x5c04/*utf16*/, {0xe5,0xb0,0x84}/*utf8*/, 3/*utf8 len*/},{0xc9e5/*gb2312*/, 0x6151/*utf16*/, {0xe6,0x85,0x91}/*utf8*/, 3/*utf8 len*/},{0xc9e6/*gb2312*/, 0x6d89/*utf16*/, {0xe6,0xb6,0x89}/*utf8*/, 3/*utf8 len*/},{0xc9e7/*gb2312*/, 0x793e/*utf16*/, {0xe7,0xa4,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc9e8/*gb2312*/, 0x8bbe/*utf16*/, {0xe8,0xae,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc9e9/*gb2312*/, 0x7837/*utf16*/, {0xe7,0xa0,0xb7}/*utf8*/, 3/*utf8 len*/},{0xc9ea/*gb2312*/, 0x7533/*utf16*/, {0xe7,0x94,0xb3}/*utf8*/, 3/*utf8 len*/},{0xc9eb/*gb2312*/, 0x547b/*utf16*/, {0xe5,0x91,0xbb}/*utf8*/, 3/*utf8 len*/},{0xc9ec/*gb2312*/, 0x4f38/*utf16*/, {0xe4,0xbc,0xb8}/*utf8*/, 3/*utf8 len*/},{0xc9ed/*gb2312*/, 0x8eab/*utf16*/, {0xe8,0xba,0xab}/*utf8*/, 3/*utf8 len*/},{0xc9ee/*gb2312*/, 0x6df1/*utf16*/, {0xe6,0xb7,0xb1}/*utf8*/, 3/*utf8 len*/},{0xc9ef/*gb2312*/, 0x5a20/*utf16*/, {0xe5,0xa8,0xa0}/*utf8*/, 3/*utf8 len*/},{0xc9f0/*gb2312*/, 0x7ec5/*utf16*/, {0xe7,0xbb,0x85}/*utf8*/, 3/*utf8 len*/},{0xc9f1/*gb2312*/, 0x795e/*utf16*/, {0xe7,0xa5,0x9e}/*utf8*/, 3/*utf8 len*/},{0xc9f2/*gb2312*/, 0x6c88/*utf16*/, {0xe6,0xb2,0x88}/*utf8*/, 3/*utf8 len*/},{0xc9f3/*gb2312*/, 0x5ba1/*utf16*/, {0xe5,0xae,0xa1}/*utf8*/, 3/*utf8 len*/},{0xc9f4/*gb2312*/, 0x5a76/*utf16*/, {0xe5,0xa9,0xb6}/*utf8*/, 3/*utf8 len*/},{0xc9f5/*gb2312*/, 0x751a/*utf16*/, {0xe7,0x94,0x9a}/*utf8*/, 3/*utf8 len*/},{0xc9f6/*gb2312*/, 0x80be/*utf16*/, {0xe8,0x82,0xbe}/*utf8*/, 3/*utf8 len*/},{0xc9f7/*gb2312*/, 0x614e/*utf16*/, {0xe6,0x85,0x8e}/*utf8*/, 3/*utf8 len*/},{0xc9f8/*gb2312*/, 0x6e17/*utf16*/, {0xe6,0xb8,0x97}/*utf8*/, 3/*utf8 len*/},{0xc9f9/*gb2312*/, 0x58f0/*utf16*/, {0xe5,0xa3,0xb0}/*utf8*/, 3/*utf8 len*/},{0xc9fa/*gb2312*/, 0x751f/*utf16*/, {0xe7,0x94,0x9f}/*utf8*/, 3/*utf8 len*/},{0xc9fb/*gb2312*/, 0x7525/*utf16*/, {0xe7,0x94,0xa5}/*utf8*/, 3/*utf8 len*/},{0xc9fc/*gb2312*/, 0x7272/*utf16*/, {0xe7,0x89,0xb2}/*utf8*/, 3/*utf8 len*/},{0xc9fd/*gb2312*/, 0x5347/*utf16*/, {0xe5,0x8d,0x87}/*utf8*/, 3/*utf8 len*/},{0xc9fe/*gb2312*/, 0x7ef3/*utf16*/, {0xe7,0xbb,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcaa1/*gb2312*/, 0x7701/*utf16*/, {0xe7,0x9c,0x81}/*utf8*/, 3/*utf8 len*/},{0xcaa2/*gb2312*/, 0x76db/*utf16*/, {0xe7,0x9b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xcaa3/*gb2312*/, 0x5269/*utf16*/, {0xe5,0x89,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcaa4/*gb2312*/, 0x80dc/*utf16*/, {0xe8,0x83,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcaa5/*gb2312*/, 0x5723/*utf16*/, {0xe5,0x9c,0xa3}/*utf8*/, 3/*utf8 len*/},{0xcaa6/*gb2312*/, 0x5e08/*utf16*/, {0xe5,0xb8,0x88}/*utf8*/, 3/*utf8 len*/},{0xcaa7/*gb2312*/, 0x5931/*utf16*/, {0xe5,0xa4,0xb1}/*utf8*/, 3/*utf8 len*/},{0xcaa8/*gb2312*/, 0x72ee/*utf16*/, {0xe7,0x8b,0xae}/*utf8*/, 3/*utf8 len*/},{0xcaa9/*gb2312*/, 0x65bd/*utf16*/, {0xe6,0x96,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcaaa/*gb2312*/, 0x6e7f/*utf16*/, {0xe6,0xb9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcaab/*gb2312*/, 0x8bd7/*utf16*/, {0xe8,0xaf,0x97}/*utf8*/, 3/*utf8 len*/},{0xcaac/*gb2312*/, 0x5c38/*utf16*/, {0xe5,0xb0,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcaad/*gb2312*/, 0x8671/*utf16*/, {0xe8,0x99,0xb1}/*utf8*/, 3/*utf8 len*/},{0xcaae/*gb2312*/, 0x5341/*utf16*/, {0xe5,0x8d,0x81}/*utf8*/, 3/*utf8 len*/},{0xcaaf/*gb2312*/, 0x77f3/*utf16*/, {0xe7,0x9f,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcab0/*gb2312*/, 0x62fe/*utf16*/, {0xe6,0x8b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcab1/*gb2312*/, 0x65f6/*utf16*/, {0xe6,0x97,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcab2/*gb2312*/, 0x4ec0/*utf16*/, {0xe4,0xbb,0x80}/*utf8*/, 3/*utf8 len*/},{0xcab3/*gb2312*/, 0x98df/*utf16*/, {0xe9,0xa3,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcab4/*gb2312*/, 0x8680/*utf16*/, {0xe8,0x9a,0x80}/*utf8*/, 3/*utf8 len*/},{0xcab5/*gb2312*/, 0x5b9e/*utf16*/, {0xe5,0xae,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcab6/*gb2312*/, 0x8bc6/*utf16*/, {0xe8,0xaf,0x86}/*utf8*/, 3/*utf8 len*/},{0xcab7/*gb2312*/, 0x53f2/*utf16*/, {0xe5,0x8f,0xb2}/*utf8*/, 3/*utf8 len*/},{0xcab8/*gb2312*/, 0x77e2/*utf16*/, {0xe7,0x9f,0xa2}/*utf8*/, 3/*utf8 len*/},{0xcab9/*gb2312*/, 0x4f7f/*utf16*/, {0xe4,0xbd,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcaba/*gb2312*/, 0x5c4e/*utf16*/, {0xe5,0xb1,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcabb/*gb2312*/, 0x9a76/*utf16*/, {0xe9,0xa9,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcabc/*gb2312*/, 0x59cb/*utf16*/, {0xe5,0xa7,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcabd/*gb2312*/, 0x5f0f/*utf16*/, {0xe5,0xbc,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcabe/*gb2312*/, 0x793a/*utf16*/, {0xe7,0xa4,0xba}/*utf8*/, 3/*utf8 len*/},{0xcabf/*gb2312*/, 0x58eb/*utf16*/, {0xe5,0xa3,0xab}/*utf8*/, 3/*utf8 len*/},{0xcac0/*gb2312*/, 0x4e16/*utf16*/, {0xe4,0xb8,0x96}/*utf8*/, 3/*utf8 len*/},{0xcac1/*gb2312*/, 0x67ff/*utf16*/, {0xe6,0x9f,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcac2/*gb2312*/, 0x4e8b/*utf16*/, {0xe4,0xba,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcac3/*gb2312*/, 0x62ed/*utf16*/, {0xe6,0x8b,0xad}/*utf8*/, 3/*utf8 len*/},{0xcac4/*gb2312*/, 0x8a93/*utf16*/, {0xe8,0xaa,0x93}/*utf8*/, 3/*utf8 len*/},{0xcac5/*gb2312*/, 0x901d/*utf16*/, {0xe9,0x80,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcac6/*gb2312*/, 0x52bf/*utf16*/, {0xe5,0x8a,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcac7/*gb2312*/, 0x662f/*utf16*/, {0xe6,0x98,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcac8/*gb2312*/, 0x55dc/*utf16*/, {0xe5,0x97,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcac9/*gb2312*/, 0x566c/*utf16*/, {0xe5,0x99,0xac}/*utf8*/, 3/*utf8 len*/},{0xcaca/*gb2312*/, 0x9002/*utf16*/, {0xe9,0x80,0x82}/*utf8*/, 3/*utf8 len*/},{0xcacb/*gb2312*/, 0x4ed5/*utf16*/, {0xe4,0xbb,0x95}/*utf8*/, 3/*utf8 len*/},{0xcacc/*gb2312*/, 0x4f8d/*utf16*/, {0xe4,0xbe,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcacd/*gb2312*/, 0x91ca/*utf16*/, {0xe9,0x87,0x8a}/*utf8*/, 3/*utf8 len*/},{0xcace/*gb2312*/, 0x9970/*utf16*/, {0xe9,0xa5,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcacf/*gb2312*/, 0x6c0f/*utf16*/, {0xe6,0xb0,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcad0/*gb2312*/, 0x5e02/*utf16*/, {0xe5,0xb8,0x82}/*utf8*/, 3/*utf8 len*/},{0xcad1/*gb2312*/, 0x6043/*utf16*/, {0xe6,0x81,0x83}/*utf8*/, 3/*utf8 len*/},{0xcad2/*gb2312*/, 0x5ba4/*utf16*/, {0xe5,0xae,0xa4}/*utf8*/, 3/*utf8 len*/},{0xcad3/*gb2312*/, 0x89c6/*utf16*/, {0xe8,0xa7,0x86}/*utf8*/, 3/*utf8 len*/},{0xcad4/*gb2312*/, 0x8bd5/*utf16*/, {0xe8,0xaf,0x95}/*utf8*/, 3/*utf8 len*/},{0xcad5/*gb2312*/, 0x6536/*utf16*/, {0xe6,0x94,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcad6/*gb2312*/, 0x624b/*utf16*/, {0xe6,0x89,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcad7/*gb2312*/, 0x9996/*utf16*/, {0xe9,0xa6,0x96}/*utf8*/, 3/*utf8 len*/},{0xcad8/*gb2312*/, 0x5b88/*utf16*/, {0xe5,0xae,0x88}/*utf8*/, 3/*utf8 len*/},{0xcad9/*gb2312*/, 0x5bff/*utf16*/, {0xe5,0xaf,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcada/*gb2312*/, 0x6388/*utf16*/, {0xe6,0x8e,0x88}/*utf8*/, 3/*utf8 len*/},{0xcadb/*gb2312*/, 0x552e/*utf16*/, {0xe5,0x94,0xae}/*utf8*/, 3/*utf8 len*/},{0xcadc/*gb2312*/, 0x53d7/*utf16*/, {0xe5,0x8f,0x97}/*utf8*/, 3/*utf8 len*/},{0xcadd/*gb2312*/, 0x7626/*utf16*/, {0xe7,0x98,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcade/*gb2312*/, 0x517d/*utf16*/, {0xe5,0x85,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcadf/*gb2312*/, 0x852c/*utf16*/, {0xe8,0x94,0xac}/*utf8*/, 3/*utf8 len*/},{0xcae0/*gb2312*/, 0x67a2/*utf16*/, {0xe6,0x9e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xcae1/*gb2312*/, 0x68b3/*utf16*/, {0xe6,0xa2,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcae2/*gb2312*/, 0x6b8a/*utf16*/, {0xe6,0xae,0x8a}/*utf8*/, 3/*utf8 len*/},{0xcae3/*gb2312*/, 0x6292/*utf16*/, {0xe6,0x8a,0x92}/*utf8*/, 3/*utf8 len*/},{0xcae4/*gb2312*/, 0x8f93/*utf16*/, {0xe8,0xbe,0x93}/*utf8*/, 3/*utf8 len*/},{0xcae5/*gb2312*/, 0x53d4/*utf16*/, {0xe5,0x8f,0x94}/*utf8*/, 3/*utf8 len*/},{0xcae6/*gb2312*/, 0x8212/*utf16*/, {0xe8,0x88,0x92}/*utf8*/, 3/*utf8 len*/},{0xcae7/*gb2312*/, 0x6dd1/*utf16*/, {0xe6,0xb7,0x91}/*utf8*/, 3/*utf8 len*/},{0xcae8/*gb2312*/, 0x758f/*utf16*/, {0xe7,0x96,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcae9/*gb2312*/, 0x4e66/*utf16*/, {0xe4,0xb9,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcaea/*gb2312*/, 0x8d4e/*utf16*/, {0xe8,0xb5,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcaeb/*gb2312*/, 0x5b70/*utf16*/, {0xe5,0xad,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcaec/*gb2312*/, 0x719f/*utf16*/, {0xe7,0x86,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcaed/*gb2312*/, 0x85af/*utf16*/, {0xe8,0x96,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcaee/*gb2312*/, 0x6691/*utf16*/, {0xe6,0x9a,0x91}/*utf8*/, 3/*utf8 len*/},{0xcaef/*gb2312*/, 0x66d9/*utf16*/, {0xe6,0x9b,0x99}/*utf8*/, 3/*utf8 len*/},{0xcaf0/*gb2312*/, 0x7f72/*utf16*/, {0xe7,0xbd,0xb2}/*utf8*/, 3/*utf8 len*/},{0xcaf1/*gb2312*/, 0x8700/*utf16*/, {0xe8,0x9c,0x80}/*utf8*/, 3/*utf8 len*/},{0xcaf2/*gb2312*/, 0x9ecd/*utf16*/, {0xe9,0xbb,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcaf3/*gb2312*/, 0x9f20/*utf16*/, {0xe9,0xbc,0xa0}/*utf8*/, 3/*utf8 len*/},{0xcaf4/*gb2312*/, 0x5c5e/*utf16*/, {0xe5,0xb1,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcaf5/*gb2312*/, 0x672f/*utf16*/, {0xe6,0x9c,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcaf6/*gb2312*/, 0x8ff0/*utf16*/, {0xe8,0xbf,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcaf7/*gb2312*/, 0x6811/*utf16*/, {0xe6,0xa0,0x91}/*utf8*/, 3/*utf8 len*/},{0xcaf8/*gb2312*/, 0x675f/*utf16*/, {0xe6,0x9d,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcaf9/*gb2312*/, 0x620d/*utf16*/, {0xe6,0x88,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcafa/*gb2312*/, 0x7ad6/*utf16*/, {0xe7,0xab,0x96}/*utf8*/, 3/*utf8 len*/},{0xcafb/*gb2312*/, 0x5885/*utf16*/, {0xe5,0xa2,0x85}/*utf8*/, 3/*utf8 len*/},{0xcafc/*gb2312*/, 0x5eb6/*utf16*/, {0xe5,0xba,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcafd/*gb2312*/, 0x6570/*utf16*/, {0xe6,0x95,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcafe/*gb2312*/, 0x6f31/*utf16*/, {0xe6,0xbc,0xb1}/*utf8*/, 3/*utf8 len*/},{0xcba1/*gb2312*/, 0x6055/*utf16*/, {0xe6,0x81,0x95}/*utf8*/, 3/*utf8 len*/},{0xcba2/*gb2312*/, 0x5237/*utf16*/, {0xe5,0x88,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcba3/*gb2312*/, 0x800d/*utf16*/, {0xe8,0x80,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcba4/*gb2312*/, 0x6454/*utf16*/, {0xe6,0x91,0x94}/*utf8*/, 3/*utf8 len*/},{0xcba5/*gb2312*/, 0x8870/*utf16*/, {0xe8,0xa1,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcba6/*gb2312*/, 0x7529/*utf16*/, {0xe7,0x94,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcba7/*gb2312*/, 0x5e05/*utf16*/, {0xe5,0xb8,0x85}/*utf8*/, 3/*utf8 len*/},{0xcba8/*gb2312*/, 0x6813/*utf16*/, {0xe6,0xa0,0x93}/*utf8*/, 3/*utf8 len*/},{0xcba9/*gb2312*/, 0x62f4/*utf16*/, {0xe6,0x8b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcbaa/*gb2312*/, 0x971c/*utf16*/, {0xe9,0x9c,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcbab/*gb2312*/, 0x53cc/*utf16*/, {0xe5,0x8f,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcbac/*gb2312*/, 0x723d/*utf16*/, {0xe7,0x88,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcbad/*gb2312*/, 0x8c01/*utf16*/, {0xe8,0xb0,0x81}/*utf8*/, 3/*utf8 len*/},{0xcbae/*gb2312*/, 0x6c34/*utf16*/, {0xe6,0xb0,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcbaf/*gb2312*/, 0x7761/*utf16*/, {0xe7,0x9d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcbb0/*gb2312*/, 0x7a0e/*utf16*/, {0xe7,0xa8,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcbb1/*gb2312*/, 0x542e/*utf16*/, {0xe5,0x90,0xae}/*utf8*/, 3/*utf8 len*/},{0xcbb2/*gb2312*/, 0x77ac/*utf16*/, {0xe7,0x9e,0xac}/*utf8*/, 3/*utf8 len*/},{0xcbb3/*gb2312*/, 0x987a/*utf16*/, {0xe9,0xa1,0xba}/*utf8*/, 3/*utf8 len*/},{0xcbb4/*gb2312*/, 0x821c/*utf16*/, {0xe8,0x88,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcbb5/*gb2312*/, 0x8bf4/*utf16*/, {0xe8,0xaf,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcbb6/*gb2312*/, 0x7855/*utf16*/, {0xe7,0xa1,0x95}/*utf8*/, 3/*utf8 len*/},{0xcbb7/*gb2312*/, 0x6714/*utf16*/, {0xe6,0x9c,0x94}/*utf8*/, 3/*utf8 len*/},{0xcbb8/*gb2312*/, 0x70c1/*utf16*/, {0xe7,0x83,0x81}/*utf8*/, 3/*utf8 len*/},{0xcbb9/*gb2312*/, 0x65af/*utf16*/, {0xe6,0x96,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcbba/*gb2312*/, 0x6495/*utf16*/, {0xe6,0x92,0x95}/*utf8*/, 3/*utf8 len*/},{0xcbbb/*gb2312*/, 0x5636/*utf16*/, {0xe5,0x98,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcbbc/*gb2312*/, 0x601d/*utf16*/, {0xe6,0x80,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcbbd/*gb2312*/, 0x79c1/*utf16*/, {0xe7,0xa7,0x81}/*utf8*/, 3/*utf8 len*/},{0xcbbe/*gb2312*/, 0x53f8/*utf16*/, {0xe5,0x8f,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcbbf/*gb2312*/, 0x4e1d/*utf16*/, {0xe4,0xb8,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcbc0/*gb2312*/, 0x6b7b/*utf16*/, {0xe6,0xad,0xbb}/*utf8*/, 3/*utf8 len*/},{0xcbc1/*gb2312*/, 0x8086/*utf16*/, {0xe8,0x82,0x86}/*utf8*/, 3/*utf8 len*/},{0xcbc2/*gb2312*/, 0x5bfa/*utf16*/, {0xe5,0xaf,0xba}/*utf8*/, 3/*utf8 len*/},{0xcbc3/*gb2312*/, 0x55e3/*utf16*/, {0xe5,0x97,0xa3}/*utf8*/, 3/*utf8 len*/},{0xcbc4/*gb2312*/, 0x56db/*utf16*/, {0xe5,0x9b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xcbc5/*gb2312*/, 0x4f3a/*utf16*/, {0xe4,0xbc,0xba}/*utf8*/, 3/*utf8 len*/},{0xcbc6/*gb2312*/, 0x4f3c/*utf16*/, {0xe4,0xbc,0xbc}/*utf8*/, 3/*utf8 len*/},{0xcbc7/*gb2312*/, 0x9972/*utf16*/, {0xe9,0xa5,0xb2}/*utf8*/, 3/*utf8 len*/},{0xcbc8/*gb2312*/, 0x5df3/*utf16*/, {0xe5,0xb7,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcbc9/*gb2312*/, 0x677e/*utf16*/, {0xe6,0x9d,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcbca/*gb2312*/, 0x8038/*utf16*/, {0xe8,0x80,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcbcb/*gb2312*/, 0x6002/*utf16*/, {0xe6,0x80,0x82}/*utf8*/, 3/*utf8 len*/},{0xcbcc/*gb2312*/, 0x9882/*utf16*/, {0xe9,0xa2,0x82}/*utf8*/, 3/*utf8 len*/},{0xcbcd/*gb2312*/, 0x9001/*utf16*/, {0xe9,0x80,0x81}/*utf8*/, 3/*utf8 len*/},{0xcbce/*gb2312*/, 0x5b8b/*utf16*/, {0xe5,0xae,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcbcf/*gb2312*/, 0x8bbc/*utf16*/, {0xe8,0xae,0xbc}/*utf8*/, 3/*utf8 len*/},{0xcbd0/*gb2312*/, 0x8bf5/*utf16*/, {0xe8,0xaf,0xb5}/*utf8*/, 3/*utf8 len*/},{0xcbd1/*gb2312*/, 0x641c/*utf16*/, {0xe6,0x90,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcbd2/*gb2312*/, 0x8258/*utf16*/, {0xe8,0x89,0x98}/*utf8*/, 3/*utf8 len*/},{0xcbd3/*gb2312*/, 0x64de/*utf16*/, {0xe6,0x93,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcbd4/*gb2312*/, 0x55fd/*utf16*/, {0xe5,0x97,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcbd5/*gb2312*/, 0x82cf/*utf16*/, {0xe8,0x8b,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcbd6/*gb2312*/, 0x9165/*utf16*/, {0xe9,0x85,0xa5}/*utf8*/, 3/*utf8 len*/},{0xcbd7/*gb2312*/, 0x4fd7/*utf16*/, {0xe4,0xbf,0x97}/*utf8*/, 3/*utf8 len*/},{0xcbd8/*gb2312*/, 0x7d20/*utf16*/, {0xe7,0xb4,0xa0}/*utf8*/, 3/*utf8 len*/},{0xcbd9/*gb2312*/, 0x901f/*utf16*/, {0xe9,0x80,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcbda/*gb2312*/, 0x7c9f/*utf16*/, {0xe7,0xb2,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcbdb/*gb2312*/, 0x50f3/*utf16*/, {0xe5,0x83,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcbdc/*gb2312*/, 0x5851/*utf16*/, {0xe5,0xa1,0x91}/*utf8*/, 3/*utf8 len*/},{0xcbdd/*gb2312*/, 0x6eaf/*utf16*/, {0xe6,0xba,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcbde/*gb2312*/, 0x5bbf/*utf16*/, {0xe5,0xae,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcbdf/*gb2312*/, 0x8bc9/*utf16*/, {0xe8,0xaf,0x89}/*utf8*/, 3/*utf8 len*/},{0xcbe0/*gb2312*/, 0x8083/*utf16*/, {0xe8,0x82,0x83}/*utf8*/, 3/*utf8 len*/},{0xcbe1/*gb2312*/, 0x9178/*utf16*/, {0xe9,0x85,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcbe2/*gb2312*/, 0x849c/*utf16*/, {0xe8,0x92,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcbe3/*gb2312*/, 0x7b97/*utf16*/, {0xe7,0xae,0x97}/*utf8*/, 3/*utf8 len*/},{0xcbe4/*gb2312*/, 0x867d/*utf16*/, {0xe8,0x99,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcbe5/*gb2312*/, 0x968b/*utf16*/, {0xe9,0x9a,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcbe6/*gb2312*/, 0x968f/*utf16*/, {0xe9,0x9a,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcbe7/*gb2312*/, 0x7ee5/*utf16*/, {0xe7,0xbb,0xa5}/*utf8*/, 3/*utf8 len*/},{0xcbe8/*gb2312*/, 0x9ad3/*utf16*/, {0xe9,0xab,0x93}/*utf8*/, 3/*utf8 len*/},{0xcbe9/*gb2312*/, 0x788e/*utf16*/, {0xe7,0xa2,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcbea/*gb2312*/, 0x5c81/*utf16*/, {0xe5,0xb2,0x81}/*utf8*/, 3/*utf8 len*/},{0xcbeb/*gb2312*/, 0x7a57/*utf16*/, {0xe7,0xa9,0x97}/*utf8*/, 3/*utf8 len*/},{0xcbec/*gb2312*/, 0x9042/*utf16*/, {0xe9,0x81,0x82}/*utf8*/, 3/*utf8 len*/},{0xcbed/*gb2312*/, 0x96a7/*utf16*/, {0xe9,0x9a,0xa7}/*utf8*/, 3/*utf8 len*/},{0xcbee/*gb2312*/, 0x795f/*utf16*/, {0xe7,0xa5,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcbef/*gb2312*/, 0x5b59/*utf16*/, {0xe5,0xad,0x99}/*utf8*/, 3/*utf8 len*/},{0xcbf0/*gb2312*/, 0x635f/*utf16*/, {0xe6,0x8d,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcbf1/*gb2312*/, 0x7b0b/*utf16*/, {0xe7,0xac,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcbf2/*gb2312*/, 0x84d1/*utf16*/, {0xe8,0x93,0x91}/*utf8*/, 3/*utf8 len*/},{0xcbf3/*gb2312*/, 0x68ad/*utf16*/, {0xe6,0xa2,0xad}/*utf8*/, 3/*utf8 len*/},{0xcbf4/*gb2312*/, 0x5506/*utf16*/, {0xe5,0x94,0x86}/*utf8*/, 3/*utf8 len*/},{0xcbf5/*gb2312*/, 0x7f29/*utf16*/, {0xe7,0xbc,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcbf6/*gb2312*/, 0x7410/*utf16*/, {0xe7,0x90,0x90}/*utf8*/, 3/*utf8 len*/},{0xcbf7/*gb2312*/, 0x7d22/*utf16*/, {0xe7,0xb4,0xa2}/*utf8*/, 3/*utf8 len*/},{0xcbf8/*gb2312*/, 0x9501/*utf16*/, {0xe9,0x94,0x81}/*utf8*/, 3/*utf8 len*/},{0xcbf9/*gb2312*/, 0x6240/*utf16*/, {0xe6,0x89,0x80}/*utf8*/, 3/*utf8 len*/},{0xcbfa/*gb2312*/, 0x584c/*utf16*/, {0xe5,0xa1,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcbfb/*gb2312*/, 0x4ed6/*utf16*/, {0xe4,0xbb,0x96}/*utf8*/, 3/*utf8 len*/},{0xcbfc/*gb2312*/, 0x5b83/*utf16*/, {0xe5,0xae,0x83}/*utf8*/, 3/*utf8 len*/},{0xcbfd/*gb2312*/, 0x5979/*utf16*/, {0xe5,0xa5,0xb9}/*utf8*/, 3/*utf8 len*/},{0xcbfe/*gb2312*/, 0x5854/*utf16*/, {0xe5,0xa1,0x94}/*utf8*/, 3/*utf8 len*/},{0xcca1/*gb2312*/, 0x736d/*utf16*/, {0xe7,0x8d,0xad}/*utf8*/, 3/*utf8 len*/},{0xcca2/*gb2312*/, 0x631e/*utf16*/, {0xe6,0x8c,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcca3/*gb2312*/, 0x8e4b/*utf16*/, {0xe8,0xb9,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcca4/*gb2312*/, 0x8e0f/*utf16*/, {0xe8,0xb8,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcca5/*gb2312*/, 0x80ce/*utf16*/, {0xe8,0x83,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcca6/*gb2312*/, 0x82d4/*utf16*/, {0xe8,0x8b,0x94}/*utf8*/, 3/*utf8 len*/},{0xcca7/*gb2312*/, 0x62ac/*utf16*/, {0xe6,0x8a,0xac}/*utf8*/, 3/*utf8 len*/},{0xcca8/*gb2312*/, 0x53f0/*utf16*/, {0xe5,0x8f,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcca9/*gb2312*/, 0x6cf0/*utf16*/, {0xe6,0xb3,0xb0}/*utf8*/, 3/*utf8 len*/},{0xccaa/*gb2312*/, 0x915e/*utf16*/, {0xe9,0x85,0x9e}/*utf8*/, 3/*utf8 len*/},{0xccab/*gb2312*/, 0x592a/*utf16*/, {0xe5,0xa4,0xaa}/*utf8*/, 3/*utf8 len*/},{0xccac/*gb2312*/, 0x6001/*utf16*/, {0xe6,0x80,0x81}/*utf8*/, 3/*utf8 len*/},{0xccad/*gb2312*/, 0x6c70/*utf16*/, {0xe6,0xb1,0xb0}/*utf8*/, 3/*utf8 len*/},{0xccae/*gb2312*/, 0x574d/*utf16*/, {0xe5,0x9d,0x8d}/*utf8*/, 3/*utf8 len*/},{0xccaf/*gb2312*/, 0x644a/*utf16*/, {0xe6,0x91,0x8a}/*utf8*/, 3/*utf8 len*/},{0xccb0/*gb2312*/, 0x8d2a/*utf16*/, {0xe8,0xb4,0xaa}/*utf8*/, 3/*utf8 len*/},{0xccb1/*gb2312*/, 0x762b/*utf16*/, {0xe7,0x98,0xab}/*utf8*/, 3/*utf8 len*/},{0xccb2/*gb2312*/, 0x6ee9/*utf16*/, {0xe6,0xbb,0xa9}/*utf8*/, 3/*utf8 len*/},{0xccb3/*gb2312*/, 0x575b/*utf16*/, {0xe5,0x9d,0x9b}/*utf8*/, 3/*utf8 len*/},{0xccb4/*gb2312*/, 0x6a80/*utf16*/, {0xe6,0xaa,0x80}/*utf8*/, 3/*utf8 len*/},{0xccb5/*gb2312*/, 0x75f0/*utf16*/, {0xe7,0x97,0xb0}/*utf8*/, 3/*utf8 len*/},{0xccb6/*gb2312*/, 0x6f6d/*utf16*/, {0xe6,0xbd,0xad}/*utf8*/, 3/*utf8 len*/},{0xccb7/*gb2312*/, 0x8c2d/*utf16*/, {0xe8,0xb0,0xad}/*utf8*/, 3/*utf8 len*/},{0xccb8/*gb2312*/, 0x8c08/*utf16*/, {0xe8,0xb0,0x88}/*utf8*/, 3/*utf8 len*/},{0xccb9/*gb2312*/, 0x5766/*utf16*/, {0xe5,0x9d,0xa6}/*utf8*/, 3/*utf8 len*/},{0xccba/*gb2312*/, 0x6bef/*utf16*/, {0xe6,0xaf,0xaf}/*utf8*/, 3/*utf8 len*/},{0xccbb/*gb2312*/, 0x8892/*utf16*/, {0xe8,0xa2,0x92}/*utf8*/, 3/*utf8 len*/},{0xccbc/*gb2312*/, 0x78b3/*utf16*/, {0xe7,0xa2,0xb3}/*utf8*/, 3/*utf8 len*/},{0xccbd/*gb2312*/, 0x63a2/*utf16*/, {0xe6,0x8e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xccbe/*gb2312*/, 0x53f9/*utf16*/, {0xe5,0x8f,0xb9}/*utf8*/, 3/*utf8 len*/},{0xccbf/*gb2312*/, 0x70ad/*utf16*/, {0xe7,0x82,0xad}/*utf8*/, 3/*utf8 len*/},{0xccc0/*gb2312*/, 0x6c64/*utf16*/, {0xe6,0xb1,0xa4}/*utf8*/, 3/*utf8 len*/},{0xccc1/*gb2312*/, 0x5858/*utf16*/, {0xe5,0xa1,0x98}/*utf8*/, 3/*utf8 len*/},{0xccc2/*gb2312*/, 0x642a/*utf16*/, {0xe6,0x90,0xaa}/*utf8*/, 3/*utf8 len*/},{0xccc3/*gb2312*/, 0x5802/*utf16*/, {0xe5,0xa0,0x82}/*utf8*/, 3/*utf8 len*/},{0xccc4/*gb2312*/, 0x68e0/*utf16*/, {0xe6,0xa3,0xa0}/*utf8*/, 3/*utf8 len*/},{0xccc5/*gb2312*/, 0x819b/*utf16*/, {0xe8,0x86,0x9b}/*utf8*/, 3/*utf8 len*/},{0xccc6/*gb2312*/, 0x5510/*utf16*/, {0xe5,0x94,0x90}/*utf8*/, 3/*utf8 len*/},{0xccc7/*gb2312*/, 0x7cd6/*utf16*/, {0xe7,0xb3,0x96}/*utf8*/, 3/*utf8 len*/},{0xccc8/*gb2312*/, 0x5018/*utf16*/, {0xe5,0x80,0x98}/*utf8*/, 3/*utf8 len*/},{0xccc9/*gb2312*/, 0x8eba/*utf16*/, {0xe8,0xba,0xba}/*utf8*/, 3/*utf8 len*/},{0xccca/*gb2312*/, 0x6dcc/*utf16*/, {0xe6,0xb7,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcccb/*gb2312*/, 0x8d9f/*utf16*/, {0xe8,0xb6,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcccc/*gb2312*/, 0x70eb/*utf16*/, {0xe7,0x83,0xab}/*utf8*/, 3/*utf8 len*/},{0xcccd/*gb2312*/, 0x638f/*utf16*/, {0xe6,0x8e,0x8f}/*utf8*/, 3/*utf8 len*/},{0xccce/*gb2312*/, 0x6d9b/*utf16*/, {0xe6,0xb6,0x9b}/*utf8*/, 3/*utf8 len*/},{0xcccf/*gb2312*/, 0x6ed4/*utf16*/, {0xe6,0xbb,0x94}/*utf8*/, 3/*utf8 len*/},{0xccd0/*gb2312*/, 0x7ee6/*utf16*/, {0xe7,0xbb,0xa6}/*utf8*/, 3/*utf8 len*/},{0xccd1/*gb2312*/, 0x8404/*utf16*/, {0xe8,0x90,0x84}/*utf8*/, 3/*utf8 len*/},{0xccd2/*gb2312*/, 0x6843/*utf16*/, {0xe6,0xa1,0x83}/*utf8*/, 3/*utf8 len*/},{0xccd3/*gb2312*/, 0x9003/*utf16*/, {0xe9,0x80,0x83}/*utf8*/, 3/*utf8 len*/},{0xccd4/*gb2312*/, 0x6dd8/*utf16*/, {0xe6,0xb7,0x98}/*utf8*/, 3/*utf8 len*/},{0xccd5/*gb2312*/, 0x9676/*utf16*/, {0xe9,0x99,0xb6}/*utf8*/, 3/*utf8 len*/},{0xccd6/*gb2312*/, 0x8ba8/*utf16*/, {0xe8,0xae,0xa8}/*utf8*/, 3/*utf8 len*/},{0xccd7/*gb2312*/, 0x5957/*utf16*/, {0xe5,0xa5,0x97}/*utf8*/, 3/*utf8 len*/},{0xccd8/*gb2312*/, 0x7279/*utf16*/, {0xe7,0x89,0xb9}/*utf8*/, 3/*utf8 len*/},{0xccd9/*gb2312*/, 0x85e4/*utf16*/, {0xe8,0x97,0xa4}/*utf8*/, 3/*utf8 len*/},{0xccda/*gb2312*/, 0x817e/*utf16*/, {0xe8,0x85,0xbe}/*utf8*/, 3/*utf8 len*/},{0xccdb/*gb2312*/, 0x75bc/*utf16*/, {0xe7,0x96,0xbc}/*utf8*/, 3/*utf8 len*/},{0xccdc/*gb2312*/, 0x8a8a/*utf16*/, {0xe8,0xaa,0x8a}/*utf8*/, 3/*utf8 len*/},{0xccdd/*gb2312*/, 0x68af/*utf16*/, {0xe6,0xa2,0xaf}/*utf8*/, 3/*utf8 len*/},{0xccde/*gb2312*/, 0x5254/*utf16*/, {0xe5,0x89,0x94}/*utf8*/, 3/*utf8 len*/},{0xccdf/*gb2312*/, 0x8e22/*utf16*/, {0xe8,0xb8,0xa2}/*utf8*/, 3/*utf8 len*/},{0xcce0/*gb2312*/, 0x9511/*utf16*/, {0xe9,0x94,0x91}/*utf8*/, 3/*utf8 len*/},{0xcce1/*gb2312*/, 0x63d0/*utf16*/, {0xe6,0x8f,0x90}/*utf8*/, 3/*utf8 len*/},{0xcce2/*gb2312*/, 0x9898/*utf16*/, {0xe9,0xa2,0x98}/*utf8*/, 3/*utf8 len*/},{0xcce3/*gb2312*/, 0x8e44/*utf16*/, {0xe8,0xb9,0x84}/*utf8*/, 3/*utf8 len*/},{0xcce4/*gb2312*/, 0x557c/*utf16*/, {0xe5,0x95,0xbc}/*utf8*/, 3/*utf8 len*/},{0xcce5/*gb2312*/, 0x4f53/*utf16*/, {0xe4,0xbd,0x93}/*utf8*/, 3/*utf8 len*/},{0xcce6/*gb2312*/, 0x66ff/*utf16*/, {0xe6,0x9b,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcce7/*gb2312*/, 0x568f/*utf16*/, {0xe5,0x9a,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcce8/*gb2312*/, 0x60d5/*utf16*/, {0xe6,0x83,0x95}/*utf8*/, 3/*utf8 len*/},{0xcce9/*gb2312*/, 0x6d95/*utf16*/, {0xe6,0xb6,0x95}/*utf8*/, 3/*utf8 len*/},{0xccea/*gb2312*/, 0x5243/*utf16*/, {0xe5,0x89,0x83}/*utf8*/, 3/*utf8 len*/},{0xcceb/*gb2312*/, 0x5c49/*utf16*/, {0xe5,0xb1,0x89}/*utf8*/, 3/*utf8 len*/},{0xccec/*gb2312*/, 0x5929/*utf16*/, {0xe5,0xa4,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcced/*gb2312*/, 0x6dfb/*utf16*/, {0xe6,0xb7,0xbb}/*utf8*/, 3/*utf8 len*/},{0xccee/*gb2312*/, 0x586b/*utf16*/, {0xe5,0xa1,0xab}/*utf8*/, 3/*utf8 len*/},{0xccef/*gb2312*/, 0x7530/*utf16*/, {0xe7,0x94,0xb0}/*utf8*/, 3/*utf8 len*/},{0xccf0/*gb2312*/, 0x751c/*utf16*/, {0xe7,0x94,0x9c}/*utf8*/, 3/*utf8 len*/},{0xccf1/*gb2312*/, 0x606c/*utf16*/, {0xe6,0x81,0xac}/*utf8*/, 3/*utf8 len*/},{0xccf2/*gb2312*/, 0x8214/*utf16*/, {0xe8,0x88,0x94}/*utf8*/, 3/*utf8 len*/},{0xccf3/*gb2312*/, 0x8146/*utf16*/, {0xe8,0x85,0x86}/*utf8*/, 3/*utf8 len*/},{0xccf4/*gb2312*/, 0x6311/*utf16*/, {0xe6,0x8c,0x91}/*utf8*/, 3/*utf8 len*/},{0xccf5/*gb2312*/, 0x6761/*utf16*/, {0xe6,0x9d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xccf6/*gb2312*/, 0x8fe2/*utf16*/, {0xe8,0xbf,0xa2}/*utf8*/, 3/*utf8 len*/},{0xccf7/*gb2312*/, 0x773a/*utf16*/, {0xe7,0x9c,0xba}/*utf8*/, 3/*utf8 len*/},{0xccf8/*gb2312*/, 0x8df3/*utf16*/, {0xe8,0xb7,0xb3}/*utf8*/, 3/*utf8 len*/},{0xccf9/*gb2312*/, 0x8d34/*utf16*/, {0xe8,0xb4,0xb4}/*utf8*/, 3/*utf8 len*/},{0xccfa/*gb2312*/, 0x94c1/*utf16*/, {0xe9,0x93,0x81}/*utf8*/, 3/*utf8 len*/},{0xccfb/*gb2312*/, 0x5e16/*utf16*/, {0xe5,0xb8,0x96}/*utf8*/, 3/*utf8 len*/},{0xccfc/*gb2312*/, 0x5385/*utf16*/, {0xe5,0x8e,0x85}/*utf8*/, 3/*utf8 len*/},{0xccfd/*gb2312*/, 0x542c/*utf16*/, {0xe5,0x90,0xac}/*utf8*/, 3/*utf8 len*/},{0xccfe/*gb2312*/, 0x70c3/*utf16*/, {0xe7,0x83,0x83}/*utf8*/, 3/*utf8 len*/},{0xcda1/*gb2312*/, 0x6c40/*utf16*/, {0xe6,0xb1,0x80}/*utf8*/, 3/*utf8 len*/},{0xcda2/*gb2312*/, 0x5ef7/*utf16*/, {0xe5,0xbb,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcda3/*gb2312*/, 0x505c/*utf16*/, {0xe5,0x81,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcda4/*gb2312*/, 0x4ead/*utf16*/, {0xe4,0xba,0xad}/*utf8*/, 3/*utf8 len*/},{0xcda5/*gb2312*/, 0x5ead/*utf16*/, {0xe5,0xba,0xad}/*utf8*/, 3/*utf8 len*/},{0xcda6/*gb2312*/, 0x633a/*utf16*/, {0xe6,0x8c,0xba}/*utf8*/, 3/*utf8 len*/},{0xcda7/*gb2312*/, 0x8247/*utf16*/, {0xe8,0x89,0x87}/*utf8*/, 3/*utf8 len*/},{0xcda8/*gb2312*/, 0x901a/*utf16*/, {0xe9,0x80,0x9a}/*utf8*/, 3/*utf8 len*/},{0xcda9/*gb2312*/, 0x6850/*utf16*/, {0xe6,0xa1,0x90}/*utf8*/, 3/*utf8 len*/},{0xcdaa/*gb2312*/, 0x916e/*utf16*/, {0xe9,0x85,0xae}/*utf8*/, 3/*utf8 len*/},{0xcdab/*gb2312*/, 0x77b3/*utf16*/, {0xe7,0x9e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcdac/*gb2312*/, 0x540c/*utf16*/, {0xe5,0x90,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcdad/*gb2312*/, 0x94dc/*utf16*/, {0xe9,0x93,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcdae/*gb2312*/, 0x5f64/*utf16*/, {0xe5,0xbd,0xa4}/*utf8*/, 3/*utf8 len*/},{0xcdaf/*gb2312*/, 0x7ae5/*utf16*/, {0xe7,0xab,0xa5}/*utf8*/, 3/*utf8 len*/},{0xcdb0/*gb2312*/, 0x6876/*utf16*/, {0xe6,0xa1,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcdb1/*gb2312*/, 0x6345/*utf16*/, {0xe6,0x8d,0x85}/*utf8*/, 3/*utf8 len*/},{0xcdb2/*gb2312*/, 0x7b52/*utf16*/, {0xe7,0xad,0x92}/*utf8*/, 3/*utf8 len*/},{0xcdb3/*gb2312*/, 0x7edf/*utf16*/, {0xe7,0xbb,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcdb4/*gb2312*/, 0x75db/*utf16*/, {0xe7,0x97,0x9b}/*utf8*/, 3/*utf8 len*/},{0xcdb5/*gb2312*/, 0x5077/*utf16*/, {0xe5,0x81,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcdb6/*gb2312*/, 0x6295/*utf16*/, {0xe6,0x8a,0x95}/*utf8*/, 3/*utf8 len*/},{0xcdb7/*gb2312*/, 0x5934/*utf16*/, {0xe5,0xa4,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcdb8/*gb2312*/, 0x900f/*utf16*/, {0xe9,0x80,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcdb9/*gb2312*/, 0x51f8/*utf16*/, {0xe5,0x87,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcdba/*gb2312*/, 0x79c3/*utf16*/, {0xe7,0xa7,0x83}/*utf8*/, 3/*utf8 len*/},{0xcdbb/*gb2312*/, 0x7a81/*utf16*/, {0xe7,0xaa,0x81}/*utf8*/, 3/*utf8 len*/},{0xcdbc/*gb2312*/, 0x56fe/*utf16*/, {0xe5,0x9b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcdbd/*gb2312*/, 0x5f92/*utf16*/, {0xe5,0xbe,0x92}/*utf8*/, 3/*utf8 len*/},{0xcdbe/*gb2312*/, 0x9014/*utf16*/, {0xe9,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xcdbf/*gb2312*/, 0x6d82/*utf16*/, {0xe6,0xb6,0x82}/*utf8*/, 3/*utf8 len*/},{0xcdc0/*gb2312*/, 0x5c60/*utf16*/, {0xe5,0xb1,0xa0}/*utf8*/, 3/*utf8 len*/},{0xcdc1/*gb2312*/, 0x571f/*utf16*/, {0xe5,0x9c,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcdc2/*gb2312*/, 0x5410/*utf16*/, {0xe5,0x90,0x90}/*utf8*/, 3/*utf8 len*/},{0xcdc3/*gb2312*/, 0x5154/*utf16*/, {0xe5,0x85,0x94}/*utf8*/, 3/*utf8 len*/},{0xcdc4/*gb2312*/, 0x6e4d/*utf16*/, {0xe6,0xb9,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcdc5/*gb2312*/, 0x56e2/*utf16*/, {0xe5,0x9b,0xa2}/*utf8*/, 3/*utf8 len*/},{0xcdc6/*gb2312*/, 0x63a8/*utf16*/, {0xe6,0x8e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xcdc7/*gb2312*/, 0x9893/*utf16*/, {0xe9,0xa2,0x93}/*utf8*/, 3/*utf8 len*/},{0xcdc8/*gb2312*/, 0x817f/*utf16*/, {0xe8,0x85,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcdc9/*gb2312*/, 0x8715/*utf16*/, {0xe8,0x9c,0x95}/*utf8*/, 3/*utf8 len*/},{0xcdca/*gb2312*/, 0x892a/*utf16*/, {0xe8,0xa4,0xaa}/*utf8*/, 3/*utf8 len*/},{0xcdcb/*gb2312*/, 0x9000/*utf16*/, {0xe9,0x80,0x80}/*utf8*/, 3/*utf8 len*/},{0xcdcc/*gb2312*/, 0x541e/*utf16*/, {0xe5,0x90,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcdcd/*gb2312*/, 0x5c6f/*utf16*/, {0xe5,0xb1,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcdce/*gb2312*/, 0x81c0/*utf16*/, {0xe8,0x87,0x80}/*utf8*/, 3/*utf8 len*/},{0xcdcf/*gb2312*/, 0x62d6/*utf16*/, {0xe6,0x8b,0x96}/*utf8*/, 3/*utf8 len*/},{0xcdd0/*gb2312*/, 0x6258/*utf16*/, {0xe6,0x89,0x98}/*utf8*/, 3/*utf8 len*/},{0xcdd1/*gb2312*/, 0x8131/*utf16*/, {0xe8,0x84,0xb1}/*utf8*/, 3/*utf8 len*/},{0xcdd2/*gb2312*/, 0x9e35/*utf16*/, {0xe9,0xb8,0xb5}/*utf8*/, 3/*utf8 len*/},{0xcdd3/*gb2312*/, 0x9640/*utf16*/, {0xe9,0x99,0x80}/*utf8*/, 3/*utf8 len*/},{0xcdd4/*gb2312*/, 0x9a6e/*utf16*/, {0xe9,0xa9,0xae}/*utf8*/, 3/*utf8 len*/},{0xcdd5/*gb2312*/, 0x9a7c/*utf16*/, {0xe9,0xa9,0xbc}/*utf8*/, 3/*utf8 len*/},{0xcdd6/*gb2312*/, 0x692d/*utf16*/, {0xe6,0xa4,0xad}/*utf8*/, 3/*utf8 len*/},{0xcdd7/*gb2312*/, 0x59a5/*utf16*/, {0xe5,0xa6,0xa5}/*utf8*/, 3/*utf8 len*/},{0xcdd8/*gb2312*/, 0x62d3/*utf16*/, {0xe6,0x8b,0x93}/*utf8*/, 3/*utf8 len*/},{0xcdd9/*gb2312*/, 0x553e/*utf16*/, {0xe5,0x94,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcdda/*gb2312*/, 0x6316/*utf16*/, {0xe6,0x8c,0x96}/*utf8*/, 3/*utf8 len*/},{0xcddb/*gb2312*/, 0x54c7/*utf16*/, {0xe5,0x93,0x87}/*utf8*/, 3/*utf8 len*/},{0xcddc/*gb2312*/, 0x86d9/*utf16*/, {0xe8,0x9b,0x99}/*utf8*/, 3/*utf8 len*/},{0xcddd/*gb2312*/, 0x6d3c/*utf16*/, {0xe6,0xb4,0xbc}/*utf8*/, 3/*utf8 len*/},{0xcdde/*gb2312*/, 0x5a03/*utf16*/, {0xe5,0xa8,0x83}/*utf8*/, 3/*utf8 len*/},{0xcddf/*gb2312*/, 0x74e6/*utf16*/, {0xe7,0x93,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcde0/*gb2312*/, 0x889c/*utf16*/, {0xe8,0xa2,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcde1/*gb2312*/, 0x6b6a/*utf16*/, {0xe6,0xad,0xaa}/*utf8*/, 3/*utf8 len*/},{0xcde2/*gb2312*/, 0x5916/*utf16*/, {0xe5,0xa4,0x96}/*utf8*/, 3/*utf8 len*/},{0xcde3/*gb2312*/, 0x8c4c/*utf16*/, {0xe8,0xb1,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcde4/*gb2312*/, 0x5f2f/*utf16*/, {0xe5,0xbc,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcde5/*gb2312*/, 0x6e7e/*utf16*/, {0xe6,0xb9,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcde6/*gb2312*/, 0x73a9/*utf16*/, {0xe7,0x8e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcde7/*gb2312*/, 0x987d/*utf16*/, {0xe9,0xa1,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcde8/*gb2312*/, 0x4e38/*utf16*/, {0xe4,0xb8,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcde9/*gb2312*/, 0x70f7/*utf16*/, {0xe7,0x83,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcdea/*gb2312*/, 0x5b8c/*utf16*/, {0xe5,0xae,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcdeb/*gb2312*/, 0x7897/*utf16*/, {0xe7,0xa2,0x97}/*utf8*/, 3/*utf8 len*/},{0xcdec/*gb2312*/, 0x633d/*utf16*/, {0xe6,0x8c,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcded/*gb2312*/, 0x665a/*utf16*/, {0xe6,0x99,0x9a}/*utf8*/, 3/*utf8 len*/},{0xcdee/*gb2312*/, 0x7696/*utf16*/, {0xe7,0x9a,0x96}/*utf8*/, 3/*utf8 len*/},{0xcdef/*gb2312*/, 0x60cb/*utf16*/, {0xe6,0x83,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcdf0/*gb2312*/, 0x5b9b/*utf16*/, {0xe5,0xae,0x9b}/*utf8*/, 3/*utf8 len*/},{0xcdf1/*gb2312*/, 0x5a49/*utf16*/, {0xe5,0xa9,0x89}/*utf8*/, 3/*utf8 len*/},{0xcdf2/*gb2312*/, 0x4e07/*utf16*/, {0xe4,0xb8,0x87}/*utf8*/, 3/*utf8 len*/},{0xcdf3/*gb2312*/, 0x8155/*utf16*/, {0xe8,0x85,0x95}/*utf8*/, 3/*utf8 len*/},{0xcdf4/*gb2312*/, 0x6c6a/*utf16*/, {0xe6,0xb1,0xaa}/*utf8*/, 3/*utf8 len*/},{0xcdf5/*gb2312*/, 0x738b/*utf16*/, {0xe7,0x8e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcdf6/*gb2312*/, 0x4ea1/*utf16*/, {0xe4,0xba,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcdf7/*gb2312*/, 0x6789/*utf16*/, {0xe6,0x9e,0x89}/*utf8*/, 3/*utf8 len*/},{0xcdf8/*gb2312*/, 0x7f51/*utf16*/, {0xe7,0xbd,0x91}/*utf8*/, 3/*utf8 len*/},{0xcdf9/*gb2312*/, 0x5f80/*utf16*/, {0xe5,0xbe,0x80}/*utf8*/, 3/*utf8 len*/},{0xcdfa/*gb2312*/, 0x65fa/*utf16*/, {0xe6,0x97,0xba}/*utf8*/, 3/*utf8 len*/},{0xcdfb/*gb2312*/, 0x671b/*utf16*/, {0xe6,0x9c,0x9b}/*utf8*/, 3/*utf8 len*/},{0xcdfc/*gb2312*/, 0x5fd8/*utf16*/, {0xe5,0xbf,0x98}/*utf8*/, 3/*utf8 len*/},{0xcdfd/*gb2312*/, 0x5984/*utf16*/, {0xe5,0xa6,0x84}/*utf8*/, 3/*utf8 len*/},{0xcdfe/*gb2312*/, 0x5a01/*utf16*/, {0xe5,0xa8,0x81}/*utf8*/, 3/*utf8 len*/},{0xcea1/*gb2312*/, 0x5dcd/*utf16*/, {0xe5,0xb7,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcea2/*gb2312*/, 0x5fae/*utf16*/, {0xe5,0xbe,0xae}/*utf8*/, 3/*utf8 len*/},{0xcea3/*gb2312*/, 0x5371/*utf16*/, {0xe5,0x8d,0xb1}/*utf8*/, 3/*utf8 len*/},{0xcea4/*gb2312*/, 0x97e6/*utf16*/, {0xe9,0x9f,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcea5/*gb2312*/, 0x8fdd/*utf16*/, {0xe8,0xbf,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcea6/*gb2312*/, 0x6845/*utf16*/, {0xe6,0xa1,0x85}/*utf8*/, 3/*utf8 len*/},{0xcea7/*gb2312*/, 0x56f4/*utf16*/, {0xe5,0x9b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcea8/*gb2312*/, 0x552f/*utf16*/, {0xe5,0x94,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcea9/*gb2312*/, 0x60df/*utf16*/, {0xe6,0x83,0x9f}/*utf8*/, 3/*utf8 len*/},{0xceaa/*gb2312*/, 0x4e3a/*utf16*/, {0xe4,0xb8,0xba}/*utf8*/, 3/*utf8 len*/},{0xceab/*gb2312*/, 0x6f4d/*utf16*/, {0xe6,0xbd,0x8d}/*utf8*/, 3/*utf8 len*/},{0xceac/*gb2312*/, 0x7ef4/*utf16*/, {0xe7,0xbb,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcead/*gb2312*/, 0x82c7/*utf16*/, {0xe8,0x8b,0x87}/*utf8*/, 3/*utf8 len*/},{0xceae/*gb2312*/, 0x840e/*utf16*/, {0xe8,0x90,0x8e}/*utf8*/, 3/*utf8 len*/},{0xceaf/*gb2312*/, 0x59d4/*utf16*/, {0xe5,0xa7,0x94}/*utf8*/, 3/*utf8 len*/},{0xceb0/*gb2312*/, 0x4f1f/*utf16*/, {0xe4,0xbc,0x9f}/*utf8*/, 3/*utf8 len*/},{0xceb1/*gb2312*/, 0x4f2a/*utf16*/, {0xe4,0xbc,0xaa}/*utf8*/, 3/*utf8 len*/},{0xceb2/*gb2312*/, 0x5c3e/*utf16*/, {0xe5,0xb0,0xbe}/*utf8*/, 3/*utf8 len*/},{0xceb3/*gb2312*/, 0x7eac/*utf16*/, {0xe7,0xba,0xac}/*utf8*/, 3/*utf8 len*/},{0xceb4/*gb2312*/, 0x672a/*utf16*/, {0xe6,0x9c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xceb5/*gb2312*/, 0x851a/*utf16*/, {0xe8,0x94,0x9a}/*utf8*/, 3/*utf8 len*/},{0xceb6/*gb2312*/, 0x5473/*utf16*/, {0xe5,0x91,0xb3}/*utf8*/, 3/*utf8 len*/},{0xceb7/*gb2312*/, 0x754f/*utf16*/, {0xe7,0x95,0x8f}/*utf8*/, 3/*utf8 len*/},{0xceb8/*gb2312*/, 0x80c3/*utf16*/, {0xe8,0x83,0x83}/*utf8*/, 3/*utf8 len*/},{0xceb9/*gb2312*/, 0x5582/*utf16*/, {0xe5,0x96,0x82}/*utf8*/, 3/*utf8 len*/},{0xceba/*gb2312*/, 0x9b4f/*utf16*/, {0xe9,0xad,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcebb/*gb2312*/, 0x4f4d/*utf16*/, {0xe4,0xbd,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcebc/*gb2312*/, 0x6e2d/*utf16*/, {0xe6,0xb8,0xad}/*utf8*/, 3/*utf8 len*/},{0xcebd/*gb2312*/, 0x8c13/*utf16*/, {0xe8,0xb0,0x93}/*utf8*/, 3/*utf8 len*/},{0xcebe/*gb2312*/, 0x5c09/*utf16*/, {0xe5,0xb0,0x89}/*utf8*/, 3/*utf8 len*/},{0xcebf/*gb2312*/, 0x6170/*utf16*/, {0xe6,0x85,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcec0/*gb2312*/, 0x536b/*utf16*/, {0xe5,0x8d,0xab}/*utf8*/, 3/*utf8 len*/},{0xcec1/*gb2312*/, 0x761f/*utf16*/, {0xe7,0x98,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcec2/*gb2312*/, 0x6e29/*utf16*/, {0xe6,0xb8,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcec3/*gb2312*/, 0x868a/*utf16*/, {0xe8,0x9a,0x8a}/*utf8*/, 3/*utf8 len*/},{0xcec4/*gb2312*/, 0x6587/*utf16*/, {0xe6,0x96,0x87}/*utf8*/, 3/*utf8 len*/},{0xcec5/*gb2312*/, 0x95fb/*utf16*/, {0xe9,0x97,0xbb}/*utf8*/, 3/*utf8 len*/},{0xcec6/*gb2312*/, 0x7eb9/*utf16*/, {0xe7,0xba,0xb9}/*utf8*/, 3/*utf8 len*/},{0xcec7/*gb2312*/, 0x543b/*utf16*/, {0xe5,0x90,0xbb}/*utf8*/, 3/*utf8 len*/},{0xcec8/*gb2312*/, 0x7a33/*utf16*/, {0xe7,0xa8,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcec9/*gb2312*/, 0x7d0a/*utf16*/, {0xe7,0xb4,0x8a}/*utf8*/, 3/*utf8 len*/},{0xceca/*gb2312*/, 0x95ee/*utf16*/, {0xe9,0x97,0xae}/*utf8*/, 3/*utf8 len*/},{0xcecb/*gb2312*/, 0x55e1/*utf16*/, {0xe5,0x97,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcecc/*gb2312*/, 0x7fc1/*utf16*/, {0xe7,0xbf,0x81}/*utf8*/, 3/*utf8 len*/},{0xcecd/*gb2312*/, 0x74ee/*utf16*/, {0xe7,0x93,0xae}/*utf8*/, 3/*utf8 len*/},{0xcece/*gb2312*/, 0x631d/*utf16*/, {0xe6,0x8c,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcecf/*gb2312*/, 0x8717/*utf16*/, {0xe8,0x9c,0x97}/*utf8*/, 3/*utf8 len*/},{0xced0/*gb2312*/, 0x6da1/*utf16*/, {0xe6,0xb6,0xa1}/*utf8*/, 3/*utf8 len*/},{0xced1/*gb2312*/, 0x7a9d/*utf16*/, {0xe7,0xaa,0x9d}/*utf8*/, 3/*utf8 len*/},{0xced2/*gb2312*/, 0x6211/*utf16*/, {0xe6,0x88,0x91}/*utf8*/, 3/*utf8 len*/},{0xced3/*gb2312*/, 0x65a1/*utf16*/, {0xe6,0x96,0xa1}/*utf8*/, 3/*utf8 len*/},{0xced4/*gb2312*/, 0x5367/*utf16*/, {0xe5,0x8d,0xa7}/*utf8*/, 3/*utf8 len*/},{0xced5/*gb2312*/, 0x63e1/*utf16*/, {0xe6,0x8f,0xa1}/*utf8*/, 3/*utf8 len*/},{0xced6/*gb2312*/, 0x6c83/*utf16*/, {0xe6,0xb2,0x83}/*utf8*/, 3/*utf8 len*/},{0xced7/*gb2312*/, 0x5deb/*utf16*/, {0xe5,0xb7,0xab}/*utf8*/, 3/*utf8 len*/},{0xced8/*gb2312*/, 0x545c/*utf16*/, {0xe5,0x91,0x9c}/*utf8*/, 3/*utf8 len*/},{0xced9/*gb2312*/, 0x94a8/*utf16*/, {0xe9,0x92,0xa8}/*utf8*/, 3/*utf8 len*/},{0xceda/*gb2312*/, 0x4e4c/*utf16*/, {0xe4,0xb9,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcedb/*gb2312*/, 0x6c61/*utf16*/, {0xe6,0xb1,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcedc/*gb2312*/, 0x8bec/*utf16*/, {0xe8,0xaf,0xac}/*utf8*/, 3/*utf8 len*/},{0xcedd/*gb2312*/, 0x5c4b/*utf16*/, {0xe5,0xb1,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcede/*gb2312*/, 0x65e0/*utf16*/, {0xe6,0x97,0xa0}/*utf8*/, 3/*utf8 len*/},{0xcedf/*gb2312*/, 0x829c/*utf16*/, {0xe8,0x8a,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcee0/*gb2312*/, 0x68a7/*utf16*/, {0xe6,0xa2,0xa7}/*utf8*/, 3/*utf8 len*/},{0xcee1/*gb2312*/, 0x543e/*utf16*/, {0xe5,0x90,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcee2/*gb2312*/, 0x5434/*utf16*/, {0xe5,0x90,0xb4}/*utf8*/, 3/*utf8 len*/},{0xcee3/*gb2312*/, 0x6bcb/*utf16*/, {0xe6,0xaf,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcee4/*gb2312*/, 0x6b66/*utf16*/, {0xe6,0xad,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcee5/*gb2312*/, 0x4e94/*utf16*/, {0xe4,0xba,0x94}/*utf8*/, 3/*utf8 len*/},{0xcee6/*gb2312*/, 0x6342/*utf16*/, {0xe6,0x8d,0x82}/*utf8*/, 3/*utf8 len*/},{0xcee7/*gb2312*/, 0x5348/*utf16*/, {0xe5,0x8d,0x88}/*utf8*/, 3/*utf8 len*/},{0xcee8/*gb2312*/, 0x821e/*utf16*/, {0xe8,0x88,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcee9/*gb2312*/, 0x4f0d/*utf16*/, {0xe4,0xbc,0x8d}/*utf8*/, 3/*utf8 len*/},{0xceea/*gb2312*/, 0x4fae/*utf16*/, {0xe4,0xbe,0xae}/*utf8*/, 3/*utf8 len*/},{0xceeb/*gb2312*/, 0x575e/*utf16*/, {0xe5,0x9d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xceec/*gb2312*/, 0x620a/*utf16*/, {0xe6,0x88,0x8a}/*utf8*/, 3/*utf8 len*/},{0xceed/*gb2312*/, 0x96fe/*utf16*/, {0xe9,0x9b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xceee/*gb2312*/, 0x6664/*utf16*/, {0xe6,0x99,0xa4}/*utf8*/, 3/*utf8 len*/},{0xceef/*gb2312*/, 0x7269/*utf16*/, {0xe7,0x89,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcef0/*gb2312*/, 0x52ff/*utf16*/, {0xe5,0x8b,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcef1/*gb2312*/, 0x52a1/*utf16*/, {0xe5,0x8a,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcef2/*gb2312*/, 0x609f/*utf16*/, {0xe6,0x82,0x9f}/*utf8*/, 3/*utf8 len*/},{0xcef3/*gb2312*/, 0x8bef/*utf16*/, {0xe8,0xaf,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcef4/*gb2312*/, 0x6614/*utf16*/, {0xe6,0x98,0x94}/*utf8*/, 3/*utf8 len*/},{0xcef5/*gb2312*/, 0x7199/*utf16*/, {0xe7,0x86,0x99}/*utf8*/, 3/*utf8 len*/},{0xcef6/*gb2312*/, 0x6790/*utf16*/, {0xe6,0x9e,0x90}/*utf8*/, 3/*utf8 len*/},{0xcef7/*gb2312*/, 0x897f/*utf16*/, {0xe8,0xa5,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcef8/*gb2312*/, 0x7852/*utf16*/, {0xe7,0xa1,0x92}/*utf8*/, 3/*utf8 len*/},{0xcef9/*gb2312*/, 0x77fd/*utf16*/, {0xe7,0x9f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xcefa/*gb2312*/, 0x6670/*utf16*/, {0xe6,0x99,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcefb/*gb2312*/, 0x563b/*utf16*/, {0xe5,0x98,0xbb}/*utf8*/, 3/*utf8 len*/},{0xcefc/*gb2312*/, 0x5438/*utf16*/, {0xe5,0x90,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcefd/*gb2312*/, 0x9521/*utf16*/, {0xe9,0x94,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcefe/*gb2312*/, 0x727a/*utf16*/, {0xe7,0x89,0xba}/*utf8*/, 3/*utf8 len*/},{0xcfa1/*gb2312*/, 0x7a00/*utf16*/, {0xe7,0xa8,0x80}/*utf8*/, 3/*utf8 len*/},{0xcfa2/*gb2312*/, 0x606f/*utf16*/, {0xe6,0x81,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcfa3/*gb2312*/, 0x5e0c/*utf16*/, {0xe5,0xb8,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcfa4/*gb2312*/, 0x6089/*utf16*/, {0xe6,0x82,0x89}/*utf8*/, 3/*utf8 len*/},{0xcfa5/*gb2312*/, 0x819d/*utf16*/, {0xe8,0x86,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcfa6/*gb2312*/, 0x5915/*utf16*/, {0xe5,0xa4,0x95}/*utf8*/, 3/*utf8 len*/},{0xcfa7/*gb2312*/, 0x60dc/*utf16*/, {0xe6,0x83,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcfa8/*gb2312*/, 0x7184/*utf16*/, {0xe7,0x86,0x84}/*utf8*/, 3/*utf8 len*/},{0xcfa9/*gb2312*/, 0x70ef/*utf16*/, {0xe7,0x83,0xaf}/*utf8*/, 3/*utf8 len*/},{0xcfaa/*gb2312*/, 0x6eaa/*utf16*/, {0xe6,0xba,0xaa}/*utf8*/, 3/*utf8 len*/},{0xcfab/*gb2312*/, 0x6c50/*utf16*/, {0xe6,0xb1,0x90}/*utf8*/, 3/*utf8 len*/},{0xcfac/*gb2312*/, 0x7280/*utf16*/, {0xe7,0x8a,0x80}/*utf8*/, 3/*utf8 len*/},{0xcfad/*gb2312*/, 0x6a84/*utf16*/, {0xe6,0xaa,0x84}/*utf8*/, 3/*utf8 len*/},{0xcfae/*gb2312*/, 0x88ad/*utf16*/, {0xe8,0xa2,0xad}/*utf8*/, 3/*utf8 len*/},{0xcfaf/*gb2312*/, 0x5e2d/*utf16*/, {0xe5,0xb8,0xad}/*utf8*/, 3/*utf8 len*/},{0xcfb0/*gb2312*/, 0x4e60/*utf16*/, {0xe4,0xb9,0xa0}/*utf8*/, 3/*utf8 len*/},{0xcfb1/*gb2312*/, 0x5ab3/*utf16*/, {0xe5,0xaa,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcfb2/*gb2312*/, 0x559c/*utf16*/, {0xe5,0x96,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcfb3/*gb2312*/, 0x94e3/*utf16*/, {0xe9,0x93,0xa3}/*utf8*/, 3/*utf8 len*/},{0xcfb4/*gb2312*/, 0x6d17/*utf16*/, {0xe6,0xb4,0x97}/*utf8*/, 3/*utf8 len*/},{0xcfb5/*gb2312*/, 0x7cfb/*utf16*/, {0xe7,0xb3,0xbb}/*utf8*/, 3/*utf8 len*/},{0xcfb6/*gb2312*/, 0x9699/*utf16*/, {0xe9,0x9a,0x99}/*utf8*/, 3/*utf8 len*/},{0xcfb7/*gb2312*/, 0x620f/*utf16*/, {0xe6,0x88,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcfb8/*gb2312*/, 0x7ec6/*utf16*/, {0xe7,0xbb,0x86}/*utf8*/, 3/*utf8 len*/},{0xcfb9/*gb2312*/, 0x778e/*utf16*/, {0xe7,0x9e,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcfba/*gb2312*/, 0x867e/*utf16*/, {0xe8,0x99,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcfbb/*gb2312*/, 0x5323/*utf16*/, {0xe5,0x8c,0xa3}/*utf8*/, 3/*utf8 len*/},{0xcfbc/*gb2312*/, 0x971e/*utf16*/, {0xe9,0x9c,0x9e}/*utf8*/, 3/*utf8 len*/},{0xcfbd/*gb2312*/, 0x8f96/*utf16*/, {0xe8,0xbe,0x96}/*utf8*/, 3/*utf8 len*/},{0xcfbe/*gb2312*/, 0x6687/*utf16*/, {0xe6,0x9a,0x87}/*utf8*/, 3/*utf8 len*/},{0xcfbf/*gb2312*/, 0x5ce1/*utf16*/, {0xe5,0xb3,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcfc0/*gb2312*/, 0x4fa0/*utf16*/, {0xe4,0xbe,0xa0}/*utf8*/, 3/*utf8 len*/},{0xcfc1/*gb2312*/, 0x72ed/*utf16*/, {0xe7,0x8b,0xad}/*utf8*/, 3/*utf8 len*/},{0xcfc2/*gb2312*/, 0x4e0b/*utf16*/, {0xe4,0xb8,0x8b}/*utf8*/, 3/*utf8 len*/},{0xcfc3/*gb2312*/, 0x53a6/*utf16*/, {0xe5,0x8e,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcfc4/*gb2312*/, 0x590f/*utf16*/, {0xe5,0xa4,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcfc5/*gb2312*/, 0x5413/*utf16*/, {0xe5,0x90,0x93}/*utf8*/, 3/*utf8 len*/},{0xcfc6/*gb2312*/, 0x6380/*utf16*/, {0xe6,0x8e,0x80}/*utf8*/, 3/*utf8 len*/},{0xcfc7/*gb2312*/, 0x9528/*utf16*/, {0xe9,0x94,0xa8}/*utf8*/, 3/*utf8 len*/},{0xcfc8/*gb2312*/, 0x5148/*utf16*/, {0xe5,0x85,0x88}/*utf8*/, 3/*utf8 len*/},{0xcfc9/*gb2312*/, 0x4ed9/*utf16*/, {0xe4,0xbb,0x99}/*utf8*/, 3/*utf8 len*/},{0xcfca/*gb2312*/, 0x9c9c/*utf16*/, {0xe9,0xb2,0x9c}/*utf8*/, 3/*utf8 len*/},{0xcfcb/*gb2312*/, 0x7ea4/*utf16*/, {0xe7,0xba,0xa4}/*utf8*/, 3/*utf8 len*/},{0xcfcc/*gb2312*/, 0x54b8/*utf16*/, {0xe5,0x92,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcfcd/*gb2312*/, 0x8d24/*utf16*/, {0xe8,0xb4,0xa4}/*utf8*/, 3/*utf8 len*/},{0xcfce/*gb2312*/, 0x8854/*utf16*/, {0xe8,0xa1,0x94}/*utf8*/, 3/*utf8 len*/},{0xcfcf/*gb2312*/, 0x8237/*utf16*/, {0xe8,0x88,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcfd0/*gb2312*/, 0x95f2/*utf16*/, {0xe9,0x97,0xb2}/*utf8*/, 3/*utf8 len*/},{0xcfd1/*gb2312*/, 0x6d8e/*utf16*/, {0xe6,0xb6,0x8e}/*utf8*/, 3/*utf8 len*/},{0xcfd2/*gb2312*/, 0x5f26/*utf16*/, {0xe5,0xbc,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcfd3/*gb2312*/, 0x5acc/*utf16*/, {0xe5,0xab,0x8c}/*utf8*/, 3/*utf8 len*/},{0xcfd4/*gb2312*/, 0x663e/*utf16*/, {0xe6,0x98,0xbe}/*utf8*/, 3/*utf8 len*/},{0xcfd5/*gb2312*/, 0x9669/*utf16*/, {0xe9,0x99,0xa9}/*utf8*/, 3/*utf8 len*/},{0xcfd6/*gb2312*/, 0x73b0/*utf16*/, {0xe7,0x8e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xcfd7/*gb2312*/, 0x732e/*utf16*/, {0xe7,0x8c,0xae}/*utf8*/, 3/*utf8 len*/},{0xcfd8/*gb2312*/, 0x53bf/*utf16*/, {0xe5,0x8e,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcfd9/*gb2312*/, 0x817a/*utf16*/, {0xe8,0x85,0xba}/*utf8*/, 3/*utf8 len*/},{0xcfda/*gb2312*/, 0x9985/*utf16*/, {0xe9,0xa6,0x85}/*utf8*/, 3/*utf8 len*/},{0xcfdb/*gb2312*/, 0x7fa1/*utf16*/, {0xe7,0xbe,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcfdc/*gb2312*/, 0x5baa/*utf16*/, {0xe5,0xae,0xaa}/*utf8*/, 3/*utf8 len*/},{0xcfdd/*gb2312*/, 0x9677/*utf16*/, {0xe9,0x99,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcfde/*gb2312*/, 0x9650/*utf16*/, {0xe9,0x99,0x90}/*utf8*/, 3/*utf8 len*/},{0xcfdf/*gb2312*/, 0x7ebf/*utf16*/, {0xe7,0xba,0xbf}/*utf8*/, 3/*utf8 len*/},{0xcfe0/*gb2312*/, 0x76f8/*utf16*/, {0xe7,0x9b,0xb8}/*utf8*/, 3/*utf8 len*/},{0xcfe1/*gb2312*/, 0x53a2/*utf16*/, {0xe5,0x8e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xcfe2/*gb2312*/, 0x9576/*utf16*/, {0xe9,0x95,0xb6}/*utf8*/, 3/*utf8 len*/},{0xcfe3/*gb2312*/, 0x9999/*utf16*/, {0xe9,0xa6,0x99}/*utf8*/, 3/*utf8 len*/},{0xcfe4/*gb2312*/, 0x7bb1/*utf16*/, {0xe7,0xae,0xb1}/*utf8*/, 3/*utf8 len*/},{0xcfe5/*gb2312*/, 0x8944/*utf16*/, {0xe8,0xa5,0x84}/*utf8*/, 3/*utf8 len*/},{0xcfe6/*gb2312*/, 0x6e58/*utf16*/, {0xe6,0xb9,0x98}/*utf8*/, 3/*utf8 len*/},{0xcfe7/*gb2312*/, 0x4e61/*utf16*/, {0xe4,0xb9,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcfe8/*gb2312*/, 0x7fd4/*utf16*/, {0xe7,0xbf,0x94}/*utf8*/, 3/*utf8 len*/},{0xcfe9/*gb2312*/, 0x7965/*utf16*/, {0xe7,0xa5,0xa5}/*utf8*/, 3/*utf8 len*/},{0xcfea/*gb2312*/, 0x8be6/*utf16*/, {0xe8,0xaf,0xa6}/*utf8*/, 3/*utf8 len*/},{0xcfeb/*gb2312*/, 0x60f3/*utf16*/, {0xe6,0x83,0xb3}/*utf8*/, 3/*utf8 len*/},{0xcfec/*gb2312*/, 0x54cd/*utf16*/, {0xe5,0x93,0x8d}/*utf8*/, 3/*utf8 len*/},{0xcfed/*gb2312*/, 0x4eab/*utf16*/, {0xe4,0xba,0xab}/*utf8*/, 3/*utf8 len*/},{0xcfee/*gb2312*/, 0x9879/*utf16*/, {0xe9,0xa1,0xb9}/*utf8*/, 3/*utf8 len*/},{0xcfef/*gb2312*/, 0x5df7/*utf16*/, {0xe5,0xb7,0xb7}/*utf8*/, 3/*utf8 len*/},{0xcff0/*gb2312*/, 0x6a61/*utf16*/, {0xe6,0xa9,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcff1/*gb2312*/, 0x50cf/*utf16*/, {0xe5,0x83,0x8f}/*utf8*/, 3/*utf8 len*/},{0xcff2/*gb2312*/, 0x5411/*utf16*/, {0xe5,0x90,0x91}/*utf8*/, 3/*utf8 len*/},{0xcff3/*gb2312*/, 0x8c61/*utf16*/, {0xe8,0xb1,0xa1}/*utf8*/, 3/*utf8 len*/},{0xcff4/*gb2312*/, 0x8427/*utf16*/, {0xe8,0x90,0xa7}/*utf8*/, 3/*utf8 len*/},{0xcff5/*gb2312*/, 0x785d/*utf16*/, {0xe7,0xa1,0x9d}/*utf8*/, 3/*utf8 len*/},{0xcff6/*gb2312*/, 0x9704/*utf16*/, {0xe9,0x9c,0x84}/*utf8*/, 3/*utf8 len*/},{0xcff7/*gb2312*/, 0x524a/*utf16*/, {0xe5,0x89,0x8a}/*utf8*/, 3/*utf8 len*/},{0xcff8/*gb2312*/, 0x54ee/*utf16*/, {0xe5,0x93,0xae}/*utf8*/, 3/*utf8 len*/},{0xcff9/*gb2312*/, 0x56a3/*utf16*/, {0xe5,0x9a,0xa3}/*utf8*/, 3/*utf8 len*/},{0xcffa/*gb2312*/, 0x9500/*utf16*/, {0xe9,0x94,0x80}/*utf8*/, 3/*utf8 len*/},{0xcffb/*gb2312*/, 0x6d88/*utf16*/, {0xe6,0xb6,0x88}/*utf8*/, 3/*utf8 len*/},{0xcffc/*gb2312*/, 0x5bb5/*utf16*/, {0xe5,0xae,0xb5}/*utf8*/, 3/*utf8 len*/},{0xcffd/*gb2312*/, 0x6dc6/*utf16*/, {0xe6,0xb7,0x86}/*utf8*/, 3/*utf8 len*/},{0xcffe/*gb2312*/, 0x6653/*utf16*/, {0xe6,0x99,0x93}/*utf8*/, 3/*utf8 len*/},{0xd0a1/*gb2312*/, 0x5c0f/*utf16*/, {0xe5,0xb0,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd0a2/*gb2312*/, 0x5b5d/*utf16*/, {0xe5,0xad,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd0a3/*gb2312*/, 0x6821/*utf16*/, {0xe6,0xa0,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd0a4/*gb2312*/, 0x8096/*utf16*/, {0xe8,0x82,0x96}/*utf8*/, 3/*utf8 len*/},{0xd0a5/*gb2312*/, 0x5578/*utf16*/, {0xe5,0x95,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd0a6/*gb2312*/, 0x7b11/*utf16*/, {0xe7,0xac,0x91}/*utf8*/, 3/*utf8 len*/},{0xd0a7/*gb2312*/, 0x6548/*utf16*/, {0xe6,0x95,0x88}/*utf8*/, 3/*utf8 len*/},{0xd0a8/*gb2312*/, 0x6954/*utf16*/, {0xe6,0xa5,0x94}/*utf8*/, 3/*utf8 len*/},{0xd0a9/*gb2312*/, 0x4e9b/*utf16*/, {0xe4,0xba,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd0aa/*gb2312*/, 0x6b47/*utf16*/, {0xe6,0xad,0x87}/*utf8*/, 3/*utf8 len*/},{0xd0ab/*gb2312*/, 0x874e/*utf16*/, {0xe8,0x9d,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd0ac/*gb2312*/, 0x978b/*utf16*/, {0xe9,0x9e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd0ad/*gb2312*/, 0x534f/*utf16*/, {0xe5,0x8d,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd0ae/*gb2312*/, 0x631f/*utf16*/, {0xe6,0x8c,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd0af/*gb2312*/, 0x643a/*utf16*/, {0xe6,0x90,0xba}/*utf8*/, 3/*utf8 len*/},{0xd0b0/*gb2312*/, 0x90aa/*utf16*/, {0xe9,0x82,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd0b1/*gb2312*/, 0x659c/*utf16*/, {0xe6,0x96,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd0b2/*gb2312*/, 0x80c1/*utf16*/, {0xe8,0x83,0x81}/*utf8*/, 3/*utf8 len*/},{0xd0b3/*gb2312*/, 0x8c10/*utf16*/, {0xe8,0xb0,0x90}/*utf8*/, 3/*utf8 len*/},{0xd0b4/*gb2312*/, 0x5199/*utf16*/, {0xe5,0x86,0x99}/*utf8*/, 3/*utf8 len*/},{0xd0b5/*gb2312*/, 0x68b0/*utf16*/, {0xe6,0xa2,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd0b6/*gb2312*/, 0x5378/*utf16*/, {0xe5,0x8d,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd0b7/*gb2312*/, 0x87f9/*utf16*/, {0xe8,0x9f,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd0b8/*gb2312*/, 0x61c8/*utf16*/, {0xe6,0x87,0x88}/*utf8*/, 3/*utf8 len*/},{0xd0b9/*gb2312*/, 0x6cc4/*utf16*/, {0xe6,0xb3,0x84}/*utf8*/, 3/*utf8 len*/},{0xd0ba/*gb2312*/, 0x6cfb/*utf16*/, {0xe6,0xb3,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd0bb/*gb2312*/, 0x8c22/*utf16*/, {0xe8,0xb0,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd0bc/*gb2312*/, 0x5c51/*utf16*/, {0xe5,0xb1,0x91}/*utf8*/, 3/*utf8 len*/},{0xd0bd/*gb2312*/, 0x85aa/*utf16*/, {0xe8,0x96,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd0be/*gb2312*/, 0x82af/*utf16*/, {0xe8,0x8a,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd0bf/*gb2312*/, 0x950c/*utf16*/, {0xe9,0x94,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd0c0/*gb2312*/, 0x6b23/*utf16*/, {0xe6,0xac,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd0c1/*gb2312*/, 0x8f9b/*utf16*/, {0xe8,0xbe,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd0c2/*gb2312*/, 0x65b0/*utf16*/, {0xe6,0x96,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd0c3/*gb2312*/, 0x5ffb/*utf16*/, {0xe5,0xbf,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd0c4/*gb2312*/, 0x5fc3/*utf16*/, {0xe5,0xbf,0x83}/*utf8*/, 3/*utf8 len*/},{0xd0c5/*gb2312*/, 0x4fe1/*utf16*/, {0xe4,0xbf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd0c6/*gb2312*/, 0x8845/*utf16*/, {0xe8,0xa1,0x85}/*utf8*/, 3/*utf8 len*/},{0xd0c7/*gb2312*/, 0x661f/*utf16*/, {0xe6,0x98,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd0c8/*gb2312*/, 0x8165/*utf16*/, {0xe8,0x85,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd0c9/*gb2312*/, 0x7329/*utf16*/, {0xe7,0x8c,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd0ca/*gb2312*/, 0x60fa/*utf16*/, {0xe6,0x83,0xba}/*utf8*/, 3/*utf8 len*/},{0xd0cb/*gb2312*/, 0x5174/*utf16*/, {0xe5,0x85,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd0cc/*gb2312*/, 0x5211/*utf16*/, {0xe5,0x88,0x91}/*utf8*/, 3/*utf8 len*/},{0xd0cd/*gb2312*/, 0x578b/*utf16*/, {0xe5,0x9e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd0ce/*gb2312*/, 0x5f62/*utf16*/, {0xe5,0xbd,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd0cf/*gb2312*/, 0x90a2/*utf16*/, {0xe9,0x82,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd0d0/*gb2312*/, 0x884c/*utf16*/, {0xe8,0xa1,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd0d1/*gb2312*/, 0x9192/*utf16*/, {0xe9,0x86,0x92}/*utf8*/, 3/*utf8 len*/},{0xd0d2/*gb2312*/, 0x5e78/*utf16*/, {0xe5,0xb9,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd0d3/*gb2312*/, 0x674f/*utf16*/, {0xe6,0x9d,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd0d4/*gb2312*/, 0x6027/*utf16*/, {0xe6,0x80,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd0d5/*gb2312*/, 0x59d3/*utf16*/, {0xe5,0xa7,0x93}/*utf8*/, 3/*utf8 len*/},{0xd0d6/*gb2312*/, 0x5144/*utf16*/, {0xe5,0x85,0x84}/*utf8*/, 3/*utf8 len*/},{0xd0d7/*gb2312*/, 0x51f6/*utf16*/, {0xe5,0x87,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd0d8/*gb2312*/, 0x80f8/*utf16*/, {0xe8,0x83,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd0d9/*gb2312*/, 0x5308/*utf16*/, {0xe5,0x8c,0x88}/*utf8*/, 3/*utf8 len*/},{0xd0da/*gb2312*/, 0x6c79/*utf16*/, {0xe6,0xb1,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd0db/*gb2312*/, 0x96c4/*utf16*/, {0xe9,0x9b,0x84}/*utf8*/, 3/*utf8 len*/},{0xd0dc/*gb2312*/, 0x718a/*utf16*/, {0xe7,0x86,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd0dd/*gb2312*/, 0x4f11/*utf16*/, {0xe4,0xbc,0x91}/*utf8*/, 3/*utf8 len*/},{0xd0de/*gb2312*/, 0x4fee/*utf16*/, {0xe4,0xbf,0xae}/*utf8*/, 3/*utf8 len*/},{0xd0df/*gb2312*/, 0x7f9e/*utf16*/, {0xe7,0xbe,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd0e0/*gb2312*/, 0x673d/*utf16*/, {0xe6,0x9c,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd0e1/*gb2312*/, 0x55c5/*utf16*/, {0xe5,0x97,0x85}/*utf8*/, 3/*utf8 len*/},{0xd0e2/*gb2312*/, 0x9508/*utf16*/, {0xe9,0x94,0x88}/*utf8*/, 3/*utf8 len*/},{0xd0e3/*gb2312*/, 0x79c0/*utf16*/, {0xe7,0xa7,0x80}/*utf8*/, 3/*utf8 len*/},{0xd0e4/*gb2312*/, 0x8896/*utf16*/, {0xe8,0xa2,0x96}/*utf8*/, 3/*utf8 len*/},{0xd0e5/*gb2312*/, 0x7ee3/*utf16*/, {0xe7,0xbb,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd0e6/*gb2312*/, 0x589f/*utf16*/, {0xe5,0xa2,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd0e7/*gb2312*/, 0x620c/*utf16*/, {0xe6,0x88,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd0e8/*gb2312*/, 0x9700/*utf16*/, {0xe9,0x9c,0x80}/*utf8*/, 3/*utf8 len*/},{0xd0e9/*gb2312*/, 0x865a/*utf16*/, {0xe8,0x99,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd0ea/*gb2312*/, 0x5618/*utf16*/, {0xe5,0x98,0x98}/*utf8*/, 3/*utf8 len*/},{0xd0eb/*gb2312*/, 0x987b/*utf16*/, {0xe9,0xa1,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd0ec/*gb2312*/, 0x5f90/*utf16*/, {0xe5,0xbe,0x90}/*utf8*/, 3/*utf8 len*/},{0xd0ed/*gb2312*/, 0x8bb8/*utf16*/, {0xe8,0xae,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd0ee/*gb2312*/, 0x84c4/*utf16*/, {0xe8,0x93,0x84}/*utf8*/, 3/*utf8 len*/},{0xd0ef/*gb2312*/, 0x9157/*utf16*/, {0xe9,0x85,0x97}/*utf8*/, 3/*utf8 len*/},{0xd0f0/*gb2312*/, 0x53d9/*utf16*/, {0xe5,0x8f,0x99}/*utf8*/, 3/*utf8 len*/},{0xd0f1/*gb2312*/, 0x65ed/*utf16*/, {0xe6,0x97,0xad}/*utf8*/, 3/*utf8 len*/},{0xd0f2/*gb2312*/, 0x5e8f/*utf16*/, {0xe5,0xba,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd0f3/*gb2312*/, 0x755c/*utf16*/, {0xe7,0x95,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd0f4/*gb2312*/, 0x6064/*utf16*/, {0xe6,0x81,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd0f5/*gb2312*/, 0x7d6e/*utf16*/, {0xe7,0xb5,0xae}/*utf8*/, 3/*utf8 len*/},{0xd0f6/*gb2312*/, 0x5a7f/*utf16*/, {0xe5,0xa9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd0f7/*gb2312*/, 0x7eea/*utf16*/, {0xe7,0xbb,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd0f8/*gb2312*/, 0x7eed/*utf16*/, {0xe7,0xbb,0xad}/*utf8*/, 3/*utf8 len*/},{0xd0f9/*gb2312*/, 0x8f69/*utf16*/, {0xe8,0xbd,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd0fa/*gb2312*/, 0x55a7/*utf16*/, {0xe5,0x96,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd0fb/*gb2312*/, 0x5ba3/*utf16*/, {0xe5,0xae,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd0fc/*gb2312*/, 0x60ac/*utf16*/, {0xe6,0x82,0xac}/*utf8*/, 3/*utf8 len*/},{0xd0fd/*gb2312*/, 0x65cb/*utf16*/, {0xe6,0x97,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd0fe/*gb2312*/, 0x7384/*utf16*/, {0xe7,0x8e,0x84}/*utf8*/, 3/*utf8 len*/},{0xd1a1/*gb2312*/, 0x9009/*utf16*/, {0xe9,0x80,0x89}/*utf8*/, 3/*utf8 len*/},{0xd1a2/*gb2312*/, 0x7663/*utf16*/, {0xe7,0x99,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd1a3/*gb2312*/, 0x7729/*utf16*/, {0xe7,0x9c,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd1a4/*gb2312*/, 0x7eda/*utf16*/, {0xe7,0xbb,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd1a5/*gb2312*/, 0x9774/*utf16*/, {0xe9,0x9d,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd1a6/*gb2312*/, 0x859b/*utf16*/, {0xe8,0x96,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd1a7/*gb2312*/, 0x5b66/*utf16*/, {0xe5,0xad,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd1a8/*gb2312*/, 0x7a74/*utf16*/, {0xe7,0xa9,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd1a9/*gb2312*/, 0x96ea/*utf16*/, {0xe9,0x9b,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd1aa/*gb2312*/, 0x8840/*utf16*/, {0xe8,0xa1,0x80}/*utf8*/, 3/*utf8 len*/},{0xd1ab/*gb2312*/, 0x52cb/*utf16*/, {0xe5,0x8b,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd1ac/*gb2312*/, 0x718f/*utf16*/, {0xe7,0x86,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd1ad/*gb2312*/, 0x5faa/*utf16*/, {0xe5,0xbe,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd1ae/*gb2312*/, 0x65ec/*utf16*/, {0xe6,0x97,0xac}/*utf8*/, 3/*utf8 len*/},{0xd1af/*gb2312*/, 0x8be2/*utf16*/, {0xe8,0xaf,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd1b0/*gb2312*/, 0x5bfb/*utf16*/, {0xe5,0xaf,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd1b1/*gb2312*/, 0x9a6f/*utf16*/, {0xe9,0xa9,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd1b2/*gb2312*/, 0x5de1/*utf16*/, {0xe5,0xb7,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd1b3/*gb2312*/, 0x6b89/*utf16*/, {0xe6,0xae,0x89}/*utf8*/, 3/*utf8 len*/},{0xd1b4/*gb2312*/, 0x6c5b/*utf16*/, {0xe6,0xb1,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd1b5/*gb2312*/, 0x8bad/*utf16*/, {0xe8,0xae,0xad}/*utf8*/, 3/*utf8 len*/},{0xd1b6/*gb2312*/, 0x8baf/*utf16*/, {0xe8,0xae,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd1b7/*gb2312*/, 0x900a/*utf16*/, {0xe9,0x80,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd1b8/*gb2312*/, 0x8fc5/*utf16*/, {0xe8,0xbf,0x85}/*utf8*/, 3/*utf8 len*/},{0xd1b9/*gb2312*/, 0x538b/*utf16*/, {0xe5,0x8e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd1ba/*gb2312*/, 0x62bc/*utf16*/, {0xe6,0x8a,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd1bb/*gb2312*/, 0x9e26/*utf16*/, {0xe9,0xb8,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd1bc/*gb2312*/, 0x9e2d/*utf16*/, {0xe9,0xb8,0xad}/*utf8*/, 3/*utf8 len*/},{0xd1bd/*gb2312*/, 0x5440/*utf16*/, {0xe5,0x91,0x80}/*utf8*/, 3/*utf8 len*/},{0xd1be/*gb2312*/, 0x4e2b/*utf16*/, {0xe4,0xb8,0xab}/*utf8*/, 3/*utf8 len*/},{0xd1bf/*gb2312*/, 0x82bd/*utf16*/, {0xe8,0x8a,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd1c0/*gb2312*/, 0x7259/*utf16*/, {0xe7,0x89,0x99}/*utf8*/, 3/*utf8 len*/},{0xd1c1/*gb2312*/, 0x869c/*utf16*/, {0xe8,0x9a,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd1c2/*gb2312*/, 0x5d16/*utf16*/, {0xe5,0xb4,0x96}/*utf8*/, 3/*utf8 len*/},{0xd1c3/*gb2312*/, 0x8859/*utf16*/, {0xe8,0xa1,0x99}/*utf8*/, 3/*utf8 len*/},{0xd1c4/*gb2312*/, 0x6daf/*utf16*/, {0xe6,0xb6,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd1c5/*gb2312*/, 0x96c5/*utf16*/, {0xe9,0x9b,0x85}/*utf8*/, 3/*utf8 len*/},{0xd1c6/*gb2312*/, 0x54d1/*utf16*/, {0xe5,0x93,0x91}/*utf8*/, 3/*utf8 len*/},{0xd1c7/*gb2312*/, 0x4e9a/*utf16*/, {0xe4,0xba,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd1c8/*gb2312*/, 0x8bb6/*utf16*/, {0xe8,0xae,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd1c9/*gb2312*/, 0x7109/*utf16*/, {0xe7,0x84,0x89}/*utf8*/, 3/*utf8 len*/},{0xd1ca/*gb2312*/, 0x54bd/*utf16*/, {0xe5,0x92,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd1cb/*gb2312*/, 0x9609/*utf16*/, {0xe9,0x98,0x89}/*utf8*/, 3/*utf8 len*/},{0xd1cc/*gb2312*/, 0x70df/*utf16*/, {0xe7,0x83,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd1cd/*gb2312*/, 0x6df9/*utf16*/, {0xe6,0xb7,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd1ce/*gb2312*/, 0x76d0/*utf16*/, {0xe7,0x9b,0x90}/*utf8*/, 3/*utf8 len*/},{0xd1cf/*gb2312*/, 0x4e25/*utf16*/, {0xe4,0xb8,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd1d0/*gb2312*/, 0x7814/*utf16*/, {0xe7,0xa0,0x94}/*utf8*/, 3/*utf8 len*/},{0xd1d1/*gb2312*/, 0x8712/*utf16*/, {0xe8,0x9c,0x92}/*utf8*/, 3/*utf8 len*/},{0xd1d2/*gb2312*/, 0x5ca9/*utf16*/, {0xe5,0xb2,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd1d3/*gb2312*/, 0x5ef6/*utf16*/, {0xe5,0xbb,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd1d4/*gb2312*/, 0x8a00/*utf16*/, {0xe8,0xa8,0x80}/*utf8*/, 3/*utf8 len*/},{0xd1d5/*gb2312*/, 0x989c/*utf16*/, {0xe9,0xa2,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd1d6/*gb2312*/, 0x960e/*utf16*/, {0xe9,0x98,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd1d7/*gb2312*/, 0x708e/*utf16*/, {0xe7,0x82,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd1d8/*gb2312*/, 0x6cbf/*utf16*/, {0xe6,0xb2,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd1d9/*gb2312*/, 0x5944/*utf16*/, {0xe5,0xa5,0x84}/*utf8*/, 3/*utf8 len*/},{0xd1da/*gb2312*/, 0x63a9/*utf16*/, {0xe6,0x8e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd1db/*gb2312*/, 0x773c/*utf16*/, {0xe7,0x9c,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd1dc/*gb2312*/, 0x884d/*utf16*/, {0xe8,0xa1,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd1dd/*gb2312*/, 0x6f14/*utf16*/, {0xe6,0xbc,0x94}/*utf8*/, 3/*utf8 len*/},{0xd1de/*gb2312*/, 0x8273/*utf16*/, {0xe8,0x89,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd1df/*gb2312*/, 0x5830/*utf16*/, {0xe5,0xa0,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd1e0/*gb2312*/, 0x71d5/*utf16*/, {0xe7,0x87,0x95}/*utf8*/, 3/*utf8 len*/},{0xd1e1/*gb2312*/, 0x538c/*utf16*/, {0xe5,0x8e,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd1e2/*gb2312*/, 0x781a/*utf16*/, {0xe7,0xa0,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd1e3/*gb2312*/, 0x96c1/*utf16*/, {0xe9,0x9b,0x81}/*utf8*/, 3/*utf8 len*/},{0xd1e4/*gb2312*/, 0x5501/*utf16*/, {0xe5,0x94,0x81}/*utf8*/, 3/*utf8 len*/},{0xd1e5/*gb2312*/, 0x5f66/*utf16*/, {0xe5,0xbd,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd1e6/*gb2312*/, 0x7130/*utf16*/, {0xe7,0x84,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd1e7/*gb2312*/, 0x5bb4/*utf16*/, {0xe5,0xae,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd1e8/*gb2312*/, 0x8c1a/*utf16*/, {0xe8,0xb0,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd1e9/*gb2312*/, 0x9a8c/*utf16*/, {0xe9,0xaa,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd1ea/*gb2312*/, 0x6b83/*utf16*/, {0xe6,0xae,0x83}/*utf8*/, 3/*utf8 len*/},{0xd1eb/*gb2312*/, 0x592e/*utf16*/, {0xe5,0xa4,0xae}/*utf8*/, 3/*utf8 len*/},{0xd1ec/*gb2312*/, 0x9e2f/*utf16*/, {0xe9,0xb8,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd1ed/*gb2312*/, 0x79e7/*utf16*/, {0xe7,0xa7,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd1ee/*gb2312*/, 0x6768/*utf16*/, {0xe6,0x9d,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd1ef/*gb2312*/, 0x626c/*utf16*/, {0xe6,0x89,0xac}/*utf8*/, 3/*utf8 len*/},{0xd1f0/*gb2312*/, 0x4f6f/*utf16*/, {0xe4,0xbd,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd1f1/*gb2312*/, 0x75a1/*utf16*/, {0xe7,0x96,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd1f2/*gb2312*/, 0x7f8a/*utf16*/, {0xe7,0xbe,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd1f3/*gb2312*/, 0x6d0b/*utf16*/, {0xe6,0xb4,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd1f4/*gb2312*/, 0x9633/*utf16*/, {0xe9,0x98,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd1f5/*gb2312*/, 0x6c27/*utf16*/, {0xe6,0xb0,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd1f6/*gb2312*/, 0x4ef0/*utf16*/, {0xe4,0xbb,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd1f7/*gb2312*/, 0x75d2/*utf16*/, {0xe7,0x97,0x92}/*utf8*/, 3/*utf8 len*/},{0xd1f8/*gb2312*/, 0x517b/*utf16*/, {0xe5,0x85,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd1f9/*gb2312*/, 0x6837/*utf16*/, {0xe6,0xa0,0xb7}/*utf8*/, 3/*utf8 len*/},{0xd1fa/*gb2312*/, 0x6f3e/*utf16*/, {0xe6,0xbc,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd1fb/*gb2312*/, 0x9080/*utf16*/, {0xe9,0x82,0x80}/*utf8*/, 3/*utf8 len*/},{0xd1fc/*gb2312*/, 0x8170/*utf16*/, {0xe8,0x85,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd1fd/*gb2312*/, 0x5996/*utf16*/, {0xe5,0xa6,0x96}/*utf8*/, 3/*utf8 len*/},{0xd1fe/*gb2312*/, 0x7476/*utf16*/, {0xe7,0x91,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd2a1/*gb2312*/, 0x6447/*utf16*/, {0xe6,0x91,0x87}/*utf8*/, 3/*utf8 len*/},{0xd2a2/*gb2312*/, 0x5c27/*utf16*/, {0xe5,0xb0,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd2a3/*gb2312*/, 0x9065/*utf16*/, {0xe9,0x81,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd2a4/*gb2312*/, 0x7a91/*utf16*/, {0xe7,0xaa,0x91}/*utf8*/, 3/*utf8 len*/},{0xd2a5/*gb2312*/, 0x8c23/*utf16*/, {0xe8,0xb0,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd2a6/*gb2312*/, 0x59da/*utf16*/, {0xe5,0xa7,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd2a7/*gb2312*/, 0x54ac/*utf16*/, {0xe5,0x92,0xac}/*utf8*/, 3/*utf8 len*/},{0xd2a8/*gb2312*/, 0x8200/*utf16*/, {0xe8,0x88,0x80}/*utf8*/, 3/*utf8 len*/},{0xd2a9/*gb2312*/, 0x836f/*utf16*/, {0xe8,0x8d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd2aa/*gb2312*/, 0x8981/*utf16*/, {0xe8,0xa6,0x81}/*utf8*/, 3/*utf8 len*/},{0xd2ab/*gb2312*/, 0x8000/*utf16*/, {0xe8,0x80,0x80}/*utf8*/, 3/*utf8 len*/},{0xd2ac/*gb2312*/, 0x6930/*utf16*/, {0xe6,0xa4,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd2ad/*gb2312*/, 0x564e/*utf16*/, {0xe5,0x99,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd2ae/*gb2312*/, 0x8036/*utf16*/, {0xe8,0x80,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd2af/*gb2312*/, 0x7237/*utf16*/, {0xe7,0x88,0xb7}/*utf8*/, 3/*utf8 len*/},{0xd2b0/*gb2312*/, 0x91ce/*utf16*/, {0xe9,0x87,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd2b1/*gb2312*/, 0x51b6/*utf16*/, {0xe5,0x86,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd2b2/*gb2312*/, 0x4e5f/*utf16*/, {0xe4,0xb9,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd2b3/*gb2312*/, 0x9875/*utf16*/, {0xe9,0xa1,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd2b4/*gb2312*/, 0x6396/*utf16*/, {0xe6,0x8e,0x96}/*utf8*/, 3/*utf8 len*/},{0xd2b5/*gb2312*/, 0x4e1a/*utf16*/, {0xe4,0xb8,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd2b6/*gb2312*/, 0x53f6/*utf16*/, {0xe5,0x8f,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd2b7/*gb2312*/, 0x66f3/*utf16*/, {0xe6,0x9b,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd2b8/*gb2312*/, 0x814b/*utf16*/, {0xe8,0x85,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd2b9/*gb2312*/, 0x591c/*utf16*/, {0xe5,0xa4,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd2ba/*gb2312*/, 0x6db2/*utf16*/, {0xe6,0xb6,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd2bb/*gb2312*/, 0x4e00/*utf16*/, {0xe4,0xb8,0x80}/*utf8*/, 3/*utf8 len*/},{0xd2bc/*gb2312*/, 0x58f9/*utf16*/, {0xe5,0xa3,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd2bd/*gb2312*/, 0x533b/*utf16*/, {0xe5,0x8c,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd2be/*gb2312*/, 0x63d6/*utf16*/, {0xe6,0x8f,0x96}/*utf8*/, 3/*utf8 len*/},{0xd2bf/*gb2312*/, 0x94f1/*utf16*/, {0xe9,0x93,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd2c0/*gb2312*/, 0x4f9d/*utf16*/, {0xe4,0xbe,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd2c1/*gb2312*/, 0x4f0a/*utf16*/, {0xe4,0xbc,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd2c2/*gb2312*/, 0x8863/*utf16*/, {0xe8,0xa1,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd2c3/*gb2312*/, 0x9890/*utf16*/, {0xe9,0xa2,0x90}/*utf8*/, 3/*utf8 len*/},{0xd2c4/*gb2312*/, 0x5937/*utf16*/, {0xe5,0xa4,0xb7}/*utf8*/, 3/*utf8 len*/},{0xd2c5/*gb2312*/, 0x9057/*utf16*/, {0xe9,0x81,0x97}/*utf8*/, 3/*utf8 len*/},{0xd2c6/*gb2312*/, 0x79fb/*utf16*/, {0xe7,0xa7,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd2c7/*gb2312*/, 0x4eea/*utf16*/, {0xe4,0xbb,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd2c8/*gb2312*/, 0x80f0/*utf16*/, {0xe8,0x83,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd2c9/*gb2312*/, 0x7591/*utf16*/, {0xe7,0x96,0x91}/*utf8*/, 3/*utf8 len*/},{0xd2ca/*gb2312*/, 0x6c82/*utf16*/, {0xe6,0xb2,0x82}/*utf8*/, 3/*utf8 len*/},{0xd2cb/*gb2312*/, 0x5b9c/*utf16*/, {0xe5,0xae,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd2cc/*gb2312*/, 0x59e8/*utf16*/, {0xe5,0xa7,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd2cd/*gb2312*/, 0x5f5d/*utf16*/, {0xe5,0xbd,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd2ce/*gb2312*/, 0x6905/*utf16*/, {0xe6,0xa4,0x85}/*utf8*/, 3/*utf8 len*/},{0xd2cf/*gb2312*/, 0x8681/*utf16*/, {0xe8,0x9a,0x81}/*utf8*/, 3/*utf8 len*/},{0xd2d0/*gb2312*/, 0x501a/*utf16*/, {0xe5,0x80,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd2d1/*gb2312*/, 0x5df2/*utf16*/, {0xe5,0xb7,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd2d2/*gb2312*/, 0x4e59/*utf16*/, {0xe4,0xb9,0x99}/*utf8*/, 3/*utf8 len*/},{0xd2d3/*gb2312*/, 0x77e3/*utf16*/, {0xe7,0x9f,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd2d4/*gb2312*/, 0x4ee5/*utf16*/, {0xe4,0xbb,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd2d5/*gb2312*/, 0x827a/*utf16*/, {0xe8,0x89,0xba}/*utf8*/, 3/*utf8 len*/},{0xd2d6/*gb2312*/, 0x6291/*utf16*/, {0xe6,0x8a,0x91}/*utf8*/, 3/*utf8 len*/},{0xd2d7/*gb2312*/, 0x6613/*utf16*/, {0xe6,0x98,0x93}/*utf8*/, 3/*utf8 len*/},{0xd2d8/*gb2312*/, 0x9091/*utf16*/, {0xe9,0x82,0x91}/*utf8*/, 3/*utf8 len*/},{0xd2d9/*gb2312*/, 0x5c79/*utf16*/, {0xe5,0xb1,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd2da/*gb2312*/, 0x4ebf/*utf16*/, {0xe4,0xba,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd2db/*gb2312*/, 0x5f79/*utf16*/, {0xe5,0xbd,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd2dc/*gb2312*/, 0x81c6/*utf16*/, {0xe8,0x87,0x86}/*utf8*/, 3/*utf8 len*/},{0xd2dd/*gb2312*/, 0x9038/*utf16*/, {0xe9,0x80,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd2de/*gb2312*/, 0x8084/*utf16*/, {0xe8,0x82,0x84}/*utf8*/, 3/*utf8 len*/},{0xd2df/*gb2312*/, 0x75ab/*utf16*/, {0xe7,0x96,0xab}/*utf8*/, 3/*utf8 len*/},{0xd2e0/*gb2312*/, 0x4ea6/*utf16*/, {0xe4,0xba,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd2e1/*gb2312*/, 0x88d4/*utf16*/, {0xe8,0xa3,0x94}/*utf8*/, 3/*utf8 len*/},{0xd2e2/*gb2312*/, 0x610f/*utf16*/, {0xe6,0x84,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd2e3/*gb2312*/, 0x6bc5/*utf16*/, {0xe6,0xaf,0x85}/*utf8*/, 3/*utf8 len*/},{0xd2e4/*gb2312*/, 0x5fc6/*utf16*/, {0xe5,0xbf,0x86}/*utf8*/, 3/*utf8 len*/},{0xd2e5/*gb2312*/, 0x4e49/*utf16*/, {0xe4,0xb9,0x89}/*utf8*/, 3/*utf8 len*/},{0xd2e6/*gb2312*/, 0x76ca/*utf16*/, {0xe7,0x9b,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd2e7/*gb2312*/, 0x6ea2/*utf16*/, {0xe6,0xba,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd2e8/*gb2312*/, 0x8be3/*utf16*/, {0xe8,0xaf,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd2e9/*gb2312*/, 0x8bae/*utf16*/, {0xe8,0xae,0xae}/*utf8*/, 3/*utf8 len*/},{0xd2ea/*gb2312*/, 0x8c0a/*utf16*/, {0xe8,0xb0,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd2eb/*gb2312*/, 0x8bd1/*utf16*/, {0xe8,0xaf,0x91}/*utf8*/, 3/*utf8 len*/},{0xd2ec/*gb2312*/, 0x5f02/*utf16*/, {0xe5,0xbc,0x82}/*utf8*/, 3/*utf8 len*/},{0xd2ed/*gb2312*/, 0x7ffc/*utf16*/, {0xe7,0xbf,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd2ee/*gb2312*/, 0x7fcc/*utf16*/, {0xe7,0xbf,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd2ef/*gb2312*/, 0x7ece/*utf16*/, {0xe7,0xbb,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd2f0/*gb2312*/, 0x8335/*utf16*/, {0xe8,0x8c,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd2f1/*gb2312*/, 0x836b/*utf16*/, {0xe8,0x8d,0xab}/*utf8*/, 3/*utf8 len*/},{0xd2f2/*gb2312*/, 0x56e0/*utf16*/, {0xe5,0x9b,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd2f3/*gb2312*/, 0x6bb7/*utf16*/, {0xe6,0xae,0xb7}/*utf8*/, 3/*utf8 len*/},{0xd2f4/*gb2312*/, 0x97f3/*utf16*/, {0xe9,0x9f,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd2f5/*gb2312*/, 0x9634/*utf16*/, {0xe9,0x98,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd2f6/*gb2312*/, 0x59fb/*utf16*/, {0xe5,0xa7,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd2f7/*gb2312*/, 0x541f/*utf16*/, {0xe5,0x90,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd2f8/*gb2312*/, 0x94f6/*utf16*/, {0xe9,0x93,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd2f9/*gb2312*/, 0x6deb/*utf16*/, {0xe6,0xb7,0xab}/*utf8*/, 3/*utf8 len*/},{0xd2fa/*gb2312*/, 0x5bc5/*utf16*/, {0xe5,0xaf,0x85}/*utf8*/, 3/*utf8 len*/},{0xd2fb/*gb2312*/, 0x996e/*utf16*/, {0xe9,0xa5,0xae}/*utf8*/, 3/*utf8 len*/},{0xd2fc/*gb2312*/, 0x5c39/*utf16*/, {0xe5,0xb0,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd2fd/*gb2312*/, 0x5f15/*utf16*/, {0xe5,0xbc,0x95}/*utf8*/, 3/*utf8 len*/},{0xd2fe/*gb2312*/, 0x9690/*utf16*/, {0xe9,0x9a,0x90}/*utf8*/, 3/*utf8 len*/},{0xd3a1/*gb2312*/, 0x5370/*utf16*/, {0xe5,0x8d,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd3a2/*gb2312*/, 0x82f1/*utf16*/, {0xe8,0x8b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3a3/*gb2312*/, 0x6a31/*utf16*/, {0xe6,0xa8,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3a4/*gb2312*/, 0x5a74/*utf16*/, {0xe5,0xa9,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd3a5/*gb2312*/, 0x9e70/*utf16*/, {0xe9,0xb9,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd3a6/*gb2312*/, 0x5e94/*utf16*/, {0xe5,0xba,0x94}/*utf8*/, 3/*utf8 len*/},{0xd3a7/*gb2312*/, 0x7f28/*utf16*/, {0xe7,0xbc,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd3a8/*gb2312*/, 0x83b9/*utf16*/, {0xe8,0x8e,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd3a9/*gb2312*/, 0x8424/*utf16*/, {0xe8,0x90,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd3aa/*gb2312*/, 0x8425/*utf16*/, {0xe8,0x90,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd3ab/*gb2312*/, 0x8367/*utf16*/, {0xe8,0x8d,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd3ac/*gb2312*/, 0x8747/*utf16*/, {0xe8,0x9d,0x87}/*utf8*/, 3/*utf8 len*/},{0xd3ad/*gb2312*/, 0x8fce/*utf16*/, {0xe8,0xbf,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd3ae/*gb2312*/, 0x8d62/*utf16*/, {0xe8,0xb5,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd3af/*gb2312*/, 0x76c8/*utf16*/, {0xe7,0x9b,0x88}/*utf8*/, 3/*utf8 len*/},{0xd3b0/*gb2312*/, 0x5f71/*utf16*/, {0xe5,0xbd,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3b1/*gb2312*/, 0x9896/*utf16*/, {0xe9,0xa2,0x96}/*utf8*/, 3/*utf8 len*/},{0xd3b2/*gb2312*/, 0x786c/*utf16*/, {0xe7,0xa1,0xac}/*utf8*/, 3/*utf8 len*/},{0xd3b3/*gb2312*/, 0x6620/*utf16*/, {0xe6,0x98,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd3b4/*gb2312*/, 0x54df/*utf16*/, {0xe5,0x93,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd3b5/*gb2312*/, 0x62e5/*utf16*/, {0xe6,0x8b,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd3b6/*gb2312*/, 0x4f63/*utf16*/, {0xe4,0xbd,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd3b7/*gb2312*/, 0x81c3/*utf16*/, {0xe8,0x87,0x83}/*utf8*/, 3/*utf8 len*/},{0xd3b8/*gb2312*/, 0x75c8/*utf16*/, {0xe7,0x97,0x88}/*utf8*/, 3/*utf8 len*/},{0xd3b9/*gb2312*/, 0x5eb8/*utf16*/, {0xe5,0xba,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd3ba/*gb2312*/, 0x96cd/*utf16*/, {0xe9,0x9b,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd3bb/*gb2312*/, 0x8e0a/*utf16*/, {0xe8,0xb8,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd3bc/*gb2312*/, 0x86f9/*utf16*/, {0xe8,0x9b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd3bd/*gb2312*/, 0x548f/*utf16*/, {0xe5,0x92,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd3be/*gb2312*/, 0x6cf3/*utf16*/, {0xe6,0xb3,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd3bf/*gb2312*/, 0x6d8c/*utf16*/, {0xe6,0xb6,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd3c0/*gb2312*/, 0x6c38/*utf16*/, {0xe6,0xb0,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd3c1/*gb2312*/, 0x607f/*utf16*/, {0xe6,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd3c2/*gb2312*/, 0x52c7/*utf16*/, {0xe5,0x8b,0x87}/*utf8*/, 3/*utf8 len*/},{0xd3c3/*gb2312*/, 0x7528/*utf16*/, {0xe7,0x94,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd3c4/*gb2312*/, 0x5e7d/*utf16*/, {0xe5,0xb9,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd3c5/*gb2312*/, 0x4f18/*utf16*/, {0xe4,0xbc,0x98}/*utf8*/, 3/*utf8 len*/},{0xd3c6/*gb2312*/, 0x60a0/*utf16*/, {0xe6,0x82,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd3c7/*gb2312*/, 0x5fe7/*utf16*/, {0xe5,0xbf,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd3c8/*gb2312*/, 0x5c24/*utf16*/, {0xe5,0xb0,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd3c9/*gb2312*/, 0x7531/*utf16*/, {0xe7,0x94,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3ca/*gb2312*/, 0x90ae/*utf16*/, {0xe9,0x82,0xae}/*utf8*/, 3/*utf8 len*/},{0xd3cb/*gb2312*/, 0x94c0/*utf16*/, {0xe9,0x93,0x80}/*utf8*/, 3/*utf8 len*/},{0xd3cc/*gb2312*/, 0x72b9/*utf16*/, {0xe7,0x8a,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd3cd/*gb2312*/, 0x6cb9/*utf16*/, {0xe6,0xb2,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd3ce/*gb2312*/, 0x6e38/*utf16*/, {0xe6,0xb8,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd3cf/*gb2312*/, 0x9149/*utf16*/, {0xe9,0x85,0x89}/*utf8*/, 3/*utf8 len*/},{0xd3d0/*gb2312*/, 0x6709/*utf16*/, {0xe6,0x9c,0x89}/*utf8*/, 3/*utf8 len*/},{0xd3d1/*gb2312*/, 0x53cb/*utf16*/, {0xe5,0x8f,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd3d2/*gb2312*/, 0x53f3/*utf16*/, {0xe5,0x8f,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd3d3/*gb2312*/, 0x4f51/*utf16*/, {0xe4,0xbd,0x91}/*utf8*/, 3/*utf8 len*/},{0xd3d4/*gb2312*/, 0x91c9/*utf16*/, {0xe9,0x87,0x89}/*utf8*/, 3/*utf8 len*/},{0xd3d5/*gb2312*/, 0x8bf1/*utf16*/, {0xe8,0xaf,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3d6/*gb2312*/, 0x53c8/*utf16*/, {0xe5,0x8f,0x88}/*utf8*/, 3/*utf8 len*/},{0xd3d7/*gb2312*/, 0x5e7c/*utf16*/, {0xe5,0xb9,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd3d8/*gb2312*/, 0x8fc2/*utf16*/, {0xe8,0xbf,0x82}/*utf8*/, 3/*utf8 len*/},{0xd3d9/*gb2312*/, 0x6de4/*utf16*/, {0xe6,0xb7,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd3da/*gb2312*/, 0x4e8e/*utf16*/, {0xe4,0xba,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd3db/*gb2312*/, 0x76c2/*utf16*/, {0xe7,0x9b,0x82}/*utf8*/, 3/*utf8 len*/},{0xd3dc/*gb2312*/, 0x6986/*utf16*/, {0xe6,0xa6,0x86}/*utf8*/, 3/*utf8 len*/},{0xd3dd/*gb2312*/, 0x865e/*utf16*/, {0xe8,0x99,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd3de/*gb2312*/, 0x611a/*utf16*/, {0xe6,0x84,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd3df/*gb2312*/, 0x8206/*utf16*/, {0xe8,0x88,0x86}/*utf8*/, 3/*utf8 len*/},{0xd3e0/*gb2312*/, 0x4f59/*utf16*/, {0xe4,0xbd,0x99}/*utf8*/, 3/*utf8 len*/},{0xd3e1/*gb2312*/, 0x4fde/*utf16*/, {0xe4,0xbf,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd3e2/*gb2312*/, 0x903e/*utf16*/, {0xe9,0x80,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd3e3/*gb2312*/, 0x9c7c/*utf16*/, {0xe9,0xb1,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd3e4/*gb2312*/, 0x6109/*utf16*/, {0xe6,0x84,0x89}/*utf8*/, 3/*utf8 len*/},{0xd3e5/*gb2312*/, 0x6e1d/*utf16*/, {0xe6,0xb8,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd3e6/*gb2312*/, 0x6e14/*utf16*/, {0xe6,0xb8,0x94}/*utf8*/, 3/*utf8 len*/},{0xd3e7/*gb2312*/, 0x9685/*utf16*/, {0xe9,0x9a,0x85}/*utf8*/, 3/*utf8 len*/},{0xd3e8/*gb2312*/, 0x4e88/*utf16*/, {0xe4,0xba,0x88}/*utf8*/, 3/*utf8 len*/},{0xd3e9/*gb2312*/, 0x5a31/*utf16*/, {0xe5,0xa8,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3ea/*gb2312*/, 0x96e8/*utf16*/, {0xe9,0x9b,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd3eb/*gb2312*/, 0x4e0e/*utf16*/, {0xe4,0xb8,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd3ec/*gb2312*/, 0x5c7f/*utf16*/, {0xe5,0xb1,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd3ed/*gb2312*/, 0x79b9/*utf16*/, {0xe7,0xa6,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd3ee/*gb2312*/, 0x5b87/*utf16*/, {0xe5,0xae,0x87}/*utf8*/, 3/*utf8 len*/},{0xd3ef/*gb2312*/, 0x8bed/*utf16*/, {0xe8,0xaf,0xad}/*utf8*/, 3/*utf8 len*/},{0xd3f0/*gb2312*/, 0x7fbd/*utf16*/, {0xe7,0xbe,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd3f1/*gb2312*/, 0x7389/*utf16*/, {0xe7,0x8e,0x89}/*utf8*/, 3/*utf8 len*/},{0xd3f2/*gb2312*/, 0x57df/*utf16*/, {0xe5,0x9f,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd3f3/*gb2312*/, 0x828b/*utf16*/, {0xe8,0x8a,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd3f4/*gb2312*/, 0x90c1/*utf16*/, {0xe9,0x83,0x81}/*utf8*/, 3/*utf8 len*/},{0xd3f5/*gb2312*/, 0x5401/*utf16*/, {0xe5,0x90,0x81}/*utf8*/, 3/*utf8 len*/},{0xd3f6/*gb2312*/, 0x9047/*utf16*/, {0xe9,0x81,0x87}/*utf8*/, 3/*utf8 len*/},{0xd3f7/*gb2312*/, 0x55bb/*utf16*/, {0xe5,0x96,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd3f8/*gb2312*/, 0x5cea/*utf16*/, {0xe5,0xb3,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd3f9/*gb2312*/, 0x5fa1/*utf16*/, {0xe5,0xbe,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd3fa/*gb2312*/, 0x6108/*utf16*/, {0xe6,0x84,0x88}/*utf8*/, 3/*utf8 len*/},{0xd3fb/*gb2312*/, 0x6b32/*utf16*/, {0xe6,0xac,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd3fc/*gb2312*/, 0x72f1/*utf16*/, {0xe7,0x8b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd3fd/*gb2312*/, 0x80b2/*utf16*/, {0xe8,0x82,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd3fe/*gb2312*/, 0x8a89/*utf16*/, {0xe8,0xaa,0x89}/*utf8*/, 3/*utf8 len*/},{0xd4a1/*gb2312*/, 0x6d74/*utf16*/, {0xe6,0xb5,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd4a2/*gb2312*/, 0x5bd3/*utf16*/, {0xe5,0xaf,0x93}/*utf8*/, 3/*utf8 len*/},{0xd4a3/*gb2312*/, 0x88d5/*utf16*/, {0xe8,0xa3,0x95}/*utf8*/, 3/*utf8 len*/},{0xd4a4/*gb2312*/, 0x9884/*utf16*/, {0xe9,0xa2,0x84}/*utf8*/, 3/*utf8 len*/},{0xd4a5/*gb2312*/, 0x8c6b/*utf16*/, {0xe8,0xb1,0xab}/*utf8*/, 3/*utf8 len*/},{0xd4a6/*gb2312*/, 0x9a6d/*utf16*/, {0xe9,0xa9,0xad}/*utf8*/, 3/*utf8 len*/},{0xd4a7/*gb2312*/, 0x9e33/*utf16*/, {0xe9,0xb8,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd4a8/*gb2312*/, 0x6e0a/*utf16*/, {0xe6,0xb8,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd4a9/*gb2312*/, 0x51a4/*utf16*/, {0xe5,0x86,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd4aa/*gb2312*/, 0x5143/*utf16*/, {0xe5,0x85,0x83}/*utf8*/, 3/*utf8 len*/},{0xd4ab/*gb2312*/, 0x57a3/*utf16*/, {0xe5,0x9e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd4ac/*gb2312*/, 0x8881/*utf16*/, {0xe8,0xa2,0x81}/*utf8*/, 3/*utf8 len*/},{0xd4ad/*gb2312*/, 0x539f/*utf16*/, {0xe5,0x8e,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd4ae/*gb2312*/, 0x63f4/*utf16*/, {0xe6,0x8f,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd4af/*gb2312*/, 0x8f95/*utf16*/, {0xe8,0xbe,0x95}/*utf8*/, 3/*utf8 len*/},{0xd4b0/*gb2312*/, 0x56ed/*utf16*/, {0xe5,0x9b,0xad}/*utf8*/, 3/*utf8 len*/},{0xd4b1/*gb2312*/, 0x5458/*utf16*/, {0xe5,0x91,0x98}/*utf8*/, 3/*utf8 len*/},{0xd4b2/*gb2312*/, 0x5706/*utf16*/, {0xe5,0x9c,0x86}/*utf8*/, 3/*utf8 len*/},{0xd4b3/*gb2312*/, 0x733f/*utf16*/, {0xe7,0x8c,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd4b4/*gb2312*/, 0x6e90/*utf16*/, {0xe6,0xba,0x90}/*utf8*/, 3/*utf8 len*/},{0xd4b5/*gb2312*/, 0x7f18/*utf16*/, {0xe7,0xbc,0x98}/*utf8*/, 3/*utf8 len*/},{0xd4b6/*gb2312*/, 0x8fdc/*utf16*/, {0xe8,0xbf,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd4b7/*gb2312*/, 0x82d1/*utf16*/, {0xe8,0x8b,0x91}/*utf8*/, 3/*utf8 len*/},{0xd4b8/*gb2312*/, 0x613f/*utf16*/, {0xe6,0x84,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd4b9/*gb2312*/, 0x6028/*utf16*/, {0xe6,0x80,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd4ba/*gb2312*/, 0x9662/*utf16*/, {0xe9,0x99,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd4bb/*gb2312*/, 0x66f0/*utf16*/, {0xe6,0x9b,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd4bc/*gb2312*/, 0x7ea6/*utf16*/, {0xe7,0xba,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd4bd/*gb2312*/, 0x8d8a/*utf16*/, {0xe8,0xb6,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd4be/*gb2312*/, 0x8dc3/*utf16*/, {0xe8,0xb7,0x83}/*utf8*/, 3/*utf8 len*/},{0xd4bf/*gb2312*/, 0x94a5/*utf16*/, {0xe9,0x92,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd4c0/*gb2312*/, 0x5cb3/*utf16*/, {0xe5,0xb2,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd4c1/*gb2312*/, 0x7ca4/*utf16*/, {0xe7,0xb2,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd4c2/*gb2312*/, 0x6708/*utf16*/, {0xe6,0x9c,0x88}/*utf8*/, 3/*utf8 len*/},{0xd4c3/*gb2312*/, 0x60a6/*utf16*/, {0xe6,0x82,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd4c4/*gb2312*/, 0x9605/*utf16*/, {0xe9,0x98,0x85}/*utf8*/, 3/*utf8 len*/},{0xd4c5/*gb2312*/, 0x8018/*utf16*/, {0xe8,0x80,0x98}/*utf8*/, 3/*utf8 len*/},{0xd4c6/*gb2312*/, 0x4e91/*utf16*/, {0xe4,0xba,0x91}/*utf8*/, 3/*utf8 len*/},{0xd4c7/*gb2312*/, 0x90e7/*utf16*/, {0xe9,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd4c8/*gb2312*/, 0x5300/*utf16*/, {0xe5,0x8c,0x80}/*utf8*/, 3/*utf8 len*/},{0xd4c9/*gb2312*/, 0x9668/*utf16*/, {0xe9,0x99,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd4ca/*gb2312*/, 0x5141/*utf16*/, {0xe5,0x85,0x81}/*utf8*/, 3/*utf8 len*/},{0xd4cb/*gb2312*/, 0x8fd0/*utf16*/, {0xe8,0xbf,0x90}/*utf8*/, 3/*utf8 len*/},{0xd4cc/*gb2312*/, 0x8574/*utf16*/, {0xe8,0x95,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd4cd/*gb2312*/, 0x915d/*utf16*/, {0xe9,0x85,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd4ce/*gb2312*/, 0x6655/*utf16*/, {0xe6,0x99,0x95}/*utf8*/, 3/*utf8 len*/},{0xd4cf/*gb2312*/, 0x97f5/*utf16*/, {0xe9,0x9f,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd4d0/*gb2312*/, 0x5b55/*utf16*/, {0xe5,0xad,0x95}/*utf8*/, 3/*utf8 len*/},{0xd4d1/*gb2312*/, 0x531d/*utf16*/, {0xe5,0x8c,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd4d2/*gb2312*/, 0x7838/*utf16*/, {0xe7,0xa0,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd4d3/*gb2312*/, 0x6742/*utf16*/, {0xe6,0x9d,0x82}/*utf8*/, 3/*utf8 len*/},{0xd4d4/*gb2312*/, 0x683d/*utf16*/, {0xe6,0xa0,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd4d5/*gb2312*/, 0x54c9/*utf16*/, {0xe5,0x93,0x89}/*utf8*/, 3/*utf8 len*/},{0xd4d6/*gb2312*/, 0x707e/*utf16*/, {0xe7,0x81,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd4d7/*gb2312*/, 0x5bb0/*utf16*/, {0xe5,0xae,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd4d8/*gb2312*/, 0x8f7d/*utf16*/, {0xe8,0xbd,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd4d9/*gb2312*/, 0x518d/*utf16*/, {0xe5,0x86,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd4da/*gb2312*/, 0x5728/*utf16*/, {0xe5,0x9c,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd4db/*gb2312*/, 0x54b1/*utf16*/, {0xe5,0x92,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd4dc/*gb2312*/, 0x6512/*utf16*/, {0xe6,0x94,0x92}/*utf8*/, 3/*utf8 len*/},{0xd4dd/*gb2312*/, 0x6682/*utf16*/, {0xe6,0x9a,0x82}/*utf8*/, 3/*utf8 len*/},{0xd4de/*gb2312*/, 0x8d5e/*utf16*/, {0xe8,0xb5,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd4df/*gb2312*/, 0x8d43/*utf16*/, {0xe8,0xb5,0x83}/*utf8*/, 3/*utf8 len*/},{0xd4e0/*gb2312*/, 0x810f/*utf16*/, {0xe8,0x84,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd4e1/*gb2312*/, 0x846c/*utf16*/, {0xe8,0x91,0xac}/*utf8*/, 3/*utf8 len*/},{0xd4e2/*gb2312*/, 0x906d/*utf16*/, {0xe9,0x81,0xad}/*utf8*/, 3/*utf8 len*/},{0xd4e3/*gb2312*/, 0x7cdf/*utf16*/, {0xe7,0xb3,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd4e4/*gb2312*/, 0x51ff/*utf16*/, {0xe5,0x87,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd4e5/*gb2312*/, 0x85fb/*utf16*/, {0xe8,0x97,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd4e6/*gb2312*/, 0x67a3/*utf16*/, {0xe6,0x9e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd4e7/*gb2312*/, 0x65e9/*utf16*/, {0xe6,0x97,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd4e8/*gb2312*/, 0x6fa1/*utf16*/, {0xe6,0xbe,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd4e9/*gb2312*/, 0x86a4/*utf16*/, {0xe8,0x9a,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd4ea/*gb2312*/, 0x8e81/*utf16*/, {0xe8,0xba,0x81}/*utf8*/, 3/*utf8 len*/},{0xd4eb/*gb2312*/, 0x566a/*utf16*/, {0xe5,0x99,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd4ec/*gb2312*/, 0x9020/*utf16*/, {0xe9,0x80,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd4ed/*gb2312*/, 0x7682/*utf16*/, {0xe7,0x9a,0x82}/*utf8*/, 3/*utf8 len*/},{0xd4ee/*gb2312*/, 0x7076/*utf16*/, {0xe7,0x81,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd4ef/*gb2312*/, 0x71e5/*utf16*/, {0xe7,0x87,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd4f0/*gb2312*/, 0x8d23/*utf16*/, {0xe8,0xb4,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd4f1/*gb2312*/, 0x62e9/*utf16*/, {0xe6,0x8b,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd4f2/*gb2312*/, 0x5219/*utf16*/, {0xe5,0x88,0x99}/*utf8*/, 3/*utf8 len*/},{0xd4f3/*gb2312*/, 0x6cfd/*utf16*/, {0xe6,0xb3,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd4f4/*gb2312*/, 0x8d3c/*utf16*/, {0xe8,0xb4,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd4f5/*gb2312*/, 0x600e/*utf16*/, {0xe6,0x80,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd4f6/*gb2312*/, 0x589e/*utf16*/, {0xe5,0xa2,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd4f7/*gb2312*/, 0x618e/*utf16*/, {0xe6,0x86,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd4f8/*gb2312*/, 0x66fe/*utf16*/, {0xe6,0x9b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd4f9/*gb2312*/, 0x8d60/*utf16*/, {0xe8,0xb5,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd4fa/*gb2312*/, 0x624e/*utf16*/, {0xe6,0x89,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd4fb/*gb2312*/, 0x55b3/*utf16*/, {0xe5,0x96,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd4fc/*gb2312*/, 0x6e23/*utf16*/, {0xe6,0xb8,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd4fd/*gb2312*/, 0x672d/*utf16*/, {0xe6,0x9c,0xad}/*utf8*/, 3/*utf8 len*/},{0xd4fe/*gb2312*/, 0x8f67/*utf16*/, {0xe8,0xbd,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd5a1/*gb2312*/, 0x94e1/*utf16*/, {0xe9,0x93,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd5a2/*gb2312*/, 0x95f8/*utf16*/, {0xe9,0x97,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd5a3/*gb2312*/, 0x7728/*utf16*/, {0xe7,0x9c,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd5a4/*gb2312*/, 0x6805/*utf16*/, {0xe6,0xa0,0x85}/*utf8*/, 3/*utf8 len*/},{0xd5a5/*gb2312*/, 0x69a8/*utf16*/, {0xe6,0xa6,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd5a6/*gb2312*/, 0x548b/*utf16*/, {0xe5,0x92,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd5a7/*gb2312*/, 0x4e4d/*utf16*/, {0xe4,0xb9,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd5a8/*gb2312*/, 0x70b8/*utf16*/, {0xe7,0x82,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd5a9/*gb2312*/, 0x8bc8/*utf16*/, {0xe8,0xaf,0x88}/*utf8*/, 3/*utf8 len*/},{0xd5aa/*gb2312*/, 0x6458/*utf16*/, {0xe6,0x91,0x98}/*utf8*/, 3/*utf8 len*/},{0xd5ab/*gb2312*/, 0x658b/*utf16*/, {0xe6,0x96,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd5ac/*gb2312*/, 0x5b85/*utf16*/, {0xe5,0xae,0x85}/*utf8*/, 3/*utf8 len*/},{0xd5ad/*gb2312*/, 0x7a84/*utf16*/, {0xe7,0xaa,0x84}/*utf8*/, 3/*utf8 len*/},{0xd5ae/*gb2312*/, 0x503a/*utf16*/, {0xe5,0x80,0xba}/*utf8*/, 3/*utf8 len*/},{0xd5af/*gb2312*/, 0x5be8/*utf16*/, {0xe5,0xaf,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd5b0/*gb2312*/, 0x77bb/*utf16*/, {0xe7,0x9e,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd5b1/*gb2312*/, 0x6be1/*utf16*/, {0xe6,0xaf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd5b2/*gb2312*/, 0x8a79/*utf16*/, {0xe8,0xa9,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd5b3/*gb2312*/, 0x7c98/*utf16*/, {0xe7,0xb2,0x98}/*utf8*/, 3/*utf8 len*/},{0xd5b4/*gb2312*/, 0x6cbe/*utf16*/, {0xe6,0xb2,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd5b5/*gb2312*/, 0x76cf/*utf16*/, {0xe7,0x9b,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd5b6/*gb2312*/, 0x65a9/*utf16*/, {0xe6,0x96,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd5b7/*gb2312*/, 0x8f97/*utf16*/, {0xe8,0xbe,0x97}/*utf8*/, 3/*utf8 len*/},{0xd5b8/*gb2312*/, 0x5d2d/*utf16*/, {0xe5,0xb4,0xad}/*utf8*/, 3/*utf8 len*/},{0xd5b9/*gb2312*/, 0x5c55/*utf16*/, {0xe5,0xb1,0x95}/*utf8*/, 3/*utf8 len*/},{0xd5ba/*gb2312*/, 0x8638/*utf16*/, {0xe8,0x98,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd5bb/*gb2312*/, 0x6808/*utf16*/, {0xe6,0xa0,0x88}/*utf8*/, 3/*utf8 len*/},{0xd5bc/*gb2312*/, 0x5360/*utf16*/, {0xe5,0x8d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd5bd/*gb2312*/, 0x6218/*utf16*/, {0xe6,0x88,0x98}/*utf8*/, 3/*utf8 len*/},{0xd5be/*gb2312*/, 0x7ad9/*utf16*/, {0xe7,0xab,0x99}/*utf8*/, 3/*utf8 len*/},{0xd5bf/*gb2312*/, 0x6e5b/*utf16*/, {0xe6,0xb9,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd5c0/*gb2312*/, 0x7efd/*utf16*/, {0xe7,0xbb,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd5c1/*gb2312*/, 0x6a1f/*utf16*/, {0xe6,0xa8,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd5c2/*gb2312*/, 0x7ae0/*utf16*/, {0xe7,0xab,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd5c3/*gb2312*/, 0x5f70/*utf16*/, {0xe5,0xbd,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd5c4/*gb2312*/, 0x6f33/*utf16*/, {0xe6,0xbc,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd5c5/*gb2312*/, 0x5f20/*utf16*/, {0xe5,0xbc,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd5c6/*gb2312*/, 0x638c/*utf16*/, {0xe6,0x8e,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd5c7/*gb2312*/, 0x6da8/*utf16*/, {0xe6,0xb6,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd5c8/*gb2312*/, 0x6756/*utf16*/, {0xe6,0x9d,0x96}/*utf8*/, 3/*utf8 len*/},{0xd5c9/*gb2312*/, 0x4e08/*utf16*/, {0xe4,0xb8,0x88}/*utf8*/, 3/*utf8 len*/},{0xd5ca/*gb2312*/, 0x5e10/*utf16*/, {0xe5,0xb8,0x90}/*utf8*/, 3/*utf8 len*/},{0xd5cb/*gb2312*/, 0x8d26/*utf16*/, {0xe8,0xb4,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd5cc/*gb2312*/, 0x4ed7/*utf16*/, {0xe4,0xbb,0x97}/*utf8*/, 3/*utf8 len*/},{0xd5cd/*gb2312*/, 0x80c0/*utf16*/, {0xe8,0x83,0x80}/*utf8*/, 3/*utf8 len*/},{0xd5ce/*gb2312*/, 0x7634/*utf16*/, {0xe7,0x98,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd5cf/*gb2312*/, 0x969c/*utf16*/, {0xe9,0x9a,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd5d0/*gb2312*/, 0x62db/*utf16*/, {0xe6,0x8b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd5d1/*gb2312*/, 0x662d/*utf16*/, {0xe6,0x98,0xad}/*utf8*/, 3/*utf8 len*/},{0xd5d2/*gb2312*/, 0x627e/*utf16*/, {0xe6,0x89,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd5d3/*gb2312*/, 0x6cbc/*utf16*/, {0xe6,0xb2,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd5d4/*gb2312*/, 0x8d75/*utf16*/, {0xe8,0xb5,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd5d5/*gb2312*/, 0x7167/*utf16*/, {0xe7,0x85,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd5d6/*gb2312*/, 0x7f69/*utf16*/, {0xe7,0xbd,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd5d7/*gb2312*/, 0x5146/*utf16*/, {0xe5,0x85,0x86}/*utf8*/, 3/*utf8 len*/},{0xd5d8/*gb2312*/, 0x8087/*utf16*/, {0xe8,0x82,0x87}/*utf8*/, 3/*utf8 len*/},{0xd5d9/*gb2312*/, 0x53ec/*utf16*/, {0xe5,0x8f,0xac}/*utf8*/, 3/*utf8 len*/},{0xd5da/*gb2312*/, 0x906e/*utf16*/, {0xe9,0x81,0xae}/*utf8*/, 3/*utf8 len*/},{0xd5db/*gb2312*/, 0x6298/*utf16*/, {0xe6,0x8a,0x98}/*utf8*/, 3/*utf8 len*/},{0xd5dc/*gb2312*/, 0x54f2/*utf16*/, {0xe5,0x93,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd5dd/*gb2312*/, 0x86f0/*utf16*/, {0xe8,0x9b,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd5de/*gb2312*/, 0x8f99/*utf16*/, {0xe8,0xbe,0x99}/*utf8*/, 3/*utf8 len*/},{0xd5df/*gb2312*/, 0x8005/*utf16*/, {0xe8,0x80,0x85}/*utf8*/, 3/*utf8 len*/},{0xd5e0/*gb2312*/, 0x9517/*utf16*/, {0xe9,0x94,0x97}/*utf8*/, 3/*utf8 len*/},{0xd5e1/*gb2312*/, 0x8517/*utf16*/, {0xe8,0x94,0x97}/*utf8*/, 3/*utf8 len*/},{0xd5e2/*gb2312*/, 0x8fd9/*utf16*/, {0xe8,0xbf,0x99}/*utf8*/, 3/*utf8 len*/},{0xd5e3/*gb2312*/, 0x6d59/*utf16*/, {0xe6,0xb5,0x99}/*utf8*/, 3/*utf8 len*/},{0xd5e4/*gb2312*/, 0x73cd/*utf16*/, {0xe7,0x8f,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd5e5/*gb2312*/, 0x659f/*utf16*/, {0xe6,0x96,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd5e6/*gb2312*/, 0x771f/*utf16*/, {0xe7,0x9c,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd5e7/*gb2312*/, 0x7504/*utf16*/, {0xe7,0x94,0x84}/*utf8*/, 3/*utf8 len*/},{0xd5e8/*gb2312*/, 0x7827/*utf16*/, {0xe7,0xa0,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd5e9/*gb2312*/, 0x81fb/*utf16*/, {0xe8,0x87,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd5ea/*gb2312*/, 0x8d1e/*utf16*/, {0xe8,0xb4,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd5eb/*gb2312*/, 0x9488/*utf16*/, {0xe9,0x92,0x88}/*utf8*/, 3/*utf8 len*/},{0xd5ec/*gb2312*/, 0x4fa6/*utf16*/, {0xe4,0xbe,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd5ed/*gb2312*/, 0x6795/*utf16*/, {0xe6,0x9e,0x95}/*utf8*/, 3/*utf8 len*/},{0xd5ee/*gb2312*/, 0x75b9/*utf16*/, {0xe7,0x96,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd5ef/*gb2312*/, 0x8bca/*utf16*/, {0xe8,0xaf,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd5f0/*gb2312*/, 0x9707/*utf16*/, {0xe9,0x9c,0x87}/*utf8*/, 3/*utf8 len*/},{0xd5f1/*gb2312*/, 0x632f/*utf16*/, {0xe6,0x8c,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd5f2/*gb2312*/, 0x9547/*utf16*/, {0xe9,0x95,0x87}/*utf8*/, 3/*utf8 len*/},{0xd5f3/*gb2312*/, 0x9635/*utf16*/, {0xe9,0x98,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd5f4/*gb2312*/, 0x84b8/*utf16*/, {0xe8,0x92,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd5f5/*gb2312*/, 0x6323/*utf16*/, {0xe6,0x8c,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd5f6/*gb2312*/, 0x7741/*utf16*/, {0xe7,0x9d,0x81}/*utf8*/, 3/*utf8 len*/},{0xd5f7/*gb2312*/, 0x5f81/*utf16*/, {0xe5,0xbe,0x81}/*utf8*/, 3/*utf8 len*/},{0xd5f8/*gb2312*/, 0x72f0/*utf16*/, {0xe7,0x8b,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd5f9/*gb2312*/, 0x4e89/*utf16*/, {0xe4,0xba,0x89}/*utf8*/, 3/*utf8 len*/},{0xd5fa/*gb2312*/, 0x6014/*utf16*/, {0xe6,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xd5fb/*gb2312*/, 0x6574/*utf16*/, {0xe6,0x95,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd5fc/*gb2312*/, 0x62ef/*utf16*/, {0xe6,0x8b,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd5fd/*gb2312*/, 0x6b63/*utf16*/, {0xe6,0xad,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd5fe/*gb2312*/, 0x653f/*utf16*/, {0xe6,0x94,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd6a1/*gb2312*/, 0x5e27/*utf16*/, {0xe5,0xb8,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd6a2/*gb2312*/, 0x75c7/*utf16*/, {0xe7,0x97,0x87}/*utf8*/, 3/*utf8 len*/},{0xd6a3/*gb2312*/, 0x90d1/*utf16*/, {0xe9,0x83,0x91}/*utf8*/, 3/*utf8 len*/},{0xd6a4/*gb2312*/, 0x8bc1/*utf16*/, {0xe8,0xaf,0x81}/*utf8*/, 3/*utf8 len*/},{0xd6a5/*gb2312*/, 0x829d/*utf16*/, {0xe8,0x8a,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd6a6/*gb2312*/, 0x679d/*utf16*/, {0xe6,0x9e,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd6a7/*gb2312*/, 0x652f/*utf16*/, {0xe6,0x94,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd6a8/*gb2312*/, 0x5431/*utf16*/, {0xe5,0x90,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd6a9/*gb2312*/, 0x8718/*utf16*/, {0xe8,0x9c,0x98}/*utf8*/, 3/*utf8 len*/},{0xd6aa/*gb2312*/, 0x77e5/*utf16*/, {0xe7,0x9f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd6ab/*gb2312*/, 0x80a2/*utf16*/, {0xe8,0x82,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd6ac/*gb2312*/, 0x8102/*utf16*/, {0xe8,0x84,0x82}/*utf8*/, 3/*utf8 len*/},{0xd6ad/*gb2312*/, 0x6c41/*utf16*/, {0xe6,0xb1,0x81}/*utf8*/, 3/*utf8 len*/},{0xd6ae/*gb2312*/, 0x4e4b/*utf16*/, {0xe4,0xb9,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd6af/*gb2312*/, 0x7ec7/*utf16*/, {0xe7,0xbb,0x87}/*utf8*/, 3/*utf8 len*/},{0xd6b0/*gb2312*/, 0x804c/*utf16*/, {0xe8,0x81,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd6b1/*gb2312*/, 0x76f4/*utf16*/, {0xe7,0x9b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd6b2/*gb2312*/, 0x690d/*utf16*/, {0xe6,0xa4,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd6b3/*gb2312*/, 0x6b96/*utf16*/, {0xe6,0xae,0x96}/*utf8*/, 3/*utf8 len*/},{0xd6b4/*gb2312*/, 0x6267/*utf16*/, {0xe6,0x89,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd6b5/*gb2312*/, 0x503c/*utf16*/, {0xe5,0x80,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd6b6/*gb2312*/, 0x4f84/*utf16*/, {0xe4,0xbe,0x84}/*utf8*/, 3/*utf8 len*/},{0xd6b7/*gb2312*/, 0x5740/*utf16*/, {0xe5,0x9d,0x80}/*utf8*/, 3/*utf8 len*/},{0xd6b8/*gb2312*/, 0x6307/*utf16*/, {0xe6,0x8c,0x87}/*utf8*/, 3/*utf8 len*/},{0xd6b9/*gb2312*/, 0x6b62/*utf16*/, {0xe6,0xad,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd6ba/*gb2312*/, 0x8dbe/*utf16*/, {0xe8,0xb6,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd6bb/*gb2312*/, 0x53ea/*utf16*/, {0xe5,0x8f,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd6bc/*gb2312*/, 0x65e8/*utf16*/, {0xe6,0x97,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd6bd/*gb2312*/, 0x7eb8/*utf16*/, {0xe7,0xba,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd6be/*gb2312*/, 0x5fd7/*utf16*/, {0xe5,0xbf,0x97}/*utf8*/, 3/*utf8 len*/},{0xd6bf/*gb2312*/, 0x631a/*utf16*/, {0xe6,0x8c,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd6c0/*gb2312*/, 0x63b7/*utf16*/, {0xe6,0x8e,0xb7}/*utf8*/, 3/*utf8 len*/},{0xd6c1/*gb2312*/, 0x81f3/*utf16*/, {0xe8,0x87,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd6c2/*gb2312*/, 0x81f4/*utf16*/, {0xe8,0x87,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd6c3/*gb2312*/, 0x7f6e/*utf16*/, {0xe7,0xbd,0xae}/*utf8*/, 3/*utf8 len*/},{0xd6c4/*gb2312*/, 0x5e1c/*utf16*/, {0xe5,0xb8,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd6c5/*gb2312*/, 0x5cd9/*utf16*/, {0xe5,0xb3,0x99}/*utf8*/, 3/*utf8 len*/},{0xd6c6/*gb2312*/, 0x5236/*utf16*/, {0xe5,0x88,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd6c7/*gb2312*/, 0x667a/*utf16*/, {0xe6,0x99,0xba}/*utf8*/, 3/*utf8 len*/},{0xd6c8/*gb2312*/, 0x79e9/*utf16*/, {0xe7,0xa7,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd6c9/*gb2312*/, 0x7a1a/*utf16*/, {0xe7,0xa8,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd6ca/*gb2312*/, 0x8d28/*utf16*/, {0xe8,0xb4,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd6cb/*gb2312*/, 0x7099/*utf16*/, {0xe7,0x82,0x99}/*utf8*/, 3/*utf8 len*/},{0xd6cc/*gb2312*/, 0x75d4/*utf16*/, {0xe7,0x97,0x94}/*utf8*/, 3/*utf8 len*/},{0xd6cd/*gb2312*/, 0x6ede/*utf16*/, {0xe6,0xbb,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd6ce/*gb2312*/, 0x6cbb/*utf16*/, {0xe6,0xb2,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd6cf/*gb2312*/, 0x7a92/*utf16*/, {0xe7,0xaa,0x92}/*utf8*/, 3/*utf8 len*/},{0xd6d0/*gb2312*/, 0x4e2d/*utf16*/, {0xe4,0xb8,0xad}/*utf8*/, 3/*utf8 len*/},{0xd6d1/*gb2312*/, 0x76c5/*utf16*/, {0xe7,0x9b,0x85}/*utf8*/, 3/*utf8 len*/},{0xd6d2/*gb2312*/, 0x5fe0/*utf16*/, {0xe5,0xbf,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd6d3/*gb2312*/, 0x949f/*utf16*/, {0xe9,0x92,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd6d4/*gb2312*/, 0x8877/*utf16*/, {0xe8,0xa1,0xb7}/*utf8*/, 3/*utf8 len*/},{0xd6d5/*gb2312*/, 0x7ec8/*utf16*/, {0xe7,0xbb,0x88}/*utf8*/, 3/*utf8 len*/},{0xd6d6/*gb2312*/, 0x79cd/*utf16*/, {0xe7,0xa7,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd6d7/*gb2312*/, 0x80bf/*utf16*/, {0xe8,0x82,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd6d8/*gb2312*/, 0x91cd/*utf16*/, {0xe9,0x87,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd6d9/*gb2312*/, 0x4ef2/*utf16*/, {0xe4,0xbb,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd6da/*gb2312*/, 0x4f17/*utf16*/, {0xe4,0xbc,0x97}/*utf8*/, 3/*utf8 len*/},{0xd6db/*gb2312*/, 0x821f/*utf16*/, {0xe8,0x88,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd6dc/*gb2312*/, 0x5468/*utf16*/, {0xe5,0x91,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd6dd/*gb2312*/, 0x5dde/*utf16*/, {0xe5,0xb7,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd6de/*gb2312*/, 0x6d32/*utf16*/, {0xe6,0xb4,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd6df/*gb2312*/, 0x8bcc/*utf16*/, {0xe8,0xaf,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd6e0/*gb2312*/, 0x7ca5/*utf16*/, {0xe7,0xb2,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd6e1/*gb2312*/, 0x8f74/*utf16*/, {0xe8,0xbd,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd6e2/*gb2312*/, 0x8098/*utf16*/, {0xe8,0x82,0x98}/*utf8*/, 3/*utf8 len*/},{0xd6e3/*gb2312*/, 0x5e1a/*utf16*/, {0xe5,0xb8,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd6e4/*gb2312*/, 0x5492/*utf16*/, {0xe5,0x92,0x92}/*utf8*/, 3/*utf8 len*/},{0xd6e5/*gb2312*/, 0x76b1/*utf16*/, {0xe7,0x9a,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd6e6/*gb2312*/, 0x5b99/*utf16*/, {0xe5,0xae,0x99}/*utf8*/, 3/*utf8 len*/},{0xd6e7/*gb2312*/, 0x663c/*utf16*/, {0xe6,0x98,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd6e8/*gb2312*/, 0x9aa4/*utf16*/, {0xe9,0xaa,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd6e9/*gb2312*/, 0x73e0/*utf16*/, {0xe7,0x8f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd6ea/*gb2312*/, 0x682a/*utf16*/, {0xe6,0xa0,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd6eb/*gb2312*/, 0x86db/*utf16*/, {0xe8,0x9b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd6ec/*gb2312*/, 0x6731/*utf16*/, {0xe6,0x9c,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd6ed/*gb2312*/, 0x732a/*utf16*/, {0xe7,0x8c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd6ee/*gb2312*/, 0x8bf8/*utf16*/, {0xe8,0xaf,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd6ef/*gb2312*/, 0x8bdb/*utf16*/, {0xe8,0xaf,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd6f0/*gb2312*/, 0x9010/*utf16*/, {0xe9,0x80,0x90}/*utf8*/, 3/*utf8 len*/},{0xd6f1/*gb2312*/, 0x7af9/*utf16*/, {0xe7,0xab,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd6f2/*gb2312*/, 0x70db/*utf16*/, {0xe7,0x83,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd6f3/*gb2312*/, 0x716e/*utf16*/, {0xe7,0x85,0xae}/*utf8*/, 3/*utf8 len*/},{0xd6f4/*gb2312*/, 0x62c4/*utf16*/, {0xe6,0x8b,0x84}/*utf8*/, 3/*utf8 len*/},{0xd6f5/*gb2312*/, 0x77a9/*utf16*/, {0xe7,0x9e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd6f6/*gb2312*/, 0x5631/*utf16*/, {0xe5,0x98,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd6f7/*gb2312*/, 0x4e3b/*utf16*/, {0xe4,0xb8,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd6f8/*gb2312*/, 0x8457/*utf16*/, {0xe8,0x91,0x97}/*utf8*/, 3/*utf8 len*/},{0xd6f9/*gb2312*/, 0x67f1/*utf16*/, {0xe6,0x9f,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd6fa/*gb2312*/, 0x52a9/*utf16*/, {0xe5,0x8a,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd6fb/*gb2312*/, 0x86c0/*utf16*/, {0xe8,0x9b,0x80}/*utf8*/, 3/*utf8 len*/},{0xd6fc/*gb2312*/, 0x8d2e/*utf16*/, {0xe8,0xb4,0xae}/*utf8*/, 3/*utf8 len*/},{0xd6fd/*gb2312*/, 0x94f8/*utf16*/, {0xe9,0x93,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd6fe/*gb2312*/, 0x7b51/*utf16*/, {0xe7,0xad,0x91}/*utf8*/, 3/*utf8 len*/},{0xd7a1/*gb2312*/, 0x4f4f/*utf16*/, {0xe4,0xbd,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd7a2/*gb2312*/, 0x6ce8/*utf16*/, {0xe6,0xb3,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd7a3/*gb2312*/, 0x795d/*utf16*/, {0xe7,0xa5,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd7a4/*gb2312*/, 0x9a7b/*utf16*/, {0xe9,0xa9,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd7a5/*gb2312*/, 0x6293/*utf16*/, {0xe6,0x8a,0x93}/*utf8*/, 3/*utf8 len*/},{0xd7a6/*gb2312*/, 0x722a/*utf16*/, {0xe7,0x88,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd7a7/*gb2312*/, 0x62fd/*utf16*/, {0xe6,0x8b,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd7a8/*gb2312*/, 0x4e13/*utf16*/, {0xe4,0xb8,0x93}/*utf8*/, 3/*utf8 len*/},{0xd7a9/*gb2312*/, 0x7816/*utf16*/, {0xe7,0xa0,0x96}/*utf8*/, 3/*utf8 len*/},{0xd7aa/*gb2312*/, 0x8f6c/*utf16*/, {0xe8,0xbd,0xac}/*utf8*/, 3/*utf8 len*/},{0xd7ab/*gb2312*/, 0x64b0/*utf16*/, {0xe6,0x92,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd7ac/*gb2312*/, 0x8d5a/*utf16*/, {0xe8,0xb5,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd7ad/*gb2312*/, 0x7bc6/*utf16*/, {0xe7,0xaf,0x86}/*utf8*/, 3/*utf8 len*/},{0xd7ae/*gb2312*/, 0x6869/*utf16*/, {0xe6,0xa1,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd7af/*gb2312*/, 0x5e84/*utf16*/, {0xe5,0xba,0x84}/*utf8*/, 3/*utf8 len*/},{0xd7b0/*gb2312*/, 0x88c5/*utf16*/, {0xe8,0xa3,0x85}/*utf8*/, 3/*utf8 len*/},{0xd7b1/*gb2312*/, 0x5986/*utf16*/, {0xe5,0xa6,0x86}/*utf8*/, 3/*utf8 len*/},{0xd7b2/*gb2312*/, 0x649e/*utf16*/, {0xe6,0x92,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd7b3/*gb2312*/, 0x58ee/*utf16*/, {0xe5,0xa3,0xae}/*utf8*/, 3/*utf8 len*/},{0xd7b4/*gb2312*/, 0x72b6/*utf16*/, {0xe7,0x8a,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd7b5/*gb2312*/, 0x690e/*utf16*/, {0xe6,0xa4,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd7b6/*gb2312*/, 0x9525/*utf16*/, {0xe9,0x94,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd7b7/*gb2312*/, 0x8ffd/*utf16*/, {0xe8,0xbf,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd7b8/*gb2312*/, 0x8d58/*utf16*/, {0xe8,0xb5,0x98}/*utf8*/, 3/*utf8 len*/},{0xd7b9/*gb2312*/, 0x5760/*utf16*/, {0xe5,0x9d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd7ba/*gb2312*/, 0x7f00/*utf16*/, {0xe7,0xbc,0x80}/*utf8*/, 3/*utf8 len*/},{0xd7bb/*gb2312*/, 0x8c06/*utf16*/, {0xe8,0xb0,0x86}/*utf8*/, 3/*utf8 len*/},{0xd7bc/*gb2312*/, 0x51c6/*utf16*/, {0xe5,0x87,0x86}/*utf8*/, 3/*utf8 len*/},{0xd7bd/*gb2312*/, 0x6349/*utf16*/, {0xe6,0x8d,0x89}/*utf8*/, 3/*utf8 len*/},{0xd7be/*gb2312*/, 0x62d9/*utf16*/, {0xe6,0x8b,0x99}/*utf8*/, 3/*utf8 len*/},{0xd7bf/*gb2312*/, 0x5353/*utf16*/, {0xe5,0x8d,0x93}/*utf8*/, 3/*utf8 len*/},{0xd7c0/*gb2312*/, 0x684c/*utf16*/, {0xe6,0xa1,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd7c1/*gb2312*/, 0x7422/*utf16*/, {0xe7,0x90,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd7c2/*gb2312*/, 0x8301/*utf16*/, {0xe8,0x8c,0x81}/*utf8*/, 3/*utf8 len*/},{0xd7c3/*gb2312*/, 0x914c/*utf16*/, {0xe9,0x85,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd7c4/*gb2312*/, 0x5544/*utf16*/, {0xe5,0x95,0x84}/*utf8*/, 3/*utf8 len*/},{0xd7c5/*gb2312*/, 0x7740/*utf16*/, {0xe7,0x9d,0x80}/*utf8*/, 3/*utf8 len*/},{0xd7c6/*gb2312*/, 0x707c/*utf16*/, {0xe7,0x81,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd7c7/*gb2312*/, 0x6d4a/*utf16*/, {0xe6,0xb5,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd7c8/*gb2312*/, 0x5179/*utf16*/, {0xe5,0x85,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd7c9/*gb2312*/, 0x54a8/*utf16*/, {0xe5,0x92,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd7ca/*gb2312*/, 0x8d44/*utf16*/, {0xe8,0xb5,0x84}/*utf8*/, 3/*utf8 len*/},{0xd7cb/*gb2312*/, 0x59ff/*utf16*/, {0xe5,0xa7,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd7cc/*gb2312*/, 0x6ecb/*utf16*/, {0xe6,0xbb,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd7cd/*gb2312*/, 0x6dc4/*utf16*/, {0xe6,0xb7,0x84}/*utf8*/, 3/*utf8 len*/},{0xd7ce/*gb2312*/, 0x5b5c/*utf16*/, {0xe5,0xad,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd7cf/*gb2312*/, 0x7d2b/*utf16*/, {0xe7,0xb4,0xab}/*utf8*/, 3/*utf8 len*/},{0xd7d0/*gb2312*/, 0x4ed4/*utf16*/, {0xe4,0xbb,0x94}/*utf8*/, 3/*utf8 len*/},{0xd7d1/*gb2312*/, 0x7c7d/*utf16*/, {0xe7,0xb1,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd7d2/*gb2312*/, 0x6ed3/*utf16*/, {0xe6,0xbb,0x93}/*utf8*/, 3/*utf8 len*/},{0xd7d3/*gb2312*/, 0x5b50/*utf16*/, {0xe5,0xad,0x90}/*utf8*/, 3/*utf8 len*/},{0xd7d4/*gb2312*/, 0x81ea/*utf16*/, {0xe8,0x87,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd7d5/*gb2312*/, 0x6e0d/*utf16*/, {0xe6,0xb8,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd7d6/*gb2312*/, 0x5b57/*utf16*/, {0xe5,0xad,0x97}/*utf8*/, 3/*utf8 len*/},{0xd7d7/*gb2312*/, 0x9b03/*utf16*/, {0xe9,0xac,0x83}/*utf8*/, 3/*utf8 len*/},{0xd7d8/*gb2312*/, 0x68d5/*utf16*/, {0xe6,0xa3,0x95}/*utf8*/, 3/*utf8 len*/},{0xd7d9/*gb2312*/, 0x8e2a/*utf16*/, {0xe8,0xb8,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd7da/*gb2312*/, 0x5b97/*utf16*/, {0xe5,0xae,0x97}/*utf8*/, 3/*utf8 len*/},{0xd7db/*gb2312*/, 0x7efc/*utf16*/, {0xe7,0xbb,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd7dc/*gb2312*/, 0x603b/*utf16*/, {0xe6,0x80,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd7dd/*gb2312*/, 0x7eb5/*utf16*/, {0xe7,0xba,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd7de/*gb2312*/, 0x90b9/*utf16*/, {0xe9,0x82,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd7df/*gb2312*/, 0x8d70/*utf16*/, {0xe8,0xb5,0xb0}/*utf8*/, 3/*utf8 len*/},{0xd7e0/*gb2312*/, 0x594f/*utf16*/, {0xe5,0xa5,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd7e1/*gb2312*/, 0x63cd/*utf16*/, {0xe6,0x8f,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd7e2/*gb2312*/, 0x79df/*utf16*/, {0xe7,0xa7,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd7e3/*gb2312*/, 0x8db3/*utf16*/, {0xe8,0xb6,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd7e4/*gb2312*/, 0x5352/*utf16*/, {0xe5,0x8d,0x92}/*utf8*/, 3/*utf8 len*/},{0xd7e5/*gb2312*/, 0x65cf/*utf16*/, {0xe6,0x97,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd7e6/*gb2312*/, 0x7956/*utf16*/, {0xe7,0xa5,0x96}/*utf8*/, 3/*utf8 len*/},{0xd7e7/*gb2312*/, 0x8bc5/*utf16*/, {0xe8,0xaf,0x85}/*utf8*/, 3/*utf8 len*/},{0xd7e8/*gb2312*/, 0x963b/*utf16*/, {0xe9,0x98,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd7e9/*gb2312*/, 0x7ec4/*utf16*/, {0xe7,0xbb,0x84}/*utf8*/, 3/*utf8 len*/},{0xd7ea/*gb2312*/, 0x94bb/*utf16*/, {0xe9,0x92,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd7eb/*gb2312*/, 0x7e82/*utf16*/, {0xe7,0xba,0x82}/*utf8*/, 3/*utf8 len*/},{0xd7ec/*gb2312*/, 0x5634/*utf16*/, {0xe5,0x98,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd7ed/*gb2312*/, 0x9189/*utf16*/, {0xe9,0x86,0x89}/*utf8*/, 3/*utf8 len*/},{0xd7ee/*gb2312*/, 0x6700/*utf16*/, {0xe6,0x9c,0x80}/*utf8*/, 3/*utf8 len*/},{0xd7ef/*gb2312*/, 0x7f6a/*utf16*/, {0xe7,0xbd,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd7f0/*gb2312*/, 0x5c0a/*utf16*/, {0xe5,0xb0,0x8a}/*utf8*/, 3/*utf8 len*/},{0xd7f1/*gb2312*/, 0x9075/*utf16*/, {0xe9,0x81,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd7f2/*gb2312*/, 0x6628/*utf16*/, {0xe6,0x98,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd7f3/*gb2312*/, 0x5de6/*utf16*/, {0xe5,0xb7,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd7f4/*gb2312*/, 0x4f50/*utf16*/, {0xe4,0xbd,0x90}/*utf8*/, 3/*utf8 len*/},{0xd7f5/*gb2312*/, 0x67de/*utf16*/, {0xe6,0x9f,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd7f6/*gb2312*/, 0x505a/*utf16*/, {0xe5,0x81,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd7f7/*gb2312*/, 0x4f5c/*utf16*/, {0xe4,0xbd,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd7f8/*gb2312*/, 0x5750/*utf16*/, {0xe5,0x9d,0x90}/*utf8*/, 3/*utf8 len*/},{0xd7f9/*gb2312*/, 0x5ea7/*utf16*/, {0xe5,0xba,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd7fa/*gb2312*/, 0xe810/*utf16*/, {0xee,0xa0,0x90}/*utf8*/, 3/*utf8 len*/},{0xd7fb/*gb2312*/, 0xe811/*utf16*/, {0xee,0xa0,0x91}/*utf8*/, 3/*utf8 len*/},{0xd7fc/*gb2312*/, 0xe812/*utf16*/, {0xee,0xa0,0x92}/*utf8*/, 3/*utf8 len*/},{0xd7fd/*gb2312*/, 0xe813/*utf16*/, {0xee,0xa0,0x93}/*utf8*/, 3/*utf8 len*/},{0xd7fe/*gb2312*/, 0xe814/*utf16*/, {0xee,0xa0,0x94}/*utf8*/, 3/*utf8 len*/},{0xd8a1/*gb2312*/, 0x4e8d/*utf16*/, {0xe4,0xba,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd8a2/*gb2312*/, 0x4e0c/*utf16*/, {0xe4,0xb8,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd8a3/*gb2312*/, 0x5140/*utf16*/, {0xe5,0x85,0x80}/*utf8*/, 3/*utf8 len*/},{0xd8a4/*gb2312*/, 0x4e10/*utf16*/, {0xe4,0xb8,0x90}/*utf8*/, 3/*utf8 len*/},{0xd8a5/*gb2312*/, 0x5eff/*utf16*/, {0xe5,0xbb,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd8a6/*gb2312*/, 0x5345/*utf16*/, {0xe5,0x8d,0x85}/*utf8*/, 3/*utf8 len*/},{0xd8a7/*gb2312*/, 0x4e15/*utf16*/, {0xe4,0xb8,0x95}/*utf8*/, 3/*utf8 len*/},{0xd8a8/*gb2312*/, 0x4e98/*utf16*/, {0xe4,0xba,0x98}/*utf8*/, 3/*utf8 len*/},{0xd8a9/*gb2312*/, 0x4e1e/*utf16*/, {0xe4,0xb8,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd8aa/*gb2312*/, 0x9b32/*utf16*/, {0xe9,0xac,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd8ab/*gb2312*/, 0x5b6c/*utf16*/, {0xe5,0xad,0xac}/*utf8*/, 3/*utf8 len*/},{0xd8ac/*gb2312*/, 0x5669/*utf16*/, {0xe5,0x99,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd8ad/*gb2312*/, 0x4e28/*utf16*/, {0xe4,0xb8,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd8ae/*gb2312*/, 0x79ba/*utf16*/, {0xe7,0xa6,0xba}/*utf8*/, 3/*utf8 len*/},{0xd8af/*gb2312*/, 0x4e3f/*utf16*/, {0xe4,0xb8,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd8b0/*gb2312*/, 0x5315/*utf16*/, {0xe5,0x8c,0x95}/*utf8*/, 3/*utf8 len*/},{0xd8b1/*gb2312*/, 0x4e47/*utf16*/, {0xe4,0xb9,0x87}/*utf8*/, 3/*utf8 len*/},{0xd8b2/*gb2312*/, 0x592d/*utf16*/, {0xe5,0xa4,0xad}/*utf8*/, 3/*utf8 len*/},{0xd8b3/*gb2312*/, 0x723b/*utf16*/, {0xe7,0x88,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd8b4/*gb2312*/, 0x536e/*utf16*/, {0xe5,0x8d,0xae}/*utf8*/, 3/*utf8 len*/},{0xd8b5/*gb2312*/, 0x6c10/*utf16*/, {0xe6,0xb0,0x90}/*utf8*/, 3/*utf8 len*/},{0xd8b6/*gb2312*/, 0x56df/*utf16*/, {0xe5,0x9b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd8b7/*gb2312*/, 0x80e4/*utf16*/, {0xe8,0x83,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd8b8/*gb2312*/, 0x9997/*utf16*/, {0xe9,0xa6,0x97}/*utf8*/, 3/*utf8 len*/},{0xd8b9/*gb2312*/, 0x6bd3/*utf16*/, {0xe6,0xaf,0x93}/*utf8*/, 3/*utf8 len*/},{0xd8ba/*gb2312*/, 0x777e/*utf16*/, {0xe7,0x9d,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd8bb/*gb2312*/, 0x9f17/*utf16*/, {0xe9,0xbc,0x97}/*utf8*/, 3/*utf8 len*/},{0xd8bc/*gb2312*/, 0x4e36/*utf16*/, {0xe4,0xb8,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd8bd/*gb2312*/, 0x4e9f/*utf16*/, {0xe4,0xba,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd8be/*gb2312*/, 0x9f10/*utf16*/, {0xe9,0xbc,0x90}/*utf8*/, 3/*utf8 len*/},{0xd8bf/*gb2312*/, 0x4e5c/*utf16*/, {0xe4,0xb9,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd8c0/*gb2312*/, 0x4e69/*utf16*/, {0xe4,0xb9,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd8c1/*gb2312*/, 0x4e93/*utf16*/, {0xe4,0xba,0x93}/*utf8*/, 3/*utf8 len*/},{0xd8c2/*gb2312*/, 0x8288/*utf16*/, {0xe8,0x8a,0x88}/*utf8*/, 3/*utf8 len*/},{0xd8c3/*gb2312*/, 0x5b5b/*utf16*/, {0xe5,0xad,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd8c4/*gb2312*/, 0x556c/*utf16*/, {0xe5,0x95,0xac}/*utf8*/, 3/*utf8 len*/},{0xd8c5/*gb2312*/, 0x560f/*utf16*/, {0xe5,0x98,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd8c6/*gb2312*/, 0x4ec4/*utf16*/, {0xe4,0xbb,0x84}/*utf8*/, 3/*utf8 len*/},{0xd8c7/*gb2312*/, 0x538d/*utf16*/, {0xe5,0x8e,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd8c8/*gb2312*/, 0x539d/*utf16*/, {0xe5,0x8e,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd8c9/*gb2312*/, 0x53a3/*utf16*/, {0xe5,0x8e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd8ca/*gb2312*/, 0x53a5/*utf16*/, {0xe5,0x8e,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd8cb/*gb2312*/, 0x53ae/*utf16*/, {0xe5,0x8e,0xae}/*utf8*/, 3/*utf8 len*/},{0xd8cc/*gb2312*/, 0x9765/*utf16*/, {0xe9,0x9d,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd8cd/*gb2312*/, 0x8d5d/*utf16*/, {0xe8,0xb5,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd8ce/*gb2312*/, 0x531a/*utf16*/, {0xe5,0x8c,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd8cf/*gb2312*/, 0x53f5/*utf16*/, {0xe5,0x8f,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd8d0/*gb2312*/, 0x5326/*utf16*/, {0xe5,0x8c,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd8d1/*gb2312*/, 0x532e/*utf16*/, {0xe5,0x8c,0xae}/*utf8*/, 3/*utf8 len*/},{0xd8d2/*gb2312*/, 0x533e/*utf16*/, {0xe5,0x8c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd8d3/*gb2312*/, 0x8d5c/*utf16*/, {0xe8,0xb5,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd8d4/*gb2312*/, 0x5366/*utf16*/, {0xe5,0x8d,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd8d5/*gb2312*/, 0x5363/*utf16*/, {0xe5,0x8d,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd8d6/*gb2312*/, 0x5202/*utf16*/, {0xe5,0x88,0x82}/*utf8*/, 3/*utf8 len*/},{0xd8d7/*gb2312*/, 0x5208/*utf16*/, {0xe5,0x88,0x88}/*utf8*/, 3/*utf8 len*/},{0xd8d8/*gb2312*/, 0x520e/*utf16*/, {0xe5,0x88,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd8d9/*gb2312*/, 0x522d/*utf16*/, {0xe5,0x88,0xad}/*utf8*/, 3/*utf8 len*/},{0xd8da/*gb2312*/, 0x5233/*utf16*/, {0xe5,0x88,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd8db/*gb2312*/, 0x523f/*utf16*/, {0xe5,0x88,0xbf}/*utf8*/, 3/*utf8 len*/},{0xd8dc/*gb2312*/, 0x5240/*utf16*/, {0xe5,0x89,0x80}/*utf8*/, 3/*utf8 len*/},{0xd8dd/*gb2312*/, 0x524c/*utf16*/, {0xe5,0x89,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd8de/*gb2312*/, 0x525e/*utf16*/, {0xe5,0x89,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd8df/*gb2312*/, 0x5261/*utf16*/, {0xe5,0x89,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd8e0/*gb2312*/, 0x525c/*utf16*/, {0xe5,0x89,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd8e1/*gb2312*/, 0x84af/*utf16*/, {0xe8,0x92,0xaf}/*utf8*/, 3/*utf8 len*/},{0xd8e2/*gb2312*/, 0x527d/*utf16*/, {0xe5,0x89,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd8e3/*gb2312*/, 0x5282/*utf16*/, {0xe5,0x8a,0x82}/*utf8*/, 3/*utf8 len*/},{0xd8e4/*gb2312*/, 0x5281/*utf16*/, {0xe5,0x8a,0x81}/*utf8*/, 3/*utf8 len*/},{0xd8e5/*gb2312*/, 0x5290/*utf16*/, {0xe5,0x8a,0x90}/*utf8*/, 3/*utf8 len*/},{0xd8e6/*gb2312*/, 0x5293/*utf16*/, {0xe5,0x8a,0x93}/*utf8*/, 3/*utf8 len*/},{0xd8e7/*gb2312*/, 0x5182/*utf16*/, {0xe5,0x86,0x82}/*utf8*/, 3/*utf8 len*/},{0xd8e8/*gb2312*/, 0x7f54/*utf16*/, {0xe7,0xbd,0x94}/*utf8*/, 3/*utf8 len*/},{0xd8e9/*gb2312*/, 0x4ebb/*utf16*/, {0xe4,0xba,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd8ea/*gb2312*/, 0x4ec3/*utf16*/, {0xe4,0xbb,0x83}/*utf8*/, 3/*utf8 len*/},{0xd8eb/*gb2312*/, 0x4ec9/*utf16*/, {0xe4,0xbb,0x89}/*utf8*/, 3/*utf8 len*/},{0xd8ec/*gb2312*/, 0x4ec2/*utf16*/, {0xe4,0xbb,0x82}/*utf8*/, 3/*utf8 len*/},{0xd8ed/*gb2312*/, 0x4ee8/*utf16*/, {0xe4,0xbb,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd8ee/*gb2312*/, 0x4ee1/*utf16*/, {0xe4,0xbb,0xa1}/*utf8*/, 3/*utf8 len*/},{0xd8ef/*gb2312*/, 0x4eeb/*utf16*/, {0xe4,0xbb,0xab}/*utf8*/, 3/*utf8 len*/},{0xd8f0/*gb2312*/, 0x4ede/*utf16*/, {0xe4,0xbb,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd8f1/*gb2312*/, 0x4f1b/*utf16*/, {0xe4,0xbc,0x9b}/*utf8*/, 3/*utf8 len*/},{0xd8f2/*gb2312*/, 0x4ef3/*utf16*/, {0xe4,0xbb,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd8f3/*gb2312*/, 0x4f22/*utf16*/, {0xe4,0xbc,0xa2}/*utf8*/, 3/*utf8 len*/},{0xd8f4/*gb2312*/, 0x4f64/*utf16*/, {0xe4,0xbd,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd8f5/*gb2312*/, 0x4ef5/*utf16*/, {0xe4,0xbb,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd8f6/*gb2312*/, 0x4f25/*utf16*/, {0xe4,0xbc,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd8f7/*gb2312*/, 0x4f27/*utf16*/, {0xe4,0xbc,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd8f8/*gb2312*/, 0x4f09/*utf16*/, {0xe4,0xbc,0x89}/*utf8*/, 3/*utf8 len*/},{0xd8f9/*gb2312*/, 0x4f2b/*utf16*/, {0xe4,0xbc,0xab}/*utf8*/, 3/*utf8 len*/},{0xd8fa/*gb2312*/, 0x4f5e/*utf16*/, {0xe4,0xbd,0x9e}/*utf8*/, 3/*utf8 len*/},{0xd8fb/*gb2312*/, 0x4f67/*utf16*/, {0xe4,0xbd,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd8fc/*gb2312*/, 0x6538/*utf16*/, {0xe6,0x94,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd8fd/*gb2312*/, 0x4f5a/*utf16*/, {0xe4,0xbd,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd8fe/*gb2312*/, 0x4f5d/*utf16*/, {0xe4,0xbd,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd9a1/*gb2312*/, 0x4f5f/*utf16*/, {0xe4,0xbd,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd9a2/*gb2312*/, 0x4f57/*utf16*/, {0xe4,0xbd,0x97}/*utf8*/, 3/*utf8 len*/},{0xd9a3/*gb2312*/, 0x4f32/*utf16*/, {0xe4,0xbc,0xb2}/*utf8*/, 3/*utf8 len*/},{0xd9a4/*gb2312*/, 0x4f3d/*utf16*/, {0xe4,0xbc,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd9a5/*gb2312*/, 0x4f76/*utf16*/, {0xe4,0xbd,0xb6}/*utf8*/, 3/*utf8 len*/},{0xd9a6/*gb2312*/, 0x4f74/*utf16*/, {0xe4,0xbd,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd9a7/*gb2312*/, 0x4f91/*utf16*/, {0xe4,0xbe,0x91}/*utf8*/, 3/*utf8 len*/},{0xd9a8/*gb2312*/, 0x4f89/*utf16*/, {0xe4,0xbe,0x89}/*utf8*/, 3/*utf8 len*/},{0xd9a9/*gb2312*/, 0x4f83/*utf16*/, {0xe4,0xbe,0x83}/*utf8*/, 3/*utf8 len*/},{0xd9aa/*gb2312*/, 0x4f8f/*utf16*/, {0xe4,0xbe,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd9ab/*gb2312*/, 0x4f7e/*utf16*/, {0xe4,0xbd,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd9ac/*gb2312*/, 0x4f7b/*utf16*/, {0xe4,0xbd,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd9ad/*gb2312*/, 0x4faa/*utf16*/, {0xe4,0xbe,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd9ae/*gb2312*/, 0x4f7c/*utf16*/, {0xe4,0xbd,0xbc}/*utf8*/, 3/*utf8 len*/},{0xd9af/*gb2312*/, 0x4fac/*utf16*/, {0xe4,0xbe,0xac}/*utf8*/, 3/*utf8 len*/},{0xd9b0/*gb2312*/, 0x4f94/*utf16*/, {0xe4,0xbe,0x94}/*utf8*/, 3/*utf8 len*/},{0xd9b1/*gb2312*/, 0x4fe6/*utf16*/, {0xe4,0xbf,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd9b2/*gb2312*/, 0x4fe8/*utf16*/, {0xe4,0xbf,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd9b3/*gb2312*/, 0x4fea/*utf16*/, {0xe4,0xbf,0xaa}/*utf8*/, 3/*utf8 len*/},{0xd9b4/*gb2312*/, 0x4fc5/*utf16*/, {0xe4,0xbf,0x85}/*utf8*/, 3/*utf8 len*/},{0xd9b5/*gb2312*/, 0x4fda/*utf16*/, {0xe4,0xbf,0x9a}/*utf8*/, 3/*utf8 len*/},{0xd9b6/*gb2312*/, 0x4fe3/*utf16*/, {0xe4,0xbf,0xa3}/*utf8*/, 3/*utf8 len*/},{0xd9b7/*gb2312*/, 0x4fdc/*utf16*/, {0xe4,0xbf,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd9b8/*gb2312*/, 0x4fd1/*utf16*/, {0xe4,0xbf,0x91}/*utf8*/, 3/*utf8 len*/},{0xd9b9/*gb2312*/, 0x4fdf/*utf16*/, {0xe4,0xbf,0x9f}/*utf8*/, 3/*utf8 len*/},{0xd9ba/*gb2312*/, 0x4ff8/*utf16*/, {0xe4,0xbf,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd9bb/*gb2312*/, 0x5029/*utf16*/, {0xe5,0x80,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd9bc/*gb2312*/, 0x504c/*utf16*/, {0xe5,0x81,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd9bd/*gb2312*/, 0x4ff3/*utf16*/, {0xe4,0xbf,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd9be/*gb2312*/, 0x502c/*utf16*/, {0xe5,0x80,0xac}/*utf8*/, 3/*utf8 len*/},{0xd9bf/*gb2312*/, 0x500f/*utf16*/, {0xe5,0x80,0x8f}/*utf8*/, 3/*utf8 len*/},{0xd9c0/*gb2312*/, 0x502e/*utf16*/, {0xe5,0x80,0xae}/*utf8*/, 3/*utf8 len*/},{0xd9c1/*gb2312*/, 0x502d/*utf16*/, {0xe5,0x80,0xad}/*utf8*/, 3/*utf8 len*/},{0xd9c2/*gb2312*/, 0x4ffe/*utf16*/, {0xe4,0xbf,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd9c3/*gb2312*/, 0x501c/*utf16*/, {0xe5,0x80,0x9c}/*utf8*/, 3/*utf8 len*/},{0xd9c4/*gb2312*/, 0x500c/*utf16*/, {0xe5,0x80,0x8c}/*utf8*/, 3/*utf8 len*/},{0xd9c5/*gb2312*/, 0x5025/*utf16*/, {0xe5,0x80,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd9c6/*gb2312*/, 0x5028/*utf16*/, {0xe5,0x80,0xa8}/*utf8*/, 3/*utf8 len*/},{0xd9c7/*gb2312*/, 0x507e/*utf16*/, {0xe5,0x81,0xbe}/*utf8*/, 3/*utf8 len*/},{0xd9c8/*gb2312*/, 0x5043/*utf16*/, {0xe5,0x81,0x83}/*utf8*/, 3/*utf8 len*/},{0xd9c9/*gb2312*/, 0x5055/*utf16*/, {0xe5,0x81,0x95}/*utf8*/, 3/*utf8 len*/},{0xd9ca/*gb2312*/, 0x5048/*utf16*/, {0xe5,0x81,0x88}/*utf8*/, 3/*utf8 len*/},{0xd9cb/*gb2312*/, 0x504e/*utf16*/, {0xe5,0x81,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd9cc/*gb2312*/, 0x506c/*utf16*/, {0xe5,0x81,0xac}/*utf8*/, 3/*utf8 len*/},{0xd9cd/*gb2312*/, 0x507b/*utf16*/, {0xe5,0x81,0xbb}/*utf8*/, 3/*utf8 len*/},{0xd9ce/*gb2312*/, 0x50a5/*utf16*/, {0xe5,0x82,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd9cf/*gb2312*/, 0x50a7/*utf16*/, {0xe5,0x82,0xa7}/*utf8*/, 3/*utf8 len*/},{0xd9d0/*gb2312*/, 0x50a9/*utf16*/, {0xe5,0x82,0xa9}/*utf8*/, 3/*utf8 len*/},{0xd9d1/*gb2312*/, 0x50ba/*utf16*/, {0xe5,0x82,0xba}/*utf8*/, 3/*utf8 len*/},{0xd9d2/*gb2312*/, 0x50d6/*utf16*/, {0xe5,0x83,0x96}/*utf8*/, 3/*utf8 len*/},{0xd9d3/*gb2312*/, 0x5106/*utf16*/, {0xe5,0x84,0x86}/*utf8*/, 3/*utf8 len*/},{0xd9d4/*gb2312*/, 0x50ed/*utf16*/, {0xe5,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xd9d5/*gb2312*/, 0x50ec/*utf16*/, {0xe5,0x83,0xac}/*utf8*/, 3/*utf8 len*/},{0xd9d6/*gb2312*/, 0x50e6/*utf16*/, {0xe5,0x83,0xa6}/*utf8*/, 3/*utf8 len*/},{0xd9d7/*gb2312*/, 0x50ee/*utf16*/, {0xe5,0x83,0xae}/*utf8*/, 3/*utf8 len*/},{0xd9d8/*gb2312*/, 0x5107/*utf16*/, {0xe5,0x84,0x87}/*utf8*/, 3/*utf8 len*/},{0xd9d9/*gb2312*/, 0x510b/*utf16*/, {0xe5,0x84,0x8b}/*utf8*/, 3/*utf8 len*/},{0xd9da/*gb2312*/, 0x4edd/*utf16*/, {0xe4,0xbb,0x9d}/*utf8*/, 3/*utf8 len*/},{0xd9db/*gb2312*/, 0x6c3d/*utf16*/, {0xe6,0xb0,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd9dc/*gb2312*/, 0x4f58/*utf16*/, {0xe4,0xbd,0x98}/*utf8*/, 3/*utf8 len*/},{0xd9dd/*gb2312*/, 0x4f65/*utf16*/, {0xe4,0xbd,0xa5}/*utf8*/, 3/*utf8 len*/},{0xd9de/*gb2312*/, 0x4fce/*utf16*/, {0xe4,0xbf,0x8e}/*utf8*/, 3/*utf8 len*/},{0xd9df/*gb2312*/, 0x9fa0/*utf16*/, {0xe9,0xbe,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd9e0/*gb2312*/, 0x6c46/*utf16*/, {0xe6,0xb1,0x86}/*utf8*/, 3/*utf8 len*/},{0xd9e1/*gb2312*/, 0x7c74/*utf16*/, {0xe7,0xb1,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd9e2/*gb2312*/, 0x516e/*utf16*/, {0xe5,0x85,0xae}/*utf8*/, 3/*utf8 len*/},{0xd9e3/*gb2312*/, 0x5dfd/*utf16*/, {0xe5,0xb7,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd9e4/*gb2312*/, 0x9ec9/*utf16*/, {0xe9,0xbb,0x89}/*utf8*/, 3/*utf8 len*/},{0xd9e5/*gb2312*/, 0x9998/*utf16*/, {0xe9,0xa6,0x98}/*utf8*/, 3/*utf8 len*/},{0xd9e6/*gb2312*/, 0x5181/*utf16*/, {0xe5,0x86,0x81}/*utf8*/, 3/*utf8 len*/},{0xd9e7/*gb2312*/, 0x5914/*utf16*/, {0xe5,0xa4,0x94}/*utf8*/, 3/*utf8 len*/},{0xd9e8/*gb2312*/, 0x52f9/*utf16*/, {0xe5,0x8b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xd9e9/*gb2312*/, 0x530d/*utf16*/, {0xe5,0x8c,0x8d}/*utf8*/, 3/*utf8 len*/},{0xd9ea/*gb2312*/, 0x8a07/*utf16*/, {0xe8,0xa8,0x87}/*utf8*/, 3/*utf8 len*/},{0xd9eb/*gb2312*/, 0x5310/*utf16*/, {0xe5,0x8c,0x90}/*utf8*/, 3/*utf8 len*/},{0xd9ec/*gb2312*/, 0x51eb/*utf16*/, {0xe5,0x87,0xab}/*utf8*/, 3/*utf8 len*/},{0xd9ed/*gb2312*/, 0x5919/*utf16*/, {0xe5,0xa4,0x99}/*utf8*/, 3/*utf8 len*/},{0xd9ee/*gb2312*/, 0x5155/*utf16*/, {0xe5,0x85,0x95}/*utf8*/, 3/*utf8 len*/},{0xd9ef/*gb2312*/, 0x4ea0/*utf16*/, {0xe4,0xba,0xa0}/*utf8*/, 3/*utf8 len*/},{0xd9f0/*gb2312*/, 0x5156/*utf16*/, {0xe5,0x85,0x96}/*utf8*/, 3/*utf8 len*/},{0xd9f1/*gb2312*/, 0x4eb3/*utf16*/, {0xe4,0xba,0xb3}/*utf8*/, 3/*utf8 len*/},{0xd9f2/*gb2312*/, 0x886e/*utf16*/, {0xe8,0xa1,0xae}/*utf8*/, 3/*utf8 len*/},{0xd9f3/*gb2312*/, 0x88a4/*utf16*/, {0xe8,0xa2,0xa4}/*utf8*/, 3/*utf8 len*/},{0xd9f4/*gb2312*/, 0x4eb5/*utf16*/, {0xe4,0xba,0xb5}/*utf8*/, 3/*utf8 len*/},{0xd9f5/*gb2312*/, 0x8114/*utf16*/, {0xe8,0x84,0x94}/*utf8*/, 3/*utf8 len*/},{0xd9f6/*gb2312*/, 0x88d2/*utf16*/, {0xe8,0xa3,0x92}/*utf8*/, 3/*utf8 len*/},{0xd9f7/*gb2312*/, 0x7980/*utf16*/, {0xe7,0xa6,0x80}/*utf8*/, 3/*utf8 len*/},{0xd9f8/*gb2312*/, 0x5b34/*utf16*/, {0xe5,0xac,0xb4}/*utf8*/, 3/*utf8 len*/},{0xd9f9/*gb2312*/, 0x8803/*utf16*/, {0xe8,0xa0,0x83}/*utf8*/, 3/*utf8 len*/},{0xd9fa/*gb2312*/, 0x7fb8/*utf16*/, {0xe7,0xbe,0xb8}/*utf8*/, 3/*utf8 len*/},{0xd9fb/*gb2312*/, 0x51ab/*utf16*/, {0xe5,0x86,0xab}/*utf8*/, 3/*utf8 len*/},{0xd9fc/*gb2312*/, 0x51b1/*utf16*/, {0xe5,0x86,0xb1}/*utf8*/, 3/*utf8 len*/},{0xd9fd/*gb2312*/, 0x51bd/*utf16*/, {0xe5,0x86,0xbd}/*utf8*/, 3/*utf8 len*/},{0xd9fe/*gb2312*/, 0x51bc/*utf16*/, {0xe5,0x86,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdaa1/*gb2312*/, 0x51c7/*utf16*/, {0xe5,0x87,0x87}/*utf8*/, 3/*utf8 len*/},{0xdaa2/*gb2312*/, 0x5196/*utf16*/, {0xe5,0x86,0x96}/*utf8*/, 3/*utf8 len*/},{0xdaa3/*gb2312*/, 0x51a2/*utf16*/, {0xe5,0x86,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdaa4/*gb2312*/, 0x51a5/*utf16*/, {0xe5,0x86,0xa5}/*utf8*/, 3/*utf8 len*/},{0xdaa5/*gb2312*/, 0x8ba0/*utf16*/, {0xe8,0xae,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdaa6/*gb2312*/, 0x8ba6/*utf16*/, {0xe8,0xae,0xa6}/*utf8*/, 3/*utf8 len*/},{0xdaa7/*gb2312*/, 0x8ba7/*utf16*/, {0xe8,0xae,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdaa8/*gb2312*/, 0x8baa/*utf16*/, {0xe8,0xae,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdaa9/*gb2312*/, 0x8bb4/*utf16*/, {0xe8,0xae,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdaaa/*gb2312*/, 0x8bb5/*utf16*/, {0xe8,0xae,0xb5}/*utf8*/, 3/*utf8 len*/},{0xdaab/*gb2312*/, 0x8bb7/*utf16*/, {0xe8,0xae,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdaac/*gb2312*/, 0x8bc2/*utf16*/, {0xe8,0xaf,0x82}/*utf8*/, 3/*utf8 len*/},{0xdaad/*gb2312*/, 0x8bc3/*utf16*/, {0xe8,0xaf,0x83}/*utf8*/, 3/*utf8 len*/},{0xdaae/*gb2312*/, 0x8bcb/*utf16*/, {0xe8,0xaf,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdaaf/*gb2312*/, 0x8bcf/*utf16*/, {0xe8,0xaf,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdab0/*gb2312*/, 0x8bce/*utf16*/, {0xe8,0xaf,0x8e}/*utf8*/, 3/*utf8 len*/},{0xdab1/*gb2312*/, 0x8bd2/*utf16*/, {0xe8,0xaf,0x92}/*utf8*/, 3/*utf8 len*/},{0xdab2/*gb2312*/, 0x8bd3/*utf16*/, {0xe8,0xaf,0x93}/*utf8*/, 3/*utf8 len*/},{0xdab3/*gb2312*/, 0x8bd4/*utf16*/, {0xe8,0xaf,0x94}/*utf8*/, 3/*utf8 len*/},{0xdab4/*gb2312*/, 0x8bd6/*utf16*/, {0xe8,0xaf,0x96}/*utf8*/, 3/*utf8 len*/},{0xdab5/*gb2312*/, 0x8bd8/*utf16*/, {0xe8,0xaf,0x98}/*utf8*/, 3/*utf8 len*/},{0xdab6/*gb2312*/, 0x8bd9/*utf16*/, {0xe8,0xaf,0x99}/*utf8*/, 3/*utf8 len*/},{0xdab7/*gb2312*/, 0x8bdc/*utf16*/, {0xe8,0xaf,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdab8/*gb2312*/, 0x8bdf/*utf16*/, {0xe8,0xaf,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdab9/*gb2312*/, 0x8be0/*utf16*/, {0xe8,0xaf,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdaba/*gb2312*/, 0x8be4/*utf16*/, {0xe8,0xaf,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdabb/*gb2312*/, 0x8be8/*utf16*/, {0xe8,0xaf,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdabc/*gb2312*/, 0x8be9/*utf16*/, {0xe8,0xaf,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdabd/*gb2312*/, 0x8bee/*utf16*/, {0xe8,0xaf,0xae}/*utf8*/, 3/*utf8 len*/},{0xdabe/*gb2312*/, 0x8bf0/*utf16*/, {0xe8,0xaf,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdabf/*gb2312*/, 0x8bf3/*utf16*/, {0xe8,0xaf,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdac0/*gb2312*/, 0x8bf6/*utf16*/, {0xe8,0xaf,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdac1/*gb2312*/, 0x8bf9/*utf16*/, {0xe8,0xaf,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdac2/*gb2312*/, 0x8bfc/*utf16*/, {0xe8,0xaf,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdac3/*gb2312*/, 0x8bff/*utf16*/, {0xe8,0xaf,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdac4/*gb2312*/, 0x8c00/*utf16*/, {0xe8,0xb0,0x80}/*utf8*/, 3/*utf8 len*/},{0xdac5/*gb2312*/, 0x8c02/*utf16*/, {0xe8,0xb0,0x82}/*utf8*/, 3/*utf8 len*/},{0xdac6/*gb2312*/, 0x8c04/*utf16*/, {0xe8,0xb0,0x84}/*utf8*/, 3/*utf8 len*/},{0xdac7/*gb2312*/, 0x8c07/*utf16*/, {0xe8,0xb0,0x87}/*utf8*/, 3/*utf8 len*/},{0xdac8/*gb2312*/, 0x8c0c/*utf16*/, {0xe8,0xb0,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdac9/*gb2312*/, 0x8c0f/*utf16*/, {0xe8,0xb0,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdaca/*gb2312*/, 0x8c11/*utf16*/, {0xe8,0xb0,0x91}/*utf8*/, 3/*utf8 len*/},{0xdacb/*gb2312*/, 0x8c12/*utf16*/, {0xe8,0xb0,0x92}/*utf8*/, 3/*utf8 len*/},{0xdacc/*gb2312*/, 0x8c14/*utf16*/, {0xe8,0xb0,0x94}/*utf8*/, 3/*utf8 len*/},{0xdacd/*gb2312*/, 0x8c15/*utf16*/, {0xe8,0xb0,0x95}/*utf8*/, 3/*utf8 len*/},{0xdace/*gb2312*/, 0x8c16/*utf16*/, {0xe8,0xb0,0x96}/*utf8*/, 3/*utf8 len*/},{0xdacf/*gb2312*/, 0x8c19/*utf16*/, {0xe8,0xb0,0x99}/*utf8*/, 3/*utf8 len*/},{0xdad0/*gb2312*/, 0x8c1b/*utf16*/, {0xe8,0xb0,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdad1/*gb2312*/, 0x8c18/*utf16*/, {0xe8,0xb0,0x98}/*utf8*/, 3/*utf8 len*/},{0xdad2/*gb2312*/, 0x8c1d/*utf16*/, {0xe8,0xb0,0x9d}/*utf8*/, 3/*utf8 len*/},{0xdad3/*gb2312*/, 0x8c1f/*utf16*/, {0xe8,0xb0,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdad4/*gb2312*/, 0x8c20/*utf16*/, {0xe8,0xb0,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdad5/*gb2312*/, 0x8c21/*utf16*/, {0xe8,0xb0,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdad6/*gb2312*/, 0x8c25/*utf16*/, {0xe8,0xb0,0xa5}/*utf8*/, 3/*utf8 len*/},{0xdad7/*gb2312*/, 0x8c27/*utf16*/, {0xe8,0xb0,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdad8/*gb2312*/, 0x8c2a/*utf16*/, {0xe8,0xb0,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdad9/*gb2312*/, 0x8c2b/*utf16*/, {0xe8,0xb0,0xab}/*utf8*/, 3/*utf8 len*/},{0xdada/*gb2312*/, 0x8c2e/*utf16*/, {0xe8,0xb0,0xae}/*utf8*/, 3/*utf8 len*/},{0xdadb/*gb2312*/, 0x8c2f/*utf16*/, {0xe8,0xb0,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdadc/*gb2312*/, 0x8c32/*utf16*/, {0xe8,0xb0,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdadd/*gb2312*/, 0x8c33/*utf16*/, {0xe8,0xb0,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdade/*gb2312*/, 0x8c35/*utf16*/, {0xe8,0xb0,0xb5}/*utf8*/, 3/*utf8 len*/},{0xdadf/*gb2312*/, 0x8c36/*utf16*/, {0xe8,0xb0,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdae0/*gb2312*/, 0x5369/*utf16*/, {0xe5,0x8d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdae1/*gb2312*/, 0x537a/*utf16*/, {0xe5,0x8d,0xba}/*utf8*/, 3/*utf8 len*/},{0xdae2/*gb2312*/, 0x961d/*utf16*/, {0xe9,0x98,0x9d}/*utf8*/, 3/*utf8 len*/},{0xdae3/*gb2312*/, 0x9622/*utf16*/, {0xe9,0x98,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdae4/*gb2312*/, 0x9621/*utf16*/, {0xe9,0x98,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdae5/*gb2312*/, 0x9631/*utf16*/, {0xe9,0x98,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdae6/*gb2312*/, 0x962a/*utf16*/, {0xe9,0x98,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdae7/*gb2312*/, 0x963d/*utf16*/, {0xe9,0x98,0xbd}/*utf8*/, 3/*utf8 len*/},{0xdae8/*gb2312*/, 0x963c/*utf16*/, {0xe9,0x98,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdae9/*gb2312*/, 0x9642/*utf16*/, {0xe9,0x99,0x82}/*utf8*/, 3/*utf8 len*/},{0xdaea/*gb2312*/, 0x9649/*utf16*/, {0xe9,0x99,0x89}/*utf8*/, 3/*utf8 len*/},{0xdaeb/*gb2312*/, 0x9654/*utf16*/, {0xe9,0x99,0x94}/*utf8*/, 3/*utf8 len*/},{0xdaec/*gb2312*/, 0x965f/*utf16*/, {0xe9,0x99,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdaed/*gb2312*/, 0x9667/*utf16*/, {0xe9,0x99,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdaee/*gb2312*/, 0x966c/*utf16*/, {0xe9,0x99,0xac}/*utf8*/, 3/*utf8 len*/},{0xdaef/*gb2312*/, 0x9672/*utf16*/, {0xe9,0x99,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdaf0/*gb2312*/, 0x9674/*utf16*/, {0xe9,0x99,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdaf1/*gb2312*/, 0x9688/*utf16*/, {0xe9,0x9a,0x88}/*utf8*/, 3/*utf8 len*/},{0xdaf2/*gb2312*/, 0x968d/*utf16*/, {0xe9,0x9a,0x8d}/*utf8*/, 3/*utf8 len*/},{0xdaf3/*gb2312*/, 0x9697/*utf16*/, {0xe9,0x9a,0x97}/*utf8*/, 3/*utf8 len*/},{0xdaf4/*gb2312*/, 0x96b0/*utf16*/, {0xe9,0x9a,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdaf5/*gb2312*/, 0x9097/*utf16*/, {0xe9,0x82,0x97}/*utf8*/, 3/*utf8 len*/},{0xdaf6/*gb2312*/, 0x909b/*utf16*/, {0xe9,0x82,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdaf7/*gb2312*/, 0x909d/*utf16*/, {0xe9,0x82,0x9d}/*utf8*/, 3/*utf8 len*/},{0xdaf8/*gb2312*/, 0x9099/*utf16*/, {0xe9,0x82,0x99}/*utf8*/, 3/*utf8 len*/},{0xdaf9/*gb2312*/, 0x90ac/*utf16*/, {0xe9,0x82,0xac}/*utf8*/, 3/*utf8 len*/},{0xdafa/*gb2312*/, 0x90a1/*utf16*/, {0xe9,0x82,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdafb/*gb2312*/, 0x90b4/*utf16*/, {0xe9,0x82,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdafc/*gb2312*/, 0x90b3/*utf16*/, {0xe9,0x82,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdafd/*gb2312*/, 0x90b6/*utf16*/, {0xe9,0x82,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdafe/*gb2312*/, 0x90ba/*utf16*/, {0xe9,0x82,0xba}/*utf8*/, 3/*utf8 len*/},{0xdba1/*gb2312*/, 0x90b8/*utf16*/, {0xe9,0x82,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdba2/*gb2312*/, 0x90b0/*utf16*/, {0xe9,0x82,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdba3/*gb2312*/, 0x90cf/*utf16*/, {0xe9,0x83,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdba4/*gb2312*/, 0x90c5/*utf16*/, {0xe9,0x83,0x85}/*utf8*/, 3/*utf8 len*/},{0xdba5/*gb2312*/, 0x90be/*utf16*/, {0xe9,0x82,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdba6/*gb2312*/, 0x90d0/*utf16*/, {0xe9,0x83,0x90}/*utf8*/, 3/*utf8 len*/},{0xdba7/*gb2312*/, 0x90c4/*utf16*/, {0xe9,0x83,0x84}/*utf8*/, 3/*utf8 len*/},{0xdba8/*gb2312*/, 0x90c7/*utf16*/, {0xe9,0x83,0x87}/*utf8*/, 3/*utf8 len*/},{0xdba9/*gb2312*/, 0x90d3/*utf16*/, {0xe9,0x83,0x93}/*utf8*/, 3/*utf8 len*/},{0xdbaa/*gb2312*/, 0x90e6/*utf16*/, {0xe9,0x83,0xa6}/*utf8*/, 3/*utf8 len*/},{0xdbab/*gb2312*/, 0x90e2/*utf16*/, {0xe9,0x83,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdbac/*gb2312*/, 0x90dc/*utf16*/, {0xe9,0x83,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdbad/*gb2312*/, 0x90d7/*utf16*/, {0xe9,0x83,0x97}/*utf8*/, 3/*utf8 len*/},{0xdbae/*gb2312*/, 0x90db/*utf16*/, {0xe9,0x83,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdbaf/*gb2312*/, 0x90eb/*utf16*/, {0xe9,0x83,0xab}/*utf8*/, 3/*utf8 len*/},{0xdbb0/*gb2312*/, 0x90ef/*utf16*/, {0xe9,0x83,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdbb1/*gb2312*/, 0x90fe/*utf16*/, {0xe9,0x83,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdbb2/*gb2312*/, 0x9104/*utf16*/, {0xe9,0x84,0x84}/*utf8*/, 3/*utf8 len*/},{0xdbb3/*gb2312*/, 0x9122/*utf16*/, {0xe9,0x84,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdbb4/*gb2312*/, 0x911e/*utf16*/, {0xe9,0x84,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdbb5/*gb2312*/, 0x9123/*utf16*/, {0xe9,0x84,0xa3}/*utf8*/, 3/*utf8 len*/},{0xdbb6/*gb2312*/, 0x9131/*utf16*/, {0xe9,0x84,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdbb7/*gb2312*/, 0x912f/*utf16*/, {0xe9,0x84,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdbb8/*gb2312*/, 0x9139/*utf16*/, {0xe9,0x84,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdbb9/*gb2312*/, 0x9143/*utf16*/, {0xe9,0x85,0x83}/*utf8*/, 3/*utf8 len*/},{0xdbba/*gb2312*/, 0x9146/*utf16*/, {0xe9,0x85,0x86}/*utf8*/, 3/*utf8 len*/},{0xdbbb/*gb2312*/, 0x520d/*utf16*/, {0xe5,0x88,0x8d}/*utf8*/, 3/*utf8 len*/},{0xdbbc/*gb2312*/, 0x5942/*utf16*/, {0xe5,0xa5,0x82}/*utf8*/, 3/*utf8 len*/},{0xdbbd/*gb2312*/, 0x52a2/*utf16*/, {0xe5,0x8a,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdbbe/*gb2312*/, 0x52ac/*utf16*/, {0xe5,0x8a,0xac}/*utf8*/, 3/*utf8 len*/},{0xdbbf/*gb2312*/, 0x52ad/*utf16*/, {0xe5,0x8a,0xad}/*utf8*/, 3/*utf8 len*/},{0xdbc0/*gb2312*/, 0x52be/*utf16*/, {0xe5,0x8a,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdbc1/*gb2312*/, 0x54ff/*utf16*/, {0xe5,0x93,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdbc2/*gb2312*/, 0x52d0/*utf16*/, {0xe5,0x8b,0x90}/*utf8*/, 3/*utf8 len*/},{0xdbc3/*gb2312*/, 0x52d6/*utf16*/, {0xe5,0x8b,0x96}/*utf8*/, 3/*utf8 len*/},{0xdbc4/*gb2312*/, 0x52f0/*utf16*/, {0xe5,0x8b,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdbc5/*gb2312*/, 0x53df/*utf16*/, {0xe5,0x8f,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdbc6/*gb2312*/, 0x71ee/*utf16*/, {0xe7,0x87,0xae}/*utf8*/, 3/*utf8 len*/},{0xdbc7/*gb2312*/, 0x77cd/*utf16*/, {0xe7,0x9f,0x8d}/*utf8*/, 3/*utf8 len*/},{0xdbc8/*gb2312*/, 0x5ef4/*utf16*/, {0xe5,0xbb,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdbc9/*gb2312*/, 0x51f5/*utf16*/, {0xe5,0x87,0xb5}/*utf8*/, 3/*utf8 len*/},{0xdbca/*gb2312*/, 0x51fc/*utf16*/, {0xe5,0x87,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdbcb/*gb2312*/, 0x9b2f/*utf16*/, {0xe9,0xac,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdbcc/*gb2312*/, 0x53b6/*utf16*/, {0xe5,0x8e,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdbcd/*gb2312*/, 0x5f01/*utf16*/, {0xe5,0xbc,0x81}/*utf8*/, 3/*utf8 len*/},{0xdbce/*gb2312*/, 0x755a/*utf16*/, {0xe7,0x95,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdbcf/*gb2312*/, 0x5def/*utf16*/, {0xe5,0xb7,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdbd0/*gb2312*/, 0x574c/*utf16*/, {0xe5,0x9d,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdbd1/*gb2312*/, 0x57a9/*utf16*/, {0xe5,0x9e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdbd2/*gb2312*/, 0x57a1/*utf16*/, {0xe5,0x9e,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdbd3/*gb2312*/, 0x587e/*utf16*/, {0xe5,0xa1,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdbd4/*gb2312*/, 0x58bc/*utf16*/, {0xe5,0xa2,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdbd5/*gb2312*/, 0x58c5/*utf16*/, {0xe5,0xa3,0x85}/*utf8*/, 3/*utf8 len*/},{0xdbd6/*gb2312*/, 0x58d1/*utf16*/, {0xe5,0xa3,0x91}/*utf8*/, 3/*utf8 len*/},{0xdbd7/*gb2312*/, 0x5729/*utf16*/, {0xe5,0x9c,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdbd8/*gb2312*/, 0x572c/*utf16*/, {0xe5,0x9c,0xac}/*utf8*/, 3/*utf8 len*/},{0xdbd9/*gb2312*/, 0x572a/*utf16*/, {0xe5,0x9c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdbda/*gb2312*/, 0x5733/*utf16*/, {0xe5,0x9c,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdbdb/*gb2312*/, 0x5739/*utf16*/, {0xe5,0x9c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdbdc/*gb2312*/, 0x572e/*utf16*/, {0xe5,0x9c,0xae}/*utf8*/, 3/*utf8 len*/},{0xdbdd/*gb2312*/, 0x572f/*utf16*/, {0xe5,0x9c,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdbde/*gb2312*/, 0x575c/*utf16*/, {0xe5,0x9d,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdbdf/*gb2312*/, 0x573b/*utf16*/, {0xe5,0x9c,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdbe0/*gb2312*/, 0x5742/*utf16*/, {0xe5,0x9d,0x82}/*utf8*/, 3/*utf8 len*/},{0xdbe1/*gb2312*/, 0x5769/*utf16*/, {0xe5,0x9d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdbe2/*gb2312*/, 0x5785/*utf16*/, {0xe5,0x9e,0x85}/*utf8*/, 3/*utf8 len*/},{0xdbe3/*gb2312*/, 0x576b/*utf16*/, {0xe5,0x9d,0xab}/*utf8*/, 3/*utf8 len*/},{0xdbe4/*gb2312*/, 0x5786/*utf16*/, {0xe5,0x9e,0x86}/*utf8*/, 3/*utf8 len*/},{0xdbe5/*gb2312*/, 0x577c/*utf16*/, {0xe5,0x9d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdbe6/*gb2312*/, 0x577b/*utf16*/, {0xe5,0x9d,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdbe7/*gb2312*/, 0x5768/*utf16*/, {0xe5,0x9d,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdbe8/*gb2312*/, 0x576d/*utf16*/, {0xe5,0x9d,0xad}/*utf8*/, 3/*utf8 len*/},{0xdbe9/*gb2312*/, 0x5776/*utf16*/, {0xe5,0x9d,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdbea/*gb2312*/, 0x5773/*utf16*/, {0xe5,0x9d,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdbeb/*gb2312*/, 0x57ad/*utf16*/, {0xe5,0x9e,0xad}/*utf8*/, 3/*utf8 len*/},{0xdbec/*gb2312*/, 0x57a4/*utf16*/, {0xe5,0x9e,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdbed/*gb2312*/, 0x578c/*utf16*/, {0xe5,0x9e,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdbee/*gb2312*/, 0x57b2/*utf16*/, {0xe5,0x9e,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdbef/*gb2312*/, 0x57cf/*utf16*/, {0xe5,0x9f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdbf0/*gb2312*/, 0x57a7/*utf16*/, {0xe5,0x9e,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdbf1/*gb2312*/, 0x57b4/*utf16*/, {0xe5,0x9e,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdbf2/*gb2312*/, 0x5793/*utf16*/, {0xe5,0x9e,0x93}/*utf8*/, 3/*utf8 len*/},{0xdbf3/*gb2312*/, 0x57a0/*utf16*/, {0xe5,0x9e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdbf4/*gb2312*/, 0x57d5/*utf16*/, {0xe5,0x9f,0x95}/*utf8*/, 3/*utf8 len*/},{0xdbf5/*gb2312*/, 0x57d8/*utf16*/, {0xe5,0x9f,0x98}/*utf8*/, 3/*utf8 len*/},{0xdbf6/*gb2312*/, 0x57da/*utf16*/, {0xe5,0x9f,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdbf7/*gb2312*/, 0x57d9/*utf16*/, {0xe5,0x9f,0x99}/*utf8*/, 3/*utf8 len*/},{0xdbf8/*gb2312*/, 0x57d2/*utf16*/, {0xe5,0x9f,0x92}/*utf8*/, 3/*utf8 len*/},{0xdbf9/*gb2312*/, 0x57b8/*utf16*/, {0xe5,0x9e,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdbfa/*gb2312*/, 0x57f4/*utf16*/, {0xe5,0x9f,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdbfb/*gb2312*/, 0x57ef/*utf16*/, {0xe5,0x9f,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdbfc/*gb2312*/, 0x57f8/*utf16*/, {0xe5,0x9f,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdbfd/*gb2312*/, 0x57e4/*utf16*/, {0xe5,0x9f,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdbfe/*gb2312*/, 0x57dd/*utf16*/, {0xe5,0x9f,0x9d}/*utf8*/, 3/*utf8 len*/},{0xdca1/*gb2312*/, 0x580b/*utf16*/, {0xe5,0xa0,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdca2/*gb2312*/, 0x580d/*utf16*/, {0xe5,0xa0,0x8d}/*utf8*/, 3/*utf8 len*/},{0xdca3/*gb2312*/, 0x57fd/*utf16*/, {0xe5,0x9f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xdca4/*gb2312*/, 0x57ed/*utf16*/, {0xe5,0x9f,0xad}/*utf8*/, 3/*utf8 len*/},{0xdca5/*gb2312*/, 0x5800/*utf16*/, {0xe5,0xa0,0x80}/*utf8*/, 3/*utf8 len*/},{0xdca6/*gb2312*/, 0x581e/*utf16*/, {0xe5,0xa0,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdca7/*gb2312*/, 0x5819/*utf16*/, {0xe5,0xa0,0x99}/*utf8*/, 3/*utf8 len*/},{0xdca8/*gb2312*/, 0x5844/*utf16*/, {0xe5,0xa1,0x84}/*utf8*/, 3/*utf8 len*/},{0xdca9/*gb2312*/, 0x5820/*utf16*/, {0xe5,0xa0,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdcaa/*gb2312*/, 0x5865/*utf16*/, {0xe5,0xa1,0xa5}/*utf8*/, 3/*utf8 len*/},{0xdcab/*gb2312*/, 0x586c/*utf16*/, {0xe5,0xa1,0xac}/*utf8*/, 3/*utf8 len*/},{0xdcac/*gb2312*/, 0x5881/*utf16*/, {0xe5,0xa2,0x81}/*utf8*/, 3/*utf8 len*/},{0xdcad/*gb2312*/, 0x5889/*utf16*/, {0xe5,0xa2,0x89}/*utf8*/, 3/*utf8 len*/},{0xdcae/*gb2312*/, 0x589a/*utf16*/, {0xe5,0xa2,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdcaf/*gb2312*/, 0x5880/*utf16*/, {0xe5,0xa2,0x80}/*utf8*/, 3/*utf8 len*/},{0xdcb0/*gb2312*/, 0x99a8/*utf16*/, {0xe9,0xa6,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdcb1/*gb2312*/, 0x9f19/*utf16*/, {0xe9,0xbc,0x99}/*utf8*/, 3/*utf8 len*/},{0xdcb2/*gb2312*/, 0x61ff/*utf16*/, {0xe6,0x87,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdcb3/*gb2312*/, 0x8279/*utf16*/, {0xe8,0x89,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdcb4/*gb2312*/, 0x827d/*utf16*/, {0xe8,0x89,0xbd}/*utf8*/, 3/*utf8 len*/},{0xdcb5/*gb2312*/, 0x827f/*utf16*/, {0xe8,0x89,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdcb6/*gb2312*/, 0x828f/*utf16*/, {0xe8,0x8a,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdcb7/*gb2312*/, 0x828a/*utf16*/, {0xe8,0x8a,0x8a}/*utf8*/, 3/*utf8 len*/},{0xdcb8/*gb2312*/, 0x82a8/*utf16*/, {0xe8,0x8a,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdcb9/*gb2312*/, 0x8284/*utf16*/, {0xe8,0x8a,0x84}/*utf8*/, 3/*utf8 len*/},{0xdcba/*gb2312*/, 0x828e/*utf16*/, {0xe8,0x8a,0x8e}/*utf8*/, 3/*utf8 len*/},{0xdcbb/*gb2312*/, 0x8291/*utf16*/, {0xe8,0x8a,0x91}/*utf8*/, 3/*utf8 len*/},{0xdcbc/*gb2312*/, 0x8297/*utf16*/, {0xe8,0x8a,0x97}/*utf8*/, 3/*utf8 len*/},{0xdcbd/*gb2312*/, 0x8299/*utf16*/, {0xe8,0x8a,0x99}/*utf8*/, 3/*utf8 len*/},{0xdcbe/*gb2312*/, 0x82ab/*utf16*/, {0xe8,0x8a,0xab}/*utf8*/, 3/*utf8 len*/},{0xdcbf/*gb2312*/, 0x82b8/*utf16*/, {0xe8,0x8a,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdcc0/*gb2312*/, 0x82be/*utf16*/, {0xe8,0x8a,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdcc1/*gb2312*/, 0x82b0/*utf16*/, {0xe8,0x8a,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdcc2/*gb2312*/, 0x82c8/*utf16*/, {0xe8,0x8b,0x88}/*utf8*/, 3/*utf8 len*/},{0xdcc3/*gb2312*/, 0x82ca/*utf16*/, {0xe8,0x8b,0x8a}/*utf8*/, 3/*utf8 len*/},{0xdcc4/*gb2312*/, 0x82e3/*utf16*/, {0xe8,0x8b,0xa3}/*utf8*/, 3/*utf8 len*/},{0xdcc5/*gb2312*/, 0x8298/*utf16*/, {0xe8,0x8a,0x98}/*utf8*/, 3/*utf8 len*/},{0xdcc6/*gb2312*/, 0x82b7/*utf16*/, {0xe8,0x8a,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdcc7/*gb2312*/, 0x82ae/*utf16*/, {0xe8,0x8a,0xae}/*utf8*/, 3/*utf8 len*/},{0xdcc8/*gb2312*/, 0x82cb/*utf16*/, {0xe8,0x8b,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdcc9/*gb2312*/, 0x82cc/*utf16*/, {0xe8,0x8b,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdcca/*gb2312*/, 0x82c1/*utf16*/, {0xe8,0x8b,0x81}/*utf8*/, 3/*utf8 len*/},{0xdccb/*gb2312*/, 0x82a9/*utf16*/, {0xe8,0x8a,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdccc/*gb2312*/, 0x82b4/*utf16*/, {0xe8,0x8a,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdccd/*gb2312*/, 0x82a1/*utf16*/, {0xe8,0x8a,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdcce/*gb2312*/, 0x82aa/*utf16*/, {0xe8,0x8a,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdccf/*gb2312*/, 0x829f/*utf16*/, {0xe8,0x8a,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdcd0/*gb2312*/, 0x82c4/*utf16*/, {0xe8,0x8b,0x84}/*utf8*/, 3/*utf8 len*/},{0xdcd1/*gb2312*/, 0x82ce/*utf16*/, {0xe8,0x8b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xdcd2/*gb2312*/, 0x82a4/*utf16*/, {0xe8,0x8a,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdcd3/*gb2312*/, 0x82e1/*utf16*/, {0xe8,0x8b,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdcd4/*gb2312*/, 0x8309/*utf16*/, {0xe8,0x8c,0x89}/*utf8*/, 3/*utf8 len*/},{0xdcd5/*gb2312*/, 0x82f7/*utf16*/, {0xe8,0x8b,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdcd6/*gb2312*/, 0x82e4/*utf16*/, {0xe8,0x8b,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdcd7/*gb2312*/, 0x830f/*utf16*/, {0xe8,0x8c,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdcd8/*gb2312*/, 0x8307/*utf16*/, {0xe8,0x8c,0x87}/*utf8*/, 3/*utf8 len*/},{0xdcd9/*gb2312*/, 0x82dc/*utf16*/, {0xe8,0x8b,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdcda/*gb2312*/, 0x82f4/*utf16*/, {0xe8,0x8b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdcdb/*gb2312*/, 0x82d2/*utf16*/, {0xe8,0x8b,0x92}/*utf8*/, 3/*utf8 len*/},{0xdcdc/*gb2312*/, 0x82d8/*utf16*/, {0xe8,0x8b,0x98}/*utf8*/, 3/*utf8 len*/},{0xdcdd/*gb2312*/, 0x830c/*utf16*/, {0xe8,0x8c,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdcde/*gb2312*/, 0x82fb/*utf16*/, {0xe8,0x8b,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdcdf/*gb2312*/, 0x82d3/*utf16*/, {0xe8,0x8b,0x93}/*utf8*/, 3/*utf8 len*/},{0xdce0/*gb2312*/, 0x8311/*utf16*/, {0xe8,0x8c,0x91}/*utf8*/, 3/*utf8 len*/},{0xdce1/*gb2312*/, 0x831a/*utf16*/, {0xe8,0x8c,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdce2/*gb2312*/, 0x8306/*utf16*/, {0xe8,0x8c,0x86}/*utf8*/, 3/*utf8 len*/},{0xdce3/*gb2312*/, 0x8314/*utf16*/, {0xe8,0x8c,0x94}/*utf8*/, 3/*utf8 len*/},{0xdce4/*gb2312*/, 0x8315/*utf16*/, {0xe8,0x8c,0x95}/*utf8*/, 3/*utf8 len*/},{0xdce5/*gb2312*/, 0x82e0/*utf16*/, {0xe8,0x8b,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdce6/*gb2312*/, 0x82d5/*utf16*/, {0xe8,0x8b,0x95}/*utf8*/, 3/*utf8 len*/},{0xdce7/*gb2312*/, 0x831c/*utf16*/, {0xe8,0x8c,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdce8/*gb2312*/, 0x8351/*utf16*/, {0xe8,0x8d,0x91}/*utf8*/, 3/*utf8 len*/},{0xdce9/*gb2312*/, 0x835b/*utf16*/, {0xe8,0x8d,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdcea/*gb2312*/, 0x835c/*utf16*/, {0xe8,0x8d,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdceb/*gb2312*/, 0x8308/*utf16*/, {0xe8,0x8c,0x88}/*utf8*/, 3/*utf8 len*/},{0xdcec/*gb2312*/, 0x8392/*utf16*/, {0xe8,0x8e,0x92}/*utf8*/, 3/*utf8 len*/},{0xdced/*gb2312*/, 0x833c/*utf16*/, {0xe8,0x8c,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdcee/*gb2312*/, 0x8334/*utf16*/, {0xe8,0x8c,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdcef/*gb2312*/, 0x8331/*utf16*/, {0xe8,0x8c,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdcf0/*gb2312*/, 0x839b/*utf16*/, {0xe8,0x8e,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdcf1/*gb2312*/, 0x835e/*utf16*/, {0xe8,0x8d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdcf2/*gb2312*/, 0x832f/*utf16*/, {0xe8,0x8c,0xaf}/*utf8*/, 3/*utf8 len*/},{0xdcf3/*gb2312*/, 0x834f/*utf16*/, {0xe8,0x8d,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdcf4/*gb2312*/, 0x8347/*utf16*/, {0xe8,0x8d,0x87}/*utf8*/, 3/*utf8 len*/},{0xdcf5/*gb2312*/, 0x8343/*utf16*/, {0xe8,0x8d,0x83}/*utf8*/, 3/*utf8 len*/},{0xdcf6/*gb2312*/, 0x835f/*utf16*/, {0xe8,0x8d,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdcf7/*gb2312*/, 0x8340/*utf16*/, {0xe8,0x8d,0x80}/*utf8*/, 3/*utf8 len*/},{0xdcf8/*gb2312*/, 0x8317/*utf16*/, {0xe8,0x8c,0x97}/*utf8*/, 3/*utf8 len*/},{0xdcf9/*gb2312*/, 0x8360/*utf16*/, {0xe8,0x8d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdcfa/*gb2312*/, 0x832d/*utf16*/, {0xe8,0x8c,0xad}/*utf8*/, 3/*utf8 len*/},{0xdcfb/*gb2312*/, 0x833a/*utf16*/, {0xe8,0x8c,0xba}/*utf8*/, 3/*utf8 len*/},{0xdcfc/*gb2312*/, 0x8333/*utf16*/, {0xe8,0x8c,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdcfd/*gb2312*/, 0x8366/*utf16*/, {0xe8,0x8d,0xa6}/*utf8*/, 3/*utf8 len*/},{0xdcfe/*gb2312*/, 0x8365/*utf16*/, {0xe8,0x8d,0xa5}/*utf8*/, 3/*utf8 len*/},{0xdda1/*gb2312*/, 0x8368/*utf16*/, {0xe8,0x8d,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdda2/*gb2312*/, 0x831b/*utf16*/, {0xe8,0x8c,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdda3/*gb2312*/, 0x8369/*utf16*/, {0xe8,0x8d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdda4/*gb2312*/, 0x836c/*utf16*/, {0xe8,0x8d,0xac}/*utf8*/, 3/*utf8 len*/},{0xdda5/*gb2312*/, 0x836a/*utf16*/, {0xe8,0x8d,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdda6/*gb2312*/, 0x836d/*utf16*/, {0xe8,0x8d,0xad}/*utf8*/, 3/*utf8 len*/},{0xdda7/*gb2312*/, 0x836e/*utf16*/, {0xe8,0x8d,0xae}/*utf8*/, 3/*utf8 len*/},{0xdda8/*gb2312*/, 0x83b0/*utf16*/, {0xe8,0x8e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdda9/*gb2312*/, 0x8378/*utf16*/, {0xe8,0x8d,0xb8}/*utf8*/, 3/*utf8 len*/},{0xddaa/*gb2312*/, 0x83b3/*utf16*/, {0xe8,0x8e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xddab/*gb2312*/, 0x83b4/*utf16*/, {0xe8,0x8e,0xb4}/*utf8*/, 3/*utf8 len*/},{0xddac/*gb2312*/, 0x83a0/*utf16*/, {0xe8,0x8e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xddad/*gb2312*/, 0x83aa/*utf16*/, {0xe8,0x8e,0xaa}/*utf8*/, 3/*utf8 len*/},{0xddae/*gb2312*/, 0x8393/*utf16*/, {0xe8,0x8e,0x93}/*utf8*/, 3/*utf8 len*/},{0xddaf/*gb2312*/, 0x839c/*utf16*/, {0xe8,0x8e,0x9c}/*utf8*/, 3/*utf8 len*/},{0xddb0/*gb2312*/, 0x8385/*utf16*/, {0xe8,0x8e,0x85}/*utf8*/, 3/*utf8 len*/},{0xddb1/*gb2312*/, 0x837c/*utf16*/, {0xe8,0x8d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xddb2/*gb2312*/, 0x83b6/*utf16*/, {0xe8,0x8e,0xb6}/*utf8*/, 3/*utf8 len*/},{0xddb3/*gb2312*/, 0x83a9/*utf16*/, {0xe8,0x8e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xddb4/*gb2312*/, 0x837d/*utf16*/, {0xe8,0x8d,0xbd}/*utf8*/, 3/*utf8 len*/},{0xddb5/*gb2312*/, 0x83b8/*utf16*/, {0xe8,0x8e,0xb8}/*utf8*/, 3/*utf8 len*/},{0xddb6/*gb2312*/, 0x837b/*utf16*/, {0xe8,0x8d,0xbb}/*utf8*/, 3/*utf8 len*/},{0xddb7/*gb2312*/, 0x8398/*utf16*/, {0xe8,0x8e,0x98}/*utf8*/, 3/*utf8 len*/},{0xddb8/*gb2312*/, 0x839e/*utf16*/, {0xe8,0x8e,0x9e}/*utf8*/, 3/*utf8 len*/},{0xddb9/*gb2312*/, 0x83a8/*utf16*/, {0xe8,0x8e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xddba/*gb2312*/, 0x83ba/*utf16*/, {0xe8,0x8e,0xba}/*utf8*/, 3/*utf8 len*/},{0xddbb/*gb2312*/, 0x83bc/*utf16*/, {0xe8,0x8e,0xbc}/*utf8*/, 3/*utf8 len*/},{0xddbc/*gb2312*/, 0x83c1/*utf16*/, {0xe8,0x8f,0x81}/*utf8*/, 3/*utf8 len*/},{0xddbd/*gb2312*/, 0x8401/*utf16*/, {0xe8,0x90,0x81}/*utf8*/, 3/*utf8 len*/},{0xddbe/*gb2312*/, 0x83e5/*utf16*/, {0xe8,0x8f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xddbf/*gb2312*/, 0x83d8/*utf16*/, {0xe8,0x8f,0x98}/*utf8*/, 3/*utf8 len*/},{0xddc0/*gb2312*/, 0x5807/*utf16*/, {0xe5,0xa0,0x87}/*utf8*/, 3/*utf8 len*/},{0xddc1/*gb2312*/, 0x8418/*utf16*/, {0xe8,0x90,0x98}/*utf8*/, 3/*utf8 len*/},{0xddc2/*gb2312*/, 0x840b/*utf16*/, {0xe8,0x90,0x8b}/*utf8*/, 3/*utf8 len*/},{0xddc3/*gb2312*/, 0x83dd/*utf16*/, {0xe8,0x8f,0x9d}/*utf8*/, 3/*utf8 len*/},{0xddc4/*gb2312*/, 0x83fd/*utf16*/, {0xe8,0x8f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xddc5/*gb2312*/, 0x83d6/*utf16*/, {0xe8,0x8f,0x96}/*utf8*/, 3/*utf8 len*/},{0xddc6/*gb2312*/, 0x841c/*utf16*/, {0xe8,0x90,0x9c}/*utf8*/, 3/*utf8 len*/},{0xddc7/*gb2312*/, 0x8438/*utf16*/, {0xe8,0x90,0xb8}/*utf8*/, 3/*utf8 len*/},{0xddc8/*gb2312*/, 0x8411/*utf16*/, {0xe8,0x90,0x91}/*utf8*/, 3/*utf8 len*/},{0xddc9/*gb2312*/, 0x8406/*utf16*/, {0xe8,0x90,0x86}/*utf8*/, 3/*utf8 len*/},{0xddca/*gb2312*/, 0x83d4/*utf16*/, {0xe8,0x8f,0x94}/*utf8*/, 3/*utf8 len*/},{0xddcb/*gb2312*/, 0x83df/*utf16*/, {0xe8,0x8f,0x9f}/*utf8*/, 3/*utf8 len*/},{0xddcc/*gb2312*/, 0x840f/*utf16*/, {0xe8,0x90,0x8f}/*utf8*/, 3/*utf8 len*/},{0xddcd/*gb2312*/, 0x8403/*utf16*/, {0xe8,0x90,0x83}/*utf8*/, 3/*utf8 len*/},{0xddce/*gb2312*/, 0x83f8/*utf16*/, {0xe8,0x8f,0xb8}/*utf8*/, 3/*utf8 len*/},{0xddcf/*gb2312*/, 0x83f9/*utf16*/, {0xe8,0x8f,0xb9}/*utf8*/, 3/*utf8 len*/},{0xddd0/*gb2312*/, 0x83ea/*utf16*/, {0xe8,0x8f,0xaa}/*utf8*/, 3/*utf8 len*/},{0xddd1/*gb2312*/, 0x83c5/*utf16*/, {0xe8,0x8f,0x85}/*utf8*/, 3/*utf8 len*/},{0xddd2/*gb2312*/, 0x83c0/*utf16*/, {0xe8,0x8f,0x80}/*utf8*/, 3/*utf8 len*/},{0xddd3/*gb2312*/, 0x8426/*utf16*/, {0xe8,0x90,0xa6}/*utf8*/, 3/*utf8 len*/},{0xddd4/*gb2312*/, 0x83f0/*utf16*/, {0xe8,0x8f,0xb0}/*utf8*/, 3/*utf8 len*/},{0xddd5/*gb2312*/, 0x83e1/*utf16*/, {0xe8,0x8f,0xa1}/*utf8*/, 3/*utf8 len*/},{0xddd6/*gb2312*/, 0x845c/*utf16*/, {0xe8,0x91,0x9c}/*utf8*/, 3/*utf8 len*/},{0xddd7/*gb2312*/, 0x8451/*utf16*/, {0xe8,0x91,0x91}/*utf8*/, 3/*utf8 len*/},{0xddd8/*gb2312*/, 0x845a/*utf16*/, {0xe8,0x91,0x9a}/*utf8*/, 3/*utf8 len*/},{0xddd9/*gb2312*/, 0x8459/*utf16*/, {0xe8,0x91,0x99}/*utf8*/, 3/*utf8 len*/},{0xddda/*gb2312*/, 0x8473/*utf16*/, {0xe8,0x91,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdddb/*gb2312*/, 0x8487/*utf16*/, {0xe8,0x92,0x87}/*utf8*/, 3/*utf8 len*/},{0xdddc/*gb2312*/, 0x8488/*utf16*/, {0xe8,0x92,0x88}/*utf8*/, 3/*utf8 len*/},{0xdddd/*gb2312*/, 0x847a/*utf16*/, {0xe8,0x91,0xba}/*utf8*/, 3/*utf8 len*/},{0xddde/*gb2312*/, 0x8489/*utf16*/, {0xe8,0x92,0x89}/*utf8*/, 3/*utf8 len*/},{0xdddf/*gb2312*/, 0x8478/*utf16*/, {0xe8,0x91,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdde0/*gb2312*/, 0x843c/*utf16*/, {0xe8,0x90,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdde1/*gb2312*/, 0x8446/*utf16*/, {0xe8,0x91,0x86}/*utf8*/, 3/*utf8 len*/},{0xdde2/*gb2312*/, 0x8469/*utf16*/, {0xe8,0x91,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdde3/*gb2312*/, 0x8476/*utf16*/, {0xe8,0x91,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdde4/*gb2312*/, 0x848c/*utf16*/, {0xe8,0x92,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdde5/*gb2312*/, 0x848e/*utf16*/, {0xe8,0x92,0x8e}/*utf8*/, 3/*utf8 len*/},{0xdde6/*gb2312*/, 0x8431/*utf16*/, {0xe8,0x90,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdde7/*gb2312*/, 0x846d/*utf16*/, {0xe8,0x91,0xad}/*utf8*/, 3/*utf8 len*/},{0xdde8/*gb2312*/, 0x84c1/*utf16*/, {0xe8,0x93,0x81}/*utf8*/, 3/*utf8 len*/},{0xdde9/*gb2312*/, 0x84cd/*utf16*/, {0xe8,0x93,0x8d}/*utf8*/, 3/*utf8 len*/},{0xddea/*gb2312*/, 0x84d0/*utf16*/, {0xe8,0x93,0x90}/*utf8*/, 3/*utf8 len*/},{0xddeb/*gb2312*/, 0x84e6/*utf16*/, {0xe8,0x93,0xa6}/*utf8*/, 3/*utf8 len*/},{0xddec/*gb2312*/, 0x84bd/*utf16*/, {0xe8,0x92,0xbd}/*utf8*/, 3/*utf8 len*/},{0xdded/*gb2312*/, 0x84d3/*utf16*/, {0xe8,0x93,0x93}/*utf8*/, 3/*utf8 len*/},{0xddee/*gb2312*/, 0x84ca/*utf16*/, {0xe8,0x93,0x8a}/*utf8*/, 3/*utf8 len*/},{0xddef/*gb2312*/, 0x84bf/*utf16*/, {0xe8,0x92,0xbf}/*utf8*/, 3/*utf8 len*/},{0xddf0/*gb2312*/, 0x84ba/*utf16*/, {0xe8,0x92,0xba}/*utf8*/, 3/*utf8 len*/},{0xddf1/*gb2312*/, 0x84e0/*utf16*/, {0xe8,0x93,0xa0}/*utf8*/, 3/*utf8 len*/},{0xddf2/*gb2312*/, 0x84a1/*utf16*/, {0xe8,0x92,0xa1}/*utf8*/, 3/*utf8 len*/},{0xddf3/*gb2312*/, 0x84b9/*utf16*/, {0xe8,0x92,0xb9}/*utf8*/, 3/*utf8 len*/},{0xddf4/*gb2312*/, 0x84b4/*utf16*/, {0xe8,0x92,0xb4}/*utf8*/, 3/*utf8 len*/},{0xddf5/*gb2312*/, 0x8497/*utf16*/, {0xe8,0x92,0x97}/*utf8*/, 3/*utf8 len*/},{0xddf6/*gb2312*/, 0x84e5/*utf16*/, {0xe8,0x93,0xa5}/*utf8*/, 3/*utf8 len*/},{0xddf7/*gb2312*/, 0x84e3/*utf16*/, {0xe8,0x93,0xa3}/*utf8*/, 3/*utf8 len*/},{0xddf8/*gb2312*/, 0x850c/*utf16*/, {0xe8,0x94,0x8c}/*utf8*/, 3/*utf8 len*/},{0xddf9/*gb2312*/, 0x750d/*utf16*/, {0xe7,0x94,0x8d}/*utf8*/, 3/*utf8 len*/},{0xddfa/*gb2312*/, 0x8538/*utf16*/, {0xe8,0x94,0xb8}/*utf8*/, 3/*utf8 len*/},{0xddfb/*gb2312*/, 0x84f0/*utf16*/, {0xe8,0x93,0xb0}/*utf8*/, 3/*utf8 len*/},{0xddfc/*gb2312*/, 0x8539/*utf16*/, {0xe8,0x94,0xb9}/*utf8*/, 3/*utf8 len*/},{0xddfd/*gb2312*/, 0x851f/*utf16*/, {0xe8,0x94,0x9f}/*utf8*/, 3/*utf8 len*/},{0xddfe/*gb2312*/, 0x853a/*utf16*/, {0xe8,0x94,0xba}/*utf8*/, 3/*utf8 len*/},{0xdea1/*gb2312*/, 0x8556/*utf16*/, {0xe8,0x95,0x96}/*utf8*/, 3/*utf8 len*/},{0xdea2/*gb2312*/, 0x853b/*utf16*/, {0xe8,0x94,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdea3/*gb2312*/, 0x84ff/*utf16*/, {0xe8,0x93,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdea4/*gb2312*/, 0x84fc/*utf16*/, {0xe8,0x93,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdea5/*gb2312*/, 0x8559/*utf16*/, {0xe8,0x95,0x99}/*utf8*/, 3/*utf8 len*/},{0xdea6/*gb2312*/, 0x8548/*utf16*/, {0xe8,0x95,0x88}/*utf8*/, 3/*utf8 len*/},{0xdea7/*gb2312*/, 0x8568/*utf16*/, {0xe8,0x95,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdea8/*gb2312*/, 0x8564/*utf16*/, {0xe8,0x95,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdea9/*gb2312*/, 0x855e/*utf16*/, {0xe8,0x95,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdeaa/*gb2312*/, 0x857a/*utf16*/, {0xe8,0x95,0xba}/*utf8*/, 3/*utf8 len*/},{0xdeab/*gb2312*/, 0x77a2/*utf16*/, {0xe7,0x9e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdeac/*gb2312*/, 0x8543/*utf16*/, {0xe8,0x95,0x83}/*utf8*/, 3/*utf8 len*/},{0xdead/*gb2312*/, 0x8572/*utf16*/, {0xe8,0x95,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdeae/*gb2312*/, 0x857b/*utf16*/, {0xe8,0x95,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdeaf/*gb2312*/, 0x85a4/*utf16*/, {0xe8,0x96,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdeb0/*gb2312*/, 0x85a8/*utf16*/, {0xe8,0x96,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdeb1/*gb2312*/, 0x8587/*utf16*/, {0xe8,0x96,0x87}/*utf8*/, 3/*utf8 len*/},{0xdeb2/*gb2312*/, 0x858f/*utf16*/, {0xe8,0x96,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdeb3/*gb2312*/, 0x8579/*utf16*/, {0xe8,0x95,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdeb4/*gb2312*/, 0x85ae/*utf16*/, {0xe8,0x96,0xae}/*utf8*/, 3/*utf8 len*/},{0xdeb5/*gb2312*/, 0x859c/*utf16*/, {0xe8,0x96,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdeb6/*gb2312*/, 0x8585/*utf16*/, {0xe8,0x96,0x85}/*utf8*/, 3/*utf8 len*/},{0xdeb7/*gb2312*/, 0x85b9/*utf16*/, {0xe8,0x96,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdeb8/*gb2312*/, 0x85b7/*utf16*/, {0xe8,0x96,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdeb9/*gb2312*/, 0x85b0/*utf16*/, {0xe8,0x96,0xb0}/*utf8*/, 3/*utf8 len*/},{0xdeba/*gb2312*/, 0x85d3/*utf16*/, {0xe8,0x97,0x93}/*utf8*/, 3/*utf8 len*/},{0xdebb/*gb2312*/, 0x85c1/*utf16*/, {0xe8,0x97,0x81}/*utf8*/, 3/*utf8 len*/},{0xdebc/*gb2312*/, 0x85dc/*utf16*/, {0xe8,0x97,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdebd/*gb2312*/, 0x85ff/*utf16*/, {0xe8,0x97,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdebe/*gb2312*/, 0x8627/*utf16*/, {0xe8,0x98,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdebf/*gb2312*/, 0x8605/*utf16*/, {0xe8,0x98,0x85}/*utf8*/, 3/*utf8 len*/},{0xdec0/*gb2312*/, 0x8629/*utf16*/, {0xe8,0x98,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdec1/*gb2312*/, 0x8616/*utf16*/, {0xe8,0x98,0x96}/*utf8*/, 3/*utf8 len*/},{0xdec2/*gb2312*/, 0x863c/*utf16*/, {0xe8,0x98,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdec3/*gb2312*/, 0x5efe/*utf16*/, {0xe5,0xbb,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdec4/*gb2312*/, 0x5f08/*utf16*/, {0xe5,0xbc,0x88}/*utf8*/, 3/*utf8 len*/},{0xdec5/*gb2312*/, 0x593c/*utf16*/, {0xe5,0xa4,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdec6/*gb2312*/, 0x5941/*utf16*/, {0xe5,0xa5,0x81}/*utf8*/, 3/*utf8 len*/},{0xdec7/*gb2312*/, 0x8037/*utf16*/, {0xe8,0x80,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdec8/*gb2312*/, 0x5955/*utf16*/, {0xe5,0xa5,0x95}/*utf8*/, 3/*utf8 len*/},{0xdec9/*gb2312*/, 0x595a/*utf16*/, {0xe5,0xa5,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdeca/*gb2312*/, 0x5958/*utf16*/, {0xe5,0xa5,0x98}/*utf8*/, 3/*utf8 len*/},{0xdecb/*gb2312*/, 0x530f/*utf16*/, {0xe5,0x8c,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdecc/*gb2312*/, 0x5c22/*utf16*/, {0xe5,0xb0,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdecd/*gb2312*/, 0x5c25/*utf16*/, {0xe5,0xb0,0xa5}/*utf8*/, 3/*utf8 len*/},{0xdece/*gb2312*/, 0x5c2c/*utf16*/, {0xe5,0xb0,0xac}/*utf8*/, 3/*utf8 len*/},{0xdecf/*gb2312*/, 0x5c34/*utf16*/, {0xe5,0xb0,0xb4}/*utf8*/, 3/*utf8 len*/},{0xded0/*gb2312*/, 0x624c/*utf16*/, {0xe6,0x89,0x8c}/*utf8*/, 3/*utf8 len*/},{0xded1/*gb2312*/, 0x626a/*utf16*/, {0xe6,0x89,0xaa}/*utf8*/, 3/*utf8 len*/},{0xded2/*gb2312*/, 0x629f/*utf16*/, {0xe6,0x8a,0x9f}/*utf8*/, 3/*utf8 len*/},{0xded3/*gb2312*/, 0x62bb/*utf16*/, {0xe6,0x8a,0xbb}/*utf8*/, 3/*utf8 len*/},{0xded4/*gb2312*/, 0x62ca/*utf16*/, {0xe6,0x8b,0x8a}/*utf8*/, 3/*utf8 len*/},{0xded5/*gb2312*/, 0x62da/*utf16*/, {0xe6,0x8b,0x9a}/*utf8*/, 3/*utf8 len*/},{0xded6/*gb2312*/, 0x62d7/*utf16*/, {0xe6,0x8b,0x97}/*utf8*/, 3/*utf8 len*/},{0xded7/*gb2312*/, 0x62ee/*utf16*/, {0xe6,0x8b,0xae}/*utf8*/, 3/*utf8 len*/},{0xded8/*gb2312*/, 0x6322/*utf16*/, {0xe6,0x8c,0xa2}/*utf8*/, 3/*utf8 len*/},{0xded9/*gb2312*/, 0x62f6/*utf16*/, {0xe6,0x8b,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdeda/*gb2312*/, 0x6339/*utf16*/, {0xe6,0x8c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xdedb/*gb2312*/, 0x634b/*utf16*/, {0xe6,0x8d,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdedc/*gb2312*/, 0x6343/*utf16*/, {0xe6,0x8d,0x83}/*utf8*/, 3/*utf8 len*/},{0xdedd/*gb2312*/, 0x63ad/*utf16*/, {0xe6,0x8e,0xad}/*utf8*/, 3/*utf8 len*/},{0xdede/*gb2312*/, 0x63f6/*utf16*/, {0xe6,0x8f,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdedf/*gb2312*/, 0x6371/*utf16*/, {0xe6,0x8d,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdee0/*gb2312*/, 0x637a/*utf16*/, {0xe6,0x8d,0xba}/*utf8*/, 3/*utf8 len*/},{0xdee1/*gb2312*/, 0x638e/*utf16*/, {0xe6,0x8e,0x8e}/*utf8*/, 3/*utf8 len*/},{0xdee2/*gb2312*/, 0x63b4/*utf16*/, {0xe6,0x8e,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdee3/*gb2312*/, 0x636d/*utf16*/, {0xe6,0x8d,0xad}/*utf8*/, 3/*utf8 len*/},{0xdee4/*gb2312*/, 0x63ac/*utf16*/, {0xe6,0x8e,0xac}/*utf8*/, 3/*utf8 len*/},{0xdee5/*gb2312*/, 0x638a/*utf16*/, {0xe6,0x8e,0x8a}/*utf8*/, 3/*utf8 len*/},{0xdee6/*gb2312*/, 0x6369/*utf16*/, {0xe6,0x8d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdee7/*gb2312*/, 0x63ae/*utf16*/, {0xe6,0x8e,0xae}/*utf8*/, 3/*utf8 len*/},{0xdee8/*gb2312*/, 0x63bc/*utf16*/, {0xe6,0x8e,0xbc}/*utf8*/, 3/*utf8 len*/},{0xdee9/*gb2312*/, 0x63f2/*utf16*/, {0xe6,0x8f,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdeea/*gb2312*/, 0x63f8/*utf16*/, {0xe6,0x8f,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdeeb/*gb2312*/, 0x63e0/*utf16*/, {0xe6,0x8f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdeec/*gb2312*/, 0x63ff/*utf16*/, {0xe6,0x8f,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdeed/*gb2312*/, 0x63c4/*utf16*/, {0xe6,0x8f,0x84}/*utf8*/, 3/*utf8 len*/},{0xdeee/*gb2312*/, 0x63de/*utf16*/, {0xe6,0x8f,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdeef/*gb2312*/, 0x63ce/*utf16*/, {0xe6,0x8f,0x8e}/*utf8*/, 3/*utf8 len*/},{0xdef0/*gb2312*/, 0x6452/*utf16*/, {0xe6,0x91,0x92}/*utf8*/, 3/*utf8 len*/},{0xdef1/*gb2312*/, 0x63c6/*utf16*/, {0xe6,0x8f,0x86}/*utf8*/, 3/*utf8 len*/},{0xdef2/*gb2312*/, 0x63be/*utf16*/, {0xe6,0x8e,0xbe}/*utf8*/, 3/*utf8 len*/},{0xdef3/*gb2312*/, 0x6445/*utf16*/, {0xe6,0x91,0x85}/*utf8*/, 3/*utf8 len*/},{0xdef4/*gb2312*/, 0x6441/*utf16*/, {0xe6,0x91,0x81}/*utf8*/, 3/*utf8 len*/},{0xdef5/*gb2312*/, 0x640b/*utf16*/, {0xe6,0x90,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdef6/*gb2312*/, 0x641b/*utf16*/, {0xe6,0x90,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdef7/*gb2312*/, 0x6420/*utf16*/, {0xe6,0x90,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdef8/*gb2312*/, 0x640c/*utf16*/, {0xe6,0x90,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdef9/*gb2312*/, 0x6426/*utf16*/, {0xe6,0x90,0xa6}/*utf8*/, 3/*utf8 len*/},{0xdefa/*gb2312*/, 0x6421/*utf16*/, {0xe6,0x90,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdefb/*gb2312*/, 0x645e/*utf16*/, {0xe6,0x91,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdefc/*gb2312*/, 0x6484/*utf16*/, {0xe6,0x92,0x84}/*utf8*/, 3/*utf8 len*/},{0xdefd/*gb2312*/, 0x646d/*utf16*/, {0xe6,0x91,0xad}/*utf8*/, 3/*utf8 len*/},{0xdefe/*gb2312*/, 0x6496/*utf16*/, {0xe6,0x92,0x96}/*utf8*/, 3/*utf8 len*/},{0xdfa1/*gb2312*/, 0x647a/*utf16*/, {0xe6,0x91,0xba}/*utf8*/, 3/*utf8 len*/},{0xdfa2/*gb2312*/, 0x64b7/*utf16*/, {0xe6,0x92,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdfa3/*gb2312*/, 0x64b8/*utf16*/, {0xe6,0x92,0xb8}/*utf8*/, 3/*utf8 len*/},{0xdfa4/*gb2312*/, 0x6499/*utf16*/, {0xe6,0x92,0x99}/*utf8*/, 3/*utf8 len*/},{0xdfa5/*gb2312*/, 0x64ba/*utf16*/, {0xe6,0x92,0xba}/*utf8*/, 3/*utf8 len*/},{0xdfa6/*gb2312*/, 0x64c0/*utf16*/, {0xe6,0x93,0x80}/*utf8*/, 3/*utf8 len*/},{0xdfa7/*gb2312*/, 0x64d0/*utf16*/, {0xe6,0x93,0x90}/*utf8*/, 3/*utf8 len*/},{0xdfa8/*gb2312*/, 0x64d7/*utf16*/, {0xe6,0x93,0x97}/*utf8*/, 3/*utf8 len*/},{0xdfa9/*gb2312*/, 0x64e4/*utf16*/, {0xe6,0x93,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdfaa/*gb2312*/, 0x64e2/*utf16*/, {0xe6,0x93,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdfab/*gb2312*/, 0x6509/*utf16*/, {0xe6,0x94,0x89}/*utf8*/, 3/*utf8 len*/},{0xdfac/*gb2312*/, 0x6525/*utf16*/, {0xe6,0x94,0xa5}/*utf8*/, 3/*utf8 len*/},{0xdfad/*gb2312*/, 0x652e/*utf16*/, {0xe6,0x94,0xae}/*utf8*/, 3/*utf8 len*/},{0xdfae/*gb2312*/, 0x5f0b/*utf16*/, {0xe5,0xbc,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdfaf/*gb2312*/, 0x5fd2/*utf16*/, {0xe5,0xbf,0x92}/*utf8*/, 3/*utf8 len*/},{0xdfb0/*gb2312*/, 0x7519/*utf16*/, {0xe7,0x94,0x99}/*utf8*/, 3/*utf8 len*/},{0xdfb1/*gb2312*/, 0x5f11/*utf16*/, {0xe5,0xbc,0x91}/*utf8*/, 3/*utf8 len*/},{0xdfb2/*gb2312*/, 0x535f/*utf16*/, {0xe5,0x8d,0x9f}/*utf8*/, 3/*utf8 len*/},{0xdfb3/*gb2312*/, 0x53f1/*utf16*/, {0xe5,0x8f,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdfb4/*gb2312*/, 0x53fd/*utf16*/, {0xe5,0x8f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xdfb5/*gb2312*/, 0x53e9/*utf16*/, {0xe5,0x8f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdfb6/*gb2312*/, 0x53e8/*utf16*/, {0xe5,0x8f,0xa8}/*utf8*/, 3/*utf8 len*/},{0xdfb7/*gb2312*/, 0x53fb/*utf16*/, {0xe5,0x8f,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdfb8/*gb2312*/, 0x5412/*utf16*/, {0xe5,0x90,0x92}/*utf8*/, 3/*utf8 len*/},{0xdfb9/*gb2312*/, 0x5416/*utf16*/, {0xe5,0x90,0x96}/*utf8*/, 3/*utf8 len*/},{0xdfba/*gb2312*/, 0x5406/*utf16*/, {0xe5,0x90,0x86}/*utf8*/, 3/*utf8 len*/},{0xdfbb/*gb2312*/, 0x544b/*utf16*/, {0xe5,0x91,0x8b}/*utf8*/, 3/*utf8 len*/},{0xdfbc/*gb2312*/, 0x5452/*utf16*/, {0xe5,0x91,0x92}/*utf8*/, 3/*utf8 len*/},{0xdfbd/*gb2312*/, 0x5453/*utf16*/, {0xe5,0x91,0x93}/*utf8*/, 3/*utf8 len*/},{0xdfbe/*gb2312*/, 0x5454/*utf16*/, {0xe5,0x91,0x94}/*utf8*/, 3/*utf8 len*/},{0xdfbf/*gb2312*/, 0x5456/*utf16*/, {0xe5,0x91,0x96}/*utf8*/, 3/*utf8 len*/},{0xdfc0/*gb2312*/, 0x5443/*utf16*/, {0xe5,0x91,0x83}/*utf8*/, 3/*utf8 len*/},{0xdfc1/*gb2312*/, 0x5421/*utf16*/, {0xe5,0x90,0xa1}/*utf8*/, 3/*utf8 len*/},{0xdfc2/*gb2312*/, 0x5457/*utf16*/, {0xe5,0x91,0x97}/*utf8*/, 3/*utf8 len*/},{0xdfc3/*gb2312*/, 0x5459/*utf16*/, {0xe5,0x91,0x99}/*utf8*/, 3/*utf8 len*/},{0xdfc4/*gb2312*/, 0x5423/*utf16*/, {0xe5,0x90,0xa3}/*utf8*/, 3/*utf8 len*/},{0xdfc5/*gb2312*/, 0x5432/*utf16*/, {0xe5,0x90,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdfc6/*gb2312*/, 0x5482/*utf16*/, {0xe5,0x92,0x82}/*utf8*/, 3/*utf8 len*/},{0xdfc7/*gb2312*/, 0x5494/*utf16*/, {0xe5,0x92,0x94}/*utf8*/, 3/*utf8 len*/},{0xdfc8/*gb2312*/, 0x5477/*utf16*/, {0xe5,0x91,0xb7}/*utf8*/, 3/*utf8 len*/},{0xdfc9/*gb2312*/, 0x5471/*utf16*/, {0xe5,0x91,0xb1}/*utf8*/, 3/*utf8 len*/},{0xdfca/*gb2312*/, 0x5464/*utf16*/, {0xe5,0x91,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdfcb/*gb2312*/, 0x549a/*utf16*/, {0xe5,0x92,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdfcc/*gb2312*/, 0x549b/*utf16*/, {0xe5,0x92,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdfcd/*gb2312*/, 0x5484/*utf16*/, {0xe5,0x92,0x84}/*utf8*/, 3/*utf8 len*/},{0xdfce/*gb2312*/, 0x5476/*utf16*/, {0xe5,0x91,0xb6}/*utf8*/, 3/*utf8 len*/},{0xdfcf/*gb2312*/, 0x5466/*utf16*/, {0xe5,0x91,0xa6}/*utf8*/, 3/*utf8 len*/},{0xdfd0/*gb2312*/, 0x549d/*utf16*/, {0xe5,0x92,0x9d}/*utf8*/, 3/*utf8 len*/},{0xdfd1/*gb2312*/, 0x54d0/*utf16*/, {0xe5,0x93,0x90}/*utf8*/, 3/*utf8 len*/},{0xdfd2/*gb2312*/, 0x54ad/*utf16*/, {0xe5,0x92,0xad}/*utf8*/, 3/*utf8 len*/},{0xdfd3/*gb2312*/, 0x54c2/*utf16*/, {0xe5,0x93,0x82}/*utf8*/, 3/*utf8 len*/},{0xdfd4/*gb2312*/, 0x54b4/*utf16*/, {0xe5,0x92,0xb4}/*utf8*/, 3/*utf8 len*/},{0xdfd5/*gb2312*/, 0x54d2/*utf16*/, {0xe5,0x93,0x92}/*utf8*/, 3/*utf8 len*/},{0xdfd6/*gb2312*/, 0x54a7/*utf16*/, {0xe5,0x92,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdfd7/*gb2312*/, 0x54a6/*utf16*/, {0xe5,0x92,0xa6}/*utf8*/, 3/*utf8 len*/},{0xdfd8/*gb2312*/, 0x54d3/*utf16*/, {0xe5,0x93,0x93}/*utf8*/, 3/*utf8 len*/},{0xdfd9/*gb2312*/, 0x54d4/*utf16*/, {0xe5,0x93,0x94}/*utf8*/, 3/*utf8 len*/},{0xdfda/*gb2312*/, 0x5472/*utf16*/, {0xe5,0x91,0xb2}/*utf8*/, 3/*utf8 len*/},{0xdfdb/*gb2312*/, 0x54a3/*utf16*/, {0xe5,0x92,0xa3}/*utf8*/, 3/*utf8 len*/},{0xdfdc/*gb2312*/, 0x54d5/*utf16*/, {0xe5,0x93,0x95}/*utf8*/, 3/*utf8 len*/},{0xdfdd/*gb2312*/, 0x54bb/*utf16*/, {0xe5,0x92,0xbb}/*utf8*/, 3/*utf8 len*/},{0xdfde/*gb2312*/, 0x54bf/*utf16*/, {0xe5,0x92,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdfdf/*gb2312*/, 0x54cc/*utf16*/, {0xe5,0x93,0x8c}/*utf8*/, 3/*utf8 len*/},{0xdfe0/*gb2312*/, 0x54d9/*utf16*/, {0xe5,0x93,0x99}/*utf8*/, 3/*utf8 len*/},{0xdfe1/*gb2312*/, 0x54da/*utf16*/, {0xe5,0x93,0x9a}/*utf8*/, 3/*utf8 len*/},{0xdfe2/*gb2312*/, 0x54dc/*utf16*/, {0xe5,0x93,0x9c}/*utf8*/, 3/*utf8 len*/},{0xdfe3/*gb2312*/, 0x54a9/*utf16*/, {0xe5,0x92,0xa9}/*utf8*/, 3/*utf8 len*/},{0xdfe4/*gb2312*/, 0x54aa/*utf16*/, {0xe5,0x92,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdfe5/*gb2312*/, 0x54a4/*utf16*/, {0xe5,0x92,0xa4}/*utf8*/, 3/*utf8 len*/},{0xdfe6/*gb2312*/, 0x54dd/*utf16*/, {0xe5,0x93,0x9d}/*utf8*/, 3/*utf8 len*/},{0xdfe7/*gb2312*/, 0x54cf/*utf16*/, {0xe5,0x93,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdfe8/*gb2312*/, 0x54de/*utf16*/, {0xe5,0x93,0x9e}/*utf8*/, 3/*utf8 len*/},{0xdfe9/*gb2312*/, 0x551b/*utf16*/, {0xe5,0x94,0x9b}/*utf8*/, 3/*utf8 len*/},{0xdfea/*gb2312*/, 0x54e7/*utf16*/, {0xe5,0x93,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdfeb/*gb2312*/, 0x5520/*utf16*/, {0xe5,0x94,0xa0}/*utf8*/, 3/*utf8 len*/},{0xdfec/*gb2312*/, 0x54fd/*utf16*/, {0xe5,0x93,0xbd}/*utf8*/, 3/*utf8 len*/},{0xdfed/*gb2312*/, 0x5514/*utf16*/, {0xe5,0x94,0x94}/*utf8*/, 3/*utf8 len*/},{0xdfee/*gb2312*/, 0x54f3/*utf16*/, {0xe5,0x93,0xb3}/*utf8*/, 3/*utf8 len*/},{0xdfef/*gb2312*/, 0x5522/*utf16*/, {0xe5,0x94,0xa2}/*utf8*/, 3/*utf8 len*/},{0xdff0/*gb2312*/, 0x5523/*utf16*/, {0xe5,0x94,0xa3}/*utf8*/, 3/*utf8 len*/},{0xdff1/*gb2312*/, 0x550f/*utf16*/, {0xe5,0x94,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdff2/*gb2312*/, 0x5511/*utf16*/, {0xe5,0x94,0x91}/*utf8*/, 3/*utf8 len*/},{0xdff3/*gb2312*/, 0x5527/*utf16*/, {0xe5,0x94,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdff4/*gb2312*/, 0x552a/*utf16*/, {0xe5,0x94,0xaa}/*utf8*/, 3/*utf8 len*/},{0xdff5/*gb2312*/, 0x5567/*utf16*/, {0xe5,0x95,0xa7}/*utf8*/, 3/*utf8 len*/},{0xdff6/*gb2312*/, 0x558f/*utf16*/, {0xe5,0x96,0x8f}/*utf8*/, 3/*utf8 len*/},{0xdff7/*gb2312*/, 0x55b5/*utf16*/, {0xe5,0x96,0xb5}/*utf8*/, 3/*utf8 len*/},{0xdff8/*gb2312*/, 0x5549/*utf16*/, {0xe5,0x95,0x89}/*utf8*/, 3/*utf8 len*/},{0xdff9/*gb2312*/, 0x556d/*utf16*/, {0xe5,0x95,0xad}/*utf8*/, 3/*utf8 len*/},{0xdffa/*gb2312*/, 0x5541/*utf16*/, {0xe5,0x95,0x81}/*utf8*/, 3/*utf8 len*/},{0xdffb/*gb2312*/, 0x5555/*utf16*/, {0xe5,0x95,0x95}/*utf8*/, 3/*utf8 len*/},{0xdffc/*gb2312*/, 0x553f/*utf16*/, {0xe5,0x94,0xbf}/*utf8*/, 3/*utf8 len*/},{0xdffd/*gb2312*/, 0x5550/*utf16*/, {0xe5,0x95,0x90}/*utf8*/, 3/*utf8 len*/},{0xdffe/*gb2312*/, 0x553c/*utf16*/, {0xe5,0x94,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe0a1/*gb2312*/, 0x5537/*utf16*/, {0xe5,0x94,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe0a2/*gb2312*/, 0x5556/*utf16*/, {0xe5,0x95,0x96}/*utf8*/, 3/*utf8 len*/},{0xe0a3/*gb2312*/, 0x5575/*utf16*/, {0xe5,0x95,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe0a4/*gb2312*/, 0x5576/*utf16*/, {0xe5,0x95,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe0a5/*gb2312*/, 0x5577/*utf16*/, {0xe5,0x95,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe0a6/*gb2312*/, 0x5533/*utf16*/, {0xe5,0x94,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe0a7/*gb2312*/, 0x5530/*utf16*/, {0xe5,0x94,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe0a8/*gb2312*/, 0x555c/*utf16*/, {0xe5,0x95,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe0a9/*gb2312*/, 0x558b/*utf16*/, {0xe5,0x96,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe0aa/*gb2312*/, 0x55d2/*utf16*/, {0xe5,0x97,0x92}/*utf8*/, 3/*utf8 len*/},{0xe0ab/*gb2312*/, 0x5583/*utf16*/, {0xe5,0x96,0x83}/*utf8*/, 3/*utf8 len*/},{0xe0ac/*gb2312*/, 0x55b1/*utf16*/, {0xe5,0x96,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe0ad/*gb2312*/, 0x55b9/*utf16*/, {0xe5,0x96,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe0ae/*gb2312*/, 0x5588/*utf16*/, {0xe5,0x96,0x88}/*utf8*/, 3/*utf8 len*/},{0xe0af/*gb2312*/, 0x5581/*utf16*/, {0xe5,0x96,0x81}/*utf8*/, 3/*utf8 len*/},{0xe0b0/*gb2312*/, 0x559f/*utf16*/, {0xe5,0x96,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe0b1/*gb2312*/, 0x557e/*utf16*/, {0xe5,0x95,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe0b2/*gb2312*/, 0x55d6/*utf16*/, {0xe5,0x97,0x96}/*utf8*/, 3/*utf8 len*/},{0xe0b3/*gb2312*/, 0x5591/*utf16*/, {0xe5,0x96,0x91}/*utf8*/, 3/*utf8 len*/},{0xe0b4/*gb2312*/, 0x557b/*utf16*/, {0xe5,0x95,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe0b5/*gb2312*/, 0x55df/*utf16*/, {0xe5,0x97,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe0b6/*gb2312*/, 0x55bd/*utf16*/, {0xe5,0x96,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe0b7/*gb2312*/, 0x55be/*utf16*/, {0xe5,0x96,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe0b8/*gb2312*/, 0x5594/*utf16*/, {0xe5,0x96,0x94}/*utf8*/, 3/*utf8 len*/},{0xe0b9/*gb2312*/, 0x5599/*utf16*/, {0xe5,0x96,0x99}/*utf8*/, 3/*utf8 len*/},{0xe0ba/*gb2312*/, 0x55ea/*utf16*/, {0xe5,0x97,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe0bb/*gb2312*/, 0x55f7/*utf16*/, {0xe5,0x97,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe0bc/*gb2312*/, 0x55c9/*utf16*/, {0xe5,0x97,0x89}/*utf8*/, 3/*utf8 len*/},{0xe0bd/*gb2312*/, 0x561f/*utf16*/, {0xe5,0x98,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe0be/*gb2312*/, 0x55d1/*utf16*/, {0xe5,0x97,0x91}/*utf8*/, 3/*utf8 len*/},{0xe0bf/*gb2312*/, 0x55eb/*utf16*/, {0xe5,0x97,0xab}/*utf8*/, 3/*utf8 len*/},{0xe0c0/*gb2312*/, 0x55ec/*utf16*/, {0xe5,0x97,0xac}/*utf8*/, 3/*utf8 len*/},{0xe0c1/*gb2312*/, 0x55d4/*utf16*/, {0xe5,0x97,0x94}/*utf8*/, 3/*utf8 len*/},{0xe0c2/*gb2312*/, 0x55e6/*utf16*/, {0xe5,0x97,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe0c3/*gb2312*/, 0x55dd/*utf16*/, {0xe5,0x97,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe0c4/*gb2312*/, 0x55c4/*utf16*/, {0xe5,0x97,0x84}/*utf8*/, 3/*utf8 len*/},{0xe0c5/*gb2312*/, 0x55ef/*utf16*/, {0xe5,0x97,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe0c6/*gb2312*/, 0x55e5/*utf16*/, {0xe5,0x97,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe0c7/*gb2312*/, 0x55f2/*utf16*/, {0xe5,0x97,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe0c8/*gb2312*/, 0x55f3/*utf16*/, {0xe5,0x97,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe0c9/*gb2312*/, 0x55cc/*utf16*/, {0xe5,0x97,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe0ca/*gb2312*/, 0x55cd/*utf16*/, {0xe5,0x97,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe0cb/*gb2312*/, 0x55e8/*utf16*/, {0xe5,0x97,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe0cc/*gb2312*/, 0x55f5/*utf16*/, {0xe5,0x97,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe0cd/*gb2312*/, 0x55e4/*utf16*/, {0xe5,0x97,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe0ce/*gb2312*/, 0x8f94/*utf16*/, {0xe8,0xbe,0x94}/*utf8*/, 3/*utf8 len*/},{0xe0cf/*gb2312*/, 0x561e/*utf16*/, {0xe5,0x98,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe0d0/*gb2312*/, 0x5608/*utf16*/, {0xe5,0x98,0x88}/*utf8*/, 3/*utf8 len*/},{0xe0d1/*gb2312*/, 0x560c/*utf16*/, {0xe5,0x98,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe0d2/*gb2312*/, 0x5601/*utf16*/, {0xe5,0x98,0x81}/*utf8*/, 3/*utf8 len*/},{0xe0d3/*gb2312*/, 0x5624/*utf16*/, {0xe5,0x98,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe0d4/*gb2312*/, 0x5623/*utf16*/, {0xe5,0x98,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe0d5/*gb2312*/, 0x55fe/*utf16*/, {0xe5,0x97,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe0d6/*gb2312*/, 0x5600/*utf16*/, {0xe5,0x98,0x80}/*utf8*/, 3/*utf8 len*/},{0xe0d7/*gb2312*/, 0x5627/*utf16*/, {0xe5,0x98,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe0d8/*gb2312*/, 0x562d/*utf16*/, {0xe5,0x98,0xad}/*utf8*/, 3/*utf8 len*/},{0xe0d9/*gb2312*/, 0x5658/*utf16*/, {0xe5,0x99,0x98}/*utf8*/, 3/*utf8 len*/},{0xe0da/*gb2312*/, 0x5639/*utf16*/, {0xe5,0x98,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe0db/*gb2312*/, 0x5657/*utf16*/, {0xe5,0x99,0x97}/*utf8*/, 3/*utf8 len*/},{0xe0dc/*gb2312*/, 0x562c/*utf16*/, {0xe5,0x98,0xac}/*utf8*/, 3/*utf8 len*/},{0xe0dd/*gb2312*/, 0x564d/*utf16*/, {0xe5,0x99,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe0de/*gb2312*/, 0x5662/*utf16*/, {0xe5,0x99,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe0df/*gb2312*/, 0x5659/*utf16*/, {0xe5,0x99,0x99}/*utf8*/, 3/*utf8 len*/},{0xe0e0/*gb2312*/, 0x565c/*utf16*/, {0xe5,0x99,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe0e1/*gb2312*/, 0x564c/*utf16*/, {0xe5,0x99,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe0e2/*gb2312*/, 0x5654/*utf16*/, {0xe5,0x99,0x94}/*utf8*/, 3/*utf8 len*/},{0xe0e3/*gb2312*/, 0x5686/*utf16*/, {0xe5,0x9a,0x86}/*utf8*/, 3/*utf8 len*/},{0xe0e4/*gb2312*/, 0x5664/*utf16*/, {0xe5,0x99,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe0e5/*gb2312*/, 0x5671/*utf16*/, {0xe5,0x99,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe0e6/*gb2312*/, 0x566b/*utf16*/, {0xe5,0x99,0xab}/*utf8*/, 3/*utf8 len*/},{0xe0e7/*gb2312*/, 0x567b/*utf16*/, {0xe5,0x99,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe0e8/*gb2312*/, 0x567c/*utf16*/, {0xe5,0x99,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe0e9/*gb2312*/, 0x5685/*utf16*/, {0xe5,0x9a,0x85}/*utf8*/, 3/*utf8 len*/},{0xe0ea/*gb2312*/, 0x5693/*utf16*/, {0xe5,0x9a,0x93}/*utf8*/, 3/*utf8 len*/},{0xe0eb/*gb2312*/, 0x56af/*utf16*/, {0xe5,0x9a,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe0ec/*gb2312*/, 0x56d4/*utf16*/, {0xe5,0x9b,0x94}/*utf8*/, 3/*utf8 len*/},{0xe0ed/*gb2312*/, 0x56d7/*utf16*/, {0xe5,0x9b,0x97}/*utf8*/, 3/*utf8 len*/},{0xe0ee/*gb2312*/, 0x56dd/*utf16*/, {0xe5,0x9b,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe0ef/*gb2312*/, 0x56e1/*utf16*/, {0xe5,0x9b,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe0f0/*gb2312*/, 0x56f5/*utf16*/, {0xe5,0x9b,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe0f1/*gb2312*/, 0x56eb/*utf16*/, {0xe5,0x9b,0xab}/*utf8*/, 3/*utf8 len*/},{0xe0f2/*gb2312*/, 0x56f9/*utf16*/, {0xe5,0x9b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe0f3/*gb2312*/, 0x56ff/*utf16*/, {0xe5,0x9b,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe0f4/*gb2312*/, 0x5704/*utf16*/, {0xe5,0x9c,0x84}/*utf8*/, 3/*utf8 len*/},{0xe0f5/*gb2312*/, 0x570a/*utf16*/, {0xe5,0x9c,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe0f6/*gb2312*/, 0x5709/*utf16*/, {0xe5,0x9c,0x89}/*utf8*/, 3/*utf8 len*/},{0xe0f7/*gb2312*/, 0x571c/*utf16*/, {0xe5,0x9c,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe0f8/*gb2312*/, 0x5e0f/*utf16*/, {0xe5,0xb8,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe0f9/*gb2312*/, 0x5e19/*utf16*/, {0xe5,0xb8,0x99}/*utf8*/, 3/*utf8 len*/},{0xe0fa/*gb2312*/, 0x5e14/*utf16*/, {0xe5,0xb8,0x94}/*utf8*/, 3/*utf8 len*/},{0xe0fb/*gb2312*/, 0x5e11/*utf16*/, {0xe5,0xb8,0x91}/*utf8*/, 3/*utf8 len*/},{0xe0fc/*gb2312*/, 0x5e31/*utf16*/, {0xe5,0xb8,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe0fd/*gb2312*/, 0x5e3b/*utf16*/, {0xe5,0xb8,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe0fe/*gb2312*/, 0x5e3c/*utf16*/, {0xe5,0xb8,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe1a1/*gb2312*/, 0x5e37/*utf16*/, {0xe5,0xb8,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe1a2/*gb2312*/, 0x5e44/*utf16*/, {0xe5,0xb9,0x84}/*utf8*/, 3/*utf8 len*/},{0xe1a3/*gb2312*/, 0x5e54/*utf16*/, {0xe5,0xb9,0x94}/*utf8*/, 3/*utf8 len*/},{0xe1a4/*gb2312*/, 0x5e5b/*utf16*/, {0xe5,0xb9,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe1a5/*gb2312*/, 0x5e5e/*utf16*/, {0xe5,0xb9,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe1a6/*gb2312*/, 0x5e61/*utf16*/, {0xe5,0xb9,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe1a7/*gb2312*/, 0x5c8c/*utf16*/, {0xe5,0xb2,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe1a8/*gb2312*/, 0x5c7a/*utf16*/, {0xe5,0xb1,0xba}/*utf8*/, 3/*utf8 len*/},{0xe1a9/*gb2312*/, 0x5c8d/*utf16*/, {0xe5,0xb2,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe1aa/*gb2312*/, 0x5c90/*utf16*/, {0xe5,0xb2,0x90}/*utf8*/, 3/*utf8 len*/},{0xe1ab/*gb2312*/, 0x5c96/*utf16*/, {0xe5,0xb2,0x96}/*utf8*/, 3/*utf8 len*/},{0xe1ac/*gb2312*/, 0x5c88/*utf16*/, {0xe5,0xb2,0x88}/*utf8*/, 3/*utf8 len*/},{0xe1ad/*gb2312*/, 0x5c98/*utf16*/, {0xe5,0xb2,0x98}/*utf8*/, 3/*utf8 len*/},{0xe1ae/*gb2312*/, 0x5c99/*utf16*/, {0xe5,0xb2,0x99}/*utf8*/, 3/*utf8 len*/},{0xe1af/*gb2312*/, 0x5c91/*utf16*/, {0xe5,0xb2,0x91}/*utf8*/, 3/*utf8 len*/},{0xe1b0/*gb2312*/, 0x5c9a/*utf16*/, {0xe5,0xb2,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe1b1/*gb2312*/, 0x5c9c/*utf16*/, {0xe5,0xb2,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe1b2/*gb2312*/, 0x5cb5/*utf16*/, {0xe5,0xb2,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe1b3/*gb2312*/, 0x5ca2/*utf16*/, {0xe5,0xb2,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe1b4/*gb2312*/, 0x5cbd/*utf16*/, {0xe5,0xb2,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe1b5/*gb2312*/, 0x5cac/*utf16*/, {0xe5,0xb2,0xac}/*utf8*/, 3/*utf8 len*/},{0xe1b6/*gb2312*/, 0x5cab/*utf16*/, {0xe5,0xb2,0xab}/*utf8*/, 3/*utf8 len*/},{0xe1b7/*gb2312*/, 0x5cb1/*utf16*/, {0xe5,0xb2,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe1b8/*gb2312*/, 0x5ca3/*utf16*/, {0xe5,0xb2,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe1b9/*gb2312*/, 0x5cc1/*utf16*/, {0xe5,0xb3,0x81}/*utf8*/, 3/*utf8 len*/},{0xe1ba/*gb2312*/, 0x5cb7/*utf16*/, {0xe5,0xb2,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe1bb/*gb2312*/, 0x5cc4/*utf16*/, {0xe5,0xb3,0x84}/*utf8*/, 3/*utf8 len*/},{0xe1bc/*gb2312*/, 0x5cd2/*utf16*/, {0xe5,0xb3,0x92}/*utf8*/, 3/*utf8 len*/},{0xe1bd/*gb2312*/, 0x5ce4/*utf16*/, {0xe5,0xb3,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe1be/*gb2312*/, 0x5ccb/*utf16*/, {0xe5,0xb3,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe1bf/*gb2312*/, 0x5ce5/*utf16*/, {0xe5,0xb3,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe1c0/*gb2312*/, 0x5d02/*utf16*/, {0xe5,0xb4,0x82}/*utf8*/, 3/*utf8 len*/},{0xe1c1/*gb2312*/, 0x5d03/*utf16*/, {0xe5,0xb4,0x83}/*utf8*/, 3/*utf8 len*/},{0xe1c2/*gb2312*/, 0x5d27/*utf16*/, {0xe5,0xb4,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe1c3/*gb2312*/, 0x5d26/*utf16*/, {0xe5,0xb4,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe1c4/*gb2312*/, 0x5d2e/*utf16*/, {0xe5,0xb4,0xae}/*utf8*/, 3/*utf8 len*/},{0xe1c5/*gb2312*/, 0x5d24/*utf16*/, {0xe5,0xb4,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe1c6/*gb2312*/, 0x5d1e/*utf16*/, {0xe5,0xb4,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe1c7/*gb2312*/, 0x5d06/*utf16*/, {0xe5,0xb4,0x86}/*utf8*/, 3/*utf8 len*/},{0xe1c8/*gb2312*/, 0x5d1b/*utf16*/, {0xe5,0xb4,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe1c9/*gb2312*/, 0x5d58/*utf16*/, {0xe5,0xb5,0x98}/*utf8*/, 3/*utf8 len*/},{0xe1ca/*gb2312*/, 0x5d3e/*utf16*/, {0xe5,0xb4,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe1cb/*gb2312*/, 0x5d34/*utf16*/, {0xe5,0xb4,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe1cc/*gb2312*/, 0x5d3d/*utf16*/, {0xe5,0xb4,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe1cd/*gb2312*/, 0x5d6c/*utf16*/, {0xe5,0xb5,0xac}/*utf8*/, 3/*utf8 len*/},{0xe1ce/*gb2312*/, 0x5d5b/*utf16*/, {0xe5,0xb5,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe1cf/*gb2312*/, 0x5d6f/*utf16*/, {0xe5,0xb5,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe1d0/*gb2312*/, 0x5d5d/*utf16*/, {0xe5,0xb5,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe1d1/*gb2312*/, 0x5d6b/*utf16*/, {0xe5,0xb5,0xab}/*utf8*/, 3/*utf8 len*/},{0xe1d2/*gb2312*/, 0x5d4b/*utf16*/, {0xe5,0xb5,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe1d3/*gb2312*/, 0x5d4a/*utf16*/, {0xe5,0xb5,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe1d4/*gb2312*/, 0x5d69/*utf16*/, {0xe5,0xb5,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe1d5/*gb2312*/, 0x5d74/*utf16*/, {0xe5,0xb5,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe1d6/*gb2312*/, 0x5d82/*utf16*/, {0xe5,0xb6,0x82}/*utf8*/, 3/*utf8 len*/},{0xe1d7/*gb2312*/, 0x5d99/*utf16*/, {0xe5,0xb6,0x99}/*utf8*/, 3/*utf8 len*/},{0xe1d8/*gb2312*/, 0x5d9d/*utf16*/, {0xe5,0xb6,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe1d9/*gb2312*/, 0x8c73/*utf16*/, {0xe8,0xb1,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe1da/*gb2312*/, 0x5db7/*utf16*/, {0xe5,0xb6,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe1db/*gb2312*/, 0x5dc5/*utf16*/, {0xe5,0xb7,0x85}/*utf8*/, 3/*utf8 len*/},{0xe1dc/*gb2312*/, 0x5f73/*utf16*/, {0xe5,0xbd,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe1dd/*gb2312*/, 0x5f77/*utf16*/, {0xe5,0xbd,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe1de/*gb2312*/, 0x5f82/*utf16*/, {0xe5,0xbe,0x82}/*utf8*/, 3/*utf8 len*/},{0xe1df/*gb2312*/, 0x5f87/*utf16*/, {0xe5,0xbe,0x87}/*utf8*/, 3/*utf8 len*/},{0xe1e0/*gb2312*/, 0x5f89/*utf16*/, {0xe5,0xbe,0x89}/*utf8*/, 3/*utf8 len*/},{0xe1e1/*gb2312*/, 0x5f8c/*utf16*/, {0xe5,0xbe,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe1e2/*gb2312*/, 0x5f95/*utf16*/, {0xe5,0xbe,0x95}/*utf8*/, 3/*utf8 len*/},{0xe1e3/*gb2312*/, 0x5f99/*utf16*/, {0xe5,0xbe,0x99}/*utf8*/, 3/*utf8 len*/},{0xe1e4/*gb2312*/, 0x5f9c/*utf16*/, {0xe5,0xbe,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe1e5/*gb2312*/, 0x5fa8/*utf16*/, {0xe5,0xbe,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe1e6/*gb2312*/, 0x5fad/*utf16*/, {0xe5,0xbe,0xad}/*utf8*/, 3/*utf8 len*/},{0xe1e7/*gb2312*/, 0x5fb5/*utf16*/, {0xe5,0xbe,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe1e8/*gb2312*/, 0x5fbc/*utf16*/, {0xe5,0xbe,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe1e9/*gb2312*/, 0x8862/*utf16*/, {0xe8,0xa1,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe1ea/*gb2312*/, 0x5f61/*utf16*/, {0xe5,0xbd,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe1eb/*gb2312*/, 0x72ad/*utf16*/, {0xe7,0x8a,0xad}/*utf8*/, 3/*utf8 len*/},{0xe1ec/*gb2312*/, 0x72b0/*utf16*/, {0xe7,0x8a,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe1ed/*gb2312*/, 0x72b4/*utf16*/, {0xe7,0x8a,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe1ee/*gb2312*/, 0x72b7/*utf16*/, {0xe7,0x8a,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe1ef/*gb2312*/, 0x72b8/*utf16*/, {0xe7,0x8a,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe1f0/*gb2312*/, 0x72c3/*utf16*/, {0xe7,0x8b,0x83}/*utf8*/, 3/*utf8 len*/},{0xe1f1/*gb2312*/, 0x72c1/*utf16*/, {0xe7,0x8b,0x81}/*utf8*/, 3/*utf8 len*/},{0xe1f2/*gb2312*/, 0x72ce/*utf16*/, {0xe7,0x8b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe1f3/*gb2312*/, 0x72cd/*utf16*/, {0xe7,0x8b,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe1f4/*gb2312*/, 0x72d2/*utf16*/, {0xe7,0x8b,0x92}/*utf8*/, 3/*utf8 len*/},{0xe1f5/*gb2312*/, 0x72e8/*utf16*/, {0xe7,0x8b,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe1f6/*gb2312*/, 0x72ef/*utf16*/, {0xe7,0x8b,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe1f7/*gb2312*/, 0x72e9/*utf16*/, {0xe7,0x8b,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe1f8/*gb2312*/, 0x72f2/*utf16*/, {0xe7,0x8b,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe1f9/*gb2312*/, 0x72f4/*utf16*/, {0xe7,0x8b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe1fa/*gb2312*/, 0x72f7/*utf16*/, {0xe7,0x8b,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe1fb/*gb2312*/, 0x7301/*utf16*/, {0xe7,0x8c,0x81}/*utf8*/, 3/*utf8 len*/},{0xe1fc/*gb2312*/, 0x72f3/*utf16*/, {0xe7,0x8b,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe1fd/*gb2312*/, 0x7303/*utf16*/, {0xe7,0x8c,0x83}/*utf8*/, 3/*utf8 len*/},{0xe1fe/*gb2312*/, 0x72fa/*utf16*/, {0xe7,0x8b,0xba}/*utf8*/, 3/*utf8 len*/},{0xe2a1/*gb2312*/, 0x72fb/*utf16*/, {0xe7,0x8b,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe2a2/*gb2312*/, 0x7317/*utf16*/, {0xe7,0x8c,0x97}/*utf8*/, 3/*utf8 len*/},{0xe2a3/*gb2312*/, 0x7313/*utf16*/, {0xe7,0x8c,0x93}/*utf8*/, 3/*utf8 len*/},{0xe2a4/*gb2312*/, 0x7321/*utf16*/, {0xe7,0x8c,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe2a5/*gb2312*/, 0x730a/*utf16*/, {0xe7,0x8c,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe2a6/*gb2312*/, 0x731e/*utf16*/, {0xe7,0x8c,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe2a7/*gb2312*/, 0x731d/*utf16*/, {0xe7,0x8c,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe2a8/*gb2312*/, 0x7315/*utf16*/, {0xe7,0x8c,0x95}/*utf8*/, 3/*utf8 len*/},{0xe2a9/*gb2312*/, 0x7322/*utf16*/, {0xe7,0x8c,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe2aa/*gb2312*/, 0x7339/*utf16*/, {0xe7,0x8c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe2ab/*gb2312*/, 0x7325/*utf16*/, {0xe7,0x8c,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe2ac/*gb2312*/, 0x732c/*utf16*/, {0xe7,0x8c,0xac}/*utf8*/, 3/*utf8 len*/},{0xe2ad/*gb2312*/, 0x7338/*utf16*/, {0xe7,0x8c,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe2ae/*gb2312*/, 0x7331/*utf16*/, {0xe7,0x8c,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe2af/*gb2312*/, 0x7350/*utf16*/, {0xe7,0x8d,0x90}/*utf8*/, 3/*utf8 len*/},{0xe2b0/*gb2312*/, 0x734d/*utf16*/, {0xe7,0x8d,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe2b1/*gb2312*/, 0x7357/*utf16*/, {0xe7,0x8d,0x97}/*utf8*/, 3/*utf8 len*/},{0xe2b2/*gb2312*/, 0x7360/*utf16*/, {0xe7,0x8d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe2b3/*gb2312*/, 0x736c/*utf16*/, {0xe7,0x8d,0xac}/*utf8*/, 3/*utf8 len*/},{0xe2b4/*gb2312*/, 0x736f/*utf16*/, {0xe7,0x8d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe2b5/*gb2312*/, 0x737e/*utf16*/, {0xe7,0x8d,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe2b6/*gb2312*/, 0x821b/*utf16*/, {0xe8,0x88,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe2b7/*gb2312*/, 0x5925/*utf16*/, {0xe5,0xa4,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe2b8/*gb2312*/, 0x98e7/*utf16*/, {0xe9,0xa3,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe2b9/*gb2312*/, 0x5924/*utf16*/, {0xe5,0xa4,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe2ba/*gb2312*/, 0x5902/*utf16*/, {0xe5,0xa4,0x82}/*utf8*/, 3/*utf8 len*/},{0xe2bb/*gb2312*/, 0x9963/*utf16*/, {0xe9,0xa5,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe2bc/*gb2312*/, 0x9967/*utf16*/, {0xe9,0xa5,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe2bd/*gb2312*/, 0x9968/*utf16*/, {0xe9,0xa5,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe2be/*gb2312*/, 0x9969/*utf16*/, {0xe9,0xa5,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe2bf/*gb2312*/, 0x996a/*utf16*/, {0xe9,0xa5,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe2c0/*gb2312*/, 0x996b/*utf16*/, {0xe9,0xa5,0xab}/*utf8*/, 3/*utf8 len*/},{0xe2c1/*gb2312*/, 0x996c/*utf16*/, {0xe9,0xa5,0xac}/*utf8*/, 3/*utf8 len*/},{0xe2c2/*gb2312*/, 0x9974/*utf16*/, {0xe9,0xa5,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe2c3/*gb2312*/, 0x9977/*utf16*/, {0xe9,0xa5,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe2c4/*gb2312*/, 0x997d/*utf16*/, {0xe9,0xa5,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe2c5/*gb2312*/, 0x9980/*utf16*/, {0xe9,0xa6,0x80}/*utf8*/, 3/*utf8 len*/},{0xe2c6/*gb2312*/, 0x9984/*utf16*/, {0xe9,0xa6,0x84}/*utf8*/, 3/*utf8 len*/},{0xe2c7/*gb2312*/, 0x9987/*utf16*/, {0xe9,0xa6,0x87}/*utf8*/, 3/*utf8 len*/},{0xe2c8/*gb2312*/, 0x998a/*utf16*/, {0xe9,0xa6,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe2c9/*gb2312*/, 0x998d/*utf16*/, {0xe9,0xa6,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe2ca/*gb2312*/, 0x9990/*utf16*/, {0xe9,0xa6,0x90}/*utf8*/, 3/*utf8 len*/},{0xe2cb/*gb2312*/, 0x9991/*utf16*/, {0xe9,0xa6,0x91}/*utf8*/, 3/*utf8 len*/},{0xe2cc/*gb2312*/, 0x9993/*utf16*/, {0xe9,0xa6,0x93}/*utf8*/, 3/*utf8 len*/},{0xe2cd/*gb2312*/, 0x9994/*utf16*/, {0xe9,0xa6,0x94}/*utf8*/, 3/*utf8 len*/},{0xe2ce/*gb2312*/, 0x9995/*utf16*/, {0xe9,0xa6,0x95}/*utf8*/, 3/*utf8 len*/},{0xe2cf/*gb2312*/, 0x5e80/*utf16*/, {0xe5,0xba,0x80}/*utf8*/, 3/*utf8 len*/},{0xe2d0/*gb2312*/, 0x5e91/*utf16*/, {0xe5,0xba,0x91}/*utf8*/, 3/*utf8 len*/},{0xe2d1/*gb2312*/, 0x5e8b/*utf16*/, {0xe5,0xba,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe2d2/*gb2312*/, 0x5e96/*utf16*/, {0xe5,0xba,0x96}/*utf8*/, 3/*utf8 len*/},{0xe2d3/*gb2312*/, 0x5ea5/*utf16*/, {0xe5,0xba,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe2d4/*gb2312*/, 0x5ea0/*utf16*/, {0xe5,0xba,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe2d5/*gb2312*/, 0x5eb9/*utf16*/, {0xe5,0xba,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe2d6/*gb2312*/, 0x5eb5/*utf16*/, {0xe5,0xba,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe2d7/*gb2312*/, 0x5ebe/*utf16*/, {0xe5,0xba,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe2d8/*gb2312*/, 0x5eb3/*utf16*/, {0xe5,0xba,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe2d9/*gb2312*/, 0x8d53/*utf16*/, {0xe8,0xb5,0x93}/*utf8*/, 3/*utf8 len*/},{0xe2da/*gb2312*/, 0x5ed2/*utf16*/, {0xe5,0xbb,0x92}/*utf8*/, 3/*utf8 len*/},{0xe2db/*gb2312*/, 0x5ed1/*utf16*/, {0xe5,0xbb,0x91}/*utf8*/, 3/*utf8 len*/},{0xe2dc/*gb2312*/, 0x5edb/*utf16*/, {0xe5,0xbb,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe2dd/*gb2312*/, 0x5ee8/*utf16*/, {0xe5,0xbb,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe2de/*gb2312*/, 0x5eea/*utf16*/, {0xe5,0xbb,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe2df/*gb2312*/, 0x81ba/*utf16*/, {0xe8,0x86,0xba}/*utf8*/, 3/*utf8 len*/},{0xe2e0/*gb2312*/, 0x5fc4/*utf16*/, {0xe5,0xbf,0x84}/*utf8*/, 3/*utf8 len*/},{0xe2e1/*gb2312*/, 0x5fc9/*utf16*/, {0xe5,0xbf,0x89}/*utf8*/, 3/*utf8 len*/},{0xe2e2/*gb2312*/, 0x5fd6/*utf16*/, {0xe5,0xbf,0x96}/*utf8*/, 3/*utf8 len*/},{0xe2e3/*gb2312*/, 0x5fcf/*utf16*/, {0xe5,0xbf,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe2e4/*gb2312*/, 0x6003/*utf16*/, {0xe6,0x80,0x83}/*utf8*/, 3/*utf8 len*/},{0xe2e5/*gb2312*/, 0x5fee/*utf16*/, {0xe5,0xbf,0xae}/*utf8*/, 3/*utf8 len*/},{0xe2e6/*gb2312*/, 0x6004/*utf16*/, {0xe6,0x80,0x84}/*utf8*/, 3/*utf8 len*/},{0xe2e7/*gb2312*/, 0x5fe1/*utf16*/, {0xe5,0xbf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe2e8/*gb2312*/, 0x5fe4/*utf16*/, {0xe5,0xbf,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe2e9/*gb2312*/, 0x5ffe/*utf16*/, {0xe5,0xbf,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe2ea/*gb2312*/, 0x6005/*utf16*/, {0xe6,0x80,0x85}/*utf8*/, 3/*utf8 len*/},{0xe2eb/*gb2312*/, 0x6006/*utf16*/, {0xe6,0x80,0x86}/*utf8*/, 3/*utf8 len*/},{0xe2ec/*gb2312*/, 0x5fea/*utf16*/, {0xe5,0xbf,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe2ed/*gb2312*/, 0x5fed/*utf16*/, {0xe5,0xbf,0xad}/*utf8*/, 3/*utf8 len*/},{0xe2ee/*gb2312*/, 0x5ff8/*utf16*/, {0xe5,0xbf,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe2ef/*gb2312*/, 0x6019/*utf16*/, {0xe6,0x80,0x99}/*utf8*/, 3/*utf8 len*/},{0xe2f0/*gb2312*/, 0x6035/*utf16*/, {0xe6,0x80,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe2f1/*gb2312*/, 0x6026/*utf16*/, {0xe6,0x80,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe2f2/*gb2312*/, 0x601b/*utf16*/, {0xe6,0x80,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe2f3/*gb2312*/, 0x600f/*utf16*/, {0xe6,0x80,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe2f4/*gb2312*/, 0x600d/*utf16*/, {0xe6,0x80,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe2f5/*gb2312*/, 0x6029/*utf16*/, {0xe6,0x80,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe2f6/*gb2312*/, 0x602b/*utf16*/, {0xe6,0x80,0xab}/*utf8*/, 3/*utf8 len*/},{0xe2f7/*gb2312*/, 0x600a/*utf16*/, {0xe6,0x80,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe2f8/*gb2312*/, 0x603f/*utf16*/, {0xe6,0x80,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe2f9/*gb2312*/, 0x6021/*utf16*/, {0xe6,0x80,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe2fa/*gb2312*/, 0x6078/*utf16*/, {0xe6,0x81,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe2fb/*gb2312*/, 0x6079/*utf16*/, {0xe6,0x81,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe2fc/*gb2312*/, 0x607b/*utf16*/, {0xe6,0x81,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe2fd/*gb2312*/, 0x607a/*utf16*/, {0xe6,0x81,0xba}/*utf8*/, 3/*utf8 len*/},{0xe2fe/*gb2312*/, 0x6042/*utf16*/, {0xe6,0x81,0x82}/*utf8*/, 3/*utf8 len*/},{0xe3a1/*gb2312*/, 0x606a/*utf16*/, {0xe6,0x81,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe3a2/*gb2312*/, 0x607d/*utf16*/, {0xe6,0x81,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe3a3/*gb2312*/, 0x6096/*utf16*/, {0xe6,0x82,0x96}/*utf8*/, 3/*utf8 len*/},{0xe3a4/*gb2312*/, 0x609a/*utf16*/, {0xe6,0x82,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe3a5/*gb2312*/, 0x60ad/*utf16*/, {0xe6,0x82,0xad}/*utf8*/, 3/*utf8 len*/},{0xe3a6/*gb2312*/, 0x609d/*utf16*/, {0xe6,0x82,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe3a7/*gb2312*/, 0x6083/*utf16*/, {0xe6,0x82,0x83}/*utf8*/, 3/*utf8 len*/},{0xe3a8/*gb2312*/, 0x6092/*utf16*/, {0xe6,0x82,0x92}/*utf8*/, 3/*utf8 len*/},{0xe3a9/*gb2312*/, 0x608c/*utf16*/, {0xe6,0x82,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe3aa/*gb2312*/, 0x609b/*utf16*/, {0xe6,0x82,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe3ab/*gb2312*/, 0x60ec/*utf16*/, {0xe6,0x83,0xac}/*utf8*/, 3/*utf8 len*/},{0xe3ac/*gb2312*/, 0x60bb/*utf16*/, {0xe6,0x82,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe3ad/*gb2312*/, 0x60b1/*utf16*/, {0xe6,0x82,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe3ae/*gb2312*/, 0x60dd/*utf16*/, {0xe6,0x83,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe3af/*gb2312*/, 0x60d8/*utf16*/, {0xe6,0x83,0x98}/*utf8*/, 3/*utf8 len*/},{0xe3b0/*gb2312*/, 0x60c6/*utf16*/, {0xe6,0x83,0x86}/*utf8*/, 3/*utf8 len*/},{0xe3b1/*gb2312*/, 0x60da/*utf16*/, {0xe6,0x83,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe3b2/*gb2312*/, 0x60b4/*utf16*/, {0xe6,0x82,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe3b3/*gb2312*/, 0x6120/*utf16*/, {0xe6,0x84,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe3b4/*gb2312*/, 0x6126/*utf16*/, {0xe6,0x84,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe3b5/*gb2312*/, 0x6115/*utf16*/, {0xe6,0x84,0x95}/*utf8*/, 3/*utf8 len*/},{0xe3b6/*gb2312*/, 0x6123/*utf16*/, {0xe6,0x84,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe3b7/*gb2312*/, 0x60f4/*utf16*/, {0xe6,0x83,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe3b8/*gb2312*/, 0x6100/*utf16*/, {0xe6,0x84,0x80}/*utf8*/, 3/*utf8 len*/},{0xe3b9/*gb2312*/, 0x610e/*utf16*/, {0xe6,0x84,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe3ba/*gb2312*/, 0x612b/*utf16*/, {0xe6,0x84,0xab}/*utf8*/, 3/*utf8 len*/},{0xe3bb/*gb2312*/, 0x614a/*utf16*/, {0xe6,0x85,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe3bc/*gb2312*/, 0x6175/*utf16*/, {0xe6,0x85,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe3bd/*gb2312*/, 0x61ac/*utf16*/, {0xe6,0x86,0xac}/*utf8*/, 3/*utf8 len*/},{0xe3be/*gb2312*/, 0x6194/*utf16*/, {0xe6,0x86,0x94}/*utf8*/, 3/*utf8 len*/},{0xe3bf/*gb2312*/, 0x61a7/*utf16*/, {0xe6,0x86,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe3c0/*gb2312*/, 0x61b7/*utf16*/, {0xe6,0x86,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe3c1/*gb2312*/, 0x61d4/*utf16*/, {0xe6,0x87,0x94}/*utf8*/, 3/*utf8 len*/},{0xe3c2/*gb2312*/, 0x61f5/*utf16*/, {0xe6,0x87,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe3c3/*gb2312*/, 0x5fdd/*utf16*/, {0xe5,0xbf,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe3c4/*gb2312*/, 0x96b3/*utf16*/, {0xe9,0x9a,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe3c5/*gb2312*/, 0x95e9/*utf16*/, {0xe9,0x97,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe3c6/*gb2312*/, 0x95eb/*utf16*/, {0xe9,0x97,0xab}/*utf8*/, 3/*utf8 len*/},{0xe3c7/*gb2312*/, 0x95f1/*utf16*/, {0xe9,0x97,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe3c8/*gb2312*/, 0x95f3/*utf16*/, {0xe9,0x97,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe3c9/*gb2312*/, 0x95f5/*utf16*/, {0xe9,0x97,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe3ca/*gb2312*/, 0x95f6/*utf16*/, {0xe9,0x97,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe3cb/*gb2312*/, 0x95fc/*utf16*/, {0xe9,0x97,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe3cc/*gb2312*/, 0x95fe/*utf16*/, {0xe9,0x97,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe3cd/*gb2312*/, 0x9603/*utf16*/, {0xe9,0x98,0x83}/*utf8*/, 3/*utf8 len*/},{0xe3ce/*gb2312*/, 0x9604/*utf16*/, {0xe9,0x98,0x84}/*utf8*/, 3/*utf8 len*/},{0xe3cf/*gb2312*/, 0x9606/*utf16*/, {0xe9,0x98,0x86}/*utf8*/, 3/*utf8 len*/},{0xe3d0/*gb2312*/, 0x9608/*utf16*/, {0xe9,0x98,0x88}/*utf8*/, 3/*utf8 len*/},{0xe3d1/*gb2312*/, 0x960a/*utf16*/, {0xe9,0x98,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe3d2/*gb2312*/, 0x960b/*utf16*/, {0xe9,0x98,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe3d3/*gb2312*/, 0x960c/*utf16*/, {0xe9,0x98,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe3d4/*gb2312*/, 0x960d/*utf16*/, {0xe9,0x98,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe3d5/*gb2312*/, 0x960f/*utf16*/, {0xe9,0x98,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe3d6/*gb2312*/, 0x9612/*utf16*/, {0xe9,0x98,0x92}/*utf8*/, 3/*utf8 len*/},{0xe3d7/*gb2312*/, 0x9615/*utf16*/, {0xe9,0x98,0x95}/*utf8*/, 3/*utf8 len*/},{0xe3d8/*gb2312*/, 0x9616/*utf16*/, {0xe9,0x98,0x96}/*utf8*/, 3/*utf8 len*/},{0xe3d9/*gb2312*/, 0x9617/*utf16*/, {0xe9,0x98,0x97}/*utf8*/, 3/*utf8 len*/},{0xe3da/*gb2312*/, 0x9619/*utf16*/, {0xe9,0x98,0x99}/*utf8*/, 3/*utf8 len*/},{0xe3db/*gb2312*/, 0x961a/*utf16*/, {0xe9,0x98,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe3dc/*gb2312*/, 0x4e2c/*utf16*/, {0xe4,0xb8,0xac}/*utf8*/, 3/*utf8 len*/},{0xe3dd/*gb2312*/, 0x723f/*utf16*/, {0xe7,0x88,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe3de/*gb2312*/, 0x6215/*utf16*/, {0xe6,0x88,0x95}/*utf8*/, 3/*utf8 len*/},{0xe3df/*gb2312*/, 0x6c35/*utf16*/, {0xe6,0xb0,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe3e0/*gb2312*/, 0x6c54/*utf16*/, {0xe6,0xb1,0x94}/*utf8*/, 3/*utf8 len*/},{0xe3e1/*gb2312*/, 0x6c5c/*utf16*/, {0xe6,0xb1,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe3e2/*gb2312*/, 0x6c4a/*utf16*/, {0xe6,0xb1,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe3e3/*gb2312*/, 0x6ca3/*utf16*/, {0xe6,0xb2,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe3e4/*gb2312*/, 0x6c85/*utf16*/, {0xe6,0xb2,0x85}/*utf8*/, 3/*utf8 len*/},{0xe3e5/*gb2312*/, 0x6c90/*utf16*/, {0xe6,0xb2,0x90}/*utf8*/, 3/*utf8 len*/},{0xe3e6/*gb2312*/, 0x6c94/*utf16*/, {0xe6,0xb2,0x94}/*utf8*/, 3/*utf8 len*/},{0xe3e7/*gb2312*/, 0x6c8c/*utf16*/, {0xe6,0xb2,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe3e8/*gb2312*/, 0x6c68/*utf16*/, {0xe6,0xb1,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe3e9/*gb2312*/, 0x6c69/*utf16*/, {0xe6,0xb1,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe3ea/*gb2312*/, 0x6c74/*utf16*/, {0xe6,0xb1,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe3eb/*gb2312*/, 0x6c76/*utf16*/, {0xe6,0xb1,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe3ec/*gb2312*/, 0x6c86/*utf16*/, {0xe6,0xb2,0x86}/*utf8*/, 3/*utf8 len*/},{0xe3ed/*gb2312*/, 0x6ca9/*utf16*/, {0xe6,0xb2,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe3ee/*gb2312*/, 0x6cd0/*utf16*/, {0xe6,0xb3,0x90}/*utf8*/, 3/*utf8 len*/},{0xe3ef/*gb2312*/, 0x6cd4/*utf16*/, {0xe6,0xb3,0x94}/*utf8*/, 3/*utf8 len*/},{0xe3f0/*gb2312*/, 0x6cad/*utf16*/, {0xe6,0xb2,0xad}/*utf8*/, 3/*utf8 len*/},{0xe3f1/*gb2312*/, 0x6cf7/*utf16*/, {0xe6,0xb3,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe3f2/*gb2312*/, 0x6cf8/*utf16*/, {0xe6,0xb3,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe3f3/*gb2312*/, 0x6cf1/*utf16*/, {0xe6,0xb3,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe3f4/*gb2312*/, 0x6cd7/*utf16*/, {0xe6,0xb3,0x97}/*utf8*/, 3/*utf8 len*/},{0xe3f5/*gb2312*/, 0x6cb2/*utf16*/, {0xe6,0xb2,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe3f6/*gb2312*/, 0x6ce0/*utf16*/, {0xe6,0xb3,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe3f7/*gb2312*/, 0x6cd6/*utf16*/, {0xe6,0xb3,0x96}/*utf8*/, 3/*utf8 len*/},{0xe3f8/*gb2312*/, 0x6cfa/*utf16*/, {0xe6,0xb3,0xba}/*utf8*/, 3/*utf8 len*/},{0xe3f9/*gb2312*/, 0x6ceb/*utf16*/, {0xe6,0xb3,0xab}/*utf8*/, 3/*utf8 len*/},{0xe3fa/*gb2312*/, 0x6cee/*utf16*/, {0xe6,0xb3,0xae}/*utf8*/, 3/*utf8 len*/},{0xe3fb/*gb2312*/, 0x6cb1/*utf16*/, {0xe6,0xb2,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe3fc/*gb2312*/, 0x6cd3/*utf16*/, {0xe6,0xb3,0x93}/*utf8*/, 3/*utf8 len*/},{0xe3fd/*gb2312*/, 0x6cef/*utf16*/, {0xe6,0xb3,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe3fe/*gb2312*/, 0x6cfe/*utf16*/, {0xe6,0xb3,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe4a1/*gb2312*/, 0x6d39/*utf16*/, {0xe6,0xb4,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe4a2/*gb2312*/, 0x6d27/*utf16*/, {0xe6,0xb4,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe4a3/*gb2312*/, 0x6d0c/*utf16*/, {0xe6,0xb4,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe4a4/*gb2312*/, 0x6d43/*utf16*/, {0xe6,0xb5,0x83}/*utf8*/, 3/*utf8 len*/},{0xe4a5/*gb2312*/, 0x6d48/*utf16*/, {0xe6,0xb5,0x88}/*utf8*/, 3/*utf8 len*/},{0xe4a6/*gb2312*/, 0x6d07/*utf16*/, {0xe6,0xb4,0x87}/*utf8*/, 3/*utf8 len*/},{0xe4a7/*gb2312*/, 0x6d04/*utf16*/, {0xe6,0xb4,0x84}/*utf8*/, 3/*utf8 len*/},{0xe4a8/*gb2312*/, 0x6d19/*utf16*/, {0xe6,0xb4,0x99}/*utf8*/, 3/*utf8 len*/},{0xe4a9/*gb2312*/, 0x6d0e/*utf16*/, {0xe6,0xb4,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe4aa/*gb2312*/, 0x6d2b/*utf16*/, {0xe6,0xb4,0xab}/*utf8*/, 3/*utf8 len*/},{0xe4ab/*gb2312*/, 0x6d4d/*utf16*/, {0xe6,0xb5,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe4ac/*gb2312*/, 0x6d2e/*utf16*/, {0xe6,0xb4,0xae}/*utf8*/, 3/*utf8 len*/},{0xe4ad/*gb2312*/, 0x6d35/*utf16*/, {0xe6,0xb4,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe4ae/*gb2312*/, 0x6d1a/*utf16*/, {0xe6,0xb4,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe4af/*gb2312*/, 0x6d4f/*utf16*/, {0xe6,0xb5,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe4b0/*gb2312*/, 0x6d52/*utf16*/, {0xe6,0xb5,0x92}/*utf8*/, 3/*utf8 len*/},{0xe4b1/*gb2312*/, 0x6d54/*utf16*/, {0xe6,0xb5,0x94}/*utf8*/, 3/*utf8 len*/},{0xe4b2/*gb2312*/, 0x6d33/*utf16*/, {0xe6,0xb4,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe4b3/*gb2312*/, 0x6d91/*utf16*/, {0xe6,0xb6,0x91}/*utf8*/, 3/*utf8 len*/},{0xe4b4/*gb2312*/, 0x6d6f/*utf16*/, {0xe6,0xb5,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe4b5/*gb2312*/, 0x6d9e/*utf16*/, {0xe6,0xb6,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe4b6/*gb2312*/, 0x6da0/*utf16*/, {0xe6,0xb6,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe4b7/*gb2312*/, 0x6d5e/*utf16*/, {0xe6,0xb5,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe4b8/*gb2312*/, 0x6d93/*utf16*/, {0xe6,0xb6,0x93}/*utf8*/, 3/*utf8 len*/},{0xe4b9/*gb2312*/, 0x6d94/*utf16*/, {0xe6,0xb6,0x94}/*utf8*/, 3/*utf8 len*/},{0xe4ba/*gb2312*/, 0x6d5c/*utf16*/, {0xe6,0xb5,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe4bb/*gb2312*/, 0x6d60/*utf16*/, {0xe6,0xb5,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe4bc/*gb2312*/, 0x6d7c/*utf16*/, {0xe6,0xb5,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe4bd/*gb2312*/, 0x6d63/*utf16*/, {0xe6,0xb5,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe4be/*gb2312*/, 0x6e1a/*utf16*/, {0xe6,0xb8,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe4bf/*gb2312*/, 0x6dc7/*utf16*/, {0xe6,0xb7,0x87}/*utf8*/, 3/*utf8 len*/},{0xe4c0/*gb2312*/, 0x6dc5/*utf16*/, {0xe6,0xb7,0x85}/*utf8*/, 3/*utf8 len*/},{0xe4c1/*gb2312*/, 0x6dde/*utf16*/, {0xe6,0xb7,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe4c2/*gb2312*/, 0x6e0e/*utf16*/, {0xe6,0xb8,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe4c3/*gb2312*/, 0x6dbf/*utf16*/, {0xe6,0xb6,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe4c4/*gb2312*/, 0x6de0/*utf16*/, {0xe6,0xb7,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe4c5/*gb2312*/, 0x6e11/*utf16*/, {0xe6,0xb8,0x91}/*utf8*/, 3/*utf8 len*/},{0xe4c6/*gb2312*/, 0x6de6/*utf16*/, {0xe6,0xb7,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe4c7/*gb2312*/, 0x6ddd/*utf16*/, {0xe6,0xb7,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe4c8/*gb2312*/, 0x6dd9/*utf16*/, {0xe6,0xb7,0x99}/*utf8*/, 3/*utf8 len*/},{0xe4c9/*gb2312*/, 0x6e16/*utf16*/, {0xe6,0xb8,0x96}/*utf8*/, 3/*utf8 len*/},{0xe4ca/*gb2312*/, 0x6dab/*utf16*/, {0xe6,0xb6,0xab}/*utf8*/, 3/*utf8 len*/},{0xe4cb/*gb2312*/, 0x6e0c/*utf16*/, {0xe6,0xb8,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe4cc/*gb2312*/, 0x6dae/*utf16*/, {0xe6,0xb6,0xae}/*utf8*/, 3/*utf8 len*/},{0xe4cd/*gb2312*/, 0x6e2b/*utf16*/, {0xe6,0xb8,0xab}/*utf8*/, 3/*utf8 len*/},{0xe4ce/*gb2312*/, 0x6e6e/*utf16*/, {0xe6,0xb9,0xae}/*utf8*/, 3/*utf8 len*/},{0xe4cf/*gb2312*/, 0x6e4e/*utf16*/, {0xe6,0xb9,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe4d0/*gb2312*/, 0x6e6b/*utf16*/, {0xe6,0xb9,0xab}/*utf8*/, 3/*utf8 len*/},{0xe4d1/*gb2312*/, 0x6eb2/*utf16*/, {0xe6,0xba,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe4d2/*gb2312*/, 0x6e5f/*utf16*/, {0xe6,0xb9,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe4d3/*gb2312*/, 0x6e86/*utf16*/, {0xe6,0xba,0x86}/*utf8*/, 3/*utf8 len*/},{0xe4d4/*gb2312*/, 0x6e53/*utf16*/, {0xe6,0xb9,0x93}/*utf8*/, 3/*utf8 len*/},{0xe4d5/*gb2312*/, 0x6e54/*utf16*/, {0xe6,0xb9,0x94}/*utf8*/, 3/*utf8 len*/},{0xe4d6/*gb2312*/, 0x6e32/*utf16*/, {0xe6,0xb8,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe4d7/*gb2312*/, 0x6e25/*utf16*/, {0xe6,0xb8,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe4d8/*gb2312*/, 0x6e44/*utf16*/, {0xe6,0xb9,0x84}/*utf8*/, 3/*utf8 len*/},{0xe4d9/*gb2312*/, 0x6edf/*utf16*/, {0xe6,0xbb,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe4da/*gb2312*/, 0x6eb1/*utf16*/, {0xe6,0xba,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe4db/*gb2312*/, 0x6e98/*utf16*/, {0xe6,0xba,0x98}/*utf8*/, 3/*utf8 len*/},{0xe4dc/*gb2312*/, 0x6ee0/*utf16*/, {0xe6,0xbb,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe4dd/*gb2312*/, 0x6f2d/*utf16*/, {0xe6,0xbc,0xad}/*utf8*/, 3/*utf8 len*/},{0xe4de/*gb2312*/, 0x6ee2/*utf16*/, {0xe6,0xbb,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe4df/*gb2312*/, 0x6ea5/*utf16*/, {0xe6,0xba,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe4e0/*gb2312*/, 0x6ea7/*utf16*/, {0xe6,0xba,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe4e1/*gb2312*/, 0x6ebd/*utf16*/, {0xe6,0xba,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe4e2/*gb2312*/, 0x6ebb/*utf16*/, {0xe6,0xba,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe4e3/*gb2312*/, 0x6eb7/*utf16*/, {0xe6,0xba,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe4e4/*gb2312*/, 0x6ed7/*utf16*/, {0xe6,0xbb,0x97}/*utf8*/, 3/*utf8 len*/},{0xe4e5/*gb2312*/, 0x6eb4/*utf16*/, {0xe6,0xba,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe4e6/*gb2312*/, 0x6ecf/*utf16*/, {0xe6,0xbb,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe4e7/*gb2312*/, 0x6e8f/*utf16*/, {0xe6,0xba,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe4e8/*gb2312*/, 0x6ec2/*utf16*/, {0xe6,0xbb,0x82}/*utf8*/, 3/*utf8 len*/},{0xe4e9/*gb2312*/, 0x6e9f/*utf16*/, {0xe6,0xba,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe4ea/*gb2312*/, 0x6f62/*utf16*/, {0xe6,0xbd,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe4eb/*gb2312*/, 0x6f46/*utf16*/, {0xe6,0xbd,0x86}/*utf8*/, 3/*utf8 len*/},{0xe4ec/*gb2312*/, 0x6f47/*utf16*/, {0xe6,0xbd,0x87}/*utf8*/, 3/*utf8 len*/},{0xe4ed/*gb2312*/, 0x6f24/*utf16*/, {0xe6,0xbc,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe4ee/*gb2312*/, 0x6f15/*utf16*/, {0xe6,0xbc,0x95}/*utf8*/, 3/*utf8 len*/},{0xe4ef/*gb2312*/, 0x6ef9/*utf16*/, {0xe6,0xbb,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe4f0/*gb2312*/, 0x6f2f/*utf16*/, {0xe6,0xbc,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe4f1/*gb2312*/, 0x6f36/*utf16*/, {0xe6,0xbc,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe4f2/*gb2312*/, 0x6f4b/*utf16*/, {0xe6,0xbd,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe4f3/*gb2312*/, 0x6f74/*utf16*/, {0xe6,0xbd,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe4f4/*gb2312*/, 0x6f2a/*utf16*/, {0xe6,0xbc,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe4f5/*gb2312*/, 0x6f09/*utf16*/, {0xe6,0xbc,0x89}/*utf8*/, 3/*utf8 len*/},{0xe4f6/*gb2312*/, 0x6f29/*utf16*/, {0xe6,0xbc,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe4f7/*gb2312*/, 0x6f89/*utf16*/, {0xe6,0xbe,0x89}/*utf8*/, 3/*utf8 len*/},{0xe4f8/*gb2312*/, 0x6f8d/*utf16*/, {0xe6,0xbe,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe4f9/*gb2312*/, 0x6f8c/*utf16*/, {0xe6,0xbe,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe4fa/*gb2312*/, 0x6f78/*utf16*/, {0xe6,0xbd,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe4fb/*gb2312*/, 0x6f72/*utf16*/, {0xe6,0xbd,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe4fc/*gb2312*/, 0x6f7c/*utf16*/, {0xe6,0xbd,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe4fd/*gb2312*/, 0x6f7a/*utf16*/, {0xe6,0xbd,0xba}/*utf8*/, 3/*utf8 len*/},{0xe4fe/*gb2312*/, 0x6fd1/*utf16*/, {0xe6,0xbf,0x91}/*utf8*/, 3/*utf8 len*/},{0xe5a1/*gb2312*/, 0x6fc9/*utf16*/, {0xe6,0xbf,0x89}/*utf8*/, 3/*utf8 len*/},{0xe5a2/*gb2312*/, 0x6fa7/*utf16*/, {0xe6,0xbe,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe5a3/*gb2312*/, 0x6fb9/*utf16*/, {0xe6,0xbe,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe5a4/*gb2312*/, 0x6fb6/*utf16*/, {0xe6,0xbe,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe5a5/*gb2312*/, 0x6fc2/*utf16*/, {0xe6,0xbf,0x82}/*utf8*/, 3/*utf8 len*/},{0xe5a6/*gb2312*/, 0x6fe1/*utf16*/, {0xe6,0xbf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe5a7/*gb2312*/, 0x6fee/*utf16*/, {0xe6,0xbf,0xae}/*utf8*/, 3/*utf8 len*/},{0xe5a8/*gb2312*/, 0x6fde/*utf16*/, {0xe6,0xbf,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe5a9/*gb2312*/, 0x6fe0/*utf16*/, {0xe6,0xbf,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe5aa/*gb2312*/, 0x6fef/*utf16*/, {0xe6,0xbf,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe5ab/*gb2312*/, 0x701a/*utf16*/, {0xe7,0x80,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe5ac/*gb2312*/, 0x7023/*utf16*/, {0xe7,0x80,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe5ad/*gb2312*/, 0x701b/*utf16*/, {0xe7,0x80,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe5ae/*gb2312*/, 0x7039/*utf16*/, {0xe7,0x80,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe5af/*gb2312*/, 0x7035/*utf16*/, {0xe7,0x80,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe5b0/*gb2312*/, 0x704f/*utf16*/, {0xe7,0x81,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe5b1/*gb2312*/, 0x705e/*utf16*/, {0xe7,0x81,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe5b2/*gb2312*/, 0x5b80/*utf16*/, {0xe5,0xae,0x80}/*utf8*/, 3/*utf8 len*/},{0xe5b3/*gb2312*/, 0x5b84/*utf16*/, {0xe5,0xae,0x84}/*utf8*/, 3/*utf8 len*/},{0xe5b4/*gb2312*/, 0x5b95/*utf16*/, {0xe5,0xae,0x95}/*utf8*/, 3/*utf8 len*/},{0xe5b5/*gb2312*/, 0x5b93/*utf16*/, {0xe5,0xae,0x93}/*utf8*/, 3/*utf8 len*/},{0xe5b6/*gb2312*/, 0x5ba5/*utf16*/, {0xe5,0xae,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe5b7/*gb2312*/, 0x5bb8/*utf16*/, {0xe5,0xae,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe5b8/*gb2312*/, 0x752f/*utf16*/, {0xe7,0x94,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe5b9/*gb2312*/, 0x9a9e/*utf16*/, {0xe9,0xaa,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe5ba/*gb2312*/, 0x6434/*utf16*/, {0xe6,0x90,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe5bb/*gb2312*/, 0x5be4/*utf16*/, {0xe5,0xaf,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe5bc/*gb2312*/, 0x5bee/*utf16*/, {0xe5,0xaf,0xae}/*utf8*/, 3/*utf8 len*/},{0xe5bd/*gb2312*/, 0x8930/*utf16*/, {0xe8,0xa4,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe5be/*gb2312*/, 0x5bf0/*utf16*/, {0xe5,0xaf,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe5bf/*gb2312*/, 0x8e47/*utf16*/, {0xe8,0xb9,0x87}/*utf8*/, 3/*utf8 len*/},{0xe5c0/*gb2312*/, 0x8b07/*utf16*/, {0xe8,0xac,0x87}/*utf8*/, 3/*utf8 len*/},{0xe5c1/*gb2312*/, 0x8fb6/*utf16*/, {0xe8,0xbe,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe5c2/*gb2312*/, 0x8fd3/*utf16*/, {0xe8,0xbf,0x93}/*utf8*/, 3/*utf8 len*/},{0xe5c3/*gb2312*/, 0x8fd5/*utf16*/, {0xe8,0xbf,0x95}/*utf8*/, 3/*utf8 len*/},{0xe5c4/*gb2312*/, 0x8fe5/*utf16*/, {0xe8,0xbf,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe5c5/*gb2312*/, 0x8fee/*utf16*/, {0xe8,0xbf,0xae}/*utf8*/, 3/*utf8 len*/},{0xe5c6/*gb2312*/, 0x8fe4/*utf16*/, {0xe8,0xbf,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe5c7/*gb2312*/, 0x8fe9/*utf16*/, {0xe8,0xbf,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe5c8/*gb2312*/, 0x8fe6/*utf16*/, {0xe8,0xbf,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe5c9/*gb2312*/, 0x8ff3/*utf16*/, {0xe8,0xbf,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe5ca/*gb2312*/, 0x8fe8/*utf16*/, {0xe8,0xbf,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe5cb/*gb2312*/, 0x9005/*utf16*/, {0xe9,0x80,0x85}/*utf8*/, 3/*utf8 len*/},{0xe5cc/*gb2312*/, 0x9004/*utf16*/, {0xe9,0x80,0x84}/*utf8*/, 3/*utf8 len*/},{0xe5cd/*gb2312*/, 0x900b/*utf16*/, {0xe9,0x80,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe5ce/*gb2312*/, 0x9026/*utf16*/, {0xe9,0x80,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe5cf/*gb2312*/, 0x9011/*utf16*/, {0xe9,0x80,0x91}/*utf8*/, 3/*utf8 len*/},{0xe5d0/*gb2312*/, 0x900d/*utf16*/, {0xe9,0x80,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe5d1/*gb2312*/, 0x9016/*utf16*/, {0xe9,0x80,0x96}/*utf8*/, 3/*utf8 len*/},{0xe5d2/*gb2312*/, 0x9021/*utf16*/, {0xe9,0x80,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe5d3/*gb2312*/, 0x9035/*utf16*/, {0xe9,0x80,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe5d4/*gb2312*/, 0x9036/*utf16*/, {0xe9,0x80,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe5d5/*gb2312*/, 0x902d/*utf16*/, {0xe9,0x80,0xad}/*utf8*/, 3/*utf8 len*/},{0xe5d6/*gb2312*/, 0x902f/*utf16*/, {0xe9,0x80,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe5d7/*gb2312*/, 0x9044/*utf16*/, {0xe9,0x81,0x84}/*utf8*/, 3/*utf8 len*/},{0xe5d8/*gb2312*/, 0x9051/*utf16*/, {0xe9,0x81,0x91}/*utf8*/, 3/*utf8 len*/},{0xe5d9/*gb2312*/, 0x9052/*utf16*/, {0xe9,0x81,0x92}/*utf8*/, 3/*utf8 len*/},{0xe5da/*gb2312*/, 0x9050/*utf16*/, {0xe9,0x81,0x90}/*utf8*/, 3/*utf8 len*/},{0xe5db/*gb2312*/, 0x9068/*utf16*/, {0xe9,0x81,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe5dc/*gb2312*/, 0x9058/*utf16*/, {0xe9,0x81,0x98}/*utf8*/, 3/*utf8 len*/},{0xe5dd/*gb2312*/, 0x9062/*utf16*/, {0xe9,0x81,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe5de/*gb2312*/, 0x905b/*utf16*/, {0xe9,0x81,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe5df/*gb2312*/, 0x66b9/*utf16*/, {0xe6,0x9a,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe5e0/*gb2312*/, 0x9074/*utf16*/, {0xe9,0x81,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe5e1/*gb2312*/, 0x907d/*utf16*/, {0xe9,0x81,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe5e2/*gb2312*/, 0x9082/*utf16*/, {0xe9,0x82,0x82}/*utf8*/, 3/*utf8 len*/},{0xe5e3/*gb2312*/, 0x9088/*utf16*/, {0xe9,0x82,0x88}/*utf8*/, 3/*utf8 len*/},{0xe5e4/*gb2312*/, 0x9083/*utf16*/, {0xe9,0x82,0x83}/*utf8*/, 3/*utf8 len*/},{0xe5e5/*gb2312*/, 0x908b/*utf16*/, {0xe9,0x82,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe5e6/*gb2312*/, 0x5f50/*utf16*/, {0xe5,0xbd,0x90}/*utf8*/, 3/*utf8 len*/},{0xe5e7/*gb2312*/, 0x5f57/*utf16*/, {0xe5,0xbd,0x97}/*utf8*/, 3/*utf8 len*/},{0xe5e8/*gb2312*/, 0x5f56/*utf16*/, {0xe5,0xbd,0x96}/*utf8*/, 3/*utf8 len*/},{0xe5e9/*gb2312*/, 0x5f58/*utf16*/, {0xe5,0xbd,0x98}/*utf8*/, 3/*utf8 len*/},{0xe5ea/*gb2312*/, 0x5c3b/*utf16*/, {0xe5,0xb0,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe5eb/*gb2312*/, 0x54ab/*utf16*/, {0xe5,0x92,0xab}/*utf8*/, 3/*utf8 len*/},{0xe5ec/*gb2312*/, 0x5c50/*utf16*/, {0xe5,0xb1,0x90}/*utf8*/, 3/*utf8 len*/},{0xe5ed/*gb2312*/, 0x5c59/*utf16*/, {0xe5,0xb1,0x99}/*utf8*/, 3/*utf8 len*/},{0xe5ee/*gb2312*/, 0x5b71/*utf16*/, {0xe5,0xad,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe5ef/*gb2312*/, 0x5c63/*utf16*/, {0xe5,0xb1,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe5f0/*gb2312*/, 0x5c66/*utf16*/, {0xe5,0xb1,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe5f1/*gb2312*/, 0x7fbc/*utf16*/, {0xe7,0xbe,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe5f2/*gb2312*/, 0x5f2a/*utf16*/, {0xe5,0xbc,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe5f3/*gb2312*/, 0x5f29/*utf16*/, {0xe5,0xbc,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe5f4/*gb2312*/, 0x5f2d/*utf16*/, {0xe5,0xbc,0xad}/*utf8*/, 3/*utf8 len*/},{0xe5f5/*gb2312*/, 0x8274/*utf16*/, {0xe8,0x89,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe5f6/*gb2312*/, 0x5f3c/*utf16*/, {0xe5,0xbc,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe5f7/*gb2312*/, 0x9b3b/*utf16*/, {0xe9,0xac,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe5f8/*gb2312*/, 0x5c6e/*utf16*/, {0xe5,0xb1,0xae}/*utf8*/, 3/*utf8 len*/},{0xe5f9/*gb2312*/, 0x5981/*utf16*/, {0xe5,0xa6,0x81}/*utf8*/, 3/*utf8 len*/},{0xe5fa/*gb2312*/, 0x5983/*utf16*/, {0xe5,0xa6,0x83}/*utf8*/, 3/*utf8 len*/},{0xe5fb/*gb2312*/, 0x598d/*utf16*/, {0xe5,0xa6,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe5fc/*gb2312*/, 0x59a9/*utf16*/, {0xe5,0xa6,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe5fd/*gb2312*/, 0x59aa/*utf16*/, {0xe5,0xa6,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe5fe/*gb2312*/, 0x59a3/*utf16*/, {0xe5,0xa6,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe6a1/*gb2312*/, 0x5997/*utf16*/, {0xe5,0xa6,0x97}/*utf8*/, 3/*utf8 len*/},{0xe6a2/*gb2312*/, 0x59ca/*utf16*/, {0xe5,0xa7,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe6a3/*gb2312*/, 0x59ab/*utf16*/, {0xe5,0xa6,0xab}/*utf8*/, 3/*utf8 len*/},{0xe6a4/*gb2312*/, 0x599e/*utf16*/, {0xe5,0xa6,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe6a5/*gb2312*/, 0x59a4/*utf16*/, {0xe5,0xa6,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe6a6/*gb2312*/, 0x59d2/*utf16*/, {0xe5,0xa7,0x92}/*utf8*/, 3/*utf8 len*/},{0xe6a7/*gb2312*/, 0x59b2/*utf16*/, {0xe5,0xa6,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe6a8/*gb2312*/, 0x59af/*utf16*/, {0xe5,0xa6,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe6a9/*gb2312*/, 0x59d7/*utf16*/, {0xe5,0xa7,0x97}/*utf8*/, 3/*utf8 len*/},{0xe6aa/*gb2312*/, 0x59be/*utf16*/, {0xe5,0xa6,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe6ab/*gb2312*/, 0x5a05/*utf16*/, {0xe5,0xa8,0x85}/*utf8*/, 3/*utf8 len*/},{0xe6ac/*gb2312*/, 0x5a06/*utf16*/, {0xe5,0xa8,0x86}/*utf8*/, 3/*utf8 len*/},{0xe6ad/*gb2312*/, 0x59dd/*utf16*/, {0xe5,0xa7,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe6ae/*gb2312*/, 0x5a08/*utf16*/, {0xe5,0xa8,0x88}/*utf8*/, 3/*utf8 len*/},{0xe6af/*gb2312*/, 0x59e3/*utf16*/, {0xe5,0xa7,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe6b0/*gb2312*/, 0x59d8/*utf16*/, {0xe5,0xa7,0x98}/*utf8*/, 3/*utf8 len*/},{0xe6b1/*gb2312*/, 0x59f9/*utf16*/, {0xe5,0xa7,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe6b2/*gb2312*/, 0x5a0c/*utf16*/, {0xe5,0xa8,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe6b3/*gb2312*/, 0x5a09/*utf16*/, {0xe5,0xa8,0x89}/*utf8*/, 3/*utf8 len*/},{0xe6b4/*gb2312*/, 0x5a32/*utf16*/, {0xe5,0xa8,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe6b5/*gb2312*/, 0x5a34/*utf16*/, {0xe5,0xa8,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe6b6/*gb2312*/, 0x5a11/*utf16*/, {0xe5,0xa8,0x91}/*utf8*/, 3/*utf8 len*/},{0xe6b7/*gb2312*/, 0x5a23/*utf16*/, {0xe5,0xa8,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe6b8/*gb2312*/, 0x5a13/*utf16*/, {0xe5,0xa8,0x93}/*utf8*/, 3/*utf8 len*/},{0xe6b9/*gb2312*/, 0x5a40/*utf16*/, {0xe5,0xa9,0x80}/*utf8*/, 3/*utf8 len*/},{0xe6ba/*gb2312*/, 0x5a67/*utf16*/, {0xe5,0xa9,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe6bb/*gb2312*/, 0x5a4a/*utf16*/, {0xe5,0xa9,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe6bc/*gb2312*/, 0x5a55/*utf16*/, {0xe5,0xa9,0x95}/*utf8*/, 3/*utf8 len*/},{0xe6bd/*gb2312*/, 0x5a3c/*utf16*/, {0xe5,0xa8,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe6be/*gb2312*/, 0x5a62/*utf16*/, {0xe5,0xa9,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe6bf/*gb2312*/, 0x5a75/*utf16*/, {0xe5,0xa9,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe6c0/*gb2312*/, 0x80ec/*utf16*/, {0xe8,0x83,0xac}/*utf8*/, 3/*utf8 len*/},{0xe6c1/*gb2312*/, 0x5aaa/*utf16*/, {0xe5,0xaa,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe6c2/*gb2312*/, 0x5a9b/*utf16*/, {0xe5,0xaa,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe6c3/*gb2312*/, 0x5a77/*utf16*/, {0xe5,0xa9,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe6c4/*gb2312*/, 0x5a7a/*utf16*/, {0xe5,0xa9,0xba}/*utf8*/, 3/*utf8 len*/},{0xe6c5/*gb2312*/, 0x5abe/*utf16*/, {0xe5,0xaa,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe6c6/*gb2312*/, 0x5aeb/*utf16*/, {0xe5,0xab,0xab}/*utf8*/, 3/*utf8 len*/},{0xe6c7/*gb2312*/, 0x5ab2/*utf16*/, {0xe5,0xaa,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe6c8/*gb2312*/, 0x5ad2/*utf16*/, {0xe5,0xab,0x92}/*utf8*/, 3/*utf8 len*/},{0xe6c9/*gb2312*/, 0x5ad4/*utf16*/, {0xe5,0xab,0x94}/*utf8*/, 3/*utf8 len*/},{0xe6ca/*gb2312*/, 0x5ab8/*utf16*/, {0xe5,0xaa,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe6cb/*gb2312*/, 0x5ae0/*utf16*/, {0xe5,0xab,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe6cc/*gb2312*/, 0x5ae3/*utf16*/, {0xe5,0xab,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe6cd/*gb2312*/, 0x5af1/*utf16*/, {0xe5,0xab,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe6ce/*gb2312*/, 0x5ad6/*utf16*/, {0xe5,0xab,0x96}/*utf8*/, 3/*utf8 len*/},{0xe6cf/*gb2312*/, 0x5ae6/*utf16*/, {0xe5,0xab,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe6d0/*gb2312*/, 0x5ad8/*utf16*/, {0xe5,0xab,0x98}/*utf8*/, 3/*utf8 len*/},{0xe6d1/*gb2312*/, 0x5adc/*utf16*/, {0xe5,0xab,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe6d2/*gb2312*/, 0x5b09/*utf16*/, {0xe5,0xac,0x89}/*utf8*/, 3/*utf8 len*/},{0xe6d3/*gb2312*/, 0x5b17/*utf16*/, {0xe5,0xac,0x97}/*utf8*/, 3/*utf8 len*/},{0xe6d4/*gb2312*/, 0x5b16/*utf16*/, {0xe5,0xac,0x96}/*utf8*/, 3/*utf8 len*/},{0xe6d5/*gb2312*/, 0x5b32/*utf16*/, {0xe5,0xac,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe6d6/*gb2312*/, 0x5b37/*utf16*/, {0xe5,0xac,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe6d7/*gb2312*/, 0x5b40/*utf16*/, {0xe5,0xad,0x80}/*utf8*/, 3/*utf8 len*/},{0xe6d8/*gb2312*/, 0x5c15/*utf16*/, {0xe5,0xb0,0x95}/*utf8*/, 3/*utf8 len*/},{0xe6d9/*gb2312*/, 0x5c1c/*utf16*/, {0xe5,0xb0,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe6da/*gb2312*/, 0x5b5a/*utf16*/, {0xe5,0xad,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe6db/*gb2312*/, 0x5b65/*utf16*/, {0xe5,0xad,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe6dc/*gb2312*/, 0x5b73/*utf16*/, {0xe5,0xad,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe6dd/*gb2312*/, 0x5b51/*utf16*/, {0xe5,0xad,0x91}/*utf8*/, 3/*utf8 len*/},{0xe6de/*gb2312*/, 0x5b53/*utf16*/, {0xe5,0xad,0x93}/*utf8*/, 3/*utf8 len*/},{0xe6df/*gb2312*/, 0x5b62/*utf16*/, {0xe5,0xad,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe6e0/*gb2312*/, 0x9a75/*utf16*/, {0xe9,0xa9,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe6e1/*gb2312*/, 0x9a77/*utf16*/, {0xe9,0xa9,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe6e2/*gb2312*/, 0x9a78/*utf16*/, {0xe9,0xa9,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe6e3/*gb2312*/, 0x9a7a/*utf16*/, {0xe9,0xa9,0xba}/*utf8*/, 3/*utf8 len*/},{0xe6e4/*gb2312*/, 0x9a7f/*utf16*/, {0xe9,0xa9,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe6e5/*gb2312*/, 0x9a7d/*utf16*/, {0xe9,0xa9,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe6e6/*gb2312*/, 0x9a80/*utf16*/, {0xe9,0xaa,0x80}/*utf8*/, 3/*utf8 len*/},{0xe6e7/*gb2312*/, 0x9a81/*utf16*/, {0xe9,0xaa,0x81}/*utf8*/, 3/*utf8 len*/},{0xe6e8/*gb2312*/, 0x9a85/*utf16*/, {0xe9,0xaa,0x85}/*utf8*/, 3/*utf8 len*/},{0xe6e9/*gb2312*/, 0x9a88/*utf16*/, {0xe9,0xaa,0x88}/*utf8*/, 3/*utf8 len*/},{0xe6ea/*gb2312*/, 0x9a8a/*utf16*/, {0xe9,0xaa,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe6eb/*gb2312*/, 0x9a90/*utf16*/, {0xe9,0xaa,0x90}/*utf8*/, 3/*utf8 len*/},{0xe6ec/*gb2312*/, 0x9a92/*utf16*/, {0xe9,0xaa,0x92}/*utf8*/, 3/*utf8 len*/},{0xe6ed/*gb2312*/, 0x9a93/*utf16*/, {0xe9,0xaa,0x93}/*utf8*/, 3/*utf8 len*/},{0xe6ee/*gb2312*/, 0x9a96/*utf16*/, {0xe9,0xaa,0x96}/*utf8*/, 3/*utf8 len*/},{0xe6ef/*gb2312*/, 0x9a98/*utf16*/, {0xe9,0xaa,0x98}/*utf8*/, 3/*utf8 len*/},{0xe6f0/*gb2312*/, 0x9a9b/*utf16*/, {0xe9,0xaa,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe6f1/*gb2312*/, 0x9a9c/*utf16*/, {0xe9,0xaa,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe6f2/*gb2312*/, 0x9a9d/*utf16*/, {0xe9,0xaa,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe6f3/*gb2312*/, 0x9a9f/*utf16*/, {0xe9,0xaa,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe6f4/*gb2312*/, 0x9aa0/*utf16*/, {0xe9,0xaa,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe6f5/*gb2312*/, 0x9aa2/*utf16*/, {0xe9,0xaa,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe6f6/*gb2312*/, 0x9aa3/*utf16*/, {0xe9,0xaa,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe6f7/*gb2312*/, 0x9aa5/*utf16*/, {0xe9,0xaa,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe6f8/*gb2312*/, 0x9aa7/*utf16*/, {0xe9,0xaa,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe6f9/*gb2312*/, 0x7e9f/*utf16*/, {0xe7,0xba,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe6fa/*gb2312*/, 0x7ea1/*utf16*/, {0xe7,0xba,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe6fb/*gb2312*/, 0x7ea3/*utf16*/, {0xe7,0xba,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe6fc/*gb2312*/, 0x7ea5/*utf16*/, {0xe7,0xba,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe6fd/*gb2312*/, 0x7ea8/*utf16*/, {0xe7,0xba,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe6fe/*gb2312*/, 0x7ea9/*utf16*/, {0xe7,0xba,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe7a1/*gb2312*/, 0x7ead/*utf16*/, {0xe7,0xba,0xad}/*utf8*/, 3/*utf8 len*/},{0xe7a2/*gb2312*/, 0x7eb0/*utf16*/, {0xe7,0xba,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe7a3/*gb2312*/, 0x7ebe/*utf16*/, {0xe7,0xba,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe7a4/*gb2312*/, 0x7ec0/*utf16*/, {0xe7,0xbb,0x80}/*utf8*/, 3/*utf8 len*/},{0xe7a5/*gb2312*/, 0x7ec1/*utf16*/, {0xe7,0xbb,0x81}/*utf8*/, 3/*utf8 len*/},{0xe7a6/*gb2312*/, 0x7ec2/*utf16*/, {0xe7,0xbb,0x82}/*utf8*/, 3/*utf8 len*/},{0xe7a7/*gb2312*/, 0x7ec9/*utf16*/, {0xe7,0xbb,0x89}/*utf8*/, 3/*utf8 len*/},{0xe7a8/*gb2312*/, 0x7ecb/*utf16*/, {0xe7,0xbb,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe7a9/*gb2312*/, 0x7ecc/*utf16*/, {0xe7,0xbb,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe7aa/*gb2312*/, 0x7ed0/*utf16*/, {0xe7,0xbb,0x90}/*utf8*/, 3/*utf8 len*/},{0xe7ab/*gb2312*/, 0x7ed4/*utf16*/, {0xe7,0xbb,0x94}/*utf8*/, 3/*utf8 len*/},{0xe7ac/*gb2312*/, 0x7ed7/*utf16*/, {0xe7,0xbb,0x97}/*utf8*/, 3/*utf8 len*/},{0xe7ad/*gb2312*/, 0x7edb/*utf16*/, {0xe7,0xbb,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe7ae/*gb2312*/, 0x7ee0/*utf16*/, {0xe7,0xbb,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe7af/*gb2312*/, 0x7ee1/*utf16*/, {0xe7,0xbb,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe7b0/*gb2312*/, 0x7ee8/*utf16*/, {0xe7,0xbb,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe7b1/*gb2312*/, 0x7eeb/*utf16*/, {0xe7,0xbb,0xab}/*utf8*/, 3/*utf8 len*/},{0xe7b2/*gb2312*/, 0x7eee/*utf16*/, {0xe7,0xbb,0xae}/*utf8*/, 3/*utf8 len*/},{0xe7b3/*gb2312*/, 0x7eef/*utf16*/, {0xe7,0xbb,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe7b4/*gb2312*/, 0x7ef1/*utf16*/, {0xe7,0xbb,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe7b5/*gb2312*/, 0x7ef2/*utf16*/, {0xe7,0xbb,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe7b6/*gb2312*/, 0x7f0d/*utf16*/, {0xe7,0xbc,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe7b7/*gb2312*/, 0x7ef6/*utf16*/, {0xe7,0xbb,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe7b8/*gb2312*/, 0x7efa/*utf16*/, {0xe7,0xbb,0xba}/*utf8*/, 3/*utf8 len*/},{0xe7b9/*gb2312*/, 0x7efb/*utf16*/, {0xe7,0xbb,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe7ba/*gb2312*/, 0x7efe/*utf16*/, {0xe7,0xbb,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe7bb/*gb2312*/, 0x7f01/*utf16*/, {0xe7,0xbc,0x81}/*utf8*/, 3/*utf8 len*/},{0xe7bc/*gb2312*/, 0x7f02/*utf16*/, {0xe7,0xbc,0x82}/*utf8*/, 3/*utf8 len*/},{0xe7bd/*gb2312*/, 0x7f03/*utf16*/, {0xe7,0xbc,0x83}/*utf8*/, 3/*utf8 len*/},{0xe7be/*gb2312*/, 0x7f07/*utf16*/, {0xe7,0xbc,0x87}/*utf8*/, 3/*utf8 len*/},{0xe7bf/*gb2312*/, 0x7f08/*utf16*/, {0xe7,0xbc,0x88}/*utf8*/, 3/*utf8 len*/},{0xe7c0/*gb2312*/, 0x7f0b/*utf16*/, {0xe7,0xbc,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe7c1/*gb2312*/, 0x7f0c/*utf16*/, {0xe7,0xbc,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe7c2/*gb2312*/, 0x7f0f/*utf16*/, {0xe7,0xbc,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe7c3/*gb2312*/, 0x7f11/*utf16*/, {0xe7,0xbc,0x91}/*utf8*/, 3/*utf8 len*/},{0xe7c4/*gb2312*/, 0x7f12/*utf16*/, {0xe7,0xbc,0x92}/*utf8*/, 3/*utf8 len*/},{0xe7c5/*gb2312*/, 0x7f17/*utf16*/, {0xe7,0xbc,0x97}/*utf8*/, 3/*utf8 len*/},{0xe7c6/*gb2312*/, 0x7f19/*utf16*/, {0xe7,0xbc,0x99}/*utf8*/, 3/*utf8 len*/},{0xe7c7/*gb2312*/, 0x7f1c/*utf16*/, {0xe7,0xbc,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe7c8/*gb2312*/, 0x7f1b/*utf16*/, {0xe7,0xbc,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe7c9/*gb2312*/, 0x7f1f/*utf16*/, {0xe7,0xbc,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe7ca/*gb2312*/, 0x7f21/*utf16*/, {0xe7,0xbc,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe7cb/*gb2312*/, 0x7f22/*utf16*/, {0xe7,0xbc,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe7cc/*gb2312*/, 0x7f23/*utf16*/, {0xe7,0xbc,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe7cd/*gb2312*/, 0x7f24/*utf16*/, {0xe7,0xbc,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe7ce/*gb2312*/, 0x7f25/*utf16*/, {0xe7,0xbc,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe7cf/*gb2312*/, 0x7f26/*utf16*/, {0xe7,0xbc,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe7d0/*gb2312*/, 0x7f27/*utf16*/, {0xe7,0xbc,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe7d1/*gb2312*/, 0x7f2a/*utf16*/, {0xe7,0xbc,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe7d2/*gb2312*/, 0x7f2b/*utf16*/, {0xe7,0xbc,0xab}/*utf8*/, 3/*utf8 len*/},{0xe7d3/*gb2312*/, 0x7f2c/*utf16*/, {0xe7,0xbc,0xac}/*utf8*/, 3/*utf8 len*/},{0xe7d4/*gb2312*/, 0x7f2d/*utf16*/, {0xe7,0xbc,0xad}/*utf8*/, 3/*utf8 len*/},{0xe7d5/*gb2312*/, 0x7f2f/*utf16*/, {0xe7,0xbc,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe7d6/*gb2312*/, 0x7f30/*utf16*/, {0xe7,0xbc,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe7d7/*gb2312*/, 0x7f31/*utf16*/, {0xe7,0xbc,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe7d8/*gb2312*/, 0x7f32/*utf16*/, {0xe7,0xbc,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe7d9/*gb2312*/, 0x7f33/*utf16*/, {0xe7,0xbc,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe7da/*gb2312*/, 0x7f35/*utf16*/, {0xe7,0xbc,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe7db/*gb2312*/, 0x5e7a/*utf16*/, {0xe5,0xb9,0xba}/*utf8*/, 3/*utf8 len*/},{0xe7dc/*gb2312*/, 0x757f/*utf16*/, {0xe7,0x95,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe7dd/*gb2312*/, 0x5ddb/*utf16*/, {0xe5,0xb7,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe7de/*gb2312*/, 0x753e/*utf16*/, {0xe7,0x94,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe7df/*gb2312*/, 0x9095/*utf16*/, {0xe9,0x82,0x95}/*utf8*/, 3/*utf8 len*/},{0xe7e0/*gb2312*/, 0x738e/*utf16*/, {0xe7,0x8e,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe7e1/*gb2312*/, 0x7391/*utf16*/, {0xe7,0x8e,0x91}/*utf8*/, 3/*utf8 len*/},{0xe7e2/*gb2312*/, 0x73ae/*utf16*/, {0xe7,0x8e,0xae}/*utf8*/, 3/*utf8 len*/},{0xe7e3/*gb2312*/, 0x73a2/*utf16*/, {0xe7,0x8e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe7e4/*gb2312*/, 0x739f/*utf16*/, {0xe7,0x8e,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe7e5/*gb2312*/, 0x73cf/*utf16*/, {0xe7,0x8f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe7e6/*gb2312*/, 0x73c2/*utf16*/, {0xe7,0x8f,0x82}/*utf8*/, 3/*utf8 len*/},{0xe7e7/*gb2312*/, 0x73d1/*utf16*/, {0xe7,0x8f,0x91}/*utf8*/, 3/*utf8 len*/},{0xe7e8/*gb2312*/, 0x73b7/*utf16*/, {0xe7,0x8e,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe7e9/*gb2312*/, 0x73b3/*utf16*/, {0xe7,0x8e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe7ea/*gb2312*/, 0x73c0/*utf16*/, {0xe7,0x8f,0x80}/*utf8*/, 3/*utf8 len*/},{0xe7eb/*gb2312*/, 0x73c9/*utf16*/, {0xe7,0x8f,0x89}/*utf8*/, 3/*utf8 len*/},{0xe7ec/*gb2312*/, 0x73c8/*utf16*/, {0xe7,0x8f,0x88}/*utf8*/, 3/*utf8 len*/},{0xe7ed/*gb2312*/, 0x73e5/*utf16*/, {0xe7,0x8f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe7ee/*gb2312*/, 0x73d9/*utf16*/, {0xe7,0x8f,0x99}/*utf8*/, 3/*utf8 len*/},{0xe7ef/*gb2312*/, 0x987c/*utf16*/, {0xe9,0xa1,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe7f0/*gb2312*/, 0x740a/*utf16*/, {0xe7,0x90,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe7f1/*gb2312*/, 0x73e9/*utf16*/, {0xe7,0x8f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe7f2/*gb2312*/, 0x73e7/*utf16*/, {0xe7,0x8f,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe7f3/*gb2312*/, 0x73de/*utf16*/, {0xe7,0x8f,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe7f4/*gb2312*/, 0x73ba/*utf16*/, {0xe7,0x8e,0xba}/*utf8*/, 3/*utf8 len*/},{0xe7f5/*gb2312*/, 0x73f2/*utf16*/, {0xe7,0x8f,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe7f6/*gb2312*/, 0x740f/*utf16*/, {0xe7,0x90,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe7f7/*gb2312*/, 0x742a/*utf16*/, {0xe7,0x90,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe7f8/*gb2312*/, 0x745b/*utf16*/, {0xe7,0x91,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe7f9/*gb2312*/, 0x7426/*utf16*/, {0xe7,0x90,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe7fa/*gb2312*/, 0x7425/*utf16*/, {0xe7,0x90,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe7fb/*gb2312*/, 0x7428/*utf16*/, {0xe7,0x90,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe7fc/*gb2312*/, 0x7430/*utf16*/, {0xe7,0x90,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe7fd/*gb2312*/, 0x742e/*utf16*/, {0xe7,0x90,0xae}/*utf8*/, 3/*utf8 len*/},{0xe7fe/*gb2312*/, 0x742c/*utf16*/, {0xe7,0x90,0xac}/*utf8*/, 3/*utf8 len*/},{0xe8a1/*gb2312*/, 0x741b/*utf16*/, {0xe7,0x90,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe8a2/*gb2312*/, 0x741a/*utf16*/, {0xe7,0x90,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe8a3/*gb2312*/, 0x7441/*utf16*/, {0xe7,0x91,0x81}/*utf8*/, 3/*utf8 len*/},{0xe8a4/*gb2312*/, 0x745c/*utf16*/, {0xe7,0x91,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe8a5/*gb2312*/, 0x7457/*utf16*/, {0xe7,0x91,0x97}/*utf8*/, 3/*utf8 len*/},{0xe8a6/*gb2312*/, 0x7455/*utf16*/, {0xe7,0x91,0x95}/*utf8*/, 3/*utf8 len*/},{0xe8a7/*gb2312*/, 0x7459/*utf16*/, {0xe7,0x91,0x99}/*utf8*/, 3/*utf8 len*/},{0xe8a8/*gb2312*/, 0x7477/*utf16*/, {0xe7,0x91,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe8a9/*gb2312*/, 0x746d/*utf16*/, {0xe7,0x91,0xad}/*utf8*/, 3/*utf8 len*/},{0xe8aa/*gb2312*/, 0x747e/*utf16*/, {0xe7,0x91,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe8ab/*gb2312*/, 0x749c/*utf16*/, {0xe7,0x92,0x9c}/*utf8*/, 3/*utf8 len*/},{0xe8ac/*gb2312*/, 0x748e/*utf16*/, {0xe7,0x92,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe8ad/*gb2312*/, 0x7480/*utf16*/, {0xe7,0x92,0x80}/*utf8*/, 3/*utf8 len*/},{0xe8ae/*gb2312*/, 0x7481/*utf16*/, {0xe7,0x92,0x81}/*utf8*/, 3/*utf8 len*/},{0xe8af/*gb2312*/, 0x7487/*utf16*/, {0xe7,0x92,0x87}/*utf8*/, 3/*utf8 len*/},{0xe8b0/*gb2312*/, 0x748b/*utf16*/, {0xe7,0x92,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe8b1/*gb2312*/, 0x749e/*utf16*/, {0xe7,0x92,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe8b2/*gb2312*/, 0x74a8/*utf16*/, {0xe7,0x92,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe8b3/*gb2312*/, 0x74a9/*utf16*/, {0xe7,0x92,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe8b4/*gb2312*/, 0x7490/*utf16*/, {0xe7,0x92,0x90}/*utf8*/, 3/*utf8 len*/},{0xe8b5/*gb2312*/, 0x74a7/*utf16*/, {0xe7,0x92,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe8b6/*gb2312*/, 0x74d2/*utf16*/, {0xe7,0x93,0x92}/*utf8*/, 3/*utf8 len*/},{0xe8b7/*gb2312*/, 0x74ba/*utf16*/, {0xe7,0x92,0xba}/*utf8*/, 3/*utf8 len*/},{0xe8b8/*gb2312*/, 0x97ea/*utf16*/, {0xe9,0x9f,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe8b9/*gb2312*/, 0x97eb/*utf16*/, {0xe9,0x9f,0xab}/*utf8*/, 3/*utf8 len*/},{0xe8ba/*gb2312*/, 0x97ec/*utf16*/, {0xe9,0x9f,0xac}/*utf8*/, 3/*utf8 len*/},{0xe8bb/*gb2312*/, 0x674c/*utf16*/, {0xe6,0x9d,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe8bc/*gb2312*/, 0x6753/*utf16*/, {0xe6,0x9d,0x93}/*utf8*/, 3/*utf8 len*/},{0xe8bd/*gb2312*/, 0x675e/*utf16*/, {0xe6,0x9d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe8be/*gb2312*/, 0x6748/*utf16*/, {0xe6,0x9d,0x88}/*utf8*/, 3/*utf8 len*/},{0xe8bf/*gb2312*/, 0x6769/*utf16*/, {0xe6,0x9d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe8c0/*gb2312*/, 0x67a5/*utf16*/, {0xe6,0x9e,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe8c1/*gb2312*/, 0x6787/*utf16*/, {0xe6,0x9e,0x87}/*utf8*/, 3/*utf8 len*/},{0xe8c2/*gb2312*/, 0x676a/*utf16*/, {0xe6,0x9d,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe8c3/*gb2312*/, 0x6773/*utf16*/, {0xe6,0x9d,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe8c4/*gb2312*/, 0x6798/*utf16*/, {0xe6,0x9e,0x98}/*utf8*/, 3/*utf8 len*/},{0xe8c5/*gb2312*/, 0x67a7/*utf16*/, {0xe6,0x9e,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe8c6/*gb2312*/, 0x6775/*utf16*/, {0xe6,0x9d,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe8c7/*gb2312*/, 0x67a8/*utf16*/, {0xe6,0x9e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe8c8/*gb2312*/, 0x679e/*utf16*/, {0xe6,0x9e,0x9e}/*utf8*/, 3/*utf8 len*/},{0xe8c9/*gb2312*/, 0x67ad/*utf16*/, {0xe6,0x9e,0xad}/*utf8*/, 3/*utf8 len*/},{0xe8ca/*gb2312*/, 0x678b/*utf16*/, {0xe6,0x9e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe8cb/*gb2312*/, 0x6777/*utf16*/, {0xe6,0x9d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe8cc/*gb2312*/, 0x677c/*utf16*/, {0xe6,0x9d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe8cd/*gb2312*/, 0x67f0/*utf16*/, {0xe6,0x9f,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe8ce/*gb2312*/, 0x6809/*utf16*/, {0xe6,0xa0,0x89}/*utf8*/, 3/*utf8 len*/},{0xe8cf/*gb2312*/, 0x67d8/*utf16*/, {0xe6,0x9f,0x98}/*utf8*/, 3/*utf8 len*/},{0xe8d0/*gb2312*/, 0x680a/*utf16*/, {0xe6,0xa0,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe8d1/*gb2312*/, 0x67e9/*utf16*/, {0xe6,0x9f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe8d2/*gb2312*/, 0x67b0/*utf16*/, {0xe6,0x9e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe8d3/*gb2312*/, 0x680c/*utf16*/, {0xe6,0xa0,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe8d4/*gb2312*/, 0x67d9/*utf16*/, {0xe6,0x9f,0x99}/*utf8*/, 3/*utf8 len*/},{0xe8d5/*gb2312*/, 0x67b5/*utf16*/, {0xe6,0x9e,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe8d6/*gb2312*/, 0x67da/*utf16*/, {0xe6,0x9f,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe8d7/*gb2312*/, 0x67b3/*utf16*/, {0xe6,0x9e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe8d8/*gb2312*/, 0x67dd/*utf16*/, {0xe6,0x9f,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe8d9/*gb2312*/, 0x6800/*utf16*/, {0xe6,0xa0,0x80}/*utf8*/, 3/*utf8 len*/},{0xe8da/*gb2312*/, 0x67c3/*utf16*/, {0xe6,0x9f,0x83}/*utf8*/, 3/*utf8 len*/},{0xe8db/*gb2312*/, 0x67b8/*utf16*/, {0xe6,0x9e,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe8dc/*gb2312*/, 0x67e2/*utf16*/, {0xe6,0x9f,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe8dd/*gb2312*/, 0x680e/*utf16*/, {0xe6,0xa0,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe8de/*gb2312*/, 0x67c1/*utf16*/, {0xe6,0x9f,0x81}/*utf8*/, 3/*utf8 len*/},{0xe8df/*gb2312*/, 0x67fd/*utf16*/, {0xe6,0x9f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe8e0/*gb2312*/, 0x6832/*utf16*/, {0xe6,0xa0,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe8e1/*gb2312*/, 0x6833/*utf16*/, {0xe6,0xa0,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe8e2/*gb2312*/, 0x6860/*utf16*/, {0xe6,0xa1,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe8e3/*gb2312*/, 0x6861/*utf16*/, {0xe6,0xa1,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe8e4/*gb2312*/, 0x684e/*utf16*/, {0xe6,0xa1,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe8e5/*gb2312*/, 0x6862/*utf16*/, {0xe6,0xa1,0xa2}/*utf8*/, 3/*utf8 len*/},{0xe8e6/*gb2312*/, 0x6844/*utf16*/, {0xe6,0xa1,0x84}/*utf8*/, 3/*utf8 len*/},{0xe8e7/*gb2312*/, 0x6864/*utf16*/, {0xe6,0xa1,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe8e8/*gb2312*/, 0x6883/*utf16*/, {0xe6,0xa2,0x83}/*utf8*/, 3/*utf8 len*/},{0xe8e9/*gb2312*/, 0x681d/*utf16*/, {0xe6,0xa0,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe8ea/*gb2312*/, 0x6855/*utf16*/, {0xe6,0xa1,0x95}/*utf8*/, 3/*utf8 len*/},{0xe8eb/*gb2312*/, 0x6866/*utf16*/, {0xe6,0xa1,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe8ec/*gb2312*/, 0x6841/*utf16*/, {0xe6,0xa1,0x81}/*utf8*/, 3/*utf8 len*/},{0xe8ed/*gb2312*/, 0x6867/*utf16*/, {0xe6,0xa1,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe8ee/*gb2312*/, 0x6840/*utf16*/, {0xe6,0xa1,0x80}/*utf8*/, 3/*utf8 len*/},{0xe8ef/*gb2312*/, 0x683e/*utf16*/, {0xe6,0xa0,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe8f0/*gb2312*/, 0x684a/*utf16*/, {0xe6,0xa1,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe8f1/*gb2312*/, 0x6849/*utf16*/, {0xe6,0xa1,0x89}/*utf8*/, 3/*utf8 len*/},{0xe8f2/*gb2312*/, 0x6829/*utf16*/, {0xe6,0xa0,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe8f3/*gb2312*/, 0x68b5/*utf16*/, {0xe6,0xa2,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe8f4/*gb2312*/, 0x688f/*utf16*/, {0xe6,0xa2,0x8f}/*utf8*/, 3/*utf8 len*/},{0xe8f5/*gb2312*/, 0x6874/*utf16*/, {0xe6,0xa1,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe8f6/*gb2312*/, 0x6877/*utf16*/, {0xe6,0xa1,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe8f7/*gb2312*/, 0x6893/*utf16*/, {0xe6,0xa2,0x93}/*utf8*/, 3/*utf8 len*/},{0xe8f8/*gb2312*/, 0x686b/*utf16*/, {0xe6,0xa1,0xab}/*utf8*/, 3/*utf8 len*/},{0xe8f9/*gb2312*/, 0x68c2/*utf16*/, {0xe6,0xa3,0x82}/*utf8*/, 3/*utf8 len*/},{0xe8fa/*gb2312*/, 0x696e/*utf16*/, {0xe6,0xa5,0xae}/*utf8*/, 3/*utf8 len*/},{0xe8fb/*gb2312*/, 0x68fc/*utf16*/, {0xe6,0xa3,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe8fc/*gb2312*/, 0x691f/*utf16*/, {0xe6,0xa4,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe8fd/*gb2312*/, 0x6920/*utf16*/, {0xe6,0xa4,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe8fe/*gb2312*/, 0x68f9/*utf16*/, {0xe6,0xa3,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe9a1/*gb2312*/, 0x6924/*utf16*/, {0xe6,0xa4,0xa4}/*utf8*/, 3/*utf8 len*/},{0xe9a2/*gb2312*/, 0x68f0/*utf16*/, {0xe6,0xa3,0xb0}/*utf8*/, 3/*utf8 len*/},{0xe9a3/*gb2312*/, 0x690b/*utf16*/, {0xe6,0xa4,0x8b}/*utf8*/, 3/*utf8 len*/},{0xe9a4/*gb2312*/, 0x6901/*utf16*/, {0xe6,0xa4,0x81}/*utf8*/, 3/*utf8 len*/},{0xe9a5/*gb2312*/, 0x6957/*utf16*/, {0xe6,0xa5,0x97}/*utf8*/, 3/*utf8 len*/},{0xe9a6/*gb2312*/, 0x68e3/*utf16*/, {0xe6,0xa3,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe9a7/*gb2312*/, 0x6910/*utf16*/, {0xe6,0xa4,0x90}/*utf8*/, 3/*utf8 len*/},{0xe9a8/*gb2312*/, 0x6971/*utf16*/, {0xe6,0xa5,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe9a9/*gb2312*/, 0x6939/*utf16*/, {0xe6,0xa4,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe9aa/*gb2312*/, 0x6960/*utf16*/, {0xe6,0xa5,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe9ab/*gb2312*/, 0x6942/*utf16*/, {0xe6,0xa5,0x82}/*utf8*/, 3/*utf8 len*/},{0xe9ac/*gb2312*/, 0x695d/*utf16*/, {0xe6,0xa5,0x9d}/*utf8*/, 3/*utf8 len*/},{0xe9ad/*gb2312*/, 0x6984/*utf16*/, {0xe6,0xa6,0x84}/*utf8*/, 3/*utf8 len*/},{0xe9ae/*gb2312*/, 0x696b/*utf16*/, {0xe6,0xa5,0xab}/*utf8*/, 3/*utf8 len*/},{0xe9af/*gb2312*/, 0x6980/*utf16*/, {0xe6,0xa6,0x80}/*utf8*/, 3/*utf8 len*/},{0xe9b0/*gb2312*/, 0x6998/*utf16*/, {0xe6,0xa6,0x98}/*utf8*/, 3/*utf8 len*/},{0xe9b1/*gb2312*/, 0x6978/*utf16*/, {0xe6,0xa5,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe9b2/*gb2312*/, 0x6934/*utf16*/, {0xe6,0xa4,0xb4}/*utf8*/, 3/*utf8 len*/},{0xe9b3/*gb2312*/, 0x69cc/*utf16*/, {0xe6,0xa7,0x8c}/*utf8*/, 3/*utf8 len*/},{0xe9b4/*gb2312*/, 0x6987/*utf16*/, {0xe6,0xa6,0x87}/*utf8*/, 3/*utf8 len*/},{0xe9b5/*gb2312*/, 0x6988/*utf16*/, {0xe6,0xa6,0x88}/*utf8*/, 3/*utf8 len*/},{0xe9b6/*gb2312*/, 0x69ce/*utf16*/, {0xe6,0xa7,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe9b7/*gb2312*/, 0x6989/*utf16*/, {0xe6,0xa6,0x89}/*utf8*/, 3/*utf8 len*/},{0xe9b8/*gb2312*/, 0x6966/*utf16*/, {0xe6,0xa5,0xa6}/*utf8*/, 3/*utf8 len*/},{0xe9b9/*gb2312*/, 0x6963/*utf16*/, {0xe6,0xa5,0xa3}/*utf8*/, 3/*utf8 len*/},{0xe9ba/*gb2312*/, 0x6979/*utf16*/, {0xe6,0xa5,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe9bb/*gb2312*/, 0x699b/*utf16*/, {0xe6,0xa6,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe9bc/*gb2312*/, 0x69a7/*utf16*/, {0xe6,0xa6,0xa7}/*utf8*/, 3/*utf8 len*/},{0xe9bd/*gb2312*/, 0x69bb/*utf16*/, {0xe6,0xa6,0xbb}/*utf8*/, 3/*utf8 len*/},{0xe9be/*gb2312*/, 0x69ab/*utf16*/, {0xe6,0xa6,0xab}/*utf8*/, 3/*utf8 len*/},{0xe9bf/*gb2312*/, 0x69ad/*utf16*/, {0xe6,0xa6,0xad}/*utf8*/, 3/*utf8 len*/},{0xe9c0/*gb2312*/, 0x69d4/*utf16*/, {0xe6,0xa7,0x94}/*utf8*/, 3/*utf8 len*/},{0xe9c1/*gb2312*/, 0x69b1/*utf16*/, {0xe6,0xa6,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe9c2/*gb2312*/, 0x69c1/*utf16*/, {0xe6,0xa7,0x81}/*utf8*/, 3/*utf8 len*/},{0xe9c3/*gb2312*/, 0x69ca/*utf16*/, {0xe6,0xa7,0x8a}/*utf8*/, 3/*utf8 len*/},{0xe9c4/*gb2312*/, 0x69df/*utf16*/, {0xe6,0xa7,0x9f}/*utf8*/, 3/*utf8 len*/},{0xe9c5/*gb2312*/, 0x6995/*utf16*/, {0xe6,0xa6,0x95}/*utf8*/, 3/*utf8 len*/},{0xe9c6/*gb2312*/, 0x69e0/*utf16*/, {0xe6,0xa7,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe9c7/*gb2312*/, 0x698d/*utf16*/, {0xe6,0xa6,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe9c8/*gb2312*/, 0x69ff/*utf16*/, {0xe6,0xa7,0xbf}/*utf8*/, 3/*utf8 len*/},{0xe9c9/*gb2312*/, 0x6a2f/*utf16*/, {0xe6,0xa8,0xaf}/*utf8*/, 3/*utf8 len*/},{0xe9ca/*gb2312*/, 0x69ed/*utf16*/, {0xe6,0xa7,0xad}/*utf8*/, 3/*utf8 len*/},{0xe9cb/*gb2312*/, 0x6a17/*utf16*/, {0xe6,0xa8,0x97}/*utf8*/, 3/*utf8 len*/},{0xe9cc/*gb2312*/, 0x6a18/*utf16*/, {0xe6,0xa8,0x98}/*utf8*/, 3/*utf8 len*/},{0xe9cd/*gb2312*/, 0x6a65/*utf16*/, {0xe6,0xa9,0xa5}/*utf8*/, 3/*utf8 len*/},{0xe9ce/*gb2312*/, 0x69f2/*utf16*/, {0xe6,0xa7,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe9cf/*gb2312*/, 0x6a44/*utf16*/, {0xe6,0xa9,0x84}/*utf8*/, 3/*utf8 len*/},{0xe9d0/*gb2312*/, 0x6a3e/*utf16*/, {0xe6,0xa8,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe9d1/*gb2312*/, 0x6aa0/*utf16*/, {0xe6,0xaa,0xa0}/*utf8*/, 3/*utf8 len*/},{0xe9d2/*gb2312*/, 0x6a50/*utf16*/, {0xe6,0xa9,0x90}/*utf8*/, 3/*utf8 len*/},{0xe9d3/*gb2312*/, 0x6a5b/*utf16*/, {0xe6,0xa9,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe9d4/*gb2312*/, 0x6a35/*utf16*/, {0xe6,0xa8,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe9d5/*gb2312*/, 0x6a8e/*utf16*/, {0xe6,0xaa,0x8e}/*utf8*/, 3/*utf8 len*/},{0xe9d6/*gb2312*/, 0x6a79/*utf16*/, {0xe6,0xa9,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe9d7/*gb2312*/, 0x6a3d/*utf16*/, {0xe6,0xa8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xe9d8/*gb2312*/, 0x6a28/*utf16*/, {0xe6,0xa8,0xa8}/*utf8*/, 3/*utf8 len*/},{0xe9d9/*gb2312*/, 0x6a58/*utf16*/, {0xe6,0xa9,0x98}/*utf8*/, 3/*utf8 len*/},{0xe9da/*gb2312*/, 0x6a7c/*utf16*/, {0xe6,0xa9,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe9db/*gb2312*/, 0x6a91/*utf16*/, {0xe6,0xaa,0x91}/*utf8*/, 3/*utf8 len*/},{0xe9dc/*gb2312*/, 0x6a90/*utf16*/, {0xe6,0xaa,0x90}/*utf8*/, 3/*utf8 len*/},{0xe9dd/*gb2312*/, 0x6aa9/*utf16*/, {0xe6,0xaa,0xa9}/*utf8*/, 3/*utf8 len*/},{0xe9de/*gb2312*/, 0x6a97/*utf16*/, {0xe6,0xaa,0x97}/*utf8*/, 3/*utf8 len*/},{0xe9df/*gb2312*/, 0x6aab/*utf16*/, {0xe6,0xaa,0xab}/*utf8*/, 3/*utf8 len*/},{0xe9e0/*gb2312*/, 0x7337/*utf16*/, {0xe7,0x8c,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe9e1/*gb2312*/, 0x7352/*utf16*/, {0xe7,0x8d,0x92}/*utf8*/, 3/*utf8 len*/},{0xe9e2/*gb2312*/, 0x6b81/*utf16*/, {0xe6,0xae,0x81}/*utf8*/, 3/*utf8 len*/},{0xe9e3/*gb2312*/, 0x6b82/*utf16*/, {0xe6,0xae,0x82}/*utf8*/, 3/*utf8 len*/},{0xe9e4/*gb2312*/, 0x6b87/*utf16*/, {0xe6,0xae,0x87}/*utf8*/, 3/*utf8 len*/},{0xe9e5/*gb2312*/, 0x6b84/*utf16*/, {0xe6,0xae,0x84}/*utf8*/, 3/*utf8 len*/},{0xe9e6/*gb2312*/, 0x6b92/*utf16*/, {0xe6,0xae,0x92}/*utf8*/, 3/*utf8 len*/},{0xe9e7/*gb2312*/, 0x6b93/*utf16*/, {0xe6,0xae,0x93}/*utf8*/, 3/*utf8 len*/},{0xe9e8/*gb2312*/, 0x6b8d/*utf16*/, {0xe6,0xae,0x8d}/*utf8*/, 3/*utf8 len*/},{0xe9e9/*gb2312*/, 0x6b9a/*utf16*/, {0xe6,0xae,0x9a}/*utf8*/, 3/*utf8 len*/},{0xe9ea/*gb2312*/, 0x6b9b/*utf16*/, {0xe6,0xae,0x9b}/*utf8*/, 3/*utf8 len*/},{0xe9eb/*gb2312*/, 0x6ba1/*utf16*/, {0xe6,0xae,0xa1}/*utf8*/, 3/*utf8 len*/},{0xe9ec/*gb2312*/, 0x6baa/*utf16*/, {0xe6,0xae,0xaa}/*utf8*/, 3/*utf8 len*/},{0xe9ed/*gb2312*/, 0x8f6b/*utf16*/, {0xe8,0xbd,0xab}/*utf8*/, 3/*utf8 len*/},{0xe9ee/*gb2312*/, 0x8f6d/*utf16*/, {0xe8,0xbd,0xad}/*utf8*/, 3/*utf8 len*/},{0xe9ef/*gb2312*/, 0x8f71/*utf16*/, {0xe8,0xbd,0xb1}/*utf8*/, 3/*utf8 len*/},{0xe9f0/*gb2312*/, 0x8f72/*utf16*/, {0xe8,0xbd,0xb2}/*utf8*/, 3/*utf8 len*/},{0xe9f1/*gb2312*/, 0x8f73/*utf16*/, {0xe8,0xbd,0xb3}/*utf8*/, 3/*utf8 len*/},{0xe9f2/*gb2312*/, 0x8f75/*utf16*/, {0xe8,0xbd,0xb5}/*utf8*/, 3/*utf8 len*/},{0xe9f3/*gb2312*/, 0x8f76/*utf16*/, {0xe8,0xbd,0xb6}/*utf8*/, 3/*utf8 len*/},{0xe9f4/*gb2312*/, 0x8f78/*utf16*/, {0xe8,0xbd,0xb8}/*utf8*/, 3/*utf8 len*/},{0xe9f5/*gb2312*/, 0x8f77/*utf16*/, {0xe8,0xbd,0xb7}/*utf8*/, 3/*utf8 len*/},{0xe9f6/*gb2312*/, 0x8f79/*utf16*/, {0xe8,0xbd,0xb9}/*utf8*/, 3/*utf8 len*/},{0xe9f7/*gb2312*/, 0x8f7a/*utf16*/, {0xe8,0xbd,0xba}/*utf8*/, 3/*utf8 len*/},{0xe9f8/*gb2312*/, 0x8f7c/*utf16*/, {0xe8,0xbd,0xbc}/*utf8*/, 3/*utf8 len*/},{0xe9f9/*gb2312*/, 0x8f7e/*utf16*/, {0xe8,0xbd,0xbe}/*utf8*/, 3/*utf8 len*/},{0xe9fa/*gb2312*/, 0x8f81/*utf16*/, {0xe8,0xbe,0x81}/*utf8*/, 3/*utf8 len*/},{0xe9fb/*gb2312*/, 0x8f82/*utf16*/, {0xe8,0xbe,0x82}/*utf8*/, 3/*utf8 len*/},{0xe9fc/*gb2312*/, 0x8f84/*utf16*/, {0xe8,0xbe,0x84}/*utf8*/, 3/*utf8 len*/},{0xe9fd/*gb2312*/, 0x8f87/*utf16*/, {0xe8,0xbe,0x87}/*utf8*/, 3/*utf8 len*/},{0xe9fe/*gb2312*/, 0x8f8b/*utf16*/, {0xe8,0xbe,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeaa1/*gb2312*/, 0x8f8d/*utf16*/, {0xe8,0xbe,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeaa2/*gb2312*/, 0x8f8e/*utf16*/, {0xe8,0xbe,0x8e}/*utf8*/, 3/*utf8 len*/},{0xeaa3/*gb2312*/, 0x8f8f/*utf16*/, {0xe8,0xbe,0x8f}/*utf8*/, 3/*utf8 len*/},{0xeaa4/*gb2312*/, 0x8f98/*utf16*/, {0xe8,0xbe,0x98}/*utf8*/, 3/*utf8 len*/},{0xeaa5/*gb2312*/, 0x8f9a/*utf16*/, {0xe8,0xbe,0x9a}/*utf8*/, 3/*utf8 len*/},{0xeaa6/*gb2312*/, 0x8ece/*utf16*/, {0xe8,0xbb,0x8e}/*utf8*/, 3/*utf8 len*/},{0xeaa7/*gb2312*/, 0x620b/*utf16*/, {0xe6,0x88,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeaa8/*gb2312*/, 0x6217/*utf16*/, {0xe6,0x88,0x97}/*utf8*/, 3/*utf8 len*/},{0xeaa9/*gb2312*/, 0x621b/*utf16*/, {0xe6,0x88,0x9b}/*utf8*/, 3/*utf8 len*/},{0xeaaa/*gb2312*/, 0x621f/*utf16*/, {0xe6,0x88,0x9f}/*utf8*/, 3/*utf8 len*/},{0xeaab/*gb2312*/, 0x6222/*utf16*/, {0xe6,0x88,0xa2}/*utf8*/, 3/*utf8 len*/},{0xeaac/*gb2312*/, 0x6221/*utf16*/, {0xe6,0x88,0xa1}/*utf8*/, 3/*utf8 len*/},{0xeaad/*gb2312*/, 0x6225/*utf16*/, {0xe6,0x88,0xa5}/*utf8*/, 3/*utf8 len*/},{0xeaae/*gb2312*/, 0x6224/*utf16*/, {0xe6,0x88,0xa4}/*utf8*/, 3/*utf8 len*/},{0xeaaf/*gb2312*/, 0x622c/*utf16*/, {0xe6,0x88,0xac}/*utf8*/, 3/*utf8 len*/},{0xeab0/*gb2312*/, 0x81e7/*utf16*/, {0xe8,0x87,0xa7}/*utf8*/, 3/*utf8 len*/},{0xeab1/*gb2312*/, 0x74ef/*utf16*/, {0xe7,0x93,0xaf}/*utf8*/, 3/*utf8 len*/},{0xeab2/*gb2312*/, 0x74f4/*utf16*/, {0xe7,0x93,0xb4}/*utf8*/, 3/*utf8 len*/},{0xeab3/*gb2312*/, 0x74ff/*utf16*/, {0xe7,0x93,0xbf}/*utf8*/, 3/*utf8 len*/},{0xeab4/*gb2312*/, 0x750f/*utf16*/, {0xe7,0x94,0x8f}/*utf8*/, 3/*utf8 len*/},{0xeab5/*gb2312*/, 0x7511/*utf16*/, {0xe7,0x94,0x91}/*utf8*/, 3/*utf8 len*/},{0xeab6/*gb2312*/, 0x7513/*utf16*/, {0xe7,0x94,0x93}/*utf8*/, 3/*utf8 len*/},{0xeab7/*gb2312*/, 0x6534/*utf16*/, {0xe6,0x94,0xb4}/*utf8*/, 3/*utf8 len*/},{0xeab8/*gb2312*/, 0x65ee/*utf16*/, {0xe6,0x97,0xae}/*utf8*/, 3/*utf8 len*/},{0xeab9/*gb2312*/, 0x65ef/*utf16*/, {0xe6,0x97,0xaf}/*utf8*/, 3/*utf8 len*/},{0xeaba/*gb2312*/, 0x65f0/*utf16*/, {0xe6,0x97,0xb0}/*utf8*/, 3/*utf8 len*/},{0xeabb/*gb2312*/, 0x660a/*utf16*/, {0xe6,0x98,0x8a}/*utf8*/, 3/*utf8 len*/},{0xeabc/*gb2312*/, 0x6619/*utf16*/, {0xe6,0x98,0x99}/*utf8*/, 3/*utf8 len*/},{0xeabd/*gb2312*/, 0x6772/*utf16*/, {0xe6,0x9d,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeabe/*gb2312*/, 0x6603/*utf16*/, {0xe6,0x98,0x83}/*utf8*/, 3/*utf8 len*/},{0xeabf/*gb2312*/, 0x6615/*utf16*/, {0xe6,0x98,0x95}/*utf8*/, 3/*utf8 len*/},{0xeac0/*gb2312*/, 0x6600/*utf16*/, {0xe6,0x98,0x80}/*utf8*/, 3/*utf8 len*/},{0xeac1/*gb2312*/, 0x7085/*utf16*/, {0xe7,0x82,0x85}/*utf8*/, 3/*utf8 len*/},{0xeac2/*gb2312*/, 0x66f7/*utf16*/, {0xe6,0x9b,0xb7}/*utf8*/, 3/*utf8 len*/},{0xeac3/*gb2312*/, 0x661d/*utf16*/, {0xe6,0x98,0x9d}/*utf8*/, 3/*utf8 len*/},{0xeac4/*gb2312*/, 0x6634/*utf16*/, {0xe6,0x98,0xb4}/*utf8*/, 3/*utf8 len*/},{0xeac5/*gb2312*/, 0x6631/*utf16*/, {0xe6,0x98,0xb1}/*utf8*/, 3/*utf8 len*/},{0xeac6/*gb2312*/, 0x6636/*utf16*/, {0xe6,0x98,0xb6}/*utf8*/, 3/*utf8 len*/},{0xeac7/*gb2312*/, 0x6635/*utf16*/, {0xe6,0x98,0xb5}/*utf8*/, 3/*utf8 len*/},{0xeac8/*gb2312*/, 0x8006/*utf16*/, {0xe8,0x80,0x86}/*utf8*/, 3/*utf8 len*/},{0xeac9/*gb2312*/, 0x665f/*utf16*/, {0xe6,0x99,0x9f}/*utf8*/, 3/*utf8 len*/},{0xeaca/*gb2312*/, 0x6654/*utf16*/, {0xe6,0x99,0x94}/*utf8*/, 3/*utf8 len*/},{0xeacb/*gb2312*/, 0x6641/*utf16*/, {0xe6,0x99,0x81}/*utf8*/, 3/*utf8 len*/},{0xeacc/*gb2312*/, 0x664f/*utf16*/, {0xe6,0x99,0x8f}/*utf8*/, 3/*utf8 len*/},{0xeacd/*gb2312*/, 0x6656/*utf16*/, {0xe6,0x99,0x96}/*utf8*/, 3/*utf8 len*/},{0xeace/*gb2312*/, 0x6661/*utf16*/, {0xe6,0x99,0xa1}/*utf8*/, 3/*utf8 len*/},{0xeacf/*gb2312*/, 0x6657/*utf16*/, {0xe6,0x99,0x97}/*utf8*/, 3/*utf8 len*/},{0xead0/*gb2312*/, 0x6677/*utf16*/, {0xe6,0x99,0xb7}/*utf8*/, 3/*utf8 len*/},{0xead1/*gb2312*/, 0x6684/*utf16*/, {0xe6,0x9a,0x84}/*utf8*/, 3/*utf8 len*/},{0xead2/*gb2312*/, 0x668c/*utf16*/, {0xe6,0x9a,0x8c}/*utf8*/, 3/*utf8 len*/},{0xead3/*gb2312*/, 0x66a7/*utf16*/, {0xe6,0x9a,0xa7}/*utf8*/, 3/*utf8 len*/},{0xead4/*gb2312*/, 0x669d/*utf16*/, {0xe6,0x9a,0x9d}/*utf8*/, 3/*utf8 len*/},{0xead5/*gb2312*/, 0x66be/*utf16*/, {0xe6,0x9a,0xbe}/*utf8*/, 3/*utf8 len*/},{0xead6/*gb2312*/, 0x66db/*utf16*/, {0xe6,0x9b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xead7/*gb2312*/, 0x66dc/*utf16*/, {0xe6,0x9b,0x9c}/*utf8*/, 3/*utf8 len*/},{0xead8/*gb2312*/, 0x66e6/*utf16*/, {0xe6,0x9b,0xa6}/*utf8*/, 3/*utf8 len*/},{0xead9/*gb2312*/, 0x66e9/*utf16*/, {0xe6,0x9b,0xa9}/*utf8*/, 3/*utf8 len*/},{0xeada/*gb2312*/, 0x8d32/*utf16*/, {0xe8,0xb4,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeadb/*gb2312*/, 0x8d33/*utf16*/, {0xe8,0xb4,0xb3}/*utf8*/, 3/*utf8 len*/},{0xeadc/*gb2312*/, 0x8d36/*utf16*/, {0xe8,0xb4,0xb6}/*utf8*/, 3/*utf8 len*/},{0xeadd/*gb2312*/, 0x8d3b/*utf16*/, {0xe8,0xb4,0xbb}/*utf8*/, 3/*utf8 len*/},{0xeade/*gb2312*/, 0x8d3d/*utf16*/, {0xe8,0xb4,0xbd}/*utf8*/, 3/*utf8 len*/},{0xeadf/*gb2312*/, 0x8d40/*utf16*/, {0xe8,0xb5,0x80}/*utf8*/, 3/*utf8 len*/},{0xeae0/*gb2312*/, 0x8d45/*utf16*/, {0xe8,0xb5,0x85}/*utf8*/, 3/*utf8 len*/},{0xeae1/*gb2312*/, 0x8d46/*utf16*/, {0xe8,0xb5,0x86}/*utf8*/, 3/*utf8 len*/},{0xeae2/*gb2312*/, 0x8d48/*utf16*/, {0xe8,0xb5,0x88}/*utf8*/, 3/*utf8 len*/},{0xeae3/*gb2312*/, 0x8d49/*utf16*/, {0xe8,0xb5,0x89}/*utf8*/, 3/*utf8 len*/},{0xeae4/*gb2312*/, 0x8d47/*utf16*/, {0xe8,0xb5,0x87}/*utf8*/, 3/*utf8 len*/},{0xeae5/*gb2312*/, 0x8d4d/*utf16*/, {0xe8,0xb5,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeae6/*gb2312*/, 0x8d55/*utf16*/, {0xe8,0xb5,0x95}/*utf8*/, 3/*utf8 len*/},{0xeae7/*gb2312*/, 0x8d59/*utf16*/, {0xe8,0xb5,0x99}/*utf8*/, 3/*utf8 len*/},{0xeae8/*gb2312*/, 0x89c7/*utf16*/, {0xe8,0xa7,0x87}/*utf8*/, 3/*utf8 len*/},{0xeae9/*gb2312*/, 0x89ca/*utf16*/, {0xe8,0xa7,0x8a}/*utf8*/, 3/*utf8 len*/},{0xeaea/*gb2312*/, 0x89cb/*utf16*/, {0xe8,0xa7,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeaeb/*gb2312*/, 0x89cc/*utf16*/, {0xe8,0xa7,0x8c}/*utf8*/, 3/*utf8 len*/},{0xeaec/*gb2312*/, 0x89ce/*utf16*/, {0xe8,0xa7,0x8e}/*utf8*/, 3/*utf8 len*/},{0xeaed/*gb2312*/, 0x89cf/*utf16*/, {0xe8,0xa7,0x8f}/*utf8*/, 3/*utf8 len*/},{0xeaee/*gb2312*/, 0x89d0/*utf16*/, {0xe8,0xa7,0x90}/*utf8*/, 3/*utf8 len*/},{0xeaef/*gb2312*/, 0x89d1/*utf16*/, {0xe8,0xa7,0x91}/*utf8*/, 3/*utf8 len*/},{0xeaf0/*gb2312*/, 0x726e/*utf16*/, {0xe7,0x89,0xae}/*utf8*/, 3/*utf8 len*/},{0xeaf1/*gb2312*/, 0x729f/*utf16*/, {0xe7,0x8a,0x9f}/*utf8*/, 3/*utf8 len*/},{0xeaf2/*gb2312*/, 0x725d/*utf16*/, {0xe7,0x89,0x9d}/*utf8*/, 3/*utf8 len*/},{0xeaf3/*gb2312*/, 0x7266/*utf16*/, {0xe7,0x89,0xa6}/*utf8*/, 3/*utf8 len*/},{0xeaf4/*gb2312*/, 0x726f/*utf16*/, {0xe7,0x89,0xaf}/*utf8*/, 3/*utf8 len*/},{0xeaf5/*gb2312*/, 0x727e/*utf16*/, {0xe7,0x89,0xbe}/*utf8*/, 3/*utf8 len*/},{0xeaf6/*gb2312*/, 0x727f/*utf16*/, {0xe7,0x89,0xbf}/*utf8*/, 3/*utf8 len*/},{0xeaf7/*gb2312*/, 0x7284/*utf16*/, {0xe7,0x8a,0x84}/*utf8*/, 3/*utf8 len*/},{0xeaf8/*gb2312*/, 0x728b/*utf16*/, {0xe7,0x8a,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeaf9/*gb2312*/, 0x728d/*utf16*/, {0xe7,0x8a,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeafa/*gb2312*/, 0x728f/*utf16*/, {0xe7,0x8a,0x8f}/*utf8*/, 3/*utf8 len*/},{0xeafb/*gb2312*/, 0x7292/*utf16*/, {0xe7,0x8a,0x92}/*utf8*/, 3/*utf8 len*/},{0xeafc/*gb2312*/, 0x6308/*utf16*/, {0xe6,0x8c,0x88}/*utf8*/, 3/*utf8 len*/},{0xeafd/*gb2312*/, 0x6332/*utf16*/, {0xe6,0x8c,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeafe/*gb2312*/, 0x63b0/*utf16*/, {0xe6,0x8e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xeba1/*gb2312*/, 0x643f/*utf16*/, {0xe6,0x90,0xbf}/*utf8*/, 3/*utf8 len*/},{0xeba2/*gb2312*/, 0x64d8/*utf16*/, {0xe6,0x93,0x98}/*utf8*/, 3/*utf8 len*/},{0xeba3/*gb2312*/, 0x8004/*utf16*/, {0xe8,0x80,0x84}/*utf8*/, 3/*utf8 len*/},{0xeba4/*gb2312*/, 0x6bea/*utf16*/, {0xe6,0xaf,0xaa}/*utf8*/, 3/*utf8 len*/},{0xeba5/*gb2312*/, 0x6bf3/*utf16*/, {0xe6,0xaf,0xb3}/*utf8*/, 3/*utf8 len*/},{0xeba6/*gb2312*/, 0x6bfd/*utf16*/, {0xe6,0xaf,0xbd}/*utf8*/, 3/*utf8 len*/},{0xeba7/*gb2312*/, 0x6bf5/*utf16*/, {0xe6,0xaf,0xb5}/*utf8*/, 3/*utf8 len*/},{0xeba8/*gb2312*/, 0x6bf9/*utf16*/, {0xe6,0xaf,0xb9}/*utf8*/, 3/*utf8 len*/},{0xeba9/*gb2312*/, 0x6c05/*utf16*/, {0xe6,0xb0,0x85}/*utf8*/, 3/*utf8 len*/},{0xebaa/*gb2312*/, 0x6c07/*utf16*/, {0xe6,0xb0,0x87}/*utf8*/, 3/*utf8 len*/},{0xebab/*gb2312*/, 0x6c06/*utf16*/, {0xe6,0xb0,0x86}/*utf8*/, 3/*utf8 len*/},{0xebac/*gb2312*/, 0x6c0d/*utf16*/, {0xe6,0xb0,0x8d}/*utf8*/, 3/*utf8 len*/},{0xebad/*gb2312*/, 0x6c15/*utf16*/, {0xe6,0xb0,0x95}/*utf8*/, 3/*utf8 len*/},{0xebae/*gb2312*/, 0x6c18/*utf16*/, {0xe6,0xb0,0x98}/*utf8*/, 3/*utf8 len*/},{0xebaf/*gb2312*/, 0x6c19/*utf16*/, {0xe6,0xb0,0x99}/*utf8*/, 3/*utf8 len*/},{0xebb0/*gb2312*/, 0x6c1a/*utf16*/, {0xe6,0xb0,0x9a}/*utf8*/, 3/*utf8 len*/},{0xebb1/*gb2312*/, 0x6c21/*utf16*/, {0xe6,0xb0,0xa1}/*utf8*/, 3/*utf8 len*/},{0xebb2/*gb2312*/, 0x6c29/*utf16*/, {0xe6,0xb0,0xa9}/*utf8*/, 3/*utf8 len*/},{0xebb3/*gb2312*/, 0x6c24/*utf16*/, {0xe6,0xb0,0xa4}/*utf8*/, 3/*utf8 len*/},{0xebb4/*gb2312*/, 0x6c2a/*utf16*/, {0xe6,0xb0,0xaa}/*utf8*/, 3/*utf8 len*/},{0xebb5/*gb2312*/, 0x6c32/*utf16*/, {0xe6,0xb0,0xb2}/*utf8*/, 3/*utf8 len*/},{0xebb6/*gb2312*/, 0x6535/*utf16*/, {0xe6,0x94,0xb5}/*utf8*/, 3/*utf8 len*/},{0xebb7/*gb2312*/, 0x6555/*utf16*/, {0xe6,0x95,0x95}/*utf8*/, 3/*utf8 len*/},{0xebb8/*gb2312*/, 0x656b/*utf16*/, {0xe6,0x95,0xab}/*utf8*/, 3/*utf8 len*/},{0xebb9/*gb2312*/, 0x724d/*utf16*/, {0xe7,0x89,0x8d}/*utf8*/, 3/*utf8 len*/},{0xebba/*gb2312*/, 0x7252/*utf16*/, {0xe7,0x89,0x92}/*utf8*/, 3/*utf8 len*/},{0xebbb/*gb2312*/, 0x7256/*utf16*/, {0xe7,0x89,0x96}/*utf8*/, 3/*utf8 len*/},{0xebbc/*gb2312*/, 0x7230/*utf16*/, {0xe7,0x88,0xb0}/*utf8*/, 3/*utf8 len*/},{0xebbd/*gb2312*/, 0x8662/*utf16*/, {0xe8,0x99,0xa2}/*utf8*/, 3/*utf8 len*/},{0xebbe/*gb2312*/, 0x5216/*utf16*/, {0xe5,0x88,0x96}/*utf8*/, 3/*utf8 len*/},{0xebbf/*gb2312*/, 0x809f/*utf16*/, {0xe8,0x82,0x9f}/*utf8*/, 3/*utf8 len*/},{0xebc0/*gb2312*/, 0x809c/*utf16*/, {0xe8,0x82,0x9c}/*utf8*/, 3/*utf8 len*/},{0xebc1/*gb2312*/, 0x8093/*utf16*/, {0xe8,0x82,0x93}/*utf8*/, 3/*utf8 len*/},{0xebc2/*gb2312*/, 0x80bc/*utf16*/, {0xe8,0x82,0xbc}/*utf8*/, 3/*utf8 len*/},{0xebc3/*gb2312*/, 0x670a/*utf16*/, {0xe6,0x9c,0x8a}/*utf8*/, 3/*utf8 len*/},{0xebc4/*gb2312*/, 0x80bd/*utf16*/, {0xe8,0x82,0xbd}/*utf8*/, 3/*utf8 len*/},{0xebc5/*gb2312*/, 0x80b1/*utf16*/, {0xe8,0x82,0xb1}/*utf8*/, 3/*utf8 len*/},{0xebc6/*gb2312*/, 0x80ab/*utf16*/, {0xe8,0x82,0xab}/*utf8*/, 3/*utf8 len*/},{0xebc7/*gb2312*/, 0x80ad/*utf16*/, {0xe8,0x82,0xad}/*utf8*/, 3/*utf8 len*/},{0xebc8/*gb2312*/, 0x80b4/*utf16*/, {0xe8,0x82,0xb4}/*utf8*/, 3/*utf8 len*/},{0xebc9/*gb2312*/, 0x80b7/*utf16*/, {0xe8,0x82,0xb7}/*utf8*/, 3/*utf8 len*/},{0xebca/*gb2312*/, 0x80e7/*utf16*/, {0xe8,0x83,0xa7}/*utf8*/, 3/*utf8 len*/},{0xebcb/*gb2312*/, 0x80e8/*utf16*/, {0xe8,0x83,0xa8}/*utf8*/, 3/*utf8 len*/},{0xebcc/*gb2312*/, 0x80e9/*utf16*/, {0xe8,0x83,0xa9}/*utf8*/, 3/*utf8 len*/},{0xebcd/*gb2312*/, 0x80ea/*utf16*/, {0xe8,0x83,0xaa}/*utf8*/, 3/*utf8 len*/},{0xebce/*gb2312*/, 0x80db/*utf16*/, {0xe8,0x83,0x9b}/*utf8*/, 3/*utf8 len*/},{0xebcf/*gb2312*/, 0x80c2/*utf16*/, {0xe8,0x83,0x82}/*utf8*/, 3/*utf8 len*/},{0xebd0/*gb2312*/, 0x80c4/*utf16*/, {0xe8,0x83,0x84}/*utf8*/, 3/*utf8 len*/},{0xebd1/*gb2312*/, 0x80d9/*utf16*/, {0xe8,0x83,0x99}/*utf8*/, 3/*utf8 len*/},{0xebd2/*gb2312*/, 0x80cd/*utf16*/, {0xe8,0x83,0x8d}/*utf8*/, 3/*utf8 len*/},{0xebd3/*gb2312*/, 0x80d7/*utf16*/, {0xe8,0x83,0x97}/*utf8*/, 3/*utf8 len*/},{0xebd4/*gb2312*/, 0x6710/*utf16*/, {0xe6,0x9c,0x90}/*utf8*/, 3/*utf8 len*/},{0xebd5/*gb2312*/, 0x80dd/*utf16*/, {0xe8,0x83,0x9d}/*utf8*/, 3/*utf8 len*/},{0xebd6/*gb2312*/, 0x80eb/*utf16*/, {0xe8,0x83,0xab}/*utf8*/, 3/*utf8 len*/},{0xebd7/*gb2312*/, 0x80f1/*utf16*/, {0xe8,0x83,0xb1}/*utf8*/, 3/*utf8 len*/},{0xebd8/*gb2312*/, 0x80f4/*utf16*/, {0xe8,0x83,0xb4}/*utf8*/, 3/*utf8 len*/},{0xebd9/*gb2312*/, 0x80ed/*utf16*/, {0xe8,0x83,0xad}/*utf8*/, 3/*utf8 len*/},{0xebda/*gb2312*/, 0x810d/*utf16*/, {0xe8,0x84,0x8d}/*utf8*/, 3/*utf8 len*/},{0xebdb/*gb2312*/, 0x810e/*utf16*/, {0xe8,0x84,0x8e}/*utf8*/, 3/*utf8 len*/},{0xebdc/*gb2312*/, 0x80f2/*utf16*/, {0xe8,0x83,0xb2}/*utf8*/, 3/*utf8 len*/},{0xebdd/*gb2312*/, 0x80fc/*utf16*/, {0xe8,0x83,0xbc}/*utf8*/, 3/*utf8 len*/},{0xebde/*gb2312*/, 0x6715/*utf16*/, {0xe6,0x9c,0x95}/*utf8*/, 3/*utf8 len*/},{0xebdf/*gb2312*/, 0x8112/*utf16*/, {0xe8,0x84,0x92}/*utf8*/, 3/*utf8 len*/},{0xebe0/*gb2312*/, 0x8c5a/*utf16*/, {0xe8,0xb1,0x9a}/*utf8*/, 3/*utf8 len*/},{0xebe1/*gb2312*/, 0x8136/*utf16*/, {0xe8,0x84,0xb6}/*utf8*/, 3/*utf8 len*/},{0xebe2/*gb2312*/, 0x811e/*utf16*/, {0xe8,0x84,0x9e}/*utf8*/, 3/*utf8 len*/},{0xebe3/*gb2312*/, 0x812c/*utf16*/, {0xe8,0x84,0xac}/*utf8*/, 3/*utf8 len*/},{0xebe4/*gb2312*/, 0x8118/*utf16*/, {0xe8,0x84,0x98}/*utf8*/, 3/*utf8 len*/},{0xebe5/*gb2312*/, 0x8132/*utf16*/, {0xe8,0x84,0xb2}/*utf8*/, 3/*utf8 len*/},{0xebe6/*gb2312*/, 0x8148/*utf16*/, {0xe8,0x85,0x88}/*utf8*/, 3/*utf8 len*/},{0xebe7/*gb2312*/, 0x814c/*utf16*/, {0xe8,0x85,0x8c}/*utf8*/, 3/*utf8 len*/},{0xebe8/*gb2312*/, 0x8153/*utf16*/, {0xe8,0x85,0x93}/*utf8*/, 3/*utf8 len*/},{0xebe9/*gb2312*/, 0x8174/*utf16*/, {0xe8,0x85,0xb4}/*utf8*/, 3/*utf8 len*/},{0xebea/*gb2312*/, 0x8159/*utf16*/, {0xe8,0x85,0x99}/*utf8*/, 3/*utf8 len*/},{0xebeb/*gb2312*/, 0x815a/*utf16*/, {0xe8,0x85,0x9a}/*utf8*/, 3/*utf8 len*/},{0xebec/*gb2312*/, 0x8171/*utf16*/, {0xe8,0x85,0xb1}/*utf8*/, 3/*utf8 len*/},{0xebed/*gb2312*/, 0x8160/*utf16*/, {0xe8,0x85,0xa0}/*utf8*/, 3/*utf8 len*/},{0xebee/*gb2312*/, 0x8169/*utf16*/, {0xe8,0x85,0xa9}/*utf8*/, 3/*utf8 len*/},{0xebef/*gb2312*/, 0x817c/*utf16*/, {0xe8,0x85,0xbc}/*utf8*/, 3/*utf8 len*/},{0xebf0/*gb2312*/, 0x817d/*utf16*/, {0xe8,0x85,0xbd}/*utf8*/, 3/*utf8 len*/},{0xebf1/*gb2312*/, 0x816d/*utf16*/, {0xe8,0x85,0xad}/*utf8*/, 3/*utf8 len*/},{0xebf2/*gb2312*/, 0x8167/*utf16*/, {0xe8,0x85,0xa7}/*utf8*/, 3/*utf8 len*/},{0xebf3/*gb2312*/, 0x584d/*utf16*/, {0xe5,0xa1,0x8d}/*utf8*/, 3/*utf8 len*/},{0xebf4/*gb2312*/, 0x5ab5/*utf16*/, {0xe5,0xaa,0xb5}/*utf8*/, 3/*utf8 len*/},{0xebf5/*gb2312*/, 0x8188/*utf16*/, {0xe8,0x86,0x88}/*utf8*/, 3/*utf8 len*/},{0xebf6/*gb2312*/, 0x8182/*utf16*/, {0xe8,0x86,0x82}/*utf8*/, 3/*utf8 len*/},{0xebf7/*gb2312*/, 0x8191/*utf16*/, {0xe8,0x86,0x91}/*utf8*/, 3/*utf8 len*/},{0xebf8/*gb2312*/, 0x6ed5/*utf16*/, {0xe6,0xbb,0x95}/*utf8*/, 3/*utf8 len*/},{0xebf9/*gb2312*/, 0x81a3/*utf16*/, {0xe8,0x86,0xa3}/*utf8*/, 3/*utf8 len*/},{0xebfa/*gb2312*/, 0x81aa/*utf16*/, {0xe8,0x86,0xaa}/*utf8*/, 3/*utf8 len*/},{0xebfb/*gb2312*/, 0x81cc/*utf16*/, {0xe8,0x87,0x8c}/*utf8*/, 3/*utf8 len*/},{0xebfc/*gb2312*/, 0x6726/*utf16*/, {0xe6,0x9c,0xa6}/*utf8*/, 3/*utf8 len*/},{0xebfd/*gb2312*/, 0x81ca/*utf16*/, {0xe8,0x87,0x8a}/*utf8*/, 3/*utf8 len*/},{0xebfe/*gb2312*/, 0x81bb/*utf16*/, {0xe8,0x86,0xbb}/*utf8*/, 3/*utf8 len*/},{0xeca1/*gb2312*/, 0x81c1/*utf16*/, {0xe8,0x87,0x81}/*utf8*/, 3/*utf8 len*/},{0xeca2/*gb2312*/, 0x81a6/*utf16*/, {0xe8,0x86,0xa6}/*utf8*/, 3/*utf8 len*/},{0xeca3/*gb2312*/, 0x6b24/*utf16*/, {0xe6,0xac,0xa4}/*utf8*/, 3/*utf8 len*/},{0xeca4/*gb2312*/, 0x6b37/*utf16*/, {0xe6,0xac,0xb7}/*utf8*/, 3/*utf8 len*/},{0xeca5/*gb2312*/, 0x6b39/*utf16*/, {0xe6,0xac,0xb9}/*utf8*/, 3/*utf8 len*/},{0xeca6/*gb2312*/, 0x6b43/*utf16*/, {0xe6,0xad,0x83}/*utf8*/, 3/*utf8 len*/},{0xeca7/*gb2312*/, 0x6b46/*utf16*/, {0xe6,0xad,0x86}/*utf8*/, 3/*utf8 len*/},{0xeca8/*gb2312*/, 0x6b59/*utf16*/, {0xe6,0xad,0x99}/*utf8*/, 3/*utf8 len*/},{0xeca9/*gb2312*/, 0x98d1/*utf16*/, {0xe9,0xa3,0x91}/*utf8*/, 3/*utf8 len*/},{0xecaa/*gb2312*/, 0x98d2/*utf16*/, {0xe9,0xa3,0x92}/*utf8*/, 3/*utf8 len*/},{0xecab/*gb2312*/, 0x98d3/*utf16*/, {0xe9,0xa3,0x93}/*utf8*/, 3/*utf8 len*/},{0xecac/*gb2312*/, 0x98d5/*utf16*/, {0xe9,0xa3,0x95}/*utf8*/, 3/*utf8 len*/},{0xecad/*gb2312*/, 0x98d9/*utf16*/, {0xe9,0xa3,0x99}/*utf8*/, 3/*utf8 len*/},{0xecae/*gb2312*/, 0x98da/*utf16*/, {0xe9,0xa3,0x9a}/*utf8*/, 3/*utf8 len*/},{0xecaf/*gb2312*/, 0x6bb3/*utf16*/, {0xe6,0xae,0xb3}/*utf8*/, 3/*utf8 len*/},{0xecb0/*gb2312*/, 0x5f40/*utf16*/, {0xe5,0xbd,0x80}/*utf8*/, 3/*utf8 len*/},{0xecb1/*gb2312*/, 0x6bc2/*utf16*/, {0xe6,0xaf,0x82}/*utf8*/, 3/*utf8 len*/},{0xecb2/*gb2312*/, 0x89f3/*utf16*/, {0xe8,0xa7,0xb3}/*utf8*/, 3/*utf8 len*/},{0xecb3/*gb2312*/, 0x6590/*utf16*/, {0xe6,0x96,0x90}/*utf8*/, 3/*utf8 len*/},{0xecb4/*gb2312*/, 0x9f51/*utf16*/, {0xe9,0xbd,0x91}/*utf8*/, 3/*utf8 len*/},{0xecb5/*gb2312*/, 0x6593/*utf16*/, {0xe6,0x96,0x93}/*utf8*/, 3/*utf8 len*/},{0xecb6/*gb2312*/, 0x65bc/*utf16*/, {0xe6,0x96,0xbc}/*utf8*/, 3/*utf8 len*/},{0xecb7/*gb2312*/, 0x65c6/*utf16*/, {0xe6,0x97,0x86}/*utf8*/, 3/*utf8 len*/},{0xecb8/*gb2312*/, 0x65c4/*utf16*/, {0xe6,0x97,0x84}/*utf8*/, 3/*utf8 len*/},{0xecb9/*gb2312*/, 0x65c3/*utf16*/, {0xe6,0x97,0x83}/*utf8*/, 3/*utf8 len*/},{0xecba/*gb2312*/, 0x65cc/*utf16*/, {0xe6,0x97,0x8c}/*utf8*/, 3/*utf8 len*/},{0xecbb/*gb2312*/, 0x65ce/*utf16*/, {0xe6,0x97,0x8e}/*utf8*/, 3/*utf8 len*/},{0xecbc/*gb2312*/, 0x65d2/*utf16*/, {0xe6,0x97,0x92}/*utf8*/, 3/*utf8 len*/},{0xecbd/*gb2312*/, 0x65d6/*utf16*/, {0xe6,0x97,0x96}/*utf8*/, 3/*utf8 len*/},{0xecbe/*gb2312*/, 0x7080/*utf16*/, {0xe7,0x82,0x80}/*utf8*/, 3/*utf8 len*/},{0xecbf/*gb2312*/, 0x709c/*utf16*/, {0xe7,0x82,0x9c}/*utf8*/, 3/*utf8 len*/},{0xecc0/*gb2312*/, 0x7096/*utf16*/, {0xe7,0x82,0x96}/*utf8*/, 3/*utf8 len*/},{0xecc1/*gb2312*/, 0x709d/*utf16*/, {0xe7,0x82,0x9d}/*utf8*/, 3/*utf8 len*/},{0xecc2/*gb2312*/, 0x70bb/*utf16*/, {0xe7,0x82,0xbb}/*utf8*/, 3/*utf8 len*/},{0xecc3/*gb2312*/, 0x70c0/*utf16*/, {0xe7,0x83,0x80}/*utf8*/, 3/*utf8 len*/},{0xecc4/*gb2312*/, 0x70b7/*utf16*/, {0xe7,0x82,0xb7}/*utf8*/, 3/*utf8 len*/},{0xecc5/*gb2312*/, 0x70ab/*utf16*/, {0xe7,0x82,0xab}/*utf8*/, 3/*utf8 len*/},{0xecc6/*gb2312*/, 0x70b1/*utf16*/, {0xe7,0x82,0xb1}/*utf8*/, 3/*utf8 len*/},{0xecc7/*gb2312*/, 0x70e8/*utf16*/, {0xe7,0x83,0xa8}/*utf8*/, 3/*utf8 len*/},{0xecc8/*gb2312*/, 0x70ca/*utf16*/, {0xe7,0x83,0x8a}/*utf8*/, 3/*utf8 len*/},{0xecc9/*gb2312*/, 0x7110/*utf16*/, {0xe7,0x84,0x90}/*utf8*/, 3/*utf8 len*/},{0xecca/*gb2312*/, 0x7113/*utf16*/, {0xe7,0x84,0x93}/*utf8*/, 3/*utf8 len*/},{0xeccb/*gb2312*/, 0x7116/*utf16*/, {0xe7,0x84,0x96}/*utf8*/, 3/*utf8 len*/},{0xeccc/*gb2312*/, 0x712f/*utf16*/, {0xe7,0x84,0xaf}/*utf8*/, 3/*utf8 len*/},{0xeccd/*gb2312*/, 0x7131/*utf16*/, {0xe7,0x84,0xb1}/*utf8*/, 3/*utf8 len*/},{0xecce/*gb2312*/, 0x7173/*utf16*/, {0xe7,0x85,0xb3}/*utf8*/, 3/*utf8 len*/},{0xeccf/*gb2312*/, 0x715c/*utf16*/, {0xe7,0x85,0x9c}/*utf8*/, 3/*utf8 len*/},{0xecd0/*gb2312*/, 0x7168/*utf16*/, {0xe7,0x85,0xa8}/*utf8*/, 3/*utf8 len*/},{0xecd1/*gb2312*/, 0x7145/*utf16*/, {0xe7,0x85,0x85}/*utf8*/, 3/*utf8 len*/},{0xecd2/*gb2312*/, 0x7172/*utf16*/, {0xe7,0x85,0xb2}/*utf8*/, 3/*utf8 len*/},{0xecd3/*gb2312*/, 0x714a/*utf16*/, {0xe7,0x85,0x8a}/*utf8*/, 3/*utf8 len*/},{0xecd4/*gb2312*/, 0x7178/*utf16*/, {0xe7,0x85,0xb8}/*utf8*/, 3/*utf8 len*/},{0xecd5/*gb2312*/, 0x717a/*utf16*/, {0xe7,0x85,0xba}/*utf8*/, 3/*utf8 len*/},{0xecd6/*gb2312*/, 0x7198/*utf16*/, {0xe7,0x86,0x98}/*utf8*/, 3/*utf8 len*/},{0xecd7/*gb2312*/, 0x71b3/*utf16*/, {0xe7,0x86,0xb3}/*utf8*/, 3/*utf8 len*/},{0xecd8/*gb2312*/, 0x71b5/*utf16*/, {0xe7,0x86,0xb5}/*utf8*/, 3/*utf8 len*/},{0xecd9/*gb2312*/, 0x71a8/*utf16*/, {0xe7,0x86,0xa8}/*utf8*/, 3/*utf8 len*/},{0xecda/*gb2312*/, 0x71a0/*utf16*/, {0xe7,0x86,0xa0}/*utf8*/, 3/*utf8 len*/},{0xecdb/*gb2312*/, 0x71e0/*utf16*/, {0xe7,0x87,0xa0}/*utf8*/, 3/*utf8 len*/},{0xecdc/*gb2312*/, 0x71d4/*utf16*/, {0xe7,0x87,0x94}/*utf8*/, 3/*utf8 len*/},{0xecdd/*gb2312*/, 0x71e7/*utf16*/, {0xe7,0x87,0xa7}/*utf8*/, 3/*utf8 len*/},{0xecde/*gb2312*/, 0x71f9/*utf16*/, {0xe7,0x87,0xb9}/*utf8*/, 3/*utf8 len*/},{0xecdf/*gb2312*/, 0x721d/*utf16*/, {0xe7,0x88,0x9d}/*utf8*/, 3/*utf8 len*/},{0xece0/*gb2312*/, 0x7228/*utf16*/, {0xe7,0x88,0xa8}/*utf8*/, 3/*utf8 len*/},{0xece1/*gb2312*/, 0x706c/*utf16*/, {0xe7,0x81,0xac}/*utf8*/, 3/*utf8 len*/},{0xece2/*gb2312*/, 0x7118/*utf16*/, {0xe7,0x84,0x98}/*utf8*/, 3/*utf8 len*/},{0xece3/*gb2312*/, 0x7166/*utf16*/, {0xe7,0x85,0xa6}/*utf8*/, 3/*utf8 len*/},{0xece4/*gb2312*/, 0x71b9/*utf16*/, {0xe7,0x86,0xb9}/*utf8*/, 3/*utf8 len*/},{0xece5/*gb2312*/, 0x623e/*utf16*/, {0xe6,0x88,0xbe}/*utf8*/, 3/*utf8 len*/},{0xece6/*gb2312*/, 0x623d/*utf16*/, {0xe6,0x88,0xbd}/*utf8*/, 3/*utf8 len*/},{0xece7/*gb2312*/, 0x6243/*utf16*/, {0xe6,0x89,0x83}/*utf8*/, 3/*utf8 len*/},{0xece8/*gb2312*/, 0x6248/*utf16*/, {0xe6,0x89,0x88}/*utf8*/, 3/*utf8 len*/},{0xece9/*gb2312*/, 0x6249/*utf16*/, {0xe6,0x89,0x89}/*utf8*/, 3/*utf8 len*/},{0xecea/*gb2312*/, 0x793b/*utf16*/, {0xe7,0xa4,0xbb}/*utf8*/, 3/*utf8 len*/},{0xeceb/*gb2312*/, 0x7940/*utf16*/, {0xe7,0xa5,0x80}/*utf8*/, 3/*utf8 len*/},{0xecec/*gb2312*/, 0x7946/*utf16*/, {0xe7,0xa5,0x86}/*utf8*/, 3/*utf8 len*/},{0xeced/*gb2312*/, 0x7949/*utf16*/, {0xe7,0xa5,0x89}/*utf8*/, 3/*utf8 len*/},{0xecee/*gb2312*/, 0x795b/*utf16*/, {0xe7,0xa5,0x9b}/*utf8*/, 3/*utf8 len*/},{0xecef/*gb2312*/, 0x795c/*utf16*/, {0xe7,0xa5,0x9c}/*utf8*/, 3/*utf8 len*/},{0xecf0/*gb2312*/, 0x7953/*utf16*/, {0xe7,0xa5,0x93}/*utf8*/, 3/*utf8 len*/},{0xecf1/*gb2312*/, 0x795a/*utf16*/, {0xe7,0xa5,0x9a}/*utf8*/, 3/*utf8 len*/},{0xecf2/*gb2312*/, 0x7962/*utf16*/, {0xe7,0xa5,0xa2}/*utf8*/, 3/*utf8 len*/},{0xecf3/*gb2312*/, 0x7957/*utf16*/, {0xe7,0xa5,0x97}/*utf8*/, 3/*utf8 len*/},{0xecf4/*gb2312*/, 0x7960/*utf16*/, {0xe7,0xa5,0xa0}/*utf8*/, 3/*utf8 len*/},{0xecf5/*gb2312*/, 0x796f/*utf16*/, {0xe7,0xa5,0xaf}/*utf8*/, 3/*utf8 len*/},{0xecf6/*gb2312*/, 0x7967/*utf16*/, {0xe7,0xa5,0xa7}/*utf8*/, 3/*utf8 len*/},{0xecf7/*gb2312*/, 0x797a/*utf16*/, {0xe7,0xa5,0xba}/*utf8*/, 3/*utf8 len*/},{0xecf8/*gb2312*/, 0x7985/*utf16*/, {0xe7,0xa6,0x85}/*utf8*/, 3/*utf8 len*/},{0xecf9/*gb2312*/, 0x798a/*utf16*/, {0xe7,0xa6,0x8a}/*utf8*/, 3/*utf8 len*/},{0xecfa/*gb2312*/, 0x799a/*utf16*/, {0xe7,0xa6,0x9a}/*utf8*/, 3/*utf8 len*/},{0xecfb/*gb2312*/, 0x79a7/*utf16*/, {0xe7,0xa6,0xa7}/*utf8*/, 3/*utf8 len*/},{0xecfc/*gb2312*/, 0x79b3/*utf16*/, {0xe7,0xa6,0xb3}/*utf8*/, 3/*utf8 len*/},{0xecfd/*gb2312*/, 0x5fd1/*utf16*/, {0xe5,0xbf,0x91}/*utf8*/, 3/*utf8 len*/},{0xecfe/*gb2312*/, 0x5fd0/*utf16*/, {0xe5,0xbf,0x90}/*utf8*/, 3/*utf8 len*/},{0xeda1/*gb2312*/, 0x603c/*utf16*/, {0xe6,0x80,0xbc}/*utf8*/, 3/*utf8 len*/},{0xeda2/*gb2312*/, 0x605d/*utf16*/, {0xe6,0x81,0x9d}/*utf8*/, 3/*utf8 len*/},{0xeda3/*gb2312*/, 0x605a/*utf16*/, {0xe6,0x81,0x9a}/*utf8*/, 3/*utf8 len*/},{0xeda4/*gb2312*/, 0x6067/*utf16*/, {0xe6,0x81,0xa7}/*utf8*/, 3/*utf8 len*/},{0xeda5/*gb2312*/, 0x6041/*utf16*/, {0xe6,0x81,0x81}/*utf8*/, 3/*utf8 len*/},{0xeda6/*gb2312*/, 0x6059/*utf16*/, {0xe6,0x81,0x99}/*utf8*/, 3/*utf8 len*/},{0xeda7/*gb2312*/, 0x6063/*utf16*/, {0xe6,0x81,0xa3}/*utf8*/, 3/*utf8 len*/},{0xeda8/*gb2312*/, 0x60ab/*utf16*/, {0xe6,0x82,0xab}/*utf8*/, 3/*utf8 len*/},{0xeda9/*gb2312*/, 0x6106/*utf16*/, {0xe6,0x84,0x86}/*utf8*/, 3/*utf8 len*/},{0xedaa/*gb2312*/, 0x610d/*utf16*/, {0xe6,0x84,0x8d}/*utf8*/, 3/*utf8 len*/},{0xedab/*gb2312*/, 0x615d/*utf16*/, {0xe6,0x85,0x9d}/*utf8*/, 3/*utf8 len*/},{0xedac/*gb2312*/, 0x61a9/*utf16*/, {0xe6,0x86,0xa9}/*utf8*/, 3/*utf8 len*/},{0xedad/*gb2312*/, 0x619d/*utf16*/, {0xe6,0x86,0x9d}/*utf8*/, 3/*utf8 len*/},{0xedae/*gb2312*/, 0x61cb/*utf16*/, {0xe6,0x87,0x8b}/*utf8*/, 3/*utf8 len*/},{0xedaf/*gb2312*/, 0x61d1/*utf16*/, {0xe6,0x87,0x91}/*utf8*/, 3/*utf8 len*/},{0xedb0/*gb2312*/, 0x6206/*utf16*/, {0xe6,0x88,0x86}/*utf8*/, 3/*utf8 len*/},{0xedb1/*gb2312*/, 0x8080/*utf16*/, {0xe8,0x82,0x80}/*utf8*/, 3/*utf8 len*/},{0xedb2/*gb2312*/, 0x807f/*utf16*/, {0xe8,0x81,0xbf}/*utf8*/, 3/*utf8 len*/},{0xedb3/*gb2312*/, 0x6c93/*utf16*/, {0xe6,0xb2,0x93}/*utf8*/, 3/*utf8 len*/},{0xedb4/*gb2312*/, 0x6cf6/*utf16*/, {0xe6,0xb3,0xb6}/*utf8*/, 3/*utf8 len*/},{0xedb5/*gb2312*/, 0x6dfc/*utf16*/, {0xe6,0xb7,0xbc}/*utf8*/, 3/*utf8 len*/},{0xedb6/*gb2312*/, 0x77f6/*utf16*/, {0xe7,0x9f,0xb6}/*utf8*/, 3/*utf8 len*/},{0xedb7/*gb2312*/, 0x77f8/*utf16*/, {0xe7,0x9f,0xb8}/*utf8*/, 3/*utf8 len*/},{0xedb8/*gb2312*/, 0x7800/*utf16*/, {0xe7,0xa0,0x80}/*utf8*/, 3/*utf8 len*/},{0xedb9/*gb2312*/, 0x7809/*utf16*/, {0xe7,0xa0,0x89}/*utf8*/, 3/*utf8 len*/},{0xedba/*gb2312*/, 0x7817/*utf16*/, {0xe7,0xa0,0x97}/*utf8*/, 3/*utf8 len*/},{0xedbb/*gb2312*/, 0x7818/*utf16*/, {0xe7,0xa0,0x98}/*utf8*/, 3/*utf8 len*/},{0xedbc/*gb2312*/, 0x7811/*utf16*/, {0xe7,0xa0,0x91}/*utf8*/, 3/*utf8 len*/},{0xedbd/*gb2312*/, 0x65ab/*utf16*/, {0xe6,0x96,0xab}/*utf8*/, 3/*utf8 len*/},{0xedbe/*gb2312*/, 0x782d/*utf16*/, {0xe7,0xa0,0xad}/*utf8*/, 3/*utf8 len*/},{0xedbf/*gb2312*/, 0x781c/*utf16*/, {0xe7,0xa0,0x9c}/*utf8*/, 3/*utf8 len*/},{0xedc0/*gb2312*/, 0x781d/*utf16*/, {0xe7,0xa0,0x9d}/*utf8*/, 3/*utf8 len*/},{0xedc1/*gb2312*/, 0x7839/*utf16*/, {0xe7,0xa0,0xb9}/*utf8*/, 3/*utf8 len*/},{0xedc2/*gb2312*/, 0x783a/*utf16*/, {0xe7,0xa0,0xba}/*utf8*/, 3/*utf8 len*/},{0xedc3/*gb2312*/, 0x783b/*utf16*/, {0xe7,0xa0,0xbb}/*utf8*/, 3/*utf8 len*/},{0xedc4/*gb2312*/, 0x781f/*utf16*/, {0xe7,0xa0,0x9f}/*utf8*/, 3/*utf8 len*/},{0xedc5/*gb2312*/, 0x783c/*utf16*/, {0xe7,0xa0,0xbc}/*utf8*/, 3/*utf8 len*/},{0xedc6/*gb2312*/, 0x7825/*utf16*/, {0xe7,0xa0,0xa5}/*utf8*/, 3/*utf8 len*/},{0xedc7/*gb2312*/, 0x782c/*utf16*/, {0xe7,0xa0,0xac}/*utf8*/, 3/*utf8 len*/},{0xedc8/*gb2312*/, 0x7823/*utf16*/, {0xe7,0xa0,0xa3}/*utf8*/, 3/*utf8 len*/},{0xedc9/*gb2312*/, 0x7829/*utf16*/, {0xe7,0xa0,0xa9}/*utf8*/, 3/*utf8 len*/},{0xedca/*gb2312*/, 0x784e/*utf16*/, {0xe7,0xa1,0x8e}/*utf8*/, 3/*utf8 len*/},{0xedcb/*gb2312*/, 0x786d/*utf16*/, {0xe7,0xa1,0xad}/*utf8*/, 3/*utf8 len*/},{0xedcc/*gb2312*/, 0x7856/*utf16*/, {0xe7,0xa1,0x96}/*utf8*/, 3/*utf8 len*/},{0xedcd/*gb2312*/, 0x7857/*utf16*/, {0xe7,0xa1,0x97}/*utf8*/, 3/*utf8 len*/},{0xedce/*gb2312*/, 0x7826/*utf16*/, {0xe7,0xa0,0xa6}/*utf8*/, 3/*utf8 len*/},{0xedcf/*gb2312*/, 0x7850/*utf16*/, {0xe7,0xa1,0x90}/*utf8*/, 3/*utf8 len*/},{0xedd0/*gb2312*/, 0x7847/*utf16*/, {0xe7,0xa1,0x87}/*utf8*/, 3/*utf8 len*/},{0xedd1/*gb2312*/, 0x784c/*utf16*/, {0xe7,0xa1,0x8c}/*utf8*/, 3/*utf8 len*/},{0xedd2/*gb2312*/, 0x786a/*utf16*/, {0xe7,0xa1,0xaa}/*utf8*/, 3/*utf8 len*/},{0xedd3/*gb2312*/, 0x789b/*utf16*/, {0xe7,0xa2,0x9b}/*utf8*/, 3/*utf8 len*/},{0xedd4/*gb2312*/, 0x7893/*utf16*/, {0xe7,0xa2,0x93}/*utf8*/, 3/*utf8 len*/},{0xedd5/*gb2312*/, 0x789a/*utf16*/, {0xe7,0xa2,0x9a}/*utf8*/, 3/*utf8 len*/},{0xedd6/*gb2312*/, 0x7887/*utf16*/, {0xe7,0xa2,0x87}/*utf8*/, 3/*utf8 len*/},{0xedd7/*gb2312*/, 0x789c/*utf16*/, {0xe7,0xa2,0x9c}/*utf8*/, 3/*utf8 len*/},{0xedd8/*gb2312*/, 0x78a1/*utf16*/, {0xe7,0xa2,0xa1}/*utf8*/, 3/*utf8 len*/},{0xedd9/*gb2312*/, 0x78a3/*utf16*/, {0xe7,0xa2,0xa3}/*utf8*/, 3/*utf8 len*/},{0xedda/*gb2312*/, 0x78b2/*utf16*/, {0xe7,0xa2,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeddb/*gb2312*/, 0x78b9/*utf16*/, {0xe7,0xa2,0xb9}/*utf8*/, 3/*utf8 len*/},{0xeddc/*gb2312*/, 0x78a5/*utf16*/, {0xe7,0xa2,0xa5}/*utf8*/, 3/*utf8 len*/},{0xeddd/*gb2312*/, 0x78d4/*utf16*/, {0xe7,0xa3,0x94}/*utf8*/, 3/*utf8 len*/},{0xedde/*gb2312*/, 0x78d9/*utf16*/, {0xe7,0xa3,0x99}/*utf8*/, 3/*utf8 len*/},{0xeddf/*gb2312*/, 0x78c9/*utf16*/, {0xe7,0xa3,0x89}/*utf8*/, 3/*utf8 len*/},{0xede0/*gb2312*/, 0x78ec/*utf16*/, {0xe7,0xa3,0xac}/*utf8*/, 3/*utf8 len*/},{0xede1/*gb2312*/, 0x78f2/*utf16*/, {0xe7,0xa3,0xb2}/*utf8*/, 3/*utf8 len*/},{0xede2/*gb2312*/, 0x7905/*utf16*/, {0xe7,0xa4,0x85}/*utf8*/, 3/*utf8 len*/},{0xede3/*gb2312*/, 0x78f4/*utf16*/, {0xe7,0xa3,0xb4}/*utf8*/, 3/*utf8 len*/},{0xede4/*gb2312*/, 0x7913/*utf16*/, {0xe7,0xa4,0x93}/*utf8*/, 3/*utf8 len*/},{0xede5/*gb2312*/, 0x7924/*utf16*/, {0xe7,0xa4,0xa4}/*utf8*/, 3/*utf8 len*/},{0xede6/*gb2312*/, 0x791e/*utf16*/, {0xe7,0xa4,0x9e}/*utf8*/, 3/*utf8 len*/},{0xede7/*gb2312*/, 0x7934/*utf16*/, {0xe7,0xa4,0xb4}/*utf8*/, 3/*utf8 len*/},{0xede8/*gb2312*/, 0x9f9b/*utf16*/, {0xe9,0xbe,0x9b}/*utf8*/, 3/*utf8 len*/},{0xede9/*gb2312*/, 0x9ef9/*utf16*/, {0xe9,0xbb,0xb9}/*utf8*/, 3/*utf8 len*/},{0xedea/*gb2312*/, 0x9efb/*utf16*/, {0xe9,0xbb,0xbb}/*utf8*/, 3/*utf8 len*/},{0xedeb/*gb2312*/, 0x9efc/*utf16*/, {0xe9,0xbb,0xbc}/*utf8*/, 3/*utf8 len*/},{0xedec/*gb2312*/, 0x76f1/*utf16*/, {0xe7,0x9b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xeded/*gb2312*/, 0x7704/*utf16*/, {0xe7,0x9c,0x84}/*utf8*/, 3/*utf8 len*/},{0xedee/*gb2312*/, 0x770d/*utf16*/, {0xe7,0x9c,0x8d}/*utf8*/, 3/*utf8 len*/},{0xedef/*gb2312*/, 0x76f9/*utf16*/, {0xe7,0x9b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xedf0/*gb2312*/, 0x7707/*utf16*/, {0xe7,0x9c,0x87}/*utf8*/, 3/*utf8 len*/},{0xedf1/*gb2312*/, 0x7708/*utf16*/, {0xe7,0x9c,0x88}/*utf8*/, 3/*utf8 len*/},{0xedf2/*gb2312*/, 0x771a/*utf16*/, {0xe7,0x9c,0x9a}/*utf8*/, 3/*utf8 len*/},{0xedf3/*gb2312*/, 0x7722/*utf16*/, {0xe7,0x9c,0xa2}/*utf8*/, 3/*utf8 len*/},{0xedf4/*gb2312*/, 0x7719/*utf16*/, {0xe7,0x9c,0x99}/*utf8*/, 3/*utf8 len*/},{0xedf5/*gb2312*/, 0x772d/*utf16*/, {0xe7,0x9c,0xad}/*utf8*/, 3/*utf8 len*/},{0xedf6/*gb2312*/, 0x7726/*utf16*/, {0xe7,0x9c,0xa6}/*utf8*/, 3/*utf8 len*/},{0xedf7/*gb2312*/, 0x7735/*utf16*/, {0xe7,0x9c,0xb5}/*utf8*/, 3/*utf8 len*/},{0xedf8/*gb2312*/, 0x7738/*utf16*/, {0xe7,0x9c,0xb8}/*utf8*/, 3/*utf8 len*/},{0xedf9/*gb2312*/, 0x7750/*utf16*/, {0xe7,0x9d,0x90}/*utf8*/, 3/*utf8 len*/},{0xedfa/*gb2312*/, 0x7751/*utf16*/, {0xe7,0x9d,0x91}/*utf8*/, 3/*utf8 len*/},{0xedfb/*gb2312*/, 0x7747/*utf16*/, {0xe7,0x9d,0x87}/*utf8*/, 3/*utf8 len*/},{0xedfc/*gb2312*/, 0x7743/*utf16*/, {0xe7,0x9d,0x83}/*utf8*/, 3/*utf8 len*/},{0xedfd/*gb2312*/, 0x775a/*utf16*/, {0xe7,0x9d,0x9a}/*utf8*/, 3/*utf8 len*/},{0xedfe/*gb2312*/, 0x7768/*utf16*/, {0xe7,0x9d,0xa8}/*utf8*/, 3/*utf8 len*/},{0xeea1/*gb2312*/, 0x7762/*utf16*/, {0xe7,0x9d,0xa2}/*utf8*/, 3/*utf8 len*/},{0xeea2/*gb2312*/, 0x7765/*utf16*/, {0xe7,0x9d,0xa5}/*utf8*/, 3/*utf8 len*/},{0xeea3/*gb2312*/, 0x777f/*utf16*/, {0xe7,0x9d,0xbf}/*utf8*/, 3/*utf8 len*/},{0xeea4/*gb2312*/, 0x778d/*utf16*/, {0xe7,0x9e,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeea5/*gb2312*/, 0x777d/*utf16*/, {0xe7,0x9d,0xbd}/*utf8*/, 3/*utf8 len*/},{0xeea6/*gb2312*/, 0x7780/*utf16*/, {0xe7,0x9e,0x80}/*utf8*/, 3/*utf8 len*/},{0xeea7/*gb2312*/, 0x778c/*utf16*/, {0xe7,0x9e,0x8c}/*utf8*/, 3/*utf8 len*/},{0xeea8/*gb2312*/, 0x7791/*utf16*/, {0xe7,0x9e,0x91}/*utf8*/, 3/*utf8 len*/},{0xeea9/*gb2312*/, 0x779f/*utf16*/, {0xe7,0x9e,0x9f}/*utf8*/, 3/*utf8 len*/},{0xeeaa/*gb2312*/, 0x77a0/*utf16*/, {0xe7,0x9e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xeeab/*gb2312*/, 0x77b0/*utf16*/, {0xe7,0x9e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xeeac/*gb2312*/, 0x77b5/*utf16*/, {0xe7,0x9e,0xb5}/*utf8*/, 3/*utf8 len*/},{0xeead/*gb2312*/, 0x77bd/*utf16*/, {0xe7,0x9e,0xbd}/*utf8*/, 3/*utf8 len*/},{0xeeae/*gb2312*/, 0x753a/*utf16*/, {0xe7,0x94,0xba}/*utf8*/, 3/*utf8 len*/},{0xeeaf/*gb2312*/, 0x7540/*utf16*/, {0xe7,0x95,0x80}/*utf8*/, 3/*utf8 len*/},{0xeeb0/*gb2312*/, 0x754e/*utf16*/, {0xe7,0x95,0x8e}/*utf8*/, 3/*utf8 len*/},{0xeeb1/*gb2312*/, 0x754b/*utf16*/, {0xe7,0x95,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeeb2/*gb2312*/, 0x7548/*utf16*/, {0xe7,0x95,0x88}/*utf8*/, 3/*utf8 len*/},{0xeeb3/*gb2312*/, 0x755b/*utf16*/, {0xe7,0x95,0x9b}/*utf8*/, 3/*utf8 len*/},{0xeeb4/*gb2312*/, 0x7572/*utf16*/, {0xe7,0x95,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeeb5/*gb2312*/, 0x7579/*utf16*/, {0xe7,0x95,0xb9}/*utf8*/, 3/*utf8 len*/},{0xeeb6/*gb2312*/, 0x7583/*utf16*/, {0xe7,0x96,0x83}/*utf8*/, 3/*utf8 len*/},{0xeeb7/*gb2312*/, 0x7f58/*utf16*/, {0xe7,0xbd,0x98}/*utf8*/, 3/*utf8 len*/},{0xeeb8/*gb2312*/, 0x7f61/*utf16*/, {0xe7,0xbd,0xa1}/*utf8*/, 3/*utf8 len*/},{0xeeb9/*gb2312*/, 0x7f5f/*utf16*/, {0xe7,0xbd,0x9f}/*utf8*/, 3/*utf8 len*/},{0xeeba/*gb2312*/, 0x8a48/*utf16*/, {0xe8,0xa9,0x88}/*utf8*/, 3/*utf8 len*/},{0xeebb/*gb2312*/, 0x7f68/*utf16*/, {0xe7,0xbd,0xa8}/*utf8*/, 3/*utf8 len*/},{0xeebc/*gb2312*/, 0x7f74/*utf16*/, {0xe7,0xbd,0xb4}/*utf8*/, 3/*utf8 len*/},{0xeebd/*gb2312*/, 0x7f71/*utf16*/, {0xe7,0xbd,0xb1}/*utf8*/, 3/*utf8 len*/},{0xeebe/*gb2312*/, 0x7f79/*utf16*/, {0xe7,0xbd,0xb9}/*utf8*/, 3/*utf8 len*/},{0xeebf/*gb2312*/, 0x7f81/*utf16*/, {0xe7,0xbe,0x81}/*utf8*/, 3/*utf8 len*/},{0xeec0/*gb2312*/, 0x7f7e/*utf16*/, {0xe7,0xbd,0xbe}/*utf8*/, 3/*utf8 len*/},{0xeec1/*gb2312*/, 0x76cd/*utf16*/, {0xe7,0x9b,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeec2/*gb2312*/, 0x76e5/*utf16*/, {0xe7,0x9b,0xa5}/*utf8*/, 3/*utf8 len*/},{0xeec3/*gb2312*/, 0x8832/*utf16*/, {0xe8,0xa0,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeec4/*gb2312*/, 0x9485/*utf16*/, {0xe9,0x92,0x85}/*utf8*/, 3/*utf8 len*/},{0xeec5/*gb2312*/, 0x9486/*utf16*/, {0xe9,0x92,0x86}/*utf8*/, 3/*utf8 len*/},{0xeec6/*gb2312*/, 0x9487/*utf16*/, {0xe9,0x92,0x87}/*utf8*/, 3/*utf8 len*/},{0xeec7/*gb2312*/, 0x948b/*utf16*/, {0xe9,0x92,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeec8/*gb2312*/, 0x948a/*utf16*/, {0xe9,0x92,0x8a}/*utf8*/, 3/*utf8 len*/},{0xeec9/*gb2312*/, 0x948c/*utf16*/, {0xe9,0x92,0x8c}/*utf8*/, 3/*utf8 len*/},{0xeeca/*gb2312*/, 0x948d/*utf16*/, {0xe9,0x92,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeecb/*gb2312*/, 0x948f/*utf16*/, {0xe9,0x92,0x8f}/*utf8*/, 3/*utf8 len*/},{0xeecc/*gb2312*/, 0x9490/*utf16*/, {0xe9,0x92,0x90}/*utf8*/, 3/*utf8 len*/},{0xeecd/*gb2312*/, 0x9494/*utf16*/, {0xe9,0x92,0x94}/*utf8*/, 3/*utf8 len*/},{0xeece/*gb2312*/, 0x9497/*utf16*/, {0xe9,0x92,0x97}/*utf8*/, 3/*utf8 len*/},{0xeecf/*gb2312*/, 0x9495/*utf16*/, {0xe9,0x92,0x95}/*utf8*/, 3/*utf8 len*/},{0xeed0/*gb2312*/, 0x949a/*utf16*/, {0xe9,0x92,0x9a}/*utf8*/, 3/*utf8 len*/},{0xeed1/*gb2312*/, 0x949b/*utf16*/, {0xe9,0x92,0x9b}/*utf8*/, 3/*utf8 len*/},{0xeed2/*gb2312*/, 0x949c/*utf16*/, {0xe9,0x92,0x9c}/*utf8*/, 3/*utf8 len*/},{0xeed3/*gb2312*/, 0x94a3/*utf16*/, {0xe9,0x92,0xa3}/*utf8*/, 3/*utf8 len*/},{0xeed4/*gb2312*/, 0x94a4/*utf16*/, {0xe9,0x92,0xa4}/*utf8*/, 3/*utf8 len*/},{0xeed5/*gb2312*/, 0x94ab/*utf16*/, {0xe9,0x92,0xab}/*utf8*/, 3/*utf8 len*/},{0xeed6/*gb2312*/, 0x94aa/*utf16*/, {0xe9,0x92,0xaa}/*utf8*/, 3/*utf8 len*/},{0xeed7/*gb2312*/, 0x94ad/*utf16*/, {0xe9,0x92,0xad}/*utf8*/, 3/*utf8 len*/},{0xeed8/*gb2312*/, 0x94ac/*utf16*/, {0xe9,0x92,0xac}/*utf8*/, 3/*utf8 len*/},{0xeed9/*gb2312*/, 0x94af/*utf16*/, {0xe9,0x92,0xaf}/*utf8*/, 3/*utf8 len*/},{0xeeda/*gb2312*/, 0x94b0/*utf16*/, {0xe9,0x92,0xb0}/*utf8*/, 3/*utf8 len*/},{0xeedb/*gb2312*/, 0x94b2/*utf16*/, {0xe9,0x92,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeedc/*gb2312*/, 0x94b4/*utf16*/, {0xe9,0x92,0xb4}/*utf8*/, 3/*utf8 len*/},{0xeedd/*gb2312*/, 0x94b6/*utf16*/, {0xe9,0x92,0xb6}/*utf8*/, 3/*utf8 len*/},{0xeede/*gb2312*/, 0x94b7/*utf16*/, {0xe9,0x92,0xb7}/*utf8*/, 3/*utf8 len*/},{0xeedf/*gb2312*/, 0x94b8/*utf16*/, {0xe9,0x92,0xb8}/*utf8*/, 3/*utf8 len*/},{0xeee0/*gb2312*/, 0x94b9/*utf16*/, {0xe9,0x92,0xb9}/*utf8*/, 3/*utf8 len*/},{0xeee1/*gb2312*/, 0x94ba/*utf16*/, {0xe9,0x92,0xba}/*utf8*/, 3/*utf8 len*/},{0xeee2/*gb2312*/, 0x94bc/*utf16*/, {0xe9,0x92,0xbc}/*utf8*/, 3/*utf8 len*/},{0xeee3/*gb2312*/, 0x94bd/*utf16*/, {0xe9,0x92,0xbd}/*utf8*/, 3/*utf8 len*/},{0xeee4/*gb2312*/, 0x94bf/*utf16*/, {0xe9,0x92,0xbf}/*utf8*/, 3/*utf8 len*/},{0xeee5/*gb2312*/, 0x94c4/*utf16*/, {0xe9,0x93,0x84}/*utf8*/, 3/*utf8 len*/},{0xeee6/*gb2312*/, 0x94c8/*utf16*/, {0xe9,0x93,0x88}/*utf8*/, 3/*utf8 len*/},{0xeee7/*gb2312*/, 0x94c9/*utf16*/, {0xe9,0x93,0x89}/*utf8*/, 3/*utf8 len*/},{0xeee8/*gb2312*/, 0x94ca/*utf16*/, {0xe9,0x93,0x8a}/*utf8*/, 3/*utf8 len*/},{0xeee9/*gb2312*/, 0x94cb/*utf16*/, {0xe9,0x93,0x8b}/*utf8*/, 3/*utf8 len*/},{0xeeea/*gb2312*/, 0x94cc/*utf16*/, {0xe9,0x93,0x8c}/*utf8*/, 3/*utf8 len*/},{0xeeeb/*gb2312*/, 0x94cd/*utf16*/, {0xe9,0x93,0x8d}/*utf8*/, 3/*utf8 len*/},{0xeeec/*gb2312*/, 0x94ce/*utf16*/, {0xe9,0x93,0x8e}/*utf8*/, 3/*utf8 len*/},{0xeeed/*gb2312*/, 0x94d0/*utf16*/, {0xe9,0x93,0x90}/*utf8*/, 3/*utf8 len*/},{0xeeee/*gb2312*/, 0x94d1/*utf16*/, {0xe9,0x93,0x91}/*utf8*/, 3/*utf8 len*/},{0xeeef/*gb2312*/, 0x94d2/*utf16*/, {0xe9,0x93,0x92}/*utf8*/, 3/*utf8 len*/},{0xeef0/*gb2312*/, 0x94d5/*utf16*/, {0xe9,0x93,0x95}/*utf8*/, 3/*utf8 len*/},{0xeef1/*gb2312*/, 0x94d6/*utf16*/, {0xe9,0x93,0x96}/*utf8*/, 3/*utf8 len*/},{0xeef2/*gb2312*/, 0x94d7/*utf16*/, {0xe9,0x93,0x97}/*utf8*/, 3/*utf8 len*/},{0xeef3/*gb2312*/, 0x94d9/*utf16*/, {0xe9,0x93,0x99}/*utf8*/, 3/*utf8 len*/},{0xeef4/*gb2312*/, 0x94d8/*utf16*/, {0xe9,0x93,0x98}/*utf8*/, 3/*utf8 len*/},{0xeef5/*gb2312*/, 0x94db/*utf16*/, {0xe9,0x93,0x9b}/*utf8*/, 3/*utf8 len*/},{0xeef6/*gb2312*/, 0x94de/*utf16*/, {0xe9,0x93,0x9e}/*utf8*/, 3/*utf8 len*/},{0xeef7/*gb2312*/, 0x94df/*utf16*/, {0xe9,0x93,0x9f}/*utf8*/, 3/*utf8 len*/},{0xeef8/*gb2312*/, 0x94e0/*utf16*/, {0xe9,0x93,0xa0}/*utf8*/, 3/*utf8 len*/},{0xeef9/*gb2312*/, 0x94e2/*utf16*/, {0xe9,0x93,0xa2}/*utf8*/, 3/*utf8 len*/},{0xeefa/*gb2312*/, 0x94e4/*utf16*/, {0xe9,0x93,0xa4}/*utf8*/, 3/*utf8 len*/},{0xeefb/*gb2312*/, 0x94e5/*utf16*/, {0xe9,0x93,0xa5}/*utf8*/, 3/*utf8 len*/},{0xeefc/*gb2312*/, 0x94e7/*utf16*/, {0xe9,0x93,0xa7}/*utf8*/, 3/*utf8 len*/},{0xeefd/*gb2312*/, 0x94e8/*utf16*/, {0xe9,0x93,0xa8}/*utf8*/, 3/*utf8 len*/},{0xeefe/*gb2312*/, 0x94ea/*utf16*/, {0xe9,0x93,0xaa}/*utf8*/, 3/*utf8 len*/},{0xefa1/*gb2312*/, 0x94e9/*utf16*/, {0xe9,0x93,0xa9}/*utf8*/, 3/*utf8 len*/},{0xefa2/*gb2312*/, 0x94eb/*utf16*/, {0xe9,0x93,0xab}/*utf8*/, 3/*utf8 len*/},{0xefa3/*gb2312*/, 0x94ee/*utf16*/, {0xe9,0x93,0xae}/*utf8*/, 3/*utf8 len*/},{0xefa4/*gb2312*/, 0x94ef/*utf16*/, {0xe9,0x93,0xaf}/*utf8*/, 3/*utf8 len*/},{0xefa5/*gb2312*/, 0x94f3/*utf16*/, {0xe9,0x93,0xb3}/*utf8*/, 3/*utf8 len*/},{0xefa6/*gb2312*/, 0x94f4/*utf16*/, {0xe9,0x93,0xb4}/*utf8*/, 3/*utf8 len*/},{0xefa7/*gb2312*/, 0x94f5/*utf16*/, {0xe9,0x93,0xb5}/*utf8*/, 3/*utf8 len*/},{0xefa8/*gb2312*/, 0x94f7/*utf16*/, {0xe9,0x93,0xb7}/*utf8*/, 3/*utf8 len*/},{0xefa9/*gb2312*/, 0x94f9/*utf16*/, {0xe9,0x93,0xb9}/*utf8*/, 3/*utf8 len*/},{0xefaa/*gb2312*/, 0x94fc/*utf16*/, {0xe9,0x93,0xbc}/*utf8*/, 3/*utf8 len*/},{0xefab/*gb2312*/, 0x94fd/*utf16*/, {0xe9,0x93,0xbd}/*utf8*/, 3/*utf8 len*/},{0xefac/*gb2312*/, 0x94ff/*utf16*/, {0xe9,0x93,0xbf}/*utf8*/, 3/*utf8 len*/},{0xefad/*gb2312*/, 0x9503/*utf16*/, {0xe9,0x94,0x83}/*utf8*/, 3/*utf8 len*/},{0xefae/*gb2312*/, 0x9502/*utf16*/, {0xe9,0x94,0x82}/*utf8*/, 3/*utf8 len*/},{0xefaf/*gb2312*/, 0x9506/*utf16*/, {0xe9,0x94,0x86}/*utf8*/, 3/*utf8 len*/},{0xefb0/*gb2312*/, 0x9507/*utf16*/, {0xe9,0x94,0x87}/*utf8*/, 3/*utf8 len*/},{0xefb1/*gb2312*/, 0x9509/*utf16*/, {0xe9,0x94,0x89}/*utf8*/, 3/*utf8 len*/},{0xefb2/*gb2312*/, 0x950a/*utf16*/, {0xe9,0x94,0x8a}/*utf8*/, 3/*utf8 len*/},{0xefb3/*gb2312*/, 0x950d/*utf16*/, {0xe9,0x94,0x8d}/*utf8*/, 3/*utf8 len*/},{0xefb4/*gb2312*/, 0x950e/*utf16*/, {0xe9,0x94,0x8e}/*utf8*/, 3/*utf8 len*/},{0xefb5/*gb2312*/, 0x950f/*utf16*/, {0xe9,0x94,0x8f}/*utf8*/, 3/*utf8 len*/},{0xefb6/*gb2312*/, 0x9512/*utf16*/, {0xe9,0x94,0x92}/*utf8*/, 3/*utf8 len*/},{0xefb7/*gb2312*/, 0x9513/*utf16*/, {0xe9,0x94,0x93}/*utf8*/, 3/*utf8 len*/},{0xefb8/*gb2312*/, 0x9514/*utf16*/, {0xe9,0x94,0x94}/*utf8*/, 3/*utf8 len*/},{0xefb9/*gb2312*/, 0x9515/*utf16*/, {0xe9,0x94,0x95}/*utf8*/, 3/*utf8 len*/},{0xefba/*gb2312*/, 0x9516/*utf16*/, {0xe9,0x94,0x96}/*utf8*/, 3/*utf8 len*/},{0xefbb/*gb2312*/, 0x9518/*utf16*/, {0xe9,0x94,0x98}/*utf8*/, 3/*utf8 len*/},{0xefbc/*gb2312*/, 0x951b/*utf16*/, {0xe9,0x94,0x9b}/*utf8*/, 3/*utf8 len*/},{0xefbd/*gb2312*/, 0x951d/*utf16*/, {0xe9,0x94,0x9d}/*utf8*/, 3/*utf8 len*/},{0xefbe/*gb2312*/, 0x951e/*utf16*/, {0xe9,0x94,0x9e}/*utf8*/, 3/*utf8 len*/},{0xefbf/*gb2312*/, 0x951f/*utf16*/, {0xe9,0x94,0x9f}/*utf8*/, 3/*utf8 len*/},{0xefc0/*gb2312*/, 0x9522/*utf16*/, {0xe9,0x94,0xa2}/*utf8*/, 3/*utf8 len*/},{0xefc1/*gb2312*/, 0x952a/*utf16*/, {0xe9,0x94,0xaa}/*utf8*/, 3/*utf8 len*/},{0xefc2/*gb2312*/, 0x952b/*utf16*/, {0xe9,0x94,0xab}/*utf8*/, 3/*utf8 len*/},{0xefc3/*gb2312*/, 0x9529/*utf16*/, {0xe9,0x94,0xa9}/*utf8*/, 3/*utf8 len*/},{0xefc4/*gb2312*/, 0x952c/*utf16*/, {0xe9,0x94,0xac}/*utf8*/, 3/*utf8 len*/},{0xefc5/*gb2312*/, 0x9531/*utf16*/, {0xe9,0x94,0xb1}/*utf8*/, 3/*utf8 len*/},{0xefc6/*gb2312*/, 0x9532/*utf16*/, {0xe9,0x94,0xb2}/*utf8*/, 3/*utf8 len*/},{0xefc7/*gb2312*/, 0x9534/*utf16*/, {0xe9,0x94,0xb4}/*utf8*/, 3/*utf8 len*/},{0xefc8/*gb2312*/, 0x9536/*utf16*/, {0xe9,0x94,0xb6}/*utf8*/, 3/*utf8 len*/},{0xefc9/*gb2312*/, 0x9537/*utf16*/, {0xe9,0x94,0xb7}/*utf8*/, 3/*utf8 len*/},{0xefca/*gb2312*/, 0x9538/*utf16*/, {0xe9,0x94,0xb8}/*utf8*/, 3/*utf8 len*/},{0xefcb/*gb2312*/, 0x953c/*utf16*/, {0xe9,0x94,0xbc}/*utf8*/, 3/*utf8 len*/},{0xefcc/*gb2312*/, 0x953e/*utf16*/, {0xe9,0x94,0xbe}/*utf8*/, 3/*utf8 len*/},{0xefcd/*gb2312*/, 0x953f/*utf16*/, {0xe9,0x94,0xbf}/*utf8*/, 3/*utf8 len*/},{0xefce/*gb2312*/, 0x9542/*utf16*/, {0xe9,0x95,0x82}/*utf8*/, 3/*utf8 len*/},{0xefcf/*gb2312*/, 0x9535/*utf16*/, {0xe9,0x94,0xb5}/*utf8*/, 3/*utf8 len*/},{0xefd0/*gb2312*/, 0x9544/*utf16*/, {0xe9,0x95,0x84}/*utf8*/, 3/*utf8 len*/},{0xefd1/*gb2312*/, 0x9545/*utf16*/, {0xe9,0x95,0x85}/*utf8*/, 3/*utf8 len*/},{0xefd2/*gb2312*/, 0x9546/*utf16*/, {0xe9,0x95,0x86}/*utf8*/, 3/*utf8 len*/},{0xefd3/*gb2312*/, 0x9549/*utf16*/, {0xe9,0x95,0x89}/*utf8*/, 3/*utf8 len*/},{0xefd4/*gb2312*/, 0x954c/*utf16*/, {0xe9,0x95,0x8c}/*utf8*/, 3/*utf8 len*/},{0xefd5/*gb2312*/, 0x954e/*utf16*/, {0xe9,0x95,0x8e}/*utf8*/, 3/*utf8 len*/},{0xefd6/*gb2312*/, 0x954f/*utf16*/, {0xe9,0x95,0x8f}/*utf8*/, 3/*utf8 len*/},{0xefd7/*gb2312*/, 0x9552/*utf16*/, {0xe9,0x95,0x92}/*utf8*/, 3/*utf8 len*/},{0xefd8/*gb2312*/, 0x9553/*utf16*/, {0xe9,0x95,0x93}/*utf8*/, 3/*utf8 len*/},{0xefd9/*gb2312*/, 0x9554/*utf16*/, {0xe9,0x95,0x94}/*utf8*/, 3/*utf8 len*/},{0xefda/*gb2312*/, 0x9556/*utf16*/, {0xe9,0x95,0x96}/*utf8*/, 3/*utf8 len*/},{0xefdb/*gb2312*/, 0x9557/*utf16*/, {0xe9,0x95,0x97}/*utf8*/, 3/*utf8 len*/},{0xefdc/*gb2312*/, 0x9558/*utf16*/, {0xe9,0x95,0x98}/*utf8*/, 3/*utf8 len*/},{0xefdd/*gb2312*/, 0x9559/*utf16*/, {0xe9,0x95,0x99}/*utf8*/, 3/*utf8 len*/},{0xefde/*gb2312*/, 0x955b/*utf16*/, {0xe9,0x95,0x9b}/*utf8*/, 3/*utf8 len*/},{0xefdf/*gb2312*/, 0x955e/*utf16*/, {0xe9,0x95,0x9e}/*utf8*/, 3/*utf8 len*/},{0xefe0/*gb2312*/, 0x955f/*utf16*/, {0xe9,0x95,0x9f}/*utf8*/, 3/*utf8 len*/},{0xefe1/*gb2312*/, 0x955d/*utf16*/, {0xe9,0x95,0x9d}/*utf8*/, 3/*utf8 len*/},{0xefe2/*gb2312*/, 0x9561/*utf16*/, {0xe9,0x95,0xa1}/*utf8*/, 3/*utf8 len*/},{0xefe3/*gb2312*/, 0x9562/*utf16*/, {0xe9,0x95,0xa2}/*utf8*/, 3/*utf8 len*/},{0xefe4/*gb2312*/, 0x9564/*utf16*/, {0xe9,0x95,0xa4}/*utf8*/, 3/*utf8 len*/},{0xefe5/*gb2312*/, 0x9565/*utf16*/, {0xe9,0x95,0xa5}/*utf8*/, 3/*utf8 len*/},{0xefe6/*gb2312*/, 0x9566/*utf16*/, {0xe9,0x95,0xa6}/*utf8*/, 3/*utf8 len*/},{0xefe7/*gb2312*/, 0x9567/*utf16*/, {0xe9,0x95,0xa7}/*utf8*/, 3/*utf8 len*/},{0xefe8/*gb2312*/, 0x9568/*utf16*/, {0xe9,0x95,0xa8}/*utf8*/, 3/*utf8 len*/},{0xefe9/*gb2312*/, 0x9569/*utf16*/, {0xe9,0x95,0xa9}/*utf8*/, 3/*utf8 len*/},{0xefea/*gb2312*/, 0x956a/*utf16*/, {0xe9,0x95,0xaa}/*utf8*/, 3/*utf8 len*/},{0xefeb/*gb2312*/, 0x956b/*utf16*/, {0xe9,0x95,0xab}/*utf8*/, 3/*utf8 len*/},{0xefec/*gb2312*/, 0x956c/*utf16*/, {0xe9,0x95,0xac}/*utf8*/, 3/*utf8 len*/},{0xefed/*gb2312*/, 0x956f/*utf16*/, {0xe9,0x95,0xaf}/*utf8*/, 3/*utf8 len*/},{0xefee/*gb2312*/, 0x9571/*utf16*/, {0xe9,0x95,0xb1}/*utf8*/, 3/*utf8 len*/},{0xefef/*gb2312*/, 0x9572/*utf16*/, {0xe9,0x95,0xb2}/*utf8*/, 3/*utf8 len*/},{0xeff0/*gb2312*/, 0x9573/*utf16*/, {0xe9,0x95,0xb3}/*utf8*/, 3/*utf8 len*/},{0xeff1/*gb2312*/, 0x953a/*utf16*/, {0xe9,0x94,0xba}/*utf8*/, 3/*utf8 len*/},{0xeff2/*gb2312*/, 0x77e7/*utf16*/, {0xe7,0x9f,0xa7}/*utf8*/, 3/*utf8 len*/},{0xeff3/*gb2312*/, 0x77ec/*utf16*/, {0xe7,0x9f,0xac}/*utf8*/, 3/*utf8 len*/},{0xeff4/*gb2312*/, 0x96c9/*utf16*/, {0xe9,0x9b,0x89}/*utf8*/, 3/*utf8 len*/},{0xeff5/*gb2312*/, 0x79d5/*utf16*/, {0xe7,0xa7,0x95}/*utf8*/, 3/*utf8 len*/},{0xeff6/*gb2312*/, 0x79ed/*utf16*/, {0xe7,0xa7,0xad}/*utf8*/, 3/*utf8 len*/},{0xeff7/*gb2312*/, 0x79e3/*utf16*/, {0xe7,0xa7,0xa3}/*utf8*/, 3/*utf8 len*/},{0xeff8/*gb2312*/, 0x79eb/*utf16*/, {0xe7,0xa7,0xab}/*utf8*/, 3/*utf8 len*/},{0xeff9/*gb2312*/, 0x7a06/*utf16*/, {0xe7,0xa8,0x86}/*utf8*/, 3/*utf8 len*/},{0xeffa/*gb2312*/, 0x5d47/*utf16*/, {0xe5,0xb5,0x87}/*utf8*/, 3/*utf8 len*/},{0xeffb/*gb2312*/, 0x7a03/*utf16*/, {0xe7,0xa8,0x83}/*utf8*/, 3/*utf8 len*/},{0xeffc/*gb2312*/, 0x7a02/*utf16*/, {0xe7,0xa8,0x82}/*utf8*/, 3/*utf8 len*/},{0xeffd/*gb2312*/, 0x7a1e/*utf16*/, {0xe7,0xa8,0x9e}/*utf8*/, 3/*utf8 len*/},{0xeffe/*gb2312*/, 0x7a14/*utf16*/, {0xe7,0xa8,0x94}/*utf8*/, 3/*utf8 len*/},{0xf0a1/*gb2312*/, 0x7a39/*utf16*/, {0xe7,0xa8,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf0a2/*gb2312*/, 0x7a37/*utf16*/, {0xe7,0xa8,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf0a3/*gb2312*/, 0x7a51/*utf16*/, {0xe7,0xa9,0x91}/*utf8*/, 3/*utf8 len*/},{0xf0a4/*gb2312*/, 0x9ecf/*utf16*/, {0xe9,0xbb,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf0a5/*gb2312*/, 0x99a5/*utf16*/, {0xe9,0xa6,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf0a6/*gb2312*/, 0x7a70/*utf16*/, {0xe7,0xa9,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf0a7/*gb2312*/, 0x7688/*utf16*/, {0xe7,0x9a,0x88}/*utf8*/, 3/*utf8 len*/},{0xf0a8/*gb2312*/, 0x768e/*utf16*/, {0xe7,0x9a,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf0a9/*gb2312*/, 0x7693/*utf16*/, {0xe7,0x9a,0x93}/*utf8*/, 3/*utf8 len*/},{0xf0aa/*gb2312*/, 0x7699/*utf16*/, {0xe7,0x9a,0x99}/*utf8*/, 3/*utf8 len*/},{0xf0ab/*gb2312*/, 0x76a4/*utf16*/, {0xe7,0x9a,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf0ac/*gb2312*/, 0x74de/*utf16*/, {0xe7,0x93,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf0ad/*gb2312*/, 0x74e0/*utf16*/, {0xe7,0x93,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf0ae/*gb2312*/, 0x752c/*utf16*/, {0xe7,0x94,0xac}/*utf8*/, 3/*utf8 len*/},{0xf0af/*gb2312*/, 0x9e20/*utf16*/, {0xe9,0xb8,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf0b0/*gb2312*/, 0x9e22/*utf16*/, {0xe9,0xb8,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf0b1/*gb2312*/, 0x9e28/*utf16*/, {0xe9,0xb8,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf0b2/*gb2312*/, 0x9e29/*utf16*/, {0xe9,0xb8,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf0b3/*gb2312*/, 0x9e2a/*utf16*/, {0xe9,0xb8,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf0b4/*gb2312*/, 0x9e2b/*utf16*/, {0xe9,0xb8,0xab}/*utf8*/, 3/*utf8 len*/},{0xf0b5/*gb2312*/, 0x9e2c/*utf16*/, {0xe9,0xb8,0xac}/*utf8*/, 3/*utf8 len*/},{0xf0b6/*gb2312*/, 0x9e32/*utf16*/, {0xe9,0xb8,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf0b7/*gb2312*/, 0x9e31/*utf16*/, {0xe9,0xb8,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf0b8/*gb2312*/, 0x9e36/*utf16*/, {0xe9,0xb8,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf0b9/*gb2312*/, 0x9e38/*utf16*/, {0xe9,0xb8,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf0ba/*gb2312*/, 0x9e37/*utf16*/, {0xe9,0xb8,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf0bb/*gb2312*/, 0x9e39/*utf16*/, {0xe9,0xb8,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf0bc/*gb2312*/, 0x9e3a/*utf16*/, {0xe9,0xb8,0xba}/*utf8*/, 3/*utf8 len*/},{0xf0bd/*gb2312*/, 0x9e3e/*utf16*/, {0xe9,0xb8,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf0be/*gb2312*/, 0x9e41/*utf16*/, {0xe9,0xb9,0x81}/*utf8*/, 3/*utf8 len*/},{0xf0bf/*gb2312*/, 0x9e42/*utf16*/, {0xe9,0xb9,0x82}/*utf8*/, 3/*utf8 len*/},{0xf0c0/*gb2312*/, 0x9e44/*utf16*/, {0xe9,0xb9,0x84}/*utf8*/, 3/*utf8 len*/},{0xf0c1/*gb2312*/, 0x9e46/*utf16*/, {0xe9,0xb9,0x86}/*utf8*/, 3/*utf8 len*/},{0xf0c2/*gb2312*/, 0x9e47/*utf16*/, {0xe9,0xb9,0x87}/*utf8*/, 3/*utf8 len*/},{0xf0c3/*gb2312*/, 0x9e48/*utf16*/, {0xe9,0xb9,0x88}/*utf8*/, 3/*utf8 len*/},{0xf0c4/*gb2312*/, 0x9e49/*utf16*/, {0xe9,0xb9,0x89}/*utf8*/, 3/*utf8 len*/},{0xf0c5/*gb2312*/, 0x9e4b/*utf16*/, {0xe9,0xb9,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf0c6/*gb2312*/, 0x9e4c/*utf16*/, {0xe9,0xb9,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf0c7/*gb2312*/, 0x9e4e/*utf16*/, {0xe9,0xb9,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf0c8/*gb2312*/, 0x9e51/*utf16*/, {0xe9,0xb9,0x91}/*utf8*/, 3/*utf8 len*/},{0xf0c9/*gb2312*/, 0x9e55/*utf16*/, {0xe9,0xb9,0x95}/*utf8*/, 3/*utf8 len*/},{0xf0ca/*gb2312*/, 0x9e57/*utf16*/, {0xe9,0xb9,0x97}/*utf8*/, 3/*utf8 len*/},{0xf0cb/*gb2312*/, 0x9e5a/*utf16*/, {0xe9,0xb9,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf0cc/*gb2312*/, 0x9e5b/*utf16*/, {0xe9,0xb9,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf0cd/*gb2312*/, 0x9e5c/*utf16*/, {0xe9,0xb9,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf0ce/*gb2312*/, 0x9e5e/*utf16*/, {0xe9,0xb9,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf0cf/*gb2312*/, 0x9e63/*utf16*/, {0xe9,0xb9,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf0d0/*gb2312*/, 0x9e66/*utf16*/, {0xe9,0xb9,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf0d1/*gb2312*/, 0x9e67/*utf16*/, {0xe9,0xb9,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf0d2/*gb2312*/, 0x9e68/*utf16*/, {0xe9,0xb9,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf0d3/*gb2312*/, 0x9e69/*utf16*/, {0xe9,0xb9,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf0d4/*gb2312*/, 0x9e6a/*utf16*/, {0xe9,0xb9,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf0d5/*gb2312*/, 0x9e6b/*utf16*/, {0xe9,0xb9,0xab}/*utf8*/, 3/*utf8 len*/},{0xf0d6/*gb2312*/, 0x9e6c/*utf16*/, {0xe9,0xb9,0xac}/*utf8*/, 3/*utf8 len*/},{0xf0d7/*gb2312*/, 0x9e71/*utf16*/, {0xe9,0xb9,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf0d8/*gb2312*/, 0x9e6d/*utf16*/, {0xe9,0xb9,0xad}/*utf8*/, 3/*utf8 len*/},{0xf0d9/*gb2312*/, 0x9e73/*utf16*/, {0xe9,0xb9,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf0da/*gb2312*/, 0x7592/*utf16*/, {0xe7,0x96,0x92}/*utf8*/, 3/*utf8 len*/},{0xf0db/*gb2312*/, 0x7594/*utf16*/, {0xe7,0x96,0x94}/*utf8*/, 3/*utf8 len*/},{0xf0dc/*gb2312*/, 0x7596/*utf16*/, {0xe7,0x96,0x96}/*utf8*/, 3/*utf8 len*/},{0xf0dd/*gb2312*/, 0x75a0/*utf16*/, {0xe7,0x96,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf0de/*gb2312*/, 0x759d/*utf16*/, {0xe7,0x96,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf0df/*gb2312*/, 0x75ac/*utf16*/, {0xe7,0x96,0xac}/*utf8*/, 3/*utf8 len*/},{0xf0e0/*gb2312*/, 0x75a3/*utf16*/, {0xe7,0x96,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf0e1/*gb2312*/, 0x75b3/*utf16*/, {0xe7,0x96,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf0e2/*gb2312*/, 0x75b4/*utf16*/, {0xe7,0x96,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf0e3/*gb2312*/, 0x75b8/*utf16*/, {0xe7,0x96,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf0e4/*gb2312*/, 0x75c4/*utf16*/, {0xe7,0x97,0x84}/*utf8*/, 3/*utf8 len*/},{0xf0e5/*gb2312*/, 0x75b1/*utf16*/, {0xe7,0x96,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf0e6/*gb2312*/, 0x75b0/*utf16*/, {0xe7,0x96,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf0e7/*gb2312*/, 0x75c3/*utf16*/, {0xe7,0x97,0x83}/*utf8*/, 3/*utf8 len*/},{0xf0e8/*gb2312*/, 0x75c2/*utf16*/, {0xe7,0x97,0x82}/*utf8*/, 3/*utf8 len*/},{0xf0e9/*gb2312*/, 0x75d6/*utf16*/, {0xe7,0x97,0x96}/*utf8*/, 3/*utf8 len*/},{0xf0ea/*gb2312*/, 0x75cd/*utf16*/, {0xe7,0x97,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf0eb/*gb2312*/, 0x75e3/*utf16*/, {0xe7,0x97,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf0ec/*gb2312*/, 0x75e8/*utf16*/, {0xe7,0x97,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf0ed/*gb2312*/, 0x75e6/*utf16*/, {0xe7,0x97,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf0ee/*gb2312*/, 0x75e4/*utf16*/, {0xe7,0x97,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf0ef/*gb2312*/, 0x75eb/*utf16*/, {0xe7,0x97,0xab}/*utf8*/, 3/*utf8 len*/},{0xf0f0/*gb2312*/, 0x75e7/*utf16*/, {0xe7,0x97,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf0f1/*gb2312*/, 0x7603/*utf16*/, {0xe7,0x98,0x83}/*utf8*/, 3/*utf8 len*/},{0xf0f2/*gb2312*/, 0x75f1/*utf16*/, {0xe7,0x97,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf0f3/*gb2312*/, 0x75fc/*utf16*/, {0xe7,0x97,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf0f4/*gb2312*/, 0x75ff/*utf16*/, {0xe7,0x97,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf0f5/*gb2312*/, 0x7610/*utf16*/, {0xe7,0x98,0x90}/*utf8*/, 3/*utf8 len*/},{0xf0f6/*gb2312*/, 0x7600/*utf16*/, {0xe7,0x98,0x80}/*utf8*/, 3/*utf8 len*/},{0xf0f7/*gb2312*/, 0x7605/*utf16*/, {0xe7,0x98,0x85}/*utf8*/, 3/*utf8 len*/},{0xf0f8/*gb2312*/, 0x760c/*utf16*/, {0xe7,0x98,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf0f9/*gb2312*/, 0x7617/*utf16*/, {0xe7,0x98,0x97}/*utf8*/, 3/*utf8 len*/},{0xf0fa/*gb2312*/, 0x760a/*utf16*/, {0xe7,0x98,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf0fb/*gb2312*/, 0x7625/*utf16*/, {0xe7,0x98,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf0fc/*gb2312*/, 0x7618/*utf16*/, {0xe7,0x98,0x98}/*utf8*/, 3/*utf8 len*/},{0xf0fd/*gb2312*/, 0x7615/*utf16*/, {0xe7,0x98,0x95}/*utf8*/, 3/*utf8 len*/},{0xf0fe/*gb2312*/, 0x7619/*utf16*/, {0xe7,0x98,0x99}/*utf8*/, 3/*utf8 len*/},{0xf1a1/*gb2312*/, 0x761b/*utf16*/, {0xe7,0x98,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf1a2/*gb2312*/, 0x763c/*utf16*/, {0xe7,0x98,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf1a3/*gb2312*/, 0x7622/*utf16*/, {0xe7,0x98,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf1a4/*gb2312*/, 0x7620/*utf16*/, {0xe7,0x98,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf1a5/*gb2312*/, 0x7640/*utf16*/, {0xe7,0x99,0x80}/*utf8*/, 3/*utf8 len*/},{0xf1a6/*gb2312*/, 0x762d/*utf16*/, {0xe7,0x98,0xad}/*utf8*/, 3/*utf8 len*/},{0xf1a7/*gb2312*/, 0x7630/*utf16*/, {0xe7,0x98,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf1a8/*gb2312*/, 0x763f/*utf16*/, {0xe7,0x98,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf1a9/*gb2312*/, 0x7635/*utf16*/, {0xe7,0x98,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf1aa/*gb2312*/, 0x7643/*utf16*/, {0xe7,0x99,0x83}/*utf8*/, 3/*utf8 len*/},{0xf1ab/*gb2312*/, 0x763e/*utf16*/, {0xe7,0x98,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf1ac/*gb2312*/, 0x7633/*utf16*/, {0xe7,0x98,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf1ad/*gb2312*/, 0x764d/*utf16*/, {0xe7,0x99,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf1ae/*gb2312*/, 0x765e/*utf16*/, {0xe7,0x99,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf1af/*gb2312*/, 0x7654/*utf16*/, {0xe7,0x99,0x94}/*utf8*/, 3/*utf8 len*/},{0xf1b0/*gb2312*/, 0x765c/*utf16*/, {0xe7,0x99,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf1b1/*gb2312*/, 0x7656/*utf16*/, {0xe7,0x99,0x96}/*utf8*/, 3/*utf8 len*/},{0xf1b2/*gb2312*/, 0x766b/*utf16*/, {0xe7,0x99,0xab}/*utf8*/, 3/*utf8 len*/},{0xf1b3/*gb2312*/, 0x766f/*utf16*/, {0xe7,0x99,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf1b4/*gb2312*/, 0x7fca/*utf16*/, {0xe7,0xbf,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf1b5/*gb2312*/, 0x7ae6/*utf16*/, {0xe7,0xab,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf1b6/*gb2312*/, 0x7a78/*utf16*/, {0xe7,0xa9,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf1b7/*gb2312*/, 0x7a79/*utf16*/, {0xe7,0xa9,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf1b8/*gb2312*/, 0x7a80/*utf16*/, {0xe7,0xaa,0x80}/*utf8*/, 3/*utf8 len*/},{0xf1b9/*gb2312*/, 0x7a86/*utf16*/, {0xe7,0xaa,0x86}/*utf8*/, 3/*utf8 len*/},{0xf1ba/*gb2312*/, 0x7a88/*utf16*/, {0xe7,0xaa,0x88}/*utf8*/, 3/*utf8 len*/},{0xf1bb/*gb2312*/, 0x7a95/*utf16*/, {0xe7,0xaa,0x95}/*utf8*/, 3/*utf8 len*/},{0xf1bc/*gb2312*/, 0x7aa6/*utf16*/, {0xe7,0xaa,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf1bd/*gb2312*/, 0x7aa0/*utf16*/, {0xe7,0xaa,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf1be/*gb2312*/, 0x7aac/*utf16*/, {0xe7,0xaa,0xac}/*utf8*/, 3/*utf8 len*/},{0xf1bf/*gb2312*/, 0x7aa8/*utf16*/, {0xe7,0xaa,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf1c0/*gb2312*/, 0x7aad/*utf16*/, {0xe7,0xaa,0xad}/*utf8*/, 3/*utf8 len*/},{0xf1c1/*gb2312*/, 0x7ab3/*utf16*/, {0xe7,0xaa,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf1c2/*gb2312*/, 0x8864/*utf16*/, {0xe8,0xa1,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf1c3/*gb2312*/, 0x8869/*utf16*/, {0xe8,0xa1,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf1c4/*gb2312*/, 0x8872/*utf16*/, {0xe8,0xa1,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf1c5/*gb2312*/, 0x887d/*utf16*/, {0xe8,0xa1,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf1c6/*gb2312*/, 0x887f/*utf16*/, {0xe8,0xa1,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf1c7/*gb2312*/, 0x8882/*utf16*/, {0xe8,0xa2,0x82}/*utf8*/, 3/*utf8 len*/},{0xf1c8/*gb2312*/, 0x88a2/*utf16*/, {0xe8,0xa2,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf1c9/*gb2312*/, 0x88c6/*utf16*/, {0xe8,0xa3,0x86}/*utf8*/, 3/*utf8 len*/},{0xf1ca/*gb2312*/, 0x88b7/*utf16*/, {0xe8,0xa2,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf1cb/*gb2312*/, 0x88bc/*utf16*/, {0xe8,0xa2,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf1cc/*gb2312*/, 0x88c9/*utf16*/, {0xe8,0xa3,0x89}/*utf8*/, 3/*utf8 len*/},{0xf1cd/*gb2312*/, 0x88e2/*utf16*/, {0xe8,0xa3,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf1ce/*gb2312*/, 0x88ce/*utf16*/, {0xe8,0xa3,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf1cf/*gb2312*/, 0x88e3/*utf16*/, {0xe8,0xa3,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf1d0/*gb2312*/, 0x88e5/*utf16*/, {0xe8,0xa3,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf1d1/*gb2312*/, 0x88f1/*utf16*/, {0xe8,0xa3,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf1d2/*gb2312*/, 0x891a/*utf16*/, {0xe8,0xa4,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf1d3/*gb2312*/, 0x88fc/*utf16*/, {0xe8,0xa3,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf1d4/*gb2312*/, 0x88e8/*utf16*/, {0xe8,0xa3,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf1d5/*gb2312*/, 0x88fe/*utf16*/, {0xe8,0xa3,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf1d6/*gb2312*/, 0x88f0/*utf16*/, {0xe8,0xa3,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf1d7/*gb2312*/, 0x8921/*utf16*/, {0xe8,0xa4,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf1d8/*gb2312*/, 0x8919/*utf16*/, {0xe8,0xa4,0x99}/*utf8*/, 3/*utf8 len*/},{0xf1d9/*gb2312*/, 0x8913/*utf16*/, {0xe8,0xa4,0x93}/*utf8*/, 3/*utf8 len*/},{0xf1da/*gb2312*/, 0x891b/*utf16*/, {0xe8,0xa4,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf1db/*gb2312*/, 0x890a/*utf16*/, {0xe8,0xa4,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf1dc/*gb2312*/, 0x8934/*utf16*/, {0xe8,0xa4,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf1dd/*gb2312*/, 0x892b/*utf16*/, {0xe8,0xa4,0xab}/*utf8*/, 3/*utf8 len*/},{0xf1de/*gb2312*/, 0x8936/*utf16*/, {0xe8,0xa4,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf1df/*gb2312*/, 0x8941/*utf16*/, {0xe8,0xa5,0x81}/*utf8*/, 3/*utf8 len*/},{0xf1e0/*gb2312*/, 0x8966/*utf16*/, {0xe8,0xa5,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf1e1/*gb2312*/, 0x897b/*utf16*/, {0xe8,0xa5,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf1e2/*gb2312*/, 0x758b/*utf16*/, {0xe7,0x96,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf1e3/*gb2312*/, 0x80e5/*utf16*/, {0xe8,0x83,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf1e4/*gb2312*/, 0x76b2/*utf16*/, {0xe7,0x9a,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf1e5/*gb2312*/, 0x76b4/*utf16*/, {0xe7,0x9a,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf1e6/*gb2312*/, 0x77dc/*utf16*/, {0xe7,0x9f,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf1e7/*gb2312*/, 0x8012/*utf16*/, {0xe8,0x80,0x92}/*utf8*/, 3/*utf8 len*/},{0xf1e8/*gb2312*/, 0x8014/*utf16*/, {0xe8,0x80,0x94}/*utf8*/, 3/*utf8 len*/},{0xf1e9/*gb2312*/, 0x8016/*utf16*/, {0xe8,0x80,0x96}/*utf8*/, 3/*utf8 len*/},{0xf1ea/*gb2312*/, 0x801c/*utf16*/, {0xe8,0x80,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf1eb/*gb2312*/, 0x8020/*utf16*/, {0xe8,0x80,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf1ec/*gb2312*/, 0x8022/*utf16*/, {0xe8,0x80,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf1ed/*gb2312*/, 0x8025/*utf16*/, {0xe8,0x80,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf1ee/*gb2312*/, 0x8026/*utf16*/, {0xe8,0x80,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf1ef/*gb2312*/, 0x8027/*utf16*/, {0xe8,0x80,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf1f0/*gb2312*/, 0x8029/*utf16*/, {0xe8,0x80,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf1f1/*gb2312*/, 0x8028/*utf16*/, {0xe8,0x80,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf1f2/*gb2312*/, 0x8031/*utf16*/, {0xe8,0x80,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf1f3/*gb2312*/, 0x800b/*utf16*/, {0xe8,0x80,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf1f4/*gb2312*/, 0x8035/*utf16*/, {0xe8,0x80,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf1f5/*gb2312*/, 0x8043/*utf16*/, {0xe8,0x81,0x83}/*utf8*/, 3/*utf8 len*/},{0xf1f6/*gb2312*/, 0x8046/*utf16*/, {0xe8,0x81,0x86}/*utf8*/, 3/*utf8 len*/},{0xf1f7/*gb2312*/, 0x804d/*utf16*/, {0xe8,0x81,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf1f8/*gb2312*/, 0x8052/*utf16*/, {0xe8,0x81,0x92}/*utf8*/, 3/*utf8 len*/},{0xf1f9/*gb2312*/, 0x8069/*utf16*/, {0xe8,0x81,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf1fa/*gb2312*/, 0x8071/*utf16*/, {0xe8,0x81,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf1fb/*gb2312*/, 0x8983/*utf16*/, {0xe8,0xa6,0x83}/*utf8*/, 3/*utf8 len*/},{0xf1fc/*gb2312*/, 0x9878/*utf16*/, {0xe9,0xa1,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf1fd/*gb2312*/, 0x9880/*utf16*/, {0xe9,0xa2,0x80}/*utf8*/, 3/*utf8 len*/},{0xf1fe/*gb2312*/, 0x9883/*utf16*/, {0xe9,0xa2,0x83}/*utf8*/, 3/*utf8 len*/},{0xf2a1/*gb2312*/, 0x9889/*utf16*/, {0xe9,0xa2,0x89}/*utf8*/, 3/*utf8 len*/},{0xf2a2/*gb2312*/, 0x988c/*utf16*/, {0xe9,0xa2,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf2a3/*gb2312*/, 0x988d/*utf16*/, {0xe9,0xa2,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf2a4/*gb2312*/, 0x988f/*utf16*/, {0xe9,0xa2,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf2a5/*gb2312*/, 0x9894/*utf16*/, {0xe9,0xa2,0x94}/*utf8*/, 3/*utf8 len*/},{0xf2a6/*gb2312*/, 0x989a/*utf16*/, {0xe9,0xa2,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf2a7/*gb2312*/, 0x989b/*utf16*/, {0xe9,0xa2,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf2a8/*gb2312*/, 0x989e/*utf16*/, {0xe9,0xa2,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf2a9/*gb2312*/, 0x989f/*utf16*/, {0xe9,0xa2,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf2aa/*gb2312*/, 0x98a1/*utf16*/, {0xe9,0xa2,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf2ab/*gb2312*/, 0x98a2/*utf16*/, {0xe9,0xa2,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf2ac/*gb2312*/, 0x98a5/*utf16*/, {0xe9,0xa2,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf2ad/*gb2312*/, 0x98a6/*utf16*/, {0xe9,0xa2,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf2ae/*gb2312*/, 0x864d/*utf16*/, {0xe8,0x99,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf2af/*gb2312*/, 0x8654/*utf16*/, {0xe8,0x99,0x94}/*utf8*/, 3/*utf8 len*/},{0xf2b0/*gb2312*/, 0x866c/*utf16*/, {0xe8,0x99,0xac}/*utf8*/, 3/*utf8 len*/},{0xf2b1/*gb2312*/, 0x866e/*utf16*/, {0xe8,0x99,0xae}/*utf8*/, 3/*utf8 len*/},{0xf2b2/*gb2312*/, 0x867f/*utf16*/, {0xe8,0x99,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf2b3/*gb2312*/, 0x867a/*utf16*/, {0xe8,0x99,0xba}/*utf8*/, 3/*utf8 len*/},{0xf2b4/*gb2312*/, 0x867c/*utf16*/, {0xe8,0x99,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf2b5/*gb2312*/, 0x867b/*utf16*/, {0xe8,0x99,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf2b6/*gb2312*/, 0x86a8/*utf16*/, {0xe8,0x9a,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf2b7/*gb2312*/, 0x868d/*utf16*/, {0xe8,0x9a,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf2b8/*gb2312*/, 0x868b/*utf16*/, {0xe8,0x9a,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf2b9/*gb2312*/, 0x86ac/*utf16*/, {0xe8,0x9a,0xac}/*utf8*/, 3/*utf8 len*/},{0xf2ba/*gb2312*/, 0x869d/*utf16*/, {0xe8,0x9a,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf2bb/*gb2312*/, 0x86a7/*utf16*/, {0xe8,0x9a,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf2bc/*gb2312*/, 0x86a3/*utf16*/, {0xe8,0x9a,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf2bd/*gb2312*/, 0x86aa/*utf16*/, {0xe8,0x9a,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf2be/*gb2312*/, 0x8693/*utf16*/, {0xe8,0x9a,0x93}/*utf8*/, 3/*utf8 len*/},{0xf2bf/*gb2312*/, 0x86a9/*utf16*/, {0xe8,0x9a,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf2c0/*gb2312*/, 0x86b6/*utf16*/, {0xe8,0x9a,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf2c1/*gb2312*/, 0x86c4/*utf16*/, {0xe8,0x9b,0x84}/*utf8*/, 3/*utf8 len*/},{0xf2c2/*gb2312*/, 0x86b5/*utf16*/, {0xe8,0x9a,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf2c3/*gb2312*/, 0x86ce/*utf16*/, {0xe8,0x9b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf2c4/*gb2312*/, 0x86b0/*utf16*/, {0xe8,0x9a,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf2c5/*gb2312*/, 0x86ba/*utf16*/, {0xe8,0x9a,0xba}/*utf8*/, 3/*utf8 len*/},{0xf2c6/*gb2312*/, 0x86b1/*utf16*/, {0xe8,0x9a,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf2c7/*gb2312*/, 0x86af/*utf16*/, {0xe8,0x9a,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf2c8/*gb2312*/, 0x86c9/*utf16*/, {0xe8,0x9b,0x89}/*utf8*/, 3/*utf8 len*/},{0xf2c9/*gb2312*/, 0x86cf/*utf16*/, {0xe8,0x9b,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf2ca/*gb2312*/, 0x86b4/*utf16*/, {0xe8,0x9a,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf2cb/*gb2312*/, 0x86e9/*utf16*/, {0xe8,0x9b,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf2cc/*gb2312*/, 0x86f1/*utf16*/, {0xe8,0x9b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf2cd/*gb2312*/, 0x86f2/*utf16*/, {0xe8,0x9b,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf2ce/*gb2312*/, 0x86ed/*utf16*/, {0xe8,0x9b,0xad}/*utf8*/, 3/*utf8 len*/},{0xf2cf/*gb2312*/, 0x86f3/*utf16*/, {0xe8,0x9b,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf2d0/*gb2312*/, 0x86d0/*utf16*/, {0xe8,0x9b,0x90}/*utf8*/, 3/*utf8 len*/},{0xf2d1/*gb2312*/, 0x8713/*utf16*/, {0xe8,0x9c,0x93}/*utf8*/, 3/*utf8 len*/},{0xf2d2/*gb2312*/, 0x86de/*utf16*/, {0xe8,0x9b,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf2d3/*gb2312*/, 0x86f4/*utf16*/, {0xe8,0x9b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf2d4/*gb2312*/, 0x86df/*utf16*/, {0xe8,0x9b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf2d5/*gb2312*/, 0x86d8/*utf16*/, {0xe8,0x9b,0x98}/*utf8*/, 3/*utf8 len*/},{0xf2d6/*gb2312*/, 0x86d1/*utf16*/, {0xe8,0x9b,0x91}/*utf8*/, 3/*utf8 len*/},{0xf2d7/*gb2312*/, 0x8703/*utf16*/, {0xe8,0x9c,0x83}/*utf8*/, 3/*utf8 len*/},{0xf2d8/*gb2312*/, 0x8707/*utf16*/, {0xe8,0x9c,0x87}/*utf8*/, 3/*utf8 len*/},{0xf2d9/*gb2312*/, 0x86f8/*utf16*/, {0xe8,0x9b,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf2da/*gb2312*/, 0x8708/*utf16*/, {0xe8,0x9c,0x88}/*utf8*/, 3/*utf8 len*/},{0xf2db/*gb2312*/, 0x870a/*utf16*/, {0xe8,0x9c,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf2dc/*gb2312*/, 0x870d/*utf16*/, {0xe8,0x9c,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf2dd/*gb2312*/, 0x8709/*utf16*/, {0xe8,0x9c,0x89}/*utf8*/, 3/*utf8 len*/},{0xf2de/*gb2312*/, 0x8723/*utf16*/, {0xe8,0x9c,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf2df/*gb2312*/, 0x873b/*utf16*/, {0xe8,0x9c,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf2e0/*gb2312*/, 0x871e/*utf16*/, {0xe8,0x9c,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf2e1/*gb2312*/, 0x8725/*utf16*/, {0xe8,0x9c,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf2e2/*gb2312*/, 0x872e/*utf16*/, {0xe8,0x9c,0xae}/*utf8*/, 3/*utf8 len*/},{0xf2e3/*gb2312*/, 0x871a/*utf16*/, {0xe8,0x9c,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf2e4/*gb2312*/, 0x873e/*utf16*/, {0xe8,0x9c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf2e5/*gb2312*/, 0x8748/*utf16*/, {0xe8,0x9d,0x88}/*utf8*/, 3/*utf8 len*/},{0xf2e6/*gb2312*/, 0x8734/*utf16*/, {0xe8,0x9c,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf2e7/*gb2312*/, 0x8731/*utf16*/, {0xe8,0x9c,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf2e8/*gb2312*/, 0x8729/*utf16*/, {0xe8,0x9c,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf2e9/*gb2312*/, 0x8737/*utf16*/, {0xe8,0x9c,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf2ea/*gb2312*/, 0x873f/*utf16*/, {0xe8,0x9c,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf2eb/*gb2312*/, 0x8782/*utf16*/, {0xe8,0x9e,0x82}/*utf8*/, 3/*utf8 len*/},{0xf2ec/*gb2312*/, 0x8722/*utf16*/, {0xe8,0x9c,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf2ed/*gb2312*/, 0x877d/*utf16*/, {0xe8,0x9d,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf2ee/*gb2312*/, 0x877e/*utf16*/, {0xe8,0x9d,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf2ef/*gb2312*/, 0x877b/*utf16*/, {0xe8,0x9d,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf2f0/*gb2312*/, 0x8760/*utf16*/, {0xe8,0x9d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf2f1/*gb2312*/, 0x8770/*utf16*/, {0xe8,0x9d,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf2f2/*gb2312*/, 0x874c/*utf16*/, {0xe8,0x9d,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf2f3/*gb2312*/, 0x876e/*utf16*/, {0xe8,0x9d,0xae}/*utf8*/, 3/*utf8 len*/},{0xf2f4/*gb2312*/, 0x878b/*utf16*/, {0xe8,0x9e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf2f5/*gb2312*/, 0x8753/*utf16*/, {0xe8,0x9d,0x93}/*utf8*/, 3/*utf8 len*/},{0xf2f6/*gb2312*/, 0x8763/*utf16*/, {0xe8,0x9d,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf2f7/*gb2312*/, 0x877c/*utf16*/, {0xe8,0x9d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf2f8/*gb2312*/, 0x8764/*utf16*/, {0xe8,0x9d,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf2f9/*gb2312*/, 0x8759/*utf16*/, {0xe8,0x9d,0x99}/*utf8*/, 3/*utf8 len*/},{0xf2fa/*gb2312*/, 0x8765/*utf16*/, {0xe8,0x9d,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf2fb/*gb2312*/, 0x8793/*utf16*/, {0xe8,0x9e,0x93}/*utf8*/, 3/*utf8 len*/},{0xf2fc/*gb2312*/, 0x87af/*utf16*/, {0xe8,0x9e,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf2fd/*gb2312*/, 0x87a8/*utf16*/, {0xe8,0x9e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf2fe/*gb2312*/, 0x87d2/*utf16*/, {0xe8,0x9f,0x92}/*utf8*/, 3/*utf8 len*/},{0xf3a1/*gb2312*/, 0x87c6/*utf16*/, {0xe8,0x9f,0x86}/*utf8*/, 3/*utf8 len*/},{0xf3a2/*gb2312*/, 0x8788/*utf16*/, {0xe8,0x9e,0x88}/*utf8*/, 3/*utf8 len*/},{0xf3a3/*gb2312*/, 0x8785/*utf16*/, {0xe8,0x9e,0x85}/*utf8*/, 3/*utf8 len*/},{0xf3a4/*gb2312*/, 0x87ad/*utf16*/, {0xe8,0x9e,0xad}/*utf8*/, 3/*utf8 len*/},{0xf3a5/*gb2312*/, 0x8797/*utf16*/, {0xe8,0x9e,0x97}/*utf8*/, 3/*utf8 len*/},{0xf3a6/*gb2312*/, 0x8783/*utf16*/, {0xe8,0x9e,0x83}/*utf8*/, 3/*utf8 len*/},{0xf3a7/*gb2312*/, 0x87ab/*utf16*/, {0xe8,0x9e,0xab}/*utf8*/, 3/*utf8 len*/},{0xf3a8/*gb2312*/, 0x87e5/*utf16*/, {0xe8,0x9f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf3a9/*gb2312*/, 0x87ac/*utf16*/, {0xe8,0x9e,0xac}/*utf8*/, 3/*utf8 len*/},{0xf3aa/*gb2312*/, 0x87b5/*utf16*/, {0xe8,0x9e,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf3ab/*gb2312*/, 0x87b3/*utf16*/, {0xe8,0x9e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf3ac/*gb2312*/, 0x87cb/*utf16*/, {0xe8,0x9f,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf3ad/*gb2312*/, 0x87d3/*utf16*/, {0xe8,0x9f,0x93}/*utf8*/, 3/*utf8 len*/},{0xf3ae/*gb2312*/, 0x87bd/*utf16*/, {0xe8,0x9e,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf3af/*gb2312*/, 0x87d1/*utf16*/, {0xe8,0x9f,0x91}/*utf8*/, 3/*utf8 len*/},{0xf3b0/*gb2312*/, 0x87c0/*utf16*/, {0xe8,0x9f,0x80}/*utf8*/, 3/*utf8 len*/},{0xf3b1/*gb2312*/, 0x87ca/*utf16*/, {0xe8,0x9f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf3b2/*gb2312*/, 0x87db/*utf16*/, {0xe8,0x9f,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf3b3/*gb2312*/, 0x87ea/*utf16*/, {0xe8,0x9f,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf3b4/*gb2312*/, 0x87e0/*utf16*/, {0xe8,0x9f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf3b5/*gb2312*/, 0x87ee/*utf16*/, {0xe8,0x9f,0xae}/*utf8*/, 3/*utf8 len*/},{0xf3b6/*gb2312*/, 0x8816/*utf16*/, {0xe8,0xa0,0x96}/*utf8*/, 3/*utf8 len*/},{0xf3b7/*gb2312*/, 0x8813/*utf16*/, {0xe8,0xa0,0x93}/*utf8*/, 3/*utf8 len*/},{0xf3b8/*gb2312*/, 0x87fe/*utf16*/, {0xe8,0x9f,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf3b9/*gb2312*/, 0x880a/*utf16*/, {0xe8,0xa0,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf3ba/*gb2312*/, 0x881b/*utf16*/, {0xe8,0xa0,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf3bb/*gb2312*/, 0x8821/*utf16*/, {0xe8,0xa0,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf3bc/*gb2312*/, 0x8839/*utf16*/, {0xe8,0xa0,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf3bd/*gb2312*/, 0x883c/*utf16*/, {0xe8,0xa0,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf3be/*gb2312*/, 0x7f36/*utf16*/, {0xe7,0xbc,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf3bf/*gb2312*/, 0x7f42/*utf16*/, {0xe7,0xbd,0x82}/*utf8*/, 3/*utf8 len*/},{0xf3c0/*gb2312*/, 0x7f44/*utf16*/, {0xe7,0xbd,0x84}/*utf8*/, 3/*utf8 len*/},{0xf3c1/*gb2312*/, 0x7f45/*utf16*/, {0xe7,0xbd,0x85}/*utf8*/, 3/*utf8 len*/},{0xf3c2/*gb2312*/, 0x8210/*utf16*/, {0xe8,0x88,0x90}/*utf8*/, 3/*utf8 len*/},{0xf3c3/*gb2312*/, 0x7afa/*utf16*/, {0xe7,0xab,0xba}/*utf8*/, 3/*utf8 len*/},{0xf3c4/*gb2312*/, 0x7afd/*utf16*/, {0xe7,0xab,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf3c5/*gb2312*/, 0x7b08/*utf16*/, {0xe7,0xac,0x88}/*utf8*/, 3/*utf8 len*/},{0xf3c6/*gb2312*/, 0x7b03/*utf16*/, {0xe7,0xac,0x83}/*utf8*/, 3/*utf8 len*/},{0xf3c7/*gb2312*/, 0x7b04/*utf16*/, {0xe7,0xac,0x84}/*utf8*/, 3/*utf8 len*/},{0xf3c8/*gb2312*/, 0x7b15/*utf16*/, {0xe7,0xac,0x95}/*utf8*/, 3/*utf8 len*/},{0xf3c9/*gb2312*/, 0x7b0a/*utf16*/, {0xe7,0xac,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf3ca/*gb2312*/, 0x7b2b/*utf16*/, {0xe7,0xac,0xab}/*utf8*/, 3/*utf8 len*/},{0xf3cb/*gb2312*/, 0x7b0f/*utf16*/, {0xe7,0xac,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf3cc/*gb2312*/, 0x7b47/*utf16*/, {0xe7,0xad,0x87}/*utf8*/, 3/*utf8 len*/},{0xf3cd/*gb2312*/, 0x7b38/*utf16*/, {0xe7,0xac,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf3ce/*gb2312*/, 0x7b2a/*utf16*/, {0xe7,0xac,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf3cf/*gb2312*/, 0x7b19/*utf16*/, {0xe7,0xac,0x99}/*utf8*/, 3/*utf8 len*/},{0xf3d0/*gb2312*/, 0x7b2e/*utf16*/, {0xe7,0xac,0xae}/*utf8*/, 3/*utf8 len*/},{0xf3d1/*gb2312*/, 0x7b31/*utf16*/, {0xe7,0xac,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf3d2/*gb2312*/, 0x7b20/*utf16*/, {0xe7,0xac,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf3d3/*gb2312*/, 0x7b25/*utf16*/, {0xe7,0xac,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf3d4/*gb2312*/, 0x7b24/*utf16*/, {0xe7,0xac,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf3d5/*gb2312*/, 0x7b33/*utf16*/, {0xe7,0xac,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf3d6/*gb2312*/, 0x7b3e/*utf16*/, {0xe7,0xac,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf3d7/*gb2312*/, 0x7b1e/*utf16*/, {0xe7,0xac,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf3d8/*gb2312*/, 0x7b58/*utf16*/, {0xe7,0xad,0x98}/*utf8*/, 3/*utf8 len*/},{0xf3d9/*gb2312*/, 0x7b5a/*utf16*/, {0xe7,0xad,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf3da/*gb2312*/, 0x7b45/*utf16*/, {0xe7,0xad,0x85}/*utf8*/, 3/*utf8 len*/},{0xf3db/*gb2312*/, 0x7b75/*utf16*/, {0xe7,0xad,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf3dc/*gb2312*/, 0x7b4c/*utf16*/, {0xe7,0xad,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf3dd/*gb2312*/, 0x7b5d/*utf16*/, {0xe7,0xad,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf3de/*gb2312*/, 0x7b60/*utf16*/, {0xe7,0xad,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf3df/*gb2312*/, 0x7b6e/*utf16*/, {0xe7,0xad,0xae}/*utf8*/, 3/*utf8 len*/},{0xf3e0/*gb2312*/, 0x7b7b/*utf16*/, {0xe7,0xad,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf3e1/*gb2312*/, 0x7b62/*utf16*/, {0xe7,0xad,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf3e2/*gb2312*/, 0x7b72/*utf16*/, {0xe7,0xad,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf3e3/*gb2312*/, 0x7b71/*utf16*/, {0xe7,0xad,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf3e4/*gb2312*/, 0x7b90/*utf16*/, {0xe7,0xae,0x90}/*utf8*/, 3/*utf8 len*/},{0xf3e5/*gb2312*/, 0x7ba6/*utf16*/, {0xe7,0xae,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf3e6/*gb2312*/, 0x7ba7/*utf16*/, {0xe7,0xae,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf3e7/*gb2312*/, 0x7bb8/*utf16*/, {0xe7,0xae,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf3e8/*gb2312*/, 0x7bac/*utf16*/, {0xe7,0xae,0xac}/*utf8*/, 3/*utf8 len*/},{0xf3e9/*gb2312*/, 0x7b9d/*utf16*/, {0xe7,0xae,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf3ea/*gb2312*/, 0x7ba8/*utf16*/, {0xe7,0xae,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf3eb/*gb2312*/, 0x7b85/*utf16*/, {0xe7,0xae,0x85}/*utf8*/, 3/*utf8 len*/},{0xf3ec/*gb2312*/, 0x7baa/*utf16*/, {0xe7,0xae,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf3ed/*gb2312*/, 0x7b9c/*utf16*/, {0xe7,0xae,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf3ee/*gb2312*/, 0x7ba2/*utf16*/, {0xe7,0xae,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf3ef/*gb2312*/, 0x7bab/*utf16*/, {0xe7,0xae,0xab}/*utf8*/, 3/*utf8 len*/},{0xf3f0/*gb2312*/, 0x7bb4/*utf16*/, {0xe7,0xae,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf3f1/*gb2312*/, 0x7bd1/*utf16*/, {0xe7,0xaf,0x91}/*utf8*/, 3/*utf8 len*/},{0xf3f2/*gb2312*/, 0x7bc1/*utf16*/, {0xe7,0xaf,0x81}/*utf8*/, 3/*utf8 len*/},{0xf3f3/*gb2312*/, 0x7bcc/*utf16*/, {0xe7,0xaf,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf3f4/*gb2312*/, 0x7bdd/*utf16*/, {0xe7,0xaf,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf3f5/*gb2312*/, 0x7bda/*utf16*/, {0xe7,0xaf,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf3f6/*gb2312*/, 0x7be5/*utf16*/, {0xe7,0xaf,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf3f7/*gb2312*/, 0x7be6/*utf16*/, {0xe7,0xaf,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf3f8/*gb2312*/, 0x7bea/*utf16*/, {0xe7,0xaf,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf3f9/*gb2312*/, 0x7c0c/*utf16*/, {0xe7,0xb0,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf3fa/*gb2312*/, 0x7bfe/*utf16*/, {0xe7,0xaf,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf3fb/*gb2312*/, 0x7bfc/*utf16*/, {0xe7,0xaf,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf3fc/*gb2312*/, 0x7c0f/*utf16*/, {0xe7,0xb0,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf3fd/*gb2312*/, 0x7c16/*utf16*/, {0xe7,0xb0,0x96}/*utf8*/, 3/*utf8 len*/},{0xf3fe/*gb2312*/, 0x7c0b/*utf16*/, {0xe7,0xb0,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf4a1/*gb2312*/, 0x7c1f/*utf16*/, {0xe7,0xb0,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf4a2/*gb2312*/, 0x7c2a/*utf16*/, {0xe7,0xb0,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf4a3/*gb2312*/, 0x7c26/*utf16*/, {0xe7,0xb0,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf4a4/*gb2312*/, 0x7c38/*utf16*/, {0xe7,0xb0,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf4a5/*gb2312*/, 0x7c41/*utf16*/, {0xe7,0xb1,0x81}/*utf8*/, 3/*utf8 len*/},{0xf4a6/*gb2312*/, 0x7c40/*utf16*/, {0xe7,0xb1,0x80}/*utf8*/, 3/*utf8 len*/},{0xf4a7/*gb2312*/, 0x81fe/*utf16*/, {0xe8,0x87,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf4a8/*gb2312*/, 0x8201/*utf16*/, {0xe8,0x88,0x81}/*utf8*/, 3/*utf8 len*/},{0xf4a9/*gb2312*/, 0x8202/*utf16*/, {0xe8,0x88,0x82}/*utf8*/, 3/*utf8 len*/},{0xf4aa/*gb2312*/, 0x8204/*utf16*/, {0xe8,0x88,0x84}/*utf8*/, 3/*utf8 len*/},{0xf4ab/*gb2312*/, 0x81ec/*utf16*/, {0xe8,0x87,0xac}/*utf8*/, 3/*utf8 len*/},{0xf4ac/*gb2312*/, 0x8844/*utf16*/, {0xe8,0xa1,0x84}/*utf8*/, 3/*utf8 len*/},{0xf4ad/*gb2312*/, 0x8221/*utf16*/, {0xe8,0x88,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf4ae/*gb2312*/, 0x8222/*utf16*/, {0xe8,0x88,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf4af/*gb2312*/, 0x8223/*utf16*/, {0xe8,0x88,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf4b0/*gb2312*/, 0x822d/*utf16*/, {0xe8,0x88,0xad}/*utf8*/, 3/*utf8 len*/},{0xf4b1/*gb2312*/, 0x822f/*utf16*/, {0xe8,0x88,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf4b2/*gb2312*/, 0x8228/*utf16*/, {0xe8,0x88,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf4b3/*gb2312*/, 0x822b/*utf16*/, {0xe8,0x88,0xab}/*utf8*/, 3/*utf8 len*/},{0xf4b4/*gb2312*/, 0x8238/*utf16*/, {0xe8,0x88,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf4b5/*gb2312*/, 0x823b/*utf16*/, {0xe8,0x88,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf4b6/*gb2312*/, 0x8233/*utf16*/, {0xe8,0x88,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf4b7/*gb2312*/, 0x8234/*utf16*/, {0xe8,0x88,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf4b8/*gb2312*/, 0x823e/*utf16*/, {0xe8,0x88,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf4b9/*gb2312*/, 0x8244/*utf16*/, {0xe8,0x89,0x84}/*utf8*/, 3/*utf8 len*/},{0xf4ba/*gb2312*/, 0x8249/*utf16*/, {0xe8,0x89,0x89}/*utf8*/, 3/*utf8 len*/},{0xf4bb/*gb2312*/, 0x824b/*utf16*/, {0xe8,0x89,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf4bc/*gb2312*/, 0x824f/*utf16*/, {0xe8,0x89,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf4bd/*gb2312*/, 0x825a/*utf16*/, {0xe8,0x89,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf4be/*gb2312*/, 0x825f/*utf16*/, {0xe8,0x89,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf4bf/*gb2312*/, 0x8268/*utf16*/, {0xe8,0x89,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf4c0/*gb2312*/, 0x887e/*utf16*/, {0xe8,0xa1,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf4c1/*gb2312*/, 0x8885/*utf16*/, {0xe8,0xa2,0x85}/*utf8*/, 3/*utf8 len*/},{0xf4c2/*gb2312*/, 0x8888/*utf16*/, {0xe8,0xa2,0x88}/*utf8*/, 3/*utf8 len*/},{0xf4c3/*gb2312*/, 0x88d8/*utf16*/, {0xe8,0xa3,0x98}/*utf8*/, 3/*utf8 len*/},{0xf4c4/*gb2312*/, 0x88df/*utf16*/, {0xe8,0xa3,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf4c5/*gb2312*/, 0x895e/*utf16*/, {0xe8,0xa5,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf4c6/*gb2312*/, 0x7f9d/*utf16*/, {0xe7,0xbe,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf4c7/*gb2312*/, 0x7f9f/*utf16*/, {0xe7,0xbe,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf4c8/*gb2312*/, 0x7fa7/*utf16*/, {0xe7,0xbe,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf4c9/*gb2312*/, 0x7faf/*utf16*/, {0xe7,0xbe,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf4ca/*gb2312*/, 0x7fb0/*utf16*/, {0xe7,0xbe,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf4cb/*gb2312*/, 0x7fb2/*utf16*/, {0xe7,0xbe,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf4cc/*gb2312*/, 0x7c7c/*utf16*/, {0xe7,0xb1,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf4cd/*gb2312*/, 0x6549/*utf16*/, {0xe6,0x95,0x89}/*utf8*/, 3/*utf8 len*/},{0xf4ce/*gb2312*/, 0x7c91/*utf16*/, {0xe7,0xb2,0x91}/*utf8*/, 3/*utf8 len*/},{0xf4cf/*gb2312*/, 0x7c9d/*utf16*/, {0xe7,0xb2,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf4d0/*gb2312*/, 0x7c9c/*utf16*/, {0xe7,0xb2,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf4d1/*gb2312*/, 0x7c9e/*utf16*/, {0xe7,0xb2,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf4d2/*gb2312*/, 0x7ca2/*utf16*/, {0xe7,0xb2,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf4d3/*gb2312*/, 0x7cb2/*utf16*/, {0xe7,0xb2,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf4d4/*gb2312*/, 0x7cbc/*utf16*/, {0xe7,0xb2,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf4d5/*gb2312*/, 0x7cbd/*utf16*/, {0xe7,0xb2,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf4d6/*gb2312*/, 0x7cc1/*utf16*/, {0xe7,0xb3,0x81}/*utf8*/, 3/*utf8 len*/},{0xf4d7/*gb2312*/, 0x7cc7/*utf16*/, {0xe7,0xb3,0x87}/*utf8*/, 3/*utf8 len*/},{0xf4d8/*gb2312*/, 0x7ccc/*utf16*/, {0xe7,0xb3,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf4d9/*gb2312*/, 0x7ccd/*utf16*/, {0xe7,0xb3,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf4da/*gb2312*/, 0x7cc8/*utf16*/, {0xe7,0xb3,0x88}/*utf8*/, 3/*utf8 len*/},{0xf4db/*gb2312*/, 0x7cc5/*utf16*/, {0xe7,0xb3,0x85}/*utf8*/, 3/*utf8 len*/},{0xf4dc/*gb2312*/, 0x7cd7/*utf16*/, {0xe7,0xb3,0x97}/*utf8*/, 3/*utf8 len*/},{0xf4dd/*gb2312*/, 0x7ce8/*utf16*/, {0xe7,0xb3,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf4de/*gb2312*/, 0x826e/*utf16*/, {0xe8,0x89,0xae}/*utf8*/, 3/*utf8 len*/},{0xf4df/*gb2312*/, 0x66a8/*utf16*/, {0xe6,0x9a,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf4e0/*gb2312*/, 0x7fbf/*utf16*/, {0xe7,0xbe,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf4e1/*gb2312*/, 0x7fce/*utf16*/, {0xe7,0xbf,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf4e2/*gb2312*/, 0x7fd5/*utf16*/, {0xe7,0xbf,0x95}/*utf8*/, 3/*utf8 len*/},{0xf4e3/*gb2312*/, 0x7fe5/*utf16*/, {0xe7,0xbf,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf4e4/*gb2312*/, 0x7fe1/*utf16*/, {0xe7,0xbf,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf4e5/*gb2312*/, 0x7fe6/*utf16*/, {0xe7,0xbf,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf4e6/*gb2312*/, 0x7fe9/*utf16*/, {0xe7,0xbf,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf4e7/*gb2312*/, 0x7fee/*utf16*/, {0xe7,0xbf,0xae}/*utf8*/, 3/*utf8 len*/},{0xf4e8/*gb2312*/, 0x7ff3/*utf16*/, {0xe7,0xbf,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf4e9/*gb2312*/, 0x7cf8/*utf16*/, {0xe7,0xb3,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf4ea/*gb2312*/, 0x7d77/*utf16*/, {0xe7,0xb5,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf4eb/*gb2312*/, 0x7da6/*utf16*/, {0xe7,0xb6,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf4ec/*gb2312*/, 0x7dae/*utf16*/, {0xe7,0xb6,0xae}/*utf8*/, 3/*utf8 len*/},{0xf4ed/*gb2312*/, 0x7e47/*utf16*/, {0xe7,0xb9,0x87}/*utf8*/, 3/*utf8 len*/},{0xf4ee/*gb2312*/, 0x7e9b/*utf16*/, {0xe7,0xba,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf4ef/*gb2312*/, 0x9eb8/*utf16*/, {0xe9,0xba,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf4f0/*gb2312*/, 0x9eb4/*utf16*/, {0xe9,0xba,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf4f1/*gb2312*/, 0x8d73/*utf16*/, {0xe8,0xb5,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf4f2/*gb2312*/, 0x8d84/*utf16*/, {0xe8,0xb6,0x84}/*utf8*/, 3/*utf8 len*/},{0xf4f3/*gb2312*/, 0x8d94/*utf16*/, {0xe8,0xb6,0x94}/*utf8*/, 3/*utf8 len*/},{0xf4f4/*gb2312*/, 0x8d91/*utf16*/, {0xe8,0xb6,0x91}/*utf8*/, 3/*utf8 len*/},{0xf4f5/*gb2312*/, 0x8db1/*utf16*/, {0xe8,0xb6,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf4f6/*gb2312*/, 0x8d67/*utf16*/, {0xe8,0xb5,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf4f7/*gb2312*/, 0x8d6d/*utf16*/, {0xe8,0xb5,0xad}/*utf8*/, 3/*utf8 len*/},{0xf4f8/*gb2312*/, 0x8c47/*utf16*/, {0xe8,0xb1,0x87}/*utf8*/, 3/*utf8 len*/},{0xf4f9/*gb2312*/, 0x8c49/*utf16*/, {0xe8,0xb1,0x89}/*utf8*/, 3/*utf8 len*/},{0xf4fa/*gb2312*/, 0x914a/*utf16*/, {0xe9,0x85,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf4fb/*gb2312*/, 0x9150/*utf16*/, {0xe9,0x85,0x90}/*utf8*/, 3/*utf8 len*/},{0xf4fc/*gb2312*/, 0x914e/*utf16*/, {0xe9,0x85,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf4fd/*gb2312*/, 0x914f/*utf16*/, {0xe9,0x85,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf4fe/*gb2312*/, 0x9164/*utf16*/, {0xe9,0x85,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf5a1/*gb2312*/, 0x9162/*utf16*/, {0xe9,0x85,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf5a2/*gb2312*/, 0x9161/*utf16*/, {0xe9,0x85,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf5a3/*gb2312*/, 0x9170/*utf16*/, {0xe9,0x85,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf5a4/*gb2312*/, 0x9169/*utf16*/, {0xe9,0x85,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf5a5/*gb2312*/, 0x916f/*utf16*/, {0xe9,0x85,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf5a6/*gb2312*/, 0x917d/*utf16*/, {0xe9,0x85,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf5a7/*gb2312*/, 0x917e/*utf16*/, {0xe9,0x85,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf5a8/*gb2312*/, 0x9172/*utf16*/, {0xe9,0x85,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf5a9/*gb2312*/, 0x9174/*utf16*/, {0xe9,0x85,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf5aa/*gb2312*/, 0x9179/*utf16*/, {0xe9,0x85,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf5ab/*gb2312*/, 0x918c/*utf16*/, {0xe9,0x86,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf5ac/*gb2312*/, 0x9185/*utf16*/, {0xe9,0x86,0x85}/*utf8*/, 3/*utf8 len*/},{0xf5ad/*gb2312*/, 0x9190/*utf16*/, {0xe9,0x86,0x90}/*utf8*/, 3/*utf8 len*/},{0xf5ae/*gb2312*/, 0x918d/*utf16*/, {0xe9,0x86,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf5af/*gb2312*/, 0x9191/*utf16*/, {0xe9,0x86,0x91}/*utf8*/, 3/*utf8 len*/},{0xf5b0/*gb2312*/, 0x91a2/*utf16*/, {0xe9,0x86,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf5b1/*gb2312*/, 0x91a3/*utf16*/, {0xe9,0x86,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf5b2/*gb2312*/, 0x91aa/*utf16*/, {0xe9,0x86,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf5b3/*gb2312*/, 0x91ad/*utf16*/, {0xe9,0x86,0xad}/*utf8*/, 3/*utf8 len*/},{0xf5b4/*gb2312*/, 0x91ae/*utf16*/, {0xe9,0x86,0xae}/*utf8*/, 3/*utf8 len*/},{0xf5b5/*gb2312*/, 0x91af/*utf16*/, {0xe9,0x86,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf5b6/*gb2312*/, 0x91b5/*utf16*/, {0xe9,0x86,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf5b7/*gb2312*/, 0x91b4/*utf16*/, {0xe9,0x86,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf5b8/*gb2312*/, 0x91ba/*utf16*/, {0xe9,0x86,0xba}/*utf8*/, 3/*utf8 len*/},{0xf5b9/*gb2312*/, 0x8c55/*utf16*/, {0xe8,0xb1,0x95}/*utf8*/, 3/*utf8 len*/},{0xf5ba/*gb2312*/, 0x9e7e/*utf16*/, {0xe9,0xb9,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf5bb/*gb2312*/, 0x8db8/*utf16*/, {0xe8,0xb6,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf5bc/*gb2312*/, 0x8deb/*utf16*/, {0xe8,0xb7,0xab}/*utf8*/, 3/*utf8 len*/},{0xf5bd/*gb2312*/, 0x8e05/*utf16*/, {0xe8,0xb8,0x85}/*utf8*/, 3/*utf8 len*/},{0xf5be/*gb2312*/, 0x8e59/*utf16*/, {0xe8,0xb9,0x99}/*utf8*/, 3/*utf8 len*/},{0xf5bf/*gb2312*/, 0x8e69/*utf16*/, {0xe8,0xb9,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf5c0/*gb2312*/, 0x8db5/*utf16*/, {0xe8,0xb6,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf5c1/*gb2312*/, 0x8dbf/*utf16*/, {0xe8,0xb6,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf5c2/*gb2312*/, 0x8dbc/*utf16*/, {0xe8,0xb6,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf5c3/*gb2312*/, 0x8dba/*utf16*/, {0xe8,0xb6,0xba}/*utf8*/, 3/*utf8 len*/},{0xf5c4/*gb2312*/, 0x8dc4/*utf16*/, {0xe8,0xb7,0x84}/*utf8*/, 3/*utf8 len*/},{0xf5c5/*gb2312*/, 0x8dd6/*utf16*/, {0xe8,0xb7,0x96}/*utf8*/, 3/*utf8 len*/},{0xf5c6/*gb2312*/, 0x8dd7/*utf16*/, {0xe8,0xb7,0x97}/*utf8*/, 3/*utf8 len*/},{0xf5c7/*gb2312*/, 0x8dda/*utf16*/, {0xe8,0xb7,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf5c8/*gb2312*/, 0x8dde/*utf16*/, {0xe8,0xb7,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf5c9/*gb2312*/, 0x8dce/*utf16*/, {0xe8,0xb7,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf5ca/*gb2312*/, 0x8dcf/*utf16*/, {0xe8,0xb7,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf5cb/*gb2312*/, 0x8ddb/*utf16*/, {0xe8,0xb7,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf5cc/*gb2312*/, 0x8dc6/*utf16*/, {0xe8,0xb7,0x86}/*utf8*/, 3/*utf8 len*/},{0xf5cd/*gb2312*/, 0x8dec/*utf16*/, {0xe8,0xb7,0xac}/*utf8*/, 3/*utf8 len*/},{0xf5ce/*gb2312*/, 0x8df7/*utf16*/, {0xe8,0xb7,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf5cf/*gb2312*/, 0x8df8/*utf16*/, {0xe8,0xb7,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf5d0/*gb2312*/, 0x8de3/*utf16*/, {0xe8,0xb7,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf5d1/*gb2312*/, 0x8df9/*utf16*/, {0xe8,0xb7,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf5d2/*gb2312*/, 0x8dfb/*utf16*/, {0xe8,0xb7,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf5d3/*gb2312*/, 0x8de4/*utf16*/, {0xe8,0xb7,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf5d4/*gb2312*/, 0x8e09/*utf16*/, {0xe8,0xb8,0x89}/*utf8*/, 3/*utf8 len*/},{0xf5d5/*gb2312*/, 0x8dfd/*utf16*/, {0xe8,0xb7,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf5d6/*gb2312*/, 0x8e14/*utf16*/, {0xe8,0xb8,0x94}/*utf8*/, 3/*utf8 len*/},{0xf5d7/*gb2312*/, 0x8e1d/*utf16*/, {0xe8,0xb8,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf5d8/*gb2312*/, 0x8e1f/*utf16*/, {0xe8,0xb8,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf5d9/*gb2312*/, 0x8e2c/*utf16*/, {0xe8,0xb8,0xac}/*utf8*/, 3/*utf8 len*/},{0xf5da/*gb2312*/, 0x8e2e/*utf16*/, {0xe8,0xb8,0xae}/*utf8*/, 3/*utf8 len*/},{0xf5db/*gb2312*/, 0x8e23/*utf16*/, {0xe8,0xb8,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf5dc/*gb2312*/, 0x8e2f/*utf16*/, {0xe8,0xb8,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf5dd/*gb2312*/, 0x8e3a/*utf16*/, {0xe8,0xb8,0xba}/*utf8*/, 3/*utf8 len*/},{0xf5de/*gb2312*/, 0x8e40/*utf16*/, {0xe8,0xb9,0x80}/*utf8*/, 3/*utf8 len*/},{0xf5df/*gb2312*/, 0x8e39/*utf16*/, {0xe8,0xb8,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf5e0/*gb2312*/, 0x8e35/*utf16*/, {0xe8,0xb8,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf5e1/*gb2312*/, 0x8e3d/*utf16*/, {0xe8,0xb8,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf5e2/*gb2312*/, 0x8e31/*utf16*/, {0xe8,0xb8,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf5e3/*gb2312*/, 0x8e49/*utf16*/, {0xe8,0xb9,0x89}/*utf8*/, 3/*utf8 len*/},{0xf5e4/*gb2312*/, 0x8e41/*utf16*/, {0xe8,0xb9,0x81}/*utf8*/, 3/*utf8 len*/},{0xf5e5/*gb2312*/, 0x8e42/*utf16*/, {0xe8,0xb9,0x82}/*utf8*/, 3/*utf8 len*/},{0xf5e6/*gb2312*/, 0x8e51/*utf16*/, {0xe8,0xb9,0x91}/*utf8*/, 3/*utf8 len*/},{0xf5e7/*gb2312*/, 0x8e52/*utf16*/, {0xe8,0xb9,0x92}/*utf8*/, 3/*utf8 len*/},{0xf5e8/*gb2312*/, 0x8e4a/*utf16*/, {0xe8,0xb9,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf5e9/*gb2312*/, 0x8e70/*utf16*/, {0xe8,0xb9,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf5ea/*gb2312*/, 0x8e76/*utf16*/, {0xe8,0xb9,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf5eb/*gb2312*/, 0x8e7c/*utf16*/, {0xe8,0xb9,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf5ec/*gb2312*/, 0x8e6f/*utf16*/, {0xe8,0xb9,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf5ed/*gb2312*/, 0x8e74/*utf16*/, {0xe8,0xb9,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf5ee/*gb2312*/, 0x8e85/*utf16*/, {0xe8,0xba,0x85}/*utf8*/, 3/*utf8 len*/},{0xf5ef/*gb2312*/, 0x8e8f/*utf16*/, {0xe8,0xba,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf5f0/*gb2312*/, 0x8e94/*utf16*/, {0xe8,0xba,0x94}/*utf8*/, 3/*utf8 len*/},{0xf5f1/*gb2312*/, 0x8e90/*utf16*/, {0xe8,0xba,0x90}/*utf8*/, 3/*utf8 len*/},{0xf5f2/*gb2312*/, 0x8e9c/*utf16*/, {0xe8,0xba,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf5f3/*gb2312*/, 0x8e9e/*utf16*/, {0xe8,0xba,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf5f4/*gb2312*/, 0x8c78/*utf16*/, {0xe8,0xb1,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf5f5/*gb2312*/, 0x8c82/*utf16*/, {0xe8,0xb2,0x82}/*utf8*/, 3/*utf8 len*/},{0xf5f6/*gb2312*/, 0x8c8a/*utf16*/, {0xe8,0xb2,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf5f7/*gb2312*/, 0x8c85/*utf16*/, {0xe8,0xb2,0x85}/*utf8*/, 3/*utf8 len*/},{0xf5f8/*gb2312*/, 0x8c98/*utf16*/, {0xe8,0xb2,0x98}/*utf8*/, 3/*utf8 len*/},{0xf5f9/*gb2312*/, 0x8c94/*utf16*/, {0xe8,0xb2,0x94}/*utf8*/, 3/*utf8 len*/},{0xf5fa/*gb2312*/, 0x659b/*utf16*/, {0xe6,0x96,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf5fb/*gb2312*/, 0x89d6/*utf16*/, {0xe8,0xa7,0x96}/*utf8*/, 3/*utf8 len*/},{0xf5fc/*gb2312*/, 0x89de/*utf16*/, {0xe8,0xa7,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf5fd/*gb2312*/, 0x89da/*utf16*/, {0xe8,0xa7,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf5fe/*gb2312*/, 0x89dc/*utf16*/, {0xe8,0xa7,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf6a1/*gb2312*/, 0x89e5/*utf16*/, {0xe8,0xa7,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf6a2/*gb2312*/, 0x89eb/*utf16*/, {0xe8,0xa7,0xab}/*utf8*/, 3/*utf8 len*/},{0xf6a3/*gb2312*/, 0x89ef/*utf16*/, {0xe8,0xa7,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf6a4/*gb2312*/, 0x8a3e/*utf16*/, {0xe8,0xa8,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf6a5/*gb2312*/, 0x8b26/*utf16*/, {0xe8,0xac,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf6a6/*gb2312*/, 0x9753/*utf16*/, {0xe9,0x9d,0x93}/*utf8*/, 3/*utf8 len*/},{0xf6a7/*gb2312*/, 0x96e9/*utf16*/, {0xe9,0x9b,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf6a8/*gb2312*/, 0x96f3/*utf16*/, {0xe9,0x9b,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf6a9/*gb2312*/, 0x96ef/*utf16*/, {0xe9,0x9b,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf6aa/*gb2312*/, 0x9706/*utf16*/, {0xe9,0x9c,0x86}/*utf8*/, 3/*utf8 len*/},{0xf6ab/*gb2312*/, 0x9701/*utf16*/, {0xe9,0x9c,0x81}/*utf8*/, 3/*utf8 len*/},{0xf6ac/*gb2312*/, 0x9708/*utf16*/, {0xe9,0x9c,0x88}/*utf8*/, 3/*utf8 len*/},{0xf6ad/*gb2312*/, 0x970f/*utf16*/, {0xe9,0x9c,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf6ae/*gb2312*/, 0x970e/*utf16*/, {0xe9,0x9c,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf6af/*gb2312*/, 0x972a/*utf16*/, {0xe9,0x9c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf6b0/*gb2312*/, 0x972d/*utf16*/, {0xe9,0x9c,0xad}/*utf8*/, 3/*utf8 len*/},{0xf6b1/*gb2312*/, 0x9730/*utf16*/, {0xe9,0x9c,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf6b2/*gb2312*/, 0x973e/*utf16*/, {0xe9,0x9c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf6b3/*gb2312*/, 0x9f80/*utf16*/, {0xe9,0xbe,0x80}/*utf8*/, 3/*utf8 len*/},{0xf6b4/*gb2312*/, 0x9f83/*utf16*/, {0xe9,0xbe,0x83}/*utf8*/, 3/*utf8 len*/},{0xf6b5/*gb2312*/, 0x9f85/*utf16*/, {0xe9,0xbe,0x85}/*utf8*/, 3/*utf8 len*/},{0xf6b6/*gb2312*/, 0x9f86/*utf16*/, {0xe9,0xbe,0x86}/*utf8*/, 3/*utf8 len*/},{0xf6b7/*gb2312*/, 0x9f87/*utf16*/, {0xe9,0xbe,0x87}/*utf8*/, 3/*utf8 len*/},{0xf6b8/*gb2312*/, 0x9f88/*utf16*/, {0xe9,0xbe,0x88}/*utf8*/, 3/*utf8 len*/},{0xf6b9/*gb2312*/, 0x9f89/*utf16*/, {0xe9,0xbe,0x89}/*utf8*/, 3/*utf8 len*/},{0xf6ba/*gb2312*/, 0x9f8a/*utf16*/, {0xe9,0xbe,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf6bb/*gb2312*/, 0x9f8c/*utf16*/, {0xe9,0xbe,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf6bc/*gb2312*/, 0x9efe/*utf16*/, {0xe9,0xbb,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf6bd/*gb2312*/, 0x9f0b/*utf16*/, {0xe9,0xbc,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf6be/*gb2312*/, 0x9f0d/*utf16*/, {0xe9,0xbc,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf6bf/*gb2312*/, 0x96b9/*utf16*/, {0xe9,0x9a,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf6c0/*gb2312*/, 0x96bc/*utf16*/, {0xe9,0x9a,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf6c1/*gb2312*/, 0x96bd/*utf16*/, {0xe9,0x9a,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf6c2/*gb2312*/, 0x96ce/*utf16*/, {0xe9,0x9b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf6c3/*gb2312*/, 0x96d2/*utf16*/, {0xe9,0x9b,0x92}/*utf8*/, 3/*utf8 len*/},{0xf6c4/*gb2312*/, 0x77bf/*utf16*/, {0xe7,0x9e,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf6c5/*gb2312*/, 0x96e0/*utf16*/, {0xe9,0x9b,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf6c6/*gb2312*/, 0x928e/*utf16*/, {0xe9,0x8a,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf6c7/*gb2312*/, 0x92ae/*utf16*/, {0xe9,0x8a,0xae}/*utf8*/, 3/*utf8 len*/},{0xf6c8/*gb2312*/, 0x92c8/*utf16*/, {0xe9,0x8b,0x88}/*utf8*/, 3/*utf8 len*/},{0xf6c9/*gb2312*/, 0x933e/*utf16*/, {0xe9,0x8c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf6ca/*gb2312*/, 0x936a/*utf16*/, {0xe9,0x8d,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf6cb/*gb2312*/, 0x93ca/*utf16*/, {0xe9,0x8f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf6cc/*gb2312*/, 0x938f/*utf16*/, {0xe9,0x8e,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf6cd/*gb2312*/, 0x943e/*utf16*/, {0xe9,0x90,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf6ce/*gb2312*/, 0x946b/*utf16*/, {0xe9,0x91,0xab}/*utf8*/, 3/*utf8 len*/},{0xf6cf/*gb2312*/, 0x9c7f/*utf16*/, {0xe9,0xb1,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf6d0/*gb2312*/, 0x9c82/*utf16*/, {0xe9,0xb2,0x82}/*utf8*/, 3/*utf8 len*/},{0xf6d1/*gb2312*/, 0x9c85/*utf16*/, {0xe9,0xb2,0x85}/*utf8*/, 3/*utf8 len*/},{0xf6d2/*gb2312*/, 0x9c86/*utf16*/, {0xe9,0xb2,0x86}/*utf8*/, 3/*utf8 len*/},{0xf6d3/*gb2312*/, 0x9c87/*utf16*/, {0xe9,0xb2,0x87}/*utf8*/, 3/*utf8 len*/},{0xf6d4/*gb2312*/, 0x9c88/*utf16*/, {0xe9,0xb2,0x88}/*utf8*/, 3/*utf8 len*/},{0xf6d5/*gb2312*/, 0x7a23/*utf16*/, {0xe7,0xa8,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf6d6/*gb2312*/, 0x9c8b/*utf16*/, {0xe9,0xb2,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf6d7/*gb2312*/, 0x9c8e/*utf16*/, {0xe9,0xb2,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf6d8/*gb2312*/, 0x9c90/*utf16*/, {0xe9,0xb2,0x90}/*utf8*/, 3/*utf8 len*/},{0xf6d9/*gb2312*/, 0x9c91/*utf16*/, {0xe9,0xb2,0x91}/*utf8*/, 3/*utf8 len*/},{0xf6da/*gb2312*/, 0x9c92/*utf16*/, {0xe9,0xb2,0x92}/*utf8*/, 3/*utf8 len*/},{0xf6db/*gb2312*/, 0x9c94/*utf16*/, {0xe9,0xb2,0x94}/*utf8*/, 3/*utf8 len*/},{0xf6dc/*gb2312*/, 0x9c95/*utf16*/, {0xe9,0xb2,0x95}/*utf8*/, 3/*utf8 len*/},{0xf6dd/*gb2312*/, 0x9c9a/*utf16*/, {0xe9,0xb2,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf6de/*gb2312*/, 0x9c9b/*utf16*/, {0xe9,0xb2,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf6df/*gb2312*/, 0x9c9e/*utf16*/, {0xe9,0xb2,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf6e0/*gb2312*/, 0x9c9f/*utf16*/, {0xe9,0xb2,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf6e1/*gb2312*/, 0x9ca0/*utf16*/, {0xe9,0xb2,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf6e2/*gb2312*/, 0x9ca1/*utf16*/, {0xe9,0xb2,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf6e3/*gb2312*/, 0x9ca2/*utf16*/, {0xe9,0xb2,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf6e4/*gb2312*/, 0x9ca3/*utf16*/, {0xe9,0xb2,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf6e5/*gb2312*/, 0x9ca5/*utf16*/, {0xe9,0xb2,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf6e6/*gb2312*/, 0x9ca6/*utf16*/, {0xe9,0xb2,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf6e7/*gb2312*/, 0x9ca7/*utf16*/, {0xe9,0xb2,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf6e8/*gb2312*/, 0x9ca8/*utf16*/, {0xe9,0xb2,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf6e9/*gb2312*/, 0x9ca9/*utf16*/, {0xe9,0xb2,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf6ea/*gb2312*/, 0x9cab/*utf16*/, {0xe9,0xb2,0xab}/*utf8*/, 3/*utf8 len*/},{0xf6eb/*gb2312*/, 0x9cad/*utf16*/, {0xe9,0xb2,0xad}/*utf8*/, 3/*utf8 len*/},{0xf6ec/*gb2312*/, 0x9cae/*utf16*/, {0xe9,0xb2,0xae}/*utf8*/, 3/*utf8 len*/},{0xf6ed/*gb2312*/, 0x9cb0/*utf16*/, {0xe9,0xb2,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf6ee/*gb2312*/, 0x9cb1/*utf16*/, {0xe9,0xb2,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf6ef/*gb2312*/, 0x9cb2/*utf16*/, {0xe9,0xb2,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf6f0/*gb2312*/, 0x9cb3/*utf16*/, {0xe9,0xb2,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf6f1/*gb2312*/, 0x9cb4/*utf16*/, {0xe9,0xb2,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf6f2/*gb2312*/, 0x9cb5/*utf16*/, {0xe9,0xb2,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf6f3/*gb2312*/, 0x9cb6/*utf16*/, {0xe9,0xb2,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf6f4/*gb2312*/, 0x9cb7/*utf16*/, {0xe9,0xb2,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf6f5/*gb2312*/, 0x9cba/*utf16*/, {0xe9,0xb2,0xba}/*utf8*/, 3/*utf8 len*/},{0xf6f6/*gb2312*/, 0x9cbb/*utf16*/, {0xe9,0xb2,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf6f7/*gb2312*/, 0x9cbc/*utf16*/, {0xe9,0xb2,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf6f8/*gb2312*/, 0x9cbd/*utf16*/, {0xe9,0xb2,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf6f9/*gb2312*/, 0x9cc4/*utf16*/, {0xe9,0xb3,0x84}/*utf8*/, 3/*utf8 len*/},{0xf6fa/*gb2312*/, 0x9cc5/*utf16*/, {0xe9,0xb3,0x85}/*utf8*/, 3/*utf8 len*/},{0xf6fb/*gb2312*/, 0x9cc6/*utf16*/, {0xe9,0xb3,0x86}/*utf8*/, 3/*utf8 len*/},{0xf6fc/*gb2312*/, 0x9cc7/*utf16*/, {0xe9,0xb3,0x87}/*utf8*/, 3/*utf8 len*/},{0xf6fd/*gb2312*/, 0x9cca/*utf16*/, {0xe9,0xb3,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf6fe/*gb2312*/, 0x9ccb/*utf16*/, {0xe9,0xb3,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf7a1/*gb2312*/, 0x9ccc/*utf16*/, {0xe9,0xb3,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf7a2/*gb2312*/, 0x9ccd/*utf16*/, {0xe9,0xb3,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf7a3/*gb2312*/, 0x9cce/*utf16*/, {0xe9,0xb3,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf7a4/*gb2312*/, 0x9ccf/*utf16*/, {0xe9,0xb3,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf7a5/*gb2312*/, 0x9cd0/*utf16*/, {0xe9,0xb3,0x90}/*utf8*/, 3/*utf8 len*/},{0xf7a6/*gb2312*/, 0x9cd3/*utf16*/, {0xe9,0xb3,0x93}/*utf8*/, 3/*utf8 len*/},{0xf7a7/*gb2312*/, 0x9cd4/*utf16*/, {0xe9,0xb3,0x94}/*utf8*/, 3/*utf8 len*/},{0xf7a8/*gb2312*/, 0x9cd5/*utf16*/, {0xe9,0xb3,0x95}/*utf8*/, 3/*utf8 len*/},{0xf7a9/*gb2312*/, 0x9cd7/*utf16*/, {0xe9,0xb3,0x97}/*utf8*/, 3/*utf8 len*/},{0xf7aa/*gb2312*/, 0x9cd8/*utf16*/, {0xe9,0xb3,0x98}/*utf8*/, 3/*utf8 len*/},{0xf7ab/*gb2312*/, 0x9cd9/*utf16*/, {0xe9,0xb3,0x99}/*utf8*/, 3/*utf8 len*/},{0xf7ac/*gb2312*/, 0x9cdc/*utf16*/, {0xe9,0xb3,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf7ad/*gb2312*/, 0x9cdd/*utf16*/, {0xe9,0xb3,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf7ae/*gb2312*/, 0x9cdf/*utf16*/, {0xe9,0xb3,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf7af/*gb2312*/, 0x9ce2/*utf16*/, {0xe9,0xb3,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf7b0/*gb2312*/, 0x977c/*utf16*/, {0xe9,0x9d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf7b1/*gb2312*/, 0x9785/*utf16*/, {0xe9,0x9e,0x85}/*utf8*/, 3/*utf8 len*/},{0xf7b2/*gb2312*/, 0x9791/*utf16*/, {0xe9,0x9e,0x91}/*utf8*/, 3/*utf8 len*/},{0xf7b3/*gb2312*/, 0x9792/*utf16*/, {0xe9,0x9e,0x92}/*utf8*/, 3/*utf8 len*/},{0xf7b4/*gb2312*/, 0x9794/*utf16*/, {0xe9,0x9e,0x94}/*utf8*/, 3/*utf8 len*/},{0xf7b5/*gb2312*/, 0x97af/*utf16*/, {0xe9,0x9e,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf7b6/*gb2312*/, 0x97ab/*utf16*/, {0xe9,0x9e,0xab}/*utf8*/, 3/*utf8 len*/},{0xf7b7/*gb2312*/, 0x97a3/*utf16*/, {0xe9,0x9e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf7b8/*gb2312*/, 0x97b2/*utf16*/, {0xe9,0x9e,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf7b9/*gb2312*/, 0x97b4/*utf16*/, {0xe9,0x9e,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf7ba/*gb2312*/, 0x9ab1/*utf16*/, {0xe9,0xaa,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf7bb/*gb2312*/, 0x9ab0/*utf16*/, {0xe9,0xaa,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf7bc/*gb2312*/, 0x9ab7/*utf16*/, {0xe9,0xaa,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf7bd/*gb2312*/, 0x9e58/*utf16*/, {0xe9,0xb9,0x98}/*utf8*/, 3/*utf8 len*/},{0xf7be/*gb2312*/, 0x9ab6/*utf16*/, {0xe9,0xaa,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf7bf/*gb2312*/, 0x9aba/*utf16*/, {0xe9,0xaa,0xba}/*utf8*/, 3/*utf8 len*/},{0xf7c0/*gb2312*/, 0x9abc/*utf16*/, {0xe9,0xaa,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf7c1/*gb2312*/, 0x9ac1/*utf16*/, {0xe9,0xab,0x81}/*utf8*/, 3/*utf8 len*/},{0xf7c2/*gb2312*/, 0x9ac0/*utf16*/, {0xe9,0xab,0x80}/*utf8*/, 3/*utf8 len*/},{0xf7c3/*gb2312*/, 0x9ac5/*utf16*/, {0xe9,0xab,0x85}/*utf8*/, 3/*utf8 len*/},{0xf7c4/*gb2312*/, 0x9ac2/*utf16*/, {0xe9,0xab,0x82}/*utf8*/, 3/*utf8 len*/},{0xf7c5/*gb2312*/, 0x9acb/*utf16*/, {0xe9,0xab,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf7c6/*gb2312*/, 0x9acc/*utf16*/, {0xe9,0xab,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf7c7/*gb2312*/, 0x9ad1/*utf16*/, {0xe9,0xab,0x91}/*utf8*/, 3/*utf8 len*/},{0xf7c8/*gb2312*/, 0x9b45/*utf16*/, {0xe9,0xad,0x85}/*utf8*/, 3/*utf8 len*/},{0xf7c9/*gb2312*/, 0x9b43/*utf16*/, {0xe9,0xad,0x83}/*utf8*/, 3/*utf8 len*/},{0xf7ca/*gb2312*/, 0x9b47/*utf16*/, {0xe9,0xad,0x87}/*utf8*/, 3/*utf8 len*/},{0xf7cb/*gb2312*/, 0x9b49/*utf16*/, {0xe9,0xad,0x89}/*utf8*/, 3/*utf8 len*/},{0xf7cc/*gb2312*/, 0x9b48/*utf16*/, {0xe9,0xad,0x88}/*utf8*/, 3/*utf8 len*/},{0xf7cd/*gb2312*/, 0x9b4d/*utf16*/, {0xe9,0xad,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf7ce/*gb2312*/, 0x9b51/*utf16*/, {0xe9,0xad,0x91}/*utf8*/, 3/*utf8 len*/},{0xf7cf/*gb2312*/, 0x98e8/*utf16*/, {0xe9,0xa3,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf7d0/*gb2312*/, 0x990d/*utf16*/, {0xe9,0xa4,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf7d1/*gb2312*/, 0x992e/*utf16*/, {0xe9,0xa4,0xae}/*utf8*/, 3/*utf8 len*/},{0xf7d2/*gb2312*/, 0x9955/*utf16*/, {0xe9,0xa5,0x95}/*utf8*/, 3/*utf8 len*/},{0xf7d3/*gb2312*/, 0x9954/*utf16*/, {0xe9,0xa5,0x94}/*utf8*/, 3/*utf8 len*/},{0xf7d4/*gb2312*/, 0x9adf/*utf16*/, {0xe9,0xab,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf7d5/*gb2312*/, 0x9ae1/*utf16*/, {0xe9,0xab,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf7d6/*gb2312*/, 0x9ae6/*utf16*/, {0xe9,0xab,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf7d7/*gb2312*/, 0x9aef/*utf16*/, {0xe9,0xab,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf7d8/*gb2312*/, 0x9aeb/*utf16*/, {0xe9,0xab,0xab}/*utf8*/, 3/*utf8 len*/},{0xf7d9/*gb2312*/, 0x9afb/*utf16*/, {0xe9,0xab,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf7da/*gb2312*/, 0x9aed/*utf16*/, {0xe9,0xab,0xad}/*utf8*/, 3/*utf8 len*/},{0xf7db/*gb2312*/, 0x9af9/*utf16*/, {0xe9,0xab,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf7dc/*gb2312*/, 0x9b08/*utf16*/, {0xe9,0xac,0x88}/*utf8*/, 3/*utf8 len*/},{0xf7dd/*gb2312*/, 0x9b0f/*utf16*/, {0xe9,0xac,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf7de/*gb2312*/, 0x9b13/*utf16*/, {0xe9,0xac,0x93}/*utf8*/, 3/*utf8 len*/},{0xf7df/*gb2312*/, 0x9b1f/*utf16*/, {0xe9,0xac,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf7e0/*gb2312*/, 0x9b23/*utf16*/, {0xe9,0xac,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf7e1/*gb2312*/, 0x9ebd/*utf16*/, {0xe9,0xba,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf7e2/*gb2312*/, 0x9ebe/*utf16*/, {0xe9,0xba,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf7e3/*gb2312*/, 0x7e3b/*utf16*/, {0xe7,0xb8,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf7e4/*gb2312*/, 0x9e82/*utf16*/, {0xe9,0xba,0x82}/*utf8*/, 3/*utf8 len*/},{0xf7e5/*gb2312*/, 0x9e87/*utf16*/, {0xe9,0xba,0x87}/*utf8*/, 3/*utf8 len*/},{0xf7e6/*gb2312*/, 0x9e88/*utf16*/, {0xe9,0xba,0x88}/*utf8*/, 3/*utf8 len*/},{0xf7e7/*gb2312*/, 0x9e8b/*utf16*/, {0xe9,0xba,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf7e8/*gb2312*/, 0x9e92/*utf16*/, {0xe9,0xba,0x92}/*utf8*/, 3/*utf8 len*/},{0xf7e9/*gb2312*/, 0x93d6/*utf16*/, {0xe9,0x8f,0x96}/*utf8*/, 3/*utf8 len*/},{0xf7ea/*gb2312*/, 0x9e9d/*utf16*/, {0xe9,0xba,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf7eb/*gb2312*/, 0x9e9f/*utf16*/, {0xe9,0xba,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf7ec/*gb2312*/, 0x9edb/*utf16*/, {0xe9,0xbb,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf7ed/*gb2312*/, 0x9edc/*utf16*/, {0xe9,0xbb,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf7ee/*gb2312*/, 0x9edd/*utf16*/, {0xe9,0xbb,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf7ef/*gb2312*/, 0x9ee0/*utf16*/, {0xe9,0xbb,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf7f0/*gb2312*/, 0x9edf/*utf16*/, {0xe9,0xbb,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf7f1/*gb2312*/, 0x9ee2/*utf16*/, {0xe9,0xbb,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf7f2/*gb2312*/, 0x9ee9/*utf16*/, {0xe9,0xbb,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf7f3/*gb2312*/, 0x9ee7/*utf16*/, {0xe9,0xbb,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf7f4/*gb2312*/, 0x9ee5/*utf16*/, {0xe9,0xbb,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf7f5/*gb2312*/, 0x9eea/*utf16*/, {0xe9,0xbb,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf7f6/*gb2312*/, 0x9eef/*utf16*/, {0xe9,0xbb,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf7f7/*gb2312*/, 0x9f22/*utf16*/, {0xe9,0xbc,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf7f8/*gb2312*/, 0x9f2c/*utf16*/, {0xe9,0xbc,0xac}/*utf8*/, 3/*utf8 len*/},{0xf7f9/*gb2312*/, 0x9f2f/*utf16*/, {0xe9,0xbc,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf7fa/*gb2312*/, 0x9f39/*utf16*/, {0xe9,0xbc,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf7fb/*gb2312*/, 0x9f37/*utf16*/, {0xe9,0xbc,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf7fc/*gb2312*/, 0x9f3d/*utf16*/, {0xe9,0xbc,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf7fd/*gb2312*/, 0x9f3e/*utf16*/, {0xe9,0xbc,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf7fe/*gb2312*/, 0x9f44/*utf16*/, {0xe9,0xbd,0x84}/*utf8*/, 3/*utf8 len*/},{0xf8a1/*gb2312*/, 0xe234/*utf16*/, {0xee,0x88,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf8a2/*gb2312*/, 0xe235/*utf16*/, {0xee,0x88,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf8a3/*gb2312*/, 0xe236/*utf16*/, {0xee,0x88,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf8a4/*gb2312*/, 0xe237/*utf16*/, {0xee,0x88,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf8a5/*gb2312*/, 0xe238/*utf16*/, {0xee,0x88,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf8a6/*gb2312*/, 0xe239/*utf16*/, {0xee,0x88,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf8a7/*gb2312*/, 0xe23a/*utf16*/, {0xee,0x88,0xba}/*utf8*/, 3/*utf8 len*/},{0xf8a8/*gb2312*/, 0xe23b/*utf16*/, {0xee,0x88,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf8a9/*gb2312*/, 0xe23c/*utf16*/, {0xee,0x88,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf8aa/*gb2312*/, 0xe23d/*utf16*/, {0xee,0x88,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf8ab/*gb2312*/, 0xe23e/*utf16*/, {0xee,0x88,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf8ac/*gb2312*/, 0xe23f/*utf16*/, {0xee,0x88,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf8ad/*gb2312*/, 0xe240/*utf16*/, {0xee,0x89,0x80}/*utf8*/, 3/*utf8 len*/},{0xf8ae/*gb2312*/, 0xe241/*utf16*/, {0xee,0x89,0x81}/*utf8*/, 3/*utf8 len*/},{0xf8af/*gb2312*/, 0xe242/*utf16*/, {0xee,0x89,0x82}/*utf8*/, 3/*utf8 len*/},{0xf8b0/*gb2312*/, 0xe243/*utf16*/, {0xee,0x89,0x83}/*utf8*/, 3/*utf8 len*/},{0xf8b1/*gb2312*/, 0xe244/*utf16*/, {0xee,0x89,0x84}/*utf8*/, 3/*utf8 len*/},{0xf8b2/*gb2312*/, 0xe245/*utf16*/, {0xee,0x89,0x85}/*utf8*/, 3/*utf8 len*/},{0xf8b3/*gb2312*/, 0xe246/*utf16*/, {0xee,0x89,0x86}/*utf8*/, 3/*utf8 len*/},{0xf8b4/*gb2312*/, 0xe247/*utf16*/, {0xee,0x89,0x87}/*utf8*/, 3/*utf8 len*/},{0xf8b5/*gb2312*/, 0xe248/*utf16*/, {0xee,0x89,0x88}/*utf8*/, 3/*utf8 len*/},{0xf8b6/*gb2312*/, 0xe249/*utf16*/, {0xee,0x89,0x89}/*utf8*/, 3/*utf8 len*/},{0xf8b7/*gb2312*/, 0xe24a/*utf16*/, {0xee,0x89,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf8b8/*gb2312*/, 0xe24b/*utf16*/, {0xee,0x89,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf8b9/*gb2312*/, 0xe24c/*utf16*/, {0xee,0x89,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf8ba/*gb2312*/, 0xe24d/*utf16*/, {0xee,0x89,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf8bb/*gb2312*/, 0xe24e/*utf16*/, {0xee,0x89,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf8bc/*gb2312*/, 0xe24f/*utf16*/, {0xee,0x89,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf8bd/*gb2312*/, 0xe250/*utf16*/, {0xee,0x89,0x90}/*utf8*/, 3/*utf8 len*/},{0xf8be/*gb2312*/, 0xe251/*utf16*/, {0xee,0x89,0x91}/*utf8*/, 3/*utf8 len*/},{0xf8bf/*gb2312*/, 0xe252/*utf16*/, {0xee,0x89,0x92}/*utf8*/, 3/*utf8 len*/},{0xf8c0/*gb2312*/, 0xe253/*utf16*/, {0xee,0x89,0x93}/*utf8*/, 3/*utf8 len*/},{0xf8c1/*gb2312*/, 0xe254/*utf16*/, {0xee,0x89,0x94}/*utf8*/, 3/*utf8 len*/},{0xf8c2/*gb2312*/, 0xe255/*utf16*/, {0xee,0x89,0x95}/*utf8*/, 3/*utf8 len*/},{0xf8c3/*gb2312*/, 0xe256/*utf16*/, {0xee,0x89,0x96}/*utf8*/, 3/*utf8 len*/},{0xf8c4/*gb2312*/, 0xe257/*utf16*/, {0xee,0x89,0x97}/*utf8*/, 3/*utf8 len*/},{0xf8c5/*gb2312*/, 0xe258/*utf16*/, {0xee,0x89,0x98}/*utf8*/, 3/*utf8 len*/},{0xf8c6/*gb2312*/, 0xe259/*utf16*/, {0xee,0x89,0x99}/*utf8*/, 3/*utf8 len*/},{0xf8c7/*gb2312*/, 0xe25a/*utf16*/, {0xee,0x89,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf8c8/*gb2312*/, 0xe25b/*utf16*/, {0xee,0x89,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf8c9/*gb2312*/, 0xe25c/*utf16*/, {0xee,0x89,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf8ca/*gb2312*/, 0xe25d/*utf16*/, {0xee,0x89,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf8cb/*gb2312*/, 0xe25e/*utf16*/, {0xee,0x89,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf8cc/*gb2312*/, 0xe25f/*utf16*/, {0xee,0x89,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf8cd/*gb2312*/, 0xe260/*utf16*/, {0xee,0x89,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf8ce/*gb2312*/, 0xe261/*utf16*/, {0xee,0x89,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf8cf/*gb2312*/, 0xe262/*utf16*/, {0xee,0x89,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf8d0/*gb2312*/, 0xe263/*utf16*/, {0xee,0x89,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf8d1/*gb2312*/, 0xe264/*utf16*/, {0xee,0x89,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf8d2/*gb2312*/, 0xe265/*utf16*/, {0xee,0x89,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf8d3/*gb2312*/, 0xe266/*utf16*/, {0xee,0x89,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf8d4/*gb2312*/, 0xe267/*utf16*/, {0xee,0x89,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf8d5/*gb2312*/, 0xe268/*utf16*/, {0xee,0x89,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf8d6/*gb2312*/, 0xe269/*utf16*/, {0xee,0x89,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf8d7/*gb2312*/, 0xe26a/*utf16*/, {0xee,0x89,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf8d8/*gb2312*/, 0xe26b/*utf16*/, {0xee,0x89,0xab}/*utf8*/, 3/*utf8 len*/},{0xf8d9/*gb2312*/, 0xe26c/*utf16*/, {0xee,0x89,0xac}/*utf8*/, 3/*utf8 len*/},{0xf8da/*gb2312*/, 0xe26d/*utf16*/, {0xee,0x89,0xad}/*utf8*/, 3/*utf8 len*/},{0xf8db/*gb2312*/, 0xe26e/*utf16*/, {0xee,0x89,0xae}/*utf8*/, 3/*utf8 len*/},{0xf8dc/*gb2312*/, 0xe26f/*utf16*/, {0xee,0x89,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf8dd/*gb2312*/, 0xe270/*utf16*/, {0xee,0x89,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf8de/*gb2312*/, 0xe271/*utf16*/, {0xee,0x89,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf8df/*gb2312*/, 0xe272/*utf16*/, {0xee,0x89,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf8e0/*gb2312*/, 0xe273/*utf16*/, {0xee,0x89,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf8e1/*gb2312*/, 0xe274/*utf16*/, {0xee,0x89,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf8e2/*gb2312*/, 0xe275/*utf16*/, {0xee,0x89,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf8e3/*gb2312*/, 0xe276/*utf16*/, {0xee,0x89,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf8e4/*gb2312*/, 0xe277/*utf16*/, {0xee,0x89,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf8e5/*gb2312*/, 0xe278/*utf16*/, {0xee,0x89,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf8e6/*gb2312*/, 0xe279/*utf16*/, {0xee,0x89,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf8e7/*gb2312*/, 0xe27a/*utf16*/, {0xee,0x89,0xba}/*utf8*/, 3/*utf8 len*/},{0xf8e8/*gb2312*/, 0xe27b/*utf16*/, {0xee,0x89,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf8e9/*gb2312*/, 0xe27c/*utf16*/, {0xee,0x89,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf8ea/*gb2312*/, 0xe27d/*utf16*/, {0xee,0x89,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf8eb/*gb2312*/, 0xe27e/*utf16*/, {0xee,0x89,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf8ec/*gb2312*/, 0xe27f/*utf16*/, {0xee,0x89,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf8ed/*gb2312*/, 0xe280/*utf16*/, {0xee,0x8a,0x80}/*utf8*/, 3/*utf8 len*/},{0xf8ee/*gb2312*/, 0xe281/*utf16*/, {0xee,0x8a,0x81}/*utf8*/, 3/*utf8 len*/},{0xf8ef/*gb2312*/, 0xe282/*utf16*/, {0xee,0x8a,0x82}/*utf8*/, 3/*utf8 len*/},{0xf8f0/*gb2312*/, 0xe283/*utf16*/, {0xee,0x8a,0x83}/*utf8*/, 3/*utf8 len*/},{0xf8f1/*gb2312*/, 0xe284/*utf16*/, {0xee,0x8a,0x84}/*utf8*/, 3/*utf8 len*/},{0xf8f2/*gb2312*/, 0xe285/*utf16*/, {0xee,0x8a,0x85}/*utf8*/, 3/*utf8 len*/},{0xf8f3/*gb2312*/, 0xe286/*utf16*/, {0xee,0x8a,0x86}/*utf8*/, 3/*utf8 len*/},{0xf8f4/*gb2312*/, 0xe287/*utf16*/, {0xee,0x8a,0x87}/*utf8*/, 3/*utf8 len*/},{0xf8f5/*gb2312*/, 0xe288/*utf16*/, {0xee,0x8a,0x88}/*utf8*/, 3/*utf8 len*/},{0xf8f6/*gb2312*/, 0xe289/*utf16*/, {0xee,0x8a,0x89}/*utf8*/, 3/*utf8 len*/},{0xf8f7/*gb2312*/, 0xe28a/*utf16*/, {0xee,0x8a,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf8f8/*gb2312*/, 0xe28b/*utf16*/, {0xee,0x8a,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf8f9/*gb2312*/, 0xe28c/*utf16*/, {0xee,0x8a,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf8fa/*gb2312*/, 0xe28d/*utf16*/, {0xee,0x8a,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf8fb/*gb2312*/, 0xe28e/*utf16*/, {0xee,0x8a,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf8fc/*gb2312*/, 0xe28f/*utf16*/, {0xee,0x8a,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf8fd/*gb2312*/, 0xe290/*utf16*/, {0xee,0x8a,0x90}/*utf8*/, 3/*utf8 len*/},{0xf8fe/*gb2312*/, 0xe291/*utf16*/, {0xee,0x8a,0x91}/*utf8*/, 3/*utf8 len*/},{0xf9a1/*gb2312*/, 0xe292/*utf16*/, {0xee,0x8a,0x92}/*utf8*/, 3/*utf8 len*/},{0xf9a2/*gb2312*/, 0xe293/*utf16*/, {0xee,0x8a,0x93}/*utf8*/, 3/*utf8 len*/},{0xf9a3/*gb2312*/, 0xe294/*utf16*/, {0xee,0x8a,0x94}/*utf8*/, 3/*utf8 len*/},{0xf9a4/*gb2312*/, 0xe295/*utf16*/, {0xee,0x8a,0x95}/*utf8*/, 3/*utf8 len*/},{0xf9a5/*gb2312*/, 0xe296/*utf16*/, {0xee,0x8a,0x96}/*utf8*/, 3/*utf8 len*/},{0xf9a6/*gb2312*/, 0xe297/*utf16*/, {0xee,0x8a,0x97}/*utf8*/, 3/*utf8 len*/},{0xf9a7/*gb2312*/, 0xe298/*utf16*/, {0xee,0x8a,0x98}/*utf8*/, 3/*utf8 len*/},{0xf9a8/*gb2312*/, 0xe299/*utf16*/, {0xee,0x8a,0x99}/*utf8*/, 3/*utf8 len*/},{0xf9a9/*gb2312*/, 0xe29a/*utf16*/, {0xee,0x8a,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf9aa/*gb2312*/, 0xe29b/*utf16*/, {0xee,0x8a,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf9ab/*gb2312*/, 0xe29c/*utf16*/, {0xee,0x8a,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf9ac/*gb2312*/, 0xe29d/*utf16*/, {0xee,0x8a,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf9ad/*gb2312*/, 0xe29e/*utf16*/, {0xee,0x8a,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf9ae/*gb2312*/, 0xe29f/*utf16*/, {0xee,0x8a,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf9af/*gb2312*/, 0xe2a0/*utf16*/, {0xee,0x8a,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf9b0/*gb2312*/, 0xe2a1/*utf16*/, {0xee,0x8a,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf9b1/*gb2312*/, 0xe2a2/*utf16*/, {0xee,0x8a,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf9b2/*gb2312*/, 0xe2a3/*utf16*/, {0xee,0x8a,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf9b3/*gb2312*/, 0xe2a4/*utf16*/, {0xee,0x8a,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf9b4/*gb2312*/, 0xe2a5/*utf16*/, {0xee,0x8a,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf9b5/*gb2312*/, 0xe2a6/*utf16*/, {0xee,0x8a,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf9b6/*gb2312*/, 0xe2a7/*utf16*/, {0xee,0x8a,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf9b7/*gb2312*/, 0xe2a8/*utf16*/, {0xee,0x8a,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf9b8/*gb2312*/, 0xe2a9/*utf16*/, {0xee,0x8a,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf9b9/*gb2312*/, 0xe2aa/*utf16*/, {0xee,0x8a,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf9ba/*gb2312*/, 0xe2ab/*utf16*/, {0xee,0x8a,0xab}/*utf8*/, 3/*utf8 len*/},{0xf9bb/*gb2312*/, 0xe2ac/*utf16*/, {0xee,0x8a,0xac}/*utf8*/, 3/*utf8 len*/},{0xf9bc/*gb2312*/, 0xe2ad/*utf16*/, {0xee,0x8a,0xad}/*utf8*/, 3/*utf8 len*/},{0xf9bd/*gb2312*/, 0xe2ae/*utf16*/, {0xee,0x8a,0xae}/*utf8*/, 3/*utf8 len*/},{0xf9be/*gb2312*/, 0xe2af/*utf16*/, {0xee,0x8a,0xaf}/*utf8*/, 3/*utf8 len*/},{0xf9bf/*gb2312*/, 0xe2b0/*utf16*/, {0xee,0x8a,0xb0}/*utf8*/, 3/*utf8 len*/},{0xf9c0/*gb2312*/, 0xe2b1/*utf16*/, {0xee,0x8a,0xb1}/*utf8*/, 3/*utf8 len*/},{0xf9c1/*gb2312*/, 0xe2b2/*utf16*/, {0xee,0x8a,0xb2}/*utf8*/, 3/*utf8 len*/},{0xf9c2/*gb2312*/, 0xe2b3/*utf16*/, {0xee,0x8a,0xb3}/*utf8*/, 3/*utf8 len*/},{0xf9c3/*gb2312*/, 0xe2b4/*utf16*/, {0xee,0x8a,0xb4}/*utf8*/, 3/*utf8 len*/},{0xf9c4/*gb2312*/, 0xe2b5/*utf16*/, {0xee,0x8a,0xb5}/*utf8*/, 3/*utf8 len*/},{0xf9c5/*gb2312*/, 0xe2b6/*utf16*/, {0xee,0x8a,0xb6}/*utf8*/, 3/*utf8 len*/},{0xf9c6/*gb2312*/, 0xe2b7/*utf16*/, {0xee,0x8a,0xb7}/*utf8*/, 3/*utf8 len*/},{0xf9c7/*gb2312*/, 0xe2b8/*utf16*/, {0xee,0x8a,0xb8}/*utf8*/, 3/*utf8 len*/},{0xf9c8/*gb2312*/, 0xe2b9/*utf16*/, {0xee,0x8a,0xb9}/*utf8*/, 3/*utf8 len*/},{0xf9c9/*gb2312*/, 0xe2ba/*utf16*/, {0xee,0x8a,0xba}/*utf8*/, 3/*utf8 len*/},{0xf9ca/*gb2312*/, 0xe2bb/*utf16*/, {0xee,0x8a,0xbb}/*utf8*/, 3/*utf8 len*/},{0xf9cb/*gb2312*/, 0xe2bc/*utf16*/, {0xee,0x8a,0xbc}/*utf8*/, 3/*utf8 len*/},{0xf9cc/*gb2312*/, 0xe2bd/*utf16*/, {0xee,0x8a,0xbd}/*utf8*/, 3/*utf8 len*/},{0xf9cd/*gb2312*/, 0xe2be/*utf16*/, {0xee,0x8a,0xbe}/*utf8*/, 3/*utf8 len*/},{0xf9ce/*gb2312*/, 0xe2bf/*utf16*/, {0xee,0x8a,0xbf}/*utf8*/, 3/*utf8 len*/},{0xf9cf/*gb2312*/, 0xe2c0/*utf16*/, {0xee,0x8b,0x80}/*utf8*/, 3/*utf8 len*/},{0xf9d0/*gb2312*/, 0xe2c1/*utf16*/, {0xee,0x8b,0x81}/*utf8*/, 3/*utf8 len*/},{0xf9d1/*gb2312*/, 0xe2c2/*utf16*/, {0xee,0x8b,0x82}/*utf8*/, 3/*utf8 len*/},{0xf9d2/*gb2312*/, 0xe2c3/*utf16*/, {0xee,0x8b,0x83}/*utf8*/, 3/*utf8 len*/},{0xf9d3/*gb2312*/, 0xe2c4/*utf16*/, {0xee,0x8b,0x84}/*utf8*/, 3/*utf8 len*/},{0xf9d4/*gb2312*/, 0xe2c5/*utf16*/, {0xee,0x8b,0x85}/*utf8*/, 3/*utf8 len*/},{0xf9d5/*gb2312*/, 0xe2c6/*utf16*/, {0xee,0x8b,0x86}/*utf8*/, 3/*utf8 len*/},{0xf9d6/*gb2312*/, 0xe2c7/*utf16*/, {0xee,0x8b,0x87}/*utf8*/, 3/*utf8 len*/},{0xf9d7/*gb2312*/, 0xe2c8/*utf16*/, {0xee,0x8b,0x88}/*utf8*/, 3/*utf8 len*/},{0xf9d8/*gb2312*/, 0xe2c9/*utf16*/, {0xee,0x8b,0x89}/*utf8*/, 3/*utf8 len*/},{0xf9d9/*gb2312*/, 0xe2ca/*utf16*/, {0xee,0x8b,0x8a}/*utf8*/, 3/*utf8 len*/},{0xf9da/*gb2312*/, 0xe2cb/*utf16*/, {0xee,0x8b,0x8b}/*utf8*/, 3/*utf8 len*/},{0xf9db/*gb2312*/, 0xe2cc/*utf16*/, {0xee,0x8b,0x8c}/*utf8*/, 3/*utf8 len*/},{0xf9dc/*gb2312*/, 0xe2cd/*utf16*/, {0xee,0x8b,0x8d}/*utf8*/, 3/*utf8 len*/},{0xf9dd/*gb2312*/, 0xe2ce/*utf16*/, {0xee,0x8b,0x8e}/*utf8*/, 3/*utf8 len*/},{0xf9de/*gb2312*/, 0xe2cf/*utf16*/, {0xee,0x8b,0x8f}/*utf8*/, 3/*utf8 len*/},{0xf9df/*gb2312*/, 0xe2d0/*utf16*/, {0xee,0x8b,0x90}/*utf8*/, 3/*utf8 len*/},{0xf9e0/*gb2312*/, 0xe2d1/*utf16*/, {0xee,0x8b,0x91}/*utf8*/, 3/*utf8 len*/},{0xf9e1/*gb2312*/, 0xe2d2/*utf16*/, {0xee,0x8b,0x92}/*utf8*/, 3/*utf8 len*/},{0xf9e2/*gb2312*/, 0xe2d3/*utf16*/, {0xee,0x8b,0x93}/*utf8*/, 3/*utf8 len*/},{0xf9e3/*gb2312*/, 0xe2d4/*utf16*/, {0xee,0x8b,0x94}/*utf8*/, 3/*utf8 len*/},{0xf9e4/*gb2312*/, 0xe2d5/*utf16*/, {0xee,0x8b,0x95}/*utf8*/, 3/*utf8 len*/},{0xf9e5/*gb2312*/, 0xe2d6/*utf16*/, {0xee,0x8b,0x96}/*utf8*/, 3/*utf8 len*/},{0xf9e6/*gb2312*/, 0xe2d7/*utf16*/, {0xee,0x8b,0x97}/*utf8*/, 3/*utf8 len*/},{0xf9e7/*gb2312*/, 0xe2d8/*utf16*/, {0xee,0x8b,0x98}/*utf8*/, 3/*utf8 len*/},{0xf9e8/*gb2312*/, 0xe2d9/*utf16*/, {0xee,0x8b,0x99}/*utf8*/, 3/*utf8 len*/},{0xf9e9/*gb2312*/, 0xe2da/*utf16*/, {0xee,0x8b,0x9a}/*utf8*/, 3/*utf8 len*/},{0xf9ea/*gb2312*/, 0xe2db/*utf16*/, {0xee,0x8b,0x9b}/*utf8*/, 3/*utf8 len*/},{0xf9eb/*gb2312*/, 0xe2dc/*utf16*/, {0xee,0x8b,0x9c}/*utf8*/, 3/*utf8 len*/},{0xf9ec/*gb2312*/, 0xe2dd/*utf16*/, {0xee,0x8b,0x9d}/*utf8*/, 3/*utf8 len*/},{0xf9ed/*gb2312*/, 0xe2de/*utf16*/, {0xee,0x8b,0x9e}/*utf8*/, 3/*utf8 len*/},{0xf9ee/*gb2312*/, 0xe2df/*utf16*/, {0xee,0x8b,0x9f}/*utf8*/, 3/*utf8 len*/},{0xf9ef/*gb2312*/, 0xe2e0/*utf16*/, {0xee,0x8b,0xa0}/*utf8*/, 3/*utf8 len*/},{0xf9f0/*gb2312*/, 0xe2e1/*utf16*/, {0xee,0x8b,0xa1}/*utf8*/, 3/*utf8 len*/},{0xf9f1/*gb2312*/, 0xe2e2/*utf16*/, {0xee,0x8b,0xa2}/*utf8*/, 3/*utf8 len*/},{0xf9f2/*gb2312*/, 0xe2e3/*utf16*/, {0xee,0x8b,0xa3}/*utf8*/, 3/*utf8 len*/},{0xf9f3/*gb2312*/, 0xe2e4/*utf16*/, {0xee,0x8b,0xa4}/*utf8*/, 3/*utf8 len*/},{0xf9f4/*gb2312*/, 0xe2e5/*utf16*/, {0xee,0x8b,0xa5}/*utf8*/, 3/*utf8 len*/},{0xf9f5/*gb2312*/, 0xe2e6/*utf16*/, {0xee,0x8b,0xa6}/*utf8*/, 3/*utf8 len*/},{0xf9f6/*gb2312*/, 0xe2e7/*utf16*/, {0xee,0x8b,0xa7}/*utf8*/, 3/*utf8 len*/},{0xf9f7/*gb2312*/, 0xe2e8/*utf16*/, {0xee,0x8b,0xa8}/*utf8*/, 3/*utf8 len*/},{0xf9f8/*gb2312*/, 0xe2e9/*utf16*/, {0xee,0x8b,0xa9}/*utf8*/, 3/*utf8 len*/},{0xf9f9/*gb2312*/, 0xe2ea/*utf16*/, {0xee,0x8b,0xaa}/*utf8*/, 3/*utf8 len*/},{0xf9fa/*gb2312*/, 0xe2eb/*utf16*/, {0xee,0x8b,0xab}/*utf8*/, 3/*utf8 len*/},{0xf9fb/*gb2312*/, 0xe2ec/*utf16*/, {0xee,0x8b,0xac}/*utf8*/, 3/*utf8 len*/},{0xf9fc/*gb2312*/, 0xe2ed/*utf16*/, {0xee,0x8b,0xad}/*utf8*/, 3/*utf8 len*/},{0xf9fd/*gb2312*/, 0xe2ee/*utf16*/, {0xee,0x8b,0xae}/*utf8*/, 3/*utf8 len*/},{0xf9fe/*gb2312*/, 0xe2ef/*utf16*/, {0xee,0x8b,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfaa1/*gb2312*/, 0xe2f0/*utf16*/, {0xee,0x8b,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfaa2/*gb2312*/, 0xe2f1/*utf16*/, {0xee,0x8b,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfaa3/*gb2312*/, 0xe2f2/*utf16*/, {0xee,0x8b,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfaa4/*gb2312*/, 0xe2f3/*utf16*/, {0xee,0x8b,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfaa5/*gb2312*/, 0xe2f4/*utf16*/, {0xee,0x8b,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfaa6/*gb2312*/, 0xe2f5/*utf16*/, {0xee,0x8b,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfaa7/*gb2312*/, 0xe2f6/*utf16*/, {0xee,0x8b,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfaa8/*gb2312*/, 0xe2f7/*utf16*/, {0xee,0x8b,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfaa9/*gb2312*/, 0xe2f8/*utf16*/, {0xee,0x8b,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfaaa/*gb2312*/, 0xe2f9/*utf16*/, {0xee,0x8b,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfaab/*gb2312*/, 0xe2fa/*utf16*/, {0xee,0x8b,0xba}/*utf8*/, 3/*utf8 len*/},{0xfaac/*gb2312*/, 0xe2fb/*utf16*/, {0xee,0x8b,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfaad/*gb2312*/, 0xe2fc/*utf16*/, {0xee,0x8b,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfaae/*gb2312*/, 0xe2fd/*utf16*/, {0xee,0x8b,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfaaf/*gb2312*/, 0xe2fe/*utf16*/, {0xee,0x8b,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfab0/*gb2312*/, 0xe2ff/*utf16*/, {0xee,0x8b,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfab1/*gb2312*/, 0xe300/*utf16*/, {0xee,0x8c,0x80}/*utf8*/, 3/*utf8 len*/},{0xfab2/*gb2312*/, 0xe301/*utf16*/, {0xee,0x8c,0x81}/*utf8*/, 3/*utf8 len*/},{0xfab3/*gb2312*/, 0xe302/*utf16*/, {0xee,0x8c,0x82}/*utf8*/, 3/*utf8 len*/},{0xfab4/*gb2312*/, 0xe303/*utf16*/, {0xee,0x8c,0x83}/*utf8*/, 3/*utf8 len*/},{0xfab5/*gb2312*/, 0xe304/*utf16*/, {0xee,0x8c,0x84}/*utf8*/, 3/*utf8 len*/},{0xfab6/*gb2312*/, 0xe305/*utf16*/, {0xee,0x8c,0x85}/*utf8*/, 3/*utf8 len*/},{0xfab7/*gb2312*/, 0xe306/*utf16*/, {0xee,0x8c,0x86}/*utf8*/, 3/*utf8 len*/},{0xfab8/*gb2312*/, 0xe307/*utf16*/, {0xee,0x8c,0x87}/*utf8*/, 3/*utf8 len*/},{0xfab9/*gb2312*/, 0xe308/*utf16*/, {0xee,0x8c,0x88}/*utf8*/, 3/*utf8 len*/},{0xfaba/*gb2312*/, 0xe309/*utf16*/, {0xee,0x8c,0x89}/*utf8*/, 3/*utf8 len*/},{0xfabb/*gb2312*/, 0xe30a/*utf16*/, {0xee,0x8c,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfabc/*gb2312*/, 0xe30b/*utf16*/, {0xee,0x8c,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfabd/*gb2312*/, 0xe30c/*utf16*/, {0xee,0x8c,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfabe/*gb2312*/, 0xe30d/*utf16*/, {0xee,0x8c,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfabf/*gb2312*/, 0xe30e/*utf16*/, {0xee,0x8c,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfac0/*gb2312*/, 0xe30f/*utf16*/, {0xee,0x8c,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfac1/*gb2312*/, 0xe310/*utf16*/, {0xee,0x8c,0x90}/*utf8*/, 3/*utf8 len*/},{0xfac2/*gb2312*/, 0xe311/*utf16*/, {0xee,0x8c,0x91}/*utf8*/, 3/*utf8 len*/},{0xfac3/*gb2312*/, 0xe312/*utf16*/, {0xee,0x8c,0x92}/*utf8*/, 3/*utf8 len*/},{0xfac4/*gb2312*/, 0xe313/*utf16*/, {0xee,0x8c,0x93}/*utf8*/, 3/*utf8 len*/},{0xfac5/*gb2312*/, 0xe314/*utf16*/, {0xee,0x8c,0x94}/*utf8*/, 3/*utf8 len*/},{0xfac6/*gb2312*/, 0xe315/*utf16*/, {0xee,0x8c,0x95}/*utf8*/, 3/*utf8 len*/},{0xfac7/*gb2312*/, 0xe316/*utf16*/, {0xee,0x8c,0x96}/*utf8*/, 3/*utf8 len*/},{0xfac8/*gb2312*/, 0xe317/*utf16*/, {0xee,0x8c,0x97}/*utf8*/, 3/*utf8 len*/},{0xfac9/*gb2312*/, 0xe318/*utf16*/, {0xee,0x8c,0x98}/*utf8*/, 3/*utf8 len*/},{0xfaca/*gb2312*/, 0xe319/*utf16*/, {0xee,0x8c,0x99}/*utf8*/, 3/*utf8 len*/},{0xfacb/*gb2312*/, 0xe31a/*utf16*/, {0xee,0x8c,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfacc/*gb2312*/, 0xe31b/*utf16*/, {0xee,0x8c,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfacd/*gb2312*/, 0xe31c/*utf16*/, {0xee,0x8c,0x9c}/*utf8*/, 3/*utf8 len*/},{0xface/*gb2312*/, 0xe31d/*utf16*/, {0xee,0x8c,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfacf/*gb2312*/, 0xe31e/*utf16*/, {0xee,0x8c,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfad0/*gb2312*/, 0xe31f/*utf16*/, {0xee,0x8c,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfad1/*gb2312*/, 0xe320/*utf16*/, {0xee,0x8c,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfad2/*gb2312*/, 0xe321/*utf16*/, {0xee,0x8c,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfad3/*gb2312*/, 0xe322/*utf16*/, {0xee,0x8c,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfad4/*gb2312*/, 0xe323/*utf16*/, {0xee,0x8c,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfad5/*gb2312*/, 0xe324/*utf16*/, {0xee,0x8c,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfad6/*gb2312*/, 0xe325/*utf16*/, {0xee,0x8c,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfad7/*gb2312*/, 0xe326/*utf16*/, {0xee,0x8c,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfad8/*gb2312*/, 0xe327/*utf16*/, {0xee,0x8c,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfad9/*gb2312*/, 0xe328/*utf16*/, {0xee,0x8c,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfada/*gb2312*/, 0xe329/*utf16*/, {0xee,0x8c,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfadb/*gb2312*/, 0xe32a/*utf16*/, {0xee,0x8c,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfadc/*gb2312*/, 0xe32b/*utf16*/, {0xee,0x8c,0xab}/*utf8*/, 3/*utf8 len*/},{0xfadd/*gb2312*/, 0xe32c/*utf16*/, {0xee,0x8c,0xac}/*utf8*/, 3/*utf8 len*/},{0xfade/*gb2312*/, 0xe32d/*utf16*/, {0xee,0x8c,0xad}/*utf8*/, 3/*utf8 len*/},{0xfadf/*gb2312*/, 0xe32e/*utf16*/, {0xee,0x8c,0xae}/*utf8*/, 3/*utf8 len*/},{0xfae0/*gb2312*/, 0xe32f/*utf16*/, {0xee,0x8c,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfae1/*gb2312*/, 0xe330/*utf16*/, {0xee,0x8c,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfae2/*gb2312*/, 0xe331/*utf16*/, {0xee,0x8c,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfae3/*gb2312*/, 0xe332/*utf16*/, {0xee,0x8c,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfae4/*gb2312*/, 0xe333/*utf16*/, {0xee,0x8c,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfae5/*gb2312*/, 0xe334/*utf16*/, {0xee,0x8c,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfae6/*gb2312*/, 0xe335/*utf16*/, {0xee,0x8c,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfae7/*gb2312*/, 0xe336/*utf16*/, {0xee,0x8c,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfae8/*gb2312*/, 0xe337/*utf16*/, {0xee,0x8c,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfae9/*gb2312*/, 0xe338/*utf16*/, {0xee,0x8c,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfaea/*gb2312*/, 0xe339/*utf16*/, {0xee,0x8c,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfaeb/*gb2312*/, 0xe33a/*utf16*/, {0xee,0x8c,0xba}/*utf8*/, 3/*utf8 len*/},{0xfaec/*gb2312*/, 0xe33b/*utf16*/, {0xee,0x8c,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfaed/*gb2312*/, 0xe33c/*utf16*/, {0xee,0x8c,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfaee/*gb2312*/, 0xe33d/*utf16*/, {0xee,0x8c,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfaef/*gb2312*/, 0xe33e/*utf16*/, {0xee,0x8c,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfaf0/*gb2312*/, 0xe33f/*utf16*/, {0xee,0x8c,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfaf1/*gb2312*/, 0xe340/*utf16*/, {0xee,0x8d,0x80}/*utf8*/, 3/*utf8 len*/},{0xfaf2/*gb2312*/, 0xe341/*utf16*/, {0xee,0x8d,0x81}/*utf8*/, 3/*utf8 len*/},{0xfaf3/*gb2312*/, 0xe342/*utf16*/, {0xee,0x8d,0x82}/*utf8*/, 3/*utf8 len*/},{0xfaf4/*gb2312*/, 0xe343/*utf16*/, {0xee,0x8d,0x83}/*utf8*/, 3/*utf8 len*/},{0xfaf5/*gb2312*/, 0xe344/*utf16*/, {0xee,0x8d,0x84}/*utf8*/, 3/*utf8 len*/},{0xfaf6/*gb2312*/, 0xe345/*utf16*/, {0xee,0x8d,0x85}/*utf8*/, 3/*utf8 len*/},{0xfaf7/*gb2312*/, 0xe346/*utf16*/, {0xee,0x8d,0x86}/*utf8*/, 3/*utf8 len*/},{0xfaf8/*gb2312*/, 0xe347/*utf16*/, {0xee,0x8d,0x87}/*utf8*/, 3/*utf8 len*/},{0xfaf9/*gb2312*/, 0xe348/*utf16*/, {0xee,0x8d,0x88}/*utf8*/, 3/*utf8 len*/},{0xfafa/*gb2312*/, 0xe349/*utf16*/, {0xee,0x8d,0x89}/*utf8*/, 3/*utf8 len*/},{0xfafb/*gb2312*/, 0xe34a/*utf16*/, {0xee,0x8d,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfafc/*gb2312*/, 0xe34b/*utf16*/, {0xee,0x8d,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfafd/*gb2312*/, 0xe34c/*utf16*/, {0xee,0x8d,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfafe/*gb2312*/, 0xe34d/*utf16*/, {0xee,0x8d,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfba1/*gb2312*/, 0xe34e/*utf16*/, {0xee,0x8d,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfba2/*gb2312*/, 0xe34f/*utf16*/, {0xee,0x8d,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfba3/*gb2312*/, 0xe350/*utf16*/, {0xee,0x8d,0x90}/*utf8*/, 3/*utf8 len*/},{0xfba4/*gb2312*/, 0xe351/*utf16*/, {0xee,0x8d,0x91}/*utf8*/, 3/*utf8 len*/},{0xfba5/*gb2312*/, 0xe352/*utf16*/, {0xee,0x8d,0x92}/*utf8*/, 3/*utf8 len*/},{0xfba6/*gb2312*/, 0xe353/*utf16*/, {0xee,0x8d,0x93}/*utf8*/, 3/*utf8 len*/},{0xfba7/*gb2312*/, 0xe354/*utf16*/, {0xee,0x8d,0x94}/*utf8*/, 3/*utf8 len*/},{0xfba8/*gb2312*/, 0xe355/*utf16*/, {0xee,0x8d,0x95}/*utf8*/, 3/*utf8 len*/},{0xfba9/*gb2312*/, 0xe356/*utf16*/, {0xee,0x8d,0x96}/*utf8*/, 3/*utf8 len*/},{0xfbaa/*gb2312*/, 0xe357/*utf16*/, {0xee,0x8d,0x97}/*utf8*/, 3/*utf8 len*/},{0xfbab/*gb2312*/, 0xe358/*utf16*/, {0xee,0x8d,0x98}/*utf8*/, 3/*utf8 len*/},{0xfbac/*gb2312*/, 0xe359/*utf16*/, {0xee,0x8d,0x99}/*utf8*/, 3/*utf8 len*/},{0xfbad/*gb2312*/, 0xe35a/*utf16*/, {0xee,0x8d,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfbae/*gb2312*/, 0xe35b/*utf16*/, {0xee,0x8d,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfbaf/*gb2312*/, 0xe35c/*utf16*/, {0xee,0x8d,0x9c}/*utf8*/, 3/*utf8 len*/},{0xfbb0/*gb2312*/, 0xe35d/*utf16*/, {0xee,0x8d,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfbb1/*gb2312*/, 0xe35e/*utf16*/, {0xee,0x8d,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfbb2/*gb2312*/, 0xe35f/*utf16*/, {0xee,0x8d,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfbb3/*gb2312*/, 0xe360/*utf16*/, {0xee,0x8d,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfbb4/*gb2312*/, 0xe361/*utf16*/, {0xee,0x8d,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfbb5/*gb2312*/, 0xe362/*utf16*/, {0xee,0x8d,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfbb6/*gb2312*/, 0xe363/*utf16*/, {0xee,0x8d,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfbb7/*gb2312*/, 0xe364/*utf16*/, {0xee,0x8d,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfbb8/*gb2312*/, 0xe365/*utf16*/, {0xee,0x8d,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfbb9/*gb2312*/, 0xe366/*utf16*/, {0xee,0x8d,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfbba/*gb2312*/, 0xe367/*utf16*/, {0xee,0x8d,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfbbb/*gb2312*/, 0xe368/*utf16*/, {0xee,0x8d,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfbbc/*gb2312*/, 0xe369/*utf16*/, {0xee,0x8d,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfbbd/*gb2312*/, 0xe36a/*utf16*/, {0xee,0x8d,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfbbe/*gb2312*/, 0xe36b/*utf16*/, {0xee,0x8d,0xab}/*utf8*/, 3/*utf8 len*/},{0xfbbf/*gb2312*/, 0xe36c/*utf16*/, {0xee,0x8d,0xac}/*utf8*/, 3/*utf8 len*/},{0xfbc0/*gb2312*/, 0xe36d/*utf16*/, {0xee,0x8d,0xad}/*utf8*/, 3/*utf8 len*/},{0xfbc1/*gb2312*/, 0xe36e/*utf16*/, {0xee,0x8d,0xae}/*utf8*/, 3/*utf8 len*/},{0xfbc2/*gb2312*/, 0xe36f/*utf16*/, {0xee,0x8d,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfbc3/*gb2312*/, 0xe370/*utf16*/, {0xee,0x8d,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfbc4/*gb2312*/, 0xe371/*utf16*/, {0xee,0x8d,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfbc5/*gb2312*/, 0xe372/*utf16*/, {0xee,0x8d,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfbc6/*gb2312*/, 0xe373/*utf16*/, {0xee,0x8d,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfbc7/*gb2312*/, 0xe374/*utf16*/, {0xee,0x8d,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfbc8/*gb2312*/, 0xe375/*utf16*/, {0xee,0x8d,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfbc9/*gb2312*/, 0xe376/*utf16*/, {0xee,0x8d,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfbca/*gb2312*/, 0xe377/*utf16*/, {0xee,0x8d,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfbcb/*gb2312*/, 0xe378/*utf16*/, {0xee,0x8d,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfbcc/*gb2312*/, 0xe379/*utf16*/, {0xee,0x8d,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfbcd/*gb2312*/, 0xe37a/*utf16*/, {0xee,0x8d,0xba}/*utf8*/, 3/*utf8 len*/},{0xfbce/*gb2312*/, 0xe37b/*utf16*/, {0xee,0x8d,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfbcf/*gb2312*/, 0xe37c/*utf16*/, {0xee,0x8d,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfbd0/*gb2312*/, 0xe37d/*utf16*/, {0xee,0x8d,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfbd1/*gb2312*/, 0xe37e/*utf16*/, {0xee,0x8d,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfbd2/*gb2312*/, 0xe37f/*utf16*/, {0xee,0x8d,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfbd3/*gb2312*/, 0xe380/*utf16*/, {0xee,0x8e,0x80}/*utf8*/, 3/*utf8 len*/},{0xfbd4/*gb2312*/, 0xe381/*utf16*/, {0xee,0x8e,0x81}/*utf8*/, 3/*utf8 len*/},{0xfbd5/*gb2312*/, 0xe382/*utf16*/, {0xee,0x8e,0x82}/*utf8*/, 3/*utf8 len*/},{0xfbd6/*gb2312*/, 0xe383/*utf16*/, {0xee,0x8e,0x83}/*utf8*/, 3/*utf8 len*/},{0xfbd7/*gb2312*/, 0xe384/*utf16*/, {0xee,0x8e,0x84}/*utf8*/, 3/*utf8 len*/},{0xfbd8/*gb2312*/, 0xe385/*utf16*/, {0xee,0x8e,0x85}/*utf8*/, 3/*utf8 len*/},{0xfbd9/*gb2312*/, 0xe386/*utf16*/, {0xee,0x8e,0x86}/*utf8*/, 3/*utf8 len*/},{0xfbda/*gb2312*/, 0xe387/*utf16*/, {0xee,0x8e,0x87}/*utf8*/, 3/*utf8 len*/},{0xfbdb/*gb2312*/, 0xe388/*utf16*/, {0xee,0x8e,0x88}/*utf8*/, 3/*utf8 len*/},{0xfbdc/*gb2312*/, 0xe389/*utf16*/, {0xee,0x8e,0x89}/*utf8*/, 3/*utf8 len*/},{0xfbdd/*gb2312*/, 0xe38a/*utf16*/, {0xee,0x8e,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfbde/*gb2312*/, 0xe38b/*utf16*/, {0xee,0x8e,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfbdf/*gb2312*/, 0xe38c/*utf16*/, {0xee,0x8e,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfbe0/*gb2312*/, 0xe38d/*utf16*/, {0xee,0x8e,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfbe1/*gb2312*/, 0xe38e/*utf16*/, {0xee,0x8e,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfbe2/*gb2312*/, 0xe38f/*utf16*/, {0xee,0x8e,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfbe3/*gb2312*/, 0xe390/*utf16*/, {0xee,0x8e,0x90}/*utf8*/, 3/*utf8 len*/},{0xfbe4/*gb2312*/, 0xe391/*utf16*/, {0xee,0x8e,0x91}/*utf8*/, 3/*utf8 len*/},{0xfbe5/*gb2312*/, 0xe392/*utf16*/, {0xee,0x8e,0x92}/*utf8*/, 3/*utf8 len*/},{0xfbe6/*gb2312*/, 0xe393/*utf16*/, {0xee,0x8e,0x93}/*utf8*/, 3/*utf8 len*/},{0xfbe7/*gb2312*/, 0xe394/*utf16*/, {0xee,0x8e,0x94}/*utf8*/, 3/*utf8 len*/},{0xfbe8/*gb2312*/, 0xe395/*utf16*/, {0xee,0x8e,0x95}/*utf8*/, 3/*utf8 len*/},{0xfbe9/*gb2312*/, 0xe396/*utf16*/, {0xee,0x8e,0x96}/*utf8*/, 3/*utf8 len*/},{0xfbea/*gb2312*/, 0xe397/*utf16*/, {0xee,0x8e,0x97}/*utf8*/, 3/*utf8 len*/},{0xfbeb/*gb2312*/, 0xe398/*utf16*/, {0xee,0x8e,0x98}/*utf8*/, 3/*utf8 len*/},{0xfbec/*gb2312*/, 0xe399/*utf16*/, {0xee,0x8e,0x99}/*utf8*/, 3/*utf8 len*/},{0xfbed/*gb2312*/, 0xe39a/*utf16*/, {0xee,0x8e,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfbee/*gb2312*/, 0xe39b/*utf16*/, {0xee,0x8e,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfbef/*gb2312*/, 0xe39c/*utf16*/, {0xee,0x8e,0x9c}/*utf8*/, 3/*utf8 len*/},{0xfbf0/*gb2312*/, 0xe39d/*utf16*/, {0xee,0x8e,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfbf1/*gb2312*/, 0xe39e/*utf16*/, {0xee,0x8e,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfbf2/*gb2312*/, 0xe39f/*utf16*/, {0xee,0x8e,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfbf3/*gb2312*/, 0xe3a0/*utf16*/, {0xee,0x8e,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfbf4/*gb2312*/, 0xe3a1/*utf16*/, {0xee,0x8e,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfbf5/*gb2312*/, 0xe3a2/*utf16*/, {0xee,0x8e,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfbf6/*gb2312*/, 0xe3a3/*utf16*/, {0xee,0x8e,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfbf7/*gb2312*/, 0xe3a4/*utf16*/, {0xee,0x8e,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfbf8/*gb2312*/, 0xe3a5/*utf16*/, {0xee,0x8e,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfbf9/*gb2312*/, 0xe3a6/*utf16*/, {0xee,0x8e,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfbfa/*gb2312*/, 0xe3a7/*utf16*/, {0xee,0x8e,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfbfb/*gb2312*/, 0xe3a8/*utf16*/, {0xee,0x8e,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfbfc/*gb2312*/, 0xe3a9/*utf16*/, {0xee,0x8e,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfbfd/*gb2312*/, 0xe3aa/*utf16*/, {0xee,0x8e,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfbfe/*gb2312*/, 0xe3ab/*utf16*/, {0xee,0x8e,0xab}/*utf8*/, 3/*utf8 len*/},{0xfca1/*gb2312*/, 0xe3ac/*utf16*/, {0xee,0x8e,0xac}/*utf8*/, 3/*utf8 len*/},{0xfca2/*gb2312*/, 0xe3ad/*utf16*/, {0xee,0x8e,0xad}/*utf8*/, 3/*utf8 len*/},{0xfca3/*gb2312*/, 0xe3ae/*utf16*/, {0xee,0x8e,0xae}/*utf8*/, 3/*utf8 len*/},{0xfca4/*gb2312*/, 0xe3af/*utf16*/, {0xee,0x8e,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfca5/*gb2312*/, 0xe3b0/*utf16*/, {0xee,0x8e,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfca6/*gb2312*/, 0xe3b1/*utf16*/, {0xee,0x8e,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfca7/*gb2312*/, 0xe3b2/*utf16*/, {0xee,0x8e,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfca8/*gb2312*/, 0xe3b3/*utf16*/, {0xee,0x8e,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfca9/*gb2312*/, 0xe3b4/*utf16*/, {0xee,0x8e,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfcaa/*gb2312*/, 0xe3b5/*utf16*/, {0xee,0x8e,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfcab/*gb2312*/, 0xe3b6/*utf16*/, {0xee,0x8e,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfcac/*gb2312*/, 0xe3b7/*utf16*/, {0xee,0x8e,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfcad/*gb2312*/, 0xe3b8/*utf16*/, {0xee,0x8e,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfcae/*gb2312*/, 0xe3b9/*utf16*/, {0xee,0x8e,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfcaf/*gb2312*/, 0xe3ba/*utf16*/, {0xee,0x8e,0xba}/*utf8*/, 3/*utf8 len*/},{0xfcb0/*gb2312*/, 0xe3bb/*utf16*/, {0xee,0x8e,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfcb1/*gb2312*/, 0xe3bc/*utf16*/, {0xee,0x8e,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfcb2/*gb2312*/, 0xe3bd/*utf16*/, {0xee,0x8e,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfcb3/*gb2312*/, 0xe3be/*utf16*/, {0xee,0x8e,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfcb4/*gb2312*/, 0xe3bf/*utf16*/, {0xee,0x8e,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfcb5/*gb2312*/, 0xe3c0/*utf16*/, {0xee,0x8f,0x80}/*utf8*/, 3/*utf8 len*/},{0xfcb6/*gb2312*/, 0xe3c1/*utf16*/, {0xee,0x8f,0x81}/*utf8*/, 3/*utf8 len*/},{0xfcb7/*gb2312*/, 0xe3c2/*utf16*/, {0xee,0x8f,0x82}/*utf8*/, 3/*utf8 len*/},{0xfcb8/*gb2312*/, 0xe3c3/*utf16*/, {0xee,0x8f,0x83}/*utf8*/, 3/*utf8 len*/},{0xfcb9/*gb2312*/, 0xe3c4/*utf16*/, {0xee,0x8f,0x84}/*utf8*/, 3/*utf8 len*/},{0xfcba/*gb2312*/, 0xe3c5/*utf16*/, {0xee,0x8f,0x85}/*utf8*/, 3/*utf8 len*/},{0xfcbb/*gb2312*/, 0xe3c6/*utf16*/, {0xee,0x8f,0x86}/*utf8*/, 3/*utf8 len*/},{0xfcbc/*gb2312*/, 0xe3c7/*utf16*/, {0xee,0x8f,0x87}/*utf8*/, 3/*utf8 len*/},{0xfcbd/*gb2312*/, 0xe3c8/*utf16*/, {0xee,0x8f,0x88}/*utf8*/, 3/*utf8 len*/},{0xfcbe/*gb2312*/, 0xe3c9/*utf16*/, {0xee,0x8f,0x89}/*utf8*/, 3/*utf8 len*/},{0xfcbf/*gb2312*/, 0xe3ca/*utf16*/, {0xee,0x8f,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfcc0/*gb2312*/, 0xe3cb/*utf16*/, {0xee,0x8f,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfcc1/*gb2312*/, 0xe3cc/*utf16*/, {0xee,0x8f,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfcc2/*gb2312*/, 0xe3cd/*utf16*/, {0xee,0x8f,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfcc3/*gb2312*/, 0xe3ce/*utf16*/, {0xee,0x8f,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfcc4/*gb2312*/, 0xe3cf/*utf16*/, {0xee,0x8f,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfcc5/*gb2312*/, 0xe3d0/*utf16*/, {0xee,0x8f,0x90}/*utf8*/, 3/*utf8 len*/},{0xfcc6/*gb2312*/, 0xe3d1/*utf16*/, {0xee,0x8f,0x91}/*utf8*/, 3/*utf8 len*/},{0xfcc7/*gb2312*/, 0xe3d2/*utf16*/, {0xee,0x8f,0x92}/*utf8*/, 3/*utf8 len*/},{0xfcc8/*gb2312*/, 0xe3d3/*utf16*/, {0xee,0x8f,0x93}/*utf8*/, 3/*utf8 len*/},{0xfcc9/*gb2312*/, 0xe3d4/*utf16*/, {0xee,0x8f,0x94}/*utf8*/, 3/*utf8 len*/},{0xfcca/*gb2312*/, 0xe3d5/*utf16*/, {0xee,0x8f,0x95}/*utf8*/, 3/*utf8 len*/},{0xfccb/*gb2312*/, 0xe3d6/*utf16*/, {0xee,0x8f,0x96}/*utf8*/, 3/*utf8 len*/},{0xfccc/*gb2312*/, 0xe3d7/*utf16*/, {0xee,0x8f,0x97}/*utf8*/, 3/*utf8 len*/},{0xfccd/*gb2312*/, 0xe3d8/*utf16*/, {0xee,0x8f,0x98}/*utf8*/, 3/*utf8 len*/},{0xfcce/*gb2312*/, 0xe3d9/*utf16*/, {0xee,0x8f,0x99}/*utf8*/, 3/*utf8 len*/},{0xfccf/*gb2312*/, 0xe3da/*utf16*/, {0xee,0x8f,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfcd0/*gb2312*/, 0xe3db/*utf16*/, {0xee,0x8f,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfcd1/*gb2312*/, 0xe3dc/*utf16*/, {0xee,0x8f,0x9c}/*utf8*/, 3/*utf8 len*/},{0xfcd2/*gb2312*/, 0xe3dd/*utf16*/, {0xee,0x8f,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfcd3/*gb2312*/, 0xe3de/*utf16*/, {0xee,0x8f,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfcd4/*gb2312*/, 0xe3df/*utf16*/, {0xee,0x8f,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfcd5/*gb2312*/, 0xe3e0/*utf16*/, {0xee,0x8f,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfcd6/*gb2312*/, 0xe3e1/*utf16*/, {0xee,0x8f,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfcd7/*gb2312*/, 0xe3e2/*utf16*/, {0xee,0x8f,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfcd8/*gb2312*/, 0xe3e3/*utf16*/, {0xee,0x8f,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfcd9/*gb2312*/, 0xe3e4/*utf16*/, {0xee,0x8f,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfcda/*gb2312*/, 0xe3e5/*utf16*/, {0xee,0x8f,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfcdb/*gb2312*/, 0xe3e6/*utf16*/, {0xee,0x8f,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfcdc/*gb2312*/, 0xe3e7/*utf16*/, {0xee,0x8f,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfcdd/*gb2312*/, 0xe3e8/*utf16*/, {0xee,0x8f,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfcde/*gb2312*/, 0xe3e9/*utf16*/, {0xee,0x8f,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfcdf/*gb2312*/, 0xe3ea/*utf16*/, {0xee,0x8f,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfce0/*gb2312*/, 0xe3eb/*utf16*/, {0xee,0x8f,0xab}/*utf8*/, 3/*utf8 len*/},{0xfce1/*gb2312*/, 0xe3ec/*utf16*/, {0xee,0x8f,0xac}/*utf8*/, 3/*utf8 len*/},{0xfce2/*gb2312*/, 0xe3ed/*utf16*/, {0xee,0x8f,0xad}/*utf8*/, 3/*utf8 len*/},{0xfce3/*gb2312*/, 0xe3ee/*utf16*/, {0xee,0x8f,0xae}/*utf8*/, 3/*utf8 len*/},{0xfce4/*gb2312*/, 0xe3ef/*utf16*/, {0xee,0x8f,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfce5/*gb2312*/, 0xe3f0/*utf16*/, {0xee,0x8f,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfce6/*gb2312*/, 0xe3f1/*utf16*/, {0xee,0x8f,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfce7/*gb2312*/, 0xe3f2/*utf16*/, {0xee,0x8f,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfce8/*gb2312*/, 0xe3f3/*utf16*/, {0xee,0x8f,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfce9/*gb2312*/, 0xe3f4/*utf16*/, {0xee,0x8f,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfcea/*gb2312*/, 0xe3f5/*utf16*/, {0xee,0x8f,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfceb/*gb2312*/, 0xe3f6/*utf16*/, {0xee,0x8f,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfcec/*gb2312*/, 0xe3f7/*utf16*/, {0xee,0x8f,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfced/*gb2312*/, 0xe3f8/*utf16*/, {0xee,0x8f,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfcee/*gb2312*/, 0xe3f9/*utf16*/, {0xee,0x8f,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfcef/*gb2312*/, 0xe3fa/*utf16*/, {0xee,0x8f,0xba}/*utf8*/, 3/*utf8 len*/},{0xfcf0/*gb2312*/, 0xe3fb/*utf16*/, {0xee,0x8f,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfcf1/*gb2312*/, 0xe3fc/*utf16*/, {0xee,0x8f,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfcf2/*gb2312*/, 0xe3fd/*utf16*/, {0xee,0x8f,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfcf3/*gb2312*/, 0xe3fe/*utf16*/, {0xee,0x8f,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfcf4/*gb2312*/, 0xe3ff/*utf16*/, {0xee,0x8f,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfcf5/*gb2312*/, 0xe400/*utf16*/, {0xee,0x90,0x80}/*utf8*/, 3/*utf8 len*/},{0xfcf6/*gb2312*/, 0xe401/*utf16*/, {0xee,0x90,0x81}/*utf8*/, 3/*utf8 len*/},{0xfcf7/*gb2312*/, 0xe402/*utf16*/, {0xee,0x90,0x82}/*utf8*/, 3/*utf8 len*/},{0xfcf8/*gb2312*/, 0xe403/*utf16*/, {0xee,0x90,0x83}/*utf8*/, 3/*utf8 len*/},{0xfcf9/*gb2312*/, 0xe404/*utf16*/, {0xee,0x90,0x84}/*utf8*/, 3/*utf8 len*/},{0xfcfa/*gb2312*/, 0xe405/*utf16*/, {0xee,0x90,0x85}/*utf8*/, 3/*utf8 len*/},{0xfcfb/*gb2312*/, 0xe406/*utf16*/, {0xee,0x90,0x86}/*utf8*/, 3/*utf8 len*/},{0xfcfc/*gb2312*/, 0xe407/*utf16*/, {0xee,0x90,0x87}/*utf8*/, 3/*utf8 len*/},{0xfcfd/*gb2312*/, 0xe408/*utf16*/, {0xee,0x90,0x88}/*utf8*/, 3/*utf8 len*/},{0xfcfe/*gb2312*/, 0xe409/*utf16*/, {0xee,0x90,0x89}/*utf8*/, 3/*utf8 len*/},{0xfda1/*gb2312*/, 0xe40a/*utf16*/, {0xee,0x90,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfda2/*gb2312*/, 0xe40b/*utf16*/, {0xee,0x90,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfda3/*gb2312*/, 0xe40c/*utf16*/, {0xee,0x90,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfda4/*gb2312*/, 0xe40d/*utf16*/, {0xee,0x90,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfda5/*gb2312*/, 0xe40e/*utf16*/, {0xee,0x90,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfda6/*gb2312*/, 0xe40f/*utf16*/, {0xee,0x90,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfda7/*gb2312*/, 0xe410/*utf16*/, {0xee,0x90,0x90}/*utf8*/, 3/*utf8 len*/},{0xfda8/*gb2312*/, 0xe411/*utf16*/, {0xee,0x90,0x91}/*utf8*/, 3/*utf8 len*/},{0xfda9/*gb2312*/, 0xe412/*utf16*/, {0xee,0x90,0x92}/*utf8*/, 3/*utf8 len*/},{0xfdaa/*gb2312*/, 0xe413/*utf16*/, {0xee,0x90,0x93}/*utf8*/, 3/*utf8 len*/},{0xfdab/*gb2312*/, 0xe414/*utf16*/, {0xee,0x90,0x94}/*utf8*/, 3/*utf8 len*/},{0xfdac/*gb2312*/, 0xe415/*utf16*/, {0xee,0x90,0x95}/*utf8*/, 3/*utf8 len*/},{0xfdad/*gb2312*/, 0xe416/*utf16*/, {0xee,0x90,0x96}/*utf8*/, 3/*utf8 len*/},{0xfdae/*gb2312*/, 0xe417/*utf16*/, {0xee,0x90,0x97}/*utf8*/, 3/*utf8 len*/},{0xfdaf/*gb2312*/, 0xe418/*utf16*/, {0xee,0x90,0x98}/*utf8*/, 3/*utf8 len*/},{0xfdb0/*gb2312*/, 0xe419/*utf16*/, {0xee,0x90,0x99}/*utf8*/, 3/*utf8 len*/},{0xfdb1/*gb2312*/, 0xe41a/*utf16*/, {0xee,0x90,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfdb2/*gb2312*/, 0xe41b/*utf16*/, {0xee,0x90,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfdb3/*gb2312*/, 0xe41c/*utf16*/, {0xee,0x90,0x9c}/*utf8*/, 3/*utf8 len*/},{0xfdb4/*gb2312*/, 0xe41d/*utf16*/, {0xee,0x90,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfdb5/*gb2312*/, 0xe41e/*utf16*/, {0xee,0x90,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfdb6/*gb2312*/, 0xe41f/*utf16*/, {0xee,0x90,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfdb7/*gb2312*/, 0xe420/*utf16*/, {0xee,0x90,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfdb8/*gb2312*/, 0xe421/*utf16*/, {0xee,0x90,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfdb9/*gb2312*/, 0xe422/*utf16*/, {0xee,0x90,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfdba/*gb2312*/, 0xe423/*utf16*/, {0xee,0x90,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfdbb/*gb2312*/, 0xe424/*utf16*/, {0xee,0x90,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfdbc/*gb2312*/, 0xe425/*utf16*/, {0xee,0x90,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfdbd/*gb2312*/, 0xe426/*utf16*/, {0xee,0x90,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfdbe/*gb2312*/, 0xe427/*utf16*/, {0xee,0x90,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfdbf/*gb2312*/, 0xe428/*utf16*/, {0xee,0x90,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfdc0/*gb2312*/, 0xe429/*utf16*/, {0xee,0x90,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfdc1/*gb2312*/, 0xe42a/*utf16*/, {0xee,0x90,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfdc2/*gb2312*/, 0xe42b/*utf16*/, {0xee,0x90,0xab}/*utf8*/, 3/*utf8 len*/},{0xfdc3/*gb2312*/, 0xe42c/*utf16*/, {0xee,0x90,0xac}/*utf8*/, 3/*utf8 len*/},{0xfdc4/*gb2312*/, 0xe42d/*utf16*/, {0xee,0x90,0xad}/*utf8*/, 3/*utf8 len*/},{0xfdc5/*gb2312*/, 0xe42e/*utf16*/, {0xee,0x90,0xae}/*utf8*/, 3/*utf8 len*/},{0xfdc6/*gb2312*/, 0xe42f/*utf16*/, {0xee,0x90,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfdc7/*gb2312*/, 0xe430/*utf16*/, {0xee,0x90,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfdc8/*gb2312*/, 0xe431/*utf16*/, {0xee,0x90,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfdc9/*gb2312*/, 0xe432/*utf16*/, {0xee,0x90,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfdca/*gb2312*/, 0xe433/*utf16*/, {0xee,0x90,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfdcb/*gb2312*/, 0xe434/*utf16*/, {0xee,0x90,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfdcc/*gb2312*/, 0xe435/*utf16*/, {0xee,0x90,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfdcd/*gb2312*/, 0xe436/*utf16*/, {0xee,0x90,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfdce/*gb2312*/, 0xe437/*utf16*/, {0xee,0x90,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfdcf/*gb2312*/, 0xe438/*utf16*/, {0xee,0x90,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfdd0/*gb2312*/, 0xe439/*utf16*/, {0xee,0x90,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfdd1/*gb2312*/, 0xe43a/*utf16*/, {0xee,0x90,0xba}/*utf8*/, 3/*utf8 len*/},{0xfdd2/*gb2312*/, 0xe43b/*utf16*/, {0xee,0x90,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfdd3/*gb2312*/, 0xe43c/*utf16*/, {0xee,0x90,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfdd4/*gb2312*/, 0xe43d/*utf16*/, {0xee,0x90,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfdd5/*gb2312*/, 0xe43e/*utf16*/, {0xee,0x90,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfdd6/*gb2312*/, 0xe43f/*utf16*/, {0xee,0x90,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfdd7/*gb2312*/, 0xe440/*utf16*/, {0xee,0x91,0x80}/*utf8*/, 3/*utf8 len*/},{0xfdd8/*gb2312*/, 0xe441/*utf16*/, {0xee,0x91,0x81}/*utf8*/, 3/*utf8 len*/},{0xfdd9/*gb2312*/, 0xe442/*utf16*/, {0xee,0x91,0x82}/*utf8*/, 3/*utf8 len*/},{0xfdda/*gb2312*/, 0xe443/*utf16*/, {0xee,0x91,0x83}/*utf8*/, 3/*utf8 len*/},{0xfddb/*gb2312*/, 0xe444/*utf16*/, {0xee,0x91,0x84}/*utf8*/, 3/*utf8 len*/},{0xfddc/*gb2312*/, 0xe445/*utf16*/, {0xee,0x91,0x85}/*utf8*/, 3/*utf8 len*/},{0xfddd/*gb2312*/, 0xe446/*utf16*/, {0xee,0x91,0x86}/*utf8*/, 3/*utf8 len*/},{0xfdde/*gb2312*/, 0xe447/*utf16*/, {0xee,0x91,0x87}/*utf8*/, 3/*utf8 len*/},{0xfddf/*gb2312*/, 0xe448/*utf16*/, {0xee,0x91,0x88}/*utf8*/, 3/*utf8 len*/},{0xfde0/*gb2312*/, 0xe449/*utf16*/, {0xee,0x91,0x89}/*utf8*/, 3/*utf8 len*/},{0xfde1/*gb2312*/, 0xe44a/*utf16*/, {0xee,0x91,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfde2/*gb2312*/, 0xe44b/*utf16*/, {0xee,0x91,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfde3/*gb2312*/, 0xe44c/*utf16*/, {0xee,0x91,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfde4/*gb2312*/, 0xe44d/*utf16*/, {0xee,0x91,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfde5/*gb2312*/, 0xe44e/*utf16*/, {0xee,0x91,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfde6/*gb2312*/, 0xe44f/*utf16*/, {0xee,0x91,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfde7/*gb2312*/, 0xe450/*utf16*/, {0xee,0x91,0x90}/*utf8*/, 3/*utf8 len*/},{0xfde8/*gb2312*/, 0xe451/*utf16*/, {0xee,0x91,0x91}/*utf8*/, 3/*utf8 len*/},{0xfde9/*gb2312*/, 0xe452/*utf16*/, {0xee,0x91,0x92}/*utf8*/, 3/*utf8 len*/},{0xfdea/*gb2312*/, 0xe453/*utf16*/, {0xee,0x91,0x93}/*utf8*/, 3/*utf8 len*/},{0xfdeb/*gb2312*/, 0xe454/*utf16*/, {0xee,0x91,0x94}/*utf8*/, 3/*utf8 len*/},{0xfdec/*gb2312*/, 0xe455/*utf16*/, {0xee,0x91,0x95}/*utf8*/, 3/*utf8 len*/},{0xfded/*gb2312*/, 0xe456/*utf16*/, {0xee,0x91,0x96}/*utf8*/, 3/*utf8 len*/},{0xfdee/*gb2312*/, 0xe457/*utf16*/, {0xee,0x91,0x97}/*utf8*/, 3/*utf8 len*/},{0xfdef/*gb2312*/, 0xe458/*utf16*/, {0xee,0x91,0x98}/*utf8*/, 3/*utf8 len*/},{0xfdf0/*gb2312*/, 0xe459/*utf16*/, {0xee,0x91,0x99}/*utf8*/, 3/*utf8 len*/},{0xfdf1/*gb2312*/, 0xe45a/*utf16*/, {0xee,0x91,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfdf2/*gb2312*/, 0xe45b/*utf16*/, {0xee,0x91,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfdf3/*gb2312*/, 0xe45c/*utf16*/, {0xee,0x91,0x9c}/*utf8*/, 3/*utf8 len*/},{0xfdf4/*gb2312*/, 0xe45d/*utf16*/, {0xee,0x91,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfdf5/*gb2312*/, 0xe45e/*utf16*/, {0xee,0x91,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfdf6/*gb2312*/, 0xe45f/*utf16*/, {0xee,0x91,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfdf7/*gb2312*/, 0xe460/*utf16*/, {0xee,0x91,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfdf8/*gb2312*/, 0xe461/*utf16*/, {0xee,0x91,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfdf9/*gb2312*/, 0xe462/*utf16*/, {0xee,0x91,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfdfa/*gb2312*/, 0xe463/*utf16*/, {0xee,0x91,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfdfb/*gb2312*/, 0xe464/*utf16*/, {0xee,0x91,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfdfc/*gb2312*/, 0xe465/*utf16*/, {0xee,0x91,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfdfd/*gb2312*/, 0xe466/*utf16*/, {0xee,0x91,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfdfe/*gb2312*/, 0xe467/*utf16*/, {0xee,0x91,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfea1/*gb2312*/, 0xe468/*utf16*/, {0xee,0x91,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfea2/*gb2312*/, 0xe469/*utf16*/, {0xee,0x91,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfea3/*gb2312*/, 0xe46a/*utf16*/, {0xee,0x91,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfea4/*gb2312*/, 0xe46b/*utf16*/, {0xee,0x91,0xab}/*utf8*/, 3/*utf8 len*/},{0xfea5/*gb2312*/, 0xe46c/*utf16*/, {0xee,0x91,0xac}/*utf8*/, 3/*utf8 len*/},{0xfea6/*gb2312*/, 0xe46d/*utf16*/, {0xee,0x91,0xad}/*utf8*/, 3/*utf8 len*/},{0xfea7/*gb2312*/, 0xe46e/*utf16*/, {0xee,0x91,0xae}/*utf8*/, 3/*utf8 len*/},{0xfea8/*gb2312*/, 0xe46f/*utf16*/, {0xee,0x91,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfea9/*gb2312*/, 0xe470/*utf16*/, {0xee,0x91,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfeaa/*gb2312*/, 0xe471/*utf16*/, {0xee,0x91,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfeab/*gb2312*/, 0xe472/*utf16*/, {0xee,0x91,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfeac/*gb2312*/, 0xe473/*utf16*/, {0xee,0x91,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfead/*gb2312*/, 0xe474/*utf16*/, {0xee,0x91,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfeae/*gb2312*/, 0xe475/*utf16*/, {0xee,0x91,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfeaf/*gb2312*/, 0xe476/*utf16*/, {0xee,0x91,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfeb0/*gb2312*/, 0xe477/*utf16*/, {0xee,0x91,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfeb1/*gb2312*/, 0xe478/*utf16*/, {0xee,0x91,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfeb2/*gb2312*/, 0xe479/*utf16*/, {0xee,0x91,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfeb3/*gb2312*/, 0xe47a/*utf16*/, {0xee,0x91,0xba}/*utf8*/, 3/*utf8 len*/},{0xfeb4/*gb2312*/, 0xe47b/*utf16*/, {0xee,0x91,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfeb5/*gb2312*/, 0xe47c/*utf16*/, {0xee,0x91,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfeb6/*gb2312*/, 0xe47d/*utf16*/, {0xee,0x91,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfeb7/*gb2312*/, 0xe47e/*utf16*/, {0xee,0x91,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfeb8/*gb2312*/, 0xe47f/*utf16*/, {0xee,0x91,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfeb9/*gb2312*/, 0xe480/*utf16*/, {0xee,0x92,0x80}/*utf8*/, 3/*utf8 len*/},{0xfeba/*gb2312*/, 0xe481/*utf16*/, {0xee,0x92,0x81}/*utf8*/, 3/*utf8 len*/},{0xfebb/*gb2312*/, 0xe482/*utf16*/, {0xee,0x92,0x82}/*utf8*/, 3/*utf8 len*/},{0xfebc/*gb2312*/, 0xe483/*utf16*/, {0xee,0x92,0x83}/*utf8*/, 3/*utf8 len*/},{0xfebd/*gb2312*/, 0xe484/*utf16*/, {0xee,0x92,0x84}/*utf8*/, 3/*utf8 len*/},{0xfebe/*gb2312*/, 0xe485/*utf16*/, {0xee,0x92,0x85}/*utf8*/, 3/*utf8 len*/},{0xfebf/*gb2312*/, 0xe486/*utf16*/, {0xee,0x92,0x86}/*utf8*/, 3/*utf8 len*/},{0xfec0/*gb2312*/, 0xe487/*utf16*/, {0xee,0x92,0x87}/*utf8*/, 3/*utf8 len*/},{0xfec1/*gb2312*/, 0xe488/*utf16*/, {0xee,0x92,0x88}/*utf8*/, 3/*utf8 len*/},{0xfec2/*gb2312*/, 0xe489/*utf16*/, {0xee,0x92,0x89}/*utf8*/, 3/*utf8 len*/},{0xfec3/*gb2312*/, 0xe48a/*utf16*/, {0xee,0x92,0x8a}/*utf8*/, 3/*utf8 len*/},{0xfec4/*gb2312*/, 0xe48b/*utf16*/, {0xee,0x92,0x8b}/*utf8*/, 3/*utf8 len*/},{0xfec5/*gb2312*/, 0xe48c/*utf16*/, {0xee,0x92,0x8c}/*utf8*/, 3/*utf8 len*/},{0xfec6/*gb2312*/, 0xe48d/*utf16*/, {0xee,0x92,0x8d}/*utf8*/, 3/*utf8 len*/},{0xfec7/*gb2312*/, 0xe48e/*utf16*/, {0xee,0x92,0x8e}/*utf8*/, 3/*utf8 len*/},{0xfec8/*gb2312*/, 0xe48f/*utf16*/, {0xee,0x92,0x8f}/*utf8*/, 3/*utf8 len*/},{0xfec9/*gb2312*/, 0xe490/*utf16*/, {0xee,0x92,0x90}/*utf8*/, 3/*utf8 len*/},{0xfeca/*gb2312*/, 0xe491/*utf16*/, {0xee,0x92,0x91}/*utf8*/, 3/*utf8 len*/},{0xfecb/*gb2312*/, 0xe492/*utf16*/, {0xee,0x92,0x92}/*utf8*/, 3/*utf8 len*/},{0xfecc/*gb2312*/, 0xe493/*utf16*/, {0xee,0x92,0x93}/*utf8*/, 3/*utf8 len*/},{0xfecd/*gb2312*/, 0xe494/*utf16*/, {0xee,0x92,0x94}/*utf8*/, 3/*utf8 len*/},{0xfece/*gb2312*/, 0xe495/*utf16*/, {0xee,0x92,0x95}/*utf8*/, 3/*utf8 len*/},{0xfecf/*gb2312*/, 0xe496/*utf16*/, {0xee,0x92,0x96}/*utf8*/, 3/*utf8 len*/},{0xfed0/*gb2312*/, 0xe497/*utf16*/, {0xee,0x92,0x97}/*utf8*/, 3/*utf8 len*/},{0xfed1/*gb2312*/, 0xe498/*utf16*/, {0xee,0x92,0x98}/*utf8*/, 3/*utf8 len*/},{0xfed2/*gb2312*/, 0xe499/*utf16*/, {0xee,0x92,0x99}/*utf8*/, 3/*utf8 len*/},{0xfed3/*gb2312*/, 0xe49a/*utf16*/, {0xee,0x92,0x9a}/*utf8*/, 3/*utf8 len*/},{0xfed4/*gb2312*/, 0xe49b/*utf16*/, {0xee,0x92,0x9b}/*utf8*/, 3/*utf8 len*/},{0xfed5/*gb2312*/, 0xe49c/*utf16*/, {0xee,0x92,0x9c}/*utf8*/, 3/*utf8 len*/},{0xfed6/*gb2312*/, 0xe49d/*utf16*/, {0xee,0x92,0x9d}/*utf8*/, 3/*utf8 len*/},{0xfed7/*gb2312*/, 0xe49e/*utf16*/, {0xee,0x92,0x9e}/*utf8*/, 3/*utf8 len*/},{0xfed8/*gb2312*/, 0xe49f/*utf16*/, {0xee,0x92,0x9f}/*utf8*/, 3/*utf8 len*/},{0xfed9/*gb2312*/, 0xe4a0/*utf16*/, {0xee,0x92,0xa0}/*utf8*/, 3/*utf8 len*/},{0xfeda/*gb2312*/, 0xe4a1/*utf16*/, {0xee,0x92,0xa1}/*utf8*/, 3/*utf8 len*/},{0xfedb/*gb2312*/, 0xe4a2/*utf16*/, {0xee,0x92,0xa2}/*utf8*/, 3/*utf8 len*/},{0xfedc/*gb2312*/, 0xe4a3/*utf16*/, {0xee,0x92,0xa3}/*utf8*/, 3/*utf8 len*/},{0xfedd/*gb2312*/, 0xe4a4/*utf16*/, {0xee,0x92,0xa4}/*utf8*/, 3/*utf8 len*/},{0xfede/*gb2312*/, 0xe4a5/*utf16*/, {0xee,0x92,0xa5}/*utf8*/, 3/*utf8 len*/},{0xfedf/*gb2312*/, 0xe4a6/*utf16*/, {0xee,0x92,0xa6}/*utf8*/, 3/*utf8 len*/},{0xfee0/*gb2312*/, 0xe4a7/*utf16*/, {0xee,0x92,0xa7}/*utf8*/, 3/*utf8 len*/},{0xfee1/*gb2312*/, 0xe4a8/*utf16*/, {0xee,0x92,0xa8}/*utf8*/, 3/*utf8 len*/},{0xfee2/*gb2312*/, 0xe4a9/*utf16*/, {0xee,0x92,0xa9}/*utf8*/, 3/*utf8 len*/},{0xfee3/*gb2312*/, 0xe4aa/*utf16*/, {0xee,0x92,0xaa}/*utf8*/, 3/*utf8 len*/},{0xfee4/*gb2312*/, 0xe4ab/*utf16*/, {0xee,0x92,0xab}/*utf8*/, 3/*utf8 len*/},{0xfee5/*gb2312*/, 0xe4ac/*utf16*/, {0xee,0x92,0xac}/*utf8*/, 3/*utf8 len*/},{0xfee6/*gb2312*/, 0xe4ad/*utf16*/, {0xee,0x92,0xad}/*utf8*/, 3/*utf8 len*/},{0xfee7/*gb2312*/, 0xe4ae/*utf16*/, {0xee,0x92,0xae}/*utf8*/, 3/*utf8 len*/},{0xfee8/*gb2312*/, 0xe4af/*utf16*/, {0xee,0x92,0xaf}/*utf8*/, 3/*utf8 len*/},{0xfee9/*gb2312*/, 0xe4b0/*utf16*/, {0xee,0x92,0xb0}/*utf8*/, 3/*utf8 len*/},{0xfeea/*gb2312*/, 0xe4b1/*utf16*/, {0xee,0x92,0xb1}/*utf8*/, 3/*utf8 len*/},{0xfeeb/*gb2312*/, 0xe4b2/*utf16*/, {0xee,0x92,0xb2}/*utf8*/, 3/*utf8 len*/},{0xfeec/*gb2312*/, 0xe4b3/*utf16*/, {0xee,0x92,0xb3}/*utf8*/, 3/*utf8 len*/},{0xfeed/*gb2312*/, 0xe4b4/*utf16*/, {0xee,0x92,0xb4}/*utf8*/, 3/*utf8 len*/},{0xfeee/*gb2312*/, 0xe4b5/*utf16*/, {0xee,0x92,0xb5}/*utf8*/, 3/*utf8 len*/},{0xfeef/*gb2312*/, 0xe4b6/*utf16*/, {0xee,0x92,0xb6}/*utf8*/, 3/*utf8 len*/},{0xfef0/*gb2312*/, 0xe4b7/*utf16*/, {0xee,0x92,0xb7}/*utf8*/, 3/*utf8 len*/},{0xfef1/*gb2312*/, 0xe4b8/*utf16*/, {0xee,0x92,0xb8}/*utf8*/, 3/*utf8 len*/},{0xfef2/*gb2312*/, 0xe4b9/*utf16*/, {0xee,0x92,0xb9}/*utf8*/, 3/*utf8 len*/},{0xfef3/*gb2312*/, 0xe4ba/*utf16*/, {0xee,0x92,0xba}/*utf8*/, 3/*utf8 len*/},{0xfef4/*gb2312*/, 0xe4bb/*utf16*/, {0xee,0x92,0xbb}/*utf8*/, 3/*utf8 len*/},{0xfef5/*gb2312*/, 0xe4bc/*utf16*/, {0xee,0x92,0xbc}/*utf8*/, 3/*utf8 len*/},{0xfef6/*gb2312*/, 0xe4bd/*utf16*/, {0xee,0x92,0xbd}/*utf8*/, 3/*utf8 len*/},{0xfef7/*gb2312*/, 0xe4be/*utf16*/, {0xee,0x92,0xbe}/*utf8*/, 3/*utf8 len*/},{0xfef8/*gb2312*/, 0xe4bf/*utf16*/, {0xee,0x92,0xbf}/*utf8*/, 3/*utf8 len*/},{0xfef9/*gb2312*/, 0xe4c0/*utf16*/, {0xee,0x93,0x80}/*utf8*/, 3/*utf8 len*/},{0xfefa/*gb2312*/, 0xe4c1/*utf16*/, {0xee,0x93,0x81}/*utf8*/, 3/*utf8 len*/},{0xfefb/*gb2312*/, 0xe4c2/*utf16*/, {0xee,0x93,0x82}/*utf8*/, 3/*utf8 len*/},{0xfefc/*gb2312*/, 0xe4c3/*utf16*/, {0xee,0x93,0x83}/*utf8*/, 3/*utf8 len*/},{0xfefd/*gb2312*/, 0xe4c4/*utf16*/, {0xee,0x93,0x84}/*utf8*/, 3/*utf8 len*/},{0xfefe/*gb2312*/, 0xe4c5/*utf16*/, {0xee,0x93,0x85}/*utf8*/, 3/*utf8 len*/},
};#define UTF8_ONE_START      (0xOOO1)
#define UTF8_ONE_END        (0x007F)
#define UTF8_TWO_START      (0x0080)
#define UTF8_TWO_END        (0x07FF)
#define UTF8_THREE_START    (0x0800)
#define UTF8_THREE_END      (0xFFFF)static inline int UTF16ToUTF8(uint16 utf16, uchar* utf8buf, uchar* utf8buf_len/*in_out*/)
{if(utf8buf && *utf8buf_len >= 3){if (utf16 <= UTF8_ONE_END){//0000 - 007F  0xxxxxxxutf8buf[0]=utf16;*utf8buf_len = 1;return *utf8buf_len;}else if(utf16 >= UTF8_TWO_START && utf16 <= UTF8_TWO_END){//0080 - 07FF 110xxxxx 10xxxxxxutf8buf[0] = (utf16 >> 6)   | 0xC0;utf8buf[1] = (utf16 & 0x3F) | 0x80;*utf8buf_len = 2;return *utf8buf_len;}else if(utf16 >= UTF8_THREE_START && utf16 <= UTF8_THREE_END){//0800 - FFFF 1110xxxx 10xxxxxx 10xxxxxxutf8buf[0] = (utf16 >> 12) | 0xE0;utf8buf[1] = ((utf16 >> 6) & 0x3F) | 0x80;utf8buf[2] = (utf16 & 0x3F) | 0x80;*utf8buf_len = 3;return *utf8buf_len;}}return 0;
}//统计文本中非ASCii编码的部分,按照GB2312编码时占用的大小(字节数)
/*
判断依据:每个汉字的gb2312字符编码都占用两字节,高字节为区码+0xA0,低字节为位码+0xA0,
所以,两个字节的第一bit都是1
*/
static uint32 countGB2312(const uchar * buff,int buff_len,int * utf8_len/*out*/,int *ascii_len/*out*/)
{unsigned int counter = 0;   uchar firstChar, secondChar; int i; *ascii_len = 0;*utf8_len = 0;//gb2312编码时,对应的utf8编码应该为多长for (i = 0; i < buff_len-1; ++i)  {  firstChar = buff[i];  if (!(firstChar & 0x80)){(*ascii_len)++;continue;  }secondChar = buff[i];  if (firstChar >= 0xA1/*161*/ && firstChar <= 0xFE/*247*/ && secondChar>=0xA1/*161*/ && secondChar <= 0xFE/*254*/)  {  *utf8_len += gb2312utf8_codetbl[(firstChar-0xA1)*94 + (secondChar-0xA1)].utf8_len;counter+= 2;  ++i;  }  }  (*ascii_len) += (buff_len - i);return counter;
}//统计文本中非ASCii编码的部分,按照UTF8编码时占用的大小(字节数)
/*
判断依据:
1到4字节存储一个字符;
对于n字节的字符,第一个字节的前面n bit都设置为1,第n+1 bit设置为0,后面所有字节的前2 bit都设置为10;
剩下的没有提及的二进制位,全部用来表示这个字符的unicode码;
下表为编码规则,字母x表示可用的编码位:
-------------------------------------------------------------
unicode符号范围(十六进制) | utf-8编码方式(二进制)
-----------------------+-------------------------------------
0000 0000 - 0000 007f  | 0xxxxxxx
0000 0080 - 0000 07ff  | 110xxxxx 10xxxxxx
0000 0800 - 0000 ffff  | 1110xxxx 10xxxxxx 10xxxxxx
0001 0000 - 0010 ffff  | 11110xxx 10xxxxxx 10xxxxxx 10xxxxxx
-------------------------------------------------------------
*/
static uint32 countUTF8(const uchar * buff,int buff_len)
{uint32 counter = 0;uchar firstChar,secondChar,tmpHead;  int utf8_len;int pos;for (int i = 0; i < buff_len-1/*-1,???,因为不管是gb2312还是utf8,非ascii字符时,至少2字节存储*/; ++i)  {  firstChar = buff[i];  if (!(firstChar & 0x80))continue;  tmpHead = 0x80;  utf8_len = 0;while (firstChar & tmpHead)  {  ++ utf8_len;  tmpHead >>= 1;  }  if (utf8_len < 2 || utf8_len > 4)continue; //utf8最小长度为2,对大长度为3//缓冲区检测  if (i + (utf8_len -1/*如果该字符utf8编码剩下的字节数*/)>= buff_len)break;pos = 0;for (pos = 1; pos < utf8_len; ++pos)  {  secondChar = buff[i + pos];  if (!(secondChar & 0x80))break;  }  if (pos == utf8_len)  {  counter += utf8_len;  i += utf8_len-1;  }  }  return counter;
}//判断是否为gb2312编码
BOOL IsGB2312Codec(const uchar * buff,int buff_len,int *utf8_len,int* ascii_len)
{int test_utf8_len,test_ascii_len;uint32 test_gb2312_len  = countGB2312(buff,buff_len,&test_utf8_len,&test_ascii_len);uint32 test_utf8_len1   = countUTF8(buff,buff_len);if(utf8_len)*utf8_len   = test_utf8_len;if(ascii_len)*ascii_len  = test_ascii_len;if(test_utf8_len1 > test_gb2312_len){return FALSE;}else if(test_utf8_len1 == test_gb2312_len){if(test_utf8_len1 + test_ascii_len == buff_len)return FALSE;}return TRUE;
}//gb2312转换为utf8
int GB2312ToUTF8(const uchar* gb2312/*in*/,int gb2312_len/*in*/,uchar * utf8/*out*/,int * utf8_len/*in_out*/)
{int len = 0,i=0,index;uchar firstChar,secondChar,tmpHead;memset(utf8,0,sizeof(utf8_len));for(i=0;i<gb2312_len;i++){firstChar = gb2312[i];if(firstChar&0x80){i++;secondChar = gb2312[i];index = (firstChar-0xA1)*94 + (secondChar-0xA1);if(len + gb2312utf8_codetbl[index].utf8_len > *utf8_len)break;memcpy(utf8,gb2312utf8_codetbl[index].utf8,gb2312utf8_codetbl[index].utf8_len);utf8 += gb2312utf8_codetbl[index].utf8_len;len += gb2312utf8_codetbl[index].utf8_len;}else{*utf8 = firstChar;utf8++;len++;}}*utf8_len = len;return i;
}#if 1
//test
int main(int argc,char * argv[])
{if(argc<2){printf("USAGE:%s infile [outfile]\n",argv[0]);return -1;}FILE * fout = NULL;uchar * gb2312 = NULL;uchar * utf8 = NULL;FILE * fin = fopen(argv[1],"rb");if(!fin){printf("Open Input File Failed.\n");return -1;}do{if(argc>=3){fout = fopen(argv[2],"wb");if(!fout){printf("Open Output File Failed.\n");break;}fseek(fin,0,SEEK_END);int insize = ftell(fin);fseek(fin,0,SEEK_SET);gb2312 = new uchar[insize];if(!gb2312){printf("Out Of Memory 1.\n");break;}if(insize != fread(gb2312,1,insize,fin)){printf("Read Input File Failed.\n");break;}int utf8_len,ascii_len;if(IsGB2312Codec(gb2312, insize, &utf8_len, &ascii_len)){int utf8_buff_len = utf8_len + ascii_len + 1;utf8 = new uchar[utf8_buff_len];if(!utf8){printf("Out Of Memory 1.\n");break;}int len = GB2312ToUTF8(gb2312, insize, utf8 ,&utf8_buff_len);printf("INSIZE=%d,CONVERT SIZE=%d,OUTSIZE=%d\n",insize,len,utf8_buff_len);if(len > 0 && fout){fwrite(utf8,1,utf8_buff_len,fout);}printf("Convert Done.\n");}else {printf("Input File Is Not GB2312 Code File.\n");if(fout){fwrite(gb2312,1,insize,fout);}}}}while(0);if(fin)fclose(fin);if(fout)fclose(fout);if(gb2312)delete []gb2312;if(utf8)delete []utf8;return 0;
}#endif

本段代码要感谢

1:http://blog.csdn.net/realxie/article/details/7339954,判断编码主要参考这篇文章;

2:http://www.oschina.net/code/snippet_179574_15065,UTF16转UTF8主要参考这篇文章;

相关资源(未验证):《判断一个文本文件的编码格式》(主要针对windows下),《用C语言检测文本编码的方法 》(使用第三方库,嵌入式中不合适);

相关讨论《关于文件编码ANSI和UTF8判断,求方案》,

本代码linux下测试过,windows下请自行验证。

自动检测文本文件编码是否为GB2312(简体中文),并转换为UTF8编码,附一个GB2312全区对应的utf8编码码表相关推荐

  1. 自动检测TXT文件编码

    自动检测文本文件编码的代码(只能简单判断是UTF-8或不是UTF-8),因为一般除了UTF-8之外就是GBK,所以就设置默认为GBK. String charsetDetect(String path ...

  2. 计算机开机跳过硬盘检查,怎么取消开机自动检测硬盘磁盘检查,开机老是修复分区怎么办及原因...

    电脑使用长了,经常会出现各种问题,特别是正常关机情况下,系统每次开机时居然会自动检测硬盘,笔记本老是开机自检硬盘,就是扫描每一个分区检测错误,非常耽误时间,于是就想把自检硬盘关了,虽然想关了,但完全不 ...

  3. 006基于近似熵、递归量化分析和卷积神经网络的癫痫发作自动检测-2019

    Automatic Detection of Epileptic Seizure Based on Approximate Entropy, Recurrence Quantification Ana ...

  4. 如何检测文本文件的编码/代码页

    本文翻译自:How can I detect the encoding/codepage of a text file In our application, we receive text file ...

  5. Python使用chardet包自动检测编码

    chardet:charset detection 一旦自动检测出编码,就可以解码了. 八种文件打开方式 w:一旦打开文件,文件内容就清空了 r:只读方式打开 a:追加方式打开 r+:先读后写 以上四 ...

  6. scite自动检测文件编码

       ##########################文件开始fileDect.py############################# #encoding:utf8 # Detect fi ...

  7. 字符编码知识:Unicode、UTF-8、ASCII、GB2312等编码之间是如何转换的?

    字符编码知识:Unicode.UTF-8.ASCII.GB2312等编码之间是如何转换的? 字符编码是计算机技术的基石,想要熟练使用计算机,就必须懂得字符编码的知识.不注意的人可能对这个不在意,但这些 ...

  8. 亚马逊专家揭秘:如何建立自动检测乳腺癌的深度学习模型

    安妮 编译自 Insight Data Science 量子位出品 | 公众号 QbitAI 本文作者Sheng Weng,现亚马逊Alexa项目组数据专家,莱斯大学应用物理专业已毕业博士生,主要研究 ...

  9. 两款自动检测代码工具与插件,开源真香

    大家好,我是TJ 一个励志推荐10000款开源项目与工具的程序员 写完代码最麻烦的是什么?就是运行时出现bug再回头去改去修,如果有一款检测工具,能自动检测出代码中是否存在bug是不是对开发者来说,更 ...

最新文章

  1. 【PL/SQL】学习笔记 (7)光标的属性,一个会话中打开光标数的限制
  2. 【Linux C 多线程编程】互斥锁与条件变量
  3. vs2017 java sdk_系统无法找到Visual Studio 2017 ASP.NET核心项目
  4. python滚动文本框_调整滚动Tkinter文本框的大小
  5. 一文看懂专有网络和交换机的定义及关系
  6. Filter过滤器实现同一地址手机和电脑页面不同
  7. 神秘组织正在运行数百个恶意 Tor 中继
  8. android ble 经典蓝牙,Android 经典蓝牙(Classic Bluetooth)和低功耗蓝牙(BLE)
  9. android中的Package替换流程
  10. 01-微信小程序商城 商城框架的制作(微信小程序商城开发、小程序毕业设计、小程序源代码)(黄菊华-微信小程序开发教程)
  11. 人工智能 一种现代方法 第3章 用搜索树对问题求解
  12. wow模型修改器_魔兽世界改模型 wow大脚模型修改器
  13. Python 算法设计(2) - 大数运算 - 基于字符串的数字运算和进位
  14. 用计算机将复数转换成角度,卡西欧FX-991ES计算器能计算电路里的复数加减乘除然后换算成角度吗?...
  15. NIOS软核处理器入门实验
  16. OMV搭建系列教程[6] – 安装AriaNG Web前端
  17. 关于如何将代码上传到gitee仓库的详细步骤
  18. java中Scanner类用法的详解
  19. 《我的菜谱》-西红柿炒鸡蛋
  20. Power BI——DAX函数(数据分析表达式)

热门文章

  1. C#中的委托和事件(分分钟上手)
  2. 计算机桌面上的照片转pdf免费,如何把图片转化为pdf,图片转换pdf工具推荐
  3. 计算机考试demo答案,计算机二级考试C语言巩固习题及答案
  4. TradingView - K线 使用详解
  5. mysql中temporary_MySQL的复制和临时表(Temporary Table)
  6. 【补充】膜拜大神——吴恩达(转自Wikipedia)
  7. [附源码]计算机毕业设计宁财二手物品交易网站Springboot程序
  8. 压缩感知测量矩阵构造方法研究
  9. 山东双数认证大数据产品登记条件
  10. A. New Year and Hurry