summaryrefslogtreecommitdiff
path: root/console-client/xkb/ks_tables.h
blob: f1edbc5326f848512f36720437bbd64fcb98c928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
/* This file is generated from keysymdef.h. */
/* Do not edit. */

#ifdef NEEDKTABLE
const unsigned char _XkeyTable[] = {
0,
0x80, 0xaa, 0x00, 0x00, 'V','o','i','d','S','y','m','b','o','l',0,
0xa3, 0xff, 0xff, 0x08, 'B','a','c','k','S','p','a','c','e',0,
0x02, 0x74, 0xff, 0x09, 'T','a','b',0,
0x5a, 0x42, 0xff, 0x0a, 'L','i','n','e','f','e','e','d',0,
0x0a, 0x58, 0xff, 0x0b, 'C','l','e','a','r',0,
0x17, 0x56, 0xff, 0x0d, 'R','e','t','u','r','n',0,
0x0b, 0x27, 0xff, 0x13, 'P','a','u','s','e',0,
0xef, 0x3d, 0xff, 0x14, 'S','c','r','o','l','l','_','L','o','c','k',0,
0x30, 0x8b, 0xff, 0x15, 'S','y','s','_','R','e','q',0,
0x15, 0xb1, 0xff, 0x1b, 'E','s','c','a','p','e',0,
0x15, 0x11, 0xff, 0xff, 'D','e','l','e','t','e',0,
0xbd, 0x77, 0xff, 0x20, 'M','u','l','t','i','_','k','e','y',0,
0xad, 0x3e, 0xff, 0x37, 'C','o','d','e','i','n','p','u','t',0,
0x1a, 0x01, 0xff, 0x3c, 'S','i','n','g','l','e','C','a','n','d','i','d','a','t','e',0,
0x32, 0x01, 0xff, 0x3d, 'M','u','l','t','i','p','l','e','C','a','n','d','i','d','a','t','e',0,
0x6a, 0x01, 0xff, 0x3e, 'P','r','e','v','i','o','u','s','C','a','n','d','i','d','a','t','e',0,
0x0a, 0xad, 0xff, 0x21, 'K','a','n','j','i',0,
0x5d, 0x5c, 0xff, 0x22, 'M','u','h','e','n','k','a','n',0,
0xbe, 0xc1, 0xff, 0x23, 'H','e','n','k','a','n','_','M','o','d','e',0,
0x15, 0x9c, 0xff, 0x23, 'H','e','n','k','a','n',0,
0x17, 0x59, 0xff, 0x24, 'R','o','m','a','j','i',0,
0x58, 0x89, 0xff, 0x25, 'H','i','r','a','g','a','n','a',0,
0x58, 0x69, 0xff, 0x26, 'K','a','t','a','k','a','n','a',0,
0xc9, 0x69, 0xff, 0x27, 'H','i','r','a','g','a','n','a','_','K','a','t','a','k','a','n','a',0,
0x30, 0x27, 0xff, 0x28, 'Z','e','n','k','a','k','u',0,
0x2b, 0x27, 0xff, 0x29, 'H','a','n','k','a','k','u',0,
0x81, 0xa7, 0xff, 0x2a, 'Z','e','n','k','a','k','u','_','H','a','n','k','a','k','u',0,
0x30, 0xc7, 0xff, 0x2b, 'T','o','u','r','o','k','u',0,
0x16, 0x75, 0xff, 0x2c, 'M','a','s','s','y','o',0,
0xae, 0x5d, 0xff, 0x2d, 'K','a','n','a','_','L','o','c','k',0,
0x5d, 0x74, 0xff, 0x2e, 'K','a','n','a','_','S','h','i','f','t',0,
0x60, 0xf4, 0xff, 0x2f, 'E','i','s','u','_','S','h','i','f','t',0,
0xc6, 0xc1, 0xff, 0x30, 'E','i','s','u','_','t','o','g','g','l','e',0,
0x82, 0xef, 0xff, 0x37, 'K','a','n','j','i','_','B','a','n','g','o','u',0,
0x5f, 0x43, 0xff, 0x3d, 'Z','e','n','_','K','o','h','o',0,
0x56, 0xa3, 0xff, 0x3e, 'M','a','e','_','K','o','h','o',0,
0x05, 0x3b, 0xff, 0x50, 'H','o','m','e',0,
0x05, 0x34, 0xff, 0x51, 'L','e','f','t',0,
0x01, 0x1a, 0xff, 0x52, 'U','p',0,
0x0b, 0x48, 0xff, 0x53, 'R','i','g','h','t',0,
0x05, 0x38, 0xff, 0x54, 'D','o','w','n',0,
0x0b, 0x84, 0xff, 0x55, 'P','r','i','o','r',0,
0x2c, 0x4e, 0xff, 0x55, 'P','a','g','e','_','U','p',0,
0x05, 0x68, 0xff, 0x56, 'N','e','x','t',0,
0xb2, 0x08, 0xff, 0x56, 'P','a','g','e','_','D','o','w','n',0,
0x02, 0x54, 0xff, 0x57, 'E','n','d',0,
0x0a, 0x24, 0xff, 0x58, 'B','e','g','i','n',0,
0x16, 0xde, 0xff, 0x60, 'S','e','l','e','c','t',0,
0x0b, 0x84, 0xff, 0x61, 'P','r','i','n','t',0,
0x2c, 0xc9, 0xff, 0x62, 'E','x','e','c','u','t','e',0,
0x16, 0x84, 0xff, 0x63, 'I','n','s','e','r','t',0,
0x05, 0x97, 0xff, 0x65, 'U','n','d','o',0,
0x05, 0x5b, 0xff, 0x66, 'R','e','d','o',0,
0x05, 0x4d, 0xff, 0x67, 'M','e','n','u',0,
0x05, 0x14, 0xff, 0x68, 'F','i','n','d',0,
0x14, 0xa2, 0xff, 0x69, 'C','a','n','c','e','l',0,
0x05, 0x1c, 0xff, 0x6a, 'H','e','l','p',0,
0x0a, 0x71, 0xff, 0x6b, 'B','r','e','a','k',0,
0xdc, 0x56, 0xff, 0x7e, 'M','o','d','e','_','s','w','i','t','c','h',0,
0xbf, 0xd6, 0xff, 0x7e, 's','c','r','i','p','t','_','s','w','i','t','c','h',0,
0x5d, 0x1d, 0xff, 0x7f, 'N','u','m','_','L','o','c','k',0,
0x50, 0xbf, 0xff, 0x80, 'K','P','_','S','p','a','c','e',0,
0x13, 0xcc, 0xff, 0x89, 'K','P','_','T','a','b',0,
0x50, 0x2c, 0xff, 0x8d, 'K','P','_','E','n','t','e','r',0,
0x09, 0x69, 0xff, 0x91, 'K','P','_','F','1',0,
0x09, 0x6a, 0xff, 0x92, 'K','P','_','F','2',0,
0x09, 0x6b, 0xff, 0x93, 'K','P','_','F','3',0,
0x09, 0x6c, 0xff, 0x94, 'K','P','_','F','4',0,
0x27, 0xeb, 0xff, 0x95, 'K','P','_','H','o','m','e',0,
0x27, 0xe4, 0xff, 0x96, 'K','P','_','L','e','f','t',0,
0x09, 0xc6, 0xff, 0x97, 'K','P','_','U','p',0,
0x50, 0xa8, 0xff, 0x98, 'K','P','_','R','i','g','h','t',0,
0x27, 0xe8, 0xff, 0x99, 'K','P','_','D','o','w','n',0,
0x50, 0xe4, 0xff, 0x9a, 'K','P','_','P','r','i','o','r',0,
0x41, 0xce, 0xff, 0x9a, 'K','P','_','P','a','g','e','_','U','p',0,
0x28, 0x18, 0xff, 0x9b, 'K','P','_','N','e','x','t',0,
0x08, 0x08, 0xff, 0x9b, 'K','P','_','P','a','g','e','_','D','o','w','n',0,
0x13, 0xac, 0xff, 0x9c, 'K','P','_','E','n','d',0,
0x4f, 0x84, 0xff, 0x9d, 'K','P','_','B','e','g','i','n',0,
0xa1, 0x44, 0xff, 0x9e, 'K','P','_','I','n','s','e','r','t',0,
0x9f, 0xd1, 0xff, 0x9f, 'K','P','_','D','e','l','e','t','e',0,
0x50, 0x3a, 0xff, 0xbd, 'K','P','_','E','q','u','a','l',0,
0x89, 0xd9, 0xff, 0xaa, 'K','P','_','M','u','l','t','i','p','l','y',0,
0x13, 0x88, 0xff, 0xab, 'K','P','_','A','d','d',0,
0x10, 0xe8, 0xff, 0xac, 'K','P','_','S','e','p','a','r','a','t','o','r',0,
0x8b, 0x8e, 0xff, 0xad, 'K','P','_','S','u','b','t','r','a','c','t',0,
0x3f, 0x7a, 0xff, 0xae, 'K','P','_','D','e','c','i','m','a','l',0,
0xa0, 0x51, 0xff, 0xaf, 'K','P','_','D','i','v','i','d','e',0,
0x04, 0x86, 0xff, 0xb0, 'K','P','_','0',0,
0x04, 0x87, 0xff, 0xb1, 'K','P','_','1',0,
0x04, 0x88, 0xff, 0xb2, 'K','P','_','2',0,
0x04, 0x89, 0xff, 0xb3, 'K','P','_','3',0,
0x04, 0x8a, 0xff, 0xb4, 'K','P','_','4',0,
0x04, 0x8b, 0xff, 0xb5, 'K','P','_','5',0,
0x04, 0x8c, 0xff, 0xb6, 'K','P','_','6',0,
0x04, 0x8d, 0xff, 0xb7, 'K','P','_','7',0,
0x04, 0x8e, 0xff, 0xb8, 'K','P','_','8',0,
0x04, 0x8f, 0xff, 0xb9, 'K','P','_','9',0,
0x00, 0xbd, 0xff, 0xbe, 'F','1',0,
0x00, 0xbe, 0xff, 0xbf, 'F','2',0,
0x00, 0xbf, 0xff, 0xc0, 'F','3',0,
0x00, 0xc0, 0xff, 0xc1, 'F','4',0,
0x00, 0xc1, 0xff, 0xc2, 'F','5',0,
0x00, 0xc2, 0xff, 0xc3, 'F','6',0,
0x00, 0xc3, 0xff, 0xc4, 'F','7',0,
0x00, 0xc4, 0xff, 0xc5, 'F','8',0,
0x00, 0xc5, 0xff, 0xc6, 'F','9',0,
0x01, 0xaa, 0xff, 0xc7, 'F','1','0',0,
0x01, 0xab, 0xff, 0xc8, 'F','1','1',0,
0x00, 0xc9, 0xff, 0xc8, 'L','1',0,
0x01, 0xac, 0xff, 0xc9, 'F','1','2',0,
0x00, 0xca, 0xff, 0xc9, 'L','2',0,
0x01, 0xad, 0xff, 0xca, 'F','1','3',0,
0x00, 0xcb, 0xff, 0xca, 'L','3',0,
0x01, 0xae, 0xff, 0xcb, 'F','1','4',0,
0x00, 0xcc, 0xff, 0xcb, 'L','4',0,
0x01, 0xaf, 0xff, 0xcc, 'F','1','5',0,
0x00, 0xcd, 0xff, 0xcc, 'L','5',0,
0x01, 0xb0, 0xff, 0xcd, 'F','1','6',0,
0x00, 0xce, 0xff, 0xcd, 'L','6',0,
0x01, 0xb1, 0xff, 0xce, 'F','1','7',0,
0x00, 0xcf, 0xff, 0xce, 'L','7',0,
0x01, 0xb2, 0xff, 0xcf, 'F','1','8',0,
0x00, 0xd0, 0xff, 0xcf, 'L','8',0,
0x01, 0xb3, 0xff, 0xd0, 'F','1','9',0,
0x00, 0xd1, 0xff, 0xd0, 'L','9',0,
0x01, 0xac, 0xff, 0xd1, 'F','2','0',0,
0x01, 0xc2, 0xff, 0xd1, 'L','1','0',0,
0x01, 0xad, 0xff, 0xd2, 'F','2','1',0,
0x00, 0xd5, 0xff, 0xd2, 'R','1',0,
0x01, 0xae, 0xff, 0xd3, 'F','2','2',0,
0x00, 0xd6, 0xff, 0xd3, 'R','2',0,
0x01, 0xaf, 0xff, 0xd4, 'F','2','3',0,
0x00, 0xd7, 0xff, 0xd4, 'R','3',0,
0x01, 0xb0, 0xff, 0xd5, 'F','2','4',0,
0x00, 0xd8, 0xff, 0xd5, 'R','4',0,
0x01, 0xb1, 0xff, 0xd6, 'F','2','5',0,
0x00, 0xd9, 0xff, 0xd6, 'R','5',0,
0x01, 0xb2, 0xff, 0xd7, 'F','2','6',0,
0x00, 0xda, 0xff, 0xd7, 'R','6',0,
0x01, 0xb3, 0xff, 0xd8, 'F','2','7',0,
0x00, 0xdb, 0xff, 0xd8, 'R','7',0,
0x01, 0xb4, 0xff, 0xd9, 'F','2','8',0,
0x00, 0xdc, 0xff, 0xd9, 'R','8',0,
0x01, 0xb5, 0xff, 0xda, 'F','2','9',0,
0x00, 0xdd, 0xff, 0xda, 'R','9',0,
0x01, 0xae, 0xff, 0xdb, 'F','3','0',0,
0x01, 0xda, 0xff, 0xdb, 'R','1','0',0,
0x01, 0xaf, 0xff, 0xdc, 'F','3','1',0,
0x01, 0xdb, 0xff, 0xdc, 'R','1','1',0,
0x01, 0xb0, 0xff, 0xdd, 'F','3','2',0,
0x01, 0xdc, 0xff, 0xdd, 'R','1','2',0,
0x01, 0xb1, 0xff, 0xde, 'F','3','3',0,
0x01, 0xdd, 0xff, 0xde, 'R','1','3',0,
0x01, 0xb2, 0xff, 0xdf, 'F','3','4',0,
0x01, 0xde, 0xff, 0xdf, 'R','1','4',0,
0x01, 0xb3, 0xff, 0xe0, 'F','3','5',0,
0x01, 0xdf, 0xff, 0xe0, 'R','1','5',0,
0x2e, 0x5a, 0xff, 0xe1, 'S','h','i','f','t','_','L',0,
0x2e, 0x60, 0xff, 0xe2, 'S','h','i','f','t','_','R',0,
0xb1, 0xd2, 0xff, 0xe3, 'C','o','n','t','r','o','l','_','L',0,
0xb1, 0xd8, 0xff, 0xe4, 'C','o','n','t','r','o','l','_','R',0,
0xa9, 0x1d, 0xff, 0xe5, 'C','a','p','s','_','L','o','c','k',0,
0x75, 0xbd, 0xff, 0xe6, 'S','h','i','f','t','_','L','o','c','k',0,
0x16, 0x1e, 0xff, 0xe7, 'M','e','t','a','_','L',0,
0x16, 0x24, 0xff, 0xe8, 'M','e','t','a','_','R',0,
0x0a, 0x4a, 0xff, 0xe9, 'A','l','t','_','L',0,
0x0a, 0x50, 0xff, 0xea, 'A','l','t','_','R',0,
0x30, 0x5a, 0xff, 0xeb, 'S','u','p','e','r','_','L',0,
0x30, 0x60, 0xff, 0xec, 'S','u','p','e','r','_','R',0,
0x2e, 0x1a, 0xff, 0xed, 'H','y','p','e','r','_','L',0,
0x2e, 0x20, 0xff, 0xee, 'H','y','p','e','r','_','R',0,
0x4e, 0x5d, 0xfe, 0x01, 'I','S','O','_','L','o','c','k',0,
0xae, 0x26, 0xfe, 0x02, 'I','S','O','_','L','e','v','e','l','2','_','L','a','t','c','h',0,
0xae, 0xf4, 0xfe, 0x03, 'I','S','O','_','L','e','v','e','l','3','_','S','h','i','f','t',0,
0xae, 0x66, 0xfe, 0x04, 'I','S','O','_','L','e','v','e','l','3','_','L','a','t','c','h',0,
0x57, 0x1d, 0xfe, 0x05, 'I','S','O','_','L','e','v','e','l','3','_','L','o','c','k',0,
0x64, 0xb4, 0xff, 0x7e, 'I','S','O','_','G','r','o','u','p','_','S','h','i','f','t',0,
0x64, 0x26, 0xfe, 0x06, 'I','S','O','_','G','r','o','u','p','_','L','a','t','c','h',0,
0xb1, 0xfd, 0xfe, 0x07, 'I','S','O','_','G','r','o','u','p','_','L','o','c','k',0,
0xb4, 0xf6, 0xfe, 0x08, 'I','S','O','_','N','e','x','t','_','G','r','o','u','p',0,
0xa9, 0xfd, 0xfe, 0x09, 'I','S','O','_','N','e','x','t','_','G','r','o','u','p','_','L','o','c','k',0,
0xbc, 0xf6, 0xfe, 0x0a, 'I','S','O','_','P','r','e','v','_','G','r','o','u','p',0,
0xa9, 0xfd, 0xfe, 0x0b, 'I','S','O','_','P','r','e','v','_','G','r','o','u','p','_','L','o','c','k',0,
0x51, 0x76, 0xfe, 0x0c, 'I','S','O','_','F','i','r','s','t','_','G','r','o','u','p',0,
0x39, 0xfd, 0xfe, 0x0d, 'I','S','O','_','F','i','r','s','t','_','G','r','o','u','p','_','L','o','c','k',0,
0xaa, 0x76, 0xfe, 0x0e, 'I','S','O','_','L','a','s','t','_','G','r','o','u','p',0,
0x59, 0xfd, 0xfe, 0x0f, 'I','S','O','_','L','a','s','t','_','G','r','o','u','p','_','L','o','c','k',0,
0xe9, 0xac, 0xfe, 0x20, 'I','S','O','_','L','e','f','t','_','T','a','b',0,
0xe1, 0x3e, 0xfe, 0x21, 'I','S','O','_','M','o','v','e','_','L','i','n','e','_','U','p',0,
0x85, 0xc8, 0xfe, 0x22, 'I','S','O','_','M','o','v','e','_','L','i','n','e','_','D','o','w','n',0,
0x8e, 0x3e, 0xfe, 0x23, 'I','S','O','_','P','a','r','t','i','a','l','_','L','i','n','e','_','U','p',0,
0x39, 0xc8, 0xfe, 0x24, 'I','S','O','_','P','a','r','t','i','a','l','_','L','i','n','e','_','D','o','w','n',0,
0x83, 0x04, 0xfe, 0x25, 'I','S','O','_','P','a','r','t','i','a','l','_','S','p','a','c','e','_','L','e','f','t',0,
0x06, 0xe8, 0xfe, 0x26, 'I','S','O','_','P','a','r','t','i','a','l','_','S','p','a','c','e','_','R','i','g','h','t',0,
0xe6, 0xa4, 0xfe, 0x27, 'I','S','O','_','S','e','t','_','M','a','r','g','i','n','_','L','e','f','t',0,
0xce, 0x28, 0xfe, 0x28, 'I','S','O','_','S','e','t','_','M','a','r','g','i','n','_','R','i','g','h','t',0,
0x36, 0xa4, 0xfe, 0x29, 'I','S','O','_','R','e','l','e','a','s','e','_','M','a','r','g','i','n','_','L','e','f','t',0,
0x6e, 0x28, 0xfe, 0x2a, 'I','S','O','_','R','e','l','e','a','s','e','_','M','a','r','g','i','n','_','R','i','g','h','t',0,
0x48, 0x2b, 0xfe, 0x2b, 'I','S','O','_','R','e','l','e','a','s','e','_','B','o','t','h','_','M','a','r','g','i','n','s',0,
0xae, 0xa4, 0xfe, 0x2c, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','L','e','f','t',0,
0x5e, 0x28, 0xfe, 0x2d, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','R','i','g','h','t',0,
0xeb, 0x76, 0xfe, 0x2e, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','U','p',0,
0xae, 0xa8, 0xfe, 0x2f, 'I','S','O','_','F','a','s','t','_','C','u','r','s','o','r','_','D','o','w','n',0,
0x81, 0x05, 0xfe, 0x30, 'I','S','O','_','C','o','n','t','i','n','u','o','u','s','_','U','n','d','e','r','l','i','n','e',0,
0x81, 0x05, 0xfe, 0x31, 'I','S','O','_','D','i','s','c','o','n','t','i','n','u','o','u','s','_','U','n','d','e','r','l','i','n','e',0,
0xd3, 0x25, 0xfe, 0x32, 'I','S','O','_','E','m','p','h','a','s','i','z','e',0,
0xe3, 0xde, 0xfe, 0x33, 'I','S','O','_','C','e','n','t','e','r','_','O','b','j','e','c','t',0,
0x9c, 0xec, 0xfe, 0x34, 'I','S','O','_','E','n','t','e','r',0,
0x8f, 0x35, 0xfe, 0x50, 'd','e','a','d','_','g','r','a','v','e',0,
0x8e, 0xa9, 0xfe, 0x51, 'd','e','a','d','_','a','c','u','t','e',0,
0xe8, 0x52, 0xfe, 0x52, 'd','e','a','d','_','c','i','r','c','u','m','f','l','e','x',0,
0x8f, 0xc5, 0xfe, 0x53, 'd','e','a','d','_','t','i','l','d','e',0,
0x1e, 0x9c, 0xfe, 0x54, 'd','e','a','d','_','m','a','c','r','o','n',0,
0x8e, 0xf5, 0xfe, 0x55, 'd','e','a','d','_','b','r','e','v','e',0,
0x77, 0x4a, 0xfe, 0x56, 'd','e','a','d','_','a','b','o','v','e','d','o','t',0,
0xf0, 0xb9, 0xfe, 0x57, 'd','e','a','d','_','d','i','a','e','r','e','s','i','s',0,
0xef, 0x47, 0xfe, 0x58, 'd','e','a','d','_','a','b','o','v','e','r','i','n','g',0,
0xdf, 0xe9, 0xfe, 0x59, 'd','e','a','d','_','d','o','u','b','l','e','a','c','u','t','e',0,
0x8e, 0xac, 0xfe, 0x5a, 'd','e','a','d','_','c','a','r','o','n',0,
0x3b, 0x51, 0xfe, 0x5b, 'd','e','a','d','_','c','e','d','i','l','l','a',0,
0x1f, 0x75, 0xfe, 0x5c, 'd','e','a','d','_','o','g','o','n','e','k',0,
0xc7, 0x7d, 0xfe, 0x5d, 'd','e','a','d','_','i','o','t','a',0,
0x36, 0x1c, 0xfe, 0x5e, 'd','e','a','d','_','v','o','i','c','e','d','_','s','o','u','n','d',0,
0xf6, 0x1c, 0xfe, 0x5f, 'd','e','a','d','_','s','e','m','i','v','o','i','c','e','d','_','s','o','u','n','d',0,
0x78, 0x4a, 0xfe, 0x60, 'd','e','a','d','_','b','e','l','o','w','d','o','t',0,
0xc7, 0x75, 0xfe, 0x61, 'd','e','a','d','_','h','o','o','k',0,
0xc7, 0x7e, 0xfe, 0x62, 'd','e','a','d','_','h','o','r','n',0,
0x1f, 0xac, 0xfe, 0xd0, 'F','i','r','s','t','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
0x1f, 0xac, 0xfe, 0xd1, 'P','r','e','v','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
0x1f, 0xac, 0xfe, 0xd2, 'N','e','x','t','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
0x1f, 0xac, 0xfe, 0xd4, 'L','a','s','t','_','V','i','r','t','u','a','l','_','S','c','r','e','e','n',0,
0xe7, 0x94, 0xfe, 0xd5, 'T','e','r','m','i','n','a','t','e','_','S','e','r','v','e','r',0,
0xae, 0x0d, 0xfe, 0x70, 'A','c','c','e','s','s','X','_','E','n','a','b','l','e',0,
0x1f, 0x8d, 0xfe, 0x71, 'A','c','c','e','s','s','X','_','F','e','e','d','b','a','c','k','_','E','n','a','b','l','e',0,
0xa5, 0x8d, 0xfe, 0x72, 'R','e','p','e','a','t','K','e','y','s','_','E','n','a','b','l','e',0,
0xbd, 0x8d, 0xfe, 0x73, 'S','l','o','w','K','e','y','s','_','E','n','a','b','l','e',0,
0xad, 0x8d, 0xfe, 0x74, 'B','o','u','n','c','e','K','e','y','s','_','E','n','a','b','l','e',0,
0xed, 0x8d, 0xfe, 0x75, 'S','t','i','c','k','y','K','e','y','s','_','E','n','a','b','l','e',0,
0x0d, 0x8d, 0xfe, 0x76, 'M','o','u','s','e','K','e','y','s','_','E','n','a','b','l','e',0,
0x32, 0x0d, 0xfe, 0x77, 'M','o','u','s','e','K','e','y','s','_','A','c','c','e','l','_','E','n','a','b','l','e',0,
0x90, 0x8d, 0xfe, 0x78, 'O','v','e','r','l','a','y','1','_','E','n','a','b','l','e',0,
0x91, 0x0d, 0xfe, 0x79, 'O','v','e','r','l','a','y','2','_','E','n','a','b','l','e',0,
0x09, 0x0d, 0xfe, 0x7a, 'A','u','d','i','b','l','e','B','e','l','l','_','E','n','a','b','l','e',0,
0xe8, 0xa4, 0xfe, 0xe0, 'P','o','i','n','t','e','r','_','L','e','f','t',0,
0xd2, 0x28, 0xfe, 0xe1, 'P','o','i','n','t','e','r','_','R','i','g','h','t',0,
0x79, 0xf6, 0xfe, 0xe2, 'P','o','i','n','t','e','r','_','U','p',0,
0xe8, 0xa8, 0xfe, 0xe3, 'P','o','i','n','t','e','r','_','D','o','w','n',0,
0xa4, 0x94, 0xfe, 0xe4, 'P','o','i','n','t','e','r','_','U','p','L','e','f','t',0,
0x4a, 0x08, 0xfe, 0xe5, 'P','o','i','n','t','e','r','_','U','p','R','i','g','h','t',0,
0x8f, 0xb4, 0xfe, 0xe6, 'P','o','i','n','t','e','r','_','D','o','w','n','L','e','f','t',0,
0x20, 0x48, 0xfe, 0xe7, 'P','o','i','n','t','e','r','_','D','o','w','n','R','i','g','h','t',0,
0x8c, 0x74, 0xfe, 0xe8, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','_','D','f','l','t',0,
0x48, 0x49, 0xfe, 0xe9, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','1',0,
0x48, 0x4a, 0xfe, 0xea, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','2',0,
0x48, 0x4b, 0xfe, 0xeb, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','3',0,
0x48, 0x4c, 0xfe, 0xec, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','4',0,
0x48, 0x4d, 0xfe, 0xed, 'P','o','i','n','t','e','r','_','B','u','t','t','o','n','5',0,
0x37, 0x94, 0xfe, 0xee, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','_','D','f','l','t',0,
0x12, 0xfb, 0xfe, 0xef, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','1',0,
0x12, 0xfc, 0xfe, 0xf0, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','2',0,
0x12, 0xfd, 0xfe, 0xf1, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','3',0,
0x12, 0xfe, 0xfe, 0xf2, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','4',0,
0x12, 0xff, 0xfe, 0xf3, 'P','o','i','n','t','e','r','_','D','b','l','C','l','i','c','k','5',0,
0x1b, 0x14, 0xfe, 0xf4, 'P','o','i','n','t','e','r','_','D','r','a','g','_','D','f','l','t',0,
0xd1, 0x33, 0xfe, 0xf5, 'P','o','i','n','t','e','r','_','D','r','a','g','1',0,
0xd1, 0x34, 0xfe, 0xf6, 'P','o','i','n','t','e','r','_','D','r','a','g','2',0,
0xd1, 0x35, 0xfe, 0xf7, 'P','o','i','n','t','e','r','_','D','r','a','g','3',0,
0xd1, 0x36, 0xfe, 0xf8, 'P','o','i','n','t','e','r','_','D','r','a','g','4',0,
0xd1, 0x37, 0xfe, 0xfd, 'P','o','i','n','t','e','r','_','D','r','a','g','5',0,
0x36, 0x21, 0xfe, 0xf9, 'P','o','i','n','t','e','r','_','E','n','a','b','l','e','K','e','y','s',0,
0x25, 0xf1, 0xfe, 0xfa, 'P','o','i','n','t','e','r','_','A','c','c','e','l','e','r','a','t','e',0,
0x65, 0x48, 0xfe, 0xfb, 'P','o','i','n','t','e','r','_','D','f','l','t','B','t','n','N','e','x','t',0,
0x65, 0x68, 0xfe, 0xfc, 'P','o','i','n','t','e','r','_','D','f','l','t','B','t','n','P','r','e','v',0,
0x6a, 0x79, 0xfd, 0x01, '3','2','7','0','_','D','u','p','l','i','c','a','t','e',0,
0x62, 0xbb, 0xfd, 0x02, '3','2','7','0','_','F','i','e','l','d','M','a','r','k',0,
0xad, 0x82, 0xfd, 0x03, '3','2','7','0','_','R','i','g','h','t','2',0,
0xd5, 0xfa, 0xfd, 0x04, '3','2','7','0','_','L','e','f','t','2',0,
0x56, 0x1c, 0xfd, 0x05, '3','2','7','0','_','B','a','c','k','T','a','b',0,
0xb2, 0x70, 0xfd, 0x06, '3','2','7','0','_','E','r','a','s','e','E','O','F',0,
0xcc, 0xfe, 0xfd, 0x07, '3','2','7','0','_','E','r','a','s','e','I','n','p','u','t',0,
0xd6, 0xb2, 0xfd, 0x08, '3','2','7','0','_','R','e','s','e','t',0,
0x6b, 0x52, 0xfd, 0x09, '3','2','7','0','_','Q','u','i','t',0,
0x34, 0xcb, 0xfd, 0x0a, '3','2','7','0','_','P','A','1',0,
0x34, 0xcc, 0xfd, 0x0b, '3','2','7','0','_','P','A','2',0,
0x34, 0xcd, 0xfd, 0x0c, '3','2','7','0','_','P','A','3',0,
0x6b, 0x3e, 0xfd, 0x0d, '3','2','7','0','_','T','e','s','t',0,
0x6a, 0xde, 0xfd, 0x0e, '3','2','7','0','_','A','t','t','n',0,
0xad, 0xeb, 0xfd, 0x0f, '3','2','7','0','_','C','u','r','s','o','r','B','l','i','n','k',0,
0x60, 0x5c, 0xfd, 0x10, '3','2','7','0','_','A','l','t','C','u','r','s','o','r',0,
0xb3, 0x45, 0xfd, 0x11, '3','2','7','0','_','K','e','y','C','l','i','c','k',0,
0x6b, 0x1e, 0xfd, 0x12, '3','2','7','0','_','J','u','m','p',0,
0xd5, 0xf4, 0xfd, 0x13, '3','2','7','0','_','I','d','e','n','t',0,
0x6b, 0x51, 0xfd, 0x14, '3','2','7','0','_','R','u','l','e',0,
0x6a, 0xdd, 0xfd, 0x15, '3','2','7','0','_','C','o','p','y',0,
0x6b, 0x1b, 0xfd, 0x16, '3','2','7','0','_','P','l','a','y',0,
0xd6, 0xe2, 0xfd, 0x17, '3','2','7','0','_','S','e','t','u','p',0,
0xad, 0x6c, 0xfd, 0x18, '3','2','7','0','_','R','e','c','o','r','d',0,
0xfb, 0xac, 0xfd, 0x19, '3','2','7','0','_','C','h','a','n','g','e','S','c','r','e','e','n',0,
0xc2, 0xcc, 0xfd, 0x1a, '3','2','7','0','_','D','e','l','e','t','e','W','o','r','d',0,
0xb2, 0x5e, 0xfd, 0x1b, '3','2','7','0','_','E','x','S','e','l','e','c','t',0,
0x5d, 0xde, 0xfd, 0x1c, '3','2','7','0','_','C','u','r','s','o','r','S','e','l','e','c','t',0,
0xcf, 0xec, 0xfd, 0x1d, '3','2','7','0','_','P','r','i','n','t','S','c','r','e','e','n',0,
0xd6, 0x2c, 0xfd, 0x1e, '3','2','7','0','_','E','n','t','e','r',0,
0x0d, 0x5f, 0x00, 0x20, 's','p','a','c','e',0,
0x1a, 0x17, 0x00, 0x21, 'e','x','c','l','a','m',0,
0x70, 0xc8, 0x00, 0x22, 'q','u','o','t','e','d','b','l',0,
0xba, 0x38, 0x00, 0x23, 'n','u','m','b','e','r','s','i','g','n',0,
0x19, 0xb4, 0x00, 0x24, 'd','o','l','l','a','r',0,
0x35, 0xbc, 0x00, 0x25, 'p','e','r','c','e','n','t',0,
0xcd, 0x9c, 0x00, 0x26, 'a','m','p','e','r','s','a','n','d',0,
0xa2, 0x4d, 0x00, 0x27, 'a','p','o','s','t','r','o','p','h','e',0,
0xc5, 0x68, 0x00, 0x27, 'q','u','o','t','e','r','i','g','h','t',0,
0xd6, 0xb4, 0x00, 0x28, 'p','a','r','e','n','l','e','f','t',0,
0xae, 0x48, 0x00, 0x29, 'p','a','r','e','n','r','i','g','h','t',0,
0x68, 0x95, 0x00, 0x2a, 'a','s','t','e','r','i','s','k',0,
0x06, 0x8d, 0x00, 0x2b, 'p','l','u','s',0,
0x0c, 0x97, 0x00, 0x2c, 'c','o','m','m','a',0,
0x0d, 0x2d, 0x00, 0x2d, 'm','i','n','u','s',0,
0x1a, 0xc6, 0x00, 0x2e, 'p','e','r','i','o','d',0,
0x0d, 0x62, 0x00, 0x2f, 's','l','a','s','h',0,
0x00, 0x30, 0x00, 0x30, '0',0,
0x00, 0x31, 0x00, 0x31, '1',0,
0x00, 0x32, 0x00, 0x32, '2',0,
0x00, 0x33, 0x00, 0x33, '3',0,
0x00, 0x34, 0x00, 0x34, '4',0,
0x00, 0x35, 0x00, 0x35, '5',0,
0x00, 0x36, 0x00, 0x36, '6',0,
0x00, 0x37, 0x00, 0x37, '7',0,
0x00, 0x38, 0x00, 0x38, '8',0,
0x00, 0x39, 0x00, 0x39, '9',0,
0x0c, 0xa4, 0x00, 0x3a, 'c','o','l','o','n',0,
0xda, 0x84, 0x00, 0x3b, 's','e','m','i','c','o','l','o','n',0,
0x06, 0x4d, 0x00, 0x3c, 'l','e','s','s',0,
0x0c, 0xda, 0x00, 0x3d, 'e','q','u','a','l',0,
0x34, 0x64, 0x00, 0x3e, 'g','r','e','a','t','e','r',0,
0x70, 0x20, 0x00, 0x3f, 'q','u','e','s','t','i','o','n',0,
0x01, 0x36, 0x00, 0x40, 'a','t',0,
0x00, 0x41, 0x00, 0x41, 'A',0,
0x00, 0x42, 0x00, 0x42, 'B',0,
0x00, 0x43, 0x00, 0x43, 'C',0,
0x00, 0x44, 0x00, 0x44, 'D',0,
0x00, 0x45, 0x00, 0x45, 'E',0,
0x00, 0x46, 0x00, 0x46, 'F',0,
0x00, 0x47, 0x00, 0x47, 'G',0,
0x00, 0x48, 0x00, 0x48, 'H',0,
0x00, 0x49, 0x00, 0x49, 'I',0,
0x00, 0x4a, 0x00, 0x4a, 'J',0,
0x00, 0x4b, 0x00, 0x4b, 'K',0,
0x00, 0x4c, 0x00, 0x4c, 'L',0,
0x00, 0x4d, 0x00, 0x4d, 'M',0,
0x00, 0x4e, 0x00, 0x4e, 'N',0,
0x00, 0x4f, 0x00, 0x4f, 'O',0,
0x00, 0x50, 0x00, 0x50, 'P',0,
0x00, 0x51, 0x00, 0x51, 'Q',0,
0x00, 0x52, 0x00, 0x52, 'R',0,
0x00, 0x53, 0x00, 0x53, 'S',0,
0x00, 0x54, 0x00, 0x54, 'T',0,
0x00, 0x55, 0x00, 0x55, 'U',0,
0x00, 0x56, 0x00, 0x56, 'V',0,
0x00, 0x57, 0x00, 0x57, 'W',0,
0x00, 0x58, 0x00, 0x58, 'X',0,
0x00, 0x59, 0x00, 0x59, 'Y',0,
0x00, 0x5a, 0x00, 0x5a, 'Z',0,
0x33, 0x54, 0x00, 0x5b, 'b','r','a','c','k','e','t','l','e','f','t',0,
0xc6, 0x02, 0x00, 0x5c, 'b','a','c','k','s','l','a','s','h',0,
0x67, 0x88, 0x00, 0x5d, 'b','r','a','c','k','e','t','r','i','g','h','t',0,
0x35, 0x23, 0x00, 0x5e, 'a','s','c','i','i','c','i','r','c','u','m',0,
0xbe, 0xcd, 0x00, 0x5f, 'u','n','d','e','r','s','c','o','r','e',0,
0x0c, 0xd5, 0x00, 0x60, 'g','r','a','v','e',0,
0xe2, 0x44, 0x00, 0x60, 'q','u','o','t','e','l','e','f','t',0,
0x00, 0x61, 0x00, 0x61, 'a',0,
0x00, 0x62, 0x00, 0x62, 'b',0,
0x00, 0x63, 0x00, 0x63, 'c',0,
0x00, 0x64, 0x00, 0x64, 'd',0,
0x00, 0x65, 0x00, 0x65, 'e',0,
0x00, 0x66, 0x00, 0x66, 'f',0,
0x00, 0x67, 0x00, 0x67, 'g',0,
0x00, 0x68, 0x00, 0x68, 'h',0,
0x00, 0x69, 0x00, 0x69, 'i',0,
0x00, 0x6a, 0x00, 0x6a, 'j',0,
0x00, 0x6b, 0x00, 0x6b, 'k',0,
0x00, 0x6c, 0x00, 0x6c, 'l',0,
0x00, 0x6d, 0x00, 0x6d, 'm',0,
0x00, 0x6e, 0x00, 0x6e, 'n',0,
0x00, 0x6f, 0x00, 0x6f, 'o',0,
0x00, 0x70, 0x00, 0x70, 'p',0,
0x00, 0x71, 0x00, 0x71, 'q',0,
0x00, 0x72, 0x00, 0x72, 'r',0,
0x00, 0x73, 0x00, 0x73, 's',0,
0x00, 0x74, 0x00, 0x74, 't',0,
0x00, 0x75, 0x00, 0x75, 'u',0,
0x00, 0x76, 0x00, 0x76, 'v',0,
0x00, 0x77, 0x00, 0x77, 'w',0,
0x00, 0x78, 0x00, 0x78, 'x',0,
0x00, 0x79, 0x00, 0x79, 'y',0,
0x00, 0x7a, 0x00, 0x7a, 'z',0,
0xcc, 0x24, 0x00, 0x7b, 'b','r','a','c','e','l','e','f','t',0,
0x02, 0xbc, 0x00, 0x7c, 'b','a','r',0,
0x99, 0x28, 0x00, 0x7d, 'b','r','a','c','e','r','i','g','h','t',0,
0x9b, 0x45, 0x00, 0x7e, 'a','s','c','i','i','t','i','l','d','e',0,
0xc7, 0x7f, 0x00, 0xa0, 'n','o','b','r','e','a','k','s','p','a','c','e',0,
0xa7, 0xa8, 0x00, 0xa1, 'e','x','c','l','a','m','d','o','w','n',0,
0x05, 0xfc, 0x00, 0xa2, 'c','e','n','t',0,
0x70, 0x87, 0x00, 0xa3, 's','t','e','r','l','i','n','g',0,
0x6a, 0x3f, 0x00, 0xa4, 'c','u','r','r','e','n','c','y',0,
0x03, 0x1c, 0x00, 0xa5, 'y','e','n',0,
0xd0, 0x9c, 0x00, 0xa6, 'b','r','o','k','e','n','b','a','r',0,
0x36, 0x20, 0x00, 0xa7, 's','e','c','t','i','o','n',0,
0xca, 0xb9, 0x00, 0xa8, 'd','i','a','e','r','e','s','i','s',0,
0xd2, 0xe8, 0x00, 0xa9, 'c','o','p','y','r','i','g','h','t',0,
0x6a, 0xc5, 0x00, 0xaa, 'o','r','d','f','e','m','i','n','i','n','e',0,
0x69, 0x14, 0x00, 0xab, 'g','u','i','l','l','e','m','o','t','l','e','f','t',0,
0x37, 0x18, 0x00, 0xac, 'n','o','t','s','i','g','n',0,
0x1a, 0xe8, 0x00, 0xad, 'h','y','p','h','e','n',0,
0xb2, 0x7e, 0x00, 0xae, 'r','e','g','i','s','t','e','r','e','d',0,
0x19, 0xdc, 0x00, 0xaf, 'm','a','c','r','o','n',0,
0x18, 0xff, 0x00, 0xb0, 'd','e','g','r','e','e',0,
0xde, 0xcd, 0x00, 0xb1, 'p','l','u','s','m','i','n','u','s',0,
0x9e, 0x94, 0x00, 0xb2, 't','w','o','s','u','p','e','r','i','o','r',0,
0xe8, 0x94, 0x00, 0xb3, 't','h','r','e','e','s','u','p','e','r','i','o','r',0,
0x0c, 0x49, 0x00, 0xb4, 'a','c','u','t','e',0,
0x01, 0x4f, 0x00, 0xb5, 'm','u',0,
0xd5, 0xec, 0x00, 0xb6, 'p','a','r','a','g','r','a','p','h',0,
0x2b, 0xde, 0x00, 0xb7, 'p','e','r','i','o','d','c','e','n','t','e','r','e','d',0,
0x31, 0xd1, 0x00, 0xb8, 'c','e','d','i','l','l','a',0,
0x6e, 0x94, 0x00, 0xb9, 'o','n','e','s','u','p','e','r','i','o','r',0,
0xd4, 0x35, 0x00, 0xba, 'm','a','s','c','u','l','i','n','e',0,
0xd3, 0x08, 0x00, 0xbb, 'g','u','i','l','l','e','m','o','t','r','i','g','h','t',0,
0xb6, 0x0c, 0x00, 0xbc, 'o','n','e','q','u','a','r','t','e','r',0,
0x35, 0xd2, 0x00, 0xbd, 'o','n','e','h','a','l','f',0,
0xe6, 0x8b, 0x00, 0xbe, 't','h','r','e','e','q','u','a','r','t','e','r','s',0,
0x08, 0x38, 0x00, 0xbf, 'q','u','e','s','t','i','o','n','d','o','w','n',0,
0x14, 0xf5, 0x00, 0xc0, 'A','g','r','a','v','e',0,
0x14, 0x69, 0x00, 0xc1, 'A','a','c','u','t','e',0,
0xa0, 0x52, 0x00, 0xc2, 'A','c','i','r','c','u','m','f','l','e','x',0,
0x15, 0x85, 0x00, 0xc3, 'A','t','i','l','d','e',0,
0x4c, 0xb9, 0x00, 0xc4, 'A','d','i','a','e','r','e','s','i','s',0,
0x0a, 0x87, 0x00, 0xc5, 'A','r','i','n','g',0,
0x00, 0xc7, 0x00, 0xc6, 'A','E',0,
0x53, 0x51, 0x00, 0xc7, 'C','c','e','d','i','l','l','a',0,
0x15, 0x75, 0x00, 0xc8, 'E','g','r','a','v','e',0,
0x14, 0xe9, 0x00, 0xc9, 'E','a','c','u','t','e',0,
0xb0, 0x52, 0x00, 0xca, 'E','c','i','r','c','u','m','f','l','e','x',0,
0x54, 0xb9, 0x00, 0xcb, 'E','d','i','a','e','r','e','s','i','s',0,
0x15, 0xf5, 0x00, 0xcc, 'I','g','r','a','v','e',0,
0x15, 0x69, 0x00, 0xcd, 'I','a','c','u','t','e',0,
0xc0, 0x52, 0x00, 0xce, 'I','c','i','r','c','u','m','f','l','e','x',0,
0x5c, 0xb9, 0x00, 0xcf, 'I','d','i','a','e','r','e','s','i','s',0,
0x02, 0x04, 0x00, 0xd0, 'E','T','H',0,
0x02, 0x64, 0x00, 0xd0, 'E','t','h',0,
0x17, 0x25, 0x00, 0xd1, 'N','t','i','l','d','e',0,
0x16, 0xb5, 0x00, 0xd2, 'O','g','r','a','v','e',0,
0x16, 0x29, 0x00, 0xd3, 'O','a','c','u','t','e',0,
0xd8, 0x52, 0x00, 0xd4, 'O','c','i','r','c','u','m','f','l','e','x',0,
0x17, 0x45, 0x00, 0xd5, 'O','t','i','l','d','e',0,
0x68, 0xb9, 0x00, 0xd6, 'O','d','i','a','e','r','e','s','i','s',0,
0x6e, 0xd9, 0x00, 0xd7, 'm','u','l','t','i','p','l','y',0,
0x5c, 0x9b, 0x00, 0xd8, 'O','o','b','l','i','q','u','e',0,
0x17, 0x75, 0x00, 0xd9, 'U','g','r','a','v','e',0,
0x16, 0xe9, 0x00, 0xda, 'U','a','c','u','t','e',0,
0xf0, 0x52, 0x00, 0xdb, 'U','c','i','r','c','u','m','f','l','e','x',0,
0x74, 0xb9, 0x00, 0xdc, 'U','d','i','a','e','r','e','s','i','s',0,
0x17, 0x69, 0x00, 0xdd, 'Y','a','c','u','t','e',0,
0x09, 0xae, 0x00, 0xde, 'T','H','O','R','N',0,
0x0b, 0x8e, 0x00, 0xde, 'T','h','o','r','n',0,
0x1b, 0xa8, 0x00, 0xdf, 's','s','h','a','r','p',0,
0x18, 0xf5, 0x00, 0xe0, 'a','g','r','a','v','e',0,
0x18, 0x69, 0x00, 0xe1, 'a','a','c','u','t','e',0,
0x20, 0x52, 0x00, 0xe2, 'a','c','i','r','c','u','m','f','l','e','x',0,
0x19, 0x85, 0x00, 0xe3, 'a','t','i','l','d','e',0,
0x8c, 0xb9, 0x00, 0xe4, 'a','d','i','a','e','r','e','s','i','s',0,
0x0c, 0x87, 0x00, 0xe5, 'a','r','i','n','g',0,
0x01, 0x27, 0x00, 0xe6, 'a','e',0,
0x63, 0x51, 0x00, 0xe7, 'c','c','e','d','i','l','l','a',0,
0x19, 0x75, 0x00, 0xe8, 'e','g','r','a','v','e',0,
0x18, 0xe9, 0x00, 0xe9, 'e','a','c','u','t','e',0,
0x30, 0x52, 0x00, 0xea, 'e','c','i','r','c','u','m','f','l','e','x',0,
0x94, 0xb9, 0x00, 0xeb, 'e','d','i','a','e','r','e','s','i','s',0,
0x19, 0xf5, 0x00, 0xec, 'i','g','r','a','v','e',0,
0x19, 0x69, 0x00, 0xed, 'i','a','c','u','t','e',0,
0x40, 0x52, 0x00, 0xee, 'i','c','i','r','c','u','m','f','l','e','x',0,
0x9c, 0xb9, 0x00, 0xef, 'i','d','i','a','e','r','e','s','i','s',0,
0x02, 0xe4, 0x00, 0xf0, 'e','t','h',0,
0x1b, 0x25, 0x00, 0xf1, 'n','t','i','l','d','e',0,
0x1a, 0xb5, 0x00, 0xf2, 'o','g','r','a','v','e',0,
0x1a, 0x29, 0x00, 0xf3, 'o','a','c','u','t','e',0,
0x58, 0x52, 0x00, 0xf4, 'o','c','i','r','c','u','m','f','l','e','x',0,
0x1b, 0x45, 0x00, 0xf5, 'o','t','i','l','d','e',0,
0xa8, 0xb9, 0x00, 0xf6, 'o','d','i','a','e','r','e','s','i','s',0,
0x68, 0x18, 0x00, 0xf7, 'd','i','v','i','s','i','o','n',0,
0x1b, 0x42, 0x00, 0xf8, 'o','s','l','a','s','h',0,
0x1b, 0x75, 0x00, 0xf9, 'u','g','r','a','v','e',0,
0x1a, 0xe9, 0x00, 0xfa, 'u','a','c','u','t','e',0,
0x70, 0x52, 0x00, 0xfb, 'u','c','i','r','c','u','m','f','l','e','x',0,
0xb4, 0xb9, 0x00, 0xfc, 'u','d','i','a','e','r','e','s','i','s',0,
0x1b, 0x69, 0x00, 0xfd, 'y','a','c','u','t','e',0,
0x0d, 0x8e, 0x00, 0xfe, 't','h','o','r','n',0,
0xbc, 0xb9, 0x00, 0xff, 'y','d','i','a','e','r','e','s','i','s',0,
0x2a, 0xf5, 0x01, 0xa1, 'A','o','g','o','n','e','k',0,
0x0c, 0x95, 0x01, 0xa2, 'b','r','e','v','e',0,
0x2f, 0x27, 0x01, 0xa3, 'L','s','t','r','o','k','e',0,
0x15, 0xcc, 0x01, 0xa5, 'L','c','a','r','o','n',0,
0x16, 0xa9, 0x01, 0xa6, 'S','a','c','u','t','e',0,
0x16, 0xac, 0x01, 0xa9, 'S','c','a','r','o','n',0,
0x5b, 0x51, 0x01, 0xaa, 'S','c','e','d','i','l','l','a',0,
0x16, 0xcc, 0x01, 0xab, 'T','c','a','r','o','n',0,
0x17, 0x89, 0x01, 0xac, 'Z','a','c','u','t','e',0,
0x17, 0x8c, 0x01, 0xae, 'Z','c','a','r','o','n',0,
0xbe, 0x4a, 0x01, 0xaf, 'Z','a','b','o','v','e','d','o','t',0,
0x32, 0xf5, 0x01, 0xb1, 'a','o','g','o','n','e','k',0,
0x1a, 0xb5, 0x01, 0xb2, 'o','g','o','n','e','k',0,
0x37, 0x27, 0x01, 0xb3, 'l','s','t','r','o','k','e',0,
0x19, 0xcc, 0x01, 0xb5, 'l','c','a','r','o','n',0,
0x1a, 0xa9, 0x01, 0xb6, 's','a','c','u','t','e',0,
0x0c, 0x4c, 0x01, 0xb7, 'c','a','r','o','n',0,
0x1a, 0xac, 0x01, 0xb9, 's','c','a','r','o','n',0,
0x6b, 0x51, 0x01, 0xba, 's','c','e','d','i','l','l','a',0,
0x1a, 0xcc, 0x01, 0xbb, 't','c','a','r','o','n',0,
0x1b, 0x89, 0x01, 0xbc, 'z','a','c','u','t','e',0,
0x47, 0xe9, 0x01, 0xbd, 'd','o','u','b','l','e','a','c','u','t','e',0,
0x1b, 0x8c, 0x01, 0xbe, 'z','c','a','r','o','n',0,
0xde, 0x4a, 0x01, 0xbf, 'z','a','b','o','v','e','d','o','t',0,
0x16, 0x89, 0x01, 0xc0, 'R','a','c','u','t','e',0,
0x14, 0xb5, 0x01, 0xc3, 'A','b','r','e','v','e',0,
0x15, 0xc9, 0x01, 0xc5, 'L','a','c','u','t','e',0,
0x14, 0xa9, 0x01, 0xc6, 'C','a','c','u','t','e',0,
0x14, 0xac, 0x01, 0xc8, 'C','c','a','r','o','n',0,
0x2b, 0xf5, 0x01, 0xca, 'E','o','g','o','n','e','k',0,
0x14, 0xec, 0x01, 0xcc, 'E','c','a','r','o','n',0,
0x14, 0xcc, 0x01, 0xcf, 'D','c','a','r','o','n',0,
0x2d, 0x27, 0x01, 0xd0, 'D','s','t','r','o','k','e',0,
0x16, 0x09, 0x01, 0xd1, 'N','a','c','u','t','e',0,
0x16, 0x0c, 0x01, 0xd2, 'N','c','a','r','o','n',0,
0xbf, 0xe9, 0x01, 0xd5, 'O','d','o','u','b','l','e','a','c','u','t','e',0,
0x16, 0x8c, 0x01, 0xd8, 'R','c','a','r','o','n',0,
0x0b, 0xc7, 0x01, 0xd9, 'U','r','i','n','g',0,
0xef, 0xe9, 0x01, 0xdb, 'U','d','o','u','b','l','e','a','c','u','t','e',0,
0x5b, 0xd1, 0x01, 0xde, 'T','c','e','d','i','l','l','a',0,
0x1a, 0x89, 0x01, 0xe0, 'r','a','c','u','t','e',0,
0x18, 0xb5, 0x01, 0xe3, 'a','b','r','e','v','e',0,
0x19, 0xc9, 0x01, 0xe5, 'l','a','c','u','t','e',0,
0x18, 0xa9, 0x01, 0xe6, 'c','a','c','u','t','e',0,
0x18, 0xac, 0x01, 0xe8, 'c','c','a','r','o','n',0,
0x33, 0xf5, 0x01, 0xea, 'e','o','g','o','n','e','k',0,
0x18, 0xec, 0x01, 0xec, 'e','c','a','r','o','n',0,
0x18, 0xcc, 0x01, 0xef, 'd','c','a','r','o','n',0,
0x35, 0x27, 0x01, 0xf0, 'd','s','t','r','o','k','e',0,
0x1a, 0x09, 0x01, 0xf1, 'n','a','c','u','t','e',0,
0x1a, 0x0c, 0x01, 0xf2, 'n','c','a','r','o','n',0,
0xbf, 0xe9, 0x01, 0xf5, 'o','d','o','u','b','l','e','a','c','u','t','e',0,
0xef, 0xe9, 0x01, 0xfb, 'u','d','o','u','b','l','e','a','c','u','t','e',0,
0x1a, 0x8c, 0x01, 0xf8, 'r','c','a','r','o','n',0,
0x0d, 0xc7, 0x01, 0xf9, 'u','r','i','n','g',0,
0x6b, 0xd1, 0x01, 0xfe, 't','c','e','d','i','l','l','a',0,
0x64, 0x4a, 0x01, 0xff, 'a','b','o','v','e','d','o','t',0,
0x2e, 0x27, 0x02, 0xa1, 'H','s','t','r','o','k','e',0,
0xbc, 0x52, 0x02, 0xa6, 'H','c','i','r','c','u','m','f','l','e','x',0,
0xad, 0x4a, 0x02, 0xa9, 'I','a','b','o','v','e','d','o','t',0,
0x15, 0x75, 0x02, 0xab, 'G','b','r','e','v','e',0,
0xc4, 0x52, 0x02, 0xac, 'J','c','i','r','c','u','m','f','l','e','x',0,
0x36, 0x27, 0x02, 0xb1, 'h','s','t','r','o','k','e',0,
0x3c, 0x52, 0x02, 0xb6, 'h','c','i','r','c','u','m','f','l','e','x',0,
0x68, 0xed, 0x02, 0xb9, 'i','d','o','t','l','e','s','s',0,
0x19, 0x75, 0x02, 0xbb, 'g','b','r','e','v','e',0,
0x44, 0x52, 0x02, 0xbc, 'j','c','i','r','c','u','m','f','l','e','x',0,
0xa7, 0x4a, 0x02, 0xc5, 'C','a','b','o','v','e','d','o','t',0,
0xa8, 0x52, 0x02, 0xc6, 'C','c','i','r','c','u','m','f','l','e','x',0,
0xab, 0x4a, 0x02, 0xd5, 'G','a','b','o','v','e','d','o','t',0,
0xb8, 0x52, 0x02, 0xd8, 'G','c','i','r','c','u','m','f','l','e','x',0,
0x17, 0x35, 0x02, 0xdd, 'U','b','r','e','v','e',0,
0xe8, 0x52, 0x02, 0xde, 'S','c','i','r','c','u','m','f','l','e','x',0,
0xc7, 0x4a, 0x02, 0xe5, 'c','a','b','o','v','e','d','o','t',0,
0x28, 0x52, 0x02, 0xe6, 'c','c','i','r','c','u','m','f','l','e','x',0,
0xcb, 0x4a, 0x02, 0xf5, 'g','a','b','o','v','e','d','o','t',0,
0x38, 0x52, 0x02, 0xf8, 'g','c','i','r','c','u','m','f','l','e','x',0,
0x1b, 0x35, 0x02, 0xfd, 'u','b','r','e','v','e',0,
0x68, 0x52, 0x02, 0xfe, 's','c','i','r','c','u','m','f','l','e','x',0,
0x02, 0xf1, 0x03, 0xa2, 'k','r','a',0,
0x0c, 0xb9, 0x03, 0xa2, 'k','a','p','p','a',0,
0x5a, 0xd1, 0x03, 0xa3, 'R','c','e','d','i','l','l','a',0,
0x16, 0x85, 0x03, 0xa5, 'I','t','i','l','d','e',0,
0x57, 0xd1, 0x03, 0xa6, 'L','c','e','d','i','l','l','a',0,
0x2b, 0x1c, 0x03, 0xaa, 'E','m','a','c','r','o','n',0,
0x55, 0x51, 0x03, 0xab, 'G','c','e','d','i','l','l','a',0,
0x17, 0xe2, 0x03, 0xac, 'T','s','l','a','s','h',0,
0x6a, 0xd1, 0x03, 0xb3, 'r','c','e','d','i','l','l','a',0,
0x1a, 0x85, 0x03, 0xb5, 'i','t','i','l','d','e',0,
0x67, 0xd1, 0x03, 0xb6, 'l','c','e','d','i','l','l','a',0,
0x33, 0x1c, 0x03, 0xba, 'e','m','a','c','r','o','n',0,
0x65, 0x51, 0x03, 0xbb, 'g','c','e','d','i','l','l','a',0,
0x1b, 0xe2, 0x03, 0xbc, 't','s','l','a','s','h',0,
0x01, 0xf7, 0x03, 0xbd, 'E','N','G',0,
0x02, 0xd7, 0x03, 0xbf, 'e','n','g',0,
0x2a, 0x1c, 0x03, 0xc0, 'A','m','a','c','r','o','n',0,
0x2c, 0xf5, 0x03, 0xc7, 'I','o','g','o','n','e','k',0,
0xa9, 0x4a, 0x03, 0xcc, 'E','a','b','o','v','e','d','o','t',0,
0x2c, 0x1c, 0x03, 0xcf, 'I','m','a','c','r','o','n',0,
0x58, 0xd1, 0x03, 0xd1, 'N','c','e','d','i','l','l','a',0,
0x2d, 0x9c, 0x03, 0xd2, 'O','m','a','c','r','o','n',0,
0x57, 0x51, 0x03, 0xd3, 'K','c','e','d','i','l','l','a',0,
0x2f, 0xf5, 0x03, 0xd9, 'U','o','g','o','n','e','k',0,
0x18, 0x05, 0x03, 0xdd, 'U','t','i','l','d','e',0,
0x2f, 0x1c, 0x03, 0xde, 'U','m','a','c','r','o','n',0,
0x32, 0x1c, 0x03, 0xe0, 'a','m','a','c','r','o','n',0,
0x34, 0xf5, 0x03, 0xe7, 'i','o','g','o','n','e','k',0,
0xc9, 0x4a, 0x03, 0xec, 'e','a','b','o','v','e','d','o','t',0,
0x34, 0x1c, 0x03, 0xef, 'i','m','a','c','r','o','n',0,
0x68, 0xd1, 0x03, 0xf1, 'n','c','e','d','i','l','l','a',0,
0x35, 0x9c, 0x03, 0xf2, 'o','m','a','c','r','o','n',0,
0x67, 0x51, 0x03, 0xf3, 'k','c','e','d','i','l','l','a',0,
0x37, 0xf5, 0x03, 0xf9, 'u','o','g','o','n','e','k',0,
0x1c, 0x05, 0x03, 0xfd, 'u','t','i','l','d','e',0,
0x37, 0x1c, 0x03, 0xfe, 'u','m','a','c','r','o','n',0,
0xa6, 0x4a, 0x12, 0xa1, 'B','a','b','o','v','e','d','o','t',0,
0xc6, 0x4a, 0x12, 0xa2, 'b','a','b','o','v','e','d','o','t',0,
0xa8, 0x4a, 0x12, 0xa6, 'D','a','b','o','v','e','d','o','t',0,
0x17, 0xb5, 0x12, 0xa8, 'W','g','r','a','v','e',0,
0x17, 0x29, 0x12, 0xaa, 'W','a','c','u','t','e',0,
0xc8, 0x4a, 0x12, 0xab, 'd','a','b','o','v','e','d','o','t',0,
0x17, 0xf5, 0x12, 0xac, 'Y','g','r','a','v','e',0,
0xaa, 0x4a, 0x12, 0xb0, 'F','a','b','o','v','e','d','o','t',0,
0xca, 0x4a, 0x12, 0xb1, 'f','a','b','o','v','e','d','o','t',0,
0xb1, 0x4a, 0x12, 0xb4, 'M','a','b','o','v','e','d','o','t',0,
0xd1, 0x4a, 0x12, 0xb5, 'm','a','b','o','v','e','d','o','t',0,
0xb4, 0x4a, 0x12, 0xb7, 'P','a','b','o','v','e','d','o','t',0,
0x1b, 0xb5, 0x12, 0xb8, 'w','g','r','a','v','e',0,
0xd4, 0x4a, 0x12, 0xb9, 'p','a','b','o','v','e','d','o','t',0,
0x1b, 0x29, 0x12, 0xba, 'w','a','c','u','t','e',0,
0xb7, 0x4a, 0x12, 0xbb, 'S','a','b','o','v','e','d','o','t',0,
0x1b, 0xf5, 0x12, 0xbc, 'y','g','r','a','v','e',0,
0x78, 0xb9, 0x12, 0xbd, 'W','d','i','a','e','r','e','s','i','s',0,
0xb8, 0xb9, 0x12, 0xbe, 'w','d','i','a','e','r','e','s','i','s',0,
0xd7, 0x4a, 0x12, 0xbf, 's','a','b','o','v','e','d','o','t',0,
0xf8, 0x52, 0x12, 0xd0, 'W','c','i','r','c','u','m','f','l','e','x',0,
0xb8, 0x4a, 0x12, 0xd7, 'T','a','b','o','v','e','d','o','t',0,
0x00, 0x52, 0x12, 0xde, 'Y','c','i','r','c','u','m','f','l','e','x',0,
0x78, 0x52, 0x12, 0xf0, 'w','c','i','r','c','u','m','f','l','e','x',0,
0xd8, 0x4a, 0x12, 0xf7, 't','a','b','o','v','e','d','o','t',0,
0x80, 0x52, 0x12, 0xfe, 'y','c','i','r','c','u','m','f','l','e','x',0,
0x00, 0xe3, 0x13, 0xbc, 'O','E',0,
0x01, 0x43, 0x13, 0xbd, 'o','e',0,
0x7c, 0xb9, 0x13, 0xbe, 'Y','d','i','a','e','r','e','s','i','s',0,
0x6f, 0x05, 0x04, 0x7e, 'o','v','e','r','l','i','n','e',0,
0xfc, 0x36, 0x04, 0xa1, 'k','a','n','a','_','f','u','l','l','s','t','o','p',0,
0xa6, 0x52, 0x04, 0xa2, 'k','a','n','a','_','o','p','e','n','i','n','g','b','r','a','c','k','e','t',0,
0x4a, 0x52, 0x04, 0xa3, 'k','a','n','a','_','c','l','o','s','i','n','g','b','r','a','c','k','e','t',0,
0x9e, 0xb7, 0x04, 0xa4, 'k','a','n','a','_','c','o','m','m','a',0,
0xcc, 0xc5, 0x04, 0xa5, 'k','a','n','a','_','c','o','n','j','u','n','c','t','i','v','e',0,
0xf5, 0xca, 0x04, 0xa5, 'k','a','n','a','_','m','i','d','d','l','e','d','o','t',0,
0x33, 0x41, 0x04, 0xa6, 'k','a','n','a','_','W','O',0,
0x19, 0x83, 0x04, 0xa7, 'k','a','n','a','_','a',0,
0x19, 0x8b, 0x04, 0xa8, 'k','a','n','a','_','i',0,
0x19, 0x97, 0x04, 0xa9, 'k','a','n','a','_','u',0,
0x19, 0x87, 0x04, 0xaa, 'k','a','n','a','_','e',0,
0x19, 0x91, 0x04, 0xab, 'k','a','n','a','_','o',0,
0x33, 0x97, 0x04, 0xac, 'k','a','n','a','_','y','a',0,
0x33, 0xab, 0x04, 0xad, 'k','a','n','a','_','y','u',0,
0x33, 0xa5, 0x04, 0xae, 'k','a','n','a','_','y','o',0,
0x67, 0xb3, 0x04, 0xaf, 'k','a','n','a','_','t','s','u',0,
0x33, 0xa1, 0x04, 0xaf, 'k','a','n','a','_','t','u',0,
0xfa, 0xfc, 0x04, 0xb0, 'p','r','o','l','o','n','g','e','d','s','o','u','n','d',0,
0x19, 0x63, 0x04, 0xb1, 'k','a','n','a','_','A',0,
0x19, 0x6b, 0x04, 0xb2, 'k','a','n','a','_','I',0,
0x19, 0x77, 0x04, 0xb3, 'k','a','n','a','_','U',0,
0x19, 0x67, 0x04, 0xb4, 'k','a','n','a','_','E',0,
0x19, 0x71, 0x04, 0xb5, 'k','a','n','a','_','O',0,
0x33, 0x1b, 0x04, 0xb6, 'k','a','n','a','_','K','A',0,
0x33, 0x23, 0x04, 0xb7, 'k','a','n','a','_','K','I',0,
0x33, 0x2f, 0x04, 0xb8, 'k','a','n','a','_','K','U',0,
0x33, 0x1f, 0x04, 0xb9, 'k','a','n','a','_','K','E',0,
0x33, 0x29, 0x04, 0xba, 'k','a','n','a','_','K','O',0,
0x33, 0x2b, 0x04, 0xbb, 'k','a','n','a','_','S','A',0,
0x66, 0xad, 0x04, 0xbc, 'k','a','n','a','_','S','H','I',0,
0x33, 0x3f, 0x04, 0xbd, 'k','a','n','a','_','S','U',0,
0x33, 0x2f, 0x04, 0xbe, 'k','a','n','a','_','S','E',0,
0x33, 0x39, 0x04, 0xbf, 'k','a','n','a','_','S','O',0,
0x33, 0x2d, 0x04, 0xc0, 'k','a','n','a','_','T','A',0,
0x66, 0x6d, 0x04, 0xc1, 'k','a','n','a','_','C','H','I',0,
0x33, 0x35, 0x04, 0xc1, 'k','a','n','a','_','T','I',0,
0x66, 0xd3, 0x04, 0xc2, 'k','a','n','a','_','T','S','U',0,
0x33, 0x41, 0x04, 0xc2, 'k','a','n','a','_','T','U',0,
0x33, 0x31, 0x04, 0xc3, 'k','a','n','a','_','T','E',0,
0x33, 0x3b, 0x04, 0xc4, 'k','a','n','a','_','T','O',0,
0x33, 0x21, 0x04, 0xc5, 'k','a','n','a','_','N','A',0,
0x33, 0x29, 0x04, 0xc6, 'k','a','n','a','_','N','I',0,
0x33, 0x35, 0x04, 0xc7, 'k','a','n','a','_','N','U',0,
0x33, 0x25, 0x04, 0xc8, 'k','a','n','a','_','N','E',0,
0x33, 0x2f, 0x04, 0xc9, 'k','a','n','a','_','N','O',0,
0x33, 0x15, 0x04, 0xca, 'k','a','n','a','_','H','A',0,
0x33, 0x1d, 0x04, 0xcb, 'k','a','n','a','_','H','I',0,
0x33, 0x25, 0x04, 0xcc, 'k','a','n','a','_','F','U',0,
0x33, 0x29, 0x04, 0xcc, 'k','a','n','a','_','H','U',0,
0x33, 0x19, 0x04, 0xcd, 'k','a','n','a','_','H','E',0,
0x33, 0x23, 0x04, 0xce, 'k','a','n','a','_','H','O',0,
0x33, 0x1f, 0x04, 0xcf, 'k','a','n','a','_','M','A',0,
0x33, 0x27, 0x04, 0xd0, 'k','a','n','a','_','M','I',0,
0x33, 0x33, 0x04, 0xd1, 'k','a','n','a','_','M','U',0,
0x33, 0x23, 0x04, 0xd2, 'k','a','n','a','_','M','E',0,
0x33, 0x2d, 0x04, 0xd3, 'k','a','n','a','_','M','O',0,
0x33, 0x37, 0x04, 0xd4, 'k','a','n','a','_','Y','A',0,
0x33, 0x4b, 0x04, 0xd5, 'k','a','n','a','_','Y','U',0,
0x33, 0x45, 0x04, 0xd6, 'k','a','n','a','_','Y','O',0,
0x33, 0x29, 0x04, 0xd7, 'k','a','n','a','_','R','A',0,
0x33, 0x31, 0x04, 0xd8, 'k','a','n','a','_','R','I',0,
0x33, 0x3d, 0x04, 0xd9, 'k','a','n','a','_','R','U',0,
0x33, 0x2d, 0x04, 0xda, 'k','a','n','a','_','R','E',0,
0x33, 0x37, 0x04, 0xdb, 'k','a','n','a','_','R','O',0,
0x33, 0x33, 0x04, 0xdc, 'k','a','n','a','_','W','A',0,
0x19, 0x70, 0x04, 0xdd, 'k','a','n','a','_','N',0,
0x83, 0xfc, 0x04, 0xde, 'v','o','i','c','e','d','s','o','u','n','d',0,
0xfb, 0xfc, 0x04, 0xdf, 's','e','m','i','v','o','i','c','e','d','s','o','u','n','d',0,
0x40, 0x56, 0xff, 0x7e, 'k','a','n','a','_','s','w','i','t','c','h',0,
0x2a, 0xea, 0x05, 0x90, 'F','a','r','s','i','_','0',0,
0x2a, 0xeb, 0x05, 0x91, 'F','a','r','s','i','_','1',0,
0x2a, 0xec, 0x05, 0x92, 'F','a','r','s','i','_','2',0,
0x2a, 0xed, 0x05, 0x93, 'F','a','r','s','i','_','3',0,
0x2a, 0xee, 0x05, 0x94, 'F','a','r','s','i','_','4',0,
0x2a, 0xef, 0x05, 0x95, 'F','a','r','s','i','_','5',0,
0x2a, 0xf0, 0x05, 0x96, 'F','a','r','s','i','_','6',0,
0x2a, 0xf1, 0x05, 0x97, 'F','a','r','s','i','_','7',0,
0x2a, 0xf2, 0x05, 0x98, 'F','a','r','s','i','_','8',0,
0x2a, 0xf3, 0x05, 0x99, 'F','a','r','s','i','_','9',0,
0x6a, 0x3c, 0x05, 0xa5, 'A','r','a','b','i','c','_','p','e','r','c','e','n','t',0,
0x0e, 0xd8, 0x05, 0xa6, 'A','r','a','b','i','c','_','s','u','p','e','r','s','c','r','i','p','t','_','a','l','e','f',0,
0xad, 0x32, 0x05, 0xa7, 'A','r','a','b','i','c','_','t','t','e','h',0,
0x56, 0x3a, 0x05, 0xa8, 'A','r','a','b','i','c','_','p','e','h',0,
0x5a, 0x4a, 0x05, 0xa9, 'A','r','a','b','i','c','_','t','c','h','e','h',0,
0xac, 0x6e, 0x05, 0xaa, 'A','r','a','b','i','c','_','d','d','a','l',0,
0xad, 0x1a, 0x05, 0xab, 'A','r','a','b','i','c','_','r','r','e','h',0,
0x59, 0xb7, 0x05, 0xac, 'A','r','a','b','i','c','_','c','o','m','m','a',0,
0xd4, 0x36, 0x05, 0xae, 'A','r','a','b','i','c','_','f','u','l','l','s','t','o','p',0,
0x55, 0x02, 0x05, 0xb0, 'A','r','a','b','i','c','_','0',0,
0x55, 0x03, 0x05, 0xb1, 'A','r','a','b','i','c','_','1',0,
0x55, 0x04, 0x05, 0xb2, 'A','r','a','b','i','c','_','2',0,
0x55, 0x05, 0x05, 0xb3, 'A','r','a','b','i','c','_','3',0,
0x55, 0x06, 0x05, 0xb4, 'A','r','a','b','i','c','_','4',0,
0x55, 0x07, 0x05, 0xb5, 'A','r','a','b','i','c','_','5',0,
0x55, 0x08, 0x05, 0xb6, 'A','r','a','b','i','c','_','6',0,
0x55, 0x09, 0x05, 0xb7, 'A','r','a','b','i','c','_','7',0,
0x55, 0x0a, 0x05, 0xb8, 'A','r','a','b','i','c','_','8',0,
0x55, 0x0b, 0x05, 0xb9, 'A','r','a','b','i','c','_','9',0,
0xac, 0x84, 0x05, 0xbb, 'A','r','a','b','i','c','_','s','e','m','i','c','o','l','o','n',0,
0x30, 0x2b, 0x05, 0xbf, 'A','r','a','b','i','c','_','q','u','e','s','t','i','o','n','_','m','a','r','k',0,
0x59, 0xb1, 0x05, 0xc1, 'A','r','a','b','i','c','_','h','a','m','z','a',0,
0x86, 0xe8, 0x05, 0xc2, 'A','r','a','b','i','c','_','m','a','d','d','a','o','n','a','l','e','f',0,
0x86, 0xe8, 0x05, 0xc3, 'A','r','a','b','i','c','_','h','a','m','z','a','o','n','a','l','e','f',0,
0x43, 0x95, 0x05, 0xc4, 'A','r','a','b','i','c','_','h','a','m','z','a','o','n','w','a','w',0,
0x40, 0xa8, 0x05, 0xc5, 'A','r','a','b','i','c','_','h','a','m','z','a','u','n','d','e','r','a','l','e','f',0,
0x43, 0x96, 0x05, 0xc6, 'A','r','a','b','i','c','_','h','a','m','z','a','o','n','y','e','h',0,
0xac, 0x78, 0x05, 0xc7, 'A','r','a','b','i','c','_','a','l','e','f',0,
0x56, 0x02, 0x05, 0xc8, 'A','r','a','b','i','c','_','b','e','h',0,
0x59, 0xad, 0x05, 0xc9, 'A','r','a','b','i','c','_','t','e','h','m','a','r','b','u','t','a',0,
0x56, 0x4a, 0x05, 0xca, 'A','r','a','b','i','c','_','t','e','h',0,
0xad, 0x02, 0x05, 0xcb, 'A','r','a','b','i','c','_','t','h','e','h',0,
0xac, 0xab, 0x05, 0xcc, 'A','r','a','b','i','c','_','j','e','e','m',0,
0x56, 0x12, 0x05, 0xcd, 'A','r','a','b','i','c','_','h','a','h',0,
0xac, 0xb2, 0x05, 0xce, 'A','r','a','b','i','c','_','k','h','a','h',0,
0x56, 0x06, 0x05, 0xcf, 'A','r','a','b','i','c','_','d','a','l',0,
0xac, 0xfe, 0x05, 0xd0, 'A','r','a','b','i','c','_','t','h','a','l',0,
0xaa, 0xe9, 0x05, 0xd1, 'A','r','a','b','i','c','_','r','a',0,
0xad, 0x24, 0x05, 0xd2, 'A','r','a','b','i','c','_','z','a','i','n',0,
0xac, 0xf4, 0x05, 0xd3, 'A','r','a','b','i','c','_','s','e','e','n',0,
0x5a, 0x5c, 0x05, 0xd4, 'A','r','a','b','i','c','_','s','h','e','e','n',0,
0x56, 0x3a, 0x05, 0xd5, 'A','r','a','b','i','c','_','s','a','d',0,
0x55, 0xfe, 0x05, 0xd6, 'A','r','a','b','i','c','_','d','a','d',0,
0x56, 0x42, 0x05, 0xd7, 'A','r','a','b','i','c','_','t','a','h',0,
0x56, 0x5a, 0x05, 0xd8, 'A','r','a','b','i','c','_','z','a','h',0,
0x56, 0x0c, 0x05, 0xd9, 'A','r','a','b','i','c','_','a','i','n',0,
0x59, 0x94, 0x05, 0xda, 'A','r','a','b','i','c','_','g','h','a','i','n',0,
0x6b, 0x62, 0x05, 0xe0, 'A','r','a','b','i','c','_','t','a','t','w','e','e','l',0,
0x56, 0x12, 0x05, 0xe1, 'A','r','a','b','i','c','_','f','e','h',0,
0x56, 0x34, 0x05, 0xe2, 'A','r','a','b','i','c','_','q','a','f',0,
0x56, 0x1c, 0x05, 0xe3, 'A','r','a','b','i','c','_','k','a','f',0,
0x56, 0x27, 0x05, 0xe4, 'A','r','a','b','i','c','_','l','a','m',0,
0xac, 0xc3, 0x05, 0xe5, 'A','r','a','b','i','c','_','m','e','e','m',0,
0xad, 0x08, 0x05, 0xe6, 'A','r','a','b','i','c','_','n','o','o','n',0,
0xaa, 0xd5, 0x05, 0xe7, 'A','r','a','b','i','c','_','h','a',0,
0x56, 0x1a, 0x05, 0xe7, 'A','r','a','b','i','c','_','h','e','h',0,
0x56, 0x5d, 0x05, 0xe8, 'A','r','a','b','i','c','_','w','a','w',0,
0x70, 0xc1, 0x05, 0xe9, 'A','r','a','b','i','c','_','a','l','e','f','m','a','k','s','u','r','a',0,
0x56, 0x5e, 0x05, 0xea, 'A','r','a','b','i','c','_','y','e','h',0,
0xcf, 0x48, 0x05, 0xeb, 'A','r','a','b','i','c','_','f','a','t','h','a','t','a','n',0,
0xcd, 0xb8, 0x05, 0xec, 'A','r','a','b','i','c','_','d','a','m','m','a','t','a','n',0,
0xd2, 0x48, 0x05, 0xed, 'A','r','a','b','i','c','_','k','a','s','r','a','t','a','n',0,
0x59, 0x89, 0x05, 0xee, 'A','r','a','b','i','c','_','f','a','t','h','a',0,
0x59, 0x57, 0x05, 0xef, 'A','r','a','b','i','c','_','d','a','m','m','a',0,
0x59, 0xe9, 0x05, 0xf0, 'A','r','a','b','i','c','_','k','a','s','r','a',0,
0xb4, 0xe1, 0x05, 0xf1, 'A','r','a','b','i','c','_','s','h','a','d','d','a',0,
0x5a, 0xfc, 0x05, 0xf2, 'A','r','a','b','i','c','_','s','u','k','u','n',0,
0x84, 0x4d, 0x05, 0xf3, 'A','r','a','b','i','c','_','m','a','d','d','a','_','a','b','o','v','e',0,
0x84, 0x4d, 0x05, 0xf4, 'A','r','a','b','i','c','_','h','a','m','z','a','_','a','b','o','v','e',0,
0x84, 0x6d, 0x05, 0xf5, 'A','r','a','b','i','c','_','h','a','m','z','a','_','b','e','l','o','w',0,
0x56, 0x22, 0x05, 0xf6, 'A','r','a','b','i','c','_','j','e','h',0,
0x56, 0x52, 0x05, 0xf7, 'A','r','a','b','i','c','_','v','e','h',0,
0x59, 0xca, 0x05, 0xf8, 'A','r','a','b','i','c','_','k','e','h','e','h',0,
0x56, 0x0c, 0x05, 0xf9, 'A','r','a','b','i','c','_','g','a','f',0,
0xb5, 0xbd, 0x05, 0xfa, 'A','r','a','b','i','c','_','n','o','o','n','_','g','h','u','n','n','a',0,
0xcb, 0xf3, 0x05, 0xfb, 'A','r','a','b','i','c','_','h','e','h','_','d','o','a','c','h','a','s','h','m','e','e',0,
0xad, 0xfe, 0x05, 0xfc, 'F','a','r','s','i','_','y','e','h',0,
0xaf, 0x7f, 0x05, 0xfd, 'A','r','a','b','i','c','_','y','e','h','_','b','a','r','e','e',0,
0xcf, 0x52, 0x05, 0xfe, 'A','r','a','b','i','c','_','h','e','h','_','g','o','a','l',0,
0xb6, 0x56, 0xff, 0x7e, 'A','r','a','b','i','c','_','s','w','i','t','c','h',0,
0x29, 0x44, 0x06, 0x80, 'C','y','r','i','l','l','i','c','_','G','H','E','_','b','a','r',0,
0x37, 0x44, 0x06, 0x90, 'C','y','r','i','l','l','i','c','_','g','h','e','_','b','a','r',0,
0x9e, 0x2c, 0x06, 0x81, 'C','y','r','i','l','l','i','c','_','Z','H','E','_','d','e','s','c','e','n','d','e','r',0,
0x1e, 0x2c, 0x06, 0x91, 'C','y','r','i','l','l','i','c','_','z','h','e','_','d','e','s','c','e','n','d','e','r',0,
0x76, 0x2c, 0x06, 0x82, 'C','y','r','i','l','l','i','c','_','K','A','_','d','e','s','c','e','n','d','e','r',0,
0xf6, 0x2c, 0x06, 0x92, 'C','y','r','i','l','l','i','c','_','k','a','_','d','e','s','c','e','n','d','e','r',0,
0x17, 0x27, 0x06, 0x83, 'C','y','r','i','l','l','i','c','_','K','A','_','v','e','r','t','s','t','r','o','k','e',0,
0x17, 0x27, 0x06, 0x93, 'C','y','r','i','l','l','i','c','_','k','a','_','v','e','r','t','s','t','r','o','k','e',0,
0x7a, 0x2c, 0x06, 0x84, 'C','y','r','i','l','l','i','c','_','E','N','_','d','e','s','c','e','n','d','e','r',0,
0xfa, 0x2c, 0x06, 0x94, 'C','y','r','i','l','l','i','c','_','e','n','_','d','e','s','c','e','n','d','e','r',0,
0x9d, 0xf8, 0x06, 0x85, 'C','y','r','i','l','l','i','c','_','U','_','s','t','r','a','i','g','h','t',0,
0xdd, 0xf8, 0x06, 0x95, 'C','y','r','i','l','l','i','c','_','u','_','s','t','r','a','i','g','h','t',0,
0xe5, 0x34, 0x06, 0x86, 'C','y','r','i','l','l','i','c','_','U','_','s','t','r','a','i','g','h','t','_','b','a','r',0,
0xe5, 0x34, 0x06, 0x96, 'C','y','r','i','l','l','i','c','_','u','_','s','t','r','a','i','g','h','t','_','b','a','r',0,
0x5e, 0x2c, 0x06, 0x87, 'C','y','r','i','l','l','i','c','_','H','A','_','d','e','s','c','e','n','d','e','r',0,
0xde, 0x2c, 0x06, 0x97, 'C','y','r','i','l','l','i','c','_','h','a','_','d','e','s','c','e','n','d','e','r',0,
0x2e, 0x2c, 0x06, 0x88, 'C','y','r','i','l','l','i','c','_','C','H','E','_','d','e','s','c','e','n','d','e','r',0,
0xae, 0x2c, 0x06, 0x98, 'C','y','r','i','l','l','i','c','_','c','h','e','_','d','e','s','c','e','n','d','e','r',0,
0x87, 0x27, 0x06, 0x89, 'C','y','r','i','l','l','i','c','_','C','H','E','_','v','e','r','t','s','t','r','o','k','e',0,
0x87, 0x27, 0x06, 0x99, 'C','y','r','i','l','l','i','c','_','c','h','e','_','v','e','r','t','s','t','r','o','k','e',0,
0x65, 0x19, 0x06, 0x8a, 'C','y','r','i','l','l','i','c','_','S','H','H','A',0,
0x66, 0xf9, 0x06, 0x9a, 'C','y','r','i','l','l','i','c','_','s','h','h','a',0,
0xca, 0x77, 0x06, 0x8c, 'C','y','r','i','l','l','i','c','_','S','C','H','W','A',0,
0xce, 0x57, 0x06, 0x9c, 'C','y','r','i','l','l','i','c','_','s','c','h','w','a',0,
0x5f, 0x1c, 0x06, 0x8d, 'C','y','r','i','l','l','i','c','_','I','_','m','a','c','r','o','n',0,
0x6f, 0x1c, 0x06, 0x9d, 'C','y','r','i','l','l','i','c','_','i','_','m','a','c','r','o','n',0,
0xcb, 0xc4, 0x06, 0x8e, 'C','y','r','i','l','l','i','c','_','O','_','b','a','r',0,
0xcd, 0xc4, 0x06, 0x9e, 'C','y','r','i','l','l','i','c','_','o','_','b','a','r',0,
0x65, 0x1c, 0x06, 0x8f, 'C','y','r','i','l','l','i','c','_','U','_','m','a','c','r','o','n',0,
0x75, 0x1c, 0x06, 0x9f, 'C','y','r','i','l','l','i','c','_','u','_','m','a','c','r','o','n',0,
0xec, 0x01, 0x06, 0xa1, 'S','e','r','b','i','a','n','_','d','j','e',0,
0xfd, 0xfd, 0x06, 0xa2, 'M','a','c','e','d','o','n','i','a','_','g','j','e',0,
0xd9, 0x65, 0x06, 0xa3, 'C','y','r','i','l','l','i','c','_','i','o',0,
0x02, 0x53, 0x06, 0xa4, 'U','k','r','a','i','n','i','a','n','_','i','e',0,
0x01, 0x55, 0x06, 0xa4, 'U','k','r','a','n','i','a','n','_','j','e',0,
0xfe, 0x03, 0x06, 0xa5, 'M','a','c','e','d','o','n','i','a','_','d','s','e',0,
0x00, 0xf7, 0x06, 0xa6, 'U','k','r','a','i','n','i','a','n','_','i',0,
0x80, 0x77, 0x06, 0xa6, 'U','k','r','a','n','i','a','n','_','i',0,
0x02, 0x77, 0x06, 0xa7, 'U','k','r','a','i','n','i','a','n','_','y','i',0,
0x01, 0x77, 0x06, 0xa7, 'U','k','r','a','n','i','a','n','_','y','i',0,
0xd9, 0x5d, 0x06, 0xa8, 'C','y','r','i','l','l','i','c','_','j','e',0,
0x75, 0xd5, 0x06, 0xa8, 'S','e','r','b','i','a','n','_','j','e',0,
0xb3, 0x31, 0x06, 0xa9, 'C','y','r','i','l','l','i','c','_','l','j','e',0,
0xec, 0x21, 0x06, 0xa9, 'S','e','r','b','i','a','n','_','l','j','e',0,
0xb3, 0x39, 0x06, 0xaa, 'C','y','r','i','l','l','i','c','_','n','j','e',0,
0xec, 0x29, 0x06, 0xaa, 'S','e','r','b','i','a','n','_','n','j','e',0,
0xd9, 0x11, 0x06, 0xab, 'S','e','r','b','i','a','n','_','t','s','h','e',0,
0xfe, 0x0d, 0x06, 0xac, 'M','a','c','e','d','o','n','i','a','_','k','j','e',0,
0x12, 0x26, 0x06, 0xad, 'U','k','r','a','i','n','i','a','n','_','g','h','e','_','w','i','t','h','_','u','p','t','u','r','n',0,
0x51, 0x3d, 0x06, 0xae, 'B','y','e','l','o','r','u','s','s','i','a','n','_','s','h','o','r','t','u',0,
0x66, 0xcd, 0x06, 0xaf, 'C','y','r','i','l','l','i','c','_','d','z','h','e',0,
0xec, 0x21, 0x06, 0xaf, 'S','e','r','b','i','a','n','_','d','z','e',0,
0xbc, 0x68, 0x06, 0xb0, 'n','u','m','e','r','o','s','i','g','n',0,
0xeb, 0x21, 0x06, 0xb1, 'S','e','r','b','i','a','n','_','D','J','E',0,
0xfd, 0x1d, 0x06, 0xb2, 'M','a','c','e','d','o','n','i','a','_','G','J','E',0,
0xd9, 0x05, 0x06, 0xb3, 'C','y','r','i','l','l','i','c','_','I','O',0,
0x01, 0xf3, 0x06, 0xb4, 'U','k','r','a','i','n','i','a','n','_','I','E',0,
0x00, 0xf5, 0x06, 0xb4, 'U','k','r','a','n','i','a','n','_','J','E',0,
0xfd, 0x23, 0x06, 0xb5, 'M','a','c','e','d','o','n','i','a','_','D','S','E',0,
0x00, 0xd7, 0x06, 0xb6, 'U','k','r','a','i','n','i','a','n','_','I',0,
0x80, 0x57, 0x06, 0xb6, 'U','k','r','a','n','i','a','n','_','I',0,
0x02, 0x17, 0x06, 0xb7, 'U','k','r','a','i','n','i','a','n','_','Y','I',0,
0x01, 0x17, 0x06, 0xb7, 'U','k','r','a','n','i','a','n','_','Y','I',0,
0xd8, 0xfd, 0x06, 0xb8, 'C','y','r','i','l','l','i','c','_','J','E',0,
0x75, 0x75, 0x06, 0xb8, 'S','e','r','b','i','a','n','_','J','E',0,
0xb2, 0x51, 0x06, 0xb9, 'C','y','r','i','l','l','i','c','_','L','J','E',0,
0xeb, 0x41, 0x06, 0xb9, 'S','e','r','b','i','a','n','_','L','J','E',0,
0xb2, 0x59, 0x06, 0xba, 'C','y','r','i','l','l','i','c','_','N','J','E',0,
0xeb, 0x49, 0x06, 0xba, 'S','e','r','b','i','a','n','_','N','J','E',0,
0xd7, 0x31, 0x06, 0xbb, 'S','e','r','b','i','a','n','_','T','S','H','E',0,
0xfd, 0x2d, 0x06, 0xbc, 'M','a','c','e','d','o','n','i','a','_','K','J','E',0,
0x1a, 0x46, 0x06, 0xbd, 'U','k','r','a','i','n','i','a','n','_','G','H','E','_','W','I','T','H','_','U','P','T','U','R','N',0,
0x49, 0x5d, 0x06, 0xbe, 'B','y','e','l','o','r','u','s','s','i','a','n','_','S','H','O','R','T','U',0,
0x64, 0xed, 0x06, 0xbf, 'C','y','r','i','l','l','i','c','_','D','Z','H','E',0,
0xeb, 0x41, 0x06, 0xbf, 'S','e','r','b','i','a','n','_','D','Z','E',0,
0xd9, 0x8b, 0x06, 0xc0, 'C','y','r','i','l','l','i','c','_','y','u',0,
0x6c, 0x73, 0x06, 0xc1, 'C','y','r','i','l','l','i','c','_','a',0,
0xd9, 0x4d, 0x06, 0xc2, 'C','y','r','i','l','l','i','c','_','b','e',0,
0xb3, 0x63, 0x06, 0xc3, 'C','y','r','i','l','l','i','c','_','t','s','e',0,
0xd9, 0x51, 0x06, 0xc4, 'C','y','r','i','l','l','i','c','_','d','e',0,
0xd9, 0x5b, 0x06, 0xc5, 'C','y','r','i','l','l','i','c','_','i','e',0,
0xd9, 0x54, 0x06, 0xc6, 'C','y','r','i','l','l','i','c','_','e','f',0,
0xb3, 0x19, 0x06, 0xc7, 'C','y','r','i','l','l','i','c','_','g','h','e',0,
0xd9, 0x55, 0x06, 0xc8, 'C','y','r','i','l','l','i','c','_','h','a',0,
0x6c, 0x7b, 0x06, 0xc9, 'C','y','r','i','l','l','i','c','_','i',0,
0x9d, 0xb1, 0x06, 0xca, 'C','y','r','i','l','l','i','c','_','s','h','o','r','t','i',0,
0xd9, 0x5b, 0x06, 0xcb, 'C','y','r','i','l','l','i','c','_','k','a',0,
0xd9, 0x5a, 0x06, 0xcc, 'C','y','r','i','l','l','i','c','_','e','l',0,
0xd9, 0x5b, 0x06, 0xcd, 'C','y','r','i','l','l','i','c','_','e','m',0,
0xd9, 0x5c, 0x06, 0xce, 'C','y','r','i','l','l','i','c','_','e','n',0,
0x6c, 0x81, 0x06, 0xcf, 'C','y','r','i','l','l','i','c','_','o',0,
0xd9, 0x69, 0x06, 0xd0, 'C','y','r','i','l','l','i','c','_','p','e',0,
0xd9, 0x77, 0x06, 0xd1, 'C','y','r','i','l','l','i','c','_','y','a',0,
0xd9, 0x60, 0x06, 0xd2, 'C','y','r','i','l','l','i','c','_','e','r',0,
0xd9, 0x61, 0x06, 0xd3, 'C','y','r','i','l','l','i','c','_','e','s',0,
0xd9, 0x71, 0x06, 0xd4, 'C','y','r','i','l','l','i','c','_','t','e',0,
0x6c, 0x87, 0x06, 0xd5, 'C','y','r','i','l','l','i','c','_','u',0,
0xb3, 0x65, 0x06, 0xd6, 'C','y','r','i','l','l','i','c','_','z','h','e',0,
0xd9, 0x75, 0x06, 0xd7, 'C','y','r','i','l','l','i','c','_','v','e',0,
0x78, 0xb8, 0x06, 0xd8, 'C','y','r','i','l','l','i','c','_','s','o','f','t','s','i','g','n',0,
0x67, 0x45, 0x06, 0xd9, 'C','y','r','i','l','l','i','c','_','y','e','r','u',0,
0xd9, 0x7d, 0x06, 0xda, 'C','y','r','i','l','l','i','c','_','z','e',0,
0xb3, 0x45, 0x06, 0xdb, 'C','y','r','i','l','l','i','c','_','s','h','a',0,
0x6c, 0x77, 0x06, 0xdc, 'C','y','r','i','l','l','i','c','_','e',0,
0xce, 0x4d, 0x06, 0xdd, 'C','y','r','i','l','l','i','c','_','s','h','c','h','a',0,
0xb3, 0x09, 0x06, 0xde, 'C','y','r','i','l','l','i','c','_','c','h','e',0,
0x70, 0x38, 0x06, 0xdf, 'C','y','r','i','l','l','i','c','_','h','a','r','d','s','i','g','n',0,
0xd9, 0x2b, 0x06, 0xe0, 'C','y','r','i','l','l','i','c','_','Y','U',0,
0x6c, 0x53, 0x06, 0xe1, 'C','y','r','i','l','l','i','c','_','A',0,
0xd8, 0xed, 0x06, 0xe2, 'C','y','r','i','l','l','i','c','_','B','E',0,
0xb2, 0x83, 0x06, 0xe3, 'C','y','r','i','l','l','i','c','_','T','S','E',0,
0xd8, 0xf1, 0x06, 0xe4, 'C','y','r','i','l','l','i','c','_','D','E',0,
0xd8, 0xfb, 0x06, 0xe5, 'C','y','r','i','l','l','i','c','_','I','E',0,
0xd8, 0xf4, 0x06, 0xe6, 'C','y','r','i','l','l','i','c','_','E','F',0,
0xb2, 0x39, 0x06, 0xe7, 'C','y','r','i','l','l','i','c','_','G','H','E',0,
0xd8, 0xf5, 0x06, 0xe8, 'C','y','r','i','l','l','i','c','_','H','A',0,
0x6c, 0x5b, 0x06, 0xe9, 'C','y','r','i','l','l','i','c','_','I',0,
0x95, 0xd1, 0x06, 0xea, 'C','y','r','i','l','l','i','c','_','S','H','O','R','T','I',0,
0xd8, 0xfb, 0x06, 0xeb, 'C','y','r','i','l','l','i','c','_','K','A',0,
0xd8, 0xfa, 0x06, 0xec, 'C','y','r','i','l','l','i','c','_','E','L',0,
0xd8, 0xfb, 0x06, 0xed, 'C','y','r','i','l','l','i','c','_','E','M',0,
0xd8, 0xfc, 0x06, 0xee, 'C','y','r','i','l','l','i','c','_','E','N',0,
0x6c, 0x61, 0x06, 0xef, 'C','y','r','i','l','l','i','c','_','O',0,
0xd9, 0x09, 0x06, 0xf0, 'C','y','r','i','l','l','i','c','_','P','E',0,
0xd9, 0x17, 0x06, 0xf1, 'C','y','r','i','l','l','i','c','_','Y','A',0,
0xd9, 0x00, 0x06, 0xf2, 'C','y','r','i','l','l','i','c','_','E','R',0,
0xd9, 0x01, 0x06, 0xf3, 'C','y','r','i','l','l','i','c','_','E','S',0,
0xd9, 0x11, 0x06, 0xf4, 'C','y','r','i','l','l','i','c','_','T','E',0,
0x6c, 0x67, 0x06, 0xf5, 'C','y','r','i','l','l','i','c','_','U',0,
0xb2, 0x85, 0x06, 0xf6, 'C','y','r','i','l','l','i','c','_','Z','H','E',0,
0xd9, 0x15, 0x06, 0xf7, 'C','y','r','i','l','l','i','c','_','V','E',0,
0x58, 0xd8, 0x06, 0xf8, 'C','y','r','i','l','l','i','c','_','S','O','F','T','S','I','G','N',0,
0x65, 0x65, 0x06, 0xf9, 'C','y','r','i','l','l','i','c','_','Y','E','R','U',0,
0xd9, 0x1d, 0x06, 0xfa, 'C','y','r','i','l','l','i','c','_','Z','E',0,
0xb2, 0x65, 0x06, 0xfb, 'C','y','r','i','l','l','i','c','_','S','H','A',0,
0x6c, 0x57, 0x06, 0xfc, 'C','y','r','i','l','l','i','c','_','E',0,
0xca, 0x6d, 0x06, 0xfd, 'C','y','r','i','l','l','i','c','_','S','H','C','H','A',0,
0xb2, 0x29, 0x06, 0xfe, 'C','y','r','i','l','l','i','c','_','C','H','E',0,
0x50, 0x58, 0x06, 0xff, 'C','y','r','i','l','l','i','c','_','H','A','R','D','S','I','G','N',0,
0xc0, 0x8c, 0x07, 0xa1, 'G','r','e','e','k','_','A','L','P','H','A','a','c','c','e','n','t',0,
0x6d, 0x4c, 0x07, 0xa2, 'G','r','e','e','k','_','E','P','S','I','L','O','N','a','c','c','e','n','t',0,
0x79, 0x8c, 0x07, 0xa3, 'G','r','e','e','k','_','E','T','A','a','c','c','e','n','t',0,
0xf7, 0x8c, 0x07, 0xa4, 'G','r','e','e','k','_','I','O','T','A','a','c','c','e','n','t',0,
0xe3, 0x39, 0x07, 0xa5, 'G','r','e','e','k','_','I','O','T','A','d','i','e','r','e','s','i','s',0,
0xc7, 0x4c, 0x07, 0xa7, 'G','r','e','e','k','_','O','M','I','C','R','O','N','a','c','c','e','n','t',0,
0x6d, 0x4c, 0x07, 0xa8, 'G','r','e','e','k','_','U','P','S','I','L','O','N','a','c','c','e','n','t',0,
0xba, 0x39, 0x07, 0xa9, 'G','r','e','e','k','_','U','P','S','I','L','O','N','d','i','e','r','e','s','i','s',0,
0xef, 0x0c, 0x07, 0xab, 'G','r','e','e','k','_','O','M','E','G','A','a','c','c','e','n','t',0,
0xf2, 0x39, 0x07, 0xae, 'G','r','e','e','k','_','a','c','c','e','n','t','d','i','e','r','e','s','i','s',0,
0x5c, 0x1c, 0x07, 0xaf, 'G','r','e','e','k','_','h','o','r','i','z','b','a','r',0,
0xb8, 0x8c, 0x07, 0xb1, 'G','r','e','e','k','_','a','l','p','h','a','a','c','c','e','n','t',0,
0x65, 0x4c, 0x07, 0xb2, 'G','r','e','e','k','_','e','p','s','i','l','o','n','a','c','c','e','n','t',0,
0xb1, 0x8c, 0x07, 0xb3, 'G','r','e','e','k','_','e','t','a','a','c','c','e','n','t',0,
0x6f, 0x8c, 0x07, 0xb4, 'G','r','e','e','k','_','i','o','t','a','a','c','c','e','n','t',0,
0xc3, 0x39, 0x07, 0xb5, 'G','r','e','e','k','_','i','o','t','a','d','i','e','r','e','s','i','s',0,
0xf2, 0x39, 0x07, 0xb6, 'G','r','e','e','k','_','i','o','t','a','a','c','c','e','n','t','d','i','e','r','e','s','i','s',0,
0xbf, 0x4c, 0x07, 0xb7, 'G','r','e','e','k','_','o','m','i','c','r','o','n','a','c','c','e','n','t',0,
0x65, 0x4c, 0x07, 0xb8, 'G','r','e','e','k','_','u','p','s','i','l','o','n','a','c','c','e','n','t',0,
0x9a, 0x39, 0x07, 0xb9, 'G','r','e','e','k','_','u','p','s','i','l','o','n','d','i','e','r','e','s','i','s',0,
0xb2, 0x39, 0x07, 0xba, 'G','r','e','e','k','_','u','p','s','i','l','o','n','a','c','c','e','n','t','d','i','e','r','e','s','i','s',0,
0xe7, 0x0c, 0x07, 0xbb, 'G','r','e','e','k','_','o','m','e','g','a','a','c','c','e','n','t',0,
0xc6, 0xa1, 0x07, 0xc1, 'G','r','e','e','k','_','A','L','P','H','A',0,
0x63, 0x1d, 0x07, 0xc2, 'G','r','e','e','k','_','B','E','T','A',0,
0xc6, 0xa7, 0x07, 0xc3, 'G','r','e','e','k','_','G','A','M','M','A',0,
0xc6, 0xa1, 0x07, 0xc4, 'G','r','e','e','k','_','D','E','L','T','A',0,
0x1d, 0x54, 0x07, 0xc5, 'G','r','e','e','k','_','E','P','S','I','L','O','N',0,
0x63, 0xdd, 0x07, 0xc6, 'G','r','e','e','k','_','Z','E','T','A',0,
0xb1, 0x85, 0x07, 0xc7, 'G','r','e','e','k','_','E','T','A',0,
0xc7, 0x9d, 0x07, 0xc8, 'G','r','e','e','k','_','T','H','E','T','A',0,
0x63, 0x7d, 0x07, 0xc9, 'G','r','e','e','k','_','I','O','T','A',0,
0xc6, 0xf9, 0x07, 0xca, 'G','r','e','e','k','_','K','A','P','P','A',0,
0xc6, 0xe5, 0x07, 0xcb, 'G','r','e','e','k','_','L','A','M','D','A',0,
0x8e, 0x09, 0x07, 0xcb, 'G','r','e','e','k','_','L','A','M','B','D','A',0,
0x58, 0xb3, 0x07, 0xcc, 'G','r','e','e','k','_','M','U',0,
0x58, 0xb5, 0x07, 0xcd, 'G','r','e','e','k','_','N','U',0,
0x58, 0xbd, 0x07, 0xce, 'G','r','e','e','k','_','X','I',0,
0x1e, 0xbc, 0x07, 0xcf, 'G','r','e','e','k','_','O','M','I','C','R','O','N',0,
0x58, 0xad, 0x07, 0xd0, 'G','r','e','e','k','_','P','I',0,
0xb1, 0xaf, 0x07, 0xd1, 'G','r','e','e','k','_','R','H','O',0,
0xc7, 0x8f, 0x07, 0xd2, 'G','r','e','e','k','_','S','I','G','M','A',0,
0xb1, 0xaf, 0x07, 0xd4, 'G','r','e','e','k','_','T','A','U',0,
0x21, 0x54, 0x07, 0xd5, 'G','r','e','e','k','_','U','P','S','I','L','O','N',0,
0xb1, 0xa1, 0x07, 0xd6, 'G','r','e','e','k','_','P','H','I',0,
0xb1, 0x6d, 0x07, 0xd7, 'G','r','e','e','k','_','C','H','I',0,
0xb1, 0xb7, 0x07, 0xd8, 'G','r','e','e','k','_','P','S','I',0,
0xc7, 0x5b, 0x07, 0xd9, 'G','r','e','e','k','_','O','M','E','G','A',0,
0xca, 0x81, 0x07, 0xe1, 'G','r','e','e','k','_','a','l','p','h','a',0,
0x64, 0xfd, 0x07, 0xe2, 'G','r','e','e','k','_','b','e','t','a',0,
0xca, 0x87, 0x07, 0xe3, 'G','r','e','e','k','_','g','a','m','m','a',0,
0xca, 0x81, 0x07, 0xe4, 'G','r','e','e','k','_','d','e','l','t','a',0,
0x2d, 0x34, 0x07, 0xe5, 'G','r','e','e','k','_','e','p','s','i','l','o','n',0,
0x65, 0xbd, 0x07, 0xe6, 'G','r','e','e','k','_','z','e','t','a',0,
0xb2, 0x65, 0x07, 0xe7, 'G','r','e','e','k','_','e','t','a',0,
0xcb, 0x7d, 0x07, 0xe8, 'G','r','e','e','k','_','t','h','e','t','a',0,
0x65, 0x5d, 0x07, 0xe9, 'G','r','e','e','k','_','i','o','t','a',0,
0xca, 0xd9, 0x07, 0xea, 'G','r','e','e','k','_','k','a','p','p','a',0,
0xca, 0xc5, 0x07, 0xeb, 'G','r','e','e','k','_','l','a','m','d','a',0,
0x95, 0xe9, 0x07, 0xeb, 'G','r','e','e','k','_','l','a','m','b','d','a',0,
0x59, 0x13, 0x07, 0xec, 'G','r','e','e','k','_','m','u',0,
0x59, 0x15, 0x07, 0xed, 'G','r','e','e','k','_','n','u',0,
0x59, 0x1d, 0x07, 0xee, 'G','r','e','e','k','_','x','i',0,
0x2e, 0x9c, 0x07, 0xef, 'G','r','e','e','k','_','o','m','i','c','r','o','n',0,
0x59, 0x0d, 0x07, 0xf0, 'G','r','e','e','k','_','p','i',0,
0xb2, 0x8f, 0x07, 0xf1, 'G','r','e','e','k','_','r','h','o',0,
0xcb, 0x6f, 0x07, 0xf2, 'G','r','e','e','k','_','s','i','g','m','a',0,
0x71, 0x4f, 0x07, 0xf3, 'G','r','e','e','k','_','f','i','n','a','l','s','m','a','l','l','s','i','g','m','a',0,
0xb2, 0x8f, 0x07, 0xf4, 'G','r','e','e','k','_','t','a','u',0,
0x31, 0x34, 0x07, 0xf5, 'G','r','e','e','k','_','u','p','s','i','l','o','n',0,
0xb2, 0x81, 0x07, 0xf6, 'G','r','e','e','k','_','p','h','i',0,
0xb2, 0x4d, 0x07, 0xf7, 'G','r','e','e','k','_','c','h','i',0,
0xb2, 0x97, 0x07, 0xf8, 'G','r','e','e','k','_','p','s','i',0,
0xcb, 0x3b, 0x07, 0xf9, 'G','r','e','e','k','_','o','m','e','g','a',0,
0x98, 0x56, 0xff, 0x7e, 'G','r','e','e','k','_','s','w','i','t','c','h',0,
0x4e, 0xe2, 0x08, 0xa1, 'l','e','f','t','r','a','d','i','c','a','l',0,
0x3e, 0xe2, 0x08, 0xa2, 't','o','p','l','e','f','t','r','a','d','i','c','a','l',0,
0xe8, 0x48, 0x08, 0xa3, 'h','o','r','i','z','c','o','n','n','e','c','t','o','r',0,
0x88, 0xfe, 0x08, 0xa4, 't','o','p','i','n','t','e','g','r','a','l',0,
0x44, 0xfe, 0x08, 0xa5, 'b','o','t','i','n','t','e','g','r','a','l',0,
0x08, 0x48, 0x08, 0xa6, 'v','e','r','t','c','o','n','n','e','c','t','o','r',0,
0x06, 0x52, 0x08, 0xa7, 't','o','p','l','e','f','t','s','q','b','r','a','c','k','e','t',0,
0x86, 0x52, 0x08, 0xa8, 'b','o','t','l','e','f','t','s','q','b','r','a','c','k','e','t',0,
0xee, 0x52, 0x08, 0xa9, 't','o','p','r','i','g','h','t','s','q','b','r','a','c','k','e','t',0,
0xee, 0x52, 0x08, 0xaa, 'b','o','t','r','i','g','h','t','s','q','b','r','a','c','k','e','t',0,
0x1f, 0x83, 0x08, 0xab, 't','o','p','l','e','f','t','p','a','r','e','n','s',0,
0x0f, 0x83, 0x08, 0xac, 'b','o','t','l','e','f','t','p','a','r','e','n','s',0,
0x5c, 0x83, 0x08, 0xad, 't','o','p','r','i','g','h','t','p','a','r','e','n','s',0,
0x3c, 0x83, 0x08, 0xae, 'b','o','t','r','i','g','h','t','p','a','r','e','n','s',0,
0x1e, 0x7f, 0x08, 0xaf, 'l','e','f','t','m','i','d','d','l','e','c','u','r','l','y','b','r','a','c','e',0,
0x1e, 0x7f, 0x08, 0xb0, 'r','i','g','h','t','m','i','d','d','l','e','c','u','r','l','y','b','r','a','c','e',0,
0x0b, 0x00, 0x08, 0xb1, 't','o','p','l','e','f','t','s','u','m','m','a','t','i','o','n',0,
0x8b, 0x00, 0x08, 0xb2, 'b','o','t','l','e','f','t','s','u','m','m','a','t','i','o','n',0,
0xd0, 0x48, 0x08, 0xb3, 't','o','p','v','e','r','t','s','u','m','m','a','t','i','o','n','c','o','n','n','e','c','t','o','r',0,
0xd0, 0x48, 0x08, 0xb4, 'b','o','t','v','e','r','t','s','u','m','m','a','t','i','o','n','c','o','n','n','e','c','t','o','r',0,
0xf3, 0x00, 0x08, 0xb5, 't','o','p','r','i','g','h','t','s','u','m','m','a','t','i','o','n',0,
0xf3, 0x00, 0x08, 0xb6, 'b','o','t','r','i','g','h','t','s','u','m','m','a','t','i','o','n',0,
0x1d, 0x00, 0x08, 0xb7, 'r','i','g','h','t','m','i','d','d','l','e','s','u','m','m','a','t','i','o','n',0,
0x74, 0xda, 0x08, 0xbc, 'l','e','s','s','t','h','a','n','e','q','u','a','l',0,
0x6e, 0x1a, 0x08, 0xbd, 'n','o','t','e','q','u','a','l',0,
0xa2, 0xda, 0x08, 0xbe, 'g','r','e','a','t','e','r','t','h','a','n','e','q','u','a','l',0,
0x6a, 0xfe, 0x08, 0xbf, 'i','n','t','e','g','r','a','l',0,
0xdc, 0x05, 0x08, 0xc0, 't','h','e','r','e','f','o','r','e',0,
0xdc, 0xc0, 0x08, 0xc1, 'v','a','r','i','a','t','i','o','n',0,
0x69, 0xc5, 0x08, 0xc2, 'i','n','f','i','n','i','t','y',0,
0x0c, 0xa9, 0x08, 0xc5, 'n','a','b','l','a',0,
0x44, 0x89, 0x08, 0xc8, 'a','p','p','r','o','x','i','m','a','t','e',0,
0xe8, 0x5a, 0x08, 0xc9, 's','i','m','i','l','a','r','e','q','u','a','l',0,
0x69, 0x3c, 0x08, 0xcd, 'i','f','o','n','l','y','i','f',0,
0x35, 0x21, 0x08, 0xce, 'i','m','p','l','i','e','s',0,
0xcf, 0x42, 0x08, 0xcf, 'i','d','e','n','t','i','c','a','l',0,
0x34, 0xe2, 0x08, 0xd6, 'r','a','d','i','c','a','l',0,
0xa7, 0x58, 0x08, 0xda, 'i','n','c','l','u','d','e','d','i','n',0,
0x69, 0x95, 0x08, 0xdb, 'i','n','c','l','u','d','e','s',0,
0xbc, 0x20, 0x08, 0xdc, 'i','n','t','e','r','s','e','c','t','i','o','n',0,
0x0d, 0xb0, 0x08, 0xdd, 'u','n','i','o','n',0,
0xad, 0x54, 0x08, 0xde, 'l','o','g','i','c','a','l','a','n','d',0,
0xd6, 0x98, 0x08, 0xdf, 'l','o','g','i','c','a','l','o','r',0,
0x63, 0xa5, 0x08, 0xef, 'p','a','r','t','i','a','l','d','e','r','i','v','a','t','i','v','e',0,
0x6a, 0xc0, 0x08, 0xf6, 'f','u','n','c','t','i','o','n',0,
0xd3, 0x3d, 0x08, 0xfb, 'l','e','f','t','a','r','r','o','w',0,
0x37, 0xfd, 0x08, 0xfc, 'u','p','a','r','r','o','w',0,
0xb5, 0xbd, 0x08, 0xfd, 'r','i','g','h','t','a','r','r','o','w',0,
0xd3, 0xbd, 0x08, 0xfe, 'd','o','w','n','a','r','r','o','w',0,
0x0c, 0x4b, 0x09, 0xdf, 'b','l','a','n','k',0,
0xf9, 0x94, 0x09, 0xe0, 's','o','l','i','d','d','i','a','m','o','n','d',0,
0x4e, 0x64, 0x09, 0xe1, 'c','h','e','c','k','e','r','b','o','a','r','d',0,
0x01, 0x44, 0x09, 0xe2, 'h','t',0,
0x01, 0x32, 0x09, 0xe3, 'f','f',0,
0x01, 0x38, 0x09, 0xe4, 'c','r',0,
0x01, 0x3e, 0x09, 0xe5, 'l','f',0,
0x01, 0x48, 0x09, 0xe8, 'n','l',0,
0x01, 0x60, 0x09, 0xe9, 'v','t',0,
0x93, 0xd4, 0x09, 0xea, 'l','o','w','r','i','g','h','t','c','o','r','n','e','r',0,
0x3b, 0xd4, 0x09, 0xeb, 'u','p','r','i','g','h','t','c','o','r','n','e','r',0,
0x0e, 0xd4, 0x09, 0xec, 'u','p','l','e','f','t','c','o','r','n','e','r',0,
0xba, 0xd4, 0x09, 0xed, 'l','o','w','l','e','f','t','c','o','r','n','e','r',0,
0x3e, 0xdd, 0x09, 0xee, 'c','r','o','s','s','i','n','g','l','i','n','e','s',0,
0xed, 0x79, 0x09, 0xef, 'h','o','r','i','z','l','i','n','e','s','c','a','n','1',0,
0xed, 0x7b, 0x09, 0xf0, 'h','o','r','i','z','l','i','n','e','s','c','a','n','3',0,
0xed, 0x7d, 0x09, 0xf1, 'h','o','r','i','z','l','i','n','e','s','c','a','n','5',0,
0xed, 0x7f, 0x09, 0xf2, 'h','o','r','i','z','l','i','n','e','s','c','a','n','7',0,
0xed, 0x81, 0x09, 0xf3, 'h','o','r','i','z','l','i','n','e','s','c','a','n','9',0,
0x0c, 0xdc, 0x09, 0xf4, 'l','e','f','t','t',0,
0x1b, 0x04, 0x09, 0xf5, 'r','i','g','h','t','t',0,
0x06, 0x28, 0x09, 0xf6, 'b','o','t','t',0,
0x06, 0xb0, 0x09, 0xf7, 't','o','p','t',0,
0x37, 0x9c, 0x09, 0xf8, 'v','e','r','t','b','a','r',0,
0x34, 0x3f, 0x0a, 0xa1, 'e','m','s','p','a','c','e',0,
0x34, 0x5f, 0x0a, 0xa2, 'e','n','s','p','a','c','e',0,
0x61, 0x7f, 0x0a, 0xa3, 'e','m','3','s','p','a','c','e',0,
0x61, 0x9f, 0x0a, 0xa4, 'e','m','4','s','p','a','c','e',0,
0x9a, 0x9f, 0x0a, 0xa5, 'd','i','g','i','t','s','p','a','c','e',0,
0xc0, 0x9f, 0x0a, 0xa6, 'p','u','n','c','t','s','p','a','c','e',0,
0xdd, 0x5f, 0x0a, 0xa7, 't','h','i','n','s','p','a','c','e',0,
0xce, 0x5f, 0x0a, 0xa8, 'h','a','i','r','s','p','a','c','e',0,
0x19, 0x62, 0x0a, 0xa9, 'e','m','d','a','s','h',0,
0x19, 0x72, 0x0a, 0xaa, 'e','n','d','a','s','h',0,
0x6f, 0x4b, 0x0a, 0xac, 's','i','g','n','i','f','b','l','a','n','k',0,
0x68, 0x21, 0x0a, 0xae, 'e','l','l','i','p','s','i','s',0,
0x64, 0x8a, 0x0a, 0xaf, 'd','o','u','b','b','a','s','e','l','i','n','e','d','o','t',0,
0x6d, 0x0c, 0x0a, 0xb0, 'o','n','e','t','h','i','r','d',0,
0xe6, 0x8b, 0x0a, 0xb1, 't','w','o','t','h','i','r','d','s',0,
0x6c, 0x30, 0x0a, 0xb2, 'o','n','e','f','i','f','t','h',0,
0xe4, 0xd3, 0x0a, 0xb3, 't','w','o','f','i','f','t','h','s',0,
0x77, 0x53, 0x0a, 0xb4, 't','h','r','e','e','f','i','f','t','h','s',0,
0xab, 0x93, 0x0a, 0xb5, 'f','o','u','r','f','i','f','t','h','s',0,
0x6d, 0x48, 0x0a, 0xb6, 'o','n','e','s','i','x','t','h',0,
0xa5, 0x03, 0x0a, 0xb7, 'f','i','v','e','s','i','x','t','h','s',0,
0x18, 0xd8, 0x0a, 0xb8, 'c','a','r','e','o','f',0,
0x33, 0x02, 0x0a, 0xbb, 'f','i','g','d','a','s','h',0,
0x9f, 0x52, 0x0a, 0xbc, 'l','e','f','t','a','n','g','l','e','b','r','a','c','k','e','t',0,
0x4c, 0xac, 0x0a, 0xbd, 'd','e','c','i','m','a','l','p','o','i','n','t',0,
0xdf, 0x52, 0x0a, 0xbe, 'r','i','g','h','t','a','n','g','l','e','b','r','a','c','k','e','t',0,
0x1a, 0x28, 0x0a, 0xbf, 'm','a','r','k','e','r',0,
0xd8, 0x98, 0x0a, 0xc3, 'o','n','e','e','i','g','h','t','h',0,
0xee, 0xa3, 0x0a, 0xc4, 't','h','r','e','e','e','i','g','h','t','h','s',0,
0x45, 0xa3, 0x0a, 0xc5, 'f','i','v','e','e','i','g','h','t','h','s',0,
0xe7, 0x23, 0x0a, 0xc6, 's','e','v','e','n','e','i','g','h','t','h','s',0,
0xde, 0x4b, 0x0a, 0xc9, 't','r','a','d','e','m','a','r','k',0,
0xc3, 0x0b, 0x0a, 0xca, 's','i','g','n','a','t','u','r','e','m','a','r','k',0,
0xb4, 0x49, 0x0a, 0xcb, 't','r','a','d','e','m','a','r','k','i','n','c','i','r','c','l','e',0,
0x1f, 0xf9, 0x0a, 0xcc, 'l','e','f','t','o','p','e','n','t','r','i','a','n','g','l','e',0,
0x5f, 0xf9, 0x0a, 0xcd, 'r','i','g','h','t','o','p','e','n','t','r','i','a','n','g','l','e',0,
0x91, 0x49, 0x0a, 0xce, 'e','m','o','p','e','n','c','i','r','c','l','e',0,
0x98, 0x19, 0x0a, 0xcf, 'e','m','o','p','e','n','r','e','c','t','a','n','g','l','e',0,
0x54, 0x4b, 0x0a, 0xd0, 'l','e','f','t','s','i','n','g','l','e','q','u','o','t','e','m','a','r','k',0,
0x54, 0x4b, 0x0a, 0xd1, 'r','i','g','h','t','s','i','n','g','l','e','q','u','o','t','e','m','a','r','k',0,
0x9c, 0x4b, 0x0a, 0xd2, 'l','e','f','t','d','o','u','b','l','e','q','u','o','t','e','m','a','r','k',0,
0x9c, 0x4b, 0x0a, 0xd3, 'r','i','g','h','t','d','o','u','b','l','e','q','u','o','t','e','m','a','r','k',0,
0xed, 0xb0, 0x0a, 0xd4, 'p','r','e','s','c','r','i','p','t','i','o','n',0,
0x35, 0xf5, 0x0a, 0xd6, 'm','i','n','u','t','e','s',0,
0x35, 0xfb, 0x0a, 0xd7, 's','e','c','o','n','d','s',0,
0xa7, 0xd5, 0x0a, 0xd9, 'l','a','t','i','n','c','r','o','s','s',0,
0x68, 0x7f, 0x0a, 0xda, 'h','e','x','a','g','r','a','m',0,
0xe9, 0x5e, 0x0a, 0xdb, 'f','i','l','l','e','d','r','e','c','t','b','u','l','l','e','t',0,
0x09, 0x1e, 0x0a, 0xdc, 'f','i','l','l','e','d','l','e','f','t','t','r','i','b','u','l','l','e','t',0,
0xf1, 0x1e, 0x0a, 0xdd, 'f','i','l','l','e','d','r','i','g','h','t','t','r','i','b','u','l','l','e','t',0,
0xec, 0xc9, 0x0a, 0xde, 'e','m','f','i','l','l','e','d','c','i','r','c','l','e',0,
0x7b, 0x3e, 0x0a, 0xdf, 'e','m','f','i','l','l','e','d','r','e','c','t',0,
0x5a, 0x9e, 0x0a, 0xe0, 'e','n','o','p','e','n','c','i','r','c','b','u','l','l','e','t',0,
0x13, 0x1e, 0x0a, 0xe1, 'e','n','o','p','e','n','s','q','u','a','r','e','b','u','l','l','e','t',0,
0x71, 0x5e, 0x0a, 0xe2, 'o','p','e','n','r','e','c','t','b','u','l','l','e','t',0,
0x05, 0xd2, 0x0a, 0xe3, 'o','p','e','n','t','r','i','b','u','l','l','e','t','u','p',0,
0x18, 0x18, 0x0a, 0xe4, 'o','p','e','n','t','r','i','b','u','l','l','e','t','d','o','w','n',0,
0x6d, 0x9c, 0x0a, 0xe5, 'o','p','e','n','s','t','a','r',0,
0xd2, 0x9e, 0x0a, 0xe6, 'e','n','f','i','l','l','e','d','c','i','r','c','b','u','l','l','e','t',0,
0xfd, 0x9e, 0x0a, 0xe7, 'e','n','f','i','l','l','e','d','s','q','b','u','l','l','e','t',0,
0xf5, 0xd2, 0x0a, 0xe8, 'f','i','l','l','e','d','t','r','i','b','u','l','l','e','t','u','p',0,
0xd8, 0x18, 0x0a, 0xe9, 'f','i','l','l','e','d','t','r','i','b','u','l','l','e','t','d','o','w','n',0,
0x50, 0xec, 0x0a, 0xea, 'l','e','f','t','p','o','i','n','t','e','r',0,
0xda, 0xec, 0x0a, 0xeb, 'r','i','g','h','t','p','o','i','n','t','e','r',0,
0x06, 0x14, 0x0a, 0xec, 'c','l','u','b',0,
0x32, 0x94, 0x0a, 0xed, 'd','i','a','m','o','n','d',0,
0x0c, 0x84, 0x0a, 0xee, 'h','e','a','r','t',0,
0xa0, 0xb5, 0x0a, 0xf0, 'm','a','l','t','e','s','e','c','r','o','s','s',0,
0x18, 0xa0, 0x0a, 0xf1, 'd','a','g','g','e','r',0,
0x8f, 0xe0, 0x0a, 0xf2, 'd','o','u','b','l','e','d','a','g','g','e','r',0,
0xc9, 0x8b, 0x0a, 0xf3, 'c','h','e','c','k','m','a','r','k',0,
0x23, 0x15, 0x0a, 0xf4, 'b','a','l','l','o','t','c','r','o','s','s',0,
0xef, 0x88, 0x0a, 0xf5, 'm','u','s','i','c','a','l','s','h','a','r','p',0,
0x77, 0x36, 0x0a, 0xf6, 'm','u','s','i','c','a','l','f','l','a','t',0,
0xa6, 0x6a, 0x0a, 0xf7, 'm','a','l','e','s','y','m','b','o','l',0,
0x6a, 0x6a, 0x0a, 0xf8, 'f','e','m','a','l','e','s','y','m','b','o','l',0,
0xdb, 0x5d, 0x0a, 0xf9, 't','e','l','e','p','h','o','n','e',0,
0xc8, 0xec, 0x0a, 0xfa, 't','e','l','e','p','h','o','n','e','r','e','c','o','r','d','e','r',0,
0x2a, 0xe8, 0x0a, 0xfb, 'p','h','o','n','o','g','r','a','p','h','c','o','p','y','r','i','g','h','t',0,
0x0c, 0x3e, 0x0a, 0xfc, 'c','a','r','e','t',0,
0x7c, 0x4b, 0x0a, 0xfd, 's','i','n','g','l','e','l','o','w','q','u','o','t','e','m','a','r','k',0,
0xbc, 0x4b, 0x0a, 0xfe, 'd','o','u','b','l','e','l','o','w','q','u','o','t','e','m','a','r','k',0,
0x1a, 0x5c, 0x0a, 0xff, 'c','u','r','s','o','r',0,
0xd2, 0xbe, 0x0b, 0xa3, 'l','e','f','t','c','a','r','e','t',0,
0xb5, 0x3e, 0x0b, 0xa6, 'r','i','g','h','t','c','a','r','e','t',0,
0xd3, 0x3e, 0x0b, 0xa8, 'd','o','w','n','c','a','r','e','t',0,
0x37, 0x7e, 0x0b, 0xa9, 'u','p','c','a','r','e','t',0,
0x37, 0x1c, 0x0b, 0xc0, 'o','v','e','r','b','a','r',0,
0x69, 0xd5, 0x0b, 0xc2, 'd','o','w','n','t','a','c','k',0,
0x1c, 0x1b, 0x0b, 0xc3, 'u','p','s','h','o','e',0,
0xd4, 0xb1, 0x0b, 0xc4, 'd','o','w','n','s','t','i','l','e',0,
0x6f, 0x1c, 0x0b, 0xc6, 'u','n','d','e','r','b','a','r',0,
0x02, 0xfa, 0x0b, 0xca, 'j','o','t',0,
0x06, 0x82, 0x0b, 0xcc, 'q','u','a','d',0,
0x1b, 0xf5, 0x0b, 0xce, 'u','p','t','a','c','k',0,
0x19, 0x49, 0x0b, 0xcf, 'c','i','r','c','l','e',0,
0x38, 0xf1, 0x0b, 0xd3, 'u','p','s','t','i','l','e',0,
0x69, 0xfb, 0x0b, 0xd6, 'd','o','w','n','s','h','o','e',0,
0xda, 0xfb, 0x0b, 0xd8, 'r','i','g','h','t','s','h','o','e',0,
0x69, 0xbb, 0x0b, 0xda, 'l','e','f','t','s','h','o','e',0,
0x69, 0x95, 0x0b, 0xdc, 'l','e','f','t','t','a','c','k',0,
0xda, 0xd5, 0x0b, 0xfc, 'r','i','g','h','t','t','a','c','k',0,
0x45, 0x15, 0x0c, 0xdf, 'h','e','b','r','e','w','_','d','o','u','b','l','e','l','o','w','l','i','n','e',0,
0x72, 0x6c, 0x0c, 0xe0, 'h','e','b','r','e','w','_','a','l','e','p','h',0,
0x9c, 0x4e, 0x0c, 0xe1, 'h','e','b','r','e','w','_','b','e','t',0,
0x39, 0x04, 0x0c, 0xe1, 'h','e','b','r','e','w','_','b','e','t','h',0,
0x72, 0xc2, 0x0c, 0xe2, 'h','e','b','r','e','w','_','g','i','m','e','l',0,
0xe6, 0x02, 0x0c, 0xe2, 'h','e','b','r','e','w','_','g','i','m','m','e','l',0,
0x72, 0x56, 0x0c, 0xe3, 'h','e','b','r','e','w','_','d','a','l','e','t',0,
0xe5, 0x14, 0x0c, 0xe3, 'h','e','b','r','e','w','_','d','a','l','e','t','h',0,
0xcd, 0xf9, 0x0c, 0xe4, 'h','e','b','r','e','w','_','h','e',0,
0x9c, 0x9d, 0x0c, 0xe5, 'h','e','b','r','e','w','_','w','a','w',0,
0x39, 0xa4, 0x0c, 0xe6, 'h','e','b','r','e','w','_','z','a','i','n',0,
0x73, 0xec, 0x0c, 0xe6, 'h','e','b','r','e','w','_','z','a','y','i','n',0,
0x39, 0x06, 0x0c, 0xe7, 'h','e','b','r','e','w','_','c','h','e','t',0,
0x9c, 0x66, 0x0c, 0xe7, 'h','e','b','r','e','w','_','h','e','t',0,
0x9c, 0x96, 0x0c, 0xe8, 'h','e','b','r','e','w','_','t','e','t',0,
0x39, 0x94, 0x0c, 0xe8, 'h','e','b','r','e','w','_','t','e','t','h',0,
0x9c, 0xae, 0x0c, 0xe9, 'h','e','b','r','e','w','_','y','o','d',0,
0x31, 0x04, 0x0c, 0xea, 'h','e','b','r','e','w','_','f','i','n','a','l','k','a','p','h',0,
0x39, 0x34, 0x0c, 0xeb, 'h','e','b','r','e','w','_','k','a','p','h',0,
0x72, 0xca, 0x0c, 0xec, 'h','e','b','r','e','w','_','l','a','m','e','d',0,
0x98, 0x5b, 0x0c, 0xed, 'h','e','b','r','e','w','_','f','i','n','a','l','m','e','m',0,
0x9c, 0x73, 0x0c, 0xee, 'h','e','b','r','e','w','_','m','e','m',0,
0x98, 0x80, 0x0c, 0xef, 'h','e','b','r','e','w','_','f','i','n','a','l','n','u','n',0,
0x9c, 0x98, 0x0c, 0xf0, 'h','e','b','r','e','w','_','n','u','n',0,
0xe6, 0xda, 0x0c, 0xf1, 'h','e','b','r','e','w','_','s','a','m','e','c','h',0,
0xe6, 0xea, 0x0c, 0xf1, 'h','e','b','r','e','w','_','s','a','m','e','k','h',0,
0x39, 0x3c, 0x0c, 0xf2, 'h','e','b','r','e','w','_','a','y','i','n',0,
0xcb, 0xfd, 0x0c, 0xf3, 'h','e','b','r','e','w','_','f','i','n','a','l','p','e',0,
0xce, 0x09, 0x0c, 0xf4, 'h','e','b','r','e','w','_','p','e',0,
0x31, 0x61, 0x0c, 0xf5, 'h','e','b','r','e','w','_','f','i','n','a','l','z','a','d','e',0,
0x31, 0x65, 0x0c, 0xf5, 'h','e','b','r','e','w','_','f','i','n','a','l','z','a','d','i',0,
0x39, 0x91, 0x0c, 0xf6, 'h','e','b','r','e','w','_','z','a','d','e',0,
0x39, 0x95, 0x0c, 0xf6, 'h','e','b','r','e','w','_','z','a','d','i',0,
0x39, 0x9c, 0x0c, 0xf7, 'h','e','b','r','e','w','_','q','o','p','h',0,
0x9c, 0x84, 0x0c, 0xf7, 'h','e','b','r','e','w','_','k','u','f',0,
0x39, 0x82, 0x0c, 0xf8, 'h','e','b','r','e','w','_','r','e','s','h',0,
0x39, 0x88, 0x0c, 0xf9, 'h','e','b','r','e','w','_','s','h','i','n',0,
0x9c, 0x91, 0x0c, 0xfa, 'h','e','b','r','e','w','_','t','a','w',0,
0x9c, 0x80, 0x0c, 0xfa, 'h','e','b','r','e','w','_','t','a','f',0,
0xe8, 0x56, 0xff, 0x7e, 'H','e','b','r','e','w','_','s','w','i','t','c','h',0,
0x73, 0x9f, 0x0d, 0xa1, 'T','h','a','i','_','k','o','k','a','i',0,
0xcf, 0x53, 0x0d, 0xa2, 'T','h','a','i','_','k','h','o','k','h','a','i',0,
0x9f, 0x5a, 0x0d, 0xa3, 'T','h','a','i','_','k','h','o','k','h','u','a','t',0,
0x9f, 0x57, 0x0d, 0xa4, 'T','h','a','i','_','k','h','o','k','h','w','a','i',0,
0xcf, 0x74, 0x0d, 0xa5, 'T','h','a','i','_','k','h','o','k','h','o','n',0,
0x7e, 0xd7, 0x0d, 0xa6, 'T','h','a','i','_','k','h','o','r','a','k','h','a','n','g',0,
0xe7, 0xe3, 0x0d, 0xa7, 'T','h','a','i','_','n','g','o','n','g','u',0,
0xcd, 0x18, 0x0d, 0xa8, 'T','h','a','i','_','c','h','o','c','h','a','n',0,
0x9a, 0xb7, 0x0d, 0xa9, 'T','h','a','i','_','c','h','o','c','h','i','n','g',0,
0x9a, 0x97, 0x0d, 0xaa, 'T','h','a','i','_','c','h','o','c','h','a','n','g',0,
0xb9, 0xf9, 0x0d, 0xab, 'T','h','a','i','_','s','o','s','o',0,
0xcd, 0x2b, 0x0d, 0xac, 'T','h','a','i','_','c','h','o','c','h','o','e',0,
0xe9, 0xff, 0x0d, 0xad, 'T','h','a','i','_','y','o','y','i','n','g',0,
0xcd, 0x7d, 0x0d, 0xae, 'T','h','a','i','_','d','o','c','h','a','d','a',0,
0xd2, 0x65, 0x0d, 0xaf, 'T','h','a','i','_','t','o','p','a','t','a','k',0,
0xd1, 0xe0, 0x0d, 0xb0, 'T','h','a','i','_','t','h','o','t','h','a','n',0,
0x84, 0xcf, 0x0d, 0xb1, 'T','h','a','i','_','t','h','o','n','a','n','g','m','o','n','t','h','o',0,
0x92, 0x41, 0x0d, 0xb2, 'T','h','a','i','_','t','h','o','p','h','u','t','h','a','o',0,
0x73, 0xe8, 0x0d, 0xb3, 'T','h','a','i','_','n','o','n','e','n',0,
0x73, 0x1d, 0x0d, 0xb4, 'T','h','a','i','_','d','o','d','e','k',0,
0x74, 0x59, 0x0d, 0xb5, 'T','h','a','i','_','t','o','t','a','o',0,
0xa4, 0x77, 0x0d, 0xb6, 'T','h','a','i','_','t','h','o','t','h','u','n','g',0,
0x48, 0x98, 0x0d, 0xb7, 'T','h','a','i','_','t','h','o','t','h','a','h','a','n',0,
0xa4, 0x5f, 0x0d, 0xb8, 'T','h','a','i','_','t','h','o','t','h','o','n','g',0,
0xb9, 0xcd, 0x0d, 0xb9, 'T','h','a','i','_','n','o','n','u',0,
0x9a, 0x37, 0x0d, 0xba, 'T','h','a','i','_','b','o','b','a','i','m','a','i',0,
0x74, 0x11, 0x0d, 0xbb, 'T','h','a','i','_','p','o','p','l','a',0,
0xa2, 0x37, 0x0d, 0xbc, 'T','h','a','i','_','p','h','o','p','h','u','n','g',0,
0xb9, 0x69, 0x0d, 0xbd, 'T','h','a','i','_','f','o','f','a',0,
0xd0, 0xc0, 0x0d, 0xbe, 'T','h','a','i','_','p','h','o','p','h','a','n',0,
0x73, 0x40, 0x0d, 0xbf, 'T','h','a','i','_','f','o','f','a','n',0,
0x89, 0x81, 0x0d, 0xc0, 'T','h','a','i','_','p','h','o','s','a','m','p','h','a','o',0,
0xb9, 0xaf, 0x0d, 0xc1, 'T','h','a','i','_','m','o','m','a',0,
0x74, 0xb9, 0x0d, 0xc2, 'T','h','a','i','_','y','o','y','a','k',0,
0x74, 0x4b, 0x0d, 0xc3, 'T','h','a','i','_','r','o','r','u','a',0,
0x2e, 0x2d, 0x0d, 0xc4, 'T','h','a','i','_','r','u',0,
0xe7, 0xf7, 0x0d, 0xc5, 'T','h','a','i','_','l','o','l','i','n','g',0,
0x2e, 0x21, 0x0d, 0xc6, 'T','h','a','i','_','l','u',0,
0xe9, 0x84, 0x0d, 0xc7, 'T','h','a','i','_','w','o','w','a','e','n',0,
0xe8, 0xe5, 0x0d, 0xc8, 'T','h','a','i','_','s','o','s','a','l','a',0,
0xe9, 0x43, 0x0d, 0xc9, 'T','h','a','i','_','s','o','r','u','s','i',0,
0x74, 0x5f, 0x0d, 0xca, 'T','h','a','i','_','s','o','s','u','a',0,
0x73, 0x7a, 0x0d, 0xcb, 'T','h','a','i','_','h','o','h','i','p',0,
0xcf, 0xdd, 0x0d, 0xcc, 'T','h','a','i','_','l','o','c','h','u','l','a',0,
0xb9, 0x8f, 0x0d, 0xcd, 'T','h','a','i','_','o','a','n','g',0,
0x9f, 0xbd, 0x0d, 0xce, 'T','h','a','i','_','h','o','n','o','k','h','u','k',0,
0x40, 0x5f, 0x0d, 0xcf, 'T','h','a','i','_','p','a','i','y','a','n','n','o','i',0,
0x73, 0xc3, 0x0d, 0xd0, 'T','h','a','i','_','s','a','r','a','a',0,
0x76, 0x6a, 0x0d, 0xd1, 'T','h','a','i','_','m','a','i','h','a','n','a','k','a','t',0,
0xe7, 0xe7, 0x0d, 0xd2, 'T','h','a','i','_','s','a','r','a','a','a',0,
0xe7, 0xf3, 0x0d, 0xd3, 'T','h','a','i','_','s','a','r','a','a','m',0,
0x73, 0xcb, 0x0d, 0xd4, 'T','h','a','i','_','s','a','r','a','i',0,
0xe7, 0xff, 0x0d, 0xd5, 'T','h','a','i','_','s','a','r','a','i','i',0,
0xe8, 0x13, 0x0d, 0xd6, 'T','h','a','i','_','s','a','r','a','u','e',0,
0xd0, 0x8b, 0x0d, 0xd7, 'T','h','a','i','_','s','a','r','a','u','e','e',0,
0x73, 0xd7, 0x0d, 0xd8, 'T','h','a','i','_','s','a','r','a','u',0,
0xe8, 0x23, 0x0d, 0xd9, 'T','h','a','i','_','s','a','r','a','u','u',0,
0xd0, 0x95, 0x0d, 0xda, 'T','h','a','i','_','p','h','i','n','t','h','u',0,
0x66, 0xc7, 0x0d, 0xde, 'T','h','a','i','_','m','a','i','h','a','n','a','k','a','t','_','m','a','i','t','h','o',0,
0xb9, 0x28, 0x0d, 0xdf, 'T','h','a','i','_','b','a','h','t',0,
0x73, 0xc7, 0x0d, 0xe0, 'T','h','a','i','_','s','a','r','a','e',0,
0xe7, 0xeb, 0x0d, 0xe1, 'T','h','a','i','_','s','a','r','a','a','e',0,
0x73, 0xd1, 0x0d, 0xe2, 'T','h','a','i','_','s','a','r','a','o',0,
0x2b, 0xdc, 0x0d, 0xe3, 'T','h','a','i','_','s','a','r','a','a','i','m','a','i','m','u','a','n',0,
0x57, 0x93, 0x0d, 0xe4, 'T','h','a','i','_','s','a','r','a','a','i','m','a','i','m','a','l','a','i',0,
0xed, 0xcd, 0x0d, 0xe5, 'T','h','a','i','_','l','a','k','k','h','a','n','g','y','a','o',0,
0x9e, 0x75, 0x0d, 0xe6, 'T','h','a','i','_','m','a','i','y','a','m','o','k',0,
0x3c, 0x89, 0x0d, 0xe7, 'T','h','a','i','_','m','a','i','t','a','i','k','h','u',0,
0x73, 0x51, 0x0d, 0xe8, 'T','h','a','i','_','m','a','i','e','k',0,
0xe7, 0x47, 0x0d, 0xe9, 'T','h','a','i','_','m','a','i','t','h','o',0,
0xe7, 0x55, 0x0d, 0xea, 'T','h','a','i','_','m','a','i','t','r','i',0,
0xec, 0x53, 0x0d, 0xeb, 'T','h','a','i','_','m','a','i','c','h','a','t','t','a','w','a',0,
0x16, 0x3e, 0x0d, 0xec, 'T','h','a','i','_','t','h','a','n','t','h','a','k','h','a','t',0,
0xa0, 0x0e, 0x0d, 0xed, 'T','h','a','i','_','n','i','k','h','a','h','i','t',0,
0xe7, 0x8c, 0x0d, 0xf0, 'T','h','a','i','_','l','e','k','s','u','n',0,
0xcf, 0x57, 0x0d, 0xf1, 'T','h','a','i','_','l','e','k','n','u','n','g',0,
0xcf, 0x67, 0x0d, 0xf2, 'T','h','a','i','_','l','e','k','s','o','n','g',0,
0xe7, 0x63, 0x0d, 0xf3, 'T','h','a','i','_','l','e','k','s','a','m',0,
0x73, 0x83, 0x0d, 0xf4, 'T','h','a','i','_','l','e','k','s','i',0,
0x73, 0x65, 0x0d, 0xf5, 'T','h','a','i','_','l','e','k','h','a',0,
0xe7, 0x51, 0x0d, 0xf6, 'T','h','a','i','_','l','e','k','h','o','k',0,
0xce, 0xc6, 0x0d, 0xf7, 'T','h','a','i','_','l','e','k','c','h','e','t',0,
0xcf, 0x12, 0x0d, 0xf8, 'T','h','a','i','_','l','e','k','p','a','e','t',0,
0xe7, 0x45, 0x0d, 0xf9, 'T','h','a','i','_','l','e','k','k','a','o',0,
0x15, 0x72, 0xff, 0x31, 'H','a','n','g','u','l',0,
0x74, 0x0c, 0xff, 0x32, 'H','a','n','g','u','l','_','S','t','a','r','t',0,
0x5c, 0x6c, 0xff, 0x33, 'H','a','n','g','u','l','_','E','n','d',0,
0x72, 0xd5, 0xff, 0x34, 'H','a','n','g','u','l','_','H','a','n','j','a',0,
0xb9, 0x4d, 0xff, 0x35, 'H','a','n','g','u','l','_','J','a','m','o',0,
0xe8, 0x11, 0xff, 0x36, 'H','a','n','g','u','l','_','R','o','m','a','j','a',0,
0x33, 0x3e, 0xff, 0x37, 'H','a','n','g','u','l','_','C','o','d','e','i','n','p','u','t',0,
0xe6, 0xb5, 0xff, 0x38, 'H','a','n','g','u','l','_','J','e','o','n','j','a',0,
0x72, 0x75, 0xff, 0x39, 'H','a','n','g','u','l','_','B','a','n','j','a',0,
0x9e, 0x95, 0xff, 0x3a, 'H','a','n','g','u','l','_','P','r','e','H','a','n','j','a',0,
0x43, 0x35, 0xff, 0x3b, 'H','a','n','g','u','l','_','P','o','s','t','H','a','n','j','a',0,
0x9a, 0x01, 0xff, 0x3c, 'H','a','n','g','u','l','_','S','i','n','g','l','e','C','a','n','d','i','d','a','t','e',0,
0x32, 0x01, 0xff, 0x3d, 'H','a','n','g','u','l','_','M','u','l','t','i','p','l','e','C','a','n','d','i','d','a','t','e',0,
0x6a, 0x01, 0xff, 0x3e, 'H','a','n','g','u','l','_','P','r','e','v','i','o','u','s','C','a','n','d','i','d','a','t','e',0,
0xd0, 0x7a, 0xff, 0x3f, 'H','a','n','g','u','l','_','S','p','e','c','i','a','l',0,
0xec, 0xd6, 0xff, 0x7e, 'H','a','n','g','u','l','_','s','w','i','t','c','h',0,
0xe7, 0x51, 0x0e, 0xa1, 'H','a','n','g','u','l','_','K','i','y','e','o','g',0,
0x12, 0x51, 0x0e, 0xa2, 'H','a','n','g','u','l','_','S','s','a','n','g','K','i','y','e','o','g',0,
0x7a, 0x9d, 0x0e, 0xa3, 'H','a','n','g','u','l','_','K','i','y','e','o','g','S','i','o','s',0,
0x73, 0x74, 0x0e, 0xa4, 'H','a','n','g','u','l','_','N','i','e','u','n',0,
0x79, 0x50, 0x0e, 0xa5, 'H','a','n','g','u','l','_','N','i','e','u','n','J','i','e','u','j',0,
0x79, 0x2e, 0x0e, 0xa6, 'H','a','n','g','u','l','_','N','i','e','u','n','H','i','e','u','h',0,
0xe6, 0x0a, 0x0e, 0xa7, 'H','a','n','g','u','l','_','D','i','k','e','u','d',0,
0x11, 0x0a, 0x0e, 0xa8, 'H','a','n','g','u','l','_','S','s','a','n','g','D','i','k','e','u','d',0,
0x73, 0xb2, 0x0e, 0xa9, 'H','a','n','g','u','l','_','R','i','e','u','l',0,
0x03, 0x11, 0x0e, 0xaa, 'H','a','n','g','u','l','_','R','i','e','u','l','K','i','y','e','o','g',0,
0x81, 0x43, 0x0e, 0xab, 'H','a','n','g','u','l','_','R','i','e','u','l','M','i','e','u','m',0,
0x81, 0x68, 0x0e, 0xac, 'H','a','n','g','u','l','_','R','i','e','u','l','P','i','e','u','b',0,
0x40, 0xad, 0x0e, 0xad, 'H','a','n','g','u','l','_','R','i','e','u','l','S','i','o','s',0,
0x81, 0xba, 0x0e, 0xae, 'H','a','n','g','u','l','_','R','i','e','u','l','T','i','e','u','t',0,
0x03, 0x2c, 0x0e, 0xaf, 'H','a','n','g','u','l','_','R','i','e','u','l','P','h','i','e','u','f',0,
0x80, 0xee, 0x0e, 0xb0, 'H','a','n','g','u','l','_','R','i','e','u','l','H','i','e','u','h',0,
0x73, 0x63, 0x0e, 0xb1, 'H','a','n','g','u','l','_','M','i','e','u','m',0,
0x73, 0x88, 0x0e, 0xb2, 'H','a','n','g','u','l','_','P','i','e','u','b',0,
0x89, 0x08, 0x0e, 0xb3, 'H','a','n','g','u','l','_','S','s','a','n','g','P','i','e','u','b',0,
0x3e, 0x0d, 0x0e, 0xb4, 'H','a','n','g','u','l','_','P','i','e','u','b','S','i','o','s',0,
0xb9, 0xbd, 0x0e, 0xb5, 'H','a','n','g','u','l','_','S','i','o','s',0,
0x44, 0x7d, 0x0e, 0xb6, 'H','a','n','g','u','l','_','S','s','a','n','g','S','i','o','s',0,
0x73, 0x2f, 0x0e, 0xb7, 'H','a','n','g','u','l','_','I','e','u','n','g',0,
0x73, 0x30, 0x0e, 0xb8, 'H','a','n','g','u','l','_','J','i','e','u','j',0,
0x88, 0xb0, 0x0e, 0xb9, 'H','a','n','g','u','l','_','S','s','a','n','g','J','i','e','u','j',0,
0x72, 0xb9, 0x0e, 0xba, 'H','a','n','g','u','l','_','C','i','e','u','c',0,
0xe6, 0xd7, 0x0e, 0xbb, 'H','a','n','g','u','l','_','K','h','i','e','u','q',0,
0x73, 0xda, 0x0e, 0xbc, 'H','a','n','g','u','l','_','T','i','e','u','t',0,
0xe7, 0x6c, 0x0e, 0xbd, 'H','a','n','g','u','l','_','P','h','i','e','u','f',0,
0x73, 0x0e, 0x0e, 0xbe, 'H','a','n','g','u','l','_','H','i','e','u','h',0,
0x56, 0xc7, 0x0e, 0xbf, 'H','a','n','g','u','l','_','A',0,
0xad, 0xd3, 0x0e, 0xc0, 'H','a','n','g','u','l','_','A','E',0,
0xad, 0xff, 0x0e, 0xc1, 'H','a','n','g','u','l','_','Y','A',0,
0x5c, 0x43, 0x0e, 0xc2, 'H','a','n','g','u','l','_','Y','A','E',0,
0xad, 0xe5, 0x0e, 0xc3, 'H','a','n','g','u','l','_','E','O',0,
0x56, 0xcb, 0x0e, 0xc4, 'H','a','n','g','u','l','_','E',0,
0x5c, 0x55, 0x0e, 0xc5, 'H','a','n','g','u','l','_','Y','E','O',0,
0xae, 0x03, 0x0e, 0xc6, 'H','a','n','g','u','l','_','Y','E',0,
0x56, 0xd5, 0x0e, 0xc7, 'H','a','n','g','u','l','_','O',0,
0xad, 0xfb, 0x0e, 0xc8, 'H','a','n','g','u','l','_','W','A',0,
0x5c, 0x3b, 0x0e, 0xc9, 'H','a','n','g','u','l','_','W','A','E',0,
0xad, 0xef, 0x0e, 0xca, 'H','a','n','g','u','l','_','O','E',0,
0xae, 0x0d, 0x0e, 0xcb, 'H','a','n','g','u','l','_','Y','O',0,
0x56, 0xdb, 0x0e, 0xcc, 'H','a','n','g','u','l','_','U',0,
0x5c, 0x4d, 0x0e, 0xcd, 'H','a','n','g','u','l','_','W','E','O',0,
0xad, 0xff, 0x0e, 0xce, 'H','a','n','g','u','l','_','W','E',0,
0xae, 0x03, 0x0e, 0xcf, 'H','a','n','g','u','l','_','W','I',0,
0xae, 0x13, 0x0e, 0xd0, 'H','a','n','g','u','l','_','Y','U',0,
0xad, 0xeb, 0x0e, 0xd1, 'H','a','n','g','u','l','_','E','U',0,
0xae, 0x07, 0x0e, 0xd2, 'H','a','n','g','u','l','_','Y','I',0,
0x56, 0xcf, 0x0e, 0xd3, 'H','a','n','g','u','l','_','I',0,
0x96, 0x51, 0x0e, 0xd4, 'H','a','n','g','u','l','_','J','_','K','i','y','e','o','g',0,
0xf2, 0x51, 0x0e, 0xd5, 'H','a','n','g','u','l','_','J','_','S','s','a','n','g','K','i','y','e','o','g',0,
0x6a, 0x9d, 0x0e, 0xd6, 'H','a','n','g','u','l','_','J','_','K','i','y','e','o','g','S','i','o','s',0,
0xca, 0xf4, 0x0e, 0xd7, 'H','a','n','g','u','l','_','J','_','N','i','e','u','n',0,
0x69, 0x50, 0x0e, 0xd8, 'H','a','n','g','u','l','_','J','_','N','i','e','u','n','J','i','e','u','j',0,
0x69, 0x2e, 0x0e, 0xd9, 'H','a','n','g','u','l','_','J','_','N','i','e','u','n','H','i','e','u','h',0,
0x95, 0x0a, 0x0e, 0xda, 'H','a','n','g','u','l','_','J','_','D','i','k','e','u','d',0,
0xcb, 0x32, 0x0e, 0xdb, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l',0,
0xe3, 0x11, 0x0e, 0xdc, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','K','i','y','e','o','g',0,
0x71, 0x43, 0x0e, 0xdd, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','M','i','e','u','m',0,
0x71, 0x68, 0x0e, 0xde, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','P','i','e','u','b',0,
0xb8, 0xad, 0x0e, 0xdf, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','S','i','o','s',0,
0x71, 0xba, 0x0e, 0xe0, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','T','i','e','u','t',0,
0xe3, 0x2c, 0x0e, 0xe1, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','P','h','i','e','u','f',0,
0x70, 0xee, 0x0e, 0xe2, 'H','a','n','g','u','l','_','J','_','R','i','e','u','l','H','i','e','u','h',0,
0xca, 0xe3, 0x0e, 0xe3, 'H','a','n','g','u','l','_','J','_','M','i','e','u','m',0,
0xcb, 0x08, 0x0e, 0xe4, 'H','a','n','g','u','l','_','J','_','P','i','e','u','b',0,
0xb6, 0x0d, 0x0e, 0xe5, 'H','a','n','g','u','l','_','J','_','P','i','e','u','b','S','i','o','s',0,
0xe5, 0x7d, 0x0e, 0xe6, 'H','a','n','g','u','l','_','J','_','S','i','o','s',0,
0xbc, 0x7d, 0x0e, 0xe7, 'H','a','n','g','u','l','_','J','_','S','s','a','n','g','S','i','o','s',0,
0xca, 0xaf, 0x0e, 0xe8, 'H','a','n','g','u','l','_','J','_','I','e','u','n','g',0,
0xca, 0xb0, 0x0e, 0xe9, 'H','a','n','g','u','l','_','J','_','J','i','e','u','j',0,
0xca, 0x39, 0x0e, 0xea, 'H','a','n','g','u','l','_','J','_','C','i','e','u','c',0,
0x95, 0xd7, 0x0e, 0xeb, 'H','a','n','g','u','l','_','J','_','K','h','i','e','u','q',0,
0xcb, 0x5a, 0x0e, 0xec, 'H','a','n','g','u','l','_','J','_','T','i','e','u','t',0,
0x96, 0x6c, 0x0e, 0xed, 'H','a','n','g','u','l','_','J','_','P','h','i','e','u','f',0,
0xca, 0x8e, 0x0e, 0xee, 'H','a','n','g','u','l','_','J','_','H','i','e','u','h',0,
0x98, 0xae, 0x0e, 0xef, 'H','a','n','g','u','l','_','R','i','e','u','l','Y','e','o','r','i','n','H','i','e','u','h',0,
0x7f, 0x63, 0x0e, 0xf0, 'H','a','n','g','u','l','_','S','u','n','k','y','e','o','n','g','e','u','m','M','i','e','u','m',0,
0x7f, 0x88, 0x0e, 0xf1, 'H','a','n','g','u','l','_','S','u','n','k','y','e','o','n','g','e','u','m','P','i','e','u','b',0,
0xce, 0x0d, 0x0e, 0xf2, 'H','a','n','g','u','l','_','P','a','n','S','i','o','s',0,
0xb1, 0xcf, 0x0e, 0xf3, 'H','a','n','g','u','l','_','K','k','o','g','j','i','D','a','l','r','i','n','I','e','u','n','g',0,
0xff, 0x6c, 0x0e, 0xf4, 'H','a','n','g','u','l','_','S','u','n','k','y','e','o','n','g','e','u','m','P','h','i','e','u','f',0,
0x20, 0xae, 0x0e, 0xf5, 'H','a','n','g','u','l','_','Y','e','o','r','i','n','H','i','e','u','h',0,
0x72, 0x8f, 0x0e, 0xf6, 'H','a','n','g','u','l','_','A','r','a','e','A',0,
0xe5, 0x63, 0x0e, 0xf7, 'H','a','n','g','u','l','_','A','r','a','e','A','E',0,
0x2c, 0x0d, 0x0e, 0xf8, 'H','a','n','g','u','l','_','J','_','P','a','n','S','i','o','s',0,
0xb1, 0xcf, 0x0e, 0xf9, 'H','a','n','g','u','l','_','J','_','K','k','o','g','j','i','D','a','l','r','i','n','I','e','u','n','g',0,
0x00, 0xae, 0x0e, 0xfa, 'H','a','n','g','u','l','_','J','_','Y','e','o','r','i','n','H','i','e','u','h',0,
0x6f, 0xe0, 0x0e, 0xff, 'K','o','r','e','a','n','_','W','o','n',0,
0x30, 0xb5, 0x14, 0xa1, 'A','r','m','e','n','i','a','n','_','e','t','e','r','n','i','t','y',0,
0x8a, 0x25, 0x14, 0xa2, 'A','r','m','e','n','i','a','n','_','l','i','g','a','t','u','r','e','_','e','w',0,
0x63, 0xa6, 0x14, 0xa3, 'A','r','m','e','n','i','a','n','_','f','u','l','l','_','s','t','o','p',0,
0x36, 0x12, 0x14, 0xa3, 'A','r','m','e','n','i','a','n','_','v','e','r','j','a','k','e','t',0,
0xca, 0x48, 0x14, 0xa4, 'A','r','m','e','n','i','a','n','_','p','a','r','e','n','r','i','g','h','t',0,
0x64, 0xb4, 0x14, 0xa5, 'A','r','m','e','n','i','a','n','_','p','a','r','e','n','l','e','f','t',0,
0x93, 0x08, 0x14, 0xa6, 'A','r','m','e','n','i','a','n','_','g','u','i','l','l','e','m','o','t','r','i','g','h','t',0,
0x49, 0x14, 0x14, 0xa7, 'A','r','m','e','n','i','a','n','_','g','u','i','l','l','e','m','o','t','l','e','f','t',0,
0x96, 0x42, 0x14, 0xa8, 'A','r','m','e','n','i','a','n','_','e','m','_','d','a','s','h',0,
0x79, 0x1a, 0x14, 0xa9, 'A','r','m','e','n','i','a','n','_','d','o','t',0,
0x98, 0x72, 0x14, 0xa9, 'A','r','m','e','n','i','a','n','_','m','i','j','a','k','e','t',0,
0x50, 0x2b, 0x14, 0xaa, 'A','r','m','e','n','i','a','n','_','s','e','p','a','r','a','t','i','o','n','_','m','a','r','k',0,
0x79, 0x1e, 0x14, 0xaa, 'A','r','m','e','n','i','a','n','_','b','u','t',0,
0xe5, 0x77, 0x14, 0xab, 'A','r','m','e','n','i','a','n','_','c','o','m','m','a',0,
0x96, 0x62, 0x14, 0xac, 'A','r','m','e','n','i','a','n','_','e','n','_','d','a','s','h',0,
0xcc, 0xa8, 0x14, 0xad, 'A','r','m','e','n','i','a','n','_','h','y','p','h','e','n',0,
0x37, 0xb9, 0x14, 0xad, 'A','r','m','e','n','i','a','n','_','y','e','n','t','a','m','n','a',0,
0x2f, 0x21, 0x14, 0xae, 'A','r','m','e','n','i','a','n','_','e','l','l','i','p','s','i','s',0,
0xcb, 0xd7, 0x14, 0xaf, 'A','r','m','e','n','i','a','n','_','e','x','c','l','a','m',0,
0xca, 0x9d, 0x14, 0xaf, 'A','r','m','e','n','i','a','n','_','a','m','a','n','a','k',0,
0xca, 0x0c, 0x14, 0xb0, 'A','r','m','e','n','i','a','n','_','a','c','c','e','n','t',0,
0xcc, 0xd8, 0x14, 0xb0, 'A','r','m','e','n','i','a','n','_','s','h','e','s','h','t',0,
0x37, 0x20, 0x14, 0xb1, 'A','r','m','e','n','i','a','n','_','q','u','e','s','t','i','o','n',0,
0xcc, 0x91, 0x14, 0xb1, 'A','r','m','e','n','i','a','n','_','p','a','r','u','y','k',0,
0x78, 0x30, 0x14, 0xb2, 'A','r','m','e','n','i','a','n','_','A','Y','B',0,
0x79, 0x10, 0x14, 0xb3, 'A','r','m','e','n','i','a','n','_','a','y','b',0,
0x78, 0x18, 0x14, 0xb4, 'A','r','m','e','n','i','a','n','_','B','E','N',0,
0x78, 0xf8, 0x14, 0xb5, 'A','r','m','e','n','i','a','n','_','b','e','n',0,
0x78, 0x33, 0x14, 0xb6, 'A','r','m','e','n','i','a','n','_','G','I','M',0,
0x79, 0x13, 0x14, 0xb7, 'A','r','m','e','n','i','a','n','_','g','i','m',0,
0xbb, 0xe5, 0x14, 0xb8, 'A','r','m','e','n','i','a','n','_','D','A',0,
0xbc, 0x45, 0x14, 0xb9, 'A','r','m','e','n','i','a','n','_','d','a',0,
0xf1, 0x1a, 0x14, 0xba, 'A','r','m','e','n','i','a','n','_','Y','E','C','H',0,
0xf2, 0xfa, 0x14, 0xbb, 'A','r','m','e','n','i','a','n','_','y','e','c','h',0,
0xbc, 0x11, 0x14, 0xbc, 'A','r','m','e','n','i','a','n','_','Z','A',0,
0xbc, 0x71, 0x14, 0xbd, 'A','r','m','e','n','i','a','n','_','z','a',0,
0x5d, 0xd3, 0x14, 0xbe, 'A','r','m','e','n','i','a','n','_','E',0,
0x5d, 0xf3, 0x14, 0xbf, 'A','r','m','e','n','i','a','n','_','e',0,
0xbb, 0xf2, 0x14, 0xc0, 'A','r','m','e','n','i','a','n','_','A','T',0,
0xbc, 0x52, 0x14, 0xc1, 'A','r','m','e','n','i','a','n','_','a','t',0,
0xbc, 0x13, 0x14, 0xc2, 'A','r','m','e','n','i','a','n','_','T','O',0,
0xbc, 0x73, 0x14, 0xc3, 'A','r','m','e','n','i','a','n','_','t','o',0,
0x78, 0x75, 0x14, 0xc4, 'A','r','m','e','n','i','a','n','_','Z','H','E',0,
0x79, 0x55, 0x14, 0xc5, 'A','r','m','e','n','i','a','n','_','z','h','e',0,
0x78, 0x41, 0x14, 0xc6, 'A','r','m','e','n','i','a','n','_','I','N','I',0,
0x79, 0x21, 0x14, 0xc7, 'A','r','m','e','n','i','a','n','_','i','n','i',0,
0xf1, 0x2c, 0x14, 0xc8, 'A','r','m','e','n','i','a','n','_','L','Y','U','N',0,
0xf3, 0x0c, 0x14, 0xc9, 'A','r','m','e','n','i','a','n','_','l','y','u','n',0,
0x78, 0x39, 0x14, 0xca, 'A','r','m','e','n','i','a','n','_','K','H','E',0,
0x79, 0x19, 0x14, 0xcb, 'A','r','m','e','n','i','a','n','_','k','h','e',0,
0x78, 0x6f, 0x14, 0xcc, 'A','r','m','e','n','i','a','n','_','T','S','A',0,
0x79, 0x4f, 0x14, 0xcd, 'A','r','m','e','n','i','a','n','_','t','s','a',0,
0x78, 0x3c, 0x14, 0xce, 'A','r','m','e','n','i','a','n','_','K','E','N',0,
0x79, 0x1c, 0x14, 0xcf, 'A','r','m','e','n','i','a','n','_','k','e','n',0,
0xbb, 0xfb, 0x14, 0xd0, 'A','r','m','e','n','i','a','n','_','H','O',0,
0xbc, 0x5b, 0x14, 0xd1, 'A','r','m','e','n','i','a','n','_','h','o',0,
0x78, 0x3d, 0x14, 0xd2, 'A','r','m','e','n','i','a','n','_','D','Z','A',0,
0x79, 0x1d, 0x14, 0xd3, 'A','r','m','e','n','i','a','n','_','d','z','a',0,
0xf0, 0x9e, 0x14, 0xd4, 'A','r','m','e','n','i','a','n','_','G','H','A','T',0,
0xf2, 0x7e, 0x14, 0xd5, 'A','r','m','e','n','i','a','n','_','g','h','a','t',0,
0xf0, 0xf1, 0x14, 0xd6, 'A','r','m','e','n','i','a','n','_','T','C','H','E',0,
0xf2, 0xd1, 0x14, 0xd7, 'A','r','m','e','n','i','a','n','_','t','c','h','e',0,
0x78, 0x44, 0x14, 0xd8, 'A','r','m','e','n','i','a','n','_','M','E','N',0,
0x79, 0x24, 0x14, 0xd9, 'A','r','m','e','n','i','a','n','_','m','e','n',0,
0xbb, 0xf5, 0x14, 0xda, 'A','r','m','e','n','i','a','n','_','H','I',0,
0xbc, 0x55, 0x14, 0xdb, 'A','r','m','e','n','i','a','n','_','h','i',0,
0xbc, 0x0d, 0x14, 0xdc, 'A','r','m','e','n','i','a','n','_','N','U',0,
0xbc, 0x6d, 0x14, 0xdd, 'A','r','m','e','n','i','a','n','_','n','u',0,
0x78, 0x55, 0x14, 0xde, 'A','r','m','e','n','i','a','n','_','S','H','A',0,
0x79, 0x35, 0x14, 0xdf, 'A','r','m','e','n','i','a','n','_','s','h','a',0,
0xbc, 0x17, 0x14, 0xe0, 'A','r','m','e','n','i','a','n','_','V','O',0,
0xbc, 0x77, 0x14, 0xe1, 'A','r','m','e','n','i','a','n','_','v','o',0,
0x78, 0x15, 0x14, 0xe2, 'A','r','m','e','n','i','a','n','_','C','H','A',0,
0x78, 0xf5, 0x14, 0xe3, 'A','r','m','e','n','i','a','n','_','c','h','a',0,
0xbc, 0x01, 0x14, 0xe4, 'A','r','m','e','n','i','a','n','_','P','E',0,
0xbc, 0x61, 0x14, 0xe5, 'A','r','m','e','n','i','a','n','_','p','e',0,
0xbb, 0xf5, 0x14, 0xe6, 'A','r','m','e','n','i','a','n','_','J','E',0,
0xbc, 0x55, 0x14, 0xe7, 'A','r','m','e','n','i','a','n','_','j','e',0,
0xbc, 0x01, 0x14, 0xe8, 'A','r','m','e','n','i','a','n','_','R','A',0,
0xbc, 0x61, 0x14, 0xe9, 'A','r','m','e','n','i','a','n','_','r','a',0,
0xbc, 0x07, 0x14, 0xea, 'A','r','m','e','n','i','a','n','_','S','E',0,
0xbc, 0x67, 0x14, 0xeb, 'A','r','m','e','n','i','a','n','_','s','e',0,
0x78, 0x70, 0x14, 0xec, 'A','r','m','e','n','i','a','n','_','V','E','V',0,
0x79, 0x50, 0x14, 0xed, 'A','r','m','e','n','i','a','n','_','v','e','v',0,
0xf1, 0x6c, 0x14, 0xee, 'A','r','m','e','n','i','a','n','_','T','Y','U','N',0,
0xf3, 0x4c, 0x14, 0xef, 'A','r','m','e','n','i','a','n','_','t','y','u','n',0,
0xbc, 0x05, 0x14, 0xf0, 'A','r','m','e','n','i','a','n','_','R','E',0,
0xbc, 0x65, 0x14, 0xf1, 'A','r','m','e','n','i','a','n','_','r','e',0,
0x78, 0x7d, 0x14, 0xf2, 'A','r','m','e','n','i','a','n','_','T','S','O',0,
0x79, 0x5d, 0x14, 0xf3, 'A','r','m','e','n','i','a','n','_','t','s','o',0,
0xf1, 0x7c, 0x14, 0xf4, 'A','r','m','e','n','i','a','n','_','V','Y','U','N',0,
0xf3, 0x5c, 0x14, 0xf5, 'A','r','m','e','n','i','a','n','_','v','y','u','n',0,
0xf1, 0x50, 0x14, 0xf6, 'A','r','m','e','n','i','a','n','_','P','Y','U','R',0,
0xf3, 0x30, 0x14, 0xf7, 'A','r','m','e','n','i','a','n','_','p','y','u','r',0,
0xbb, 0xf7, 0x14, 0xf8, 'A','r','m','e','n','i','a','n','_','K','E',0,
0xbc, 0x57, 0x14, 0xf9, 'A','r','m','e','n','i','a','n','_','k','e',0,
0x5d, 0xdd, 0x14, 0xfa, 'A','r','m','e','n','i','a','n','_','O',0,
0x5d, 0xfd, 0x14, 0xfb, 'A','r','m','e','n','i','a','n','_','o',0,
0xbb, 0xed, 0x14, 0xfc, 'A','r','m','e','n','i','a','n','_','F','E',0,
0xbc, 0x4d, 0x14, 0xfd, 'A','r','m','e','n','i','a','n','_','f','e',0,
0xbe, 0x4d, 0x14, 0xfe, 'A','r','m','e','n','i','a','n','_','a','p','o','s','t','r','o','p','h','e',0,
0x40, 0x68, 0x14, 0xff, 'A','r','m','e','n','i','a','n','_','s','e','c','t','i','o','n','_','s','i','g','n',0,
0xc1, 0x0c, 0x15, 0xd0, 'G','e','o','r','g','i','a','n','_','a','n',0,
0x82, 0x70, 0x15, 0xd1, 'G','e','o','r','g','i','a','n','_','b','a','n',0,
0x82, 0x84, 0x15, 0xd2, 'G','e','o','r','g','i','a','n','_','g','a','n',0,
0x82, 0x94, 0x15, 0xd3, 'G','e','o','r','g','i','a','n','_','d','o','n',0,
0xc1, 0x14, 0x15, 0xd4, 'G','e','o','r','g','i','a','n','_','e','n',0,
0x82, 0xd0, 0x15, 0xd5, 'G','e','o','r','g','i','a','n','_','v','i','n',0,
0x82, 0xd8, 0x15, 0xd6, 'G','e','o','r','g','i','a','n','_','z','e','n',0,
0x82, 0xb8, 0x15, 0xd7, 'G','e','o','r','g','i','a','n','_','t','a','n',0,
0xc1, 0x1c, 0x15, 0xd8, 'G','e','o','r','g','i','a','n','_','i','n',0,
0x82, 0x94, 0x15, 0xd9, 'G','e','o','r','g','i','a','n','_','k','a','n',0,
0x82, 0x9d, 0x15, 0xda, 'G','e','o','r','g','i','a','n','_','l','a','s',0,
0x82, 0x9c, 0x15, 0xdb, 'G','e','o','r','g','i','a','n','_','m','a','n',0,
0x82, 0xa4, 0x15, 0xdc, 'G','e','o','r','g','i','a','n','_','n','a','r',0,
0xc1, 0x28, 0x15, 0xdd, 'G','e','o','r','g','i','a','n','_','o','n',0,
0x82, 0xac, 0x15, 0xde, 'G','e','o','r','g','i','a','n','_','p','a','r',0,
0x06, 0x14, 0x15, 0xdf, 'G','e','o','r','g','i','a','n','_','z','h','a','r',0,
0x82, 0xa7, 0x15, 0xe0, 'G','e','o','r','g','i','a','n','_','r','a','e',0,
0x82, 0xb4, 0x15, 0xe1, 'G','e','o','r','g','i','a','n','_','s','a','n',0,
0x82, 0xbc, 0x15, 0xe2, 'G','e','o','r','g','i','a','n','_','t','a','r',0,
0xc1, 0x34, 0x15, 0xe3, 'G','e','o','r','g','i','a','n','_','u','n',0,
0x05, 0xc4, 0x15, 0xe4, 'G','e','o','r','g','i','a','n','_','p','h','a','r',0,
0x05, 0x9c, 0x15, 0xe5, 'G','e','o','r','g','i','a','n','_','k','h','a','r',0,
0x05, 0x78, 0x15, 0xe6, 'G','e','o','r','g','i','a','n','_','g','h','a','n',0,
0x82, 0xb0, 0x15, 0xe7, 'G','e','o','r','g','i','a','n','_','q','a','r',0,
0x05, 0xe8, 0x15, 0xe8, 'G','e','o','r','g','i','a','n','_','s','h','i','n',0,
0x05, 0x68, 0x15, 0xe9, 'G','e','o','r','g','i','a','n','_','c','h','i','n',0,
0x82, 0x74, 0x15, 0xea, 'G','e','o','r','g','i','a','n','_','c','a','n',0,
0x82, 0x9e, 0x15, 0xeb, 'G','e','o','r','g','i','a','n','_','j','i','l',0,
0x82, 0x82, 0x15, 0xec, 'G','e','o','r','g','i','a','n','_','c','i','l',0,
0x05, 0x5c, 0x15, 0xed, 'G','e','o','r','g','i','a','n','_','c','h','a','r',0,
0x82, 0xc8, 0x15, 0xee, 'G','e','o','r','g','i','a','n','_','x','a','n',0,
0x05, 0x90, 0x15, 0xef, 'G','e','o','r','g','i','a','n','_','j','h','a','n',0,
0x82, 0x7f, 0x15, 0xf0, 'G','e','o','r','g','i','a','n','_','h','a','e',0,
0xc1, 0x11, 0x15, 0xf1, 'G','e','o','r','g','i','a','n','_','h','e',0,
0x82, 0x8f, 0x15, 0xf2, 'G','e','o','r','g','i','a','n','_','h','i','e',0,
0xc1, 0x2f, 0x15, 0xf3, 'G','e','o','r','g','i','a','n','_','w','e',0,
0x82, 0x8c, 0x15, 0xf4, 'G','e','o','r','g','i','a','n','_','h','a','r',0,
0x82, 0x9b, 0x15, 0xf5, 'G','e','o','r','g','i','a','n','_','h','o','e',0,
0xc1, 0x11, 0x15, 0xf6, 'G','e','o','r','g','i','a','n','_','f','i',0,
0xb5, 0x4a, 0x16, 0xa2, 'C','c','e','d','i','l','l','a','a','b','o','v','e','d','o','t',0,
0xbc, 0x4a, 0x16, 0xa3, 'X','a','b','o','v','e','d','o','t',0,
0xb5, 0x4a, 0x16, 0xa5, 'Q','a','b','o','v','e','d','o','t',0,
0x15, 0xb5, 0x16, 0xa6, 'I','b','r','e','v','e',0,
0x00, 0xd7, 0x16, 0xa7, 'I','E',0,
0x00, 0xf9, 0x16, 0xa8, 'U','O',0,
0x32, 0xa7, 0x16, 0xa9, 'Z','s','t','r','o','k','e',0,
0x15, 0x2c, 0x16, 0xaa, 'G','c','a','r','o','n',0,
0x2c, 0x96, 0x16, 0xaf, 'O','b','a','r','r','e','d',0,
0xb5, 0x4a, 0x16, 0xb2, 'c','c','e','d','i','l','l','a','a','b','o','v','e','d','o','t',0,
0xdc, 0x4a, 0x16, 0xb3, 'x','a','b','o','v','e','d','o','t',0,
0x16, 0x2c, 0x16, 0xb4, 'O','c','a','r','o','n',0,
0xd5, 0x4a, 0x16, 0xb5, 'q','a','b','o','v','e','d','o','t',0,
0x19, 0xb5, 0x16, 0xb6, 'i','b','r','e','v','e',0,
0x01, 0x37, 0x16, 0xb7, 'i','e',0,
0x01, 0x59, 0x16, 0xb8, 'u','o',0,
0x3a, 0xa7, 0x16, 0xb9, 'z','s','t','r','o','k','e',0,
0x19, 0x2c, 0x16, 0xba, 'g','c','a','r','o','n',0,
0x1a, 0x2c, 0x16, 0xbd, 'o','c','a','r','o','n',0,
0x34, 0x96, 0x16, 0xbf, 'o','b','a','r','r','e','d',0,
0x09, 0x57, 0x16, 0xc6, 'S','C','H','W','A',0,
0x0d, 0x37, 0x16, 0xf6, 's','c','h','w','a',0,
0xb1, 0x4a, 0x16, 0xd1, 'L','b','e','l','o','w','d','o','t',0,
0x8c, 0x4a, 0x16, 0xd2, 'L','s','t','r','o','k','e','b','e','l','o','w','d','o','t',0,
0xd1, 0x4a, 0x16, 0xe1, 'l','b','e','l','o','w','d','o','t',0,
0x8c, 0x4a, 0x16, 0xe2, 'l','s','t','r','o','k','e','b','e','l','o','w','d','o','t',0,
0x16, 0x45, 0x16, 0xd3, 'G','t','i','l','d','e',0,
0x1a, 0x45, 0x16, 0xe3, 'g','t','i','l','d','e',0,
0xa6, 0x4a, 0x1e, 0xa0, 'A','b','e','l','o','w','d','o','t',0,
0xc6, 0x4a, 0x1e, 0xa1, 'a','b','e','l','o','w','d','o','t',0,
0x0a, 0x55, 0x1e, 0xa2, 'A','h','o','o','k',0,
0x0c, 0x55, 0x1e, 0xa3, 'a','h','o','o','k',0,
0x16, 0x89, 0x1e, 0xa4, 'A','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
0x16, 0x89, 0x1e, 0xa5, 'a','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
0x17, 0x15, 0x1e, 0xa6, 'A','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
0x17, 0x15, 0x1e, 0xa7, 'a','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
0x0b, 0x65, 0x1e, 0xa8, 'A','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
0x0b, 0x65, 0x1e, 0xa9, 'a','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
0x17, 0xa5, 0x1e, 0xaa, 'A','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
0x17, 0xa5, 0x1e, 0xab, 'a','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
0xb7, 0x4a, 0x1e, 0xac, 'A','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
0xb7, 0x4a, 0x1e, 0xad, 'a','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
0xa2, 0xe9, 0x1e, 0xae, 'A','b','r','e','v','e','a','c','u','t','e',0,
0x22, 0xe9, 0x1e, 0xaf, 'a','b','r','e','v','e','a','c','u','t','e',0,
0xa3, 0x75, 0x1e, 0xb0, 'A','b','r','e','v','e','g','r','a','v','e',0,
0x23, 0x75, 0x1e, 0xb1, 'a','b','r','e','v','e','g','r','a','v','e',0,
0x51, 0x95, 0x1e, 0xb2, 'A','b','r','e','v','e','h','o','o','k',0,
0x91, 0x95, 0x1e, 0xb3, 'a','b','r','e','v','e','h','o','o','k',0,
0xa4, 0x05, 0x1e, 0xb4, 'A','b','r','e','v','e','t','i','l','d','e',0,
0x24, 0x05, 0x1e, 0xb5, 'a','b','r','e','v','e','t','i','l','d','e',0,
0x1a, 0x4a, 0x1e, 0xb6, 'A','b','r','e','v','e','b','e','l','o','w','d','o','t',0,
0x1a, 0x4a, 0x1e, 0xb7, 'a','b','r','e','v','e','b','e','l','o','w','d','o','t',0,
0xaa, 0x4a, 0x1e, 0xb8, 'E','b','e','l','o','w','d','o','t',0,
0xca, 0x4a, 0x1e, 0xb9, 'e','b','e','l','o','w','d','o','t',0,
0x0a, 0x95, 0x1e, 0xba, 'E','h','o','o','k',0,
0x0c, 0x95, 0x1e, 0xbb, 'e','h','o','o','k',0,
0x16, 0x05, 0x1e, 0xbc, 'E','t','i','l','d','e',0,
0x1a, 0x05, 0x1e, 0xbd, 'e','t','i','l','d','e',0,
0x16, 0x89, 0x1e, 0xbe, 'E','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
0x16, 0x89, 0x1e, 0xbf, 'e','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
0x17, 0x15, 0x1e, 0xc0, 'E','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
0x17, 0x15, 0x1e, 0xc1, 'e','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
0x0b, 0x65, 0x1e, 0xc2, 'E','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
0x0b, 0x65, 0x1e, 0xc3, 'e','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
0x17, 0xa5, 0x1e, 0xc4, 'E','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
0x17, 0xa5, 0x1e, 0xc5, 'e','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
0xb7, 0x4a, 0x1e, 0xc6, 'E','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
0xb7, 0x4a, 0x1e, 0xc7, 'e','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
0x0a, 0xd5, 0x1e, 0xc8, 'I','h','o','o','k',0,
0x0c, 0xd5, 0x1e, 0xc9, 'i','h','o','o','k',0,
0xae, 0x4a, 0x1e, 0xca, 'I','b','e','l','o','w','d','o','t',0,
0xce, 0x4a, 0x1e, 0xcb, 'i','b','e','l','o','w','d','o','t',0,
0xb4, 0x4a, 0x1e, 0xcc, 'O','b','e','l','o','w','d','o','t',0,
0xd4, 0x4a, 0x1e, 0xcd, 'o','b','e','l','o','w','d','o','t',0,
0x0b, 0x35, 0x1e, 0xce, 'O','h','o','o','k',0,
0x0d, 0x35, 0x1e, 0xcf, 'o','h','o','o','k',0,
0x16, 0x89, 0x1e, 0xd0, 'O','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
0x16, 0x89, 0x1e, 0xd1, 'o','c','i','r','c','u','m','f','l','e','x','a','c','u','t','e',0,
0x17, 0x15, 0x1e, 0xd2, 'O','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
0x17, 0x15, 0x1e, 0xd3, 'o','c','i','r','c','u','m','f','l','e','x','g','r','a','v','e',0,
0x8b, 0x65, 0x1e, 0xd4, 'O','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
0x8b, 0x65, 0x1e, 0xd5, 'o','c','i','r','c','u','m','f','l','e','x','h','o','o','k',0,
0x17, 0xa5, 0x1e, 0xd6, 'O','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
0x17, 0xa5, 0x1e, 0xd7, 'o','c','i','r','c','u','m','f','l','e','x','t','i','l','d','e',0,
0xb7, 0x4a, 0x1e, 0xd8, 'O','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
0xb7, 0x4a, 0x1e, 0xd9, 'o','c','i','r','c','u','m','f','l','e','x','b','e','l','o','w','d','o','t',0,
0x74, 0x09, 0x1e, 0xda, 'O','h','o','r','n','a','c','u','t','e',0,
0xb4, 0x09, 0x1e, 0xdb, 'o','h','o','r','n','a','c','u','t','e',0,
0x74, 0x95, 0x1e, 0xdc, 'O','h','o','r','n','g','r','a','v','e',0,
0xb4, 0x95, 0x1e, 0xdd, 'o','h','o','r','n','g','r','a','v','e',0,
0xba, 0x25, 0x1e, 0xde, 'O','h','o','r','n','h','o','o','k',0,
0xda, 0x25, 0x1e, 0xdf, 'o','h','o','r','n','h','o','o','k',0,
0x75, 0x25, 0x1e, 0xe0, 'O','h','o','r','n','t','i','l','d','e',0,
0xb5, 0x25, 0x1e, 0xe1, 'o','h','o','r','n','t','i','l','d','e',0,
0xa3, 0x4a, 0x1e, 0xe2, 'O','h','o','r','n','b','e','l','o','w','d','o','t',0,
0xa3, 0x4a, 0x1e, 0xe3, 'o','h','o','r','n','b','e','l','o','w','d','o','t',0,
0xba, 0x4a, 0x1e, 0xe4, 'U','b','e','l','o','w','d','o','t',0,
0xda, 0x4a, 0x1e, 0xe5, 'u','b','e','l','o','w','d','o','t',0,
0x0b, 0x95, 0x1e, 0xe6, 'U','h','o','o','k',0,
0x0d, 0x95, 0x1e, 0xe7, 'u','h','o','o','k',0,
0x80, 0x09, 0x1e, 0xe8, 'U','h','o','r','n','a','c','u','t','e',0,
0xc0, 0x09, 0x1e, 0xe9, 'u','h','o','r','n','a','c','u','t','e',0,
0x80, 0x95, 0x1e, 0xea, 'U','h','o','r','n','g','r','a','v','e',0,
0xc0, 0x95, 0x1e, 0xeb, 'u','h','o','r','n','g','r','a','v','e',0,
0xc0, 0x25, 0x1e, 0xec, 'U','h','o','r','n','h','o','o','k',0,
0xe0, 0x25, 0x1e, 0xed, 'u','h','o','r','n','h','o','o','k',0,
0x81, 0x25, 0x1e, 0xee, 'U','h','o','r','n','t','i','l','d','e',0,
0xc1, 0x25, 0x1e, 0xef, 'u','h','o','r','n','t','i','l','d','e',0,
0x03, 0x4a, 0x1e, 0xf0, 'U','h','o','r','n','b','e','l','o','w','d','o','t',0,
0x03, 0x4a, 0x1e, 0xf1, 'u','h','o','r','n','b','e','l','o','w','d','o','t',0,
0xbe, 0x4a, 0x1e, 0xf4, 'Y','b','e','l','o','w','d','o','t',0,
0xde, 0x4a, 0x1e, 0xf5, 'y','b','e','l','o','w','d','o','t',0,
0x0b, 0xd5, 0x1e, 0xf6, 'Y','h','o','o','k',0,
0x0d, 0xd5, 0x1e, 0xf7, 'y','h','o','o','k',0,
0x18, 0x85, 0x1e, 0xf8, 'Y','t','i','l','d','e',0,
0x1c, 0x85, 0x1e, 0xf9, 'y','t','i','l','d','e',0,
0x0b, 0x3e, 0x1e, 0xfa, 'O','h','o','r','n',0,
0x0d, 0x3e, 0x1e, 0xfb, 'o','h','o','r','n',0,
0x0b, 0x9e, 0x1e, 0xfc, 'U','h','o','r','n',0,
0x0d, 0x9e, 0x1e, 0xfd, 'u','h','o','r','n',0,
0xd3, 0x05, 0x1e, 0x9f, 'c','o','m','b','i','n','i','n','g','_','t','i','l','d','e',0,
0xd2, 0x75, 0x1e, 0xf2, 'c','o','m','b','i','n','i','n','g','_','g','r','a','v','e',0,
0xd1, 0xe9, 0x1e, 0xf3, 'c','o','m','b','i','n','i','n','g','_','a','c','u','t','e',0,
0xe9, 0x15, 0x1e, 0xfe, 'c','o','m','b','i','n','i','n','g','_','h','o','o','k',0,
0x92, 0x4a, 0x1e, 0xff, 'c','o','m','b','i','n','i','n','g','_','b','e','l','o','w','d','o','t',0,
0x2a, 0x68, 0x20, 0xa0, 'E','c','u','S','i','g','n',0,
0xaf, 0xb8, 0x20, 0xa1, 'C','o','l','o','n','S','i','g','n',0,
0xab, 0x68, 0x20, 0xa2, 'C','r','u','z','e','i','r','o','S','i','g','n',0,
0x3c, 0xa8, 0x20, 0xa3, 'F','F','r','a','n','c','S','i','g','n',0,
0x5a, 0x08, 0x20, 0xa4, 'L','i','r','a','S','i','g','n',0,
0x5a, 0x78, 0x20, 0xa5, 'M','i','l','l','S','i','g','n',0,
0xb2, 0x88, 0x20, 0xa6, 'N','a','i','r','a','S','i','g','n',0,
0x71, 0xc8, 0x20, 0xa7, 'P','e','s','e','t','a','S','i','g','n',0,
0xc0, 0xe8, 0x20, 0xa8, 'R','u','p','e','e','S','i','g','n',0,
0x2f, 0xf8, 0x20, 0xa9, 'W','o','n','S','i','g','n',0,
0x59, 0x98, 0x20, 0xaa, 'N','e','w','S','h','e','q','e','l','S','i','g','n',0,
0x57, 0x68, 0x20, 0xab, 'D','o','n','g','S','i','g','n',0,
0x5a, 0x68, 0x20, 0xac, 'E','u','r','o','S','i','g','n',0
};

