锐单电子商城 , 一站式电子元器件采购平台!
  • 电话:400-990-0325

【lvgl 学习】怎么让LVGL支持GBK编码

时间:2022-08-18 02:00:00 xs618b4nal2传感器xs618b1pbl2传感器820d型温度传感器温度探头703f振动变送器t311a系列压力变送器3cg610b三极管

文章目录

  • 前言
  • 一、前提条件
  • 二、方法
    • 1.增加GBK转Uncode代码文件
    • 2.修改lvgl 的 lv_txt.h、lv_conf.h和 lv_txt.c文件
    • 3.测试代码
  • 总结


前言

由于项目的需要,这几天在学习和使用。lvgl嵌入式图形GUI,踩了很多坑。从一开始,我就不知道怎么做lvgl如何操作lvgl绘图结果发送到 LCD,如何显示中文,如何使用spi flash 做字库,后来觉得用了UTF-8编码对我来说太麻烦了,习惯了GBK使用中文环境UTF-先转换数据,很不方便。因为前几个坑网络上有很多教程,这里就不详细写了,只分享如何把文字编码改成GBK(向下兼容GB2312)。

一、前提条件

系统和 lvgl 能正常运行,能显示所需的中文字库。

二、方法

1.增加GBK转Uncode代码文件

代码如下(示例):

