// unable to use an ASCII weight table efficiently here // we would want [\] to not be between A-Z and a-z // utf8_ascii_to_lower[i] MUST equal utf8_ascii_to_lower[utf8_ascii_to_lower[i]] // NOTE: there is no utf8_ascii_to_nocaseweight because // utf8_ascii_to_nocaseweight is equal to utf8_ascii_to_lower. // ASCII weights are equal to their original ASCII value. // it is faster to check for s1 & 0x80 before using this // I suspect loading the extra 128 bytes into a l2 cache is causing a 10% decrease in performance or we get the s1 & 0x80 for free as its a signcheck instruction. // this should be cache-line aligned. (aligned to 64 bytes) __declspec(align(64)) utf8_t utf8_ascii_to_lower[256] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00,0x01,0x02,0x03,0x04,0x05,0x06,0x07,0x08,0x09,0x0a,0x0b,0x0c,0x0d,0x0e,0x0f, // 0000 0x10,0x11,0x12,0x13,0x14,0x15,0x16,0x17,0x18,0x19,0x1a,0x1b,0x1c,0x1d,0x1e,0x1f, // 0010 0x20,0x21,0x22,0x23,0x24,0x25,0x26,0x27,0x28,0x29,0x2a,0x2b,0x2c,0x2d,0x2e,0x2f, // 0020 0x30,0x31,0x32,0x33,0x34,0x35,0x36,0x37,0x38,0x39,0x3a,0x3b,0x3c,0x3d,0x3e,0x3f, // 0030 0x40,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f, // 0040 0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x5b,0x5c,0x5d,0x5e,0x5f, // 0050 0x60,0x61,0x62,0x63,0x64,0x65,0x66,0x67,0x68,0x69,0x6a,0x6b,0x6c,0x6d,0x6e,0x6f, // 0060 0x70,0x71,0x72,0x73,0x74,0x75,0x76,0x77,0x78,0x79,0x7a,0x7b,0x7c,0x7d,0x7e,0x7f, // 0070 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 0080 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 0090 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 00a0 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 00b0 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 00c0 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 00d0 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 00e0 0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff,0xff, // 00f0 }; // space table // this is MUCH faster than 5 if statements. // (((c) == ' ') || ((c) == '\t') || ((c) == '\r') || ((c) == '\n') || ((c) == '\v')) __declspec(align(64)) utf8_t utf8_ascii_is_space[128] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x00,0x01,0x00,0x00, // 0000 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0010 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0020 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0030 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0040 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0050 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0060 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0070 }; // punctuaction to space conversion // no mapping done with non-ascii. // bytes: 0.020 seconds // bits: 0.025 seconds // using bits is slightly slower than using bytes, probably from extra register use to calculate the bit. // do we treat : and / and \ as punctuation? -yes, but it also has special meaning for filenames, same with * and ? // this is MUCH faster than 5 if statements. __declspec(align(64)) utf8_t utf8_ascii_is_punctuation[128] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x01,0x00,0x01,0x01, // 0000 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, // 0010 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, // 0020 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01,0x01, // 0030 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0040 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, // 0050 0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0060 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x01,0x01,0x01,0x01, // 0070 }; // a-z // A-Z // 0-9 __declspec(align(64)) utf8_t utf8_ascii_is_alphanum[128] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0000 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0010 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0020 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00,0x00, // 0030 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, // 0040 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00, // 0050 0x00,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01, // 0060 0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x00,0x00,0x00,0x00,0x00, // 0070 }; WORD utf8_ascii_to_weight[256] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x0600,0x0601,0x0602,0x0603,0x0604,0x0605,0x0606,0x0607,0x0608,0x0705,0x0706,0x0707,0x0708,0x0709,0x070e,0x060f, // 0000 0x0610,0x0611,0x0612,0x0613,0x0614,0x0615,0x0616,0x0617,0x0618,0x0619,0x061a,0x061b,0x061c,0x061d,0x061e,0x061f, // 0010 0x0702,0x071c,0x071d,0x071f,0x0721,0x0723,0x0725,0x0627,0x0727,0x072a,0x072d,0x0803,0x072f,0x062d,0x0733,0x0735, // 0020 0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0737,0x073a,0x080e,0x0812,0x0814,0x073c, // 0030 0x073e,0x0e02,0x0e09,0x0e0a,0x0e1a,0x0e21,0x0e23,0x0e25,0x0e2c,0x0e32,0x0e35,0x0e36,0x0e48,0x0e51,0x0e70,0x0e7c, // 0040 0x0e7e,0x0e89,0x0e8a,0x0e91,0x0e99,0x0e9f,0x0ea2,0x0ea4,0x0ea6,0x0ea7,0x0ea9,0x073f,0x0741,0x0742,0x0743,0x0744, // 0050 0x0748,0x0e02,0x0e09,0x0e0a,0x0e1a,0x0e21,0x0e23,0x0e25,0x0e2c,0x0e32,0x0e35,0x0e36,0x0e48,0x0e51,0x0e70,0x0e7c, // 0060 0x0e7e,0x0e89,0x0e8a,0x0e91,0x0e99,0x0e9f,0x0ea2,0x0ea4,0x0ea6,0x0ea7,0x0ea9,0x074a,0x074c,0x074e,0x0750,0x067f, // 0070 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0080 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 0090 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 00a0 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 00b0 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 00c0 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 00d0 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 00e0 0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00, // 00f0 }; WORD utf8_nonascii_unicode_weight_keys[UTF8_NONASCII_UNICODE_WEIGHT_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x0080,0x0081,0x0082,0x0083,0x0084,0x0085,0x0086,0x0087,0x0088,0x0089,0x008a,0x008b,0x008c,0x008d,0x008e,0x008f, // 0000 0x0090,0x0091,0x0092,0x0093,0x0094,0x0095,0x0096,0x0097,0x0098,0x0099,0x009a,0x009b,0x009c,0x009d,0x009e,0x009f, // 0010 0x00a1,0x00a2,0x00a3,0x00a4,0x00a5,0x00a6,0x00a7,0x00a8,0x00a9,0x00ac,0x00ae,0x00af,0x00b0,0x00b1,0x00b4,0x00b6, // 0020 0x00bc,0x00bd,0x00be,0x00bf,0x00d7,0x00f7,0x0195,0x01b9,0x01ba,0x01bb,0x01bd,0x01c0,0x01c1,0x01c2,0x01c3,0x0223, // 0030 0x0242,0x0252,0x0265,0x0280,0x0281,0x0292,0x0293,0x0294,0x0295,0x0296,0x0298,0x02a1,0x02a2,0x02ac,0x02ad,0x02ae, // 0040 0x02af,0x02b6,0x02c7,0x02c9,0x02ca,0x02d8,0x02d9,0x02da,0x02db,0x02dd,0x0371,0x0373,0x0375,0x0377,0x037a,0x037b, // 0050 0x037c,0x037d,0x037e,0x0387,0x03b1,0x03b2,0x03b3,0x03b4,0x03b5,0x03b6,0x03b7,0x03b8,0x03b9,0x03ba,0x03bb,0x03bc, // 0060 0x03bd,0x03be,0x03bf,0x03c0,0x03c1,0x03c3,0x03c4,0x03c5,0x03c6,0x03c7,0x03c8,0x03c9,0x03d7,0x03d9,0x03db,0x03dd, // 0070 0x03df,0x03e1,0x03e3,0x03e5,0x03e7,0x03e9,0x03eb,0x03ed,0x03ef,0x03f3,0x03f6,0x03f8,0x03fb,0x03fc,0x0430,0x0431, // 0080 0x0432,0x0433,0x0434,0x0435,0x0436,0x0437,0x0438,0x043a,0x043b,0x043c,0x043d,0x043e,0x043f,0x0440,0x0441,0x0442, // 0090 0x0443,0x0444,0x0445,0x0446,0x0447,0x0448,0x0449,0x044a,0x044b,0x044c,0x044d,0x044e,0x044f,0x0452,0x0454,0x0455, // 00a0 0x0456,0x0458,0x0459,0x045a,0x045b,0x045f,0x0461,0x0463,0x0465,0x0467,0x0469,0x046b,0x046d,0x046f,0x0471,0x0473, // 00b0 0x0475,0x0479,0x047b,0x047d,0x047f,0x0481,0x0482,0x048b,0x048d,0x048f,0x0493,0x0495,0x0497,0x0499,0x049b,0x049d, // 00c0 0x049f,0x04a1,0x04a3,0x04a5,0x04a7,0x04a9,0x04ab,0x04ad,0x04af,0x04b1,0x04b3,0x04b5,0x04b7,0x04b9,0x04bb,0x04bd, // 00d0 0x04bf,0x04c4,0x04c6,0x04c8,0x04ca,0x04cc,0x04ce,0x04cf,0x04d5,0x04d9,0x04e1,0x04e9,0x04f7,0x04fb,0x04fd,0x04ff, // 00e0 0x0501,0x0503,0x0505,0x0507,0x0509,0x050b,0x050d,0x050f,0x0511,0x0513,0x0515,0x0517,0x0519,0x051b,0x051d,0x051f, // 00f0 0x0521,0x0523,0x055b,0x055c,0x055d,0x055e,0x055f,0x0561,0x0562,0x0563,0x0564,0x0565,0x0566,0x0567,0x0568,0x0569, // 0100 0x056a,0x056b,0x056c,0x056d,0x056e,0x056f,0x0570,0x0571,0x0572,0x0573,0x0574,0x0575,0x0576,0x0577,0x0578,0x0579, // 0110 0x057a,0x057b,0x057c,0x057d,0x057e,0x057f,0x0580,0x0581,0x0582,0x0583,0x0584,0x0585,0x0586,0x0587,0x0589,0x05be, // 0120 0x05c3,0x05c6,0x05d0,0x05d1,0x05d2,0x05d3,0x05d4,0x05d5,0x05d6,0x05d7,0x05d8,0x05d9,0x05db,0x05dc,0x05de,0x05e0, // 0130 0x05e1,0x05e2,0x05e4,0x05e6,0x05e7,0x05e8,0x05e9,0x05ea,0x05f0,0x05f1,0x05f2,0x05f3,0x05f4,0x0600,0x0601,0x0603, // 0140 0x0606,0x0607,0x0608,0x0609,0x060a,0x060b,0x060c,0x060d,0x060e,0x060f,0x061b,0x061e,0x061f,0x0621,0x0627,0x0628, // 0150 0x0629,0x062a,0x062b,0x062c,0x062d,0x062e,0x062f,0x0630,0x0631,0x0632,0x0633,0x0634,0x0635,0x0636,0x0637,0x0638, // 0160 0x0639,0x063a,0x063b,0x063c,0x063d,0x063e,0x063f,0x0641,0x0642,0x0643,0x0644,0x0645,0x0646,0x0647,0x0648,0x0649, // 0170 0x064a,0x0660,0x0661,0x0662,0x0663,0x0664,0x0665,0x0666,0x0667,0x0668,0x0669,0x066a,0x066b,0x066c,0x066d,0x066e, // 0180 0x066f,0x0671,0x0672,0x0673,0x0675,0x0676,0x0677,0x0678,0x0679,0x067a,0x067b,0x067c,0x067d,0x067e,0x067f,0x0680, // 0190 0x0681,0x0682,0x0683,0x0684,0x0685,0x0686,0x0687,0x0688,0x0689,0x068a,0x068b,0x068c,0x068d,0x068e,0x068f,0x0690, // 01a0 0x0691,0x0692,0x0693,0x0694,0x0695,0x0696,0x0697,0x0698,0x0699,0x069a,0x069b,0x069c,0x069d,0x069e,0x069f,0x06a0, // 01b0 0x06a1,0x06a2,0x06a3,0x06a4,0x06a5,0x06a6,0x06a7,0x06a8,0x06a9,0x06aa,0x06ab,0x06ac,0x06ad,0x06ae,0x06af,0x06b0, // 01c0 0x06b1,0x06b2,0x06b3,0x06b4,0x06b5,0x06b6,0x06b7,0x06b8,0x06b9,0x06ba,0x06bb,0x06bc,0x06bd,0x06be,0x06bf,0x06c1, // 01d0 0x06c3,0x06c4,0x06c5,0x06c6,0x06c7,0x06c8,0x06c9,0x06ca,0x06cb,0x06cc,0x06cd,0x06ce,0x06cf,0x06d0,0x06d1,0x06d2, // 01e0 0x06d4,0x06d5,0x06dd,0x06de,0x06e9,0x06ee,0x06ef,0x06f0,0x06f1,0x06f2,0x06f3,0x06f4,0x06f5,0x06f6,0x06f7,0x06f8, // 01f0 0x06f9,0x06fa,0x06fb,0x06fc,0x06ff,0x0700,0x0701,0x0702,0x0703,0x0704,0x0705,0x0706,0x0707,0x0708,0x0709,0x070a, // 0200 0x070b,0x070c,0x070d,0x070f,0x0710,0x0712,0x0713,0x0715,0x0716,0x0717,0x0718,0x0719,0x071a,0x071b,0x071d,0x071e, // 0210 0x071f,0x0720,0x0721,0x0722,0x0723,0x0725,0x0726,0x0728,0x0729,0x072a,0x072b,0x072c,0x074d,0x074e,0x074f,0x0750, // 0220 0x0751,0x0752,0x0753,0x0754,0x0755,0x0756,0x0757,0x0758,0x0759,0x075a,0x075b,0x075c,0x075d,0x075e,0x075f,0x0760, // 0230 0x0761,0x0762,0x0763,0x0764,0x0765,0x0766,0x0767,0x0768,0x0769,0x076a,0x076b,0x076c,0x076d,0x076e,0x076f,0x0770, // 0240 0x0771,0x0772,0x0773,0x0774,0x0775,0x0776,0x0777,0x0778,0x0779,0x077a,0x077b,0x077c,0x077d,0x077e,0x077f,0x0780, // 0250 0x0781,0x0782,0x0783,0x0784,0x0785,0x0786,0x0787,0x0788,0x0789,0x078a,0x078b,0x078c,0x078d,0x078e,0x078f,0x0790, // 0260 0x0791,0x0792,0x0793,0x0794,0x0795,0x0796,0x0797,0x0798,0x0799,0x079a,0x079b,0x079c,0x079d,0x079e,0x079f,0x07a0, // 0270 0x07a1,0x07a2,0x07a3,0x07a4,0x07a5,0x07b1,0x07c0,0x07c1,0x07c2,0x07c3,0x07c4,0x07c5,0x07c6,0x07c7,0x07c8,0x07c9, // 0280 0x07ca,0x07cb,0x07cc,0x07cd,0x07ce,0x07cf,0x07d0,0x07d1,0x07d2,0x07d3,0x07d4,0x07d5,0x07d6,0x07d7,0x07d8,0x07d9, // 0290 0x07da,0x07db,0x07dc,0x07dd,0x07de,0x07df,0x07e0,0x07e1,0x07e2,0x07e3,0x07e4,0x07e5,0x07e6,0x07e7,0x07f6,0x07f7, // 02a0 0x07f8,0x07f9,0x07fa,0x0904,0x0905,0x0906,0x0907,0x0908,0x0909,0x090a,0x090b,0x090c,0x090d,0x090e,0x090f,0x0910, // 02b0 0x0911,0x0912,0x0913,0x0914,0x0915,0x0916,0x0917,0x0918,0x0919,0x091a,0x091b,0x091c,0x091d,0x091e,0x091f,0x0920, // 02c0 0x0921,0x0922,0x0923,0x0924,0x0925,0x0926,0x0927,0x0928,0x092a,0x092b,0x092c,0x092d,0x092e,0x092f,0x0930,0x0932, // 02d0 0x0933,0x0935,0x0936,0x0937,0x0938,0x0939,0x093d,0x0950,0x0960,0x0961,0x0964,0x0965,0x0966,0x0967,0x0968,0x0969, // 02e0 0x096a,0x096b,0x096c,0x096d,0x096e,0x096f,0x0970,0x0972,0x097b,0x097c,0x097d,0x097e,0x097f,0x0985,0x0986,0x0987, // 02f0 0x0988,0x0989,0x098a,0x098b,0x098c,0x098f,0x0990,0x0993,0x0994,0x0995,0x0996,0x0997,0x0998,0x0999,0x099a,0x099b, // 0300 0x099c,0x099d,0x099e,0x099f,0x09a0,0x09a1,0x09a2,0x09a3,0x09a4,0x09a5,0x09a6,0x09a7,0x09a8,0x09aa,0x09ab,0x09ac, // 0310 0x09ad,0x09ae,0x09af,0x09b0,0x09b2,0x09b6,0x09b7,0x09b8,0x09b9,0x09bd,0x09e0,0x09e1,0x09e6,0x09e7,0x09e8,0x09e9, // 0320 0x09ea,0x09eb,0x09ec,0x09ed,0x09ee,0x09ef,0x09f0,0x09f1,0x09f2,0x09f3,0x09f4,0x09f5,0x09f6,0x09f7,0x09f8,0x09f9, // 0330 0x09fa,0x0a05,0x0a06,0x0a07,0x0a08,0x0a09,0x0a0a,0x0a0f,0x0a10,0x0a13,0x0a14,0x0a15,0x0a16,0x0a17,0x0a18,0x0a19, // 0340 0x0a1a,0x0a1b,0x0a1c,0x0a1d,0x0a1e,0x0a1f,0x0a20,0x0a21,0x0a22,0x0a23,0x0a24,0x0a25,0x0a26,0x0a27,0x0a28,0x0a2a, // 0350 0x0a2b,0x0a2c,0x0a2d,0x0a2e,0x0a2f,0x0a30,0x0a32,0x0a35,0x0a38,0x0a39,0x0a5c,0x0a66,0x0a67,0x0a68,0x0a69,0x0a6a, // 0360 0x0a6b,0x0a6c,0x0a6d,0x0a6e,0x0a6f,0x0a72,0x0a73,0x0a74,0x0a85,0x0a86,0x0a87,0x0a88,0x0a89,0x0a8a,0x0a8b,0x0a8c, // 0370 0x0a8d,0x0a8f,0x0a90,0x0a91,0x0a93,0x0a94,0x0a95,0x0a96,0x0a97,0x0a98,0x0a99,0x0a9a,0x0a9b,0x0a9c,0x0a9d,0x0a9e, // 0380 0x0a9f,0x0aa0,0x0aa1,0x0aa2,0x0aa3,0x0aa4,0x0aa5,0x0aa6,0x0aa7,0x0aa8,0x0aaa,0x0aab,0x0aac,0x0aad,0x0aae,0x0aaf, // 0390 0x0ab0,0x0ab2,0x0ab3,0x0ab5,0x0ab6,0x0ab7,0x0ab8,0x0ab9,0x0ad0,0x0ae0,0x0ae1,0x0ae6,0x0ae7,0x0ae8,0x0ae9,0x0aea, // 03a0 0x0aeb,0x0aec,0x0aed,0x0aee,0x0aef,0x0af1,0x0b05,0x0b06,0x0b07,0x0b08,0x0b09,0x0b0a,0x0b0b,0x0b0c,0x0b0f,0x0b10, // 03b0 0x0b13,0x0b14,0x0b15,0x0b16,0x0b17,0x0b18,0x0b19,0x0b1a,0x0b1b,0x0b1c,0x0b1d,0x0b1e,0x0b1f,0x0b20,0x0b21,0x0b22, // 03c0 0x0b23,0x0b24,0x0b25,0x0b26,0x0b27,0x0b28,0x0b2a,0x0b2b,0x0b2c,0x0b2d,0x0b2e,0x0b2f,0x0b30,0x0b32,0x0b33,0x0b35, // 03d0 0x0b36,0x0b37,0x0b38,0x0b39,0x0b5f,0x0b60,0x0b61,0x0b66,0x0b67,0x0b68,0x0b69,0x0b6a,0x0b6b,0x0b6c,0x0b6d,0x0b6e, // 03e0 0x0b6f,0x0b71,0x0b83,0x0b85,0x0b86,0x0b87,0x0b88,0x0b89,0x0b8a,0x0b8e,0x0b8f,0x0b90,0x0b92,0x0b93,0x0b95,0x0b99, // 03f0 0x0b9a,0x0b9c,0x0b9e,0x0b9f,0x0ba3,0x0ba4,0x0ba8,0x0ba9,0x0baa,0x0bae,0x0baf,0x0bb0,0x0bb1,0x0bb2,0x0bb3,0x0bb4, // 0400 0x0bb5,0x0bb6,0x0bb7,0x0bb8,0x0bb9,0x0bd0,0x0be6,0x0be7,0x0be8,0x0be9,0x0bea,0x0beb,0x0bec,0x0bed,0x0bee,0x0bef, // 0410 0x0bf0,0x0bf1,0x0bf2,0x0bf3,0x0bf4,0x0bf5,0x0bf6,0x0bf7,0x0bf8,0x0bf9,0x0bfa,0x0c05,0x0c06,0x0c07,0x0c08,0x0c09, // 0420 0x0c0a,0x0c0b,0x0c0c,0x0c0e,0x0c0f,0x0c10,0x0c12,0x0c13,0x0c14,0x0c15,0x0c16,0x0c17,0x0c18,0x0c19,0x0c1a,0x0c1b, // 0430 0x0c1c,0x0c1d,0x0c1e,0x0c1f,0x0c20,0x0c21,0x0c22,0x0c23,0x0c24,0x0c25,0x0c26,0x0c27,0x0c28,0x0c2a,0x0c2b,0x0c2c, // 0440 0x0c2d,0x0c2e,0x0c2f,0x0c30,0x0c31,0x0c32,0x0c33,0x0c35,0x0c36,0x0c37,0x0c38,0x0c39,0x0c3d,0x0c58,0x0c59,0x0c60, // 0450 0x0c61,0x0c66,0x0c67,0x0c68,0x0c69,0x0c6a,0x0c6b,0x0c6c,0x0c6d,0x0c6e,0x0c6f,0x0c78,0x0c79,0x0c7a,0x0c7b,0x0c7c, // 0460 0x0c7d,0x0c7e,0x0c7f,0x0c85,0x0c86,0x0c87,0x0c88,0x0c89,0x0c8a,0x0c8b,0x0c8c,0x0c8e,0x0c8f,0x0c90,0x0c92,0x0c93, // 0470 0x0c94,0x0c95,0x0c96,0x0c97,0x0c98,0x0c99,0x0c9a,0x0c9b,0x0c9c,0x0c9d,0x0c9e,0x0c9f,0x0ca0,0x0ca1,0x0ca2,0x0ca3, // 0480 0x0ca4,0x0ca5,0x0ca6,0x0ca7,0x0ca8,0x0caa,0x0cab,0x0cac,0x0cad,0x0cae,0x0caf,0x0cb0,0x0cb1,0x0cb2,0x0cb3,0x0cb5, // 0490 0x0cb6,0x0cb7,0x0cb8,0x0cb9,0x0cde,0x0ce0,0x0ce1,0x0ce6,0x0ce7,0x0ce8,0x0ce9,0x0cea,0x0ceb,0x0cec,0x0ced,0x0cee, // 04a0 0x0cef,0x0cf1,0x0cf2,0x0d05,0x0d06,0x0d07,0x0d08,0x0d09,0x0d0a,0x0d0b,0x0d0c,0x0d0e,0x0d0f,0x0d10,0x0d12,0x0d13, // 04b0 0x0d14,0x0d15,0x0d16,0x0d17,0x0d18,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0d22,0x0d23, // 04c0 0x0d24,0x0d25,0x0d26,0x0d27,0x0d28,0x0d2a,0x0d2b,0x0d2c,0x0d2d,0x0d2e,0x0d2f,0x0d30,0x0d31,0x0d32,0x0d33,0x0d34, // 04d0 0x0d35,0x0d36,0x0d37,0x0d38,0x0d39,0x0d3d,0x0d60,0x0d61,0x0d66,0x0d67,0x0d68,0x0d69,0x0d6a,0x0d6b,0x0d6c,0x0d6d, // 04e0 0x0d6e,0x0d6f,0x0d70,0x0d71,0x0d72,0x0d73,0x0d74,0x0d75,0x0d79,0x0d85,0x0d86,0x0d87,0x0d88,0x0d89,0x0d8a,0x0d8b, // 04f0 0x0d8c,0x0d8d,0x0d8e,0x0d8f,0x0d90,0x0d91,0x0d92,0x0d93,0x0d94,0x0d95,0x0d96,0x0d9a,0x0d9b,0x0d9c,0x0d9d,0x0d9e, // 0500 0x0d9f,0x0da0,0x0da1,0x0da2,0x0da3,0x0da4,0x0da5,0x0da6,0x0da7,0x0da8,0x0da9,0x0daa,0x0dab,0x0dac,0x0dad,0x0dae, // 0510 0x0daf,0x0db0,0x0db1,0x0db3,0x0db4,0x0db5,0x0db6,0x0db7,0x0db8,0x0db9,0x0dba,0x0dbb,0x0dbd,0x0dc0,0x0dc1,0x0dc2, // 0520 0x0dc3,0x0dc4,0x0dc5,0x0dc6,0x0df4,0x0e01,0x0e02,0x0e03,0x0e04,0x0e05,0x0e06,0x0e07,0x0e08,0x0e09,0x0e0a,0x0e0b, // 0530 0x0e0c,0x0e0d,0x0e0e,0x0e0f,0x0e10,0x0e11,0x0e12,0x0e13,0x0e14,0x0e15,0x0e16,0x0e17,0x0e18,0x0e19,0x0e1a,0x0e1b, // 0540 0x0e1c,0x0e1d,0x0e1e,0x0e1f,0x0e20,0x0e21,0x0e22,0x0e23,0x0e24,0x0e25,0x0e26,0x0e27,0x0e28,0x0e29,0x0e2a,0x0e2b, // 0550 0x0e2c,0x0e2d,0x0e2e,0x0e2f,0x0e30,0x0e32,0x0e3f,0x0e40,0x0e41,0x0e42,0x0e43,0x0e44,0x0e45,0x0e46,0x0e4f,0x0e50, // 0560 0x0e51,0x0e52,0x0e53,0x0e54,0x0e55,0x0e56,0x0e57,0x0e58,0x0e59,0x0e5a,0x0e5b,0x0e81,0x0e82,0x0e84,0x0e87,0x0e88, // 0570 0x0e8a,0x0e8d,0x0e94,0x0e95,0x0e96,0x0e97,0x0e99,0x0e9a,0x0e9b,0x0e9c,0x0e9d,0x0e9e,0x0e9f,0x0ea1,0x0ea2,0x0ea3, // 0580 0x0ea5,0x0ea7,0x0eaa,0x0eab,0x0ead,0x0eae,0x0eaf,0x0eb0,0x0eb2,0x0ebd,0x0ec0,0x0ec1,0x0ec2,0x0ec3,0x0ec4,0x0ec6, // 0590 0x0ed0,0x0ed1,0x0ed2,0x0ed3,0x0ed4,0x0ed5,0x0ed6,0x0ed7,0x0ed8,0x0ed9,0x0edc,0x0edd,0x0f01,0x0f02,0x0f03,0x0f04, // 05a0 0x0f05,0x0f06,0x0f07,0x0f08,0x0f09,0x0f0a,0x0f0b,0x0f0c,0x0f0d,0x0f0e,0x0f0f,0x0f10,0x0f11,0x0f12,0x0f13,0x0f14, // 05b0 0x0f15,0x0f16,0x0f17,0x0f1a,0x0f1b,0x0f1c,0x0f1d,0x0f1e,0x0f1f,0x0f20,0x0f21,0x0f22,0x0f23,0x0f24,0x0f25,0x0f26, // 05c0 0x0f27,0x0f28,0x0f29,0x0f34,0x0f36,0x0f38,0x0f3a,0x0f3b,0x0f3c,0x0f3d,0x0f40,0x0f41,0x0f42,0x0f44,0x0f45,0x0f46, // 05d0 0x0f47,0x0f49,0x0f4a,0x0f4b,0x0f4c,0x0f4e,0x0f4f,0x0f50,0x0f51,0x0f53,0x0f54,0x0f55,0x0f56,0x0f58,0x0f59,0x0f5a, // 05e0 0x0f5b,0x0f5d,0x0f5e,0x0f5f,0x0f60,0x0f61,0x0f62,0x0f63,0x0f64,0x0f65,0x0f66,0x0f67,0x0f68,0x0f6b,0x0f6c,0x0fbe, // 05f0 0x0fbf,0x0fc0,0x0fc1,0x0fc2,0x0fc3,0x0fc4,0x0fc5,0x0fc7,0x0fc8,0x0fc9,0x0fca,0x0fcb,0x0fcc,0x0fce,0x0fcf,0x0fd0, // 0600 0x0fd1,0x0fd2,0x0fd3,0x0fd4,0x1000,0x1001,0x1002,0x1003,0x1004,0x1005,0x1006,0x1007,0x1008,0x1009,0x100a,0x100b, // 0610 0x100c,0x100d,0x100e,0x100f,0x1010,0x1011,0x1012,0x1013,0x1014,0x1015,0x1016,0x1017,0x1018,0x1019,0x101a,0x101b, // 0620 0x101c,0x101d,0x101e,0x101f,0x1020,0x1021,0x1022,0x1023,0x1024,0x1025,0x1027,0x1028,0x1029,0x102a,0x103f,0x1040, // 0630 0x1041,0x1042,0x1043,0x1044,0x1045,0x1046,0x1047,0x1048,0x1049,0x104a,0x104b,0x104c,0x104d,0x104e,0x104f,0x1050, // 0640 0x1051,0x1052,0x1053,0x1054,0x1055,0x105a,0x105b,0x105c,0x105d,0x1061,0x1065,0x1066,0x106e,0x106f,0x1070,0x1075, // 0650 0x1076,0x1077,0x1078,0x1079,0x107a,0x107b,0x107c,0x107d,0x107e,0x107f,0x1080,0x1081,0x108e,0x1090,0x1091,0x1092, // 0660 0x1093,0x1094,0x1095,0x1096,0x1097,0x1098,0x1099,0x109e,0x109f,0x10d0,0x10d1,0x10d2,0x10d3,0x10d4,0x10d5,0x10d6, // 0670 0x10d7,0x10d8,0x10d9,0x10da,0x10db,0x10dc,0x10dd,0x10de,0x10df,0x10e0,0x10e1,0x10e2,0x10e3,0x10e4,0x10e5,0x10e6, // 0680 0x10e7,0x10e8,0x10e9,0x10ea,0x10eb,0x10ec,0x10ed,0x10ee,0x10ef,0x10f0,0x10f1,0x10f2,0x10f3,0x10f4,0x10f5,0x10f6, // 0690 0x10f7,0x10f8,0x10f9,0x10fa,0x10fb,0x1100,0x1101,0x1102,0x1103,0x1104,0x1105,0x1106,0x1107,0x1108,0x1109,0x110a, // 06a0 0x110b,0x110c,0x110d,0x110e,0x110f,0x1110,0x1111,0x1112,0x1113,0x1114,0x1115,0x1116,0x1117,0x1118,0x1119,0x111a, // 06b0 0x111b,0x111c,0x111d,0x111e,0x111f,0x1120,0x1121,0x1122,0x1123,0x1124,0x1125,0x1126,0x1127,0x1128,0x1129,0x112a, // 06c0 0x112b,0x112c,0x112d,0x112e,0x112f,0x1130,0x1131,0x1132,0x1133,0x1134,0x1135,0x1136,0x1137,0x1138,0x1139,0x113a, // 06d0 0x113b,0x113c,0x113d,0x113e,0x113f,0x1140,0x1141,0x1142,0x1143,0x1144,0x1145,0x1146,0x1147,0x1148,0x1149,0x114a, // 06e0 0x114b,0x114c,0x114d,0x114e,0x114f,0x1150,0x1151,0x1152,0x1153,0x1154,0x1155,0x1156,0x1157,0x1158,0x1159,0x115f, // 06f0 0x1160,0x1161,0x1162,0x1163,0x1164,0x1165,0x1166,0x1167,0x1168,0x1169,0x116a,0x116b,0x116c,0x116d,0x116e,0x116f, // 0700 0x1170,0x1171,0x1172,0x1173,0x1174,0x1175,0x1176,0x1177,0x1178,0x1179,0x117a,0x117b,0x117c,0x117d,0x117e,0x117f, // 0710 0x1180,0x1181,0x1182,0x1183,0x1184,0x1185,0x1186,0x1187,0x1188,0x1189,0x118a,0x118b,0x118c,0x118d,0x118e,0x118f, // 0720 0x1190,0x1191,0x1192,0x1193,0x1194,0x1195,0x1196,0x1197,0x1198,0x1199,0x119a,0x119b,0x119c,0x119d,0x119e,0x119f, // 0730 0x11a0,0x11a1,0x11a2,0x11a8,0x11a9,0x11aa,0x11ab,0x11ac,0x11ad,0x11ae,0x11af,0x11b0,0x11b1,0x11b2,0x11b3,0x11b4, // 0740 0x11b5,0x11b6,0x11b7,0x11b8,0x11b9,0x11ba,0x11bb,0x11bc,0x11bd,0x11be,0x11bf,0x11c0,0x11c1,0x11c2,0x11c3,0x11c4, // 0750 0x11c5,0x11c6,0x11c7,0x11c8,0x11c9,0x11ca,0x11cb,0x11cc,0x11cd,0x11ce,0x11cf,0x11d0,0x11d1,0x11d2,0x11d3,0x11d4, // 0760 0x11d5,0x11d6,0x11d7,0x11d8,0x11d9,0x11da,0x11db,0x11dc,0x11dd,0x11de,0x11df,0x11e0,0x11e1,0x11e2,0x11e3,0x11e4, // 0770 0x11e5,0x11e6,0x11e7,0x11e8,0x11e9,0x11ea,0x11eb,0x11ec,0x11ed,0x11ee,0x11ef,0x11f0,0x11f1,0x11f2,0x11f3,0x11f4, // 0780 0x11f5,0x11f6,0x11f7,0x11f8,0x11f9,0x1200,0x1201,0x1202,0x1203,0x1204,0x1205,0x1206,0x1207,0x1208,0x1209,0x120a, // 0790 0x120b,0x120c,0x120d,0x120e,0x120f,0x1210,0x1211,0x1212,0x1213,0x1214,0x1215,0x1216,0x1217,0x1218,0x1219,0x121a, // 07a0 0x121b,0x121c,0x121d,0x121e,0x121f,0x1220,0x1221,0x1222,0x1223,0x1224,0x1225,0x1226,0x1227,0x1228,0x1229,0x122a, // 07b0 0x122b,0x122c,0x122d,0x122e,0x122f,0x1230,0x1231,0x1232,0x1233,0x1234,0x1235,0x1236,0x1237,0x1238,0x1239,0x123a, // 07c0 0x123b,0x123c,0x123d,0x123e,0x123f,0x1240,0x1241,0x1242,0x1243,0x1244,0x1245,0x1246,0x1247,0x1248,0x124a,0x124b, // 07d0 0x124c,0x124d,0x1250,0x1251,0x1252,0x1253,0x1254,0x1255,0x1256,0x1258,0x125a,0x125b,0x125c,0x125d,0x1260,0x1261, // 07e0 0x1262,0x1263,0x1264,0x1265,0x1266,0x1267,0x1268,0x1269,0x126a,0x126b,0x126c,0x126d,0x126e,0x126f,0x1270,0x1271, // 07f0 0x1272,0x1273,0x1274,0x1275,0x1276,0x1277,0x1278,0x1279,0x127a,0x127b,0x127c,0x127d,0x127e,0x127f,0x1280,0x1281, // 0800 0x1282,0x1283,0x1284,0x1285,0x1286,0x1287,0x1288,0x128a,0x128b,0x128c,0x128d,0x1290,0x1291,0x1292,0x1293,0x1294, // 0810 0x1295,0x1296,0x1297,0x1298,0x1299,0x129a,0x129b,0x129c,0x129d,0x129e,0x129f,0x12a0,0x12a1,0x12a2,0x12a3,0x12a4, // 0820 0x12a5,0x12a6,0x12a7,0x12a8,0x12a9,0x12aa,0x12ab,0x12ac,0x12ad,0x12ae,0x12af,0x12b0,0x12b2,0x12b3,0x12b4,0x12b5, // 0830 0x12b8,0x12b9,0x12ba,0x12bb,0x12bc,0x12bd,0x12be,0x12c0,0x12c2,0x12c3,0x12c4,0x12c5,0x12c8,0x12c9,0x12ca,0x12cb, // 0840 0x12cc,0x12cd,0x12ce,0x12cf,0x12d0,0x12d1,0x12d2,0x12d3,0x12d4,0x12d5,0x12d6,0x12d8,0x12d9,0x12da,0x12db,0x12dc, // 0850 0x12dd,0x12de,0x12df,0x12e0,0x12e1,0x12e2,0x12e3,0x12e4,0x12e5,0x12e6,0x12e7,0x12e8,0x12e9,0x12ea,0x12eb,0x12ec, // 0860 0x12ed,0x12ee,0x12ef,0x12f0,0x12f1,0x12f2,0x12f3,0x12f4,0x12f5,0x12f6,0x12f7,0x12f8,0x12f9,0x12fa,0x12fb,0x12fc, // 0870 0x12fd,0x12fe,0x12ff,0x1300,0x1301,0x1302,0x1303,0x1304,0x1305,0x1306,0x1307,0x1308,0x1309,0x130a,0x130b,0x130c, // 0880 0x130d,0x130e,0x130f,0x1310,0x1312,0x1313,0x1314,0x1315,0x1318,0x1319,0x131a,0x131b,0x131c,0x131d,0x131e,0x131f, // 0890 0x1320,0x1321,0x1322,0x1323,0x1324,0x1325,0x1326,0x1327,0x1328,0x1329,0x132a,0x132b,0x132c,0x132d,0x132e,0x132f, // 08a0 0x1330,0x1331,0x1332,0x1333,0x1334,0x1335,0x1336,0x1337,0x1338,0x1339,0x133a,0x133b,0x133c,0x133d,0x133e,0x133f, // 08b0 0x1340,0x1341,0x1342,0x1343,0x1344,0x1345,0x1346,0x1347,0x1348,0x1349,0x134a,0x134b,0x134c,0x134d,0x134e,0x134f, // 08c0 0x1350,0x1351,0x1352,0x1353,0x1354,0x1355,0x1356,0x1357,0x1358,0x1359,0x135a,0x1360,0x1369,0x136a,0x136b,0x136c, // 08d0 0x136d,0x136e,0x136f,0x1370,0x1371,0x1372,0x1373,0x1374,0x1375,0x1376,0x1377,0x1378,0x1379,0x137a,0x137b,0x137c, // 08e0 0x1380,0x1381,0x1382,0x1383,0x1384,0x1385,0x1386,0x1387,0x1388,0x1389,0x138a,0x138b,0x138c,0x138d,0x138e,0x138f, // 08f0 0x1390,0x1391,0x1392,0x1393,0x1394,0x1395,0x1396,0x1397,0x1398,0x1399,0x13a0,0x13a1,0x13a2,0x13a3,0x13a4,0x13a5, // 0900 0x13a6,0x13a7,0x13a8,0x13a9,0x13aa,0x13ab,0x13ac,0x13ad,0x13ae,0x13af,0x13b0,0x13b1,0x13b2,0x13b3,0x13b4,0x13b5, // 0910 0x13b6,0x13b7,0x13b8,0x13b9,0x13ba,0x13bb,0x13bc,0x13bd,0x13be,0x13bf,0x13c0,0x13c1,0x13c2,0x13c3,0x13c4,0x13c5, // 0920 0x13c6,0x13c7,0x13c8,0x13c9,0x13ca,0x13cb,0x13cc,0x13cd,0x13ce,0x13cf,0x13d0,0x13d1,0x13d2,0x13d3,0x13d4,0x13d5, // 0930 0x13d6,0x13d7,0x13d8,0x13d9,0x13da,0x13db,0x13dc,0x13dd,0x13de,0x13df,0x13e0,0x13e1,0x13e2,0x13e3,0x13e4,0x13e5, // 0940 0x13e6,0x13e7,0x13e8,0x13e9,0x13ea,0x13eb,0x13ec,0x13ed,0x13ee,0x13ef,0x13f0,0x13f1,0x13f2,0x13f3,0x13f4,0x1401, // 0950 0x1402,0x1403,0x1404,0x1405,0x1406,0x1407,0x1408,0x1409,0x140a,0x140b,0x140c,0x140d,0x140e,0x140f,0x1410,0x1411, // 0960 0x1412,0x1413,0x1414,0x1415,0x1416,0x1417,0x1418,0x1419,0x141a,0x141b,0x141c,0x141d,0x141e,0x141f,0x1420,0x1421, // 0970 0x1422,0x1423,0x1424,0x1425,0x1426,0x1427,0x1428,0x1429,0x142a,0x142b,0x142c,0x142d,0x142e,0x142f,0x1430,0x1431, // 0980 0x1432,0x1433,0x1434,0x1435,0x1436,0x1437,0x1438,0x1439,0x143a,0x143b,0x143c,0x143d,0x143e,0x143f,0x1440,0x1441, // 0990 0x1442,0x1443,0x1444,0x1445,0x1446,0x1447,0x1448,0x1449,0x144a,0x144b,0x144c,0x144d,0x144e,0x144f,0x1450,0x1451, // 09a0 0x1452,0x1453,0x1454,0x1455,0x1456,0x1457,0x1458,0x1459,0x145a,0x145b,0x145c,0x145d,0x145e,0x145f,0x1460,0x1461, // 09b0 0x1462,0x1463,0x1464,0x1465,0x1466,0x1467,0x1468,0x1469,0x146a,0x146b,0x146c,0x146d,0x146e,0x146f,0x1470,0x1471, // 09c0 0x1472,0x1473,0x1474,0x1475,0x1476,0x1477,0x1478,0x1479,0x147a,0x147b,0x147c,0x147d,0x147e,0x147f,0x1480,0x1481, // 09d0 0x1482,0x1483,0x1484,0x1485,0x1486,0x1487,0x1488,0x1489,0x148a,0x148b,0x148c,0x148d,0x148e,0x148f,0x1490,0x1491, // 09e0 0x1492,0x1493,0x1494,0x1495,0x1496,0x1497,0x1498,0x1499,0x149a,0x149b,0x149c,0x149d,0x149e,0x149f,0x14a0,0x14a1, // 09f0 0x14a2,0x14a3,0x14a4,0x14a5,0x14a6,0x14a7,0x14a8,0x14a9,0x14aa,0x14ab,0x14ac,0x14ad,0x14ae,0x14af,0x14b0,0x14b1, // 0a00 0x14b2,0x14b3,0x14b4,0x14b5,0x14b6,0x14b7,0x14b8,0x14b9,0x14ba,0x14bb,0x14bc,0x14bd,0x14be,0x14bf,0x14c0,0x14c1, // 0a10 0x14c2,0x14c3,0x14c4,0x14c5,0x14c6,0x14c7,0x14c8,0x14c9,0x14ca,0x14cb,0x14cc,0x14cd,0x14ce,0x14cf,0x14d0,0x14d1, // 0a20 0x14d2,0x14d3,0x14d4,0x14d5,0x14d6,0x14d7,0x14d8,0x14d9,0x14da,0x14db,0x14dc,0x14dd,0x14de,0x14df,0x14e0,0x14e1, // 0a30 0x14e2,0x14e3,0x14e4,0x14e5,0x14e6,0x14e7,0x14e8,0x14e9,0x14ea,0x14eb,0x14ec,0x14ed,0x14ee,0x14ef,0x14f0,0x14f1, // 0a40 0x14f2,0x14f3,0x14f4,0x14f5,0x14f6,0x14f7,0x14f8,0x14f9,0x14fa,0x14fb,0x14fc,0x14fd,0x14fe,0x14ff,0x1500,0x1501, // 0a50 0x1502,0x1503,0x1504,0x1505,0x1506,0x1507,0x1508,0x1509,0x150a,0x150b,0x150c,0x150d,0x150e,0x150f,0x1510,0x1511, // 0a60 0x1512,0x1513,0x1514,0x1515,0x1516,0x1517,0x1518,0x1519,0x151a,0x151b,0x151c,0x151d,0x151e,0x151f,0x1520,0x1521, // 0a70 0x1522,0x1523,0x1524,0x1525,0x1526,0x1527,0x1528,0x1529,0x152a,0x152b,0x152c,0x152d,0x152e,0x152f,0x1530,0x1531, // 0a80 0x1532,0x1533,0x1534,0x1535,0x1536,0x1537,0x1538,0x1539,0x153a,0x153b,0x153c,0x153d,0x153e,0x153f,0x1540,0x1541, // 0a90 0x1542,0x1543,0x1544,0x1545,0x1546,0x1547,0x1548,0x1549,0x154a,0x154b,0x154c,0x154d,0x154e,0x154f,0x1550,0x1551, // 0aa0 0x1552,0x1553,0x1554,0x1555,0x1556,0x1557,0x1558,0x1559,0x155a,0x155b,0x155c,0x155d,0x155e,0x155f,0x1560,0x1561, // 0ab0 0x1562,0x1563,0x1564,0x1565,0x1566,0x1567,0x1568,0x1569,0x156a,0x156b,0x156c,0x156d,0x156e,0x156f,0x1570,0x1571, // 0ac0 0x1572,0x1573,0x1574,0x1575,0x1576,0x1577,0x1578,0x1579,0x157a,0x157b,0x157c,0x157d,0x157e,0x157f,0x1580,0x1581, // 0ad0 0x1582,0x1583,0x1584,0x1585,0x1586,0x1587,0x1588,0x1589,0x158a,0x158b,0x158c,0x158d,0x158e,0x158f,0x1590,0x1591, // 0ae0 0x1592,0x1593,0x1594,0x1595,0x1596,0x1597,0x1598,0x1599,0x159a,0x159b,0x159c,0x159d,0x159e,0x159f,0x15a0,0x15a1, // 0af0 0x15a2,0x15a3,0x15a4,0x15a5,0x15a6,0x15a7,0x15a8,0x15a9,0x15aa,0x15ab,0x15ac,0x15ad,0x15ae,0x15af,0x15b0,0x15b1, // 0b00 0x15b2,0x15b3,0x15b4,0x15b5,0x15b6,0x15b7,0x15b8,0x15b9,0x15ba,0x15bb,0x15bc,0x15bd,0x15be,0x15bf,0x15c0,0x15c1, // 0b10 0x15c2,0x15c3,0x15c4,0x15c5,0x15c6,0x15c7,0x15c8,0x15c9,0x15ca,0x15cb,0x15cc,0x15cd,0x15ce,0x15cf,0x15d0,0x15d1, // 0b20 0x15d2,0x15d3,0x15d4,0x15d5,0x15d6,0x15d7,0x15d8,0x15d9,0x15da,0x15db,0x15dc,0x15dd,0x15de,0x15df,0x15e0,0x15e1, // 0b30 0x15e2,0x15e3,0x15e4,0x15e5,0x15e6,0x15e7,0x15e8,0x15e9,0x15ea,0x15eb,0x15ec,0x15ed,0x15ee,0x15ef,0x15f0,0x15f1, // 0b40 0x15f2,0x15f3,0x15f4,0x15f5,0x15f6,0x15f7,0x15f8,0x15f9,0x15fa,0x15fb,0x15fc,0x15fd,0x15fe,0x15ff,0x1600,0x1601, // 0b50 0x1602,0x1603,0x1604,0x1605,0x1606,0x1607,0x1608,0x1609,0x160a,0x160b,0x160c,0x160d,0x160e,0x160f,0x1610,0x1611, // 0b60 0x1612,0x1613,0x1614,0x1615,0x1616,0x1617,0x1618,0x1619,0x161a,0x161b,0x161c,0x161d,0x161e,0x161f,0x1620,0x1621, // 0b70 0x1622,0x1623,0x1624,0x1625,0x1626,0x1627,0x1628,0x1629,0x162a,0x162b,0x162c,0x162d,0x162e,0x162f,0x1630,0x1631, // 0b80 0x1632,0x1633,0x1634,0x1635,0x1636,0x1637,0x1638,0x1639,0x163a,0x163b,0x163c,0x163d,0x163e,0x163f,0x1640,0x1641, // 0b90 0x1642,0x1643,0x1644,0x1645,0x1646,0x1647,0x1648,0x1649,0x164a,0x164b,0x164c,0x164d,0x164e,0x164f,0x1650,0x1651, // 0ba0 0x1652,0x1653,0x1654,0x1655,0x1656,0x1657,0x1658,0x1659,0x165a,0x165b,0x165c,0x165d,0x165e,0x165f,0x1660,0x1661, // 0bb0 0x1662,0x1663,0x1664,0x1665,0x1666,0x1667,0x1668,0x1669,0x166a,0x166b,0x166c,0x166d,0x166e,0x166f,0x1670,0x1671, // 0bc0 0x1672,0x1673,0x1674,0x1675,0x1676,0x1681,0x1682,0x1683,0x1684,0x1685,0x1686,0x1687,0x1688,0x1689,0x168a,0x168b, // 0bd0 0x168c,0x168d,0x168e,0x168f,0x1690,0x1691,0x1692,0x1693,0x1694,0x1695,0x1696,0x1697,0x1698,0x1699,0x169a,0x169b, // 0be0 0x169c,0x16a0,0x16a2,0x16a3,0x16a6,0x16a8,0x16aa,0x16ab,0x16af,0x16b0,0x16b1,0x16b2,0x16b7,0x16b8,0x16b9,0x16ba, // 0bf0 0x16be,0x16c1,0x16c3,0x16c5,0x16c7,0x16c8,0x16c9,0x16ca,0x16cf,0x16d2,0x16d6,0x16d7,0x16da,0x16dc,0x16de,0x16df, // 0c00 0x16e0,0x16e1,0x16e2,0x16e3,0x16e4,0x16e5,0x16e6,0x16ee,0x16ef,0x16f0,0x1700,0x1701,0x1702,0x1703,0x1704,0x1705, // 0c10 0x1706,0x1707,0x1708,0x1709,0x170a,0x170b,0x170c,0x170e,0x170f,0x1710,0x1711,0x1720,0x1721,0x1722,0x1723,0x1724, // 0c20 0x1725,0x1726,0x1727,0x1728,0x1729,0x172a,0x172b,0x172c,0x172d,0x172e,0x172f,0x1730,0x1731,0x1735,0x1736,0x1740, // 0c30 0x1741,0x1742,0x1743,0x1744,0x1745,0x1746,0x1747,0x1748,0x1749,0x174a,0x174b,0x174c,0x174d,0x174e,0x174f,0x1750, // 0c40 0x1751,0x1760,0x1761,0x1762,0x1763,0x1764,0x1765,0x1766,0x1767,0x1768,0x1769,0x176a,0x176b,0x176c,0x176e,0x176f, // 0c50 0x1770,0x1780,0x1781,0x1782,0x1783,0x1784,0x1785,0x1786,0x1787,0x1788,0x1789,0x178a,0x178b,0x178c,0x178d,0x178e, // 0c60 0x178f,0x1790,0x1791,0x1792,0x1793,0x1794,0x1795,0x1796,0x1797,0x1798,0x1799,0x179a,0x179b,0x179c,0x179d,0x179e, // 0c70 0x179f,0x17a0,0x17a1,0x17a2,0x17a3,0x17a4,0x17a5,0x17a6,0x17a7,0x17a8,0x17a9,0x17aa,0x17ab,0x17ac,0x17ad,0x17ae, // 0c80 0x17af,0x17b0,0x17b1,0x17b2,0x17b3,0x17d4,0x17d5,0x17d6,0x17d7,0x17d8,0x17d9,0x17da,0x17db,0x17dc,0x17e0,0x17e1, // 0c90 0x17e2,0x17e3,0x17e4,0x17e5,0x17e6,0x17e7,0x17e8,0x17e9,0x17f0,0x17f1,0x17f2,0x17f3,0x17f4,0x17f5,0x17f6,0x17f7, // 0ca0 0x17f8,0x17f9,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1807,0x1808,0x1809,0x180a,0x180e,0x1810,0x1811,0x1812, // 0cb0 0x1813,0x1814,0x1815,0x1816,0x1817,0x1818,0x1819,0x1820,0x1821,0x1822,0x1823,0x1824,0x1825,0x1826,0x1827,0x1828, // 0cc0 0x1829,0x182a,0x182b,0x182c,0x182d,0x182e,0x182f,0x1830,0x1831,0x1832,0x1833,0x1834,0x1835,0x1836,0x1837,0x1838, // 0cd0 0x1839,0x183a,0x183b,0x183c,0x183d,0x183e,0x183f,0x1840,0x1841,0x1842,0x1843,0x1844,0x1845,0x1846,0x1847,0x1848, // 0ce0 0x1849,0x184a,0x184b,0x184c,0x184d,0x184e,0x184f,0x1850,0x1851,0x1852,0x1853,0x1854,0x1855,0x1856,0x1857,0x1858, // 0cf0 0x1859,0x185a,0x185b,0x185c,0x185d,0x185e,0x185f,0x1860,0x1861,0x1862,0x1863,0x1864,0x1865,0x1866,0x1867,0x1868, // 0d00 0x1869,0x186a,0x186b,0x186c,0x186d,0x186e,0x186f,0x1870,0x1871,0x1872,0x1873,0x1874,0x1875,0x1876,0x1877,0x1880, // 0d10 0x1881,0x1882,0x1883,0x1884,0x1885,0x1886,0x1887,0x1888,0x1889,0x188a,0x188b,0x188c,0x188d,0x188e,0x188f,0x1890, // 0d20 0x1891,0x1892,0x1893,0x1894,0x1895,0x1896,0x1897,0x1898,0x1899,0x189a,0x189b,0x189c,0x189d,0x189e,0x189f,0x18a0, // 0d30 0x18a1,0x18a2,0x18a3,0x18a4,0x18a5,0x18a6,0x18a7,0x18a8,0x18aa,0x1900,0x1901,0x1902,0x1903,0x1904,0x1905,0x1906, // 0d40 0x1907,0x1908,0x1909,0x190a,0x190b,0x190c,0x190d,0x190e,0x190f,0x1910,0x1911,0x1912,0x1913,0x1914,0x1915,0x1916, // 0d50 0x1917,0x1918,0x1919,0x191a,0x191b,0x191c,0x1940,0x1944,0x1945,0x1946,0x1947,0x1948,0x1949,0x194a,0x194b,0x194c, // 0d60 0x194d,0x194e,0x194f,0x1950,0x1951,0x1952,0x1953,0x1954,0x1955,0x1956,0x1957,0x1958,0x1959,0x195a,0x195b,0x195c, // 0d70 0x195d,0x195e,0x195f,0x1960,0x1961,0x1962,0x1963,0x1964,0x1965,0x1966,0x1967,0x1968,0x1969,0x196a,0x196b,0x196c, // 0d80 0x196d,0x1970,0x1971,0x1972,0x1973,0x1974,0x1980,0x1981,0x1982,0x1983,0x1984,0x1985,0x1986,0x1987,0x1988,0x1989, // 0d90 0x198a,0x198b,0x198c,0x198d,0x198e,0x198f,0x1990,0x1991,0x1992,0x1993,0x1994,0x1995,0x1996,0x1997,0x1998,0x1999, // 0da0 0x199a,0x199b,0x199c,0x199d,0x199e,0x199f,0x19a0,0x19a1,0x19a2,0x19a3,0x19a4,0x19a5,0x19a6,0x19a7,0x19a8,0x19a9, // 0db0 0x19c1,0x19c2,0x19c3,0x19c4,0x19c5,0x19c6,0x19c7,0x19d0,0x19d1,0x19d2,0x19d3,0x19d4,0x19d5,0x19d6,0x19d7,0x19d8, // 0dc0 0x19d9,0x19df,0x19e0,0x19e1,0x19e2,0x19e3,0x19e4,0x19e5,0x19e6,0x19e7,0x19e8,0x19e9,0x19ea,0x19eb,0x19ec,0x19ed, // 0dd0 0x19ee,0x19ef,0x19f0,0x19f1,0x19f2,0x19f3,0x19f4,0x19f5,0x19f6,0x19f7,0x19f8,0x19f9,0x19fa,0x19fb,0x19fc,0x19fd, // 0de0 0x19fe,0x19ff,0x1a00,0x1a01,0x1a02,0x1a03,0x1a04,0x1a05,0x1a06,0x1a07,0x1a08,0x1a09,0x1a0a,0x1a0b,0x1a0c,0x1a0d, // 0df0 0x1a0e,0x1a0f,0x1a10,0x1a11,0x1a12,0x1a13,0x1a14,0x1a15,0x1a16,0x1a1e,0x1a1f,0x1b05,0x1b07,0x1b09,0x1b0b,0x1b0d, // 0e00 0x1b0f,0x1b10,0x1b11,0x1b13,0x1b14,0x1b15,0x1b16,0x1b17,0x1b18,0x1b19,0x1b1a,0x1b1b,0x1b1c,0x1b1d,0x1b1e,0x1b1f, // 0e10 0x1b20,0x1b21,0x1b22,0x1b23,0x1b24,0x1b25,0x1b26,0x1b27,0x1b28,0x1b29,0x1b2a,0x1b2b,0x1b2c,0x1b2d,0x1b2e,0x1b2f, // 0e20 0x1b30,0x1b31,0x1b32,0x1b33,0x1b45,0x1b46,0x1b47,0x1b48,0x1b49,0x1b4a,0x1b4b,0x1b50,0x1b51,0x1b52,0x1b53,0x1b54, // 0e30 0x1b55,0x1b56,0x1b57,0x1b58,0x1b59,0x1b5a,0x1b5b,0x1b5c,0x1b5d,0x1b5e,0x1b5f,0x1b60,0x1b61,0x1b62,0x1b63,0x1b64, // 0e40 0x1b65,0x1b66,0x1b67,0x1b68,0x1b69,0x1b6a,0x1b74,0x1b75,0x1b76,0x1b77,0x1b78,0x1b79,0x1b7a,0x1b7b,0x1b7c,0x1b83, // 0e50 0x1b84,0x1b85,0x1b86,0x1b87,0x1b88,0x1b89,0x1b8a,0x1b8b,0x1b8c,0x1b8d,0x1b8e,0x1b8f,0x1b90,0x1b91,0x1b92,0x1b93, // 0e60 0x1b94,0x1b95,0x1b96,0x1b97,0x1b98,0x1b99,0x1b9a,0x1b9b,0x1b9c,0x1b9d,0x1b9e,0x1b9f,0x1ba0,0x1bae,0x1baf,0x1bb0, // 0e70 0x1bb1,0x1bb2,0x1bb3,0x1bb4,0x1bb5,0x1bb6,0x1bb7,0x1bb8,0x1bb9,0x1c00,0x1c01,0x1c02,0x1c03,0x1c04,0x1c05,0x1c06, // 0e80 0x1c07,0x1c08,0x1c09,0x1c0a,0x1c0b,0x1c0c,0x1c0d,0x1c0e,0x1c0f,0x1c10,0x1c11,0x1c12,0x1c13,0x1c14,0x1c15,0x1c16, // 0e90 0x1c17,0x1c18,0x1c19,0x1c1a,0x1c1b,0x1c1c,0x1c1d,0x1c1e,0x1c1f,0x1c20,0x1c21,0x1c22,0x1c23,0x1c3b,0x1c3c,0x1c3d, // 0ea0 0x1c3e,0x1c3f,0x1c40,0x1c41,0x1c42,0x1c43,0x1c44,0x1c45,0x1c46,0x1c47,0x1c48,0x1c49,0x1c4d,0x1c4e,0x1c4f,0x1c50, // 0eb0 0x1c51,0x1c52,0x1c53,0x1c54,0x1c55,0x1c56,0x1c57,0x1c58,0x1c59,0x1c5a,0x1c5b,0x1c5c,0x1c5d,0x1c5e,0x1c5f,0x1c60, // 0ec0 0x1c61,0x1c62,0x1c63,0x1c64,0x1c65,0x1c66,0x1c67,0x1c68,0x1c69,0x1c6a,0x1c6b,0x1c6c,0x1c6d,0x1c6e,0x1c6f,0x1c70, // 0ed0 0x1c71,0x1c72,0x1c73,0x1c74,0x1c75,0x1c76,0x1c77,0x1c78,0x1c79,0x1c7a,0x1c7b,0x1c7c,0x1c7d,0x1c7e,0x1c7f,0x1d08, // 0ee0 0x1d0e,0x1d10,0x1d14,0x1d15,0x1d19,0x1d1a,0x1d1d,0x1d1e,0x1d23,0x1d24,0x1d25,0x1d26,0x1d27,0x1d28,0x1d29,0x1d2a, // 0ef0 0x1d2b,0x1d2c,0x1d2d,0x1d2e,0x1d30,0x1d31,0x1d32,0x1d33,0x1d34,0x1d35,0x1d36,0x1d37,0x1d38,0x1d39,0x1d3a,0x1d3b, // 0f00 0x1d3c,0x1d3d,0x1d3e,0x1d3f,0x1d40,0x1d41,0x1d42,0x1d43,0x1d44,0x1d45,0x1d46,0x1d47,0x1d48,0x1d49,0x1d4a,0x1d4b, // 0f10 0x1d4c,0x1d4d,0x1d4f,0x1d50,0x1d51,0x1d52,0x1d53,0x1d54,0x1d55,0x1d56,0x1d57,0x1d58,0x1d59,0x1d5a,0x1d5b,0x1d5c, // 0f20 0x1d5d,0x1d5e,0x1d5f,0x1d60,0x1d61,0x1d62,0x1d63,0x1d64,0x1d65,0x1d66,0x1d67,0x1d68,0x1d69,0x1d6a,0x1d78,0x1d90, // 0f30 0x1d94,0x1d9b,0x1d9c,0x1da5,0x1da6,0x1da9,0x1daa,0x1dad,0x1daf,0x1db0,0x1db1,0x1db2,0x1db4,0x1db6,0x1db7,0x1db8, // 0f40 0x1dba,0x1dbb,0x1e9f,0x1fbf,0x1fc0,0x1ffe,0x200b,0x2016,0x2017,0x2020,0x2021,0x2023,0x2025,0x2026,0x2028,0x2029, // 0f50 0x2030,0x2031,0x2034,0x2036,0x2037,0x2038,0x203b,0x203c,0x203d,0x203e,0x203f,0x2040,0x2041,0x2042,0x2047,0x2048, // 0f60 0x2049,0x204a,0x204b,0x204c,0x204d,0x204e,0x204f,0x2050,0x2051,0x2052,0x2053,0x2054,0x2055,0x2056,0x2057,0x2058, // 0f70 0x2059,0x205a,0x205b,0x205c,0x205d,0x205e,0x2071,0x207d,0x207e,0x207f,0x208d,0x208e,0x2090,0x2091,0x2092,0x2093, // 0f80 0x2094,0x20a0,0x20a1,0x20a2,0x20a3,0x20a4,0x20a5,0x20a6,0x20a7,0x20a8,0x20a9,0x20aa,0x20ab,0x20ac,0x20ad,0x20ae, // 0f90 0x20af,0x20b0,0x20b1,0x20b2,0x20b3,0x20b4,0x20b5,0x2100,0x2101,0x2104,0x2105,0x2106,0x2108,0x2114,0x2116,0x2117, // 0fa0 0x211e,0x211f,0x2120,0x2121,0x2122,0x2123,0x2127,0x2129,0x213b,0x214a,0x214b,0x214c,0x214d,0x214f,0x2153,0x2154, // 0fb0 0x2155,0x2156,0x2157,0x2158,0x2159,0x215a,0x215b,0x215c,0x215d,0x215e,0x215f,0x2171,0x2172,0x2173,0x2175,0x2176, // 0fc0 0x2177,0x2178,0x217a,0x217b,0x2180,0x2181,0x2182,0x2184,0x2185,0x2186,0x2187,0x2188,0x2190,0x2191,0x2192,0x2193, // 0fd0 0x2194,0x2195,0x2196,0x2197,0x2198,0x2199,0x219c,0x219d,0x219e,0x219f,0x21a0,0x21a1,0x21a2,0x21a3,0x21a4,0x21a5, // 0fe0 0x21a6,0x21a7,0x21a8,0x21a9,0x21aa,0x21ab,0x21ac,0x21ad,0x21af,0x21b0,0x21b1,0x21b2,0x21b3,0x21b4,0x21b5,0x21b6, // 0ff0 0x21b7,0x21b8,0x21b9,0x21ba,0x21bb,0x21bc,0x21bd,0x21be,0x21bf,0x21c0,0x21c1,0x21c2,0x21c3,0x21c4,0x21c5,0x21c6, // 1000 0x21c7,0x21c8,0x21c9,0x21ca,0x21cb,0x21cc,0x21d0,0x21d1,0x21d2,0x21d3,0x21d4,0x21d5,0x21d6,0x21d7,0x21d8,0x21d9, // 1010 0x21da,0x21db,0x21dc,0x21dd,0x21de,0x21df,0x21e0,0x21e1,0x21e2,0x21e3,0x21e4,0x21e5,0x21e6,0x21e7,0x21e8,0x21e9, // 1020 0x21ea,0x21eb,0x21ec,0x21ed,0x21ee,0x21ef,0x21f0,0x21f1,0x21f2,0x21f3,0x21f4,0x21f5,0x21f6,0x21f7,0x21f8,0x21f9, // 1030 0x21fa,0x21fb,0x21fc,0x21fd,0x21fe,0x21ff,0x2200,0x2201,0x2202,0x2203,0x2205,0x2206,0x2207,0x2208,0x220a,0x220b, // 1040 0x220d,0x220e,0x220f,0x2210,0x2211,0x2213,0x2214,0x2215,0x2216,0x2217,0x2218,0x2219,0x221a,0x221b,0x221c,0x221d, // 1050 0x221e,0x221f,0x2220,0x2221,0x2222,0x2223,0x2225,0x2227,0x2228,0x2229,0x222a,0x222b,0x222c,0x222d,0x222e,0x222f, // 1060 0x2230,0x2231,0x2232,0x2233,0x2234,0x2235,0x2236,0x2237,0x2238,0x2239,0x223a,0x223b,0x223c,0x223d,0x223e,0x223f, // 1070 0x2240,0x2242,0x2243,0x2245,0x2246,0x2248,0x224a,0x224b,0x224c,0x224d,0x224e,0x224f,0x2250,0x2251,0x2252,0x2253, // 1080 0x2254,0x2255,0x2256,0x2257,0x2258,0x2259,0x225a,0x225b,0x225c,0x225d,0x225e,0x225f,0x2261,0x2263,0x2264,0x2265, // 1090 0x2266,0x2267,0x2268,0x2269,0x226a,0x226b,0x226c,0x2272,0x2273,0x2276,0x2277,0x227a,0x227b,0x227c,0x227d,0x227e, // 10a0 0x227f,0x2282,0x2283,0x2286,0x2287,0x228a,0x228b,0x228c,0x228d,0x228e,0x228f,0x2290,0x2291,0x2292,0x2293,0x2294, // 10b0 0x2295,0x2296,0x2297,0x2298,0x2299,0x229a,0x229b,0x229c,0x229d,0x229e,0x229f,0x22a0,0x22a1,0x22a2,0x22a3,0x22a4, // 10c0 0x22a5,0x22a6,0x22a7,0x22a8,0x22a9,0x22aa,0x22ab,0x22b0,0x22b1,0x22b2,0x22b3,0x22b4,0x22b5,0x22b6,0x22b7,0x22b8, // 10d0 0x22b9,0x22ba,0x22bb,0x22bc,0x22bd,0x22be,0x22bf,0x22c0,0x22c1,0x22c2,0x22c3,0x22c4,0x22c5,0x22c6,0x22c7,0x22c8, // 10e0 0x22c9,0x22ca,0x22cb,0x22cc,0x22cd,0x22ce,0x22cf,0x22d0,0x22d1,0x22d2,0x22d3,0x22d4,0x22d5,0x22d6,0x22d7,0x22d8, // 10f0 0x22d9,0x22da,0x22db,0x22dc,0x22dd,0x22de,0x22df,0x22e4,0x22e5,0x22e6,0x22e7,0x22e8,0x22e9,0x22ee,0x22ef,0x22f0, // 1100 0x22f1,0x22f2,0x22f3,0x22f4,0x22f5,0x22f6,0x22f7,0x22f8,0x22f9,0x22fa,0x22fb,0x22fc,0x22fd,0x22fe,0x22ff,0x2300, // 1110 0x2301,0x2302,0x2303,0x2304,0x2305,0x2306,0x2307,0x2308,0x2309,0x230a,0x230b,0x230c,0x230d,0x230e,0x230f,0x2310, // 1120 0x2311,0x2312,0x2313,0x2314,0x2315,0x2316,0x2317,0x2318,0x2319,0x231a,0x231b,0x231c,0x231d,0x231e,0x231f,0x2320, // 1130 0x2321,0x2322,0x2323,0x2324,0x2325,0x2326,0x2327,0x2328,0x2329,0x232a,0x232b,0x232c,0x232d,0x232e,0x232f,0x2330, // 1140 0x2331,0x2332,0x2333,0x2334,0x2335,0x2336,0x2337,0x2338,0x2339,0x233a,0x233b,0x233c,0x233d,0x233e,0x233f,0x2340, // 1150 0x2341,0x2342,0x2343,0x2344,0x2345,0x2346,0x2347,0x2348,0x2349,0x234a,0x234b,0x234c,0x234d,0x234e,0x234f,0x2350, // 1160 0x2351,0x2352,0x2353,0x2354,0x2355,0x2356,0x2357,0x2358,0x2359,0x235a,0x235b,0x235c,0x235d,0x235e,0x235f,0x2360, // 1170 0x2361,0x2362,0x2363,0x2364,0x2365,0x2366,0x2367,0x2368,0x2369,0x236a,0x236b,0x236c,0x236d,0x236e,0x236f,0x2370, // 1180 0x2371,0x2372,0x2373,0x2374,0x2375,0x2376,0x2377,0x2378,0x2379,0x237a,0x237b,0x237c,0x237d,0x237e,0x237f,0x2380, // 1190 0x2381,0x2382,0x2383,0x2384,0x2385,0x2386,0x2387,0x2388,0x2389,0x238a,0x238b,0x238c,0x238d,0x238e,0x238f,0x2390, // 11a0 0x2391,0x2392,0x2393,0x2394,0x2395,0x2396,0x2397,0x2398,0x2399,0x239a,0x239b,0x239c,0x239d,0x239e,0x239f,0x23a0, // 11b0 0x23a1,0x23a2,0x23a3,0x23a4,0x23a5,0x23a6,0x23a7,0x23a8,0x23a9,0x23aa,0x23ab,0x23ac,0x23ad,0x23ae,0x23af,0x23b0, // 11c0 0x23b1,0x23b2,0x23b3,0x23b4,0x23b5,0x23b6,0x23b7,0x23b8,0x23b9,0x23ba,0x23bb,0x23bc,0x23bd,0x23be,0x23bf,0x23c0, // 11d0 0x23c1,0x23c2,0x23c3,0x23c4,0x23c5,0x23c6,0x23c7,0x23c8,0x23c9,0x23ca,0x23cb,0x23cc,0x23cd,0x23ce,0x23cf,0x23d0, // 11e0 0x23d1,0x23d2,0x23d3,0x23d4,0x23d5,0x23d6,0x23d7,0x23d8,0x23d9,0x23da,0x23db,0x23dc,0x23dd,0x23de,0x23df,0x23e0, // 11f0 0x23e1,0x23e2,0x23e3,0x23e4,0x23e5,0x23e6,0x23e7,0x2400,0x2401,0x2402,0x2403,0x2404,0x2405,0x2406,0x2407,0x2408, // 1200 0x2409,0x240a,0x240b,0x240c,0x240d,0x240e,0x240f,0x2410,0x2411,0x2412,0x2413,0x2414,0x2415,0x2416,0x2417,0x2418, // 1210 0x2419,0x241a,0x241b,0x241c,0x241d,0x241e,0x241f,0x2420,0x2421,0x2422,0x2423,0x2424,0x2425,0x2426,0x2440,0x2441, // 1220 0x2442,0x2443,0x2444,0x2445,0x2446,0x2447,0x2448,0x2449,0x244a,0x2469,0x246a,0x246b,0x246c,0x246d,0x246e,0x246f, // 1230 0x2470,0x2471,0x2472,0x2473,0x247d,0x247e,0x247f,0x2480,0x2481,0x2482,0x2483,0x2484,0x2485,0x2486,0x2487,0x2491, // 1240 0x2492,0x2493,0x2494,0x2495,0x2496,0x2497,0x2498,0x2499,0x249a,0x249b,0x24eb,0x24ec,0x24ed,0x24ee,0x24ef,0x24f0, // 1250 0x24f1,0x24f2,0x24f3,0x24f4,0x24fe,0x2500,0x2501,0x2502,0x2503,0x2504,0x2505,0x2506,0x2507,0x2508,0x2509,0x250a, // 1260 0x250b,0x250c,0x250d,0x250e,0x250f,0x2510,0x2511,0x2512,0x2513,0x2514,0x2515,0x2516,0x2517,0x2518,0x2519,0x251a, // 1270 0x251b,0x251c,0x251d,0x251e,0x251f,0x2520,0x2521,0x2522,0x2523,0x2524,0x2525,0x2526,0x2527,0x2528,0x2529,0x252a, // 1280 0x252b,0x252c,0x252d,0x252e,0x252f,0x2530,0x2531,0x2532,0x2533,0x2534,0x2535,0x2536,0x2537,0x2538,0x2539,0x253a, // 1290 0x253b,0x253c,0x253d,0x253e,0x253f,0x2540,0x2541,0x2542,0x2543,0x2544,0x2545,0x2546,0x2547,0x2548,0x2549,0x254a, // 12a0 0x254b,0x254c,0x254d,0x254e,0x254f,0x2550,0x2551,0x2552,0x2553,0x2554,0x2555,0x2556,0x2557,0x2558,0x2559,0x255a, // 12b0 0x255b,0x255c,0x255d,0x255e,0x255f,0x2560,0x2561,0x2562,0x2563,0x2564,0x2565,0x2566,0x2567,0x2568,0x2569,0x256a, // 12c0 0x256b,0x256c,0x256d,0x256e,0x256f,0x2570,0x2571,0x2572,0x2573,0x2574,0x2575,0x2576,0x2577,0x2578,0x2579,0x257a, // 12d0 0x257b,0x257c,0x257d,0x257e,0x257f,0x2580,0x2581,0x2582,0x2583,0x2584,0x2585,0x2586,0x2587,0x2588,0x2589,0x258a, // 12e0 0x258b,0x258c,0x258d,0x258e,0x258f,0x2590,0x2591,0x2592,0x2593,0x2594,0x2595,0x2596,0x2597,0x2598,0x2599,0x259a, // 12f0 0x259b,0x259c,0x259d,0x259e,0x259f,0x25a0,0x25a1,0x25a2,0x25a3,0x25a4,0x25a5,0x25a6,0x25a7,0x25a8,0x25a9,0x25aa, // 1300 0x25ab,0x25ac,0x25ad,0x25ae,0x25af,0x25b0,0x25b1,0x25b2,0x25b3,0x25b4,0x25b5,0x25b6,0x25b7,0x25b8,0x25b9,0x25ba, // 1310 0x25bb,0x25bc,0x25bd,0x25be,0x25bf,0x25c0,0x25c1,0x25c2,0x25c3,0x25c4,0x25c5,0x25c6,0x25c7,0x25c8,0x25c9,0x25ca, // 1320 0x25cb,0x25cc,0x25cd,0x25ce,0x25cf,0x25d0,0x25d1,0x25d2,0x25d3,0x25d4,0x25d5,0x25d6,0x25d7,0x25d8,0x25d9,0x25da, // 1330 0x25db,0x25dc,0x25dd,0x25de,0x25df,0x25e0,0x25e1,0x25e2,0x25e3,0x25e4,0x25e5,0x25e6,0x25e7,0x25e8,0x25e9,0x25ea, // 1340 0x25eb,0x25ec,0x25ed,0x25ee,0x25ef,0x25f0,0x25f1,0x25f2,0x25f3,0x25f4,0x25f5,0x25f6,0x25f7,0x25f8,0x25f9,0x25fa, // 1350 0x25fb,0x25fc,0x25fd,0x25fe,0x25ff,0x2600,0x2601,0x2602,0x2603,0x2604,0x2605,0x2606,0x2607,0x2608,0x2609,0x260a, // 1360 0x260b,0x260c,0x260d,0x260e,0x260f,0x2610,0x2611,0x2612,0x2613,0x2614,0x2615,0x2616,0x2617,0x2618,0x2619,0x261a, // 1370 0x261b,0x261c,0x261d,0x261e,0x261f,0x2620,0x2621,0x2622,0x2623,0x2624,0x2625,0x2626,0x2627,0x2628,0x2629,0x262a, // 1380 0x262b,0x262c,0x262d,0x262e,0x262f,0x2630,0x2631,0x2632,0x2633,0x2634,0x2635,0x2636,0x2637,0x2638,0x2639,0x263a, // 1390 0x263b,0x263c,0x263d,0x263e,0x263f,0x2640,0x2641,0x2642,0x2643,0x2644,0x2645,0x2646,0x2647,0x2648,0x2649,0x264a, // 13a0 0x264b,0x264c,0x264d,0x264e,0x264f,0x2650,0x2651,0x2652,0x2653,0x2654,0x2655,0x2656,0x2657,0x2658,0x2659,0x265a, // 13b0 0x265b,0x265c,0x265d,0x265e,0x265f,0x2660,0x2661,0x2662,0x2663,0x2664,0x2665,0x2666,0x2667,0x2668,0x2669,0x266a, // 13c0 0x266b,0x266c,0x266d,0x266e,0x266f,0x2670,0x2671,0x2672,0x2673,0x2674,0x2675,0x2676,0x2677,0x2678,0x2679,0x267a, // 13d0 0x267b,0x267c,0x267d,0x267e,0x267f,0x2680,0x2681,0x2682,0x2683,0x2684,0x2685,0x2686,0x2687,0x2688,0x2689,0x268a, // 13e0 0x268b,0x268c,0x268d,0x268e,0x268f,0x2690,0x2691,0x2692,0x2693,0x2694,0x2695,0x2696,0x2697,0x2698,0x2699,0x269a, // 13f0 0x269b,0x269c,0x269d,0x26a0,0x26a1,0x26a2,0x26a3,0x26a4,0x26a5,0x26a6,0x26a7,0x26a8,0x26a9,0x26aa,0x26ab,0x26ac, // 1400 0x26ad,0x26ae,0x26af,0x26b0,0x26b1,0x26b2,0x26b3,0x26b4,0x26b5,0x26b6,0x26b7,0x26b8,0x26b9,0x26ba,0x26bb,0x26bc, // 1410 0x26c0,0x26c1,0x26c2,0x26c3,0x2701,0x2702,0x2703,0x2704,0x2706,0x2707,0x2708,0x2709,0x270c,0x270d,0x270e,0x270f, // 1420 0x2710,0x2711,0x2712,0x2713,0x2714,0x2715,0x2716,0x2717,0x2718,0x2719,0x271a,0x271b,0x271c,0x271d,0x271e,0x271f, // 1430 0x2720,0x2721,0x2722,0x2723,0x2724,0x2725,0x2726,0x2727,0x2729,0x272a,0x272b,0x272c,0x272d,0x272e,0x272f,0x2730, // 1440 0x2731,0x2732,0x2733,0x2734,0x2735,0x2736,0x2737,0x2738,0x2739,0x273a,0x273b,0x273c,0x273d,0x273e,0x273f,0x2740, // 1450 0x2741,0x2742,0x2743,0x2744,0x2745,0x2746,0x2747,0x2748,0x2749,0x274a,0x274b,0x274d,0x274f,0x2750,0x2751,0x2752, // 1460 0x2756,0x2758,0x2759,0x275a,0x275b,0x275c,0x275d,0x275e,0x2761,0x2762,0x2763,0x2764,0x2765,0x2766,0x2767,0x2768, // 1470 0x2769,0x276a,0x276b,0x276c,0x276d,0x276e,0x276f,0x2770,0x2771,0x2772,0x2773,0x2774,0x2775,0x277f,0x2789,0x2793, // 1480 0x2794,0x2798,0x2799,0x279a,0x279b,0x279c,0x279d,0x279e,0x279f,0x27a0,0x27a1,0x27a2,0x27a3,0x27a4,0x27a5,0x27a6, // 1490 0x27a7,0x27a8,0x27a9,0x27aa,0x27ab,0x27ac,0x27ad,0x27ae,0x27af,0x27b1,0x27b2,0x27b3,0x27b4,0x27b5,0x27b6,0x27b7, // 14a0 0x27b8,0x27b9,0x27ba,0x27bb,0x27bc,0x27bd,0x27be,0x27c0,0x27c1,0x27c2,0x27c3,0x27c4,0x27c5,0x27c6,0x27c7,0x27c8, // 14b0 0x27c9,0x27ca,0x27cc,0x27d0,0x27d1,0x27d2,0x27d3,0x27d4,0x27d5,0x27d6,0x27d7,0x27d8,0x27d9,0x27da,0x27db,0x27dc, // 14c0 0x27dd,0x27de,0x27df,0x27e0,0x27e1,0x27e2,0x27e3,0x27e4,0x27e5,0x27e6,0x27e7,0x27e8,0x27e9,0x27ea,0x27eb,0x27ec, // 14d0 0x27ed,0x27ee,0x27ef,0x27f0,0x27f1,0x27f2,0x27f3,0x27f4,0x27f5,0x27f6,0x27f7,0x27f8,0x27f9,0x27fa,0x27fb,0x27fc, // 14e0 0x27fd,0x27fe,0x27ff,0x2800,0x2801,0x2802,0x2803,0x2804,0x2805,0x2806,0x2807,0x2808,0x2809,0x280a,0x280b,0x280c, // 14f0 0x280d,0x280e,0x280f,0x2810,0x2811,0x2812,0x2813,0x2814,0x2815,0x2816,0x2817,0x2818,0x2819,0x281a,0x281b,0x281c, // 1500 0x281d,0x281e,0x281f,0x2820,0x2821,0x2822,0x2823,0x2824,0x2825,0x2826,0x2827,0x2828,0x2829,0x282a,0x282b,0x282c, // 1510 0x282d,0x282e,0x282f,0x2830,0x2831,0x2832,0x2833,0x2834,0x2835,0x2836,0x2837,0x2838,0x2839,0x283a,0x283b,0x283c, // 1520 0x283d,0x283e,0x283f,0x2840,0x2841,0x2842,0x2843,0x2844,0x2845,0x2846,0x2847,0x2848,0x2849,0x284a,0x284b,0x284c, // 1530 0x284d,0x284e,0x284f,0x2850,0x2851,0x2852,0x2853,0x2854,0x2855,0x2856,0x2857,0x2858,0x2859,0x285a,0x285b,0x285c, // 1540 0x285d,0x285e,0x285f,0x2860,0x2861,0x2862,0x2863,0x2864,0x2865,0x2866,0x2867,0x2868,0x2869,0x286a,0x286b,0x286c, // 1550 0x286d,0x286e,0x286f,0x2870,0x2871,0x2872,0x2873,0x2874,0x2875,0x2876,0x2877,0x2878,0x2879,0x287a,0x287b,0x287c, // 1560 0x287d,0x287e,0x287f,0x2880,0x2881,0x2882,0x2883,0x2884,0x2885,0x2886,0x2887,0x2888,0x2889,0x288a,0x288b,0x288c, // 1570 0x288d,0x288e,0x288f,0x2890,0x2891,0x2892,0x2893,0x2894,0x2895,0x2896,0x2897,0x2898,0x2899,0x289a,0x289b,0x289c, // 1580 0x289d,0x289e,0x289f,0x28a0,0x28a1,0x28a2,0x28a3,0x28a4,0x28a5,0x28a6,0x28a7,0x28a8,0x28a9,0x28aa,0x28ab,0x28ac, // 1590 0x28ad,0x28ae,0x28af,0x28b0,0x28b1,0x28b2,0x28b3,0x28b4,0x28b5,0x28b6,0x28b7,0x28b8,0x28b9,0x28ba,0x28bb,0x28bc, // 15a0 0x28bd,0x28be,0x28bf,0x28c0,0x28c1,0x28c2,0x28c3,0x28c4,0x28c5,0x28c6,0x28c7,0x28c8,0x28c9,0x28ca,0x28cb,0x28cc, // 15b0 0x28cd,0x28ce,0x28cf,0x28d0,0x28d1,0x28d2,0x28d3,0x28d4,0x28d5,0x28d6,0x28d7,0x28d8,0x28d9,0x28da,0x28db,0x28dc, // 15c0 0x28dd,0x28de,0x28df,0x28e0,0x28e1,0x28e2,0x28e3,0x28e4,0x28e5,0x28e6,0x28e7,0x28e8,0x28e9,0x28ea,0x28eb,0x28ec, // 15d0 0x28ed,0x28ee,0x28ef,0x28f0,0x28f1,0x28f2,0x28f3,0x28f4,0x28f5,0x28f6,0x28f7,0x28f8,0x28f9,0x28fa,0x28fb,0x28fc, // 15e0 0x28fd,0x28fe,0x28ff,0x2900,0x2901,0x2902,0x2903,0x2904,0x2905,0x2906,0x2907,0x2908,0x2909,0x290a,0x290b,0x290c, // 15f0 0x290d,0x290e,0x290f,0x2910,0x2911,0x2912,0x2913,0x2914,0x2915,0x2916,0x2917,0x2918,0x2919,0x291a,0x291b,0x291c, // 1600 0x291d,0x291e,0x291f,0x2920,0x2921,0x2922,0x2923,0x2924,0x2925,0x2926,0x2927,0x2928,0x2929,0x292a,0x292b,0x292c, // 1610 0x292d,0x292e,0x292f,0x2930,0x2931,0x2932,0x2933,0x2934,0x2935,0x2936,0x2937,0x2938,0x2939,0x293a,0x293b,0x293c, // 1620 0x293d,0x293e,0x293f,0x2940,0x2941,0x2942,0x2943,0x2944,0x2945,0x2946,0x2947,0x2948,0x2949,0x294a,0x294b,0x294c, // 1630 0x294d,0x294e,0x294f,0x2950,0x2951,0x2952,0x2953,0x2954,0x2955,0x2956,0x2957,0x2958,0x2959,0x295a,0x295b,0x295c, // 1640 0x295d,0x295e,0x295f,0x2960,0x2961,0x2962,0x2963,0x2964,0x2965,0x2966,0x2967,0x2968,0x2969,0x296a,0x296b,0x296c, // 1650 0x296d,0x296e,0x296f,0x2970,0x2971,0x2972,0x2973,0x2974,0x2975,0x2976,0x2977,0x2978,0x2979,0x297a,0x297b,0x297c, // 1660 0x297d,0x297e,0x297f,0x2980,0x2981,0x2982,0x2983,0x2984,0x2985,0x2986,0x2987,0x2988,0x2989,0x298a,0x298b,0x298c, // 1670 0x298d,0x298e,0x298f,0x2990,0x2991,0x2992,0x2993,0x2994,0x2995,0x2996,0x2997,0x2998,0x2999,0x299a,0x299b,0x299c, // 1680 0x299d,0x299e,0x299f,0x29a0,0x29a1,0x29a2,0x29a3,0x29a4,0x29a5,0x29a6,0x29a7,0x29a8,0x29a9,0x29aa,0x29ab,0x29ac, // 1690 0x29ad,0x29ae,0x29af,0x29b0,0x29b1,0x29b2,0x29b3,0x29b4,0x29b5,0x29b6,0x29b7,0x29b8,0x29b9,0x29ba,0x29bb,0x29bc, // 16a0 0x29bd,0x29be,0x29bf,0x29c0,0x29c1,0x29c2,0x29c3,0x29c4,0x29c5,0x29c6,0x29c7,0x29c8,0x29c9,0x29ca,0x29cb,0x29cc, // 16b0 0x29cd,0x29ce,0x29cf,0x29d0,0x29d1,0x29d2,0x29d3,0x29d4,0x29d5,0x29d6,0x29d7,0x29d8,0x29d9,0x29da,0x29db,0x29dc, // 16c0 0x29dd,0x29de,0x29df,0x29e0,0x29e1,0x29e2,0x29e3,0x29e4,0x29e5,0x29e6,0x29e7,0x29e8,0x29e9,0x29ea,0x29eb,0x29ec, // 16d0 0x29ed,0x29ee,0x29ef,0x29f0,0x29f1,0x29f2,0x29f3,0x29f4,0x29f5,0x29f6,0x29f7,0x29f8,0x29f9,0x29fa,0x29fb,0x29fc, // 16e0 0x29fd,0x29fe,0x29ff,0x2a00,0x2a01,0x2a02,0x2a03,0x2a04,0x2a05,0x2a06,0x2a07,0x2a08,0x2a09,0x2a0a,0x2a0b,0x2a0c, // 16f0 0x2a0d,0x2a0e,0x2a0f,0x2a10,0x2a11,0x2a12,0x2a13,0x2a14,0x2a15,0x2a16,0x2a17,0x2a18,0x2a19,0x2a1a,0x2a1b,0x2a1c, // 1700 0x2a1d,0x2a1e,0x2a1f,0x2a20,0x2a21,0x2a22,0x2a23,0x2a24,0x2a25,0x2a26,0x2a27,0x2a28,0x2a29,0x2a2a,0x2a2b,0x2a2c, // 1710 0x2a2d,0x2a2e,0x2a2f,0x2a30,0x2a31,0x2a32,0x2a33,0x2a34,0x2a35,0x2a36,0x2a37,0x2a38,0x2a39,0x2a3a,0x2a3b,0x2a3c, // 1720 0x2a3d,0x2a3e,0x2a3f,0x2a40,0x2a41,0x2a42,0x2a43,0x2a44,0x2a45,0x2a46,0x2a47,0x2a48,0x2a49,0x2a4a,0x2a4b,0x2a4c, // 1730 0x2a4d,0x2a4e,0x2a4f,0x2a50,0x2a51,0x2a52,0x2a53,0x2a54,0x2a55,0x2a56,0x2a57,0x2a58,0x2a59,0x2a5a,0x2a5b,0x2a5c, // 1740 0x2a5d,0x2a5e,0x2a5f,0x2a60,0x2a61,0x2a62,0x2a63,0x2a64,0x2a65,0x2a66,0x2a67,0x2a68,0x2a69,0x2a6a,0x2a6b,0x2a6c, // 1750 0x2a6d,0x2a6e,0x2a6f,0x2a70,0x2a71,0x2a72,0x2a73,0x2a75,0x2a76,0x2a77,0x2a78,0x2a79,0x2a7a,0x2a7b,0x2a7c,0x2a7d, // 1760 0x2a7e,0x2a7f,0x2a80,0x2a81,0x2a82,0x2a83,0x2a84,0x2a85,0x2a86,0x2a87,0x2a88,0x2a89,0x2a8a,0x2a8b,0x2a8c,0x2a8d, // 1770 0x2a8e,0x2a8f,0x2a90,0x2a91,0x2a92,0x2a93,0x2a94,0x2a95,0x2a96,0x2a97,0x2a98,0x2a99,0x2a9a,0x2a9b,0x2a9c,0x2a9d, // 1780 0x2a9e,0x2a9f,0x2aa0,0x2aa1,0x2aa2,0x2aa3,0x2aa4,0x2aa5,0x2aa6,0x2aa7,0x2aa8,0x2aa9,0x2aaa,0x2aab,0x2aac,0x2aad, // 1790 0x2aae,0x2aaf,0x2ab0,0x2ab1,0x2ab2,0x2ab3,0x2ab4,0x2ab5,0x2ab6,0x2ab7,0x2ab8,0x2ab9,0x2aba,0x2abb,0x2abc,0x2abd, // 17a0 0x2abe,0x2abf,0x2ac0,0x2ac1,0x2ac2,0x2ac3,0x2ac4,0x2ac5,0x2ac6,0x2ac7,0x2ac8,0x2ac9,0x2aca,0x2acb,0x2acc,0x2acd, // 17b0 0x2ace,0x2acf,0x2ad0,0x2ad1,0x2ad2,0x2ad3,0x2ad4,0x2ad5,0x2ad6,0x2ad7,0x2ad8,0x2ad9,0x2ada,0x2adb,0x2add,0x2ade, // 17c0 0x2adf,0x2ae0,0x2ae1,0x2ae2,0x2ae3,0x2ae4,0x2ae5,0x2ae6,0x2ae7,0x2ae8,0x2ae9,0x2aea,0x2aeb,0x2aec,0x2aed,0x2aee, // 17d0 0x2aef,0x2af0,0x2af1,0x2af2,0x2af3,0x2af4,0x2af5,0x2af6,0x2af7,0x2af8,0x2af9,0x2afa,0x2afb,0x2afc,0x2afd,0x2afe, // 17e0 0x2aff,0x2b00,0x2b01,0x2b02,0x2b03,0x2b04,0x2b05,0x2b06,0x2b07,0x2b08,0x2b09,0x2b0a,0x2b0b,0x2b0c,0x2b0d,0x2b0e, // 17f0 0x2b0f,0x2b10,0x2b11,0x2b12,0x2b13,0x2b14,0x2b15,0x2b16,0x2b17,0x2b18,0x2b19,0x2b1a,0x2b1b,0x2b1c,0x2b1d,0x2b1e, // 1800 0x2b1f,0x2b20,0x2b21,0x2b22,0x2b23,0x2b24,0x2b25,0x2b26,0x2b27,0x2b28,0x2b29,0x2b2a,0x2b2b,0x2b2c,0x2b2d,0x2b2e, // 1810 0x2b2f,0x2b30,0x2b31,0x2b32,0x2b33,0x2b34,0x2b35,0x2b36,0x2b37,0x2b38,0x2b39,0x2b3a,0x2b3b,0x2b3c,0x2b3d,0x2b3e, // 1820 0x2b3f,0x2b40,0x2b41,0x2b42,0x2b43,0x2b44,0x2b45,0x2b46,0x2b47,0x2b48,0x2b49,0x2b4a,0x2b4b,0x2b4c,0x2b50,0x2b51, // 1830 0x2b52,0x2b53,0x2b54,0x2c30,0x2c31,0x2c32,0x2c33,0x2c34,0x2c35,0x2c36,0x2c37,0x2c38,0x2c39,0x2c3a,0x2c3b,0x2c3c, // 1840 0x2c3d,0x2c3e,0x2c3f,0x2c40,0x2c41,0x2c42,0x2c43,0x2c44,0x2c45,0x2c46,0x2c47,0x2c48,0x2c49,0x2c4a,0x2c4b,0x2c4c, // 1850 0x2c4d,0x2c4e,0x2c4f,0x2c50,0x2c51,0x2c52,0x2c53,0x2c54,0x2c55,0x2c56,0x2c57,0x2c58,0x2c59,0x2c5a,0x2c5b,0x2c5c, // 1860 0x2c5d,0x2c5e,0x2c76,0x2c79,0x2c7b,0x2c7c,0x2c7d,0x2c81,0x2c83,0x2c85,0x2c87,0x2c89,0x2c8b,0x2c8d,0x2c8f,0x2c91, // 1870 0x2c93,0x2c95,0x2c97,0x2c99,0x2c9b,0x2c9d,0x2c9f,0x2ca1,0x2ca3,0x2ca5,0x2ca7,0x2ca9,0x2cab,0x2cad,0x2caf,0x2cb1, // 1880 0x2cb3,0x2cb5,0x2cb7,0x2cb9,0x2cbb,0x2cbd,0x2cbf,0x2cc1,0x2cc3,0x2cc5,0x2cc7,0x2cc9,0x2ccb,0x2ccd,0x2ccf,0x2cd1, // 1890 0x2cd3,0x2cd5,0x2cd7,0x2cd9,0x2cdb,0x2cdd,0x2cdf,0x2ce1,0x2ce3,0x2ce4,0x2ce5,0x2ce6,0x2ce7,0x2ce8,0x2ce9,0x2cea, // 18a0 0x2cf9,0x2cfa,0x2cfb,0x2cfc,0x2cfd,0x2cfe,0x2cff,0x2d00,0x2d01,0x2d02,0x2d03,0x2d04,0x2d05,0x2d06,0x2d07,0x2d08, // 18b0 0x2d09,0x2d0a,0x2d0b,0x2d0c,0x2d0d,0x2d0e,0x2d0f,0x2d10,0x2d11,0x2d12,0x2d13,0x2d14,0x2d15,0x2d16,0x2d17,0x2d18, // 18c0 0x2d19,0x2d1a,0x2d1b,0x2d1c,0x2d1d,0x2d1e,0x2d1f,0x2d20,0x2d21,0x2d22,0x2d23,0x2d24,0x2d25,0x2d30,0x2d31,0x2d32, // 18d0 0x2d33,0x2d34,0x2d35,0x2d36,0x2d37,0x2d38,0x2d39,0x2d3a,0x2d3b,0x2d3c,0x2d3d,0x2d3e,0x2d3f,0x2d40,0x2d41,0x2d42, // 18e0 0x2d43,0x2d44,0x2d45,0x2d46,0x2d47,0x2d48,0x2d49,0x2d4a,0x2d4b,0x2d4c,0x2d4d,0x2d4e,0x2d4f,0x2d50,0x2d51,0x2d52, // 18f0 0x2d53,0x2d54,0x2d55,0x2d56,0x2d57,0x2d58,0x2d59,0x2d5a,0x2d5b,0x2d5c,0x2d5d,0x2d5e,0x2d5f,0x2d60,0x2d61,0x2d62, // 1900 0x2d63,0x2d64,0x2d65,0x2d6f,0x2d80,0x2d81,0x2d82,0x2d83,0x2d84,0x2d85,0x2d86,0x2d87,0x2d88,0x2d89,0x2d8a,0x2d8b, // 1910 0x2d8c,0x2d8d,0x2d8e,0x2d8f,0x2d90,0x2d91,0x2d92,0x2d93,0x2d94,0x2d95,0x2d96,0x2da0,0x2da1,0x2da2,0x2da3,0x2da4, // 1920 0x2da5,0x2da6,0x2da8,0x2da9,0x2daa,0x2dab,0x2dac,0x2dad,0x2dae,0x2db0,0x2db1,0x2db2,0x2db3,0x2db4,0x2db5,0x2db6, // 1930 0x2db8,0x2db9,0x2dba,0x2dbb,0x2dbc,0x2dbd,0x2dbe,0x2dc0,0x2dc1,0x2dc2,0x2dc3,0x2dc4,0x2dc5,0x2dc6,0x2dc8,0x2dc9, // 1940 0x2dca,0x2dcb,0x2dcc,0x2dcd,0x2dce,0x2dd0,0x2dd1,0x2dd2,0x2dd3,0x2dd4,0x2dd5,0x2dd6,0x2dd8,0x2dd9,0x2dda,0x2ddb, // 1950 0x2ddc,0x2ddd,0x2dde,0x2e00,0x2e01,0x2e02,0x2e03,0x2e04,0x2e05,0x2e06,0x2e07,0x2e08,0x2e09,0x2e0a,0x2e0b,0x2e0c, // 1960 0x2e0d,0x2e0e,0x2e0f,0x2e10,0x2e11,0x2e12,0x2e13,0x2e14,0x2e15,0x2e16,0x2e17,0x2e18,0x2e19,0x2e1a,0x2e1b,0x2e1c, // 1970 0x2e1d,0x2e1e,0x2e1f,0x2e20,0x2e21,0x2e22,0x2e23,0x2e24,0x2e25,0x2e26,0x2e27,0x2e28,0x2e29,0x2e2a,0x2e2b,0x2e2c, // 1980 0x2e2d,0x2e2e,0x2e2f,0x2e30,}; WORD utf8_nonascii_unicode_weight_values[UTF8_NONASCII_UNICODE_WEIGHT_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa, // 0000 0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa,0x0cfa, // 0010 0x0751,0x0797,0x0798,0x0799,0x079a,0x0752,0x0a06,0x0753,0x0a07,0x0a08,0x0a09,0x0754,0x0a0a,0x0817,0x0755,0x0a0c, // 0020 0x0d0d,0x0d11,0x0d15,0x0757,0x081c,0x081d,0x0e2d,0x0eac,0x0eac,0x0d1a,0x0d1d,0x081e,0x081f,0x0820,0x0758,0x0e7d, // 0030 0x0eb3,0x0e02,0x0e2c,0x0e8a,0x0e8a,0x0eac,0x0eac,0x0eb3,0x0eb3,0x0eb3,0x0eb4,0x0eb3,0x0eb3,0x0eb5,0x0eb6,0x0e2d, // 0040 0x0e2d,0x0e8a,0x0759,0x072d,0x0755,0x0759,0x075a,0x075b,0x075c,0x075e,0x0f0d,0x0f46,0x0760,0x0f43,0x0761,0x0f27, // 0050 0x0f26,0x0f27,0x073a,0x0a0d,0x0f02,0x0f04,0x0f06,0x0f08,0x0f0a,0x0f0c,0x0f0e,0x0f10,0x0f12,0x0f14,0x0f16,0x0f18, // 0060 0x0f1c,0x0f1e,0x0f20,0x0f22,0x0f24,0x0f26,0x0f28,0x0f2a,0x0f2c,0x0f2e,0x0f30,0x0f32,0x0f45,0x0f44,0x0f40,0x0f42, // 0070 0x0f44,0x0f46,0x0f48,0x0f4a,0x0f4c,0x0f4e,0x0f50,0x0f52,0x0f54,0x0f43,0x08fa,0x0f47,0x0f23,0x0f24,0x1002,0x1006, // 0080 0x1008,0x100a,0x100f,0x1014,0x101b,0x101e,0x1022,0x102e,0x1032,0x1038,0x103a,0x1048,0x104f,0x1051,0x1053,0x1057, // 0090 0x1063,0x106c,0x106f,0x1075,0x1078,0x1084,0x1087,0x108a,0x108d,0x1096,0x109c,0x10a2,0x10a5,0x1011,0x1019,0x1020, // 00a0 0x1026,0x102c,0x1034,0x1044,0x105d,0x1081,0x10ab,0x10ae,0x10b1,0x10b4,0x10b7,0x10ba,0x10bd,0x10c0,0x10c3,0x10c6, // 00b0 0x10c9,0x10cf,0x10d2,0x10d5,0x10d8,0x10db,0x0d6e,0x1024,0x1099,0x10de,0x100a,0x100d,0x101d,0x101e,0x1030,0x102e, // 00c0 0x102e,0x102e,0x103c,0x103e,0x104f,0x104c,0x1053,0x105b,0x1066,0x1069,0x1072,0x1075,0x1078,0x1078,0x1040,0x1015, // 00d0 0x1016,0x102e,0x10e1,0x1042,0x10e4,0x107e,0x10e7,0x104d,0x10ea,0x1017,0x10ed,0x104c,0x100e,0x100a,0x106f,0x106f, // 00e0 0x1010,0x1012,0x101f,0x10f0,0x1036,0x1046,0x1055,0x1059,0x101e,0x1032,0x1037,0x10df,0x10a6,0x10f8,0x104c,0x10f7, // 00f0 0x1033,0x1043,0x0765,0x0766,0x0767,0x0768,0x0769,0x1103,0x1104,0x1105,0x1106,0x1107,0x1108,0x1109,0x110a,0x110b, // 0100 0x110c,0x110d,0x110e,0x110f,0x1110,0x1111,0x1112,0x1113,0x1114,0x1115,0x1116,0x1117,0x1118,0x1119,0x111a,0x111b, // 0110 0x111c,0x111d,0x111e,0x111f,0x1120,0x1121,0x1122,0x1123,0x1124,0x1125,0x1126,0x1127,0x1128,0x1107,0x076a,0x0702, // 0120 0x076d,0x0745,0x2802,0x2803,0x2804,0x2805,0x2806,0x2807,0x2808,0x2809,0x280a,0x280b,0x280d,0x280e,0x280f,0x2811, // 0130 0x2813,0x2814,0x2815,0x2817,0x2819,0x281a,0x281b,0x281c,0x2807,0x2807,0x280b,0x076e,0x076f,0x0b91,0x0b98,0x0b99, // 0140 0x0bf9,0x0bfa,0x0bfb,0x0bfc,0x0bfd,0x07b1,0x0770,0x0b97,0x0b8d,0x0b95,0x0771,0x071f,0x0772,0x2902,0x290b,0x290e, // 0150 0x291d,0x2920,0x292f,0x2932,0x2941,0x2944,0x2947,0x2953,0x2959,0x295f,0x2968,0x296b,0x296e,0x2971,0x2974,0x2977, // 0160 0x297a,0x297d,0x2995,0x2995,0x29d7,0x29d7,0x29d7,0x2980,0x298c,0x298f,0x29a7,0x29aa,0x29ad,0x29b6,0x29b9,0x29d4, // 0170 0x29d7,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0773,0x0774,0x0775,0x0b93,0x2914, // 0180 0x298c,0x2905,0x2905,0x2905,0x290b,0x29b9,0x29c2,0x29d7,0x292c,0x2923,0x2911,0x2929,0x2929,0x291a,0x2926,0x2917, // 0190 0x2941,0x2941,0x2935,0x2938,0x2941,0x293b,0x293e,0x294a,0x294a,0x294a,0x2947,0x2956,0x294d,0x2950,0x2950,0x2950, // 01a0 0x295c,0x2959,0x295c,0x2959,0x2959,0x2959,0x2959,0x2965,0x2962,0x2968,0x2968,0x2968,0x296e,0x296e,0x2974,0x297a, // 01b0 0x2980,0x2980,0x2980,0x2983,0x2986,0x2989,0x298c,0x298c,0x2995,0x2998,0x298f,0x298f,0x2992,0x298f,0x299b,0x299b, // 01c0 0x299e,0x29a4,0x29a1,0x29a4,0x29a7,0x29a7,0x29a7,0x29a7,0x29b3,0x29ad,0x29b0,0x29ad,0x29b3,0x29b6,0x293b,0x29b6, // 01d0 0x291d,0x29b9,0x29bf,0x29bc,0x29c2,0x29c5,0x29c8,0x29b9,0x29cb,0x29d7,0x29d1,0x29d7,0x29b9,0x29ce,0x29d7,0x29d7, // 01e0 0x0776,0x29da,0x0b89,0x0b94,0x0b92,0x2947,0x2959,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20, // 01f0 0x0d21,0x296b,0x2971,0x297d,0x29b6,0x07e2,0x07e3,0x07e4,0x07e5,0x07e6,0x07e7,0x07e8,0x07e9,0x07ea,0x07eb,0x07ec, // 0200 0x07ed,0x07ee,0x07ef,0x07f0,0x2a0b,0x2a0f,0x2a13,0x2a17,0x2a19,0x2a1b,0x2a1f,0x2a23,0x2a27,0x2a2b,0x2a2f,0x2a31, // 0210 0x2a33,0x2a37,0x2a3b,0x2a40,0x2a44,0x2a48,0x2a4c,0x2a50,0x2a54,0x2a58,0x2a5c,0x2a60,0x2a24,0x2a34,0x2a4d,0x290e, // 0220 0x290e,0x290e,0x290e,0x290e,0x290e,0x290e,0x2941,0x2941,0x2947,0x2947,0x2959,0x2968,0x297a,0x297a,0x297a,0x2980, // 0230 0x2980,0x2995,0x2995,0x2995,0x29aa,0x29aa,0x29ad,0x29ad,0x29ad,0x29a7,0x2959,0x2959,0x2968,0x2941,0x2941,0x2968, // 0240 0x2959,0x2941,0x290b,0x290b,0x29d7,0x29d7,0x29d7,0x29b9,0x29b9,0x29d7,0x29d7,0x2941,0x2968,0x2968,0x298f,0x2a6e, // 0250 0x2a74,0x2a76,0x2a7a,0x2a7e,0x2a80,0x2a82,0x2a84,0x2a8a,0x2a8e,0x2a90,0x2a92,0x2a96,0x2a9e,0x2aa0,0x2aa4,0x2aa6, // 0260 0x2aae,0x2ab0,0x2ab2,0x2ab4,0x2ab6,0x2ab8,0x2aba,0x2a98,0x2a70,0x2a72,0x2a94,0x2a7c,0x2aa8,0x2aaa,0x2aac,0x2a9a, // 0270 0x2a9c,0x2a86,0x2a88,0x2aa2,0x2a8c,0x2a78,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21, // 0280 0x5403,0x5405,0x5407,0x5409,0x540b,0x540d,0x540f,0x5411,0x5413,0x5415,0x5417,0x5419,0x541b,0x541d,0x541f,0x5421, // 0290 0x5423,0x5425,0x5427,0x5429,0x542b,0x542d,0x542f,0x5431,0x5433,0x5435,0x5437,0x5439,0x543b,0x543d,0x07f3,0x07f4, // 02a0 0x072f,0x071c,0x07f5,0x320d,0x320b,0x320f,0x3213,0x3217,0x321b,0x321f,0x3223,0x322b,0x3233,0x3237,0x323b,0x323f, // 02b0 0x3243,0x3247,0x324b,0x324f,0x3253,0x3257,0x325b,0x325f,0x3263,0x3267,0x326b,0x326f,0x3273,0x3277,0x327b,0x327f, // 02c0 0x3283,0x3287,0x328b,0x328f,0x3293,0x3297,0x329b,0x329f,0x32a3,0x32a7,0x32ab,0x32af,0x32b3,0x32b7,0x32bb,0x32bf, // 02d0 0x32c3,0x32c7,0x32cb,0x32cf,0x32d3,0x32d7,0x07de,0x07dd,0x3227,0x322f,0x07df,0x07e0,0x0d03,0x0d19,0x0d1a,0x0d1b, // 02e0 0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x07e1,0x320c,0x3261,0x3271,0x3209,0x329d,0x32b1,0x3305,0x3307,0x3309, // 02f0 0x330b,0x330d,0x330f,0x3311,0x3313,0x3315,0x3317,0x3319,0x331b,0x3320,0x3324,0x3328,0x332c,0x332f,0x3332,0x3336, // 0300 0x333a,0x333d,0x3340,0x3343,0x3347,0x334a,0x334e,0x3351,0x3354,0x3357,0x335a,0x335d,0x3360,0x3364,0x3367,0x336b, // 0310 0x336f,0x3372,0x3343,0x3379,0x337c,0x3380,0x3384,0x3387,0x338a,0x331f,0x331d,0x331e,0x0d03,0x0d19,0x0d1a,0x0d1b, // 0320 0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x3379,0x336b,0x07ac,0x07ad,0x0da1,0x0da2,0x0da3,0x0da4,0x0da0,0x0da5, // 0330 0x078b,0x3418,0x341c,0x342c,0x3430,0x340c,0x3410,0x3434,0x3420,0x3414,0x3424,0x3440,0x3444,0x3448,0x344c,0x3450, // 0340 0x3454,0x3458,0x345c,0x3460,0x3464,0x3468,0x346c,0x3470,0x3474,0x3478,0x347c,0x3480,0x3484,0x3488,0x348c,0x3490, // 0350 0x3494,0x3498,0x349c,0x34a0,0x34a4,0x34a8,0x34ac,0x34b0,0x3438,0x343c,0x34b4,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c, // 0360 0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x3428,0x3408,0x3404,0x3508,0x350c,0x3510,0x3514,0x3518,0x351c,0x3520,0x3522, // 0370 0x3524,0x3528,0x352c,0x3530,0x3534,0x3538,0x353c,0x3540,0x3544,0x3548,0x354c,0x3550,0x3554,0x3558,0x355c,0x3560, // 0380 0x3564,0x3568,0x356c,0x3570,0x3574,0x3578,0x357c,0x3580,0x3584,0x3588,0x358c,0x3590,0x3594,0x3598,0x359c,0x35a0, // 0390 0x35a4,0x35a8,0x35c0,0x35ac,0x35b0,0x35b4,0x35b8,0x35bc,0x3504,0x3520,0x3522,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c, // 03a0 0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x07ae,0x3614,0x3616,0x3618,0x361a,0x361c,0x361e,0x3620,0x3624,0x3628,0x362a, // 03b0 0x362c,0x362e,0x3632,0x3634,0x3636,0x3638,0x363a,0x363c,0x363e,0x3640,0x3642,0x3644,0x3646,0x3648,0x364c,0x3650, // 03c0 0x3652,0x3654,0x3656,0x3658,0x365a,0x365c,0x365e,0x3660,0x3662,0x3664,0x3666,0x3668,0x366c,0x366e,0x3670,0x3674, // 03d0 0x3676,0x3678,0x367a,0x367c,0x366a,0x3622,0x3626,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20, // 03e0 0x0d21,0x3672,0x370c,0x370e,0x3710,0x3712,0x3714,0x3716,0x3718,0x371a,0x371c,0x371e,0x3720,0x3722,0x3728,0x372c, // 03f0 0x3730,0x3770,0x3734,0x3738,0x373c,0x3740,0x3744,0x376c,0x3748,0x374c,0x3750,0x3754,0x3768,0x3758,0x3764,0x3760, // 0400 0x375c,0x3776,0x3778,0x3774,0x377e,0x3702,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21, // 0410 0x0d22,0x0d5f,0x0d6e,0x0c43,0x0c44,0x0c45,0x0c46,0x0c47,0x0c48,0x07af,0x0c49,0x380d,0x3810,0x3813,0x3816,0x3819, // 0420 0x381c,0x381f,0x3825,0x382b,0x382e,0x3831,0x3834,0x3837,0x383a,0x383d,0x3840,0x3843,0x3846,0x3849,0x384c,0x384f, // 0430 0x3852,0x3855,0x3858,0x385b,0x385e,0x3861,0x3864,0x3867,0x386a,0x386d,0x3870,0x3873,0x3876,0x3879,0x387c,0x387f, // 0440 0x3882,0x3885,0x3888,0x388b,0x388e,0x3891,0x3894,0x3897,0x389a,0x389d,0x38a0,0x38a3,0x38a4,0x384d,0x3853,0x3822, // 0450 0x3828,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d19, // 0460 0x0d1a,0x0d1b,0x0cfc,0x390a,0x390d,0x3910,0x3913,0x3916,0x3919,0x391c,0x391f,0x3922,0x3925,0x3928,0x392b,0x392e, // 0470 0x3931,0x3934,0x3937,0x393a,0x393d,0x3940,0x3943,0x3946,0x3949,0x394c,0x394f,0x3952,0x3955,0x3958,0x395b,0x395e, // 0480 0x3961,0x3964,0x3967,0x396a,0x396d,0x3970,0x3973,0x3976,0x3979,0x397c,0x397f,0x3982,0x3997,0x3985,0x399d,0x398b, // 0490 0x398e,0x3991,0x3994,0x399a,0x39a0,0x3982,0x3988,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20, // 04a0 0x0d21,0x07f1,0x07f2,0x3a05,0x3a09,0x3a0d,0x3a11,0x3a15,0x3a19,0x3a1d,0x3a21,0x3a25,0x3a29,0x3a2d,0x3a31,0x3a35, // 04b0 0x3a39,0x3a3d,0x3a41,0x3a45,0x3a49,0x3a4d,0x3a51,0x3a55,0x3a59,0x3a5d,0x3a61,0x3a65,0x3a69,0x3a6d,0x3a71,0x3a75, // 04c0 0x3a79,0x3a7d,0x3a81,0x3a85,0x3a89,0x3a8d,0x3a91,0x3a95,0x3a99,0x3a9d,0x3aa1,0x3aa5,0x3aa9,0x3aad,0x3ab1,0x3ab5, // 04d0 0x3ab9,0x3abd,0x3ac1,0x3ac5,0x3ac9,0x3aca,0x3a40,0x3a41,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f, // 04e0 0x0d20,0x0d21,0x0d22,0x0d54,0x0d55,0x0d0d,0x0d11,0x0d15,0x0c5a,0x3b05,0x3b07,0x3b09,0x3b0b,0x3b0d,0x3b0f,0x3b11, // 04f0 0x3b13,0x3b15,0x3b17,0x3b19,0x3b1b,0x3b1d,0x3b1f,0x3b21,0x3b23,0x3b25,0x3b27,0x3b29,0x3b2c,0x3b2f,0x3b32,0x3b35, // 0500 0x3b38,0x3b3b,0x3b3e,0x3b40,0x3b44,0x3b48,0x3b4b,0x3b4e,0x3b51,0x3b54,0x3b58,0x3b5b,0x3b5e,0x3b61,0x3b64,0x3b67, // 0510 0x3b6a,0x3b6e,0x3b71,0x3b74,0x3b77,0x3b7a,0x3b7d,0x3b80,0x3b83,0x3b86,0x3b89,0x3b8c,0x3b8f,0x3b92,0x3b95,0x3b98, // 0520 0x3b9b,0x3ba1,0x3ba4,0x3b9e,0x078d,0x3c07,0x3c0d,0x3c13,0x3c19,0x3c1f,0x3c25,0x3c2b,0x3c31,0x3c37,0x3c3d,0x3c43, // 0530 0x3c49,0x3c4f,0x3c55,0x3c5b,0x3c61,0x3c67,0x3c6d,0x3c73,0x3c79,0x3c7f,0x3c85,0x3c8b,0x3c91,0x3c97,0x3c9d,0x3ca3, // 0540 0x3ca9,0x3caf,0x3cb5,0x3cbb,0x3cc1,0x3cc7,0x3ccd,0x3cd3,0x3cd9,0x3cdf,0x3ce5,0x3ceb,0x3cf1,0x3cf7,0x3cfd,0x3d05, // 0550 0x3d0b,0x3d11,0x3d17,0x3d1d,0x3d1e,0x3d20,0x07aa,0x3c02,0x3c03,0x3c04,0x3c05,0x3c06,0x3d29,0x3d2a,0x3d2c,0x0d03, // 0560 0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x3d2d,0x3d2e,0x410a,0x410c,0x410e,0x4110,0x4112, // 0570 0x4116,0x4118,0x411a,0x411c,0x411e,0x4120,0x4122,0x4124,0x4126,0x4128,0x412a,0x412c,0x412e,0x4130,0x4132,0x4134, // 0580 0x4136,0x4138,0x4114,0x413a,0x4140,0x4142,0x3d1d,0x4150,0x4152,0x4168,0x4160,0x4162,0x4164,0x416a,0x4168,0x4106, // 0590 0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x413c,0x413e,0x0b9c,0x0b9d,0x0b9e,0x0b9f, // 05a0 0x0ba0,0x0ba1,0x0ba2,0x0ba3,0x0ba4,0x0ba5,0x0702,0x0702,0x0ba6,0x0ba7,0x0ba8,0x0ba9,0x0baa,0x0bab,0x0bac,0x0bad, // 05b0 0x0bae,0x0baf,0x0bb0,0x0bb3,0x0bb4,0x0bb5,0x0bb6,0x0bb7,0x0bb8,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e, // 05c0 0x0d1f,0x0d20,0x0d21,0x0bb9,0x0bbb,0x0bbd,0x0bbe,0x0bbf,0x0bc0,0x0bc1,0x4003,0x400b,0x400e,0x402e,0x403d,0x4042, // 05d0 0x4045,0x404b,0x4052,0x405b,0x405e,0x4078,0x4052,0x405b,0x405e,0x4078,0x4087,0x4090,0x4092,0x40a3,0x40ac,0x40b3, // 05e0 0x40b6,0x40bb,0x40bc,0x40bf,0x40c2,0x40c3,0x40c5,0x40c7,0x40c8,0x40c8,0x40cb,0x40d9,0x40db,0x40c6,0x40fe,0x0bc8, // 05f0 0x0bc9,0x0bca,0x0bcb,0x0bcc,0x0bcd,0x0bce,0x0bcf,0x0bd1,0x0bd2,0x0bd3,0x0bd4,0x0bd5,0x0bd6,0x0bfe,0x0bd7,0x0702, // 0600 0x0702,0x0702,0x0702,0x0702,0x3e03,0x3e06,0x3e09,0x3e0c,0x3e0f,0x3e12,0x3e15,0x3e18,0x3e1b,0x3e1e,0x3e21,0x3e24, // 0610 0x3e27,0x3e2a,0x3e2d,0x3e30,0x3e33,0x3e36,0x3e39,0x3e3c,0x3e3f,0x3e42,0x3e45,0x3e48,0x3e4b,0x3e4e,0x3e51,0x3e54, // 0620 0x3e57,0x3e5a,0x3e63,0x3e66,0x3e69,0x3e6c,0x3e6d,0x3e6f,0x3e72,0x3e75,0x3e7b,0x3e7c,0x3e7e,0x3e81,0x3e64,0x0d03, // 0630 0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0c4a,0x0c4b,0x0c4c,0x0c4d,0x0c4e,0x0c4f,0x3e5d, // 0640 0x3e60,0x3e84,0x3e87,0x3e8a,0x3e8d,0x3e10,0x3e1c,0x3ec7,0x3ec8,0x3e1d,0x3e61,0x3ecb,0x3e31,0x3ec9,0x3eca,0x3e04, // 0650 0x3e07,0x3e0a,0x3e13,0x3e19,0x3e1f,0x3e3a,0x3e40,0x3ec1,0x3ec2,0x3e49,0x3ec6,0x3e67,0x3ec3,0x0d03,0x0d19,0x0d1a, // 0660 0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0c50,0x0c51,0x1201,0x1202,0x1203,0x1204,0x1205,0x1206,0x1207, // 0670 0x1209,0x120a,0x120b,0x120c,0x120d,0x120e,0x1210,0x1211,0x1212,0x1213,0x1214,0x1215,0x1216,0x1218,0x1219,0x121a, // 0680 0x121b,0x121c,0x121d,0x121e,0x121f,0x1220,0x1221,0x1222,0x1224,0x1225,0x1208,0x120f,0x1217,0x1223,0x1226,0x1227, // 0690 0x1228,0x1229,0x1203,0x1203,0x07dc,0xc002,0xc255,0xc4a9,0xc707,0xc961,0xcbb3,0xce1c,0xd076,0xd2cc,0xd52c,0xd786, // 06a0 0xd9e4,0xdc48,0xde9f,0xe0f4,0xe34c,0xe59d,0xe7ef,0xea46,0xc6fb,0xc6fc,0xc6fd,0xc6ff,0xc960,0xce08,0xce0b,0xce19, // 06b0 0xce1b,0xd06f,0xd075,0xd2c8,0xd2c9,0xd2ca,0xd51f,0xd520,0xd521,0xd522,0xd523,0xd524,0xd525,0xd526,0xd527,0xd528, // 06c0 0xd52a,0xd52b,0xd77f,0xd780,0xd781,0xd782,0xd783,0xd784,0xd785,0xd9d7,0xd9d8,0xd9d9,0xd9da,0xd9db,0xd9dc,0xd9dd, // 06d0 0xd9de,0xd9df,0xd9e0,0xd9e1,0xd9e2,0xd9e3,0xdc38,0xdc3a,0xdc3b,0xdc3c,0xdc3d,0xdc3e,0xdc3f,0xdc40,0xdc41,0xdc43, // 06e0 0xdc44,0xdc45,0xde9e,0xe0f0,0xe0f1,0xe0f2,0xe0f3,0xe348,0xe349,0xe34a,0xe34b,0xea44,0xea45,0xed9d,0xed9e,0xed9f, // 06f0 0xede3,0xeda0,0xeda3,0xeda4,0xeda7,0xeda8,0xedac,0xedad,0xedb0,0xedb1,0xedb2,0xedb3,0xedb9,0xedba,0xedc0,0xedc3, // 0700 0xedc5,0xedc8,0xedc9,0xedd1,0xedd5,0xedd7,0xeda1,0xeda2,0xeda5,0xeda6,0xeda9,0xedaa,0xedab,0xedae,0xedaf,0xedb4, // 0710 0xedb5,0xedb6,0xedb7,0xedb8,0xedbb,0xedbc,0xedbd,0xedbe,0xedbf,0xedc1,0xedc2,0xedc4,0xedc6,0xedc7,0xedca,0xedcb, // 0720 0xedcc,0xedcd,0xedce,0xedcf,0xedd0,0xedd2,0xedd3,0xedd6,0xedd8,0xedd9,0xedda,0xeddb,0xeddc,0xeddd,0xedde,0xeddf, // 0730 0xede0,0xede1,0xede2,0xc002,0xc255,0xc4a7,0xc4a9,0xc704,0xc706,0xc707,0xcbb3,0xce06,0xce0c,0xce0f,0xce13,0xce17, // 0740 0xce18,0xce19,0xce1c,0xd076,0xd51f,0xd52c,0xd786,0xd9e4,0xdc48,0xe0f4,0xe34c,0xe59d,0xe7ef,0xea46,0xc4a6,0xc4a8, // 0750 0xc6fb,0xc6fe,0xc702,0xc703,0xc705,0xc960,0xcbb2,0xce07,0xce08,0xce09,0xce0a,0xce0b,0xce0d,0xce0e,0xce10,0xce11, // 0760 0xce12,0xce14,0xce15,0xce16,0xce1a,0xd06d,0xd06e,0xd06f,0xd070,0xd071,0xd072,0xd073,0xd074,0xd075,0xd2cb,0xd528, // 0770 0xd529,0xd52a,0xd77f,0xd781,0xd782,0xd784,0xd9e3,0xdc38,0xdc39,0xdc3f,0xdc42,0xdc45,0xdc46,0xdc47,0xea44,0xea45, // 0780 0xed99,0xed9a,0xed9b,0xed9c,0xed9e,0x5202,0x5203,0x5205,0x5202,0x5206,0x5207,0x5208,0x5312,0x520a,0x520b,0x520c, // 0790 0x520d,0x520e,0x520f,0x5210,0x5211,0x5202,0x5203,0x5205,0x5202,0x5206,0x5207,0x5208,0x5209,0x5212,0x5213,0x5214, // 07a0 0x5215,0x5216,0x5217,0x5218,0x5219,0x521a,0x521b,0x521c,0x521d,0x521e,0x521f,0x5220,0x5221,0x5222,0x5223,0x5224, // 07b0 0x5225,0x5226,0x5227,0x5228,0x5229,0x521a,0x521b,0x521c,0x521d,0x521e,0x521f,0x5220,0x5221,0x522a,0x522b,0x522c, // 07c0 0x522d,0x522e,0x522f,0x5230,0x5231,0x5232,0x5233,0x5234,0x5235,0x5236,0x5238,0x5239,0x5313,0x5237,0x5234,0x523a, // 07d0 0x5243,0x5233,0x523b,0x523c,0x523d,0x523e,0x523f,0x5240,0x5241,0x523f,0x523d,0x5242,0x522c,0x523c,0x5244,0x5245, // 07e0 0x5246,0x5247,0x5248,0x5249,0x524a,0x524b,0x52f8,0x52f9,0x52fa,0x52fb,0x52fc,0x52fd,0x52fe,0x52ff,0x524c,0x524d, // 07f0 0x524e,0x524f,0x5250,0x5251,0x5252,0x5253,0x5254,0x5255,0x5256,0x5257,0x5258,0x5259,0x525a,0x525b,0x5202,0x5203, // 0800 0x5205,0x5202,0x5206,0x5207,0x5208,0x5314,0x5202,0x5205,0x5209,0x5206,0x5207,0x525c,0x525d,0x525e,0x525f,0x5260, // 0810 0x5261,0x5262,0x5263,0x5264,0x5265,0x5266,0x5267,0x5268,0x5269,0x526a,0x526b,0x526c,0x526d,0x526e,0x526f,0x5270, // 0820 0x5271,0x5272,0x5273,0x5274,0x5275,0x5276,0x5277,0x5278,0x5279,0x527a,0x5315,0x527a,0x5276,0x527b,0x5278,0x5275, // 0830 0x527c,0x527d,0x527e,0x527f,0x5280,0x5281,0x5282,0x5282,0x527e,0x5283,0x5280,0x527d,0x5284,0x5289,0x5285,0x5286, // 0840 0x5287,0x5288,0x528a,0x5316,0x526c,0x526d,0x526e,0x526f,0x5270,0x5271,0x5272,0x528b,0x528c,0x528d,0x528e,0x528f, // 0850 0x5290,0x5291,0x5292,0x5293,0x5294,0x5295,0x5296,0x5297,0x5298,0x5299,0x529a,0x529b,0x529c,0x529d,0x529e,0x529f, // 0860 0x52a0,0x52a1,0x5317,0x52a2,0x52a3,0x52a4,0x52a5,0x52a6,0x52a7,0x52a8,0x52a9,0x52aa,0x52ab,0x52ac,0x52ad,0x52ae, // 0870 0x52af,0x52b0,0x52b1,0x52b2,0x52b3,0x52b4,0x52b5,0x52b6,0x52b7,0x52b8,0x52b9,0x52ba,0x52bb,0x52bc,0x52bd,0x52be, // 0880 0x52bf,0x52c0,0x5318,0x52c0,0x52bc,0x52c1,0x52be,0x52bb,0x52c2,0x52c3,0x52c4,0x52c5,0x52c6,0x52c7,0x52c8,0x5319, // 0890 0x52c9,0x52ca,0x52cb,0x52cc,0x52cd,0x52ce,0x52cf,0x52d0,0x52d1,0x52d2,0x52d3,0x52d4,0x52d5,0x52d6,0x52d7,0x52d8, // 08a0 0x52d9,0x52da,0x52db,0x52dc,0x52dd,0x52de,0x52df,0x52e0,0x52e1,0x52e2,0x52e3,0x52e4,0x52e5,0x52e6,0x52e7,0x52e8, // 08b0 0x52e1,0x52e2,0x52e3,0x52e4,0x52e5,0x52e6,0x52e7,0x531a,0x52e9,0x52ea,0x52eb,0x52ec,0x52ed,0x52ee,0x52ef,0x52f0, // 08c0 0x52f1,0x52f2,0x52f3,0x52f4,0x52f5,0x52f6,0x52f7,0x52f1,0x5222,0x5212,0x52e9,0x0914,0x0d19,0x0d1a,0x0d1b,0x0d1c, // 08d0 0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x0d22,0x0d2c,0x0d36,0x0d40,0x0d4a,0x0d4c,0x0d4e,0x0d50,0x0d52,0x0d54,0x0d5a, // 08e0 0x5302,0x5303,0x5304,0x5305,0x5306,0x5307,0x5308,0x5309,0x530a,0x530b,0x530c,0x530d,0x530e,0x530f,0x5310,0x5311, // 08f0 0x0915,0x0916,0x0917,0x0918,0x0919,0x091a,0x091b,0x091c,0x091d,0x091e,0x4703,0x4704,0x4705,0x4706,0x4707,0x4708, // 0900 0x4709,0x470a,0x470b,0x470c,0x470d,0x470e,0x470f,0x4710,0x4711,0x4712,0x4713,0x4714,0x4715,0x4716,0x4717,0x4718, // 0910 0x4719,0x471a,0x471b,0x471c,0x471d,0x471e,0x471f,0x4720,0x4721,0x4722,0x4723,0x4724,0x4725,0x4726,0x4727,0x4728, // 0920 0x4729,0x472a,0x472b,0x472c,0x472d,0x472e,0x472f,0x4730,0x4731,0x4732,0x4733,0x4734,0x4735,0x4736,0x4737,0x4738, // 0930 0x4739,0x473a,0x473b,0x473c,0x473d,0x473e,0x473f,0x4740,0x4741,0x4742,0x4743,0x4744,0x4745,0x4746,0x4747,0x4748, // 0940 0x4749,0x474a,0x474b,0x474c,0x474d,0x474e,0x474f,0x4750,0x4751,0x4752,0x4753,0x4754,0x4755,0x4756,0x4757,0x4408, // 0950 0x4408,0x4404,0x4404,0x4406,0x4406,0x44c3,0x44c3,0x44c3,0x4408,0x4408,0x44c3,0x44c3,0x44c3,0x44c3,0x44c3,0x44c4, // 0960 0x44c4,0x44c4,0x44c4,0x44c4,0x44c4,0x44c4,0x44c4,0x44c5,0x44c5,0x44c5,0x44c5,0x44c5,0x44c5,0x44c5,0x44c5,0x44c6, // 0970 0x44c6,0x44c6,0x44c6,0x44c6,0x44c6,0x44c6,0x44c6,0x44c7,0x44c7,0x44c7,0x44c7,0x44c7,0x44c7,0x4412,0x4412,0x440e, // 0980 0x440e,0x4410,0x4410,0x44c7,0x44c7,0x44c8,0x4412,0x4412,0x44c8,0x44c8,0x44c8,0x44c8,0x44c8,0x44c8,0x44c8,0x44c9, // 0990 0x44c9,0x44c9,0x44c9,0x44c9,0x44c9,0x44c9,0x44c9,0x4414,0x44ca,0x44ca,0x441c,0x441c,0x4418,0x4418,0x441a,0x441a, // 09a0 0x44ca,0x44ca,0x44ca,0x441c,0x441c,0x44ca,0x44ca,0x44ca,0x44cb,0x44cb,0x44cb,0x44cb,0x44cb,0x44cb,0x44cb,0x44cb, // 09b0 0x44cc,0x44cc,0x44cc,0x44cc,0x441e,0x44cc,0x44cc,0x44cc,0x44cc,0x4426,0x4426,0x4422,0x4422,0x4424,0x4424,0x44cd, // 09c0 0x4426,0x4426,0x44cd,0x44cd,0x44cd,0x44cd,0x44cd,0x44cd,0x44cd,0x44ce,0x44ce,0x44ce,0x44ce,0x44ce,0x44ce,0x44ce, // 09d0 0x44ce,0x4428,0x44cf,0x44cf,0x44cf,0x44cf,0x44cf,0x4430,0x4430,0x442c,0x442c,0x442e,0x442e,0x44cf,0x4430,0x4430, // 09e0 0x44cf,0x44cf,0x44d0,0x44d0,0x44d0,0x44d0,0x44d0,0x44d0,0x44d0,0x44d0,0x44d1,0x44d1,0x44d1,0x44d1,0x44d1,0x4432, // 09f0 0x44d1,0x443a,0x443a,0x4436,0x4436,0x4438,0x4438,0x44d1,0x443a,0x443a,0x44d1,0x44d2,0x44d2,0x44d2,0x44d2,0x44d2, // 0a00 0x44d2,0x44d2,0x44d2,0x44d3,0x44d3,0x44d3,0x44d3,0x44d3,0x44d3,0x443c,0x44d3,0x44d3,0x44d4,0x44d4,0x4444,0x4444, // 0a10 0x4440,0x4440,0x4442,0x4442,0x44d4,0x4444,0x4444,0x44d4,0x44d4,0x44d4,0x44d4,0x44d4,0x44d5,0x44d5,0x4446,0x44d5, // 0a20 0x44d5,0x4458,0x4458,0x4454,0x4454,0x4456,0x4456,0x44d5,0x4458,0x4458,0x44d5,0x44d5,0x44d5,0x44d6,0x44d6,0x44d6, // 0a30 0x44d6,0x44d6,0x44d6,0x44d6,0x44d6,0x44d7,0x44d7,0x44d7,0x445a,0x44d7,0x44d7,0x444e,0x444e,0x444a,0x444a,0x444c, // 0a40 0x444c,0x44d7,0x444e,0x444e,0x44d7,0x44d7,0x44d8,0x44d8,0x44d8,0x44d8,0x44d8,0x44d8,0x44d8,0x44d8,0x44d9,0x44d9, // 0a50 0x44d9,0x44d9,0x44d9,0x4450,0x44d9,0x44d9,0x44d9,0x44da,0x44da,0x44da,0x44da,0x44da,0x44da,0x44da,0x44da,0x44db, // 0a60 0x44db,0x44db,0x44db,0x44db,0x44db,0x44db,0x44db,0x44dc,0x44dc,0x44dc,0x44dc,0x44dc,0x44dc,0x44dc,0x44dc,0x44dd, // 0a70 0x44dd,0x44dd,0x44dd,0x44dd,0x4462,0x4462,0x445e,0x445e,0x4460,0x4460,0x44dd,0x4462,0x4462,0x44dd,0x44dd,0x44de, // 0a80 0x44de,0x44de,0x44de,0x44de,0x44de,0x44de,0x44de,0x44df,0x44df,0x44df,0x44df,0x44df,0x4464,0x44df,0x44df,0x44df, // 0a90 0x4476,0x44e0,0x44e0,0x4476,0x4472,0x4472,0x4474,0x4474,0x44e0,0x4476,0x4476,0x44e0,0x44e0,0x44e0,0x4478,0x44e0, // 0aa0 0x44e0,0x446c,0x446c,0x4468,0x4468,0x446a,0x446a,0x446c,0x446c,0x44e1,0x44e1,0x446e,0x44e1,0x44e1,0x44e1,0x44e1, // 0ab0 0x44e1,0x44e1,0x44e2,0x44e2,0x44e2,0x44e2,0x44e2,0x44e2,0x44e2,0x44e2,0x44e3,0x44e3,0x44e3,0x44e3,0x44e3,0x44e3, // 0ac0 0x44e3,0x44e3,0x44e4,0x44e4,0x44e4,0x44e4,0x44e4,0x44e4,0x44e4,0x44e4,0x44b4,0x44e5,0x4480,0x447c,0x447c,0x447e, // 0ad0 0x447e,0x4480,0x4480,0x4482,0x44e5,0x44e5,0x44e5,0x44e5,0x44e5,0x44e5,0x44e5,0x44e6,0x448a,0x4486,0x4486,0x4488, // 0ae0 0x4488,0x448a,0x448a,0x448c,0x4496,0x44e6,0x44e6,0x44e6,0x44e6,0x44e6,0x44e6,0x44e6,0x44e7,0x44e7,0x44a4,0x44a4, // 0af0 0x44a6,0x44a6,0x44a8,0x44a8,0x44aa,0x44e7,0x449a,0x449a,0x449c,0x449c,0x449e,0x449e,0x44a0,0x44e7,0x44e7,0x44e7, // 0b00 0x44e7,0x44e7,0x44e8,0x44e8,0x44e8,0x44e8,0x44e8,0x44e8,0x44e8,0x44e8,0x44e9,0x44e9,0x44e9,0x44e9,0x44e9,0x44e9, // 0b10 0x44e9,0x44e9,0x44ea,0x44ea,0x44ea,0x44ea,0x44ea,0x44ea,0x44ea,0x44ea,0x44eb,0x44eb,0x44eb,0x44eb,0x44eb,0x44eb, // 0b20 0x44eb,0x44eb,0x44ec,0x44ec,0x44ec,0x44ec,0x44ec,0x44ec,0x44ec,0x44ec,0x44ed,0x44ed,0x44ed,0x44ed,0x44ed,0x44ed, // 0b30 0x44ed,0x44ed,0x44ee,0x44ee,0x44ee,0x44ee,0x44ee,0x44ee,0x44ee,0x44ee,0x44ef,0x44ef,0x44ef,0x44ef,0x44ef,0x44ef, // 0b40 0x44ef,0x44ef,0x44f0,0x44f0,0x44f0,0x44f0,0x44f0,0x44f0,0x44f0,0x44f0,0x44f1,0x44f1,0x44f1,0x44f1,0x44f1,0x44f1, // 0b50 0x44f1,0x44f1,0x44f2,0x44f2,0x44f2,0x44f2,0x44f2,0x44f2,0x44f2,0x44f2,0x44f3,0x44f3,0x44f3,0x44f3,0x44f3,0x44f3, // 0b60 0x44f3,0x44f3,0x44f4,0x44f4,0x44f4,0x44f4,0x44f4,0x44f4,0x44f4,0x44f4,0x44f5,0x44f5,0x44f5,0x44f5,0x44f5,0x44f5, // 0b70 0x44f5,0x44f5,0x44f6,0x44f6,0x44f6,0x44f6,0x44f6,0x44f6,0x44f6,0x44f6,0x44f7,0x44f7,0x44f7,0x44f7,0x44f7,0x44f7, // 0b80 0x44f7,0x44f7,0x44f8,0x44f8,0x44f8,0x44f8,0x44f8,0x44f8,0x44f8,0x44f8,0x44f9,0x44f9,0x44f9,0x44f9,0x44f9,0x44f9, // 0b90 0x44f9,0x44f9,0x44fa,0x44fa,0x44fa,0x44fa,0x44fa,0x44fa,0x44fa,0x44fa,0x44fb,0x44fb,0x44fb,0x44fb,0x44fb,0x44fb, // 0ba0 0x44fb,0x44fb,0x44fc,0x44fc,0x44fc,0x44fc,0x44fc,0x44fc,0x44fc,0x44fc,0x44fd,0x44fd,0x44fd,0x44fd,0x44fd,0x44fd, // 0bb0 0x44fd,0x44fd,0x44fe,0x44fe,0x44fe,0x44fe,0x44fe,0x44fe,0x44fe,0x44fe,0x44ff,0x44be,0x078f,0x4480,0x448a,0x4490, // 0bc0 0x4490,0x4492,0x4492,0x4494,0x4494,0x4904,0x4905,0x4906,0x4907,0x4908,0x4909,0x490a,0x490b,0x490c,0x490d,0x490e, // 0bd0 0x490f,0x4910,0x4911,0x4912,0x4913,0x4914,0x4915,0x4916,0x4917,0x4918,0x4919,0x491a,0x491b,0x491c,0x491d,0x0790, // 0be0 0x0791,0x4805,0x4807,0x483d,0x4809,0x480b,0x4839,0x483b,0x480d,0x480f,0x4811,0x4813,0x4815,0x4843,0x4817,0x4819, // 0bf0 0x481b,0x481d,0x481f,0x4821,0x4823,0x4825,0x4827,0x4829,0x482a,0x482b,0x482d,0x482f,0x4831,0x4833,0x4835,0x4837, // 0c00 0x483f,0x4847,0x4849,0x4841,0x4845,0x484b,0x484d,0x4821,0x482f,0x4809,0x4a03,0x4a04,0x4a05,0x4a06,0x4a07,0x4a08, // 0c10 0x4a09,0x4a0a,0x4a0b,0x4a0c,0x4a0d,0x4a0e,0x4a0f,0x4a10,0x4a11,0x4a12,0x4a13,0x4a35,0x4a36,0x4a37,0x4a38,0x4a39, // 0c20 0x4a3a,0x4a3b,0x4a3c,0x4a3d,0x4a3e,0x4a3f,0x4a40,0x4a41,0x4a42,0x4a43,0x4a44,0x4a45,0x4a46,0x0789,0x078a,0x4a67, // 0c30 0x4a68,0x4a69,0x4a6a,0x4a6b,0x4a6c,0x4a6d,0x4a6e,0x4a6f,0x4a70,0x4a71,0x4a72,0x4a73,0x4a74,0x4a75,0x4a76,0x4a77, // 0c40 0x4a78,0x4a96,0x4a97,0x4a98,0x4a99,0x4a9a,0x4a9b,0x4a9c,0x4a9d,0x4a9e,0x4a9f,0x4aa0,0x4aa1,0x4aa2,0x4aa3,0x4aa4, // 0c50 0x4aa5,0x430a,0x430c,0x430e,0x4310,0x4312,0x4314,0x4316,0x4318,0x431a,0x431c,0x431e,0x4320,0x4322,0x4324,0x4326, // 0c60 0x4328,0x432a,0x432c,0x432e,0x4332,0x4334,0x4338,0x433a,0x433c,0x433e,0x4340,0x4342,0x434a,0x434e,0x4350,0x4352, // 0c70 0x4354,0x4356,0x4358,0x435a,0x435a,0x435a,0x435a,0x435a,0x435a,0x435a,0x435a,0x435a,0x4342,0x4342,0x434a,0x434a, // 0c80 0x435a,0x435a,0x435a,0x435a,0x435a,0x43f0,0x43f1,0x43f2,0x43f3,0x43f4,0x43f5,0x43f6,0x07b0,0x4302,0x0d03,0x0d19, // 0c90 0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x43b4,0x43b5,0x43b6,0x43b7,0x43b8,0x43b9,0x43ba,0x43bb, // 0ca0 0x43bc,0x43bd,0x0c3c,0x0c3d,0x070e,0x0c3e,0x0713,0x0c3f,0x0c40,0x070e,0x0c41,0x0c42,0x0702,0x0d03,0x0d19,0x0d1a, // 0cb0 0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x3f0a,0x3f0d,0x3f10,0x3f16,0x3f19,0x3f1c,0x3f1f,0x3f22,0x3f25, // 0cc0 0x3f28,0x3f2e,0x3f31,0x3f34,0x3f37,0x3f40,0x3f43,0x3f46,0x3f49,0x3f5b,0x3f5e,0x3f61,0x3f6a,0x3f70,0x3f76,0x3f79, // 0cd0 0x3f7c,0x3f7f,0x3f82,0x3f85,0x3f88,0x3f8e,0x3f91,0x3f94,0x3f97,0x3f9a,0x3f07,0x3f0d,0x3f10,0x3f16,0x3f19,0x3f1c, // 0ce0 0x3f1f,0x3f28,0x3f2e,0x3f31,0x3f34,0x3f37,0x3f40,0x3f5b,0x3f5e,0x3f61,0x3f6a,0x3f85,0x3f70,0x3f79,0x3f7f,0x3f8b, // 0cf0 0x3f8e,0x3f9d,0x3fa0,0x3f64,0x3f0d,0x3f10,0x3f13,0x3f1f,0x3f19,0x3f28,0x3f7f,0x3f37,0x3f3d,0x3f31,0x3f49,0x3f5b, // 0d00 0x3f5e,0x3f6a,0x3f7c,0x3f8b,0x3f8e,0x3f85,0x3f88,0x3fa3,0x3f61,0x3f6d,0x3f10,0x3f7f,0x3f76,0x3f7c,0x3f6d,0x3fe9, // 0d10 0x3fec,0x3fef,0x3ff2,0x3ff5,0x3ff8,0x3ffb,0x3f0a,0x3f10,0x3f7f,0x3f2b,0x3f67,0x3fa6,0x3fac,0x3faf,0x3fb5,0x3fb8, // 0d20 0x3fc2,0x3fc8,0x3fcb,0x3fd1,0x3fd7,0x3fda,0x3fdd,0x3fbf,0x3fd7,0x3f3a,0x3f2b,0x3f4c,0x3f4f,0x3fa9,0x3fb2,0x3fbf, // 0d30 0x3fc5,0x3f52,0x3fd4,0x3f55,0x3f58,0x3fe0,0x3fe3,0x3fce,0x3fe4,0x4935,0x4936,0x4937,0x4938,0x4939,0x493a,0x493b, // 0d40 0x493c,0x493d,0x493e,0x493f,0x4940,0x4941,0x4942,0x4943,0x4944,0x4945,0x4946,0x4947,0x4948,0x4949,0x494a,0x494b, // 0d50 0x494c,0x494d,0x494e,0x494f,0x4950,0x4951,0x0bf8,0x0707,0x0715,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e, // 0d60 0x0d1f,0x0d20,0x0d21,0x4985,0x4986,0x4987,0x4988,0x4989,0x498a,0x498b,0x498c,0x498d,0x498e,0x498f,0x4990,0x4991, // 0d70 0x4992,0x4993,0x4994,0x4995,0x4996,0x4997,0x4998,0x4999,0x499a,0x499b,0x499c,0x499d,0x499e,0x499f,0x49a0,0x49a1, // 0d80 0x49a2,0x49a3,0x49a4,0x49a5,0x49a6,0x49a7,0x4c02,0x4c03,0x4c04,0x4c05,0x4c06,0x4c07,0x4c08,0x4c09,0x4c0a,0x4c0b, // 0d90 0x4c0c,0x4c0d,0x4c0e,0x4c0f,0x4c10,0x4c11,0x4c12,0x4c13,0x4c14,0x4c15,0x4c16,0x4c17,0x4c18,0x4c19,0x4c1a,0x4c1b, // 0da0 0x4c1c,0x4c1d,0x4c1e,0x4c1f,0x4c20,0x4c21,0x4c22,0x4c23,0x4c24,0x4c25,0x4c26,0x4c27,0x4c28,0x4c29,0x4c2a,0x4c2b, // 0db0 0x4c3d,0x4c3e,0x4c3f,0x4c40,0x4c41,0x4c42,0x4c43,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20, // 0dc0 0x0d21,0x0779,0x43c8,0x43c9,0x43ca,0x43cb,0x43cc,0x43cd,0x43ce,0x43cf,0x43d0,0x43d1,0x43d2,0x43d3,0x43d4,0x43d5, // 0dd0 0x43d6,0x43d7,0x43d8,0x43d9,0x43da,0x43db,0x43dc,0x43dd,0x43de,0x43df,0x43e0,0x43e1,0x43e2,0x43e3,0x43e4,0x43e5, // 0de0 0x43e6,0x43e7,0x4b64,0x4b65,0x4b66,0x4b67,0x4b68,0x4b69,0x4b6a,0x4b6b,0x4b6c,0x4b6d,0x4b6e,0x4b6f,0x4b70,0x4b71, // 0df0 0x4b72,0x4b73,0x4b74,0x4b75,0x4b76,0x4b77,0x4b78,0x4b79,0x4b7a,0x4b80,0x4b81,0x546e,0x5472,0x5476,0x547a,0x547e, // 0e00 0x5482,0x5484,0x5486,0x548a,0x548c,0x548e,0x5490,0x5492,0x5494,0x5496,0x5498,0x549a,0x549c,0x549e,0x54a0,0x54a2, // 0e10 0x54a4,0x54a6,0x54a8,0x54aa,0x54ac,0x54ae,0x54b0,0x54b2,0x54b4,0x54b6,0x54b8,0x54ba,0x54bc,0x54be,0x54c0,0x54c2, // 0e20 0x54c4,0x54c6,0x54c8,0x54ca,0x54ee,0x54f0,0x54f2,0x54f4,0x54f6,0x54f8,0x54fa,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c, // 0e30 0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x07f6,0x07f7,0x07f8,0x07f9,0x07fa,0x07fb,0x07fc,0x0cfb,0x0cfb,0x0cfb,0x0cfb, // 0e40 0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x0cfb,0x5b0c, // 0e50 0x5b0d,0x5b0e,0x5b0f,0x5b10,0x5b11,0x5b12,0x5b13,0x5b15,0x5b16,0x5b17,0x5b18,0x5b19,0x5b1a,0x5b1b,0x5b1c,0x5b1d, // 0e60 0x5b1e,0x5b1f,0x5b20,0x5b21,0x5b22,0x5b23,0x5b24,0x5b26,0x5b28,0x5b2a,0x5b2b,0x5b2c,0x5b2e,0x5b14,0x5b2d,0x0d03, // 0e70 0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x5c02,0x5c03,0x5c04,0x5c05,0x5c06,0x5c07,0x5c08, // 0e80 0x5c09,0x5c0a,0x5c0b,0x5c0f,0x5c10,0x5c11,0x5c12,0x5c13,0x5c14,0x5c15,0x5c16,0x5c17,0x5c18,0x5c19,0x5c1a,0x5c1b, // 0e90 0x5c1c,0x5c1d,0x5c1e,0x5c1f,0x5c21,0x5c23,0x5c24,0x5c25,0x5c26,0x5c27,0x5c28,0x5c29,0x5c2a,0x07e2,0x07e3,0x07e4, // 0ea0 0x07e5,0x07e6,0x0d03,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x5c0c,0x5c0d,0x5c0e,0x0d03, // 0eb0 0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0d1f,0x0d20,0x0d21,0x5d02,0x5d03,0x5d04,0x5d05,0x5d06,0x5d07,0x5d08, // 0ec0 0x5d09,0x5d0a,0x5d0b,0x5d0c,0x5d0d,0x5d0e,0x5d0f,0x5d10,0x5d11,0x5d12,0x5d13,0x5d14,0x5d15,0x5d16,0x5d17,0x5d18, // 0ed0 0x5d19,0x5d1a,0x5d1b,0x5d1c,0x5d1d,0x5d1e,0x5d1f,0x5d20,0x5d21,0x5d22,0x5d23,0x5d24,0x5d25,0x07e7,0x07e8,0x0e22, // 0ee0 0x0e70,0x0e7c,0x0e7d,0x0e7c,0x0e8a,0x0e8a,0x0ea0,0x0ea0,0x0e21,0x0e92,0x0e03,0x0f06,0x0f16,0x0f22,0x0f24,0x0f30, // 0ef0 0x1032,0x0e02,0x0e02,0x0e09,0x0e1a,0x0e21,0x0e21,0x0e25,0x0e2c,0x0e32,0x0e35,0x0e36,0x0e48,0x0e51,0x0e70,0x0e70, // 0f00 0x0e7c,0x0e7d,0x0e7e,0x0e8a,0x0e99,0x0e9f,0x0ea4,0x0e02,0x0e02,0x0f02,0x0e02,0x0e09,0x0e1a,0x0e21,0x0e21,0x0e22, // 0f10 0x0e22,0x0e25,0x0e36,0x0e51,0x0e74,0x0e7c,0x0e0a,0x0e7c,0x0e7c,0x0e7e,0x0e99,0x0e9f,0x0e9f,0x0e51,0x0ea2,0x0e03, // 0f20 0x0f04,0x0f06,0x0f08,0x0f2c,0x0f2e,0x0e32,0x0e8a,0x0e9f,0x0ea2,0x0f04,0x0f06,0x0f24,0x0f2c,0x0f2e,0x103a,0x0e04, // 0f30 0x0e22,0x0e04,0x0e0a,0x0e32,0x0e32,0x0e48,0x0e48,0x0e51,0x0e70,0x0e70,0x0e7c,0x0e7e,0x0e91,0x0e9f,0x0e9f,0x0e9f, // 0f40 0x0ea2,0x0ea9,0x0e20,0x07bd,0x07be,0x07c7,0x0715,0x0777,0x0778,0x0b25,0x0b26,0x0b28,0x0a0f,0x0a10,0x0717,0x0718, // 0f50 0x0b2c,0x0b2c,0x0781,0x0781,0x0781,0x0787,0x0b2e,0x071c,0x078b,0x078c,0x078d,0x0b2f,0x0b30,0x0b31,0x073c,0x073c, // 0f60 0x071c,0x0787,0x0725,0x0724,0x071d,0x071e,0x0723,0x0722,0x072d,0x0721,0x0788,0x0720,0x071a,0x071a,0x071f,0x071a, // 0f70 0x071a,0x071a,0x071a,0x0c02,0x0c03,0x0c04,0x0e32,0x0727,0x072a,0x0e70,0x0727,0x072a,0x0e02,0x0e21,0x0e7c,0x0ea6, // 0f80 0x0e21,0x079d,0x07ab,0x07a8,0x079e,0x079f,0x07a0,0x07a1,0x07a2,0x07a3,0x07a4,0x07b6,0x07b7,0x07a9,0x07a0,0x07a7, // 0f90 0x07a5,0x07a6,0x079b,0x07b2,0x07b3,0x07b4,0x07b5,0x0e05,0x0e06,0x0e13,0x0e18,0x0e19,0x0e92,0x0e49,0x0e71,0x0afa, // 0fa0 0x0e8b,0x0e8c,0x0e93,0x0e9a,0x0e9c,0x0ea3,0x0f32,0x0f32,0x0b02,0x0b4d,0x070a,0x0c64,0x0c65,0x0cfd,0x0d0e,0x0d14, // 0fb0 0x0d0c,0x0d10,0x0d12,0x0d16,0x0d0b,0x0d17,0x0d0a,0x0d0f,0x0d13,0x0d18,0x0da6,0x0dac,0x0dad,0x0dae,0x0db0,0x0db1, // 0fc0 0x0db2,0x0db3,0x0db5,0x0db6,0x0dc8,0x0dcd,0x0dd2,0x0dbe,0x0d1e,0x0d4a,0x0dd3,0x0dd7,0x09df,0x09d9,0x09db,0x09dd, // 0fd0 0x09e1,0x09e2,0x09e0,0x09da,0x09dc,0x09de,0x09df,0x09db,0x09df,0x09d9,0x09db,0x09dd,0x09df,0x09db,0x09df,0x09d9, // 0fe0 0x09db,0x09dd,0x09e2,0x09df,0x09db,0x09df,0x09db,0x09e1,0x09dd,0x09df,0x09db,0x09df,0x09db,0x09dd,0x09df,0x09e4, // 0ff0 0x09e3,0x09e0,0x09e1,0x09e4,0x09e3,0x09df,0x09df,0x09d9,0x09d9,0x09db,0x09db,0x09dd,0x09dd,0x09e1,0x09e2,0x09e1, // 1000 0x09df,0x09d9,0x09db,0x09dd,0x09e1,0x09e1,0x09df,0x09d9,0x09db,0x09dd,0x09e1,0x09e2,0x09e0,0x09da,0x09dc,0x09de, // 1010 0x09df,0x09db,0x09df,0x09db,0x09d9,0x09dd,0x09df,0x09d9,0x09db,0x09dd,0x09df,0x09db,0x09df,0x09d9,0x09db,0x09dd, // 1020 0x09d9,0x09d9,0x09d9,0x09d9,0x09d9,0x09d9,0x09db,0x09e0,0x09dc,0x09e2,0x09db,0x09dd,0x09db,0x09df,0x09db,0x09db, // 1030 0x09df,0x09db,0x09dd,0x09df,0x09db,0x09df,0x0821,0x0822,0x0823,0x0824,0x0826,0x0827,0x0828,0x0829,0x082b,0x082c, // 1040 0x082e,0x082f,0x0830,0x0831,0x0832,0x080c,0x0833,0x0808,0x0834,0x0809,0x080a,0x080b,0x0835,0x0836,0x0837,0x0838, // 1050 0x0dff,0x0839,0x083a,0x083b,0x083c,0x083d,0x083f,0x0841,0x0842,0x0843,0x0844,0x0845,0x0a13,0x0a13,0x0848,0x0a13, // 1060 0x0a13,0x084b,0x084c,0x084d,0x084e,0x084f,0x0850,0x0851,0x0852,0x0853,0x0854,0x0855,0x0856,0x0857,0x0858,0x0859, // 1070 0x085a,0x085c,0x085d,0x085f,0x0860,0x0862,0x0864,0x0865,0x0866,0x0867,0x0868,0x0869,0x086a,0x086b,0x086c,0x086d, // 1080 0x086e,0x086f,0x0870,0x0871,0x0872,0x0873,0x0874,0x0875,0x0876,0x0877,0x0878,0x0879,0x087b,0x087d,0x087e,0x087f, // 1090 0x0880,0x0881,0x0882,0x0883,0x0819,0x081b,0x0884,0x088a,0x088b,0x088e,0x088f,0x080f,0x0815,0x0892,0x0893,0x0894, // 10a0 0x0895,0x0898,0x0899,0x089c,0x089d,0x08a0,0x08a1,0x08a2,0x08a3,0x08a4,0x08a5,0x08a6,0x08a7,0x08a8,0x08a9,0x08aa, // 10b0 0x0803,0x0804,0x0806,0x0808,0x080b,0x080a,0x0809,0x0812,0x0805,0x0803,0x0804,0x0806,0x080b,0x08ab,0x08ac,0x08ad, // 10c0 0x08ae,0x08af,0x08b0,0x08b1,0x08b2,0x08b3,0x08b4,0x0810,0x0816,0x08b9,0x08ba,0x08bb,0x08bc,0x08bd,0x08be,0x08bf, // 10d0 0x08c0,0x08c1,0x08c2,0x08c3,0x08c4,0x08c5,0x08c6,0x08c7,0x08c8,0x08c9,0x08ca,0x08cb,0x08cc,0x08cd,0x08ce,0x08cf, // 10e0 0x08d2,0x08d2,0x08d2,0x08d2,0x08d4,0x08d5,0x08d6,0x0898,0x0899,0x08d9,0x08da,0x08db,0x08dc,0x08dd,0x08de,0x08df, // 10f0 0x08e0,0x08e1,0x08e2,0x08e3,0x08e4,0x08e5,0x08e6,0x08eb,0x08ec,0x08ed,0x08ee,0x08ef,0x08f0,0x08f5,0x08f6,0x08f7, // 1100 0x08f8,0x0829,0x0829,0x082b,0x0829,0x0829,0x082b,0x0829,0x0829,0x08d0,0x08d0,0x08d0,0x0886,0x0887,0x0888,0x0938, // 1110 0x0938,0x0904,0x0905,0x0906,0x0907,0x0908,0x0909,0x090a,0x090b,0x090c,0x090d,0x090e,0x090f,0x0910,0x0911,0x0912, // 1120 0x0913,0x0914,0x0915,0x0916,0x0917,0x0918,0x0919,0x091a,0x091b,0x091c,0x091d,0x091e,0x091f,0x0920,0x0921,0x0922, // 1130 0x0923,0x0924,0x0925,0x0926,0x0927,0x0928,0x0929,0x092a,0x0793,0x0795,0x092d,0x092e,0x092f,0x0930,0x0931,0x0932, // 1140 0x0933,0x0934,0x0935,0x0936,0x0937,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938, // 1150 0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938, // 1160 0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938, // 1170 0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938, // 1180 0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0938,0x0b4e,0x0985,0x0b4f,0x0b50,0x0b51,0x0b52, // 1190 0x0b3e,0x0b3e,0x0b3f,0x0b40,0x0b41,0x0b42,0x0b43,0x0b44,0x0b53,0x0b54,0x0986,0x0b55,0x0b56,0x0b57,0x0b0c,0x0b0c, // 11a0 0x0b0c,0x0b0c,0x0b0c,0x0b58,0x0938,0x0b59,0x0b45,0x0b46,0x0b47,0x0b48,0x070b,0x070b,0x070b,0x070c,0x070c,0x070c, // 11b0 0x0717,0x0717,0x0717,0x0719,0x0719,0x0719,0x0726,0x0726,0x0726,0x0727,0x0728,0x0728,0x0728,0x0b5a,0x0b5b,0x0727, // 11c0 0x0727,0x0b49,0x0b49,0x0766,0x0768,0x0767,0x0b5c,0x0b4a,0x0b4a,0x0b0e,0x0b0e,0x0b0e,0x0b0e,0x0b0d,0x0b0d,0x0b0d, // 11d0 0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b0d,0x0b5d,0x0b0f,0x0b0f,0x0b5e, // 11e0 0x0c65,0x0c66,0x0c67,0x0c68,0x0c69,0x0c6a,0x0c6b,0x0c6c,0x0c6d,0x0c6e,0x0c6f,0x07e2,0x07e3,0x07e4,0x07e5,0x07e6, // 11f0 0x07e7,0x07e8,0x07e9,0x07ea,0x07eb,0x07ec,0x07ed,0x0cb6,0x0cb7,0x0cb8,0x0cb9,0x0cba,0x0cbb,0x0cbc,0x0cbd,0x0cbe, // 1200 0x0cbf,0x0cc0,0x0cc1,0x0cc2,0x0cc3,0x0cc4,0x0cc5,0x0cc6,0x0cc7,0x0cc8,0x0cc9,0x0cca,0x0ccb,0x0ccc,0x0ccd,0x0cce, // 1210 0x0ccf,0x0cd0,0x0cd1,0x0cd2,0x0cd3,0x0cd4,0x0cd5,0x0cd6,0x0cd7,0x0719,0x071a,0x0cd8,0x0b4b,0x0b4b,0x0aee,0x0aef, // 1220 0x0af0,0x0af1,0x0af2,0x0af3,0x0af4,0x0af5,0x0af6,0x0af7,0x0af8,0x0d22,0x0d23,0x0d24,0x0d25,0x0d26,0x0d27,0x0d28, // 1230 0x0d29,0x0d2a,0x0d2b,0x0d2c,0x0d22,0x0d23,0x0d24,0x0d25,0x0d26,0x0d27,0x0d28,0x0d29,0x0d2a,0x0d2b,0x0d2c,0x0d22, // 1240 0x0d23,0x0d24,0x0d25,0x0d26,0x0d27,0x0d28,0x0d29,0x0d2a,0x0d2b,0x0d2c,0x0d23,0x0d24,0x0d25,0x0d26,0x0d27,0x0d28, // 1250 0x0d29,0x0d2a,0x0d2b,0x0d2c,0x0d22,0x09e5,0x09e5,0x09e8,0x09e8,0x09e5,0x09e5,0x09e8,0x09e8,0x09e5,0x09e5,0x09e8, // 1260 0x09e8,0x09eb,0x09eb,0x09eb,0x09eb,0x09ec,0x09ec,0x09ec,0x09ec,0x09ed,0x09ed,0x09ed,0x09ed,0x09ee,0x09ee,0x09ee, // 1270 0x09ee,0x09ef,0x09ef,0x09ef,0x09ef,0x09ef,0x09ef,0x09ef,0x09ef,0x09f0,0x09f0,0x09f0,0x09f0,0x09f0,0x09f0,0x09f0, // 1280 0x09f0,0x09f1,0x09f1,0x09f1,0x09f1,0x09f1,0x09f1,0x09f1,0x09f1,0x09f2,0x09f2,0x09f2,0x09f2,0x09f2,0x09f2,0x09f2, // 1290 0x09f2,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3,0x09f3, // 12a0 0x09f3,0x09e5,0x09e5,0x09e8,0x09e8,0x09e5,0x09e8,0x09eb,0x09eb,0x09eb,0x09ec,0x09ec,0x09ec,0x09ed,0x09ed,0x09ed, // 12b0 0x09ee,0x09ee,0x09ee,0x09ef,0x09ef,0x09ef,0x09f0,0x09f0,0x09f0,0x09f1,0x09f1,0x09f1,0x09f2,0x09f2,0x09f2,0x09f3, // 12c0 0x09f3,0x09f3,0x09eb,0x09ec,0x09ee,0x09ed,0x09f4,0x09f5,0x09f6,0x09e6,0x09e9,0x09e7,0x09ea,0x09e6,0x09e9,0x09e7, // 12d0 0x09ea,0x09e5,0x09e8,0x09e5,0x09e8,0x09fa,0x09f7,0x09f8,0x09f9,0x09fa,0x09fb,0x09fc,0x09fd,0x09fe,0x09fd,0x09fc, // 12e0 0x09fb,0x09fa,0x09f9,0x09f8,0x09f7,0x09fa,0x09fe,0x09fe,0x09fe,0x09f7,0x09f7,0x0b10,0x0b10,0x0b10,0x0b10,0x0b10, // 12f0 0x0b10,0x0b10,0x0b10,0x0b10,0x0b10,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc,0x09bc, // 1300 0x09bc,0x09bd,0x09bd,0x09be,0x09be,0x09bf,0x09bf,0x09c0,0x09c0,0x09c0,0x09c0,0x09c1,0x09c1,0x09c1,0x09c1,0x09c4, // 1310 0x09c4,0x09c2,0x09c2,0x09c2,0x09c2,0x09c3,0x09c3,0x09c3,0x09c3,0x09c5,0x09c5,0x09c6,0x09c6,0x09c6,0x09c7,0x09c8, // 1320 0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09c9,0x09ca,0x09cb,0x09cc,0x09c9,0x09cd, // 1330 0x09ce,0x09cf,0x09d0,0x09d1,0x09d2,0x09d3,0x09d4,0x09d5,0x09d6,0x09d7,0x09d8,0x09cc,0x09bc,0x09bc,0x09bc,0x09bc, // 1340 0x09bc,0x09c0,0x09c0,0x09c0,0x09c1,0x0b11,0x0b11,0x0b11,0x0b11,0x0b12,0x0b12,0x0b12,0x0b12,0x0b13,0x0b13,0x0b13, // 1350 0x0b14,0x0b14,0x0b14,0x0b14,0x0b13,0x0a2f,0x0a30,0x0a31,0x0a32,0x0a33,0x0a35,0x0a34,0x0a36,0x0a37,0x0a38,0x0a39, // 1360 0x0a3a,0x0a3b,0x0a3c,0x0a3d,0x0a3e,0x0a3f,0x0a40,0x0a41,0x0a42,0x0b04,0x0b05,0x0b06,0x0b07,0x0c70,0x0b08,0x09df, // 1370 0x09db,0x09df,0x09d9,0x09db,0x09dd,0x0a43,0x0a44,0x0a45,0x0a46,0x0a47,0x0a48,0x0a49,0x0a4a,0x0a4b,0x0a4c,0x0a4d, // 1380 0x0a4e,0x0a4f,0x0a50,0x0a51,0x0a52,0x0a53,0x0a54,0x0a55,0x0a56,0x0a57,0x0a58,0x0a59,0x0a5a,0x0a5b,0x0a5c,0x0a5d, // 1390 0x0a5e,0x0a5f,0x0a60,0x0a61,0x0a62,0x0a63,0x0a64,0x0a65,0x0a66,0x0a67,0x0a68,0x0a69,0x0a6a,0x0a6b,0x0a6c,0x0a6d, // 13a0 0x0a6e,0x0a6f,0x0a70,0x0a71,0x0a72,0x0a73,0x0a74,0x0a75,0x0a76,0x0a77,0x0a78,0x0a79,0x0a7a,0x0a7b,0x0a7c,0x0a7d, // 13b0 0x0a7e,0x0a7f,0x0a80,0x0a81,0x0a82,0x0a83,0x0a84,0x0a85,0x0a86,0x0a87,0x0a88,0x0a89,0x0a8a,0x0a8b,0x0a8c,0x0a8d, // 13c0 0x0a8e,0x0a8f,0x0a90,0x0a91,0x0a92,0x0b09,0x0b0a,0x0b0b,0x0b0b,0x0b0b,0x0b0b,0x0b0b,0x0b0b,0x0b0b,0x0b0b,0x0b0b, // 13d0 0x0b0b,0x0b0b,0x0b0b,0x0c71,0x0c72,0x0d19,0x0d1a,0x0d1b,0x0d1c,0x0d1d,0x0d1e,0x0b17,0x0b18,0x0b19,0x0b1a,0x0b1b, // 13e0 0x0b1c,0x0b1d,0x0b1e,0x0b1f,0x0b20,0x0b21,0x0b22,0x0c73,0x0c74,0x0c75,0x0c76,0x0c77,0x0c78,0x0c79,0x0c7a,0x0c7b, // 13f0 0x0c7c,0x0c7d,0x0cfe,0x0b23,0x0b24,0x0c7e,0x0c7f,0x0c80,0x0c81,0x0c82,0x0c83,0x0c84,0x0c85,0x0c86,0x0c87,0x0c88, // 1400 0x0c89,0x0c8a,0x0c8b,0x0c8c,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0c8d, // 1410 0x0c8d,0x0c8d,0x0c8d,0x0c8d,0x0a93,0x0a94,0x0a95,0x0a96,0x0a97,0x0a98,0x0a99,0x0a9a,0x0a9b,0x0a9c,0x0a9d,0x0a9e, // 1420 0x0a9f,0x0aa0,0x0aa1,0x0aa2,0x0aa3,0x0aa4,0x0aa5,0x0aa6,0x0aa7,0x0aa8,0x0aa9,0x0aaa,0x0aab,0x0aac,0x0aad,0x0aae, // 1430 0x0aaf,0x0ab0,0x0ab1,0x0ab2,0x0ab3,0x0ab4,0x0ab5,0x0ab6,0x0ab7,0x0abe,0x0ab9,0x0aba,0x0abb,0x0abc,0x0abd,0x0ab8, // 1440 0x0abf,0x0ac0,0x0ac1,0x0ac2,0x0ac3,0x0ac4,0x0ac5,0x0ac6,0x0ac7,0x0ac8,0x0ac9,0x0aca,0x0acb,0x0acc,0x0acd,0x0ace, // 1450 0x0acf,0x0ad0,0x0ad1,0x0ad2,0x0ad3,0x0ad4,0x0ad5,0x0ad6,0x0ad7,0x0ad8,0x0ad9,0x0ada,0x0adb,0x0adc,0x0add,0x0ade, // 1460 0x0adf,0x0ae0,0x0ae1,0x0ae2,0x0ae3,0x0ae4,0x0ae5,0x0ae6,0x0ae7,0x0ae8,0x0ae9,0x0aea,0x0aeb,0x0aec,0x0aed,0x070b, // 1470 0x070c,0x070b,0x070c,0x0756,0x0757,0x0b4c,0x0b4c,0x0756,0x0757,0x0726,0x0728,0x0726,0x0728,0x0d22,0x0d22,0x0d22, // 1480 0x09db,0x09dc,0x09db,0x09da,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db, // 1490 0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09db,0x09dc,0x09db,0x09da,0x09dc, // 14a0 0x09db,0x09da,0x09db,0x09db,0x09db,0x09db,0x09db,0x0c8e,0x0c8f,0x0c90,0x0c91,0x0c92,0x0c93,0x0c94,0x0cfa,0x0cfa, // 14b0 0x0cfa,0x0cfa,0x0cff,0x0b5f,0x0b60,0x0b61,0x0b62,0x0b63,0x0b15,0x0b15,0x0b15,0x0b16,0x0b16,0x0b64,0x0b16,0x0b65, // 14c0 0x0b16,0x0b16,0x0b66,0x0b67,0x0b2d,0x0b2d,0x0b2d,0x0b2d,0x0b2d,0x0717,0x0719,0x0756,0x0757,0x0756,0x0757,0x0756, // 14d0 0x0757,0x0756,0x0757,0x0940,0x0940,0x0954,0x0955,0x0956,0x0957,0x0958,0x0959,0x093e,0x093e,0x093e,0x095a,0x095b, // 14e0 0x093e,0x0978,0x095c,0xa6fa,0xa6fb,0xa6fc,0xa6fd,0xa6fe,0xa6ff,0xa702,0xa703,0xa704,0xa705,0xa706,0xa707,0xa708, // 14f0 0xa709,0xa70a,0xa70b,0xa70c,0xa70d,0xa70e,0xa70f,0xa710,0xa711,0xa712,0xa713,0xa714,0xa715,0xa716,0xa717,0xa718, // 1500 0xa719,0xa71a,0xa71b,0xa71c,0xa71d,0xa71e,0xa71f,0xa720,0xa721,0xa722,0xa723,0xa724,0xa725,0xa726,0xa727,0xa728, // 1510 0xa729,0xa72a,0xa72b,0xa72c,0xa72d,0xa72e,0xa72f,0xa730,0xa731,0xa732,0xa733,0xa734,0xa735,0xa736,0xa737,0xa738, // 1520 0xa739,0xa73a,0xa73b,0xa73c,0xa73d,0xa73e,0xa73f,0xa740,0xa741,0xa742,0xa743,0xa744,0xa745,0xa746,0xa747,0xa748, // 1530 0xa749,0xa74a,0xa74b,0xa74c,0xa74d,0xa74e,0xa74f,0xa750,0xa751,0xa752,0xa753,0xa754,0xa755,0xa756,0xa757,0xa758, // 1540 0xa759,0xa75a,0xa75b,0xa75c,0xa75d,0xa75e,0xa75f,0xa760,0xa761,0xa762,0xa763,0xa764,0xa765,0xa766,0xa767,0xa768, // 1550 0xa769,0xa76a,0xa76b,0xa76c,0xa76d,0xa76e,0xa76f,0xa770,0xa771,0xa772,0xa773,0xa774,0xa775,0xa776,0xa777,0xa778, // 1560 0xa779,0xa77a,0xa77b,0xa77c,0xa77d,0xa77e,0xa77f,0xa780,0xa781,0xa782,0xa783,0xa784,0xa785,0xa786,0xa787,0xa788, // 1570 0xa789,0xa78a,0xa78b,0xa78c,0xa78d,0xa78e,0xa78f,0xa790,0xa791,0xa792,0xa793,0xa794,0xa795,0xa796,0xa797,0xa798, // 1580 0xa799,0xa79a,0xa79b,0xa79c,0xa79d,0xa79e,0xa79f,0xa7a0,0xa7a1,0xa7a2,0xa7a3,0xa7a4,0xa7a5,0xa7a6,0xa7a7,0xa7a8, // 1590 0xa7a9,0xa7aa,0xa7ab,0xa7ac,0xa7ad,0xa7ae,0xa7af,0xa7b0,0xa7b1,0xa7b2,0xa7b3,0xa7b4,0xa7b5,0xa7b6,0xa7b7,0xa7b8, // 15a0 0xa7b9,0xa7ba,0xa7bb,0xa7bc,0xa7bd,0xa7be,0xa7bf,0xa7c0,0xa7c1,0xa7c2,0xa7c3,0xa7c4,0xa7c5,0xa7c6,0xa7c7,0xa7c8, // 15b0 0xa7c9,0xa7ca,0xa7cb,0xa7cc,0xa7cd,0xa7ce,0xa7cf,0xa7d0,0xa7d1,0xa7d2,0xa7d3,0xa7d4,0xa7d5,0xa7d6,0xa7d7,0xa7d8, // 15c0 0xa7d9,0xa7da,0xa7db,0xa7dc,0xa7dd,0xa7de,0xa7df,0xa7e0,0xa7e1,0xa7e2,0xa7e3,0xa7e4,0xa7e5,0xa7e6,0xa7e7,0xa7e8, // 15d0 0xa7e9,0xa7ea,0xa7ec,0xa7ed,0xa7ee,0xa7ef,0xa7f0,0xa7f1,0xa7f2,0xa7f3,0xa7f4,0xa7f5,0xa7f6,0xa7f7,0xa7f8,0xa7f9, // 15e0 0xa7fa,0xa7fb,0xa7fc,0x0941,0x093e,0x0977,0x093e,0x093e,0x0941,0x093f,0x093f,0x0945,0x0951,0x093f,0x093f,0x093e, // 15f0 0x093e,0x093e,0x093f,0x093e,0x095d,0x094f,0x094e,0x094d,0x093e,0x0941,0x0941,0x0941,0x097a,0x0939,0x0979,0x0939, // 1600 0x093a,0x093b,0x093a,0x093b,0x093c,0x093c,0x093d,0x093d,0x093d,0x093d,0x093c,0x093c,0x093c,0x093c,0x094c,0x095f, // 1610 0x093c,0x093c,0x093c,0x093c,0x093c,0x093c,0x0953,0x0942,0x0942,0x0942,0x0942,0x0960,0x0961,0x0962,0x0963,0x0964, // 1620 0x096d,0x096c,0x096a,0x0950,0x0952,0x0946,0x0968,0x0947,0x0948,0x0949,0x094a,0x094b,0x0941,0x0943,0x0943,0x0943, // 1630 0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943,0x0943, // 1640 0x0943,0x0943,0x0943,0x0943,0x0943,0x0944,0x0944,0x0944,0x0944,0x0944,0x0944,0x0944,0x0944,0x0943,0x0943,0x0943, // 1650 0x0943,0x0944,0x0944,0x093e,0x096e,0x0976,0x0970,0x096b,0x0972,0x0973,0x0974,0x0975,0x0971,0x095e,0x0969,0x096f, // 1660 0x0967,0x0966,0x0965,0x0b68,0x0b32,0x0b32,0x0726,0x0728,0x070b,0x070c,0x0726,0x0728,0x0726,0x0728,0x0717,0x0719, // 1670 0x0717,0x0719,0x0717,0x0717,0x0756,0x0757,0x0756,0x0757,0x0756,0x0757,0x0756,0x0757,0x0b69,0x0b6a,0x0b33,0x0b33, // 1680 0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0b33,0x0987,0x0988,0x0989,0x098a,0x098b, // 1690 0x098c,0x098d,0x098e,0x0826,0x0826,0x0826,0x098f,0x0990,0x0804,0x0727,0x083f,0x0834,0x08e8,0x0b67,0x0806,0x081d, // 16a0 0x0991,0x080a,0x080b,0x080e,0x0814,0x09c9,0x09c9,0x0b34,0x0b34,0x0b34,0x0b34,0x0b34,0x0b34,0x0b35,0x0b35,0x0b35, // 16b0 0x0b35,0x0b35,0x0b35,0x0b35,0x0b36,0x0b36,0x0b36,0x0b37,0x0b37,0x0b38,0x0b38,0x0b39,0x0b39,0x0b3a,0x0b3a,0x0dff, // 16c0 0x0dff,0x0dff,0x0b6b,0x0b6c,0x0b6d,0x0b6e,0x0b3b,0x0b3b,0x0b3b,0x0b6f,0x0b70,0x0b3c,0x0b3c,0x0992,0x0b71,0x0993, // 16d0 0x0994,0x0b3d,0x0b3d,0x0b3d,0x0b3d,0x0b3d,0x0b3d,0x0b72,0x0834,0x0808,0x0834,0x0808,0x0834,0x0803,0x0803,0x0756, // 16e0 0x0757,0x0803,0x0804,0x08d1,0x08d1,0x08d1,0x08ca,0x08ca,0x08c9,0x08ca,0x0841,0x0842,0x08d1,0x0889,0x088c,0x088c, // 16f0 0x088d,0x08d7,0x08d7,0x0890,0x0891,0x08d3,0x08d3,0x08d3,0x08d7,0x0896,0x08d7,0x08d7,0x0843,0x0844,0x08d7,0x08d7, // 1700 0x0897,0x089e,0x0825,0x0825,0x0825,0x0803,0x0803,0x0803,0x0803,0x0803,0x0803,0x0803,0x0804,0x0804,0x0804,0x0804, // 1710 0x0803,0x0803,0x089f,0x081c,0x081c,0x08b5,0x08b6,0x081c,0x081c,0x081c,0x081c,0x081d,0x0803,0x0804,0x081c,0x0805, // 1720 0x0806,0x0807,0x0808,0x0843,0x0844,0x0844,0x0843,0x0841,0x0842,0x0844,0x0844,0x0844,0x0844,0x0844,0x0843,0x0844, // 1730 0x0843,0x0843,0x0844,0x0844,0x0841,0x0842,0x0841,0x0842,0x0841,0x0842,0x0809,0x080a,0x0842,0x0841,0x0842,0x0841, // 1740 0x0842,0x0841,0x0841,0x0841,0x080b,0x0842,0x0842,0x080c,0x080d,0x080e,0x080f,0x0810,0x0811,0x0812,0x0813,0x0814, // 1750 0x0815,0x0816,0x0817,0x0818,0x0819,0x081a,0x081b,0x0812,0x0812,0x081d,0x081e,0x081f,0x0820,0x083e,0x0840,0x083e, // 1760 0x0840,0x083e,0x0840,0x083e,0x0840,0x083e,0x0840,0x083e,0x0840,0x083e,0x0840,0x083e,0x0840,0x083e,0x0840,0x083e, // 1770 0x0840,0x083e,0x0840,0x083e,0x0840,0x083e,0x0840,0x08d8,0x08d8,0x08d8,0x08d8,0x0846,0x0846,0x0846,0x0846,0x0847, // 1780 0x0847,0x0847,0x0847,0x0849,0x0849,0x0849,0x0840,0x0840,0x083e,0x0840,0x083e,0x0840,0x0863,0x0863,0x0863,0x0863, // 1790 0x08b7,0x082a,0x082d,0x082a,0x082d,0x082a,0x082d,0x082a,0x082d,0x082a,0x082d,0x082a,0x082d,0x080f,0x080f,0x0898, // 17a0 0x0899,0x0898,0x0899,0x0898,0x0899,0x0898,0x0899,0x0898,0x0899,0x0898,0x0899,0x0898,0x0899,0x0898,0x0899,0x084a, // 17b0 0x084a,0x0898,0x0899,0x0898,0x0899,0x0899,0x0899,0x0898,0x0899,0x0899,0x0899,0x0829,0x08b8,0x0843,0x08e7,0x087a, // 17c0 0x087a,0x087a,0x08e8,0x087c,0x0885,0x087c,0x0885,0x08e9,0x087a,0x087a,0x087a,0x0885,0x0885,0x0885,0x08ea,0x08f1, // 17d0 0x0861,0x0861,0x08f2,0x08f3,0x08f4,0x085b,0x085b,0x085b,0x085b,0x085b,0x085e,0x085e,0x0820,0x0821,0x0822,0x08f9, // 17e0 0x08f9,0x097b,0x097c,0x097d,0x097e,0x097f,0x0980,0x0981,0x0982,0x097b,0x097c,0x097d,0x097e,0x0983,0x0984,0x0c95, // 17f0 0x0c96,0x0c97,0x0c98,0x0c99,0x0c9a,0x0a02,0x0a02,0x0a03,0x0a03,0x0a03,0x0a03,0x07d3,0x07d3,0x07d3,0x07d3,0x07d3, // 1800 0x07da,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f, // 1810 0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f, // 1820 0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f,0x0c8f, // 1830 0x0c8f,0x0c8f,0x0c8f,0x1302,0x1304,0x1306,0x1308,0x130a,0x130c,0x130e,0x1310,0x1312,0x1314,0x1316,0x1318,0x131a, // 1840 0x131c,0x131e,0x1320,0x1322,0x1324,0x1326,0x1328,0x132a,0x132c,0x132e,0x1330,0x1332,0x1334,0x1336,0x1338,0x133a, // 1850 0x133c,0x133e,0x1340,0x1342,0x1344,0x1346,0x1348,0x134a,0x134c,0x134e,0x1350,0x1352,0x1354,0x1356,0x1358,0x135a, // 1860 0x135c,0x135e,0x0e30,0x0ece,0x0eb9,0x0e35,0x0ea2,0x1402,0x1404,0x1406,0x1408,0x140a,0x140c,0x140e,0x1410,0x1412, // 1870 0x1414,0x1416,0x1418,0x141a,0x141c,0x141e,0x1420,0x1422,0x1424,0x1426,0x1428,0x142a,0x142c,0x142e,0x1430,0x1432, // 1880 0x1434,0x1436,0x1438,0x143a,0x143c,0x143e,0x1440,0x1442,0x1444,0x1446,0x1448,0x144a,0x144c,0x144e,0x1450,0x1452, // 1890 0x1454,0x1456,0x1458,0x145a,0x145c,0x145e,0x1460,0x1462,0x1464,0x0c9b,0x0c9c,0x0c9d,0x0c9e,0x0c9f,0x0ca0,0x0ca1, // 18a0 0x0733,0x073c,0x073c,0x0746,0x0d11,0x1433,0x1447,0x1265,0x1266,0x1267,0x1268,0x1269,0x126a,0x126b,0x126d,0x126e, // 18b0 0x126f,0x1270,0x1271,0x1272,0x1274,0x1275,0x1276,0x1277,0x1278,0x1279,0x127a,0x127c,0x127d,0x127e,0x127f,0x1280, // 18c0 0x1281,0x1282,0x1283,0x1284,0x1285,0x1286,0x1288,0x1289,0x126c,0x1273,0x127b,0x1287,0x128a,0x4d03,0x4d05,0x4d07, // 18d0 0x4d09,0x4d0b,0x4d0d,0x4d0f,0x4d11,0x4d13,0x4d15,0x4d17,0x4d19,0x4d1b,0x4d1d,0x4d1f,0x4d21,0x4d23,0x4d25,0x4d27, // 18e0 0x4d29,0x4d2b,0x4d2d,0x4d2f,0x4d31,0x4d33,0x4d35,0x4d37,0x4d39,0x4d3b,0x4d3d,0x4d3f,0x4d41,0x4d43,0x4d45,0x4d47, // 18f0 0x4d49,0x4d4b,0x4d4d,0x4d4f,0x4d51,0x4d53,0x4d55,0x4d57,0x4d59,0x4d5b,0x4d5d,0x4d5f,0x4d61,0x4d63,0x4d65,0x4d67, // 1900 0x4d69,0x4d6b,0x4d6d,0x4d6f,0x531b,0x531c,0x531d,0x531e,0x531f,0x5320,0x5321,0x5322,0x5323,0x5324,0x5325,0x5326, // 1910 0x5327,0x5328,0x5329,0x532a,0x532b,0x532c,0x532d,0x532e,0x532f,0x5330,0x5331,0x5332,0x5333,0x5334,0x5335,0x5336, // 1920 0x5337,0x5338,0x5339,0x533a,0x533b,0x533c,0x533d,0x533e,0x533f,0x5340,0x5341,0x5342,0x5343,0x5344,0x5345,0x5346, // 1930 0x5347,0x5348,0x5349,0x534a,0x534b,0x534c,0x534d,0x534e,0x534f,0x5350,0x5351,0x5352,0x5353,0x5354,0x5355,0x5356, // 1940 0x5357,0x5358,0x5359,0x535a,0x535b,0x535c,0x535d,0x535e,0x535f,0x5360,0x5361,0x5362,0x5363,0x5364,0x5365,0x5366, // 1950 0x5367,0x5368,0x5369,0x07c8,0x07c9,0x07ca,0x07cb,0x07cc,0x07cd,0x07ce,0x07cf,0x07d0,0x07d1,0x07d2,0x07d3,0x07d4, // 1960 0x07d5,0x07d6,0x07d7,0x07d8,0x07d9,0x07da,0x07db,0x07dc,0x07dd,0x07de,0x07df,0x073c,0x07ee,0x07f0,0x0750,0x07e0, // 1970 0x07e1,0x0750,0x0750,0x073f,0x0742,0x0717,0x0719,0x0717,0x0719,0x0756,0x0757,0x0727,0x072a,0x071a,0x071a,0x071a, // 1980 0x071a,0x073c,0x10fe,0x07ef,}; // digits are not support so we can do natural sorting easier. WORD utf8_nonascii_unicode_decomposition_2char_nodiacritics_nocase_values[UTF8_NONASCII_UNICODE_DECOMPOSITION_2CHAR_NODIACRITICS_NOCASE_COUNT] = { 0x6561, // (a,e) 0x6874, // (t,h) 0x7373, // (s,s) 0x6561, // (a,e) 0x6874, // (t,h) 0x6a69, // (i,j) 0x6a69, // (i,j) 0x656f, // (o,e) 0x656f, // (o,e) 0x7668, // (h,v) 0x696f, // (o,i) 0x696f, // (o,i) 0x7374, // (t,s) 0x7a64, // (d,z) 0x7a64, // (d,z) 0x7a64, // (d,z) 0x6a6c, // (l,j) 0x6a6c, // (l,j) 0x6a6c, // (l,j) 0x6a6e, // (n,j) 0x6a6e, // (n,j) 0x6a6e, // (n,j) 0x6561, // (a,e) 0x6561, // (a,e) 0x7a64, // (d,z) 0x7a64, // (d,z) 0x7a64, // (d,z) 0x6561, // (a,e) 0x6561, // (a,e) 0x6264, // (d,b) 0x7071, // (q,p) 0x656f, // (o,e) 0x7a64, // (d,z) 0x7a64, // (d,z) 0x7374, // (t,s) 0x6e66, // (f,n) 0x736c, // (l,s) 0x7a6c, // (l,z) 0x6561, // (a,e) 0x6561, // (a,e) 0x6575, // (u,e) 0x6874, // (t,h) 0x7373, // (s,s) 0x6c6c, // (l,l) 0x6c6c, // (l,l) 0x7a74, // (t,z) 0x7a74, // (t,z) 0x6161, // (a,a) 0x6161, // (a,a) 0x6f61, // (a,o) 0x6f61, // (a,o) 0x7561, // (a,u) 0x7561, // (a,u) 0x7661, // (a,v) 0x7661, // (a,v) 0x7661, // (a,v) 0x7661, // (a,v) 0x7961, // (a,y) 0x7961, // (a,y) 0x6f6f, // (o,o) 0x6f6f, // (o,o) 0x7976, // (v,y) 0x7976, // (v,y) 0x6874, // (t,h) 0x6874, // (t,h) 0x6874, // (t,h) 0x6874, // (t,h) 0x6666, // (f,f) 0x6966, // (f,i) 0x6c66, // (f,l) 0x7473, // (s,t) 0x7473, // (s,t) }; WORD utf8_nonascii_unicode_decomposition_2char_nodiacritics_values[UTF8_NONASCII_UNICODE_DECOMPOSITION_2CHAR_NODIACRITICS_COUNT] = { 0x4541, // (A,E) 0x4854, // (T,H) 0x7373, // (s,s) 0x6561, // (a,e) 0x6874, // (t,h) 0x4a49, // (I,J) 0x6a69, // (i,j) 0x454f, // (O,E) 0x656f, // (o,e) 0x7668, // (h,v) 0x494f, // (O,I) 0x696f, // (o,i) 0x7374, // (t,s) 0x5a44, // (D,Z) 0x7a44, // (D,z) 0x7a64, // (d,z) 0x4a4c, // (L,J) 0x6a4c, // (L,j) 0x6a6c, // (l,j) 0x4a4e, // (N,J) 0x6a4e, // (N,j) 0x6a6e, // (n,j) 0x4541, // (A,E) 0x6561, // (a,e) 0x5a44, // (D,Z) 0x7a44, // (D,z) 0x7a64, // (d,z) 0x4541, // (A,E) 0x6561, // (a,e) 0x6264, // (d,b) 0x7071, // (q,p) 0x454f, // (O,E) 0x7a64, // (d,z) 0x7a64, // (d,z) 0x7374, // (t,s) 0x6e66, // (f,n) 0x736c, // (l,s) 0x7a6c, // (l,z) 0x4541, // (A,E) 0x6561, // (a,e) 0x6575, // (u,e) 0x6874, // (t,h) 0x5353, // (S,S) 0x4c4c, // (L,L) 0x6c6c, // (l,l) 0x7a54, // (T,z) 0x7a74, // (t,z) 0x4141, // (A,A) 0x6161, // (a,a) 0x4f41, // (A,O) 0x6f61, // (a,o) 0x5541, // (A,U) 0x7561, // (a,u) 0x5641, // (A,V) 0x7661, // (a,v) 0x5641, // (A,V) 0x7661, // (a,v) 0x5941, // (A,Y) 0x7961, // (a,y) 0x4f4f, // (O,O) 0x6f6f, // (o,o) 0x5956, // (V,Y) 0x7976, // (v,y) 0x4854, // (T,H) 0x6874, // (t,h) 0x4854, // (T,H) 0x6874, // (t,h) 0x6666, // (f,f) 0x6966, // (f,i) 0x6c66, // (f,l) 0x7473, // (s,t) 0x7473, // (s,t) }; WORD utf8_nonascii_unicode_to_decomposition_nodiacritics_nocase_keys[UTF8_NONASCII_UNICODE_TO_DECOMPOSITION_NODIACRITICS_NOCASE_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x0080,0x0081,0x0082,0x0083,0x0084,0x0085,0x0086,0x0087,0x0088,0x0089,0x008a,0x008b,0x008c,0x008d,0x008e,0x008f, // 0000 0x0090,0x0091,0x0092,0x0093,0x0094,0x0095,0x0096,0x0097,0x0098,0x0099,0x009a,0x009b,0x009c,0x009d,0x009e,0x009f, // 0010 0x00a0,0x00aa,0x00ab,0x00ad,0x00b2,0x00b3,0x00b5,0x00b7,0x00b8,0x00b9,0x00ba,0x00bb,0x00c0,0x00c1,0x00c2,0x00c3, // 0020 0x00c4,0x00c5,0x00c6,0x00c7,0x00c8,0x00c9,0x00ca,0x00cb,0x00cc,0x00cd,0x00ce,0x00cf,0x00d0,0x00d1,0x00d2,0x00d3, // 0030 0x00d4,0x00d5,0x00d6,0x00d8,0x00d9,0x00da,0x00db,0x00dc,0x00dd,0x00de,0x00df,0x00e0,0x00e1,0x00e2,0x00e3,0x00e4, // 0040 0x00e5,0x00e6,0x00e7,0x00e8,0x00e9,0x00ea,0x00eb,0x00ec,0x00ed,0x00ee,0x00ef,0x00f0,0x00f1,0x00f2,0x00f3,0x00f4, // 0050 0x00f5,0x00f6,0x00f8,0x00f9,0x00fa,0x00fb,0x00fc,0x00fd,0x00fe,0x00ff,0x0100,0x0101,0x0102,0x0103,0x0104,0x0105, // 0060 0x0106,0x0107,0x0108,0x0109,0x010a,0x010b,0x010c,0x010d,0x010e,0x010f,0x0110,0x0111,0x0112,0x0113,0x0114,0x0115, // 0070 0x0116,0x0117,0x0118,0x0119,0x011a,0x011b,0x011c,0x011d,0x011e,0x011f,0x0120,0x0121,0x0122,0x0123,0x0124,0x0125, // 0080 0x0126,0x0127,0x0128,0x0129,0x012a,0x012b,0x012c,0x012d,0x012e,0x012f,0x0130,0x0131,0x0132,0x0133,0x0134,0x0135, // 0090 0x0136,0x0137,0x0138,0x0139,0x013a,0x013b,0x013c,0x013d,0x013e,0x013f,0x0140,0x0141,0x0142,0x0143,0x0144,0x0145, // 00a0 0x0146,0x0147,0x0148,0x0149,0x014a,0x014b,0x014c,0x014d,0x014e,0x014f,0x0150,0x0151,0x0152,0x0153,0x0154,0x0155, // 00b0 0x0156,0x0157,0x0158,0x0159,0x015a,0x015b,0x015c,0x015d,0x015e,0x015f,0x0160,0x0161,0x0162,0x0163,0x0164,0x0165, // 00c0 0x0166,0x0167,0x0168,0x0169,0x016a,0x016b,0x016c,0x016d,0x016e,0x016f,0x0170,0x0171,0x0172,0x0173,0x0174,0x0175, // 00d0 0x0176,0x0177,0x0178,0x0179,0x017a,0x017b,0x017c,0x017d,0x017e,0x017f,0x0180,0x0181,0x0182,0x0183,0x0184,0x0185, // 00e0 0x0186,0x0187,0x0188,0x0189,0x018a,0x018b,0x018c,0x018d,0x018e,0x018f,0x0190,0x0191,0x0192,0x0193,0x0194,0x0195, // 00f0 0x0196,0x0197,0x0198,0x0199,0x019a,0x019b,0x019c,0x019d,0x019e,0x019f,0x01a0,0x01a1,0x01a2,0x01a3,0x01a4,0x01a5, // 0100 0x01a6,0x01a7,0x01a8,0x01a9,0x01aa,0x01ab,0x01ac,0x01ad,0x01ae,0x01af,0x01b0,0x01b1,0x01b2,0x01b3,0x01b4,0x01b5, // 0110 0x01b6,0x01b7,0x01b8,0x01bc,0x01be,0x01bf,0x01c4,0x01c5,0x01c6,0x01c7,0x01c8,0x01c9,0x01ca,0x01cb,0x01cc,0x01cd, // 0120 0x01ce,0x01cf,0x01d0,0x01d1,0x01d2,0x01d3,0x01d4,0x01d5,0x01d6,0x01d7,0x01d8,0x01d9,0x01da,0x01db,0x01dc,0x01dd, // 0130 0x01de,0x01df,0x01e0,0x01e1,0x01e2,0x01e3,0x01e4,0x01e5,0x01e6,0x01e7,0x01e8,0x01e9,0x01ea,0x01eb,0x01ec,0x01ed, // 0140 0x01ee,0x01ef,0x01f0,0x01f1,0x01f2,0x01f3,0x01f4,0x01f5,0x01f6,0x01f7,0x01f8,0x01f9,0x01fa,0x01fb,0x01fc,0x01fd, // 0150 0x01fe,0x01ff,0x0200,0x0201,0x0202,0x0203,0x0204,0x0205,0x0206,0x0207,0x0208,0x0209,0x020a,0x020b,0x020c,0x020d, // 0160 0x020e,0x020f,0x0210,0x0211,0x0212,0x0213,0x0214,0x0215,0x0216,0x0217,0x0218,0x0219,0x021a,0x021b,0x021c,0x021d, // 0170 0x021e,0x021f,0x0220,0x0221,0x0222,0x0224,0x0225,0x0226,0x0227,0x0228,0x0229,0x022a,0x022b,0x022c,0x022d,0x022e, // 0180 0x022f,0x0230,0x0231,0x0232,0x0233,0x0234,0x0235,0x0236,0x0237,0x0238,0x0239,0x023a,0x023b,0x023c,0x023d,0x023e, // 0190 0x023f,0x0240,0x0241,0x0243,0x0244,0x0245,0x0246,0x0247,0x0248,0x0249,0x024a,0x024b,0x024c,0x024d,0x024e,0x024f, // 01a0 0x0250,0x0251,0x0252,0x0253,0x0254,0x0255,0x0256,0x0257,0x0258,0x0259,0x025a,0x025b,0x025c,0x025d,0x025e,0x025f, // 01b0 0x0260,0x0261,0x0262,0x0263,0x0264,0x0265,0x0266,0x0267,0x0268,0x0269,0x026a,0x026b,0x026c,0x026d,0x026e,0x026f, // 01c0 0x0270,0x0271,0x0272,0x0273,0x0274,0x0275,0x0276,0x0277,0x0278,0x0279,0x027a,0x027b,0x027c,0x027d,0x027e,0x027f, // 01d0 0x0280,0x0282,0x0283,0x0284,0x0285,0x0286,0x0287,0x0288,0x0289,0x028a,0x028b,0x028c,0x028d,0x028e,0x028f,0x0290, // 01e0 0x0291,0x0297,0x0299,0x029a,0x029b,0x029c,0x029d,0x029e,0x029f,0x02a0,0x02a3,0x02a4,0x02a5,0x02a6,0x02a7,0x02a8, // 01f0 0x02a9,0x02aa,0x02ab,0x02b0,0x02b1,0x02b2,0x02b3,0x02b4,0x02b5,0x02b7,0x02b8,0x02b9,0x02ba,0x02bb,0x02bc,0x02bd, // 0200 0x02c2,0x02c3,0x02c4,0x02c6,0x02c8,0x02cb,0x02cd,0x02d0,0x02dc,0x02e0,0x02e1,0x02e2,0x02e3,0x0300,0x0301,0x0302, // 0210 0x0303,0x0304,0x0305,0x0306,0x0307,0x0308,0x0309,0x030a,0x030b,0x030c,0x030d,0x030e,0x030f,0x0310,0x0311,0x0312, // 0220 0x0313,0x0314,0x0315,0x0316,0x0317,0x0318,0x0319,0x031a,0x031b,0x031c,0x031d,0x031e,0x031f,0x0320,0x0321,0x0322, // 0230 0x0323,0x0324,0x0325,0x0326,0x0327,0x0328,0x0329,0x032a,0x032b,0x032c,0x032d,0x032e,0x032f,0x0330,0x0331,0x0332, // 0240 0x0333,0x0334,0x0335,0x0336,0x0337,0x0338,0x0339,0x033a,0x033b,0x033c,0x033d,0x033e,0x033f,0x0340,0x0341,0x0342, // 0250 0x0343,0x0344,0x0345,0x0346,0x0347,0x0348,0x0349,0x034a,0x034b,0x034c,0x034d,0x034e,0x034f,0x0350,0x0351,0x0352, // 0260 0x0353,0x0354,0x0355,0x0356,0x0357,0x0358,0x0359,0x035a,0x035b,0x035c,0x035d,0x035e,0x035f,0x0360,0x0361,0x0362, // 0270 0x0363,0x0364,0x0365,0x0366,0x0367,0x0368,0x0369,0x036a,0x036b,0x036c,0x036d,0x036e,0x036f,0x0370,0x0372,0x0376, // 0280 0x0384,0x0385,0x0386,0x0388,0x0389,0x038a,0x038c,0x038e,0x038f,0x0390,0x0391,0x0392,0x0393,0x0394,0x0395,0x0396, // 0290 0x0397,0x0398,0x0399,0x039a,0x039b,0x039c,0x039d,0x039e,0x039f,0x03a0,0x03a1,0x03a3,0x03a4,0x03a5,0x03a6,0x03a7, // 02a0 0x03a8,0x03a9,0x03aa,0x03ab,0x03ac,0x03ad,0x03ae,0x03af,0x03b0,0x03c2,0x03ca,0x03cb,0x03cc,0x03cd,0x03ce,0x03cf, // 02b0 0x03d0,0x03d1,0x03d2,0x03d3,0x03d4,0x03d5,0x03d6,0x03d8,0x03da,0x03dc,0x03de,0x03e0,0x03e2,0x03e4,0x03e6,0x03e8, // 02c0 0x03ea,0x03ec,0x03ee,0x03f0,0x03f1,0x03f2,0x03f4,0x03f5,0x03f7,0x03f9,0x03fa,0x03fd,0x03fe,0x03ff,0x0400,0x0401, // 02d0 0x0402,0x0403,0x0404,0x0405,0x0406,0x0407,0x0408,0x0409,0x040a,0x040b,0x040c,0x040d,0x040e,0x040f,0x0410,0x0411, // 02e0 0x0412,0x0413,0x0414,0x0415,0x0416,0x0417,0x0418,0x0419,0x041a,0x041b,0x041c,0x041d,0x041e,0x041f,0x0420,0x0421, // 02f0 0x0422,0x0423,0x0424,0x0425,0x0426,0x0427,0x0428,0x0429,0x042a,0x042b,0x042c,0x042d,0x042e,0x042f,0x0439,0x0450, // 0300 0x0451,0x0453,0x0457,0x045c,0x045d,0x045e,0x0460,0x0462,0x0464,0x0466,0x0468,0x046a,0x046c,0x046e,0x0470,0x0472, // 0310 0x0474,0x0476,0x0477,0x0478,0x047a,0x047c,0x047e,0x0480,0x0483,0x0484,0x0485,0x0486,0x0487,0x0488,0x0489,0x048a, // 0320 0x048c,0x048e,0x0490,0x0491,0x0492,0x0494,0x0496,0x0498,0x049a,0x049c,0x049e,0x04a0,0x04a2,0x04a4,0x04a6,0x04a8, // 0330 0x04aa,0x04ac,0x04ae,0x04b0,0x04b2,0x04b4,0x04b6,0x04b8,0x04ba,0x04bc,0x04be,0x04c0,0x04c1,0x04c2,0x04c3,0x04c5, // 0340 0x04c7,0x04c9,0x04cb,0x04cd,0x04d0,0x04d1,0x04d2,0x04d3,0x04d4,0x04d6,0x04d7,0x04d8,0x04da,0x04db,0x04dc,0x04dd, // 0350 0x04de,0x04df,0x04e0,0x04e2,0x04e3,0x04e4,0x04e5,0x04e6,0x04e7,0x04e8,0x04ea,0x04eb,0x04ec,0x04ed,0x04ee,0x04ef, // 0360 0x04f0,0x04f1,0x04f2,0x04f3,0x04f4,0x04f5,0x04f6,0x04f8,0x04f9,0x04fa,0x04fc,0x04fe,0x0500,0x0502,0x0504,0x0506, // 0370 0x0508,0x050a,0x050c,0x050e,0x0510,0x0512,0x0514,0x0516,0x0518,0x051a,0x051c,0x051e,0x0520,0x0522,0x0524,0x0526, // 0380 0x0531,0x0532,0x0533,0x0534,0x0535,0x0536,0x0537,0x0538,0x0539,0x053a,0x053b,0x053c,0x053d,0x053e,0x053f,0x0540, // 0390 0x0541,0x0542,0x0543,0x0544,0x0545,0x0546,0x0547,0x0548,0x0549,0x054a,0x054b,0x054c,0x054d,0x054e,0x054f,0x0550, // 03a0 0x0551,0x0552,0x0553,0x0554,0x0555,0x0556,0x0591,0x0592,0x0593,0x0594,0x0595,0x0596,0x0597,0x0598,0x0599,0x059a, // 03b0 0x059b,0x059c,0x059d,0x059e,0x059f,0x05a0,0x05a1,0x05a2,0x05a3,0x05a4,0x05a5,0x05a6,0x05a7,0x05a8,0x05a9,0x05aa, // 03c0 0x05ab,0x05ac,0x05ad,0x05ae,0x05af,0x05b0,0x05b1,0x05b2,0x05b3,0x05b4,0x05b5,0x05b6,0x05b7,0x05b8,0x05b9,0x05ba, // 03d0 0x05bb,0x05bc,0x05bd,0x05bf,0x05c1,0x05c2,0x05c4,0x05c5,0x05c7,0x05da,0x05dd,0x05df,0x05e3,0x05e5,0x0600,0x0601, // 03e0 0x0602,0x0603,0x0604,0x0610,0x0611,0x0612,0x0613,0x0614,0x0615,0x0616,0x0617,0x0618,0x0619,0x061a,0x061c,0x0622, // 03f0 0x0623,0x0624,0x0625,0x0626,0x064b,0x064c,0x064d,0x064e,0x064f,0x0650,0x0651,0x0652,0x0653,0x0654,0x0655,0x0656, // 0400 0x0657,0x0658,0x0659,0x065a,0x065b,0x065c,0x065d,0x065e,0x065f,0x0670,0x0674,0x06c0,0x06c2,0x06d3,0x06d6,0x06d7, // 0410 0x06d8,0x06d9,0x06da,0x06db,0x06dc,0x06dd,0x06df,0x06e0,0x06e1,0x06e2,0x06e3,0x06e4,0x06e7,0x06e8,0x06ea,0x06eb, // 0420 0x06ec,0x06ed,0x06fd,0x06fe,0x070f,0x0711,0x0714,0x071c,0x0724,0x0727,0x072d,0x072e,0x072f,0x0730,0x0731,0x0732, // 0430 0x0733,0x0734,0x0735,0x0736,0x0737,0x0738,0x0739,0x073a,0x073b,0x073c,0x073d,0x073e,0x073f,0x0740,0x0741,0x0742, // 0440 0x0743,0x0744,0x0745,0x0746,0x0747,0x0748,0x0749,0x074a,0x07a6,0x07a7,0x07a8,0x07a9,0x07aa,0x07ab,0x07ac,0x07ad, // 0450 0x07ae,0x07af,0x07b0,0x07e8,0x07e9,0x07ea,0x07eb,0x07ec,0x07ed,0x07ee,0x07ef,0x07f0,0x07f1,0x07f2,0x07f3,0x0816, // 0460 0x0817,0x0818,0x0819,0x081b,0x081c,0x081d,0x081e,0x081f,0x0820,0x0821,0x0822,0x0823,0x0825,0x0826,0x0827,0x0829, // 0470 0x082a,0x082b,0x082c,0x082d,0x0859,0x085a,0x085b,0x08ad,0x08e4,0x08e5,0x08e6,0x08e7,0x08e8,0x08e9,0x08ea,0x08eb, // 0480 0x08ec,0x08ed,0x08ee,0x08ef,0x08f0,0x08f1,0x08f2,0x08f3,0x08f4,0x08f5,0x08f6,0x08f7,0x08f8,0x08f9,0x08fa,0x08fb, // 0490 0x08fc,0x08fd,0x08fe,0x0900,0x0901,0x0902,0x0903,0x0929,0x0931,0x0934,0x093a,0x093b,0x093c,0x093e,0x093f,0x0940, // 04a0 0x0941,0x0942,0x0943,0x0944,0x0945,0x0946,0x0947,0x0948,0x0949,0x094a,0x094b,0x094c,0x094d,0x094e,0x094f,0x0951, // 04b0 0x0952,0x0953,0x0954,0x0955,0x0956,0x0957,0x0958,0x0959,0x095a,0x095b,0x095c,0x095d,0x095e,0x095f,0x0962,0x0963, // 04c0 0x0981,0x0982,0x0983,0x09bc,0x09be,0x09bf,0x09c0,0x09c1,0x09c2,0x09c3,0x09c4,0x09c7,0x09c8,0x09cb,0x09cc,0x09cd, // 04d0 0x09ce,0x09d7,0x09dc,0x09dd,0x09df,0x09e2,0x09e3,0x0a01,0x0a02,0x0a03,0x0a33,0x0a36,0x0a3c,0x0a3e,0x0a3f,0x0a40, // 04e0 0x0a41,0x0a42,0x0a47,0x0a48,0x0a4b,0x0a4c,0x0a4d,0x0a51,0x0a59,0x0a5a,0x0a5b,0x0a5e,0x0a70,0x0a71,0x0a75,0x0a81, // 04f0 0x0a82,0x0a83,0x0abc,0x0abe,0x0abf,0x0ac0,0x0ac1,0x0ac2,0x0ac3,0x0ac4,0x0ac5,0x0ac7,0x0ac8,0x0ac9,0x0acb,0x0acc, // 0500 0x0acd,0x0ae2,0x0ae3,0x0b01,0x0b02,0x0b03,0x0b3c,0x0b3e,0x0b3f,0x0b40,0x0b41,0x0b42,0x0b43,0x0b44,0x0b47,0x0b48, // 0510 0x0b4b,0x0b4c,0x0b4d,0x0b56,0x0b57,0x0b5c,0x0b5d,0x0b62,0x0b63,0x0b82,0x0b94,0x0bbe,0x0bbf,0x0bc0,0x0bc1,0x0bc2, // 0520 0x0bc6,0x0bc7,0x0bc8,0x0bca,0x0bcb,0x0bcc,0x0bcd,0x0bd7,0x0c01,0x0c02,0x0c03,0x0c3e,0x0c3f,0x0c40,0x0c41,0x0c42, // 0530 0x0c43,0x0c44,0x0c46,0x0c47,0x0c48,0x0c4a,0x0c4b,0x0c4c,0x0c4d,0x0c55,0x0c56,0x0c62,0x0c63,0x0c82,0x0c83,0x0cbc, // 0540 0x0cbe,0x0cbf,0x0cc0,0x0cc1,0x0cc2,0x0cc3,0x0cc4,0x0cc6,0x0cc7,0x0cc8,0x0cca,0x0ccb,0x0ccc,0x0ccd,0x0cd5,0x0cd6, // 0550 0x0ce2,0x0ce3,0x0d02,0x0d03,0x0d3e,0x0d3f,0x0d40,0x0d41,0x0d42,0x0d43,0x0d44,0x0d46,0x0d47,0x0d48,0x0d4a,0x0d4b, // 0560 0x0d4c,0x0d4d,0x0d4e,0x0d54,0x0d55,0x0d56,0x0d57,0x0d62,0x0d63,0x0d7a,0x0d7b,0x0d7c,0x0d7d,0x0d7e,0x0d7f,0x0d82, // 0570 0x0d83,0x0dca,0x0dcf,0x0dd0,0x0dd1,0x0dd2,0x0dd3,0x0dd4,0x0dd6,0x0dd8,0x0dd9,0x0dda,0x0ddb,0x0ddc,0x0ddd,0x0dde, // 0580 0x0ddf,0x0df2,0x0df3,0x0e31,0x0e33,0x0e34,0x0e35,0x0e36,0x0e37,0x0e38,0x0e39,0x0e3a,0x0e47,0x0e48,0x0e49,0x0e4a, // 0590 0x0e4b,0x0e4c,0x0e4d,0x0e4e,0x0eb1,0x0eb3,0x0eb4,0x0eb5,0x0eb6,0x0eb7,0x0eb8,0x0eb9,0x0ebb,0x0ebc,0x0ec8,0x0ec9, // 05a0 0x0eca,0x0ecb,0x0ecc,0x0ecd,0x0f00,0x0f18,0x0f19,0x0f2a,0x0f2b,0x0f2c,0x0f2d,0x0f2e,0x0f2f,0x0f30,0x0f31,0x0f32, // 05b0 0x0f33,0x0f35,0x0f37,0x0f39,0x0f3e,0x0f3f,0x0f43,0x0f4d,0x0f52,0x0f57,0x0f5c,0x0f69,0x0f6a,0x0f71,0x0f72,0x0f73, // 05c0 0x0f74,0x0f75,0x0f76,0x0f77,0x0f78,0x0f79,0x0f7a,0x0f7b,0x0f7c,0x0f7d,0x0f7e,0x0f7f,0x0f80,0x0f81,0x0f82,0x0f83, // 05d0 0x0f84,0x0f86,0x0f87,0x0f8d,0x0f8e,0x0f8f,0x0f90,0x0f91,0x0f92,0x0f93,0x0f94,0x0f95,0x0f96,0x0f97,0x0f99,0x0f9a, // 05e0 0x0f9b,0x0f9c,0x0f9d,0x0f9e,0x0f9f,0x0fa0,0x0fa1,0x0fa2,0x0fa3,0x0fa4,0x0fa5,0x0fa6,0x0fa7,0x0fa8,0x0fa9,0x0faa, // 05f0 0x0fab,0x0fac,0x0fad,0x0fae,0x0faf,0x0fb0,0x0fb1,0x0fb2,0x0fb3,0x0fb4,0x0fb5,0x0fb6,0x0fb7,0x0fb8,0x0fb9,0x0fba, // 0600 0x0fbb,0x0fbc,0x0fc6,0x1026,0x102b,0x102c,0x102d,0x102e,0x102f,0x1030,0x1031,0x1032,0x1033,0x1034,0x1035,0x1036, // 0610 0x1037,0x1038,0x1039,0x103a,0x103b,0x103c,0x103d,0x103e,0x1056,0x1057,0x1058,0x1059,0x105e,0x105f,0x1060,0x1062, // 0620 0x1063,0x1064,0x1067,0x1068,0x1069,0x106a,0x106b,0x106c,0x106d,0x1071,0x1072,0x1073,0x1074,0x1082,0x1083,0x1084, // 0630 0x1085,0x1086,0x1087,0x1088,0x1089,0x108a,0x108b,0x108c,0x108d,0x108f,0x109a,0x109b,0x109c,0x109d,0x10a0,0x10a1, // 0640 0x10a2,0x10a3,0x10a4,0x10a5,0x10a6,0x10a7,0x10a8,0x10a9,0x10aa,0x10ab,0x10ac,0x10ad,0x10ae,0x10af,0x10b0,0x10b1, // 0650 0x10b2,0x10b3,0x10b4,0x10b5,0x10b6,0x10b7,0x10b8,0x10b9,0x10ba,0x10bb,0x10bc,0x10bd,0x10be,0x10bf,0x10c0,0x10c1, // 0660 0x10c2,0x10c3,0x10c4,0x10c5,0x10c7,0x10cd,0x135d,0x135e,0x135f,0x1680,0x16a1,0x16a4,0x16a5,0x16a7,0x16a9,0x16ac, // 0670 0x16ad,0x16ae,0x16b3,0x16b4,0x16b5,0x16b6,0x16bb,0x16bc,0x16bd,0x16bf,0x16c0,0x16c2,0x16c4,0x16c6,0x16cb,0x16cc, // 0680 0x16cd,0x16ce,0x16d0,0x16d1,0x16d3,0x16d4,0x16d5,0x16d8,0x16d9,0x16db,0x16dd,0x16e7,0x16e8,0x16e9,0x16ea,0x1712, // 0690 0x1713,0x1714,0x1732,0x1733,0x1734,0x1752,0x1753,0x1772,0x1773,0x17b4,0x17b5,0x17b6,0x17b7,0x17b8,0x17b9,0x17ba, // 06a0 0x17bb,0x17bc,0x17bd,0x17be,0x17bf,0x17c0,0x17c1,0x17c2,0x17c3,0x17c4,0x17c5,0x17c6,0x17c7,0x17c8,0x17c9,0x17ca, // 06b0 0x17cb,0x17cc,0x17cd,0x17ce,0x17cf,0x17d0,0x17d1,0x17d2,0x17d3,0x17dd,0x180b,0x180c,0x180d,0x180e,0x18a9,0x191d, // 06c0 0x191e,0x1920,0x1921,0x1922,0x1923,0x1924,0x1925,0x1926,0x1927,0x1928,0x1929,0x192a,0x192b,0x1930,0x1931,0x1932, // 06d0 0x1933,0x1934,0x1935,0x1936,0x1937,0x1938,0x1939,0x193a,0x193b,0x19b0,0x19b1,0x19b2,0x19b3,0x19b4,0x19b5,0x19b6, // 06e0 0x19b7,0x19b8,0x19b9,0x19ba,0x19bb,0x19bc,0x19bd,0x19be,0x19bf,0x19c0,0x19c8,0x19c9,0x19de,0x1a17,0x1a18,0x1a19, // 06f0 0x1a1a,0x1a1b,0x1a55,0x1a56,0x1a57,0x1a58,0x1a59,0x1a5a,0x1a5b,0x1a5c,0x1a5d,0x1a5e,0x1a60,0x1a61,0x1a62,0x1a63, // 0700 0x1a64,0x1a65,0x1a66,0x1a67,0x1a68,0x1a69,0x1a6a,0x1a6b,0x1a6c,0x1a6d,0x1a6e,0x1a6f,0x1a70,0x1a71,0x1a72,0x1a73, // 0710 0x1a74,0x1a75,0x1a76,0x1a77,0x1a78,0x1a79,0x1a7a,0x1a7b,0x1a7c,0x1a7f,0x1b00,0x1b01,0x1b02,0x1b03,0x1b04,0x1b06, // 0720 0x1b08,0x1b0a,0x1b0c,0x1b0e,0x1b12,0x1b34,0x1b35,0x1b36,0x1b37,0x1b38,0x1b39,0x1b3a,0x1b3b,0x1b3c,0x1b3d,0x1b3e, // 0730 0x1b3f,0x1b40,0x1b41,0x1b42,0x1b43,0x1b44,0x1b6b,0x1b6c,0x1b6d,0x1b6e,0x1b6f,0x1b70,0x1b71,0x1b72,0x1b73,0x1b80, // 0740 0x1b81,0x1b82,0x1ba1,0x1ba2,0x1ba3,0x1ba4,0x1ba5,0x1ba6,0x1ba7,0x1ba8,0x1ba9,0x1baa,0x1bab,0x1bac,0x1bad,0x1bba, // 0750 0x1bbe,0x1bbf,0x1bc1,0x1bc3,0x1bc4,0x1bc6,0x1bc8,0x1bca,0x1bcc,0x1bcd,0x1bcf,0x1bd3,0x1bd5,0x1bd7,0x1bd9,0x1bda, // 0760 0x1bdc,0x1bdf,0x1be6,0x1be7,0x1be8,0x1be9,0x1bea,0x1beb,0x1bec,0x1bed,0x1bee,0x1bef,0x1bf0,0x1bf1,0x1bf2,0x1bf3, // 0770 0x1c24,0x1c25,0x1c26,0x1c27,0x1c28,0x1c29,0x1c2a,0x1c2b,0x1c2c,0x1c2d,0x1c2e,0x1c2f,0x1c30,0x1c31,0x1c32,0x1c33, // 0780 0x1c34,0x1c35,0x1c36,0x1c37,0x1c80,0x1c81,0x1c82,0x1c83,0x1c84,0x1c85,0x1c86,0x1c87,0x1c88,0x1cd0,0x1cd1,0x1cd2, // 0790 0x1cd4,0x1cd5,0x1cd6,0x1cd7,0x1cd8,0x1cd9,0x1cda,0x1cdb,0x1cdc,0x1cdd,0x1cde,0x1cdf,0x1ce0,0x1ce1,0x1ce2,0x1ce3, // 07a0 0x1ce4,0x1ce5,0x1ce6,0x1ce7,0x1ce8,0x1cea,0x1ceb,0x1cec,0x1ced,0x1cee,0x1cef,0x1cf0,0x1cf1,0x1cf2,0x1cf3,0x1cf4, // 07b0 0x1d00,0x1d01,0x1d02,0x1d03,0x1d04,0x1d05,0x1d06,0x1d07,0x1d09,0x1d0a,0x1d0b,0x1d0c,0x1d0d,0x1d0f,0x1d11,0x1d12, // 07c0 0x1d13,0x1d16,0x1d17,0x1d18,0x1d1b,0x1d1c,0x1d1f,0x1d20,0x1d21,0x1d22,0x1d2f,0x1d4e,0x1d6b,0x1d6c,0x1d6d,0x1d6e, // 07d0 0x1d6f,0x1d70,0x1d71,0x1d72,0x1d73,0x1d74,0x1d75,0x1d76,0x1d77,0x1d79,0x1d7a,0x1d7b,0x1d7c,0x1d7d,0x1d7e,0x1d7f, // 07e0 0x1d80,0x1d81,0x1d82,0x1d83,0x1d84,0x1d85,0x1d86,0x1d87,0x1d88,0x1d89,0x1d8a,0x1d8b,0x1d8c,0x1d8d,0x1d8e,0x1d8f, // 07f0 0x1d91,0x1d92,0x1d93,0x1d95,0x1d96,0x1d97,0x1d98,0x1d99,0x1d9a,0x1d9d,0x1d9e,0x1d9f,0x1da0,0x1da1,0x1da2,0x1da3, // 0800 0x1da4,0x1da7,0x1da8,0x1dab,0x1dac,0x1dae,0x1db3,0x1db5,0x1db9,0x1dbc,0x1dbd,0x1dbe,0x1dbf,0x1dc0,0x1dc1,0x1dc2, // 0810 0x1dc3,0x1dc4,0x1dc5,0x1dc6,0x1dc7,0x1dc8,0x1dc9,0x1dca,0x1dcb,0x1dcc,0x1dcd,0x1dce,0x1dcf,0x1dd0,0x1dd1,0x1dd2, // 0820 0x1dd3,0x1dd4,0x1dd5,0x1dd6,0x1dd7,0x1dd8,0x1dd9,0x1dda,0x1ddb,0x1ddc,0x1ddd,0x1dde,0x1ddf,0x1de0,0x1de1,0x1de2, // 0830 0x1de3,0x1de4,0x1de5,0x1de6,0x1de7,0x1de8,0x1de9,0x1dea,0x1deb,0x1dec,0x1ded,0x1dee,0x1def,0x1df0,0x1df1,0x1df2, // 0840 0x1df3,0x1df4,0x1dfc,0x1dfd,0x1dfe,0x1dff,0x1e00,0x1e01,0x1e02,0x1e03,0x1e04,0x1e05,0x1e06,0x1e07,0x1e08,0x1e09, // 0850 0x1e0a,0x1e0b,0x1e0c,0x1e0d,0x1e0e,0x1e0f,0x1e10,0x1e11,0x1e12,0x1e13,0x1e14,0x1e15,0x1e16,0x1e17,0x1e18,0x1e19, // 0860 0x1e1a,0x1e1b,0x1e1c,0x1e1d,0x1e1e,0x1e1f,0x1e20,0x1e21,0x1e22,0x1e23,0x1e24,0x1e25,0x1e26,0x1e27,0x1e28,0x1e29, // 0870 0x1e2a,0x1e2b,0x1e2c,0x1e2d,0x1e2e,0x1e2f,0x1e30,0x1e31,0x1e32,0x1e33,0x1e34,0x1e35,0x1e36,0x1e37,0x1e38,0x1e39, // 0880 0x1e3a,0x1e3b,0x1e3c,0x1e3d,0x1e3e,0x1e3f,0x1e40,0x1e41,0x1e42,0x1e43,0x1e44,0x1e45,0x1e46,0x1e47,0x1e48,0x1e49, // 0890 0x1e4a,0x1e4b,0x1e4c,0x1e4d,0x1e4e,0x1e4f,0x1e50,0x1e51,0x1e52,0x1e53,0x1e54,0x1e55,0x1e56,0x1e57,0x1e58,0x1e59, // 08a0 0x1e5a,0x1e5b,0x1e5c,0x1e5d,0x1e5e,0x1e5f,0x1e60,0x1e61,0x1e62,0x1e63,0x1e64,0x1e65,0x1e66,0x1e67,0x1e68,0x1e69, // 08b0 0x1e6a,0x1e6b,0x1e6c,0x1e6d,0x1e6e,0x1e6f,0x1e70,0x1e71,0x1e72,0x1e73,0x1e74,0x1e75,0x1e76,0x1e77,0x1e78,0x1e79, // 08c0 0x1e7a,0x1e7b,0x1e7c,0x1e7d,0x1e7e,0x1e7f,0x1e80,0x1e81,0x1e82,0x1e83,0x1e84,0x1e85,0x1e86,0x1e87,0x1e88,0x1e89, // 08d0 0x1e8a,0x1e8b,0x1e8c,0x1e8d,0x1e8e,0x1e8f,0x1e90,0x1e91,0x1e92,0x1e93,0x1e94,0x1e95,0x1e96,0x1e97,0x1e98,0x1e99, // 08e0 0x1e9a,0x1e9b,0x1e9c,0x1e9d,0x1e9e,0x1ea0,0x1ea1,0x1ea2,0x1ea3,0x1ea4,0x1ea5,0x1ea6,0x1ea7,0x1ea8,0x1ea9,0x1eaa, // 08f0 0x1eab,0x1eac,0x1ead,0x1eae,0x1eaf,0x1eb0,0x1eb1,0x1eb2,0x1eb3,0x1eb4,0x1eb5,0x1eb6,0x1eb7,0x1eb8,0x1eb9,0x1eba, // 0900 0x1ebb,0x1ebc,0x1ebd,0x1ebe,0x1ebf,0x1ec0,0x1ec1,0x1ec2,0x1ec3,0x1ec4,0x1ec5,0x1ec6,0x1ec7,0x1ec8,0x1ec9,0x1eca, // 0910 0x1ecb,0x1ecc,0x1ecd,0x1ece,0x1ecf,0x1ed0,0x1ed1,0x1ed2,0x1ed3,0x1ed4,0x1ed5,0x1ed6,0x1ed7,0x1ed8,0x1ed9,0x1eda, // 0920 0x1edb,0x1edc,0x1edd,0x1ede,0x1edf,0x1ee0,0x1ee1,0x1ee2,0x1ee3,0x1ee4,0x1ee5,0x1ee6,0x1ee7,0x1ee8,0x1ee9,0x1eea, // 0930 0x1eeb,0x1eec,0x1eed,0x1eee,0x1eef,0x1ef0,0x1ef1,0x1ef2,0x1ef3,0x1ef4,0x1ef5,0x1ef6,0x1ef7,0x1ef8,0x1ef9,0x1efa, // 0940 0x1efb,0x1efc,0x1efd,0x1efe,0x1eff,0x1f00,0x1f01,0x1f02,0x1f03,0x1f04,0x1f05,0x1f06,0x1f07,0x1f08,0x1f09,0x1f0a, // 0950 0x1f0b,0x1f0c,0x1f0d,0x1f0e,0x1f0f,0x1f10,0x1f11,0x1f12,0x1f13,0x1f14,0x1f15,0x1f18,0x1f19,0x1f1a,0x1f1b,0x1f1c, // 0960 0x1f1d,0x1f20,0x1f21,0x1f22,0x1f23,0x1f24,0x1f25,0x1f26,0x1f27,0x1f28,0x1f29,0x1f2a,0x1f2b,0x1f2c,0x1f2d,0x1f2e, // 0970 0x1f2f,0x1f30,0x1f31,0x1f32,0x1f33,0x1f34,0x1f35,0x1f36,0x1f37,0x1f38,0x1f39,0x1f3a,0x1f3b,0x1f3c,0x1f3d,0x1f3e, // 0980 0x1f3f,0x1f40,0x1f41,0x1f42,0x1f43,0x1f44,0x1f45,0x1f48,0x1f49,0x1f4a,0x1f4b,0x1f4c,0x1f4d,0x1f50,0x1f51,0x1f52, // 0990 0x1f53,0x1f54,0x1f55,0x1f56,0x1f57,0x1f59,0x1f5b,0x1f5d,0x1f5f,0x1f60,0x1f61,0x1f62,0x1f63,0x1f64,0x1f65,0x1f66, // 09a0 0x1f67,0x1f68,0x1f69,0x1f6a,0x1f6b,0x1f6c,0x1f6d,0x1f6e,0x1f6f,0x1f70,0x1f71,0x1f72,0x1f73,0x1f74,0x1f75,0x1f76, // 09b0 0x1f77,0x1f78,0x1f79,0x1f7a,0x1f7b,0x1f7c,0x1f7d,0x1f80,0x1f81,0x1f82,0x1f83,0x1f84,0x1f85,0x1f86,0x1f87,0x1f88, // 09c0 0x1f89,0x1f8a,0x1f8b,0x1f8c,0x1f8d,0x1f8e,0x1f8f,0x1f90,0x1f91,0x1f92,0x1f93,0x1f94,0x1f95,0x1f96,0x1f97,0x1f98, // 09d0 0x1f99,0x1f9a,0x1f9b,0x1f9c,0x1f9d,0x1f9e,0x1f9f,0x1fa0,0x1fa1,0x1fa2,0x1fa3,0x1fa4,0x1fa5,0x1fa6,0x1fa7,0x1fa8, // 09e0 0x1fa9,0x1faa,0x1fab,0x1fac,0x1fad,0x1fae,0x1faf,0x1fb0,0x1fb1,0x1fb2,0x1fb3,0x1fb4,0x1fb6,0x1fb7,0x1fb8,0x1fb9, // 09f0 0x1fba,0x1fbb,0x1fbc,0x1fbd,0x1fbe,0x1fc1,0x1fc2,0x1fc3,0x1fc4,0x1fc6,0x1fc7,0x1fc8,0x1fc9,0x1fca,0x1fcb,0x1fcc, // 0a00 0x1fcd,0x1fce,0x1fcf,0x1fd0,0x1fd1,0x1fd2,0x1fd3,0x1fd6,0x1fd7,0x1fd8,0x1fd9,0x1fda,0x1fdb,0x1fdd,0x1fde,0x1fdf, // 0a10 0x1fe0,0x1fe1,0x1fe2,0x1fe3,0x1fe4,0x1fe5,0x1fe6,0x1fe7,0x1fe8,0x1fe9,0x1fea,0x1feb,0x1fec,0x1fed,0x1fee,0x1fef, // 0a20 0x1ff2,0x1ff3,0x1ff4,0x1ff6,0x1ff7,0x1ff8,0x1ff9,0x1ffa,0x1ffb,0x1ffc,0x1ffd,0x2000,0x2001,0x2002,0x2003,0x2004, // 0a30 0x2005,0x2006,0x2007,0x2008,0x2009,0x200a,0x200b,0x200c,0x200d,0x200e,0x200f,0x2010,0x2011,0x2012,0x2013,0x2014, // 0a40 0x2015,0x2018,0x2019,0x201a,0x201b,0x201c,0x201d,0x201e,0x201f,0x2022,0x2024,0x202a,0x202b,0x202c,0x202d,0x202e, // 0a50 0x202f,0x2032,0x2033,0x2035,0x2039,0x203a,0x2044,0x2045,0x2046,0x205f,0x2060,0x2061,0x2062,0x2063,0x2064,0x2066, // 0a60 0x2067,0x2068,0x2069,0x206a,0x206b,0x206c,0x206d,0x206e,0x206f,0x2070,0x2074,0x2075,0x2076,0x2077,0x2078,0x2079, // 0a70 0x207a,0x207b,0x207c,0x2080,0x2081,0x2082,0x2083,0x2084,0x2085,0x2086,0x2087,0x2088,0x2089,0x208a,0x208b,0x208c, // 0a80 0x20d0,0x20d1,0x20d2,0x20d3,0x20d4,0x20d5,0x20d6,0x20d7,0x20d8,0x20d9,0x20da,0x20db,0x20dc,0x20dd,0x20de,0x20df, // 0a90 0x20e0,0x20e1,0x20e2,0x20e3,0x20e4,0x20e5,0x20e6,0x20e7,0x20e8,0x20e9,0x20ea,0x20eb,0x20ec,0x20ed,0x20ee,0x20ef, // 0aa0 0x20f0,0x2102,0x2103,0x2107,0x2109,0x210a,0x210b,0x210c,0x210d,0x210e,0x210f,0x2110,0x2111,0x2112,0x2113,0x2115, // 0ab0 0x2118,0x2119,0x211a,0x211b,0x211c,0x211d,0x2124,0x2125,0x2126,0x2128,0x212a,0x212b,0x212c,0x212d,0x212e,0x212f, // 0ac0 0x2130,0x2131,0x2132,0x2133,0x2134,0x2135,0x2136,0x2137,0x2138,0x2139,0x213a,0x213c,0x213d,0x213e,0x213f,0x2140, // 0ad0 0x2141,0x2142,0x2143,0x2144,0x2145,0x2146,0x2147,0x2148,0x2149,0x214e,0x2160,0x2161,0x2162,0x2163,0x2164,0x2165, // 0ae0 0x2166,0x2167,0x2168,0x2169,0x216a,0x216b,0x216c,0x216d,0x216e,0x216f,0x2170,0x2174,0x2179,0x217c,0x217d,0x217e, // 0af0 0x217f,0x2183,0x219a,0x219b,0x21ae,0x21cd,0x21ce,0x21cf,0x2204,0x2209,0x220c,0x2224,0x2226,0x2241,0x2244,0x2247, // 0b00 0x2249,0x2260,0x2262,0x226d,0x226e,0x226f,0x2270,0x2271,0x2274,0x2275,0x2278,0x2279,0x2280,0x2281,0x2284,0x2285, // 0b10 0x2288,0x2289,0x22ac,0x22ad,0x22ae,0x22af,0x22e0,0x22e1,0x22e2,0x22e3,0x22ea,0x22eb,0x22ec,0x22ed,0x2460,0x2461, // 0b20 0x2462,0x2463,0x2464,0x2465,0x2466,0x2467,0x2468,0x2474,0x2475,0x2476,0x2477,0x2478,0x2479,0x247a,0x247b,0x247c, // 0b30 0x2488,0x2489,0x248a,0x248b,0x248c,0x248d,0x248e,0x248f,0x2490,0x249c,0x249d,0x249e,0x249f,0x24a0,0x24a1,0x24a2, // 0b40 0x24a3,0x24a4,0x24a5,0x24a6,0x24a7,0x24a8,0x24a9,0x24aa,0x24ab,0x24ac,0x24ad,0x24ae,0x24af,0x24b0,0x24b1,0x24b2, // 0b50 0x24b3,0x24b4,0x24b5,0x24b6,0x24b7,0x24b8,0x24b9,0x24ba,0x24bb,0x24bc,0x24bd,0x24be,0x24bf,0x24c0,0x24c1,0x24c2, // 0b60 0x24c3,0x24c4,0x24c5,0x24c6,0x24c7,0x24c8,0x24c9,0x24ca,0x24cb,0x24cc,0x24cd,0x24ce,0x24cf,0x24d0,0x24d1,0x24d2, // 0b70 0x24d3,0x24d4,0x24d5,0x24d6,0x24d7,0x24d8,0x24d9,0x24da,0x24db,0x24dc,0x24dd,0x24de,0x24df,0x24e0,0x24e1,0x24e2, // 0b80 0x24e3,0x24e4,0x24e5,0x24e6,0x24e7,0x24e8,0x24e9,0x24ea,0x24f5,0x24f6,0x24f7,0x24f8,0x24f9,0x24fa,0x24fb,0x24fc, // 0b90 0x24fd,0x24ff,0x2776,0x2777,0x2778,0x2779,0x277a,0x277b,0x277c,0x277d,0x277e,0x2780,0x2781,0x2782,0x2783,0x2784, // 0ba0 0x2785,0x2786,0x2787,0x2788,0x278a,0x278b,0x278c,0x278d,0x278e,0x278f,0x2790,0x2791,0x2792,0x2a74,0x2adc,0x2c00, // 0bb0 0x2c01,0x2c02,0x2c03,0x2c04,0x2c05,0x2c06,0x2c07,0x2c08,0x2c09,0x2c0a,0x2c0b,0x2c0c,0x2c0d,0x2c0e,0x2c0f,0x2c10, // 0bc0 0x2c11,0x2c12,0x2c13,0x2c14,0x2c15,0x2c16,0x2c17,0x2c18,0x2c19,0x2c1a,0x2c1b,0x2c1c,0x2c1d,0x2c1e,0x2c1f,0x2c20, // 0bd0 0x2c21,0x2c22,0x2c23,0x2c24,0x2c25,0x2c26,0x2c27,0x2c28,0x2c29,0x2c2a,0x2c2b,0x2c2c,0x2c2d,0x2c2e,0x2c60,0x2c61, // 0be0 0x2c62,0x2c63,0x2c64,0x2c65,0x2c66,0x2c67,0x2c68,0x2c69,0x2c6a,0x2c6b,0x2c6c,0x2c6d,0x2c6e,0x2c6f,0x2c70,0x2c71, // 0bf0 0x2c72,0x2c73,0x2c74,0x2c75,0x2c77,0x2c78,0x2c7a,0x2c7e,0x2c7f,0x2c80,0x2c82,0x2c84,0x2c86,0x2c88,0x2c8a,0x2c8c, // 0c00 0x2c8e,0x2c90,0x2c92,0x2c94,0x2c96,0x2c98,0x2c9a,0x2c9c,0x2c9e,0x2ca0,0x2ca2,0x2ca4,0x2ca6,0x2ca8,0x2caa,0x2cac, // 0c10 0x2cae,0x2cb0,0x2cb2,0x2cb4,0x2cb6,0x2cb8,0x2cba,0x2cbc,0x2cbe,0x2cc0,0x2cc2,0x2cc4,0x2cc6,0x2cc8,0x2cca,0x2ccc, // 0c20 0x2cce,0x2cd0,0x2cd2,0x2cd4,0x2cd6,0x2cd8,0x2cda,0x2cdc,0x2cde,0x2ce0,0x2ce2,0x2ceb,0x2ced,0x2cef,0x2cf0,0x2cf1, // 0c30 0x2cf2,0x2d7f,0x2de0,0x2de1,0x2de2,0x2de3,0x2de4,0x2de5,0x2de6,0x2de7,0x2de8,0x2de9,0x2dea,0x2deb,0x2dec,0x2ded, // 0c40 0x2dee,0x2def,0x2df0,0x2df1,0x2df2,0x2df3,0x2df4,0x2df5,0x2df6,0x2df7,0x2df8,0x2df9,0x2dfa,0x2dfb,0x2dfc,0x2dfd, // 0c50 0x2dfe,0x2dff,0x2e80,0x2e81,0x2e82,0x2e83,0x2e84,0x2e85,0x2e86,0x2e87,0x2e88,0x2e89,0x2e8a,0x2e8b,0x2e8c,0x2e8d, // 0c60 0x2e8e,0x2e8f,0x2e90,0x2e91,0x2e92,0x2e93,0x2e94,0x2e95,0x2e96,0x2e97,0x2e98,0x2e99,0x2e9b,0x2e9c,0x2e9d,0x2e9e, // 0c70 0x2e9f,0x2ea0,0x2ea1,0x2ea2,0x2ea3,0x2ea4,0x2ea5,0x2ea6,0x2ea7,0x2ea8,0x2ea9,0x2eaa,0x2eab,0x2eac,0x2ead,0x2eae, // 0c80 0x2eaf,0x2eb0,0x2eb1,0x2eb2,0x2eb3,0x2eb4,0x2eb5,0x2eb6,0x2eb7,0x2eb8,0x2eb9,0x2eba,0x2ebb,0x2ebc,0x2ebd,0x2ebe, // 0c90 0x2ebf,0x2ec0,0x2ec1,0x2ec2,0x2ec3,0x2ec4,0x2ec5,0x2ec6,0x2ec7,0x2ec8,0x2ec9,0x2eca,0x2ecb,0x2ecc,0x2ecd,0x2ece, // 0ca0 0x2ecf,0x2ed0,0x2ed1,0x2ed2,0x2ed3,0x2ed4,0x2ed5,0x2ed6,0x2ed7,0x2ed8,0x2ed9,0x2eda,0x2edb,0x2edc,0x2edd,0x2ede, // 0cb0 0x2edf,0x2ee0,0x2ee1,0x2ee2,0x2ee3,0x2ee4,0x2ee5,0x2ee6,0x2ee7,0x2ee8,0x2ee9,0x2eea,0x2eeb,0x2eec,0x2eed,0x2eee, // 0cc0 0x2eef,0x2ef0,0x2ef1,0x2ef2,0x2ef3,0x2f00,0x2f01,0x2f02,0x2f03,0x2f04,0x2f05,0x2f06,0x2f07,0x2f08,0x2f09,0x2f0a, // 0cd0 0x2f0b,0x2f0c,0x2f0d,0x2f0e,0x2f0f,0x2f10,0x2f11,0x2f12,0x2f13,0x2f14,0x2f15,0x2f16,0x2f17,0x2f18,0x2f19,0x2f1a, // 0ce0 0x2f1b,0x2f1c,0x2f1d,0x2f1e,0x2f1f,0x2f20,0x2f21,0x2f22,0x2f23,0x2f24,0x2f25,0x2f26,0x2f27,0x2f28,0x2f29,0x2f2a, // 0cf0 0x2f2b,0x2f2c,0x2f2d,0x2f2e,0x2f2f,0x2f30,0x2f31,0x2f32,0x2f33,0x2f34,0x2f35,0x2f36,0x2f37,0x2f38,0x2f39,0x2f3a, // 0d00 0x2f3b,0x2f3c,0x2f3d,0x2f3e,0x2f3f,0x2f40,0x2f41,0x2f42,0x2f43,0x2f44,0x2f45,0x2f46,0x2f47,0x2f48,0x2f49,0x2f4a, // 0d10 0x2f4b,0x2f4c,0x2f4d,0x2f4e,0x2f4f,0x2f50,0x2f51,0x2f52,0x2f53,0x2f54,0x2f55,0x2f56,0x2f57,0x2f58,0x2f59,0x2f5a, // 0d20 0x2f5b,0x2f5c,0x2f5d,0x2f5e,0x2f5f,0x2f60,0x2f61,0x2f62,0x2f63,0x2f64,0x2f65,0x2f66,0x2f67,0x2f68,0x2f69,0x2f6a, // 0d30 0x2f6b,0x2f6c,0x2f6d,0x2f6e,0x2f6f,0x2f70,0x2f71,0x2f72,0x2f73,0x2f74,0x2f75,0x2f76,0x2f77,0x2f78,0x2f79,0x2f7a, // 0d40 0x2f7b,0x2f7c,0x2f7d,0x2f7e,0x2f7f,0x2f80,0x2f81,0x2f82,0x2f83,0x2f84,0x2f85,0x2f86,0x2f87,0x2f88,0x2f89,0x2f8a, // 0d50 0x2f8b,0x2f8c,0x2f8d,0x2f8e,0x2f8f,0x2f90,0x2f91,0x2f92,0x2f93,0x2f94,0x2f95,0x2f96,0x2f97,0x2f98,0x2f99,0x2f9a, // 0d60 0x2f9b,0x2f9c,0x2f9d,0x2f9e,0x2f9f,0x2fa0,0x2fa1,0x2fa2,0x2fa3,0x2fa4,0x2fa5,0x2fa6,0x2fa7,0x2fa8,0x2fa9,0x2faa, // 0d70 0x2fab,0x2fac,0x2fad,0x2fae,0x2faf,0x2fb0,0x2fb1,0x2fb2,0x2fb3,0x2fb4,0x2fb5,0x2fb6,0x2fb7,0x2fb8,0x2fb9,0x2fba, // 0d80 0x2fbb,0x2fbc,0x2fbd,0x2fbe,0x2fbf,0x2fc0,0x2fc1,0x2fc2,0x2fc3,0x2fc4,0x2fc5,0x2fc6,0x2fc7,0x2fc8,0x2fc9,0x2fca, // 0d90 0x2fcb,0x2fcc,0x2fcd,0x2fce,0x2fcf,0x2fd0,0x2fd1,0x2fd2,0x2fd3,0x2fd4,0x2fd5,0x3000,0x3001,0x3002,0x3007,0x3008, // 0da0 0x3009,0x3014,0x3015,0x3018,0x3019,0x301a,0x301b,0x301d,0x301e,0x302a,0x302b,0x302c,0x302d,0x302e,0x302f,0x3036, // 0db0 0x3038,0x3039,0x303a,0x304c,0x304e,0x3050,0x3052,0x3054,0x3056,0x3058,0x305a,0x305c,0x305e,0x3060,0x3062,0x3065, // 0dc0 0x3067,0x3069,0x3070,0x3071,0x3073,0x3074,0x3076,0x3077,0x3079,0x307a,0x307c,0x307d,0x3094,0x3099,0x309a,0x30ac, // 0dd0 0x30ae,0x30b0,0x30b2,0x30b4,0x30b6,0x30b8,0x30ba,0x30bc,0x30be,0x30c0,0x30c2,0x30c5,0x30c7,0x30c9,0x30d0,0x30d1, // 0de0 0x30d3,0x30d4,0x30d6,0x30d7,0x30d9,0x30da,0x30dc,0x30dd,0x30f4,0x30f7,0x30f8,0x30f9,0x30fa,0x312e,0x3131,0x3132, // 0df0 0x3133,0x3134,0x3135,0x3136,0x3137,0x3138,0x3139,0x313a,0x313b,0x313c,0x313d,0x313e,0x313f,0x3140,0x3141,0x3142, // 0e00 0x3143,0x3144,0x3145,0x3146,0x3147,0x3148,0x3149,0x314a,0x314b,0x314c,0x314d,0x314e,0x314f,0x3150,0x3151,0x3152, // 0e10 0x3153,0x3154,0x3155,0x3156,0x3157,0x3158,0x3159,0x315a,0x315b,0x315c,0x315d,0x315e,0x315f,0x3160,0x3161,0x3162, // 0e20 0x3163,0x3164,0x3165,0x3166,0x3167,0x3168,0x3169,0x316a,0x316b,0x316c,0x316d,0x316e,0x316f,0x3170,0x3171,0x3172, // 0e30 0x3173,0x3174,0x3175,0x3176,0x3177,0x3178,0x3179,0x317a,0x317b,0x317c,0x317d,0x317e,0x317f,0x3180,0x3181,0x3182, // 0e40 0x3183,0x3184,0x3185,0x3186,0x3187,0x3188,0x3189,0x318a,0x318b,0x318c,0x318d,0x318e,0x3192,0x3193,0x3194,0x3195, // 0e50 0x3196,0x3197,0x3198,0x3199,0x319a,0x319b,0x319c,0x319d,0x319e,0x319f,0x31a0,0x31a1,0x31a2,0x31a3,0x31a5,0x31a7, // 0e60 0x31a8,0x31a9,0x31aa,0x31ab,0x31ae,0x31af,0x31b3,0x31b4,0x31b5,0x31b6,0x31b7,0x3200,0x3201,0x3202,0x3203,0x3204, // 0e70 0x3205,0x3206,0x3207,0x3208,0x3209,0x320a,0x320b,0x320c,0x320d,0x3220,0x3221,0x3222,0x3223,0x3224,0x3225,0x3226, // 0e80 0x3227,0x3228,0x3229,0x322a,0x322b,0x322c,0x322d,0x322e,0x322f,0x3230,0x3231,0x3232,0x3233,0x3234,0x3235,0x3236, // 0e90 0x3237,0x3238,0x3239,0x323a,0x323b,0x323c,0x323d,0x323e,0x323f,0x3240,0x3241,0x3242,0x3243,0x3244,0x3245,0x3246, // 0ea0 0x3247,0x3260,0x3261,0x3262,0x3263,0x3264,0x3265,0x3266,0x3267,0x3268,0x3269,0x326a,0x326b,0x326c,0x326d,0x3280, // 0eb0 0x3281,0x3282,0x3283,0x3284,0x3285,0x3286,0x3287,0x3288,0x3289,0x328a,0x328b,0x328c,0x328d,0x328e,0x328f,0x3290, // 0ec0 0x3291,0x3292,0x3293,0x3294,0x3295,0x3296,0x3297,0x3298,0x3299,0x329a,0x329b,0x329c,0x329d,0x329e,0x329f,0x32a0, // 0ed0 0x32a1,0x32a2,0x32a3,0x32a4,0x32a5,0x32a6,0x32a7,0x32a8,0x32a9,0x32aa,0x32ab,0x32ac,0x32ad,0x32ae,0x32af,0x32b0, // 0ee0 0x32d0,0x32d1,0x32d2,0x32d3,0x32d4,0x32d5,0x32d6,0x32d7,0x32d8,0x32d9,0x32da,0x32db,0x32dc,0x32dd,0x32de,0x32df, // 0ef0 0x32e0,0x32e1,0x32e2,0x32e3,0x32e4,0x32e5,0x32e6,0x32e7,0x32e8,0x32e9,0x32ea,0x32eb,0x32ec,0x32ed,0x32ee,0x32ef, // 0f00 0x32f0,0x32f1,0x32f2,0x32f3,0x32f4,0x32f5,0x32f6,0x32f7,0x32f8,0x32f9,0x32fa,0x32fb,0x32fc,0x32fd,0x32fe,0xa610, // 0f10 0xa611,0xa612,0xa616,0xa618,0xa619,0xa61e,0xa62a,0xa62b,0xa640,0xa642,0xa644,0xa646,0xa648,0xa64a,0xa64c,0xa64e, // 0f20 0xa650,0xa652,0xa654,0xa656,0xa658,0xa65a,0xa65c,0xa65e,0xa660,0xa662,0xa664,0xa666,0xa668,0xa669,0xa66a,0xa66b, // 0f30 0xa66c,0xa66d,0xa66e,0xa66f,0xa670,0xa671,0xa672,0xa674,0xa675,0xa676,0xa677,0xa678,0xa679,0xa67a,0xa67b,0xa67c, // 0f40 0xa67d,0xa680,0xa682,0xa684,0xa686,0xa688,0xa68a,0xa68c,0xa68e,0xa690,0xa692,0xa694,0xa696,0xa698,0xa699,0xa69a, // 0f50 0xa69b,0xa69c,0xa69d,0xa69e,0xa69f,0xa6f0,0xa6f1,0xa722,0xa724,0xa726,0xa728,0xa729,0xa72a,0xa72c,0xa72e,0xa730, // 0f60 0xa731,0xa732,0xa733,0xa734,0xa735,0xa736,0xa737,0xa738,0xa739,0xa73a,0xa73b,0xa73c,0xa73d,0xa73e,0xa73f,0xa740, // 0f70 0xa741,0xa742,0xa743,0xa744,0xa745,0xa746,0xa747,0xa748,0xa749,0xa74a,0xa74b,0xa74c,0xa74d,0xa74e,0xa74f,0xa750, // 0f80 0xa751,0xa752,0xa753,0xa754,0xa755,0xa756,0xa757,0xa758,0xa759,0xa75a,0xa75c,0xa75e,0xa75f,0xa760,0xa761,0xa762, // 0f90 0xa764,0xa765,0xa766,0xa767,0xa768,0xa76a,0xa76c,0xa76e,0xa771,0xa772,0xa773,0xa774,0xa775,0xa776,0xa777,0xa779, // 0fa0 0xa77a,0xa77b,0xa77c,0xa77d,0xa77e,0xa780,0xa782,0xa783,0xa784,0xa785,0xa786,0xa787,0xa78b,0xa78d,0xa790,0xa791, // 0fb0 0xa792,0xa793,0xa79a,0xa79b,0xa79c,0xa79d,0xa79e,0xa79f,0xa7a0,0xa7a1,0xa7a2,0xa7a3,0xa7a4,0xa7a5,0xa7a6,0xa7a7, // 0fc0 0xa7a8,0xa7a9,0xa7aa,0xa802,0xa806,0xa80b,0xa823,0xa824,0xa825,0xa826,0xa827,0xa880,0xa881,0xa8b4,0xa8b5,0xa8b6, // 0fd0 0xa8b7,0xa8b8,0xa8b9,0xa8ba,0xa8bb,0xa8bc,0xa8bd,0xa8be,0xa8bf,0xa8c0,0xa8c1,0xa8c2,0xa8c3,0xa8c4,0xa8e0,0xa8e1, // 0fe0 0xa8e2,0xa8e3,0xa8e4,0xa8e5,0xa8e6,0xa8e7,0xa8e8,0xa8e9,0xa8ea,0xa8eb,0xa8ec,0xa8ed,0xa8ee,0xa8ef,0xa8f0,0xa8f1, // 0ff0 0xa8f3,0xa8f4,0xa8f5,0xa8f6,0xa8f7,0xa926,0xa927,0xa928,0xa929,0xa92a,0xa92b,0xa92c,0xa92d,0xa947,0xa948,0xa949, // 1000 0xa94a,0xa94b,0xa94c,0xa94d,0xa94e,0xa94f,0xa950,0xa951,0xa952,0xa953,0xa980,0xa981,0xa982,0xa983,0xa9ac,0xa9b3, // 1010 0xa9b4,0xa9b5,0xa9b6,0xa9b7,0xa9b8,0xa9b9,0xa9ba,0xa9bb,0xa9bc,0xa9bd,0xa9be,0xa9bf,0xa9c0,0xaa29,0xaa2a,0xaa2b, // 1020 0xaa2c,0xaa2d,0xaa2e,0xaa2f,0xaa30,0xaa31,0xaa32,0xaa33,0xaa34,0xaa35,0xaa36,0xaa43,0xaa4c,0xaa4d,0xaa7b,0xaab0, // 1030 0xaab2,0xaab3,0xaab4,0xaab7,0xaab8,0xaabe,0xaabf,0xaac1,0xaaeb,0xaaec,0xaaed,0xaaee,0xaaef,0xaaf5,0xaaf6,0xab5c, // 1040 0xab5d,0xab5e,0xab5f,0xabe3,0xabe4,0xabe5,0xabe6,0xabe7,0xabe8,0xabe9,0xabea,0xabec,0xabed,0xd800,0xdb7f,0xdb80, // 1050 0xdbff,0xdc00,0xdfff,0xe000,0xf8ff,0xf900,0xf901,0xf902,0xf903,0xf904,0xf905,0xf906,0xf907,0xf908,0xf909,0xf90a, // 1060 0xf90b,0xf90c,0xf90d,0xf90e,0xf90f,0xf910,0xf911,0xf912,0xf913,0xf914,0xf915,0xf916,0xf917,0xf918,0xf919,0xf91a, // 1070 0xf91b,0xf91c,0xf91d,0xf91e,0xf91f,0xf920,0xf921,0xf922,0xf923,0xf924,0xf925,0xf926,0xf927,0xf928,0xf929,0xf92a, // 1080 0xf92b,0xf92c,0xf92d,0xf92e,0xf92f,0xf930,0xf931,0xf932,0xf933,0xf934,0xf935,0xf936,0xf937,0xf938,0xf939,0xf93a, // 1090 0xf93b,0xf93c,0xf93d,0xf93e,0xf93f,0xf940,0xf941,0xf942,0xf943,0xf944,0xf945,0xf946,0xf947,0xf948,0xf949,0xf94a, // 10a0 0xf94b,0xf94c,0xf94d,0xf94e,0xf94f,0xf950,0xf951,0xf952,0xf953,0xf954,0xf955,0xf956,0xf957,0xf958,0xf959,0xf95a, // 10b0 0xf95b,0xf95c,0xf95d,0xf95e,0xf95f,0xf960,0xf961,0xf962,0xf963,0xf964,0xf965,0xf966,0xf967,0xf968,0xf969,0xf96a, // 10c0 0xf96b,0xf96c,0xf96d,0xf96e,0xf96f,0xf970,0xf971,0xf972,0xf973,0xf974,0xf975,0xf976,0xf977,0xf978,0xf979,0xf97a, // 10d0 0xf97b,0xf97c,0xf97d,0xf97e,0xf97f,0xf980,0xf981,0xf982,0xf983,0xf984,0xf985,0xf986,0xf987,0xf988,0xf989,0xf98a, // 10e0 0xf98b,0xf98c,0xf98d,0xf98e,0xf98f,0xf990,0xf991,0xf992,0xf993,0xf994,0xf995,0xf996,0xf997,0xf998,0xf999,0xf99a, // 10f0 0xf99b,0xf99c,0xf99d,0xf99e,0xf99f,0xf9a0,0xf9a1,0xf9a2,0xf9a3,0xf9a4,0xf9a5,0xf9a6,0xf9a7,0xf9a8,0xf9a9,0xf9aa, // 1100 0xf9ab,0xf9ac,0xf9ad,0xf9ae,0xf9af,0xf9b0,0xf9b1,0xf9b2,0xf9b3,0xf9b4,0xf9b5,0xf9b6,0xf9b7,0xf9b8,0xf9b9,0xf9ba, // 1110 0xf9bb,0xf9bc,0xf9bd,0xf9be,0xf9bf,0xf9c0,0xf9c1,0xf9c2,0xf9c3,0xf9c4,0xf9c5,0xf9c6,0xf9c7,0xf9c8,0xf9c9,0xf9ca, // 1120 0xf9cb,0xf9cc,0xf9cd,0xf9ce,0xf9cf,0xf9d0,0xf9d1,0xf9d2,0xf9d3,0xf9d4,0xf9d5,0xf9d6,0xf9d7,0xf9d8,0xf9d9,0xf9da, // 1130 0xf9db,0xf9dc,0xf9dd,0xf9de,0xf9df,0xf9e0,0xf9e1,0xf9e2,0xf9e3,0xf9e4,0xf9e5,0xf9e6,0xf9e7,0xf9e8,0xf9e9,0xf9ea, // 1140 0xf9eb,0xf9ec,0xf9ed,0xf9ee,0xf9ef,0xf9f0,0xf9f1,0xf9f2,0xf9f3,0xf9f4,0xf9f5,0xf9f6,0xf9f7,0xf9f8,0xf9f9,0xf9fa, // 1150 0xf9fb,0xf9fc,0xf9fd,0xf9fe,0xf9ff,0xfa00,0xfa01,0xfa02,0xfa03,0xfa04,0xfa05,0xfa06,0xfa07,0xfa08,0xfa09,0xfa0a, // 1160 0xfa0b,0xfa0c,0xfa0d,0xfa10,0xfa12,0xfa15,0xfa16,0xfa17,0xfa18,0xfa19,0xfa1a,0xfa1b,0xfa1c,0xfa1d,0xfa1e,0xfa20, // 1170 0xfa22,0xfa25,0xfa26,0xfa2a,0xfa2b,0xfa2c,0xfa2d,0xfa2e,0xfa2f,0xfa30,0xfa31,0xfa32,0xfa33,0xfa34,0xfa35,0xfa36, // 1180 0xfa37,0xfa38,0xfa39,0xfa3a,0xfa3b,0xfa3c,0xfa3d,0xfa3e,0xfa3f,0xfa40,0xfa41,0xfa42,0xfa43,0xfa44,0xfa45,0xfa46, // 1190 0xfa47,0xfa48,0xfa49,0xfa4a,0xfa4b,0xfa4c,0xfa4d,0xfa4e,0xfa4f,0xfa50,0xfa51,0xfa52,0xfa53,0xfa54,0xfa55,0xfa56, // 11a0 0xfa57,0xfa58,0xfa59,0xfa5a,0xfa5b,0xfa5c,0xfa5d,0xfa5e,0xfa5f,0xfa60,0xfa61,0xfa62,0xfa63,0xfa64,0xfa65,0xfa66, // 11b0 0xfa67,0xfa68,0xfa69,0xfa6a,0xfa6b,0xfa6d,0xfa70,0xfa71,0xfa72,0xfa73,0xfa74,0xfa75,0xfa76,0xfa77,0xfa78,0xfa79, // 11c0 0xfa7a,0xfa7b,0xfa7c,0xfa7d,0xfa7e,0xfa7f,0xfa80,0xfa81,0xfa82,0xfa83,0xfa84,0xfa85,0xfa86,0xfa87,0xfa88,0xfa89, // 11d0 0xfa8a,0xfa8b,0xfa8c,0xfa8d,0xfa8e,0xfa8f,0xfa90,0xfa91,0xfa92,0xfa93,0xfa94,0xfa95,0xfa96,0xfa97,0xfa98,0xfa99, // 11e0 0xfa9a,0xfa9b,0xfa9c,0xfa9d,0xfa9e,0xfa9f,0xfaa0,0xfaa1,0xfaa2,0xfaa3,0xfaa4,0xfaa5,0xfaa6,0xfaa7,0xfaa8,0xfaa9, // 11f0 0xfaaa,0xfaab,0xfaac,0xfaad,0xfaae,0xfaaf,0xfab0,0xfab1,0xfab2,0xfab3,0xfab4,0xfab5,0xfab6,0xfab7,0xfab8,0xfab9, // 1200 0xfaba,0xfabb,0xfabc,0xfabd,0xfabe,0xfabf,0xfac0,0xfac1,0xfac2,0xfac3,0xfac4,0xfac5,0xfac6,0xfac7,0xfac8,0xfac9, // 1210 0xfaca,0xfacb,0xfacc,0xfacd,0xface,0xfad2,0xfad3,0xfad4,0xfad8,0xfad9,0xfb00,0xfb01,0xfb02,0xfb05,0xfb06,0xfb1d, // 1220 0xfb1e,0xfb20,0xfb21,0xfb22,0xfb23,0xfb24,0xfb25,0xfb26,0xfb27,0xfb28,0xfb29,0xfb2a,0xfb2b,0xfb2c,0xfb2d,0xfb2e, // 1230 0xfb2f,0xfb30,0xfb31,0xfb32,0xfb33,0xfb34,0xfb35,0xfb36,0xfb38,0xfb39,0xfb3a,0xfb3b,0xfb3c,0xfb3e,0xfb40,0xfb41, // 1240 0xfb43,0xfb44,0xfb46,0xfb47,0xfb48,0xfb49,0xfb4a,0xfb4b,0xfb4c,0xfb4d,0xfb4e,0xfb50,0xfb51,0xfb52,0xfb53,0xfb54, // 1250 0xfb55,0xfb56,0xfb57,0xfb58,0xfb59,0xfb5a,0xfb5b,0xfb5c,0xfb5d,0xfb5e,0xfb5f,0xfb60,0xfb61,0xfb62,0xfb63,0xfb64, // 1260 0xfb65,0xfb66,0xfb67,0xfb68,0xfb69,0xfb6a,0xfb6b,0xfb6c,0xfb6d,0xfb6e,0xfb6f,0xfb70,0xfb71,0xfb72,0xfb73,0xfb74, // 1270 0xfb75,0xfb76,0xfb77,0xfb78,0xfb79,0xfb7a,0xfb7b,0xfb7c,0xfb7d,0xfb7e,0xfb7f,0xfb80,0xfb81,0xfb82,0xfb83,0xfb84, // 1280 0xfb85,0xfb86,0xfb87,0xfb88,0xfb89,0xfb8a,0xfb8b,0xfb8c,0xfb8d,0xfb8e,0xfb8f,0xfb90,0xfb91,0xfb92,0xfb93,0xfb94, // 1290 0xfb95,0xfb96,0xfb97,0xfb98,0xfb99,0xfb9a,0xfb9b,0xfb9c,0xfb9d,0xfb9e,0xfb9f,0xfba0,0xfba1,0xfba2,0xfba3,0xfba4, // 12a0 0xfba5,0xfba6,0xfba7,0xfba8,0xfba9,0xfbaa,0xfbab,0xfbac,0xfbad,0xfbae,0xfbaf,0xfbb0,0xfbb1,0xfbd3,0xfbd4,0xfbd5, // 12b0 0xfbd6,0xfbd7,0xfbd8,0xfbd9,0xfbda,0xfbdb,0xfbdc,0xfbde,0xfbdf,0xfbe0,0xfbe1,0xfbe2,0xfbe3,0xfbe4,0xfbe5,0xfbe6, // 12c0 0xfbe7,0xfbe8,0xfbe9,0xfbfc,0xfbfd,0xfbfe,0xfbff,0xfc5b,0xfc5c,0xfc5d,0xfc90,0xfcd9,0xfd3c,0xfd3d,0xfe00,0xfe01, // 12d0 0xfe02,0xfe03,0xfe04,0xfe05,0xfe06,0xfe07,0xfe08,0xfe09,0xfe0a,0xfe0b,0xfe0c,0xfe0d,0xfe0e,0xfe0f,0xfe10,0xfe11, // 12e0 0xfe12,0xfe13,0xfe14,0xfe15,0xfe16,0xfe20,0xfe21,0xfe22,0xfe23,0xfe24,0xfe25,0xfe26,0xfe31,0xfe32,0xfe35,0xfe36, // 12f0 0xfe37,0xfe38,0xfe39,0xfe3a,0xfe3f,0xfe40,0xfe47,0xfe48,0xfe50,0xfe51,0xfe52,0xfe54,0xfe55,0xfe56,0xfe57,0xfe58, // 1300 0xfe59,0xfe5a,0xfe5b,0xfe5c,0xfe5d,0xfe5e,0xfe5f,0xfe60,0xfe61,0xfe62,0xfe63,0xfe64,0xfe65,0xfe66,0xfe68,0xfe69, // 1310 0xfe6a,0xfe6b,0xfe80,0xfe81,0xfe82,0xfe83,0xfe84,0xfe85,0xfe86,0xfe87,0xfe88,0xfe89,0xfe8a,0xfe8b,0xfe8c,0xfe8d, // 1320 0xfe8e,0xfe8f,0xfe90,0xfe91,0xfe92,0xfe93,0xfe94,0xfe95,0xfe96,0xfe97,0xfe98,0xfe99,0xfe9a,0xfe9b,0xfe9c,0xfe9d, // 1330 0xfe9e,0xfe9f,0xfea0,0xfea1,0xfea2,0xfea3,0xfea4,0xfea5,0xfea6,0xfea7,0xfea8,0xfea9,0xfeaa,0xfeab,0xfeac,0xfead, // 1340 0xfeae,0xfeaf,0xfeb0,0xfeb1,0xfeb2,0xfeb3,0xfeb4,0xfeb5,0xfeb6,0xfeb7,0xfeb8,0xfeb9,0xfeba,0xfebb,0xfebc,0xfebd, // 1350 0xfebe,0xfebf,0xfec0,0xfec1,0xfec2,0xfec3,0xfec4,0xfec5,0xfec6,0xfec7,0xfec8,0xfec9,0xfeca,0xfecb,0xfecc,0xfecd, // 1360 0xfece,0xfecf,0xfed0,0xfed1,0xfed2,0xfed3,0xfed4,0xfed5,0xfed6,0xfed7,0xfed8,0xfed9,0xfeda,0xfedb,0xfedc,0xfedd, // 1370 0xfede,0xfedf,0xfee0,0xfee1,0xfee2,0xfee3,0xfee4,0xfee5,0xfee6,0xfee7,0xfee8,0xfee9,0xfeea,0xfeeb,0xfeec,0xfeed, // 1380 0xfeee,0xfeef,0xfef0,0xfef1,0xfef2,0xfef3,0xfef4,0xfeff,0xff01,0xff02,0xff03,0xff04,0xff05,0xff06,0xff07,0xff08, // 1390 0xff09,0xff0a,0xff0b,0xff0c,0xff0d,0xff0e,0xff0f,0xff10,0xff11,0xff12,0xff13,0xff14,0xff15,0xff16,0xff17,0xff18, // 13a0 0xff19,0xff1a,0xff1b,0xff1c,0xff1d,0xff1e,0xff1f,0xff20,0xff21,0xff22,0xff23,0xff24,0xff25,0xff26,0xff27,0xff28, // 13b0 0xff29,0xff2a,0xff2b,0xff2c,0xff2d,0xff2e,0xff2f,0xff30,0xff31,0xff32,0xff33,0xff34,0xff35,0xff36,0xff37,0xff38, // 13c0 0xff39,0xff3a,0xff3b,0xff3c,0xff3d,0xff3e,0xff3f,0xff40,0xff41,0xff42,0xff43,0xff44,0xff45,0xff46,0xff47,0xff48, // 13d0 0xff49,0xff4a,0xff4b,0xff4c,0xff4d,0xff4e,0xff4f,0xff50,0xff51,0xff52,0xff53,0xff54,0xff55,0xff56,0xff57,0xff58, // 13e0 0xff59,0xff5a,0xff5b,0xff5c,0xff5d,0xff5e,0xff5f,0xff60,0xff61,0xff64,0xff66,0xff67,0xff68,0xff69,0xff6a,0xff6b, // 13f0 0xff6c,0xff6d,0xff6e,0xff6f,0xff71,0xff72,0xff73,0xff74,0xff75,0xff76,0xff77,0xff78,0xff79,0xff7a,0xff7b,0xff7c, // 1400 0xff7d,0xff7e,0xff7f,0xff80,0xff81,0xff82,0xff83,0xff84,0xff85,0xff86,0xff87,0xff88,0xff89,0xff8a,0xff8b,0xff8c, // 1410 0xff8d,0xff8e,0xff8f,0xff90,0xff91,0xff92,0xff93,0xff94,0xff95,0xff96,0xff97,0xff98,0xff99,0xff9a,0xff9b,0xff9c, // 1420 0xff9d,0xffa0,0xffa1,0xffa2,0xffa3,0xffa4,0xffa5,0xffa6,0xffa7,0xffa8,0xffa9,0xffaa,0xffab,0xffac,0xffad,0xffae, // 1430 0xffaf,0xffb0,0xffb1,0xffb2,0xffb3,0xffb4,0xffb5,0xffb6,0xffb7,0xffb8,0xffb9,0xffba,0xffbb,0xffbc,0xffbd,0xffbe, // 1440 0xffc2,0xffc3,0xffc4,0xffc5,0xffc6,0xffc7,0xffca,0xffcb,0xffcc,0xffcd,0xffce,0xffcf,0xffd2,0xffd3,0xffd4,0xffd5, // 1450 0xffd6,0xffd7,0xffda,0xffdb,0xffdc,0xffe0,0xffe1,0xffe2,0xffe3,0xffe4,0xffe5,0xffe6,0xffe8,0xffe9,0xffea,0xffeb, // 1460 0xffec,0xffed,0xffee,0xfff9,0xfffa,0xfffb, // 1470 }; WORD utf8_nonascii_unicode_to_decomposition_nodiacritics_nocase_values[UTF8_NONASCII_UNICODE_TO_DECOMPOSITION_NODIACRITICS_NOCASE_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0000 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0010 0x0020,0x0061,0x003c,0x002d,0x0032,0x0033,0x03bc,0x002e,0x002c,0x0031,0x006f,0x003e,0x0061,0x0061,0x0061,0x0061, // 0020 0x0061,0x0061,0x0300,0x0063,0x0065,0x0065,0x0065,0x0065,0x0069,0x0069,0x0069,0x0069,0x0064,0x006e,0x006f,0x006f, // 0030 0x006f,0x006f,0x006f,0x006f,0x0075,0x0075,0x0075,0x0075,0x0079,0x0301,0x0302,0x0061,0x0061,0x0061,0x0061,0x0061, // 0040 0x0061,0x0303,0x0063,0x0065,0x0065,0x0065,0x0065,0x0069,0x0069,0x0069,0x0069,0x0064,0x006e,0x006f,0x006f,0x006f, // 0050 0x006f,0x006f,0x006f,0x0075,0x0075,0x0075,0x0075,0x0079,0x0304,0x0079,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061, // 0060 0x0063,0x0063,0x0063,0x0063,0x0063,0x0063,0x0063,0x0063,0x0064,0x0064,0x0064,0x0064,0x0065,0x0065,0x0065,0x0065, // 0070 0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0067,0x0067,0x0067,0x0067,0x0067,0x0067,0x0067,0x0067,0x0068,0x0068, // 0080 0x0068,0x0068,0x0069,0x0069,0x0069,0x0069,0x0069,0x0069,0x0069,0x0069,0x0069,0x0069,0x0305,0x0306,0x006a,0x006a, // 0090 0x006b,0x006b,0x0071,0x006c,0x006c,0x006c,0x006c,0x006c,0x006c,0x006c,0x006c,0x006c,0x006c,0x006e,0x006e,0x006e, // 00a0 0x006e,0x006e,0x006e,0x006e,0x006e,0x006e,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x0307,0x0308,0x0072,0x0072, // 00b0 0x0072,0x0072,0x0072,0x0072,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0074,0x0074,0x0074,0x0074, // 00c0 0x0074,0x0074,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0077,0x0077, // 00d0 0x0079,0x0079,0x0079,0x007a,0x007a,0x007a,0x007a,0x007a,0x007a,0x0073,0x0062,0x0062,0x0062,0x0062,0x0062,0x0062, // 00e0 0x0063,0x0063,0x0063,0x0064,0x0064,0x0064,0x0064,0x0064,0x0065,0x0065,0x0065,0x0066,0x0066,0x0067,0x0067,0x0309, // 00f0 0x0069,0x0069,0x006b,0x006b,0x006c,0x006c,0x006d,0x006e,0x006e,0x006f,0x006f,0x006f,0x030a,0x030b,0x0070,0x0070, // 0100 0x0280,0x0073,0x0073,0x0073,0x0073,0x0074,0x0074,0x0074,0x0074,0x0075,0x0075,0x0075,0x0076,0x0079,0x0079,0x007a, // 0110 0x007a,0x0292,0x01b9,0x01bd,0x030c,0x0077,0x030d,0x030e,0x030f,0x0310,0x0311,0x0312,0x0313,0x0314,0x0315,0x0061, // 0120 0x0061,0x0069,0x0069,0x006f,0x006f,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0065, // 0130 0x0061,0x0061,0x0061,0x0061,0x0316,0x0317,0x0067,0x0067,0x0067,0x0067,0x006b,0x006b,0x006f,0x006f,0x006f,0x006f, // 0140 0x0292,0x0292,0x006a,0x0318,0x0319,0x031a,0x0067,0x0067,0x0195,0x0077,0x006e,0x006e,0x0061,0x0061,0x031b,0x031c, // 0150 0x006f,0x006f,0x0061,0x0061,0x0061,0x0061,0x0065,0x0065,0x0065,0x0065,0x0069,0x0069,0x0069,0x0069,0x006f,0x006f, // 0160 0x006f,0x006f,0x0072,0x0072,0x0072,0x0072,0x0075,0x0075,0x0075,0x0075,0x0073,0x0073,0x0074,0x0074,0x0065,0x0065, // 0170 0x0068,0x0068,0x006e,0x0064,0x0223,0x007a,0x007a,0x0061,0x0061,0x0065,0x0065,0x006f,0x006f,0x006f,0x006f,0x006f, // 0180 0x006f,0x006f,0x006f,0x0079,0x0079,0x006c,0x006e,0x0074,0x006a,0x031d,0x031e,0x0061,0x0063,0x0063,0x006c,0x0074, // 0190 0x0073,0x007a,0x0242,0x0062,0x0075,0x0076,0x0065,0x0065,0x006a,0x006a,0x0071,0x0071,0x0072,0x0072,0x0079,0x0079, // 01a0 0x0061,0x0061,0x0061,0x0062,0x0063,0x0063,0x0064,0x0064,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x006a, // 01b0 0x0067,0x0067,0x0067,0x0067,0x0067,0x0068,0x0068,0x0068,0x0069,0x0069,0x0069,0x006c,0x006c,0x006c,0x006c,0x006d, // 01c0 0x006d,0x006d,0x006e,0x006e,0x006e,0x006f,0x031f,0x006f,0x0070,0x0072,0x0072,0x0072,0x0072,0x0072,0x0072,0x0072, // 01d0 0x0072,0x0073,0x0073,0x006a,0x0073,0x0073,0x0074,0x0074,0x0075,0x0075,0x0076,0x0076,0x0077,0x0079,0x0079,0x007a, // 01e0 0x007a,0x0063,0x0062,0x0065,0x0067,0x0068,0x006a,0x006b,0x006c,0x0071,0x0320,0x0064,0x0321,0x0322,0x0074,0x0074, // 01f0 0x0323,0x0324,0x0325,0x0068,0x0068,0x006a,0x0072,0x0072,0x0072,0x0077,0x0079,0x0027,0x0022,0x0027,0x0027,0x0027, // 0200 0x003c,0x003e,0x005e,0x005e,0x0027,0x0060,0x005f,0x003a,0x007e,0x0067,0x006c,0x0073,0x0078,0x036f,0x036f,0x036f, // 0210 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0220 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0230 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0240 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0250 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0260 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0270 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0371,0x0373,0x0377, // 0280 0x00b4,0x00a8,0x03b1,0x03b5,0x03b7,0x03b9,0x03bf,0x03c5,0x03c9,0x03b9,0x03b1,0x03b2,0x03b3,0x03b4,0x03b5,0x03b6, // 0290 0x03b7,0x03b8,0x03b9,0x03ba,0x03bb,0x03bc,0x03bd,0x03be,0x03bf,0x03c0,0x03c1,0x03c3,0x03c4,0x03c5,0x03c6,0x03c7, // 02a0 0x03c8,0x03c9,0x03b9,0x03c5,0x03b1,0x03b5,0x03b7,0x03b9,0x03c5,0x03c3,0x03b9,0x03c5,0x03bf,0x03c5,0x03c9,0x03d7, // 02b0 0x03b2,0x03b8,0x03c5,0x03c5,0x03c5,0x03c6,0x03c0,0x03d9,0x03db,0x03dd,0x03df,0x03e1,0x03e3,0x03e5,0x03e7,0x03e9, // 02c0 0x03eb,0x03ed,0x03ef,0x03ba,0x03c1,0x03c3,0x03b8,0x03b5,0x03f8,0x03c3,0x03fb,0x037b,0x037c,0x037d,0x0435,0x0435, // 02d0 0x0452,0x0433,0x0454,0x0455,0x0456,0x0456,0x0458,0x0459,0x045a,0x045b,0x043a,0x0438,0x0443,0x045f,0x0430,0x0431, // 02e0 0x0432,0x0433,0x0434,0x0435,0x0436,0x0437,0x0438,0x0438,0x043a,0x043b,0x043c,0x043d,0x043e,0x043f,0x0440,0x0441, // 02f0 0x0442,0x0443,0x0444,0x0445,0x0446,0x0447,0x0448,0x0449,0x044a,0x044b,0x044c,0x044d,0x044e,0x044f,0x0438,0x0435, // 0300 0x0435,0x0433,0x0456,0x043a,0x0438,0x0443,0x0461,0x0463,0x0465,0x0467,0x0469,0x046b,0x046d,0x046f,0x0471,0x0473, // 0310 0x0475,0x0475,0x0475,0x0479,0x047b,0x047d,0x047f,0x0481,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x048b, // 0320 0x048d,0x048f,0x0433,0x0433,0x0493,0x0495,0x0497,0x0499,0x049b,0x049d,0x049f,0x04a1,0x04a3,0x04a5,0x04a7,0x04a9, // 0330 0x04ab,0x04ad,0x04af,0x04b1,0x04b3,0x04b5,0x04b7,0x04b9,0x04bb,0x04bd,0x04bf,0x04cf,0x0436,0x0436,0x04c4,0x04c6, // 0340 0x04c8,0x04ca,0x04cc,0x04ce,0x0430,0x0430,0x0430,0x0430,0x04d5,0x0435,0x0435,0x04d9,0x04d9,0x04d9,0x0436,0x0436, // 0350 0x0437,0x0437,0x04e1,0x0438,0x0438,0x0438,0x0438,0x043e,0x043e,0x04e9,0x04e9,0x04e9,0x044d,0x044d,0x0443,0x0443, // 0360 0x0443,0x0443,0x0443,0x0443,0x0447,0x0447,0x04f7,0x044b,0x044b,0x04fb,0x04fd,0x04ff,0x0501,0x0503,0x0505,0x0507, // 0370 0x0509,0x050b,0x050d,0x050f,0x0511,0x0513,0x0515,0x0517,0x0519,0x051b,0x051d,0x051f,0x0521,0x0523,0x0525,0x0527, // 0380 0x0561,0x0562,0x0563,0x0564,0x0565,0x0566,0x0567,0x0568,0x0569,0x056a,0x056b,0x056c,0x056d,0x056e,0x056f,0x0570, // 0390 0x0571,0x0572,0x0573,0x0574,0x0575,0x0576,0x0577,0x0578,0x0579,0x057a,0x057b,0x057c,0x057d,0x057e,0x057f,0x0580, // 03a0 0x0581,0x0582,0x0583,0x0584,0x0585,0x0586,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03b0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03c0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x05db,0x05de,0x05e0,0x05e4,0x05e6,0x036f,0x036f, // 03e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0627, // 03f0 0x0627,0x0648,0x0627,0x064a,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0400 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0621,0x06d5,0x06c1,0x06d2,0x036f,0x036f, // 0410 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0420 0x036f,0x036f,0x0621,0x0645,0x036f,0x036f,0x0713,0x071b,0x0723,0x0726,0x0712,0x0713,0x0715,0x036f,0x036f,0x036f, // 0430 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0440 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0450 0x036f,0x036f,0x036f,0x07d6,0x07d7,0x07d9,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0460 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0470 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0627,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0480 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0490 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0928,0x0930,0x0933,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 04a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 04b0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0915,0x0916,0x0917,0x091c,0x0921,0x0922,0x092b,0x092f,0x036f,0x036f, // 04c0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 04d0 0x09a4,0x036f,0x09a1,0x09a2,0x09af,0x036f,0x036f,0x036f,0x036f,0x036f,0x0a32,0x0a38,0x036f,0x036f,0x036f,0x036f, // 04e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0a16,0x0a17,0x0a1c,0x0a2b,0x036f,0x036f,0x036f,0x036f, // 04f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0500 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0510 0x036f,0x036f,0x036f,0x036f,0x036f,0x0b21,0x0b22,0x036f,0x036f,0x036f,0x0b92,0x036f,0x036f,0x036f,0x036f,0x036f, // 0520 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0530 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0540 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0550 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0560 0x036f,0x036f,0x0d30,0x0d2e,0x0d2f,0x0d34,0x036f,0x036f,0x036f,0x0d23,0x0d28,0x0d30,0x0d32,0x0d33,0x0d15,0x036f, // 0570 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0580 0x036f,0x036f,0x036f,0x036f,0x0e32,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0590 0x036f,0x036f,0x036f,0x036f,0x036f,0x0eb2,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05a0 0x036f,0x036f,0x036f,0x036f,0x0f68,0x036f,0x036f,0x0f21,0x0f22,0x0f23,0x0f24,0x0f25,0x0f26,0x0f27,0x0f28,0x0f29, // 05b0 0x0f20,0x036f,0x036f,0x036f,0x036f,0x036f,0x0f42,0x0f4c,0x0f51,0x0f56,0x0f5b,0x0f40,0x0f62,0x036f,0x036f,0x036f, // 05c0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0600 0x036f,0x036f,0x036f,0x1025,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0610 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0620 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0630 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x2d00,0x2d01, // 0640 0x2d02,0x2d03,0x2d04,0x2d05,0x2d06,0x2d07,0x2d08,0x2d09,0x2d0a,0x2d0b,0x2d0c,0x2d0d,0x2d0e,0x2d0f,0x2d10,0x2d11, // 0650 0x2d12,0x2d13,0x2d14,0x2d15,0x2d16,0x2d17,0x2d18,0x2d19,0x2d1a,0x2d1b,0x2d1c,0x2d1d,0x2d1e,0x2d1f,0x2d20,0x2d21, // 0660 0x2d22,0x2d23,0x2d24,0x2d25,0x2d27,0x2d2d,0x036f,0x036f,0x036f,0x0020,0x16a0,0x16a2,0x16a2,0x16a6,0x16a8,0x16a8, // 0670 0x16a8,0x16a8,0x16b2,0x16b2,0x16b2,0x16b2,0x16ba,0x16ba,0x16ba,0x16be,0x16be,0x16c1,0x16c3,0x16c5,0x16ca,0x16ca, // 0680 0x16ca,0x16ca,0x16cf,0x16cf,0x16d2,0x16d2,0x16c8,0x16d7,0x16d7,0x16da,0x16dc,0x16e6,0x16e6,0x16b9,0x16ca,0x036f, // 0690 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 06a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 06b0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1908, // 06c0 0x190b,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 06d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 06e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x199c,0x036f,0x036f,0x036f, // 06f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0700 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0710 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1b05, // 0720 0x1b07,0x1b09,0x1b0b,0x1b0d,0x1b11,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0730 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0740 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1b83, // 0750 0x1b8a,0x1b99,0x1bc0,0x1bc2,0x1bc2,0x1bc5,0x1bc7,0x1bc9,0x1bcb,0x1bcb,0x1bce,0x1bd2,0x1bd4,0x1bd6,0x1bd8,0x1bd8, // 0760 0x1bdb,0x1bde,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0770 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0780 0x036f,0x036f,0x036f,0x036f,0x0432,0x0434,0x043e,0x0441,0x0442,0x0442,0x044a,0x0463,0xa64b,0x036f,0x036f,0x036f, // 0790 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 07a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x1ce9,0x1ce9,0x1ce9,0x036f,0x1ce9,0x1ce9,0x1ce9,0x1ce9,0x036f,0x036f,0x036f, // 07b0 0x0061,0x0326,0x0327,0x0062,0x0063,0x0064,0x0064,0x0065,0x0069,0x006a,0x006b,0x006c,0x006d,0x006f,0x006f,0x006f, // 07c0 0x006f,0x006f,0x006f,0x0070,0x0074,0x0075,0x006d,0x0076,0x0077,0x007a,0x0062,0x0069,0x0328,0x0062,0x0064,0x0066, // 07d0 0x006d,0x006e,0x0070,0x0072,0x0072,0x0073,0x0074,0x007a,0x0067,0x0067,0x0329,0x0069,0x0069,0x0070,0x0075,0x0075, // 07e0 0x0062,0x0064,0x0066,0x0067,0x006b,0x006c,0x006d,0x006e,0x0070,0x0072,0x0073,0x0073,0x0076,0x0078,0x007a,0x0061, // 07f0 0x0064,0x0065,0x0065,0x0065,0x0069,0x0063,0x0073,0x0075,0x0065,0x0063,0x0064,0x0065,0x0066,0x006a,0x0067,0x0068, // 0800 0x0069,0x0069,0x006a,0x006c,0x006d,0x006e,0x0073,0x0074,0x0076,0x007a,0x007a,0x0065,0x0074,0x036f,0x036f,0x036f, // 0810 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0820 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0830 0x036f,0x036f,0x036f,0x036f,0x0061,0x0062,0xa7b5,0x0065,0x0066,0xab38,0x006f,0x0070,0x0073,0x0075,0x0077,0x0061, // 0840 0x006f,0x0075,0x036f,0x036f,0x036f,0x036f,0x0061,0x0061,0x0062,0x0062,0x0062,0x0062,0x0062,0x0062,0x0063,0x0063, // 0850 0x0064,0x0064,0x0064,0x0064,0x0064,0x0064,0x0064,0x0064,0x0064,0x0064,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065, // 0860 0x0065,0x0065,0x0065,0x0065,0x0066,0x0066,0x0067,0x0067,0x0068,0x0068,0x0068,0x0068,0x0068,0x0068,0x0068,0x0068, // 0870 0x0068,0x0068,0x0069,0x0069,0x0069,0x0069,0x006b,0x006b,0x006b,0x006b,0x006b,0x006b,0x006c,0x006c,0x006c,0x006c, // 0880 0x006c,0x006c,0x006c,0x006c,0x006d,0x006d,0x006d,0x006d,0x006d,0x006d,0x006e,0x006e,0x006e,0x006e,0x006e,0x006e, // 0890 0x006e,0x006e,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x0070,0x0070,0x0070,0x0070,0x0072,0x0072, // 08a0 0x0072,0x0072,0x0072,0x0072,0x0072,0x0072,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073,0x0073, // 08b0 0x0074,0x0074,0x0074,0x0074,0x0074,0x0074,0x0074,0x0074,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075, // 08c0 0x0075,0x0075,0x0076,0x0076,0x0076,0x0076,0x0077,0x0077,0x0077,0x0077,0x0077,0x0077,0x0077,0x0077,0x0077,0x0077, // 08d0 0x0078,0x0078,0x0078,0x0078,0x0079,0x0079,0x007a,0x007a,0x007a,0x007a,0x007a,0x007a,0x0068,0x0074,0x0077,0x0079, // 08e0 0x0061,0x0073,0x0073,0x0073,0x032a,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061, // 08f0 0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0061,0x0065,0x0065,0x0065, // 0900 0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0069,0x0069,0x0069, // 0910 0x0069,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f, // 0920 0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x006f,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075, // 0930 0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0075,0x0079,0x0079,0x0079,0x0079,0x0079,0x0079,0x0079,0x0079,0x032b, // 0940 0x032c,0x0076,0x0076,0x0079,0x0079,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1, // 0950 0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5,0x03b5, // 0960 0x03b5,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7, // 0970 0x03b7,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9, // 0980 0x03b9,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03c5,0x03c5,0x03c5, // 0990 0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9, // 09a0 0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03b1,0x03b1,0x03b5,0x03b5,0x03b7,0x03b7,0x03b9, // 09b0 0x03b9,0x03bf,0x03bf,0x03c5,0x03c5,0x03c9,0x03c9,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1, // 09c0 0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7, // 09d0 0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9, // 09e0 0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1, // 09f0 0x03b1,0x03b1,0x03b1,0x1fbf,0x03b9,0x00a8,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b5,0x03b5,0x03b7,0x03b7,0x03b7, // 0a00 0x1fbf,0x1fbf,0x1fbf,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x1ffe,0x1ffe,0x1ffe, // 0a10 0x03c5,0x03c5,0x03c5,0x03c5,0x03c1,0x03c1,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c1,0x00a8,0x00a8,0x0060, // 0a20 0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03bf,0x03bf,0x03c9,0x03c9,0x03c9,0x00b4,0x0020,0x0020,0x0020,0x0020,0x0020, // 0a30 0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x036f,0x036f,0x036f,0x036f,0x036f,0x002d,0x002d,0x002d,0x002d,0x002d, // 0a40 0x002d,0x0027,0x0027,0x002c,0x0027,0x0022,0x0022,0x0022,0x0022,0x002e,0x002e,0x036f,0x036f,0x036f,0x036f,0x036f, // 0a50 0x0020,0x0027,0x0022,0x0060,0x003c,0x003e,0x002f,0x005b,0x005d,0x0020,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0a60 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0030,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039, // 0a70 0x002b,0x2212,0x003d,0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x002b,0x2212,0x003d, // 0a80 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0a90 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0aa0 0x036f,0x0063,0x0063,0x0065,0x0066,0x0067,0x0068,0x0068,0x0068,0x0068,0x0068,0x0069,0x0069,0x006c,0x006c,0x006e, // 0ab0 0x0070,0x0070,0x0071,0x0072,0x0072,0x0072,0x007a,0x007a,0x03c9,0x007a,0x006b,0x0061,0x0062,0x0063,0x0065,0x0065, // 0ac0 0x0065,0x0066,0x0066,0x006d,0x006f,0x05d0,0x05d1,0x05d2,0x05d3,0x0069,0x0071,0x03c0,0x03b3,0x03b3,0x03c0,0x0065, // 0ad0 0x0067,0x006c,0x006c,0x0079,0x0064,0x0064,0x0065,0x0069,0x006a,0x0066,0x0069,0x2171,0x2172,0x2173,0x0076,0x2175, // 0ae0 0x2176,0x2177,0x2178,0x0078,0x217a,0x217b,0x006c,0x0063,0x0064,0x006d,0x0069,0x0076,0x0078,0x006c,0x0063,0x0064, // 0af0 0x006d,0x2184,0x2190,0x2192,0x2194,0x21d0,0x21d4,0x21d2,0x2203,0x2208,0x220b,0x2223,0x2225,0x223c,0x2243,0x2245, // 0b00 0x2248,0x003d,0x2261,0x224d,0x003c,0x003e,0x2264,0x2265,0x2272,0x2273,0x2276,0x2277,0x227a,0x227b,0x2282,0x2283, // 0b10 0x2286,0x2287,0x22a2,0x22a8,0x22a9,0x22ab,0x227c,0x227d,0x2291,0x2292,0x22b2,0x22b3,0x22b4,0x22b5,0x0031,0x0032, // 0b20 0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039, // 0b30 0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067, // 0b40 0x0068,0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077, // 0b50 0x0078,0x0079,0x007a,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,0x0068,0x0069,0x006a,0x006b,0x006c,0x006d, // 0b60 0x006e,0x006f,0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,0x0078,0x0079,0x007a,0x0061,0x0062,0x0063, // 0b70 0x0064,0x0065,0x0066,0x0067,0x0068,0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070,0x0071,0x0072,0x0073, // 0b80 0x0074,0x0075,0x0076,0x0077,0x0078,0x0079,0x007a,0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038, // 0b90 0x0039,0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0031,0x0032,0x0033,0x0034,0x0035, // 0ba0 0x0036,0x0037,0x0038,0x0039,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x003d,0x2add,0x2c30, // 0bb0 0x2c31,0x2c32,0x2c33,0x2c34,0x2c35,0x2c36,0x2c37,0x2c38,0x2c39,0x2c3a,0x2c3b,0x2c3c,0x2c3d,0x2c3e,0x2c3f,0x2c40, // 0bc0 0x2c41,0x2c42,0x2c43,0x2c44,0x2c45,0x2c46,0x2c47,0x2c48,0x2c49,0x2c4a,0x2c4b,0x2c4c,0x2c4d,0x2c4e,0x2c4f,0x2c50, // 0bd0 0x2c51,0x2c52,0x2c53,0x2c54,0x2c55,0x2c56,0x2c57,0x2c58,0x2c59,0x2c5a,0x2c5b,0x2c5c,0x2c5d,0x2c5e,0x006c,0x006c, // 0be0 0x006c,0x0070,0x0072,0x0061,0x0074,0x0068,0x0068,0x006b,0x006b,0x007a,0x007a,0x0061,0x006d,0x0061,0x0252,0x0076, // 0bf0 0x0077,0x0077,0x0076,0x2c76,0x0070,0x0065,0x006f,0x0073,0x007a,0x2c81,0x2c83,0x2c85,0x2c87,0x2c89,0x2c8b,0x2c8d, // 0c00 0x2c8f,0x2c91,0x2c93,0x2c95,0x2c97,0x2c99,0x2c9b,0x2c9d,0x2c9f,0x2ca1,0x2ca3,0x2ca5,0x2ca7,0x2ca9,0x2cab,0x2cad, // 0c10 0x2caf,0x2cb1,0x2cb3,0x2cb5,0x2cb7,0x2cb9,0x2cbb,0x2cbd,0x2cbf,0x2cc1,0x2cc3,0x2cc5,0x2cc7,0x2cc9,0x2ccb,0x2ccd, // 0c20 0x2ccf,0x2cd1,0x2cd3,0x2cd5,0x2cd7,0x2cd9,0x2cdb,0x2cdd,0x2cdf,0x2ce1,0x2ce3,0x2cec,0x2cee,0x036f,0x036f,0x036f, // 0c30 0x2cf3,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0c40 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0c50 0x036f,0x036f,0x4e36,0x5382,0x4e5b,0x4e5a,0x4e59,0x4ebb,0x5182,0x51e0,0x5200,0x5202,0x535c,0x5369,0x5c0f,0x5c0f, // 0c60 0x5c22,0x5c23,0x5c22,0x5c23,0x5df3,0x5e7a,0x5f51,0x5f50,0x5fc4,0x5fc3,0x624c,0x6535,0x65e1,0x65e5,0x6708,0x6b7a, // 0c70 0x6bcd,0x6c11,0x6c35,0x6c3a,0x706c,0x722b,0x722b,0x4e2c,0x725b,0x72ad,0x738b,0x758b,0x76ee,0x793a,0x793b,0x7af9, // 0c80 0x7cf9,0x7e9f,0x7f53,0x7f52,0x7f53,0x7f53,0x7f52,0x7f8a,0x7f8a,0x7f8b,0x8002,0x8080,0x807f,0x8089,0x81fc,0x8279, // 0c90 0x8279,0x8279,0x864e,0x8864,0x8980,0x897f,0x89c1,0x89d2,0x89d2,0x8ba0,0x8d1d,0x8db3,0x8f66,0x8fb6,0x8fb6,0x8fb6, // 0ca0 0x9091,0x9485,0x9577,0x9578,0x957f,0x95e8,0x961c,0x961d,0x96e8,0x9752,0x97e6,0x9875,0x98ce,0x98de,0x98df,0x98e0, // 0cb0 0x98e0,0x9963,0x9996,0x9a6c,0x9aa8,0x9b3c,0x9c7c,0x9e1f,0x9e75,0x9ea6,0x9ec4,0x9efe,0x9f4a,0x9f50,0x9f52,0x9f7f, // 0cc0 0x9f8d,0x9f99,0x9f9c,0x9f9c,0x9f9f,0x4e00,0x4e28,0x4e36,0x4e3f,0x4e59,0x4e85,0x4e8c,0x4ea0,0x4eba,0x513f,0x5165, // 0cd0 0x516b,0x5182,0x5196,0x51ab,0x51e0,0x51f5,0x5200,0x529b,0x52f9,0x5315,0x531a,0x5338,0x5341,0x535c,0x5369,0x5382, // 0ce0 0x53b6,0x53c8,0x53e3,0x56d7,0x571f,0x58eb,0x5902,0x590a,0x5915,0x5927,0x5973,0x5b50,0x5b80,0x5bf8,0x5c0f,0x5c22, // 0cf0 0x5c38,0x5c6e,0x5c71,0x5ddb,0x5de5,0x5df1,0x5dfe,0x5e72,0x5e7a,0x5e7f,0x5ef4,0x5efe,0x5f0b,0x5f13,0x5f50,0x5f61, // 0d00 0x5f73,0x5fc3,0x6208,0x6236,0x624b,0x652f,0x6534,0x6587,0x6597,0x65a4,0x65b9,0x65e0,0x65e5,0x66f0,0x6708,0x6728, // 0d10 0x6b20,0x6b62,0x6b79,0x6bb3,0x6bcb,0x6bd4,0x6bdb,0x6c0f,0x6c14,0x6c34,0x706b,0x722a,0x7236,0x723b,0x723f,0x7247, // 0d20 0x7259,0x725b,0x72ac,0x7384,0x7389,0x74dc,0x74e6,0x7518,0x751f,0x7528,0x7530,0x758b,0x7592,0x7676,0x767d,0x76ae, // 0d30 0x76bf,0x76ee,0x77db,0x77e2,0x77f3,0x793a,0x79b8,0x79be,0x7a74,0x7acb,0x7af9,0x7c73,0x7cf8,0x7f36,0x7f51,0x7f8a, // 0d40 0x7fbd,0x8001,0x800c,0x8012,0x8033,0x807f,0x8089,0x81e3,0x81ea,0x81f3,0x81fc,0x820c,0x821b,0x821f,0x826e,0x8272, // 0d50 0x8278,0x864d,0x866b,0x8840,0x884c,0x8863,0x897e,0x898b,0x89d2,0x8a00,0x8c37,0x8c46,0x8c55,0x8c78,0x8c9d,0x8d64, // 0d60 0x8d70,0x8db3,0x8eab,0x8eca,0x8f9b,0x8fb0,0x8fb5,0x9091,0x9149,0x91c6,0x91cc,0x91d1,0x9577,0x9580,0x961c,0x96b6, // 0d70 0x96b9,0x96e8,0x9751,0x975e,0x9762,0x9769,0x97cb,0x97ed,0x97f3,0x9801,0x98a8,0x98db,0x98df,0x9996,0x9999,0x99ac, // 0d80 0x9aa8,0x9ad8,0x9adf,0x9b25,0x9b2f,0x9b32,0x9b3c,0x9b5a,0x9ce5,0x9e75,0x9e7f,0x9ea5,0x9ebb,0x9ec3,0x9ecd,0x9ed1, // 0d90 0x9ef9,0x9efd,0x9f0e,0x9f13,0x9f20,0x9f3b,0x9f4a,0x9f52,0x9f8d,0x9f9c,0x9fa0,0x0020,0x002c,0x002e,0x0030,0x003c, // 0da0 0x003e,0x005b,0x005d,0x005b,0x005d,0x005b,0x005d,0x0022,0x0022,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x3012, // 0db0 0x5341,0x5344,0x5345,0x304b,0x304d,0x304f,0x3051,0x3053,0x3055,0x3057,0x3059,0x305b,0x305d,0x305f,0x3061,0x3064, // 0dc0 0x3066,0x3068,0x306f,0x306f,0x3072,0x3072,0x3075,0x3075,0x3078,0x3078,0x307b,0x307b,0x3046,0x036f,0x036f,0x30ab, // 0dd0 0x30ad,0x30af,0x30b1,0x30b3,0x30b5,0x30b7,0x30b9,0x30bb,0x30bd,0x30bf,0x30c1,0x30c4,0x30c6,0x30c8,0x30cf,0x30cf, // 0de0 0x30d2,0x30d2,0x30d5,0x30d5,0x30d8,0x30d8,0x30db,0x30db,0x30a6,0x30ef,0x30f0,0x30f1,0x30f2,0x311c,0x1100,0x1101, // 0df0 0x11aa,0x1102,0x11ac,0x11ad,0x1103,0x1104,0x1105,0x11b0,0x11b1,0x11b2,0x11b3,0x11b4,0x11b5,0x111a,0x1106,0x1107, // 0e00 0x1108,0x1121,0x1109,0x110a,0x110b,0x110c,0x110d,0x110e,0x110f,0x1110,0x1111,0x1112,0x1161,0x1162,0x1163,0x1164, // 0e10 0x1165,0x1166,0x1167,0x1168,0x1169,0x116a,0x116b,0x116c,0x116d,0x116e,0x116f,0x1170,0x1171,0x1172,0x1173,0x1174, // 0e20 0x1175,0x1160,0x1114,0x1115,0x11c7,0x11c8,0x11cc,0x11ce,0x11d3,0x11d7,0x11d9,0x111c,0x11dd,0x11df,0x111d,0x111e, // 0e30 0x1120,0x1122,0x1123,0x1127,0x1129,0x112b,0x112c,0x112d,0x112e,0x112f,0x1132,0x1136,0x1140,0x1147,0x114c,0x11f1, // 0e40 0x11f2,0x1157,0x1158,0x1159,0x1184,0x1185,0x1188,0x1191,0x1192,0x1194,0x119e,0x11a1,0x4e00,0x4e8c,0x4e09,0x56db, // 0e50 0x4e0a,0x4e2d,0x4e0b,0x7532,0x4e59,0x4e19,0x4e01,0x5929,0x5730,0x4eba,0x3105,0x3117,0x3110,0x310d,0x31a4,0x311b, // 0e60 0x3128,0x311a,0x3127,0x3128,0x311e,0x3120,0x3127,0x3106,0x310a,0x310e,0x310f,0x1100,0x1102,0x1103,0x1105,0x1106, // 0e70 0x1107,0x1109,0x110b,0x110c,0x110e,0x110f,0x1110,0x1111,0x1112,0x4e00,0x4e8c,0x4e09,0x56db,0x4e94,0x516d,0x4e03, // 0e80 0x516b,0x4e5d,0x5341,0x6708,0x706b,0x6c34,0x6728,0x91d1,0x571f,0x65e5,0x682a,0x6709,0x793e,0x540d,0x7279,0x8ca1, // 0e90 0x795d,0x52b4,0x4ee3,0x547c,0x5b66,0x76e3,0x4f01,0x8cc7,0x5354,0x796d,0x4f11,0x81ea,0x81f3,0x554f,0x5e7c,0x6587, // 0ea0 0x7b8f,0x1100,0x1102,0x1103,0x1105,0x1106,0x1107,0x1109,0x110b,0x110c,0x110e,0x110f,0x1110,0x1111,0x1112,0x4e00, // 0eb0 0x4e8c,0x4e09,0x56db,0x4e94,0x516d,0x4e03,0x516b,0x4e5d,0x5341,0x6708,0x706b,0x6c34,0x6728,0x91d1,0x571f,0x65e5, // 0ec0 0x682a,0x6709,0x793e,0x540d,0x7279,0x8ca1,0x795d,0x52b4,0x79d8,0x7537,0x5973,0x9069,0x512a,0x5370,0x6ce8,0x9805, // 0ed0 0x4f11,0x5199,0x6b63,0x4e0a,0x4e2d,0x4e0b,0x5de6,0x53f3,0x533b,0x5b97,0x5b66,0x76e3,0x4f01,0x8cc7,0x5354,0x591c, // 0ee0 0x30a2,0x30a4,0x30a6,0x30a8,0x30aa,0x30ab,0x30ad,0x30af,0x30b1,0x30b3,0x30b5,0x30b7,0x30b9,0x30bb,0x30bd,0x30bf, // 0ef0 0x30c1,0x30c4,0x30c6,0x30c8,0x30ca,0x30cb,0x30cc,0x30cd,0x30ce,0x30cf,0x30d2,0x30d5,0x30d8,0x30db,0x30de,0x30df, // 0f00 0x30e0,0x30e1,0x30e2,0x30e4,0x30e6,0x30e8,0x30e9,0x30ea,0x30eb,0x30ec,0x30ed,0x30ef,0x30f0,0x30f1,0x30f2,0xa558, // 0f10 0xa56a,0xa587,0xa547,0xa558,0xa55a,0xa5d1,0xa56e,0xa5d1,0xa641,0xa643,0xa645,0xa647,0xa649,0xa64b,0xa64d,0xa64f, // 0f20 0xa651,0xa653,0xa655,0xa657,0xa659,0xa65b,0xa65d,0xa65f,0xa661,0xa663,0xa665,0xa667,0x043e,0x043e,0x043e,0x043e, // 0f30 0x043e,0x043e,0x043e,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0f40 0x036f,0xa681,0xa683,0xa685,0xa687,0xa689,0xa68b,0xa68d,0xa68f,0xa691,0xa693,0xa695,0xa697,0x043e,0x043e,0x043e, // 0f50 0x043e,0x044a,0x044c,0x0444,0x036f,0x036f,0x036f,0xa723,0xa725,0xa727,0x032d,0x032e,0xa72b,0xa72d,0xa72f,0x0066, // 0f60 0x0073,0x032f,0x0330,0x0331,0x0332,0x0333,0x0334,0x0335,0x0336,0x0337,0x0338,0x0339,0x033a,0x0063,0x0063,0x006b, // 0f70 0x006b,0x006b,0x006b,0x006b,0x006b,0x006c,0x006c,0x006c,0x006c,0x006f,0x006f,0x006f,0x006f,0x033b,0x033c,0x0070, // 0f80 0x0070,0x0070,0x0070,0x0070,0x0070,0x0071,0x0071,0x0071,0x0071,0xa75b,0xa75d,0x0076,0x0076,0x033d,0x033e,0xa763, // 0f90 0x033f,0x0340,0x0341,0x0342,0xa769,0xa76b,0xa76d,0xa76f,0x0064,0x006c,0x006d,0x006e,0x0072,0x0072,0x0074,0x0064, // 0fa0 0x0064,0x0066,0x0066,0x0067,0xa77f,0xa781,0x0072,0x0072,0x0073,0x0073,0x0074,0x0074,0xa78c,0x0265,0x006e,0x006e, // 0fb0 0x0063,0x0063,0x0061,0x0061,0x006f,0x006f,0x0075,0x0075,0x0067,0x0067,0x006b,0x006b,0x006e,0x006e,0x0072,0x0072, // 0fc0 0x0073,0x0073,0x0068,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0fd0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0fe0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0ff0 0xa8f2,0xa8f2,0xa8f2,0xa8f2,0xa8f2,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 1000 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0xa9ab,0x036f, // 1010 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 1020 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 1030 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0xa727, // 1040 0xab37,0x006c,0xab52,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 1050 0x036f,0x036f,0x036f,0x036f,0x036f,0x8c48,0x66f4,0x8eca,0x8cc8,0x6ed1,0x4e32,0x53e5,0x9f9c,0x9f9c,0x5951,0x91d1, // 1060 0x5587,0x5948,0x61f6,0x7669,0x7f85,0x863f,0x87ba,0x88f8,0x908f,0x6a02,0x6d1b,0x70d9,0x73de,0x843d,0x916a,0x99f1, // 1070 0x4e82,0x5375,0x6b04,0x721b,0x862d,0x9e1e,0x5d50,0x6feb,0x85cd,0x8964,0x62c9,0x81d8,0x881f,0x5eca,0x6717,0x6d6a, // 1080 0x72fc,0x90ce,0x4f86,0x51b7,0x52de,0x64c4,0x6ad3,0x7210,0x76e7,0x8001,0x8606,0x865c,0x8def,0x9732,0x9b6f,0x9dfa, // 1090 0x788c,0x797f,0x7da0,0x83c9,0x9304,0x9e7f,0x8ad6,0x58df,0x5f04,0x7c60,0x807e,0x7262,0x78ca,0x8cc2,0x96f7,0x58d8, // 10a0 0x5c62,0x6a13,0x6dda,0x6f0f,0x7d2f,0x7e37,0x964b,0x52d2,0x808b,0x51dc,0x51cc,0x7a1c,0x7dbe,0x83f1,0x9675,0x8b80, // 10b0 0x62cf,0x6a02,0x8afe,0x4e39,0x5be7,0x6012,0x7387,0x7570,0x5317,0x78fb,0x4fbf,0x5fa9,0x4e0d,0x6ccc,0x6578,0x7d22, // 10c0 0x53c3,0x585e,0x7701,0x8449,0x8aaa,0x6bba,0x8fb0,0x6c88,0x62fe,0x82e5,0x63a0,0x7565,0x4eae,0x5169,0x51c9,0x6881, // 10d0 0x7ce7,0x826f,0x8ad2,0x91cf,0x52f5,0x5442,0x5973,0x5eec,0x65c5,0x6ffe,0x792a,0x95ad,0x9a6a,0x9e97,0x9ece,0x529b, // 10e0 0x66c6,0x6b77,0x8f62,0x5e74,0x6190,0x6200,0x649a,0x6f23,0x7149,0x7489,0x79ca,0x7df4,0x806f,0x8f26,0x84ee,0x9023, // 10f0 0x934a,0x5217,0x52a3,0x54bd,0x70c8,0x88c2,0x8aaa,0x5ec9,0x5ff5,0x637b,0x6bae,0x7c3e,0x7375,0x4ee4,0x56f9,0x5be7, // 1100 0x5dba,0x601c,0x73b2,0x7469,0x7f9a,0x8046,0x9234,0x96f6,0x9748,0x9818,0x4f8b,0x79ae,0x91b4,0x96b8,0x60e1,0x4e86, // 1110 0x50da,0x5bee,0x5c3f,0x6599,0x6a02,0x71ce,0x7642,0x84fc,0x907c,0x9f8d,0x6688,0x962e,0x5289,0x677b,0x67f3,0x6d41, // 1120 0x6e9c,0x7409,0x7559,0x786b,0x7d10,0x985e,0x516d,0x622e,0x9678,0x502b,0x5d19,0x6dea,0x8f2a,0x5f8b,0x6144,0x6817, // 1130 0x7387,0x9686,0x5229,0x540f,0x5c65,0x6613,0x674e,0x68a8,0x6ce5,0x7406,0x75e2,0x7f79,0x88cf,0x88e1,0x91cc,0x96e2, // 1140 0x533f,0x6eba,0x541d,0x71d0,0x7498,0x85fa,0x96a3,0x9c57,0x9e9f,0x6797,0x6dcb,0x81e8,0x7acb,0x7b20,0x7c92,0x72c0, // 1150 0x7099,0x8b58,0x4ec0,0x8336,0x523a,0x5207,0x5ea6,0x62d3,0x7cd6,0x5b85,0x6d1e,0x66b4,0x8f3b,0x884c,0x964d,0x898b, // 1160 0x5ed3,0x5140,0x55c0,0x585a,0x6674,0x51de,0x732a,0x76ca,0x793c,0x795e,0x7965,0x798f,0x9756,0x7cbe,0x7fbd,0x8612, // 1170 0x8af8,0x9038,0x90fd,0x98ef,0x98fc,0x9928,0x9db4,0x90de,0x96b7,0x4fae,0x50e7,0x514d,0x52c9,0x52e4,0x5351,0x559d, // 1180 0x5606,0x5668,0x5840,0x58a8,0x5c64,0x5c6e,0x6094,0x6168,0x618e,0x61f2,0x654f,0x65e2,0x6691,0x6885,0x6d77,0x6e1a, // 1190 0x6f22,0x716e,0x722b,0x7422,0x7891,0x793e,0x7949,0x7948,0x7950,0x7956,0x795d,0x798d,0x798e,0x7a40,0x7a81,0x7bc0, // 11a0 0x7df4,0x7e09,0x7e41,0x7f72,0x8005,0x81ed,0x8279,0x8279,0x8457,0x8910,0x8996,0x8b01,0x8b39,0x8cd3,0x8d08,0x8fb6, // 11b0 0x9038,0x96e3,0x97ff,0x983b,0x6075,0x8218,0x4e26,0x51b5,0x5168,0x4f80,0x5145,0x5180,0x52c7,0x52fa,0x559d,0x5555, // 11c0 0x5599,0x55e2,0x585a,0x58b3,0x5944,0x5954,0x5a62,0x5b28,0x5ed2,0x5ed9,0x5f69,0x5fad,0x60d8,0x614e,0x6108,0x618e, // 11d0 0x6160,0x61f2,0x6234,0x63c4,0x641c,0x6452,0x6556,0x6674,0x6717,0x671b,0x6756,0x6b79,0x6bba,0x6d41,0x6edb,0x6ecb, // 11e0 0x6f22,0x701e,0x716e,0x77a7,0x7235,0x72af,0x732a,0x7471,0x7506,0x753b,0x761d,0x761f,0x76ca,0x76db,0x76f4,0x774a, // 11f0 0x7740,0x78cc,0x7ab1,0x7bc0,0x7c7b,0x7d5b,0x7df4,0x7f3e,0x8005,0x8352,0x83ef,0x8779,0x8941,0x8986,0x8996,0x8abf, // 1200 0x8af8,0x8acb,0x8b01,0x8afe,0x8aed,0x8b39,0x8b8a,0x8d08,0x8f38,0x9072,0x9199,0x9276,0x967c,0x96e3,0x9756,0x97db, // 1210 0x97ff,0x980b,0x983b,0x9b12,0x9f9c,0x3b9d,0x4018,0x4039,0x9f43,0x9f8e,0x0343,0x0344,0x0345,0x0346,0x0347,0x05d9, // 1220 0x036f,0x05e2,0x05d0,0x05d3,0x05d4,0x05db,0x05dc,0x05de,0x05e8,0x05ea,0x002b,0x05e9,0x05e9,0x05e9,0x05e9,0x05d0, // 1230 0x05d0,0x05d0,0x05d1,0x05d2,0x05d3,0x05d4,0x05d5,0x05d6,0x05d8,0x05d9,0x05db,0x05db,0x05dc,0x05de,0x05e0,0x05e1, // 1240 0x05e4,0x05e4,0x05e6,0x05e7,0x05e8,0x05e9,0x05ea,0x05d5,0x05d1,0x05db,0x05e4,0x0671,0x0671,0x067b,0x067b,0x067b, // 1250 0x067b,0x067e,0x067e,0x067e,0x067e,0x0680,0x0680,0x0680,0x0680,0x067a,0x067a,0x067a,0x067a,0x067f,0x067f,0x067f, // 1260 0x067f,0x0679,0x0679,0x0679,0x0679,0x06a4,0x06a4,0x06a4,0x06a4,0x06a6,0x06a6,0x06a6,0x06a6,0x0684,0x0684,0x0684, // 1270 0x0684,0x0683,0x0683,0x0683,0x0683,0x0686,0x0686,0x0686,0x0686,0x0687,0x0687,0x0687,0x0687,0x068d,0x068d,0x068c, // 1280 0x068c,0x068e,0x068e,0x0688,0x0688,0x0698,0x0698,0x0691,0x0691,0x06a9,0x06a9,0x06a9,0x06a9,0x06af,0x06af,0x06af, // 1290 0x06af,0x06b3,0x06b3,0x06b3,0x06b3,0x06b1,0x06b1,0x06b1,0x06b1,0x06ba,0x06ba,0x06bb,0x06bb,0x06bb,0x06bb,0x06d5, // 12a0 0x06d5,0x06c1,0x06c1,0x06c1,0x06c1,0x06be,0x06be,0x06be,0x06be,0x06d2,0x06d2,0x06d2,0x06d2,0x06ad,0x06ad,0x06ad, // 12b0 0x06ad,0x06c7,0x06c7,0x06c6,0x06c6,0x06c8,0x06c8,0x06cb,0x06cb,0x06c5,0x06c5,0x06c9,0x06c9,0x06d0,0x06d0,0x06d0, // 12c0 0x06d0,0x0649,0x0649,0x06cc,0x06cc,0x06cc,0x06cc,0x0630,0x0631,0x0649,0x0649,0x0647,0x0627,0x0627,0x036f,0x036f, // 12d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x002c,0x002c, // 12e0 0x002e,0x003a,0x003b,0x0021,0x003f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x002d,0x002d,0x0028,0x0029, // 12f0 0x007b,0x007d,0x005b,0x005d,0x003c,0x003e,0x005b,0x005d,0x002c,0x002c,0x002e,0x003b,0x003a,0x003f,0x0021,0x002d, // 1300 0x0028,0x0029,0x007b,0x007d,0x005b,0x005d,0x0023,0x0026,0x002a,0x002b,0x002d,0x003c,0x003e,0x003d,0x005c,0x0024, // 1310 0x0025,0x0040,0x0621,0x0627,0x0627,0x0627,0x0627,0x0648,0x0648,0x0627,0x0627,0x064a,0x064a,0x064a,0x064a,0x0627, // 1320 0x0627,0x0628,0x0628,0x0628,0x0628,0x0629,0x0629,0x062a,0x062a,0x062a,0x062a,0x062b,0x062b,0x062b,0x062b,0x062c, // 1330 0x062c,0x062c,0x062c,0x062d,0x062d,0x062d,0x062d,0x062e,0x062e,0x062e,0x062e,0x062f,0x062f,0x0630,0x0630,0x0631, // 1340 0x0631,0x0632,0x0632,0x0633,0x0633,0x0633,0x0633,0x0634,0x0634,0x0634,0x0634,0x0635,0x0635,0x0635,0x0635,0x0636, // 1350 0x0636,0x0636,0x0636,0x0637,0x0637,0x0637,0x0637,0x0638,0x0638,0x0638,0x0638,0x0639,0x0639,0x0639,0x0639,0x063a, // 1360 0x063a,0x063a,0x063a,0x0641,0x0641,0x0641,0x0641,0x0642,0x0642,0x0642,0x0642,0x0643,0x0643,0x0643,0x0643,0x0644, // 1370 0x0644,0x0644,0x0644,0x0645,0x0645,0x0645,0x0645,0x0646,0x0646,0x0646,0x0646,0x0647,0x0647,0x0647,0x0647,0x0648, // 1380 0x0648,0x0649,0x0649,0x064a,0x064a,0x064a,0x064a,0x036f,0x0021,0x0022,0x0023,0x0024,0x0025,0x0026,0x0027,0x0028, // 1390 0x0029,0x002a,0x002b,0x002c,0x002d,0x002e,0x002f,0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038, // 13a0 0x0039,0x003a,0x003b,0x003c,0x003d,0x003e,0x003f,0x0040,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,0x0068, // 13b0 0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,0x0078, // 13c0 0x0079,0x007a,0x005b,0x005c,0x005d,0x005e,0x005f,0x0060,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,0x0068, // 13d0 0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,0x0078, // 13e0 0x0079,0x007a,0x007b,0x007c,0x007d,0x007e,0x0028,0x0029,0x002e,0x002c,0x30f2,0x30a2,0x30a4,0x30a6,0x30a8,0x30aa, // 13f0 0x30e4,0x30e6,0x30e8,0x30c4,0x30a2,0x30a4,0x30a6,0x30a8,0x30aa,0x30ab,0x30ad,0x30af,0x30b1,0x30b3,0x30b5,0x30b7, // 1400 0x30b9,0x30bb,0x30bd,0x30bf,0x30c1,0x30c4,0x30c6,0x30c8,0x30ca,0x30cb,0x30cc,0x30cd,0x30ce,0x30cf,0x30d2,0x30d5, // 1410 0x30d8,0x30db,0x30de,0x30df,0x30e0,0x30e1,0x30e2,0x30e4,0x30e6,0x30e8,0x30e9,0x30ea,0x30eb,0x30ec,0x30ed,0x30ef, // 1420 0x30f3,0x1160,0x1100,0x1101,0x11aa,0x1102,0x11ac,0x11ad,0x1103,0x1104,0x1105,0x11b0,0x11b1,0x11b2,0x11b3,0x11b4, // 1430 0x11b5,0x111a,0x1106,0x1107,0x1108,0x1121,0x1109,0x110a,0x110b,0x110c,0x110d,0x110e,0x110f,0x1110,0x1111,0x1112, // 1440 0x1161,0x1162,0x1163,0x1164,0x1165,0x1166,0x1167,0x1168,0x1169,0x116a,0x116b,0x116c,0x116d,0x116e,0x116f,0x1170, // 1450 0x1171,0x1172,0x1173,0x1174,0x1175,0x00a2,0x00a3,0x00ac,0x00af,0x00a6,0x00a5,0x20a9,0x2502,0x2190,0x2191,0x2192, // 1460 0x2193,0x25a0,0x25cb,0x036f,0x036f,0x036f, // 1470 }; WORD utf8_nonascii_unicode_to_decomposition_nodiacritics_keys[UTF8_NONASCII_UNICODE_TO_DECOMPOSITION_NODIACRITICS_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x0080,0x0081,0x0082,0x0083,0x0084,0x0085,0x0086,0x0087,0x0088,0x0089,0x008a,0x008b,0x008c,0x008d,0x008e,0x008f, // 0000 0x0090,0x0091,0x0092,0x0093,0x0094,0x0095,0x0096,0x0097,0x0098,0x0099,0x009a,0x009b,0x009c,0x009d,0x009e,0x009f, // 0010 0x00a0,0x00aa,0x00ab,0x00ad,0x00b2,0x00b3,0x00b5,0x00b7,0x00b8,0x00b9,0x00ba,0x00bb,0x00c0,0x00c1,0x00c2,0x00c3, // 0020 0x00c4,0x00c5,0x00c6,0x00c7,0x00c8,0x00c9,0x00ca,0x00cb,0x00cc,0x00cd,0x00ce,0x00cf,0x00d0,0x00d1,0x00d2,0x00d3, // 0030 0x00d4,0x00d5,0x00d6,0x00d8,0x00d9,0x00da,0x00db,0x00dc,0x00dd,0x00de,0x00df,0x00e0,0x00e1,0x00e2,0x00e3,0x00e4, // 0040 0x00e5,0x00e6,0x00e7,0x00e8,0x00e9,0x00ea,0x00eb,0x00ec,0x00ed,0x00ee,0x00ef,0x00f0,0x00f1,0x00f2,0x00f3,0x00f4, // 0050 0x00f5,0x00f6,0x00f8,0x00f9,0x00fa,0x00fb,0x00fc,0x00fd,0x00fe,0x00ff,0x0100,0x0101,0x0102,0x0103,0x0104,0x0105, // 0060 0x0106,0x0107,0x0108,0x0109,0x010a,0x010b,0x010c,0x010d,0x010e,0x010f,0x0110,0x0111,0x0112,0x0113,0x0114,0x0115, // 0070 0x0116,0x0117,0x0118,0x0119,0x011a,0x011b,0x011c,0x011d,0x011e,0x011f,0x0120,0x0121,0x0122,0x0123,0x0124,0x0125, // 0080 0x0126,0x0127,0x0128,0x0129,0x012a,0x012b,0x012c,0x012d,0x012e,0x012f,0x0130,0x0131,0x0132,0x0133,0x0134,0x0135, // 0090 0x0136,0x0137,0x0138,0x0139,0x013a,0x013b,0x013c,0x013d,0x013e,0x013f,0x0140,0x0141,0x0142,0x0143,0x0144,0x0145, // 00a0 0x0146,0x0147,0x0148,0x0149,0x014a,0x014b,0x014c,0x014d,0x014e,0x014f,0x0150,0x0151,0x0152,0x0153,0x0154,0x0155, // 00b0 0x0156,0x0157,0x0158,0x0159,0x015a,0x015b,0x015c,0x015d,0x015e,0x015f,0x0160,0x0161,0x0162,0x0163,0x0164,0x0165, // 00c0 0x0166,0x0167,0x0168,0x0169,0x016a,0x016b,0x016c,0x016d,0x016e,0x016f,0x0170,0x0171,0x0172,0x0173,0x0174,0x0175, // 00d0 0x0176,0x0177,0x0178,0x0179,0x017a,0x017b,0x017c,0x017d,0x017e,0x017f,0x0180,0x0181,0x0182,0x0183,0x0184,0x0185, // 00e0 0x0186,0x0187,0x0188,0x0189,0x018a,0x018b,0x018c,0x018d,0x018e,0x018f,0x0190,0x0191,0x0192,0x0193,0x0194,0x0195, // 00f0 0x0196,0x0197,0x0198,0x0199,0x019a,0x019b,0x019c,0x019d,0x019e,0x019f,0x01a0,0x01a1,0x01a2,0x01a3,0x01a4,0x01a5, // 0100 0x01a7,0x01a8,0x01a9,0x01aa,0x01ab,0x01ac,0x01ad,0x01ae,0x01af,0x01b0,0x01b1,0x01b2,0x01b3,0x01b4,0x01b5,0x01b6, // 0110 0x01be,0x01bf,0x01c4,0x01c5,0x01c6,0x01c7,0x01c8,0x01c9,0x01ca,0x01cb,0x01cc,0x01cd,0x01ce,0x01cf,0x01d0,0x01d1, // 0120 0x01d2,0x01d3,0x01d4,0x01d5,0x01d6,0x01d7,0x01d8,0x01d9,0x01da,0x01db,0x01dc,0x01dd,0x01de,0x01df,0x01e0,0x01e1, // 0130 0x01e2,0x01e3,0x01e4,0x01e5,0x01e6,0x01e7,0x01e8,0x01e9,0x01ea,0x01eb,0x01ec,0x01ed,0x01ee,0x01ef,0x01f0,0x01f1, // 0140 0x01f2,0x01f3,0x01f4,0x01f5,0x01f7,0x01f8,0x01f9,0x01fa,0x01fb,0x01fc,0x01fd,0x01fe,0x01ff,0x0200,0x0201,0x0202, // 0150 0x0203,0x0204,0x0205,0x0206,0x0207,0x0208,0x0209,0x020a,0x020b,0x020c,0x020d,0x020e,0x020f,0x0210,0x0211,0x0212, // 0160 0x0213,0x0214,0x0215,0x0216,0x0217,0x0218,0x0219,0x021a,0x021b,0x021c,0x021d,0x021e,0x021f,0x0220,0x0221,0x0224, // 0170 0x0225,0x0226,0x0227,0x0228,0x0229,0x022a,0x022b,0x022c,0x022d,0x022e,0x022f,0x0230,0x0231,0x0232,0x0233,0x0234, // 0180 0x0235,0x0236,0x0237,0x0238,0x0239,0x023a,0x023b,0x023c,0x023d,0x023e,0x023f,0x0240,0x0243,0x0244,0x0245,0x0246, // 0190 0x0247,0x0248,0x0249,0x024a,0x024b,0x024c,0x024d,0x024e,0x024f,0x0250,0x0251,0x0252,0x0253,0x0254,0x0255,0x0256, // 01a0 0x0257,0x0258,0x0259,0x025a,0x025b,0x025c,0x025d,0x025e,0x025f,0x0260,0x0261,0x0262,0x0263,0x0264,0x0265,0x0266, // 01b0 0x0267,0x0268,0x0269,0x026a,0x026b,0x026c,0x026d,0x026e,0x026f,0x0270,0x0271,0x0272,0x0273,0x0274,0x0275,0x0276, // 01c0 0x0277,0x0278,0x0279,0x027a,0x027b,0x027c,0x027d,0x027e,0x027f,0x0280,0x0282,0x0283,0x0284,0x0285,0x0286,0x0287, // 01d0 0x0288,0x0289,0x028a,0x028b,0x028c,0x028d,0x028e,0x028f,0x0290,0x0291,0x0297,0x0299,0x029a,0x029b,0x029c,0x029d, // 01e0 0x029e,0x029f,0x02a0,0x02a3,0x02a4,0x02a5,0x02a6,0x02a7,0x02a8,0x02a9,0x02aa,0x02ab,0x02b0,0x02b1,0x02b2,0x02b3, // 01f0 0x02b4,0x02b5,0x02b7,0x02b8,0x02b9,0x02ba,0x02bb,0x02bc,0x02bd,0x02c2,0x02c3,0x02c4,0x02c6,0x02c8,0x02cb,0x02cd, // 0200 0x02d0,0x02dc,0x02e0,0x02e1,0x02e2,0x02e3,0x0300,0x0301,0x0302,0x0303,0x0304,0x0305,0x0306,0x0307,0x0308,0x0309, // 0210 0x030a,0x030b,0x030c,0x030d,0x030e,0x030f,0x0310,0x0311,0x0312,0x0313,0x0314,0x0315,0x0316,0x0317,0x0318,0x0319, // 0220 0x031a,0x031b,0x031c,0x031d,0x031e,0x031f,0x0320,0x0321,0x0322,0x0323,0x0324,0x0325,0x0326,0x0327,0x0328,0x0329, // 0230 0x032a,0x032b,0x032c,0x032d,0x032e,0x032f,0x0330,0x0331,0x0332,0x0333,0x0334,0x0335,0x0336,0x0337,0x0338,0x0339, // 0240 0x033a,0x033b,0x033c,0x033d,0x033e,0x033f,0x0340,0x0341,0x0342,0x0343,0x0344,0x0345,0x0346,0x0347,0x0348,0x0349, // 0250 0x034a,0x034b,0x034c,0x034d,0x034e,0x034f,0x0350,0x0351,0x0352,0x0353,0x0354,0x0355,0x0356,0x0357,0x0358,0x0359, // 0260 0x035a,0x035b,0x035c,0x035d,0x035e,0x035f,0x0360,0x0361,0x0362,0x0363,0x0364,0x0365,0x0366,0x0367,0x0368,0x0369, // 0270 0x036a,0x036b,0x036c,0x036d,0x036e,0x036f,0x0384,0x0385,0x0386,0x0388,0x0389,0x038a,0x038c,0x038e,0x038f,0x0390, // 0280 0x03aa,0x03ab,0x03ac,0x03ad,0x03ae,0x03af,0x03b0,0x03c2,0x03ca,0x03cb,0x03cc,0x03cd,0x03ce,0x03d0,0x03d1,0x03d2, // 0290 0x03d3,0x03d4,0x03d5,0x03d6,0x03f0,0x03f1,0x03f2,0x03f4,0x03f5,0x03f9,0x0400,0x0401,0x0403,0x0407,0x040c,0x040d, // 02a0 0x040e,0x0419,0x0439,0x0450,0x0451,0x0453,0x0457,0x045c,0x045d,0x045e,0x0476,0x0477,0x0483,0x0484,0x0485,0x0486, // 02b0 0x0487,0x0488,0x0489,0x0490,0x0491,0x04c1,0x04c2,0x04d0,0x04d1,0x04d2,0x04d3,0x04d6,0x04d7,0x04da,0x04db,0x04dc, // 02c0 0x04dd,0x04de,0x04df,0x04e2,0x04e3,0x04e4,0x04e5,0x04e6,0x04e7,0x04ea,0x04eb,0x04ec,0x04ed,0x04ee,0x04ef,0x04f0, // 02d0 0x04f1,0x04f2,0x04f3,0x04f4,0x04f5,0x04f8,0x04f9,0x0591,0x0592,0x0593,0x0594,0x0595,0x0596,0x0597,0x0598,0x0599, // 02e0 0x059a,0x059b,0x059c,0x059d,0x059e,0x059f,0x05a0,0x05a1,0x05a2,0x05a3,0x05a4,0x05a5,0x05a6,0x05a7,0x05a8,0x05a9, // 02f0 0x05aa,0x05ab,0x05ac,0x05ad,0x05ae,0x05af,0x05b0,0x05b1,0x05b2,0x05b3,0x05b4,0x05b5,0x05b6,0x05b7,0x05b8,0x05b9, // 0300 0x05ba,0x05bb,0x05bc,0x05bd,0x05bf,0x05c1,0x05c2,0x05c4,0x05c5,0x05c7,0x05da,0x05dd,0x05df,0x05e3,0x05e5,0x0600, // 0310 0x0601,0x0602,0x0603,0x0604,0x0610,0x0611,0x0612,0x0613,0x0614,0x0615,0x0616,0x0617,0x0618,0x0619,0x061a,0x061c, // 0320 0x0622,0x0623,0x0624,0x0625,0x0626,0x064b,0x064c,0x064d,0x064e,0x064f,0x0650,0x0651,0x0652,0x0653,0x0654,0x0655, // 0330 0x0656,0x0657,0x0658,0x0659,0x065a,0x065b,0x065c,0x065d,0x065e,0x065f,0x0670,0x0674,0x06c0,0x06c2,0x06d3,0x06d6, // 0340 0x06d7,0x06d8,0x06d9,0x06da,0x06db,0x06dc,0x06dd,0x06df,0x06e0,0x06e1,0x06e2,0x06e3,0x06e4,0x06e7,0x06e8,0x06ea, // 0350 0x06eb,0x06ec,0x06ed,0x06fd,0x06fe,0x070f,0x0711,0x0714,0x071c,0x0724,0x0727,0x072d,0x072e,0x072f,0x0730,0x0731, // 0360 0x0732,0x0733,0x0734,0x0735,0x0736,0x0737,0x0738,0x0739,0x073a,0x073b,0x073c,0x073d,0x073e,0x073f,0x0740,0x0741, // 0370 0x0742,0x0743,0x0744,0x0745,0x0746,0x0747,0x0748,0x0749,0x074a,0x07a6,0x07a7,0x07a8,0x07a9,0x07aa,0x07ab,0x07ac, // 0380 0x07ad,0x07ae,0x07af,0x07b0,0x07e8,0x07e9,0x07ea,0x07eb,0x07ec,0x07ed,0x07ee,0x07ef,0x07f0,0x07f1,0x07f2,0x07f3, // 0390 0x0816,0x0817,0x0818,0x0819,0x081b,0x081c,0x081d,0x081e,0x081f,0x0820,0x0821,0x0822,0x0823,0x0825,0x0826,0x0827, // 03a0 0x0829,0x082a,0x082b,0x082c,0x082d,0x0859,0x085a,0x085b,0x08ad,0x08e4,0x08e5,0x08e6,0x08e7,0x08e8,0x08e9,0x08ea, // 03b0 0x08eb,0x08ec,0x08ed,0x08ee,0x08ef,0x08f0,0x08f1,0x08f2,0x08f3,0x08f4,0x08f5,0x08f6,0x08f7,0x08f8,0x08f9,0x08fa, // 03c0 0x08fb,0x08fc,0x08fd,0x08fe,0x0900,0x0901,0x0902,0x0903,0x0929,0x0931,0x0934,0x093a,0x093b,0x093c,0x093e,0x093f, // 03d0 0x0940,0x0941,0x0942,0x0943,0x0944,0x0945,0x0946,0x0947,0x0948,0x0949,0x094a,0x094b,0x094c,0x094d,0x094e,0x094f, // 03e0 0x0951,0x0952,0x0953,0x0954,0x0955,0x0956,0x0957,0x0958,0x0959,0x095a,0x095b,0x095c,0x095d,0x095e,0x095f,0x0962, // 03f0 0x0963,0x0981,0x0982,0x0983,0x09bc,0x09be,0x09bf,0x09c0,0x09c1,0x09c2,0x09c3,0x09c4,0x09c7,0x09c8,0x09cb,0x09cc, // 0400 0x09cd,0x09ce,0x09d7,0x09dc,0x09dd,0x09df,0x09e2,0x09e3,0x0a01,0x0a02,0x0a03,0x0a33,0x0a36,0x0a3c,0x0a3e,0x0a3f, // 0410 0x0a40,0x0a41,0x0a42,0x0a47,0x0a48,0x0a4b,0x0a4c,0x0a4d,0x0a51,0x0a59,0x0a5a,0x0a5b,0x0a5e,0x0a70,0x0a71,0x0a75, // 0420 0x0a81,0x0a82,0x0a83,0x0abc,0x0abe,0x0abf,0x0ac0,0x0ac1,0x0ac2,0x0ac3,0x0ac4,0x0ac5,0x0ac7,0x0ac8,0x0ac9,0x0acb, // 0430 0x0acc,0x0acd,0x0ae2,0x0ae3,0x0b01,0x0b02,0x0b03,0x0b3c,0x0b3e,0x0b3f,0x0b40,0x0b41,0x0b42,0x0b43,0x0b44,0x0b47, // 0440 0x0b48,0x0b4b,0x0b4c,0x0b4d,0x0b56,0x0b57,0x0b5c,0x0b5d,0x0b62,0x0b63,0x0b82,0x0b94,0x0bbe,0x0bbf,0x0bc0,0x0bc1, // 0450 0x0bc2,0x0bc6,0x0bc7,0x0bc8,0x0bca,0x0bcb,0x0bcc,0x0bcd,0x0bd7,0x0c01,0x0c02,0x0c03,0x0c3e,0x0c3f,0x0c40,0x0c41, // 0460 0x0c42,0x0c43,0x0c44,0x0c46,0x0c47,0x0c48,0x0c4a,0x0c4b,0x0c4c,0x0c4d,0x0c55,0x0c56,0x0c62,0x0c63,0x0c82,0x0c83, // 0470 0x0cbc,0x0cbe,0x0cbf,0x0cc0,0x0cc1,0x0cc2,0x0cc3,0x0cc4,0x0cc6,0x0cc7,0x0cc8,0x0cca,0x0ccb,0x0ccc,0x0ccd,0x0cd5, // 0480 0x0cd6,0x0ce2,0x0ce3,0x0d02,0x0d03,0x0d3e,0x0d3f,0x0d40,0x0d41,0x0d42,0x0d43,0x0d44,0x0d46,0x0d47,0x0d48,0x0d4a, // 0490 0x0d4b,0x0d4c,0x0d4d,0x0d4e,0x0d54,0x0d55,0x0d56,0x0d57,0x0d62,0x0d63,0x0d7a,0x0d7b,0x0d7c,0x0d7d,0x0d7e,0x0d7f, // 04a0 0x0d82,0x0d83,0x0dca,0x0dcf,0x0dd0,0x0dd1,0x0dd2,0x0dd3,0x0dd4,0x0dd6,0x0dd8,0x0dd9,0x0dda,0x0ddb,0x0ddc,0x0ddd, // 04b0 0x0dde,0x0ddf,0x0df2,0x0df3,0x0e31,0x0e33,0x0e34,0x0e35,0x0e36,0x0e37,0x0e38,0x0e39,0x0e3a,0x0e47,0x0e48,0x0e49, // 04c0 0x0e4a,0x0e4b,0x0e4c,0x0e4d,0x0e4e,0x0eb1,0x0eb3,0x0eb4,0x0eb5,0x0eb6,0x0eb7,0x0eb8,0x0eb9,0x0ebb,0x0ebc,0x0ec8, // 04d0 0x0ec9,0x0eca,0x0ecb,0x0ecc,0x0ecd,0x0f00,0x0f18,0x0f19,0x0f2a,0x0f2b,0x0f2c,0x0f2d,0x0f2e,0x0f2f,0x0f30,0x0f31, // 04e0 0x0f32,0x0f33,0x0f35,0x0f37,0x0f39,0x0f3e,0x0f3f,0x0f43,0x0f4d,0x0f52,0x0f57,0x0f5c,0x0f69,0x0f6a,0x0f71,0x0f72, // 04f0 0x0f73,0x0f74,0x0f75,0x0f76,0x0f77,0x0f78,0x0f79,0x0f7a,0x0f7b,0x0f7c,0x0f7d,0x0f7e,0x0f7f,0x0f80,0x0f81,0x0f82, // 0500 0x0f83,0x0f84,0x0f86,0x0f87,0x0f8d,0x0f8e,0x0f8f,0x0f90,0x0f91,0x0f92,0x0f93,0x0f94,0x0f95,0x0f96,0x0f97,0x0f99, // 0510 0x0f9a,0x0f9b,0x0f9c,0x0f9d,0x0f9e,0x0f9f,0x0fa0,0x0fa1,0x0fa2,0x0fa3,0x0fa4,0x0fa5,0x0fa6,0x0fa7,0x0fa8,0x0fa9, // 0520 0x0faa,0x0fab,0x0fac,0x0fad,0x0fae,0x0faf,0x0fb0,0x0fb1,0x0fb2,0x0fb3,0x0fb4,0x0fb5,0x0fb6,0x0fb7,0x0fb8,0x0fb9, // 0530 0x0fba,0x0fbb,0x0fbc,0x0fc6,0x1026,0x102b,0x102c,0x102d,0x102e,0x102f,0x1030,0x1031,0x1032,0x1033,0x1034,0x1035, // 0540 0x1036,0x1037,0x1038,0x1039,0x103a,0x103b,0x103c,0x103d,0x103e,0x1056,0x1057,0x1058,0x1059,0x105e,0x105f,0x1060, // 0550 0x1062,0x1063,0x1064,0x1067,0x1068,0x1069,0x106a,0x106b,0x106c,0x106d,0x1071,0x1072,0x1073,0x1074,0x1082,0x1083, // 0560 0x1084,0x1085,0x1086,0x1087,0x1088,0x1089,0x108a,0x108b,0x108c,0x108d,0x108f,0x109a,0x109b,0x109c,0x109d,0x135d, // 0570 0x135e,0x135f,0x1680,0x16a1,0x16a4,0x16a5,0x16a7,0x16a9,0x16ac,0x16ad,0x16ae,0x16b3,0x16b4,0x16b5,0x16b6,0x16bb, // 0580 0x16bc,0x16bd,0x16bf,0x16c0,0x16c2,0x16c4,0x16c6,0x16cb,0x16cc,0x16cd,0x16ce,0x16d0,0x16d1,0x16d3,0x16d4,0x16d5, // 0590 0x16d8,0x16d9,0x16db,0x16dd,0x16e7,0x16e8,0x16e9,0x16ea,0x1712,0x1713,0x1714,0x1732,0x1733,0x1734,0x1752,0x1753, // 05a0 0x1772,0x1773,0x17b4,0x17b5,0x17b6,0x17b7,0x17b8,0x17b9,0x17ba,0x17bb,0x17bc,0x17bd,0x17be,0x17bf,0x17c0,0x17c1, // 05b0 0x17c2,0x17c3,0x17c4,0x17c5,0x17c6,0x17c7,0x17c8,0x17c9,0x17ca,0x17cb,0x17cc,0x17cd,0x17ce,0x17cf,0x17d0,0x17d1, // 05c0 0x17d2,0x17d3,0x17dd,0x180b,0x180c,0x180d,0x180e,0x18a9,0x191d,0x191e,0x1920,0x1921,0x1922,0x1923,0x1924,0x1925, // 05d0 0x1926,0x1927,0x1928,0x1929,0x192a,0x192b,0x1930,0x1931,0x1932,0x1933,0x1934,0x1935,0x1936,0x1937,0x1938,0x1939, // 05e0 0x193a,0x193b,0x19b0,0x19b1,0x19b2,0x19b3,0x19b4,0x19b5,0x19b6,0x19b7,0x19b8,0x19b9,0x19ba,0x19bb,0x19bc,0x19bd, // 05f0 0x19be,0x19bf,0x19c0,0x19c8,0x19c9,0x19de,0x1a17,0x1a18,0x1a19,0x1a1a,0x1a1b,0x1a55,0x1a56,0x1a57,0x1a58,0x1a59, // 0600 0x1a5a,0x1a5b,0x1a5c,0x1a5d,0x1a5e,0x1a60,0x1a61,0x1a62,0x1a63,0x1a64,0x1a65,0x1a66,0x1a67,0x1a68,0x1a69,0x1a6a, // 0610 0x1a6b,0x1a6c,0x1a6d,0x1a6e,0x1a6f,0x1a70,0x1a71,0x1a72,0x1a73,0x1a74,0x1a75,0x1a76,0x1a77,0x1a78,0x1a79,0x1a7a, // 0620 0x1a7b,0x1a7c,0x1a7f,0x1b00,0x1b01,0x1b02,0x1b03,0x1b04,0x1b06,0x1b08,0x1b0a,0x1b0c,0x1b0e,0x1b12,0x1b34,0x1b35, // 0630 0x1b36,0x1b37,0x1b38,0x1b39,0x1b3a,0x1b3b,0x1b3c,0x1b3d,0x1b3e,0x1b3f,0x1b40,0x1b41,0x1b42,0x1b43,0x1b44,0x1b6b, // 0640 0x1b6c,0x1b6d,0x1b6e,0x1b6f,0x1b70,0x1b71,0x1b72,0x1b73,0x1b80,0x1b81,0x1b82,0x1ba1,0x1ba2,0x1ba3,0x1ba4,0x1ba5, // 0650 0x1ba6,0x1ba7,0x1ba8,0x1ba9,0x1baa,0x1bab,0x1bac,0x1bad,0x1bba,0x1bbe,0x1bbf,0x1bc1,0x1bc3,0x1bc4,0x1bc6,0x1bc8, // 0660 0x1bca,0x1bcc,0x1bcd,0x1bcf,0x1bd3,0x1bd5,0x1bd7,0x1bd9,0x1bda,0x1bdc,0x1bdf,0x1be6,0x1be7,0x1be8,0x1be9,0x1bea, // 0670 0x1beb,0x1bec,0x1bed,0x1bee,0x1bef,0x1bf0,0x1bf1,0x1bf2,0x1bf3,0x1c24,0x1c25,0x1c26,0x1c27,0x1c28,0x1c29,0x1c2a, // 0680 0x1c2b,0x1c2c,0x1c2d,0x1c2e,0x1c2f,0x1c30,0x1c31,0x1c32,0x1c33,0x1c34,0x1c35,0x1c36,0x1c37,0x1c80,0x1c81,0x1c82, // 0690 0x1c83,0x1c84,0x1c85,0x1c86,0x1c87,0x1c88,0x1cd0,0x1cd1,0x1cd2,0x1cd4,0x1cd5,0x1cd6,0x1cd7,0x1cd8,0x1cd9,0x1cda, // 06a0 0x1cdb,0x1cdc,0x1cdd,0x1cde,0x1cdf,0x1ce0,0x1ce1,0x1ce2,0x1ce3,0x1ce4,0x1ce5,0x1ce6,0x1ce7,0x1ce8,0x1cea,0x1ceb, // 06b0 0x1cec,0x1ced,0x1cee,0x1cef,0x1cf0,0x1cf1,0x1cf2,0x1cf3,0x1cf4,0x1d00,0x1d01,0x1d02,0x1d03,0x1d04,0x1d05,0x1d06, // 06c0 0x1d07,0x1d09,0x1d0a,0x1d0b,0x1d0c,0x1d0d,0x1d0f,0x1d11,0x1d12,0x1d13,0x1d16,0x1d17,0x1d18,0x1d1b,0x1d1c,0x1d1f, // 06d0 0x1d20,0x1d21,0x1d22,0x1d2f,0x1d4e,0x1d6b,0x1d6c,0x1d6d,0x1d6e,0x1d6f,0x1d70,0x1d71,0x1d72,0x1d73,0x1d74,0x1d75, // 06e0 0x1d76,0x1d77,0x1d79,0x1d7a,0x1d7b,0x1d7c,0x1d7d,0x1d7e,0x1d7f,0x1d80,0x1d81,0x1d82,0x1d83,0x1d84,0x1d85,0x1d86, // 06f0 0x1d87,0x1d88,0x1d89,0x1d8a,0x1d8b,0x1d8c,0x1d8d,0x1d8e,0x1d8f,0x1d91,0x1d92,0x1d93,0x1d95,0x1d96,0x1d97,0x1d98, // 0700 0x1d99,0x1d9a,0x1d9d,0x1d9e,0x1d9f,0x1da0,0x1da1,0x1da2,0x1da3,0x1da4,0x1da7,0x1da8,0x1dab,0x1dac,0x1dae,0x1db3, // 0710 0x1db5,0x1db9,0x1dbc,0x1dbd,0x1dbe,0x1dbf,0x1dc0,0x1dc1,0x1dc2,0x1dc3,0x1dc4,0x1dc5,0x1dc6,0x1dc7,0x1dc8,0x1dc9, // 0720 0x1dca,0x1dcb,0x1dcc,0x1dcd,0x1dce,0x1dcf,0x1dd0,0x1dd1,0x1dd2,0x1dd3,0x1dd4,0x1dd5,0x1dd6,0x1dd7,0x1dd8,0x1dd9, // 0730 0x1dda,0x1ddb,0x1ddc,0x1ddd,0x1dde,0x1ddf,0x1de0,0x1de1,0x1de2,0x1de3,0x1de4,0x1de5,0x1de6,0x1de7,0x1de8,0x1de9, // 0740 0x1dea,0x1deb,0x1dec,0x1ded,0x1dee,0x1def,0x1df0,0x1df1,0x1df2,0x1df3,0x1df4,0x1dfc,0x1dfd,0x1dfe,0x1dff,0x1e00, // 0750 0x1e01,0x1e02,0x1e03,0x1e04,0x1e05,0x1e06,0x1e07,0x1e08,0x1e09,0x1e0a,0x1e0b,0x1e0c,0x1e0d,0x1e0e,0x1e0f,0x1e10, // 0760 0x1e11,0x1e12,0x1e13,0x1e14,0x1e15,0x1e16,0x1e17,0x1e18,0x1e19,0x1e1a,0x1e1b,0x1e1c,0x1e1d,0x1e1e,0x1e1f,0x1e20, // 0770 0x1e21,0x1e22,0x1e23,0x1e24,0x1e25,0x1e26,0x1e27,0x1e28,0x1e29,0x1e2a,0x1e2b,0x1e2c,0x1e2d,0x1e2e,0x1e2f,0x1e30, // 0780 0x1e31,0x1e32,0x1e33,0x1e34,0x1e35,0x1e36,0x1e37,0x1e38,0x1e39,0x1e3a,0x1e3b,0x1e3c,0x1e3d,0x1e3e,0x1e3f,0x1e40, // 0790 0x1e41,0x1e42,0x1e43,0x1e44,0x1e45,0x1e46,0x1e47,0x1e48,0x1e49,0x1e4a,0x1e4b,0x1e4c,0x1e4d,0x1e4e,0x1e4f,0x1e50, // 07a0 0x1e51,0x1e52,0x1e53,0x1e54,0x1e55,0x1e56,0x1e57,0x1e58,0x1e59,0x1e5a,0x1e5b,0x1e5c,0x1e5d,0x1e5e,0x1e5f,0x1e60, // 07b0 0x1e61,0x1e62,0x1e63,0x1e64,0x1e65,0x1e66,0x1e67,0x1e68,0x1e69,0x1e6a,0x1e6b,0x1e6c,0x1e6d,0x1e6e,0x1e6f,0x1e70, // 07c0 0x1e71,0x1e72,0x1e73,0x1e74,0x1e75,0x1e76,0x1e77,0x1e78,0x1e79,0x1e7a,0x1e7b,0x1e7c,0x1e7d,0x1e7e,0x1e7f,0x1e80, // 07d0 0x1e81,0x1e82,0x1e83,0x1e84,0x1e85,0x1e86,0x1e87,0x1e88,0x1e89,0x1e8a,0x1e8b,0x1e8c,0x1e8d,0x1e8e,0x1e8f,0x1e90, // 07e0 0x1e91,0x1e92,0x1e93,0x1e94,0x1e95,0x1e96,0x1e97,0x1e98,0x1e99,0x1e9a,0x1e9b,0x1e9c,0x1e9d,0x1e9e,0x1ea0,0x1ea1, // 07f0 0x1ea2,0x1ea3,0x1ea4,0x1ea5,0x1ea6,0x1ea7,0x1ea8,0x1ea9,0x1eaa,0x1eab,0x1eac,0x1ead,0x1eae,0x1eaf,0x1eb0,0x1eb1, // 0800 0x1eb2,0x1eb3,0x1eb4,0x1eb5,0x1eb6,0x1eb7,0x1eb8,0x1eb9,0x1eba,0x1ebb,0x1ebc,0x1ebd,0x1ebe,0x1ebf,0x1ec0,0x1ec1, // 0810 0x1ec2,0x1ec3,0x1ec4,0x1ec5,0x1ec6,0x1ec7,0x1ec8,0x1ec9,0x1eca,0x1ecb,0x1ecc,0x1ecd,0x1ece,0x1ecf,0x1ed0,0x1ed1, // 0820 0x1ed2,0x1ed3,0x1ed4,0x1ed5,0x1ed6,0x1ed7,0x1ed8,0x1ed9,0x1eda,0x1edb,0x1edc,0x1edd,0x1ede,0x1edf,0x1ee0,0x1ee1, // 0830 0x1ee2,0x1ee3,0x1ee4,0x1ee5,0x1ee6,0x1ee7,0x1ee8,0x1ee9,0x1eea,0x1eeb,0x1eec,0x1eed,0x1eee,0x1eef,0x1ef0,0x1ef1, // 0840 0x1ef2,0x1ef3,0x1ef4,0x1ef5,0x1ef6,0x1ef7,0x1ef8,0x1ef9,0x1efa,0x1efb,0x1efc,0x1efd,0x1efe,0x1eff,0x1f00,0x1f01, // 0850 0x1f02,0x1f03,0x1f04,0x1f05,0x1f06,0x1f07,0x1f08,0x1f09,0x1f0a,0x1f0b,0x1f0c,0x1f0d,0x1f0e,0x1f0f,0x1f10,0x1f11, // 0860 0x1f12,0x1f13,0x1f14,0x1f15,0x1f18,0x1f19,0x1f1a,0x1f1b,0x1f1c,0x1f1d,0x1f20,0x1f21,0x1f22,0x1f23,0x1f24,0x1f25, // 0870 0x1f26,0x1f27,0x1f28,0x1f29,0x1f2a,0x1f2b,0x1f2c,0x1f2d,0x1f2e,0x1f2f,0x1f30,0x1f31,0x1f32,0x1f33,0x1f34,0x1f35, // 0880 0x1f36,0x1f37,0x1f38,0x1f39,0x1f3a,0x1f3b,0x1f3c,0x1f3d,0x1f3e,0x1f3f,0x1f40,0x1f41,0x1f42,0x1f43,0x1f44,0x1f45, // 0890 0x1f48,0x1f49,0x1f4a,0x1f4b,0x1f4c,0x1f4d,0x1f50,0x1f51,0x1f52,0x1f53,0x1f54,0x1f55,0x1f56,0x1f57,0x1f59,0x1f5b, // 08a0 0x1f5d,0x1f5f,0x1f60,0x1f61,0x1f62,0x1f63,0x1f64,0x1f65,0x1f66,0x1f67,0x1f68,0x1f69,0x1f6a,0x1f6b,0x1f6c,0x1f6d, // 08b0 0x1f6e,0x1f6f,0x1f70,0x1f71,0x1f72,0x1f73,0x1f74,0x1f75,0x1f76,0x1f77,0x1f78,0x1f79,0x1f7a,0x1f7b,0x1f7c,0x1f7d, // 08c0 0x1f80,0x1f81,0x1f82,0x1f83,0x1f84,0x1f85,0x1f86,0x1f87,0x1f88,0x1f89,0x1f8a,0x1f8b,0x1f8c,0x1f8d,0x1f8e,0x1f8f, // 08d0 0x1f90,0x1f91,0x1f92,0x1f93,0x1f94,0x1f95,0x1f96,0x1f97,0x1f98,0x1f99,0x1f9a,0x1f9b,0x1f9c,0x1f9d,0x1f9e,0x1f9f, // 08e0 0x1fa0,0x1fa1,0x1fa2,0x1fa3,0x1fa4,0x1fa5,0x1fa6,0x1fa7,0x1fa8,0x1fa9,0x1faa,0x1fab,0x1fac,0x1fad,0x1fae,0x1faf, // 08f0 0x1fb0,0x1fb1,0x1fb2,0x1fb3,0x1fb4,0x1fb6,0x1fb7,0x1fb8,0x1fb9,0x1fba,0x1fbb,0x1fbc,0x1fbd,0x1fbe,0x1fc1,0x1fc2, // 0900 0x1fc3,0x1fc4,0x1fc6,0x1fc7,0x1fc8,0x1fc9,0x1fca,0x1fcb,0x1fcc,0x1fcd,0x1fce,0x1fcf,0x1fd0,0x1fd1,0x1fd2,0x1fd3, // 0910 0x1fd6,0x1fd7,0x1fd8,0x1fd9,0x1fda,0x1fdb,0x1fdd,0x1fde,0x1fdf,0x1fe0,0x1fe1,0x1fe2,0x1fe3,0x1fe4,0x1fe5,0x1fe6, // 0920 0x1fe7,0x1fe8,0x1fe9,0x1fea,0x1feb,0x1fec,0x1fed,0x1fee,0x1fef,0x1ff2,0x1ff3,0x1ff4,0x1ff6,0x1ff7,0x1ff8,0x1ff9, // 0930 0x1ffa,0x1ffb,0x1ffc,0x1ffd,0x2000,0x2001,0x2002,0x2003,0x2004,0x2005,0x2006,0x2007,0x2008,0x2009,0x200a,0x200b, // 0940 0x200c,0x200d,0x200e,0x200f,0x2010,0x2011,0x2012,0x2013,0x2014,0x2015,0x2018,0x2019,0x201a,0x201b,0x201c,0x201d, // 0950 0x201e,0x201f,0x2022,0x2024,0x202a,0x202b,0x202c,0x202d,0x202e,0x202f,0x2032,0x2033,0x2035,0x2039,0x203a,0x2044, // 0960 0x2045,0x2046,0x205f,0x2060,0x2061,0x2062,0x2063,0x2064,0x2066,0x2067,0x2068,0x2069,0x206a,0x206b,0x206c,0x206d, // 0970 0x206e,0x206f,0x2070,0x2074,0x2075,0x2076,0x2077,0x2078,0x2079,0x207a,0x207b,0x207c,0x2080,0x2081,0x2082,0x2083, // 0980 0x2084,0x2085,0x2086,0x2087,0x2088,0x2089,0x208a,0x208b,0x208c,0x20d0,0x20d1,0x20d2,0x20d3,0x20d4,0x20d5,0x20d6, // 0990 0x20d7,0x20d8,0x20d9,0x20da,0x20db,0x20dc,0x20dd,0x20de,0x20df,0x20e0,0x20e1,0x20e2,0x20e3,0x20e4,0x20e5,0x20e6, // 09a0 0x20e7,0x20e8,0x20e9,0x20ea,0x20eb,0x20ec,0x20ed,0x20ee,0x20ef,0x20f0,0x2102,0x2103,0x2107,0x2109,0x210a,0x210b, // 09b0 0x210c,0x210d,0x210e,0x210f,0x2110,0x2111,0x2112,0x2113,0x2115,0x2118,0x2119,0x211a,0x211b,0x211c,0x211d,0x2124, // 09c0 0x2125,0x2126,0x2128,0x212a,0x212b,0x212c,0x212d,0x212e,0x212f,0x2130,0x2131,0x2132,0x2133,0x2134,0x2135,0x2136, // 09d0 0x2137,0x2138,0x2139,0x213a,0x213c,0x213d,0x213e,0x213f,0x2140,0x2141,0x2142,0x2143,0x2144,0x2145,0x2146,0x2147, // 09e0 0x2148,0x2149,0x214e,0x2160,0x2164,0x2169,0x216c,0x216d,0x216e,0x216f,0x2170,0x2174,0x2179,0x217c,0x217d,0x217e, // 09f0 0x217f,0x219a,0x219b,0x21ae,0x21cd,0x21ce,0x21cf,0x2204,0x2209,0x220c,0x2224,0x2226,0x2241,0x2244,0x2247,0x2249, // 0a00 0x2260,0x2262,0x226d,0x226e,0x226f,0x2270,0x2271,0x2274,0x2275,0x2278,0x2279,0x2280,0x2281,0x2284,0x2285,0x2288, // 0a10 0x2289,0x22ac,0x22ad,0x22ae,0x22af,0x22e0,0x22e1,0x22e2,0x22e3,0x22ea,0x22eb,0x22ec,0x22ed,0x2460,0x2461,0x2462, // 0a20 0x2463,0x2464,0x2465,0x2466,0x2467,0x2468,0x2474,0x2475,0x2476,0x2477,0x2478,0x2479,0x247a,0x247b,0x247c,0x2488, // 0a30 0x2489,0x248a,0x248b,0x248c,0x248d,0x248e,0x248f,0x2490,0x249c,0x249d,0x249e,0x249f,0x24a0,0x24a1,0x24a2,0x24a3, // 0a40 0x24a4,0x24a5,0x24a6,0x24a7,0x24a8,0x24a9,0x24aa,0x24ab,0x24ac,0x24ad,0x24ae,0x24af,0x24b0,0x24b1,0x24b2,0x24b3, // 0a50 0x24b4,0x24b5,0x24b6,0x24b7,0x24b8,0x24b9,0x24ba,0x24bb,0x24bc,0x24bd,0x24be,0x24bf,0x24c0,0x24c1,0x24c2,0x24c3, // 0a60 0x24c4,0x24c5,0x24c6,0x24c7,0x24c8,0x24c9,0x24ca,0x24cb,0x24cc,0x24cd,0x24ce,0x24cf,0x24d0,0x24d1,0x24d2,0x24d3, // 0a70 0x24d4,0x24d5,0x24d6,0x24d7,0x24d8,0x24d9,0x24da,0x24db,0x24dc,0x24dd,0x24de,0x24df,0x24e0,0x24e1,0x24e2,0x24e3, // 0a80 0x24e4,0x24e5,0x24e6,0x24e7,0x24e8,0x24e9,0x24ea,0x24f5,0x24f6,0x24f7,0x24f8,0x24f9,0x24fa,0x24fb,0x24fc,0x24fd, // 0a90 0x24ff,0x2776,0x2777,0x2778,0x2779,0x277a,0x277b,0x277c,0x277d,0x277e,0x2780,0x2781,0x2782,0x2783,0x2784,0x2785, // 0aa0 0x2786,0x2787,0x2788,0x278a,0x278b,0x278c,0x278d,0x278e,0x278f,0x2790,0x2791,0x2792,0x2a74,0x2adc,0x2c60,0x2c61, // 0ab0 0x2c62,0x2c63,0x2c64,0x2c65,0x2c66,0x2c67,0x2c68,0x2c69,0x2c6a,0x2c6b,0x2c6c,0x2c6d,0x2c6e,0x2c6f,0x2c71,0x2c72, // 0ac0 0x2c73,0x2c74,0x2c77,0x2c78,0x2c7a,0x2c7e,0x2c7f,0x2cef,0x2cf0,0x2cf1,0x2d7f,0x2de0,0x2de1,0x2de2,0x2de3,0x2de4, // 0ad0 0x2de5,0x2de6,0x2de7,0x2de8,0x2de9,0x2dea,0x2deb,0x2dec,0x2ded,0x2dee,0x2def,0x2df0,0x2df1,0x2df2,0x2df3,0x2df4, // 0ae0 0x2df5,0x2df6,0x2df7,0x2df8,0x2df9,0x2dfa,0x2dfb,0x2dfc,0x2dfd,0x2dfe,0x2dff,0x2e80,0x2e81,0x2e82,0x2e83,0x2e84, // 0af0 0x2e85,0x2e86,0x2e87,0x2e88,0x2e89,0x2e8a,0x2e8b,0x2e8c,0x2e8d,0x2e8e,0x2e8f,0x2e90,0x2e91,0x2e92,0x2e93,0x2e94, // 0b00 0x2e95,0x2e96,0x2e97,0x2e98,0x2e99,0x2e9b,0x2e9c,0x2e9d,0x2e9e,0x2e9f,0x2ea0,0x2ea1,0x2ea2,0x2ea3,0x2ea4,0x2ea5, // 0b10 0x2ea6,0x2ea7,0x2ea8,0x2ea9,0x2eaa,0x2eab,0x2eac,0x2ead,0x2eae,0x2eaf,0x2eb0,0x2eb1,0x2eb2,0x2eb3,0x2eb4,0x2eb5, // 0b20 0x2eb6,0x2eb7,0x2eb8,0x2eb9,0x2eba,0x2ebb,0x2ebc,0x2ebd,0x2ebe,0x2ebf,0x2ec0,0x2ec1,0x2ec2,0x2ec3,0x2ec4,0x2ec5, // 0b30 0x2ec6,0x2ec7,0x2ec8,0x2ec9,0x2eca,0x2ecb,0x2ecc,0x2ecd,0x2ece,0x2ecf,0x2ed0,0x2ed1,0x2ed2,0x2ed3,0x2ed4,0x2ed5, // 0b40 0x2ed6,0x2ed7,0x2ed8,0x2ed9,0x2eda,0x2edb,0x2edc,0x2edd,0x2ede,0x2edf,0x2ee0,0x2ee1,0x2ee2,0x2ee3,0x2ee4,0x2ee5, // 0b50 0x2ee6,0x2ee7,0x2ee8,0x2ee9,0x2eea,0x2eeb,0x2eec,0x2eed,0x2eee,0x2eef,0x2ef0,0x2ef1,0x2ef2,0x2ef3,0x2f00,0x2f01, // 0b60 0x2f02,0x2f03,0x2f04,0x2f05,0x2f06,0x2f07,0x2f08,0x2f09,0x2f0a,0x2f0b,0x2f0c,0x2f0d,0x2f0e,0x2f0f,0x2f10,0x2f11, // 0b70 0x2f12,0x2f13,0x2f14,0x2f15,0x2f16,0x2f17,0x2f18,0x2f19,0x2f1a,0x2f1b,0x2f1c,0x2f1d,0x2f1e,0x2f1f,0x2f20,0x2f21, // 0b80 0x2f22,0x2f23,0x2f24,0x2f25,0x2f26,0x2f27,0x2f28,0x2f29,0x2f2a,0x2f2b,0x2f2c,0x2f2d,0x2f2e,0x2f2f,0x2f30,0x2f31, // 0b90 0x2f32,0x2f33,0x2f34,0x2f35,0x2f36,0x2f37,0x2f38,0x2f39,0x2f3a,0x2f3b,0x2f3c,0x2f3d,0x2f3e,0x2f3f,0x2f40,0x2f41, // 0ba0 0x2f42,0x2f43,0x2f44,0x2f45,0x2f46,0x2f47,0x2f48,0x2f49,0x2f4a,0x2f4b,0x2f4c,0x2f4d,0x2f4e,0x2f4f,0x2f50,0x2f51, // 0bb0 0x2f52,0x2f53,0x2f54,0x2f55,0x2f56,0x2f57,0x2f58,0x2f59,0x2f5a,0x2f5b,0x2f5c,0x2f5d,0x2f5e,0x2f5f,0x2f60,0x2f61, // 0bc0 0x2f62,0x2f63,0x2f64,0x2f65,0x2f66,0x2f67,0x2f68,0x2f69,0x2f6a,0x2f6b,0x2f6c,0x2f6d,0x2f6e,0x2f6f,0x2f70,0x2f71, // 0bd0 0x2f72,0x2f73,0x2f74,0x2f75,0x2f76,0x2f77,0x2f78,0x2f79,0x2f7a,0x2f7b,0x2f7c,0x2f7d,0x2f7e,0x2f7f,0x2f80,0x2f81, // 0be0 0x2f82,0x2f83,0x2f84,0x2f85,0x2f86,0x2f87,0x2f88,0x2f89,0x2f8a,0x2f8b,0x2f8c,0x2f8d,0x2f8e,0x2f8f,0x2f90,0x2f91, // 0bf0 0x2f92,0x2f93,0x2f94,0x2f95,0x2f96,0x2f97,0x2f98,0x2f99,0x2f9a,0x2f9b,0x2f9c,0x2f9d,0x2f9e,0x2f9f,0x2fa0,0x2fa1, // 0c00 0x2fa2,0x2fa3,0x2fa4,0x2fa5,0x2fa6,0x2fa7,0x2fa8,0x2fa9,0x2faa,0x2fab,0x2fac,0x2fad,0x2fae,0x2faf,0x2fb0,0x2fb1, // 0c10 0x2fb2,0x2fb3,0x2fb4,0x2fb5,0x2fb6,0x2fb7,0x2fb8,0x2fb9,0x2fba,0x2fbb,0x2fbc,0x2fbd,0x2fbe,0x2fbf,0x2fc0,0x2fc1, // 0c20 0x2fc2,0x2fc3,0x2fc4,0x2fc5,0x2fc6,0x2fc7,0x2fc8,0x2fc9,0x2fca,0x2fcb,0x2fcc,0x2fcd,0x2fce,0x2fcf,0x2fd0,0x2fd1, // 0c30 0x2fd2,0x2fd3,0x2fd4,0x2fd5,0x3000,0x3001,0x3002,0x3007,0x3008,0x3009,0x3014,0x3015,0x3018,0x3019,0x301a,0x301b, // 0c40 0x301d,0x301e,0x302a,0x302b,0x302c,0x302d,0x302e,0x302f,0x3036,0x3038,0x3039,0x303a,0x304c,0x304e,0x3050,0x3052, // 0c50 0x3054,0x3056,0x3058,0x305a,0x305c,0x305e,0x3060,0x3062,0x3065,0x3067,0x3069,0x3070,0x3071,0x3073,0x3074,0x3076, // 0c60 0x3077,0x3079,0x307a,0x307c,0x307d,0x3094,0x3099,0x309a,0x30ac,0x30ae,0x30b0,0x30b2,0x30b4,0x30b6,0x30b8,0x30ba, // 0c70 0x30bc,0x30be,0x30c0,0x30c2,0x30c5,0x30c7,0x30c9,0x30d0,0x30d1,0x30d3,0x30d4,0x30d6,0x30d7,0x30d9,0x30da,0x30dc, // 0c80 0x30dd,0x30f4,0x30f7,0x30f8,0x30f9,0x30fa,0x312e,0x3131,0x3132,0x3133,0x3134,0x3135,0x3136,0x3137,0x3138,0x3139, // 0c90 0x313a,0x313b,0x313c,0x313d,0x313e,0x313f,0x3140,0x3141,0x3142,0x3143,0x3144,0x3145,0x3146,0x3147,0x3148,0x3149, // 0ca0 0x314a,0x314b,0x314c,0x314d,0x314e,0x314f,0x3150,0x3151,0x3152,0x3153,0x3154,0x3155,0x3156,0x3157,0x3158,0x3159, // 0cb0 0x315a,0x315b,0x315c,0x315d,0x315e,0x315f,0x3160,0x3161,0x3162,0x3163,0x3164,0x3165,0x3166,0x3167,0x3168,0x3169, // 0cc0 0x316a,0x316b,0x316c,0x316d,0x316e,0x316f,0x3170,0x3171,0x3172,0x3173,0x3174,0x3175,0x3176,0x3177,0x3178,0x3179, // 0cd0 0x317a,0x317b,0x317c,0x317d,0x317e,0x317f,0x3180,0x3181,0x3182,0x3183,0x3184,0x3185,0x3186,0x3187,0x3188,0x3189, // 0ce0 0x318a,0x318b,0x318c,0x318d,0x318e,0x3192,0x3193,0x3194,0x3195,0x3196,0x3197,0x3198,0x3199,0x319a,0x319b,0x319c, // 0cf0 0x319d,0x319e,0x319f,0x31a0,0x31a1,0x31a2,0x31a3,0x31a5,0x31a7,0x31a8,0x31a9,0x31aa,0x31ab,0x31ae,0x31af,0x31b3, // 0d00 0x31b4,0x31b5,0x31b6,0x31b7,0x3200,0x3201,0x3202,0x3203,0x3204,0x3205,0x3206,0x3207,0x3208,0x3209,0x320a,0x320b, // 0d10 0x320c,0x320d,0x3220,0x3221,0x3222,0x3223,0x3224,0x3225,0x3226,0x3227,0x3228,0x3229,0x322a,0x322b,0x322c,0x322d, // 0d20 0x322e,0x322f,0x3230,0x3231,0x3232,0x3233,0x3234,0x3235,0x3236,0x3237,0x3238,0x3239,0x323a,0x323b,0x323c,0x323d, // 0d30 0x323e,0x323f,0x3240,0x3241,0x3242,0x3243,0x3244,0x3245,0x3246,0x3247,0x3260,0x3261,0x3262,0x3263,0x3264,0x3265, // 0d40 0x3266,0x3267,0x3268,0x3269,0x326a,0x326b,0x326c,0x326d,0x3280,0x3281,0x3282,0x3283,0x3284,0x3285,0x3286,0x3287, // 0d50 0x3288,0x3289,0x328a,0x328b,0x328c,0x328d,0x328e,0x328f,0x3290,0x3291,0x3292,0x3293,0x3294,0x3295,0x3296,0x3297, // 0d60 0x3298,0x3299,0x329a,0x329b,0x329c,0x329d,0x329e,0x329f,0x32a0,0x32a1,0x32a2,0x32a3,0x32a4,0x32a5,0x32a6,0x32a7, // 0d70 0x32a8,0x32a9,0x32aa,0x32ab,0x32ac,0x32ad,0x32ae,0x32af,0x32b0,0x32d0,0x32d1,0x32d2,0x32d3,0x32d4,0x32d5,0x32d6, // 0d80 0x32d7,0x32d8,0x32d9,0x32da,0x32db,0x32dc,0x32dd,0x32de,0x32df,0x32e0,0x32e1,0x32e2,0x32e3,0x32e4,0x32e5,0x32e6, // 0d90 0x32e7,0x32e8,0x32e9,0x32ea,0x32eb,0x32ec,0x32ed,0x32ee,0x32ef,0x32f0,0x32f1,0x32f2,0x32f3,0x32f4,0x32f5,0x32f6, // 0da0 0x32f7,0x32f8,0x32f9,0x32fa,0x32fb,0x32fc,0x32fd,0x32fe,0xa610,0xa611,0xa612,0xa616,0xa618,0xa619,0xa61e,0xa62a, // 0db0 0xa62b,0xa668,0xa669,0xa66a,0xa66b,0xa66c,0xa66d,0xa66e,0xa66f,0xa670,0xa671,0xa672,0xa674,0xa675,0xa676,0xa677, // 0dc0 0xa678,0xa679,0xa67a,0xa67b,0xa67c,0xa67d,0xa698,0xa699,0xa69a,0xa69b,0xa69c,0xa69d,0xa69e,0xa69f,0xa6f0,0xa6f1, // 0dd0 0xa728,0xa729,0xa730,0xa731,0xa732,0xa733,0xa734,0xa735,0xa736,0xa737,0xa738,0xa739,0xa73a,0xa73b,0xa73c,0xa73d, // 0de0 0xa73e,0xa73f,0xa740,0xa741,0xa742,0xa743,0xa744,0xa745,0xa746,0xa747,0xa748,0xa749,0xa74a,0xa74b,0xa74c,0xa74d, // 0df0 0xa74e,0xa74f,0xa750,0xa751,0xa752,0xa753,0xa754,0xa755,0xa756,0xa757,0xa758,0xa759,0xa75e,0xa75f,0xa760,0xa761, // 0e00 0xa764,0xa765,0xa766,0xa767,0xa771,0xa772,0xa773,0xa774,0xa775,0xa776,0xa777,0xa779,0xa77a,0xa77b,0xa77c,0xa77d, // 0e10 0xa782,0xa783,0xa784,0xa785,0xa786,0xa787,0xa790,0xa791,0xa792,0xa793,0xa79a,0xa79b,0xa79c,0xa79d,0xa79e,0xa79f, // 0e20 0xa7a0,0xa7a1,0xa7a2,0xa7a3,0xa7a4,0xa7a5,0xa7a6,0xa7a7,0xa7a8,0xa7a9,0xa7aa,0xa802,0xa806,0xa80b,0xa823,0xa824, // 0e30 0xa825,0xa826,0xa827,0xa880,0xa881,0xa8b4,0xa8b5,0xa8b6,0xa8b7,0xa8b8,0xa8b9,0xa8ba,0xa8bb,0xa8bc,0xa8bd,0xa8be, // 0e40 0xa8bf,0xa8c0,0xa8c1,0xa8c2,0xa8c3,0xa8c4,0xa8e0,0xa8e1,0xa8e2,0xa8e3,0xa8e4,0xa8e5,0xa8e6,0xa8e7,0xa8e8,0xa8e9, // 0e50 0xa8ea,0xa8eb,0xa8ec,0xa8ed,0xa8ee,0xa8ef,0xa8f0,0xa8f1,0xa8f3,0xa8f4,0xa8f5,0xa8f6,0xa8f7,0xa926,0xa927,0xa928, // 0e60 0xa929,0xa92a,0xa92b,0xa92c,0xa92d,0xa947,0xa948,0xa949,0xa94a,0xa94b,0xa94c,0xa94d,0xa94e,0xa94f,0xa950,0xa951, // 0e70 0xa952,0xa953,0xa980,0xa981,0xa982,0xa983,0xa9ac,0xa9b3,0xa9b4,0xa9b5,0xa9b6,0xa9b7,0xa9b8,0xa9b9,0xa9ba,0xa9bb, // 0e80 0xa9bc,0xa9bd,0xa9be,0xa9bf,0xa9c0,0xaa29,0xaa2a,0xaa2b,0xaa2c,0xaa2d,0xaa2e,0xaa2f,0xaa30,0xaa31,0xaa32,0xaa33, // 0e90 0xaa34,0xaa35,0xaa36,0xaa43,0xaa4c,0xaa4d,0xaa7b,0xaab0,0xaab2,0xaab3,0xaab4,0xaab7,0xaab8,0xaabe,0xaabf,0xaac1, // 0ea0 0xaaeb,0xaaec,0xaaed,0xaaee,0xaaef,0xaaf5,0xaaf6,0xab5c,0xab5d,0xab5e,0xab5f,0xabe3,0xabe4,0xabe5,0xabe6,0xabe7, // 0eb0 0xabe8,0xabe9,0xabea,0xabec,0xabed,0xd800,0xdb7f,0xdb80,0xdbff,0xdc00,0xdfff,0xe000,0xf8ff,0xf900,0xf901,0xf902, // 0ec0 0xf903,0xf904,0xf905,0xf906,0xf907,0xf908,0xf909,0xf90a,0xf90b,0xf90c,0xf90d,0xf90e,0xf90f,0xf910,0xf911,0xf912, // 0ed0 0xf913,0xf914,0xf915,0xf916,0xf917,0xf918,0xf919,0xf91a,0xf91b,0xf91c,0xf91d,0xf91e,0xf91f,0xf920,0xf921,0xf922, // 0ee0 0xf923,0xf924,0xf925,0xf926,0xf927,0xf928,0xf929,0xf92a,0xf92b,0xf92c,0xf92d,0xf92e,0xf92f,0xf930,0xf931,0xf932, // 0ef0 0xf933,0xf934,0xf935,0xf936,0xf937,0xf938,0xf939,0xf93a,0xf93b,0xf93c,0xf93d,0xf93e,0xf93f,0xf940,0xf941,0xf942, // 0f00 0xf943,0xf944,0xf945,0xf946,0xf947,0xf948,0xf949,0xf94a,0xf94b,0xf94c,0xf94d,0xf94e,0xf94f,0xf950,0xf951,0xf952, // 0f10 0xf953,0xf954,0xf955,0xf956,0xf957,0xf958,0xf959,0xf95a,0xf95b,0xf95c,0xf95d,0xf95e,0xf95f,0xf960,0xf961,0xf962, // 0f20 0xf963,0xf964,0xf965,0xf966,0xf967,0xf968,0xf969,0xf96a,0xf96b,0xf96c,0xf96d,0xf96e,0xf96f,0xf970,0xf971,0xf972, // 0f30 0xf973,0xf974,0xf975,0xf976,0xf977,0xf978,0xf979,0xf97a,0xf97b,0xf97c,0xf97d,0xf97e,0xf97f,0xf980,0xf981,0xf982, // 0f40 0xf983,0xf984,0xf985,0xf986,0xf987,0xf988,0xf989,0xf98a,0xf98b,0xf98c,0xf98d,0xf98e,0xf98f,0xf990,0xf991,0xf992, // 0f50 0xf993,0xf994,0xf995,0xf996,0xf997,0xf998,0xf999,0xf99a,0xf99b,0xf99c,0xf99d,0xf99e,0xf99f,0xf9a0,0xf9a1,0xf9a2, // 0f60 0xf9a3,0xf9a4,0xf9a5,0xf9a6,0xf9a7,0xf9a8,0xf9a9,0xf9aa,0xf9ab,0xf9ac,0xf9ad,0xf9ae,0xf9af,0xf9b0,0xf9b1,0xf9b2, // 0f70 0xf9b3,0xf9b4,0xf9b5,0xf9b6,0xf9b7,0xf9b8,0xf9b9,0xf9ba,0xf9bb,0xf9bc,0xf9bd,0xf9be,0xf9bf,0xf9c0,0xf9c1,0xf9c2, // 0f80 0xf9c3,0xf9c4,0xf9c5,0xf9c6,0xf9c7,0xf9c8,0xf9c9,0xf9ca,0xf9cb,0xf9cc,0xf9cd,0xf9ce,0xf9cf,0xf9d0,0xf9d1,0xf9d2, // 0f90 0xf9d3,0xf9d4,0xf9d5,0xf9d6,0xf9d7,0xf9d8,0xf9d9,0xf9da,0xf9db,0xf9dc,0xf9dd,0xf9de,0xf9df,0xf9e0,0xf9e1,0xf9e2, // 0fa0 0xf9e3,0xf9e4,0xf9e5,0xf9e6,0xf9e7,0xf9e8,0xf9e9,0xf9ea,0xf9eb,0xf9ec,0xf9ed,0xf9ee,0xf9ef,0xf9f0,0xf9f1,0xf9f2, // 0fb0 0xf9f3,0xf9f4,0xf9f5,0xf9f6,0xf9f7,0xf9f8,0xf9f9,0xf9fa,0xf9fb,0xf9fc,0xf9fd,0xf9fe,0xf9ff,0xfa00,0xfa01,0xfa02, // 0fc0 0xfa03,0xfa04,0xfa05,0xfa06,0xfa07,0xfa08,0xfa09,0xfa0a,0xfa0b,0xfa0c,0xfa0d,0xfa10,0xfa12,0xfa15,0xfa16,0xfa17, // 0fd0 0xfa18,0xfa19,0xfa1a,0xfa1b,0xfa1c,0xfa1d,0xfa1e,0xfa20,0xfa22,0xfa25,0xfa26,0xfa2a,0xfa2b,0xfa2c,0xfa2d,0xfa2e, // 0fe0 0xfa2f,0xfa30,0xfa31,0xfa32,0xfa33,0xfa34,0xfa35,0xfa36,0xfa37,0xfa38,0xfa39,0xfa3a,0xfa3b,0xfa3c,0xfa3d,0xfa3e, // 0ff0 0xfa3f,0xfa40,0xfa41,0xfa42,0xfa43,0xfa44,0xfa45,0xfa46,0xfa47,0xfa48,0xfa49,0xfa4a,0xfa4b,0xfa4c,0xfa4d,0xfa4e, // 1000 0xfa4f,0xfa50,0xfa51,0xfa52,0xfa53,0xfa54,0xfa55,0xfa56,0xfa57,0xfa58,0xfa59,0xfa5a,0xfa5b,0xfa5c,0xfa5d,0xfa5e, // 1010 0xfa5f,0xfa60,0xfa61,0xfa62,0xfa63,0xfa64,0xfa65,0xfa66,0xfa67,0xfa68,0xfa69,0xfa6a,0xfa6b,0xfa6d,0xfa70,0xfa71, // 1020 0xfa72,0xfa73,0xfa74,0xfa75,0xfa76,0xfa77,0xfa78,0xfa79,0xfa7a,0xfa7b,0xfa7c,0xfa7d,0xfa7e,0xfa7f,0xfa80,0xfa81, // 1030 0xfa82,0xfa83,0xfa84,0xfa85,0xfa86,0xfa87,0xfa88,0xfa89,0xfa8a,0xfa8b,0xfa8c,0xfa8d,0xfa8e,0xfa8f,0xfa90,0xfa91, // 1040 0xfa92,0xfa93,0xfa94,0xfa95,0xfa96,0xfa97,0xfa98,0xfa99,0xfa9a,0xfa9b,0xfa9c,0xfa9d,0xfa9e,0xfa9f,0xfaa0,0xfaa1, // 1050 0xfaa2,0xfaa3,0xfaa4,0xfaa5,0xfaa6,0xfaa7,0xfaa8,0xfaa9,0xfaaa,0xfaab,0xfaac,0xfaad,0xfaae,0xfaaf,0xfab0,0xfab1, // 1060 0xfab2,0xfab3,0xfab4,0xfab5,0xfab6,0xfab7,0xfab8,0xfab9,0xfaba,0xfabb,0xfabc,0xfabd,0xfabe,0xfabf,0xfac0,0xfac1, // 1070 0xfac2,0xfac3,0xfac4,0xfac5,0xfac6,0xfac7,0xfac8,0xfac9,0xfaca,0xfacb,0xfacc,0xfacd,0xface,0xfad2,0xfad3,0xfad4, // 1080 0xfad8,0xfad9,0xfb00,0xfb01,0xfb02,0xfb05,0xfb06,0xfb1d,0xfb1e,0xfb20,0xfb21,0xfb22,0xfb23,0xfb24,0xfb25,0xfb26, // 1090 0xfb27,0xfb28,0xfb29,0xfb2a,0xfb2b,0xfb2c,0xfb2d,0xfb2e,0xfb2f,0xfb30,0xfb31,0xfb32,0xfb33,0xfb34,0xfb35,0xfb36, // 10a0 0xfb38,0xfb39,0xfb3a,0xfb3b,0xfb3c,0xfb3e,0xfb40,0xfb41,0xfb43,0xfb44,0xfb46,0xfb47,0xfb48,0xfb49,0xfb4a,0xfb4b, // 10b0 0xfb4c,0xfb4d,0xfb4e,0xfb50,0xfb51,0xfb52,0xfb53,0xfb54,0xfb55,0xfb56,0xfb57,0xfb58,0xfb59,0xfb5a,0xfb5b,0xfb5c, // 10c0 0xfb5d,0xfb5e,0xfb5f,0xfb60,0xfb61,0xfb62,0xfb63,0xfb64,0xfb65,0xfb66,0xfb67,0xfb68,0xfb69,0xfb6a,0xfb6b,0xfb6c, // 10d0 0xfb6d,0xfb6e,0xfb6f,0xfb70,0xfb71,0xfb72,0xfb73,0xfb74,0xfb75,0xfb76,0xfb77,0xfb78,0xfb79,0xfb7a,0xfb7b,0xfb7c, // 10e0 0xfb7d,0xfb7e,0xfb7f,0xfb80,0xfb81,0xfb82,0xfb83,0xfb84,0xfb85,0xfb86,0xfb87,0xfb88,0xfb89,0xfb8a,0xfb8b,0xfb8c, // 10f0 0xfb8d,0xfb8e,0xfb8f,0xfb90,0xfb91,0xfb92,0xfb93,0xfb94,0xfb95,0xfb96,0xfb97,0xfb98,0xfb99,0xfb9a,0xfb9b,0xfb9c, // 1100 0xfb9d,0xfb9e,0xfb9f,0xfba0,0xfba1,0xfba2,0xfba3,0xfba4,0xfba5,0xfba6,0xfba7,0xfba8,0xfba9,0xfbaa,0xfbab,0xfbac, // 1110 0xfbad,0xfbae,0xfbaf,0xfbb0,0xfbb1,0xfbd3,0xfbd4,0xfbd5,0xfbd6,0xfbd7,0xfbd8,0xfbd9,0xfbda,0xfbdb,0xfbdc,0xfbde, // 1120 0xfbdf,0xfbe0,0xfbe1,0xfbe2,0xfbe3,0xfbe4,0xfbe5,0xfbe6,0xfbe7,0xfbe8,0xfbe9,0xfbfc,0xfbfd,0xfbfe,0xfbff,0xfc5b, // 1130 0xfc5c,0xfc5d,0xfc90,0xfcd9,0xfd3c,0xfd3d,0xfe00,0xfe01,0xfe02,0xfe03,0xfe04,0xfe05,0xfe06,0xfe07,0xfe08,0xfe09, // 1140 0xfe0a,0xfe0b,0xfe0c,0xfe0d,0xfe0e,0xfe0f,0xfe10,0xfe11,0xfe12,0xfe13,0xfe14,0xfe15,0xfe16,0xfe20,0xfe21,0xfe22, // 1150 0xfe23,0xfe24,0xfe25,0xfe26,0xfe31,0xfe32,0xfe35,0xfe36,0xfe37,0xfe38,0xfe39,0xfe3a,0xfe3f,0xfe40,0xfe47,0xfe48, // 1160 0xfe50,0xfe51,0xfe52,0xfe54,0xfe55,0xfe56,0xfe57,0xfe58,0xfe59,0xfe5a,0xfe5b,0xfe5c,0xfe5d,0xfe5e,0xfe5f,0xfe60, // 1170 0xfe61,0xfe62,0xfe63,0xfe64,0xfe65,0xfe66,0xfe68,0xfe69,0xfe6a,0xfe6b,0xfe80,0xfe81,0xfe82,0xfe83,0xfe84,0xfe85, // 1180 0xfe86,0xfe87,0xfe88,0xfe89,0xfe8a,0xfe8b,0xfe8c,0xfe8d,0xfe8e,0xfe8f,0xfe90,0xfe91,0xfe92,0xfe93,0xfe94,0xfe95, // 1190 0xfe96,0xfe97,0xfe98,0xfe99,0xfe9a,0xfe9b,0xfe9c,0xfe9d,0xfe9e,0xfe9f,0xfea0,0xfea1,0xfea2,0xfea3,0xfea4,0xfea5, // 11a0 0xfea6,0xfea7,0xfea8,0xfea9,0xfeaa,0xfeab,0xfeac,0xfead,0xfeae,0xfeaf,0xfeb0,0xfeb1,0xfeb2,0xfeb3,0xfeb4,0xfeb5, // 11b0 0xfeb6,0xfeb7,0xfeb8,0xfeb9,0xfeba,0xfebb,0xfebc,0xfebd,0xfebe,0xfebf,0xfec0,0xfec1,0xfec2,0xfec3,0xfec4,0xfec5, // 11c0 0xfec6,0xfec7,0xfec8,0xfec9,0xfeca,0xfecb,0xfecc,0xfecd,0xfece,0xfecf,0xfed0,0xfed1,0xfed2,0xfed3,0xfed4,0xfed5, // 11d0 0xfed6,0xfed7,0xfed8,0xfed9,0xfeda,0xfedb,0xfedc,0xfedd,0xfede,0xfedf,0xfee0,0xfee1,0xfee2,0xfee3,0xfee4,0xfee5, // 11e0 0xfee6,0xfee7,0xfee8,0xfee9,0xfeea,0xfeeb,0xfeec,0xfeed,0xfeee,0xfeef,0xfef0,0xfef1,0xfef2,0xfef3,0xfef4,0xfeff, // 11f0 0xff01,0xff02,0xff03,0xff04,0xff05,0xff06,0xff07,0xff08,0xff09,0xff0a,0xff0b,0xff0c,0xff0d,0xff0e,0xff0f,0xff10, // 1200 0xff11,0xff12,0xff13,0xff14,0xff15,0xff16,0xff17,0xff18,0xff19,0xff1a,0xff1b,0xff1c,0xff1d,0xff1e,0xff1f,0xff20, // 1210 0xff21,0xff22,0xff23,0xff24,0xff25,0xff26,0xff27,0xff28,0xff29,0xff2a,0xff2b,0xff2c,0xff2d,0xff2e,0xff2f,0xff30, // 1220 0xff31,0xff32,0xff33,0xff34,0xff35,0xff36,0xff37,0xff38,0xff39,0xff3a,0xff3b,0xff3c,0xff3d,0xff3e,0xff3f,0xff40, // 1230 0xff41,0xff42,0xff43,0xff44,0xff45,0xff46,0xff47,0xff48,0xff49,0xff4a,0xff4b,0xff4c,0xff4d,0xff4e,0xff4f,0xff50, // 1240 0xff51,0xff52,0xff53,0xff54,0xff55,0xff56,0xff57,0xff58,0xff59,0xff5a,0xff5b,0xff5c,0xff5d,0xff5e,0xff5f,0xff60, // 1250 0xff61,0xff64,0xff66,0xff67,0xff68,0xff69,0xff6a,0xff6b,0xff6c,0xff6d,0xff6e,0xff6f,0xff71,0xff72,0xff73,0xff74, // 1260 0xff75,0xff76,0xff77,0xff78,0xff79,0xff7a,0xff7b,0xff7c,0xff7d,0xff7e,0xff7f,0xff80,0xff81,0xff82,0xff83,0xff84, // 1270 0xff85,0xff86,0xff87,0xff88,0xff89,0xff8a,0xff8b,0xff8c,0xff8d,0xff8e,0xff8f,0xff90,0xff91,0xff92,0xff93,0xff94, // 1280 0xff95,0xff96,0xff97,0xff98,0xff99,0xff9a,0xff9b,0xff9c,0xff9d,0xffa0,0xffa1,0xffa2,0xffa3,0xffa4,0xffa5,0xffa6, // 1290 0xffa7,0xffa8,0xffa9,0xffaa,0xffab,0xffac,0xffad,0xffae,0xffaf,0xffb0,0xffb1,0xffb2,0xffb3,0xffb4,0xffb5,0xffb6, // 12a0 0xffb7,0xffb8,0xffb9,0xffba,0xffbb,0xffbc,0xffbd,0xffbe,0xffc2,0xffc3,0xffc4,0xffc5,0xffc6,0xffc7,0xffca,0xffcb, // 12b0 0xffcc,0xffcd,0xffce,0xffcf,0xffd2,0xffd3,0xffd4,0xffd5,0xffd6,0xffd7,0xffda,0xffdb,0xffdc,0xffe0,0xffe1,0xffe2, // 12c0 0xffe3,0xffe4,0xffe5,0xffe6,0xffe8,0xffe9,0xffea,0xffeb,0xffec,0xffed,0xffee,0xfff9,0xfffa,0xfffb, // 12d0 }; WORD utf8_nonascii_unicode_to_decomposition_nodiacritics_values[UTF8_NONASCII_UNICODE_TO_DECOMPOSITION_NODIACRITICS_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0000 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0010 0x0020,0x0061,0x003c,0x002d,0x0032,0x0033,0x03bc,0x002e,0x002c,0x0031,0x006f,0x003e,0x0041,0x0041,0x0041,0x0041, // 0020 0x0041,0x0041,0x0300,0x0043,0x0045,0x0045,0x0045,0x0045,0x0049,0x0049,0x0049,0x0049,0x0044,0x004e,0x004f,0x004f, // 0030 0x004f,0x004f,0x004f,0x004f,0x0055,0x0055,0x0055,0x0055,0x0059,0x0301,0x0302,0x0061,0x0061,0x0061,0x0061,0x0061, // 0040 0x0061,0x0303,0x0063,0x0065,0x0065,0x0065,0x0065,0x0069,0x0069,0x0069,0x0069,0x0064,0x006e,0x006f,0x006f,0x006f, // 0050 0x006f,0x006f,0x006f,0x0075,0x0075,0x0075,0x0075,0x0079,0x0304,0x0079,0x0041,0x0061,0x0041,0x0061,0x0041,0x0061, // 0060 0x0043,0x0063,0x0043,0x0063,0x0043,0x0063,0x0043,0x0063,0x0044,0x0064,0x0044,0x0064,0x0045,0x0065,0x0045,0x0065, // 0070 0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0047,0x0067,0x0047,0x0067,0x0047,0x0067,0x0047,0x0067,0x0048,0x0068, // 0080 0x0048,0x0068,0x0049,0x0069,0x0049,0x0069,0x0049,0x0069,0x0049,0x0069,0x0049,0x0069,0x0305,0x0306,0x004a,0x006a, // 0090 0x004b,0x006b,0x0071,0x004c,0x006c,0x004c,0x006c,0x004c,0x006c,0x004c,0x006c,0x004c,0x006c,0x004e,0x006e,0x004e, // 00a0 0x006e,0x004e,0x006e,0x006e,0x004e,0x006e,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x0307,0x0308,0x0052,0x0072, // 00b0 0x0052,0x0072,0x0052,0x0072,0x0053,0x0073,0x0053,0x0073,0x0053,0x0073,0x0053,0x0073,0x0054,0x0074,0x0054,0x0074, // 00c0 0x0054,0x0074,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0057,0x0077, // 00d0 0x0059,0x0079,0x0059,0x005a,0x007a,0x005a,0x007a,0x005a,0x007a,0x0073,0x0062,0x0042,0x0042,0x0062,0x0042,0x0062, // 00e0 0x0043,0x0043,0x0063,0x0044,0x0044,0x0044,0x0064,0x0064,0x0045,0x0045,0x0045,0x0046,0x0066,0x0047,0x0047,0x0309, // 00f0 0x0049,0x0049,0x004b,0x006b,0x006c,0x006c,0x004d,0x004e,0x006e,0x004f,0x004f,0x006f,0x030a,0x030b,0x0050,0x0070, // 0100 0x0053,0x0073,0x0053,0x0073,0x0074,0x0054,0x0074,0x0054,0x0055,0x0075,0x0055,0x0056,0x0059,0x0079,0x005a,0x007a, // 0110 0x030c,0x0077,0x030d,0x030e,0x030f,0x0310,0x0311,0x0312,0x0313,0x0314,0x0315,0x0041,0x0061,0x0049,0x0069,0x004f, // 0120 0x006f,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0065,0x0041,0x0061,0x0041,0x0061, // 0130 0x0316,0x0317,0x0047,0x0067,0x0047,0x0067,0x004b,0x006b,0x004f,0x006f,0x004f,0x006f,0x01b7,0x0292,0x006a,0x0318, // 0140 0x0319,0x031a,0x0047,0x0067,0x0057,0x004e,0x006e,0x0041,0x0061,0x031b,0x031c,0x004f,0x006f,0x0041,0x0061,0x0041, // 0150 0x0061,0x0045,0x0065,0x0045,0x0065,0x0049,0x0069,0x0049,0x0069,0x004f,0x006f,0x004f,0x006f,0x0052,0x0072,0x0052, // 0160 0x0072,0x0055,0x0075,0x0055,0x0075,0x0053,0x0073,0x0054,0x0074,0x0045,0x0065,0x0048,0x0068,0x004e,0x0064,0x005a, // 0170 0x007a,0x0041,0x0061,0x0045,0x0065,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x0059,0x0079,0x006c, // 0180 0x006e,0x0074,0x006a,0x031d,0x031e,0x0041,0x0043,0x0063,0x004c,0x0054,0x0073,0x007a,0x0042,0x0055,0x0056,0x0045, // 0190 0x0065,0x004a,0x006a,0x0051,0x0071,0x0052,0x0072,0x0059,0x0079,0x0061,0x0061,0x0061,0x0062,0x0063,0x0063,0x0064, // 01a0 0x0064,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x0065,0x006a,0x0067,0x0067,0x0047,0x0067,0x0067,0x0068,0x0068, // 01b0 0x0068,0x0069,0x0069,0x0049,0x006c,0x006c,0x006c,0x006c,0x006d,0x006d,0x006d,0x006e,0x006e,0x004e,0x006f,0x031f, // 01c0 0x006f,0x0070,0x0072,0x0072,0x0072,0x0072,0x0072,0x0072,0x0072,0x0052,0x0073,0x0073,0x006a,0x0073,0x0073,0x0074, // 01d0 0x0074,0x0075,0x0075,0x0076,0x0076,0x0077,0x0079,0x0059,0x007a,0x007a,0x0063,0x0042,0x0065,0x0047,0x0048,0x006a, // 01e0 0x006b,0x004c,0x0071,0x0320,0x0064,0x0321,0x0322,0x0074,0x0074,0x0323,0x0324,0x0325,0x0068,0x0068,0x006a,0x0072, // 01f0 0x0072,0x0072,0x0077,0x0079,0x0027,0x0022,0x0027,0x0027,0x0027,0x003c,0x003e,0x005e,0x005e,0x0027,0x0060,0x005f, // 0200 0x003a,0x007e,0x0067,0x006c,0x0073,0x0078,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0210 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0220 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0230 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0240 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0250 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0260 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0270 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x00b4,0x00a8,0x0391,0x0395,0x0397,0x0399,0x039f,0x03a5,0x03a9,0x03b9, // 0280 0x0399,0x03a5,0x03b1,0x03b5,0x03b7,0x03b9,0x03c5,0x03c3,0x03b9,0x03c5,0x03bf,0x03c5,0x03c9,0x03b2,0x03b8,0x03a5, // 0290 0x03a5,0x03a5,0x03c6,0x03c0,0x03ba,0x03c1,0x03c3,0x0398,0x03b5,0x03a3,0x0415,0x0415,0x0413,0x0406,0x041a,0x0418, // 02a0 0x0423,0x0418,0x0438,0x0435,0x0435,0x0433,0x0456,0x043a,0x0438,0x0443,0x0474,0x0475,0x036f,0x036f,0x036f,0x036f, // 02b0 0x036f,0x036f,0x036f,0x0413,0x0433,0x0416,0x0436,0x0410,0x0430,0x0410,0x0430,0x0415,0x0435,0x04d8,0x04d9,0x0416, // 02c0 0x0436,0x0417,0x0437,0x0418,0x0438,0x0418,0x0438,0x041e,0x043e,0x04e8,0x04e9,0x042d,0x044d,0x0423,0x0443,0x0423, // 02d0 0x0443,0x0423,0x0443,0x0427,0x0447,0x042b,0x044b,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 02e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 02f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0300 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x05db,0x05de,0x05e0,0x05e4,0x05e6,0x036f, // 0310 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0320 0x0627,0x0627,0x0648,0x0627,0x064a,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0330 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0621,0x06d5,0x06c1,0x06d2,0x036f, // 0340 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0350 0x036f,0x036f,0x036f,0x0621,0x0645,0x036f,0x036f,0x0713,0x071b,0x0723,0x0726,0x0712,0x0713,0x0715,0x036f,0x036f, // 0360 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0370 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0380 0x036f,0x036f,0x036f,0x036f,0x07d6,0x07d7,0x07d9,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0390 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0627,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03b0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03c0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0928,0x0930,0x0933,0x036f,0x036f,0x036f,0x036f,0x036f, // 03d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 03e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0915,0x0916,0x0917,0x091c,0x0921,0x0922,0x092b,0x092f,0x036f, // 03f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0400 0x036f,0x09a4,0x036f,0x09a1,0x09a2,0x09af,0x036f,0x036f,0x036f,0x036f,0x036f,0x0a32,0x0a38,0x036f,0x036f,0x036f, // 0410 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0a16,0x0a17,0x0a1c,0x0a2b,0x036f,0x036f,0x036f, // 0420 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0430 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0440 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0b21,0x0b22,0x036f,0x036f,0x036f,0x0b92,0x036f,0x036f,0x036f,0x036f, // 0450 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0460 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0470 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0480 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0490 0x036f,0x036f,0x036f,0x0d30,0x0d2e,0x0d2f,0x0d34,0x036f,0x036f,0x036f,0x0d23,0x0d28,0x0d30,0x0d32,0x0d33,0x0d15, // 04a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 04b0 0x036f,0x036f,0x036f,0x036f,0x036f,0x0e32,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 04c0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0eb2,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 04d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x0f68,0x036f,0x036f,0x0f21,0x0f22,0x0f23,0x0f24,0x0f25,0x0f26,0x0f27,0x0f28, // 04e0 0x0f29,0x0f20,0x036f,0x036f,0x036f,0x036f,0x036f,0x0f42,0x0f4c,0x0f51,0x0f56,0x0f5b,0x0f40,0x0f62,0x036f,0x036f, // 04f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0500 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0510 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0520 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0530 0x036f,0x036f,0x036f,0x036f,0x1025,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0540 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0550 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0560 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0570 0x036f,0x036f,0x0020,0x16a0,0x16a2,0x16a2,0x16a6,0x16a8,0x16a8,0x16a8,0x16a8,0x16b2,0x16b2,0x16b2,0x16b2,0x16ba, // 0580 0x16ba,0x16ba,0x16be,0x16be,0x16c1,0x16c3,0x16c5,0x16ca,0x16ca,0x16ca,0x16ca,0x16cf,0x16cf,0x16d2,0x16d2,0x16c8, // 0590 0x16d7,0x16d7,0x16da,0x16dc,0x16e6,0x16e6,0x16b9,0x16ca,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05b0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05c0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1908,0x190b,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05d0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05e0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 05f0 0x036f,0x036f,0x036f,0x036f,0x036f,0x199c,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0600 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0610 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0620 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1b05,0x1b07,0x1b09,0x1b0b,0x1b0d,0x1b11,0x036f,0x036f, // 0630 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0640 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0650 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1b83,0x1b8a,0x1b99,0x1bc0,0x1bc2,0x1bc2,0x1bc5,0x1bc7, // 0660 0x1bc9,0x1bcb,0x1bcb,0x1bce,0x1bd2,0x1bd4,0x1bd6,0x1bd8,0x1bd8,0x1bdb,0x1bde,0x036f,0x036f,0x036f,0x036f,0x036f, // 0670 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0680 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0432,0x0434,0x043e, // 0690 0x0441,0x0442,0x0442,0x044a,0x0463,0xa64b,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 06a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x1ce9,0x1ce9, // 06b0 0x1ce9,0x036f,0x1ce9,0x1ce9,0x1ce9,0x1ce9,0x036f,0x036f,0x036f,0x0041,0x0326,0x0327,0x0042,0x0043,0x0044,0x0044, // 06c0 0x0045,0x0069,0x004a,0x004b,0x004c,0x004d,0x004f,0x006f,0x006f,0x006f,0x006f,0x006f,0x0050,0x0054,0x0055,0x006d, // 06d0 0x0056,0x0057,0x005a,0x0062,0x0069,0x0328,0x0062,0x0064,0x0066,0x006d,0x006e,0x0070,0x0072,0x0072,0x0073,0x0074, // 06e0 0x007a,0x0067,0x0067,0x0329,0x0049,0x0069,0x0070,0x0055,0x0075,0x0062,0x0064,0x0066,0x0067,0x006b,0x006c,0x006d, // 06f0 0x006e,0x0070,0x0072,0x0073,0x0073,0x0076,0x0078,0x007a,0x0061,0x0064,0x0065,0x0065,0x0065,0x0069,0x0063,0x0073, // 0700 0x0075,0x0065,0x0063,0x0064,0x0065,0x0066,0x006a,0x0067,0x0068,0x0069,0x0049,0x006a,0x004c,0x006d,0x006e,0x0073, // 0710 0x0074,0x0076,0x007a,0x007a,0x0065,0x0074,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0720 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0730 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0061,0x0062,0xa7b5, // 0740 0x0065,0x0066,0xab38,0x006f,0x0070,0x0073,0x0075,0x0077,0x0061,0x006f,0x0075,0x036f,0x036f,0x036f,0x036f,0x0041, // 0750 0x0061,0x0042,0x0062,0x0042,0x0062,0x0042,0x0062,0x0043,0x0063,0x0044,0x0064,0x0044,0x0064,0x0044,0x0064,0x0044, // 0760 0x0064,0x0044,0x0064,0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0046,0x0066,0x0047, // 0770 0x0067,0x0048,0x0068,0x0048,0x0068,0x0048,0x0068,0x0048,0x0068,0x0048,0x0068,0x0049,0x0069,0x0049,0x0069,0x004b, // 0780 0x006b,0x004b,0x006b,0x004b,0x006b,0x004c,0x006c,0x004c,0x006c,0x004c,0x006c,0x004c,0x006c,0x004d,0x006d,0x004d, // 0790 0x006d,0x004d,0x006d,0x004e,0x006e,0x004e,0x006e,0x004e,0x006e,0x004e,0x006e,0x004f,0x006f,0x004f,0x006f,0x004f, // 07a0 0x006f,0x004f,0x006f,0x0050,0x0070,0x0050,0x0070,0x0052,0x0072,0x0052,0x0072,0x0052,0x0072,0x0052,0x0072,0x0053, // 07b0 0x0073,0x0053,0x0073,0x0053,0x0073,0x0053,0x0073,0x0053,0x0073,0x0054,0x0074,0x0054,0x0074,0x0054,0x0074,0x0054, // 07c0 0x0074,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0056,0x0076,0x0056,0x0076,0x0057, // 07d0 0x0077,0x0057,0x0077,0x0057,0x0077,0x0057,0x0077,0x0057,0x0077,0x0058,0x0078,0x0058,0x0078,0x0059,0x0079,0x005a, // 07e0 0x007a,0x005a,0x007a,0x005a,0x007a,0x0068,0x0074,0x0077,0x0079,0x0061,0x0073,0x0073,0x0073,0x032a,0x0041,0x0061, // 07f0 0x0041,0x0061,0x0041,0x0061,0x0041,0x0061,0x0041,0x0061,0x0041,0x0061,0x0041,0x0061,0x0041,0x0061,0x0041,0x0061, // 0800 0x0041,0x0061,0x0041,0x0061,0x0041,0x0061,0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0045,0x0065, // 0810 0x0045,0x0065,0x0045,0x0065,0x0045,0x0065,0x0049,0x0069,0x0049,0x0069,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f, // 0820 0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f,0x004f,0x006f, // 0830 0x004f,0x006f,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075,0x0055,0x0075, // 0840 0x0059,0x0079,0x0059,0x0079,0x0059,0x0079,0x0059,0x0079,0x032b,0x032c,0x0056,0x0076,0x0059,0x0079,0x03b1,0x03b1, // 0850 0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x0391,0x0391,0x0391,0x0391,0x0391,0x0391,0x0391,0x0391,0x03b5,0x03b5, // 0860 0x03b5,0x03b5,0x03b5,0x03b5,0x0395,0x0395,0x0395,0x0395,0x0395,0x0395,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7, // 0870 0x03b7,0x03b7,0x0397,0x0397,0x0397,0x0397,0x0397,0x0397,0x0397,0x0397,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9,0x03b9, // 0880 0x03b9,0x03b9,0x0399,0x0399,0x0399,0x0399,0x0399,0x0399,0x0399,0x0399,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf,0x03bf, // 0890 0x039f,0x039f,0x039f,0x039f,0x039f,0x039f,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03c5,0x03a5,0x03a5, // 08a0 0x03a5,0x03a5,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03a9,0x03a9,0x03a9,0x03a9,0x03a9,0x03a9, // 08b0 0x03a9,0x03a9,0x03b1,0x03b1,0x03b5,0x03b5,0x03b7,0x03b7,0x03b9,0x03b9,0x03bf,0x03bf,0x03c5,0x03c5,0x03c9,0x03c9, // 08c0 0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x0391,0x0391,0x0391,0x0391,0x0391,0x0391,0x0391,0x0391, // 08d0 0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x03b7,0x0397,0x0397,0x0397,0x0397,0x0397,0x0397,0x0397,0x0397, // 08e0 0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x03a9,0x03a9,0x03a9,0x03a9,0x03a9,0x03a9,0x03a9,0x03a9, // 08f0 0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x03b1,0x0391,0x0391,0x0391,0x0391,0x0391,0x1fbf,0x03b9,0x00a8,0x03b7, // 0900 0x03b7,0x03b7,0x03b7,0x03b7,0x0395,0x0395,0x0397,0x0397,0x0397,0x1fbf,0x1fbf,0x1fbf,0x03b9,0x03b9,0x03b9,0x03b9, // 0910 0x03b9,0x03b9,0x0399,0x0399,0x0399,0x0399,0x1ffe,0x1ffe,0x1ffe,0x03c5,0x03c5,0x03c5,0x03c5,0x03c1,0x03c1,0x03c5, // 0920 0x03c5,0x03a5,0x03a5,0x03a5,0x03a5,0x03a1,0x00a8,0x00a8,0x0060,0x03c9,0x03c9,0x03c9,0x03c9,0x03c9,0x039f,0x039f, // 0930 0x03a9,0x03a9,0x03a9,0x00b4,0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x0020,0x036f, // 0940 0x036f,0x036f,0x036f,0x036f,0x002d,0x002d,0x002d,0x002d,0x002d,0x002d,0x0027,0x0027,0x002c,0x0027,0x0022,0x0022, // 0950 0x0022,0x0022,0x002e,0x002e,0x036f,0x036f,0x036f,0x036f,0x036f,0x0020,0x0027,0x0022,0x0060,0x003c,0x003e,0x002f, // 0960 0x005b,0x005d,0x0020,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0970 0x036f,0x036f,0x0030,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x002b,0x2212,0x003d,0x0030,0x0031,0x0032,0x0033, // 0980 0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x002b,0x2212,0x003d,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0990 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 09a0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x0043,0x0043,0x0045,0x0046,0x0067,0x0048, // 09b0 0x0048,0x0048,0x0068,0x0068,0x0049,0x0049,0x004c,0x006c,0x004e,0x0050,0x0050,0x0051,0x0052,0x0052,0x0052,0x005a, // 09c0 0x005a,0x03a9,0x005a,0x004b,0x0041,0x0042,0x0043,0x0065,0x0065,0x0045,0x0046,0x0046,0x004d,0x006f,0x05d0,0x05d1, // 09d0 0x05d2,0x05d3,0x0069,0x0051,0x03c0,0x03b3,0x0393,0x03a0,0x0065,0x0047,0x004c,0x004c,0x0059,0x0044,0x0064,0x0065, // 09e0 0x0069,0x006a,0x0066,0x0049,0x0056,0x0058,0x004c,0x0043,0x0044,0x004d,0x0069,0x0076,0x0078,0x006c,0x0063,0x0064, // 09f0 0x006d,0x2190,0x2192,0x2194,0x21d0,0x21d4,0x21d2,0x2203,0x2208,0x220b,0x2223,0x2225,0x223c,0x2243,0x2245,0x2248, // 0a00 0x003d,0x2261,0x224d,0x003c,0x003e,0x2264,0x2265,0x2272,0x2273,0x2276,0x2277,0x227a,0x227b,0x2282,0x2283,0x2286, // 0a10 0x2287,0x22a2,0x22a8,0x22a9,0x22ab,0x227c,0x227d,0x2291,0x2292,0x22b2,0x22b3,0x22b4,0x22b5,0x0031,0x0032,0x0033, // 0a20 0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0031, // 0a30 0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,0x0068, // 0a40 0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070,0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,0x0078, // 0a50 0x0079,0x007a,0x0041,0x0042,0x0043,0x0044,0x0045,0x0046,0x0047,0x0048,0x0049,0x004a,0x004b,0x004c,0x004d,0x004e, // 0a60 0x004f,0x0050,0x0051,0x0052,0x0053,0x0054,0x0055,0x0056,0x0057,0x0058,0x0059,0x005a,0x0061,0x0062,0x0063,0x0064, // 0a70 0x0065,0x0066,0x0067,0x0068,0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070,0x0071,0x0072,0x0073,0x0074, // 0a80 0x0075,0x0076,0x0077,0x0078,0x0079,0x007a,0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039, // 0a90 0x0030,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036, // 0aa0 0x0037,0x0038,0x0039,0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x003d,0x2add,0x004c,0x006c, // 0ab0 0x004c,0x0050,0x0052,0x0061,0x0074,0x0048,0x0068,0x004b,0x006b,0x005a,0x007a,0x0041,0x004d,0x0041,0x0076,0x0057, // 0ac0 0x0077,0x0076,0x0070,0x0065,0x006f,0x0053,0x005a,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0ad0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0ae0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x4e36,0x5382,0x4e5b,0x4e5a,0x4e59, // 0af0 0x4ebb,0x5182,0x51e0,0x5200,0x5202,0x535c,0x5369,0x5c0f,0x5c0f,0x5c22,0x5c23,0x5c22,0x5c23,0x5df3,0x5e7a,0x5f51, // 0b00 0x5f50,0x5fc4,0x5fc3,0x624c,0x6535,0x65e1,0x65e5,0x6708,0x6b7a,0x6bcd,0x6c11,0x6c35,0x6c3a,0x706c,0x722b,0x722b, // 0b10 0x4e2c,0x725b,0x72ad,0x738b,0x758b,0x76ee,0x793a,0x793b,0x7af9,0x7cf9,0x7e9f,0x7f53,0x7f52,0x7f53,0x7f53,0x7f52, // 0b20 0x7f8a,0x7f8a,0x7f8b,0x8002,0x8080,0x807f,0x8089,0x81fc,0x8279,0x8279,0x8279,0x864e,0x8864,0x8980,0x897f,0x89c1, // 0b30 0x89d2,0x89d2,0x8ba0,0x8d1d,0x8db3,0x8f66,0x8fb6,0x8fb6,0x8fb6,0x9091,0x9485,0x9577,0x9578,0x957f,0x95e8,0x961c, // 0b40 0x961d,0x96e8,0x9752,0x97e6,0x9875,0x98ce,0x98de,0x98df,0x98e0,0x98e0,0x9963,0x9996,0x9a6c,0x9aa8,0x9b3c,0x9c7c, // 0b50 0x9e1f,0x9e75,0x9ea6,0x9ec4,0x9efe,0x9f4a,0x9f50,0x9f52,0x9f7f,0x9f8d,0x9f99,0x9f9c,0x9f9c,0x9f9f,0x4e00,0x4e28, // 0b60 0x4e36,0x4e3f,0x4e59,0x4e85,0x4e8c,0x4ea0,0x4eba,0x513f,0x5165,0x516b,0x5182,0x5196,0x51ab,0x51e0,0x51f5,0x5200, // 0b70 0x529b,0x52f9,0x5315,0x531a,0x5338,0x5341,0x535c,0x5369,0x5382,0x53b6,0x53c8,0x53e3,0x56d7,0x571f,0x58eb,0x5902, // 0b80 0x590a,0x5915,0x5927,0x5973,0x5b50,0x5b80,0x5bf8,0x5c0f,0x5c22,0x5c38,0x5c6e,0x5c71,0x5ddb,0x5de5,0x5df1,0x5dfe, // 0b90 0x5e72,0x5e7a,0x5e7f,0x5ef4,0x5efe,0x5f0b,0x5f13,0x5f50,0x5f61,0x5f73,0x5fc3,0x6208,0x6236,0x624b,0x652f,0x6534, // 0ba0 0x6587,0x6597,0x65a4,0x65b9,0x65e0,0x65e5,0x66f0,0x6708,0x6728,0x6b20,0x6b62,0x6b79,0x6bb3,0x6bcb,0x6bd4,0x6bdb, // 0bb0 0x6c0f,0x6c14,0x6c34,0x706b,0x722a,0x7236,0x723b,0x723f,0x7247,0x7259,0x725b,0x72ac,0x7384,0x7389,0x74dc,0x74e6, // 0bc0 0x7518,0x751f,0x7528,0x7530,0x758b,0x7592,0x7676,0x767d,0x76ae,0x76bf,0x76ee,0x77db,0x77e2,0x77f3,0x793a,0x79b8, // 0bd0 0x79be,0x7a74,0x7acb,0x7af9,0x7c73,0x7cf8,0x7f36,0x7f51,0x7f8a,0x7fbd,0x8001,0x800c,0x8012,0x8033,0x807f,0x8089, // 0be0 0x81e3,0x81ea,0x81f3,0x81fc,0x820c,0x821b,0x821f,0x826e,0x8272,0x8278,0x864d,0x866b,0x8840,0x884c,0x8863,0x897e, // 0bf0 0x898b,0x89d2,0x8a00,0x8c37,0x8c46,0x8c55,0x8c78,0x8c9d,0x8d64,0x8d70,0x8db3,0x8eab,0x8eca,0x8f9b,0x8fb0,0x8fb5, // 0c00 0x9091,0x9149,0x91c6,0x91cc,0x91d1,0x9577,0x9580,0x961c,0x96b6,0x96b9,0x96e8,0x9751,0x975e,0x9762,0x9769,0x97cb, // 0c10 0x97ed,0x97f3,0x9801,0x98a8,0x98db,0x98df,0x9996,0x9999,0x99ac,0x9aa8,0x9ad8,0x9adf,0x9b25,0x9b2f,0x9b32,0x9b3c, // 0c20 0x9b5a,0x9ce5,0x9e75,0x9e7f,0x9ea5,0x9ebb,0x9ec3,0x9ecd,0x9ed1,0x9ef9,0x9efd,0x9f0e,0x9f13,0x9f20,0x9f3b,0x9f4a, // 0c30 0x9f52,0x9f8d,0x9f9c,0x9fa0,0x0020,0x002c,0x002e,0x0030,0x003c,0x003e,0x005b,0x005d,0x005b,0x005d,0x005b,0x005d, // 0c40 0x0022,0x0022,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x3012,0x5341,0x5344,0x5345,0x304b,0x304d,0x304f,0x3051, // 0c50 0x3053,0x3055,0x3057,0x3059,0x305b,0x305d,0x305f,0x3061,0x3064,0x3066,0x3068,0x306f,0x306f,0x3072,0x3072,0x3075, // 0c60 0x3075,0x3078,0x3078,0x307b,0x307b,0x3046,0x036f,0x036f,0x30ab,0x30ad,0x30af,0x30b1,0x30b3,0x30b5,0x30b7,0x30b9, // 0c70 0x30bb,0x30bd,0x30bf,0x30c1,0x30c4,0x30c6,0x30c8,0x30cf,0x30cf,0x30d2,0x30d2,0x30d5,0x30d5,0x30d8,0x30d8,0x30db, // 0c80 0x30db,0x30a6,0x30ef,0x30f0,0x30f1,0x30f2,0x311c,0x1100,0x1101,0x11aa,0x1102,0x11ac,0x11ad,0x1103,0x1104,0x1105, // 0c90 0x11b0,0x11b1,0x11b2,0x11b3,0x11b4,0x11b5,0x111a,0x1106,0x1107,0x1108,0x1121,0x1109,0x110a,0x110b,0x110c,0x110d, // 0ca0 0x110e,0x110f,0x1110,0x1111,0x1112,0x1161,0x1162,0x1163,0x1164,0x1165,0x1166,0x1167,0x1168,0x1169,0x116a,0x116b, // 0cb0 0x116c,0x116d,0x116e,0x116f,0x1170,0x1171,0x1172,0x1173,0x1174,0x1175,0x1160,0x1114,0x1115,0x11c7,0x11c8,0x11cc, // 0cc0 0x11ce,0x11d3,0x11d7,0x11d9,0x111c,0x11dd,0x11df,0x111d,0x111e,0x1120,0x1122,0x1123,0x1127,0x1129,0x112b,0x112c, // 0cd0 0x112d,0x112e,0x112f,0x1132,0x1136,0x1140,0x1147,0x114c,0x11f1,0x11f2,0x1157,0x1158,0x1159,0x1184,0x1185,0x1188, // 0ce0 0x1191,0x1192,0x1194,0x119e,0x11a1,0x4e00,0x4e8c,0x4e09,0x56db,0x4e0a,0x4e2d,0x4e0b,0x7532,0x4e59,0x4e19,0x4e01, // 0cf0 0x5929,0x5730,0x4eba,0x3105,0x3117,0x3110,0x310d,0x31a4,0x311b,0x3128,0x311a,0x3127,0x3128,0x311e,0x3120,0x3127, // 0d00 0x3106,0x310a,0x310e,0x310f,0x1100,0x1102,0x1103,0x1105,0x1106,0x1107,0x1109,0x110b,0x110c,0x110e,0x110f,0x1110, // 0d10 0x1111,0x1112,0x4e00,0x4e8c,0x4e09,0x56db,0x4e94,0x516d,0x4e03,0x516b,0x4e5d,0x5341,0x6708,0x706b,0x6c34,0x6728, // 0d20 0x91d1,0x571f,0x65e5,0x682a,0x6709,0x793e,0x540d,0x7279,0x8ca1,0x795d,0x52b4,0x4ee3,0x547c,0x5b66,0x76e3,0x4f01, // 0d30 0x8cc7,0x5354,0x796d,0x4f11,0x81ea,0x81f3,0x554f,0x5e7c,0x6587,0x7b8f,0x1100,0x1102,0x1103,0x1105,0x1106,0x1107, // 0d40 0x1109,0x110b,0x110c,0x110e,0x110f,0x1110,0x1111,0x1112,0x4e00,0x4e8c,0x4e09,0x56db,0x4e94,0x516d,0x4e03,0x516b, // 0d50 0x4e5d,0x5341,0x6708,0x706b,0x6c34,0x6728,0x91d1,0x571f,0x65e5,0x682a,0x6709,0x793e,0x540d,0x7279,0x8ca1,0x795d, // 0d60 0x52b4,0x79d8,0x7537,0x5973,0x9069,0x512a,0x5370,0x6ce8,0x9805,0x4f11,0x5199,0x6b63,0x4e0a,0x4e2d,0x4e0b,0x5de6, // 0d70 0x53f3,0x533b,0x5b97,0x5b66,0x76e3,0x4f01,0x8cc7,0x5354,0x591c,0x30a2,0x30a4,0x30a6,0x30a8,0x30aa,0x30ab,0x30ad, // 0d80 0x30af,0x30b1,0x30b3,0x30b5,0x30b7,0x30b9,0x30bb,0x30bd,0x30bf,0x30c1,0x30c4,0x30c6,0x30c8,0x30ca,0x30cb,0x30cc, // 0d90 0x30cd,0x30ce,0x30cf,0x30d2,0x30d5,0x30d8,0x30db,0x30de,0x30df,0x30e0,0x30e1,0x30e2,0x30e4,0x30e6,0x30e8,0x30e9, // 0da0 0x30ea,0x30eb,0x30ec,0x30ed,0x30ef,0x30f0,0x30f1,0x30f2,0xa558,0xa56a,0xa587,0xa547,0xa558,0xa55a,0xa5d1,0xa56e, // 0db0 0xa5d1,0x041e,0x043e,0x041e,0x043e,0x041e,0x043e,0x043e,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0dc0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x041e,0x043e,0x041e,0x043e,0x044a,0x044c,0x0444,0x036f,0x036f,0x036f, // 0dd0 0x032d,0x032e,0x0046,0x0053,0x032f,0x0330,0x0331,0x0332,0x0333,0x0334,0x0335,0x0336,0x0337,0x0338,0x0339,0x033a, // 0de0 0x0043,0x0063,0x004b,0x006b,0x004b,0x006b,0x004b,0x006b,0x004c,0x006c,0x004c,0x006c,0x004f,0x006f,0x004f,0x006f, // 0df0 0x033b,0x033c,0x0050,0x0070,0x0050,0x0070,0x0050,0x0070,0x0051,0x0071,0x0051,0x0071,0x0056,0x0076,0x033d,0x033e, // 0e00 0x033f,0x0340,0x0341,0x0342,0x0064,0x006c,0x006d,0x006e,0x0072,0x0052,0x0074,0x0044,0x0064,0x0046,0x0066,0x0047, // 0e10 0x0052,0x0072,0x0053,0x0073,0x0054,0x0074,0x004e,0x006e,0x0043,0x0063,0x0041,0x0061,0x004f,0x006f,0x0055,0x0075, // 0e20 0x0047,0x0067,0x004b,0x006b,0x004e,0x006e,0x0052,0x0072,0x0053,0x0073,0x0048,0x036f,0x036f,0x036f,0x036f,0x036f, // 0e30 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0e40 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0e50 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0xa8f2,0xa8f2,0xa8f2,0xa8f2,0xa8f2,0x036f,0x036f,0x036f, // 0e60 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0e70 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0xa9ab,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0e80 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0e90 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 0ea0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0xa727,0xab37,0x006c,0xab52,0x036f,0x036f,0x036f,0x036f,0x036f, // 0eb0 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x8c48,0x66f4,0x8eca, // 0ec0 0x8cc8,0x6ed1,0x4e32,0x53e5,0x9f9c,0x9f9c,0x5951,0x91d1,0x5587,0x5948,0x61f6,0x7669,0x7f85,0x863f,0x87ba,0x88f8, // 0ed0 0x908f,0x6a02,0x6d1b,0x70d9,0x73de,0x843d,0x916a,0x99f1,0x4e82,0x5375,0x6b04,0x721b,0x862d,0x9e1e,0x5d50,0x6feb, // 0ee0 0x85cd,0x8964,0x62c9,0x81d8,0x881f,0x5eca,0x6717,0x6d6a,0x72fc,0x90ce,0x4f86,0x51b7,0x52de,0x64c4,0x6ad3,0x7210, // 0ef0 0x76e7,0x8001,0x8606,0x865c,0x8def,0x9732,0x9b6f,0x9dfa,0x788c,0x797f,0x7da0,0x83c9,0x9304,0x9e7f,0x8ad6,0x58df, // 0f00 0x5f04,0x7c60,0x807e,0x7262,0x78ca,0x8cc2,0x96f7,0x58d8,0x5c62,0x6a13,0x6dda,0x6f0f,0x7d2f,0x7e37,0x964b,0x52d2, // 0f10 0x808b,0x51dc,0x51cc,0x7a1c,0x7dbe,0x83f1,0x9675,0x8b80,0x62cf,0x6a02,0x8afe,0x4e39,0x5be7,0x6012,0x7387,0x7570, // 0f20 0x5317,0x78fb,0x4fbf,0x5fa9,0x4e0d,0x6ccc,0x6578,0x7d22,0x53c3,0x585e,0x7701,0x8449,0x8aaa,0x6bba,0x8fb0,0x6c88, // 0f30 0x62fe,0x82e5,0x63a0,0x7565,0x4eae,0x5169,0x51c9,0x6881,0x7ce7,0x826f,0x8ad2,0x91cf,0x52f5,0x5442,0x5973,0x5eec, // 0f40 0x65c5,0x6ffe,0x792a,0x95ad,0x9a6a,0x9e97,0x9ece,0x529b,0x66c6,0x6b77,0x8f62,0x5e74,0x6190,0x6200,0x649a,0x6f23, // 0f50 0x7149,0x7489,0x79ca,0x7df4,0x806f,0x8f26,0x84ee,0x9023,0x934a,0x5217,0x52a3,0x54bd,0x70c8,0x88c2,0x8aaa,0x5ec9, // 0f60 0x5ff5,0x637b,0x6bae,0x7c3e,0x7375,0x4ee4,0x56f9,0x5be7,0x5dba,0x601c,0x73b2,0x7469,0x7f9a,0x8046,0x9234,0x96f6, // 0f70 0x9748,0x9818,0x4f8b,0x79ae,0x91b4,0x96b8,0x60e1,0x4e86,0x50da,0x5bee,0x5c3f,0x6599,0x6a02,0x71ce,0x7642,0x84fc, // 0f80 0x907c,0x9f8d,0x6688,0x962e,0x5289,0x677b,0x67f3,0x6d41,0x6e9c,0x7409,0x7559,0x786b,0x7d10,0x985e,0x516d,0x622e, // 0f90 0x9678,0x502b,0x5d19,0x6dea,0x8f2a,0x5f8b,0x6144,0x6817,0x7387,0x9686,0x5229,0x540f,0x5c65,0x6613,0x674e,0x68a8, // 0fa0 0x6ce5,0x7406,0x75e2,0x7f79,0x88cf,0x88e1,0x91cc,0x96e2,0x533f,0x6eba,0x541d,0x71d0,0x7498,0x85fa,0x96a3,0x9c57, // 0fb0 0x9e9f,0x6797,0x6dcb,0x81e8,0x7acb,0x7b20,0x7c92,0x72c0,0x7099,0x8b58,0x4ec0,0x8336,0x523a,0x5207,0x5ea6,0x62d3, // 0fc0 0x7cd6,0x5b85,0x6d1e,0x66b4,0x8f3b,0x884c,0x964d,0x898b,0x5ed3,0x5140,0x55c0,0x585a,0x6674,0x51de,0x732a,0x76ca, // 0fd0 0x793c,0x795e,0x7965,0x798f,0x9756,0x7cbe,0x7fbd,0x8612,0x8af8,0x9038,0x90fd,0x98ef,0x98fc,0x9928,0x9db4,0x90de, // 0fe0 0x96b7,0x4fae,0x50e7,0x514d,0x52c9,0x52e4,0x5351,0x559d,0x5606,0x5668,0x5840,0x58a8,0x5c64,0x5c6e,0x6094,0x6168, // 0ff0 0x618e,0x61f2,0x654f,0x65e2,0x6691,0x6885,0x6d77,0x6e1a,0x6f22,0x716e,0x722b,0x7422,0x7891,0x793e,0x7949,0x7948, // 1000 0x7950,0x7956,0x795d,0x798d,0x798e,0x7a40,0x7a81,0x7bc0,0x7df4,0x7e09,0x7e41,0x7f72,0x8005,0x81ed,0x8279,0x8279, // 1010 0x8457,0x8910,0x8996,0x8b01,0x8b39,0x8cd3,0x8d08,0x8fb6,0x9038,0x96e3,0x97ff,0x983b,0x6075,0x8218,0x4e26,0x51b5, // 1020 0x5168,0x4f80,0x5145,0x5180,0x52c7,0x52fa,0x559d,0x5555,0x5599,0x55e2,0x585a,0x58b3,0x5944,0x5954,0x5a62,0x5b28, // 1030 0x5ed2,0x5ed9,0x5f69,0x5fad,0x60d8,0x614e,0x6108,0x618e,0x6160,0x61f2,0x6234,0x63c4,0x641c,0x6452,0x6556,0x6674, // 1040 0x6717,0x671b,0x6756,0x6b79,0x6bba,0x6d41,0x6edb,0x6ecb,0x6f22,0x701e,0x716e,0x77a7,0x7235,0x72af,0x732a,0x7471, // 1050 0x7506,0x753b,0x761d,0x761f,0x76ca,0x76db,0x76f4,0x774a,0x7740,0x78cc,0x7ab1,0x7bc0,0x7c7b,0x7d5b,0x7df4,0x7f3e, // 1060 0x8005,0x8352,0x83ef,0x8779,0x8941,0x8986,0x8996,0x8abf,0x8af8,0x8acb,0x8b01,0x8afe,0x8aed,0x8b39,0x8b8a,0x8d08, // 1070 0x8f38,0x9072,0x9199,0x9276,0x967c,0x96e3,0x9756,0x97db,0x97ff,0x980b,0x983b,0x9b12,0x9f9c,0x3b9d,0x4018,0x4039, // 1080 0x9f43,0x9f8e,0x0343,0x0344,0x0345,0x0346,0x0347,0x05d9,0x036f,0x05e2,0x05d0,0x05d3,0x05d4,0x05db,0x05dc,0x05de, // 1090 0x05e8,0x05ea,0x002b,0x05e9,0x05e9,0x05e9,0x05e9,0x05d0,0x05d0,0x05d0,0x05d1,0x05d2,0x05d3,0x05d4,0x05d5,0x05d6, // 10a0 0x05d8,0x05d9,0x05db,0x05db,0x05dc,0x05de,0x05e0,0x05e1,0x05e4,0x05e4,0x05e6,0x05e7,0x05e8,0x05e9,0x05ea,0x05d5, // 10b0 0x05d1,0x05db,0x05e4,0x0671,0x0671,0x067b,0x067b,0x067b,0x067b,0x067e,0x067e,0x067e,0x067e,0x0680,0x0680,0x0680, // 10c0 0x0680,0x067a,0x067a,0x067a,0x067a,0x067f,0x067f,0x067f,0x067f,0x0679,0x0679,0x0679,0x0679,0x06a4,0x06a4,0x06a4, // 10d0 0x06a4,0x06a6,0x06a6,0x06a6,0x06a6,0x0684,0x0684,0x0684,0x0684,0x0683,0x0683,0x0683,0x0683,0x0686,0x0686,0x0686, // 10e0 0x0686,0x0687,0x0687,0x0687,0x0687,0x068d,0x068d,0x068c,0x068c,0x068e,0x068e,0x0688,0x0688,0x0698,0x0698,0x0691, // 10f0 0x0691,0x06a9,0x06a9,0x06a9,0x06a9,0x06af,0x06af,0x06af,0x06af,0x06b3,0x06b3,0x06b3,0x06b3,0x06b1,0x06b1,0x06b1, // 1100 0x06b1,0x06ba,0x06ba,0x06bb,0x06bb,0x06bb,0x06bb,0x06d5,0x06d5,0x06c1,0x06c1,0x06c1,0x06c1,0x06be,0x06be,0x06be, // 1110 0x06be,0x06d2,0x06d2,0x06d2,0x06d2,0x06ad,0x06ad,0x06ad,0x06ad,0x06c7,0x06c7,0x06c6,0x06c6,0x06c8,0x06c8,0x06cb, // 1120 0x06cb,0x06c5,0x06c5,0x06c9,0x06c9,0x06d0,0x06d0,0x06d0,0x06d0,0x0649,0x0649,0x06cc,0x06cc,0x06cc,0x06cc,0x0630, // 1130 0x0631,0x0649,0x0649,0x0647,0x0627,0x0627,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x036f, // 1140 0x036f,0x036f,0x036f,0x036f,0x036f,0x036f,0x002c,0x002c,0x002e,0x003a,0x003b,0x0021,0x003f,0x036f,0x036f,0x036f, // 1150 0x036f,0x036f,0x036f,0x036f,0x002d,0x002d,0x0028,0x0029,0x007b,0x007d,0x005b,0x005d,0x003c,0x003e,0x005b,0x005d, // 1160 0x002c,0x002c,0x002e,0x003b,0x003a,0x003f,0x0021,0x002d,0x0028,0x0029,0x007b,0x007d,0x005b,0x005d,0x0023,0x0026, // 1170 0x002a,0x002b,0x002d,0x003c,0x003e,0x003d,0x005c,0x0024,0x0025,0x0040,0x0621,0x0627,0x0627,0x0627,0x0627,0x0648, // 1180 0x0648,0x0627,0x0627,0x064a,0x064a,0x064a,0x064a,0x0627,0x0627,0x0628,0x0628,0x0628,0x0628,0x0629,0x0629,0x062a, // 1190 0x062a,0x062a,0x062a,0x062b,0x062b,0x062b,0x062b,0x062c,0x062c,0x062c,0x062c,0x062d,0x062d,0x062d,0x062d,0x062e, // 11a0 0x062e,0x062e,0x062e,0x062f,0x062f,0x0630,0x0630,0x0631,0x0631,0x0632,0x0632,0x0633,0x0633,0x0633,0x0633,0x0634, // 11b0 0x0634,0x0634,0x0634,0x0635,0x0635,0x0635,0x0635,0x0636,0x0636,0x0636,0x0636,0x0637,0x0637,0x0637,0x0637,0x0638, // 11c0 0x0638,0x0638,0x0638,0x0639,0x0639,0x0639,0x0639,0x063a,0x063a,0x063a,0x063a,0x0641,0x0641,0x0641,0x0641,0x0642, // 11d0 0x0642,0x0642,0x0642,0x0643,0x0643,0x0643,0x0643,0x0644,0x0644,0x0644,0x0644,0x0645,0x0645,0x0645,0x0645,0x0646, // 11e0 0x0646,0x0646,0x0646,0x0647,0x0647,0x0647,0x0647,0x0648,0x0648,0x0649,0x0649,0x064a,0x064a,0x064a,0x064a,0x036f, // 11f0 0x0021,0x0022,0x0023,0x0024,0x0025,0x0026,0x0027,0x0028,0x0029,0x002a,0x002b,0x002c,0x002d,0x002e,0x002f,0x0030, // 1200 0x0031,0x0032,0x0033,0x0034,0x0035,0x0036,0x0037,0x0038,0x0039,0x003a,0x003b,0x003c,0x003d,0x003e,0x003f,0x0040, // 1210 0x0041,0x0042,0x0043,0x0044,0x0045,0x0046,0x0047,0x0048,0x0049,0x004a,0x004b,0x004c,0x004d,0x004e,0x004f,0x0050, // 1220 0x0051,0x0052,0x0053,0x0054,0x0055,0x0056,0x0057,0x0058,0x0059,0x005a,0x005b,0x005c,0x005d,0x005e,0x005f,0x0060, // 1230 0x0061,0x0062,0x0063,0x0064,0x0065,0x0066,0x0067,0x0068,0x0069,0x006a,0x006b,0x006c,0x006d,0x006e,0x006f,0x0070, // 1240 0x0071,0x0072,0x0073,0x0074,0x0075,0x0076,0x0077,0x0078,0x0079,0x007a,0x007b,0x007c,0x007d,0x007e,0x0028,0x0029, // 1250 0x002e,0x002c,0x30f2,0x30a2,0x30a4,0x30a6,0x30a8,0x30aa,0x30e4,0x30e6,0x30e8,0x30c4,0x30a2,0x30a4,0x30a6,0x30a8, // 1260 0x30aa,0x30ab,0x30ad,0x30af,0x30b1,0x30b3,0x30b5,0x30b7,0x30b9,0x30bb,0x30bd,0x30bf,0x30c1,0x30c4,0x30c6,0x30c8, // 1270 0x30ca,0x30cb,0x30cc,0x30cd,0x30ce,0x30cf,0x30d2,0x30d5,0x30d8,0x30db,0x30de,0x30df,0x30e0,0x30e1,0x30e2,0x30e4, // 1280 0x30e6,0x30e8,0x30e9,0x30ea,0x30eb,0x30ec,0x30ed,0x30ef,0x30f3,0x1160,0x1100,0x1101,0x11aa,0x1102,0x11ac,0x11ad, // 1290 0x1103,0x1104,0x1105,0x11b0,0x11b1,0x11b2,0x11b3,0x11b4,0x11b5,0x111a,0x1106,0x1107,0x1108,0x1121,0x1109,0x110a, // 12a0 0x110b,0x110c,0x110d,0x110e,0x110f,0x1110,0x1111,0x1112,0x1161,0x1162,0x1163,0x1164,0x1165,0x1166,0x1167,0x1168, // 12b0 0x1169,0x116a,0x116b,0x116c,0x116d,0x116e,0x116f,0x1170,0x1171,0x1172,0x1173,0x1174,0x1175,0x00a2,0x00a3,0x00ac, // 12c0 0x00af,0x00a6,0x00a5,0x20a9,0x2502,0x2190,0x2191,0x2192,0x2193,0x25a0,0x25cb,0x036f,0x036f,0x036f, // 12d0 }; WORD utf8_nonascii_unicode_to_nocase_keys[UTF8_NONASCII_UNICODE_TO_NOCASE_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00c0,0x00c1,0x00c2,0x00c3,0x00c4,0x00c5,0x00c6,0x00c7,0x00c8,0x00c9,0x00ca,0x00cb,0x00cc,0x00cd,0x00ce,0x00cf, // 0000 0x00d0,0x00d1,0x00d2,0x00d3,0x00d4,0x00d5,0x00d6,0x00d8,0x00d9,0x00da,0x00db,0x00dc,0x00dd,0x00de,0x0100,0x0102, // 0010 0x0104,0x0106,0x0108,0x010a,0x010c,0x010e,0x0110,0x0112,0x0114,0x0116,0x0118,0x011a,0x011c,0x011e,0x0120,0x0122, // 0020 0x0124,0x0126,0x0128,0x012a,0x012c,0x012e,0x0130,0x0132,0x0134,0x0136,0x0139,0x013b,0x013d,0x013f,0x0141,0x0143, // 0030 0x0145,0x0147,0x014a,0x014c,0x014e,0x0150,0x0152,0x0154,0x0156,0x0158,0x015a,0x015c,0x015e,0x0160,0x0162,0x0164, // 0040 0x0166,0x0168,0x016a,0x016c,0x016e,0x0170,0x0172,0x0174,0x0176,0x0178,0x0179,0x017b,0x017d,0x0181,0x0182,0x0184, // 0050 0x0186,0x0187,0x0189,0x018a,0x018b,0x018e,0x018f,0x0190,0x0191,0x0193,0x0194,0x0196,0x0197,0x0198,0x019c,0x019d, // 0060 0x019f,0x01a0,0x01a2,0x01a4,0x01a6,0x01a7,0x01a9,0x01ac,0x01ae,0x01af,0x01b1,0x01b2,0x01b3,0x01b5,0x01b7,0x01b8, // 0070 0x01bc,0x01c4,0x01c5,0x01c7,0x01c8,0x01ca,0x01cb,0x01cd,0x01cf,0x01d1,0x01d3,0x01d5,0x01d7,0x01d9,0x01db,0x01de, // 0080 0x01e0,0x01e2,0x01e4,0x01e6,0x01e8,0x01ea,0x01ec,0x01ee,0x01f1,0x01f2,0x01f4,0x01f6,0x01f7,0x01f8,0x01fa,0x01fc, // 0090 0x01fe,0x0200,0x0202,0x0204,0x0206,0x0208,0x020a,0x020c,0x020e,0x0210,0x0212,0x0214,0x0216,0x0218,0x021a,0x021c, // 00a0 0x021e,0x0220,0x0222,0x0224,0x0226,0x0228,0x022a,0x022c,0x022e,0x0230,0x0232,0x023a,0x023b,0x023d,0x023e,0x0241, // 00b0 0x0243,0x0244,0x0245,0x0246,0x0248,0x024a,0x024c,0x024e,0x0370,0x0372,0x0376,0x0386,0x0388,0x0389,0x038a,0x038c, // 00c0 0x038e,0x038f,0x0391,0x0392,0x0393,0x0394,0x0395,0x0396,0x0397,0x0398,0x0399,0x039a,0x039b,0x039c,0x039d,0x039e, // 00d0 0x039f,0x03a0,0x03a1,0x03a3,0x03a4,0x03a5,0x03a6,0x03a7,0x03a8,0x03a9,0x03aa,0x03ab,0x03cf,0x03d8,0x03da,0x03dc, // 00e0 0x03de,0x03e0,0x03e2,0x03e4,0x03e6,0x03e8,0x03ea,0x03ec,0x03ee,0x03f4,0x03f7,0x03f9,0x03fa,0x03fd,0x03fe,0x03ff, // 00f0 0x0400,0x0401,0x0402,0x0403,0x0404,0x0405,0x0406,0x0407,0x0408,0x0409,0x040a,0x040b,0x040c,0x040d,0x040e,0x040f, // 0100 0x0410,0x0411,0x0412,0x0413,0x0414,0x0415,0x0416,0x0417,0x0418,0x0419,0x041a,0x041b,0x041c,0x041d,0x041e,0x041f, // 0110 0x0420,0x0421,0x0422,0x0423,0x0424,0x0425,0x0426,0x0427,0x0428,0x0429,0x042a,0x042b,0x042c,0x042d,0x042e,0x042f, // 0120 0x0460,0x0462,0x0464,0x0466,0x0468,0x046a,0x046c,0x046e,0x0470,0x0472,0x0474,0x0476,0x0478,0x047a,0x047c,0x047e, // 0130 0x0480,0x048a,0x048c,0x048e,0x0490,0x0492,0x0494,0x0496,0x0498,0x049a,0x049c,0x049e,0x04a0,0x04a2,0x04a4,0x04a6, // 0140 0x04a8,0x04aa,0x04ac,0x04ae,0x04b0,0x04b2,0x04b4,0x04b6,0x04b8,0x04ba,0x04bc,0x04be,0x04c0,0x04c1,0x04c3,0x04c5, // 0150 0x04c7,0x04c9,0x04cb,0x04cd,0x04d0,0x04d2,0x04d4,0x04d6,0x04d8,0x04da,0x04dc,0x04de,0x04e0,0x04e2,0x04e4,0x04e6, // 0160 0x04e8,0x04ea,0x04ec,0x04ee,0x04f0,0x04f2,0x04f4,0x04f6,0x04f8,0x04fa,0x04fc,0x04fe,0x0500,0x0502,0x0504,0x0506, // 0170 0x0508,0x050a,0x050c,0x050e,0x0510,0x0512,0x0514,0x0516,0x0518,0x051a,0x051c,0x051e,0x0520,0x0522,0x0524,0x0526, // 0180 0x0531,0x0532,0x0533,0x0534,0x0535,0x0536,0x0537,0x0538,0x0539,0x053a,0x053b,0x053c,0x053d,0x053e,0x053f,0x0540, // 0190 0x0541,0x0542,0x0543,0x0544,0x0545,0x0546,0x0547,0x0548,0x0549,0x054a,0x054b,0x054c,0x054d,0x054e,0x054f,0x0550, // 01a0 0x0551,0x0552,0x0553,0x0554,0x0555,0x0556,0x10a0,0x10a1,0x10a2,0x10a3,0x10a4,0x10a5,0x10a6,0x10a7,0x10a8,0x10a9, // 01b0 0x10aa,0x10ab,0x10ac,0x10ad,0x10ae,0x10af,0x10b0,0x10b1,0x10b2,0x10b3,0x10b4,0x10b5,0x10b6,0x10b7,0x10b8,0x10b9, // 01c0 0x10ba,0x10bb,0x10bc,0x10bd,0x10be,0x10bf,0x10c0,0x10c1,0x10c2,0x10c3,0x10c4,0x10c5,0x10c7,0x10cd,0x1e00,0x1e02, // 01d0 0x1e04,0x1e06,0x1e08,0x1e0a,0x1e0c,0x1e0e,0x1e10,0x1e12,0x1e14,0x1e16,0x1e18,0x1e1a,0x1e1c,0x1e1e,0x1e20,0x1e22, // 01e0 0x1e24,0x1e26,0x1e28,0x1e2a,0x1e2c,0x1e2e,0x1e30,0x1e32,0x1e34,0x1e36,0x1e38,0x1e3a,0x1e3c,0x1e3e,0x1e40,0x1e42, // 01f0 0x1e44,0x1e46,0x1e48,0x1e4a,0x1e4c,0x1e4e,0x1e50,0x1e52,0x1e54,0x1e56,0x1e58,0x1e5a,0x1e5c,0x1e5e,0x1e60,0x1e62, // 0200 0x1e64,0x1e66,0x1e68,0x1e6a,0x1e6c,0x1e6e,0x1e70,0x1e72,0x1e74,0x1e76,0x1e78,0x1e7a,0x1e7c,0x1e7e,0x1e80,0x1e82, // 0210 0x1e84,0x1e86,0x1e88,0x1e8a,0x1e8c,0x1e8e,0x1e90,0x1e92,0x1e94,0x1e9e,0x1ea0,0x1ea2,0x1ea4,0x1ea6,0x1ea8,0x1eaa, // 0220 0x1eac,0x1eae,0x1eb0,0x1eb2,0x1eb4,0x1eb6,0x1eb8,0x1eba,0x1ebc,0x1ebe,0x1ec0,0x1ec2,0x1ec4,0x1ec6,0x1ec8,0x1eca, // 0230 0x1ecc,0x1ece,0x1ed0,0x1ed2,0x1ed4,0x1ed6,0x1ed8,0x1eda,0x1edc,0x1ede,0x1ee0,0x1ee2,0x1ee4,0x1ee6,0x1ee8,0x1eea, // 0240 0x1eec,0x1eee,0x1ef0,0x1ef2,0x1ef4,0x1ef6,0x1ef8,0x1efa,0x1efc,0x1efe,0x1f08,0x1f09,0x1f0a,0x1f0b,0x1f0c,0x1f0d, // 0250 0x1f0e,0x1f0f,0x1f18,0x1f19,0x1f1a,0x1f1b,0x1f1c,0x1f1d,0x1f28,0x1f29,0x1f2a,0x1f2b,0x1f2c,0x1f2d,0x1f2e,0x1f2f, // 0260 0x1f38,0x1f39,0x1f3a,0x1f3b,0x1f3c,0x1f3d,0x1f3e,0x1f3f,0x1f48,0x1f49,0x1f4a,0x1f4b,0x1f4c,0x1f4d,0x1f59,0x1f5b, // 0270 0x1f5d,0x1f5f,0x1f68,0x1f69,0x1f6a,0x1f6b,0x1f6c,0x1f6d,0x1f6e,0x1f6f,0x1f88,0x1f89,0x1f8a,0x1f8b,0x1f8c,0x1f8d, // 0280 0x1f8e,0x1f8f,0x1f98,0x1f99,0x1f9a,0x1f9b,0x1f9c,0x1f9d,0x1f9e,0x1f9f,0x1fa8,0x1fa9,0x1faa,0x1fab,0x1fac,0x1fad, // 0290 0x1fae,0x1faf,0x1fb8,0x1fb9,0x1fba,0x1fbb,0x1fbc,0x1fc8,0x1fc9,0x1fca,0x1fcb,0x1fcc,0x1fd8,0x1fd9,0x1fda,0x1fdb, // 02a0 0x1fe8,0x1fe9,0x1fea,0x1feb,0x1fec,0x1ff8,0x1ff9,0x1ffa,0x1ffb,0x1ffc,0x2126,0x212a,0x212b,0x2132,0x2160,0x2161, // 02b0 0x2162,0x2163,0x2164,0x2165,0x2166,0x2167,0x2168,0x2169,0x216a,0x216b,0x216c,0x216d,0x216e,0x216f,0x2183,0x24b6, // 02c0 0x24b7,0x24b8,0x24b9,0x24ba,0x24bb,0x24bc,0x24bd,0x24be,0x24bf,0x24c0,0x24c1,0x24c2,0x24c3,0x24c4,0x24c5,0x24c6, // 02d0 0x24c7,0x24c8,0x24c9,0x24ca,0x24cb,0x24cc,0x24cd,0x24ce,0x24cf,0x2c00,0x2c01,0x2c02,0x2c03,0x2c04,0x2c05,0x2c06, // 02e0 0x2c07,0x2c08,0x2c09,0x2c0a,0x2c0b,0x2c0c,0x2c0d,0x2c0e,0x2c0f,0x2c10,0x2c11,0x2c12,0x2c13,0x2c14,0x2c15,0x2c16, // 02f0 0x2c17,0x2c18,0x2c19,0x2c1a,0x2c1b,0x2c1c,0x2c1d,0x2c1e,0x2c1f,0x2c20,0x2c21,0x2c22,0x2c23,0x2c24,0x2c25,0x2c26, // 0300 0x2c27,0x2c28,0x2c29,0x2c2a,0x2c2b,0x2c2c,0x2c2d,0x2c2e,0x2c60,0x2c62,0x2c63,0x2c64,0x2c67,0x2c69,0x2c6b,0x2c6d, // 0310 0x2c6e,0x2c6f,0x2c70,0x2c72,0x2c75,0x2c7e,0x2c7f,0x2c80,0x2c82,0x2c84,0x2c86,0x2c88,0x2c8a,0x2c8c,0x2c8e,0x2c90, // 0320 0x2c92,0x2c94,0x2c96,0x2c98,0x2c9a,0x2c9c,0x2c9e,0x2ca0,0x2ca2,0x2ca4,0x2ca6,0x2ca8,0x2caa,0x2cac,0x2cae,0x2cb0, // 0330 0x2cb2,0x2cb4,0x2cb6,0x2cb8,0x2cba,0x2cbc,0x2cbe,0x2cc0,0x2cc2,0x2cc4,0x2cc6,0x2cc8,0x2cca,0x2ccc,0x2cce,0x2cd0, // 0340 0x2cd2,0x2cd4,0x2cd6,0x2cd8,0x2cda,0x2cdc,0x2cde,0x2ce0,0x2ce2,0x2ceb,0x2ced,0x2cf2,0xa640,0xa642,0xa644,0xa646, // 0350 0xa648,0xa64a,0xa64c,0xa64e,0xa650,0xa652,0xa654,0xa656,0xa658,0xa65a,0xa65c,0xa65e,0xa660,0xa662,0xa664,0xa666, // 0360 0xa668,0xa66a,0xa66c,0xa680,0xa682,0xa684,0xa686,0xa688,0xa68a,0xa68c,0xa68e,0xa690,0xa692,0xa694,0xa696,0xa722, // 0370 0xa724,0xa726,0xa728,0xa72a,0xa72c,0xa72e,0xa732,0xa734,0xa736,0xa738,0xa73a,0xa73c,0xa73e,0xa740,0xa742,0xa744, // 0380 0xa746,0xa748,0xa74a,0xa74c,0xa74e,0xa750,0xa752,0xa754,0xa756,0xa758,0xa75a,0xa75c,0xa75e,0xa760,0xa762,0xa764, // 0390 0xa766,0xa768,0xa76a,0xa76c,0xa76e,0xa779,0xa77b,0xa77d,0xa77e,0xa780,0xa782,0xa784,0xa786,0xa78b,0xa78d,0xa790, // 03a0 0xa792,0xa7a0,0xa7a2,0xa7a4,0xa7a6,0xa7a8,0xa7aa,0xff21,0xff22,0xff23,0xff24,0xff25,0xff26,0xff27,0xff28,0xff29, // 03b0 0xff2a,0xff2b,0xff2c,0xff2d,0xff2e,0xff2f,0xff30,0xff31,0xff32,0xff33,0xff34,0xff35,0xff36,0xff37,0xff38,0xff39, // 03c0 0xff3a, // 03d0 }; // these MUST NOT map to ascii characters. // is_case_mapping expects no mappings to ASCII. WORD utf8_nonascii_unicode_to_nocase_values[UTF8_NONASCII_UNICODE_TO_NOCASE_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00e0,0x00e1,0x00e2,0x00e3,0x00e4,0x00e5,0x00e6,0x00e7,0x00e8,0x00e9,0x00ea,0x00eb,0x00ec,0x00ed,0x00ee,0x00ef, // 0000 0x00f0,0x00f1,0x00f2,0x00f3,0x00f4,0x00f5,0x00f6,0x00f8,0x00f9,0x00fa,0x00fb,0x00fc,0x00fd,0x00fe,0x0101,0x0103, // 0010 0x0105,0x0107,0x0109,0x010b,0x010d,0x010f,0x0111,0x0113,0x0115,0x0117,0x0119,0x011b,0x011d,0x011f,0x0121,0x0123, // 0020 0x0125,0x0127,0x0129,0x012b,0x012d,0x012f,0x0069,0x0133,0x0135,0x0137,0x013a,0x013c,0x013e,0x0140,0x0142,0x0144, // 0030 0x0146,0x0148,0x014b,0x014d,0x014f,0x0151,0x0153,0x0155,0x0157,0x0159,0x015b,0x015d,0x015f,0x0161,0x0163,0x0165, // 0040 0x0167,0x0169,0x016b,0x016d,0x016f,0x0171,0x0173,0x0175,0x0177,0x00ff,0x017a,0x017c,0x017e,0x0253,0x0183,0x0185, // 0050 0x0254,0x0188,0x0256,0x0257,0x018c,0x01dd,0x0259,0x025b,0x0192,0x0260,0x0263,0x0269,0x0268,0x0199,0x026f,0x0272, // 0060 0x0275,0x01a1,0x01a3,0x01a5,0x0280,0x01a8,0x0283,0x01ad,0x0288,0x01b0,0x028a,0x028b,0x01b4,0x01b6,0x0292,0x01b9, // 0070 0x01bd,0x01c6,0x01c6,0x01c9,0x01c9,0x01cc,0x01cc,0x01ce,0x01d0,0x01d2,0x01d4,0x01d6,0x01d8,0x01da,0x01dc,0x01df, // 0080 0x01e1,0x01e3,0x01e5,0x01e7,0x01e9,0x01eb,0x01ed,0x01ef,0x01f3,0x01f3,0x01f5,0x0195,0x01bf,0x01f9,0x01fb,0x01fd, // 0090 0x01ff,0x0201,0x0203,0x0205,0x0207,0x0209,0x020b,0x020d,0x020f,0x0211,0x0213,0x0215,0x0217,0x0219,0x021b,0x021d, // 00a0 0x021f,0x019e,0x0223,0x0225,0x0227,0x0229,0x022b,0x022d,0x022f,0x0231,0x0233,0x2c65,0x023c,0x019a,0x2c66,0x0242, // 00b0 0x0180,0x0289,0x028c,0x0247,0x0249,0x024b,0x024d,0x024f,0x0371,0x0373,0x0377,0x03ac,0x03ad,0x03ae,0x03af,0x03cc, // 00c0 0x03cd,0x03ce,0x03b1,0x03b2,0x03b3,0x03b4,0x03b5,0x03b6,0x03b7,0x03b8,0x03b9,0x03ba,0x03bb,0x03bc,0x03bd,0x03be, // 00d0 0x03bf,0x03c0,0x03c1,0x03c3,0x03c4,0x03c5,0x03c6,0x03c7,0x03c8,0x03c9,0x03ca,0x03cb,0x03d7,0x03d9,0x03db,0x03dd, // 00e0 0x03df,0x03e1,0x03e3,0x03e5,0x03e7,0x03e9,0x03eb,0x03ed,0x03ef,0x03b8,0x03f8,0x03f2,0x03fb,0x037b,0x037c,0x037d, // 00f0 0x0450,0x0451,0x0452,0x0453,0x0454,0x0455,0x0456,0x0457,0x0458,0x0459,0x045a,0x045b,0x045c,0x045d,0x045e,0x045f, // 0100 0x0430,0x0431,0x0432,0x0433,0x0434,0x0435,0x0436,0x0437,0x0438,0x0439,0x043a,0x043b,0x043c,0x043d,0x043e,0x043f, // 0110 0x0440,0x0441,0x0442,0x0443,0x0444,0x0445,0x0446,0x0447,0x0448,0x0449,0x044a,0x044b,0x044c,0x044d,0x044e,0x044f, // 0120 0x0461,0x0463,0x0465,0x0467,0x0469,0x046b,0x046d,0x046f,0x0471,0x0473,0x0475,0x0477,0x0479,0x047b,0x047d,0x047f, // 0130 0x0481,0x048b,0x048d,0x048f,0x0491,0x0493,0x0495,0x0497,0x0499,0x049b,0x049d,0x049f,0x04a1,0x04a3,0x04a5,0x04a7, // 0140 0x04a9,0x04ab,0x04ad,0x04af,0x04b1,0x04b3,0x04b5,0x04b7,0x04b9,0x04bb,0x04bd,0x04bf,0x04cf,0x04c2,0x04c4,0x04c6, // 0150 0x04c8,0x04ca,0x04cc,0x04ce,0x04d1,0x04d3,0x04d5,0x04d7,0x04d9,0x04db,0x04dd,0x04df,0x04e1,0x04e3,0x04e5,0x04e7, // 0160 0x04e9,0x04eb,0x04ed,0x04ef,0x04f1,0x04f3,0x04f5,0x04f7,0x04f9,0x04fb,0x04fd,0x04ff,0x0501,0x0503,0x0505,0x0507, // 0170 0x0509,0x050b,0x050d,0x050f,0x0511,0x0513,0x0515,0x0517,0x0519,0x051b,0x051d,0x051f,0x0521,0x0523,0x0525,0x0527, // 0180 0x0561,0x0562,0x0563,0x0564,0x0565,0x0566,0x0567,0x0568,0x0569,0x056a,0x056b,0x056c,0x056d,0x056e,0x056f,0x0570, // 0190 0x0571,0x0572,0x0573,0x0574,0x0575,0x0576,0x0577,0x0578,0x0579,0x057a,0x057b,0x057c,0x057d,0x057e,0x057f,0x0580, // 01a0 0x0581,0x0582,0x0583,0x0584,0x0585,0x0586,0x2d00,0x2d01,0x2d02,0x2d03,0x2d04,0x2d05,0x2d06,0x2d07,0x2d08,0x2d09, // 01b0 0x2d0a,0x2d0b,0x2d0c,0x2d0d,0x2d0e,0x2d0f,0x2d10,0x2d11,0x2d12,0x2d13,0x2d14,0x2d15,0x2d16,0x2d17,0x2d18,0x2d19, // 01c0 0x2d1a,0x2d1b,0x2d1c,0x2d1d,0x2d1e,0x2d1f,0x2d20,0x2d21,0x2d22,0x2d23,0x2d24,0x2d25,0x2d27,0x2d2d,0x1e01,0x1e03, // 01d0 0x1e05,0x1e07,0x1e09,0x1e0b,0x1e0d,0x1e0f,0x1e11,0x1e13,0x1e15,0x1e17,0x1e19,0x1e1b,0x1e1d,0x1e1f,0x1e21,0x1e23, // 01e0 0x1e25,0x1e27,0x1e29,0x1e2b,0x1e2d,0x1e2f,0x1e31,0x1e33,0x1e35,0x1e37,0x1e39,0x1e3b,0x1e3d,0x1e3f,0x1e41,0x1e43, // 01f0 0x1e45,0x1e47,0x1e49,0x1e4b,0x1e4d,0x1e4f,0x1e51,0x1e53,0x1e55,0x1e57,0x1e59,0x1e5b,0x1e5d,0x1e5f,0x1e61,0x1e63, // 0200 0x1e65,0x1e67,0x1e69,0x1e6b,0x1e6d,0x1e6f,0x1e71,0x1e73,0x1e75,0x1e77,0x1e79,0x1e7b,0x1e7d,0x1e7f,0x1e81,0x1e83, // 0210 0x1e85,0x1e87,0x1e89,0x1e8b,0x1e8d,0x1e8f,0x1e91,0x1e93,0x1e95,0x00df,0x1ea1,0x1ea3,0x1ea5,0x1ea7,0x1ea9,0x1eab, // 0220 0x1ead,0x1eaf,0x1eb1,0x1eb3,0x1eb5,0x1eb7,0x1eb9,0x1ebb,0x1ebd,0x1ebf,0x1ec1,0x1ec3,0x1ec5,0x1ec7,0x1ec9,0x1ecb, // 0230 0x1ecd,0x1ecf,0x1ed1,0x1ed3,0x1ed5,0x1ed7,0x1ed9,0x1edb,0x1edd,0x1edf,0x1ee1,0x1ee3,0x1ee5,0x1ee7,0x1ee9,0x1eeb, // 0240 0x1eed,0x1eef,0x1ef1,0x1ef3,0x1ef5,0x1ef7,0x1ef9,0x1efb,0x1efd,0x1eff,0x1f00,0x1f01,0x1f02,0x1f03,0x1f04,0x1f05, // 0250 0x1f06,0x1f07,0x1f10,0x1f11,0x1f12,0x1f13,0x1f14,0x1f15,0x1f20,0x1f21,0x1f22,0x1f23,0x1f24,0x1f25,0x1f26,0x1f27, // 0260 0x1f30,0x1f31,0x1f32,0x1f33,0x1f34,0x1f35,0x1f36,0x1f37,0x1f40,0x1f41,0x1f42,0x1f43,0x1f44,0x1f45,0x1f51,0x1f53, // 0270 0x1f55,0x1f57,0x1f60,0x1f61,0x1f62,0x1f63,0x1f64,0x1f65,0x1f66,0x1f67,0x1f80,0x1f81,0x1f82,0x1f83,0x1f84,0x1f85, // 0280 0x1f86,0x1f87,0x1f90,0x1f91,0x1f92,0x1f93,0x1f94,0x1f95,0x1f96,0x1f97,0x1fa0,0x1fa1,0x1fa2,0x1fa3,0x1fa4,0x1fa5, // 0290 0x1fa6,0x1fa7,0x1fb0,0x1fb1,0x1f70,0x1f71,0x1fb3,0x1f72,0x1f73,0x1f74,0x1f75,0x1fc3,0x1fd0,0x1fd1,0x1f76,0x1f77, // 02a0 0x1fe0,0x1fe1,0x1f7a,0x1f7b,0x1fe5,0x1f78,0x1f79,0x1f7c,0x1f7d,0x1ff3,0x03c9,0x006b,0x00e5,0x214e,0x2170,0x2171, // 02b0 0x2172,0x2173,0x2174,0x2175,0x2176,0x2177,0x2178,0x2179,0x217a,0x217b,0x217c,0x217d,0x217e,0x217f,0x2184,0x24d0, // 02c0 0x24d1,0x24d2,0x24d3,0x24d4,0x24d5,0x24d6,0x24d7,0x24d8,0x24d9,0x24da,0x24db,0x24dc,0x24dd,0x24de,0x24df,0x24e0, // 02d0 0x24e1,0x24e2,0x24e3,0x24e4,0x24e5,0x24e6,0x24e7,0x24e8,0x24e9,0x2c30,0x2c31,0x2c32,0x2c33,0x2c34,0x2c35,0x2c36, // 02e0 0x2c37,0x2c38,0x2c39,0x2c3a,0x2c3b,0x2c3c,0x2c3d,0x2c3e,0x2c3f,0x2c40,0x2c41,0x2c42,0x2c43,0x2c44,0x2c45,0x2c46, // 02f0 0x2c47,0x2c48,0x2c49,0x2c4a,0x2c4b,0x2c4c,0x2c4d,0x2c4e,0x2c4f,0x2c50,0x2c51,0x2c52,0x2c53,0x2c54,0x2c55,0x2c56, // 0300 0x2c57,0x2c58,0x2c59,0x2c5a,0x2c5b,0x2c5c,0x2c5d,0x2c5e,0x2c61,0x026b,0x1d7d,0x027d,0x2c68,0x2c6a,0x2c6c,0x0251, // 0310 0x0271,0x0250,0x0252,0x2c73,0x2c76,0x023f,0x0240,0x2c81,0x2c83,0x2c85,0x2c87,0x2c89,0x2c8b,0x2c8d,0x2c8f,0x2c91, // 0320 0x2c93,0x2c95,0x2c97,0x2c99,0x2c9b,0x2c9d,0x2c9f,0x2ca1,0x2ca3,0x2ca5,0x2ca7,0x2ca9,0x2cab,0x2cad,0x2caf,0x2cb1, // 0330 0x2cb3,0x2cb5,0x2cb7,0x2cb9,0x2cbb,0x2cbd,0x2cbf,0x2cc1,0x2cc3,0x2cc5,0x2cc7,0x2cc9,0x2ccb,0x2ccd,0x2ccf,0x2cd1, // 0340 0x2cd3,0x2cd5,0x2cd7,0x2cd9,0x2cdb,0x2cdd,0x2cdf,0x2ce1,0x2ce3,0x2cec,0x2cee,0x2cf3,0xa641,0xa643,0xa645,0xa647, // 0350 0xa649,0xa64b,0xa64d,0xa64f,0xa651,0xa653,0xa655,0xa657,0xa659,0xa65b,0xa65d,0xa65f,0xa661,0xa663,0xa665,0xa667, // 0360 0xa669,0xa66b,0xa66d,0xa681,0xa683,0xa685,0xa687,0xa689,0xa68b,0xa68d,0xa68f,0xa691,0xa693,0xa695,0xa697,0xa723, // 0370 0xa725,0xa727,0xa729,0xa72b,0xa72d,0xa72f,0xa733,0xa735,0xa737,0xa739,0xa73b,0xa73d,0xa73f,0xa741,0xa743,0xa745, // 0380 0xa747,0xa749,0xa74b,0xa74d,0xa74f,0xa751,0xa753,0xa755,0xa757,0xa759,0xa75b,0xa75d,0xa75f,0xa761,0xa763,0xa765, // 0390 0xa767,0xa769,0xa76b,0xa76d,0xa76f,0xa77a,0xa77c,0x1d79,0xa77f,0xa781,0xa783,0xa785,0xa787,0xa78c,0x0265,0xa791, // 03a0 0xa793,0xa7a1,0xa7a3,0xa7a5,0xa7a7,0xa7a9,0x0266,0xff41,0xff42,0xff43,0xff44,0xff45,0xff46,0xff47,0xff48,0xff49, // 03b0 0xff4a,0xff4b,0xff4c,0xff4d,0xff4e,0xff4f,0xff50,0xff51,0xff52,0xff53,0xff54,0xff55,0xff56,0xff57,0xff58,0xff59, // 03c0 0xff5a, // 03d0 }; WORD utf8_nonascii_unicode_is_punctuation_keys[UTF8_NONASCII_UNICODE_IS_PUNCTUATION_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00a1,0x00a2,0x00a3,0x00a4,0x00a5,0x00a6,0x00a7,0x00a8,0x00a9,0x00ab,0x00ac,0x00ad,0x00ae,0x00af,0x00b0,0x00b1, // 0000 0x00b4,0x00b6,0x00b7,0x00b8,0x00bb,0x00bf,0x00d7,0x00f7,0x02c2,0x02c3,0x02c4,0x02c5,0x02d2,0x02d3,0x02d4,0x02d5, // 0010 0x02d6,0x02d7,0x02d8,0x02d9,0x02da,0x02db,0x02dc,0x02dd,0x02de,0x02df,0x02e5,0x02e6,0x02e7,0x02e8,0x02e9,0x02ea, // 0020 0x02eb,0x02ed,0x02ef,0x02f0,0x02f1,0x02f2,0x02f3,0x02f4,0x02f5,0x02f6,0x02f7,0x02f8,0x02f9,0x02fa,0x02fb,0x02fc, // 0030 0x02fd,0x02fe,0x02ff,0x0375,0x037e,0x0384,0x0385,0x0387,0x03f6,0x0482,0x055a,0x055b,0x055c,0x055d,0x055e,0x055f, // 0040 0x0589,0x058a,0x058f,0x05be,0x05c0,0x05c3,0x05c6,0x05f3,0x05f4,0x0606,0x0607,0x0608,0x0609,0x060a,0x060b,0x060c, // 0050 0x060d,0x060e,0x060f,0x061b,0x061e,0x061f,0x066a,0x066b,0x066c,0x066d,0x06d4,0x06de,0x06e9,0x06fd,0x06fe,0x0700, // 0060 0x0701,0x0702,0x0703,0x0704,0x0705,0x0706,0x0707,0x0708,0x0709,0x070a,0x070b,0x070c,0x070d,0x07f6,0x07f7,0x07f8, // 0070 0x07f9,0x0830,0x0831,0x0832,0x0833,0x0834,0x0835,0x0836,0x0837,0x0838,0x0839,0x083a,0x083b,0x083c,0x083d,0x083e, // 0080 0x085e,0x0964,0x0965,0x0970,0x09f2,0x09f3,0x09fa,0x09fb,0x0af0,0x0af1,0x0b70,0x0bf3,0x0bf4,0x0bf5,0x0bf6,0x0bf7, // 0090 0x0bf8,0x0bf9,0x0bfa,0x0c7f,0x0d79,0x0df4,0x0e3f,0x0e4f,0x0e5a,0x0e5b,0x0f01,0x0f02,0x0f03,0x0f04,0x0f05,0x0f06, // 00a0 0x0f07,0x0f08,0x0f09,0x0f0a,0x0f0b,0x0f0c,0x0f0d,0x0f0e,0x0f0f,0x0f10,0x0f11,0x0f12,0x0f13,0x0f14,0x0f15,0x0f16, // 00b0 0x0f17,0x0f1a,0x0f1b,0x0f1c,0x0f1d,0x0f1e,0x0f1f,0x0f34,0x0f36,0x0f38,0x0f3a,0x0f3b,0x0f3c,0x0f3d,0x0f85,0x0fbe, // 00c0 0x0fbf,0x0fc0,0x0fc1,0x0fc2,0x0fc3,0x0fc4,0x0fc5,0x0fc7,0x0fc8,0x0fc9,0x0fca,0x0fcb,0x0fcc,0x0fce,0x0fcf,0x0fd0, // 00d0 0x0fd1,0x0fd2,0x0fd3,0x0fd4,0x0fd5,0x0fd6,0x0fd7,0x0fd8,0x0fd9,0x0fda,0x104a,0x104b,0x104c,0x104d,0x104e,0x104f, // 00e0 0x109e,0x109f,0x10fb,0x1360,0x1361,0x1362,0x1363,0x1364,0x1365,0x1366,0x1367,0x1368,0x1390,0x1391,0x1392,0x1393, // 00f0 0x1394,0x1395,0x1396,0x1397,0x1398,0x1399,0x1400,0x166d,0x166e,0x169b,0x169c,0x16eb,0x16ec,0x16ed,0x1735,0x1736, // 0100 0x17d4,0x17d5,0x17d6,0x17d8,0x17d9,0x17da,0x17db,0x1800,0x1801,0x1802,0x1803,0x1804,0x1805,0x1806,0x1807,0x1808, // 0110 0x1809,0x180a,0x1940,0x1944,0x1945,0x19de,0x19df,0x19e0,0x19e1,0x19e2,0x19e3,0x19e4,0x19e5,0x19e6,0x19e7,0x19e8, // 0120 0x19e9,0x19ea,0x19eb,0x19ec,0x19ed,0x19ee,0x19ef,0x19f0,0x19f1,0x19f2,0x19f3,0x19f4,0x19f5,0x19f6,0x19f7,0x19f8, // 0130 0x19f9,0x19fa,0x19fb,0x19fc,0x19fd,0x19fe,0x19ff,0x1a1e,0x1a1f,0x1aa0,0x1aa1,0x1aa2,0x1aa3,0x1aa4,0x1aa5,0x1aa6, // 0140 0x1aa8,0x1aa9,0x1aaa,0x1aab,0x1aac,0x1aad,0x1b5a,0x1b5b,0x1b5c,0x1b5d,0x1b5e,0x1b5f,0x1b60,0x1b61,0x1b62,0x1b63, // 0150 0x1b64,0x1b65,0x1b66,0x1b67,0x1b68,0x1b69,0x1b6a,0x1b74,0x1b75,0x1b76,0x1b77,0x1b78,0x1b79,0x1b7a,0x1b7b,0x1b7c, // 0160 0x1bfc,0x1bfd,0x1bfe,0x1bff,0x1c3b,0x1c3c,0x1c3d,0x1c3e,0x1c3f,0x1c7e,0x1c7f,0x1cc0,0x1cc1,0x1cc2,0x1cc3,0x1cc4, // 0170 0x1cc5,0x1cc6,0x1cc7,0x1cd3,0x1fbd,0x1fbf,0x1fc0,0x1fc1,0x1fcd,0x1fce,0x1fcf,0x1fdd,0x1fde,0x1fdf,0x1fed,0x1fee, // 0180 0x1fef,0x1ffd,0x1ffe,0x2010,0x2011,0x2012,0x2013,0x2014,0x2015,0x2016,0x2017,0x2018,0x2019,0x201a,0x201b,0x201c, // 0190 0x201d,0x201e,0x201f,0x2020,0x2021,0x2022,0x2023,0x2024,0x2025,0x2026,0x2027,0x2030,0x2031,0x2032,0x2033,0x2034, // 01a0 0x2035,0x2036,0x2037,0x2038,0x2039,0x203a,0x203b,0x203c,0x203d,0x203e,0x203f,0x2040,0x2041,0x2042,0x2043,0x2044, // 01b0 0x2045,0x2046,0x2047,0x2048,0x2049,0x204a,0x204b,0x204c,0x204d,0x204e,0x204f,0x2050,0x2051,0x2052,0x2053,0x2054, // 01c0 0x2055,0x2056,0x2057,0x2058,0x2059,0x205a,0x205b,0x205c,0x205d,0x205e,0x207a,0x207b,0x207c,0x207d,0x207e,0x208a, // 01d0 0x208b,0x208c,0x208d,0x208e,0x20a0,0x20a1,0x20a2,0x20a3,0x20a4,0x20a5,0x20a6,0x20a7,0x20a8,0x20a9,0x20aa,0x20ab, // 01e0 0x20ac,0x20ad,0x20ae,0x20af,0x20b0,0x20b1,0x20b2,0x20b3,0x20b4,0x20b5,0x20b6,0x20b7,0x20b8,0x20b9,0x20ba,0x2100, // 01f0 0x2101,0x2103,0x2104,0x2105,0x2106,0x2108,0x2109,0x2114,0x2116,0x2117,0x2118,0x211e,0x211f,0x2120,0x2121,0x2122, // 0200 0x2123,0x2125,0x2127,0x2129,0x212e,0x213a,0x213b,0x2140,0x2141,0x2142,0x2143,0x2144,0x214a,0x214b,0x214c,0x214d, // 0210 0x214f,0x2190,0x2191,0x2192,0x2193,0x2194,0x2195,0x2196,0x2197,0x2198,0x2199,0x219a,0x219b,0x219c,0x219d,0x219e, // 0220 0x219f,0x21a0,0x21a1,0x21a2,0x21a3,0x21a4,0x21a5,0x21a6,0x21a7,0x21a8,0x21a9,0x21aa,0x21ab,0x21ac,0x21ad,0x21ae, // 0230 0x21af,0x21b0,0x21b1,0x21b2,0x21b3,0x21b4,0x21b5,0x21b6,0x21b7,0x21b8,0x21b9,0x21ba,0x21bb,0x21bc,0x21bd,0x21be, // 0240 0x21bf,0x21c0,0x21c1,0x21c2,0x21c3,0x21c4,0x21c5,0x21c6,0x21c7,0x21c8,0x21c9,0x21ca,0x21cb,0x21cc,0x21cd,0x21ce, // 0250 0x21cf,0x21d0,0x21d1,0x21d2,0x21d3,0x21d4,0x21d5,0x21d6,0x21d7,0x21d8,0x21d9,0x21da,0x21db,0x21dc,0x21dd,0x21de, // 0260 0x21df,0x21e0,0x21e1,0x21e2,0x21e3,0x21e4,0x21e5,0x21e6,0x21e7,0x21e8,0x21e9,0x21ea,0x21eb,0x21ec,0x21ed,0x21ee, // 0270 0x21ef,0x21f0,0x21f1,0x21f2,0x21f3,0x21f4,0x21f5,0x21f6,0x21f7,0x21f8,0x21f9,0x21fa,0x21fb,0x21fc,0x21fd,0x21fe, // 0280 0x21ff,0x2200,0x2201,0x2202,0x2203,0x2204,0x2205,0x2206,0x2207,0x2208,0x2209,0x220a,0x220b,0x220c,0x220d,0x220e, // 0290 0x220f,0x2210,0x2211,0x2212,0x2213,0x2214,0x2215,0x2216,0x2217,0x2218,0x2219,0x221a,0x221b,0x221c,0x221d,0x221e, // 02a0 0x221f,0x2220,0x2221,0x2222,0x2223,0x2224,0x2225,0x2226,0x2227,0x2228,0x2229,0x222a,0x222b,0x222c,0x222d,0x222e, // 02b0 0x222f,0x2230,0x2231,0x2232,0x2233,0x2234,0x2235,0x2236,0x2237,0x2238,0x2239,0x223a,0x223b,0x223c,0x223d,0x223e, // 02c0 0x223f,0x2240,0x2241,0x2242,0x2243,0x2244,0x2245,0x2246,0x2247,0x2248,0x2249,0x224a,0x224b,0x224c,0x224d,0x224e, // 02d0 0x224f,0x2250,0x2251,0x2252,0x2253,0x2254,0x2255,0x2256,0x2257,0x2258,0x2259,0x225a,0x225b,0x225c,0x225d,0x225e, // 02e0 0x225f,0x2260,0x2261,0x2262,0x2263,0x2264,0x2265,0x2266,0x2267,0x2268,0x2269,0x226a,0x226b,0x226c,0x226d,0x226e, // 02f0 0x226f,0x2270,0x2271,0x2272,0x2273,0x2274,0x2275,0x2276,0x2277,0x2278,0x2279,0x227a,0x227b,0x227c,0x227d,0x227e, // 0300 0x227f,0x2280,0x2281,0x2282,0x2283,0x2284,0x2285,0x2286,0x2287,0x2288,0x2289,0x228a,0x228b,0x228c,0x228d,0x228e, // 0310 0x228f,0x2290,0x2291,0x2292,0x2293,0x2294,0x2295,0x2296,0x2297,0x2298,0x2299,0x229a,0x229b,0x229c,0x229d,0x229e, // 0320 0x229f,0x22a0,0x22a1,0x22a2,0x22a3,0x22a4,0x22a5,0x22a6,0x22a7,0x22a8,0x22a9,0x22aa,0x22ab,0x22ac,0x22ad,0x22ae, // 0330 0x22af,0x22b0,0x22b1,0x22b2,0x22b3,0x22b4,0x22b5,0x22b6,0x22b7,0x22b8,0x22b9,0x22ba,0x22bb,0x22bc,0x22bd,0x22be, // 0340 0x22bf,0x22c0,0x22c1,0x22c2,0x22c3,0x22c4,0x22c5,0x22c6,0x22c7,0x22c8,0x22c9,0x22ca,0x22cb,0x22cc,0x22cd,0x22ce, // 0350 0x22cf,0x22d0,0x22d1,0x22d2,0x22d3,0x22d4,0x22d5,0x22d6,0x22d7,0x22d8,0x22d9,0x22da,0x22db,0x22dc,0x22dd,0x22de, // 0360 0x22df,0x22e0,0x22e1,0x22e2,0x22e3,0x22e4,0x22e5,0x22e6,0x22e7,0x22e8,0x22e9,0x22ea,0x22eb,0x22ec,0x22ed,0x22ee, // 0370 0x22ef,0x22f0,0x22f1,0x22f2,0x22f3,0x22f4,0x22f5,0x22f6,0x22f7,0x22f8,0x22f9,0x22fa,0x22fb,0x22fc,0x22fd,0x22fe, // 0380 0x22ff,0x2300,0x2301,0x2302,0x2303,0x2304,0x2305,0x2306,0x2307,0x2308,0x2309,0x230a,0x230b,0x230c,0x230d,0x230e, // 0390 0x230f,0x2310,0x2311,0x2312,0x2313,0x2314,0x2315,0x2316,0x2317,0x2318,0x2319,0x231a,0x231b,0x231c,0x231d,0x231e, // 03a0 0x231f,0x2320,0x2321,0x2322,0x2323,0x2324,0x2325,0x2326,0x2327,0x2328,0x2329,0x232a,0x232b,0x232c,0x232d,0x232e, // 03b0 0x232f,0x2330,0x2331,0x2332,0x2333,0x2334,0x2335,0x2336,0x2337,0x2338,0x2339,0x233a,0x233b,0x233c,0x233d,0x233e, // 03c0 0x233f,0x2340,0x2341,0x2342,0x2343,0x2344,0x2345,0x2346,0x2347,0x2348,0x2349,0x234a,0x234b,0x234c,0x234d,0x234e, // 03d0 0x234f,0x2350,0x2351,0x2352,0x2353,0x2354,0x2355,0x2356,0x2357,0x2358,0x2359,0x235a,0x235b,0x235c,0x235d,0x235e, // 03e0 0x235f,0x2360,0x2361,0x2362,0x2363,0x2364,0x2365,0x2366,0x2367,0x2368,0x2369,0x236a,0x236b,0x236c,0x236d,0x236e, // 03f0 0x236f,0x2370,0x2371,0x2372,0x2373,0x2374,0x2375,0x2376,0x2377,0x2378,0x2379,0x237a,0x237b,0x237c,0x237d,0x237e, // 0400 0x237f,0x2380,0x2381,0x2382,0x2383,0x2384,0x2385,0x2386,0x2387,0x2388,0x2389,0x238a,0x238b,0x238c,0x238d,0x238e, // 0410 0x238f,0x2390,0x2391,0x2392,0x2393,0x2394,0x2395,0x2396,0x2397,0x2398,0x2399,0x239a,0x239b,0x239c,0x239d,0x239e, // 0420 0x239f,0x23a0,0x23a1,0x23a2,0x23a3,0x23a4,0x23a5,0x23a6,0x23a7,0x23a8,0x23a9,0x23aa,0x23ab,0x23ac,0x23ad,0x23ae, // 0430 0x23af,0x23b0,0x23b1,0x23b2,0x23b3,0x23b4,0x23b5,0x23b6,0x23b7,0x23b8,0x23b9,0x23ba,0x23bb,0x23bc,0x23bd,0x23be, // 0440 0x23bf,0x23c0,0x23c1,0x23c2,0x23c3,0x23c4,0x23c5,0x23c6,0x23c7,0x23c8,0x23c9,0x23ca,0x23cb,0x23cc,0x23cd,0x23ce, // 0450 0x23cf,0x23d0,0x23d1,0x23d2,0x23d3,0x23d4,0x23d5,0x23d6,0x23d7,0x23d8,0x23d9,0x23da,0x23db,0x23dc,0x23dd,0x23de, // 0460 0x23df,0x23e0,0x23e1,0x23e2,0x23e3,0x23e4,0x23e5,0x23e6,0x23e7,0x23e8,0x23e9,0x23ea,0x23eb,0x23ec,0x23ed,0x23ee, // 0470 0x23ef,0x23f0,0x23f1,0x23f2,0x23f3,0x2400,0x2401,0x2402,0x2403,0x2404,0x2405,0x2406,0x2407,0x2408,0x2409,0x240a, // 0480 0x240b,0x240c,0x240d,0x240e,0x240f,0x2410,0x2411,0x2412,0x2413,0x2414,0x2415,0x2416,0x2417,0x2418,0x2419,0x241a, // 0490 0x241b,0x241c,0x241d,0x241e,0x241f,0x2420,0x2421,0x2422,0x2423,0x2424,0x2425,0x2426,0x2440,0x2441,0x2442,0x2443, // 04a0 0x2444,0x2445,0x2446,0x2447,0x2448,0x2449,0x244a,0x249c,0x249d,0x249e,0x249f,0x24a0,0x24a1,0x24a2,0x24a3,0x24a4, // 04b0 0x24a5,0x24a6,0x24a7,0x24a8,0x24a9,0x24aa,0x24ab,0x24ac,0x24ad,0x24ae,0x24af,0x24b0,0x24b1,0x24b2,0x24b3,0x24b4, // 04c0 0x24b5,0x24b6,0x24b7,0x24b8,0x24b9,0x24ba,0x24bb,0x24bc,0x24bd,0x24be,0x24bf,0x24c0,0x24c1,0x24c2,0x24c3,0x24c4, // 04d0 0x24c5,0x24c6,0x24c7,0x24c8,0x24c9,0x24ca,0x24cb,0x24cc,0x24cd,0x24ce,0x24cf,0x24d0,0x24d1,0x24d2,0x24d3,0x24d4, // 04e0 0x24d5,0x24d6,0x24d7,0x24d8,0x24d9,0x24da,0x24db,0x24dc,0x24dd,0x24de,0x24df,0x24e0,0x24e1,0x24e2,0x24e3,0x24e4, // 04f0 0x24e5,0x24e6,0x24e7,0x24e8,0x24e9,0x2500,0x2501,0x2502,0x2503,0x2504,0x2505,0x2506,0x2507,0x2508,0x2509,0x250a, // 0500 0x250b,0x250c,0x250d,0x250e,0x250f,0x2510,0x2511,0x2512,0x2513,0x2514,0x2515,0x2516,0x2517,0x2518,0x2519,0x251a, // 0510 0x251b,0x251c,0x251d,0x251e,0x251f,0x2520,0x2521,0x2522,0x2523,0x2524,0x2525,0x2526,0x2527,0x2528,0x2529,0x252a, // 0520 0x252b,0x252c,0x252d,0x252e,0x252f,0x2530,0x2531,0x2532,0x2533,0x2534,0x2535,0x2536,0x2537,0x2538,0x2539,0x253a, // 0530 0x253b,0x253c,0x253d,0x253e,0x253f,0x2540,0x2541,0x2542,0x2543,0x2544,0x2545,0x2546,0x2547,0x2548,0x2549,0x254a, // 0540 0x254b,0x254c,0x254d,0x254e,0x254f,0x2550,0x2551,0x2552,0x2553,0x2554,0x2555,0x2556,0x2557,0x2558,0x2559,0x255a, // 0550 0x255b,0x255c,0x255d,0x255e,0x255f,0x2560,0x2561,0x2562,0x2563,0x2564,0x2565,0x2566,0x2567,0x2568,0x2569,0x256a, // 0560 0x256b,0x256c,0x256d,0x256e,0x256f,0x2570,0x2571,0x2572,0x2573,0x2574,0x2575,0x2576,0x2577,0x2578,0x2579,0x257a, // 0570 0x257b,0x257c,0x257d,0x257e,0x257f,0x2580,0x2581,0x2582,0x2583,0x2584,0x2585,0x2586,0x2587,0x2588,0x2589,0x258a, // 0580 0x258b,0x258c,0x258d,0x258e,0x258f,0x2590,0x2591,0x2592,0x2593,0x2594,0x2595,0x2596,0x2597,0x2598,0x2599,0x259a, // 0590 0x259b,0x259c,0x259d,0x259e,0x259f,0x25a0,0x25a1,0x25a2,0x25a3,0x25a4,0x25a5,0x25a6,0x25a7,0x25a8,0x25a9,0x25aa, // 05a0 0x25ab,0x25ac,0x25ad,0x25ae,0x25af,0x25b0,0x25b1,0x25b2,0x25b3,0x25b4,0x25b5,0x25b6,0x25b7,0x25b8,0x25b9,0x25ba, // 05b0 0x25bb,0x25bc,0x25bd,0x25be,0x25bf,0x25c0,0x25c1,0x25c2,0x25c3,0x25c4,0x25c5,0x25c6,0x25c7,0x25c8,0x25c9,0x25ca, // 05c0 0x25cb,0x25cc,0x25cd,0x25ce,0x25cf,0x25d0,0x25d1,0x25d2,0x25d3,0x25d4,0x25d5,0x25d6,0x25d7,0x25d8,0x25d9,0x25da, // 05d0 0x25db,0x25dc,0x25dd,0x25de,0x25df,0x25e0,0x25e1,0x25e2,0x25e3,0x25e4,0x25e5,0x25e6,0x25e7,0x25e8,0x25e9,0x25ea, // 05e0 0x25eb,0x25ec,0x25ed,0x25ee,0x25ef,0x25f0,0x25f1,0x25f2,0x25f3,0x25f4,0x25f5,0x25f6,0x25f7,0x25f8,0x25f9,0x25fa, // 05f0 0x25fb,0x25fc,0x25fd,0x25fe,0x25ff,0x2600,0x2601,0x2602,0x2603,0x2604,0x2605,0x2606,0x2607,0x2608,0x2609,0x260a, // 0600 0x260b,0x260c,0x260d,0x260e,0x260f,0x2610,0x2611,0x2612,0x2613,0x2614,0x2615,0x2616,0x2617,0x2618,0x2619,0x261a, // 0610 0x261b,0x261c,0x261d,0x261e,0x261f,0x2620,0x2621,0x2622,0x2623,0x2624,0x2625,0x2626,0x2627,0x2628,0x2629,0x262a, // 0620 0x262b,0x262c,0x262d,0x262e,0x262f,0x2630,0x2631,0x2632,0x2633,0x2634,0x2635,0x2636,0x2637,0x2638,0x2639,0x263a, // 0630 0x263b,0x263c,0x263d,0x263e,0x263f,0x2640,0x2641,0x2642,0x2643,0x2644,0x2645,0x2646,0x2647,0x2648,0x2649,0x264a, // 0640 0x264b,0x264c,0x264d,0x264e,0x264f,0x2650,0x2651,0x2652,0x2653,0x2654,0x2655,0x2656,0x2657,0x2658,0x2659,0x265a, // 0650 0x265b,0x265c,0x265d,0x265e,0x265f,0x2660,0x2661,0x2662,0x2663,0x2664,0x2665,0x2666,0x2667,0x2668,0x2669,0x266a, // 0660 0x266b,0x266c,0x266d,0x266e,0x266f,0x2670,0x2671,0x2672,0x2673,0x2674,0x2675,0x2676,0x2677,0x2678,0x2679,0x267a, // 0670 0x267b,0x267c,0x267d,0x267e,0x267f,0x2680,0x2681,0x2682,0x2683,0x2684,0x2685,0x2686,0x2687,0x2688,0x2689,0x268a, // 0680 0x268b,0x268c,0x268d,0x268e,0x268f,0x2690,0x2691,0x2692,0x2693,0x2694,0x2695,0x2696,0x2697,0x2698,0x2699,0x269a, // 0690 0x269b,0x269c,0x269d,0x269e,0x269f,0x26a0,0x26a1,0x26a2,0x26a3,0x26a4,0x26a5,0x26a6,0x26a7,0x26a8,0x26a9,0x26aa, // 06a0 0x26ab,0x26ac,0x26ad,0x26ae,0x26af,0x26b0,0x26b1,0x26b2,0x26b3,0x26b4,0x26b5,0x26b6,0x26b7,0x26b8,0x26b9,0x26ba, // 06b0 0x26bb,0x26bc,0x26bd,0x26be,0x26bf,0x26c0,0x26c1,0x26c2,0x26c3,0x26c4,0x26c5,0x26c6,0x26c7,0x26c8,0x26c9,0x26ca, // 06c0 0x26cb,0x26cc,0x26cd,0x26ce,0x26cf,0x26d0,0x26d1,0x26d2,0x26d3,0x26d4,0x26d5,0x26d6,0x26d7,0x26d8,0x26d9,0x26da, // 06d0 0x26db,0x26dc,0x26dd,0x26de,0x26df,0x26e0,0x26e1,0x26e2,0x26e3,0x26e4,0x26e5,0x26e6,0x26e7,0x26e8,0x26e9,0x26ea, // 06e0 0x26eb,0x26ec,0x26ed,0x26ee,0x26ef,0x26f0,0x26f1,0x26f2,0x26f3,0x26f4,0x26f5,0x26f6,0x26f7,0x26f8,0x26f9,0x26fa, // 06f0 0x26fb,0x26fc,0x26fd,0x26fe,0x26ff,0x2701,0x2702,0x2703,0x2704,0x2705,0x2706,0x2707,0x2708,0x2709,0x270a,0x270b, // 0700 0x270c,0x270d,0x270e,0x270f,0x2710,0x2711,0x2712,0x2713,0x2714,0x2715,0x2716,0x2717,0x2718,0x2719,0x271a,0x271b, // 0710 0x271c,0x271d,0x271e,0x271f,0x2720,0x2721,0x2722,0x2723,0x2724,0x2725,0x2726,0x2727,0x2728,0x2729,0x272a,0x272b, // 0720 0x272c,0x272d,0x272e,0x272f,0x2730,0x2731,0x2732,0x2733,0x2734,0x2735,0x2736,0x2737,0x2738,0x2739,0x273a,0x273b, // 0730 0x273c,0x273d,0x273e,0x273f,0x2740,0x2741,0x2742,0x2743,0x2744,0x2745,0x2746,0x2747,0x2748,0x2749,0x274a,0x274b, // 0740 0x274c,0x274d,0x274e,0x274f,0x2750,0x2751,0x2752,0x2753,0x2754,0x2755,0x2756,0x2757,0x2758,0x2759,0x275a,0x275b, // 0750 0x275c,0x275d,0x275e,0x275f,0x2760,0x2761,0x2762,0x2763,0x2764,0x2765,0x2766,0x2767,0x2768,0x2769,0x276a,0x276b, // 0760 0x276c,0x276d,0x276e,0x276f,0x2770,0x2771,0x2772,0x2773,0x2774,0x2775,0x2794,0x2795,0x2796,0x2797,0x2798,0x2799, // 0770 0x279a,0x279b,0x279c,0x279d,0x279e,0x279f,0x27a0,0x27a1,0x27a2,0x27a3,0x27a4,0x27a5,0x27a6,0x27a7,0x27a8,0x27a9, // 0780 0x27aa,0x27ab,0x27ac,0x27ad,0x27ae,0x27af,0x27b0,0x27b1,0x27b2,0x27b3,0x27b4,0x27b5,0x27b6,0x27b7,0x27b8,0x27b9, // 0790 0x27ba,0x27bb,0x27bc,0x27bd,0x27be,0x27bf,0x27c0,0x27c1,0x27c2,0x27c3,0x27c4,0x27c5,0x27c6,0x27c7,0x27c8,0x27c9, // 07a0 0x27ca,0x27cb,0x27cc,0x27cd,0x27ce,0x27cf,0x27d0,0x27d1,0x27d2,0x27d3,0x27d4,0x27d5,0x27d6,0x27d7,0x27d8,0x27d9, // 07b0 0x27da,0x27db,0x27dc,0x27dd,0x27de,0x27df,0x27e0,0x27e1,0x27e2,0x27e3,0x27e4,0x27e5,0x27e6,0x27e7,0x27e8,0x27e9, // 07c0 0x27ea,0x27eb,0x27ec,0x27ed,0x27ee,0x27ef,0x27f0,0x27f1,0x27f2,0x27f3,0x27f4,0x27f5,0x27f6,0x27f7,0x27f8,0x27f9, // 07d0 0x27fa,0x27fb,0x27fc,0x27fd,0x27fe,0x27ff,0x2800,0x2801,0x2802,0x2803,0x2804,0x2805,0x2806,0x2807,0x2808,0x2809, // 07e0 0x280a,0x280b,0x280c,0x280d,0x280e,0x280f,0x2810,0x2811,0x2812,0x2813,0x2814,0x2815,0x2816,0x2817,0x2818,0x2819, // 07f0 0x281a,0x281b,0x281c,0x281d,0x281e,0x281f,0x2820,0x2821,0x2822,0x2823,0x2824,0x2825,0x2826,0x2827,0x2828,0x2829, // 0800 0x282a,0x282b,0x282c,0x282d,0x282e,0x282f,0x2830,0x2831,0x2832,0x2833,0x2834,0x2835,0x2836,0x2837,0x2838,0x2839, // 0810 0x283a,0x283b,0x283c,0x283d,0x283e,0x283f,0x2840,0x2841,0x2842,0x2843,0x2844,0x2845,0x2846,0x2847,0x2848,0x2849, // 0820 0x284a,0x284b,0x284c,0x284d,0x284e,0x284f,0x2850,0x2851,0x2852,0x2853,0x2854,0x2855,0x2856,0x2857,0x2858,0x2859, // 0830 0x285a,0x285b,0x285c,0x285d,0x285e,0x285f,0x2860,0x2861,0x2862,0x2863,0x2864,0x2865,0x2866,0x2867,0x2868,0x2869, // 0840 0x286a,0x286b,0x286c,0x286d,0x286e,0x286f,0x2870,0x2871,0x2872,0x2873,0x2874,0x2875,0x2876,0x2877,0x2878,0x2879, // 0850 0x287a,0x287b,0x287c,0x287d,0x287e,0x287f,0x2880,0x2881,0x2882,0x2883,0x2884,0x2885,0x2886,0x2887,0x2888,0x2889, // 0860 0x288a,0x288b,0x288c,0x288d,0x288e,0x288f,0x2890,0x2891,0x2892,0x2893,0x2894,0x2895,0x2896,0x2897,0x2898,0x2899, // 0870 0x289a,0x289b,0x289c,0x289d,0x289e,0x289f,0x28a0,0x28a1,0x28a2,0x28a3,0x28a4,0x28a5,0x28a6,0x28a7,0x28a8,0x28a9, // 0880 0x28aa,0x28ab,0x28ac,0x28ad,0x28ae,0x28af,0x28b0,0x28b1,0x28b2,0x28b3,0x28b4,0x28b5,0x28b6,0x28b7,0x28b8,0x28b9, // 0890 0x28ba,0x28bb,0x28bc,0x28bd,0x28be,0x28bf,0x28c0,0x28c1,0x28c2,0x28c3,0x28c4,0x28c5,0x28c6,0x28c7,0x28c8,0x28c9, // 08a0 0x28ca,0x28cb,0x28cc,0x28cd,0x28ce,0x28cf,0x28d0,0x28d1,0x28d2,0x28d3,0x28d4,0x28d5,0x28d6,0x28d7,0x28d8,0x28d9, // 08b0 0x28da,0x28db,0x28dc,0x28dd,0x28de,0x28df,0x28e0,0x28e1,0x28e2,0x28e3,0x28e4,0x28e5,0x28e6,0x28e7,0x28e8,0x28e9, // 08c0 0x28ea,0x28eb,0x28ec,0x28ed,0x28ee,0x28ef,0x28f0,0x28f1,0x28f2,0x28f3,0x28f4,0x28f5,0x28f6,0x28f7,0x28f8,0x28f9, // 08d0 0x28fa,0x28fb,0x28fc,0x28fd,0x28fe,0x28ff,0x2900,0x2901,0x2902,0x2903,0x2904,0x2905,0x2906,0x2907,0x2908,0x2909, // 08e0 0x290a,0x290b,0x290c,0x290d,0x290e,0x290f,0x2910,0x2911,0x2912,0x2913,0x2914,0x2915,0x2916,0x2917,0x2918,0x2919, // 08f0 0x291a,0x291b,0x291c,0x291d,0x291e,0x291f,0x2920,0x2921,0x2922,0x2923,0x2924,0x2925,0x2926,0x2927,0x2928,0x2929, // 0900 0x292a,0x292b,0x292c,0x292d,0x292e,0x292f,0x2930,0x2931,0x2932,0x2933,0x2934,0x2935,0x2936,0x2937,0x2938,0x2939, // 0910 0x293a,0x293b,0x293c,0x293d,0x293e,0x293f,0x2940,0x2941,0x2942,0x2943,0x2944,0x2945,0x2946,0x2947,0x2948,0x2949, // 0920 0x294a,0x294b,0x294c,0x294d,0x294e,0x294f,0x2950,0x2951,0x2952,0x2953,0x2954,0x2955,0x2956,0x2957,0x2958,0x2959, // 0930 0x295a,0x295b,0x295c,0x295d,0x295e,0x295f,0x2960,0x2961,0x2962,0x2963,0x2964,0x2965,0x2966,0x2967,0x2968,0x2969, // 0940 0x296a,0x296b,0x296c,0x296d,0x296e,0x296f,0x2970,0x2971,0x2972,0x2973,0x2974,0x2975,0x2976,0x2977,0x2978,0x2979, // 0950 0x297a,0x297b,0x297c,0x297d,0x297e,0x297f,0x2980,0x2981,0x2982,0x2983,0x2984,0x2985,0x2986,0x2987,0x2988,0x2989, // 0960 0x298a,0x298b,0x298c,0x298d,0x298e,0x298f,0x2990,0x2991,0x2992,0x2993,0x2994,0x2995,0x2996,0x2997,0x2998,0x2999, // 0970 0x299a,0x299b,0x299c,0x299d,0x299e,0x299f,0x29a0,0x29a1,0x29a2,0x29a3,0x29a4,0x29a5,0x29a6,0x29a7,0x29a8,0x29a9, // 0980 0x29aa,0x29ab,0x29ac,0x29ad,0x29ae,0x29af,0x29b0,0x29b1,0x29b2,0x29b3,0x29b4,0x29b5,0x29b6,0x29b7,0x29b8,0x29b9, // 0990 0x29ba,0x29bb,0x29bc,0x29bd,0x29be,0x29bf,0x29c0,0x29c1,0x29c2,0x29c3,0x29c4,0x29c5,0x29c6,0x29c7,0x29c8,0x29c9, // 09a0 0x29ca,0x29cb,0x29cc,0x29cd,0x29ce,0x29cf,0x29d0,0x29d1,0x29d2,0x29d3,0x29d4,0x29d5,0x29d6,0x29d7,0x29d8,0x29d9, // 09b0 0x29da,0x29db,0x29dc,0x29dd,0x29de,0x29df,0x29e0,0x29e1,0x29e2,0x29e3,0x29e4,0x29e5,0x29e6,0x29e7,0x29e8,0x29e9, // 09c0 0x29ea,0x29eb,0x29ec,0x29ed,0x29ee,0x29ef,0x29f0,0x29f1,0x29f2,0x29f3,0x29f4,0x29f5,0x29f6,0x29f7,0x29f8,0x29f9, // 09d0 0x29fa,0x29fb,0x29fc,0x29fd,0x29fe,0x29ff,0x2a00,0x2a01,0x2a02,0x2a03,0x2a04,0x2a05,0x2a06,0x2a07,0x2a08,0x2a09, // 09e0 0x2a0a,0x2a0b,0x2a0c,0x2a0d,0x2a0e,0x2a0f,0x2a10,0x2a11,0x2a12,0x2a13,0x2a14,0x2a15,0x2a16,0x2a17,0x2a18,0x2a19, // 09f0 0x2a1a,0x2a1b,0x2a1c,0x2a1d,0x2a1e,0x2a1f,0x2a20,0x2a21,0x2a22,0x2a23,0x2a24,0x2a25,0x2a26,0x2a27,0x2a28,0x2a29, // 0a00 0x2a2a,0x2a2b,0x2a2c,0x2a2d,0x2a2e,0x2a2f,0x2a30,0x2a31,0x2a32,0x2a33,0x2a34,0x2a35,0x2a36,0x2a37,0x2a38,0x2a39, // 0a10 0x2a3a,0x2a3b,0x2a3c,0x2a3d,0x2a3e,0x2a3f,0x2a40,0x2a41,0x2a42,0x2a43,0x2a44,0x2a45,0x2a46,0x2a47,0x2a48,0x2a49, // 0a20 0x2a4a,0x2a4b,0x2a4c,0x2a4d,0x2a4e,0x2a4f,0x2a50,0x2a51,0x2a52,0x2a53,0x2a54,0x2a55,0x2a56,0x2a57,0x2a58,0x2a59, // 0a30 0x2a5a,0x2a5b,0x2a5c,0x2a5d,0x2a5e,0x2a5f,0x2a60,0x2a61,0x2a62,0x2a63,0x2a64,0x2a65,0x2a66,0x2a67,0x2a68,0x2a69, // 0a40 0x2a6a,0x2a6b,0x2a6c,0x2a6d,0x2a6e,0x2a6f,0x2a70,0x2a71,0x2a72,0x2a73,0x2a74,0x2a75,0x2a76,0x2a77,0x2a78,0x2a79, // 0a50 0x2a7a,0x2a7b,0x2a7c,0x2a7d,0x2a7e,0x2a7f,0x2a80,0x2a81,0x2a82,0x2a83,0x2a84,0x2a85,0x2a86,0x2a87,0x2a88,0x2a89, // 0a60 0x2a8a,0x2a8b,0x2a8c,0x2a8d,0x2a8e,0x2a8f,0x2a90,0x2a91,0x2a92,0x2a93,0x2a94,0x2a95,0x2a96,0x2a97,0x2a98,0x2a99, // 0a70 0x2a9a,0x2a9b,0x2a9c,0x2a9d,0x2a9e,0x2a9f,0x2aa0,0x2aa1,0x2aa2,0x2aa3,0x2aa4,0x2aa5,0x2aa6,0x2aa7,0x2aa8,0x2aa9, // 0a80 0x2aaa,0x2aab,0x2aac,0x2aad,0x2aae,0x2aaf,0x2ab0,0x2ab1,0x2ab2,0x2ab3,0x2ab4,0x2ab5,0x2ab6,0x2ab7,0x2ab8,0x2ab9, // 0a90 0x2aba,0x2abb,0x2abc,0x2abd,0x2abe,0x2abf,0x2ac0,0x2ac1,0x2ac2,0x2ac3,0x2ac4,0x2ac5,0x2ac6,0x2ac7,0x2ac8,0x2ac9, // 0aa0 0x2aca,0x2acb,0x2acc,0x2acd,0x2ace,0x2acf,0x2ad0,0x2ad1,0x2ad2,0x2ad3,0x2ad4,0x2ad5,0x2ad6,0x2ad7,0x2ad8,0x2ad9, // 0ab0 0x2ada,0x2adb,0x2adc,0x2add,0x2ade,0x2adf,0x2ae0,0x2ae1,0x2ae2,0x2ae3,0x2ae4,0x2ae5,0x2ae6,0x2ae7,0x2ae8,0x2ae9, // 0ac0 0x2aea,0x2aeb,0x2aec,0x2aed,0x2aee,0x2aef,0x2af0,0x2af1,0x2af2,0x2af3,0x2af4,0x2af5,0x2af6,0x2af7,0x2af8,0x2af9, // 0ad0 0x2afa,0x2afb,0x2afc,0x2afd,0x2afe,0x2aff,0x2b00,0x2b01,0x2b02,0x2b03,0x2b04,0x2b05,0x2b06,0x2b07,0x2b08,0x2b09, // 0ae0 0x2b0a,0x2b0b,0x2b0c,0x2b0d,0x2b0e,0x2b0f,0x2b10,0x2b11,0x2b12,0x2b13,0x2b14,0x2b15,0x2b16,0x2b17,0x2b18,0x2b19, // 0af0 0x2b1a,0x2b1b,0x2b1c,0x2b1d,0x2b1e,0x2b1f,0x2b20,0x2b21,0x2b22,0x2b23,0x2b24,0x2b25,0x2b26,0x2b27,0x2b28,0x2b29, // 0b00 0x2b2a,0x2b2b,0x2b2c,0x2b2d,0x2b2e,0x2b2f,0x2b30,0x2b31,0x2b32,0x2b33,0x2b34,0x2b35,0x2b36,0x2b37,0x2b38,0x2b39, // 0b10 0x2b3a,0x2b3b,0x2b3c,0x2b3d,0x2b3e,0x2b3f,0x2b40,0x2b41,0x2b42,0x2b43,0x2b44,0x2b45,0x2b46,0x2b47,0x2b48,0x2b49, // 0b20 0x2b4a,0x2b4b,0x2b4c,0x2b50,0x2b51,0x2b52,0x2b53,0x2b54,0x2b55,0x2b56,0x2b57,0x2b58,0x2b59,0x2ce5,0x2ce6,0x2ce7, // 0b30 0x2ce8,0x2ce9,0x2cea,0x2cf9,0x2cfa,0x2cfb,0x2cfc,0x2cfe,0x2cff,0x2d70,0x2e00,0x2e01,0x2e02,0x2e03,0x2e04,0x2e05, // 0b40 0x2e06,0x2e07,0x2e08,0x2e09,0x2e0a,0x2e0b,0x2e0c,0x2e0d,0x2e0e,0x2e0f,0x2e10,0x2e11,0x2e12,0x2e13,0x2e14,0x2e15, // 0b50 0x2e16,0x2e17,0x2e18,0x2e19,0x2e1a,0x2e1b,0x2e1c,0x2e1d,0x2e1e,0x2e1f,0x2e20,0x2e21,0x2e22,0x2e23,0x2e24,0x2e25, // 0b60 0x2e26,0x2e27,0x2e28,0x2e29,0x2e2a,0x2e2b,0x2e2c,0x2e2d,0x2e2e,0x2e30,0x2e31,0x2e32,0x2e33,0x2e34,0x2e35,0x2e36, // 0b70 0x2e37,0x2e38,0x2e39,0x2e3a,0x2e3b,0x2e80,0x2e81,0x2e82,0x2e83,0x2e84,0x2e85,0x2e86,0x2e87,0x2e88,0x2e89,0x2e8a, // 0b80 0x2e8b,0x2e8c,0x2e8d,0x2e8e,0x2e8f,0x2e90,0x2e91,0x2e92,0x2e93,0x2e94,0x2e95,0x2e96,0x2e97,0x2e98,0x2e99,0x2e9b, // 0b90 0x2e9c,0x2e9d,0x2e9e,0x2e9f,0x2ea0,0x2ea1,0x2ea2,0x2ea3,0x2ea4,0x2ea5,0x2ea6,0x2ea7,0x2ea8,0x2ea9,0x2eaa,0x2eab, // 0ba0 0x2eac,0x2ead,0x2eae,0x2eaf,0x2eb0,0x2eb1,0x2eb2,0x2eb3,0x2eb4,0x2eb5,0x2eb6,0x2eb7,0x2eb8,0x2eb9,0x2eba,0x2ebb, // 0bb0 0x2ebc,0x2ebd,0x2ebe,0x2ebf,0x2ec0,0x2ec1,0x2ec2,0x2ec3,0x2ec4,0x2ec5,0x2ec6,0x2ec7,0x2ec8,0x2ec9,0x2eca,0x2ecb, // 0bc0 0x2ecc,0x2ecd,0x2ece,0x2ecf,0x2ed0,0x2ed1,0x2ed2,0x2ed3,0x2ed4,0x2ed5,0x2ed6,0x2ed7,0x2ed8,0x2ed9,0x2eda,0x2edb, // 0bd0 0x2edc,0x2edd,0x2ede,0x2edf,0x2ee0,0x2ee1,0x2ee2,0x2ee3,0x2ee4,0x2ee5,0x2ee6,0x2ee7,0x2ee8,0x2ee9,0x2eea,0x2eeb, // 0be0 0x2eec,0x2eed,0x2eee,0x2eef,0x2ef0,0x2ef1,0x2ef2,0x2ef3,0x2f00,0x2f01,0x2f02,0x2f03,0x2f04,0x2f05,0x2f06,0x2f07, // 0bf0 0x2f08,0x2f09,0x2f0a,0x2f0b,0x2f0c,0x2f0d,0x2f0e,0x2f0f,0x2f10,0x2f11,0x2f12,0x2f13,0x2f14,0x2f15,0x2f16,0x2f17, // 0c00 0x2f18,0x2f19,0x2f1a,0x2f1b,0x2f1c,0x2f1d,0x2f1e,0x2f1f,0x2f20,0x2f21,0x2f22,0x2f23,0x2f24,0x2f25,0x2f26,0x2f27, // 0c10 0x2f28,0x2f29,0x2f2a,0x2f2b,0x2f2c,0x2f2d,0x2f2e,0x2f2f,0x2f30,0x2f31,0x2f32,0x2f33,0x2f34,0x2f35,0x2f36,0x2f37, // 0c20 0x2f38,0x2f39,0x2f3a,0x2f3b,0x2f3c,0x2f3d,0x2f3e,0x2f3f,0x2f40,0x2f41,0x2f42,0x2f43,0x2f44,0x2f45,0x2f46,0x2f47, // 0c30 0x2f48,0x2f49,0x2f4a,0x2f4b,0x2f4c,0x2f4d,0x2f4e,0x2f4f,0x2f50,0x2f51,0x2f52,0x2f53,0x2f54,0x2f55,0x2f56,0x2f57, // 0c40 0x2f58,0x2f59,0x2f5a,0x2f5b,0x2f5c,0x2f5d,0x2f5e,0x2f5f,0x2f60,0x2f61,0x2f62,0x2f63,0x2f64,0x2f65,0x2f66,0x2f67, // 0c50 0x2f68,0x2f69,0x2f6a,0x2f6b,0x2f6c,0x2f6d,0x2f6e,0x2f6f,0x2f70,0x2f71,0x2f72,0x2f73,0x2f74,0x2f75,0x2f76,0x2f77, // 0c60 0x2f78,0x2f79,0x2f7a,0x2f7b,0x2f7c,0x2f7d,0x2f7e,0x2f7f,0x2f80,0x2f81,0x2f82,0x2f83,0x2f84,0x2f85,0x2f86,0x2f87, // 0c70 0x2f88,0x2f89,0x2f8a,0x2f8b,0x2f8c,0x2f8d,0x2f8e,0x2f8f,0x2f90,0x2f91,0x2f92,0x2f93,0x2f94,0x2f95,0x2f96,0x2f97, // 0c80 0x2f98,0x2f99,0x2f9a,0x2f9b,0x2f9c,0x2f9d,0x2f9e,0x2f9f,0x2fa0,0x2fa1,0x2fa2,0x2fa3,0x2fa4,0x2fa5,0x2fa6,0x2fa7, // 0c90 0x2fa8,0x2fa9,0x2faa,0x2fab,0x2fac,0x2fad,0x2fae,0x2faf,0x2fb0,0x2fb1,0x2fb2,0x2fb3,0x2fb4,0x2fb5,0x2fb6,0x2fb7, // 0ca0 0x2fb8,0x2fb9,0x2fba,0x2fbb,0x2fbc,0x2fbd,0x2fbe,0x2fbf,0x2fc0,0x2fc1,0x2fc2,0x2fc3,0x2fc4,0x2fc5,0x2fc6,0x2fc7, // 0cb0 0x2fc8,0x2fc9,0x2fca,0x2fcb,0x2fcc,0x2fcd,0x2fce,0x2fcf,0x2fd0,0x2fd1,0x2fd2,0x2fd3,0x2fd4,0x2fd5,0x2ff0,0x2ff1, // 0cc0 0x2ff2,0x2ff3,0x2ff4,0x2ff5,0x2ff6,0x2ff7,0x2ff8,0x2ff9,0x2ffa,0x2ffb,0x3001,0x3002,0x3003,0x3004,0x3008,0x3009, // 0cd0 0x300a,0x300b,0x300c,0x300d,0x300e,0x300f,0x3010,0x3011,0x3012,0x3013,0x3014,0x3015,0x3016,0x3017,0x3018,0x3019, // 0ce0 0x301a,0x301b,0x301c,0x301d,0x301e,0x301f,0x3020,0x3030,0x3036,0x3037,0x303d,0x303e,0x303f,0x309b,0x309c,0x30a0, // 0cf0 0x30fb,0x3190,0x3191,0x3196,0x3197,0x3198,0x3199,0x319a,0x319b,0x319c,0x319d,0x319e,0x319f,0x31c0,0x31c1,0x31c2, // 0d00 0x31c3,0x31c4,0x31c5,0x31c6,0x31c7,0x31c8,0x31c9,0x31ca,0x31cb,0x31cc,0x31cd,0x31ce,0x31cf,0x31d0,0x31d1,0x31d2, // 0d10 0x31d3,0x31d4,0x31d5,0x31d6,0x31d7,0x31d8,0x31d9,0x31da,0x31db,0x31dc,0x31dd,0x31de,0x31df,0x31e0,0x31e1,0x31e2, // 0d20 0x31e3,0x3200,0x3201,0x3202,0x3203,0x3204,0x3205,0x3206,0x3207,0x3208,0x3209,0x320a,0x320b,0x320c,0x320d,0x320e, // 0d30 0x320f,0x3210,0x3211,0x3212,0x3213,0x3214,0x3215,0x3216,0x3217,0x3218,0x3219,0x321a,0x321b,0x321c,0x321d,0x321e, // 0d40 0x322a,0x322b,0x322c,0x322d,0x322e,0x322f,0x3230,0x3231,0x3232,0x3233,0x3234,0x3235,0x3236,0x3237,0x3238,0x3239, // 0d50 0x323a,0x323b,0x323c,0x323d,0x323e,0x323f,0x3240,0x3241,0x3242,0x3243,0x3244,0x3245,0x3246,0x3247,0x3250,0x3260, // 0d60 0x3261,0x3262,0x3263,0x3264,0x3265,0x3266,0x3267,0x3268,0x3269,0x326a,0x326b,0x326c,0x326d,0x326e,0x326f,0x3270, // 0d70 0x3271,0x3272,0x3273,0x3274,0x3275,0x3276,0x3277,0x3278,0x3279,0x327a,0x327b,0x327c,0x327d,0x327e,0x327f,0x328a, // 0d80 0x328b,0x328c,0x328d,0x328e,0x328f,0x3290,0x3291,0x3292,0x3293,0x3294,0x3295,0x3296,0x3297,0x3298,0x3299,0x329a, // 0d90 0x329b,0x329c,0x329d,0x329e,0x329f,0x32a0,0x32a1,0x32a2,0x32a3,0x32a4,0x32a5,0x32a6,0x32a7,0x32a8,0x32a9,0x32aa, // 0da0 0x32ab,0x32ac,0x32ad,0x32ae,0x32af,0x32b0,0x32c0,0x32c1,0x32c2,0x32c3,0x32c4,0x32c5,0x32c6,0x32c7,0x32c8,0x32c9, // 0db0 0x32ca,0x32cb,0x32cc,0x32cd,0x32ce,0x32cf,0x32d0,0x32d1,0x32d2,0x32d3,0x32d4,0x32d5,0x32d6,0x32d7,0x32d8,0x32d9, // 0dc0 0x32da,0x32db,0x32dc,0x32dd,0x32de,0x32df,0x32e0,0x32e1,0x32e2,0x32e3,0x32e4,0x32e5,0x32e6,0x32e7,0x32e8,0x32e9, // 0dd0 0x32ea,0x32eb,0x32ec,0x32ed,0x32ee,0x32ef,0x32f0,0x32f1,0x32f2,0x32f3,0x32f4,0x32f5,0x32f6,0x32f7,0x32f8,0x32f9, // 0de0 0x32fa,0x32fb,0x32fc,0x32fd,0x32fe,0x3300,0x3301,0x3302,0x3303,0x3304,0x3305,0x3306,0x3307,0x3308,0x3309,0x330a, // 0df0 0x330b,0x330c,0x330d,0x330e,0x330f,0x3310,0x3311,0x3312,0x3313,0x3314,0x3315,0x3316,0x3317,0x3318,0x3319,0x331a, // 0e00 0x331b,0x331c,0x331d,0x331e,0x331f,0x3320,0x3321,0x3322,0x3323,0x3324,0x3325,0x3326,0x3327,0x3328,0x3329,0x332a, // 0e10 0x332b,0x332c,0x332d,0x332e,0x332f,0x3330,0x3331,0x3332,0x3333,0x3334,0x3335,0x3336,0x3337,0x3338,0x3339,0x333a, // 0e20 0x333b,0x333c,0x333d,0x333e,0x333f,0x3340,0x3341,0x3342,0x3343,0x3344,0x3345,0x3346,0x3347,0x3348,0x3349,0x334a, // 0e30 0x334b,0x334c,0x334d,0x334e,0x334f,0x3350,0x3351,0x3352,0x3353,0x3354,0x3355,0x3356,0x3357,0x3358,0x3359,0x335a, // 0e40 0x335b,0x335c,0x335d,0x335e,0x335f,0x3360,0x3361,0x3362,0x3363,0x3364,0x3365,0x3366,0x3367,0x3368,0x3369,0x336a, // 0e50 0x336b,0x336c,0x336d,0x336e,0x336f,0x3370,0x3371,0x3372,0x3373,0x3374,0x3375,0x3376,0x3377,0x3378,0x3379,0x337a, // 0e60 0x337b,0x337c,0x337d,0x337e,0x337f,0x3380,0x3381,0x3382,0x3383,0x3384,0x3385,0x3386,0x3387,0x3388,0x3389,0x338a, // 0e70 0x338b,0x338c,0x338d,0x338e,0x338f,0x3390,0x3391,0x3392,0x3393,0x3394,0x3395,0x3396,0x3397,0x3398,0x3399,0x339a, // 0e80 0x339b,0x339c,0x339d,0x339e,0x339f,0x33a0,0x33a1,0x33a2,0x33a3,0x33a4,0x33a5,0x33a6,0x33a7,0x33a8,0x33a9,0x33aa, // 0e90 0x33ab,0x33ac,0x33ad,0x33ae,0x33af,0x33b0,0x33b1,0x33b2,0x33b3,0x33b4,0x33b5,0x33b6,0x33b7,0x33b8,0x33b9,0x33ba, // 0ea0 0x33bb,0x33bc,0x33bd,0x33be,0x33bf,0x33c0,0x33c1,0x33c2,0x33c3,0x33c4,0x33c5,0x33c6,0x33c7,0x33c8,0x33c9,0x33ca, // 0eb0 0x33cb,0x33cc,0x33cd,0x33ce,0x33cf,0x33d0,0x33d1,0x33d2,0x33d3,0x33d4,0x33d5,0x33d6,0x33d7,0x33d8,0x33d9,0x33da, // 0ec0 0x33db,0x33dc,0x33dd,0x33de,0x33df,0x33e0,0x33e1,0x33e2,0x33e3,0x33e4,0x33e5,0x33e6,0x33e7,0x33e8,0x33e9,0x33ea, // 0ed0 0x33eb,0x33ec,0x33ed,0x33ee,0x33ef,0x33f0,0x33f1,0x33f2,0x33f3,0x33f4,0x33f5,0x33f6,0x33f7,0x33f8,0x33f9,0x33fa, // 0ee0 0x33fb,0x33fc,0x33fd,0x33fe,0x33ff,0x4dc0,0x4dc1,0x4dc2,0x4dc3,0x4dc4,0x4dc5,0x4dc6,0x4dc7,0x4dc8,0x4dc9,0x4dca, // 0ef0 0x4dcb,0x4dcc,0x4dcd,0x4dce,0x4dcf,0x4dd0,0x4dd1,0x4dd2,0x4dd3,0x4dd4,0x4dd5,0x4dd6,0x4dd7,0x4dd8,0x4dd9,0x4dda, // 0f00 0x4ddb,0x4ddc,0x4ddd,0x4dde,0x4ddf,0x4de0,0x4de1,0x4de2,0x4de3,0x4de4,0x4de5,0x4de6,0x4de7,0x4de8,0x4de9,0x4dea, // 0f10 0x4deb,0x4dec,0x4ded,0x4dee,0x4def,0x4df0,0x4df1,0x4df2,0x4df3,0x4df4,0x4df5,0x4df6,0x4df7,0x4df8,0x4df9,0x4dfa, // 0f20 0x4dfb,0x4dfc,0x4dfd,0x4dfe,0x4dff,0xa490,0xa491,0xa492,0xa493,0xa494,0xa495,0xa496,0xa497,0xa498,0xa499,0xa49a, // 0f30 0xa49b,0xa49c,0xa49d,0xa49e,0xa49f,0xa4a0,0xa4a1,0xa4a2,0xa4a3,0xa4a4,0xa4a5,0xa4a6,0xa4a7,0xa4a8,0xa4a9,0xa4aa, // 0f40 0xa4ab,0xa4ac,0xa4ad,0xa4ae,0xa4af,0xa4b0,0xa4b1,0xa4b2,0xa4b3,0xa4b4,0xa4b5,0xa4b6,0xa4b7,0xa4b8,0xa4b9,0xa4ba, // 0f50 0xa4bb,0xa4bc,0xa4bd,0xa4be,0xa4bf,0xa4c0,0xa4c1,0xa4c2,0xa4c3,0xa4c4,0xa4c5,0xa4c6,0xa4fe,0xa4ff,0xa60d,0xa60e, // 0f60 0xa60f,0xa673,0xa67e,0xa6f2,0xa6f3,0xa6f4,0xa6f5,0xa6f6,0xa6f7,0xa700,0xa701,0xa702,0xa703,0xa704,0xa705,0xa706, // 0f70 0xa707,0xa708,0xa709,0xa70a,0xa70b,0xa70c,0xa70d,0xa70e,0xa70f,0xa710,0xa711,0xa712,0xa713,0xa714,0xa715,0xa716, // 0f80 0xa720,0xa721,0xa789,0xa78a,0xa828,0xa829,0xa82a,0xa82b,0xa836,0xa837,0xa838,0xa839,0xa874,0xa875,0xa876,0xa877, // 0f90 0xa8ce,0xa8cf,0xa8f8,0xa8f9,0xa8fa,0xa92e,0xa92f,0xa95f,0xa9c1,0xa9c2,0xa9c3,0xa9c4,0xa9c5,0xa9c6,0xa9c7,0xa9c8, // 0fa0 0xa9c9,0xa9ca,0xa9cb,0xa9cc,0xa9cd,0xa9de,0xa9df,0xaa5c,0xaa5d,0xaa5e,0xaa5f,0xaa77,0xaa78,0xaa79,0xaade,0xaadf, // 0fb0 0xaaf0,0xaaf1,0xabeb,0xfb29,0xfbb2,0xfbb3,0xfbb4,0xfbb5,0xfbb6,0xfbb7,0xfbb8,0xfbb9,0xfbba,0xfbbb,0xfbbc,0xfbbd, // 0fc0 0xfbbe,0xfbbf,0xfbc0,0xfbc1,0xfd3e,0xfd3f,0xfdfc,0xfdfd,0xfe10,0xfe11,0xfe12,0xfe13,0xfe14,0xfe15,0xfe16,0xfe17, // 0fd0 0xfe18,0xfe19,0xfe30,0xfe31,0xfe32,0xfe33,0xfe34,0xfe35,0xfe36,0xfe37,0xfe38,0xfe39,0xfe3a,0xfe3b,0xfe3c,0xfe3d, // 0fe0 0xfe3e,0xfe3f,0xfe40,0xfe41,0xfe42,0xfe43,0xfe44,0xfe45,0xfe46,0xfe47,0xfe48,0xfe49,0xfe4a,0xfe4b,0xfe4c,0xfe4d, // 0ff0 0xfe4e,0xfe4f,0xfe50,0xfe51,0xfe52,0xfe54,0xfe55,0xfe56,0xfe57,0xfe58,0xfe59,0xfe5a,0xfe5b,0xfe5c,0xfe5d,0xfe5e, // 1000 0xfe5f,0xfe60,0xfe61,0xfe62,0xfe63,0xfe64,0xfe65,0xfe66,0xfe68,0xfe69,0xfe6a,0xfe6b,0xff01,0xff02,0xff03,0xff04, // 1010 0xff05,0xff06,0xff07,0xff08,0xff09,0xff0a,0xff0b,0xff0c,0xff0d,0xff0e,0xff0f,0xff1a,0xff1b,0xff1c,0xff1d,0xff1e, // 1020 0xff1f,0xff20,0xff3b,0xff3c,0xff3d,0xff3e,0xff3f,0xff40,0xff5b,0xff5c,0xff5d,0xff5e,0xff5f,0xff60,0xff61,0xff62, // 1030 0xff63,0xff64,0xff65,0xffe0,0xffe1,0xffe2,0xffe3,0xffe4,0xffe5,0xffe6,0xffe8,0xffe9,0xffea,0xffeb,0xffec,0xffed, // 1040 0xffee,0xfffc,0xfffd, // 1050 }; WORD utf8_nonascii_unicode_is_ws_keys[UTF8_NONASCII_UNICODE_IS_WS_COUNT] = { // 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, a, b, c, d, e, f, 0x00a0,0x1680,0x2000,0x2001,0x2002,0x2003,0x2004,0x2005,0x2006,0x2007,0x2008,0x2009,0x200a,0x2028,0x2029,0x202f, // 0000 0x205f,0x3000, // 0010 }; // a list of right to left character sequences. // using unicodedata.txt _utf8_unicode_is_rtl_t _utf8_unicode_is_rtl_array[]= { {0x05be,0x05be}, {0x05c0,0x05c0}, {0x05c3,0x05c3}, {0x05c6,0x05c6}, {0x05d0,0x05f4}, {0x0600,0x0603}, {0x060d,0x060d}, {0x061b,0x061b}, {0x061f,0x061f}, {0x0621,0x063a}, {0x0640,0x064a}, {0x066d,0x066f}, {0x0671,0x06d5}, {0x06dd,0x06dd}, {0x06e5,0x06e6}, {0x06ee,0x06ef}, {0x06fa,0x070d}, {0x0710,0x0710}, {0x0712,0x072f}, {0x074d,0x074f}, {0x0780,0x07a5}, {0x07b1,0x07b1}, {0x200f,0x200f}, {0x202b,0x202b}, {0x202e,0x202e}, {0xfb1d,0xfb1d}, {0xfb1f,0xfb28}, {0xfb2a,0xfb36}, {0xfb38,0xfb3c}, {0xfb3e,0xfb3e}, {0xfb40,0xfb41}, {0xfb43,0xfb44}, {0xfb46,0xfb4f}, {0xfb50,0xfbb1}, {0xfbd3,0xfd3d}, {0xfd50,0xfd8f}, {0xfd92,0xfdc7}, {0xfdf0,0xfdfc}, {0xfe70,0xfe74}, {0xfe76,0xfefc}, };