#define KTABLESIZE 2909
#define KMAXHASH 10

static const unsigned short hashString[KTABLESIZE] = {
0x0000, 0x0000, 0x21eb, 0x0000, 0x0000, 0x2356, 0x2302, 0x0000,
0x4090, 0x0000, 0x0000, 0x0000, 0x0000, 0x2c60, 0x220f, 0x522c,
0x666b, 0x3d02, 0x19d9, 0x0000, 0x1487, 0x0000, 0x2362, 0x0000,
0x0000, 0x622d, 0x21f7, 0x0000, 0x5717, 0x230e, 0x239e, 0x0000,
0x43da, 0x6164, 0x23ce, 0x534a, 0x0262, 0x5601, 0x22c6, 0x0223,
0x1e57, 0x48bb, 0x23c2, 0x0000, 0x0000, 0x0000, 0x0000, 0x17a9,
0x124c, 0x1252, 0x1258, 0x125e, 0x1264, 0x126a, 0x1270, 0x1276,
0x127c, 0x1282, 0x6547, 0x5283, 0x0000, 0x426d, 0x2115, 0x0000,
0x0000, 0x12d3, 0x12d9, 0x12df, 0x12e5, 0x12eb, 0x12f1, 0x12f7,
0x12fd, 0x1303, 0x1309, 0x130f, 0x1315, 0x131b, 0x1321, 0x026d,
0x132d, 0x1333, 0x0bea, 0x133f, 0x1345, 0x134b, 0x1351, 0x1357,
0x135d, 0x1363, 0x1369, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x13d5, 0x13db, 0x13e1, 0x13e7, 0x13ed, 0x13f3, 0x13f9,
0x13ff, 0x1405, 0x140b, 0x1411, 0x1417, 0x141d, 0x1423, 0x1429,
0x142f, 0x1435, 0x143b, 0x1441, 0x1447, 0x144d, 0x1453, 0x1459,
0x145f, 0x1465, 0x146b, 0x1cf2, 0x3371, 0x07d2, 0x0000, 0x405a,
0x0000, 0x0000, 0x3c6a, 0x6566, 0x0000, 0x0000, 0x28a4, 0x0842,
0x2eed, 0x4f73, 0x0000, 0x176a, 0x0000, 0x0000, 0x227d, 0x4f3c,
0x391a, 0x0000, 0x3ede, 0x0000, 0x0000, 0x17e8, 0x1a14, 0x0000,
0x4e1c, 0x3f7a, 0x0000, 0x6378, 0x003d, 0x0000, 0x4111, 0x0112,
0x0000, 0x0317, 0x3489, 0x2264, 0x0000, 0x1339, 0x070c, 0x0000,
0x0000, 0x5e0c, 0x645e, 0x6326, 0x0718, 0x4937, 0x5cf7, 0x03f4,
0x0db8, 0x01ad, 0x0000, 0x1c2d, 0x0000, 0x0000, 0x4af6, 0x33ba,
0x0000, 0x491b, 0x0000, 0x03e6, 0x0000, 0x04b4, 0x04bb, 0x04c2,
0x04c9, 0x04d0, 0x04d7, 0x04de, 0x04e5, 0x04ec, 0x0000, 0x16ab,
0x0000, 0x0503, 0x0512, 0x0521, 0x0530, 0x053f, 0x054e, 0x055d,
0x056c, 0x057b, 0x19ef, 0x19cc, 0x0000, 0x059a, 0x05a9, 0x05b8,
0x05c7, 0x05d6, 0x05e5, 0x05f4, 0x0603, 0x0612, 0x0000, 0x1f43,
0x2a8c, 0x30cd, 0x0c1a, 0x2072, 0x0000, 0x0000, 0x0679, 0x312c,
0x0000, 0x1b54, 0x0000, 0x0000, 0x0685, 0x270c, 0x3c87, 0x1327,
0x0000, 0x6528, 0x0a7f, 0x0000, 0x6642, 0x0b1d, 0x0000, 0x0000,
0x5fd2, 0x5e91, 0x0000, 0x1f38, 0x0000, 0x3eb2, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x4073, 0x0000, 0x0000, 0x0000,
0x0000, 0x489b, 0x0000, 0x0000, 0x1ede, 0x5bb7, 0x0000, 0x0b08,
0x0000, 0x0000, 0x11c4, 0x0000, 0x0000, 0x62d2, 0x0000, 0x5deb,
0x275a, 0x0000, 0x0209, 0x0000, 0x267a, 0x036e, 0x0000, 0x0000,
0x26ed, 0x0000, 0x31d8, 0x0000, 0x0000, 0x0000, 0x2787, 0x1847,
0x1db4, 0x0000, 0x183d, 0x2054, 0x136f, 0x5c3d, 0x0000, 0x0000,
0x0000, 0x64d9, 0x3cba, 0x0000, 0x02ff, 0x0000, 0x12cc, 0x5f02,
0x1995, 0x4f01, 0x1223, 0x044c, 0x09fd, 0x2e49, 0x0ac1, 0x0000,
0x1b39, 0x27e7, 0x0000, 0x0052, 0x3cb3, 0x5c91, 0x28c6, 0x1288,
0x3ccf, 0x3f99, 0x30ad, 0x1e7c, 0x3b7b, 0x0000, 0x043d, 0x15be,
0x0000, 0x0000, 0x0000, 0x0d23, 0x24d0, 0x0000, 0x0000, 0x0d55,
0x0000, 0x0387, 0x0000, 0x0000, 0x1d6c, 0x0000, 0x1536, 0x17d3,
0x3cd6, 0x0000, 0x25b7, 0x087e, 0x269f, 0x0000, 0x0000, 0x31fe,
0x2e68, 0x0000, 0x651a, 0x0000, 0x294e, 0x6143, 0x217c, 0x44b8,
0x4e33, 0x4b8c, 0x38e0, 0x5dda, 0x2778, 0x0000, 0x5d94, 0x179e,
0x13bd, 0x4da0, 0x1fd1, 0x38a6, 0x3981, 0x12a9, 0x041c, 0x3d96,
0x5e1c, 0x0000, 0x0000, 0x32e2, 0x0000, 0x0000, 0x0000, 0x1d1b,
0x5be9, 0x0000, 0x15d3, 0x2816, 0x1dd7, 0x0000, 0x197a, 0x3341,
0x00a0, 0x5c5e, 0x5d83, 0x2c00, 0x0000, 0x0000, 0x0000, 0x0000,
0x5c80, 0x0000, 0x0000, 0x5cc4, 0x0000, 0x3ca2, 0x0000, 0x19e4,
0x36b5, 0x3a20, 0x0000, 0x2227, 0x5d3d, 0x0000, 0x0000, 0x2fe9,
0x1e87, 0x0000, 0x04f3, 0x04fb, 0x050a, 0x0519, 0x0528, 0x0537,
0x0546, 0x0555, 0x0564, 0x0573, 0x05fb, 0x060a, 0x0000, 0x306a,
0x0000, 0x0000, 0x32b2, 0x323e, 0x1fea, 0x2efd, 0x4d4c, 0x0000,
0x3311, 0x3321, 0x058a, 0x42fa, 0x40cd, 0x2e7a, 0x0000, 0x3b11,
0x0000, 0x32f1, 0x0000, 0x653c, 0x5c1b, 0x0000, 0x47bb, 0x0000,
0x122d, 0x3331, 0x0000, 0x1918, 0x0000, 0x3361, 0x163e, 0x3301,
0x62c8, 0x15b4, 0x0621, 0x0631, 0x0641, 0x0651, 0x0661, 0x0671,
0x0000, 0x655c, 0x0000, 0x01cc, 0x0000, 0x40fe, 0x4243, 0x0000,
0x5d19, 0x6472, 0x0000, 0x31ee, 0x45f3, 0x0000, 0x0000, 0x1b82,
0x0000, 0x64e8, 0x1b8d, 0x0000, 0x4483, 0x0000, 0x0000, 0x1e08,
0x0000, 0x429e, 0x0000, 0x1b6c, 0x2044, 0x39e9, 0x0000, 0x5405,
0x0000, 0x0000, 0x117c, 0x0000, 0x1729, 0x1242, 0x0000, 0x0000,
0x0000, 0x0000, 0x3c50, 0x0000, 0x4cc8, 0x2ff8, 0x0aa2, 0x0000,
0x0000, 0x3019, 0x1baf, 0x6442, 0x3039, 0x1bdc, 0x5fdc, 0x0000,
0x0000, 0x25cc, 0x309d, 0x1739, 0x30bd, 0x2d6d, 0x3eed, 0x609a,
0x30fc, 0x310c, 0x394e, 0x0000, 0x0401, 0x175a, 0x0f43, 0x0000,
0x0000, 0x30dc, 0x1106, 0x0000, 0x273a, 0x0000, 0x03d8, 0x1866,
0x4edf, 0x1496, 0x1ba4, 0x327f, 0x0000, 0x02f2, 0x5779, 0x30ec,
0x6468, 0x0000, 0x40ab, 0x17fd, 0x59f7, 0x1925, 0x24c0, 0x0000,
0x0000, 0x6218, 0x0000, 0x0000, 0x0000, 0x1579, 0x0000, 0x0000,
0x5b56, 0x1dbf, 0x0000, 0x2fd9, 0x0000, 0x296e, 0x3774, 0x4228,
0x120d, 0x0000, 0x545c, 0x3c06, 0x0250, 0x0000, 0x09cd, 0x0000,
0x17b4, 0x26ce, 0x0000, 0x0000, 0x5a9d, 0x0000, 0x6030, 0x0000,
0x5a37, 0x0000, 0x0000, 0x6450, 0x0dd0, 0x0de4, 0x0df8, 0x0e0c,
0x0e20, 0x2824, 0x1c09, 0x0829, 0x0000, 0x27d8, 0x5f27, 0x0000,
0x3049, 0x3cc1, 0x5f1c, 0x0000, 0x001e, 0x0000, 0x0000, 0x1f5c,
0x6532, 0x293f, 0x2026, 0x0000, 0x0000, 0x3cc8, 0x0000, 0x0000,
0x0000, 0x1e70, 0x0e34, 0x63a8, 0x56d5, 0x0000, 0x50dc, 0x1cd4,
0x0000, 0x0000, 0x42ad, 0x0000, 0x1ec5, 0x41c4, 0x58a7, 0x43cf,
0x0000, 0x0ed2, 0x0ee4, 0x0ef6, 0x0f08, 0x0f1a, 0x0000, 0x0000,
0x3758, 0x4042, 0x0000, 0x0000, 0x0000, 0x1292, 0x0000, 0x0000,
0x0000, 0x55c2, 0x24f0, 0x3fd6, 0x0000, 0x0000, 0x5973, 0x0000,
0x1c8e, 0x21a8, 0x0000, 0x0000, 0x266a, 0x21c9, 0x53a0, 0x189b,
0x155f, 0x21b3, 0x0000, 0x014d, 0x3fab, 0x39fb, 0x23da, 0x21d4,
0x3bbf, 0x2769, 0x0000, 0x185b, 0x147f, 0x21be, 0x0000, 0x4442,
0x5843, 0x5a57, 0x0000, 0x0f8a, 0x0000, 0x0000, 0x57b9, 0x2c9c,
0x0000, 0x2121, 0x5bfa, 0x0092, 0x0000, 0x18a6, 0x5abd, 0x1a41,
0x4a88, 0x212c, 0x5fa1, 0x0000, 0x0f72, 0x0000, 0x6130, 0x1c49,
0x0000, 0x0000, 0x3618, 0x0000, 0x414e, 0x2137, 0x431b, 0x26be,
0x0000, 0x0000, 0x0000, 0x0000, 0x18c5, 0x5f74, 0x06f4, 0x3bd9,
0x5f32, 0x0000, 0x0000, 0x0000, 0x0700, 0x0000, 0x441b, 0x2833,
0x0000, 0x1d64, 0x0000, 0x427d, 0x0000, 0x0000, 0x50ea, 0x27f6,
0x0000, 0x0d46, 0x11ad, 0x139e, 0x5a07, 0x0a70, 0x0000, 0x4606,
0x5b37, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5dfb,
0x0000, 0x0000, 0x0000, 0x0000, 0x5fac, 0x0000, 0x0000, 0x1b77,
0x0000, 0x5c4d, 0x1a2b, 0x0000, 0x43f3, 0x4472, 0x0000, 0x0062,
0x0000, 0x65c9, 0x0000, 0x0000, 0x14e8, 0x4568, 0x0000, 0x3ea4,
0x0000, 0x5c6f, 0x156e, 0x0000, 0x0000, 0x26dd, 0x5854, 0x0000,
0x272a, 0x1ce2, 0x0000, 0x0000, 0x50f8, 0x0000, 0x0ab1, 0x0000,
0x1692, 0x485a, 0x26fc, 0x54ca, 0x2fc9, 0x0000, 0x26ae, 0x14b6,
0x138d, 0x0000, 0x3686, 0x1890, 0x2806, 0x1bed, 0x0000, 0x0770,
0x0000, 0x5ca1, 0x0000, 0x62fc, 0x4d8e, 0x4011, 0x59c6, 0x3e89,
0x0000, 0x4835, 0x0000, 0x6191, 0x2f4e, 0x0000, 0x2500, 0x1bc6,
0x3be8, 0x38ce, 0x1bd1, 0x0179, 0x0000, 0x0000, 0x3d70, 0x0000,
0x271a, 0x0582, 0x0000, 0x0592, 0x5ebb, 0x05a1, 0x55af, 0x05b0,
0x4d2f, 0x05bf, 0x0000, 0x05ce, 0x409c, 0x05dd, 0x1956, 0x05ec,
0x3993, 0x2689, 0x5832, 0x326f, 0x46ac, 0x5876, 0x3f40, 0x18e3,
0x466e, 0x0000, 0x5018, 0x0000, 0x0000, 0x5922, 0x42be, 0x32a2,
0x0137, 0x32d2, 0x0000, 0x4ab1, 0x507a, 0x469d, 0x464e, 0x0000,
0x0ebc, 0x3a33, 0x4515, 0x35b8, 0x287c, 0x0000, 0x0d34, 0x0000,
0x3445, 0x44c6, 0x58ff, 0x29af, 0x4ffb, 0x0000, 0x08dc, 0x0000,
0x4380, 0x601b, 0x0000, 0x3d13, 0x0893, 0x0000, 0x0000, 0x0000,
0x0000, 0x48ad, 0x3659, 0x15f2, 0x1610, 0x53d0, 0x4817, 0x0000,
0x1158, 0x5a68, 0x0394, 0x3a4c, 0x45bf, 0x18b6, 0x57ca, 0x0000,
0x0000, 0x33dc, 0x617c, 0x3e27, 0x5d07, 0x5f10, 0x5ace, 0x0000,
0x0000, 0x0c88, 0x0000, 0x0000, 0x0000, 0x5f48, 0x1066, 0x2af6,
0x0000, 0x325e, 0x0000, 0x0fcf, 0x0000, 0x0000, 0x0000, 0x49a2,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x16b2, 0x1677,
0x0000, 0x1a56, 0x46dc, 0x1dcc, 0x1c62, 0x0000, 0x0000, 0x1b61,
0x5d4e, 0x2f1c, 0x1bfe, 0x5e3e, 0x0000, 0x0000, 0x393b, 0x5119,
0x0000, 0x042d, 0x263a, 0x0000, 0x0a3a, 0x47cc, 0x3e68, 0x15a2,
0x4dde, 0x0000, 0x4f62, 0x0000, 0x48cc, 0x33a9, 0x0000, 0x0000,
0x2e8a, 0x0000, 0x0190, 0x0000, 0x27c9, 0x0000, 0x552b, 0x1a36,
0x0000, 0x3c10, 0x1a4b, 0x3802, 0x0000, 0x0000, 0x4d69, 0x0000,
0x0000, 0x0000, 0x14db, 0x03af, 0x5cb2, 0x486c, 0x0a8e, 0x0000,
0x634e, 0x0000, 0x0000, 0x107b, 0x0000, 0x3350, 0x0000, 0x0b3d,
0x0000, 0x4db7, 0x2f3d, 0x2624, 0x1237, 0x5f09, 0x0000, 0x0000,
0x0000, 0x0000, 0x14f0, 0x18ee, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x4c23, 0x0000, 0x2195, 0x0000,
0x0000, 0x0000, 0x48ef, 0x0d79, 0x1fb8, 0x20c6, 0x0000, 0x47dd,
0x0000, 0x477b, 0x0000, 0x305a, 0x0000, 0x0000, 0x1554, 0x193b,
0x0000, 0x0000, 0x0000, 0x0000, 0x41da, 0x3af8, 0x0000, 0x3029,
0x0000, 0x4579, 0x5d72, 0x63b7, 0x0000, 0x2bad, 0x0000, 0x44e5,
0x5475, 0x4808, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x1909, 0x0000, 0x3da0, 0x2cea, 0x25f6, 0x0000, 0x3b23, 0x0c5e,
0x0000, 0x0000, 0x3e4b, 0x0913, 0x0000, 0x63e4, 0x43c4, 0x0000,
0x4982, 0x47f4, 0x0000, 0x01dd, 0x649f, 0x15e6, 0x459c, 0x0000,
0x0000, 0x0000, 0x0000, 0x1970, 0x428e, 0x3e7c, 0x487a, 0x0000,
0x0000, 0x0000, 0x2859, 0x18cd, 0x2d4c, 0x0000, 0x0000, 0x1fc6,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0b2c, 0x0000, 0x0000,
0x0000, 0x53ee, 0x60b2, 0x1d49, 0x0000, 0x63f2, 0x0000, 0x0000,
0x0000, 0x0000, 0x3647, 0x6570, 0x0000, 0x0000, 0x045a, 0x0463,
0x046c, 0x0475, 0x047e, 0x0487, 0x0490, 0x0499, 0x04a2, 0x04ab,
0x0000, 0x0000, 0x0000, 0x23e5, 0x4f2c, 0x0000, 0x0000, 0x0000,
0x10cb, 0x1058, 0x0000, 0x3d25, 0x0000, 0x0000, 0x0000, 0x4614,
0x5af1, 0x4f9a, 0x0000, 0x3c91, 0x0000, 0x5f52, 0x0000, 0x0000,
0x1e93, 0x28d7, 0x4b57, 0x4e9c, 0x0000, 0x62b0, 0x4dcd, 0x1965,
0x0000, 0x2d8c, 0x60e2, 0x27ba, 0x4c13, 0x0000, 0x0000, 0x0000,
0x41f2, 0x2dad, 0x3794, 0x0c9e, 0x0000, 0x0000, 0x0000, 0x0000,
0x1f91, 0x0000, 0x0000, 0x6082, 0x0000, 0x3194, 0x4769, 0x63d5,
0x0000, 0x1731, 0x0000, 0x0000, 0x2a72, 0x59b5, 0x51cd, 0x1a6e,
0x0000, 0x0000, 0x1650, 0x56b3, 0x658e, 0x137f, 0x10d9, 0x0000,
0x0000, 0x10a0, 0x55eb, 0x0000, 0x38c0, 0x3f4b, 0x6481, 0x0000,
0x0000, 0x0000, 0x0000, 0x3008, 0x1813, 0x313b, 0x4757, 0x0000,
0x0000, 0x0010, 0x4cda, 0x0798, 0x0000, 0x0000, 0x17f2, 0x4bb3,
0x0000, 0x0000, 0x4175, 0x3a7b, 0x0000, 0x0000, 0x65a2, 0x0000,
0x0000, 0x104a, 0x4202, 0x1fad, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x5546, 0x0000, 0x0000, 0x35f2, 0x6006,
0x0000, 0x320d, 0x0000, 0x0000, 0x0619, 0x1015, 0x5245, 0x0629,
0x33c9, 0x4e87, 0x0639, 0x0000, 0x02a9, 0x0649, 0x02d0, 0x54b3,
0x0659, 0x529a, 0x2c24, 0x0669, 0x02bd, 0x1f1c, 0x29d2, 0x0000,
0x421c, 0x4bc3, 0x2491, 0x0000, 0x0000, 0x57db, 0x0000, 0x0000,
0x1dfd, 0x0000, 0x2df1, 0x5911, 0x0000, 0x0000, 0x65fa, 0x0000,
0x0000, 0x0000, 0x0000, 0x32c2, 0x0200, 0x0000, 0x5db7, 0x440e,
0x021a, 0x28fa, 0x39bd, 0x01f7, 0x0000, 0x0000, 0x0000, 0x0000,
0x58c9, 0x0000, 0x6294, 0x0000, 0x5e7f, 0x65ec, 0x4736, 0x0000,
0x62a2, 0x0000, 0x49f8, 0x1ef7, 0x0000, 0x02a0, 0x4ac0, 0x0000,
0x0000, 0x3e35, 0x0000, 0x274b, 0x0000, 0x0000, 0x4a08, 0x640f,
0x64ca, 0x1946, 0x4927, 0x0297, 0x0000, 0x39d3, 0x0000, 0x0000,
0x425f, 0x438d, 0x4a27, 0x0855, 0x61f0, 0x0000, 0x0000, 0x0000,
0x0239, 0x0000, 0x08c2, 0x20ed, 0x0000, 0x650c, 0x0000, 0x2f81,
0x434b, 0x3e40, 0x2c89, 0x0000, 0x3e0a, 0x0000, 0x4a37, 0x1c9b,
0x2542, 0x0784, 0x255c, 0x2569, 0x2576, 0x2583, 0x2590, 0x259d,
0x25aa, 0x1a08, 0x458d, 0x0000, 0x0000, 0x0000, 0x4a67, 0x6430,
0x51e5, 0x0000, 0x0bd2, 0x0000, 0x1c13, 0x4122, 0x3ef8, 0x35d2,
0x55d7, 0x0000, 0x0000, 0x58ed, 0x0000, 0x0000, 0x3e5b, 0x028e,
0x19fa, 0x3399, 0x0000, 0x2142, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x22ea, 0x0000, 0x20de, 0x0000, 0x231a, 0x0000, 0x21df,
0x1de4, 0x22f6, 0x4c80, 0x2203, 0x0000, 0x22ae, 0x61c6, 0x1e10,
0x0000, 0x22d2, 0x2326, 0x233e, 0x0000, 0x1cfd, 0x0b5b, 0x221b,
0x0000, 0x2258, 0x44a6, 0x0a1a, 0x2080, 0x2296, 0x0000, 0x234a,
0x6044, 0x2271, 0x4cb3, 0x236e, 0x22ba, 0x224c, 0x1da7, 0x22a2,
0x0000, 0x23aa, 0x0000, 0x2234, 0x0000, 0x0358, 0x57fd, 0x0b71,
0x23b6, 0x037b, 0x0000, 0x2392, 0x034c, 0x2be4, 0x2240, 0x237a,
0x0000, 0x0000, 0x5214, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x2b5e, 0x0000, 0x28b5, 0x4d7c, 0x0000, 0x0000, 0x0000, 0x31a5,
0x0000, 0x0000, 0x36ed, 0x3e97, 0x2dbe, 0x5789, 0x0000, 0x3ba6,
0x2b92, 0x22de, 0x5b03, 0x0000, 0x0000, 0x43b3, 0x0000, 0x5ef7,
0x3403, 0x0000, 0x5175, 0x0000, 0x14c5, 0x3419, 0x0000, 0x5dc8,
0x392b, 0x03a3, 0x0000, 0x0000, 0x0000, 0x0000, 0x0c74, 0x0000,
0x0a4c, 0x4e0a, 0x4e71, 0x0000, 0x1b1d, 0x0000, 0x5a79, 0x0000,
0x6490, 0x0000, 0x657a, 0x3f04, 0x4213, 0x0000, 0x0000, 0x0000,
0x2386, 0x25e5, 0x2f9f, 0x3608, 0x4adf, 0x1d0d, 0x5adf, 0x2510,
0x0000, 0x3627, 0x209c, 0x2158, 0x4543, 0x0000, 0x0000, 0x1592,
0x3dab, 0x5a27, 0x1d39, 0x0000, 0x0000, 0x2189, 0x315c, 0x3dfb,
0x0000, 0x2170, 0x295d, 0x563f, 0x433d, 0x0000, 0x0000, 0x2164,
0x0000, 0x4fe0, 0x0000, 0x01bc, 0x4847, 0x0000, 0x1623, 0x53b3,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x625a,
0x0b9d, 0x0000, 0x0000, 0x228a, 0x2425, 0x12a0, 0x0000, 0x0000,
0x0b4d, 0x0bab, 0x43a6, 0x2079, 0x0000, 0x0000, 0x641e, 0x0000,
0x0000, 0x5963, 0x0000, 0x0000, 0x0000, 0x0000, 0x1518, 0x36a5,
0x1989, 0x5ff1, 0x0f9d, 0x1a94, 0x3f8b, 0x0000, 0x0000, 0x2c76,
0x2eab, 0x4b23, 0x0731, 0x562b, 0x0000, 0x0000, 0x0000, 0x5821,
0x0000, 0x57a9, 0x2f6f, 0x3695, 0x4b0e, 0x4453, 0x0000, 0x3cdd,
0x0000, 0x0000, 0x0ce4, 0x0000, 0x0000, 0x0000, 0x575b, 0x07fd,
0x0000, 0x1b98, 0x43bb, 0x0000, 0x5865, 0x0000, 0x16d5, 0x0000,
0x0000, 0x5da5, 0x4e44, 0x0000, 0x3dbd, 0x121a, 0x63c6, 0x633a,
0x0000, 0x0000, 0x5b47, 0x56c4, 0x0000, 0x311c, 0x0000, 0x3de1,
0x0000, 0x2796, 0x2f5e, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x314c, 0x0000, 0x5cd5, 0x0000, 0x418b, 0x4963, 0x5f60,
0x1eb9, 0x0000, 0x075b, 0x0000, 0x0000, 0x4029, 0x37c3, 0x0000,
0x3db4, 0x4aa3, 0x24df, 0x33ed, 0x435a, 0x0000, 0x0000, 0x2cb2,
0x0000, 0x3184, 0x0000, 0x1186, 0x56f7, 0x0000, 0x0000, 0x1808,
0x2c4a, 0x4fed, 0x0000, 0x56a2, 0x0e4e, 0x0e64, 0x0e7a, 0x0e90,
0x0ea6, 0x56e6, 0x0000, 0x3dc9, 0x5933, 0x1ca6, 0x5b27, 0x1791,
0x0000, 0x0000, 0x5887, 0x324e, 0x0000, 0x08aa, 0x3a90, 0x1f83,
0x59d7, 0x6311, 0x0000, 0x0000, 0x4462, 0x58b8, 0x44f6, 0x559e,
0x0000, 0x0000, 0x0000, 0x0000, 0x5953, 0x57ec, 0x1584, 0x4943,
0x3821, 0x0000, 0x5799, 0x3dd5, 0x0000, 0x4401, 0x5995, 0x0000,
0x12b3, 0x0bb9, 0x0000, 0x2aa7, 0x39a8, 0x0000, 0x3637, 0x0000,
0x0f5a, 0x0f2c, 0x0cf8, 0x2034, 0x0000, 0x0000, 0x543d, 0x0000,
0x0000, 0x3b6e, 0x1881, 0x3ed1, 0x34bb, 0x0000, 0x0000, 0x0000,
0x0000, 0x371a, 0x5484, 0x3b95, 0x4558, 0x2b78, 0x0000, 0x0000,
0x0000, 0x505d, 0x3668, 0x5667, 0x45e3, 0x0000, 0x0000, 0x3676,
0x01ea, 0x50b2, 0x0000, 0x4304, 0x5707, 0x1f4e, 0x0000, 0x0000,
0x58db, 0x5042, 0x3ec2, 0x0000, 0x5b75, 0x0000, 0x2a58, 0x4b77,
0x0000, 0x1c39, 0x5366, 0x0000, 0x5943, 0x0000, 0x374a, 0x0000,
0x0000, 0x0000, 0x5897, 0x3c79, 0x1f0e, 0x4534, 0x0000, 0x0000,
0x0746, 0x6242, 0x0000, 0x0000, 0x370c, 0x0000, 0x5a47, 0x0000,
0x5026, 0x50ce, 0x2cd8, 0x0000, 0x3766, 0x13ae, 0x0000, 0x0000,
0x2d1b, 0x0000, 0x5050, 0x3961, 0x3f2a, 0x0000, 0x59a5, 0x5383,
0x0d66, 0x0000, 0x2ddf, 0x3d37, 0x0000, 0x3d4a, 0x0000, 0x1023,
0x1030, 0x103d, 0x467d, 0x3d83, 0x5bd8, 0x5009, 0x00ea, 0x0691,
0x468d, 0x0000, 0x479a, 0x0000, 0x28e9, 0x069f, 0x0000, 0x50a3,
0x1c20, 0x463e, 0x0000, 0x4fbd, 0x4524, 0x43e6, 0x3bcd, 0x5033,
0x0000, 0x0000, 0x0000, 0x097d, 0x465e, 0x0000, 0x0000, 0x0000,
0x10ae, 0x3971, 0x0000, 0x60c2, 0x44d5, 0x27a7, 0x0000, 0x0000,
0x2ebd, 0x1e9f, 0x0000, 0x0000, 0x0000, 0x5691, 0x4c71, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x62e7, 0x0000, 0x665f, 0x0000,
0x45d1, 0x34a1, 0x0000, 0x29e6, 0x3cf0, 0x0242, 0x5132, 0x5e8a,
0x0000, 0x0000, 0x3079, 0x0000, 0x5729, 0x0000, 0x2e9b, 0x1d2b,
0x2d2d, 0x0000, 0x0000, 0x0000, 0x4d14, 0x5617, 0x0000, 0x0084,
0x0000, 0x0cc9, 0x07ea, 0x1602, 0x2e39, 0x3bb3, 0x580f, 0x6286,
0x46ff, 0x4b48, 0x0000, 0x1bba, 0x4fac, 0x0000, 0x086d, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x16ca, 0x6101, 0x0000, 0x3aae,
0x1687, 0x0000, 0x0000, 0x0000, 0x0000, 0x4c04, 0x1e63, 0x0000,
0x385c, 0x0000, 0x0000, 0x0000, 0x345a, 0x0000, 0x0000, 0x4bd4,
0x0000, 0x0000, 0x5b15, 0x171a, 0x1661, 0x0d8d, 0x0000, 0x4ceb,
0x0000, 0x2e0f, 0x38ee, 0x64fa, 0x0000, 0x667d, 0x4746, 0x3f59,
0x0000, 0x0000, 0x0000, 0x4bf5, 0x0000, 0x0c42, 0x0000, 0x0000,
0x2102, 0x0000, 0x0000, 0x0000, 0x0000, 0x2fb7, 0x5a8b, 0x0000,
0x0000, 0x4789, 0x37e4, 0x0000, 0x4374, 0x34fd, 0x6390, 0x18d8,
0x0000, 0x0000, 0x0000, 0x0000, 0x08f7, 0x4495, 0x2d0b, 0x46cd,
0x0000, 0x0000, 0x4ec9, 0x0000, 0x0000, 0x1e18, 0x0000, 0x321d,
0x0000, 0x0000, 0x3b60, 0x0000, 0x60f2, 0x0000, 0x07ac, 0x0000,
0x4ca1, 0x0000, 0x0000, 0x5e63, 0x2890, 0x6634, 0x3a66, 0x0000,
0x0000, 0x2654, 0x0000, 0x0000, 0x3888, 0x1eab, 0x3f6a, 0x0000,
0x2d5d, 0x0000, 0x0000, 0x49d5, 0x38fc, 0x1a63, 0x0000, 0x2994,
0x1ed2, 0x24a4, 0x0000, 0x0411, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x4ad0, 0x0000, 0x0000, 0x1cb6, 0x0000, 0x0000, 0x4a58,
0x0000, 0x51fd, 0x0000, 0x0000, 0x0000, 0x3b52, 0x23f5, 0x0000,
0x0000, 0x0000, 0x0000, 0x47aa, 0x0000, 0x3bf5, 0x1d8e, 0x14a5,
0x11b8, 0x4c91, 0x65b6, 0x0000, 0x52ac, 0x0000, 0x0000, 0x03c0,
0x2016, 0x65e0, 0x1f9f, 0x2b26, 0x0000, 0x46bb, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5bc7, 0x1632, 0x567d,
0x5c2c, 0x34ea, 0x0000, 0x1823, 0x0000, 0x3387, 0x0000, 0x2842,
0x0000, 0x184e, 0x0000, 0x0000, 0x49e4, 0x0000, 0x0000, 0x030c,
0x0000, 0x488c, 0x0000, 0x29f8, 0x5ce6, 0x2409, 0x1775, 0x0000,
0x0000, 0x322e, 0x0af5, 0x0000, 0x49b0, 0x0000, 0x0000, 0x0000,
0x0000, 0x4084, 0x3738, 0x199f, 0x2e58, 0x0000, 0x0000, 0x214d,
0x5d60, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x019e, 0x0000,
0x0000, 0x2cfa, 0x0000, 0x0000, 0x1784, 0x02e0, 0x3ffd, 0x6120,
0x1b43, 0x260d, 0x37b3, 0x606d, 0x0000, 0x2a3d, 0x0000, 0x0000,
0x0000, 0x3f19, 0x0000, 0x0000, 0x2f2d, 0x0000, 0x5653, 0x0000,
0x0000, 0x0000, 0x0000, 0x490c, 0x14fe, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x4953, 0x1c72, 0x0da2, 0x0000, 0x1d54, 0x0000,
0x0000, 0x4826, 0x0000, 0x29bd, 0x4fcf, 0x0000, 0x0000, 0x4973,
0x208f, 0x0000, 0x0000, 0x0000, 0x5581, 0x0000, 0x0000, 0x5ed0,
0x0000, 0x0000, 0x3dee, 0x0000, 0x2adc, 0x515d, 0x0000, 0x0000,
0x41af, 0x0000, 0x0000, 0x2419, 0x1c57, 0x2431, 0x243d, 0x2449,
0x2455, 0x2461, 0x246d, 0x2479, 0x2485, 0x4f51, 0x012a, 0x0000,
0x0000, 0x0000, 0x0000, 0x2edc, 0x00ca, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x1ff9, 0x099a, 0x0d0c, 0x0000, 0x0ff2,
0x31b4, 0x5b65, 0x0000, 0x0165, 0x1006, 0x0815, 0x54e0, 0x3c43,
0x1c7e, 0x0000, 0x2c37, 0x10f6, 0x0000, 0x0000, 0x011d, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1d9b, 0x0000, 0x0000,
0x0000, 0x0000, 0x4137, 0x0000, 0x166c, 0x576a, 0x4eb2, 0x0000,
0x0159, 0x0fb0, 0x52e9, 0x31c7, 0x0000, 0x0000, 0x0000, 0x18fe,
0x0000, 0x17c4, 0x0000, 0x0000, 0x0000, 0x1f75, 0x4ba1, 0x0000,
0x0000, 0x4629, 0x36ff, 0x0000, 0x0000, 0x0000, 0x0000, 0x48fd,
0x36c6, 0x0000, 0x36d3, 0x0000, 0x0000, 0x5a17, 0x619c, 0x0000,
0x0000, 0x0000, 0x36e0, 0x0a62, 0x1f2a, 0x297d, 0x4ef0, 0x0000,
0x0000, 0x11d2, 0x0000, 0x2bc8, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x2a22, 0x02b2, 0x1e4a, 0x0000,
0x0000, 0x0000, 0x54f8, 0x0000, 0x1ac3, 0x0000, 0x64ae, 0x1ace,
0x0000, 0x4c45, 0x0000, 0x0000, 0x10e7, 0x0000, 0x5aad, 0x5f3e,
0x1aad, 0x0000, 0x2ecd, 0x0000, 0x0000, 0x573b, 0x0000, 0x5e2d,
0x49c2, 0x0000, 0x15c5, 0x556c, 0x2cc8, 0x0000, 0x0000, 0x0000,
0x0000, 0x0324, 0x032e, 0x0338, 0x0342, 0x0000, 0x0000, 0x1af0,
0x0fc0, 0x4b67, 0x0000, 0x3b45, 0x1142, 0x0000, 0x4f17, 0x1930,
0x0000, 0x424e, 0x2d3d, 0x0000, 0x0000, 0x0000, 0x3869, 0x0000,
0x3831, 0x5e4e, 0x387b, 0x0000, 0x2d9d, 0x6400, 0x092b, 0x1871,
0x3842, 0x46ed, 0x384f, 0x5b85, 0x150a, 0x4be5, 0x0000, 0x1ae5,
0x52fc, 0x0000, 0x0ad0, 0x48db, 0x0000, 0x0000, 0x0000, 0x0000,
0x00f7, 0x550f, 0x0000, 0x3b30, 0x0000, 0x0000, 0x661a, 0x0000,
0x0000, 0x2b42, 0x116d, 0x0000, 0x1548, 0x1a89, 0x0000, 0x5f82,
0x1f02, 0x518d, 0x40e5, 0x4e5b, 0x0000, 0x0001, 0x17de, 0x0000,
0x0000, 0x3b85, 0x0000, 0x1a1f, 0x0079, 0x00b4, 0x0000, 0x0000,
0x0000, 0x0000, 0x4c60, 0x3fc1, 0x0000, 0x0000, 0x0000, 0x0000,
0x3588, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0364, 0x0000,
0x0000, 0x0000, 0x0000, 0x09b3, 0x0000, 0x2e27, 0x6172, 0x5ea4,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2f0d, 0x0000, 0x11fe,
0x4c34, 0x660b, 0x0000, 0x12bf, 0x0000, 0x0000, 0x1ad9, 0x0000,
0x1130, 0x0000, 0x0000, 0x1cc4, 0x0000, 0x4398, 0x353f, 0x549a,
0x3acc, 0x0000, 0x4991, 0x0000, 0x0ae2, 0x0000, 0x5428, 0x0000,
0x0000, 0x0000, 0x0fe0, 0x0000, 0x6186, 0x4a18, 0x5b9d, 0x0000,
0x4506, 0x2c12, 0x0000, 0x3784, 0x2062, 0x0000, 0x52c3, 0x0000,
0x0000, 0x37a3, 0x2521, 0x0000, 0x0000, 0x1e3e, 0x0000, 0x06ad,
0x50c0, 0x0000, 0x4368, 0x3ae2, 0x16ff, 0x60d2, 0x3c1f, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4c55, 0x352b, 0x0000,
0x16bf, 0x10bd, 0x111c, 0x0000, 0x0000, 0x06bb, 0x0000, 0x0cb4,
0x0c2f, 0x0000, 0x5d2b, 0x0000, 0x0258, 0x0000, 0x0000, 0x0000,
0x09e4, 0x2868, 0x11f0, 0x3471, 0x0000, 0x37f2, 0x0000, 0x0724,
0x0000, 0x0000, 0x108e, 0x0000, 0x1e30, 0x2d7d, 0x0000, 0x022d,
0x0000, 0x0000, 0x4711, 0x5fba, 0x0000, 0x11e1, 0x0000, 0x0107,
0x0000, 0x64bc, 0x14ce, 0x555b, 0x0000, 0x3172, 0x0000, 0x0000,
0x0000, 0x0000, 0x06e0, 0x0000, 0x0000, 0x59e7, 0x627c, 0x0000,
0x06ea, 0x0000, 0x0000, 0x3811, 0x006e, 0x5fc8, 0x0000, 0x0000,
0x0033, 0x372a, 0x61b1, 0x0000, 0x4cff, 0x13c7, 0x668a, 0x182e,
0x0000, 0x0000, 0x0000, 0x0000, 0x1a79, 0x0000, 0x0000, 0x5e98,
0x0000, 0x1df0, 0x119e, 0x0000, 0x1ab8, 0x34d1, 0x0000, 0x19ab,
0x61db, 0x02c6, 0x0000, 0x2911, 0x5f96, 0x0000, 0x42e2, 0x1fdf,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x574b, 0x0000, 0x5eaf,
0x0000, 0x1eeb, 0x0000, 0x1191, 0x0c02, 0x0000, 0x0000, 0x16a1,
0x514a, 0x3c5e, 0x3554, 0x308d, 0x5337, 0x0000, 0x45b0, 0x0000,
0x0000, 0x0000, 0x0b8b, 0x0000, 0x5984, 0x5096, 0x0000, 0x0000,
0x16f4, 0x0000, 0x5ee9, 0x35a0, 0x0000, 0x5c0a, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x42cc, 0x506b, 0x0000, 0x0000, 0x0000,
0x3513, 0x0000, 0x3d5d, 0x0000, 0x1b07, 0x00e0, 0x52d6, 0x1b12,
0x0000, 0x0000, 0x0277, 0x2928, 0x0000, 0x390a, 0x0000, 0x0026,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x3a0d, 0x4232, 0x0000,
0x2008, 0x06ca, 0x0000, 0x4198, 0x0000, 0x5416, 0x0000, 0x06d5,
0x0000, 0x0000, 0x0000, 0x0000, 0x174f, 0x0000, 0x0000, 0x5ede,
0x5088, 0x0000, 0x0000, 0x0000, 0x6651, 0x6272, 0x0000, 0x5e71,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4161, 0x1e24, 0x0000,
0x6363, 0x525d, 0x3fec, 0x0000, 0x0000, 0x4f89, 0x2b0e, 0x3431,
0x4332, 0x3896, 0x0000, 0x0944, 0x0000, 0x6627, 0x0000, 0x2535,
0x5105, 0x3e19, 0x0283, 0x254f, 0x0000, 0x37d5, 0x170a, 0x1471,
0x0000, 0x4722, 0x0000, 0x0000, 0x6204, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x6058, 0x3c2d, 0x51a1, 0x4429, 0x5270, 0x07bf,
0x0000, 0x0000, 0x0000, 0x5323, 0x6156, 0x0000, 0x0000, 0x0000,
0x1afb, 0x0000, 0x0000, 0x0000, 0x0000, 0x4b35, 0x2a0d, 0x328e,
0x0185, 0x4df4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2ac2, 0x0048,
0x1d83, 0x1526, 0x0000, 0x0000, 0x1aa2, 0x6110, 0x0000, 0x1b2e,
0x16e5, 0x2dce, 0x0000, 0x0000, 0x1f67, 0x62be, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x51b4, 0x0000, 0x0000, 0x6552, 0x20ae,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1d76, 0x0000,
0x0210, 0x0000, 0x40b8, 0x0000, 0x19b6, 0x0000, 0x356b, 0x19c1,
0x0000, 0x4a47, 0x0000, 0x0000, 0x5310, 0x0000, 0x03cb, 0x2332,
0x1744, 0x0960, 0x0000, 0x4a77, 0x0000
};
#endif /* NEEDKTABLE */