/**  * @file GBK_to_Unicode.c  *  */ /** 包含一些基本数据类型 */ #include "font.h"  /* 按GBK编码顺序排列对应Unicode字符数据 */ static const uint16_t gbk_to_unicode_buff[] = {  0x4e02,0x4e04,0x4e05,0x4e06,0x4e0f,0x4e12,0x4e17,0x4e1f,0x4e20,0x4e21,0x4e23,0x4e26,0x4e29,0x4e2e,0x4e2f,0x4e31,  0x4e33,0x4e35,0x4e37,0x4e3c,0x4e40,0x4e41,0x4e42,0x4e44,0x4e46,0x4e4a,0x4e51,0x4e55,0x4e57,0x4e5a,0x4e5b,0x4e62,  0x4e63,0x4e64,0x4e65,0x4e67,0x4e68,0x4e6a,0x4e6b,0x4e6c,0x4e6d,0x4e6e,0x4e6f,0x4e72,0x4e74,0x4e75,0x4e76,0x4e77,  0x4e78,0x4e79,0x4e7a,0x4e7b,0x4e7c,0x4e7d,0x4e7f,0x4e80,0x4e81,0x4e82,0x4e83,0x4e84,0x4e85,0x4e87,0x4e8a,0x4e90,  0x4e96,0x4e97,0x4e99,0x4e9c,0x4e9d,0x4e9e,0x4ea3,0x4eaa,0x4eaf,0x4eb0,0x4eb1,0x4eb4,0x4eb6,0x4eb7,0x4eb8,0x4eb9,  0x4ebc,0x4ebd,0x4ebe,0x4ec8,0x4ecc,0x4ecf,0x4ed0,0x4ed2,0x4eda,0x4edb,0x4edc,0x4ee0,0x4ee2,0x4ee6,0x4ee7,0x4ee9,  0x4eed,0x4eee,0x4eef,0x4ef1,0x4ef4,0x4ef8,0x4ef9,0x4efa,0x4efc,0x4efe,0x4f00,0x4f02,0x4f03,0x4f04,0x4f05,0x4f06,  0x4f07,0x4f08,0x4f0b,0x4f0c,0x4f12,0x4f13,0x4f14,0x4f15,0x4f16,0x4f1c,0x4f1d,0x4f21,0x4f23,0x4f28,0x4f29,0x4f2c,  0x4f2d,0x4f2e,0x4f31,0x4f33,0x4f35,0x4f37,0x4f39,0x4f3b,0x4f3e,0x4f3f,0x4f40,0x4f41,0x4f42,0x4f44,0x4f45,0x4f47,  0x4f48,0x4f49,0x4f4a,0x4f4b,0x4f4c,0x4f52,0x4f54,0x4f56,0x4f61,0x4f62,0x4f66,0x4f68,0x4f6a,0x4f6b,0x4f6d,0x4f6e,  0x4f71,0x4f72,0x4f75,0x4f77,0x4f78,0x4f79,0x4f7a,0x4f7d,0x4f80,0x4f81,0x4f82,0x4f85,0x4f86,0x4f87,0x4f8a,0x4f8c,  0x4f8e,0x4f90,0x4f92,0x4f93,0x4f95,0x4f96,0x4f98,0x4f99,0x4f9a,0x4f9c,0x4f9e,0x4f9f,0x4fa1,0x4fa2,0x4fa4,0x4fab,  0x4fad,0x4fb0,0x4fb1,0x4fb2,0x4fb3,0x4fb4,0x4fb6,0x4fb7,0x4fb8,0x4fb9,0x4fba,0x4fbb,0x4fbc,0x4fbd,0x4fbe,0x4fc0,  0x4fc1,0x4fc2,0x4fc6,0x4fc7,0x4fc8,0x4fc9,0x4fcb,0x4fcc,0x4fcd,0x4fd2,0x4fd3,0x4fd4,0x4fd5,0x4fd6,0x4fd9,0x4fdb,  0x4fe0,0x4fe2,0x4fe4,0x4fe5,0x4fe7,0x4feb,0x4fec,0x4ff0,0x4ff2,0x4ff4,0x4ff5,0x4ff6,0x4ff7,0x4ff9,0x4ffb,0x4ffc,  0x4ffd,0x4fff,0x5000,0x5001,0x5002,0x5003,0x5004,0x5005,0x5006,0x5007,0x5008,0x5009,0x500a,0x500b,0x500e,0x5010,  0x5011,0x5013,0x5015,0x5016,0x5017,0x501b,0x501d,0x501e,0x5020,0x5022,0x5023,0x5024,0x5027,0x502b,0x502f,0x5030,  0x5031,0x5032,0x5033,0x5034,0x5035,0x5036,0x5037,0x5038,0x5039,0x503b,0x503d,0x503f,0x5040,0x5041,0x5042,0x5044,  0x5045,0x5046,0x5049,0x504a,0x504b,0x504d,0x5050,0x5051,0x5052,0x5053,0x5054,0x5056,0x5057,0x5058,0x5059,0x505b,  0x505d,0x505e,0x505f,0x5060,0x5061,0x5062,0x5063,0x5064,0x5066,0x5067,0x5068,0x5069,0x506a,0x506b,0x506d,0x506e,  0x506f,0x5070,0x5071,0x5072,0x5073,0x5074,0x5075,0x5078,0x5079,0x507a,0x507c,0x507d,0x5081,0x5082,0x5083,0x5084,  0x5086,0x5087,0x5089,0x508a,0x508b,0x508c,0x508e,0x508f,0x5090,0x5091,0x5092,0x5093,0x5094,0x5095,0x5096,0x5097,  0x5098,0x5099,0x509a,0x509b,0x509c,0x509d,0x509e,0x509f,0x50a0,0x50a1,0x50a2,0x50a4,0x50a6,0x50aa,0x50ab,0x50ad,  0x50ae,0x50af,0x50b0,0x50b1,0x50b3,0x50b4,0x50b5,0x50b6,0x50b7,0x50b8,0x50b9,0x50bc,0x50bd,0x50be,0x50bf,0x50c0,  0x50c1,0x50c2,0x50c3,0x50c4,0x50c5,0x50c6,0x50c7,0x50c8,0x50c9,0x50ca,0x50cb,0x50cc,0x50cd,0x50ce,0x50d0,0x50d1,  0x50d2,0x50d3,0x50d4,0x50d5,0x50d7,0x50d8,0x50d9,0x50db,0x50dc,0x50dd,0x50de,0x50df,0x50e0,0x50e1,0x50e2,0x50e3,  0x50e4,0x50e5,0x50e8,0x50e9,0x50ea,0x50eb,0x50ef,0x50f0,0x50f1,0x50f2,0x50f4,0x50f6,0x50f7,0x50f8,0x50f9,0x50fa,  0x50fc,0x50fd,0x50fe,0x50ff,0x5100,0x5101,0x5102,0x5103,0x5104,0x5105,0x5108,0x5109,0x510a,0x510c,0x510d,0x510e,  0x510f,0x5110,0x5111,0x5113,0x5114,0x5115,0x5116,0x5117,0x5118,0x5119,0x511a,0x511b,0x511c,0x511d,0x511e,0x511f,  0x5120,0x5122,0x5123,0x5124,0x5125,0x5126,0x5127,0x5128,0x5129,0x512a,0x512b,0x512c,0x512d,0x512e,0x512f,0x5130,  0x5131,0x5132,0x5133,0x5134,0x5135,0x5136,0x5137,0x5138,0x5139,0x513a,0x513b,0x513c,0x513d,0x513e,x5142,0x5147,
	0x514a,0x514c,0x514e,0x514f,0x5150,0x5152,0x5153,0x5157,0x5158,0x5159,0x515b,0x515d,0x515e,0x515f,0x5160,0x5161,
	0x5163,0x5164,0x5166,0x5167,0x5169,0x516a,0x516f,0x5172,0x517a,0x517e,0x517f,0x5183,0x5184,0x5186,0x5187,0x518a,
	0x518b,0x518e,0x518f,0x5190,0x5191,0x5193,0x5194,0x5198,0x519a,0x519d,0x519e,0x519f,0x51a1,0x51a3,0x51a6,0x51a7,
	0x51a8,0x51a9,0x51aa,0x51ad,0x51ae,0x51b4,0x51b8,0x51b9,0x51ba,0x51be,0x51bf,0x51c1,0x51c2,0x51c3,0x51c5,0x51c8,
	0x51ca,0x51cd,0x51ce,0x51d0,0x51d2,0x51d3,0x51d4,0x51d5,0x51d6,0x51d7,0x51d8,0x51d9,0x51da,0x51dc,0x51de,0x51df,
	0x51e2,0x51e3,0x51e5,0x51e6,0x51e7,0x51e8,0x51e9,0x51ea,0x51ec,0x51ee,0x51f1,0x51f2,0x51f4,0x51f7,0x51fe,0x5204,
	0x5205,0x5209,0x520b,0x520c,0x520f,0x5210,0x5213,0x5214,0x5215,0x521c,0x521e,0x521f,0x5221,0x5222,0x5223,0x5225,
	0x5226,0x5227,0x522a,0x522c,0x522f,0x5231,0x5232,0x5234,0x5235,0x523c,0x523e,0x5244,0x5245,0x5246,0x5247,0x5248,
	0x5249,0x524b,0x524e,0x524f,0x5252,0x5253,0x5255,0x5257,0x5258,0x5259,0x525a,0x525b,0x525d,0x525f,0x5260,0x5262,
	0x5263,0x5264,0x5266,0x5268,0x526b,0x526c,0x526d,0x526e,0x5270,0x5271,0x5273,0x5274,0x5275,0x5276,0x5277,0x5278,
	0x5279,0x527a,0x527b,0x527c,0x527e,0x5280,0x5283,0x5284,0x5285,0x5286,0x5287,0x5289,0x528a,0x528b,0x528c,0x528d,
	0x528e,0x528f,0x5291,0x5292,0x5294,0x5295,0x5296,0x5297,0x5298,0x5299,0x529a,0x529c,0x52a4,0x52a5,0x52a6,0x52a7,
	0x52ae,0x52af,0x52b0,0x52b4,0x52b5,0x52b6,0x52b7,0x52b8,0x52b9,0x52ba,0x52bb,0x52bc,0x52bd,0x52c0,0x52c1,0x52c2,
	0x52c4,0x52c5,0x52c6,0x52c8,0x52ca,0x52cc,0x52cd,0x52ce,0x52cf,0x52d1,0x52d3,0x52d4,0x52d5,0x52d7,0x52d9,0x52da,
	0x52db,0x52dc,0x52dd,0x52de,0x52e0,0x52e1,0x52e2,0x52e3,0x52e5,0x52e6,0x52e7,0x52e8,0x52e9,0x52ea,0x52eb,0x52ec,
	0x52ed,0x52ee,0x52ef,0x52f1,0x52f2,0x52f3,0x52f4,0x52f5,0x52f6,0x52f7,0x52f8,0x52fb,0x52fc,0x52fd,0x5301,0x5302,
	0x5303,0x5304,0x5307,0x5309,0x530a,0x530b,0x530c,0x530e,0x5311,0x5312,0x5313,0x5314,0x5318,0x531b,0x531c,0x531e,
	0x531f,0x5322,0x5324,0x5325,0x5327,0x5328,0x5329,0x532b,0x532c,0x532d,0x532f,0x5330,0x5331,0x5332,0x5333,0x5334,
	0x5335,0x5336,0x5337,0x5338,0x533c,0x533d,0x5340,0x5342,0x5344,0x5346,0x534b,0x534c,0x534d,0x5350,0x5354,0x5358,
	0x5359,0x535b,0x535d,0x5365,0x5368,0x536a,0x536c,0x536d,0x5372,0x5376,0x5379,0x537b,0x537c,0x537d,0x537e,0x5380,
	0x5381,0x5383,0x5387,0x5388,0x538a,0x538e,0x538f,0x5390,0x5391,0x5392,0x5393,0x5394,0x5396,0x5397,0x5399,0x539b,
	0x539c,0x539e,0x53a0,0x53a1,0x53a4,0x53a7,0x53aa,0x53ab,0x53ac,0x53ad,0x53af,0x53b0,0x53b1,0x53b2,0x53b3,0x53b4,
	0x53b5,0x53b7,0x53b8,0x53b9,0x53ba,0x53bc,0x53bd,0x53be,0x53c0,0x53c3,0x53c4,0x53c5,0x53c6,0x53c7,0x53ce,0x53cf,
	0x53d0,0x53d2,0x53d3,0x53d5,0x53da,0x53dc,0x53dd,0x53de,0x53e1,0x53e2,0x53e7,0x53f4,0x53fa,0x53fe,0x53ff,0x5400,
	0x5402,0x5405,0x5407,0x540b,0x5414,0x5418,0x5419,0x541a,0x541c,0x5422,0x5424,0x5425,0x542a,0x5430,0x5433,0x5436,
	0x5437,0x543a,0x543d,0x543f,0x5441,0x5442,0x5444,0x5445,0x5447,0x5449,0x544c,0x544d,0x544e,0x544f,0x5451,0x545a,
	0x545d,0x545e,0x545f,0x5460,0x5461,0x5463,0x5465,0x5467,0x5469,0x546a,0x546b,0x546c,0x546d,0x546e,0x546f,0x5470,
	0x5474,0x5479,0x547a,0x547e,0x547f,0x5481,0x5483,0x5485,0x5487,0x5488,0x5489,0x548a,0x548d,0x5491,0x5493,0x5497,
	0x5498,0x549c,0x549e,0x549f,0x54a0,0x54a1,0x54a2,0x54a5,0x54ae,0x54b0,0x54b2,0x54b5,0x54b6,0x54b7,0x54b9,0x54ba,
	0x54bc,0x54be,0x54c3,0x54c5,0x54ca,0x54cb,0x54d6,0x54d8,0x54db,0x54e0,0x54e1,0x54e2,0x54e3,0x54e4,0x54eb,0x54ec,
	0x54ef,0x54f0,0x54f1,0x54f4,0x54f5,0x54f6,0x54f7,0x54f8,0x54f9,0x54fb,0x54fe,0x5500,0x5502,0x5503,0x5504,0x5505,
	0x5508,0x550a,0x550b,0x550c,0x550d,0x550e,0x5512,0x5513,0x5515,0x5516,0x5517,0x5518,0x5519,0x551a,0x551c,0x551d,
	0x551e,0x551f,0x5521,0x5525,0x5526,0x5528,0x5529,0x552b,0x552d,0x5532,0x5534,0x5535,0x5536,0x5538,0x5539,0x553a,
	0x553b,0x553d,0x5540,0x5542,0x5545,0x5547,0x5548,0x554b,0x554c,0x554d,0x554e,0x554f,0x5551,0x5552,0x5553,0x5554,
	0x5557,0x5558,0x5559,0x555a,0x555b,0x555d,0x555e,0x555f,0x5560,0x5562,0x5563,0x5568,0x5569,0x556b,0x556f,0x5570,
	0x5571,0x5572,0x5573,0x5574,0x5579,0x557a,0x557d,0x557f,0x5585,0x5586,0x558c,0x558d,0x558e,0x5590,0x5592,0x5593,
	0x5595,0x5596,0x5597,0x559a,0x559b,0x559e,0x55a0,0x55a1,0x55a2,0x55a3,0x55a4,0x55a5,0x55a6,0x55a8,0x55a9,0x55aa,
	0x55ab,0x55ac,0x55ad,0x55ae,0x55af,0x55b0,0x55b2,0x55b4,0x55b6,0x55b8,0x55ba,0x55bc,0x55bf,0x55c0,0x55c1,0x55c2,
	0x55c3,0x55c6,0x55c7,0x55c8,0x55ca,0x55cb,0x55ce,0x55cf,0x55d0,0x55d5,0x55d7,0x55d8,0x55d9,0x55da,0x55db,0x55de,
	0x55e0,0x55e2,0x55e7,0x55e9,0x55ed,0x55ee,0x55f0,0x55f1,0x55f4,0x55f6,0x55f8,0x55f9,0x55fa,0x55fb,0x55fc,0x55ff,
	0x5602,0x5603,0x5604,0x5605,0x5606,0x5607,0x560a,0x560b,0x560d,0x5610,0x5611,0x5612,0x5613,0x5614,0x5615,0x5616,
	0x5617,0x5619,0x561a,0x561c,0x561d,0x5620,0x5621,0x5622,0x5625,0x5626,0x5628,0x5629,0x562a,0x562b,0x562e,0x562f,
	0x5630,0x5633,0x5635,0x5637,0x5638,0x563a,0x563c,0x563d,0x563e,0x5640,0x5641,0x5642,0x5643,0x5644,0x5645,0x5646,
	0x5647,0x5648,0x5649,0x564a,0x564b,0x564f,0x5650,0x5651,0x5652,0x5653,0x5655,0x5656,0x565a,0x565b,0x565d,0x565e,
	0x565f,0x5660,0x5661,0x5663,0x5665,0x5666,0x5667,0x566d,0x566e,0x566f,0x5670,0x5672,0x5673,0x5674,0x5675,0x5677,
	0x5678,0x5679,0x567a,0x567d,0x567e,0x567f,0x5680,0x5681,0x5682,0x5683,0x5684,0x5687,0x5688,0x5689,0x568a,0x568b,
	0x568c,0x568d,0x5690,0x5691,0x5692,0x5694,0x5695,0x5696,0x5697,0x5698,0x5699,0x569a,0x569b,0x569c,0x569d,0x569e,
	0x569f,0x56a0,0x56a1,0x56a2,0x56a4,0x56a5,0x56a6,0x56a7,0x56a8,0x56a9,0x56aa,0x56ab,0x56ac,0x56ad,0x56ae,0x56b0,
	0x56b1,0x56b2,0x56b3,0x56b4,0x56b5,0x56b6,0x56b8,0x56b9,0x56ba,0x56bb,0x56bd,0x56be,0x56bf,0x56c0,0x56c1,0x56c2,
	0x56c3,0x56c4,0x56c5,0x56c6,0x56c7,0x56c8,0x56c9,0x56cb,0x56cc,0x56cd,0x56ce,0x56cf,0x56d0,0x56d1,0x56d2,0x56d3,
	0x56d5,0x56d6,0x56d8,0x56d9,0x56dc,0x56e3,0x56e5,0x56e6,0x56e7,0x56e8,0x56e9,0x56ea,0x56ec,0x56ee,0x56ef,0x56f2,
	0x56f3,0x56f6,0x56f7,0x56f8,0x56fb,0x56fc,0x5700,0x5701,0x5702,0x5705,0x5707,0x570b,0x570c,0x570d,0x570e,0x570f,
	0x5710,0x5711,0x5712,0x5713,0x5714,0x5715,0x5716,0x5717,0x5718,0x5719,0x571a,0x571b,0x571d,0x571e,0x5720,0x5721,
	0x5722,0x5724,0x5725,0x5726,0x5727,0x572b,0x5731,0x5732,0x5734,0x5735,0x5736,0x5737,0x5738,0x573c,0x573d,0x573f,
	0x5741,0x5743,0x5744,0x5745,0x5746,0x5748,0x5749,0x574b,0x5752,0x5753,0x5754,0x5755,0x5756,0x5758,0x5759,0x5762,
	0x5763,0x5765,0x5767,0x576c,0x576e,0x5770,0x5771,0x5772,0x5774,0x5775,0x5778,0x5779,0x577a,0x577d,0x577e,0x577f,
	0x5780,0x5781,0x5787,0x5788,0x5789,0x578a,0x578d,0x578e,0x578f,0x5790,0x5791,0x5794,0x5795,0x5796,0x5797,0x5798,
	0x5799,0x579a,0x579c,0x579d,0x579e,0x579f,0x57a5,0x57a8,0x57aa,0x57ac,0x57af,0x57b0,0x57b1,0x57b3,0x57b5,0x57b6,
	0x57b7,0x57b9,0x57ba,0x57bb,0x57bc,0x57bd,0x57be,0x57bf,0x57c0,0x57c1,0x57c4,0x57c5,0x57c6,0x57c7,0x57c8,0x57c9,
	0x57ca,0x57cc,0x57cd,0x57d0,0x57d1,0x57d3,0x57d6,0x57d7,0x57db,0x57dc,0x57de,0x57e1,0x57e2,0x57e3,0x57e5,0x57e6,
	0x57e7,0x57e8,0x57e9,0x57ea,0x57eb,0x57ec,0x57ee,0x57f0,0x57f1,0x57f2,0x57f3,0x57f5,0x57f6,0x57f7,0x57fb,0x57fc,
	0x57fe,0x57ff,0x5801,0x5803,0x5804,0x5805,0x5808,0x5809,0x580a,0x580c,0x580e,0x580f,0x5810,0x5812,0x5813,0x5814,
	0x5816,0x5817,0x5818,0x581a,0x581b,0x581c,0x581d,0x581f,0x5822,0x5823,0x5825,0x5826,0x5827,0x5828,0x5829,0x582b,
	0x582c,0x582d,0x582e,0x582f,0x5831,0x5832,0x5833,0x5834,0x5836,0x5837,0x5838,0x5839,0x583a,0x583b,0x583c,0x583d,
	0x583e,0x583f,0x5840,0x5841,0x5842,0x5843,0x5845,0x5846,0x5847,0x5848,0x5849,0x584a,0x584b,0x584e,0x584f,0x5850,
	0x5852,0x5853,0x5855,0x5856,0x5857,0x5859,0x585a,0x585b,0x585c,0x585d,0x585f,0x5860,0x5861,0x5862,0x5863,0x5864,
	0x5866,0x5867,0x5868,0x5869,0x586a,0x586d,0x586e,0x586f,0x5870,0x5871,0x5872,0x5873,0x5874,0x5875,0x5876,0x5877,
	0x5878,0x5879,0x587a,0x587b,0x587c,0x587d,0x587f,0x5882,0x5884,0x5886,0x5887,0x5888,0x588a,0x588b,0x588c,0x588d,
	0x588e,0x588f,0x5890,0x5891,0x5894,0x5895,0x5896,0x5897,0x5898,0x589b,0x589c,0x589d,0x58a0,0x58a1,0x58a2,0x58a3,
	0x58a4,0x58a5,0x58a6,0x58a7,0x58aa,0x58ab,0x58ac,0x58ad,0x58ae,0x58af,0x58b0,0x58b1,0x58b2,0x58b3,0x58b4,0x58b5,
	0x58b6,0x58b7,0x58b8,0x58b9,0x58ba,0x58bb,0x58bd,0x58be,0x58bf,0x58c0,0x58c2,0x58c3,0x58c4,0x58c6,0x58c7,0x58c8,
	0x58c9,0x58ca,0x58cb,0x58cc,0x58cd,0x58ce,0x58cf,0x58d0,0x58d2,0x58d3,0x58d4,0x58d6,0x58d7,0x58d8,0x58d9,0x58da,
	0x58db,0x58dc,0x58dd,0x58de,0x58df,0x58e0,0x58e1,0x58e2,0x58e3,0x58e5,0x58e6,0x58e7,0x58e8,0x58e9,0x58ea,0x58ed,
	0x58ef,0x58f1,0x58f2,0x58f4,0x58f5,0x58f7,0x58f8,0x58fa,0x58fb,0x58fc,0x58fd,0x58fe,0x58ff,0x5900,0x5901,0x5903,
	0x5905,0x5906,0x5908,0x5909,0x590a,0x590b,0x590c,0x590e,0x5910,0x5911,0x5912,0x5913,0x5917,0x5918,0x591b,0x591d,
	0x591e,0x5920,0x5921,0x5922,0x5923,0x5926,0x5928,0x592c,0x5930,0x5932,0x5933,0x5935,0x5936,0x593b,0x593d,0x593e,
	0x593f,0x5940,0x5943,0x5945,0x5946,0x594a,0x594c,0x594d,0x5950,0x5952,0x5953,0x5959,0x595b,0x595c,0x595d,0x595e,
	0x595f,0x5961,0x5963,0x5964,0x5966,0x5967,0x5968,0x5969,0x596a,0x596b,0x596c,0x596d,0x596e,0x596f,0x5970,0x5971,
	0x5972,0x5975,0x5977,0x597a,0x597b,0x597c,0x597e,0x597f,0x5980,0x5985,0x5989,0x598b,0x598c,0x598e,0x598f,0x5990,
	0x5991,0x5994,0x5995,0x5998,0x599a,0x599b,0x599c,0x599d,0x599f,0x59a0,0x59a1,0x59a2,0x59a6,0x59a7,0x59ac,0x59ad,
	0x59b0,0x59b1,0x59b3,0x59b4,0x59b5,0x59b6,0x59b7,0x59b8,0x59ba,0x59bc,0x59bd,0x59bf,0x59c0,0x59c1,0x59c2,0x59c3,
	0x59c4,0x59c5,0x59c7,0x59c8,0x59c9,0x59cc,0x59cd,0x59ce,0x59cf,0x59d5,0x59d6,0x59d9,0x59db,0x59de,0x59df,0x59e0,
	0x59e1,0x59e2,0x59e4,0x59e6,0x59e7,0x59e9,0x59ea,0x59eb,0x59ed,0x59ee,0x59ef,0x59f0,0x59f1,0x59f2,0x59f3,0x59f4,
	0x59f5,0x59f6,0x59f7,0x59f8,0x59fa,0x59fc,0x59fd,0x59fe,0x5a00,0x5a02,0x5a0a,0x5a0b,0x5a0d,0x5a0e,0x5a0f,0x5a10,
	0x5a12,0x5a14,0x5a15,0x5a16,0x5a17,0x5a19,0x5a1a,0x5a1b,0x5a1d,0x5a1e,0x5a21,0x5a22,0x5a24,0x5a26,0x5a27,0x5a28,
	0x5a2a,0x5a2b,0x5a2c,0x5a2d,0x5a2e,0x5a2f,0x5a30,0x5a33,0x5a35,0x5a37,0x5a38,0x5a39,0x5a3a,0x5a3b,0x5a3d,0x5a3e,
	0x5a3f,0x5a41,0x5a42,0x5a43,0x5a44,0x5a45,0x5a47,0x5a48,0x5a4b,0x5a4c,0x5a4d,0x5a4e,0x5a4f,0x5a50,0x5a51,0x5a52,
	0x5a53,0x5a54,0x5a56,0x5a57,0x5a58,0x5a59,0x5a5b,0x5a5c,0x5a5d,0x5a5e,0x5a5f,0x5a60,0x5a61,0x5a63,0x5a64,0x5a65,
	0x5a66,0x5a68,0x5a69,0x5a6b,0x5a6c,0x5a6d,0x5a6e,0x5a6f,0x5a70,0x5a71,0x5a72,0x5a73,0x5a78,0x5a79,0x5a7b,0x5a7c,
	0x5a7d,0x5a7e,0x5a80,0x5a81,0x5a82,0x5a83,0x5a84,0x5a85,0x5a86,0x5a87,0x5a88,0x5a89,0x5a8a,0x5a8b,0x5a8c,0x5a8d,
	0x5a8e,0x5a8f,0x5a90,0x5a91,0x5a93,0x5a94,0x5a95,0x5a96,0x5a97,0x5a98,0x5a99,0x5a9c,0x5a9d,0x5a9e,0x5a9f,0x5aa0,
	0x5aa1,0x5aa2,0x5aa3,0x5aa4,0x5aa5,0x5aa6,0x5aa7,0x5aa8,0x5aa9,0x5aab,0x5aac,0x5aad,0x5aae,0x5aaf,0x5ab0,0x5ab1,
	0x5ab4,0x5ab6,0x5ab7,0x5ab9,0x5aba,0x5abb,0x5abc,0x5abd,0x5abf,0x5ac0,0x5ac3,0x5ac4,0x5ac5,0x5ac6,0x5ac7,0x5ac8,
	0x5aca,0x5acb,0x5acd,0x5ace,0x5acf,0x5ad0,0x5ad1,0x5ad3,0x5ad5,0x5ad7,0x5ad9,0x5ada,0x5adb,0x5add,0x5ade,0x5adf,
	0x5ae2,0x5ae4,0x5ae5,0x5ae7,0x5ae8,0x5aea,0x5aec,0x5aed,0x5aee,0x5aef,0x5af0,0x5af2,0x5af3,0x5af4,0x5af5,0x5af6,
	0x5af7,0x5af8,0x5af9,0x5afa,0x5afb,0x5afc,0x5afd,0x5afe,0x5aff,0x5b00,0x5b01,0x5b02,0x5b03,0x5b04,0x5b05,0x5b06,
	0x5b07,0x5b08,0x5b0a,0x5b0b,0x5b0c,0x5b0d,0x5b0e,0x5b0f,0x5b10,0x5b11,0x5b12,0x5b13,0x5b14,0x5b15,0x5b18,0x5b19,
	0x5b1a,0x5b1b,0x5b1c,0x5b1d,0x5b1e,0x5b1f,0x5b20,0x5b21,0x5b22,0x5b23,0x5b24,0x5b25,0x5b26,0x5b27,0x5b28,0x5b29,
	0x5b2a,0x5b2b,0x5b2c,0x5b2d,0x5b2e,0x5b2f,0x5b30,0x5b31,0x5b33,0x5b35,0x5b36,0x5b38,0x5b39,0x5b3a,0x5b3b,0x5b3c,
	0x5b3d,0x5b3e,0x5b3f,0x5b41,0x5b42,0x5b43,0x5b44,0x5b45,0x5b46,0x5b47,0x5b48,0x5b49,0x5b4a,0x5b4b,0x5b4c,0x5b4d,
	0x5b4e,0x5b4f,0x5b52,0x5b56,0x5b5e,0x5b60,0x5b61,0x5b67,0x5b68,0x5b6b,0x5b6d,0x5b6e,0x5b6f,0x5b72,0x5b74,0x5b76,
	0x5b77,0x5b78,0x5b79,0x5b7b,0x5b7c,0x5b7e,0x5b7f,0x5b82,0x5b86,0x5b8a,0x5b8d,0x5b8e,0x5b90,0x5b91,0x5b92,0x5b94,
	0x5b96,0x5b9f,0x5ba7,0x5ba8,0x5ba9,0x5bac,0x5bad,0x5bae,0x5baf,0x5bb1,0x5bb2,0x5bb7,0x5bba,0x5bbb,0x5bbc,0x5bc0,
	0x5bc1,0x5bc3,0x5bc8,0x5bc9,0x5bca,0x5bcb,0x5bcd,0x5bce,0x5bcf,0x5bd1,0x5bd4,0x5bd5,0x5bd6,0x5bd7,0x5bd8,0x5bd9,
	0x5bda,0x5bdb,0x5bdc,0x5be0,0x5be2,0x5be3,0x5be6,0x5be7,0x5be9,0x5bea,0x5beb,0x5bec,0x5bed,0x5bef,0x5bf1,0x5bf2,
	0x5bf3,0x5bf4,0x5bf5,0x5bf6,0x5bf7,0x5bfd,0x5bfe,0x5c00,0x5c02,0x5c03,0x5c05,0x5c07,0x5c08,0x5c0b,0x5c0c,0x5c0d,
	0x5c0e,0x5c10,0x5c12,0x5c13,0x5c17,0x5c19,0x5c1b,0x5c1e,0x5c1f,0x5c20,0x5c21,0x5c23,0x5c26,0x5c28,0x5c29,0x5c2a,
	0x5c2b,0x5c2d,0x5c2e,0x5c2f,0x5c30,0x5c32,0x5c33,0x5c35,0x5c36,0x5c37,0x5c43,0x5c44,0x5c46,0x5c47,0x5c4c,0x5c4d,
	0x5c52,0x5c53,0x5c54,0x5c56,0x5c57,0x5c58,0x5c5a,0x5c5b,0x5c5c,0x5c5d,0x5c5f,0x5c62,0x5c64,0x5c67,0x5c68,0x5c69,
	0x5c6a,0x5c6b,0x5c6c,0x5c6d,0x5c70,0x5c72,0x5c73,0x5c74,0x5c75,0x5c76,0x5c77,0x5c78,0x5c7b,0x5c7c,0x5c7d,0x5c7e,
	0x5c80,0x5c83,0x5c84,0x5c85,0x5c86,0x5c87,0x5c89,0x5c8a,0x5c8b,0x5c8e,0x5c8f,0x5c92,0x5c93,0x5c95,0x5c9d,0x5c9e,
	0x5c9f,0x5ca0,0x5ca1,0x5ca4,0x5ca5,0x5ca6,0x5ca7,0x5ca8,0x5caa,0x5cae,0x5caf,0x5cb0,0x5cb2,0x5cb4,0x5cb6,0x5cb9,
	0x5cba,0x5cbb,0x5cbc,0x5cbe,0x5cc0,0x5cc2,0x5cc3,0x5cc5,0x5cc6,0x5cc7,0x5cc8,0x5cc9,0x5cca,0x5ccc,0x5ccd,0x5cce,
	0x5ccf,0x5cd0,0x5cd1,0x5cd3,0x5cd4,0x5cd5,0x5cd6,0x5cd7,0x5cd8,0x5cda,0x5cdb,0x5cdc,0x5cdd,0x5cde,0x5cdf,0x5ce0,
	0x5ce2,0x5ce3,0x5ce7,0x5ce9,0x5ceb,0x5cec,0x5cee,0x5cef,0x5cf1,0x5cf2,0x5cf3,0x5cf4,0x5cf5,0x5cf6,0x5cf7,0x5cf8,
	0x5cf9,0x5cfa,0x5cfc,0x5cfd,0x5cfe,0x5cff,0x5d00,0x5d01,0x5d04,0x5d05,0x5d08,0x5d09,0x5d0a,0x5d0b,0x5d0c,0x5d0d,
	0x5d0f,0x5d10,0x5d11,0x5d12,0x5d13,0x5d15,0x5d17,0x5d18,0x5d19,0x5d1a,0x5d1c,0x5d1d,0x5d1f,0x5d20,0x5d21,0x5d22,
	0x5d23,0x5d25,0x5d28,0x5d2a,0x5d2b,0x5d2c,0x5d2f,0x5d30,0x5d31,0x5d32,0x5d33,0x5d35,0x5d36,0x5d37,0x5d38,0x5d39,
	0x5d3a,0x5d3b,0x5d3c,0x5d3f,0x5d40,0x5d41,0x5d42,0x5d43,0x5d44,0x5d45,0x5d46,0x5d48,0x5d49,0x5d4d,0x5d4e,0x5d4f,
	0x5d50,0x5d51,0x5d52,0x5d53,0x5d54,0x5d55,0x5d56,0x5d57,0x5d59,0x5d5a,0x5d5c,0x5d5e,0x5d5f,0x5d60,0x5d61,0x5d62,
	0x5d63,0x5d64,0x5d65,0x5d66,0x5d67,0x5d68,0x5d6a,0x5d6d,0x5d6e,0x5d70,0x5d71,0x5d72,0x5d73,0x5d75,0x5d76,0x5d77,
	0x5d78,0x5d79,0x5d7a,0x5d7b,0x5d7c,0x5d7d,0x5d7e,0x5d7f,0x5d80,0x5d81,0x5d83,0x5d84,0x5d85,0x5d86,0x5d87,0x5d88,
	0x5d89,0x5d8a,0x5d8b,0x5d8c,0x5d8d,0x5d8e,0x5d8f,0x5d90,0x5d91,0x5d92,0x5d93,0x5d94,0x5d95,0x5d96,0x5d97,0x5d98,
	0x5d9a,0x5d9b,0x5d9c,0x5d9e,0x5d9f,0x5da0,0x5da1,0x5da2,0x5da3,0x5da4,0x5da5,0x5da6,0x5da7,0x5da8,0x5da9,0x5daa,
	0x5dab,0x5dac,0x5dad,0x5dae,0x5daf,0x5db0,0x5db1,0x5db2,0x5db3,0x5db4,0x5db5,0x5db6,0x5db8,0x5db9,0x5dba,0x5dbb,
	0x5dbc,0x5dbd,0x5dbe,0x5dbf,0x5dc0,0x5dc1,0x5dc2,0x5dc3,0x5dc4,0x5dc6,0x5dc7,0x5dc8,0x5dc9,0x5dca,0x5dcb,0x5dcc,
	0x5dce,0x5dcf,0x5dd0,0x5dd1,0x5dd2,0x5dd3,0x5dd4,0x5dd5,0x5dd6,0x5dd7,0x5dd8,0x5dd9,0x5dda,0x5ddc,0x5ddf,0x5de0,
	0x5de3,0x5de4,0x5dea,0x5dec,0x5ded,0x5df0,0x5df5,0x5df6,0x5df8,0x5df9,0x5dfa,0x5dfb,0x5dfc,0x5dff,0x5e00,0x5e04,
	0x5e07,0x5e09,0x5e0a,0x5e0b,0x5e0d,0x5e0e,0x5e12,0x5e13,0x5e17,0x5e1e,0x5e1f,0x5e20,0x5e21,0x5e22,0x5e23,0x5e24,
	0x5e25,0x5e28,0x5e29,0x5e2a,0x5e2b,0x5e2c,0x5e2f,0x5e30,0x5e32,0x5e33,0x5e34,0x5e35,0x5e36,0x5e39,0x5e3a,0x5e3e,
	0x5e3f,0x5e40,0x5e41,0x5e43,0x5e46,0x5e47,0x5e48,0x5e49,0x5e4a,0x5e4b,0x5e4d,0x5e4e,0x5e4f,0x5e50,0x5e51,0x5e52,
	0x5e53,0x5e56,0x5e57,0x5e58,0x5e59,0x5e5a,0x5e5c,0x5e5d,0x5e5f,0x5e60,0x5e63,0x5e64,0x5e65,0x5e66,0x5e67,0x5e68,
	0x5e69,0x5e6a,0x5e6b,0x5e6c,0x5e6d,0x5e6e,0x5e6f,0x5e70,0x5e71,0x5e75,0x5e77,0x5e79,0x5e7e,0x5e81,0x5e82,0x5e83,
	0x5e85,0x5e88,0x5e89,0x5e8c,0x5e8d,0x5e8e,0x5e92,0x5e98,0x5e9b,0x5e9d,0x5ea1,0x5ea2,0x5ea3,0x5ea4,0x5ea8,0x5ea9,
	0x5eaa,0x5eab,0x5eac,0x5eae,0x5eaf,0x5eb0,0x5eb1,0x5eb2,0x5eb4,0x5eba,0x5ebb,0x5ebc,0x5ebd,0x5ebf,0x5ec0,0x5ec1,
	0x5ec2,0x5ec3,0x5ec4,0x5ec5,0x5ec6,0x5ec7,0x5ec8,0x5ecb,0x5ecc,0x5ecd,0x5ece,0x5ecf,0x5ed0,0x5ed4,0x5ed5,0x5ed7,
	0x5ed8,0x5ed9,0x5eda,0x5edc,0x5edd,0x5ede,0x5edf,0x5ee0,0x5ee1,0x5ee2,0x5ee3,0x5ee4,0x5ee5,0x5ee6,0x5ee7,0x5ee9,
	0x5eeb,0x5eec,0x5eed,0x5eee,0x5eef,0x5ef0,0x5ef1,0x5ef2,0x5ef3,0x5ef5,0x5ef8,0x5ef9,0x5efb,0x5efc,0x5efd,0x5f05,
	0x5f06,0x5f07,0x5f09,0x5f0c,0x5f0d,0x5f0e,0x5f10,0x5f12,0x5f14,0x5f16,0x5f19,0x5f1a,0x5f1c,0x5f1d,0x5f1e,0x5f21,
	0x5f22,0x5f23,0x5f24,0x5f28,0x5f2b,0x5f2c,0x5f2e,0x5f30,0x5f32,0x5f33,0x5f34,0x5f35,0x5f36,0x5f37,0x5f38,0x5f3b,
	0x5f3d,0x5f3e,0x5f3f,0x5f41,0x5f42,0x5f43,0x5f44,0x5f45,0x5f46,0x5f47,0x5f48,0x5f49,0x5f4a,0x5f4b,0x5f4c,0x5f4d,
	0x5f4e,0x5f4f,0x5f51,0x5f54,0x5f59,0x5f5a,0x5f5b,0x5f5c,0x5f5e,0x5f5f,0x5f60,0x5f63,0x5f65,0x5f67,0x5f68,0x5f6b,
	0x5f6e,0x5f6f,0x5f72,0x5f74,0x5f75,0x5f76,0x5f78,0x5f7a,0x5f7d,0x5f7e,0x5f7f,0x5f83,0x5f86,0x5f8d,0x5f8e,0x5f8f,
	0x5f91,0x5f93,0x5f94,0x5f96,0x5f9a,0x5f9b,0x5f9d,0x5f9e,0x5f9f,0x5fa0,0x5fa2,0x5fa3,0x5fa4,0x5fa5,0x5fa6,0x5fa7,
	0x5fa9,0x5fab,0x5fac,0x5faf,0x5fb0,0x5fb1,0x5fb2,0x5fb3,0x5fb4,0x5fb6,0x5fb8,0x5fb9,0x5fba,0x5fbb,0x5fbe,0x5fbf,
	0x5fc0,0x5fc1,0x5fc2,0x5fc7,0x5fc8,0x5fca,0x5fcb,0x5fce,0x5fd3,0x5fd4,0x5fd5,0x5fda,0x5fdb,0x5fdc,0x5fde,0x5fdf,
	0x5fe2,0x5fe3,0x5fe5,0x5fe6,0x5fe8,0x5fe9,0x5fec,0x5fef,0x5ff0,0x5ff2,0x5ff3,0x5ff4,0x5ff6,0x5ff7,0x5ff9,0x5ffa,
	0x5ffc,0x6007,0x6008,0x6009,0x600b,0x600c,0x6010,0x6011,0x6013,0x6017,0x6018,0x601a,0x601e,0x601f,0x6022,0x6023,
	0x6024,0x602c,0x602d,0x602e,0x6030,0x6031,0x6032,0x6033,0x6034,0x6036,0x6037,0x6038,0x6039,0x603a,0x603d,0x603e,
	0x6040,0x6044,0x6045,0x6046,0x6047,0x6048,0x6049,0x604a,0x604c,0x604e,0x604f,0x6051,0x6053,0x6054,0x6056,0x6057,
	0x6058,0x605b,0x605c,0x605e,0x605f,0x6060,0x6061,0x6065,0x6066,0x606e,0x6071,0x6072,0x6074,0x6075,0x6077,0x607e,
	0x6080,0x6081,0x6082,0x6085,0x6086,0x6087,0x6088,0x608a,0x608b,0x608e,0x608f,0x6090,0x6091,0x6093,0x6095,0x6097,
	0x6098,0x6099,0x609c,0x609e,0x60a1,0x60a2,0x60a4,0x60a5,0x60a7,0x60a9,0x60aa,0x60ae,0x60b0,0x60b3,0x60b5,0x60b6,
	0x60b7,0x60b9,0x60ba,0x60bd,0x60be,0x60bf,0x60c0,0x60c1,0x60c2,0x60c3,0x60c4,0x60c7,0x60c8,0x60c9,0x60cc,0x60cd,
	0x60ce,0x60cf,0x60d0,0x60d2,0x60d3,0x60d4,0x60d6,0x60d7,0x60d9,0x60db,0x60de,0x60e1,0x60e2,0x60e3,0x60e4,0x60e5,
	0x60ea,0x60f1,0x60f2,0x60f5,0x60f7,0x60f8,0x60fb,0x60fc,0x60fd,0x60fe,0x60ff,0x6102,0x6103,0x6104,0x6105,0x6107,
	0x610a,0x610b,0x610c,0x6110,0x6111,0x6112,0x6113,0x6114,0x6116,0x6117,0x6118,0x6119,0x611b,0x611c,0x611d,0x611e,
	0x6121,0x6122,0x6125,0x6128,0x6129,0x612a,0x612c,0x612d,0x612e,0x612f,0x6130,0x6131,0x6132,0x6133,0x6134,0x6135,
	0x6136,0x6137,0x6138,0x6139,0x613a,0x613b,0x613c,0x613d,0x613e,0x6140,0x6141,0x6142,0x6143,0x6144,0x6145,0x6146,
	0x6147,0x6149,0x614b,0x614d,0x614f,0x6150,0x6152,0x6153,0x6154,0x6156,0x6157,0x6158,0x6159,0x615a,0x615b,0x615c,
	0x615e,0x615f,0x6160,0x6161,0x6163,0x6164,0x6165,0x6166,0x6169,0x616a,0x616b,0x616c,0x616d,0x616e,0x616f,0x6171,
	0x6172,0x6173,0x6174,0x6176,0x6178,0x6179,0x617a,0x617b,0x617c,0x617d,0x617e,0x617f,0x6180,0x6181,0x6182,0x6183,
	0x6184,0x6185,0x6186,0x6187,0x6188,0x6189,0x618a,0x618c,0x618d,0x618f,0x6190,0x6191,0x6192,0x6193,0x6195,0x6196,
	0x6197,0x6198,0x6199,0x619a,0x619b,0x619c,0x619e,0x619f,0x61a0,0x61a1,0x61a2,0x61a3,0x61a4,0x61a5,0x61a6,0x61aa,
	0x61ab,0x61ad,0x61ae,0x61af,0x61b0,0x61b1,0x61b2,0x61b3,0x61b4,0x61b5,0x61b6,0x61b8,0x61b9,0x61ba,0x61bb,0x61bc,
	0x61bd,0x61bf,0x61c0,0x61c1,0x61c3,0x61c4,0x61c5,0x61c6,0x61c7,0x61c9,0x61cc,0x61cd,0x61ce,0x61cf,0x61d0,0x61d3,
	0x61d5,0x61d6,0x61d7,0x61d8,0x61d9,0x61da,0x61db,0x61dc,0x61dd,0x61de,0x61df,0x61e0,0x61e1,0x61e2,0x61e3,0x61e4,
	0x61e5,0x61e7,0x61e8,0x61e9,0x61ea,0x61eb,0x61ec,0x61ed,0x61ee,0x61ef,0x61f0,0x61f1,0x61f2,0x61f3,0x61f4,0x61f6,
	0x61f7,0x61f8,0x61f9,0x61fa,0x61fb,0x61fc,0x61fd,0x61fe,0x6200,0x6201,0x6202,0x6203,0x6204,0x6205,0x6207,0x6209,
	0x6213,0x6214,0x6219,0x621c,0x621d,0x621e,0x6220,0x6223,0x6226,0x6227,0x6228,0x6229,0x622b,0x622d,0x622f,0x6230,
	0x6231,0x6232,0x6235,0x6236,0x6238,0x6239,0x623a,0x623b,0x623c,0x6242,0x6244,0x6245,0x6246,0x624a,0x624f,0x6250,
	0x6255,0x6256,0x6257,0x6259,0x625a,0x625c,0x625d,0x625e,0x625f,0x6260,0x6261,0x6262,0x6264,0x6265,0x6268,0x6271,
	0x6272,0x6274,0x6275,0x6277,0x6278,0x627a,0x627b,0x627d,0x6281,0x6282,0x6283,0x6285,0x6286,0x6287,0x6288,0x628b,
	0x628c,0x628d,0x628e,0x628f,0x6290,0x6294,0x6299,0x629c,0x629d,0x629e,0x62a3,0x62a6,0x62a7,0x62a9,0x62aa,0x62ad,
	0x62ae,0x62af,0x62b0,0x62b2,0x62b3,0x62b4,0x62b6,0x62b7,0x62b8,0x62ba,0x62be,0x62c0,0x62c1,0x62c3,0x62cb,0x62cf,
	0x62d1,0x62d5,0x62dd,0x62de,0x62e0,0x62e1,0x62e4,0x62ea,0x62eb,0x62f0,0x62f2,0x62f5,0x62f8,0x62f9,0x62fa,0x62fb,
	0x6300,0x6303,0x6304,0x6305,0x6306,0x630a,0x630b,0x630c,0x630d,0x630f,0x6310,0x6312,0x6313,0x6314,0x6315,0x6317,
	0x6318,0x6319,0x631c,0x6326,0x6327,0x6329,0x632c,0x632d,0x632e,0x6330,0x6331,0x6333,0x6334,0x6335,0x6336,0x6337,
	0x6338,0x633b,0x633c,0x633e,0x633f,0x6340,0x6341,0x6344,0x6347,0x6348,0x634a,0x6351,0x6352,0x6353,0x6354,0x6356,
	0x6357,0x6358,0x6359,0x635a,0x635b,0x635c,0x635d,0x6360,0x6364,0x6365,0x6366,0x6368,0x636a,0x636b,0x636c,0x636f,
	0x6370,0x6372,0x6373,0x6374,0x6375,0x6378,0x6379,0x637c,0x637d,0x637e,0x637f,0x6381,0x6383,0x6384,0x6385,0x6386,
	0x638b,0x638d,0x6391,0x6393,0x6394,0x6395,0x6397,0x6399,0x639a,0x639b,0x639c,0x639d,0x639e,0x639f,0x63a1,0x63a4,
	0x63a6,0x63ab,0x63af,0x63b1,0x63b2,0x63b5,0x63b6,0x63b9,0x63bb,0x63bd,0x63bf,0x63c0,0x63c1,0x63c2,0x63c3,0x63c5,
	0x63c7,0x63c8,0x63ca,0x63cb,0x63cc,0x63d1,0x63d3,0x63d4,0x63d5,0x63d7,0x63d8,0x63d9,0x63da,0x63db,0x63dc,0x63dd,
	0x63df,0x63e2,0x63e4,0x63e5,0x63e6,0x63e7,0x63e8,0x63eb,0x63ec,0x63ee,0x63ef,0x63f0,0x63f1,0x63f3,0x63f5,0x63f7,
	0x63f9,0x63fa,0x63fb,0x63fc,0x63fe,0x6403,0x6404,0x6406,0x6407,0x6408,0x6409,0x640a,0x640d,0x640e,0x6411,0x6412,
	0x6415,0x6416,0x6417,0x6418,0x6419,0x641a,0x641d,0x641f,0x6422,0x6423,0x6424,0x6425,0x6427,0x6428,0x6429,0x642b,
	0x642e,0x642f,0x6430,0x6431,0x6432,0x6433,0x6435,0x6436,0x6437,0x6438,0x6439,0x643b,0x643c,0x643e,0x6440,0x6442,
	0x6443,0x6449,0x644b,0x644c,0x644d,0x644e,0x644f,0x6450,0x6451,0x6453,0x6455,0x6456,0x6457,0x6459,0x645a,0x645b,
	0x645c,0x645d,0x645f,0x6460,0x6461,0x6462,0x6463,0x6464,0x6465,0x6466,0x6468,0x646a,0x646b,0x646c,0x646e,0x646f,
	0x6470,0x6471,0x6472,0x6473,0x6474,0x6475,0x6476,0x6477,0x647b,0x647c,0x647d,0x647e,0x647f,0x6480,0x6481,0x6483,
	0x6486,0x6488,0x6489,0x648a,0x648b,0x648c,0x648d,0x648e,0x648f,0x6490,0x6493,0x6494,0x6497,0x6498,0x649a,0x649b,
	0x649c,0x649d,0x649f,0x64a0,0x64a1,0x64a2,0x64a3,0x64a5,0x64a6,0x64a7,0x64a8,0x64aa,0x64ab,0x64af,0x64b1,0x64b2,
	0x64b3,0x64b4,0x64b6,0x64b9,0x64bb,0x64bd,0x64be,0x64bf,0x64c1,0x64c3,0x64c4,0x64c6,0x64c7,0x64c8,0x64c9,0x64ca,
	0x64cb,0x64cc,0x64cf,0x64d1,0x64d3,0x64d4,0x64d5,0x64d6,0x64d9,0x64da,0x64db,0x64dc,0x64dd,0x64df,0x64e0,0x64e1,
	0x64e3,0x64e5,0x64e7,0x64e8,0x64e9,0x64ea,0x64eb,0x64ec,0x64ed,0x64ee,0x64ef,0x64f0,0x64f1,0x64f2,0x64f3,0x64f4,
	0x64f5,0x64f6,0x64f7,0x64f8,0x64f9,0x64fa,0x64fb,0x64fc,0x64fd,0x64fe,0x64ff,0x6501,0x6502,0x6503,0x6504,0x6505,
	0x6506,0x6507,0x6508,0x650a,0x650b,0x650c,0x650d,0x650e,0x650f,0x6510,0x6511,0x6513,0x6514,0x6515,0x6516,0x6517,
	0x6519,0x651a,0x651b,0x651c,0x651d,0x651e,0x651f,0x6520,0x6521,0x6522,0x6523,0x6524,0x6526,0x6527,0x6528,0x6529,
	0x652a,0x652c,0x652d,0x6530,0x6531,0x6532,0x6533,0x6537,0x653a,0x653c,0x653d,0x6540,0x6541,0x6542,0x6543,0x6544,
	0x6546,0x6547,0x654a,0x654b,0x654d,0x654e,0x6550,0x6552,0x6553,0x6554,0x6557,0x6558,0x655a,0x655c,0x655f,0x6560,
	0x6561,0x6564,0x6565,0x6567,0x6568,0x6569,0x656a,0x656d,0x656e,0x656f,0x6571,0x6573,0x6575,0x6576,0x6578,0x6579,
	0x657a,0x657b,0x657c,0x657d,0x657e,0x657f,0x6580,0x6581,0x6582,0x6583,0x6584,0x6585,0x6586,0x6588,0x6589,0x658a,
	0x658d,0x658e,0x658f,0x6592,0x6594,0x6595,0x6596,0x6598,0x659a,0x659d,0x659e,0x65a0,0x65a2,0x65a3,0x65a6,0x65a8,
	0x65aa,0x65ac,0x65ae,0x65b1,0x65b2,0x65b3,0x65b4,0x65b5,0x65b6,0x65b7,0x65b8,0x65ba,0x65bb,0x65be,0x65bf,0x65c0,
	0x65c2,0x65c7,0x65c8,0x65c9,0x65ca,0x65cd,0x65d0,0x65d1,0x65d3,0x65d4,0x65d5,0x65d8,0x65d9,0x65da,0x65db,0x65dc,
	0x65dd,0x65de,0x65df,0x65e1,0x65e3,0x65e4,0x65ea,0x65eb,0x65f2,0x65f3,0x65f4,0x65f5,0x65f8,0x65f9,0x65fb,0x65fc,
	0x65fd,0x65fe,0x65ff,0x6601,0x6604,0x6605,0x6607,0x6608,0x6609,0x660b,0x660d,0x6610,0x6611,0x6612,0x6616,0x6617,
	0x6618,0x661a,0x661b,0x661c,0x661e,0x6621,0x6622,0x6623,0x6624,0x6626,0x6629,0x662a,0x662b,0x662c,0x662e,0x6630,
	0x6632,0x6633,0x6637,0x6638,0x6639,0x663a,0x663b,0x663d,0x663f,0x6640,0x6642,0x6644,0x6645,0x6646,0x6647,0x6648,
	0x6649,0x664a,0x664d,0x664e,0x6650,0x6651,0x6658,0x6659,0x665b,0x665c,0x665d,0x665e,0x6660,0x6662,0x6663,0x6665,
	0x6667,0x6669,0x666a,0x666b,0x666c,0x666d,0x6671,0x6672,0x6673,0x6675,0x6678,0x6679,0x667b,0x667c,0x667d,0x667f,
	0x6680,0x6681,0x6683,0x6685,0x6686,0x6688,0x6689,0x668a,0x668b,0x668d,0x668e,0x668f,0x6690,0x6692,0x6693,0x6694,
	0x6695,0x6698,0x6699,0x669a,0x669b,0x669c,0x669e,0x669f,0x66a0,0x66a1,0x66a2,0x66a3,0x66a4,0x66a5,0x66a6,0x66a9,
	0x66aa,0x66ab,0x66ac,0x66ad,0x66af,0x66b0,0x66b1,0x66b2,0x66b3,0x66b5,0x66b6,0x66b7,0x66b8,0x66ba,0x66bb,0x66bc,
	0x66bd,0x66bf,0x66c0,0x66c1,0x66c2,0x66c3,0x66c4,0x66c5,0x66c6,0x66c7,0x66c8,0x66c9,0x66ca,0x66cb,0x66cc,0x66cd,
	0x66ce,0x66cf,0x66d0,0x66d1,0x66d2,0x66d3,0x66d4,0x66d5,0x66d6,0x66d7,0x66d8,0x66da,0x66de,0x66df,0x66e0,0x66e1,
	0x66e2,0x66e3,0x66e4,0x66e5,0x66e7,0x66e8,0x66ea,0x66eb,0x66ec,0x66ed,0x66ee,0x66ef,0x66f1,0x66f5,0x66f6,0x66f8,
	0x66fa,0x66fb,0x66fd,0x6701,0x6702,0x6703,0x6704,0x6705,0x6706,0x6707,0x670c,0x670e,0x670f,0x6711,0x6712,0x6713,
	0x6716,0x6718,0x6719,0x671a,0x671c,0x671e,0x6720,0x6721,0x6722,0x6723,0x6724,0x6725,0x6727,0x6729,0x672e,0x6730,
	0x6732,0x6733,0x6736,0x6737,0x6738,0x6739,0x673b,0x673c,0x673e,0x673f,0x6741,0x6744,0x6745,0x6747,0x674a,0x674b,
	0x674d,0x6752,0x6754,0x6755,0x6757,0x6758,0x6759,0x675a,0x675b,0x675d,0x6762,0x6763,0x6764,0x6766,0x6767,0x676b,
	0x676c,0x676e,0x6771,0x6774,0x6776,0x6778,0x6779,0x677a,0x677b,0x677d,0x6780,0x6782,0x6783,0x6785,0x6786,0x6788,
	0x678a,0x678c,0x678d,0x678e,0x678f,0x6791,0x6792,0x6793,0x6794,0x6796,0x6799,0x679b,0x679f,0x67a0,0x67a1,0x67a4,
	0x67a6,0x67a9,0x67ac,0x67ae,0x67b1,0x67b2,0x67b4,0x67b9,0x67ba,0x67bb,0x67bc,0x67bd,0x67be,0x67bf,0x67c0,0x67c2,
	0x67c5,0x67c6,0x67c7,0x67c8,0x67c9,0x67ca,0x67cb,0x67cc,0x67cd,0x67ce,0x67d5,0x67d6,0x67d7,0x67db,0x67df,0x67e1,
	0x67e3,0x67e4,0x67e6,0x67e7,0x67e8,0x67ea,0x67eb,0x67ed,0x67ee,0x67f2,0x67f5,0x67f6,0x67f7,0x67f8,0x67f9,0x67fa,
	0x67fb,0x67fc,0x67fe,0x6801,0x6802,0x6803,0x6804,0x6806,0x680d,0x6810,0x6812,0x6814,0x6815,0x6818,0x6819,0x681a,
	0x681b,0x681c,0x681e,0x681f,0x6820,0x6822,0x6823,0x6824,0x6825,0x6826,0x6827,0x6828,0x682b,0x682c,0x682d,0x682e,
	0x682f,0x6830,0x6831,0x6834,0x6835,0x6836,0x683a,0x683b,0x683f,0x6847,0x684b,0x684d,0x684f,0x6852,0x6856,0x6857,
	0x6858,0x6859,0x685a,0x685b,0x685c,0x685d,0x685e,0x685f,0x686a,0x686c,0x686d,0x686e,0x686f,0x6870,0x6871,0x6872,
	0x6873,0x6875,0x6878,0x6879,0x687a,0x687b,0x687c,0x687d,0x687e,0x687f,0x6880,0x6882,0x6884,0x6887,0x6888,0x6889,
	0x688a,0x688b,0x688c,0x688d,0x688e,0x6890,0x6891,0x6892,0x6894,0x6895,0x6896,0x6898,0x6899,0x689a,0x689b,0x689c,
	0x689d,0x689e,0x689f,0x68a0,0x68a1,0x68a3,0x68a4,0x68a5,0x68a9,0x68aa,0x68ab,0x68ac,0x68ae,0x68b1,0x68b2,0x68b4,
	0x68b6,0x68b7,0x68b8,0x68b9,0x68ba,0x68bb,0x68bc,0x68bd,0x68be,0x68bf,0x68c1,0x68c3,0x68c4,0x68c5,0x68c6,0x68c7,
	0x68c8,0x68ca,0x68cc,0x68ce,0x68cf,0x68d0,0x68d1,0x68d3,0x68d4,0x68d6,0x68d7,0x68d9,0x68db,0x68dc,0x68dd,0x68de,
	0x68df,0x68e1,0x68e2,0x68e4,0x68e5,0x68e6,0x68e7,0x68e8,0x68e9,0x68ea,0x68eb,0x68ec,0x68ed,0x68ef,0x68f2,0x68f3,
	0x68f4,0x68f6,0x68f7,0x68f8,0x68fb,0x68fd,0x68fe,0x68ff,0x6900,0x6902,0x6903,0x6904,0x6906,0x6907,0x6908,0x6909,
	0x690a,0x690c,0x690f,0x6911,0x6913,0x6914,0x6915,0x6916,0x6917,0x6918,0x6919,0x691a,0x691b,0x691c,0x691d,0x691e,
	0x6921,0x6922,0x6923,0x6925,0x6926,0x6927,0x6928,0x6929,0x692a,0x692b,0x692c,0x692e,0x692f,0x6931,0x6932,0x6933,
	0x6935,0x6936,0x6937,0x6938,0x693a,0x693b,0x693c,0x693e,0x6940,0x6941,0x6943,0x6944,0x6945,0x6946,0x6947,0x6948,
	0x6949,0x694a,0x694b,0x694c,0x694d,0x694e,0x694f,0x6950,0x6951,0x6952,0x6953,0x6955,0x6956,0x6958,0x6959,0x695b,
	0x695c,0x695f,0x6961,0x6962,0x6964,0x6965,0x6967,0x6968,0x6969,0x696a,0x696c,0x696d,0x696f,0x6970,0x6972,0x6973,
	0x6974,0x6975,0x6976,0x697a,0x697b,0x697d,0x697e,0x697f,0x6981,0x6983,0x6985,0x698a,0x698b,0x698c,0x698e,0x698f,
	0x6990,0x6991,0x6992,0x6993,0x6996,0x6997,0x6999,0x699a,0x699d,0x699e,0x699f,0x69a0,0x69a1,0x69a2,0x69a3,0x69a4,
	0x69a5,0x69a6,0x69a9,0x69aa,0x69ac,0x69ae,0x69af,0x69b0,0x69b2,0x69b3,0x69b5,0x69b6,0x69b8,0x69b9,0x69ba,0x69bc,
	0x69bd,0x69be,0x69bf,0x69c0,0x69c2,0x69c3,0x69c4,0x69c5,0x69c6,0x69c7,0x69c8,0x69c9,0x69cb,0x69cd,0x69cf,0x69d1,
	0x69d2,0x69d3,0x69d5,0x69d6,0x69d7,0x69d8,0x69d9,0x69da,0x69dc,0x69dd,0x69de,0x69e1,0x69e2,0x69e3,0x69e4,0x69e5,
	0x69e6,0x69e7,0x69e8,0x69e9,0x69ea,0x69eb,0x69ec,0x69ee,0x69ef,0x69f0,0x69f1,0x69f3,0x69f4,0x69f5,0x69f6,0x69f7,
	0x69f8,0x69f9,0x69fa,0x69fb,0x69fc,0x69fe,0x6a00,0x6a01,0x6a02,0x6a03,0x6a04,0x6a05,0x6a06,0x6a07,0x6a08,0x6a09,
	0x6a0b,0x6a0c,0x6a0d,0x6a0e,0x6a0f,0x6a10,0x6a11,0x6a12,0x6a13,0x6a14,0x6a15,0x6a16,0x6a19,0x6a1a,0x6a1b,0x6a1c,
	0x6a1d,0x6a1e,0x6a20,0x6a22,0x6a23,0x6a24,0x6a25,0x6a26,0x6a27,0x6a29,0x6a2b,0x6a2c,0x6a2d,0x6a2e,0x6a30,0x6a32,
	0x6a33,0x6a34,0x6a36,0x6a37,0x6a38,0x6a39,0x6a3a,0x6a3b,0x6a3c,0x6a3f,0x6a40,0x6a41,0x6a42,0x6a43,0x6a45,0x6a46,
	0x6a48,0x6a49,0x6a4a,0x6a4b,0x6a4c,0x6a4d,0x6a4e,0x6a4f,0x6a51,0x6a52,0x6a53,0x6a54,0x6a55,0x6a56,0x6a57,0x6a5a,
	0x6a5c,0x6a5d,0x6a5e,0x6a5f,0x6a60,0x6a62,0x6a63,0x6a64,0x6a66,0x6a67,0x6a68,0x6a69,0x6a6a,0x6a6b,0x6a6c,0x6a6d,
	0x6a6e,0x6a6f,0x6a70,0x6a72,0x6a73,0x6a74,0x6a75,0x6a76,0x6a77,0x6a78,0x6a7a,0x6a7b,0x6a7d,0x6a7e,0x6a7f,0x6a81,
	0x6a82,0x6a83,0x6a85,0x6a86,0x6a87,0x6a88,0x6a89,0x6a8a,0x6a8b,0x6a8c,0x6a8d,0x6a8f,0x6a92,0x6a93,0x6a94,0x6a95,
	0x6a96,0x6a98,0x6a99,0x6a9a,0x6a9b,0x6a9c,0x6a9d,0x6a9e,0x6a9f,0x6aa1,0x6aa2,0x6aa3,0x6aa4,0x6aa5,0x6aa6,0x6aa7,
	0x6aa8,0x6aaa,0x6aad,0x6aae,0x6aaf,0x6ab0,0x6ab1,0x6ab2,0x6ab3,0x6ab4,0x6ab5,0x6ab6,0x6ab7,0x6ab8,0x6ab9,0x6aba,
	0x6abb,0x6abc,0x6abd,0x6abe,0x6abf,0x6ac0,0x6ac1,0x6ac2,0x6ac3,0x6ac4,0x6ac5,0x6ac6,0x6ac7,0x6ac8,0x6ac9,0x6aca,
	0x6acb,0x6acc,0x6acd,0x6ace,0x6acf,0x6ad0,0x6ad1,0x6ad2,0x6ad3,0x6ad4,0x6ad5,0x6ad6,0x6ad7,0x6ad8,0x6ad9,0x6ada,
	0x6adb,0x6adc,0x6add,0x6ade,0x6adf,0x6ae0,0x6ae1,0x6ae2,0x6ae3,0x6ae4,0x6ae5,0x6ae6,0x6ae7,0x6ae8,0x6ae9,0x6aea,
	0x6aeb,0x6aec,0x6aed,0x6aee,0x6aef,0x6af0,0x6af1,0x6af2,0x6af3,0x6af4,0x6af5,0x6af6,0x6af7,0x6af8,0x6af9,0x6afa,
	0x6afb,0x6afc,0x6afd,0x6afe,0x6aff,0x6b00,0x6b01,0x6b02,0x6b03,0x6b04,0x6b05,0x6b06,0x6b07,0x6b08,0x6b09,0x6b0a,
	0x6b0b,0x6b0c,0x6b0d,0x6b0e,0x6b0f,0x6b10,0x6b11,0x6b12,0x6b13,0x6b14,0x6b15,0x6b16,0x6b17,0x6b18,0x6b19,0x6b1a,
	0x6b1b,0x6b1c,0x6b1d,0x6b1e,0x6b1f,0x6b25,0x6b26,0x6b28,0x6b29,0x6b2a,0x6b2b,0x6b2c,0x6b2d,0x6b2e,0x6b2f,0x6b30,
	0x6b31,0x6b33,0x6b34,0x6b35,0x6b36,0x6b38,0x6b3b,0x6b3c,0x6b3d,0x6b3f,0x6b40,0x6b41,0x6b42,0x6b44,0x6b45,0x6b48,
	0x6b4a,0x6b4b,0x6b4d,0x6b4e,0x6b4f,0x6b50,0x6b51,0x6b52,0x6b53,0x6b54,0x6b55,0x6b56,0x6b57,0x6b58,0x6b5a,0x6b5b,
	0x6b5c,0x6b5d,0x6b5e,0x6b5f,0x6b60,0x6b61,0x6b68,0x6b69,0x6b6b,0x6b6c,0x6b6d,0x6b6e,0x6b6f,0x6b70,0x6b71,0x6b72,
	0x6b73,0x6b74,0x6b75,0x6b76,0x6b77,0x6b78,0x6b7a,0x6b7d,0x6b7e,0x6b7f,0x6b80,0x6b85,0x6b88,0x6b8c,0x6b8e,0x6b8f,
	0x6b90,0x6b91,0x6b94,0x6b95,0x6b97,0x6b98,0x6b99,0x6b9c,0x6b9d,0x6b9e,0x6b9f,0x6ba0,0x6ba2,0x6ba3,0x6ba4,0x6ba5,
	0x6ba6,0x6ba7,0x6ba8,0x6ba9,0x6bab,0x6bac,0x6bad,0x6bae,0x6baf,0x6bb0,0x6bb1,0x6bb2,0x6bb6,0x6bb8,0x6bb9,0x6bba,
	0x6bbb,0x6bbc,0x6bbd,0x6bbe,0x6bc0,0x6bc3,0x6bc4,0x6bc6,0x6bc7,0x6bc8,0x6bc9,0x6bca,0x6bcc,0x6bce,0x6bd0,0x6bd1,
	0x6bd8,0x6bda,0x6bdc,0x6bdd,0x6bde,0x6bdf,0x6be0,0x6be2,0x6be3,0x6be4,0x6be5,0x6be6,0x6be7,0x6be8,0x6be9,0x6bec,
	0x6bed,0x6bee,0x6bf0,0x6bf1,0x6bf2,0x6bf4,0x6bf6,0x6bf7,0x6bf8,0x6bfa,0x6bfb,0x6bfc,0x6bfe,0x6bff,0x6c00,0x6c01,
	0x6c02,0x6c03,0x6c04,0x6c08,0x6c09,0x6c0a,0x6c0b,0x6c0c,0x6c0e,0x6c12,0x6c17,0x6c1c,0x6c1d,0x6c1e,0x6c20,0x6c23,
	0x6c25,0x6c2b,0x6c2c,0x6c2d,0x6c31,0x6c33,0x6c36,0x6c37,0x6c39,0x6c3a,0x6c3b,0x6c3c,0x6c3e,0x6c3f,0x6c43,0x6c44,
	0x6c45,0x6c48,0x6c4b,0x6c4c,0x6c4d,0x6c4e,0x6c4f,0x6c51,0x6c52,0x6c53,0x6c56,0x6c58,0x6c59,0x6c5a,0x6c62,0x6c63,
	0x6c65,0x6c66,0x6c67,0x6c6b,0x6c6c,0x6c6d,0x6c6e,0x6c6f,0x6c71,0x6c73,0x6c75,0x6c77,0x6c78,0x6c7a,0x6c7b,0x6c7c,
	0x6c7f,0x6c80,0x6c84,0x6c87,0x6c8a,0x6c8b,0x6c8d,0x6c8e,0x6c91,0x6c92,0x6c95,0x6c96,0x6c97,0x6c98,0x6c9a,0x6c9c,
	0x6c9d,0x6c9e,0x6ca0,0x6ca2,0x6ca8,0x6cac,0x6caf,0x6cb0,0x6cb4,0x6cb5,0x6cb6,0x6cb7,0x6cba,0x6cc0,0x6cc1,0x6cc2,
	0x6cc3,0x6cc6,0x6cc7,0x6cc8,0x6ccb,0x6ccd,0x6cce,0x6ccf,0x6cd1,0x6cd2,0x6cd8,0x6cd9,0x6cda,0x6cdc,0x6cdd,0x6cdf,
	0x6ce4,0x6ce6,0x6ce7,0x6ce9,0x6cec,0x6ced,0x6cf2,0x6cf4,0x6cf9,0x6cff,0x6d00,0x6d02,0x6d03,0x6d05,0x6d06,0x6d08,
	0x6d09,0x6d0a,0x6d0d,0x6d0f,0x6d10,0x6d11,0x6d13,0x6d14,0x6d15,0x6d16,0x6d18,0x6d1c,0x6d1d,0x6d1f,0x6d20,0x6d21,
	0x6d22,0x6d23,0x6d24,0x6d26,0x6d28,0x6d29,0x6d2c,0x6d2d,0x6d2f,0x6d30,0x6d34,0x6d36,0x6d37,0x6d38,0x6d3a,0x6d3f,
	0x6d40,0x6d42,0x6d44,0x6d49,0x6d4c,0x6d50,0x6d55,0x6d56,0x6d57,0x6d58,0x6d5b,0x6d5d,0x6d5f,0x6d61,0x6d62,0x6d64,
	0x6d65,0x6d67,0x6d68,0x6d6b,0x6d6c,0x6d6d,0x6d70,0x6d71,0x6d72,0x6d73,0x6d75,0x6d76,0x6d79,0x6d7a,0x6d7b,0x6d7d,
	0x6d7e,0x6d7f,0x6d80,0x6d81,0x6d83,0x6d84,0x6d86,0x6d87,0x6d8a,0x6d8b,0x6d8d,0x6d8f,0x6d90,0x6d92,0x6d96,0x6d97,
	0x6d98,0x6d99,0x6d9a,0x6d9c,0x6da2,0x6da5,0x6dac,0x6dad,0x6db0,0x6db1,0x6db3,0x6db4,0x6db6,0x6db7,0x6db9,0x6dba,
	0x6dbb,0x6dbc,0x6dbd,0x6dbe,0x6dc1,0x6dc2,0x6dc3,0x6dc8,0x6dc9,0x6dca,0x6dcd,0x6dce,0x6dcf,0x6dd0,0x6dd2,0x6dd3,
	0x6dd4,0x6dd5,0x6dd7,0x6dda,0x6ddb,0x6ddc,0x6ddf,0x6de2,0x6de3,0x6de5,0x6de7,0x6de8,0x6de9,0x6dea,0x6ded,0x6def,
	0x6df0,0x6df2,0x6df4,0x6df5,0x6df6,0x6df8,0x6dfa,0x6dfd,0x6dfe,0x6dff,0x6e00,0x6e01,0x6e02,0x6e03,0x6e04,0x6e06,
	0x6e07,0x6e08,0x6e09,0x6e0b,0x6e0f,0x6e12,0x6e13,0x6e15,0x6e18,0x6e19,0x6e1b,0x6e1c,0x6e1e,0x6e1f,0x6e22,0x6e26,
	0x6e27,0x6e28,0x6e2a,0x6e2c,0x6e2e,0x6e30,0x6e31,0x6e33,0x6e35,0x6e36,0x6e37,0x6e39,0x6e3b,0x6e3c,0x6e3d,0x6e3e,
	0x6e3f,0x6e40,0x6e41,0x6e42,0x6e45,0x6e46,0x6e47,0x6e48,0x6e49,0x6e4a,0x6e4b,0x6e4c,0x6e4f,0x6e50,0x6e51,0x6e52,
	0x6e55,0x6e57,0x6e59,0x6e5a,0x6e5c,0x6e5d,0x6e5e,0x6e60,0x6e61,0x6e62,0x6e63,0x6e64,0x6e65,0x6e66,0x6e67,0x6e68,
	0x6e69,0x6e6a,0x6e6c,0x6e6d,0x6e6f,0x6e70,0x6e71,0x6e72,0x6e73,0x6e74,0x6e75,0x6e76,0x6e77,0x6e78,0x6e79,0x6e7a,
	0x6e7b,0x6e7c,0x6e7d,0x6e80,0x6e81,0x6e82,0x6e84,0x6e87,0x6e88,0x6e8a,0x6e8b,0x6e8c,0x6e8d,0x6e8e,0x6e91,0x6e92,
	0x6e93,0x6e94,0x6e95,0x6e96,0x6e97,0x6e99,0x6e9a,0x6e9b,0x6e9d,0x6e9e,0x6ea0,0x6ea1,0x6ea3,0x6ea4,0x6ea6,0x6ea8,
	0x6ea9,0x6eab,0x6eac,0x6ead,0x6eae,0x6eb0,0x6eb3,0x6eb5,0x6eb8,0x6eb9,0x6ebc,0x6ebe,0x6ebf,0x6ec0,0x6ec3,0x6ec4,
	0x6ec5,0x6ec6,0x6ec8,0x6ec9,0x6eca,0x6ecc,0x6ecd,0x6ece,0x6ed0,0x6ed2,0x6ed6,0x6ed8,0x6ed9,0x6edb,0x6edc,0x6edd,
	0x6ee3,0x6ee7,0x6eea,0x6eeb,0x6eec,0x6eed,0x6eee,0x6eef,0x6ef0,0x6ef1,0x6ef2,0x6ef3,0x6ef5,0x6ef6,0x6ef7,0x6ef8,
	0x6efa,0x6efb,0x6efc,0x6efd,0x6efe,0x6eff,0x6f00,0x6f01,0x6f03,0x6f04,0x6f05,0x6f07,0x6f08,0x6f0a,0x6f0b,0x6f0c,
	0x6f0d,0x6f0e,0x6f10,0x6f11,0x6f12,0x6f16,0x6f17,0x6f18,0x6f19,0x6f1a,0x6f1b,0x6f1c,0x6f1d,0x6f1e,0x6f1f,0x6f21,
	0x6f22,0x6f23,0x6f25,0x6f26,0x6f27,0x6f28,0x6f2c,0x6f2e,0x6f30,0x6f32,0x6f34,0x6f35,0x6f37,0x6f38,0x6f39,0x6f3a,
	0x6f3b,0x6f3c,0x6f3d,0x6f3f,0x6f40,0x6f41,0x6f42,0x6f43,0x6f44,0x6f45,0x6f48,0x6f49,0x6f4a,0x6f4c,0x6f4e,0x6f4f,
	0x6f50,0x6f51,0x6f52,0x6f53,0x6f54,0x6f55,0x6f56,0x6f57,0x6f59,0x6f5a,0x6f5b,0x6f5d,0x6f5f,0x6f60,0x6f61,0x6f63,
	0x6f64,0x6f65,0x6f67,0x6f68,0x6f69,0x6f6a,0x6f6b,0x6f6c,0x6f6f,0x6f70,0x6f71,0x6f73,0x6f75,0x6f76,0x6f77,0x6f79,
	0x6f7b,0x6f7d,0x6f7e,0x6f7f,0x6f80,0x6f81,0x6f82,0x6f83,0x6f85,0x6f86,0x6f87,0x6f8a,0x6f8b,0x6f8f,0x6f90,0x6f91,
	0x6f92,0x6f93,0x6f94,0x6f95,0x6f96,0x6f97,0x6f98,0x6f99,0x6f9a,0x6f9b,0x6f9d,0x6f9e,0x6f9f,0x6fa0,0x6fa2,0x6fa3,
	0x6fa4,0x6fa5,0x6fa6,0x6fa8,0x6fa9,0x6faa,0x6fab,0x6fac,0x6fad,0x6fae,0x6faf,0x6fb0,0x6fb1,0x6fb2,0x6fb4,0x6fb5,
	0x6fb7,0x6fb8,0x6fba,0x6fbb,0x6fbc,0x6fbd,0x6fbe,0x6fbf,0x6fc1,0x6fc3,0x6fc4,0x6fc5,0x6fc6,0x6fc7,0x6fc8,0x6fca,
	0x6fcb,0x6fcc,0x6fcd,0x6fce,0x6fcf,0x6fd0,0x6fd3,0x6fd4,0x6fd5,0x6fd6,0x6fd7,0x6fd8,0x6fd9,0x6fda,0x6fdb,0x6fdc,
	0x6fdd,0x6fdf,0x6fe2,0x6fe3,0x6fe4,0x6fe5,0x6fe6,0x6fe7,0x6fe8,0x6fe9,0x6fea,0x6feb,0x6fec,0x6fed,0x6ff0,0x6ff1,
	0x6ff2,0x6ff3,0x6ff4,0x6ff5,0x6ff6,0x6ff7,0x6ff8,0x6ff9,0x6ffa,0x6ffb,0x6ffc,0x6ffd,0x6ffe,0x6fff,0x7000,0x7001,
	0x7002,0x7003,0x7004,0x7005,0x7006,0x7007,0x7008,0x7009,0x700a,0x700b,0x700c,0x700d,0x700e,0x700f,0x7010,0x7012,
	0x7013,0x7014,0x7015,0x7016,0x7017,0x7018,0x7019,0x701c,0x701d,0x701e,0x701f,0x7020,0x7021,0x7022,0x7024,0x7025,
	0x7026,0x7027,0x7028,0x7029,0x702a,0x702b,0x702c,0x702d,0x702e,0x702f,0x7030,0x7031,0x7032,0x7033,0x7034,0x7036,
	0x7037,0x7038,0x703a,0x703b,0x703c,0x703d,0x703e,0x703f,0x7040,0x7041,0x7042,0x7043,0x7044,0x7045,0x7046,0x7047,
	0x7048,0x7049,0x704a,0x704b,0x704d,0x704e,0x7050,0x7051,0x7052,0x7053,0x7054,0x7055,0x7056,0x7057,0x7058,0x7059,
	0x705a,0x705b,0x705c,0x705d,0x705f,0x7060,0x7061,0x7062,0x7063,0x7064,0x7065,0x7066,0x7067,0x7068,0x7069,0x706a,
	0x706e,0x7071,0x7072,0x7073,0x7074,0x7077,0x7079,0x707a,0x707b,0x707d,0x7081,0x7082,0x7083,0x7084,0x7086,0x7087,
	0x7088,0x708b,0x708c,0x708d,0x708f,0x7090,0x7091,0x7093,0x7097,0x7098,0x709a,0x709b,0x709e,0x709f,0x70a0,0x70a1,
	0x70a2,0x70a3,0x70a4,0x70a5,0x70a6,0x70a7,0x70a8,0x70a9,0x70aa,0x70b0,0x70b2,0x70b4,0x70b5,0x70b6,0x70ba,0x70be,
	0x70bf,0x70c4,0x70c5,0x70c6,0x70c7,0x70c9,0x70cb,0x70cc,0x70cd,0x70ce,0x70cf,0x70d0,0x70d1,0x70d2,0x70d3,0x70d4,
	0x70d5,0x70d6,0x70d7,0x70da,0x70dc,0x70dd,0x70de,0x70e0,0x70e1,0x70e2,0x70e3,0x70e5,0x70ea,0x70ee,0x70f0,0x70f1,
	0x70f2,0x70f3,0x70f4,0x70f5,0x70f6,0x70f8,0x70fa,0x70fb,0x70fc,0x70fe,0x70ff,0x7100,0x7101,0x7102,0x7103,0x7104,
	0x7105,0x7106,0x7107,0x7108,0x710b,0x710c,0x710d,0x710e,0x710f,0x7111,0x7112,0x7114,0x7117,0x711b,0x711c,0x711d,
	0x711e,0x711f,0x7120,0x7121,0x7122,0x7123,0x7124,0x7125,0x7127,0x7128,0x7129,0x712a,0x712b,0x712c,0x712d,0x712e,
	0x7132,0x7133,0x7134,0x7135,0x7137,0x7138,0x7139,0x713a,0x713b,0x713c,0x713d,0x713e,0x713f,0x7140,0x7141,0x7142,
	0x7143,0x7144,0x7146,0x7147,0x7148,0x7149,0x714b,0x714d,0x714f,0x7150,0x7151,0x7152,0x7153,0x7154,0x7155,0x7156,
	0x7157,0x7158,0x7159,0x715a,0x715b,0x715d,0x715f,0x7160,0x7161,0x7162,0x7163,0x7165,0x7169,0x716a,0x716b,0x716c,
	0x716d,0x716f,0x7170,0x7171,0x7174,0x7175,0x7176,0x7177,0x7179,0x717b,0x717c,0x717e,0x717f,0x7180,0x7181,0x7182,
	0x7183,0x7185,0x7186,0x7187,0x7188,0x7189,0x718b,0x718c,0x718d,0x718e,0x7190,0x7191,0x7192,0x7193,0x7195,0x7196,
	0x7197,0x719a,0x719b,0x719c,0x719d,0x719e,0x71a1,0x71a2,0x71a3,0x71a4,0x71a5,0x71a6,0x71a7,0x71a9,0x71aa,0x71ab,
	0x71ad,0x71ae,0x71af,0x71b0,0x71b1,0x71b2,0x71b4,0x71b6,0x71b7,0x71b8,0x71ba,0x71bb,0x71bc,0x71bd,0x71be,0x71bf,
	0x71c0,0x71c1,0x71c2,0x71c4,0x71c5,0x71c6,0x71c7,0x71c8,0x71c9,0x71ca,0x71cb,0x71cc,0x71cd,0x71cf,0x71d0,0x71d1,
	0x71d2,0x71d3,0x71d6,0x71d7,0x71d8,0x71d9,0x71da,0x71db,0x71dc,0x71dd,0x71de,0x71df,0x71e1,0x71e2,0x71e3,0x71e4,
	0x71e6,0x71e8,0x71e9,0x71ea,0x71eb,0x71ec,0x71ed,0x71ef,0x71f0,0x71f1,0x71f2,0x71f3,0x71f4,0x71f5,0x71f6,0x71f7,
	0x71f8,0x71fa,0x71fb,0x71fc,0x71fd,0x71fe,0x71ff,0x7200,0x7201,0x7202,0x7203,0x7204,0x7205,0x7207,0x7208,0x7209,
	0x720a,0x720b,0x720c,0x720d,0x720e,0x720f,0x7210,0x7211,0x7212,0x7213,0x7214,0x7215,0x7216,0x7217,0x7218,0x7219,
	0x721a,0x721b,0x721c,0x721e,0x721f,0x7220,0x7221,0x7222,0x7223,0x7224,0x7225,0x7226,0x7227,0x7229,0x722b,0x722d,
	0x722e,0x722f,0x7232,0x7233,0x7234,0x723a,0x723c,0x723e,0x7240,0x7241,0x7242,0x7243,0x7244,0x7245,0x7246,0x7249,
	0x724a,0x724b,0x724e,0x724f,0x7250,0x7251,0x7253,0x7254,0x7255,0x7257,0x7258,0x725a,0x725c,0x725e,0x7260,0x7263,
	0x7264,0x7265,0x7268,0x726a,0x726b,0x726c,0x726d,0x7270,0x7271,0x7273,0x7274,0x7276,0x7277,0x7278,0x727b,0x727c,
	0x727d,0x7282,0x7283,0x7285,0x7286,0x7287,0x7288,0x7289,0x728c,0x728e,0x7290,0x7291,0x7293,0x7294,0x7295,0x7296,
	0x7297,0x7298,0x7299,0x729a,0x729b,0x729c,0x729d,0x729e,0x72a0,0x72a1,0x72a2,0x72a3,0x72a4,0x72a5,0x72a6,0x72a7,
	0x72a8,0x72a9,0x72aa,0x72ab,0x72ae,0x72b1,0x72b2,0x72b3,0x72b5,0x72ba,0x72bb,0x72bc,0x72bd,0x72be,0x72bf,0x72c0,
	0x72c5,0x72c6,0x72c7,0x72c9,0x72ca,0x72cb,0x72cc,0x72cf,0x72d1,0x72d3,0x72d4,0x72d5,0x72d6,0x72d8,0x72da,0x72db,
	0xe4c6,0xe4c7,0xe4c8,0xe4c9,0xe4ca,0xe4cb,0xe4cc,0xe4cd,0xe4ce,0xe4cf,0xe4d0,0xe4d1,0xe4d2,0xe4d3,0xe4d4,0xe4d5,
	0xe4d6,0xe4d7,0xe4d8,0xe4d9,0xe4da,0xe4db,0xe4dc,0xe4dd,0xe4de,0xe4df,0xe4e0,0xe4e1,0xe4e2,0xe4e3,0xe4e4,0xe4e5,
	0xe4e6,0xe4e7,0xe4e8,0xe4e9,0xe4ea,0xe4eb,0xe4ec,0xe4ed,0xe4ee,0xe4ef,0xe4f0,0xe4f1,0xe4f2,0xe4f3,0xe4f4,0xe4f5,
	0xe4f6,0xe4f7,0xe4f8,0xe4f9,0xe4fa,0xe4fb,0xe4fc,0xe4fd,0xe4fe,0xe4ff,0xe500,0xe501,0xe502,0xe503,0xe504,0xe505,
	0xe506,0xe507,0xe508,0xe509,0xe50a,0xe50b,0xe50c,0xe50d,0xe50e,0xe50f,0xe510,0xe511,0xe512,0xe513,0xe514,0xe515,
	0xe516,0xe517,0xe518,0xe519,0xe51a,0xe51b,0xe51c,0xe51d,0xe51e,0xe51f,0xe520,0xe521,0xe522,0xe523,0xe524,0xe525,
	0x3000,0x3001,0x3002,0x00b7,0x02c9,0x02c7,0x00a8,0x3003,0x3005,0x2014,0xff5e,0x2016,0x2026,0x2018,0x2019,0x201c,
	0x201d,0x3014,0x3015,0x3008,0x3009,0x300a,0x300b,0x300c,0x300d,0x300e,0x300f,0x3016,0x3017,0x3010,0x3011,0x00b1,
	0x00d7,0x00f7,0x2236,0x2227,0x2228,0x2211,0x220f,0x222a,0x2229,0x2208,0x2237,0x221a,0x22a5,0x2225,0x2220,0x2312,
	0x2299,0x222b,0x222e,0x2261,0x224c,0x2248,0x223d,0x221d,0x2260,0x226e,0x226f,0x2264,0x2265,0x221e,0x2235,0x2234,
	0x2642,0x2640,0x00b0,0x2032,0x2033,0x2103,0xff04,0x00a4,0xffe0,0xffe1,0x2030,0x00a7,0x2116,0x2606,0x2605,0x25cb,
	0x25cf,0x25ce,0x25c7,0x25c6,0x25a1,0x25a0,0x25b3,0x25b2,0x203b,0x2192,0x2190,0x2191,0x2193,0x3013,0xe526,0xe527,
	0xe528,0xe529,0xe52a,0xe52b,0xe52c,0xe52d,0xe52e,0xe52f,0xe530,0xe531,0xe532,0xe533,0xe534,0xe535,0xe536,0xe537,
	0xe538,0xe539,0xe53a,0xe53b,0xe53c,0xe53d,0xe53e,0xe53f,0xe540,0xe541,0xe542,0xe543,0xe544,0xe545,0xe546,0xe547,
	0xe548,0xe549,0xe54a,0xe54b,0xe54c,0xe54d,0xe54e,0xe54f,0xe550,0xe551,0xe552,0xe553,0xe554,0xe555,0xe556,0xe557,
	0xe558,0xe559,0xe55a,0xe55b,0xe55c,0xe55d,0xe55e,0xe55f,0xe560,0xe561,0xe562,0xe563,0xe564,0xe565,0xe566,0xe567,
	0xe568,0xe569,0xe56a,0xe56b,0xe56c,0xe56d,0xe56e,0xe56f,0xe570,0xe571,0xe572,0xe573,0xe574,0xe575,0xe576,0xe577,
	0xe578,0xe579,0xe57a,0xe57b,0xe57c,0xe57d,0xe57e,0xe57f,0xe580,0xe581,0xe582,0xe583,0xe584,0xe585,0x2170,0x2171,
	0x2172,0x2173,0x2174,0x2175,0x2176,0x2177,0x2178,0x2179,0xe766,0xe767,0xe768,0xe769,0xe76a,0xe76b,0x2488,0x2489,
	0x248a,0x248b,0x248c,0x248d,0x248e,0x248f,0x2490,0x2491,0x2492,0x2493,0x2494,0x2495,0x2496,0x2497,0x2498,0x2499,
	0x249a,0x249b,0x2474,0x2475,0x2476,0x2477,0x2478,0x2479,0x247a,0x247b,0x247c,0x247d,0x247e,0x247f,0x2480,0x2481,
	0x2482,0x2483,0x2484,0x2485,0x2486,0x2487,0x2460,0x2461,0x2462,0x2463,0x2464,0x2465,0x2466,0x2467,0x2468,0x2469,
	0xe76c,0xe76d,0x3220,0x3221,0x3222,0x3223,0x3224,0x3225,0x3226,0x3227,0x3228,0x3229,0xe76e,0xe76f,0x2160,0x2161,
	0x2162,0x2163,0x2164,0x2165,0x2166,0x2167,0x2168,0x2169,0x216a,0x216b,0xe770,0xe771,0xe586,0xe587,0xe588,0xe589,
	0xe58a,0xe58b,0xe58c,0xe58d,0xe58e,0xe58f,0xe590,0xe591,0xe592,0xe593,0xe594,0xe595,0xe596,0xe597,0xe598,0xe599,
	0xe59a,0xe59b,0xe59c,0xe59d,0xe59e,0xe59f,0xe5a0,0xe5a1,0xe5a2,0xe5a3,0xe5a4,0xe5a5,0xe5a6,0xe5a7,0xe5a8,0xe5a9,
	0xe5aa,0xe5ab,0xe5ac,0xe5ad,0xe5ae,0xe5af,0xe5b0,0xe5b1,0xe5b2,0xe5b3,0xe5b4,0xe5b5,0xe5b6,0xe5b7,0xe5b8,0xe5b9,
	0xe5ba,0xe5bb,0xe5bc,0xe5bd,0xe5be,0xe5bf,0xe5c0,0xe5c1,0xe5c2,0xe5c3,0xe5c4,0xe5c5,0xe5c6,0xe5c7,0xe5c8,0xe5c9,
	0xe5ca,0xe5cb,0xe5cc,0xe5cd,0xe5ce,0xe5cf,0xe5d0,0xe5d1,0xe5d2,0xe5d3,0xe5d4,0xe5d5,0xe5d6,0xe5d7,0xe5d8,0xe5d9,
	0xe5da,0xe5db,0xe5dc,0xe5dd,0xe5de,0xe5df,0xe5e0,0xe5e1,0xe5e2,0xe5e3,0xe5e4,0xe5e5,0xff01,0xff02,0xff03,0xffe5,
	0xff05,0xff06,0xff07,0xff08,0xff09,0xff0a,0xff0b,0xff0c,0xff0d,0xff0e,0xff0f,0xff10,0xff11,0xff12,0xff13,0xff14,
	0xff15,0xff16,0xff17,0xff18,0xff19,0xff1a,0xff1b,0xff1c,0xff1d,0xff1e,0xff1f,0xff20,0xff21,0xff22,0xff23,0xff24,
	0xff25,0xff26,0xff27,0xff28,0xff29,0xff2a,0xff2b,0xff2c,0xff2d,0xff2e,0xff2f,0xff30,0xff31,0xff32,0xff33,0xff34,
	0xff35,0xff36,0xff37,0xff38,0xff39,0xff3a,0xff3b,0xff3c,0xff3d,0xff3e,0xff3f,0xff40,0xff41,0xff42,0xff43,0xff44,
	0xff45,0xff46,0xff47,0xff48,0xff49,0xff4a,0xff4b,0xff4c,0xff4d,0xff4e,0xff4f,0xff50,0xff51,0xff52,0xff53,0xff54,
	0xff55,0xff56,0xff57,0xff58,0xff59,0xff5a,0xff5b,0xff5c,0xff5d,0xffe3,0xe5e6,0xe5e7,0xe5e8,0xe5e9,0xe5ea,0xe5eb,
	0xe5ec,0xe5ed,0xe5ee,0xe5ef,0xe5f0,0xe5f1,0xe5f2,0xe5f3,0xe5f4,0xe5f5,0xe5f6,0xe5f7,0xe5f8,0xe5f9,0xe5fa,0xe5fb,
	0xe5fc,0xe5fd,0xe5fe,0xe5ff,0xe600,0xe601,0xe602,0xe603,0xe604,0xe605,0xe606,0xe607,0xe608,0xe609,0xe60a,0xe60b,
	0xe60c,0xe60d,0xe60e,0xe60f,0xe610,0xe611,0xe612,0xe613,0xe614,0xe615,0xe616,0xe617,0xe618,0xe619,0xe61a,0xe61b,
	0xe61c,0xe61d,0xe61e,0xe61f,0xe620,0xe621,0xe622,0xe623,0xe624,0xe625,0xe626,0xe627,0xe628,0xe629,0xe62a,0xe62b,
	0xe62c,0xe62d,0xe62e,0xe62f,0xe630,0xe631,0xe632,0xe633,0xe634,0xe635,0xe636,0xe637,0xe638,0xe639,0xe63a,0xe63b,
	0xe63c,0xe63d,0xe63e,0xe63f,0xe640,0xe641,0xe642,0xe643,0xe644,0xe645,0x3041,0x3042,0x3043,0x3044,0x3045,0x3046,
	0x3047,0x3048,0x3049,0x304a,0x304b,0x304c,0x304d,0x304e,0x304f,0x3050,0x3051,0x3052,0x3053,0x3054,0x3055,0x3056,
	0x3057,0x3058,0x3059,0x305a,0x305b,0x305c,0x305d,0x305e,0x305f,0x3060,0x3061,0x3062,0x3063,0x3064,0x3065,0x3066,
	0x3067,0x3068,0x3069,0x306a,0x306b,0x306c,0x306d,0x306e,0x306f,0x3070,0x3071,0x3072,0x3073,0x3074,0x3075,0x3076,
	0x3077,0x3078,0x3079,0x307a,0x307b,0x307c,0x307d,0x307e,0x307f,0x3080,0x3081,0x3082,0x3083,0x3084,0x3085,0x3086,
	0x3087,0x3088,0x3089,0x308a,0x308b,0x308c,0x308d,0x308e,0x308f,0x3090,0x3091,0x3092,0x3093,0xe772,0xe773,0xe774,
	0xe775,0xe776,0xe777,0xe778,0xe779,0xe77a,0xe77b,0xe77c,0xe646,0xe647,0xe648,0xe649,0xe64a,0xe64b,0xe64c,0xe64d,
	0xe64e,0xe64f,0xe650,0xe651,0xe652,0xe653,0xe654,0xe655,0xe656,0xe657,0xe658,0xe659,0xe65a,0xe65b,0xe65c,0xe65d,
	0xe65e,0xe65f,0xe660,0xe661,0xe662,0xe663,0xe664,0xe665,0xe666,0xe667,0xe668,0xe669,0xe66a,0xe66b,0xe66c,0xe66d,
	0xe66e,0xe66f,0xe670,0xe671,0xe672,0xe673,0xe674,0xe675,0xe676,0xe677,0xe678,0xe679,0xe67a,0xe67b,0xe67c,0xe67d,
	0xe67e,0xe67f,0xe680,0xe681,0xe682,0xe683,0xe684,0xe685,0xe686,0xe687,0xe688,0xe689,0xe68a,0xe68b,0xe68c,0xe68d,
	0xe68e,0xe68f,0xe690,0xe691,0xe692,0xe693,0xe694,0xe695,0xe696,0xe697,0xe698,0xe699,0xe69a,0xe69b,0xe69c,0xe69d,
	0xe69e,0xe69f,0xe6a0,0xe6a1,0xe6a2,0xe6a3,0xe6a4,0xe6a5,0x30a1,0x30a2,0x30a3,0x30a4,0x30a5,0x30a6,0x30a7,0x30a8,
	0x30a9,0x30aa,0x30ab,0x30ac,0x30ad,0x30ae,0x30af,0x30b0,0x30b1,0x30b2,0x30b3,0x30b4,0x30b5,0x30b6,0x30b7,0x30b8,
	0x30b9,0x30ba,0x30bb,0x30bc,0x30bd,0x30be,0x30bf,0x30c0,0x30c1,0x30c2,0x30c3,0x30c4,0x30c5,0x30c6,0x30c7,0x30c8,
	0x30c9,0x30ca,0x30cb,0x30cc,0x30cd,0x30ce,0x30cf,0x30d0,0x30d1,0x30d2,0x30d3,0x30d4,0x30d5,0x30d6,0x30d7,0x30d8,
	0x30d9,0x30da,0x30db,0x30dc,0x30dd,0x30de,0x30df,0x30e0,0x30e1,0x30e2,0x30e3,0x30e4,0x30e5,0x30e6,0x30e7,0x30e8,
	0x30e9,0x30ea,0x30eb,0x30ec,0x30ed,0x30ee,0x30ef,0x30f0,0x30f1,0x30f2,0x30f3,0x30f4,0x30f5,0x30f6,0xe77d,0xe77e,
	0xe77f,0xe780,0xe781,0xe782,0xe783,0xe784,0xe6a6,0xe6a7,0xe6a8,0xe6a9,0xe6aa,0xe6ab,0xe6ac,0xe6ad,0xe6ae,0xe6af,
	0xe6b0,0xe6b1,0xe6b2,0xe6b3,0xe6b4,0xe6b5,0xe6b6,0xe6b7,0xe6b8,0xe6b9,0xe6ba,0xe6bb,0xe6bc,0xe6bd,0xe6be,0xe6bf,
	0xe6c0,0xe6c1,0xe6c2,0xe6c3,0xe6c4,0xe6c5,0xe6c6,0xe6c7,0xe6c8,0xe6c9,0xe6ca,0xe6cb,0xe6cc,0xe6cd,0xe6ce,0xe6cf,
	0xe6d0,0xe6d1,0xe6d2,0xe6d3,0xe6d4,0xe6d5,0xe6d6,0xe6d7,0xe6d8,0xe6d9,0xe6da,0xe6db,0xe6dc,0xe6dd,0xe6de,0xe6df,
	0xe6e0,0xe6e1,0xe6e2,0xe6e3,0xe6e4,0xe6e5,0xe6e6,0xe6e7,0xe6e8,0xe6e9,0xe6ea,0xe6eb,0xe6ec,0xe6ed,0xe6ee,0xe6ef,
	0xe6f0,0xe6f1,0xe6f2,0xe6f3,0xe6f4,0xe6f5,0xe6f6,0xe6f7,0xe6f8,0xe6f9,0xe6fa,0xe6fb,0xe6fc,0xe6fd,0xe6fe,0xe6ff,
	0xe700,0xe701,0xe702,0xe703,0xe704,0xe705,0x0391,0x0392,0x0393,0x0394,0x0395,0x0396,0x0397,0x0398,0x0399,0x039a,
	0x039b,0x039c,0x039d,0x039e,0x039f,0x03a0,0x03a1,0x03a3,0x03a4,0x03a5,0x03a6,0x03a7,0x03a8,0x03a9,0xe785,0xe786,
	0xe787,0xe788,0xe789,0xe78a,0xe78b,0xe78c,0x03b1,0x03b2,0x03b3,0x03b4,0x03b5,0x03b6,0x03b7,0x03b8,0x03b9,0x03ba,
	0x03bb,0x03bc,0x03bd,0x03be,0x03bf,0x03c0,0x03c1,0x03c3,0x03c4,0x03c5,0x03c6,0x03c7,0x03c8,0x03c9,0xe78d,0xe78e,
	0xe78f,0xe790,0xe791,0xe792,0xe793,0xfe35,0xfe36,0xfe39,0xfe3a,0xfe3f,0xfe40,0xfe3d,0xfe3e,0xfe41,0xfe42,0xfe43,
	0xfe44,0xe794,0xe795,0xfe3b,0xfe3c,0xfe37,0xfe38,0xfe31,0xe796,0xfe33,0xfe34,0xe797,0xe798,0xe799,0xe79a,0xe79b,
	0xe79c,0xe79d,0xe79e,0xe79f,0xe706,0xe707,0xe708,0xe709,0xe70a,0xe70b,0xe70c,0xe70d,0xe70e,0xe70f,0xe710,0xe711,
	0xe712,0xe713,0xe714,0xe715,0xe716,0xe717,0xe718,0xe719,0xe71a,0xe71b,0xe71c,0xe71d,0xe71e,0xe71f,0xe720,0xe721,
	0xe722,0xe723,0xe724,0xe725,0xe726,0xe727,0xe728,0xe729,0xe72a,0xe72b,0xe72c,0xe72d,0xe72e,0xe72f,0xe730,0xe731,
	0xe732,0xe733,0xe734,0xe735,0xe736,0xe737,0xe738,0xe739,0xe73a,0xe73b,0xe73c,0xe73d,0xe73e,0xe73f,0xe740,0xe741,
	0xe742,0xe743,0xe744,0xe745,0xe746,0xe747,0xe748,0xe749,0xe74a,0xe74b,0xe74c,0xe74d,0xe74e,0xe74f,0xe750,0xe751,
	0xe752,0xe753,0xe754,0xe755,0xe756,0xe757,0xe758,0xe759,0xe75a,0xe75b,0xe75c,0xe75d,0xe75e,0xe75f,0xe760,0xe761,
	0xe762,0xe763,0xe764,0xe765,0x0410,0x0411,0x0412,0x0413,0x0414,0x0415,0x0401,0x0416,0x0417,0x0418,0x0419,0x041a,
	0x041b,0x041c,0x041d,0x041e,0x041f,0x0420,0x0421,0x0422,0x0423,0x0424,0x0425,0x0426,0x0427,0x0428,0x0429,0x042a,
	0x042b,0x042c,0x042d,0x042e,0x042f,0xe7a0,0xe7a1,0xe7a2,0xe7a3,0xe7a4,0xe7a5,0xe7a6,0xe7a7,0xe7a8,0xe7a9,0xe7aa,
	0xe7ab,0xe7ac,0xe7ad,0xe7ae,0x0430,0x0431,0x0432,0x0433,0x0434,0x0435,0x0451,0x0436,0x0437,0x0438,0x0439,0x043a,
	0x043b,0x043c,0x043d,0x043e,0x043f,0x0440,0x0441,0x0442,0x0443,0x0444,0x0445,0x0446,0x0447,0x0448,0x0449,0x044a,
	0x044b,0x044c,0x044d,0x044e,0x044f,0xe7af,0xe7b0,0xe7b1,0xe7b2,0xe7b3,0xe7b4,0xe7b5,0xe7b6,0xe7b7,0xe7b8,0xe7b9,
	0xe7ba,0xe7bb,0x02ca,0x02cb,0x02d9,0x2013,0x2015,0x2025,0x2035,0x2105,0x2109,0x2196,0x2197,0x2198,0x2199,0x2215,
	0x221f,0x2223,0x2252,0x2266,0x2267,0x22bf,0x2550,0x2551,0x2552,0x2553,0x2554,0x2555,0x2556,0x2557,0x2558,0x2559,
	0x255a,0x255b,0x255c,0x255d,0x255e,0x255f,0x2560,0x2561,0x2562,0x2563,0x2564,0x2565,0x2566,0x2567,0x2568,0x2569,
	0x256a,0x256b,0x256c,0x256d,0x256e,0x256f,0x2570,0x2571,0x2572,0x2573,0x2581,0x2582,0x2583,0x2584,0x2585,0x2586,
	0x2587,0x2588,0x2589,0x258a,0x258b,0x258c,0x258d,0x258e,0x258f,0x2593,0x2594,0x2595,0x25bc,0x25bd,0x25e2,0x25e3,
	0x25e4,0x25e5,0x2609,0x2295,0x3012,0x301d,0x301e,0xe7bc,0xe7bd,0xe7be,0xe7bf,0xe7c0,0xe7c1,0xe7c2,0xe7c3,0xe7c4,
	0xe7c5,0xe7c6,0x0101,0x00e1,0x01ce,0x00e0,0x0113,0x00e9,0x011b,0x00e8,0x012b,0x00ed,0x01d0,0x00ec,0x014d,0x00f3,
	0x01d2,0x00f2,0x016b,0x00fa,0x01d4,0x00f9,0x01d6,0x01d8,0x01da,0x01dc,0x00fc,0x00ea,0x0251,0xe7c7,0x0144,0x0148,
	0xe7c8,0x0261,0xe7c9,0xe7ca,0xe7cb,0xe7cc,0x3105,0x3106,0x3107,0x3108,0x3109,0x310a,0x310b,0x310c,0x310d,0x310e,
	0x310f,0x3110,0x3111,0x3112,0x3113,0x3114,0x3115,0x3116,0x3117,0x3118,0x3119,0x311a,0x311b,0x311c,0x311d,0x311e,
	0x311f,0x3120,0x3121,0x3122,0x3123,0x3124,0x3125,0x3126,0x3127,0x3128,0x3129,0xe7cd,0xe7ce,0xe7cf,0xe7d0,0xe7d1,
	0xe7d2,0xe7d3,0xe7d4,0xe7d5,0xe7d6,0xe7d7,0xe7d8,0xe7d9,0xe7da,0xe7db,0xe7dc,0xe7dd,0xe7de,0xe7df,0xe7e0,0xe7e1,
	0x3021,0x3022,0x3023,0x3024,0x3025,0x3026,0x3027,0x3028,0x3029,0x32a3,0x338e,0x338f,0x339c,0x339d,0x339e,0x33a1,
	0x33c4,0x33ce,0x33d1,0x33d2,0x33d5,0xfe30,0xffe2,0xffe4,0xe7e2,0x2121,0x3231,0xe7e3,0x2010,0xe7e4,0xe7e5,0xe7e6,
	0x30fc,0x309b,0x309c,0x30fd,0x30fe,0x3006,0x309d,0x309e,0xfe49,0xfe4a,0xfe4b,0xfe4c,0xfe4d,0xfe4e,0xfe4f,0xfe50,
	0xfe51,0xfe52,0xfe54,0xfe55,0xfe56,0xfe57,0xfe59,0xfe5a,0xfe5b,0xfe5c,0xfe5d,0xfe5e,0xfe5f,0xfe60,0xfe61,0xfe62,
	0xfe63,0xfe64,0xfe65,0xfe66,0xfe68,0xfe69,0xfe6a,0xfe6b,0xe7e7,0xe7e8,0xe7e9,0xe7ea,0xe7eb,0xe7ec,0xe7ed,0xe7ee,
	0xe7ef,0xe7f0,0xe7f1,0xe7f2,0xe7f3,0x3007,0xe7f4,0xe7f5,0xe7f6,0xe7f7,0xe7f8,0xe7f9,0xe7fa,0xe7fb,0xe7fc,0xe7fd,
	0xe7fe,0xe7ff,0xe800,0x2500,0x2501,0x2502,0x2503,0x2504,0x2505,0x2506,0x2507,0x2508,0x2509,0x250a,0x250b,0x250c,
	0x250d,0x250e,0x250f,0x2510,0x2511,0x2512,0x2513,0x2514,0x2515,0x2516,0x2517,0x2518,0x2519,0x251a,0x251b,0x251c,
	0x251d,0x251e,0x251f,0x2520,0x2521,0x2522,0x2523,0x2524,0x2525,0x2526,0x2527,0x2528,0x2529,0x252a,0x252b,0x252c,
	0x252d,0x252e,0x252f,0x2530,0x2531,0x2532,0x2533,0x2534,0x2535,0x2536,0x2537,0x2538,0x2539,0x253a,0x253b,0x253c,
	0x253d,0x253e,0x253f,0x2540,0x2541,0x2542,0x2543,0x2544,0x2545,0x2546,0x2547,0x2548,0x2549,0x254a,0x254b,0xe801,
	0xe802,0xe803,0xe804,0xe805,0xe806,0xe807,0xe808,0xe809,0xe80a,0xe80b,0xe80c,0xe80d,0xe80e,0xe80f,0x72dc,0x72dd,
	0x72df,0x72e2,0x72e3,0x72e4,0x72e5,0x72e6,0x72e7,0x72ea,0x72eb,0x72f5,0x72f6,0x72f9,0x72fd,0x72fe,0x72ff,0x7300,
	0x7302,0x7304,0x7305,0x7306,0x7307,0x7308,0x7309,0x730b,0x730c,0x730d,0x730f,0x7310,0x7311,0x7312,0x7314,0x7318,
	0x7319,0x731a,0x731f,0x7320,0x7323,0x7324,0x7326,0x7327,0x7328,0x732d,0x732f,0x7330,0x7332,0x7333,0x7335,0x7336,
	0x733a,0x733b,0x733c,0x733d,0x7340,0x7341,0x7342,0x7343,0x7344,0x7345,0x7346,0x7347,0x7348,0x7349,0x734a,0x734b,
	0x734c,0x734e,0x734f,0x7351,0x7353,0x7354,0x7355,0x7356,0x7358,0x7359,0x735a,0x735b,0x735c,0x735d,0x735e,0x735f,
	0x7361,0x7362,0x7363,0x7364,0x7365,0x7366,0x7367,0x7368,0x7369,0x736a,0x736b,0x736e,0x7370,0x7371,0xe000,0xe001,
	0xe002,0xe003,0xe004,0xe005,0xe006,0xe007,0xe008,0xe009,0xe00a,0xe00b,0xe00c,0xe00d,0xe00e,0xe00f,0xe010,0xe011,
	0xe012,0xe013,0xe014,0xe015,0xe016,0xe017,0xe018,0xe019,0xe01a,0xe01b,0xe01c,0xe01d,0xe01e,0xe01f,0xe020,0xe021,
	0xe022,0xe023,0xe024,0xe025,0xe026,0xe027,0xe028,0xe029,0xe02a,0xe02b,0xe02c,0xe02d,0xe02e,0xe02f,0xe030,0xe031,
	0xe032,0xe033,0xe034,0xe035,0xe036,0xe037,0xe038,0xe039,0xe03a,0xe03b,0xe03c,0xe03d,0xe03e,0xe03f,0xe040,0xe041,
	0xe042,0xe043,0xe044,0xe045,0xe046,0xe047,0xe048,0xe049,0xe04a,0xe04b,0xe04c,0xe04d,0xe04e,0xe04f,0xe050,0xe051,
	0xe052,0xe053,0xe054,0xe055,0xe056,0xe057,0xe058,0xe059,0xe05a,0xe05b,0xe05c,0xe05d,0x7372,0x7373,0x7374,0x7375,
	0x7376,0x7377,0x7378,0x7379,0x737a,0x737b,0x737c,0x737d,0x737f,0x7380,0x7381,0x7382,0x7383,0x7385,0x7386,0x7388,
	0x738a,0x738c,0x738d,0x738f,0x7390,0x7392,0x7393,0x7394,0x7395,0x7397,0x7398,0x7399,0x739a,0x739c,0x739d,0x739e,
	0x73a0,0x73a1,0x73a3,0x73a4,0x73a5,0x73a6,0x73a7,0x73a8,0x73aa,0x73ac,0x73ad,0x73b1,0x73b4,0x73b5,0x73b6,0x73b8,
	0x73b9,0x73bc,0x73bd,0x73be,0x73bf,0x73c1,0x73c3,0x73c4,0x73c5,0x73c6,0x73c7,0x73cb,0x73cc,0x73ce,0x73d2,0x73d3,
	0x73d4,0x73d5,0x73d6,0x73d7,0x73d8,0x73da,0x73db,0x73dc,0x73dd,0x73df,0x73e1,0x73e2,0x73e3,0x73e4,0x73e6,0x73e8,
	0x73ea,0x73eb,0x73ec,0x73ee,0x73ef,0x73f0,0x73f1,0x73f3,0x73f4,0x73f5,0x73f6,0x73f7,0xe05e,0xe05f,0xe060,0xe061,
	0xe062,0xe063,0xe064,0xe065,0xe066,0xe067,0xe068,0xe069,0xe06a,0xe06b,0xe06c,0xe06d,0xe06e,0xe06f,0xe070,0xe071,
	0xe072,0xe073,0xe074,0xe075,0xe076,0xe077,0xe078,0xe079,0xe07a,0xe07b,0xe07c,0xe07d,0xe07e,0xe07f,0xe080,0xe081,
	0xe082,0xe083,0xe084,0xe085,0xe086,0xe087,0xe088,0xe089,0xe08a,0xe08b,0xe08c,0xe08d,0xe08e,0xe08f,0xe090,0xe091,
	0xe092,0xe093,0xe094,0xe095,0xe096,0xe097,0xe098,0xe099,0xe09a,0xe09b,0xe09c,0xe09d,0xe09e,0xe09f,0xe0a0,0xe0a1,
	0xe0a2,0xe0a3,0xe0a4,0xe0a5,0xe0a6,0xe0a7,0xe0a8,0xe0a9,0xe0aa,0xe0ab,0xe0ac,0xe0ad,0xe0ae,0xe0af,0xe0b0,0xe0b1,
	0xe0b2,0xe0b3,0xe0b4,0xe0b5,0xe0b6,0xe0b7,0xe0b8,0xe0b9,0xe0ba,0xe0bb,0x73f8,0x73f9,0x73fa,0x73fb,0x73fc,0x73fd,
	0x73fe,0x73ff,0x7400,0x7401,0x7402,0x7404,0x7407,0x7408,0x740b,0x740c,0x740d,0x740e,0x7411,0x7412,0x7413,0x7414,
	0x7415,0x7416,0x7417,0x7418,0x7419,0x741c,0x741d,0x741e,0x741f,0x7420,0x7421,0x7423,0x7424,0x7427,0x7429,0x742b,
	0x742d,0x742f,0x7431,0x7432,0x7437,0x7438,0x7439,0x743a,0x743b,0x743d,0x743e,0x743f,0x7440,0x7442,0x7443,0x7444,
	0x7445,0x7446,0x7447,0x7448,0x7449,0x744a,0x744b,0x744c,0x744d,0x744e,0x744f,0x7450,0x7451,0x7452,0x7453,0x7454,
	0x7456,0x7458,0x745d,0x7460,0x7461,0x7462,0x7463,0x7464,0x7465,0x7466,0x7467,0x7468,0x7469,0x746a,0x746b,0x746c,
	0x746e,0x746f,0x7471,0x7472,0x7473,0x7474,0x7475,0x7478,0x7479,0x747a,0xe0bc,0xe0bd,0xe0be,0xe0bf,0xe0c0,0xe0c1,
	0xe0c2,0xe0c3,0xe0c4,0xe0c5,0xe0c6,0xe0c7,0xe0c8,0xe0c9,0xe0ca,0xe0cb,0xe0cc,0xe0cd,0xe0ce,0xe0cf,0xe0d0,0xe0d1,
	0xe0d2,0xe0d3,0xe0d4,0xe0d5,0xe0d6,0xe0d7,0xe0d8,0xe0d9,0xe0da,0xe0db,0xe0dc,0xe0dd,0xe0de,0xe0df,0xe0e0,0xe0e1,
	0xe0e2,0xe0e3,0xe0e4,0xe0e5,0xe0e6,0xe0e7,0xe0e8,0xe0e9,0xe0ea,0xe0eb,0xe0ec,0xe0ed,0xe0ee,0xe0ef,0xe0f0,0xe0f1,
	0xe0f2,0xe0f3,0xe0f4,0xe0f5,0xe0f6,0xe0f7,0xe0f8,0xe0f9,0xe0fa,0xe0fb,0xe0fc,0xe0fd,0xe0fe,0xe0ff,0xe100,0xe101,
	0xe102,0xe103,0xe104,0xe105,0xe106,0xe107,0xe108,0xe109,0xe10a,0xe10b,0xe10c,0xe10d,0xe10e,0xe10f,0xe110,0xe111,
	0xe112,0xe113,0xe114,0xe115,0xe116,0xe117,0xe118,0xe119,0x747b,0x747c,0x747d,0x747f,0x7482,0x7484,0x7485,0x7486,
	0x7488,0x7489,0x748a,0x748c,0x748d,0x748f,0x7491,0x7492,0x7493,0x7494,0x7495,0x7496,0x7497,0x7498,0x7499,0x749a,
	0x749b,0x749d,0x749f,0x74a0,0x74a1,0x74a2,0x74a3,0x74a4,0x74a5,0x74a6,0x74aa,0x74ab,0x74ac,0x74ad,0x74ae,0x74af,
	0x74b0,0x74b1,0x74b2,0x74b3,0x74b4,0x74b5,0x74b6,0x74b7,0x74b8,0x74b9,0x74bb,0x74bc,0x74bd,0x74be,0x74bf,0x74c0,
	0x74c1,0x74c2,0x74c3,0x74c4,0x74c5,0x74c6,0x74c7,0x74c8,0x74c9,0x74ca,0x74cb,0x74cc,0x74cd,0x74ce,0x74cf,0x74d0,
	0x74d1,0x74d3,0x74d4,0x74d5,0x74d6,0x74d7,0x74d8,0x74d9,0x74da,0x74db,0x74dd,0x74df,0x74e1,0x74e5,0x74e7,0x74e8,
	0x74e9,0x74ea,0x74eb,0x74ec,0x74ed,0x74f0,0x74f1,0x74f2,0xe11a,0xe11b,0xe11c,0xe11d,0xe11e,0xe11f,0xe120,0xe121,
	0xe122,0xe123,0xe124,0xe125,0xe126,0xe127,0xe128,0xe129,0xe12a,0xe12b,0xe12c,0xe12d,0xe12e,0xe12f,0xe130,0xe131,
	0xe132,0xe133,0xe134,0xe135,0xe136,0xe137,0xe138,0xe139,0xe13a,0xe13b,0xe13c,0xe13d,0xe13e,0xe13f,0xe140,0xe141,
	0xe142,0xe143,0xe144,0xe145,0xe146,0xe147,0xe148,0xe149,0xe14a,0xe14b,0xe14c,0xe14d,0xe14e,0xe14f,0xe150,0xe151,
	0xe152,0xe153,0xe154,0xe155,0xe156,0xe157,0xe158,0xe159,0xe15a,0xe15b,0xe15c,0xe15d,0xe15e,0xe15f,0xe160,0xe161,
	0xe162,0xe163,0xe164,0xe165,0xe166,0xe167,0xe168,0xe169,0xe16a,0xe16b,0xe16c,0xe16d,0xe16e,0xe16f,0xe170,0xe171,
	0xe172,0xe173,0xe174,0xe175,0xe176,0xe177,0x74f3,0x74f5,0x74f8,0x74f9,0x74fa,0x74fb,0x74fc,0x74fd,0x74fe,0x7500,
	0x7501,0x7502,0x7503,0x7505,0x7506,0x7507,0x7508,0x7509,0x750a,0x750b,0x750c,0x750e,0x7510,0x7512,0x7514,0x7515,
	0x7516,0x7517,0x751b,0x751d,0x751e,0x7520,0x7521,0x7522,0x7523,0x7524,0x7526,0x7527,0x752a,0x752e,0x7534,0x7536,
	0x7539,0x753c,0x753d,0x753f,0x7541,0x7542,0x7543,0x7544,0x7546,0x7547,0x7549,0x754a,0x754d,0x7550,0x7551,0x7552,
	0x7553,0x7555,0x7556,0x7557,0x7558,0x755d,0x755e,0x755f,0x7560,0x7561,0x7562,0x7563,0x7564,0x7567,0x7568,0x7569,
	0x756b,0x756c,0x756d,0x756e,0x756f,0x7570,0x7571,0x7573,0x7575,0x7576,0x7577,0x757a,0x757b,0x757c,0x757d,0x757e,
	0x7580,0x7581,0x7582,0x7584,0x7585,0x7587,0xe178,0xe179,0xe17a,0xe17b,0xe17c,0xe17d,0xe17e,0xe17f,0xe180,0xe181,
	0xe182,0xe183,0xe184,0xe185,0xe186,0xe187,0xe188,0xe189,0xe18a,0xe18b,0xe18c,0xe18d,0xe18e,0xe18f,0xe190,0xe191,
	0xe192,0xe193,0xe194,0xe195,0xe196,0xe197,0xe198,0xe199,0xe19a,0xe19b,0xe19c,0xe19d,0xe19e,0xe19f,0xe1a0,0xe1a1,
	0xe1a2,0xe1a3,0xe1a4,0xe1a5,0xe1a6,0xe1a7,0xe1a8,0xe1a9,0xe1aa,0xe1ab,0xe1ac,0xe1ad,0xe1ae,0xe1af,0xe1b0,0xe1b1,
	0xe1b2,0xe1b3,0xe1b4,0xe1b5,0xe1b6,0xe1b7,0xe1b8,0xe1b9,0xe1ba,0xe1bb,0xe1bc,0xe1bd,0xe1be,0xe1bf,0xe1c0,0xe1c1,
	0xe1c2,0xe1c3,0xe1c4,0xe1c5,0xe1c6,0xe1c7,0xe1c8,0xe1c9,0xe1ca,0xe1cb,0xe1cc,0xe1cd,0xe1ce,0xe1cf,0xe1d0,0xe1d1,
	0xe1d2,0xe1d3,0xe1d4,0xe1d5,0x7588,0x7589,0x758a,0x758c,0x758d,0x758e,0x7590,0x7593,0x7595,0x7598,0x759b,0x759c,
	0x759e,0x75a2,0x75a6,0x75a7,0x75a8,0x75a9,0x75aa,0x75ad,0x75b6,0x75b7,0x75ba,0x75bb,0x75bf,0x75c0,0x75c1,0x75c6,
	0x75cb,0x75cc,0x75ce,0x75cf,0x75d0,0x75d1,0x75d3,0x75d7,0x75d9,0x75da,0x75dc,0x75dd,0x75df,0x75e0,0x75e1,0x75e5,
	0x75e9,0x75ec,0x75ed,0x75ee,0x75ef,0x75f2,0x75f3,0x75f5,0x75f6,0x75f7,0x75f8,0x75fa,0x75fb,0x75fd,0x75fe,0x7602,
	0x7604,0x7606,0x7607,0x7608,0x7609,0x760b,0x760d,0x760e,0x760f,0x7611,0x7612,0x7613,0x7614,0x7616,0x761a,0x761c,
	0x761d,0x761e,0x7621,0x7623,0x7627,0x7628,0x762c,0x762e,0x762f,0x7631,0x7632,0x7636,0x7637,0x7639,0x763a,0x763b,
	0x763d,0x7641,0x7642,0x7644,0xe1d6,0xe1d7,0xe1d8,0xe1d9,0xe1da,0xe1db,0xe1dc,0xe1dd,0xe1de,0xe1df,0xe1e0,0xe1e1,
	0xe1e2,0xe1e3,0xe1e4,0xe1e5,0xe1e6,0xe1e7,0xe1e8,0xe1e9,0xe1ea,0xe1eb,0xe1ec,0xe1ed,0xe1ee,0xe1ef,0xe1f0,0xe1f1,
	0xe1f2,0xe1f3,0xe1f4,0xe1f5,0xe1f6,0xe1f7,0xe1f8,0xe1f9,0xe1fa,0xe1fb,0xe1fc,0xe1fd,0xe1fe,0xe1ff,0xe200,0xe201,
	0xe202,0xe203,0xe204,0xe205,0xe206,0xe207,0xe208,0xe209,0xe20a,0xe20b,0xe20c,0xe20d,0xe20e,0xe20f,0xe210,0xe211

相关文章