#ifdef NEEDVTABLE
#define VTABLESIZE 2341
#define VMAXHASH 9

static const unsigned short hashKeysym[VTABLESIZE] = {
0x0003, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x5f76, 0x0000, 0x5f84, 0x0000, 0x5fa3, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x4df6, 0x0000, 0x0000, 0x0000, 0x4939, 0x0000,
0x117e, 0x1188, 0x1193, 0x11a0, 0x11af, 0x11ba, 0x11c6, 0x11d4,
0x11f2, 0x1200, 0x120f, 0x121c, 0x1225, 0x122f, 0x1239, 0x1244,
0x124e, 0x1254, 0x125a, 0x1260, 0x1266, 0x126c, 0x1272, 0x1278,
0x127e, 0x1284, 0x128a, 0x1294, 0x12a2, 0x12ab, 0x12b5, 0x12c1,
0x12ce, 0x12d5, 0x12db, 0x12e1, 0x12e7, 0x12ed, 0x12f3, 0x12f9,
0x12ff, 0x1305, 0x130b, 0x1311, 0x1317, 0x131d, 0x1323, 0x1329,
0x132f, 0x1335, 0x133b, 0x1341, 0x1347, 0x134d, 0x1353, 0x1359,
0x135f, 0x1365, 0x136b, 0x1371, 0x1381, 0x138f, 0x13a0, 0x13b0,
0x13bf, 0x13d7, 0x13dd, 0x13e3, 0x13e9, 0x13ef, 0x13f5, 0x13fb,
0x1401, 0x1407, 0x140d, 0x1413, 0x1419, 0x141f, 0x1425, 0x142b,
0x1431, 0x1437, 0x143d, 0x1443, 0x1449, 0x144f, 0x1455, 0x145b,
0x1461, 0x1467, 0x146d, 0x1473, 0x1481, 0x1489, 0x1498, 0x0000,
0x4c25, 0x4a49, 0x4c36, 0x0000, 0x4c47, 0x0000, 0x2018, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x2028, 0x56d7, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x2036, 0x0000, 0x56f9, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x14a7, 0x14b8, 0x14c7, 0x14d0, 0x14dd, 0x14ea, 0x14f2, 0x1500,
0x150c, 0x151a, 0x1528, 0x1538, 0x154a, 0x1556, 0x1561, 0x1570,
0x157b, 0x1586, 0x1594, 0x15a4, 0x15b6, 0x15c0, 0x15c7, 0x15d5,
0x15e8, 0x15f4, 0x1604, 0x1612, 0x1625, 0x1634, 0x1640, 0x1652,
0x1663, 0x166e, 0x1679, 0x1689, 0x1694, 0x16a3, 0x16ad, 0x16b4,
0x16c1, 0x16cc, 0x16d7, 0x16e7, 0x16f6, 0x1701, 0x170c, 0x171c,
0x172b, 0x173b, 0x1746, 0x1751, 0x175c, 0x176c, 0x1777, 0x1786,
0x1793, 0x17a0, 0x17ab, 0x17b6, 0x17c6, 0x17d5, 0x17e0, 0x17f4,
0x17ff, 0x180a, 0x1815, 0x1825, 0x1830, 0x183f, 0x1849, 0x1850,
0x185d, 0x1868, 0x1873, 0x1883, 0x1892, 0x189d, 0x18a8, 0x18b8,
0x18c7, 0x18cf, 0x18da, 0x18e5, 0x18f0, 0x1900, 0x190b, 0x191a,
0x1927, 0x1932, 0x193d, 0x1948, 0x1958, 0x1967, 0x1972, 0x197c,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x62fe, 0x1f10,
0x6572, 0x0000, 0x1f1e, 0x0000, 0x6328, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1f2c, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x1f3a, 0x0000, 0x63aa, 0x0000,
0x0000, 0x0000, 0x1f45, 0x0000, 0x63c8, 0x1f50, 0x0000, 0x63d7,
0x1f5e, 0x0000, 0x63e6, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x1f69, 0x0000, 0x6420, 0x1f77,
0x0000, 0x0000, 0x0000, 0x0000, 0x6444, 0x0000, 0x0000, 0x0000,
0x1f85, 0x0000, 0x6460, 0x1f93, 0x0000, 0x0000, 0x661c, 0x0000,
0x6474, 0x1fa1, 0x6636, 0x0000, 0x1faf, 0x2046, 0x6492, 0x1fba,
0x0000, 0x0000, 0x1fc8, 0x0000, 0x64b0, 0x1fd3, 0x668c, 0x0000,
0x1fe1, 0x0000, 0x64cc, 0x1fec, 0x0000, 0x0000, 0x1ffb, 0x0000,
0x0000, 0x200a, 0x5a49, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x2064, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x2074, 0x207b, 0x2082, 0x3c89, 0x5a9f, 0x3c93,
0x0000, 0x3ca4, 0x0000, 0x3cb5, 0x3dcb, 0x3cbc, 0x3de3, 0x3cc3,
0x3dfd, 0x3cca, 0x3e1b, 0x3e29, 0x3e37, 0x3e42, 0x0000, 0x3cd1,
0x0000, 0x3cd8, 0x3e6a, 0x3cdf, 0x3e8b, 0x3cf2, 0x3ea6, 0x3d04,
0x3ec4, 0x3d15, 0x3ee0, 0x3d27, 0x0000, 0x3d39, 0x3efa, 0x3d4c,
0x3f1b, 0x3d5f, 0x3f42, 0x3d72, 0x0000, 0x3d85, 0x3f4d, 0x3d98,
0x3f6c, 0x198b, 0x1997, 0x19a1, 0x3f8d, 0x19ad, 0x19b8, 0x3dbf,
0x3fd8, 0x19c3, 0x19ce, 0x19db, 0x19e6, 0x4044, 0x19f1, 0x19fc,
0x0000, 0x1a0a, 0x1a16, 0x1a21, 0x409e, 0x1a2d, 0x1a38, 0x1a43,
0x40e7, 0x1a4d, 0x1a58, 0x1a65, 0x1a70, 0x1a7b, 0x1a8b, 0x1a96,
0x1aa4, 0x419a, 0x41b1, 0x1aaf, 0x41dc, 0x1aba, 0x1ac5, 0x4215,
0x1ad0, 0x422a, 0x1adb, 0x4234, 0x1ae7, 0x4250, 0x4261, 0x1af2,
0x1afd, 0x1b09, 0x1b14, 0x42af, 0x42c0, 0x1b1f, 0x42e4, 0x42fc,
0x1b30, 0x1b3b, 0x4334, 0x1b45, 0x0000, 0x0000, 0x1b56, 0x0000,
0x1b63, 0x0000, 0x0000, 0x1b6e, 0x0000, 0x1b79, 0x1b84, 0x0000,
0x1b8f, 0x0000, 0x1b9a, 0x0000, 0x1ba6, 0x0000, 0x0000, 0x1bb1,
0x1bbc, 0x1bc8, 0x1bd3, 0x0000, 0x0000, 0x1bde, 0x4ef2, 0x0000,
0x1c00, 0x1c0b, 0x0000, 0x1bef, 0x4f2e, 0x0000, 0x1c15, 0x1c22,
0x4f53, 0x0000, 0x4f64, 0x0000, 0x4f75, 0x0000, 0x4f8b, 0x0000,
0x4f9c, 0x2056, 0x4fae, 0x442b, 0x4fbf, 0x0000, 0x4444, 0x0000,
0x0000, 0x4455, 0x0000, 0x0000, 0x4474, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x505f, 0x0000, 0x0000, 0x0000, 0x507c, 0x0000,
0x508a, 0x0000, 0x5098, 0x0000, 0x50a5, 0x0000, 0x50b4, 0x0000,
0x50c2, 0x0000, 0x456a, 0x0000, 0x50de, 0x0000, 0x0000, 0x0000,
0x50fa, 0x0000, 0x0000, 0x0000, 0x511b, 0x0000, 0x5134, 0x0000,
0x514c, 0x0000, 0x515f, 0x0000, 0x5177, 0x0000, 0x518f, 0x0000,
0x51a3, 0x0000, 0x51b6, 0x0000, 0x51cf, 0x0000, 0x51e7, 0x0000,
0x4640, 0x0000, 0x5216, 0x4660, 0x522e, 0x0000, 0x467f, 0x5486,
0x549c, 0x54b5, 0x5272, 0x54fa, 0x5511, 0x552d, 0x529c, 0x555d,
0x52ae, 0x55b1, 0x52c5, 0x55d9, 0x52d8, 0x5619, 0x52eb, 0x5669,
0x52fe, 0x4f3e, 0x5312, 0x56c6, 0x5325, 0x56e8, 0x5339, 0x5709,
0x534c, 0x572b, 0x3da2, 0x574d, 0x5385, 0x3dad, 0x53a2, 0x578b,
0x3db6, 0x57ab, 0x53d2, 0x57cc, 0x53f0, 0x57ee, 0x433f, 0x5811,
0x5418, 0x434d, 0x542a, 0x435c, 0x436a, 0x5878, 0x545e, 0x5899,
0x58a9, 0x58ba, 0x58cb, 0x58dd, 0x58ef, 0x5901, 0x5913, 0x5924,
0x5477, 0x5945, 0x5955, 0x5965, 0x5975, 0x5986, 0x5997, 0x59a7,
0x59b7, 0x59c8, 0x59d9, 0x4376, 0x59f9, 0x4382, 0x438f, 0x439a,
0x5a39, 0x1c2f, 0x5a59, 0x5a6a, 0x5a7b, 0x43b5, 0x1c3b, 0x43bd,
0x5abf, 0x1c4b, 0x43d1, 0x1c59, 0x1c64, 0x5b17, 0x43dc, 0x5b39,
0x5b49, 0x1c74, 0x5b67, 0x43f5, 0x5b87, 0x4403, 0x1c80, 0x4410,
0x0000, 0x1c90, 0x0000, 0x1c9d, 0x1ca8, 0x0000, 0x0000, 0x5583,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1cb8, 0x1cc6, 0x0000,
0x0000, 0x55c4, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1cd6, 0x0000, 0x441d,
0x1ce4, 0x0000, 0x0000, 0x0000, 0x0000, 0x1cf4, 0x1cff, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1d0f, 0x1d1d, 0x5693,
0x0000, 0x0000, 0x0000, 0x0000, 0x56a4, 0x0000, 0x0000, 0x0000,
0x0000, 0x56b5, 0x0000, 0x0000, 0x0000, 0x1d2d, 0x0000, 0x0000,
0x1d3b, 0x0000, 0x0000, 0x3dd7, 0x0000, 0x1d4b, 0x1d56, 0x3df0,
0x0000, 0x0000, 0x0000, 0x3e0c, 0x0000, 0x5ad0, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x5548, 0x0000, 0x0000, 0x3e4d,
0x0000, 0x0000, 0x0000, 0x3e5d, 0x0000, 0x65b8, 0x0000, 0x3e7e,
0x0000, 0x573d, 0x0000, 0x3e99, 0x0000, 0x0000, 0x0000, 0x3eb4,
0x0000, 0x0000, 0x0000, 0x3ed3, 0x0000, 0x0000, 0x0000, 0x3eef,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x577b, 0x0000, 0x3f06,
0x657c, 0x5fae, 0x5fbc, 0x3f2c, 0x5fd4, 0x5fde, 0x5ff3, 0x579b,
0x601d, 0x6032, 0x6046, 0x605a, 0x606f, 0x6084, 0x609c, 0x3f5b,
0x60c4, 0x60d4, 0x60e4, 0x3f7c, 0x6103, 0x6112, 0x6122, 0x6132,
0x6145, 0x6158, 0x6166, 0x3f9b, 0x617e, 0x3fad, 0x6193, 0x3fc3,
0x61b3, 0x61c8, 0x61dd, 0x3fee, 0x6206, 0x3fff, 0x622f, 0x4013,
0x625c, 0x402b, 0x627e, 0x6288, 0x6296, 0x405c, 0x62b2, 0x4075,
0x62ca, 0x62d4, 0x62e9, 0x4086, 0x6313, 0x4092, 0x633c, 0x6350,
0x6365, 0x637a, 0x6392, 0x40ad, 0x63b9, 0x40ba, 0x5856, 0x40cf,
0x63f4, 0x6402, 0x6411, 0x4100, 0x6432, 0x4113, 0x6452, 0x4124,
0x646a, 0x4139, 0x6483, 0x4150, 0x64a1, 0x4163, 0x64be, 0x4177,
0x64db, 0x418d, 0x64fc, 0x6590, 0x65a4, 0x650e, 0x5bb9, 0x41c6,
0x5bda, 0x5beb, 0x5bfc, 0x41f4, 0x5c1d, 0x4204, 0x5c3f, 0x5c4f,
0x5c60, 0x421e, 0x5c82, 0x5c93, 0x5ca3, 0x5cb4, 0x5cc6, 0x5cd7,
0x5ce8, 0x4245, 0x5d09, 0x5d1b, 0x5d2d, 0x5d3f, 0x5d50, 0x426f,
0x5d74, 0x427f, 0x1d66, 0x1d78, 0x5db9, 0x1d85, 0x1d90, 0x5ded,
0x5dfd, 0x5e0e, 0x1d9d, 0x1da9, 0x1db6, 0x0000, 0x0000, 0x0000,
0x0000, 0x4306, 0x0000, 0x1dc1, 0x0000, 0x1dce, 0x1dd9, 0x0000,
0x0000, 0x0000, 0x1de6, 0x1df2, 0x1dff, 0x1e0a, 0x4497, 0x1e12,
0x1e1a, 0x44d7, 0x44f8, 0x4517, 0x4536, 0x4545, 0x455a, 0x1e26,
0x457b, 0x458f, 0x459e, 0x45b2, 0x1e32, 0x45e5, 0x45f5, 0x1e40,
0x4616, 0x1e4c, 0x1e59, 0x1e65, 0x468f, 0x469f, 0x0000, 0x0000,
0x0000, 0x1e72, 0x0000, 0x0000, 0x0000, 0x1e7e, 0x1e89, 0x0000,
0x1e95, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x1ea1,
0x0000, 0x0000, 0x60f4, 0x0000, 0x1ead, 0x0000, 0x0000, 0x1ebb,
0x0000, 0x1ec7, 0x1ed4, 0x1ee0, 0x0000, 0x0000, 0x0000, 0x0000,
0x666d, 0x1eed, 0x0000, 0x0000, 0x0000, 0x1ef9, 0x1f04, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x6174, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x57dd, 0x0000, 0x0000, 0x4fd1, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x61f2, 0x0000, 0x57ff, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x621a, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x6244, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x6274, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x5f40, 0x62a4, 0x0000, 0x5b58, 0x0000, 0x0000, 0x46ef,
0x5e50, 0x5e65, 0x62c0, 0x5e73, 0x5e81, 0x5e8c, 0x5e93, 0x5e9a,
0x5ea6, 0x0000, 0x0000, 0x0000, 0x0000, 0x5eb1, 0x0000, 0x0000,
0x5ebd, 0x5ed2, 0x5ee0, 0x5eeb, 0x5ef9, 0x5f04, 0x5f0b, 0x5f12,
0x5f1e, 0x0000, 0x0000, 0x5f29, 0x0000, 0x5f34, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x46cf, 0x46de, 0x2091, 0x4701,
0x4713, 0x4724, 0x4738, 0x4748, 0x4759, 0x476b, 0x477d, 0x478b,
0x479c, 0x47ac, 0x47bd, 0x47ce, 0x47df, 0x47f6, 0x480a, 0x4819,
0x4828, 0x4837, 0x4849, 0x485c, 0x486e, 0x487c, 0x488e, 0x489d,
0x48af, 0x48bd, 0x48ce, 0x48dd, 0x48f1, 0x48ff, 0x490e, 0x491d,
0x4929, 0x209e, 0x20b0, 0x20c8, 0x20e0, 0x20ef, 0x2117, 0x2123,
0x212e, 0x2139, 0x2144, 0x214f, 0x215a, 0x2166, 0x2172, 0x217e,
0x2197, 0x21aa, 0x21b5, 0x21c0, 0x21cb, 0x21d6, 0x21e1, 0x21ed,
0x21f9, 0x2205, 0x2211, 0x221d, 0x2229, 0x2236, 0x2242, 0x224e,
0x225a, 0x2266, 0x227f, 0x2298, 0x22a4, 0x22b0, 0x22bc, 0x22c8,
0x22d4, 0x22e0, 0x22ec, 0x22f8, 0x2304, 0x231c, 0x2328, 0x2334,
0x2340, 0x234c, 0x2358, 0x2364, 0x2370, 0x237c, 0x2388, 0x2394,
0x23a0, 0x23ac, 0x23b8, 0x23c4, 0x23d0, 0x23dc, 0x23e7, 0x23f7,
0x0000, 0x49e6, 0x0000, 0x0000, 0x4945, 0x5368, 0x0000, 0x4a0a,
0x0000, 0x4955, 0x4a1a, 0x576c, 0x0000, 0x4a29, 0x4965, 0x0000,
0x4a39, 0x53b5, 0x0000, 0x4975, 0x0000, 0x57bb, 0x4a5a, 0x0000,
0x4984, 0x4a69, 0x652a, 0x0000, 0x4a79, 0x4993, 0x0000, 0x0000,
0x0000, 0x5823, 0x49a4, 0x5834, 0x0000, 0x5845, 0x0000, 0x49b2,
0x4a8a, 0x5867, 0x6554, 0x4aa5, 0x49c4, 0x5889, 0x4ab3, 0x0000,
0x0000, 0x49d7, 0x5c2e, 0x0000, 0x4ad2, 0x0000, 0x5f4a, 0x4ae1,
0x0000, 0x0000, 0x4af8, 0x49fa, 0x0000, 0x4b10, 0x65cb, 0x0000,
0x4b25, 0x5935, 0x5c71, 0x4b37, 0x0000, 0x0000, 0x4b4a, 0x0000,
0x0000, 0x4b59, 0x0000, 0x0000, 0x4b69, 0x0000, 0x0000, 0x4b79,
0x0000, 0x65e2, 0x4b8e, 0x65fc, 0x660d, 0x4ba3, 0x6629, 0x59e9,
0x6644, 0x6653, 0x6661, 0x5a09, 0x667f, 0x5a19, 0x4bb5, 0x5a29,
0x0000, 0x4bc5, 0x0000, 0x43a8, 0x4bd6, 0x0000, 0x0000, 0x4be7,
0x0000, 0x0000, 0x4bf7, 0x5a8d, 0x0000, 0x4c06, 0x0000, 0x5aaf,
0x4c15, 0x0000, 0x0000, 0x43c6, 0x0000, 0x5ae1, 0x0000, 0x5af3,
0x0000, 0x5b05, 0x5d62, 0x0000, 0x0000, 0x5b29, 0x0000, 0x0000,
0x0000, 0x0000, 0x5d85, 0x43e8, 0x0000, 0x0000, 0x4ac2, 0x5b77,
0x0000, 0x0000, 0x5da7, 0x5b9f, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x5dca, 0x3804, 0x0000, 0x4290, 0x3813, 0x0000,
0x42a0, 0x3823, 0x0000, 0x0000, 0x4d90, 0x4da2, 0x4db9, 0x3851,
0x4de0, 0x42ce, 0x385e, 0x4e1e, 0x4e35, 0x4e46, 0x4e5d, 0x4e73,
0x4e89, 0x4e9e, 0x4eb4, 0x4ecb, 0x4ee1, 0x431d, 0x4f03, 0x4f19,
0x241b, 0x2427, 0x2433, 0x243f, 0x244b, 0x2457, 0x2463, 0x246f,
0x247b, 0x2487, 0x4fe2, 0x4fef, 0x4ffd, 0x500b, 0x501a, 0x5028,
0x5035, 0x5044, 0x5052, 0x390c, 0x506d, 0x2493, 0x24a6, 0x24c2,
0x24d2, 0x24e1, 0x24f2, 0x2502, 0x2512, 0x50ec, 0x2523, 0x5107,
0x2537, 0x2544, 0x2551, 0x255e, 0x256b, 0x2578, 0x2585, 0x2592,
0x259f, 0x25ac, 0x51ff, 0x25b9, 0x4c57, 0x5247, 0x525f, 0x25ce,
0x5285, 0x25e7, 0x25f8, 0x260f, 0x2626, 0x263c, 0x2656, 0x266c,
0x267c, 0x268b, 0x26a1, 0x26b0, 0x26c0, 0x26d0, 0x26df, 0x26ef,
0x26fe, 0x270e, 0x271c, 0x272c, 0x273c, 0x274d, 0x275c, 0x276b,
0x277a, 0x2789, 0x2798, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x27a9, 0x27bc, 0x27cb, 0x27da, 0x27e9, 0x27f8, 0x2808, 0x2818,
0x2835, 0x2844, 0x285b, 0x286a, 0x287e, 0x2892, 0x28a6, 0x28b7,
0x28c8, 0x28d9, 0x28eb, 0x28fc, 0x2913, 0x292a, 0x2941, 0x2950,
0x295f, 0x2970, 0x297f, 0x2996, 0x29b1, 0x29bf, 0x29d4, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0f8c, 0x0f9f, 0x0fb2, 0x0fc2, 0x0fd1, 0x0fe2,
0x0ff4, 0x1008, 0x1017, 0x1025, 0x1032, 0x103f, 0x104c, 0x105a,
0x1068, 0x107d, 0x1090, 0x10a2, 0x10b0, 0x10bf, 0x10cd, 0x10db,
0x10e9, 0x10f8, 0x1108, 0x111e, 0x1132, 0x1144, 0x115a, 0x116f,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5fca,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x6008,
0x0000, 0x0000, 0x0000, 0x65ee, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x60b4,
0x29fa, 0x2a24, 0x2a5a, 0x2a8e, 0x2ac4, 0x2af8, 0x2b28, 0x2b60,
0x2b94, 0x2bca, 0x2c02, 0x0000, 0x2c26, 0x2c4c, 0x2c78, 0x2c9e,
0x2a0f, 0x2a3f, 0x2a74, 0x2aa9, 0x2ade, 0x2b10, 0x2b44, 0x2b7a,
0x2baf, 0x2be6, 0x2c14, 0x6188, 0x2c39, 0x2c62, 0x2c8b, 0x2cb4,
0x3b87, 0x2cca, 0x2cda, 0x2cec, 0x2cfc, 0x2d1d, 0x2d2f, 0x2d4e,
0x2d6f, 0x2d8e, 0x2daf, 0x2dd0, 0x2de1, 0x2df3, 0x2e11, 0x2e29,
0x2e4b, 0x2e5a, 0x2e6a, 0x2e7c, 0x2e8c, 0x2ead, 0x2ebf, 0x2ede,
0x2eff, 0x2f1e, 0x2f3f, 0x2f60, 0x2f71, 0x2f83, 0x2fa1, 0x2fb9,
0x2fdb, 0x2feb, 0x2ffa, 0x300a, 0x301b, 0x302b, 0x303b, 0x304b,
0x305c, 0x306c, 0x307b, 0x308f, 0x309f, 0x30af, 0x30bf, 0x30cf,
0x30de, 0x30ee, 0x30fe, 0x310e, 0x311e, 0x312e, 0x313d, 0x314e,
0x315e, 0x3174, 0x3186, 0x3196, 0x31a7, 0x31b6, 0x31c9, 0x31da,
0x31f0, 0x3200, 0x320f, 0x321f, 0x3230, 0x3240, 0x3250, 0x3260,
0x3271, 0x3281, 0x3290, 0x32a4, 0x32b4, 0x32c4, 0x32d4, 0x32e4,
0x32f3, 0x3303, 0x3313, 0x3323, 0x3333, 0x3343, 0x3352, 0x3363,
0x3373, 0x3389, 0x339b, 0x33ab, 0x33bc, 0x33cb, 0x33de, 0x33ef,
0x0000, 0x0000, 0x0000, 0x64ea, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x651c, 0x0000, 0x5bc9,
0x54e2, 0x6534, 0x0000, 0x653e, 0x0000, 0x6549, 0x0000, 0x5c0c,
0x0000, 0x655e, 0x0726, 0x0733, 0x0748, 0x075d, 0x0772, 0x079a,
0x07ae, 0x07c1, 0x07d4, 0x07ec, 0x07ff, 0x0817, 0x082b, 0x0844,
0x0857, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5603, 0x0000,
0x0000, 0x0000, 0x0000, 0x5cf9, 0x5641, 0x0000, 0x0000, 0x0000,
0x0000, 0x086f, 0x0880, 0x0895, 0x08ac, 0x08c4, 0x08de, 0x08f9,
0x0915, 0x092d, 0x0946, 0x0962, 0x097f, 0x099c, 0x09b5, 0x09cf,
0x09e6, 0x09ff, 0x0a1c, 0x0a3c, 0x0a4e, 0x0a64, 0x0000, 0x0000,
0x3a35, 0x0000, 0x5719, 0x0000, 0x3a4e, 0x5e1e, 0x0000, 0x5e2f,
0x3a68, 0x5e40, 0x4dcf, 0x0000, 0x3a7d, 0x3b97, 0x575d, 0x0000,
0x3a92, 0x0000, 0x0000, 0x4e0c, 0x3ab0, 0x0000, 0x0000, 0x0000,
0x3ace, 0x0a72, 0x0a81, 0x0a90, 0x0aa4, 0x0ab3, 0x0ac3, 0x0ad2,
0x0ae4, 0x0af7, 0x0b0a, 0x0b1f, 0x0b2e, 0x0b3f, 0x0b4f, 0x0b5d,
0x0b73, 0x0b8d, 0x0b9f, 0x0bad, 0x5407, 0x0000, 0x0000, 0x44ba,
0x4cdc, 0x44c8, 0x0000, 0x0000, 0x0000, 0x0000, 0x3c45, 0x0000,
0x0000, 0x0c31, 0x0c44, 0x0c60, 0x0c76, 0x0c8a, 0x0ca0, 0x0cb6,
0x0ccb, 0x0ce6, 0x0cfa, 0x0d0e, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x45c1, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x4608,
0x0000, 0x3405, 0x341b, 0x3433, 0x3447, 0x345c, 0x0000, 0x3473,
0x348b, 0x34a3, 0x0000, 0x34bd, 0x0000, 0x0000, 0x34d3, 0x34ec,
0x0000, 0x34ff, 0x3515, 0x352d, 0x3541, 0x3556, 0x356d, 0x358a,
0x35a2, 0x35ba, 0x35d4, 0x35f4, 0x39fd, 0x0000, 0x0000, 0x0000,
0x0000, 0x360a, 0x361a, 0x3629, 0x3639, 0x3649, 0x365b, 0x366a,
0x3678, 0x3688, 0x3697, 0x36a7, 0x36c8, 0x36d5, 0x36e2, 0x36ef,
0x3701, 0x370e, 0x371c, 0x0000, 0x372c, 0x373a, 0x374c, 0x375a,
0x3768, 0x3776, 0x3ae4, 0x0000, 0x3c52, 0x0000, 0x50d0, 0x0000,
0x0000, 0x3786, 0x3796, 0x37a5, 0x37b5, 0x37c5, 0x37d7, 0x37e6,
0x37f4, 0x0bbb, 0x0bd4, 0x0bec, 0x3844, 0x0c04, 0x0c1c, 0x386b,
0x387d, 0x388a, 0x3898, 0x38a8, 0x38c2, 0x38d0, 0x38e2, 0x38f0,
0x38fe, 0x0d25, 0x0d36, 0x0d48, 0x0d57, 0x0d68, 0x0d7b, 0x0d8f,
0x0da4, 0x0dba, 0x0dd2, 0x0de6, 0x0dfa, 0x0e0e, 0x0e22, 0x0e36,
0x0e50, 0x0e66, 0x0e7c, 0x0e92, 0x0ea8, 0x0ebe, 0x0ed4, 0x0ee6,
0x0ef8, 0x0f0a, 0x0f2e, 0x0f45, 0x0f5c, 0x0f74, 0x0f1c, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x393d, 0x0012, 0x0020, 0x0028, 0x0035, 0x3bc1, 0x003f, 0x0000,
0x3983, 0x0000, 0x0000, 0x0000, 0x004a, 0x0054, 0x0064, 0x0000,
0x39d5, 0x0000, 0x39eb, 0x0000, 0x0070, 0x619e, 0x3a0f, 0x0000,
0x3a22, 0x0086, 0x00e2, 0x00ec, 0x00f9, 0x0114, 0x011f, 0x012c,
0x0139, 0x014f, 0x015b, 0x0167, 0x017b, 0x0187, 0x0192, 0x01a0,
0x01af, 0x01be, 0x3afa, 0x4c62, 0x4c73, 0x4c82, 0x4c93, 0x4ca3,
0x0094, 0x4cca, 0x3c12, 0x4ced, 0x4d01, 0x00a2, 0x00b6, 0x00cc,
0x4d6b, 0x543f, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x0000, 0x3c6c, 0x0000, 0x0000, 0x0000, 0x0000, 0x3b7d, 0x0000,
0x0000, 0x01f9, 0x0202, 0x020b, 0x0212, 0x021c, 0x0225, 0x023b,
0x0252, 0x025a, 0x0000, 0x0000, 0x0000, 0x0000, 0x3ba8, 0x0000,
0x3bb5, 0x0264, 0x026f, 0x0279, 0x0285, 0x0000, 0x0290, 0x0299,
0x02a2, 0x02ab, 0x02b4, 0x02bf, 0x02c8, 0x0000, 0x0000, 0x0000,
0x3bcf, 0x0000, 0x0000, 0x0000, 0x3c7b, 0x0000, 0x0000, 0x0000,
0x3bdb, 0x0000, 0x3bea, 0x0000, 0x3bf7, 0x0000, 0x3c08, 0x02d2,
0x02f4, 0x0301, 0x3c21, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
0x6568, 0x392d, 0x030e, 0x3950, 0x3963, 0x3973, 0x0319, 0x3995,
0x39aa, 0x39bf, 0x0326, 0x0330, 0x033a, 0x0344, 0x034e, 0x035a,
0x0366, 0x0370, 0x037d, 0x0389, 0x03a5, 0x03c2, 0x03cd, 0x03da,
0x03e8, 0x0000, 0x3c2f, 0x0000, 0x3b13, 0x3b25, 0x3b32, 0x3b47,
0x3b54, 0x3b62, 0x3b70, 0x0403, 0x0413, 0x041e, 0x042f, 0x043f,
0x044e, 0x045c, 0x0465, 0x046e, 0x0477, 0x0480, 0x0489, 0x0492,
0x049b, 0x04a4, 0x04ad, 0x0000, 0x3c60, 0x0000, 0x03f6, 0x04b6,
0x04bd, 0x04c4, 0x04cb, 0x04d2, 0x04d9, 0x04e0, 0x04e7, 0x04ee,
0x04f5, 0x04fd, 0x050c, 0x051b, 0x052a, 0x0539, 0x0548, 0x0557,
0x0566, 0x0575, 0x0584, 0x0594, 0x05a3, 0x05b2, 0x05c1, 0x05d0,
0x05df, 0x05ee, 0x05fd, 0x060c, 0x061b, 0x062b, 0x063b, 0x064b,
0x065b, 0x066b, 0x067b, 0x0687, 0x0693, 0x06a1, 0x06af, 0x06bd,
0x06cc, 0x06d7, 0x06e2, 0x06ec, 0x06f6, 0x0702, 0x070e, 0x071a,
0x0000, 0x5d96, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000, 0x5f54,
0x0000, 0x5f62, 0x0000, 0x5f98, 0x0000, 0x0000, 0x0000, 0x0000,
0x007b, 0x0000, 0x0000, 0x0000, 0x0000, 0x5ddc, 0x0000, 0x0000,
0x0000, 0x0000, 0x0000, 0x0000, 0x0000
};
#endif /* NEEDVTABLE */