Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app.php « emoji - github.com/nextcloud/apps.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 066e037e600fa882ac5bdfd49f2a3d36ef48cb86 (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
<?php

/**
 * FROM https://github.com/iamcal/php-emoji
 */
 
namespace OCA\Emoji;


class App {
	private $maps;

	public function __construct() {
			$this->maps  = array(
			'names' => array(
				"\xe2\x98\x80" => 'BLACK SUN WITH RAYS',
				"\xe2\x98\x81" => 'CLOUD',
				"\xe2\x98\x94" => 'UMBRELLA WITH RAIN DROPS',
				"\xe2\x9b\x84" => 'SNOWMAN WITHOUT SNOW',
				"\xe2\x9a\xa1" => 'HIGH VOLTAGE SIGN',
				"\xf0\x9f\x8c\x80" => 'CYCLONE',
				"\xf0\x9f\x8c\x81" => 'FOGGY',
				"\xf0\x9f\x8c\x82" => 'CLOSED UMBRELLA',
				"\xf0\x9f\x8c\x83" => 'NIGHT WITH STARS',
				"\xf0\x9f\x8c\x84" => 'SUNRISE OVER MOUNTAINS',
				"\xf0\x9f\x8c\x85" => 'SUNRISE',
				"\xf0\x9f\x8c\x86" => 'CITYSCAPE AT DUSK',
				"\xf0\x9f\x8c\x87" => 'SUNSET OVER BUILDINGS',
				"\xf0\x9f\x8c\x88" => 'RAINBOW',
				"\xe2\x9d\x84" => 'SNOWFLAKE',
				"\xe2\x9b\x85" => 'SUN BEHIND CLOUD',
				"\xf0\x9f\x8c\x89" => 'BRIDGE AT NIGHT',
				"\xf0\x9f\x8c\x8a" => 'WATER WAVE',
				"\xf0\x9f\x8c\x8b" => 'VOLCANO',
				"\xf0\x9f\x8c\x8c" => 'MILKY WAY',
				"\xf0\x9f\x8c\x8f" => 'EARTH GLOBE ASIA-AUSTRALIA',
				"\xf0\x9f\x8c\x91" => 'NEW MOON SYMBOL',
				"\xf0\x9f\x8c\x94" => 'WAXING GIBBOUS MOON SYMBOL',
				"\xf0\x9f\x8c\x93" => 'FIRST QUARTER MOON SYMBOL',
				"\xf0\x9f\x8c\x99" => 'CRESCENT MOON',
				"\xf0\x9f\x8c\x95" => 'FULL MOON SYMBOL',
				"\xf0\x9f\x8c\x9b" => 'FIRST QUARTER MOON WITH FACE',
				"\xf0\x9f\x8c\x9f" => 'GLOWING STAR',
				"\xf0\x9f\x8c\xa0" => 'SHOOTING STAR',
				"\xf0\x9f\x95\x90" => 'CLOCK FACE ONE OCLOCK',
				"\xf0\x9f\x95\x91" => 'CLOCK FACE TWO OCLOCK',
				"\xf0\x9f\x95\x92" => 'CLOCK FACE THREE OCLOCK',
				"\xf0\x9f\x95\x93" => 'CLOCK FACE FOUR OCLOCK',
				"\xf0\x9f\x95\x94" => 'CLOCK FACE FIVE OCLOCK',
				"\xf0\x9f\x95\x95" => 'CLOCK FACE SIX OCLOCK',
				"\xf0\x9f\x95\x96" => 'CLOCK FACE SEVEN OCLOCK',
				"\xf0\x9f\x95\x97" => 'CLOCK FACE EIGHT OCLOCK',
				"\xf0\x9f\x95\x98" => 'CLOCK FACE NINE OCLOCK',
				"\xf0\x9f\x95\x99" => 'CLOCK FACE TEN OCLOCK',
				"\xf0\x9f\x95\x9a" => 'CLOCK FACE ELEVEN OCLOCK',
				"\xf0\x9f\x95\x9b" => 'CLOCK FACE TWELVE OCLOCK',
				"\xe2\x8c\x9a" => 'WATCH',
				"\xe2\x8c\x9b" => 'HOURGLASS',
				"\xe2\x8f\xb0" => 'ALARM CLOCK',
				"\xe2\x8f\xb3" => 'HOURGLASS WITH FLOWING SAND',
				"\xe2\x99\x88" => 'ARIES',
				"\xe2\x99\x89" => 'TAURUS',
				"\xe2\x99\x8a" => 'GEMINI',
				"\xe2\x99\x8b" => 'CANCER',
				"\xe2\x99\x8c" => 'LEO',
				"\xe2\x99\x8d" => 'VIRGO',
				"\xe2\x99\x8e" => 'LIBRA',
				"\xe2\x99\x8f" => 'SCORPIUS',
				"\xe2\x99\x90" => 'SAGITTARIUS',
				"\xe2\x99\x91" => 'CAPRICORN',
				"\xe2\x99\x92" => 'AQUARIUS',
				"\xe2\x99\x93" => 'PISCES',
				"\xe2\x9b\x8e" => 'OPHIUCHUS',
				"\xf0\x9f\x8d\x80" => 'FOUR LEAF CLOVER',
				"\xf0\x9f\x8c\xb7" => 'TULIP',
				"\xf0\x9f\x8c\xb1" => 'SEEDLING',
				"\xf0\x9f\x8d\x81" => 'MAPLE LEAF',
				"\xf0\x9f\x8c\xb8" => 'CHERRY BLOSSOM',
				"\xf0\x9f\x8c\xb9" => 'ROSE',
				"\xf0\x9f\x8d\x82" => 'FALLEN LEAF',
				"\xf0\x9f\x8d\x83" => 'LEAF FLUTTERING IN WIND',
				"\xf0\x9f\x8c\xba" => 'HIBISCUS',
				"\xf0\x9f\x8c\xbb" => 'SUNFLOWER',
				"\xf0\x9f\x8c\xb4" => 'PALM TREE',
				"\xf0\x9f\x8c\xb5" => 'CACTUS',
				"\xf0\x9f\x8c\xbe" => 'EAR OF RICE',
				"\xf0\x9f\x8c\xbd" => 'EAR OF MAIZE',
				"\xf0\x9f\x8d\x84" => 'MUSHROOM',
				"\xf0\x9f\x8c\xb0" => 'CHESTNUT',
				"\xf0\x9f\x8c\xbc" => 'BLOSSOM',
				"\xf0\x9f\x8c\xbf" => 'HERB',
				"\xf0\x9f\x8d\x92" => 'CHERRIES',
				"\xf0\x9f\x8d\x8c" => 'BANANA',
				"\xf0\x9f\x8d\x8e" => 'RED APPLE',
				"\xf0\x9f\x8d\x8a" => 'TANGERINE',
				"\xf0\x9f\x8d\x93" => 'STRAWBERRY',
				"\xf0\x9f\x8d\x89" => 'WATERMELON',
				"\xf0\x9f\x8d\x85" => 'TOMATO',
				"\xf0\x9f\x8d\x86" => 'AUBERGINE',
				"\xf0\x9f\x8d\x88" => 'MELON',
				"\xf0\x9f\x8d\x8d" => 'PINEAPPLE',
				"\xf0\x9f\x8d\x87" => 'GRAPES',
				"\xf0\x9f\x8d\x91" => 'PEACH',
				"\xf0\x9f\x8d\x8f" => 'GREEN APPLE',
				"\xf0\x9f\x91\x80" => 'EYES',
				"\xf0\x9f\x91\x82" => 'EAR',
				"\xf0\x9f\x91\x83" => 'NOSE',
				"\xf0\x9f\x91\x84" => 'MOUTH',
				"\xf0\x9f\x91\x85" => 'TONGUE',
				"\xf0\x9f\x92\x84" => 'LIPSTICK',
				"\xf0\x9f\x92\x85" => 'NAIL POLISH',
				"\xf0\x9f\x92\x86" => 'FACE MASSAGE',
				"\xf0\x9f\x92\x87" => 'HAIRCUT',
				"\xf0\x9f\x92\x88" => 'BARBER POLE',
				"\xf0\x9f\x91\xa4" => 'BUST IN SILHOUETTE',
				"\xf0\x9f\x91\xa6" => 'BOY',
				"\xf0\x9f\x91\xa7" => 'GIRL',
				"\xf0\x9f\x91\xa8" => 'MAN',
				"\xf0\x9f\x91\xa9" => 'WOMAN',
				"\xf0\x9f\x91\xaa" => 'FAMILY',
				"\xf0\x9f\x91\xab" => 'MAN AND WOMAN HOLDING HANDS',
				"\xf0\x9f\x91\xae" => 'POLICE OFFICER',
				"\xf0\x9f\x91\xaf" => 'WOMAN WITH BUNNY EARS',
				"\xf0\x9f\x91\xb0" => 'BRIDE WITH VEIL',
				"\xf0\x9f\x91\xb1" => 'PERSON WITH BLOND HAIR',
				"\xf0\x9f\x91\xb2" => 'MAN WITH GUA PI MAO',
				"\xf0\x9f\x91\xb3" => 'MAN WITH TURBAN',
				"\xf0\x9f\x91\xb4" => 'OLDER MAN',
				"\xf0\x9f\x91\xb5" => 'OLDER WOMAN',
				"\xf0\x9f\x91\xb6" => 'BABY',
				"\xf0\x9f\x91\xb7" => 'CONSTRUCTION WORKER',
				"\xf0\x9f\x91\xb8" => 'PRINCESS',
				"\xf0\x9f\x91\xb9" => 'JAPANESE OGRE',
				"\xf0\x9f\x91\xba" => 'JAPANESE GOBLIN',
				"\xf0\x9f\x91\xbb" => 'GHOST',
				"\xf0\x9f\x91\xbc" => 'BABY ANGEL',
				"\xf0\x9f\x91\xbd" => 'EXTRATERRESTRIAL ALIEN',
				"\xf0\x9f\x91\xbe" => 'ALIEN MONSTER',
				"\xf0\x9f\x91\xbf" => 'IMP',
				"\xf0\x9f\x92\x80" => 'SKULL',
				"\xf0\x9f\x92\x81" => 'INFORMATION DESK PERSON',
				"\xf0\x9f\x92\x82" => 'GUARDSMAN',
				"\xf0\x9f\x92\x83" => 'DANCER',
				"\xf0\x9f\x90\x8c" => 'SNAIL',
				"\xf0\x9f\x90\x8d" => 'SNAKE',
				"\xf0\x9f\x90\x8e" => 'HORSE',
				"\xf0\x9f\x90\x94" => 'CHICKEN',
				"\xf0\x9f\x90\x97" => 'BOAR',
				"\xf0\x9f\x90\xab" => 'BACTRIAN CAMEL',
				"\xf0\x9f\x90\x98" => 'ELEPHANT',
				"\xf0\x9f\x90\xa8" => 'KOALA',
				"\xf0\x9f\x90\x92" => 'MONKEY',
				"\xf0\x9f\x90\x91" => 'SHEEP',
				"\xf0\x9f\x90\x99" => 'OCTOPUS',
				"\xf0\x9f\x90\x9a" => 'SPIRAL SHELL',
				"\xf0\x9f\x90\x9b" => 'BUG',
				"\xf0\x9f\x90\x9c" => 'ANT',
				"\xf0\x9f\x90\x9d" => 'HONEYBEE',
				"\xf0\x9f\x90\x9e" => 'LADY BEETLE',
				"\xf0\x9f\x90\xa0" => 'TROPICAL FISH',
				"\xf0\x9f\x90\xa1" => 'BLOWFISH',
				"\xf0\x9f\x90\xa2" => 'TURTLE',
				"\xf0\x9f\x90\xa4" => 'BABY CHICK',
				"\xf0\x9f\x90\xa5" => 'FRONT-FACING BABY CHICK',
				"\xf0\x9f\x90\xa6" => 'BIRD',
				"\xf0\x9f\x90\xa3" => 'HATCHING CHICK',
				"\xf0\x9f\x90\xa7" => 'PENGUIN',
				"\xf0\x9f\x90\xa9" => 'POODLE',
				"\xf0\x9f\x90\x9f" => 'FISH',
				"\xf0\x9f\x90\xac" => 'DOLPHIN',
				"\xf0\x9f\x90\xad" => 'MOUSE FACE',
				"\xf0\x9f\x90\xaf" => 'TIGER FACE',
				"\xf0\x9f\x90\xb1" => 'CAT FACE',
				"\xf0\x9f\x90\xb3" => 'SPOUTING WHALE',
				"\xf0\x9f\x90\xb4" => 'HORSE FACE',
				"\xf0\x9f\x90\xb5" => 'MONKEY FACE',
				"\xf0\x9f\x90\xb6" => 'DOG FACE',
				"\xf0\x9f\x90\xb7" => 'PIG FACE',
				"\xf0\x9f\x90\xbb" => 'BEAR FACE',
				"\xf0\x9f\x90\xb9" => 'HAMSTER FACE',
				"\xf0\x9f\x90\xba" => 'WOLF FACE',
				"\xf0\x9f\x90\xae" => 'COW FACE',
				"\xf0\x9f\x90\xb0" => 'RABBIT FACE',
				"\xf0\x9f\x90\xb8" => 'FROG FACE',
				"\xf0\x9f\x90\xbe" => 'PAW PRINTS',
				"\xf0\x9f\x90\xb2" => 'DRAGON FACE',
				"\xf0\x9f\x90\xbc" => 'PANDA FACE',
				"\xf0\x9f\x90\xbd" => 'PIG NOSE',
				"\xf0\x9f\x98\xa0" => 'ANGRY FACE',
				"\xf0\x9f\x98\xa9" => 'WEARY FACE',
				"\xf0\x9f\x98\xb2" => 'ASTONISHED FACE',
				"\xf0\x9f\x98\x9e" => 'DISAPPOINTED FACE',
				"\xf0\x9f\x98\xb5" => 'DIZZY FACE',
				"\xf0\x9f\x98\xb0" => 'FACE WITH OPEN MOUTH AND COLD SWEAT',
				"\xf0\x9f\x98\x92" => 'UNAMUSED FACE',
				"\xf0\x9f\x98\x8d" => 'SMILING FACE WITH HEART-SHAPED EYES',
				"\xf0\x9f\x98\xa4" => 'FACE WITH LOOK OF TRIUMPH',
				"\xf0\x9f\x98\x9c" => 'FACE WITH STUCK-OUT TONGUE AND WINKING EYE',
				"\xf0\x9f\x98\x9d" => 'FACE WITH STUCK-OUT TONGUE AND TIGHTLY-CLOSED EYES',
				"\xf0\x9f\x98\x8b" => 'FACE SAVOURING DELICIOUS FOOD',
				"\xf0\x9f\x98\x98" => 'FACE THROWING A KISS',
				"\xf0\x9f\x98\x9a" => 'KISSING FACE WITH CLOSED EYES',
				"\xf0\x9f\x98\xb7" => 'FACE WITH MEDICAL MASK',
				"\xf0\x9f\x98\xb3" => 'FLUSHED FACE',
				"\xf0\x9f\x98\x83" => 'SMILING FACE WITH OPEN MOUTH',
				"\xf0\x9f\x98\x85" => 'SMILING FACE WITH OPEN MOUTH AND COLD SWEAT',
				"\xf0\x9f\x98\x86" => 'SMILING FACE WITH OPEN MOUTH AND TIGHTLY-CLOSED EYES',
				"\xf0\x9f\x98\x81" => 'GRINNING FACE WITH SMILING EYES',
				"\xf0\x9f\x98\x82" => 'FACE WITH TEARS OF JOY',
				"\xf0\x9f\x98\x8a" => 'SMILING FACE WITH SMILING EYES',
				"\xe2\x98\xba" => 'WHITE SMILING FACE',
				"\xf0\x9f\x98\x84" => 'SMILING FACE WITH OPEN MOUTH AND SMILING EYES',
				"\xf0\x9f\x98\xa2" => 'CRYING FACE',
				"\xf0\x9f\x98\xad" => 'LOUDLY CRYING FACE',
				"\xf0\x9f\x98\xa8" => 'FEARFUL FACE',
				"\xf0\x9f\x98\xa3" => 'PERSEVERING FACE',
				"\xf0\x9f\x98\xa1" => 'POUTING FACE',
				"\xf0\x9f\x98\x8c" => 'RELIEVED FACE',
				"\xf0\x9f\x98\x96" => 'CONFOUNDED FACE',
				"\xf0\x9f\x98\x94" => 'PENSIVE FACE',
				"\xf0\x9f\x98\xb1" => 'FACE SCREAMING IN FEAR',
				"\xf0\x9f\x98\xaa" => 'SLEEPY FACE',
				"\xf0\x9f\x98\x8f" => 'SMIRKING FACE',
				"\xf0\x9f\x98\x93" => 'FACE WITH COLD SWEAT',
				"\xf0\x9f\x98\xa5" => 'DISAPPOINTED BUT RELIEVED FACE',
				"\xf0\x9f\x98\xab" => 'TIRED FACE',
				"\xf0\x9f\x98\x89" => 'WINKING FACE',
				"\xf0\x9f\x98\xba" => 'SMILING CAT FACE WITH OPEN MOUTH',
				"\xf0\x9f\x98\xb8" => 'GRINNING CAT FACE WITH SMILING EYES',
				"\xf0\x9f\x98\xb9" => 'CAT FACE WITH TEARS OF JOY',
				"\xf0\x9f\x98\xbd" => 'KISSING CAT FACE WITH CLOSED EYES',
				"\xf0\x9f\x98\xbb" => 'SMILING CAT FACE WITH HEART-SHAPED EYES',
				"\xf0\x9f\x98\xbf" => 'CRYING CAT FACE',
				"\xf0\x9f\x98\xbe" => 'POUTING CAT FACE',
				"\xf0\x9f\x98\xbc" => 'CAT FACE WITH WRY SMILE',
				"\xf0\x9f\x99\x80" => 'WEARY CAT FACE',
				"\xf0\x9f\x99\x85" => 'FACE WITH NO GOOD GESTURE',
				"\xf0\x9f\x99\x86" => 'FACE WITH OK GESTURE',
				"\xf0\x9f\x99\x87" => 'PERSON BOWING DEEPLY',
				"\xf0\x9f\x99\x88" => 'SEE-NO-EVIL MONKEY',
				"\xf0\x9f\x99\x8a" => 'SPEAK-NO-EVIL MONKEY',
				"\xf0\x9f\x99\x89" => 'HEAR-NO-EVIL MONKEY',
				"\xf0\x9f\x99\x8b" => 'HAPPY PERSON RAISING ONE HAND',
				"\xf0\x9f\x99\x8c" => 'PERSON RAISING BOTH HANDS IN CELEBRATION',
				"\xf0\x9f\x99\x8d" => 'PERSON FROWNING',
				"\xf0\x9f\x99\x8e" => 'PERSON WITH POUTING FACE',
				"\xf0\x9f\x99\x8f" => 'PERSON WITH FOLDED HANDS',
				"\xf0\x9f\x8f\xa0" => 'HOUSE BUILDING',
				"\xf0\x9f\x8f\xa1" => 'HOUSE WITH GARDEN',
				"\xf0\x9f\x8f\xa2" => 'OFFICE BUILDING',
				"\xf0\x9f\x8f\xa3" => 'JAPANESE POST OFFICE',
				"\xf0\x9f\x8f\xa5" => 'HOSPITAL',
				"\xf0\x9f\x8f\xa6" => 'BANK',
				"\xf0\x9f\x8f\xa7" => 'AUTOMATED TELLER MACHINE',
				"\xf0\x9f\x8f\xa8" => 'HOTEL',
				"\xf0\x9f\x8f\xa9" => 'LOVE HOTEL',
				"\xf0\x9f\x8f\xaa" => 'CONVENIENCE STORE',
				"\xf0\x9f\x8f\xab" => 'SCHOOL',
				"\xe2\x9b\xaa" => 'CHURCH',
				"\xe2\x9b\xb2" => 'FOUNTAIN',
				"\xf0\x9f\x8f\xac" => 'DEPARTMENT STORE',
				"\xf0\x9f\x8f\xaf" => 'JAPANESE CASTLE',
				"\xf0\x9f\x8f\xb0" => 'EUROPEAN CASTLE',
				"\xf0\x9f\x8f\xad" => 'FACTORY',
				"\xe2\x9a\x93" => 'ANCHOR',
				"\xf0\x9f\x8f\xae" => 'IZAKAYA LANTERN',
				"\xf0\x9f\x97\xbb" => 'MOUNT FUJI',
				"\xf0\x9f\x97\xbc" => 'TOKYO TOWER',
				"\xf0\x9f\x97\xbd" => 'STATUE OF LIBERTY',
				"\xf0\x9f\x97\xbe" => 'SILHOUETTE OF JAPAN',
				"\xf0\x9f\x97\xbf" => 'MOYAI',
				"\xf0\x9f\x91\x9e" => 'MANS SHOE',
				"\xf0\x9f\x91\x9f" => 'ATHLETIC SHOE',
				"\xf0\x9f\x91\xa0" => 'HIGH-HEELED SHOE',
				"\xf0\x9f\x91\xa1" => 'WOMANS SANDAL',
				"\xf0\x9f\x91\xa2" => 'WOMANS BOOTS',
				"\xf0\x9f\x91\xa3" => 'FOOTPRINTS',
				"\xf0\x9f\x91\x93" => 'EYEGLASSES',
				"\xf0\x9f\x91\x95" => 'T-SHIRT',
				"\xf0\x9f\x91\x96" => 'JEANS',
				"\xf0\x9f\x91\x91" => 'CROWN',
				"\xf0\x9f\x91\x94" => 'NECKTIE',
				"\xf0\x9f\x91\x92" => 'WOMANS HAT',
				"\xf0\x9f\x91\x97" => 'DRESS',
				"\xf0\x9f\x91\x98" => 'KIMONO',
				"\xf0\x9f\x91\x99" => 'BIKINI',
				"\xf0\x9f\x91\x9a" => 'WOMANS CLOTHES',
				"\xf0\x9f\x91\x9b" => 'PURSE',
				"\xf0\x9f\x91\x9c" => 'HANDBAG',
				"\xf0\x9f\x91\x9d" => 'POUCH',
				"\xf0\x9f\x92\xb0" => 'MONEY BAG',
				"\xf0\x9f\x92\xb1" => 'CURRENCY EXCHANGE',
				"\xf0\x9f\x92\xb9" => 'CHART WITH UPWARDS TREND AND YEN SIGN',
				"\xf0\x9f\x92\xb2" => 'HEAVY DOLLAR SIGN',
				"\xf0\x9f\x92\xb3" => 'CREDIT CARD',
				"\xf0\x9f\x92\xb4" => 'BANKNOTE WITH YEN SIGN',
				"\xf0\x9f\x92\xb5" => 'BANKNOTE WITH DOLLAR SIGN',
				"\xf0\x9f\x92\xb8" => 'MONEY WITH WINGS',
				"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3" => 'REGIONAL INDICATOR SYMBOL LETTERS CN',
				"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa" => 'REGIONAL INDICATOR SYMBOL LETTERS DE',
				"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8" => 'REGIONAL INDICATOR SYMBOL LETTERS ES',
				"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7" => 'REGIONAL INDICATOR SYMBOL LETTERS FR',
				"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7" => 'REGIONAL INDICATOR SYMBOL LETTERS GB',
				"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9" => 'REGIONAL INDICATOR SYMBOL LETTERS IT',
				"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5" => 'REGIONAL INDICATOR SYMBOL LETTERS JP',
				"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7" => 'REGIONAL INDICATOR SYMBOL LETTERS KR',
				"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba" => 'REGIONAL INDICATOR SYMBOL LETTERS RU',
				"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8" => 'REGIONAL INDICATOR SYMBOL LETTERS US',
				"\xf0\x9f\x94\xa5" => 'FIRE',
				"\xf0\x9f\x94\xa6" => 'ELECTRIC TORCH',
				"\xf0\x9f\x94\xa7" => 'WRENCH',
				"\xf0\x9f\x94\xa8" => 'HAMMER',
				"\xf0\x9f\x94\xa9" => 'NUT AND BOLT',
				"\xf0\x9f\x94\xaa" => 'HOCHO',
				"\xf0\x9f\x94\xab" => 'PISTOL',
				"\xf0\x9f\x94\xae" => 'CRYSTAL BALL',
				"\xf0\x9f\x94\xaf" => 'SIX POINTED STAR WITH MIDDLE DOT',
				"\xf0\x9f\x94\xb0" => 'JAPANESE SYMBOL FOR BEGINNER',
				"\xf0\x9f\x94\xb1" => 'TRIDENT EMBLEM',
				"\xf0\x9f\x92\x89" => 'SYRINGE',
				"\xf0\x9f\x92\x8a" => 'PILL',
				"\xf0\x9f\x85\xb0" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER A',
				"\xf0\x9f\x85\xb1" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER B',
				"\xf0\x9f\x86\x8e" => 'NEGATIVE SQUARED AB',
				"\xf0\x9f\x85\xbe" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER O',
				"\xf0\x9f\x8e\x80" => 'RIBBON',
				"\xf0\x9f\x8e\x81" => 'WRAPPED PRESENT',
				"\xf0\x9f\x8e\x82" => 'BIRTHDAY CAKE',
				"\xf0\x9f\x8e\x84" => 'CHRISTMAS TREE',
				"\xf0\x9f\x8e\x85" => 'FATHER CHRISTMAS',
				"\xf0\x9f\x8e\x8c" => 'CROSSED FLAGS',
				"\xf0\x9f\x8e\x86" => 'FIREWORKS',
				"\xf0\x9f\x8e\x88" => 'BALLOON',
				"\xf0\x9f\x8e\x89" => 'PARTY POPPER',
				"\xf0\x9f\x8e\x8d" => 'PINE DECORATION',
				"\xf0\x9f\x8e\x8e" => 'JAPANESE DOLLS',
				"\xf0\x9f\x8e\x93" => 'GRADUATION CAP',
				"\xf0\x9f\x8e\x92" => 'SCHOOL SATCHEL',
				"\xf0\x9f\x8e\x8f" => 'CARP STREAMER',
				"\xf0\x9f\x8e\x87" => 'FIREWORK SPARKLER',
				"\xf0\x9f\x8e\x90" => 'WIND CHIME',
				"\xf0\x9f\x8e\x83" => 'JACK-O-LANTERN',
				"\xf0\x9f\x8e\x8a" => 'CONFETTI BALL',
				"\xf0\x9f\x8e\x8b" => 'TANABATA TREE',
				"\xf0\x9f\x8e\x91" => 'MOON VIEWING CEREMONY',
				"\xf0\x9f\x93\x9f" => 'PAGER',
				"\xe2\x98\x8e" => 'BLACK TELEPHONE',
				"\xf0\x9f\x93\x9e" => 'TELEPHONE RECEIVER',
				"\xf0\x9f\x93\xb1" => 'MOBILE PHONE',
				"\xf0\x9f\x93\xb2" => 'MOBILE PHONE WITH RIGHTWARDS ARROW AT LEFT',
				"\xf0\x9f\x93\x9d" => 'MEMO',
				"\xf0\x9f\x93\xa0" => 'FAX MACHINE',
				"\xe2\x9c\x89" => 'ENVELOPE',
				"\xf0\x9f\x93\xa8" => 'INCOMING ENVELOPE',
				"\xf0\x9f\x93\xa9" => 'ENVELOPE WITH DOWNWARDS ARROW ABOVE',
				"\xf0\x9f\x93\xaa" => 'CLOSED MAILBOX WITH LOWERED FLAG',
				"\xf0\x9f\x93\xab" => 'CLOSED MAILBOX WITH RAISED FLAG',
				"\xf0\x9f\x93\xae" => 'POSTBOX',
				"\xf0\x9f\x93\xb0" => 'NEWSPAPER',
				"\xf0\x9f\x93\xa2" => 'PUBLIC ADDRESS LOUDSPEAKER',
				"\xf0\x9f\x93\xa3" => 'CHEERING MEGAPHONE',
				"\xf0\x9f\x93\xa1" => 'SATELLITE ANTENNA',
				"\xf0\x9f\x93\xa4" => 'OUTBOX TRAY',
				"\xf0\x9f\x93\xa5" => 'INBOX TRAY',
				"\xf0\x9f\x93\xa6" => 'PACKAGE',
				"\xf0\x9f\x93\xa7" => 'E-MAIL SYMBOL',
				"\xf0\x9f\x94\xa0" => 'INPUT SYMBOL FOR LATIN CAPITAL LETTERS',
				"\xf0\x9f\x94\xa1" => 'INPUT SYMBOL FOR LATIN SMALL LETTERS',
				"\xf0\x9f\x94\xa2" => 'INPUT SYMBOL FOR NUMBERS',
				"\xf0\x9f\x94\xa3" => 'INPUT SYMBOL FOR SYMBOLS',
				"\xf0\x9f\x94\xa4" => 'INPUT SYMBOL FOR LATIN LETTERS',
				"\xe2\x9c\x92" => 'BLACK NIB',
				"\xf0\x9f\x92\xba" => 'SEAT',
				"\xf0\x9f\x92\xbb" => 'PERSONAL COMPUTER',
				"\xe2\x9c\x8f" => 'PENCIL',
				"\xf0\x9f\x93\x8e" => 'PAPERCLIP',
				"\xf0\x9f\x92\xbc" => 'BRIEFCASE',
				"\xf0\x9f\x92\xbd" => 'MINIDISC',
				"\xf0\x9f\x92\xbe" => 'FLOPPY DISK',
				"\xf0\x9f\x92\xbf" => 'OPTICAL DISC',
				"\xf0\x9f\x93\x80" => 'DVD',
				"\xe2\x9c\x82" => 'BLACK SCISSORS',
				"\xf0\x9f\x93\x8d" => 'ROUND PUSHPIN',
				"\xf0\x9f\x93\x83" => 'PAGE WITH CURL',
				"\xf0\x9f\x93\x84" => 'PAGE FACING UP',
				"\xf0\x9f\x93\x85" => 'CALENDAR',
				"\xf0\x9f\x93\x81" => 'FILE FOLDER',
				"\xf0\x9f\x93\x82" => 'OPEN FILE FOLDER',
				"\xf0\x9f\x93\x93" => 'NOTEBOOK',
				"\xf0\x9f\x93\x96" => 'OPEN BOOK',
				"\xf0\x9f\x93\x94" => 'NOTEBOOK WITH DECORATIVE COVER',
				"\xf0\x9f\x93\x95" => 'CLOSED BOOK',
				"\xf0\x9f\x93\x97" => 'GREEN BOOK',
				"\xf0\x9f\x93\x98" => 'BLUE BOOK',
				"\xf0\x9f\x93\x99" => 'ORANGE BOOK',
				"\xf0\x9f\x93\x9a" => 'BOOKS',
				"\xf0\x9f\x93\x9b" => 'NAME BADGE',
				"\xf0\x9f\x93\x9c" => 'SCROLL',
				"\xf0\x9f\x93\x8b" => 'CLIPBOARD',
				"\xf0\x9f\x93\x86" => 'TEAR-OFF CALENDAR',
				"\xf0\x9f\x93\x8a" => 'BAR CHART',
				"\xf0\x9f\x93\x88" => 'CHART WITH UPWARDS TREND',
				"\xf0\x9f\x93\x89" => 'CHART WITH DOWNWARDS TREND',
				"\xf0\x9f\x93\x87" => 'CARD INDEX',
				"\xf0\x9f\x93\x8c" => 'PUSHPIN',
				"\xf0\x9f\x93\x92" => 'LEDGER',
				"\xf0\x9f\x93\x8f" => 'STRAIGHT RULER',
				"\xf0\x9f\x93\x90" => 'TRIANGULAR RULER',
				"\xf0\x9f\x93\x91" => 'BOOKMARK TABS',
				"\xf0\x9f\x8e\xbd" => 'RUNNING SHIRT WITH SASH',
				"\xe2\x9a\xbe" => 'BASEBALL',
				"\xe2\x9b\xb3" => 'FLAG IN HOLE',
				"\xf0\x9f\x8e\xbe" => 'TENNIS RACQUET AND BALL',
				"\xe2\x9a\xbd" => 'SOCCER BALL',
				"\xf0\x9f\x8e\xbf" => 'SKI AND SKI BOOT',
				"\xf0\x9f\x8f\x80" => 'BASKETBALL AND HOOP',
				"\xf0\x9f\x8f\x81" => 'CHEQUERED FLAG',
				"\xf0\x9f\x8f\x82" => 'SNOWBOARDER',
				"\xf0\x9f\x8f\x83" => 'RUNNER',
				"\xf0\x9f\x8f\x84" => 'SURFER',
				"\xf0\x9f\x8f\x86" => 'TROPHY',
				"\xf0\x9f\x8f\x88" => 'AMERICAN FOOTBALL',
				"\xf0\x9f\x8f\x8a" => 'SWIMMER',
				"\xf0\x9f\x9a\x83" => 'RAILWAY CAR',
				"\xf0\x9f\x9a\x87" => 'METRO',
				"\xe2\x93\x82" => 'CIRCLED LATIN CAPITAL LETTER M',
				"\xf0\x9f\x9a\x84" => 'HIGH-SPEED TRAIN',
				"\xf0\x9f\x9a\x85" => 'HIGH-SPEED TRAIN WITH BULLET NOSE',
				"\xf0\x9f\x9a\x97" => 'AUTOMOBILE',
				"\xf0\x9f\x9a\x99" => 'RECREATIONAL VEHICLE',
				"\xf0\x9f\x9a\x8c" => 'BUS',
				"\xf0\x9f\x9a\x8f" => 'BUS STOP',
				"\xf0\x9f\x9a\xa2" => 'SHIP',
				"\xe2\x9c\x88" => 'AIRPLANE',
				"\xe2\x9b\xb5" => 'SAILBOAT',
				"\xf0\x9f\x9a\x89" => 'STATION',
				"\xf0\x9f\x9a\x80" => 'ROCKET',
				"\xf0\x9f\x9a\xa4" => 'SPEEDBOAT',
				"\xf0\x9f\x9a\x95" => 'TAXI',
				"\xf0\x9f\x9a\x9a" => 'DELIVERY TRUCK',
				"\xf0\x9f\x9a\x92" => 'FIRE ENGINE',
				"\xf0\x9f\x9a\x91" => 'AMBULANCE',
				"\xf0\x9f\x9a\x93" => 'POLICE CAR',
				"\xe2\x9b\xbd" => 'FUEL PUMP',
				"\xf0\x9f\x85\xbf" => 'NEGATIVE SQUARED LATIN CAPITAL LETTER P',
				"\xf0\x9f\x9a\xa5" => 'HORIZONTAL TRAFFIC LIGHT',
				"\xf0\x9f\x9a\xa7" => 'CONSTRUCTION SIGN',
				"\xf0\x9f\x9a\xa8" => 'POLICE CARS REVOLVING LIGHT',
				"\xe2\x99\xa8" => 'HOT SPRINGS',
				"\xe2\x9b\xba" => 'TENT',
				"\xf0\x9f\x8e\xa0" => 'CAROUSEL HORSE',
				"\xf0\x9f\x8e\xa1" => 'FERRIS WHEEL',
				"\xf0\x9f\x8e\xa2" => 'ROLLER COASTER',
				"\xf0\x9f\x8e\xa3" => 'FISHING POLE AND FISH',
				"\xf0\x9f\x8e\xa4" => 'MICROPHONE',
				"\xf0\x9f\x8e\xa5" => 'MOVIE CAMERA',
				"\xf0\x9f\x8e\xa6" => 'CINEMA',
				"\xf0\x9f\x8e\xa7" => 'HEADPHONE',
				"\xf0\x9f\x8e\xa8" => 'ARTIST PALETTE',
				"\xf0\x9f\x8e\xa9" => 'TOP HAT',
				"\xf0\x9f\x8e\xaa" => 'CIRCUS TENT',
				"\xf0\x9f\x8e\xab" => 'TICKET',
				"\xf0\x9f\x8e\xac" => 'CLAPPER BOARD',
				"\xf0\x9f\x8e\xad" => 'PERFORMING ARTS',
				"\xf0\x9f\x8e\xae" => 'VIDEO GAME',
				"\xf0\x9f\x80\x84" => 'MAHJONG TILE RED DRAGON',
				"\xf0\x9f\x8e\xaf" => 'DIRECT HIT',
				"\xf0\x9f\x8e\xb0" => 'SLOT MACHINE',
				"\xf0\x9f\x8e\xb1" => 'BILLIARDS',
				"\xf0\x9f\x8e\xb2" => 'GAME DIE',
				"\xf0\x9f\x8e\xb3" => 'BOWLING',
				"\xf0\x9f\x8e\xb4" => 'FLOWER PLAYING CARDS',
				"\xf0\x9f\x83\x8f" => 'PLAYING CARD BLACK JOKER',
				"\xf0\x9f\x8e\xb5" => 'MUSICAL NOTE',
				"\xf0\x9f\x8e\xb6" => 'MULTIPLE MUSICAL NOTES',
				"\xf0\x9f\x8e\xb7" => 'SAXOPHONE',
				"\xf0\x9f\x8e\xb8" => 'GUITAR',
				"\xf0\x9f\x8e\xb9" => 'MUSICAL KEYBOARD',
				"\xf0\x9f\x8e\xba" => 'TRUMPET',
				"\xf0\x9f\x8e\xbb" => 'VIOLIN',
				"\xf0\x9f\x8e\xbc" => 'MUSICAL SCORE',
				"\xe3\x80\xbd" => 'PART ALTERNATION MARK',
				"\xf0\x9f\x93\xb7" => 'CAMERA',
				"\xf0\x9f\x93\xb9" => 'VIDEO CAMERA',
				"\xf0\x9f\x93\xba" => 'TELEVISION',
				"\xf0\x9f\x93\xbb" => 'RADIO',
				"\xf0\x9f\x93\xbc" => 'VIDEOCASSETTE',
				"\xf0\x9f\x92\x8b" => 'KISS MARK',
				"\xf0\x9f\x92\x8c" => 'LOVE LETTER',
				"\xf0\x9f\x92\x8d" => 'RING',
				"\xf0\x9f\x92\x8e" => 'GEM STONE',
				"\xf0\x9f\x92\x8f" => 'KISS',
				"\xf0\x9f\x92\x90" => 'BOUQUET',
				"\xf0\x9f\x92\x91" => 'COUPLE WITH HEART',
				"\xf0\x9f\x92\x92" => 'WEDDING',
				"\xf0\x9f\x94\x9e" => 'NO ONE UNDER EIGHTEEN SYMBOL',
				"\xc2\xa9" => 'COPYRIGHT SIGN',
				"\xc2\xae" => 'REGISTERED SIGN',
				"\xe2\x84\xa2" => 'TRADE MARK SIGN',
				"\xe2\x84\xb9" => 'INFORMATION SOURCE',
				"#\xe2\x83\xa3" => 'HASH KEY',
				"1\xe2\x83\xa3" => 'KEYCAP 1',
				"2\xe2\x83\xa3" => 'KEYCAP 2',
				"3\xe2\x83\xa3" => 'KEYCAP 3',
				"4\xe2\x83\xa3" => 'KEYCAP 4',
				"5\xe2\x83\xa3" => 'KEYCAP 5',
				"6\xe2\x83\xa3" => 'KEYCAP 6',
				"7\xe2\x83\xa3" => 'KEYCAP 7',
				"8\xe2\x83\xa3" => 'KEYCAP 8',
				"9\xe2\x83\xa3" => 'KEYCAP 9',
				"0\xe2\x83\xa3" => 'KEYCAP 0',
				"\xf0\x9f\x94\x9f" => 'KEYCAP TEN',
				"\xf0\x9f\x93\xb6" => 'ANTENNA WITH BARS',
				"\xf0\x9f\x93\xb3" => 'VIBRATION MODE',
				"\xf0\x9f\x93\xb4" => 'MOBILE PHONE OFF',
				"\xf0\x9f\x8d\x94" => 'HAMBURGER',
				"\xf0\x9f\x8d\x99" => 'RICE BALL',
				"\xf0\x9f\x8d\xb0" => 'SHORTCAKE',
				"\xf0\x9f\x8d\x9c" => 'STEAMING BOWL',
				"\xf0\x9f\x8d\x9e" => 'BREAD',
				"\xf0\x9f\x8d\xb3" => 'COOKING',
				"\xf0\x9f\x8d\xa6" => 'SOFT ICE CREAM',
				"\xf0\x9f\x8d\x9f" => 'FRENCH FRIES',
				"\xf0\x9f\x8d\xa1" => 'DANGO',
				"\xf0\x9f\x8d\x98" => 'RICE CRACKER',
				"\xf0\x9f\x8d\x9a" => 'COOKED RICE',
				"\xf0\x9f\x8d\x9d" => 'SPAGHETTI',
				"\xf0\x9f\x8d\x9b" => 'CURRY AND RICE',
				"\xf0\x9f\x8d\xa2" => 'ODEN',
				"\xf0\x9f\x8d\xa3" => 'SUSHI',
				"\xf0\x9f\x8d\xb1" => 'BENTO BOX',
				"\xf0\x9f\x8d\xb2" => 'POT OF FOOD',
				"\xf0\x9f\x8d\xa7" => 'SHAVED ICE',
				"\xf0\x9f\x8d\x96" => 'MEAT ON BONE',
				"\xf0\x9f\x8d\xa5" => 'FISH CAKE WITH SWIRL DESIGN',
				"\xf0\x9f\x8d\xa0" => 'ROASTED SWEET POTATO',
				"\xf0\x9f\x8d\x95" => 'SLICE OF PIZZA',
				"\xf0\x9f\x8d\x97" => 'POULTRY LEG',
				"\xf0\x9f\x8d\xa8" => 'ICE CREAM',
				"\xf0\x9f\x8d\xa9" => 'DOUGHNUT',
				"\xf0\x9f\x8d\xaa" => 'COOKIE',
				"\xf0\x9f\x8d\xab" => 'CHOCOLATE BAR',
				"\xf0\x9f\x8d\xac" => 'CANDY',
				"\xf0\x9f\x8d\xad" => 'LOLLIPOP',
				"\xf0\x9f\x8d\xae" => 'CUSTARD',
				"\xf0\x9f\x8d\xaf" => 'HONEY POT',
				"\xf0\x9f\x8d\xa4" => 'FRIED SHRIMP',
				"\xf0\x9f\x8d\xb4" => 'FORK AND KNIFE',
				"\xe2\x98\x95" => 'HOT BEVERAGE',
				"\xf0\x9f\x8d\xb8" => 'COCKTAIL GLASS',
				"\xf0\x9f\x8d\xba" => 'BEER MUG',
				"\xf0\x9f\x8d\xb5" => 'TEACUP WITHOUT HANDLE',
				"\xf0\x9f\x8d\xb6" => 'SAKE BOTTLE AND CUP',
				"\xf0\x9f\x8d\xb7" => 'WINE GLASS',
				"\xf0\x9f\x8d\xbb" => 'CLINKING BEER MUGS',
				"\xf0\x9f\x8d\xb9" => 'TROPICAL DRINK',
				"\xe2\x86\x97" => 'NORTH EAST ARROW',
				"\xe2\x86\x98" => 'SOUTH EAST ARROW',
				"\xe2\x86\x96" => 'NORTH WEST ARROW',
				"\xe2\x86\x99" => 'SOUTH WEST ARROW',
				"\xe2\xa4\xb4" => 'ARROW POINTING RIGHTWARDS THEN CURVING UPWARDS',
				"\xe2\xa4\xb5" => 'ARROW POINTING RIGHTWARDS THEN CURVING DOWNWARDS',
				"\xe2\x86\x94" => 'LEFT RIGHT ARROW',
				"\xe2\x86\x95" => 'UP DOWN ARROW',
				"\xe2\xac\x86" => 'UPWARDS BLACK ARROW',
				"\xe2\xac\x87" => 'DOWNWARDS BLACK ARROW',
				"\xe2\x9e\xa1" => 'BLACK RIGHTWARDS ARROW',
				"\xe2\xac\x85" => 'LEFTWARDS BLACK ARROW',
				"\xe2\x96\xb6" => 'BLACK RIGHT-POINTING TRIANGLE',
				"\xe2\x97\x80" => 'BLACK LEFT-POINTING TRIANGLE',
				"\xe2\x8f\xa9" => 'BLACK RIGHT-POINTING DOUBLE TRIANGLE',
				"\xe2\x8f\xaa" => 'BLACK LEFT-POINTING DOUBLE TRIANGLE',
				"\xe2\x8f\xab" => 'BLACK UP-POINTING DOUBLE TRIANGLE',
				"\xe2\x8f\xac" => 'BLACK DOWN-POINTING DOUBLE TRIANGLE',
				"\xf0\x9f\x94\xba" => 'UP-POINTING RED TRIANGLE',
				"\xf0\x9f\x94\xbb" => 'DOWN-POINTING RED TRIANGLE',
				"\xf0\x9f\x94\xbc" => 'UP-POINTING SMALL RED TRIANGLE',
				"\xf0\x9f\x94\xbd" => 'DOWN-POINTING SMALL RED TRIANGLE',
				"\xe2\xad\x95" => 'HEAVY LARGE CIRCLE',
				"\xe2\x9d\x8c" => 'CROSS MARK',
				"\xe2\x9d\x8e" => 'NEGATIVE SQUARED CROSS MARK',
				"\xe2\x9d\x97" => 'HEAVY EXCLAMATION MARK SYMBOL',
				"\xe2\x81\x89" => 'EXCLAMATION QUESTION MARK',
				"\xe2\x80\xbc" => 'DOUBLE EXCLAMATION MARK',
				"\xe2\x9d\x93" => 'BLACK QUESTION MARK ORNAMENT',
				"\xe2\x9d\x94" => 'WHITE QUESTION MARK ORNAMENT',
				"\xe2\x9d\x95" => 'WHITE EXCLAMATION MARK ORNAMENT',
				"\xe3\x80\xb0" => 'WAVY DASH',
				"\xe2\x9e\xb0" => 'CURLY LOOP',
				"\xe2\x9e\xbf" => 'DOUBLE CURLY LOOP',
				"\xe2\x9d\xa4" => 'HEAVY BLACK HEART',
				"\xf0\x9f\x92\x93" => 'BEATING HEART',
				"\xf0\x9f\x92\x94" => 'BROKEN HEART',
				"\xf0\x9f\x92\x95" => 'TWO HEARTS',
				"\xf0\x9f\x92\x96" => 'SPARKLING HEART',
				"\xf0\x9f\x92\x97" => 'GROWING HEART',
				"\xf0\x9f\x92\x98" => 'HEART WITH ARROW',
				"\xf0\x9f\x92\x99" => 'BLUE HEART',
				"\xf0\x9f\x92\x9a" => 'GREEN HEART',
				"\xf0\x9f\x92\x9b" => 'YELLOW HEART',
				"\xf0\x9f\x92\x9c" => 'PURPLE HEART',
				"\xf0\x9f\x92\x9d" => 'HEART WITH RIBBON',
				"\xf0\x9f\x92\x9e" => 'REVOLVING HEARTS',
				"\xf0\x9f\x92\x9f" => 'HEART DECORATION',
				"\xe2\x99\xa5" => 'BLACK HEART SUIT',
				"\xe2\x99\xa0" => 'BLACK SPADE SUIT',
				"\xe2\x99\xa6" => 'BLACK DIAMOND SUIT',
				"\xe2\x99\xa3" => 'BLACK CLUB SUIT',
				"\xf0\x9f\x9a\xac" => 'SMOKING SYMBOL',
				"\xf0\x9f\x9a\xad" => 'NO SMOKING SYMBOL',
				"\xe2\x99\xbf" => 'WHEELCHAIR SYMBOL',
				"\xf0\x9f\x9a\xa9" => 'TRIANGULAR FLAG ON POST',
				"\xe2\x9a\xa0" => 'WARNING SIGN',
				"\xe2\x9b\x94" => 'NO ENTRY',
				"\xe2\x99\xbb" => 'BLACK UNIVERSAL RECYCLING SYMBOL',
				"\xf0\x9f\x9a\xb2" => 'BICYCLE',
				"\xf0\x9f\x9a\xb6" => 'PEDESTRIAN',
				"\xf0\x9f\x9a\xb9" => 'MENS SYMBOL',
				"\xf0\x9f\x9a\xba" => 'WOMENS SYMBOL',
				"\xf0\x9f\x9b\x80" => 'BATH',
				"\xf0\x9f\x9a\xbb" => 'RESTROOM',
				"\xf0\x9f\x9a\xbd" => 'TOILET',
				"\xf0\x9f\x9a\xbe" => 'WATER CLOSET',
				"\xf0\x9f\x9a\xbc" => 'BABY SYMBOL',
				"\xf0\x9f\x9a\xaa" => 'DOOR',
				"\xf0\x9f\x9a\xab" => 'NO ENTRY SIGN',
				"\xe2\x9c\x94" => 'HEAVY CHECK MARK',
				"\xf0\x9f\x86\x91" => 'SQUARED CL',
				"\xf0\x9f\x86\x92" => 'SQUARED COOL',
				"\xf0\x9f\x86\x93" => 'SQUARED FREE',
				"\xf0\x9f\x86\x94" => 'SQUARED ID',
				"\xf0\x9f\x86\x95" => 'SQUARED NEW',
				"\xf0\x9f\x86\x96" => 'SQUARED NG',
				"\xf0\x9f\x86\x97" => 'SQUARED OK',
				"\xf0\x9f\x86\x98" => 'SQUARED SOS',
				"\xf0\x9f\x86\x99" => 'SQUARED UP WITH EXCLAMATION MARK',
				"\xf0\x9f\x86\x9a" => 'SQUARED VS',
				"\xf0\x9f\x88\x81" => 'SQUARED KATAKANA KOKO',
				"\xf0\x9f\x88\x82" => 'SQUARED KATAKANA SA',
				"\xf0\x9f\x88\xb2" => 'SQUARED CJK UNIFIED IDEOGRAPH-7981',
				"\xf0\x9f\x88\xb3" => 'SQUARED CJK UNIFIED IDEOGRAPH-7A7A',
				"\xf0\x9f\x88\xb4" => 'SQUARED CJK UNIFIED IDEOGRAPH-5408',
				"\xf0\x9f\x88\xb5" => 'SQUARED CJK UNIFIED IDEOGRAPH-6E80',
				"\xf0\x9f\x88\xb6" => 'SQUARED CJK UNIFIED IDEOGRAPH-6709',
				"\xf0\x9f\x88\x9a" => 'SQUARED CJK UNIFIED IDEOGRAPH-7121',
				"\xf0\x9f\x88\xb7" => 'SQUARED CJK UNIFIED IDEOGRAPH-6708',
				"\xf0\x9f\x88\xb8" => 'SQUARED CJK UNIFIED IDEOGRAPH-7533',
				"\xf0\x9f\x88\xb9" => 'SQUARED CJK UNIFIED IDEOGRAPH-5272',
				"\xf0\x9f\x88\xaf" => 'SQUARED CJK UNIFIED IDEOGRAPH-6307',
				"\xf0\x9f\x88\xba" => 'SQUARED CJK UNIFIED IDEOGRAPH-55B6',
				"\xe3\x8a\x99" => 'CIRCLED IDEOGRAPH SECRET',
				"\xe3\x8a\x97" => 'CIRCLED IDEOGRAPH CONGRATULATION',
				"\xf0\x9f\x89\x90" => 'CIRCLED IDEOGRAPH ADVANTAGE',
				"\xf0\x9f\x89\x91" => 'CIRCLED IDEOGRAPH ACCEPT',
				"\xe2\x9e\x95" => 'HEAVY PLUS SIGN',
				"\xe2\x9e\x96" => 'HEAVY MINUS SIGN',
				"\xe2\x9c\x96" => 'HEAVY MULTIPLICATION X',
				"\xe2\x9e\x97" => 'HEAVY DIVISION SIGN',
				"\xf0\x9f\x92\xa0" => 'DIAMOND SHAPE WITH A DOT INSIDE',
				"\xf0\x9f\x92\xa1" => 'ELECTRIC LIGHT BULB',
				"\xf0\x9f\x92\xa2" => 'ANGER SYMBOL',
				"\xf0\x9f\x92\xa3" => 'BOMB',
				"\xf0\x9f\x92\xa4" => 'SLEEPING SYMBOL',
				"\xf0\x9f\x92\xa5" => 'COLLISION SYMBOL',
				"\xf0\x9f\x92\xa6" => 'SPLASHING SWEAT SYMBOL',
				"\xf0\x9f\x92\xa7" => 'DROPLET',
				"\xf0\x9f\x92\xa8" => 'DASH SYMBOL',
				"\xf0\x9f\x92\xa9" => 'PILE OF POO',
				"\xf0\x9f\x92\xaa" => 'FLEXED BICEPS',
				"\xf0\x9f\x92\xab" => 'DIZZY SYMBOL',
				"\xf0\x9f\x92\xac" => 'SPEECH BALLOON',
				"\xe2\x9c\xa8" => 'SPARKLES',
				"\xe2\x9c\xb4" => 'EIGHT POINTED BLACK STAR',
				"\xe2\x9c\xb3" => 'EIGHT SPOKED ASTERISK',
				"\xe2\x9a\xaa" => 'MEDIUM WHITE CIRCLE',
				"\xe2\x9a\xab" => 'MEDIUM BLACK CIRCLE',
				"\xf0\x9f\x94\xb4" => 'LARGE RED CIRCLE',
				"\xf0\x9f\x94\xb5" => 'LARGE BLUE CIRCLE',
				"\xf0\x9f\x94\xb2" => 'BLACK SQUARE BUTTON',
				"\xf0\x9f\x94\xb3" => 'WHITE SQUARE BUTTON',
				"\xe2\xad\x90" => 'WHITE MEDIUM STAR',
				"\xe2\xac\x9c" => 'WHITE LARGE SQUARE',
				"\xe2\xac\x9b" => 'BLACK LARGE SQUARE',
				"\xe2\x96\xab" => 'WHITE SMALL SQUARE',
				"\xe2\x96\xaa" => 'BLACK SMALL SQUARE',
				"\xe2\x97\xbd" => 'WHITE MEDIUM SMALL SQUARE',
				"\xe2\x97\xbe" => 'BLACK MEDIUM SMALL SQUARE',
				"\xe2\x97\xbb" => 'WHITE MEDIUM SQUARE',
				"\xe2\x97\xbc" => 'BLACK MEDIUM SQUARE',
				"\xf0\x9f\x94\xb6" => 'LARGE ORANGE DIAMOND',
				"\xf0\x9f\x94\xb7" => 'LARGE BLUE DIAMOND',
				"\xf0\x9f\x94\xb8" => 'SMALL ORANGE DIAMOND',
				"\xf0\x9f\x94\xb9" => 'SMALL BLUE DIAMOND',
				"\xe2\x9d\x87" => 'SPARKLE',
				"\xf0\x9f\x92\xae" => 'WHITE FLOWER',
				"\xf0\x9f\x92\xaf" => 'HUNDRED POINTS SYMBOL',
				"\xe2\x86\xa9" => 'LEFTWARDS ARROW WITH HOOK',
				"\xe2\x86\xaa" => 'RIGHTWARDS ARROW WITH HOOK',
				"\xf0\x9f\x94\x83" => 'CLOCKWISE DOWNWARDS AND UPWARDS OPEN CIRCLE ARROWS',
				"\xf0\x9f\x94\x8a" => 'SPEAKER WITH THREE SOUND WAVES',
				"\xf0\x9f\x94\x8b" => 'BATTERY',
				"\xf0\x9f\x94\x8c" => 'ELECTRIC PLUG',
				"\xf0\x9f\x94\x8d" => 'LEFT-POINTING MAGNIFYING GLASS',
				"\xf0\x9f\x94\x8e" => 'RIGHT-POINTING MAGNIFYING GLASS',
				"\xf0\x9f\x94\x92" => 'LOCK',
				"\xf0\x9f\x94\x93" => 'OPEN LOCK',
				"\xf0\x9f\x94\x8f" => 'LOCK WITH INK PEN',
				"\xf0\x9f\x94\x90" => 'CLOSED LOCK WITH KEY',
				"\xf0\x9f\x94\x91" => 'KEY',
				"\xf0\x9f\x94\x94" => 'BELL',
				"\xe2\x98\x91" => 'BALLOT BOX WITH CHECK',
				"\xf0\x9f\x94\x98" => 'RADIO BUTTON',
				"\xf0\x9f\x94\x96" => 'BOOKMARK',
				"\xf0\x9f\x94\x97" => 'LINK SYMBOL',
				"\xf0\x9f\x94\x99" => 'BACK WITH LEFTWARDS ARROW ABOVE',
				"\xf0\x9f\x94\x9a" => 'END WITH LEFTWARDS ARROW ABOVE',
				"\xf0\x9f\x94\x9b" => 'ON WITH EXCLAMATION MARK WITH LEFT RIGHT ARROW ABOVE',
				"\xf0\x9f\x94\x9c" => 'SOON WITH RIGHTWARDS ARROW ABOVE',
				"\xf0\x9f\x94\x9d" => 'TOP WITH UPWARDS ARROW ABOVE',
				"\xe2\x9c\x85" => 'WHITE HEAVY CHECK MARK',
				"\xe2\x9c\x8a" => 'RAISED FIST',
				"\xe2\x9c\x8b" => 'RAISED HAND',
				"\xe2\x9c\x8c" => 'VICTORY HAND',
				"\xf0\x9f\x91\x8a" => 'FISTED HAND SIGN',
				"\xf0\x9f\x91\x8d" => 'THUMBS UP SIGN',
				"\xe2\x98\x9d" => 'WHITE UP POINTING INDEX',
				"\xf0\x9f\x91\x86" => 'WHITE UP POINTING BACKHAND INDEX',
				"\xf0\x9f\x91\x87" => 'WHITE DOWN POINTING BACKHAND INDEX',
				"\xf0\x9f\x91\x88" => 'WHITE LEFT POINTING BACKHAND INDEX',
				"\xf0\x9f\x91\x89" => 'WHITE RIGHT POINTING BACKHAND INDEX',
				"\xf0\x9f\x91\x8b" => 'WAVING HAND SIGN',
				"\xf0\x9f\x91\x8f" => 'CLAPPING HANDS SIGN',
				"\xf0\x9f\x91\x8c" => 'OK HAND SIGN',
				"\xf0\x9f\x91\x8e" => 'THUMBS DOWN SIGN',
				"\xf0\x9f\x91\x90" => 'OPEN HANDS SIGN',
			),
			'kaomoji' => array(
				"0"=>"[\xe9\x9c\xa7]", "1"=>"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]", "2"=>"[\xe8\x99\xb9]", "3"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]", 
				"4"=>"[\xe7\x81\xab\xe5\xb1\xb1]", "5"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "6"=>"\xe2\x97\x8f", "7"=>"\xe2\x97\x8b", "8"=>"[\xe2\x98\x86]", 
				"9"=>"\xe2\x98\x86\xe5\xbd\xa1", "10"=>"[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]", "11"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "12"=>"[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]", "13"=>"[\xe3\x83\x90\xe3\x83\xa9]", 
				"14"=>"[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]", "15"=>"[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]", "16"=>"[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]", "17"=>"[\xe3\x83\xa4\xe3\x82\xb7]", "18"=>"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]", 
				"19"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "20"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "21"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "22"=>"[\xe6\xa0\x97]", "23"=>"[\xe8\x8a\xb1]", 
				"24"=>"[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]", "25"=>"[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]", "26"=>"[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]", "27"=>"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]", "28"=>"[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]", 
				"29"=>"[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]", "30"=>"[\xe3\x83\x8a\xe3\x82\xb9]", "31"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "32"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "33"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]", 
				"34"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "35"=>"[\xe9\xbc\xbb]", "36"=>"[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]", "37"=>"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]", "38"=>"[\xe5\xba\x8a\xe5\xb1\x8b]", 
				"39"=>"\xe3\x80\x93", "40"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "41"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "42"=>"[\xe8\xad\xa6\xe5\xae\x98]", "43"=>"[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]", 
				"44"=>"[\xe8\x8a\xb1\xe5\xab\x81]", "45"=>"[\xe7\x99\xbd\xe4\xba\xba]", "46"=>"[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]", "47"=>"[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]", "48"=>"[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]", 
				"49"=>"[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]", "50"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", "51"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]", "52"=>"[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]", "53"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]", 
				"54"=>"[\xe5\xa4\xa9\xe7\x8b\x97]", "55"=>"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]", "56"=>"[\xe5\xa4\xa9\xe4\xbd\xbf]", "57"=>"[UFO]", "58"=>"[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]", 
				"59"=>"[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]", "60"=>"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]", "61"=>"[\xe6\xa1\x88\xe5\x86\x85]", "62"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "63"=>"[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]", 
				"64"=>"[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]", "65"=>"[\xe3\x83\x98\xe3\x83\x93]", "66"=>"[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]", "67"=>"[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]", "68"=>"[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]", 
				"69"=>"[\xe3\x82\xbe\xe3\x82\xa6]", "70"=>"[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]", "71"=>"[\xe3\x82\xb5\xe3\x83\xab]", "72"=>"[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]", "73"=>"[\xe3\x82\xbf\xe3\x82\xb3]", 
				"74"=>"[\xe5\xb7\xbb\xe8\xb2\x9d]", "75"=>"[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]", "76"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "77"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "78"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]", 
				"79"=>"[\xe3\x82\xab\xe3\x83\xa1]", "80"=>"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]", "81"=>"[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]", "82"=>"[\xe3\x83\x88\xe3\x83\xa9]", "83"=>"[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]", 
				"84"=>"[\xe3\x82\xaf\xe3\x83\x9e]", "85"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "86"=>"[\xe7\x89\x9b]", "87"=>"[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]", "88"=>"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]", 
				"89"=>"[\xe8\xbe\xb0]", "90"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "91"=>"[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]", "92"=>"m(_ _)m", "93"=>"(/_\xef\xbc\xbc)", 
				"94"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "95"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "96"=>"(^-^)/", "97"=>"\xef\xbc\xbc(^o^)\xef\xbc\x8f", "98"=>"(>\xe4\xba\xba<)", 
				"99"=>"[\xe6\x95\x99\xe4\xbc\x9a]", "100"=>"[\xe5\x99\xb4\xe6\xb0\xb4]", "101"=>"[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]", "102"=>"[\xe5\x9f\x8e]", "103"=>"[\xe5\xb7\xa5\xe5\xa0\xb4]", 
				"104"=>"[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]", "105"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]", "106"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "107"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "108"=>"[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]", 
				"109"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]", "110"=>"[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]", "111"=>"[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]", "112"=>"[\xe5\xb8\xbd\xe5\xad\x90]", "113"=>"[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]", 
				"114"=>"[\xe7\x9d\x80\xe7\x89\xa9]", "115"=>"[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]", "116"=>"[\xe8\xb2\xa1\xe5\xb8\x83]", "117"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "118"=>"[$\xef\xbf\xa5]", 
				"119"=>"[\xe6\xa0\xaa\xe4\xbe\xa1]", "120"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "121"=>"\xef\xbf\xa5", "122"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "123"=>"[\xe4\xb8\xad\xe5\x9b\xbd]", 
				"124"=>"[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]", "125"=>"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]", "126"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]", "127"=>"[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]", "128"=>"[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]", 
				"129"=>"[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]", "130"=>"[\xe9\x9f\x93\xe5\x9b\xbd]", "131"=>"[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]", "132"=>"[USA]", "133"=>"[\xe7\x82\x8e]", 
				"134"=>"[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]", "135"=>"[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]", "136"=>"[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]", "137"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "138"=>"[\xe5\x8c\x85\xe4\xb8\x81]", 
				"139"=>"[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]", "140"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "141"=>"[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "142"=>"[\xe6\xb3\xa8\xe5\xb0\x84]", "143"=>"[\xe8\x96\xac]", 
				"144"=>"[A]", "145"=>"[B]", "146"=>"[AB]", "147"=>"[O]", "148"=>"[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]", 
				"149"=>"[\xe7\xa5\x9d\xe6\x97\xa5]", "150"=>"[\xe8\x8a\xb1\xe7\x81\xab]", "151"=>"[\xe9\xa2\xa8\xe8\x88\xb9]", "152"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]", "153"=>"[\xe9\x96\x80\xe6\x9d\xbe]", 
				"154"=>"[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]", "155"=>"[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]", "156"=>"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]", "157"=>"[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]", "158"=>"[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]", 
				"159"=>"[\xe9\xa2\xa8\xe9\x88\xb4]", "160"=>"[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]", "161"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "162"=>"[\xe4\xb8\x83\xe5\xa4\x95]", "163"=>"[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]", 
				"164"=>"[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]", "165"=>"[\xe6\x96\xb0\xe8\x81\x9e]", "166"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "167"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]", "168"=>"[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]", 
				"169"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "170"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]", "171"=>"[ABCD]", "172"=>"[abcd]", "173"=>"[1234]", 
				"174"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "175"=>"[ABC]", "176"=>"[\xe3\x83\x9a\xe3\x83\xb3]", "177"=>"[\xe3\x81\x84\xe3\x81\x99]", "178"=>"[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]", 
				"179"=>"[MD]", "180"=>"[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]", "181"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "182"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "183"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", 
				"184"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "185"=>"[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]", "186"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "187"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "188"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]", 
				"189"=>"[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]", "190"=>"[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]", "191"=>"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]", "192"=>"[\xe6\xb0\xb4\xe6\xb3\xb3]", "193"=>"[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]", 
				"194"=>"[\xe9\xa7\x85]", "195"=>"[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]", "196"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]", "197"=>"[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]", "198"=>"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]", 
				"199"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "200"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]", "201"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]", "202"=>"[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]", "203"=>"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", 
				"204"=>"[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]", "205"=>"[\xe6\xbc\x94\xe5\x8a\x87]", "206"=>"[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]", "207"=>"[\xe9\xba\xbb\xe9\x9b\x80]", "208"=>"[\xe7\x9a\x84\xe4\xb8\xad]", 
				"209"=>"[777]", "210"=>"[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]", "211"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "212"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "213"=>"[\xe8\x8a\xb1\xe6\x9c\xad]", 
				"214"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "215"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "216"=>"[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]", "217"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "218"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]", 
				"219"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "220"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "221"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]", "222"=>"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]", "223"=>"[\xe8\x8a\xb1\xe6\x9d\x9f]", 
				"224"=>"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]", "225"=>"[18\xe7\xa6\x81]", "226"=>"[\xef\xbd\x89]", "227"=>"[10]", "228"=>"[\xe3\x83\x90\xe3\x83\xaa3]", 
				"229"=>"[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]", "230"=>"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]", "231"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]", "232"=>"[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", "233"=>"[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]", 
				"234"=>"[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]", "235"=>"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]", "236"=>"[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]", "237"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]", "238"=>"[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]", 
				"239"=>"[\xe3\x81\x99\xe3\x81\x97]", "240"=>"[\xe5\xbc\x81\xe5\xbd\x93]", "241"=>"[\xe9\x8d\x8b]", "242"=>"[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]", "243"=>"[\xe8\x82\x89]", 
				"244"=>"[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]", "245"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "246"=>"[\xe3\x83\x94\xe3\x82\xb6]", "247"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "248"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", 
				"249"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "250"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "251"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "252"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "253"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]", 
				"254"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "255"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "256"=>"\xe2\x87\x94", "257"=>"\xe2\x86\x91\xe2\x86\x93", "258"=>"[\xe2\x86\x91]", 
				"259"=>"[\xe2\x86\x93]", "260"=>"[\xe2\x86\x92]", "261"=>"[\xe2\x86\x90]", "262"=>"[>]", "263"=>"[<]", 
				"264"=>"[>>]", "265"=>"[<<]", "266"=>"\xe2\x96\xb2", "267"=>"\xe2\x96\xbc", "268"=>"[\xc3\x97]", 
				"269"=>"\xef\xbc\x81\xef\xbc\x9f", "270"=>"\xef\xbc\x81\xef\xbc\x81", "271"=>"[\xef\xbc\x9f]", "272"=>"\xef\xbd\x9e", "273"=>"[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]", 
				"274"=>"[\xe6\x97\x97]", "275"=>"[\xe2\x99\x82]", "276"=>"[\xe2\x99\x80]", "277"=>"[\xe3\x83\x89\xe3\x82\xa2]", "278"=>"[\xe7\xa6\x81\xe6\xad\xa2]", 
				"279"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "280"=>"[CL]", "281"=>"[COOL]", "282"=>"[FREE]", "283"=>"[NG]", 
				"284"=>"[SOS]", "285"=>"[UP!]", "286"=>"[VS]", "287"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "288"=>"[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]", 
				"289"=>"[\xe7\xa6\x81]", "290"=>"[\xe5\x90\x88]", "291"=>"[\xe6\x9c\x89]", "292"=>"[\xe7\x84\xa1]", "293"=>"[\xe6\x9c\x88]", 
				"294"=>"[\xe7\x94\xb3]", "295"=>"[\xe5\x89\xb2]", "296"=>"[\xe6\x8c\x87]", "297"=>"[\xe5\x96\xb6]", "298"=>"[\xe7\xa5\x9d]", 
				"299"=>"[\xe5\xbe\x97]", "300"=>"[\xe5\x8f\xaf]", "301"=>"[\xef\xbc\x8b]", "302"=>"[\xef\xbc\x8d]", "303"=>"[\xc3\xb7]", 
				"304"=>"[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]", "305"=>"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]", "306"=>"[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]", "307"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]", "308"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]", 
				"309"=>"\xe2\x96\xa0", "310"=>"\xe2\x97\x86", "311"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "312"=>"[100\xe7\x82\xb9]", "313"=>"\xe2\x86\x90\xe2\x94\x98", 
				"314"=>"\xe2\x94\x94\xe2\x86\x92", "315"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "316"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "317"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "318"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", 
				"319"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]", "320"=>"[\xe2\x86\x90BACK]", "321"=>"[end]", "322"=>"[ON]", "323"=>"[SOON]", 
				"324"=>"[TOP]", "325"=>"[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]", "326"=>"[\xe6\x8b\x8d\xe6\x89\x8b]", 
			),
			'unified_to_docomo' => array(
				"\xe2\x98\x80"=>"\xee\x98\xbe", "\xe2\x98\x81"=>"\xee\x98\xbf", "\xe2\x98\x94"=>"\xee\x99\x80", "\xe2\x9b\x84"=>"\xee\x99\x81", 
				"\xe2\x9a\xa1"=>"\xee\x99\x82", "\xf0\x9f\x8c\x80"=>"\xee\x99\x83", "\xf0\x9f\x8c\x81"=>"\xee\x99\x84", "\xf0\x9f\x8c\x82"=>"\xee\x99\x85", "\xf0\x9f\x8c\x83"=>"\xee\x9a\xb3", 
				"\xf0\x9f\x8c\x84"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x85"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x86"=>"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]", "\xf0\x9f\x8c\x87"=>"\xee\x98\xbe", "\xf0\x9f\x8c\x88"=>"[\xe8\x99\xb9]", 
				"\xe2\x9d\x84"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]", "\xe2\x9b\x85"=>"\xee\x98\xbe\xee\x98\xbf", "\xf0\x9f\x8c\x89"=>"\xee\x9a\xb3", "\xf0\x9f\x8c\x8a"=>"\xee\x9c\xbf", "\xf0\x9f\x8c\x8b"=>"[\xe7\x81\xab\xe5\xb1\xb1]", 
				"\xf0\x9f\x8c\x8c"=>"\xee\x9a\xb3", "\xf0\x9f\x8c\x8f"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "\xf0\x9f\x8c\x91"=>"\xee\x9a\x9c", "\xf0\x9f\x8c\x94"=>"\xee\x9a\x9d", "\xf0\x9f\x8c\x93"=>"\xee\x9a\x9e", 
				"\xf0\x9f\x8c\x99"=>"\xee\x9a\x9f", "\xf0\x9f\x8c\x95"=>"\xee\x9a\xa0", "\xf0\x9f\x8c\x9b"=>"\xee\x9a\x9e", "\xf0\x9f\x8c\x9f"=>"[\xe2\x98\x86]", "\xf0\x9f\x8c\xa0"=>"\xe2\x98\x86\xe5\xbd\xa1", 
				"\xf0\x9f\x95\x90"=>"\xee\x9a\xba", "\xf0\x9f\x95\x91"=>"\xee\x9a\xba", "\xf0\x9f\x95\x92"=>"\xee\x9a\xba", "\xf0\x9f\x95\x93"=>"\xee\x9a\xba", "\xf0\x9f\x95\x94"=>"\xee\x9a\xba", 
				"\xf0\x9f\x95\x95"=>"\xee\x9a\xba", "\xf0\x9f\x95\x96"=>"\xee\x9a\xba", "\xf0\x9f\x95\x97"=>"\xee\x9a\xba", "\xf0\x9f\x95\x98"=>"\xee\x9a\xba", "\xf0\x9f\x95\x99"=>"\xee\x9a\xba", 
				"\xf0\x9f\x95\x9a"=>"\xee\x9a\xba", "\xf0\x9f\x95\x9b"=>"\xee\x9a\xba", "\xe2\x8c\x9a"=>"\xee\x9c\x9f", "\xe2\x8c\x9b"=>"\xee\x9c\x9c", "\xe2\x8f\xb0"=>"\xee\x9a\xba", 
				"\xe2\x8f\xb3"=>"\xee\x9c\x9c", "\xe2\x99\x88"=>"\xee\x99\x86", "\xe2\x99\x89"=>"\xee\x99\x87", "\xe2\x99\x8a"=>"\xee\x99\x88", "\xe2\x99\x8b"=>"\xee\x99\x89", 
				"\xe2\x99\x8c"=>"\xee\x99\x8a", "\xe2\x99\x8d"=>"\xee\x99\x8b", "\xe2\x99\x8e"=>"\xee\x99\x8c", "\xe2\x99\x8f"=>"\xee\x99\x8d", "\xe2\x99\x90"=>"\xee\x99\x8e", 
				"\xe2\x99\x91"=>"\xee\x99\x8f", "\xe2\x99\x92"=>"\xee\x99\x90", "\xe2\x99\x93"=>"\xee\x99\x91", "\xe2\x9b\x8e"=>"[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]", "\xf0\x9f\x8d\x80"=>"\xee\x9d\x81", 
				"\xf0\x9f\x8c\xb7"=>"\xee\x9d\x83", "\xf0\x9f\x8c\xb1"=>"\xee\x9d\x86", "\xf0\x9f\x8d\x81"=>"\xee\x9d\x87", "\xf0\x9f\x8c\xb8"=>"\xee\x9d\x88", "\xf0\x9f\x8c\xb9"=>"[\xe3\x83\x90\xe3\x83\xa9]", 
				"\xf0\x9f\x8d\x82"=>"\xee\x9d\x87", "\xf0\x9f\x8d\x83"=>"[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]", "\xf0\x9f\x8c\xba"=>"[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]", "\xf0\x9f\x8c\xbb"=>"[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]", "\xf0\x9f\x8c\xb4"=>"[\xe3\x83\xa4\xe3\x82\xb7]", 
				"\xf0\x9f\x8c\xb5"=>"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]", "\xf0\x9f\x8c\xbe"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "\xf0\x9f\x8c\xbd"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "\xf0\x9f\x8d\x84"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "\xf0\x9f\x8c\xb0"=>"[\xe6\xa0\x97]", 
				"\xf0\x9f\x8c\xbc"=>"[\xe8\x8a\xb1]", "\xf0\x9f\x8c\xbf"=>"\xee\x9d\x81", "\xf0\x9f\x8d\x92"=>"\xee\x9d\x82", "\xf0\x9f\x8d\x8c"=>"\xee\x9d\x84", "\xf0\x9f\x8d\x8e"=>"\xee\x9d\x85", 
				"\xf0\x9f\x8d\x8a"=>"[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]", "\xf0\x9f\x8d\x93"=>"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]", "\xf0\x9f\x8d\x89"=>"[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]", "\xf0\x9f\x8d\x85"=>"[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]", "\xf0\x9f\x8d\x86"=>"[\xe3\x83\x8a\xe3\x82\xb9]", 
				"\xf0\x9f\x8d\x88"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\x8d"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x8d\x87"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]", "\xf0\x9f\x8d\x91"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "\xf0\x9f\x8d\x8f"=>"\xee\x9d\x85", 
				"\xf0\x9f\x91\x80"=>"\xee\x9a\x91", "\xf0\x9f\x91\x82"=>"\xee\x9a\x92", "\xf0\x9f\x91\x83"=>"[\xe9\xbc\xbb]", "\xf0\x9f\x91\x84"=>"\xee\x9b\xb9", "\xf0\x9f\x91\x85"=>"\xee\x9c\xa8", 
				"\xf0\x9f\x92\x84"=>"\xee\x9c\x90", "\xf0\x9f\x92\x85"=>"[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]", "\xf0\x9f\x92\x86"=>"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]", "\xf0\x9f\x92\x87"=>"\xee\x99\xb5", "\xf0\x9f\x92\x88"=>"[\xe5\xba\x8a\xe5\xb1\x8b]", 
				"\xf0\x9f\x91\xa4"=>"\xee\x9a\xb1", "\xf0\x9f\x91\xa6"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa7"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa8"=>"\xee\x9b\xb0", "\xf0\x9f\x91\xa9"=>"\xee\x9b\xb0", 
				"\xf0\x9f\x91\xaa"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "\xf0\x9f\x91\xab"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x91\xae"=>"[\xe8\xad\xa6\xe5\xae\x98]", "\xf0\x9f\x91\xaf"=>"[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]", "\xf0\x9f\x91\xb0"=>"[\xe8\x8a\xb1\xe5\xab\x81]", 
				"\xf0\x9f\x91\xb1"=>"[\xe7\x99\xbd\xe4\xba\xba]", "\xf0\x9f\x91\xb2"=>"[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]", "\xf0\x9f\x91\xb3"=>"[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]", "\xf0\x9f\x91\xb4"=>"[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]", "\xf0\x9f\x91\xb5"=>"[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]", 
				"\xf0\x9f\x91\xb6"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", "\xf0\x9f\x91\xb7"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]", "\xf0\x9f\x91\xb8"=>"[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]", "\xf0\x9f\x91\xb9"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]", "\xf0\x9f\x91\xba"=>"[\xe5\xa4\xa9\xe7\x8b\x97]", 
				"\xf0\x9f\x91\xbb"=>"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]", "\xf0\x9f\x91\xbc"=>"[\xe5\xa4\xa9\xe4\xbd\xbf]", "\xf0\x9f\x91\xbd"=>"[UFO]", "\xf0\x9f\x91\xbe"=>"[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]", "\xf0\x9f\x91\xbf"=>"[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]", 
				"\xf0\x9f\x92\x80"=>"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]", "\xf0\x9f\x92\x81"=>"[\xe6\xa1\x88\xe5\x86\x85]", "\xf0\x9f\x92\x82"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "\xf0\x9f\x92\x83"=>"[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]", "\xf0\x9f\x90\x8c"=>"\xee\x9d\x8e", 
				"\xf0\x9f\x90\x8d"=>"[\xe3\x83\x98\xe3\x83\x93]", "\xf0\x9f\x90\x8e"=>"\xee\x9d\x94", "\xf0\x9f\x90\x94"=>"[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]", "\xf0\x9f\x90\x97"=>"[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]", "\xf0\x9f\x90\xab"=>"[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]", 
				"\xf0\x9f\x90\x98"=>"[\xe3\x82\xbe\xe3\x82\xa6]", "\xf0\x9f\x90\xa8"=>"[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]", "\xf0\x9f\x90\x92"=>"[\xe3\x82\xb5\xe3\x83\xab]", "\xf0\x9f\x90\x91"=>"[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]", "\xf0\x9f\x90\x99"=>"[\xe3\x82\xbf\xe3\x82\xb3]", 
				"\xf0\x9f\x90\x9a"=>"[\xe5\xb7\xbb\xe8\xb2\x9d]", "\xf0\x9f\x90\x9b"=>"[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]", "\xf0\x9f\x90\x9c"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "\xf0\x9f\x90\x9d"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "\xf0\x9f\x90\x9e"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]", 
				"\xf0\x9f\x90\xa0"=>"\xee\x9d\x91", "\xf0\x9f\x90\xa1"=>"\xee\x9d\x91", "\xf0\x9f\x90\xa2"=>"[\xe3\x82\xab\xe3\x83\xa1]", "\xf0\x9f\x90\xa4"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa5"=>"\xee\x9d\x8f", 
				"\xf0\x9f\x90\xa6"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa3"=>"\xee\x9d\x8f", "\xf0\x9f\x90\xa7"=>"\xee\x9d\x90", "\xf0\x9f\x90\xa9"=>"\xee\x9a\xa1", "\xf0\x9f\x90\x9f"=>"\xee\x9d\x91", 
				"\xf0\x9f\x90\xac"=>"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]", "\xf0\x9f\x90\xad"=>"[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]", "\xf0\x9f\x90\xaf"=>"[\xe3\x83\x88\xe3\x83\xa9]", "\xf0\x9f\x90\xb1"=>"\xee\x9a\xa2", "\xf0\x9f\x90\xb3"=>"[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]", 
				"\xf0\x9f\x90\xb4"=>"\xee\x9d\x94", "\xf0\x9f\x90\xb5"=>"[\xe3\x82\xb5\xe3\x83\xab]", "\xf0\x9f\x90\xb6"=>"\xee\x9a\xa1", "\xf0\x9f\x90\xb7"=>"\xee\x9d\x95", "\xf0\x9f\x90\xbb"=>"[\xe3\x82\xaf\xe3\x83\x9e]", 
				"\xf0\x9f\x90\xb9"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x90\xba"=>"\xee\x9a\xa1", "\xf0\x9f\x90\xae"=>"[\xe7\x89\x9b]", "\xf0\x9f\x90\xb0"=>"[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]", "\xf0\x9f\x90\xb8"=>"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]", 
				"\xf0\x9f\x90\xbe"=>"\xee\x9a\x98", "\xf0\x9f\x90\xb2"=>"[\xe8\xbe\xb0]", "\xf0\x9f\x90\xbc"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "\xf0\x9f\x90\xbd"=>"\xee\x9d\x95", "\xf0\x9f\x98\xa0"=>"\xee\x9b\xb1", 
				"\xf0\x9f\x98\xa9"=>"\xee\x9b\xb3", "\xf0\x9f\x98\xb2"=>"\xee\x9b\xb4", "\xf0\x9f\x98\x9e"=>"\xee\x9b\xb2", "\xf0\x9f\x98\xb5"=>"\xee\x9b\xb4", "\xf0\x9f\x98\xb0"=>"\xee\x9c\xa3", 
				"\xf0\x9f\x98\x92"=>"\xee\x9c\xa5", "\xf0\x9f\x98\x8d"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xa4"=>"\xee\x9d\x93", "\xf0\x9f\x98\x9c"=>"\xee\x9c\xa8", "\xf0\x9f\x98\x9d"=>"\xee\x9c\xa8", 
				"\xf0\x9f\x98\x8b"=>"\xee\x9d\x92", "\xf0\x9f\x98\x98"=>"\xee\x9c\xa6", "\xf0\x9f\x98\x9a"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xb7"=>"[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]", "\xf0\x9f\x98\xb3"=>"\xee\x9c\xaa", 
				"\xf0\x9f\x98\x83"=>"\xee\x9b\xb0", "\xf0\x9f\x98\x85"=>"\xee\x9c\xa2", "\xf0\x9f\x98\x86"=>"\xee\x9c\xaa", "\xf0\x9f\x98\x81"=>"\xee\x9d\x93", "\xf0\x9f\x98\x82"=>"\xee\x9c\xaa", 
				"\xf0\x9f\x98\x8a"=>"\xee\x9b\xb0", "\xe2\x98\xba"=>"\xee\x9b\xb0", "\xf0\x9f\x98\x84"=>"\xee\x9b\xb0", "\xf0\x9f\x98\xa2"=>"\xee\x9c\xae", "\xf0\x9f\x98\xad"=>"\xee\x9c\xad", 
				"\xf0\x9f\x98\xa8"=>"\xee\x9d\x97", "\xf0\x9f\x98\xa3"=>"\xee\x9c\xab", "\xf0\x9f\x98\xa1"=>"\xee\x9c\xa4", "\xf0\x9f\x98\x8c"=>"\xee\x9c\xa1", "\xf0\x9f\x98\x96"=>"\xee\x9b\xb3", 
				"\xf0\x9f\x98\x94"=>"\xee\x9c\xa0", "\xf0\x9f\x98\xb1"=>"\xee\x9d\x97", "\xf0\x9f\x98\xaa"=>"\xee\x9c\x81", "\xf0\x9f\x98\x8f"=>"\xee\x9c\xac", "\xf0\x9f\x98\x93"=>"\xee\x9c\xa3", 
				"\xf0\x9f\x98\xa5"=>"\xee\x9c\xa3", "\xf0\x9f\x98\xab"=>"\xee\x9c\xab", "\xf0\x9f\x98\x89"=>"\xee\x9c\xa9", "\xf0\x9f\x98\xba"=>"\xee\x9b\xb0", "\xf0\x9f\x98\xb8"=>"\xee\x9d\x93", 
				"\xf0\x9f\x98\xb9"=>"\xee\x9c\xaa", "\xf0\x9f\x98\xbd"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xbb"=>"\xee\x9c\xa6", "\xf0\x9f\x98\xbf"=>"\xee\x9c\xae", "\xf0\x9f\x98\xbe"=>"\xee\x9c\xa4", 
				"\xf0\x9f\x98\xbc"=>"\xee\x9d\x93", "\xf0\x9f\x99\x80"=>"\xee\x9b\xb3", "\xf0\x9f\x99\x85"=>"\xee\x9c\xaf", "\xf0\x9f\x99\x86"=>"\xee\x9c\x8b", "\xf0\x9f\x99\x87"=>"m(_ _)m", 
				"\xf0\x9f\x99\x88"=>"(/_\xef\xbc\xbc)", "\xf0\x9f\x99\x8a"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "\xf0\x9f\x99\x89"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "\xf0\x9f\x99\x8b"=>"(^-^)/", "\xf0\x9f\x99\x8c"=>"\xef\xbc\xbc(^o^)\xef\xbc\x8f", 
				"\xf0\x9f\x99\x8d"=>"\xee\x9b\xb3", "\xf0\x9f\x99\x8e"=>"\xee\x9b\xb1", "\xf0\x9f\x99\x8f"=>"(>\xe4\xba\xba<)", "\xf0\x9f\x8f\xa0"=>"\xee\x99\xa3", "\xf0\x9f\x8f\xa1"=>"\xee\x99\xa3", 
				"\xf0\x9f\x8f\xa2"=>"\xee\x99\xa4", "\xf0\x9f\x8f\xa3"=>"\xee\x99\xa5", "\xf0\x9f\x8f\xa5"=>"\xee\x99\xa6", "\xf0\x9f\x8f\xa6"=>"\xee\x99\xa7", "\xf0\x9f\x8f\xa7"=>"\xee\x99\xa8", 
				"\xf0\x9f\x8f\xa8"=>"\xee\x99\xa9", "\xf0\x9f\x8f\xa9"=>"\xee\x99\xa9\xee\x9b\xaf", "\xf0\x9f\x8f\xaa"=>"\xee\x99\xaa", "\xf0\x9f\x8f\xab"=>"\xee\x9c\xbe", "\xe2\x9b\xaa"=>"[\xe6\x95\x99\xe4\xbc\x9a]", 
				"\xe2\x9b\xb2"=>"[\xe5\x99\xb4\xe6\xb0\xb4]", "\xf0\x9f\x8f\xac"=>"[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]", "\xf0\x9f\x8f\xaf"=>"[\xe5\x9f\x8e]", "\xf0\x9f\x8f\xb0"=>"[\xe5\x9f\x8e]", "\xf0\x9f\x8f\xad"=>"[\xe5\xb7\xa5\xe5\xa0\xb4]", 
				"\xe2\x9a\x93"=>"\xee\x99\xa1", "\xf0\x9f\x8f\xae"=>"\xee\x9d\x8b", "\xf0\x9f\x97\xbb"=>"\xee\x9d\x80", "\xf0\x9f\x97\xbc"=>"[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]", "\xf0\x9f\x97\xbd"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]", 
				"\xf0\x9f\x97\xbe"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "\xf0\x9f\x97\xbf"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "\xf0\x9f\x91\x9e"=>"\xee\x9a\x99", "\xf0\x9f\x91\x9f"=>"\xee\x9a\x99", "\xf0\x9f\x91\xa0"=>"\xee\x99\xb4", 
				"\xf0\x9f\x91\xa1"=>"\xee\x99\xb4", "\xf0\x9f\x91\xa2"=>"[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]", "\xf0\x9f\x91\xa3"=>"\xee\x9a\x98", "\xf0\x9f\x91\x93"=>"\xee\x9a\x9a", "\xf0\x9f\x91\x95"=>"\xee\x9c\x8e", 
				"\xf0\x9f\x91\x96"=>"\xee\x9c\x91", "\xf0\x9f\x91\x91"=>"\xee\x9c\x9a", "\xf0\x9f\x91\x94"=>"[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]", "\xf0\x9f\x91\x92"=>"[\xe5\xb8\xbd\xe5\xad\x90]", "\xf0\x9f\x91\x97"=>"[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]", 
				"\xf0\x9f\x91\x98"=>"[\xe7\x9d\x80\xe7\x89\xa9]", "\xf0\x9f\x91\x99"=>"[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]", "\xf0\x9f\x91\x9a"=>"\xee\x9c\x8e", "\xf0\x9f\x91\x9b"=>"\xee\x9c\x8f", "\xf0\x9f\x91\x9c"=>"\xee\x9a\x82", 
				"\xf0\x9f\x91\x9d"=>"\xee\x9a\xad", "\xf0\x9f\x92\xb0"=>"\xee\x9c\x95", "\xf0\x9f\x92\xb1"=>"[$\xef\xbf\xa5]", "\xf0\x9f\x92\xb9"=>"[\xe6\xa0\xaa\xe4\xbe\xa1]", "\xf0\x9f\x92\xb2"=>"\xee\x9c\x95", 
				"\xf0\x9f\x92\xb3"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "\xf0\x9f\x92\xb4"=>"\xee\x9b\x96", "\xf0\x9f\x92\xb5"=>"\xee\x9c\x95", "\xf0\x9f\x92\xb8"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"[\xe4\xb8\xad\xe5\x9b\xbd]", 
				"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]", 
				"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"[\xe9\x9f\x93\xe5\x9b\xbd]", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"[USA]", "\xf0\x9f\x94\xa5"=>"[\xe7\x82\x8e]", 
				"\xf0\x9f\x94\xa6"=>"\xee\x9b\xbb", "\xf0\x9f\x94\xa7"=>"\xee\x9c\x98", "\xf0\x9f\x94\xa8"=>"[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]", "\xf0\x9f\x94\xa9"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "\xf0\x9f\x94\xaa"=>"[\xe5\x8c\x85\xe4\xb8\x81]", 
				"\xf0\x9f\x94\xab"=>"[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]", "\xf0\x9f\x94\xae"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "\xf0\x9f\x94\xaf"=>"[\xe5\x8d\xa0\xe3\x81\x84]", "\xf0\x9f\x94\xb0"=>"[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\xb1"=>"\xee\x9c\x9a", 
				"\xf0\x9f\x92\x89"=>"[\xe6\xb3\xa8\xe5\xb0\x84]", "\xf0\x9f\x92\x8a"=>"[\xe8\x96\xac]", "\xf0\x9f\x85\xb0"=>"[A]", "\xf0\x9f\x85\xb1"=>"[B]", "\xf0\x9f\x86\x8e"=>"[AB]", 
				"\xf0\x9f\x85\xbe"=>"[O]", "\xf0\x9f\x8e\x80"=>"\xee\x9a\x84", "\xf0\x9f\x8e\x81"=>"\xee\x9a\x85", "\xf0\x9f\x8e\x82"=>"\xee\x9a\x86", "\xf0\x9f\x8e\x84"=>"\xee\x9a\xa4", 
				"\xf0\x9f\x8e\x85"=>"[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]", "\xf0\x9f\x8e\x8c"=>"[\xe7\xa5\x9d\xe6\x97\xa5]", "\xf0\x9f\x8e\x86"=>"[\xe8\x8a\xb1\xe7\x81\xab]", "\xf0\x9f\x8e\x88"=>"[\xe9\xa2\xa8\xe8\x88\xb9]", "\xf0\x9f\x8e\x89"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]", 
				"\xf0\x9f\x8e\x8d"=>"[\xe9\x96\x80\xe6\x9d\xbe]", "\xf0\x9f\x8e\x8e"=>"[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]", "\xf0\x9f\x8e\x93"=>"[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]", "\xf0\x9f\x8e\x92"=>"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]", "\xf0\x9f\x8e\x8f"=>"[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]", 
				"\xf0\x9f\x8e\x87"=>"[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]", "\xf0\x9f\x8e\x90"=>"[\xe9\xa2\xa8\xe9\x88\xb4]", "\xf0\x9f\x8e\x83"=>"[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]", "\xf0\x9f\x8e\x8a"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "\xf0\x9f\x8e\x8b"=>"[\xe4\xb8\x83\xe5\xa4\x95]", 
				"\xf0\x9f\x8e\x91"=>"[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]", "\xf0\x9f\x93\x9f"=>"\xee\x99\x9a", "\xe2\x98\x8e"=>"\xee\x9a\x87", "\xf0\x9f\x93\x9e"=>"\xee\x9a\x87", "\xf0\x9f\x93\xb1"=>"\xee\x9a\x88", 
				"\xf0\x9f\x93\xb2"=>"\xee\x9b\x8e", "\xf0\x9f\x93\x9d"=>"\xee\x9a\x89", "\xf0\x9f\x93\xa0"=>"\xee\x9b\x90", "\xe2\x9c\x89"=>"\xee\x9b\x93", "\xf0\x9f\x93\xa8"=>"\xee\x9b\x8f", 
				"\xf0\x9f\x93\xa9"=>"\xee\x9b\x8f", "\xf0\x9f\x93\xaa"=>"\xee\x99\xa5", "\xf0\x9f\x93\xab"=>"\xee\x99\xa5", "\xf0\x9f\x93\xae"=>"\xee\x99\xa5", "\xf0\x9f\x93\xb0"=>"[\xe6\x96\xb0\xe8\x81\x9e]", 
				"\xf0\x9f\x93\xa2"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "\xf0\x9f\x93\xa3"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]", "\xf0\x9f\x93\xa1"=>"[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]", "\xf0\x9f\x93\xa4"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "\xf0\x9f\x93\xa5"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]", 
				"\xf0\x9f\x93\xa6"=>"\xee\x9a\x85", "\xf0\x9f\x93\xa7"=>"\xee\x9b\x93", "\xf0\x9f\x94\xa0"=>"[ABCD]", "\xf0\x9f\x94\xa1"=>"[abcd]", "\xf0\x9f\x94\xa2"=>"[1234]", 
				"\xf0\x9f\x94\xa3"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x94\xa4"=>"[ABC]", "\xe2\x9c\x92"=>"\xee\x9a\xae", "\xf0\x9f\x92\xba"=>"\xee\x9a\xb2", "\xf0\x9f\x92\xbb"=>"\xee\x9c\x96", 
				"\xe2\x9c\x8f"=>"\xee\x9c\x99", "\xf0\x9f\x93\x8e"=>"\xee\x9c\xb0", "\xf0\x9f\x92\xbc"=>"\xee\x9a\x82", "\xf0\x9f\x92\xbd"=>"[MD]", "\xf0\x9f\x92\xbe"=>"[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]", 
				"\xf0\x9f\x92\xbf"=>"\xee\x9a\x8c", "\xf0\x9f\x93\x80"=>"\xee\x9a\x8c", "\xe2\x9c\x82"=>"\xee\x99\xb5", "\xf0\x9f\x93\x8d"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x83"=>"\xee\x9a\x89", 
				"\xf0\x9f\x93\x84"=>"\xee\x9a\x89", "\xf0\x9f\x93\x85"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x81"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x82"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x93"=>"\xee\x9a\x83", 
				"\xf0\x9f\x93\x96"=>"\xee\x9a\x83", "\xf0\x9f\x93\x94"=>"\xee\x9a\x83", "\xf0\x9f\x93\x95"=>"\xee\x9a\x83", "\xf0\x9f\x93\x97"=>"\xee\x9a\x83", "\xf0\x9f\x93\x98"=>"\xee\x9a\x83", 
				"\xf0\x9f\x93\x99"=>"\xee\x9a\x83", "\xf0\x9f\x93\x9a"=>"\xee\x9a\x83", "\xf0\x9f\x93\x9b"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "\xf0\x9f\x93\x9c"=>"\xee\x9c\x8a", "\xf0\x9f\x93\x8b"=>"\xee\x9a\x89", 
				"\xf0\x9f\x93\x86"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x8a"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x88"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x89"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x87"=>"\xee\x9a\x83", 
				"\xf0\x9f\x93\x8c"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x92"=>"\xee\x9a\x83", "\xf0\x9f\x93\x8f"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x90"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x91"=>"\xee\x9a\x89", 
				"\xf0\x9f\x8e\xbd"=>"\xee\x99\x92", "\xe2\x9a\xbe"=>"\xee\x99\x93", "\xe2\x9b\xb3"=>"\xee\x99\x94", "\xf0\x9f\x8e\xbe"=>"\xee\x99\x95", "\xe2\x9a\xbd"=>"\xee\x99\x96", 
				"\xf0\x9f\x8e\xbf"=>"\xee\x99\x97", "\xf0\x9f\x8f\x80"=>"\xee\x99\x98", "\xf0\x9f\x8f\x81"=>"\xee\x99\x99", "\xf0\x9f\x8f\x82"=>"\xee\x9c\x92", "\xf0\x9f\x8f\x83"=>"\xee\x9c\xb3", 
				"\xf0\x9f\x8f\x84"=>"\xee\x9c\x92", "\xf0\x9f\x8f\x86"=>"[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]", "\xf0\x9f\x8f\x88"=>"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]", "\xf0\x9f\x8f\x8a"=>"[\xe6\xb0\xb4\xe6\xb3\xb3]", "\xf0\x9f\x9a\x83"=>"\xee\x99\x9b", 
				"\xf0\x9f\x9a\x87"=>"\xee\x99\x9c", "\xe2\x93\x82"=>"\xee\x99\x9c", "\xf0\x9f\x9a\x84"=>"\xee\x99\x9d", "\xf0\x9f\x9a\x85"=>"\xee\x99\x9d", "\xf0\x9f\x9a\x97"=>"\xee\x99\x9e", 
				"\xf0\x9f\x9a\x99"=>"\xee\x99\x9f", "\xf0\x9f\x9a\x8c"=>"\xee\x99\xa0", "\xf0\x9f\x9a\x8f"=>"[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]", "\xf0\x9f\x9a\xa2"=>"\xee\x99\xa1", "\xe2\x9c\x88"=>"\xee\x99\xa2", 
				"\xe2\x9b\xb5"=>"\xee\x9a\xa3", "\xf0\x9f\x9a\x89"=>"[\xe9\xa7\x85]", "\xf0\x9f\x9a\x80"=>"[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]", "\xf0\x9f\x9a\xa4"=>"\xee\x9a\xa3", "\xf0\x9f\x9a\x95"=>"\xee\x99\x9e", 
				"\xf0\x9f\x9a\x9a"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]", "\xf0\x9f\x9a\x92"=>"[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]", "\xf0\x9f\x9a\x91"=>"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]", "\xf0\x9f\x9a\x93"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "\xe2\x9b\xbd"=>"\xee\x99\xab", 
				"\xf0\x9f\x85\xbf"=>"\xee\x99\xac", "\xf0\x9f\x9a\xa5"=>"\xee\x99\xad", "\xf0\x9f\x9a\xa7"=>"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]", "\xf0\x9f\x9a\xa8"=>"[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]", "\xe2\x99\xa8"=>"\xee\x9b\xb7", 
				"\xe2\x9b\xba"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]", "\xf0\x9f\x8e\xa0"=>"\xee\x99\xb9", "\xf0\x9f\x8e\xa1"=>"[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]", "\xf0\x9f\x8e\xa2"=>"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x8e\xa3"=>"\xee\x9d\x91", 
				"\xf0\x9f\x8e\xa4"=>"\xee\x99\xb6", "\xf0\x9f\x8e\xa5"=>"\xee\x99\xb7", "\xf0\x9f\x8e\xa6"=>"\xee\x99\xb7", "\xf0\x9f\x8e\xa7"=>"\xee\x99\xba", "\xf0\x9f\x8e\xa8"=>"\xee\x99\xbb", 
				"\xf0\x9f\x8e\xa9"=>"\xee\x99\xbc", "\xf0\x9f\x8e\xaa"=>"\xee\x99\xbd", "\xf0\x9f\x8e\xab"=>"\xee\x99\xbe", "\xf0\x9f\x8e\xac"=>"\xee\x9a\xac", "\xf0\x9f\x8e\xad"=>"[\xe6\xbc\x94\xe5\x8a\x87]", 
				"\xf0\x9f\x8e\xae"=>"\xee\x9a\x8b", "\xf0\x9f\x80\x84"=>"[\xe9\xba\xbb\xe9\x9b\x80]", "\xf0\x9f\x8e\xaf"=>"[\xe7\x9a\x84\xe4\xb8\xad]", "\xf0\x9f\x8e\xb0"=>"[777]", "\xf0\x9f\x8e\xb1"=>"[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]", 
				"\xf0\x9f\x8e\xb2"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "\xf0\x9f\x8e\xb3"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "\xf0\x9f\x8e\xb4"=>"[\xe8\x8a\xb1\xe6\x9c\xad]", "\xf0\x9f\x83\x8f"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "\xf0\x9f\x8e\xb5"=>"\xee\x9b\xb6", 
				"\xf0\x9f\x8e\xb6"=>"\xee\x9b\xbf", "\xf0\x9f\x8e\xb7"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "\xf0\x9f\x8e\xb8"=>"[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x8e\xb9"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "\xf0\x9f\x8e\xba"=>"[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]", 
				"\xf0\x9f\x8e\xbb"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8e\xbc"=>"\xee\x9b\xbf", "\xe3\x80\xbd"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x93\xb7"=>"\xee\x9a\x81", "\xf0\x9f\x93\xb9"=>"\xee\x99\xb7", 
				"\xf0\x9f\x93\xba"=>"\xee\x9a\x8a", "\xf0\x9f\x93\xbb"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]", "\xf0\x9f\x93\xbc"=>"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]", "\xf0\x9f\x92\x8b"=>"\xee\x9b\xb9", "\xf0\x9f\x92\x8c"=>"\xee\x9c\x97", 
				"\xf0\x9f\x92\x8d"=>"\xee\x9c\x9b", "\xf0\x9f\x92\x8e"=>"\xee\x9c\x9b", "\xf0\x9f\x92\x8f"=>"\xee\x9b\xb9", "\xf0\x9f\x92\x90"=>"[\xe8\x8a\xb1\xe6\x9d\x9f]", "\xf0\x9f\x92\x91"=>"\xee\x9b\xad", 
				"\xf0\x9f\x92\x92"=>"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]", "\xf0\x9f\x94\x9e"=>"[18\xe7\xa6\x81]", "\xc2\xa9"=>"\xee\x9c\xb1", "\xc2\xae"=>"\xee\x9c\xb6", "\xe2\x84\xa2"=>"\xee\x9c\xb2", 
				"\xe2\x84\xb9"=>"[\xef\xbd\x89]", "#\xe2\x83\xa3"=>"\xee\x9b\xa0", "1\xe2\x83\xa3"=>"\xee\x9b\xa2", "2\xe2\x83\xa3"=>"\xee\x9b\xa3", "3\xe2\x83\xa3"=>"\xee\x9b\xa4", 
				"4\xe2\x83\xa3"=>"\xee\x9b\xa5", "5\xe2\x83\xa3"=>"\xee\x9b\xa6", "6\xe2\x83\xa3"=>"\xee\x9b\xa7", "7\xe2\x83\xa3"=>"\xee\x9b\xa8", "8\xe2\x83\xa3"=>"\xee\x9b\xa9", 
				"9\xe2\x83\xa3"=>"\xee\x9b\xaa", "0\xe2\x83\xa3"=>"\xee\x9b\xab", "\xf0\x9f\x94\x9f"=>"[10]", "\xf0\x9f\x93\xb6"=>"[\xe3\x83\x90\xe3\x83\xaa3]", "\xf0\x9f\x93\xb3"=>"[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]", 
				"\xf0\x9f\x93\xb4"=>"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]", "\xf0\x9f\x8d\x94"=>"\xee\x99\xb3", "\xf0\x9f\x8d\x99"=>"\xee\x9d\x89", "\xf0\x9f\x8d\xb0"=>"\xee\x9d\x8a", "\xf0\x9f\x8d\x9c"=>"\xee\x9d\x8c", 
				"\xf0\x9f\x8d\x9e"=>"\xee\x9d\x8d", "\xf0\x9f\x8d\xb3"=>"[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]", "\xf0\x9f\x8d\xa6"=>"[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", "\xf0\x9f\x8d\x9f"=>"[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]", "\xf0\x9f\x8d\xa1"=>"[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]", 
				"\xf0\x9f\x8d\x98"=>"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]", "\xf0\x9f\x8d\x9a"=>"\xee\x9d\x8c", "\xf0\x9f\x8d\x9d"=>"[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]", "\xf0\x9f\x8d\x9b"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]", "\xf0\x9f\x8d\xa2"=>"[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]", 
				"\xf0\x9f\x8d\xa3"=>"[\xe3\x81\x99\xe3\x81\x97]", "\xf0\x9f\x8d\xb1"=>"[\xe5\xbc\x81\xe5\xbd\x93]", "\xf0\x9f\x8d\xb2"=>"[\xe9\x8d\x8b]", "\xf0\x9f\x8d\xa7"=>"[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]", "\xf0\x9f\x8d\x96"=>"[\xe8\x82\x89]", 
				"\xf0\x9f\x8d\xa5"=>"\xee\x99\x83", "\xf0\x9f\x8d\xa0"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "\xf0\x9f\x8d\x95"=>"[\xe3\x83\x94\xe3\x82\xb6]", "\xf0\x9f\x8d\x97"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\xa8"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", 
				"\xf0\x9f\x8d\xa9"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "\xf0\x9f\x8d\xaa"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "\xf0\x9f\x8d\xab"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "\xf0\x9f\x8d\xac"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "\xf0\x9f\x8d\xad"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", 
				"\xf0\x9f\x8d\xae"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8d\xaf"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "\xf0\x9f\x8d\xa4"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "\xf0\x9f\x8d\xb4"=>"\xee\x99\xaf", "\xe2\x98\x95"=>"\xee\x99\xb0", 
				"\xf0\x9f\x8d\xb8"=>"\xee\x99\xb1", "\xf0\x9f\x8d\xba"=>"\xee\x99\xb2", "\xf0\x9f\x8d\xb5"=>"\xee\x9c\x9e", "\xf0\x9f\x8d\xb6"=>"\xee\x9d\x8b", "\xf0\x9f\x8d\xb7"=>"\xee\x9d\x96", 
				"\xf0\x9f\x8d\xbb"=>"\xee\x99\xb2", "\xf0\x9f\x8d\xb9"=>"\xee\x99\xb1", "\xe2\x86\x97"=>"\xee\x99\xb8", "\xe2\x86\x98"=>"\xee\x9a\x96", "\xe2\x86\x96"=>"\xee\x9a\x97", 
				"\xe2\x86\x99"=>"\xee\x9a\xa5", "\xe2\xa4\xb4"=>"\xee\x9b\xb5", "\xe2\xa4\xb5"=>"\xee\x9c\x80", "\xe2\x86\x94"=>"\xee\x9c\xbc", "\xe2\x86\x95"=>"\xee\x9c\xbd", 
				"\xe2\xac\x86"=>"[\xe2\x86\x91]", "\xe2\xac\x87"=>"[\xe2\x86\x93]", "\xe2\x9e\xa1"=>"[\xe2\x86\x92]", "\xe2\xac\x85"=>"[\xe2\x86\x90]", "\xe2\x96\xb6"=>"[>]", 
				"\xe2\x97\x80"=>"[<]", "\xe2\x8f\xa9"=>"[>>]", "\xe2\x8f\xaa"=>"[<<]", "\xe2\x8f\xab"=>"\xe2\x96\xb2", "\xe2\x8f\xac"=>"\xe2\x96\xbc", 
				"\xf0\x9f\x94\xba"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbb"=>"\xe2\x96\xbc", "\xf0\x9f\x94\xbc"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbd"=>"\xe2\x96\xbc", "\xe2\xad\x95"=>"\xee\x9a\xa0", 
				"\xe2\x9d\x8c"=>"[\xc3\x97]", "\xe2\x9d\x8e"=>"[\xc3\x97]", "\xe2\x9d\x97"=>"\xee\x9c\x82", "\xe2\x81\x89"=>"\xee\x9c\x83", "\xe2\x80\xbc"=>"\xee\x9c\x84", 
				"\xe2\x9d\x93"=>"[\xef\xbc\x9f]", "\xe2\x9d\x94"=>"[\xef\xbc\x9f]", "\xe2\x9d\x95"=>"\xee\x9c\x82", "\xe3\x80\xb0"=>"\xee\x9c\x89", "\xe2\x9e\xb0"=>"\xee\x9c\x8a", 
				"\xe2\x9e\xbf"=>"\xee\x9b\x9f", "\xe2\x9d\xa4"=>"\xee\x9b\xac", "\xf0\x9f\x92\x93"=>"\xee\x9b\xad", "\xf0\x9f\x92\x94"=>"\xee\x9b\xae", "\xf0\x9f\x92\x95"=>"\xee\x9b\xaf", 
				"\xf0\x9f\x92\x96"=>"\xee\x9b\xac", "\xf0\x9f\x92\x97"=>"\xee\x9b\xad", "\xf0\x9f\x92\x98"=>"\xee\x9b\xac", "\xf0\x9f\x92\x99"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9a"=>"\xee\x9b\xac", 
				"\xf0\x9f\x92\x9b"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9c"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9d"=>"\xee\x9b\xac", "\xf0\x9f\x92\x9e"=>"\xee\x9b\xad", "\xf0\x9f\x92\x9f"=>"\xee\x9b\xb8", 
				"\xe2\x99\xa5"=>"\xee\x9a\x8d", "\xe2\x99\xa0"=>"\xee\x9a\x8e", "\xe2\x99\xa6"=>"\xee\x9a\x8f", "\xe2\x99\xa3"=>"\xee\x9a\x90", "\xf0\x9f\x9a\xac"=>"\xee\x99\xbf", 
				"\xf0\x9f\x9a\xad"=>"\xee\x9a\x80", "\xe2\x99\xbf"=>"\xee\x9a\x9b", "\xf0\x9f\x9a\xa9"=>"\xee\x9b\x9e", "\xe2\x9a\xa0"=>"\xee\x9c\xb7", "\xe2\x9b\x94"=>"\xee\x9c\xaf", 
				"\xe2\x99\xbb"=>"\xee\x9c\xb5", "\xf0\x9f\x9a\xb2"=>"\xee\x9c\x9d", "\xf0\x9f\x9a\xb6"=>"\xee\x9c\xb3", "\xf0\x9f\x9a\xb9"=>"[\xe2\x99\x82]", "\xf0\x9f\x9a\xba"=>"[\xe2\x99\x80]", 
				"\xf0\x9f\x9b\x80"=>"\xee\x9b\xb7", "\xf0\x9f\x9a\xbb"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbd"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbe"=>"\xee\x99\xae", "\xf0\x9f\x9a\xbc"=>"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]", 
				"\xf0\x9f\x9a\xaa"=>"\xee\x9c\x94", "\xf0\x9f\x9a\xab"=>"\xee\x9c\xb8", "\xe2\x9c\x94"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x86\x91"=>"\xee\x9b\x9b", "\xf0\x9f\x86\x92"=>"[COOL]", 
				"\xf0\x9f\x86\x93"=>"\xee\x9b\x97", "\xf0\x9f\x86\x94"=>"\xee\x9b\x98", "\xf0\x9f\x86\x95"=>"\xee\x9b\x9d", "\xf0\x9f\x86\x96"=>"\xee\x9c\xaf", "\xf0\x9f\x86\x97"=>"\xee\x9c\x8b", 
				"\xf0\x9f\x86\x98"=>"[SOS]", "\xf0\x9f\x86\x99"=>"[UP!]", "\xf0\x9f\x86\x9a"=>"[VS]", "\xf0\x9f\x88\x81"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "\xf0\x9f\x88\x82"=>"[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]", 
				"\xf0\x9f\x88\xb2"=>"\xee\x9c\xb8", "\xf0\x9f\x88\xb3"=>"\xee\x9c\xb9", "\xf0\x9f\x88\xb4"=>"\xee\x9c\xba", "\xf0\x9f\x88\xb5"=>"\xee\x9c\xbb", "\xf0\x9f\x88\xb6"=>"[\xe6\x9c\x89]", 
				"\xf0\x9f\x88\x9a"=>"[\xe7\x84\xa1]", "\xf0\x9f\x88\xb7"=>"[\xe6\x9c\x88]", "\xf0\x9f\x88\xb8"=>"[\xe7\x94\xb3]", "\xf0\x9f\x88\xb9"=>"[\xe5\x89\xb2]", "\xf0\x9f\x88\xaf"=>"[\xe6\x8c\x87]", 
				"\xf0\x9f\x88\xba"=>"[\xe5\x96\xb6]", "\xe3\x8a\x99"=>"\xee\x9c\xb4", "\xe3\x8a\x97"=>"[\xe7\xa5\x9d]", "\xf0\x9f\x89\x90"=>"[\xe5\xbe\x97]", "\xf0\x9f\x89\x91"=>"[\xe5\x8f\xaf]", 
				"\xe2\x9e\x95"=>"[\xef\xbc\x8b]", "\xe2\x9e\x96"=>"[\xef\xbc\x8d]", "\xe2\x9c\x96"=>"[\xc3\x97]", "\xe2\x9e\x97"=>"[\xc3\xb7]", "\xf0\x9f\x92\xa0"=>"\xee\x9b\xb8", 
				"\xf0\x9f\x92\xa1"=>"\xee\x9b\xbb", "\xf0\x9f\x92\xa2"=>"\xee\x9b\xbc", "\xf0\x9f\x92\xa3"=>"\xee\x9b\xbe", "\xf0\x9f\x92\xa4"=>"\xee\x9c\x81", "\xf0\x9f\x92\xa5"=>"\xee\x9c\x85", 
				"\xf0\x9f\x92\xa6"=>"\xee\x9c\x86", "\xf0\x9f\x92\xa7"=>"\xee\x9c\x87", "\xf0\x9f\x92\xa8"=>"\xee\x9c\x88", "\xf0\x9f\x92\xa9"=>"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]", "\xf0\x9f\x92\xaa"=>"[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]", 
				"\xf0\x9f\x92\xab"=>"[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]", "\xf0\x9f\x92\xac"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]", "\xe2\x9c\xa8"=>"\xee\x9b\xba", "\xe2\x9c\xb4"=>"\xee\x9b\xb8", "\xe2\x9c\xb3"=>"\xee\x9b\xb8", 
				"\xe2\x9a\xaa"=>"\xee\x9a\x9c", "\xe2\x9a\xab"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb4"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb5"=>"\xee\x9a\x9c", "\xf0\x9f\x94\xb2"=>"\xee\x9a\x9c", 
				"\xf0\x9f\x94\xb3"=>"\xee\x9a\x9c", "\xe2\xad\x90"=>"[\xe2\x98\x86]", "\xe2\xac\x9c"=>"\xe2\x96\xa0", "\xe2\xac\x9b"=>"\xe2\x96\xa0", "\xe2\x96\xab"=>"\xe2\x96\xa0", 
				"\xe2\x96\xaa"=>"\xe2\x96\xa0", "\xe2\x97\xbd"=>"\xe2\x96\xa0", "\xe2\x97\xbe"=>"\xe2\x96\xa0", "\xe2\x97\xbb"=>"\xe2\x96\xa0", "\xe2\x97\xbc"=>"\xe2\x96\xa0", 
				"\xf0\x9f\x94\xb6"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb7"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb8"=>"\xe2\x97\x86", "\xf0\x9f\x94\xb9"=>"\xe2\x97\x86", "\xe2\x9d\x87"=>"\xee\x9b\xba", 
				"\xf0\x9f\x92\xae"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "\xf0\x9f\x92\xaf"=>"[100\xe7\x82\xb9]", "\xe2\x86\xa9"=>"\xee\x9b\x9a", "\xe2\x86\xaa"=>"\xe2\x94\x94\xe2\x86\x92", "\xf0\x9f\x94\x83"=>"\xee\x9c\xb5", 
				"\xf0\x9f\x94\x8a"=>"[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]", "\xf0\x9f\x94\x8b"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "\xf0\x9f\x94\x8c"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x94\x8d"=>"\xee\x9b\x9c", "\xf0\x9f\x94\x8e"=>"\xee\x9b\x9c", 
				"\xf0\x9f\x94\x92"=>"\xee\x9b\x99", "\xf0\x9f\x94\x93"=>"\xee\x9b\x99", "\xf0\x9f\x94\x8f"=>"\xee\x9b\x99", "\xf0\x9f\x94\x90"=>"\xee\x9b\x99", "\xf0\x9f\x94\x91"=>"\xee\x9b\x99", 
				"\xf0\x9f\x94\x94"=>"\xee\x9c\x93", "\xe2\x98\x91"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x98"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "\xf0\x9f\x94\x96"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x97"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]", 
				"\xf0\x9f\x94\x99"=>"[\xe2\x86\x90BACK]", "\xf0\x9f\x94\x9a"=>"\xee\x9a\xb9", "\xf0\x9f\x94\x9b"=>"\xee\x9a\xb8", "\xf0\x9f\x94\x9c"=>"\xee\x9a\xb7", "\xf0\x9f\x94\x9d"=>"[TOP]", 
				"\xe2\x9c\x85"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xe2\x9c\x8a"=>"\xee\x9a\x93", "\xe2\x9c\x8b"=>"\xee\x9a\x95", "\xe2\x9c\x8c"=>"\xee\x9a\x94", "\xf0\x9f\x91\x8a"=>"\xee\x9b\xbd", 
				"\xf0\x9f\x91\x8d"=>"\xee\x9c\xa7", "\xe2\x98\x9d"=>"[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]", "\xf0\x9f\x91\x86"=>"[\xe2\x86\x91]", "\xf0\x9f\x91\x87"=>"[\xe2\x86\x93]", "\xf0\x9f\x91\x88"=>"[\xe2\x86\x90]", 
				"\xf0\x9f\x91\x89"=>"[\xe2\x86\x92]", "\xf0\x9f\x91\x8b"=>"\xee\x9a\x95", "\xf0\x9f\x91\x8f"=>"[\xe6\x8b\x8d\xe6\x89\x8b]", "\xf0\x9f\x91\x8c"=>"\xee\x9c\x8b", "\xf0\x9f\x91\x8e"=>"\xee\x9c\x80", 
				"\xf0\x9f\x91\x90"=>"\xee\x9a\x95", 
			),
			'unified_to_kddi' => array(
				"\xe2\x98\x80"=>"\xee\x92\x88", "\xe2\x98\x81"=>"\xee\x92\x8d", "\xe2\x98\x94"=>"\xee\x92\x8c", "\xe2\x9b\x84"=>"\xee\x92\x85", 
				"\xe2\x9a\xa1"=>"\xee\x92\x87", "\xf0\x9f\x8c\x80"=>"\xee\x91\xa9", "\xf0\x9f\x8c\x81"=>"\xee\x96\x98", "\xf0\x9f\x8c\x82"=>"\xee\xab\xa8", "\xf0\x9f\x8c\x83"=>"\xee\xab\xb1", 
				"\xf0\x9f\x8c\x84"=>"\xee\xab\xb4", "\xf0\x9f\x8c\x85"=>"\xee\xab\xb4", "\xf0\x9f\x8c\x86"=>"\xee\x97\x9a", "\xf0\x9f\x8c\x87"=>"\xee\x97\x9a", "\xf0\x9f\x8c\x88"=>"\xee\xab\xb2", 
				"\xe2\x9d\x84"=>"\xee\x92\x8a", "\xe2\x9b\x85"=>"\xee\x92\x8e", "\xf0\x9f\x8c\x89"=>"\xee\x92\xbf", "\xf0\x9f\x8c\x8a"=>"\xee\xad\xbc", "\xf0\x9f\x8c\x8b"=>"\xee\xad\x93", 
				"\xf0\x9f\x8c\x8c"=>"\xee\xad\x9f", "\xf0\x9f\x8c\x8f"=>"\xee\x96\xb3", "\xf0\x9f\x8c\x91"=>"\xee\x96\xa8", "\xf0\x9f\x8c\x94"=>"\xee\x96\xa9", "\xf0\x9f\x8c\x93"=>"\xee\x96\xaa", 
				"\xf0\x9f\x8c\x99"=>"\xee\x92\x86", "\xf0\x9f\x8c\x95"=>"\xe2\x97\x8b", "\xf0\x9f\x8c\x9b"=>"\xee\x92\x89", "\xf0\x9f\x8c\x9f"=>"\xee\x92\x8b", "\xf0\x9f\x8c\xa0"=>"\xee\x91\xa8", 
				"\xf0\x9f\x95\x90"=>"\xee\x96\x94", "\xf0\x9f\x95\x91"=>"\xee\x96\x94", "\xf0\x9f\x95\x92"=>"\xee\x96\x94", "\xf0\x9f\x95\x93"=>"\xee\x96\x94", "\xf0\x9f\x95\x94"=>"\xee\x96\x94", 
				"\xf0\x9f\x95\x95"=>"\xee\x96\x94", "\xf0\x9f\x95\x96"=>"\xee\x96\x94", "\xf0\x9f\x95\x97"=>"\xee\x96\x94", "\xf0\x9f\x95\x98"=>"\xee\x96\x94", "\xf0\x9f\x95\x99"=>"\xee\x96\x94", 
				"\xf0\x9f\x95\x9a"=>"\xee\x96\x94", "\xf0\x9f\x95\x9b"=>"\xee\x96\x94", "\xe2\x8c\x9a"=>"\xee\x95\xba", "\xe2\x8c\x9b"=>"\xee\x95\xbb", "\xe2\x8f\xb0"=>"\xee\x96\x94", 
				"\xe2\x8f\xb3"=>"\xee\x91\xbc", "\xe2\x99\x88"=>"\xee\x92\x8f", "\xe2\x99\x89"=>"\xee\x92\x90", "\xe2\x99\x8a"=>"\xee\x92\x91", "\xe2\x99\x8b"=>"\xee\x92\x92", 
				"\xe2\x99\x8c"=>"\xee\x92\x93", "\xe2\x99\x8d"=>"\xee\x92\x94", "\xe2\x99\x8e"=>"\xee\x92\x95", "\xe2\x99\x8f"=>"\xee\x92\x96", "\xe2\x99\x90"=>"\xee\x92\x97", 
				"\xe2\x99\x91"=>"\xee\x92\x98", "\xe2\x99\x92"=>"\xee\x92\x99", "\xe2\x99\x93"=>"\xee\x92\x9a", "\xe2\x9b\x8e"=>"\xee\x92\x9b", "\xf0\x9f\x8d\x80"=>"\xee\x94\x93", 
				"\xf0\x9f\x8c\xb7"=>"\xee\x93\xa4", "\xf0\x9f\x8c\xb1"=>"\xee\xad\xbd", "\xf0\x9f\x8d\x81"=>"\xee\x93\x8e", "\xf0\x9f\x8c\xb8"=>"\xee\x93\x8a", "\xf0\x9f\x8c\xb9"=>"\xee\x96\xba", 
				"\xf0\x9f\x8d\x82"=>"\xee\x97\x8d", "\xf0\x9f\x8d\x83"=>"\xee\x97\x8d", "\xf0\x9f\x8c\xba"=>"\xee\xaa\x94", "\xf0\x9f\x8c\xbb"=>"\xee\x93\xa3", "\xf0\x9f\x8c\xb4"=>"\xee\x93\xa2", 
				"\xf0\x9f\x8c\xb5"=>"\xee\xaa\x96", "\xf0\x9f\x8c\xbe"=>"[\xe7\xa8\xb2\xe7\xa9\x82]", "\xf0\x9f\x8c\xbd"=>"\xee\xac\xb6", "\xf0\x9f\x8d\x84"=>"\xee\xac\xb7", "\xf0\x9f\x8c\xb0"=>"\xee\xac\xb8", 
				"\xf0\x9f\x8c\xbc"=>"\xee\xad\x89", "\xf0\x9f\x8c\xbf"=>"\xee\xae\x82", "\xf0\x9f\x8d\x92"=>"\xee\x93\x92", "\xf0\x9f\x8d\x8c"=>"\xee\xac\xb5", "\xf0\x9f\x8d\x8e"=>"\xee\xaa\xb9", 
				"\xf0\x9f\x8d\x8a"=>"\xee\xaa\xba", "\xf0\x9f\x8d\x93"=>"\xee\x93\x94", "\xf0\x9f\x8d\x89"=>"\xee\x93\x8d", "\xf0\x9f\x8d\x85"=>"\xee\xaa\xbb", "\xf0\x9f\x8d\x86"=>"\xee\xaa\xbc", 
				"\xf0\x9f\x8d\x88"=>"\xee\xac\xb2", "\xf0\x9f\x8d\x8d"=>"\xee\xac\xb3", "\xf0\x9f\x8d\x87"=>"\xee\xac\xb4", "\xf0\x9f\x8d\x91"=>"\xee\xac\xb9", "\xf0\x9f\x8d\x8f"=>"\xee\xad\x9a", 
				"\xf0\x9f\x91\x80"=>"\xee\x96\xa4", "\xf0\x9f\x91\x82"=>"\xee\x96\xa5", "\xf0\x9f\x91\x83"=>"\xee\xab\x90", "\xf0\x9f\x91\x84"=>"\xee\xab\x91", "\xf0\x9f\x91\x85"=>"\xee\xad\x87", 
				"\xf0\x9f\x92\x84"=>"\xee\x94\x89", "\xf0\x9f\x92\x85"=>"\xee\xaa\xa0", "\xf0\x9f\x92\x86"=>"\xee\x94\x8b", "\xf0\x9f\x92\x87"=>"\xee\xaa\xa1", "\xf0\x9f\x92\x88"=>"\xee\xaa\xa2", 
				"\xf0\x9f\x91\xa4"=>"\xe3\x80\x93", "\xf0\x9f\x91\xa6"=>"\xee\x93\xbc", "\xf0\x9f\x91\xa7"=>"\xee\x93\xba", "\xf0\x9f\x91\xa8"=>"\xee\x93\xbc", "\xf0\x9f\x91\xa9"=>"\xee\x93\xba", 
				"\xf0\x9f\x91\xaa"=>"\xee\x94\x81", "\xf0\x9f\x91\xab"=>"[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x91\xae"=>"\xee\x97\x9d", "\xf0\x9f\x91\xaf"=>"\xee\xab\x9b", "\xf0\x9f\x91\xb0"=>"\xee\xab\xa9", 
				"\xf0\x9f\x91\xb1"=>"\xee\xac\x93", "\xf0\x9f\x91\xb2"=>"\xee\xac\x94", "\xf0\x9f\x91\xb3"=>"\xee\xac\x95", "\xf0\x9f\x91\xb4"=>"\xee\xac\x96", "\xf0\x9f\x91\xb5"=>"\xee\xac\x97", 
				"\xf0\x9f\x91\xb6"=>"\xee\xac\x98", "\xf0\x9f\x91\xb7"=>"\xee\xac\x99", "\xf0\x9f\x91\xb8"=>"\xee\xac\x9a", "\xf0\x9f\x91\xb9"=>"\xee\xad\x84", "\xf0\x9f\x91\xba"=>"\xee\xad\x85", 
				"\xf0\x9f\x91\xbb"=>"\xee\x93\x8b", "\xf0\x9f\x91\xbc"=>"\xee\x96\xbf", "\xf0\x9f\x91\xbd"=>"\xee\x94\x8e", "\xf0\x9f\x91\xbe"=>"\xee\x93\xac", "\xf0\x9f\x91\xbf"=>"\xee\x93\xaf", 
				"\xf0\x9f\x92\x80"=>"\xee\x93\xb8", "\xf0\x9f\x92\x81"=>"[\xe6\xa1\x88\xe5\x86\x85]", "\xf0\x9f\x92\x82"=>"[\xe8\xa1\x9b\xe5\x85\xb5]", "\xf0\x9f\x92\x83"=>"\xee\xac\x9c", "\xf0\x9f\x90\x8c"=>"\xee\xad\xbe", 
				"\xf0\x9f\x90\x8d"=>"\xee\xac\xa2", "\xf0\x9f\x90\x8e"=>"\xee\x93\x98", "\xf0\x9f\x90\x94"=>"\xee\xac\xa3", "\xf0\x9f\x90\x97"=>"\xee\xac\xa4", "\xf0\x9f\x90\xab"=>"\xee\xac\xa5", 
				"\xf0\x9f\x90\x98"=>"\xee\xac\x9f", "\xf0\x9f\x90\xa8"=>"\xee\xac\xa0", "\xf0\x9f\x90\x92"=>"\xee\x93\x99", "\xf0\x9f\x90\x91"=>"\xee\x92\x8f", "\xf0\x9f\x90\x99"=>"\xee\x97\x87", 
				"\xf0\x9f\x90\x9a"=>"\xee\xab\xac", "\xf0\x9f\x90\x9b"=>"\xee\xac\x9e", "\xf0\x9f\x90\x9c"=>"\xee\x93\x9d", "\xf0\x9f\x90\x9d"=>"\xee\xad\x97", "\xf0\x9f\x90\x9e"=>"\xee\xad\x98", 
				"\xf0\x9f\x90\xa0"=>"\xee\xac\x9d", "\xf0\x9f\x90\xa1"=>"\xee\x93\x93", "\xf0\x9f\x90\xa2"=>"\xee\x97\x94", "\xf0\x9f\x90\xa4"=>"\xee\x93\xa0", "\xf0\x9f\x90\xa5"=>"\xee\xad\xb6", 
				"\xf0\x9f\x90\xa6"=>"\xee\x93\xa0", "\xf0\x9f\x90\xa3"=>"\xee\x97\x9b", "\xf0\x9f\x90\xa7"=>"\xee\x93\x9c", "\xf0\x9f\x90\xa9"=>"\xee\x93\x9f", "\xf0\x9f\x90\x9f"=>"\xee\x92\x9a", 
				"\xf0\x9f\x90\xac"=>"\xee\xac\x9b", "\xf0\x9f\x90\xad"=>"\xee\x97\x82", "\xf0\x9f\x90\xaf"=>"\xee\x97\x80", "\xf0\x9f\x90\xb1"=>"\xee\x93\x9b", "\xf0\x9f\x90\xb3"=>"\xee\x91\xb0", 
				"\xf0\x9f\x90\xb4"=>"\xee\x93\x98", "\xf0\x9f\x90\xb5"=>"\xee\x93\x99", "\xf0\x9f\x90\xb6"=>"\xee\x93\xa1", "\xf0\x9f\x90\xb7"=>"\xee\x93\x9e", "\xf0\x9f\x90\xbb"=>"\xee\x97\x81", 
				"\xf0\x9f\x90\xb9"=>"[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]", "\xf0\x9f\x90\xba"=>"\xee\x93\xa1", "\xf0\x9f\x90\xae"=>"\xee\xac\xa1", "\xf0\x9f\x90\xb0"=>"\xee\x93\x97", "\xf0\x9f\x90\xb8"=>"\xee\x93\x9a", 
				"\xf0\x9f\x90\xbe"=>"\xee\x93\xae", "\xf0\x9f\x90\xb2"=>"\xee\xac\xbf", "\xf0\x9f\x90\xbc"=>"\xee\xad\x86", "\xf0\x9f\x90\xbd"=>"\xee\xad\x88", "\xf0\x9f\x98\xa0"=>"\xee\x91\xb2", 
				"\xf0\x9f\x98\xa9"=>"\xee\xad\xa7", "\xf0\x9f\x98\xb2"=>"\xee\xab\x8a", "\xf0\x9f\x98\x9e"=>"\xee\xab\x80", "\xf0\x9f\x98\xb5"=>"\xee\x96\xae", "\xf0\x9f\x98\xb0"=>"\xee\xab\x8b", 
				"\xf0\x9f\x98\x92"=>"\xee\xab\x89", "\xf0\x9f\x98\x8d"=>"\xee\x97\x84", "\xf0\x9f\x98\xa4"=>"\xee\xab\x81", "\xf0\x9f\x98\x9c"=>"\xee\x93\xa7", "\xf0\x9f\x98\x9d"=>"\xee\x93\xa7", 
				"\xf0\x9f\x98\x8b"=>"\xee\xab\x8d", "\xf0\x9f\x98\x98"=>"\xee\xab\x8f", "\xf0\x9f\x98\x9a"=>"\xee\xab\x8e", "\xf0\x9f\x98\xb7"=>"\xee\xab\x87", "\xf0\x9f\x98\xb3"=>"\xee\xab\x88", 
				"\xf0\x9f\x98\x83"=>"\xee\x91\xb1", "\xf0\x9f\x98\x85"=>"\xee\x91\xb1\xee\x96\xb1", "\xf0\x9f\x98\x86"=>"\xee\xab\x85", "\xf0\x9f\x98\x81"=>"\xee\xae\x80", "\xf0\x9f\x98\x82"=>"\xee\xad\xa4", 
				"\xf0\x9f\x98\x8a"=>"\xee\xab\x8d", "\xe2\x98\xba"=>"\xee\x93\xbb", "\xf0\x9f\x98\x84"=>"\xee\x91\xb1", "\xf0\x9f\x98\xa2"=>"\xee\xad\xa9", "\xf0\x9f\x98\xad"=>"\xee\x91\xb3", 
				"\xf0\x9f\x98\xa8"=>"\xee\xab\x86", "\xf0\x9f\x98\xa3"=>"\xee\xab\x82", "\xf0\x9f\x98\xa1"=>"\xee\xad\x9d", "\xf0\x9f\x98\x8c"=>"\xee\xab\x85", "\xf0\x9f\x98\x96"=>"\xee\xab\x83", 
				"\xf0\x9f\x98\x94"=>"\xee\xab\x80", "\xf0\x9f\x98\xb1"=>"\xee\x97\x85", "\xf0\x9f\x98\xaa"=>"\xee\xab\x84", "\xf0\x9f\x98\x8f"=>"\xee\xaa\xbf", "\xf0\x9f\x98\x93"=>"\xee\x97\x86", 
				"\xf0\x9f\x98\xa5"=>"\xee\x97\x86", "\xf0\x9f\x98\xab"=>"\xee\x91\xb4", "\xf0\x9f\x98\x89"=>"\xee\x97\x83", "\xf0\x9f\x98\xba"=>"\xee\xad\xa1", "\xf0\x9f\x98\xb8"=>"\xee\xad\xbf", 
				"\xf0\x9f\x98\xb9"=>"\xee\xad\xa3", "\xf0\x9f\x98\xbd"=>"\xee\xad\xa0", "\xf0\x9f\x98\xbb"=>"\xee\xad\xa5", "\xf0\x9f\x98\xbf"=>"\xee\xad\xa8", "\xf0\x9f\x98\xbe"=>"\xee\xad\x9e", 
				"\xf0\x9f\x98\xbc"=>"\xee\xad\xaa", "\xf0\x9f\x99\x80"=>"\xee\xad\xa6", "\xf0\x9f\x99\x85"=>"\xee\xab\x97", "\xf0\x9f\x99\x86"=>"\xee\xab\x98", "\xf0\x9f\x99\x87"=>"\xee\xab\x99", 
				"\xf0\x9f\x99\x88"=>"\xee\xad\x90", "\xf0\x9f\x99\x8a"=>"\xee\xad\x91", "\xf0\x9f\x99\x89"=>"\xee\xad\x92", "\xf0\x9f\x99\x8b"=>"\xee\xae\x85", "\xf0\x9f\x99\x8c"=>"\xee\xae\x86", 
				"\xf0\x9f\x99\x8d"=>"\xee\xae\x87", "\xf0\x9f\x99\x8e"=>"\xee\xae\x88", "\xf0\x9f\x99\x8f"=>"\xee\xab\x92", "\xf0\x9f\x8f\xa0"=>"\xee\x92\xab", "\xf0\x9f\x8f\xa1"=>"\xee\xac\x89", 
				"\xf0\x9f\x8f\xa2"=>"\xee\x92\xad", "\xf0\x9f\x8f\xa3"=>"\xee\x97\x9e", "\xf0\x9f\x8f\xa5"=>"\xee\x97\x9f", "\xf0\x9f\x8f\xa6"=>"\xee\x92\xaa", "\xf0\x9f\x8f\xa7"=>"\xee\x92\xa3", 
				"\xf0\x9f\x8f\xa8"=>"\xee\xaa\x81", "\xf0\x9f\x8f\xa9"=>"\xee\xab\xb3", "\xf0\x9f\x8f\xaa"=>"\xee\x92\xa4", "\xf0\x9f\x8f\xab"=>"\xee\xaa\x80", "\xe2\x9b\xaa"=>"\xee\x96\xbb", 
				"\xe2\x9b\xb2"=>"\xee\x97\x8f", "\xf0\x9f\x8f\xac"=>"\xee\xab\xb6", "\xf0\x9f\x8f\xaf"=>"\xee\xab\xb7", "\xf0\x9f\x8f\xb0"=>"\xee\xab\xb8", "\xf0\x9f\x8f\xad"=>"\xee\xab\xb9", 
				"\xe2\x9a\x93"=>"\xee\x92\xa9", "\xf0\x9f\x8f\xae"=>"\xee\x92\xbd", "\xf0\x9f\x97\xbb"=>"\xee\x96\xbd", "\xf0\x9f\x97\xbc"=>"\xee\x93\x80", "\xf0\x9f\x97\xbd"=>"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]", 
				"\xf0\x9f\x97\xbe"=>"\xee\x95\xb2", "\xf0\x9f\x97\xbf"=>"\xee\xad\xac", "\xf0\x9f\x91\x9e"=>"\xee\x96\xb7", "\xf0\x9f\x91\x9f"=>"\xee\xac\xab", "\xf0\x9f\x91\xa0"=>"\xee\x94\x9a", 
				"\xf0\x9f\x91\xa1"=>"\xee\x94\x9a", "\xf0\x9f\x91\xa2"=>"\xee\xaa\x9f", "\xf0\x9f\x91\xa3"=>"\xee\xac\xaa", "\xf0\x9f\x91\x93"=>"\xee\x93\xbe", "\xf0\x9f\x91\x95"=>"\xee\x96\xb6", 
				"\xf0\x9f\x91\x96"=>"\xee\xad\xb7", "\xf0\x9f\x91\x91"=>"\xee\x97\x89", "\xf0\x9f\x91\x94"=>"\xee\xaa\x93", "\xf0\x9f\x91\x92"=>"\xee\xaa\x9e", "\xf0\x9f\x91\x97"=>"\xee\xad\xab", 
				"\xf0\x9f\x91\x98"=>"\xee\xaa\xa3", "\xf0\x9f\x91\x99"=>"\xee\xaa\xa4", "\xf0\x9f\x91\x9a"=>"\xee\x94\x8d", "\xf0\x9f\x91\x9b"=>"\xee\x94\x84", "\xf0\x9f\x91\x9c"=>"\xee\x92\x9c", 
				"\xf0\x9f\x91\x9d"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "\xf0\x9f\x92\xb0"=>"\xee\x93\x87", "\xf0\x9f\x92\xb1"=>"[$\xef\xbf\xa5]", "\xf0\x9f\x92\xb9"=>"\xee\x97\x9c", "\xf0\x9f\x92\xb2"=>"\xee\x95\xb9", 
				"\xf0\x9f\x92\xb3"=>"\xee\x95\xbc", "\xf0\x9f\x92\xb4"=>"\xee\x95\xbd", "\xf0\x9f\x92\xb5"=>"\xee\x96\x85", "\xf0\x9f\x92\xb8"=>"\xee\xad\x9b", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"\xee\xac\x91", 
				"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"\xee\xac\x8e", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"\xee\x97\x95", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"\xee\xab\xba", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"\xee\xac\x90", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"\xee\xac\x8f", 
				"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"\xee\x93\x8c", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"\xee\xac\x92", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"\xee\x97\x96", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"\xee\x95\xb3", "\xf0\x9f\x94\xa5"=>"\xee\x91\xbb", 
				"\xf0\x9f\x94\xa6"=>"\xee\x96\x83", "\xf0\x9f\x94\xa7"=>"\xee\x96\x87", "\xf0\x9f\x94\xa8"=>"\xee\x97\x8b", "\xf0\x9f\x94\xa9"=>"\xee\x96\x81", "\xf0\x9f\x94\xaa"=>"\xee\x95\xbf", 
				"\xf0\x9f\x94\xab"=>"\xee\x94\x8a", "\xf0\x9f\x94\xae"=>"\xee\xaa\x8f", "\xf0\x9f\x94\xaf"=>"\xee\xaa\x8f", "\xf0\x9f\x94\xb0"=>"\xee\x92\x80", "\xf0\x9f\x94\xb1"=>"\xee\x97\x89", 
				"\xf0\x9f\x92\x89"=>"\xee\x94\x90", "\xf0\x9f\x92\x8a"=>"\xee\xaa\x9a", "\xf0\x9f\x85\xb0"=>"\xee\xac\xa6", "\xf0\x9f\x85\xb1"=>"\xee\xac\xa7", "\xf0\x9f\x86\x8e"=>"\xee\xac\xa9", 
				"\xf0\x9f\x85\xbe"=>"\xee\xac\xa8", "\xf0\x9f\x8e\x80"=>"\xee\x96\x9f", "\xf0\x9f\x8e\x81"=>"\xee\x93\x8f", "\xf0\x9f\x8e\x82"=>"\xee\x96\xa0", "\xf0\x9f\x8e\x84"=>"\xee\x93\x89", 
				"\xf0\x9f\x8e\x85"=>"\xee\xab\xb0", "\xf0\x9f\x8e\x8c"=>"\xee\x97\x99", "\xf0\x9f\x8e\x86"=>"\xee\x97\x8c", "\xf0\x9f\x8e\x88"=>"\xee\xaa\x9b", "\xf0\x9f\x8e\x89"=>"\xee\xaa\x9c", 
				"\xf0\x9f\x8e\x8d"=>"\xee\xab\xa3", "\xf0\x9f\x8e\x8e"=>"\xee\xab\xa4", "\xf0\x9f\x8e\x93"=>"\xee\xab\xa5", "\xf0\x9f\x8e\x92"=>"\xee\xab\xa6", "\xf0\x9f\x8e\x8f"=>"\xee\xab\xa7", 
				"\xf0\x9f\x8e\x87"=>"\xee\xab\xab", "\xf0\x9f\x8e\x90"=>"\xee\xab\xad", "\xf0\x9f\x8e\x83"=>"\xee\xab\xae", "\xf0\x9f\x8e\x8a"=>"\xee\x91\xaf", "\xf0\x9f\x8e\x8b"=>"\xee\xac\xbd", 
				"\xf0\x9f\x8e\x91"=>"\xee\xab\xaf", "\xf0\x9f\x93\x9f"=>"\xee\x96\x9b", "\xe2\x98\x8e"=>"\xee\x96\x96", "\xf0\x9f\x93\x9e"=>"\xee\x94\x9e", "\xf0\x9f\x93\xb1"=>"\xee\x96\x88", 
				"\xf0\x9f\x93\xb2"=>"\xee\xac\x88", "\xf0\x9f\x93\x9d"=>"\xee\xaa\x92", "\xf0\x9f\x93\xa0"=>"\xee\x94\xa0", "\xe2\x9c\x89"=>"\xee\x94\xa1", "\xf0\x9f\x93\xa8"=>"\xee\x96\x91", 
				"\xf0\x9f\x93\xa9"=>"\xee\xad\xa2", "\xf0\x9f\x93\xaa"=>"\xee\x94\x9b", "\xf0\x9f\x93\xab"=>"\xee\xac\x8a", "\xf0\x9f\x93\xae"=>"\xee\x94\x9b", "\xf0\x9f\x93\xb0"=>"\xee\x96\x8b", 
				"\xf0\x9f\x93\xa2"=>"\xee\x94\x91", "\xf0\x9f\x93\xa3"=>"\xee\x94\x91", "\xf0\x9f\x93\xa1"=>"\xee\x92\xa8", "\xf0\x9f\x93\xa4"=>"\xee\x96\x92", "\xf0\x9f\x93\xa5"=>"\xee\x96\x93", 
				"\xf0\x9f\x93\xa6"=>"\xee\x94\x9f", "\xf0\x9f\x93\xa7"=>"\xee\xad\xb1", "\xf0\x9f\x94\xa0"=>"\xee\xab\xbd", "\xf0\x9f\x94\xa1"=>"\xee\xab\xbe", "\xf0\x9f\x94\xa2"=>"\xee\xab\xbf", 
				"\xf0\x9f\x94\xa3"=>"\xee\xac\x80", "\xf0\x9f\x94\xa4"=>"\xee\xad\x95", "\xe2\x9c\x92"=>"\xee\xac\x83", "\xf0\x9f\x92\xba"=>"[\xe3\x81\x84\xe3\x81\x99]", "\xf0\x9f\x92\xbb"=>"\xee\x96\xb8", 
				"\xe2\x9c\x8f"=>"\xee\x92\xa1", "\xf0\x9f\x93\x8e"=>"\xee\x92\xa0", "\xf0\x9f\x92\xbc"=>"\xee\x97\x8e", "\xf0\x9f\x92\xbd"=>"\xee\x96\x82", "\xf0\x9f\x92\xbe"=>"\xee\x95\xa2", 
				"\xf0\x9f\x92\xbf"=>"\xee\x94\x8c", "\xf0\x9f\x93\x80"=>"\xee\x94\x8c", "\xe2\x9c\x82"=>"\xee\x94\x96", "\xf0\x9f\x93\x8d"=>"\xee\x95\xa0", "\xf0\x9f\x93\x83"=>"\xee\x95\xa1", 
				"\xf0\x9f\x93\x84"=>"\xee\x95\xa9", "\xf0\x9f\x93\x85"=>"\xee\x95\xa3", "\xf0\x9f\x93\x81"=>"\xee\x96\x8f", "\xf0\x9f\x93\x82"=>"\xee\x96\x90", "\xf0\x9f\x93\x93"=>"\xee\x95\xab", 
				"\xf0\x9f\x93\x96"=>"\xee\x92\x9f", "\xf0\x9f\x93\x94"=>"\xee\x92\x9d", "\xf0\x9f\x93\x95"=>"\xee\x95\xa8", "\xf0\x9f\x93\x97"=>"\xee\x95\xa5", "\xf0\x9f\x93\x98"=>"\xee\x95\xa6", 
				"\xf0\x9f\x93\x99"=>"\xee\x95\xa7", "\xf0\x9f\x93\x9a"=>"\xee\x95\xaf", "\xf0\x9f\x93\x9b"=>"\xee\x94\x9d", "\xf0\x9f\x93\x9c"=>"\xee\x95\x9f", "\xf0\x9f\x93\x8b"=>"\xee\x95\xa4", 
				"\xf0\x9f\x93\x86"=>"\xee\x95\xaa", "\xf0\x9f\x93\x8a"=>"\xee\x95\xb4", "\xf0\x9f\x93\x88"=>"\xee\x95\xb5", "\xf0\x9f\x93\x89"=>"\xee\x95\xb6", "\xf0\x9f\x93\x87"=>"\xee\x95\xac", 
				"\xf0\x9f\x93\x8c"=>"\xee\x95\xad", "\xf0\x9f\x93\x92"=>"\xee\x95\xae", "\xf0\x9f\x93\x8f"=>"\xee\x95\xb0", "\xf0\x9f\x93\x90"=>"\xee\x92\xa2", "\xf0\x9f\x93\x91"=>"\xee\xac\x8b", 
				"\xf0\x9f\x8e\xbd"=>"\xe3\x80\x93", "\xe2\x9a\xbe"=>"\xee\x92\xba", "\xe2\x9b\xb3"=>"\xee\x96\x99", "\xf0\x9f\x8e\xbe"=>"\xee\x92\xb7", "\xe2\x9a\xbd"=>"\xee\x92\xb6", 
				"\xf0\x9f\x8e\xbf"=>"\xee\xaa\xac", "\xf0\x9f\x8f\x80"=>"\xee\x96\x9a", "\xf0\x9f\x8f\x81"=>"\xee\x92\xb9", "\xf0\x9f\x8f\x82"=>"\xee\x92\xb8", "\xf0\x9f\x8f\x83"=>"\xee\x91\xab", 
				"\xf0\x9f\x8f\x84"=>"\xee\xad\x81", "\xf0\x9f\x8f\x86"=>"\xee\x97\x93", "\xf0\x9f\x8f\x88"=>"\xee\x92\xbb", "\xf0\x9f\x8f\x8a"=>"\xee\xab\x9e", "\xf0\x9f\x9a\x83"=>"\xee\x92\xb5", 
				"\xf0\x9f\x9a\x87"=>"\xee\x96\xbc", "\xe2\x93\x82"=>"\xee\x96\xbc", "\xf0\x9f\x9a\x84"=>"\xee\x92\xb0", "\xf0\x9f\x9a\x85"=>"\xee\x92\xb0", "\xf0\x9f\x9a\x97"=>"\xee\x92\xb1", 
				"\xf0\x9f\x9a\x99"=>"\xee\x92\xb1", "\xf0\x9f\x9a\x8c"=>"\xee\x92\xaf", "\xf0\x9f\x9a\x8f"=>"\xee\x92\xa7", "\xf0\x9f\x9a\xa2"=>"\xee\xaa\x82", "\xe2\x9c\x88"=>"\xee\x92\xb3", 
				"\xe2\x9b\xb5"=>"\xee\x92\xb4", "\xf0\x9f\x9a\x89"=>"\xee\xad\xad", "\xf0\x9f\x9a\x80"=>"\xee\x97\x88", "\xf0\x9f\x9a\xa4"=>"\xee\x92\xb4", "\xf0\x9f\x9a\x95"=>"\xee\x92\xb1", 
				"\xf0\x9f\x9a\x9a"=>"\xee\x92\xb2", "\xf0\x9f\x9a\x92"=>"\xee\xab\x9f", "\xf0\x9f\x9a\x91"=>"\xee\xab\xa0", "\xf0\x9f\x9a\x93"=>"\xee\xab\xa1", "\xe2\x9b\xbd"=>"\xee\x95\xb1", 
				"\xf0\x9f\x85\xbf"=>"\xee\x92\xa6", "\xf0\x9f\x9a\xa5"=>"\xee\x91\xaa", "\xf0\x9f\x9a\xa7"=>"\xee\x97\x97", "\xf0\x9f\x9a\xa8"=>"\xee\xad\xb3", "\xe2\x99\xa8"=>"\xee\x92\xbc", 
				"\xe2\x9b\xba"=>"\xee\x97\x90", "\xf0\x9f\x8e\xa0"=>"\xe3\x80\x93", "\xf0\x9f\x8e\xa1"=>"\xee\x91\xad", "\xf0\x9f\x8e\xa2"=>"\xee\xab\xa2", "\xf0\x9f\x8e\xa3"=>"\xee\xad\x82", 
				"\xf0\x9f\x8e\xa4"=>"\xee\x94\x83", "\xf0\x9f\x8e\xa5"=>"\xee\x94\x97", "\xf0\x9f\x8e\xa6"=>"\xee\x94\x97", "\xf0\x9f\x8e\xa7"=>"\xee\x94\x88", "\xf0\x9f\x8e\xa8"=>"\xee\x96\x9c", 
				"\xf0\x9f\x8e\xa9"=>"\xee\xab\xb5", "\xf0\x9f\x8e\xaa"=>"\xee\x96\x9e", "\xf0\x9f\x8e\xab"=>"\xee\x92\x9e", "\xf0\x9f\x8e\xac"=>"\xee\x92\xbe", "\xf0\x9f\x8e\xad"=>"\xee\x96\x9d", 
				"\xf0\x9f\x8e\xae"=>"\xee\x93\x86", "\xf0\x9f\x80\x84"=>"\xee\x97\x91", "\xf0\x9f\x8e\xaf"=>"\xee\x93\x85", "\xf0\x9f\x8e\xb0"=>"\xee\x91\xae", "\xf0\x9f\x8e\xb1"=>"\xee\xab\x9d", 
				"\xf0\x9f\x8e\xb2"=>"\xee\x93\x88", "\xf0\x9f\x8e\xb3"=>"\xee\xad\x83", "\xf0\x9f\x8e\xb4"=>"\xee\xad\xae", "\xf0\x9f\x83\x8f"=>"\xee\xad\xaf", "\xf0\x9f\x8e\xb5"=>"\xee\x96\xbe", 
				"\xf0\x9f\x8e\xb6"=>"\xee\x94\x85", "\xf0\x9f\x8e\xb7"=>"[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]", "\xf0\x9f\x8e\xb8"=>"\xee\x94\x86", "\xf0\x9f\x8e\xb9"=>"\xee\xad\x80", "\xf0\x9f\x8e\xba"=>"\xee\xab\x9c", 
				"\xf0\x9f\x8e\xbb"=>"\xee\x94\x87", "\xf0\x9f\x8e\xbc"=>"\xee\xab\x8c", "\xe3\x80\xbd"=>"[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x93\xb7"=>"\xee\x94\x95", "\xf0\x9f\x93\xb9"=>"\xee\x95\xbe", 
				"\xf0\x9f\x93\xba"=>"\xee\x94\x82", "\xf0\x9f\x93\xbb"=>"\xee\x96\xb9", "\xf0\x9f\x93\xbc"=>"\xee\x96\x80", "\xf0\x9f\x92\x8b"=>"\xee\x93\xab", "\xf0\x9f\x92\x8c"=>"\xee\xad\xb8", 
				"\xf0\x9f\x92\x8d"=>"\xee\x94\x94", "\xf0\x9f\x92\x8e"=>"\xee\x94\x94", "\xf0\x9f\x92\x8f"=>"\xee\x97\x8a", "\xf0\x9f\x92\x90"=>"\xee\xaa\x95", "\xf0\x9f\x92\x91"=>"\xee\xab\x9a", 
				"\xf0\x9f\x92\x92"=>"\xee\x96\xbb", "\xf0\x9f\x94\x9e"=>"\xee\xaa\x83", "\xc2\xa9"=>"\xee\x95\x98", "\xc2\xae"=>"\xee\x95\x99", "\xe2\x84\xa2"=>"\xee\x95\x8e", 
				"\xe2\x84\xb9"=>"\xee\x94\xb3", "#\xe2\x83\xa3"=>"\xee\xae\x84", "1\xe2\x83\xa3"=>"\xee\x94\xa2", "2\xe2\x83\xa3"=>"\xee\x94\xa3", "3\xe2\x83\xa3"=>"\xee\x94\xa4", 
				"4\xe2\x83\xa3"=>"\xee\x94\xa5", "5\xe2\x83\xa3"=>"\xee\x94\xa6", "6\xe2\x83\xa3"=>"\xee\x94\xa7", "7\xe2\x83\xa3"=>"\xee\x94\xa8", "8\xe2\x83\xa3"=>"\xee\x94\xa9", 
				"9\xe2\x83\xa3"=>"\xee\x94\xaa", "0\xe2\x83\xa3"=>"\xee\x96\xac", "\xf0\x9f\x94\x9f"=>"\xee\x94\xab", "\xf0\x9f\x93\xb6"=>"\xee\xaa\x84", "\xf0\x9f\x93\xb3"=>"\xee\xaa\x90", 
				"\xf0\x9f\x93\xb4"=>"\xee\xaa\x91", "\xf0\x9f\x8d\x94"=>"\xee\x93\x96", "\xf0\x9f\x8d\x99"=>"\xee\x93\x95", "\xf0\x9f\x8d\xb0"=>"\xee\x93\x90", "\xf0\x9f\x8d\x9c"=>"\xee\x96\xb4", 
				"\xf0\x9f\x8d\x9e"=>"\xee\xaa\xaf", "\xf0\x9f\x8d\xb3"=>"\xee\x93\x91", "\xf0\x9f\x8d\xa6"=>"\xee\xaa\xb0", "\xf0\x9f\x8d\x9f"=>"\xee\xaa\xb1", "\xf0\x9f\x8d\xa1"=>"\xee\xaa\xb2", 
				"\xf0\x9f\x8d\x98"=>"\xee\xaa\xb3", "\xf0\x9f\x8d\x9a"=>"\xee\xaa\xb4", "\xf0\x9f\x8d\x9d"=>"\xee\xaa\xb5", "\xf0\x9f\x8d\x9b"=>"\xee\xaa\xb6", "\xf0\x9f\x8d\xa2"=>"\xee\xaa\xb7", 
				"\xf0\x9f\x8d\xa3"=>"\xee\xaa\xb8", "\xf0\x9f\x8d\xb1"=>"\xee\xaa\xbd", "\xf0\x9f\x8d\xb2"=>"\xee\xaa\xbe", "\xf0\x9f\x8d\xa7"=>"\xee\xab\xaa", "\xf0\x9f\x8d\x96"=>"\xee\x93\x84", 
				"\xf0\x9f\x8d\xa5"=>"\xee\x93\xad", "\xf0\x9f\x8d\xa0"=>"\xee\xac\xba", "\xf0\x9f\x8d\x95"=>"\xee\xac\xbb", "\xf0\x9f\x8d\x97"=>"\xee\xac\xbc", "\xf0\x9f\x8d\xa8"=>"\xee\xad\x8a", 
				"\xf0\x9f\x8d\xa9"=>"\xee\xad\x8b", "\xf0\x9f\x8d\xaa"=>"\xee\xad\x8c", "\xf0\x9f\x8d\xab"=>"\xee\xad\x8d", "\xf0\x9f\x8d\xac"=>"\xee\xad\x8e", "\xf0\x9f\x8d\xad"=>"\xee\xad\x8f", 
				"\xf0\x9f\x8d\xae"=>"\xee\xad\x96", "\xf0\x9f\x8d\xaf"=>"\xee\xad\x99", "\xf0\x9f\x8d\xa4"=>"\xee\xad\xb0", "\xf0\x9f\x8d\xb4"=>"\xee\x92\xac", "\xe2\x98\x95"=>"\xee\x96\x97", 
				"\xf0\x9f\x8d\xb8"=>"\xee\x93\x82", "\xf0\x9f\x8d\xba"=>"\xee\x93\x83", "\xf0\x9f\x8d\xb5"=>"\xee\xaa\xae", "\xf0\x9f\x8d\xb6"=>"\xee\xaa\x97", "\xf0\x9f\x8d\xb7"=>"\xee\x93\x81", 
				"\xf0\x9f\x8d\xbb"=>"\xee\xaa\x98", "\xf0\x9f\x8d\xb9"=>"\xee\xac\xbe", "\xe2\x86\x97"=>"\xee\x95\x95", "\xe2\x86\x98"=>"\xee\x95\x8d", "\xe2\x86\x96"=>"\xee\x95\x8c", 
				"\xe2\x86\x99"=>"\xee\x95\x96", "\xe2\xa4\xb4"=>"\xee\xac\xad", "\xe2\xa4\xb5"=>"\xee\xac\xae", "\xe2\x86\x94"=>"\xee\xad\xba", "\xe2\x86\x95"=>"\xee\xad\xbb", 
				"\xe2\xac\x86"=>"\xee\x94\xbf", "\xe2\xac\x87"=>"\xee\x95\x80", "\xe2\x9e\xa1"=>"\xee\x95\x92", "\xe2\xac\x85"=>"\xee\x95\x93", "\xe2\x96\xb6"=>"\xee\x94\xae", 
				"\xe2\x97\x80"=>"\xee\x94\xad", "\xe2\x8f\xa9"=>"\xee\x94\xb0", "\xe2\x8f\xaa"=>"\xee\x94\xaf", "\xe2\x8f\xab"=>"\xee\x95\x85", "\xe2\x8f\xac"=>"\xee\x95\x84", 
				"\xf0\x9f\x94\xba"=>"\xee\x95\x9a", "\xf0\x9f\x94\xbb"=>"\xee\x95\x9b", "\xf0\x9f\x94\xbc"=>"\xee\x95\x83", "\xf0\x9f\x94\xbd"=>"\xee\x95\x82", "\xe2\xad\x95"=>"\xee\xaa\xad", 
				"\xe2\x9d\x8c"=>"\xee\x95\x90", "\xe2\x9d\x8e"=>"\xee\x95\x91", "\xe2\x9d\x97"=>"\xee\x92\x82", "\xe2\x81\x89"=>"\xee\xac\xaf", "\xe2\x80\xbc"=>"\xee\xac\xb0", 
				"\xe2\x9d\x93"=>"\xee\x92\x83", "\xe2\x9d\x94"=>"\xee\x92\x83", "\xe2\x9d\x95"=>"\xee\x92\x82", "\xe3\x80\xb0"=>"\xe3\x80\x93", "\xe2\x9e\xb0"=>"\xee\xac\xb1", 
				"\xe2\x9e\xbf"=>"[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]", "\xe2\x9d\xa4"=>"\xee\x96\x95", "\xf0\x9f\x92\x93"=>"\xee\xad\xb5", "\xf0\x9f\x92\x94"=>"\xee\x91\xb7", "\xf0\x9f\x92\x95"=>"\xee\x91\xb8", 
				"\xf0\x9f\x92\x96"=>"\xee\xaa\xa6", "\xf0\x9f\x92\x97"=>"\xee\xad\xb5", "\xf0\x9f\x92\x98"=>"\xee\x93\xaa", "\xf0\x9f\x92\x99"=>"\xee\xaa\xa7", "\xf0\x9f\x92\x9a"=>"\xee\xaa\xa8", 
				"\xf0\x9f\x92\x9b"=>"\xee\xaa\xa9", "\xf0\x9f\x92\x9c"=>"\xee\xaa\xaa", "\xf0\x9f\x92\x9d"=>"\xee\xad\x94", "\xf0\x9f\x92\x9e"=>"\xee\x96\xaf", "\xf0\x9f\x92\x9f"=>"\xee\x96\x95", 
				"\xe2\x99\xa5"=>"\xee\xaa\xa5", "\xe2\x99\xa0"=>"\xee\x96\xa1", "\xe2\x99\xa6"=>"\xee\x96\xa2", "\xe2\x99\xa3"=>"\xee\x96\xa3", "\xf0\x9f\x9a\xac"=>"\xee\x91\xbd", 
				"\xf0\x9f\x9a\xad"=>"\xee\x91\xbe", "\xe2\x99\xbf"=>"\xee\x91\xbf", "\xf0\x9f\x9a\xa9"=>"\xee\xac\xac", "\xe2\x9a\xa0"=>"\xee\x92\x81", "\xe2\x9b\x94"=>"\xee\x92\x84", 
				"\xe2\x99\xbb"=>"\xee\xad\xb9", "\xf0\x9f\x9a\xb2"=>"\xee\x92\xae", "\xf0\x9f\x9a\xb6"=>"\xee\xad\xb2", "\xf0\x9f\x9a\xb9"=>"[\xe2\x99\x82]", "\xf0\x9f\x9a\xba"=>"[\xe2\x99\x80]", 
				"\xf0\x9f\x9b\x80"=>"\xee\x97\x98", "\xf0\x9f\x9a\xbb"=>"\xee\x92\xa5", "\xf0\x9f\x9a\xbd"=>"\xee\x92\xa5", "\xf0\x9f\x9a\xbe"=>"\xee\x92\xa5", "\xf0\x9f\x9a\xbc"=>"\xee\xac\x98", 
				"\xf0\x9f\x9a\xaa"=>"[\xe3\x83\x89\xe3\x82\xa2]", "\xf0\x9f\x9a\xab"=>"\xee\x95\x81", "\xe2\x9c\x94"=>"\xee\x95\x97", "\xf0\x9f\x86\x91"=>"\xee\x96\xab", "\xf0\x9f\x86\x92"=>"\xee\xaa\x85", 
				"\xf0\x9f\x86\x93"=>"\xee\x95\xb8", "\xf0\x9f\x86\x94"=>"\xee\xaa\x88", "\xf0\x9f\x86\x95"=>"\xee\x96\xb5", "\xf0\x9f\x86\x96"=>"[NG]", "\xf0\x9f\x86\x97"=>"\xee\x96\xad", 
				"\xf0\x9f\x86\x98"=>"\xee\x93\xa8", "\xf0\x9f\x86\x99"=>"\xee\x94\x8f", "\xf0\x9f\x86\x9a"=>"\xee\x97\x92", "\xf0\x9f\x88\x81"=>"[\xe3\x82\xb3\xe3\x82\xb3]", "\xf0\x9f\x88\x82"=>"\xee\xaa\x87", 
				"\xf0\x9f\x88\xb2"=>"[\xe7\xa6\x81]", "\xf0\x9f\x88\xb3"=>"\xee\xaa\x8a", "\xf0\x9f\x88\xb4"=>"[\xe5\x90\x88]", "\xf0\x9f\x88\xb5"=>"\xee\xaa\x89", "\xf0\x9f\x88\xb6"=>"[\xe6\x9c\x89]", 
				"\xf0\x9f\x88\x9a"=>"[\xe7\x84\xa1]", "\xf0\x9f\x88\xb7"=>"[\xe6\x9c\x88]", "\xf0\x9f\x88\xb8"=>"[\xe7\x94\xb3]", "\xf0\x9f\x88\xb9"=>"\xee\xaa\x86", "\xf0\x9f\x88\xaf"=>"\xee\xaa\x8b", 
				"\xf0\x9f\x88\xba"=>"\xee\xaa\x8c", "\xe3\x8a\x99"=>"\xee\x93\xb1", "\xe3\x8a\x97"=>"\xee\xaa\x99", "\xf0\x9f\x89\x90"=>"\xee\x93\xb7", "\xf0\x9f\x89\x91"=>"\xee\xac\x81", 
				"\xe2\x9e\x95"=>"\xee\x94\xbc", "\xe2\x9e\x96"=>"\xee\x94\xbd", "\xe2\x9c\x96"=>"\xee\x95\x8f", "\xe2\x9e\x97"=>"\xee\x95\x94", "\xf0\x9f\x92\xa0"=>"\xe3\x80\x93", 
				"\xf0\x9f\x92\xa1"=>"\xee\x91\xb6", "\xf0\x9f\x92\xa2"=>"\xee\x93\xa5", "\xf0\x9f\x92\xa3"=>"\xee\x91\xba", "\xf0\x9f\x92\xa4"=>"\xee\x91\xb5", "\xf0\x9f\x92\xa5"=>"\xee\x96\xb0", 
				"\xf0\x9f\x92\xa6"=>"\xee\x96\xb1", "\xf0\x9f\x92\xa7"=>"\xee\x93\xa6", "\xf0\x9f\x92\xa8"=>"\xee\x93\xb4", "\xf0\x9f\x92\xa9"=>"\xee\x93\xb5", "\xf0\x9f\x92\xaa"=>"\xee\x93\xa9", 
				"\xf0\x9f\x92\xab"=>"\xee\xad\x9c", "\xf0\x9f\x92\xac"=>"\xee\x93\xbd", "\xe2\x9c\xa8"=>"\xee\xaa\xab", "\xe2\x9c\xb4"=>"\xee\x91\xb9", "\xe2\x9c\xb3"=>"\xee\x94\xbe", 
				"\xe2\x9a\xaa"=>"\xee\x94\xba", "\xe2\x9a\xab"=>"\xee\x94\xbb", "\xf0\x9f\x94\xb4"=>"\xee\x95\x8a", "\xf0\x9f\x94\xb5"=>"\xee\x95\x8b", "\xf0\x9f\x94\xb2"=>"\xee\x95\x8b", 
				"\xf0\x9f\x94\xb3"=>"\xee\x95\x8b", "\xe2\xad\x90"=>"\xee\x92\x8b", "\xe2\xac\x9c"=>"\xee\x95\x88", "\xe2\xac\x9b"=>"\xee\x95\x89", "\xe2\x96\xab"=>"\xee\x94\xb1", 
				"\xe2\x96\xaa"=>"\xee\x94\xb2", "\xe2\x97\xbd"=>"\xee\x94\xb4", "\xe2\x97\xbe"=>"\xee\x94\xb5", "\xe2\x97\xbb"=>"\xee\x94\xb8", "\xe2\x97\xbc"=>"\xee\x94\xb9", 
				"\xf0\x9f\x94\xb6"=>"\xee\x95\x86", "\xf0\x9f\x94\xb7"=>"\xee\x95\x87", "\xf0\x9f\x94\xb8"=>"\xee\x94\xb6", "\xf0\x9f\x94\xb9"=>"\xee\x94\xb7", "\xe2\x9d\x87"=>"\xee\x91\xac", 
				"\xf0\x9f\x92\xae"=>"\xee\x93\xb0", "\xf0\x9f\x92\xaf"=>"\xee\x93\xb2", "\xe2\x86\xa9"=>"\xee\x95\x9d", "\xe2\x86\xaa"=>"\xee\x95\x9c", "\xf0\x9f\x94\x83"=>"\xee\xac\x8d", 
				"\xf0\x9f\x94\x8a"=>"\xee\x94\x91", "\xf0\x9f\x94\x8b"=>"\xee\x96\x84", "\xf0\x9f\x94\x8c"=>"\xee\x96\x89", "\xf0\x9f\x94\x8d"=>"\xee\x94\x98", "\xf0\x9f\x94\x8e"=>"\xee\xac\x85", 
				"\xf0\x9f\x94\x92"=>"\xee\x94\x9c", "\xf0\x9f\x94\x93"=>"\xee\x94\x9c", "\xf0\x9f\x94\x8f"=>"\xee\xac\x8c", "\xf0\x9f\x94\x90"=>"\xee\xab\xbc", "\xf0\x9f\x94\x91"=>"\xee\x94\x99", 
				"\xf0\x9f\x94\x94"=>"\xee\x94\x92", "\xe2\x98\x91"=>"\xee\xac\x82", "\xf0\x9f\x94\x98"=>"\xee\xac\x84", "\xf0\x9f\x94\x96"=>"\xee\xac\x87", "\xf0\x9f\x94\x97"=>"\xee\x96\x8a", 
				"\xf0\x9f\x94\x99"=>"\xee\xac\x86", "\xf0\x9f\x94\x9a"=>"[end]", "\xf0\x9f\x94\x9b"=>"[ON]", "\xf0\x9f\x94\x9c"=>"[SOON]", "\xf0\x9f\x94\x9d"=>"[TOP]", 
				"\xe2\x9c\x85"=>"\xee\x95\x9e", "\xe2\x9c\x8a"=>"\xee\xae\x83", "\xe2\x9c\x8b"=>"\xee\x96\xa7", "\xe2\x9c\x8c"=>"\xee\x96\xa6", "\xf0\x9f\x91\x8a"=>"\xee\x93\xb3", 
				"\xf0\x9f\x91\x8d"=>"\xee\x93\xb9", "\xe2\x98\x9d"=>"\xee\x93\xb6", "\xf0\x9f\x91\x86"=>"\xee\xaa\x8d", "\xf0\x9f\x91\x87"=>"\xee\xaa\x8e", "\xf0\x9f\x91\x88"=>"\xee\x93\xbf", 
				"\xf0\x9f\x91\x89"=>"\xee\x94\x80", "\xf0\x9f\x91\x8b"=>"\xee\xab\x96", "\xf0\x9f\x91\x8f"=>"\xee\xab\x93", "\xf0\x9f\x91\x8c"=>"\xee\xab\x94", "\xf0\x9f\x91\x8e"=>"\xee\xab\x95", 
				"\xf0\x9f\x91\x90"=>"\xee\xab\x96", 
			),
			'unified_to_softbank' => array(
				"\xe2\x98\x80"=>"\xee\x81\x8a", "\xe2\x98\x81"=>"\xee\x81\x89", "\xe2\x98\x94"=>"\xee\x81\x8b", "\xe2\x9b\x84"=>"\xee\x81\x88", 
				"\xe2\x9a\xa1"=>"\xee\x84\xbd", "\xf0\x9f\x8c\x80"=>"\xee\x91\x83", "\xf0\x9f\x8c\x81"=>"[\xe9\x9c\xa7]", "\xf0\x9f\x8c\x82"=>"\xee\x90\xbc", "\xf0\x9f\x8c\x83"=>"\xee\x91\x8b", 
				"\xf0\x9f\x8c\x84"=>"\xee\x81\x8d", "\xf0\x9f\x8c\x85"=>"\xee\x91\x89", "\xf0\x9f\x8c\x86"=>"\xee\x85\x86", "\xf0\x9f\x8c\x87"=>"\xee\x91\x8a", "\xf0\x9f\x8c\x88"=>"\xee\x91\x8c", 
				"\xe2\x9d\x84"=>"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]", "\xe2\x9b\x85"=>"\xee\x81\x8a\xee\x81\x89", "\xf0\x9f\x8c\x89"=>"\xee\x91\x8b", "\xf0\x9f\x8c\x8a"=>"\xee\x90\xbe", "\xf0\x9f\x8c\x8b"=>"[\xe7\x81\xab\xe5\xb1\xb1]", 
				"\xf0\x9f\x8c\x8c"=>"\xee\x91\x8b", "\xf0\x9f\x8c\x8f"=>"[\xe5\x9c\xb0\xe7\x90\x83]", "\xf0\x9f\x8c\x91"=>"\xe2\x97\x8f", "\xf0\x9f\x8c\x94"=>"\xee\x81\x8c", "\xf0\x9f\x8c\x93"=>"\xee\x81\x8c", 
				"\xf0\x9f\x8c\x99"=>"\xee\x81\x8c", "\xf0\x9f\x8c\x95"=>"\xe2\x97\x8b", "\xf0\x9f\x8c\x9b"=>"\xee\x81\x8c", "\xf0\x9f\x8c\x9f"=>"\xee\x8c\xb5", "\xf0\x9f\x8c\xa0"=>"\xe2\x98\x86\xe5\xbd\xa1", 
				"\xf0\x9f\x95\x90"=>"\xee\x80\xa4", "\xf0\x9f\x95\x91"=>"\xee\x80\xa5", "\xf0\x9f\x95\x92"=>"\xee\x80\xa6", "\xf0\x9f\x95\x93"=>"\xee\x80\xa7", "\xf0\x9f\x95\x94"=>"\xee\x80\xa8", 
				"\xf0\x9f\x95\x95"=>"\xee\x80\xa9", "\xf0\x9f\x95\x96"=>"\xee\x80\xaa", "\xf0\x9f\x95\x97"=>"\xee\x80\xab", "\xf0\x9f\x95\x98"=>"\xee\x80\xac", "\xf0\x9f\x95\x99"=>"\xee\x80\xad", 
				"\xf0\x9f\x95\x9a"=>"\xee\x80\xae", "\xf0\x9f\x95\x9b"=>"\xee\x80\xaf", "\xe2\x8c\x9a"=>"[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]", "\xe2\x8c\x9b"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "\xe2\x8f\xb0"=>"\xee\x80\xad", 
				"\xe2\x8f\xb3"=>"[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]", "\xe2\x99\x88"=>"\xee\x88\xbf", "\xe2\x99\x89"=>"\xee\x89\x80", "\xe2\x99\x8a"=>"\xee\x89\x81", "\xe2\x99\x8b"=>"\xee\x89\x82", 
				"\xe2\x99\x8c"=>"\xee\x89\x83", "\xe2\x99\x8d"=>"\xee\x89\x84", "\xe2\x99\x8e"=>"\xee\x89\x85", "\xe2\x99\x8f"=>"\xee\x89\x86", "\xe2\x99\x90"=>"\xee\x89\x87", 
				"\xe2\x99\x91"=>"\xee\x89\x88", "\xe2\x99\x92"=>"\xee\x89\x89", "\xe2\x99\x93"=>"\xee\x89\x8a", "\xe2\x9b\x8e"=>"\xee\x89\x8b", "\xf0\x9f\x8d\x80"=>"\xee\x84\x90", 
				"\xf0\x9f\x8c\xb7"=>"\xee\x8c\x84", "\xf0\x9f\x8c\xb1"=>"\xee\x84\x90", "\xf0\x9f\x8d\x81"=>"\xee\x84\x98", "\xf0\x9f\x8c\xb8"=>"\xee\x80\xb0", "\xf0\x9f\x8c\xb9"=>"\xee\x80\xb2", 
				"\xf0\x9f\x8d\x82"=>"\xee\x84\x99", "\xf0\x9f\x8d\x83"=>"\xee\x91\x87", "\xf0\x9f\x8c\xba"=>"\xee\x8c\x83", "\xf0\x9f\x8c\xbb"=>"\xee\x8c\x85", "\xf0\x9f\x8c\xb4"=>"\xee\x8c\x87", 
				"\xf0\x9f\x8c\xb5"=>"\xee\x8c\x88", "\xf0\x9f\x8c\xbe"=>"\xee\x91\x84", "\xf0\x9f\x8c\xbd"=>"[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]", "\xf0\x9f\x8d\x84"=>"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]", "\xf0\x9f\x8c\xb0"=>"[\xe6\xa0\x97]", 
				"\xf0\x9f\x8c\xbc"=>"\xee\x8c\x85", "\xf0\x9f\x8c\xbf"=>"\xee\x84\x90", "\xf0\x9f\x8d\x92"=>"[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]", "\xf0\x9f\x8d\x8c"=>"[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]", "\xf0\x9f\x8d\x8e"=>"\xee\x8d\x85", 
				"\xf0\x9f\x8d\x8a"=>"\xee\x8d\x86", "\xf0\x9f\x8d\x93"=>"\xee\x8d\x87", "\xf0\x9f\x8d\x89"=>"\xee\x8d\x88", "\xf0\x9f\x8d\x85"=>"\xee\x8d\x89", "\xf0\x9f\x8d\x86"=>"\xee\x8d\x8a", 
				"\xf0\x9f\x8d\x88"=>"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\x8d"=>"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]", "\xf0\x9f\x8d\x87"=>"[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]", "\xf0\x9f\x8d\x91"=>"[\xe3\x83\xa2\xe3\x83\xa2]", "\xf0\x9f\x8d\x8f"=>"\xee\x8d\x85", 
				"\xf0\x9f\x91\x80"=>"\xee\x90\x99", "\xf0\x9f\x91\x82"=>"\xee\x90\x9b", "\xf0\x9f\x91\x83"=>"\xee\x90\x9a", "\xf0\x9f\x91\x84"=>"\xee\x90\x9c", "\xf0\x9f\x91\x85"=>"\xee\x90\x89", 
				"\xf0\x9f\x92\x84"=>"\xee\x8c\x9c", "\xf0\x9f\x92\x85"=>"\xee\x8c\x9d", "\xf0\x9f\x92\x86"=>"\xee\x8c\x9e", "\xf0\x9f\x92\x87"=>"\xee\x8c\x9f", "\xf0\x9f\x92\x88"=>"\xee\x8c\xa0", 
				"\xf0\x9f\x91\xa4"=>"\xe3\x80\x93", "\xf0\x9f\x91\xa6"=>"\xee\x80\x81", "\xf0\x9f\x91\xa7"=>"\xee\x80\x82", "\xf0\x9f\x91\xa8"=>"\xee\x80\x84", "\xf0\x9f\x91\xa9"=>"\xee\x80\x85", 
				"\xf0\x9f\x91\xaa"=>"[\xe5\xae\xb6\xe6\x97\x8f]", "\xf0\x9f\x91\xab"=>"\xee\x90\xa8", "\xf0\x9f\x91\xae"=>"\xee\x85\x92", "\xf0\x9f\x91\xaf"=>"\xee\x90\xa9", "\xf0\x9f\x91\xb0"=>"[\xe8\x8a\xb1\xe5\xab\x81]", 
				"\xf0\x9f\x91\xb1"=>"\xee\x94\x95", "\xf0\x9f\x91\xb2"=>"\xee\x94\x96", "\xf0\x9f\x91\xb3"=>"\xee\x94\x97", "\xf0\x9f\x91\xb4"=>"\xee\x94\x98", "\xf0\x9f\x91\xb5"=>"\xee\x94\x99", 
				"\xf0\x9f\x91\xb6"=>"\xee\x94\x9a", "\xf0\x9f\x91\xb7"=>"\xee\x94\x9b", "\xf0\x9f\x91\xb8"=>"\xee\x94\x9c", "\xf0\x9f\x91\xb9"=>"[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]", "\xf0\x9f\x91\xba"=>"[\xe5\xa4\xa9\xe7\x8b\x97]", 
				"\xf0\x9f\x91\xbb"=>"\xee\x84\x9b", "\xf0\x9f\x91\xbc"=>"\xee\x81\x8e", "\xf0\x9f\x91\xbd"=>"\xee\x84\x8c", "\xf0\x9f\x91\xbe"=>"\xee\x84\xab", "\xf0\x9f\x91\xbf"=>"\xee\x84\x9a", 
				"\xf0\x9f\x92\x80"=>"\xee\x84\x9c", "\xf0\x9f\x92\x81"=>"\xee\x89\x93", "\xf0\x9f\x92\x82"=>"\xee\x94\x9e", "\xf0\x9f\x92\x83"=>"\xee\x94\x9f", "\xf0\x9f\x90\x8c"=>"[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]", 
				"\xf0\x9f\x90\x8d"=>"\xee\x94\xad", "\xf0\x9f\x90\x8e"=>"\xee\x84\xb4", "\xf0\x9f\x90\x94"=>"\xee\x94\xae", "\xf0\x9f\x90\x97"=>"\xee\x94\xaf", "\xf0\x9f\x90\xab"=>"\xee\x94\xb0", 
				"\xf0\x9f\x90\x98"=>"\xee\x94\xa6", "\xf0\x9f\x90\xa8"=>"\xee\x94\xa7", "\xf0\x9f\x90\x92"=>"\xee\x94\xa8", "\xf0\x9f\x90\x91"=>"\xee\x94\xa9", "\xf0\x9f\x90\x99"=>"\xee\x84\x8a", 
				"\xf0\x9f\x90\x9a"=>"\xee\x91\x81", "\xf0\x9f\x90\x9b"=>"\xee\x94\xa5", "\xf0\x9f\x90\x9c"=>"[\xe3\x82\xa2\xe3\x83\xaa]", "\xf0\x9f\x90\x9d"=>"[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]", "\xf0\x9f\x90\x9e"=>"[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]", 
				"\xf0\x9f\x90\xa0"=>"\xee\x94\xa2", "\xf0\x9f\x90\xa1"=>"\xee\x80\x99", "\xf0\x9f\x90\xa2"=>"[\xe3\x82\xab\xe3\x83\xa1]", "\xf0\x9f\x90\xa4"=>"\xee\x94\xa3", "\xf0\x9f\x90\xa5"=>"\xee\x94\xa3", 
				"\xf0\x9f\x90\xa6"=>"\xee\x94\xa1", "\xf0\x9f\x90\xa3"=>"\xee\x94\xa3", "\xf0\x9f\x90\xa7"=>"\xee\x81\x95", "\xf0\x9f\x90\xa9"=>"\xee\x81\x92", "\xf0\x9f\x90\x9f"=>"\xee\x80\x99", 
				"\xf0\x9f\x90\xac"=>"\xee\x94\xa0", "\xf0\x9f\x90\xad"=>"\xee\x81\x93", "\xf0\x9f\x90\xaf"=>"\xee\x81\x90", "\xf0\x9f\x90\xb1"=>"\xee\x81\x8f", "\xf0\x9f\x90\xb3"=>"\xee\x81\x94", 
				"\xf0\x9f\x90\xb4"=>"\xee\x80\x9a", "\xf0\x9f\x90\xb5"=>"\xee\x84\x89", "\xf0\x9f\x90\xb6"=>"\xee\x81\x92", "\xf0\x9f\x90\xb7"=>"\xee\x84\x8b", "\xf0\x9f\x90\xbb"=>"\xee\x81\x91", 
				"\xf0\x9f\x90\xb9"=>"\xee\x94\xa4", "\xf0\x9f\x90\xba"=>"\xee\x94\xaa", "\xf0\x9f\x90\xae"=>"\xee\x94\xab", "\xf0\x9f\x90\xb0"=>"\xee\x94\xac", "\xf0\x9f\x90\xb8"=>"\xee\x94\xb1", 
				"\xf0\x9f\x90\xbe"=>"\xee\x94\xb6", "\xf0\x9f\x90\xb2"=>"[\xe8\xbe\xb0]", "\xf0\x9f\x90\xbc"=>"[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]", "\xf0\x9f\x90\xbd"=>"\xee\x84\x8b", "\xf0\x9f\x98\xa0"=>"\xee\x81\x99", 
				"\xf0\x9f\x98\xa9"=>"\xee\x90\x83", "\xf0\x9f\x98\xb2"=>"\xee\x90\x90", "\xf0\x9f\x98\x9e"=>"\xee\x81\x98", "\xf0\x9f\x98\xb5"=>"\xee\x90\x86", "\xf0\x9f\x98\xb0"=>"\xee\x90\x8f", 
				"\xf0\x9f\x98\x92"=>"\xee\x90\x8e", "\xf0\x9f\x98\x8d"=>"\xee\x84\x86", "\xf0\x9f\x98\xa4"=>"\xee\x90\x84", "\xf0\x9f\x98\x9c"=>"\xee\x84\x85", "\xf0\x9f\x98\x9d"=>"\xee\x90\x89", 
				"\xf0\x9f\x98\x8b"=>"\xee\x81\x96", "\xf0\x9f\x98\x98"=>"\xee\x90\x98", "\xf0\x9f\x98\x9a"=>"\xee\x90\x97", "\xf0\x9f\x98\xb7"=>"\xee\x90\x8c", "\xf0\x9f\x98\xb3"=>"\xee\x90\x8d", 
				"\xf0\x9f\x98\x83"=>"\xee\x81\x97", "\xf0\x9f\x98\x85"=>"\xee\x90\x95\xee\x8c\xb1", "\xf0\x9f\x98\x86"=>"\xee\x90\x8a", "\xf0\x9f\x98\x81"=>"\xee\x90\x84", "\xf0\x9f\x98\x82"=>"\xee\x90\x92", 
				"\xf0\x9f\x98\x8a"=>"\xee\x81\x96", "\xe2\x98\xba"=>"\xee\x90\x94", "\xf0\x9f\x98\x84"=>"\xee\x90\x95", "\xf0\x9f\x98\xa2"=>"\xee\x90\x93", "\xf0\x9f\x98\xad"=>"\xee\x90\x91", 
				"\xf0\x9f\x98\xa8"=>"\xee\x90\x8b", "\xf0\x9f\x98\xa3"=>"\xee\x90\x86", "\xf0\x9f\x98\xa1"=>"\xee\x90\x96", "\xf0\x9f\x98\x8c"=>"\xee\x90\x8a", "\xf0\x9f\x98\x96"=>"\xee\x90\x87", 
				"\xf0\x9f\x98\x94"=>"\xee\x90\x83", "\xf0\x9f\x98\xb1"=>"\xee\x84\x87", "\xf0\x9f\x98\xaa"=>"\xee\x90\x88", "\xf0\x9f\x98\x8f"=>"\xee\x90\x82", "\xf0\x9f\x98\x93"=>"\xee\x84\x88", 
				"\xf0\x9f\x98\xa5"=>"\xee\x90\x81", "\xf0\x9f\x98\xab"=>"\xee\x90\x86", "\xf0\x9f\x98\x89"=>"\xee\x90\x85", "\xf0\x9f\x98\xba"=>"\xee\x81\x97", "\xf0\x9f\x98\xb8"=>"\xee\x90\x84", 
				"\xf0\x9f\x98\xb9"=>"\xee\x90\x92", "\xf0\x9f\x98\xbd"=>"\xee\x90\x98", "\xf0\x9f\x98\xbb"=>"\xee\x84\x86", "\xf0\x9f\x98\xbf"=>"\xee\x90\x93", "\xf0\x9f\x98\xbe"=>"\xee\x90\x96", 
				"\xf0\x9f\x98\xbc"=>"\xee\x90\x84", "\xf0\x9f\x99\x80"=>"\xee\x90\x83", "\xf0\x9f\x99\x85"=>"\xee\x90\xa3", "\xf0\x9f\x99\x86"=>"\xee\x90\xa4", "\xf0\x9f\x99\x87"=>"\xee\x90\xa6", 
				"\xf0\x9f\x99\x88"=>"(/_\xef\xbc\xbc)", "\xf0\x9f\x99\x8a"=>"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)", "\xf0\x9f\x99\x89"=>"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|", "\xf0\x9f\x99\x8b"=>"\xee\x80\x92", "\xf0\x9f\x99\x8c"=>"\xee\x90\xa7", 
				"\xf0\x9f\x99\x8d"=>"\xee\x90\x83", "\xf0\x9f\x99\x8e"=>"\xee\x90\x96", "\xf0\x9f\x99\x8f"=>"\xee\x90\x9d", "\xf0\x9f\x8f\xa0"=>"\xee\x80\xb6", "\xf0\x9f\x8f\xa1"=>"\xee\x80\xb6", 
				"\xf0\x9f\x8f\xa2"=>"\xee\x80\xb8", "\xf0\x9f\x8f\xa3"=>"\xee\x85\x93", "\xf0\x9f\x8f\xa5"=>"\xee\x85\x95", "\xf0\x9f\x8f\xa6"=>"\xee\x85\x8d", "\xf0\x9f\x8f\xa7"=>"\xee\x85\x94", 
				"\xf0\x9f\x8f\xa8"=>"\xee\x85\x98", "\xf0\x9f\x8f\xa9"=>"\xee\x94\x81", "\xf0\x9f\x8f\xaa"=>"\xee\x85\x96", "\xf0\x9f\x8f\xab"=>"\xee\x85\x97", "\xe2\x9b\xaa"=>"\xee\x80\xb7", 
				"\xe2\x9b\xb2"=>"\xee\x84\xa1", "\xf0\x9f\x8f\xac"=>"\xee\x94\x84", "\xf0\x9f\x8f\xaf"=>"\xee\x94\x85", "\xf0\x9f\x8f\xb0"=>"\xee\x94\x86", "\xf0\x9f\x8f\xad"=>"\xee\x94\x88", 
				"\xe2\x9a\x93"=>"\xee\x88\x82", "\xf0\x9f\x8f\xae"=>"\xee\x8c\x8b", "\xf0\x9f\x97\xbb"=>"\xee\x80\xbb", "\xf0\x9f\x97\xbc"=>"\xee\x94\x89", "\xf0\x9f\x97\xbd"=>"\xee\x94\x9d", 
				"\xf0\x9f\x97\xbe"=>"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]", "\xf0\x9f\x97\xbf"=>"[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]", "\xf0\x9f\x91\x9e"=>"\xee\x80\x87", "\xf0\x9f\x91\x9f"=>"\xee\x80\x87", "\xf0\x9f\x91\xa0"=>"\xee\x84\xbe", 
				"\xf0\x9f\x91\xa1"=>"\xee\x8c\x9a", "\xf0\x9f\x91\xa2"=>"\xee\x8c\x9b", "\xf0\x9f\x91\xa3"=>"\xee\x94\xb6", "\xf0\x9f\x91\x93"=>"[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]", "\xf0\x9f\x91\x95"=>"\xee\x80\x86", 
				"\xf0\x9f\x91\x96"=>"[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]", "\xf0\x9f\x91\x91"=>"\xee\x84\x8e", "\xf0\x9f\x91\x94"=>"\xee\x8c\x82", "\xf0\x9f\x91\x92"=>"\xee\x8c\x98", "\xf0\x9f\x91\x97"=>"\xee\x8c\x99", 
				"\xf0\x9f\x91\x98"=>"\xee\x8c\xa1", "\xf0\x9f\x91\x99"=>"\xee\x8c\xa2", "\xf0\x9f\x91\x9a"=>"\xee\x80\x86", "\xf0\x9f\x91\x9b"=>"[\xe8\xb2\xa1\xe5\xb8\x83]", "\xf0\x9f\x91\x9c"=>"\xee\x8c\xa3", 
				"\xf0\x9f\x91\x9d"=>"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]", "\xf0\x9f\x92\xb0"=>"\xee\x84\xaf", "\xf0\x9f\x92\xb1"=>"\xee\x85\x89", "\xf0\x9f\x92\xb9"=>"\xee\x85\x8a", "\xf0\x9f\x92\xb2"=>"\xee\x84\xaf", 
				"\xf0\x9f\x92\xb3"=>"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]", "\xf0\x9f\x92\xb4"=>"\xef\xbf\xa5", "\xf0\x9f\x92\xb5"=>"\xee\x84\xaf", "\xf0\x9f\x92\xb8"=>"[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"\xee\x94\x93", 
				"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"\xee\x94\x8e", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"\xee\x94\x91", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"\xee\x94\x8d", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"\xee\x94\x90", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"\xee\x94\x8f", 
				"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"\xee\x94\x8b", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"\xee\x94\x94", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"\xee\x94\x92", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"\xee\x94\x8c", "\xf0\x9f\x94\xa5"=>"\xee\x84\x9d", 
				"\xf0\x9f\x94\xa6"=>"[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]", "\xf0\x9f\x94\xa7"=>"[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]", "\xf0\x9f\x94\xa8"=>"\xee\x84\x96", "\xf0\x9f\x94\xa9"=>"[\xe3\x83\x8d\xe3\x82\xb8]", "\xf0\x9f\x94\xaa"=>"[\xe5\x8c\x85\xe4\xb8\x81]", 
				"\xf0\x9f\x94\xab"=>"\xee\x84\x93", "\xf0\x9f\x94\xae"=>"\xee\x88\xbe", "\xf0\x9f\x94\xaf"=>"\xee\x88\xbe", "\xf0\x9f\x94\xb0"=>"\xee\x88\x89", "\xf0\x9f\x94\xb1"=>"\xee\x80\xb1", 
				"\xf0\x9f\x92\x89"=>"\xee\x84\xbb", "\xf0\x9f\x92\x8a"=>"\xee\x8c\x8f", "\xf0\x9f\x85\xb0"=>"\xee\x94\xb2", "\xf0\x9f\x85\xb1"=>"\xee\x94\xb3", "\xf0\x9f\x86\x8e"=>"\xee\x94\xb4", 
				"\xf0\x9f\x85\xbe"=>"\xee\x94\xb5", "\xf0\x9f\x8e\x80"=>"\xee\x8c\x94", "\xf0\x9f\x8e\x81"=>"\xee\x84\x92", "\xf0\x9f\x8e\x82"=>"\xee\x8d\x8b", "\xf0\x9f\x8e\x84"=>"\xee\x80\xb3", 
				"\xf0\x9f\x8e\x85"=>"\xee\x91\x88", "\xf0\x9f\x8e\x8c"=>"\xee\x85\x83", "\xf0\x9f\x8e\x86"=>"\xee\x84\x97", "\xf0\x9f\x8e\x88"=>"\xee\x8c\x90", "\xf0\x9f\x8e\x89"=>"\xee\x8c\x92", 
				"\xf0\x9f\x8e\x8d"=>"\xee\x90\xb6", "\xf0\x9f\x8e\x8e"=>"\xee\x90\xb8", "\xf0\x9f\x8e\x93"=>"\xee\x90\xb9", "\xf0\x9f\x8e\x92"=>"\xee\x90\xba", "\xf0\x9f\x8e\x8f"=>"\xee\x90\xbb", 
				"\xf0\x9f\x8e\x87"=>"\xee\x91\x80", "\xf0\x9f\x8e\x90"=>"\xee\x91\x82", "\xf0\x9f\x8e\x83"=>"\xee\x91\x85", "\xf0\x9f\x8e\x8a"=>"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]", "\xf0\x9f\x8e\x8b"=>"[\xe4\xb8\x83\xe5\xa4\x95]", 
				"\xf0\x9f\x8e\x91"=>"\xee\x91\x86", "\xf0\x9f\x93\x9f"=>"[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]", "\xe2\x98\x8e"=>"\xee\x80\x89", "\xf0\x9f\x93\x9e"=>"\xee\x80\x89", "\xf0\x9f\x93\xb1"=>"\xee\x80\x8a", 
				"\xf0\x9f\x93\xb2"=>"\xee\x84\x84", "\xf0\x9f\x93\x9d"=>"\xee\x8c\x81", "\xf0\x9f\x93\xa0"=>"\xee\x80\x8b", "\xe2\x9c\x89"=>"\xee\x84\x83", "\xf0\x9f\x93\xa8"=>"\xee\x84\x83", 
				"\xf0\x9f\x93\xa9"=>"\xee\x84\x83", "\xf0\x9f\x93\xaa"=>"\xee\x84\x81", "\xf0\x9f\x93\xab"=>"\xee\x84\x81", "\xf0\x9f\x93\xae"=>"\xee\x84\x82", "\xf0\x9f\x93\xb0"=>"[\xe6\x96\xb0\xe8\x81\x9e]", 
				"\xf0\x9f\x93\xa2"=>"\xee\x85\x82", "\xf0\x9f\x93\xa3"=>"\xee\x8c\x97", "\xf0\x9f\x93\xa1"=>"\xee\x85\x8b", "\xf0\x9f\x93\xa4"=>"[\xe9\x80\x81\xe4\xbf\xa1BOX]", "\xf0\x9f\x93\xa5"=>"[\xe5\x8f\x97\xe4\xbf\xa1BOX]", 
				"\xf0\x9f\x93\xa6"=>"\xee\x84\x92", "\xf0\x9f\x93\xa7"=>"\xee\x84\x83", "\xf0\x9f\x94\xa0"=>"[ABCD]", "\xf0\x9f\x94\xa1"=>"[abcd]", "\xf0\x9f\x94\xa2"=>"[1234]", 
				"\xf0\x9f\x94\xa3"=>"[\xe8\xa8\x98\xe5\x8f\xb7]", "\xf0\x9f\x94\xa4"=>"[ABC]", "\xe2\x9c\x92"=>"[\xe3\x83\x9a\xe3\x83\xb3]", "\xf0\x9f\x92\xba"=>"\xee\x84\x9f", "\xf0\x9f\x92\xbb"=>"\xee\x80\x8c", 
				"\xe2\x9c\x8f"=>"\xee\x8c\x81", "\xf0\x9f\x93\x8e"=>"[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]", "\xf0\x9f\x92\xbc"=>"\xee\x84\x9e", "\xf0\x9f\x92\xbd"=>"\xee\x8c\x96", "\xf0\x9f\x92\xbe"=>"\xee\x8c\x96", 
				"\xf0\x9f\x92\xbf"=>"\xee\x84\xa6", "\xf0\x9f\x93\x80"=>"\xee\x84\xa7", "\xe2\x9c\x82"=>"\xee\x8c\x93", "\xf0\x9f\x93\x8d"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x83"=>"\xee\x8c\x81", 
				"\xf0\x9f\x93\x84"=>"\xee\x8c\x81", "\xf0\x9f\x93\x85"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x81"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x82"=>"[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]", "\xf0\x9f\x93\x93"=>"\xee\x85\x88", 
				"\xf0\x9f\x93\x96"=>"\xee\x85\x88", "\xf0\x9f\x93\x94"=>"\xee\x85\x88", "\xf0\x9f\x93\x95"=>"\xee\x85\x88", "\xf0\x9f\x93\x97"=>"\xee\x85\x88", "\xf0\x9f\x93\x98"=>"\xee\x85\x88", 
				"\xf0\x9f\x93\x99"=>"\xee\x85\x88", "\xf0\x9f\x93\x9a"=>"\xee\x85\x88", "\xf0\x9f\x93\x9b"=>"[\xe5\x90\x8d\xe6\x9c\xad]", "\xf0\x9f\x93\x9c"=>"[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]", "\xf0\x9f\x93\x8b"=>"\xee\x8c\x81", 
				"\xf0\x9f\x93\x86"=>"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]", "\xf0\x9f\x93\x8a"=>"\xee\x85\x8a", "\xf0\x9f\x93\x88"=>"\xee\x85\x8a", "\xf0\x9f\x93\x89"=>"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]", "\xf0\x9f\x93\x87"=>"\xee\x85\x88", 
				"\xf0\x9f\x93\x8c"=>"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]", "\xf0\x9f\x93\x92"=>"\xee\x85\x88", "\xf0\x9f\x93\x8f"=>"[\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x90"=>"[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]", "\xf0\x9f\x93\x91"=>"\xee\x8c\x81", 
				"\xf0\x9f\x8e\xbd"=>"\xe3\x80\x93", "\xe2\x9a\xbe"=>"\xee\x80\x96", "\xe2\x9b\xb3"=>"\xee\x80\x94", "\xf0\x9f\x8e\xbe"=>"\xee\x80\x95", "\xe2\x9a\xbd"=>"\xee\x80\x98", 
				"\xf0\x9f\x8e\xbf"=>"\xee\x80\x93", "\xf0\x9f\x8f\x80"=>"\xee\x90\xaa", "\xf0\x9f\x8f\x81"=>"\xee\x84\xb2", "\xf0\x9f\x8f\x82"=>"[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]", "\xf0\x9f\x8f\x83"=>"\xee\x84\x95", 
				"\xf0\x9f\x8f\x84"=>"\xee\x80\x97", "\xf0\x9f\x8f\x86"=>"\xee\x84\xb1", "\xf0\x9f\x8f\x88"=>"\xee\x90\xab", "\xf0\x9f\x8f\x8a"=>"\xee\x90\xad", "\xf0\x9f\x9a\x83"=>"\xee\x80\x9e", 
				"\xf0\x9f\x9a\x87"=>"\xee\x90\xb4", "\xe2\x93\x82"=>"\xee\x90\xb4", "\xf0\x9f\x9a\x84"=>"\xee\x90\xb5", "\xf0\x9f\x9a\x85"=>"\xee\x80\x9f", "\xf0\x9f\x9a\x97"=>"\xee\x80\x9b", 
				"\xf0\x9f\x9a\x99"=>"\xee\x90\xae", "\xf0\x9f\x9a\x8c"=>"\xee\x85\x99", "\xf0\x9f\x9a\x8f"=>"\xee\x85\x90", "\xf0\x9f\x9a\xa2"=>"\xee\x88\x82", "\xe2\x9c\x88"=>"\xee\x80\x9d", 
				"\xe2\x9b\xb5"=>"\xee\x80\x9c", "\xf0\x9f\x9a\x89"=>"\xee\x80\xb9", "\xf0\x9f\x9a\x80"=>"\xee\x84\x8d", "\xf0\x9f\x9a\xa4"=>"\xee\x84\xb5", "\xf0\x9f\x9a\x95"=>"\xee\x85\x9a", 
				"\xf0\x9f\x9a\x9a"=>"\xee\x90\xaf", "\xf0\x9f\x9a\x92"=>"\xee\x90\xb0", "\xf0\x9f\x9a\x91"=>"\xee\x90\xb1", "\xf0\x9f\x9a\x93"=>"\xee\x90\xb2", "\xe2\x9b\xbd"=>"\xee\x80\xba", 
				"\xf0\x9f\x85\xbf"=>"\xee\x85\x8f", "\xf0\x9f\x9a\xa5"=>"\xee\x85\x8e", "\xf0\x9f\x9a\xa7"=>"\xee\x84\xb7", "\xf0\x9f\x9a\xa8"=>"\xee\x90\xb2", "\xe2\x99\xa8"=>"\xee\x84\xa3", 
				"\xe2\x9b\xba"=>"\xee\x84\xa2", "\xf0\x9f\x8e\xa0"=>"\xe3\x80\x93", "\xf0\x9f\x8e\xa1"=>"\xee\x84\xa4", "\xf0\x9f\x8e\xa2"=>"\xee\x90\xb3", "\xf0\x9f\x8e\xa3"=>"\xee\x80\x99", 
				"\xf0\x9f\x8e\xa4"=>"\xee\x80\xbc", "\xf0\x9f\x8e\xa5"=>"\xee\x80\xbd", "\xf0\x9f\x8e\xa6"=>"\xee\x94\x87", "\xf0\x9f\x8e\xa7"=>"\xee\x8c\x8a", "\xf0\x9f\x8e\xa8"=>"\xee\x94\x82", 
				"\xf0\x9f\x8e\xa9"=>"\xee\x94\x83", "\xf0\x9f\x8e\xaa"=>"[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x8e\xab"=>"\xee\x84\xa5", "\xf0\x9f\x8e\xac"=>"\xee\x8c\xa4", "\xf0\x9f\x8e\xad"=>"\xee\x94\x83", 
				"\xf0\x9f\x8e\xae"=>"[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]", "\xf0\x9f\x80\x84"=>"\xee\x84\xad", "\xf0\x9f\x8e\xaf"=>"\xee\x84\xb0", "\xf0\x9f\x8e\xb0"=>"\xee\x84\xb3", "\xf0\x9f\x8e\xb1"=>"\xee\x90\xac", 
				"\xf0\x9f\x8e\xb2"=>"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]", "\xf0\x9f\x8e\xb3"=>"[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]", "\xf0\x9f\x8e\xb4"=>"[\xe8\x8a\xb1\xe6\x9c\xad]", "\xf0\x9f\x83\x8f"=>"[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]", "\xf0\x9f\x8e\xb5"=>"\xee\x80\xbe", 
				"\xf0\x9f\x8e\xb6"=>"\xee\x8c\xa6", "\xf0\x9f\x8e\xb7"=>"\xee\x81\x80", "\xf0\x9f\x8e\xb8"=>"\xee\x81\x81", "\xf0\x9f\x8e\xb9"=>"[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]", "\xf0\x9f\x8e\xba"=>"\xee\x81\x82", 
				"\xf0\x9f\x8e\xbb"=>"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8e\xbc"=>"\xee\x8c\xa6", "\xe3\x80\xbd"=>"\xee\x84\xac", "\xf0\x9f\x93\xb7"=>"\xee\x80\x88", "\xf0\x9f\x93\xb9"=>"\xee\x80\xbd", 
				"\xf0\x9f\x93\xba"=>"\xee\x84\xaa", "\xf0\x9f\x93\xbb"=>"\xee\x84\xa8", "\xf0\x9f\x93\xbc"=>"\xee\x84\xa9", "\xf0\x9f\x92\x8b"=>"\xee\x80\x83", "\xf0\x9f\x92\x8c"=>"\xee\x84\x83\xee\x8c\xa8", 
				"\xf0\x9f\x92\x8d"=>"\xee\x80\xb4", "\xf0\x9f\x92\x8e"=>"\xee\x80\xb5", "\xf0\x9f\x92\x8f"=>"\xee\x84\x91", "\xf0\x9f\x92\x90"=>"\xee\x8c\x86", "\xf0\x9f\x92\x91"=>"\xee\x90\xa5", 
				"\xf0\x9f\x92\x92"=>"\xee\x90\xbd", "\xf0\x9f\x94\x9e"=>"\xee\x88\x87", "\xc2\xa9"=>"\xee\x89\x8e", "\xc2\xae"=>"\xee\x89\x8f", "\xe2\x84\xa2"=>"\xee\x94\xb7", 
				"\xe2\x84\xb9"=>"[\xef\xbd\x89]", "#\xe2\x83\xa3"=>"\xee\x88\x90", "1\xe2\x83\xa3"=>"\xee\x88\x9c", "2\xe2\x83\xa3"=>"\xee\x88\x9d", "3\xe2\x83\xa3"=>"\xee\x88\x9e", 
				"4\xe2\x83\xa3"=>"\xee\x88\x9f", "5\xe2\x83\xa3"=>"\xee\x88\xa0", "6\xe2\x83\xa3"=>"\xee\x88\xa1", "7\xe2\x83\xa3"=>"\xee\x88\xa2", "8\xe2\x83\xa3"=>"\xee\x88\xa3", 
				"9\xe2\x83\xa3"=>"\xee\x88\xa4", "0\xe2\x83\xa3"=>"\xee\x88\xa5", "\xf0\x9f\x94\x9f"=>"[10]", "\xf0\x9f\x93\xb6"=>"\xee\x88\x8b", "\xf0\x9f\x93\xb3"=>"\xee\x89\x90", 
				"\xf0\x9f\x93\xb4"=>"\xee\x89\x91", "\xf0\x9f\x8d\x94"=>"\xee\x84\xa0", "\xf0\x9f\x8d\x99"=>"\xee\x8d\x82", "\xf0\x9f\x8d\xb0"=>"\xee\x81\x86", "\xf0\x9f\x8d\x9c"=>"\xee\x8d\x80", 
				"\xf0\x9f\x8d\x9e"=>"\xee\x8c\xb9", "\xf0\x9f\x8d\xb3"=>"\xee\x85\x87", "\xf0\x9f\x8d\xa6"=>"\xee\x8c\xba", "\xf0\x9f\x8d\x9f"=>"\xee\x8c\xbb", "\xf0\x9f\x8d\xa1"=>"\xee\x8c\xbc", 
				"\xf0\x9f\x8d\x98"=>"\xee\x8c\xbd", "\xf0\x9f\x8d\x9a"=>"\xee\x8c\xbe", "\xf0\x9f\x8d\x9d"=>"\xee\x8c\xbf", "\xf0\x9f\x8d\x9b"=>"\xee\x8d\x81", "\xf0\x9f\x8d\xa2"=>"\xee\x8d\x83", 
				"\xf0\x9f\x8d\xa3"=>"\xee\x8d\x84", "\xf0\x9f\x8d\xb1"=>"\xee\x8d\x8c", "\xf0\x9f\x8d\xb2"=>"\xee\x8d\x8d", "\xf0\x9f\x8d\xa7"=>"\xee\x90\xbf", "\xf0\x9f\x8d\x96"=>"[\xe8\x82\x89]", 
				"\xf0\x9f\x8d\xa5"=>"[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]", "\xf0\x9f\x8d\xa0"=>"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]", "\xf0\x9f\x8d\x95"=>"[\xe3\x83\x94\xe3\x82\xb6]", "\xf0\x9f\x8d\x97"=>"[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]", "\xf0\x9f\x8d\xa8"=>"[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]", 
				"\xf0\x9f\x8d\xa9"=>"[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]", "\xf0\x9f\x8d\xaa"=>"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]", "\xf0\x9f\x8d\xab"=>"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]", "\xf0\x9f\x8d\xac"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", "\xf0\x9f\x8d\xad"=>"[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]", 
				"\xf0\x9f\x8d\xae"=>"[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]", "\xf0\x9f\x8d\xaf"=>"[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]", "\xf0\x9f\x8d\xa4"=>"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]", "\xf0\x9f\x8d\xb4"=>"\xee\x81\x83", "\xe2\x98\x95"=>"\xee\x81\x85", 
				"\xf0\x9f\x8d\xb8"=>"\xee\x81\x84", "\xf0\x9f\x8d\xba"=>"\xee\x81\x87", "\xf0\x9f\x8d\xb5"=>"\xee\x8c\xb8", "\xf0\x9f\x8d\xb6"=>"\xee\x8c\x8b", "\xf0\x9f\x8d\xb7"=>"\xee\x81\x84", 
				"\xf0\x9f\x8d\xbb"=>"\xee\x8c\x8c", "\xf0\x9f\x8d\xb9"=>"\xee\x81\x84", "\xe2\x86\x97"=>"\xee\x88\xb6", "\xe2\x86\x98"=>"\xee\x88\xb8", "\xe2\x86\x96"=>"\xee\x88\xb7", 
				"\xe2\x86\x99"=>"\xee\x88\xb9", "\xe2\xa4\xb4"=>"\xee\x88\xb6", "\xe2\xa4\xb5"=>"\xee\x88\xb8", "\xe2\x86\x94"=>"\xe2\x87\x94", "\xe2\x86\x95"=>"\xe2\x86\x91\xe2\x86\x93", 
				"\xe2\xac\x86"=>"\xee\x88\xb2", "\xe2\xac\x87"=>"\xee\x88\xb3", "\xe2\x9e\xa1"=>"\xee\x88\xb4", "\xe2\xac\x85"=>"\xee\x88\xb5", "\xe2\x96\xb6"=>"\xee\x88\xba", 
				"\xe2\x97\x80"=>"\xee\x88\xbb", "\xe2\x8f\xa9"=>"\xee\x88\xbc", "\xe2\x8f\xaa"=>"\xee\x88\xbd", "\xe2\x8f\xab"=>"\xe2\x96\xb2", "\xe2\x8f\xac"=>"\xe2\x96\xbc", 
				"\xf0\x9f\x94\xba"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbb"=>"\xe2\x96\xbc", "\xf0\x9f\x94\xbc"=>"\xe2\x96\xb2", "\xf0\x9f\x94\xbd"=>"\xe2\x96\xbc", "\xe2\xad\x95"=>"\xee\x8c\xb2", 
				"\xe2\x9d\x8c"=>"\xee\x8c\xb3", "\xe2\x9d\x8e"=>"\xee\x8c\xb3", "\xe2\x9d\x97"=>"\xee\x80\xa1", "\xe2\x81\x89"=>"\xef\xbc\x81\xef\xbc\x9f", "\xe2\x80\xbc"=>"\xef\xbc\x81\xef\xbc\x81", 
				"\xe2\x9d\x93"=>"\xee\x80\xa0", "\xe2\x9d\x94"=>"\xee\x8c\xb6", "\xe2\x9d\x95"=>"\xee\x8c\xb7", "\xe3\x80\xb0"=>"\xe3\x80\x93", "\xe2\x9e\xb0"=>"\xef\xbd\x9e", 
				"\xe2\x9e\xbf"=>"\xee\x88\x91", "\xe2\x9d\xa4"=>"\xee\x80\xa2", "\xf0\x9f\x92\x93"=>"\xee\x8c\xa7", "\xf0\x9f\x92\x94"=>"\xee\x80\xa3", "\xf0\x9f\x92\x95"=>"\xee\x8c\xa7", 
				"\xf0\x9f\x92\x96"=>"\xee\x8c\xa7", "\xf0\x9f\x92\x97"=>"\xee\x8c\xa8", "\xf0\x9f\x92\x98"=>"\xee\x8c\xa9", "\xf0\x9f\x92\x99"=>"\xee\x8c\xaa", "\xf0\x9f\x92\x9a"=>"\xee\x8c\xab", 
				"\xf0\x9f\x92\x9b"=>"\xee\x8c\xac", "\xf0\x9f\x92\x9c"=>"\xee\x8c\xad", "\xf0\x9f\x92\x9d"=>"\xee\x90\xb7", "\xf0\x9f\x92\x9e"=>"\xee\x8c\xa7", "\xf0\x9f\x92\x9f"=>"\xee\x88\x84", 
				"\xe2\x99\xa5"=>"\xee\x88\x8c", "\xe2\x99\xa0"=>"\xee\x88\x8e", "\xe2\x99\xa6"=>"\xee\x88\x8d", "\xe2\x99\xa3"=>"\xee\x88\x8f", "\xf0\x9f\x9a\xac"=>"\xee\x8c\x8e", 
				"\xf0\x9f\x9a\xad"=>"\xee\x88\x88", "\xe2\x99\xbf"=>"\xee\x88\x8a", "\xf0\x9f\x9a\xa9"=>"[\xe6\x97\x97]", "\xe2\x9a\xa0"=>"\xee\x89\x92", "\xe2\x9b\x94"=>"\xee\x84\xb7", 
				"\xe2\x99\xbb"=>"\xe2\x86\x91\xe2\x86\x93", "\xf0\x9f\x9a\xb2"=>"\xee\x84\xb6", "\xf0\x9f\x9a\xb6"=>"\xee\x88\x81", "\xf0\x9f\x9a\xb9"=>"\xee\x84\xb8", "\xf0\x9f\x9a\xba"=>"\xee\x84\xb9", 
				"\xf0\x9f\x9b\x80"=>"\xee\x84\xbf", "\xf0\x9f\x9a\xbb"=>"\xee\x85\x91", "\xf0\x9f\x9a\xbd"=>"\xee\x85\x80", "\xf0\x9f\x9a\xbe"=>"\xee\x8c\x89", "\xf0\x9f\x9a\xbc"=>"\xee\x84\xba", 
				"\xf0\x9f\x9a\xaa"=>"[\xe3\x83\x89\xe3\x82\xa2]", "\xf0\x9f\x9a\xab"=>"[\xe7\xa6\x81\xe6\xad\xa2]", "\xe2\x9c\x94"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x86\x91"=>"[CL]", "\xf0\x9f\x86\x92"=>"\xee\x88\x94", 
				"\xf0\x9f\x86\x93"=>"[FREE]", "\xf0\x9f\x86\x94"=>"\xee\x88\xa9", "\xf0\x9f\x86\x95"=>"\xee\x88\x92", "\xf0\x9f\x86\x96"=>"[NG]", "\xf0\x9f\x86\x97"=>"\xee\x89\x8d", 
				"\xf0\x9f\x86\x98"=>"[SOS]", "\xf0\x9f\x86\x99"=>"\xee\x88\x93", "\xf0\x9f\x86\x9a"=>"\xee\x84\xae", "\xf0\x9f\x88\x81"=>"\xee\x88\x83", "\xf0\x9f\x88\x82"=>"\xee\x88\xa8", 
				"\xf0\x9f\x88\xb2"=>"[\xe7\xa6\x81]", "\xf0\x9f\x88\xb3"=>"\xee\x88\xab", "\xf0\x9f\x88\xb4"=>"[\xe5\x90\x88]", "\xf0\x9f\x88\xb5"=>"\xee\x88\xaa", "\xf0\x9f\x88\xb6"=>"\xee\x88\x95", 
				"\xf0\x9f\x88\x9a"=>"\xee\x88\x96", "\xf0\x9f\x88\xb7"=>"\xee\x88\x97", "\xf0\x9f\x88\xb8"=>"\xee\x88\x98", "\xf0\x9f\x88\xb9"=>"\xee\x88\xa7", "\xf0\x9f\x88\xaf"=>"\xee\x88\xac", 
				"\xf0\x9f\x88\xba"=>"\xee\x88\xad", "\xe3\x8a\x99"=>"\xee\x8c\x95", "\xe3\x8a\x97"=>"\xee\x8c\x8d", "\xf0\x9f\x89\x90"=>"\xee\x88\xa6", "\xf0\x9f\x89\x91"=>"[\xe5\x8f\xaf]", 
				"\xe2\x9e\x95"=>"[\xef\xbc\x8b]", "\xe2\x9e\x96"=>"[\xef\xbc\x8d]", "\xe2\x9c\x96"=>"\xee\x8c\xb3", "\xe2\x9e\x97"=>"[\xc3\xb7]", "\xf0\x9f\x92\xa0"=>"\xe3\x80\x93", 
				"\xf0\x9f\x92\xa1"=>"\xee\x84\x8f", "\xf0\x9f\x92\xa2"=>"\xee\x8c\xb4", "\xf0\x9f\x92\xa3"=>"\xee\x8c\x91", "\xf0\x9f\x92\xa4"=>"\xee\x84\xbc", "\xf0\x9f\x92\xa5"=>"[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]", 
				"\xf0\x9f\x92\xa6"=>"\xee\x8c\xb1", "\xf0\x9f\x92\xa7"=>"\xee\x8c\xb1", "\xf0\x9f\x92\xa8"=>"\xee\x8c\xb0", "\xf0\x9f\x92\xa9"=>"\xee\x81\x9a", "\xf0\x9f\x92\xaa"=>"\xee\x85\x8c", 
				"\xf0\x9f\x92\xab"=>"\xee\x90\x87", "\xf0\x9f\x92\xac"=>"[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]", "\xe2\x9c\xa8"=>"\xee\x8c\xae", "\xe2\x9c\xb4"=>"\xee\x88\x85", "\xe2\x9c\xb3"=>"\xee\x88\x86", 
				"\xe2\x9a\xaa"=>"\xee\x88\x99", "\xe2\x9a\xab"=>"\xee\x88\x99", "\xf0\x9f\x94\xb4"=>"\xee\x88\x99", "\xf0\x9f\x94\xb5"=>"\xee\x88\x9a", "\xf0\x9f\x94\xb2"=>"\xee\x88\x9a", 
				"\xf0\x9f\x94\xb3"=>"\xee\x88\x9b", "\xe2\xad\x90"=>"\xee\x8c\xaf", "\xe2\xac\x9c"=>"\xee\x88\x9b", "\xe2\xac\x9b"=>"\xee\x88\x9a", "\xe2\x96\xab"=>"\xee\x88\x9b", 
				"\xe2\x96\xaa"=>"\xee\x88\x9a", "\xe2\x97\xbd"=>"\xee\x88\x9b", "\xe2\x97\xbe"=>"\xee\x88\x9a", "\xe2\x97\xbb"=>"\xee\x88\x9b", "\xe2\x97\xbc"=>"\xee\x88\x9a", 
				"\xf0\x9f\x94\xb6"=>"\xee\x88\x9b", "\xf0\x9f\x94\xb7"=>"\xee\x88\x9b", "\xf0\x9f\x94\xb8"=>"\xee\x88\x9b", "\xf0\x9f\x94\xb9"=>"\xee\x88\x9b", "\xe2\x9d\x87"=>"\xee\x8c\xae", 
				"\xf0\x9f\x92\xae"=>"[\xe8\x8a\xb1\xe4\xb8\xb8]", "\xf0\x9f\x92\xaf"=>"[100\xe7\x82\xb9]", "\xe2\x86\xa9"=>"\xe2\x86\x90\xe2\x94\x98", "\xe2\x86\xaa"=>"\xe2\x94\x94\xe2\x86\x92", "\xf0\x9f\x94\x83"=>"\xe2\x86\x91\xe2\x86\x93", 
				"\xf0\x9f\x94\x8a"=>"\xee\x85\x81", "\xf0\x9f\x94\x8b"=>"[\xe9\x9b\xbb\xe6\xb1\xa0]", "\xf0\x9f\x94\x8c"=>"[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]", "\xf0\x9f\x94\x8d"=>"\xee\x84\x94", "\xf0\x9f\x94\x8e"=>"\xee\x84\x94", 
				"\xf0\x9f\x94\x92"=>"\xee\x85\x84", "\xf0\x9f\x94\x93"=>"\xee\x85\x85", "\xf0\x9f\x94\x8f"=>"\xee\x85\x84", "\xf0\x9f\x94\x90"=>"\xee\x85\x84", "\xf0\x9f\x94\x91"=>"\xee\x80\xbf", 
				"\xf0\x9f\x94\x94"=>"\xee\x8c\xa5", "\xe2\x98\x91"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x98"=>"[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]", "\xf0\x9f\x94\x96"=>"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xf0\x9f\x94\x97"=>"[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]", 
				"\xf0\x9f\x94\x99"=>"\xee\x88\xb5", "\xf0\x9f\x94\x9a"=>"[end]", "\xf0\x9f\x94\x9b"=>"[ON]", "\xf0\x9f\x94\x9c"=>"[SOON]", "\xf0\x9f\x94\x9d"=>"\xee\x89\x8c", 
				"\xe2\x9c\x85"=>"[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]", "\xe2\x9c\x8a"=>"\xee\x80\x90", "\xe2\x9c\x8b"=>"\xee\x80\x92", "\xe2\x9c\x8c"=>"\xee\x80\x91", "\xf0\x9f\x91\x8a"=>"\xee\x80\x8d", 
				"\xf0\x9f\x91\x8d"=>"\xee\x80\x8e", "\xe2\x98\x9d"=>"\xee\x80\x8f", "\xf0\x9f\x91\x86"=>"\xee\x88\xae", "\xf0\x9f\x91\x87"=>"\xee\x88\xaf", "\xf0\x9f\x91\x88"=>"\xee\x88\xb0", 
				"\xf0\x9f\x91\x89"=>"\xee\x88\xb1", "\xf0\x9f\x91\x8b"=>"\xee\x90\x9e", "\xf0\x9f\x91\x8f"=>"\xee\x90\x9f", "\xf0\x9f\x91\x8c"=>"\xee\x90\xa0", "\xf0\x9f\x91\x8e"=>"\xee\x90\xa1", 
				"\xf0\x9f\x91\x90"=>"\xee\x90\xa2", 
			),
			'unified_to_google' => array(
				"\xe2\x98\x80"=>"\xf3\xbe\x80\x80", "\xe2\x98\x81"=>"\xf3\xbe\x80\x81", "\xe2\x98\x94"=>"\xf3\xbe\x80\x82", "\xe2\x9b\x84"=>"\xf3\xbe\x80\x83", 
				"\xe2\x9a\xa1"=>"\xf3\xbe\x80\x84", "\xf0\x9f\x8c\x80"=>"\xf3\xbe\x80\x85", "\xf0\x9f\x8c\x81"=>"\xf3\xbe\x80\x86", "\xf0\x9f\x8c\x82"=>"\xf3\xbe\x80\x87", "\xf0\x9f\x8c\x83"=>"\xf3\xbe\x80\x88", 
				"\xf0\x9f\x8c\x84"=>"\xf3\xbe\x80\x89", "\xf0\x9f\x8c\x85"=>"\xf3\xbe\x80\x8a", "\xf0\x9f\x8c\x86"=>"\xf3\xbe\x80\x8b", "\xf0\x9f\x8c\x87"=>"\xf3\xbe\x80\x8c", "\xf0\x9f\x8c\x88"=>"\xf3\xbe\x80\x8d", 
				"\xe2\x9d\x84"=>"\xf3\xbe\x80\x8e", "\xe2\x9b\x85"=>"\xf3\xbe\x80\x8f", "\xf0\x9f\x8c\x89"=>"\xf3\xbe\x80\x90", "\xf0\x9f\x8c\x8a"=>"\xf3\xbe\x80\xb8", "\xf0\x9f\x8c\x8b"=>"\xf3\xbe\x80\xba", 
				"\xf0\x9f\x8c\x8c"=>"\xf3\xbe\x80\xbb", "\xf0\x9f\x8c\x8f"=>"\xf3\xbe\x80\xb9", "\xf0\x9f\x8c\x91"=>"\xf3\xbe\x80\x91", "\xf0\x9f\x8c\x94"=>"\xf3\xbe\x80\x92", "\xf0\x9f\x8c\x93"=>"\xf3\xbe\x80\x93", 
				"\xf0\x9f\x8c\x99"=>"\xf3\xbe\x80\x94", "\xf0\x9f\x8c\x95"=>"\xf3\xbe\x80\x95", "\xf0\x9f\x8c\x9b"=>"\xf3\xbe\x80\x96", "\xf0\x9f\x8c\x9f"=>"\xf3\xbe\xad\xa9", "\xf0\x9f\x8c\xa0"=>"\xf3\xbe\xad\xaa", 
				"\xf0\x9f\x95\x90"=>"\xf3\xbe\x80\x9e", "\xf0\x9f\x95\x91"=>"\xf3\xbe\x80\x9f", "\xf0\x9f\x95\x92"=>"\xf3\xbe\x80\xa0", "\xf0\x9f\x95\x93"=>"\xf3\xbe\x80\xa1", "\xf0\x9f\x95\x94"=>"\xf3\xbe\x80\xa2", 
				"\xf0\x9f\x95\x95"=>"\xf3\xbe\x80\xa3", "\xf0\x9f\x95\x96"=>"\xf3\xbe\x80\xa4", "\xf0\x9f\x95\x97"=>"\xf3\xbe\x80\xa5", "\xf0\x9f\x95\x98"=>"\xf3\xbe\x80\xa6", "\xf0\x9f\x95\x99"=>"\xf3\xbe\x80\xa7", 
				"\xf0\x9f\x95\x9a"=>"\xf3\xbe\x80\xa8", "\xf0\x9f\x95\x9b"=>"\xf3\xbe\x80\xa9", "\xe2\x8c\x9a"=>"\xf3\xbe\x80\x9d", "\xe2\x8c\x9b"=>"\xf3\xbe\x80\x9c", "\xe2\x8f\xb0"=>"\xf3\xbe\x80\xaa", 
				"\xe2\x8f\xb3"=>"\xf3\xbe\x80\x9b", "\xe2\x99\x88"=>"\xf3\xbe\x80\xab", "\xe2\x99\x89"=>"\xf3\xbe\x80\xac", "\xe2\x99\x8a"=>"\xf3\xbe\x80\xad", "\xe2\x99\x8b"=>"\xf3\xbe\x80\xae", 
				"\xe2\x99\x8c"=>"\xf3\xbe\x80\xaf", "\xe2\x99\x8d"=>"\xf3\xbe\x80\xb0", "\xe2\x99\x8e"=>"\xf3\xbe\x80\xb1", "\xe2\x99\x8f"=>"\xf3\xbe\x80\xb2", "\xe2\x99\x90"=>"\xf3\xbe\x80\xb3", 
				"\xe2\x99\x91"=>"\xf3\xbe\x80\xb4", "\xe2\x99\x92"=>"\xf3\xbe\x80\xb5", "\xe2\x99\x93"=>"\xf3\xbe\x80\xb6", "\xe2\x9b\x8e"=>"\xf3\xbe\x80\xb7", "\xf0\x9f\x8d\x80"=>"\xf3\xbe\x80\xbc", 
				"\xf0\x9f\x8c\xb7"=>"\xf3\xbe\x80\xbd", "\xf0\x9f\x8c\xb1"=>"\xf3\xbe\x80\xbe", "\xf0\x9f\x8d\x81"=>"\xf3\xbe\x80\xbf", "\xf0\x9f\x8c\xb8"=>"\xf3\xbe\x81\x80", "\xf0\x9f\x8c\xb9"=>"\xf3\xbe\x81\x81", 
				"\xf0\x9f\x8d\x82"=>"\xf3\xbe\x81\x82", "\xf0\x9f\x8d\x83"=>"\xf3\xbe\x81\x83", "\xf0\x9f\x8c\xba"=>"\xf3\xbe\x81\x85", "\xf0\x9f\x8c\xbb"=>"\xf3\xbe\x81\x86", "\xf0\x9f\x8c\xb4"=>"\xf3\xbe\x81\x87", 
				"\xf0\x9f\x8c\xb5"=>"\xf3\xbe\x81\x88", "\xf0\x9f\x8c\xbe"=>"\xf3\xbe\x81\x89", "\xf0\x9f\x8c\xbd"=>"\xf3\xbe\x81\x8a", "\xf0\x9f\x8d\x84"=>"\xf3\xbe\x81\x8b", "\xf0\x9f\x8c\xb0"=>"\xf3\xbe\x81\x8c", 
				"\xf0\x9f\x8c\xbc"=>"\xf3\xbe\x81\x8d", "\xf0\x9f\x8c\xbf"=>"\xf3\xbe\x81\x8e", "\xf0\x9f\x8d\x92"=>"\xf3\xbe\x81\x8f", "\xf0\x9f\x8d\x8c"=>"\xf3\xbe\x81\x90", "\xf0\x9f\x8d\x8e"=>"\xf3\xbe\x81\x91", 
				"\xf0\x9f\x8d\x8a"=>"\xf3\xbe\x81\x92", "\xf0\x9f\x8d\x93"=>"\xf3\xbe\x81\x93", "\xf0\x9f\x8d\x89"=>"\xf3\xbe\x81\x94", "\xf0\x9f\x8d\x85"=>"\xf3\xbe\x81\x95", "\xf0\x9f\x8d\x86"=>"\xf3\xbe\x81\x96", 
				"\xf0\x9f\x8d\x88"=>"\xf3\xbe\x81\x97", "\xf0\x9f\x8d\x8d"=>"\xf3\xbe\x81\x98", "\xf0\x9f\x8d\x87"=>"\xf3\xbe\x81\x99", "\xf0\x9f\x8d\x91"=>"\xf3\xbe\x81\x9a", "\xf0\x9f\x8d\x8f"=>"\xf3\xbe\x81\x9b", 
				"\xf0\x9f\x91\x80"=>"\xf3\xbe\x86\x90", "\xf0\x9f\x91\x82"=>"\xf3\xbe\x86\x91", "\xf0\x9f\x91\x83"=>"\xf3\xbe\x86\x92", "\xf0\x9f\x91\x84"=>"\xf3\xbe\x86\x93", "\xf0\x9f\x91\x85"=>"\xf3\xbe\x86\x94", 
				"\xf0\x9f\x92\x84"=>"\xf3\xbe\x86\x95", "\xf0\x9f\x92\x85"=>"\xf3\xbe\x86\x96", "\xf0\x9f\x92\x86"=>"\xf3\xbe\x86\x97", "\xf0\x9f\x92\x87"=>"\xf3\xbe\x86\x98", "\xf0\x9f\x92\x88"=>"\xf3\xbe\x86\x99", 
				"\xf0\x9f\x91\xa4"=>"\xf3\xbe\x86\x9a", "\xf0\x9f\x91\xa6"=>"\xf3\xbe\x86\x9b", "\xf0\x9f\x91\xa7"=>"\xf3\xbe\x86\x9c", "\xf0\x9f\x91\xa8"=>"\xf3\xbe\x86\x9d", "\xf0\x9f\x91\xa9"=>"\xf3\xbe\x86\x9e", 
				"\xf0\x9f\x91\xaa"=>"\xf3\xbe\x86\x9f", "\xf0\x9f\x91\xab"=>"\xf3\xbe\x86\xa0", "\xf0\x9f\x91\xae"=>"\xf3\xbe\x86\xa1", "\xf0\x9f\x91\xaf"=>"\xf3\xbe\x86\xa2", "\xf0\x9f\x91\xb0"=>"\xf3\xbe\x86\xa3", 
				"\xf0\x9f\x91\xb1"=>"\xf3\xbe\x86\xa4", "\xf0\x9f\x91\xb2"=>"\xf3\xbe\x86\xa5", "\xf0\x9f\x91\xb3"=>"\xf3\xbe\x86\xa6", "\xf0\x9f\x91\xb4"=>"\xf3\xbe\x86\xa7", "\xf0\x9f\x91\xb5"=>"\xf3\xbe\x86\xa8", 
				"\xf0\x9f\x91\xb6"=>"\xf3\xbe\x86\xa9", "\xf0\x9f\x91\xb7"=>"\xf3\xbe\x86\xaa", "\xf0\x9f\x91\xb8"=>"\xf3\xbe\x86\xab", "\xf0\x9f\x91\xb9"=>"\xf3\xbe\x86\xac", "\xf0\x9f\x91\xba"=>"\xf3\xbe\x86\xad", 
				"\xf0\x9f\x91\xbb"=>"\xf3\xbe\x86\xae", "\xf0\x9f\x91\xbc"=>"\xf3\xbe\x86\xaf", "\xf0\x9f\x91\xbd"=>"\xf3\xbe\x86\xb0", "\xf0\x9f\x91\xbe"=>"\xf3\xbe\x86\xb1", "\xf0\x9f\x91\xbf"=>"\xf3\xbe\x86\xb2", 
				"\xf0\x9f\x92\x80"=>"\xf3\xbe\x86\xb3", "\xf0\x9f\x92\x81"=>"\xf3\xbe\x86\xb4", "\xf0\x9f\x92\x82"=>"\xf3\xbe\x86\xb5", "\xf0\x9f\x92\x83"=>"\xf3\xbe\x86\xb6", "\xf0\x9f\x90\x8c"=>"\xf3\xbe\x86\xb9", 
				"\xf0\x9f\x90\x8d"=>"\xf3\xbe\x87\x93", "\xf0\x9f\x90\x8e"=>"\xf3\xbe\x9f\x9c", "\xf0\x9f\x90\x94"=>"\xf3\xbe\x87\x94", "\xf0\x9f\x90\x97"=>"\xf3\xbe\x87\x95", "\xf0\x9f\x90\xab"=>"\xf3\xbe\x87\x96", 
				"\xf0\x9f\x90\x98"=>"\xf3\xbe\x87\x8c", "\xf0\x9f\x90\xa8"=>"\xf3\xbe\x87\x8d", "\xf0\x9f\x90\x92"=>"\xf3\xbe\x87\x8e", "\xf0\x9f\x90\x91"=>"\xf3\xbe\x87\x8f", "\xf0\x9f\x90\x99"=>"\xf3\xbe\x87\x85", 
				"\xf0\x9f\x90\x9a"=>"\xf3\xbe\x87\x86", "\xf0\x9f\x90\x9b"=>"\xf3\xbe\x87\x8b", "\xf0\x9f\x90\x9c"=>"\xf3\xbe\x87\x9a", "\xf0\x9f\x90\x9d"=>"\xf3\xbe\x87\xa1", "\xf0\x9f\x90\x9e"=>"\xf3\xbe\x87\xa2", 
				"\xf0\x9f\x90\xa0"=>"\xf3\xbe\x87\x89", "\xf0\x9f\x90\xa1"=>"\xf3\xbe\x87\x99", "\xf0\x9f\x90\xa2"=>"\xf3\xbe\x87\x9c", "\xf0\x9f\x90\xa4"=>"\xf3\xbe\x86\xba", "\xf0\x9f\x90\xa5"=>"\xf3\xbe\x86\xbb", 
				"\xf0\x9f\x90\xa6"=>"\xf3\xbe\x87\x88", "\xf0\x9f\x90\xa3"=>"\xf3\xbe\x87\x9d", "\xf0\x9f\x90\xa7"=>"\xf3\xbe\x86\xbc", "\xf0\x9f\x90\xa9"=>"\xf3\xbe\x87\x98", "\xf0\x9f\x90\x9f"=>"\xf3\xbe\x86\xbd", 
				"\xf0\x9f\x90\xac"=>"\xf3\xbe\x87\x87", "\xf0\x9f\x90\xad"=>"\xf3\xbe\x87\x82", "\xf0\x9f\x90\xaf"=>"\xf3\xbe\x87\x80", "\xf0\x9f\x90\xb1"=>"\xf3\xbe\x86\xb8", "\xf0\x9f\x90\xb3"=>"\xf3\xbe\x87\x83", 
				"\xf0\x9f\x90\xb4"=>"\xf3\xbe\x86\xbe", "\xf0\x9f\x90\xb5"=>"\xf3\xbe\x87\x84", "\xf0\x9f\x90\xb6"=>"\xf3\xbe\x86\xb7", "\xf0\x9f\x90\xb7"=>"\xf3\xbe\x86\xbf", "\xf0\x9f\x90\xbb"=>"\xf3\xbe\x87\x81", 
				"\xf0\x9f\x90\xb9"=>"\xf3\xbe\x87\x8a", "\xf0\x9f\x90\xba"=>"\xf3\xbe\x87\x90", "\xf0\x9f\x90\xae"=>"\xf3\xbe\x87\x91", "\xf0\x9f\x90\xb0"=>"\xf3\xbe\x87\x92", "\xf0\x9f\x90\xb8"=>"\xf3\xbe\x87\x97", 
				"\xf0\x9f\x90\xbe"=>"\xf3\xbe\x87\x9b", "\xf0\x9f\x90\xb2"=>"\xf3\xbe\x87\x9e", "\xf0\x9f\x90\xbc"=>"\xf3\xbe\x87\x9f", "\xf0\x9f\x90\xbd"=>"\xf3\xbe\x87\xa0", "\xf0\x9f\x98\xa0"=>"\xf3\xbe\x8c\xa0", 
				"\xf0\x9f\x98\xa9"=>"\xf3\xbe\x8c\xa1", "\xf0\x9f\x98\xb2"=>"\xf3\xbe\x8c\xa2", "\xf0\x9f\x98\x9e"=>"\xf3\xbe\x8c\xa3", "\xf0\x9f\x98\xb5"=>"\xf3\xbe\x8c\xa4", "\xf0\x9f\x98\xb0"=>"\xf3\xbe\x8c\xa5", 
				"\xf0\x9f\x98\x92"=>"\xf3\xbe\x8c\xa6", "\xf0\x9f\x98\x8d"=>"\xf3\xbe\x8c\xa7", "\xf0\x9f\x98\xa4"=>"\xf3\xbe\x8c\xa8", "\xf0\x9f\x98\x9c"=>"\xf3\xbe\x8c\xa9", "\xf0\x9f\x98\x9d"=>"\xf3\xbe\x8c\xaa", 
				"\xf0\x9f\x98\x8b"=>"\xf3\xbe\x8c\xab", "\xf0\x9f\x98\x98"=>"\xf3\xbe\x8c\xac", "\xf0\x9f\x98\x9a"=>"\xf3\xbe\x8c\xad", "\xf0\x9f\x98\xb7"=>"\xf3\xbe\x8c\xae", "\xf0\x9f\x98\xb3"=>"\xf3\xbe\x8c\xaf", 
				"\xf0\x9f\x98\x83"=>"\xf3\xbe\x8c\xb0", "\xf0\x9f\x98\x85"=>"\xf3\xbe\x8c\xb1", "\xf0\x9f\x98\x86"=>"\xf3\xbe\x8c\xb2", "\xf0\x9f\x98\x81"=>"\xf3\xbe\x8c\xb3", "\xf0\x9f\x98\x82"=>"\xf3\xbe\x8c\xb4", 
				"\xf0\x9f\x98\x8a"=>"\xf3\xbe\x8c\xb5", "\xe2\x98\xba"=>"\xf3\xbe\x8c\xb6", "\xf0\x9f\x98\x84"=>"\xf3\xbe\x8c\xb8", "\xf0\x9f\x98\xa2"=>"\xf3\xbe\x8c\xb9", "\xf0\x9f\x98\xad"=>"\xf3\xbe\x8c\xba", 
				"\xf0\x9f\x98\xa8"=>"\xf3\xbe\x8c\xbb", "\xf0\x9f\x98\xa3"=>"\xf3\xbe\x8c\xbc", "\xf0\x9f\x98\xa1"=>"\xf3\xbe\x8c\xbd", "\xf0\x9f\x98\x8c"=>"\xf3\xbe\x8c\xbe", "\xf0\x9f\x98\x96"=>"\xf3\xbe\x8c\xbf", 
				"\xf0\x9f\x98\x94"=>"\xf3\xbe\x8d\x80", "\xf0\x9f\x98\xb1"=>"\xf3\xbe\x8d\x81", "\xf0\x9f\x98\xaa"=>"\xf3\xbe\x8d\x82", "\xf0\x9f\x98\x8f"=>"\xf3\xbe\x8d\x83", "\xf0\x9f\x98\x93"=>"\xf3\xbe\x8d\x84", 
				"\xf0\x9f\x98\xa5"=>"\xf3\xbe\x8d\x85", "\xf0\x9f\x98\xab"=>"\xf3\xbe\x8d\x86", "\xf0\x9f\x98\x89"=>"\xf3\xbe\x8d\x87", "\xf0\x9f\x98\xba"=>"\xf3\xbe\x8d\x88", "\xf0\x9f\x98\xb8"=>"\xf3\xbe\x8d\x89", 
				"\xf0\x9f\x98\xb9"=>"\xf3\xbe\x8d\x8a", "\xf0\x9f\x98\xbd"=>"\xf3\xbe\x8d\x8b", "\xf0\x9f\x98\xbb"=>"\xf3\xbe\x8d\x8c", "\xf0\x9f\x98\xbf"=>"\xf3\xbe\x8d\x8d", "\xf0\x9f\x98\xbe"=>"\xf3\xbe\x8d\x8e", 
				"\xf0\x9f\x98\xbc"=>"\xf3\xbe\x8d\x8f", "\xf0\x9f\x99\x80"=>"\xf3\xbe\x8d\x90", "\xf0\x9f\x99\x85"=>"\xf3\xbe\x8d\x91", "\xf0\x9f\x99\x86"=>"\xf3\xbe\x8d\x92", "\xf0\x9f\x99\x87"=>"\xf3\xbe\x8d\x93", 
				"\xf0\x9f\x99\x88"=>"\xf3\xbe\x8d\x94", "\xf0\x9f\x99\x8a"=>"\xf3\xbe\x8d\x95", "\xf0\x9f\x99\x89"=>"\xf3\xbe\x8d\x96", "\xf0\x9f\x99\x8b"=>"\xf3\xbe\x8d\x97", "\xf0\x9f\x99\x8c"=>"\xf3\xbe\x8d\x98", 
				"\xf0\x9f\x99\x8d"=>"\xf3\xbe\x8d\x99", "\xf0\x9f\x99\x8e"=>"\xf3\xbe\x8d\x9a", "\xf0\x9f\x99\x8f"=>"\xf3\xbe\x8d\x9b", "\xf0\x9f\x8f\xa0"=>"\xf3\xbe\x92\xb0", "\xf0\x9f\x8f\xa1"=>"\xf3\xbe\x92\xb1", 
				"\xf0\x9f\x8f\xa2"=>"\xf3\xbe\x92\xb2", "\xf0\x9f\x8f\xa3"=>"\xf3\xbe\x92\xb3", "\xf0\x9f\x8f\xa5"=>"\xf3\xbe\x92\xb4", "\xf0\x9f\x8f\xa6"=>"\xf3\xbe\x92\xb5", "\xf0\x9f\x8f\xa7"=>"\xf3\xbe\x92\xb6", 
				"\xf0\x9f\x8f\xa8"=>"\xf3\xbe\x92\xb7", "\xf0\x9f\x8f\xa9"=>"\xf3\xbe\x92\xb8", "\xf0\x9f\x8f\xaa"=>"\xf3\xbe\x92\xb9", "\xf0\x9f\x8f\xab"=>"\xf3\xbe\x92\xba", "\xe2\x9b\xaa"=>"\xf3\xbe\x92\xbb", 
				"\xe2\x9b\xb2"=>"\xf3\xbe\x92\xbc", "\xf0\x9f\x8f\xac"=>"\xf3\xbe\x92\xbd", "\xf0\x9f\x8f\xaf"=>"\xf3\xbe\x92\xbe", "\xf0\x9f\x8f\xb0"=>"\xf3\xbe\x92\xbf", "\xf0\x9f\x8f\xad"=>"\xf3\xbe\x93\x80", 
				"\xe2\x9a\x93"=>"\xf3\xbe\x93\x81", "\xf0\x9f\x8f\xae"=>"\xf3\xbe\x93\x82", "\xf0\x9f\x97\xbb"=>"\xf3\xbe\x93\x83", "\xf0\x9f\x97\xbc"=>"\xf3\xbe\x93\x84", "\xf0\x9f\x97\xbd"=>"\xf3\xbe\x93\x86", 
				"\xf0\x9f\x97\xbe"=>"\xf3\xbe\x93\x87", "\xf0\x9f\x97\xbf"=>"\xf3\xbe\x93\x88", "\xf0\x9f\x91\x9e"=>"\xf3\xbe\x93\x8c", "\xf0\x9f\x91\x9f"=>"\xf3\xbe\x93\x8d", "\xf0\x9f\x91\xa0"=>"\xf3\xbe\x93\x96", 
				"\xf0\x9f\x91\xa1"=>"\xf3\xbe\x93\x97", "\xf0\x9f\x91\xa2"=>"\xf3\xbe\x93\x98", "\xf0\x9f\x91\xa3"=>"\xf3\xbe\x95\x93", "\xf0\x9f\x91\x93"=>"\xf3\xbe\x93\x8e", "\xf0\x9f\x91\x95"=>"\xf3\xbe\x93\x8f", 
				"\xf0\x9f\x91\x96"=>"\xf3\xbe\x93\x90", "\xf0\x9f\x91\x91"=>"\xf3\xbe\x93\x91", "\xf0\x9f\x91\x94"=>"\xf3\xbe\x93\x93", "\xf0\x9f\x91\x92"=>"\xf3\xbe\x93\x94", "\xf0\x9f\x91\x97"=>"\xf3\xbe\x93\x95", 
				"\xf0\x9f\x91\x98"=>"\xf3\xbe\x93\x99", "\xf0\x9f\x91\x99"=>"\xf3\xbe\x93\x9a", "\xf0\x9f\x91\x9a"=>"\xf3\xbe\x93\x9b", "\xf0\x9f\x91\x9b"=>"\xf3\xbe\x93\x9c", "\xf0\x9f\x91\x9c"=>"\xf3\xbe\x93\xb0", 
				"\xf0\x9f\x91\x9d"=>"\xf3\xbe\x93\xb1", "\xf0\x9f\x92\xb0"=>"\xf3\xbe\x93\x9d", "\xf0\x9f\x92\xb1"=>"\xf3\xbe\x93\x9e", "\xf0\x9f\x92\xb9"=>"\xf3\xbe\x93\x9f", "\xf0\x9f\x92\xb2"=>"\xf3\xbe\x93\xa0", 
				"\xf0\x9f\x92\xb3"=>"\xf3\xbe\x93\xa1", "\xf0\x9f\x92\xb4"=>"\xf3\xbe\x93\xa2", "\xf0\x9f\x92\xb5"=>"\xf3\xbe\x93\xa3", "\xf0\x9f\x92\xb8"=>"\xf3\xbe\x93\xa4", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"\xf3\xbe\x93\xad", 
				"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"\xf3\xbe\x93\xa8", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"\xf3\xbe\x93\xab", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"\xf3\xbe\x93\xa7", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"\xf3\xbe\x93\xaa", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"\xf3\xbe\x93\xa9", 
				"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"\xf3\xbe\x93\xa5", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"\xf3\xbe\x93\xae", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"\xf3\xbe\x93\xac", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"\xf3\xbe\x93\xa6", "\xf0\x9f\x94\xa5"=>"\xf3\xbe\x93\xb6", 
				"\xf0\x9f\x94\xa6"=>"\xf3\xbe\x93\xbb", "\xf0\x9f\x94\xa7"=>"\xf3\xbe\x93\x89", "\xf0\x9f\x94\xa8"=>"\xf3\xbe\x93\x8a", "\xf0\x9f\x94\xa9"=>"\xf3\xbe\x93\x8b", "\xf0\x9f\x94\xaa"=>"\xf3\xbe\x93\xba", 
				"\xf0\x9f\x94\xab"=>"\xf3\xbe\x93\xb5", "\xf0\x9f\x94\xae"=>"\xf3\xbe\x93\xb7", "\xf0\x9f\x94\xaf"=>"\xf3\xbe\x93\xb8", "\xf0\x9f\x94\xb0"=>"\xf3\xbe\x81\x84", "\xf0\x9f\x94\xb1"=>"\xf3\xbe\x93\x92", 
				"\xf0\x9f\x92\x89"=>"\xf3\xbe\x94\x89", "\xf0\x9f\x92\x8a"=>"\xf3\xbe\x94\x8a", "\xf0\x9f\x85\xb0"=>"\xf3\xbe\x94\x8b", "\xf0\x9f\x85\xb1"=>"\xf3\xbe\x94\x8c", "\xf0\x9f\x86\x8e"=>"\xf3\xbe\x94\x8d", 
				"\xf0\x9f\x85\xbe"=>"\xf3\xbe\x94\x8e", "\xf0\x9f\x8e\x80"=>"\xf3\xbe\x94\x8f", "\xf0\x9f\x8e\x81"=>"\xf3\xbe\x94\x90", "\xf0\x9f\x8e\x82"=>"\xf3\xbe\x94\x91", "\xf0\x9f\x8e\x84"=>"\xf3\xbe\x94\x92", 
				"\xf0\x9f\x8e\x85"=>"\xf3\xbe\x94\x93", "\xf0\x9f\x8e\x8c"=>"\xf3\xbe\x94\x94", "\xf0\x9f\x8e\x86"=>"\xf3\xbe\x94\x95", "\xf0\x9f\x8e\x88"=>"\xf3\xbe\x94\x96", "\xf0\x9f\x8e\x89"=>"\xf3\xbe\x94\x97", 
				"\xf0\x9f\x8e\x8d"=>"\xf3\xbe\x94\x98", "\xf0\x9f\x8e\x8e"=>"\xf3\xbe\x94\x99", "\xf0\x9f\x8e\x93"=>"\xf3\xbe\x94\x9a", "\xf0\x9f\x8e\x92"=>"\xf3\xbe\x94\x9b", "\xf0\x9f\x8e\x8f"=>"\xf3\xbe\x94\x9c", 
				"\xf0\x9f\x8e\x87"=>"\xf3\xbe\x94\x9d", "\xf0\x9f\x8e\x90"=>"\xf3\xbe\x94\x9e", "\xf0\x9f\x8e\x83"=>"\xf3\xbe\x94\x9f", "\xf0\x9f\x8e\x8a"=>"\xf3\xbe\x94\xa0", "\xf0\x9f\x8e\x8b"=>"\xf3\xbe\x94\xa1", 
				"\xf0\x9f\x8e\x91"=>"\xf3\xbe\x80\x97", "\xf0\x9f\x93\x9f"=>"\xf3\xbe\x94\xa2", "\xe2\x98\x8e"=>"\xf3\xbe\x94\xa3", "\xf0\x9f\x93\x9e"=>"\xf3\xbe\x94\xa4", "\xf0\x9f\x93\xb1"=>"\xf3\xbe\x94\xa5", 
				"\xf0\x9f\x93\xb2"=>"\xf3\xbe\x94\xa6", "\xf0\x9f\x93\x9d"=>"\xf3\xbe\x94\xa7", "\xf0\x9f\x93\xa0"=>"\xf3\xbe\x94\xa8", "\xe2\x9c\x89"=>"\xf3\xbe\x94\xa9", "\xf0\x9f\x93\xa8"=>"\xf3\xbe\x94\xaa", 
				"\xf0\x9f\x93\xa9"=>"\xf3\xbe\x94\xab", "\xf0\x9f\x93\xaa"=>"\xf3\xbe\x94\xac", "\xf0\x9f\x93\xab"=>"\xf3\xbe\x94\xad", "\xf0\x9f\x93\xae"=>"\xf3\xbe\x94\xae", "\xf0\x9f\x93\xb0"=>"\xf3\xbe\xa0\xa2", 
				"\xf0\x9f\x93\xa2"=>"\xf3\xbe\x94\xaf", "\xf0\x9f\x93\xa3"=>"\xf3\xbe\x94\xb0", "\xf0\x9f\x93\xa1"=>"\xf3\xbe\x94\xb1", "\xf0\x9f\x93\xa4"=>"\xf3\xbe\x94\xb3", "\xf0\x9f\x93\xa5"=>"\xf3\xbe\x94\xb4", 
				"\xf0\x9f\x93\xa6"=>"\xf3\xbe\x94\xb5", "\xf0\x9f\x93\xa7"=>"\xf3\xbe\xae\x92", "\xf0\x9f\x94\xa0"=>"\xf3\xbe\xad\xbc", "\xf0\x9f\x94\xa1"=>"\xf3\xbe\xad\xbd", "\xf0\x9f\x94\xa2"=>"\xf3\xbe\xad\xbe", 
				"\xf0\x9f\x94\xa3"=>"\xf3\xbe\xad\xbf", "\xf0\x9f\x94\xa4"=>"\xf3\xbe\xae\x80", "\xe2\x9c\x92"=>"\xf3\xbe\x94\xb6", "\xf0\x9f\x92\xba"=>"\xf3\xbe\x94\xb7", "\xf0\x9f\x92\xbb"=>"\xf3\xbe\x94\xb8", 
				"\xe2\x9c\x8f"=>"\xf3\xbe\x94\xb9", "\xf0\x9f\x93\x8e"=>"\xf3\xbe\x94\xba", "\xf0\x9f\x92\xbc"=>"\xf3\xbe\x94\xbb", "\xf0\x9f\x92\xbd"=>"\xf3\xbe\x94\xbc", "\xf0\x9f\x92\xbe"=>"\xf3\xbe\x94\xbd", 
				"\xf0\x9f\x92\xbf"=>"\xf3\xbe\xa0\x9d", "\xf0\x9f\x93\x80"=>"\xf3\xbe\xa0\x9e", "\xe2\x9c\x82"=>"\xf3\xbe\x94\xbe", "\xf0\x9f\x93\x8d"=>"\xf3\xbe\x94\xbf", "\xf0\x9f\x93\x83"=>"\xf3\xbe\x95\x80", 
				"\xf0\x9f\x93\x84"=>"\xf3\xbe\x95\x81", "\xf0\x9f\x93\x85"=>"\xf3\xbe\x95\x82", "\xf0\x9f\x93\x81"=>"\xf3\xbe\x95\x83", "\xf0\x9f\x93\x82"=>"\xf3\xbe\x95\x84", "\xf0\x9f\x93\x93"=>"\xf3\xbe\x95\x85", 
				"\xf0\x9f\x93\x96"=>"\xf3\xbe\x95\x86", "\xf0\x9f\x93\x94"=>"\xf3\xbe\x95\x87", "\xf0\x9f\x93\x95"=>"\xf3\xbe\x94\x82", "\xf0\x9f\x93\x97"=>"\xf3\xbe\x93\xbf", "\xf0\x9f\x93\x98"=>"\xf3\xbe\x94\x80", 
				"\xf0\x9f\x93\x99"=>"\xf3\xbe\x94\x81", "\xf0\x9f\x93\x9a"=>"\xf3\xbe\x94\x83", "\xf0\x9f\x93\x9b"=>"\xf3\xbe\x94\x84", "\xf0\x9f\x93\x9c"=>"\xf3\xbe\x93\xbd", "\xf0\x9f\x93\x8b"=>"\xf3\xbe\x95\x88", 
				"\xf0\x9f\x93\x86"=>"\xf3\xbe\x95\x89", "\xf0\x9f\x93\x8a"=>"\xf3\xbe\x95\x8a", "\xf0\x9f\x93\x88"=>"\xf3\xbe\x95\x8b", "\xf0\x9f\x93\x89"=>"\xf3\xbe\x95\x8c", "\xf0\x9f\x93\x87"=>"\xf3\xbe\x95\x8d", 
				"\xf0\x9f\x93\x8c"=>"\xf3\xbe\x95\x8e", "\xf0\x9f\x93\x92"=>"\xf3\xbe\x95\x8f", "\xf0\x9f\x93\x8f"=>"\xf3\xbe\x95\x90", "\xf0\x9f\x93\x90"=>"\xf3\xbe\x95\x91", "\xf0\x9f\x93\x91"=>"\xf3\xbe\x95\x92", 
				"\xf0\x9f\x8e\xbd"=>"\xf3\xbe\x9f\x90", "\xe2\x9a\xbe"=>"\xf3\xbe\x9f\x91", "\xe2\x9b\xb3"=>"\xf3\xbe\x9f\x92", "\xf0\x9f\x8e\xbe"=>"\xf3\xbe\x9f\x93", "\xe2\x9a\xbd"=>"\xf3\xbe\x9f\x94", 
				"\xf0\x9f\x8e\xbf"=>"\xf3\xbe\x9f\x95", "\xf0\x9f\x8f\x80"=>"\xf3\xbe\x9f\x96", "\xf0\x9f\x8f\x81"=>"\xf3\xbe\x9f\x97", "\xf0\x9f\x8f\x82"=>"\xf3\xbe\x9f\x98", "\xf0\x9f\x8f\x83"=>"\xf3\xbe\x9f\x99", 
				"\xf0\x9f\x8f\x84"=>"\xf3\xbe\x9f\x9a", "\xf0\x9f\x8f\x86"=>"\xf3\xbe\x9f\x9b", "\xf0\x9f\x8f\x88"=>"\xf3\xbe\x9f\x9d", "\xf0\x9f\x8f\x8a"=>"\xf3\xbe\x9f\x9e", "\xf0\x9f\x9a\x83"=>"\xf3\xbe\x9f\x9f", 
				"\xf0\x9f\x9a\x87"=>"\xf3\xbe\x9f\xa0", "\xe2\x93\x82"=>"\xf3\xbe\x9f\xa1", "\xf0\x9f\x9a\x84"=>"\xf3\xbe\x9f\xa2", "\xf0\x9f\x9a\x85"=>"\xf3\xbe\x9f\xa3", "\xf0\x9f\x9a\x97"=>"\xf3\xbe\x9f\xa4", 
				"\xf0\x9f\x9a\x99"=>"\xf3\xbe\x9f\xa5", "\xf0\x9f\x9a\x8c"=>"\xf3\xbe\x9f\xa6", "\xf0\x9f\x9a\x8f"=>"\xf3\xbe\x9f\xa7", "\xf0\x9f\x9a\xa2"=>"\xf3\xbe\x9f\xa8", "\xe2\x9c\x88"=>"\xf3\xbe\x9f\xa9", 
				"\xe2\x9b\xb5"=>"\xf3\xbe\x9f\xaa", "\xf0\x9f\x9a\x89"=>"\xf3\xbe\x9f\xac", "\xf0\x9f\x9a\x80"=>"\xf3\xbe\x9f\xad", "\xf0\x9f\x9a\xa4"=>"\xf3\xbe\x9f\xae", "\xf0\x9f\x9a\x95"=>"\xf3\xbe\x9f\xaf", 
				"\xf0\x9f\x9a\x9a"=>"\xf3\xbe\x9f\xb1", "\xf0\x9f\x9a\x92"=>"\xf3\xbe\x9f\xb2", "\xf0\x9f\x9a\x91"=>"\xf3\xbe\x9f\xb3", "\xf0\x9f\x9a\x93"=>"\xf3\xbe\x9f\xb4", "\xe2\x9b\xbd"=>"\xf3\xbe\x9f\xb5", 
				"\xf0\x9f\x85\xbf"=>"\xf3\xbe\x9f\xb6", "\xf0\x9f\x9a\xa5"=>"\xf3\xbe\x9f\xb7", "\xf0\x9f\x9a\xa7"=>"\xf3\xbe\x9f\xb8", "\xf0\x9f\x9a\xa8"=>"\xf3\xbe\x9f\xb9", "\xe2\x99\xa8"=>"\xf3\xbe\x9f\xba", 
				"\xe2\x9b\xba"=>"\xf3\xbe\x9f\xbb", "\xf0\x9f\x8e\xa0"=>"\xf3\xbe\x9f\xbc", "\xf0\x9f\x8e\xa1"=>"\xf3\xbe\x9f\xbd", "\xf0\x9f\x8e\xa2"=>"\xf3\xbe\x9f\xbe", "\xf0\x9f\x8e\xa3"=>"\xf3\xbe\x9f\xbf", 
				"\xf0\x9f\x8e\xa4"=>"\xf3\xbe\xa0\x80", "\xf0\x9f\x8e\xa5"=>"\xf3\xbe\xa0\x81", "\xf0\x9f\x8e\xa6"=>"\xf3\xbe\xa0\x82", "\xf0\x9f\x8e\xa7"=>"\xf3\xbe\xa0\x83", "\xf0\x9f\x8e\xa8"=>"\xf3\xbe\xa0\x84", 
				"\xf0\x9f\x8e\xa9"=>"\xf3\xbe\xa0\x85", "\xf0\x9f\x8e\xaa"=>"\xf3\xbe\xa0\x86", "\xf0\x9f\x8e\xab"=>"\xf3\xbe\xa0\x87", "\xf0\x9f\x8e\xac"=>"\xf3\xbe\xa0\x88", "\xf0\x9f\x8e\xad"=>"\xf3\xbe\xa0\x89", 
				"\xf0\x9f\x8e\xae"=>"\xf3\xbe\xa0\x8a", "\xf0\x9f\x80\x84"=>"\xf3\xbe\xa0\x8b", "\xf0\x9f\x8e\xaf"=>"\xf3\xbe\xa0\x8c", "\xf0\x9f\x8e\xb0"=>"\xf3\xbe\xa0\x8d", "\xf0\x9f\x8e\xb1"=>"\xf3\xbe\xa0\x8e", 
				"\xf0\x9f\x8e\xb2"=>"\xf3\xbe\xa0\x8f", "\xf0\x9f\x8e\xb3"=>"\xf3\xbe\xa0\x90", "\xf0\x9f\x8e\xb4"=>"\xf3\xbe\xa0\x91", "\xf0\x9f\x83\x8f"=>"\xf3\xbe\xa0\x92", "\xf0\x9f\x8e\xb5"=>"\xf3\xbe\xa0\x93", 
				"\xf0\x9f\x8e\xb6"=>"\xf3\xbe\xa0\x94", "\xf0\x9f\x8e\xb7"=>"\xf3\xbe\xa0\x95", "\xf0\x9f\x8e\xb8"=>"\xf3\xbe\xa0\x96", "\xf0\x9f\x8e\xb9"=>"\xf3\xbe\xa0\x97", "\xf0\x9f\x8e\xba"=>"\xf3\xbe\xa0\x98", 
				"\xf0\x9f\x8e\xbb"=>"\xf3\xbe\xa0\x99", "\xf0\x9f\x8e\xbc"=>"\xf3\xbe\xa0\x9a", "\xe3\x80\xbd"=>"\xf3\xbe\xa0\x9b", "\xf0\x9f\x93\xb7"=>"\xf3\xbe\x93\xaf", "\xf0\x9f\x93\xb9"=>"\xf3\xbe\x93\xb9", 
				"\xf0\x9f\x93\xba"=>"\xf3\xbe\xa0\x9c", "\xf0\x9f\x93\xbb"=>"\xf3\xbe\xa0\x9f", "\xf0\x9f\x93\xbc"=>"\xf3\xbe\xa0\xa0", "\xf0\x9f\x92\x8b"=>"\xf3\xbe\xa0\xa3", "\xf0\x9f\x92\x8c"=>"\xf3\xbe\xa0\xa4", 
				"\xf0\x9f\x92\x8d"=>"\xf3\xbe\xa0\xa5", "\xf0\x9f\x92\x8e"=>"\xf3\xbe\xa0\xa6", "\xf0\x9f\x92\x8f"=>"\xf3\xbe\xa0\xa7", "\xf0\x9f\x92\x90"=>"\xf3\xbe\xa0\xa8", "\xf0\x9f\x92\x91"=>"\xf3\xbe\xa0\xa9", 
				"\xf0\x9f\x92\x92"=>"\xf3\xbe\xa0\xaa", "\xf0\x9f\x94\x9e"=>"\xf3\xbe\xac\xa5", "\xc2\xa9"=>"\xf3\xbe\xac\xa9", "\xc2\xae"=>"\xf3\xbe\xac\xad", "\xe2\x84\xa2"=>"\xf3\xbe\xac\xaa", 
				"\xe2\x84\xb9"=>"\xf3\xbe\xad\x87", "#\xe2\x83\xa3"=>"\xf3\xbe\xa0\xac", "1\xe2\x83\xa3"=>"\xf3\xbe\xa0\xae", "2\xe2\x83\xa3"=>"\xf3\xbe\xa0\xaf", "3\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb0", 
				"4\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb1", "5\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb2", "6\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb3", "7\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb4", "8\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb5", 
				"9\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb6", "0\xe2\x83\xa3"=>"\xf3\xbe\xa0\xb7", "\xf0\x9f\x94\x9f"=>"\xf3\xbe\xa0\xbb", "\xf0\x9f\x93\xb6"=>"\xf3\xbe\xa0\xb8", "\xf0\x9f\x93\xb3"=>"\xf3\xbe\xa0\xb9", 
				"\xf0\x9f\x93\xb4"=>"\xf3\xbe\xa0\xba", "\xf0\x9f\x8d\x94"=>"\xf3\xbe\xa5\xa0", "\xf0\x9f\x8d\x99"=>"\xf3\xbe\xa5\xa1", "\xf0\x9f\x8d\xb0"=>"\xf3\xbe\xa5\xa2", "\xf0\x9f\x8d\x9c"=>"\xf3\xbe\xa5\xa3", 
				"\xf0\x9f\x8d\x9e"=>"\xf3\xbe\xa5\xa4", "\xf0\x9f\x8d\xb3"=>"\xf3\xbe\xa5\xa5", "\xf0\x9f\x8d\xa6"=>"\xf3\xbe\xa5\xa6", "\xf0\x9f\x8d\x9f"=>"\xf3\xbe\xa5\xa7", "\xf0\x9f\x8d\xa1"=>"\xf3\xbe\xa5\xa8", 
				"\xf0\x9f\x8d\x98"=>"\xf3\xbe\xa5\xa9", "\xf0\x9f\x8d\x9a"=>"\xf3\xbe\xa5\xaa", "\xf0\x9f\x8d\x9d"=>"\xf3\xbe\xa5\xab", "\xf0\x9f\x8d\x9b"=>"\xf3\xbe\xa5\xac", "\xf0\x9f\x8d\xa2"=>"\xf3\xbe\xa5\xad", 
				"\xf0\x9f\x8d\xa3"=>"\xf3\xbe\xa5\xae", "\xf0\x9f\x8d\xb1"=>"\xf3\xbe\xa5\xaf", "\xf0\x9f\x8d\xb2"=>"\xf3\xbe\xa5\xb0", "\xf0\x9f\x8d\xa7"=>"\xf3\xbe\xa5\xb1", "\xf0\x9f\x8d\x96"=>"\xf3\xbe\xa5\xb2", 
				"\xf0\x9f\x8d\xa5"=>"\xf3\xbe\xa5\xb3", "\xf0\x9f\x8d\xa0"=>"\xf3\xbe\xa5\xb4", "\xf0\x9f\x8d\x95"=>"\xf3\xbe\xa5\xb5", "\xf0\x9f\x8d\x97"=>"\xf3\xbe\xa5\xb6", "\xf0\x9f\x8d\xa8"=>"\xf3\xbe\xa5\xb7", 
				"\xf0\x9f\x8d\xa9"=>"\xf3\xbe\xa5\xb8", "\xf0\x9f\x8d\xaa"=>"\xf3\xbe\xa5\xb9", "\xf0\x9f\x8d\xab"=>"\xf3\xbe\xa5\xba", "\xf0\x9f\x8d\xac"=>"\xf3\xbe\xa5\xbb", "\xf0\x9f\x8d\xad"=>"\xf3\xbe\xa5\xbc", 
				"\xf0\x9f\x8d\xae"=>"\xf3\xbe\xa5\xbd", "\xf0\x9f\x8d\xaf"=>"\xf3\xbe\xa5\xbe", "\xf0\x9f\x8d\xa4"=>"\xf3\xbe\xa5\xbf", "\xf0\x9f\x8d\xb4"=>"\xf3\xbe\xa6\x80", "\xe2\x98\x95"=>"\xf3\xbe\xa6\x81", 
				"\xf0\x9f\x8d\xb8"=>"\xf3\xbe\xa6\x82", "\xf0\x9f\x8d\xba"=>"\xf3\xbe\xa6\x83", "\xf0\x9f\x8d\xb5"=>"\xf3\xbe\xa6\x84", "\xf0\x9f\x8d\xb6"=>"\xf3\xbe\xa6\x85", "\xf0\x9f\x8d\xb7"=>"\xf3\xbe\xa6\x86", 
				"\xf0\x9f\x8d\xbb"=>"\xf3\xbe\xa6\x87", "\xf0\x9f\x8d\xb9"=>"\xf3\xbe\xa6\x88", "\xe2\x86\x97"=>"\xf3\xbe\xab\xb0", "\xe2\x86\x98"=>"\xf3\xbe\xab\xb1", "\xe2\x86\x96"=>"\xf3\xbe\xab\xb2", 
				"\xe2\x86\x99"=>"\xf3\xbe\xab\xb3", "\xe2\xa4\xb4"=>"\xf3\xbe\xab\xb4", "\xe2\xa4\xb5"=>"\xf3\xbe\xab\xb5", "\xe2\x86\x94"=>"\xf3\xbe\xab\xb6", "\xe2\x86\x95"=>"\xf3\xbe\xab\xb7", 
				"\xe2\xac\x86"=>"\xf3\xbe\xab\xb8", "\xe2\xac\x87"=>"\xf3\xbe\xab\xb9", "\xe2\x9e\xa1"=>"\xf3\xbe\xab\xba", "\xe2\xac\x85"=>"\xf3\xbe\xab\xbb", "\xe2\x96\xb6"=>"\xf3\xbe\xab\xbc", 
				"\xe2\x97\x80"=>"\xf3\xbe\xab\xbd", "\xe2\x8f\xa9"=>"\xf3\xbe\xab\xbe", "\xe2\x8f\xaa"=>"\xf3\xbe\xab\xbf", "\xe2\x8f\xab"=>"\xf3\xbe\xac\x83", "\xe2\x8f\xac"=>"\xf3\xbe\xac\x82", 
				"\xf0\x9f\x94\xba"=>"\xf3\xbe\xad\xb8", "\xf0\x9f\x94\xbb"=>"\xf3\xbe\xad\xb9", "\xf0\x9f\x94\xbc"=>"\xf3\xbe\xac\x81", "\xf0\x9f\x94\xbd"=>"\xf3\xbe\xac\x80", "\xe2\xad\x95"=>"\xf3\xbe\xad\x84", 
				"\xe2\x9d\x8c"=>"\xf3\xbe\xad\x85", "\xe2\x9d\x8e"=>"\xf3\xbe\xad\x86", "\xe2\x9d\x97"=>"\xf3\xbe\xac\x84", "\xe2\x81\x89"=>"\xf3\xbe\xac\x85", "\xe2\x80\xbc"=>"\xf3\xbe\xac\x86", 
				"\xe2\x9d\x93"=>"\xf3\xbe\xac\x89", "\xe2\x9d\x94"=>"\xf3\xbe\xac\x8a", "\xe2\x9d\x95"=>"\xf3\xbe\xac\x8b", "\xe3\x80\xb0"=>"\xf3\xbe\xac\x87", "\xe2\x9e\xb0"=>"\xf3\xbe\xac\x88", 
				"\xe2\x9e\xbf"=>"\xf3\xbe\xa0\xab", "\xe2\x9d\xa4"=>"\xf3\xbe\xac\x8c", "\xf0\x9f\x92\x93"=>"\xf3\xbe\xac\x8d", "\xf0\x9f\x92\x94"=>"\xf3\xbe\xac\x8e", "\xf0\x9f\x92\x95"=>"\xf3\xbe\xac\x8f", 
				"\xf0\x9f\x92\x96"=>"\xf3\xbe\xac\x90", "\xf0\x9f\x92\x97"=>"\xf3\xbe\xac\x91", "\xf0\x9f\x92\x98"=>"\xf3\xbe\xac\x92", "\xf0\x9f\x92\x99"=>"\xf3\xbe\xac\x93", "\xf0\x9f\x92\x9a"=>"\xf3\xbe\xac\x94", 
				"\xf0\x9f\x92\x9b"=>"\xf3\xbe\xac\x95", "\xf0\x9f\x92\x9c"=>"\xf3\xbe\xac\x96", "\xf0\x9f\x92\x9d"=>"\xf3\xbe\xac\x97", "\xf0\x9f\x92\x9e"=>"\xf3\xbe\xac\x98", "\xf0\x9f\x92\x9f"=>"\xf3\xbe\xac\x99", 
				"\xe2\x99\xa5"=>"\xf3\xbe\xac\x9a", "\xe2\x99\xa0"=>"\xf3\xbe\xac\x9b", "\xe2\x99\xa6"=>"\xf3\xbe\xac\x9c", "\xe2\x99\xa3"=>"\xf3\xbe\xac\x9d", "\xf0\x9f\x9a\xac"=>"\xf3\xbe\xac\x9e", 
				"\xf0\x9f\x9a\xad"=>"\xf3\xbe\xac\x9f", "\xe2\x99\xbf"=>"\xf3\xbe\xac\xa0", "\xf0\x9f\x9a\xa9"=>"\xf3\xbe\xac\xa2", "\xe2\x9a\xa0"=>"\xf3\xbe\xac\xa3", "\xe2\x9b\x94"=>"\xf3\xbe\xac\xa6", 
				"\xe2\x99\xbb"=>"\xf3\xbe\xac\xac", "\xf0\x9f\x9a\xb2"=>"\xf3\xbe\x9f\xab", "\xf0\x9f\x9a\xb6"=>"\xf3\xbe\x9f\xb0", "\xf0\x9f\x9a\xb9"=>"\xf3\xbe\xac\xb3", "\xf0\x9f\x9a\xba"=>"\xf3\xbe\xac\xb4", 
				"\xf0\x9f\x9b\x80"=>"\xf3\xbe\x94\x85", "\xf0\x9f\x9a\xbb"=>"\xf3\xbe\x94\x86", "\xf0\x9f\x9a\xbd"=>"\xf3\xbe\x94\x87", "\xf0\x9f\x9a\xbe"=>"\xf3\xbe\x94\x88", "\xf0\x9f\x9a\xbc"=>"\xf3\xbe\xac\xb5", 
				"\xf0\x9f\x9a\xaa"=>"\xf3\xbe\x93\xb3", "\xf0\x9f\x9a\xab"=>"\xf3\xbe\xad\x88", "\xe2\x9c\x94"=>"\xf3\xbe\xad\x89", "\xf0\x9f\x86\x91"=>"\xf3\xbe\xae\x84", "\xf0\x9f\x86\x92"=>"\xf3\xbe\xac\xb8", 
				"\xf0\x9f\x86\x93"=>"\xf3\xbe\xac\xa1", "\xf0\x9f\x86\x94"=>"\xf3\xbe\xae\x81", "\xf0\x9f\x86\x95"=>"\xf3\xbe\xac\xb6", "\xf0\x9f\x86\x96"=>"\xf3\xbe\xac\xa8", "\xf0\x9f\x86\x97"=>"\xf3\xbe\xac\xa7", 
				"\xf0\x9f\x86\x98"=>"\xf3\xbe\xad\x8f", "\xf0\x9f\x86\x99"=>"\xf3\xbe\xac\xb7", "\xf0\x9f\x86\x9a"=>"\xf3\xbe\xac\xb2", "\xf0\x9f\x88\x81"=>"\xf3\xbe\xac\xa4", "\xf0\x9f\x88\x82"=>"\xf3\xbe\xac\xbf", 
				"\xf0\x9f\x88\xb2"=>"\xf3\xbe\xac\xae", "\xf0\x9f\x88\xb3"=>"\xf3\xbe\xac\xaf", "\xf0\x9f\x88\xb4"=>"\xf3\xbe\xac\xb0", "\xf0\x9f\x88\xb5"=>"\xf3\xbe\xac\xb1", "\xf0\x9f\x88\xb6"=>"\xf3\xbe\xac\xb9", 
				"\xf0\x9f\x88\x9a"=>"\xf3\xbe\xac\xba", "\xf0\x9f\x88\xb7"=>"\xf3\xbe\xac\xbb", "\xf0\x9f\x88\xb8"=>"\xf3\xbe\xac\xbc", "\xf0\x9f\x88\xb9"=>"\xf3\xbe\xac\xbe", "\xf0\x9f\x88\xaf"=>"\xf3\xbe\xad\x80", 
				"\xf0\x9f\x88\xba"=>"\xf3\xbe\xad\x81", "\xe3\x8a\x99"=>"\xf3\xbe\xac\xab", "\xe3\x8a\x97"=>"\xf3\xbe\xad\x83", "\xf0\x9f\x89\x90"=>"\xf3\xbe\xac\xbd", "\xf0\x9f\x89\x91"=>"\xf3\xbe\xad\x90", 
				"\xe2\x9e\x95"=>"\xf3\xbe\xad\x91", "\xe2\x9e\x96"=>"\xf3\xbe\xad\x92", "\xe2\x9c\x96"=>"\xf3\xbe\xad\x93", "\xe2\x9e\x97"=>"\xf3\xbe\xad\x94", "\xf0\x9f\x92\xa0"=>"\xf3\xbe\xad\x95", 
				"\xf0\x9f\x92\xa1"=>"\xf3\xbe\xad\x96", "\xf0\x9f\x92\xa2"=>"\xf3\xbe\xad\x97", "\xf0\x9f\x92\xa3"=>"\xf3\xbe\xad\x98", "\xf0\x9f\x92\xa4"=>"\xf3\xbe\xad\x99", "\xf0\x9f\x92\xa5"=>"\xf3\xbe\xad\x9a", 
				"\xf0\x9f\x92\xa6"=>"\xf3\xbe\xad\x9b", "\xf0\x9f\x92\xa7"=>"\xf3\xbe\xad\x9c", "\xf0\x9f\x92\xa8"=>"\xf3\xbe\xad\x9d", "\xf0\x9f\x92\xa9"=>"\xf3\xbe\x93\xb4", "\xf0\x9f\x92\xaa"=>"\xf3\xbe\xad\x9e", 
				"\xf0\x9f\x92\xab"=>"\xf3\xbe\xad\x9f", "\xf0\x9f\x92\xac"=>"\xf3\xbe\x94\xb2", "\xe2\x9c\xa8"=>"\xf3\xbe\xad\xa0", "\xe2\x9c\xb4"=>"\xf3\xbe\xad\xa1", "\xe2\x9c\xb3"=>"\xf3\xbe\xad\xa2", 
				"\xe2\x9a\xaa"=>"\xf3\xbe\xad\xa5", "\xe2\x9a\xab"=>"\xf3\xbe\xad\xa6", "\xf0\x9f\x94\xb4"=>"\xf3\xbe\xad\xa3", "\xf0\x9f\x94\xb5"=>"\xf3\xbe\xad\xa4", "\xf0\x9f\x94\xb2"=>"\xf3\xbe\xad\xa4", 
				"\xf0\x9f\x94\xb3"=>"\xf3\xbe\xad\xa7", "\xe2\xad\x90"=>"\xf3\xbe\xad\xa8", "\xe2\xac\x9c"=>"\xf3\xbe\xad\xab", "\xe2\xac\x9b"=>"\xf3\xbe\xad\xac", "\xe2\x96\xab"=>"\xf3\xbe\xad\xad", 
				"\xe2\x96\xaa"=>"\xf3\xbe\xad\xae", "\xe2\x97\xbd"=>"\xf3\xbe\xad\xaf", "\xe2\x97\xbe"=>"\xf3\xbe\xad\xb0", "\xe2\x97\xbb"=>"\xf3\xbe\xad\xb1", "\xe2\x97\xbc"=>"\xf3\xbe\xad\xb2", 
				"\xf0\x9f\x94\xb6"=>"\xf3\xbe\xad\xb3", "\xf0\x9f\x94\xb7"=>"\xf3\xbe\xad\xb4", "\xf0\x9f\x94\xb8"=>"\xf3\xbe\xad\xb5", "\xf0\x9f\x94\xb9"=>"\xf3\xbe\xad\xb6", "\xe2\x9d\x87"=>"\xf3\xbe\xad\xb7", 
				"\xf0\x9f\x92\xae"=>"\xf3\xbe\xad\xba", "\xf0\x9f\x92\xaf"=>"\xf3\xbe\xad\xbb", "\xe2\x86\xa9"=>"\xf3\xbe\xae\x83", "\xe2\x86\xaa"=>"\xf3\xbe\xae\x88", "\xf0\x9f\x94\x83"=>"\xf3\xbe\xae\x91", 
				"\xf0\x9f\x94\x8a"=>"\xf3\xbe\xa0\xa1", "\xf0\x9f\x94\x8b"=>"\xf3\xbe\x93\xbc", "\xf0\x9f\x94\x8c"=>"\xf3\xbe\x93\xbe", "\xf0\x9f\x94\x8d"=>"\xf3\xbe\xae\x85", "\xf0\x9f\x94\x8e"=>"\xf3\xbe\xae\x8d", 
				"\xf0\x9f\x94\x92"=>"\xf3\xbe\xae\x86", "\xf0\x9f\x94\x93"=>"\xf3\xbe\xae\x87", "\xf0\x9f\x94\x8f"=>"\xf3\xbe\xae\x90", "\xf0\x9f\x94\x90"=>"\xf3\xbe\xae\x8a", "\xf0\x9f\x94\x91"=>"\xf3\xbe\xae\x82", 
				"\xf0\x9f\x94\x94"=>"\xf3\xbe\x93\xb2", "\xe2\x98\x91"=>"\xf3\xbe\xae\x8b", "\xf0\x9f\x94\x98"=>"\xf3\xbe\xae\x8c", "\xf0\x9f\x94\x96"=>"\xf3\xbe\xae\x8f", "\xf0\x9f\x94\x97"=>"\xf3\xbe\xad\x8b", 
				"\xf0\x9f\x94\x99"=>"\xf3\xbe\xae\x8e", "\xf0\x9f\x94\x9a"=>"\xf3\xbe\x80\x9a", "\xf0\x9f\x94\x9b"=>"\xf3\xbe\x80\x99", "\xf0\x9f\x94\x9c"=>"\xf3\xbe\x80\x98", "\xf0\x9f\x94\x9d"=>"\xf3\xbe\xad\x82", 
				"\xe2\x9c\x85"=>"\xf3\xbe\xad\x8a", "\xe2\x9c\x8a"=>"\xf3\xbe\xae\x93", "\xe2\x9c\x8b"=>"\xf3\xbe\xae\x95", "\xe2\x9c\x8c"=>"\xf3\xbe\xae\x94", "\xf0\x9f\x91\x8a"=>"\xf3\xbe\xae\x96", 
				"\xf0\x9f\x91\x8d"=>"\xf3\xbe\xae\x97", "\xe2\x98\x9d"=>"\xf3\xbe\xae\x98", "\xf0\x9f\x91\x86"=>"\xf3\xbe\xae\x99", "\xf0\x9f\x91\x87"=>"\xf3\xbe\xae\x9a", "\xf0\x9f\x91\x88"=>"\xf3\xbe\xae\x9b", 
				"\xf0\x9f\x91\x89"=>"\xf3\xbe\xae\x9c", "\xf0\x9f\x91\x8b"=>"\xf3\xbe\xae\x9d", "\xf0\x9f\x91\x8f"=>"\xf3\xbe\xae\x9e", "\xf0\x9f\x91\x8c"=>"\xf3\xbe\xae\x9f", "\xf0\x9f\x91\x8e"=>"\xf3\xbe\xae\xa0", 
				"\xf0\x9f\x91\x90"=>"\xf3\xbe\xae\xa1", 
			),
			'docomo_to_unified' => array(
				"\xee\x98\xbe"=>"\xf0\x9f\x8c\x87", "\xee\x98\xbf"=>"\xe2\x98\x81", "\xee\x99\x80"=>"\xe2\x98\x94", "\xee\x99\x81"=>"\xe2\x9b\x84", 
				"\xee\x99\x82"=>"\xe2\x9a\xa1", "\xee\x99\x83"=>"\xf0\x9f\x8d\xa5", "\xee\x99\x84"=>"\xf0\x9f\x8c\x81", "\xee\x99\x85"=>"\xf0\x9f\x8c\x82", "\xee\x9a\xb3"=>"\xf0\x9f\x8c\x8c", 
				"[\xe5\xa4\x95\xe7\x84\xbc\xe3\x81\x91]"=>"\xf0\x9f\x8c\x86", "[\xe8\x99\xb9]"=>"\xf0\x9f\x8c\x88", "[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]"=>"\xe2\x9d\x84", "\xee\x98\xbe\xee\x98\xbf"=>"\xe2\x9b\x85", "\xee\x9c\xbf"=>"\xf0\x9f\x8c\x8a", 
				"[\xe7\x81\xab\xe5\xb1\xb1]"=>"\xf0\x9f\x8c\x8b", "[\xe5\x9c\xb0\xe7\x90\x83]"=>"\xf0\x9f\x8c\x8f", "\xee\x9a\x9c"=>"\xf0\x9f\x94\xb3", "\xee\x9a\x9d"=>"\xf0\x9f\x8c\x94", "\xee\x9a\x9e"=>"\xf0\x9f\x8c\x9b", 
				"\xee\x9a\x9f"=>"\xf0\x9f\x8c\x99", "\xee\x9a\xa0"=>"\xe2\xad\x95", "[\xe2\x98\x86]"=>"\xe2\xad\x90", "\xe2\x98\x86\xe5\xbd\xa1"=>"\xf0\x9f\x8c\xa0", "\xee\x9a\xba"=>"\xe2\x8f\xb0", 
				"\xee\x9c\x9f"=>"\xe2\x8c\x9a", "\xee\x9c\x9c"=>"\xe2\x8f\xb3", "\xee\x99\x86"=>"\xe2\x99\x88", "\xee\x99\x87"=>"\xe2\x99\x89", "\xee\x99\x88"=>"\xe2\x99\x8a", 
				"\xee\x99\x89"=>"\xe2\x99\x8b", "\xee\x99\x8a"=>"\xe2\x99\x8c", "\xee\x99\x8b"=>"\xe2\x99\x8d", "\xee\x99\x8c"=>"\xe2\x99\x8e", "\xee\x99\x8d"=>"\xe2\x99\x8f", 
				"\xee\x99\x8e"=>"\xe2\x99\x90", "\xee\x99\x8f"=>"\xe2\x99\x91", "\xee\x99\x90"=>"\xe2\x99\x92", "\xee\x99\x91"=>"\xe2\x99\x93", "[\xe8\x9b\x87\xe4\xbd\xbf\xe5\xba\xa7]"=>"\xe2\x9b\x8e", 
				"\xee\x9d\x81"=>"\xf0\x9f\x8c\xbf", "\xee\x9d\x83"=>"\xf0\x9f\x8c\xb7", "\xee\x9d\x86"=>"\xf0\x9f\x8c\xb1", "\xee\x9d\x87"=>"\xf0\x9f\x8d\x82", "\xee\x9d\x88"=>"\xf0\x9f\x8c\xb8", 
				"[\xe3\x83\x90\xe3\x83\xa9]"=>"\xf0\x9f\x8c\xb9", "[\xe9\xa2\xa8\xe3\x81\xab\xe8\x88\x9e\xe3\x81\x86\xe8\x91\x89]"=>"\xf0\x9f\x8d\x83", "[\xe3\x83\x8f\xe3\x82\xa4\xe3\x83\x93\xe3\x82\xb9\xe3\x82\xab\xe3\x82\xb9]"=>"\xf0\x9f\x8c\xba", "[\xe3\x81\xb2\xe3\x81\xbe\xe3\x82\x8f\xe3\x82\x8a]"=>"\xf0\x9f\x8c\xbb", "[\xe3\x83\xa4\xe3\x82\xb7]"=>"\xf0\x9f\x8c\xb4", 
				"[\xe3\x82\xb5\xe3\x83\x9c\xe3\x83\x86\xe3\x83\xb3]"=>"\xf0\x9f\x8c\xb5", "[\xe7\xa8\xb2\xe7\xa9\x82]"=>"\xf0\x9f\x8c\xbe", "[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]"=>"\xf0\x9f\x8c\xbd", "[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]"=>"\xf0\x9f\x8d\x84", "[\xe6\xa0\x97]"=>"\xf0\x9f\x8c\xb0", 
				"[\xe8\x8a\xb1]"=>"\xf0\x9f\x8c\xbc", "\xee\x9d\x82"=>"\xf0\x9f\x8d\x92", "\xee\x9d\x84"=>"\xf0\x9f\x8d\x8c", "\xee\x9d\x85"=>"\xf0\x9f\x8d\x8f", "[\xe3\x81\xbf\xe3\x81\x8b\xe3\x82\x93]"=>"\xf0\x9f\x8d\x8a", 
				"[\xe3\x82\xa4\xe3\x83\x81\xe3\x82\xb4]"=>"\xf0\x9f\x8d\x93", "[\xe3\x82\xb9\xe3\x82\xa4\xe3\x82\xab]"=>"\xf0\x9f\x8d\x89", "[\xe3\x83\x88\xe3\x83\x9e\xe3\x83\x88]"=>"\xf0\x9f\x8d\x85", "[\xe3\x83\x8a\xe3\x82\xb9]"=>"\xf0\x9f\x8d\x86", "[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x88", 
				"[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x8d\x8d", "[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]"=>"\xf0\x9f\x8d\x87", "[\xe3\x83\xa2\xe3\x83\xa2]"=>"\xf0\x9f\x8d\x91", "\xee\x9a\x91"=>"\xf0\x9f\x91\x80", "\xee\x9a\x92"=>"\xf0\x9f\x91\x82", 
				"[\xe9\xbc\xbb]"=>"\xf0\x9f\x91\x83", "\xee\x9b\xb9"=>"\xf0\x9f\x92\x8f", "\xee\x9c\xa8"=>"\xf0\x9f\x98\x9d", "\xee\x9c\x90"=>"\xf0\x9f\x92\x84", "[\xe3\x83\x9e\xe3\x83\x8b\xe3\x82\xad\xe3\x83\xa5\xe3\x82\xa2]"=>"\xf0\x9f\x92\x85", 
				"[\xe3\x82\xa8\xe3\x82\xb9\xe3\x83\x86]"=>"\xf0\x9f\x92\x86", "\xee\x99\xb5"=>"\xe2\x9c\x82", "[\xe5\xba\x8a\xe5\xb1\x8b]"=>"\xf0\x9f\x92\x88", "\xee\x9a\xb1"=>"\xf0\x9f\x91\xa4", "\xee\x9b\xb0"=>"\xf0\x9f\x98\xba", 
				"[\xe5\xae\xb6\xe6\x97\x8f]"=>"\xf0\x9f\x91\xaa", "[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x91\xab", "[\xe8\xad\xa6\xe5\xae\x98]"=>"\xf0\x9f\x91\xae", "[\xe3\x83\x90\xe3\x83\x8b\xe3\x83\xbc]"=>"\xf0\x9f\x91\xaf", "[\xe8\x8a\xb1\xe5\xab\x81]"=>"\xf0\x9f\x91\xb0", 
				"[\xe7\x99\xbd\xe4\xba\xba]"=>"\xf0\x9f\x91\xb1", "[\xe4\xb8\xad\xe5\x9b\xbd\xe4\xba\xba]"=>"\xf0\x9f\x91\xb2", "[\xe3\x82\xa4\xe3\x83\xb3\xe3\x83\x89\xe4\xba\xba]"=>"\xf0\x9f\x91\xb3", "[\xe3\x81\x8a\xe3\x81\x98\xe3\x81\x84\xe3\x81\x95\xe3\x82\x93]"=>"\xf0\x9f\x91\xb4", "[\xe3\x81\x8a\xe3\x81\xb0\xe3\x81\x82\xe3\x81\x95\xe3\x82\x93]"=>"\xf0\x9f\x91\xb5", 
				"[\xe8\xb5\xa4\xe3\x81\xa1\xe3\x82\x83\xe3\x82\x93]"=>"\xf0\x9f\x9a\xbc", "[\xe5\xb7\xa5\xe4\xba\x8b\xe7\x8f\xbe\xe5\xa0\xb4\xe3\x81\xae\xe4\xba\xba]"=>"\xf0\x9f\x91\xb7", "[\xe3\x81\x8a\xe5\xa7\xab\xe6\xa7\x98]"=>"\xf0\x9f\x91\xb8", "[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]"=>"\xf0\x9f\x91\xb9", "[\xe5\xa4\xa9\xe7\x8b\x97]"=>"\xf0\x9f\x91\xba", 
				"[\xe3\x81\x8a\xe5\x8c\x96\xe3\x81\x91]"=>"\xf0\x9f\x91\xbb", "[\xe5\xa4\xa9\xe4\xbd\xbf]"=>"\xf0\x9f\x91\xbc", "[UFO]"=>"\xf0\x9f\x91\xbd", "[\xe5\xae\x87\xe5\xae\x99\xe4\xba\xba]"=>"\xf0\x9f\x91\xbe", "[\xe3\x82\xa2\xe3\x82\xaf\xe3\x83\x9e]"=>"\xf0\x9f\x91\xbf", 
				"[\xe3\x83\x89\xe3\x82\xaf\xe3\x83\xad]"=>"\xf0\x9f\x92\x80", "[\xe6\xa1\x88\xe5\x86\x85]"=>"\xf0\x9f\x92\x81", "[\xe8\xa1\x9b\xe5\x85\xb5]"=>"\xf0\x9f\x92\x82", "[\xe3\x83\x80\xe3\x83\xb3\xe3\x82\xb9]"=>"\xf0\x9f\x92\x83", "\xee\x9d\x8e"=>"\xf0\x9f\x90\x8c", 
				"[\xe3\x83\x98\xe3\x83\x93]"=>"\xf0\x9f\x90\x8d", "\xee\x9d\x94"=>"\xf0\x9f\x90\xb4", "[\xe3\x83\x8b\xe3\x83\xaf\xe3\x83\x88\xe3\x83\xaa]"=>"\xf0\x9f\x90\x94", "[\xe3\x82\xa4\xe3\x83\x8e\xe3\x82\xb7\xe3\x82\xb7]"=>"\xf0\x9f\x90\x97", "[\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\x80]"=>"\xf0\x9f\x90\xab", 
				"[\xe3\x82\xbe\xe3\x82\xa6]"=>"\xf0\x9f\x90\x98", "[\xe3\x82\xb3\xe3\x82\xa2\xe3\x83\xa9]"=>"\xf0\x9f\x90\xa8", "[\xe3\x82\xb5\xe3\x83\xab]"=>"\xf0\x9f\x90\xb5", "[\xe3\x83\x92\xe3\x83\x84\xe3\x82\xb8]"=>"\xf0\x9f\x90\x91", "[\xe3\x82\xbf\xe3\x82\xb3]"=>"\xf0\x9f\x90\x99", 
				"[\xe5\xb7\xbb\xe8\xb2\x9d]"=>"\xf0\x9f\x90\x9a", "[\xe3\x82\xb2\xe3\x82\xb8\xe3\x82\xb2\xe3\x82\xb8]"=>"\xf0\x9f\x90\x9b", "[\xe3\x82\xa2\xe3\x83\xaa]"=>"\xf0\x9f\x90\x9c", "[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]"=>"\xf0\x9f\x90\x9d", "[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]"=>"\xf0\x9f\x90\x9e", 
				"\xee\x9d\x91"=>"\xf0\x9f\x8e\xa3", "[\xe3\x82\xab\xe3\x83\xa1]"=>"\xf0\x9f\x90\xa2", "\xee\x9d\x8f"=>"\xf0\x9f\x90\xa3", "\xee\x9d\x90"=>"\xf0\x9f\x90\xa7", "\xee\x9a\xa1"=>"\xf0\x9f\x90\xba", 
				"[\xe3\x82\xa4\xe3\x83\xab\xe3\x82\xab]"=>"\xf0\x9f\x90\xac", "[\xe3\x83\x8d\xe3\x82\xba\xe3\x83\x9f]"=>"\xf0\x9f\x90\xad", "[\xe3\x83\x88\xe3\x83\xa9]"=>"\xf0\x9f\x90\xaf", "\xee\x9a\xa2"=>"\xf0\x9f\x90\xb1", "[\xe3\x82\xaf\xe3\x82\xb8\xe3\x83\xa9]"=>"\xf0\x9f\x90\xb3", 
				"\xee\x9d\x95"=>"\xf0\x9f\x90\xbd", "[\xe3\x82\xaf\xe3\x83\x9e]"=>"\xf0\x9f\x90\xbb", "[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x90\xb9", "[\xe7\x89\x9b]"=>"\xf0\x9f\x90\xae", "[\xe3\x82\xa6\xe3\x82\xb5\xe3\x82\xae]"=>"\xf0\x9f\x90\xb0", 
				"[\xe3\x82\xab\xe3\x82\xa8\xe3\x83\xab]"=>"\xf0\x9f\x90\xb8", "\xee\x9a\x98"=>"\xf0\x9f\x91\xa3", "[\xe8\xbe\xb0]"=>"\xf0\x9f\x90\xb2", "[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]"=>"\xf0\x9f\x90\xbc", "\xee\x9b\xb1"=>"\xf0\x9f\x99\x8e", 
				"\xee\x9b\xb3"=>"\xf0\x9f\x99\x8d", "\xee\x9b\xb4"=>"\xf0\x9f\x98\xb5", "\xee\x9b\xb2"=>"\xf0\x9f\x98\x9e", "\xee\x9c\xa3"=>"\xf0\x9f\x98\xa5", "\xee\x9c\xa5"=>"\xf0\x9f\x98\x92", 
				"\xee\x9c\xa6"=>"\xf0\x9f\x98\xbb", "\xee\x9d\x93"=>"\xf0\x9f\x98\xbc", "\xee\x9d\x92"=>"\xf0\x9f\x98\x8b", "[\xe9\xa2\xa8\xe9\x82\xaa\xe3\x81\xb2\xe3\x81\x8d]"=>"\xf0\x9f\x98\xb7", "\xee\x9c\xaa"=>"\xf0\x9f\x98\xb9", 
				"\xee\x9c\xa2"=>"\xf0\x9f\x98\x85", "\xee\x9c\xae"=>"\xf0\x9f\x98\xbf", "\xee\x9c\xad"=>"\xf0\x9f\x98\xad", "\xee\x9d\x97"=>"\xf0\x9f\x98\xb1", "\xee\x9c\xab"=>"\xf0\x9f\x98\xab", 
				"\xee\x9c\xa4"=>"\xf0\x9f\x98\xbe", "\xee\x9c\xa1"=>"\xf0\x9f\x98\x8c", "\xee\x9c\xa0"=>"\xf0\x9f\x98\x94", "\xee\x9c\x81"=>"\xf0\x9f\x92\xa4", "\xee\x9c\xac"=>"\xf0\x9f\x98\x8f", 
				"\xee\x9c\xa9"=>"\xf0\x9f\x98\x89", "\xee\x9c\xaf"=>"\xf0\x9f\x86\x96", "\xee\x9c\x8b"=>"\xf0\x9f\x91\x8c", "m(_ _)m"=>"\xf0\x9f\x99\x87", "(/_\xef\xbc\xbc)"=>"\xf0\x9f\x99\x88", 
				"(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)"=>"\xf0\x9f\x99\x8a", "|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|"=>"\xf0\x9f\x99\x89", "(^-^)/"=>"\xf0\x9f\x99\x8b", "\xef\xbc\xbc(^o^)\xef\xbc\x8f"=>"\xf0\x9f\x99\x8c", "(>\xe4\xba\xba<)"=>"\xf0\x9f\x99\x8f", 
				"\xee\x99\xa3"=>"\xf0\x9f\x8f\xa1", "\xee\x99\xa4"=>"\xf0\x9f\x8f\xa2", "\xee\x99\xa5"=>"\xf0\x9f\x93\xae", "\xee\x99\xa6"=>"\xf0\x9f\x8f\xa5", "\xee\x99\xa7"=>"\xf0\x9f\x8f\xa6", 
				"\xee\x99\xa8"=>"\xf0\x9f\x8f\xa7", "\xee\x99\xa9"=>"\xf0\x9f\x8f\xa8", "\xee\x99\xa9\xee\x9b\xaf"=>"\xf0\x9f\x8f\xa9", "\xee\x99\xaa"=>"\xf0\x9f\x8f\xaa", "\xee\x9c\xbe"=>"\xf0\x9f\x8f\xab", 
				"[\xe6\x95\x99\xe4\xbc\x9a]"=>"\xe2\x9b\xaa", "[\xe5\x99\xb4\xe6\xb0\xb4]"=>"\xe2\x9b\xb2", "[\xe3\x83\x87\xe3\x83\x91\xe3\x83\xbc\xe3\x83\x88]"=>"\xf0\x9f\x8f\xac", "[\xe5\x9f\x8e]"=>"\xf0\x9f\x8f\xb0", "[\xe5\xb7\xa5\xe5\xa0\xb4]"=>"\xf0\x9f\x8f\xad", 
				"\xee\x99\xa1"=>"\xf0\x9f\x9a\xa2", "\xee\x9d\x8b"=>"\xf0\x9f\x8d\xb6", "\xee\x9d\x80"=>"\xf0\x9f\x97\xbb", "[\xe6\x9d\xb1\xe4\xba\xac\xe3\x82\xbf\xe3\x83\xaf\xe3\x83\xbc]"=>"\xf0\x9f\x97\xbc", "[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]"=>"\xf0\x9f\x97\xbd", 
				"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]"=>"\xf0\x9f\x97\xbe", "[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]"=>"\xf0\x9f\x97\xbf", "\xee\x9a\x99"=>"\xf0\x9f\x91\x9f", "\xee\x99\xb4"=>"\xf0\x9f\x91\xa1", "[\xe3\x83\x96\xe3\x83\xbc\xe3\x83\x84]"=>"\xf0\x9f\x91\xa2", 
				"\xee\x9a\x9a"=>"\xf0\x9f\x91\x93", "\xee\x9c\x8e"=>"\xf0\x9f\x91\x9a", "\xee\x9c\x91"=>"\xf0\x9f\x91\x96", "\xee\x9c\x9a"=>"\xf0\x9f\x94\xb1", "[\xe3\x83\x8d\xe3\x82\xaf\xe3\x82\xbf\xe3\x82\xa4]"=>"\xf0\x9f\x91\x94", 
				"[\xe5\xb8\xbd\xe5\xad\x90]"=>"\xf0\x9f\x91\x92", "[\xe3\x83\x89\xe3\x83\xac\xe3\x82\xb9]"=>"\xf0\x9f\x91\x97", "[\xe7\x9d\x80\xe7\x89\xa9]"=>"\xf0\x9f\x91\x98", "[\xe3\x83\x93\xe3\x82\xad\xe3\x83\x8b]"=>"\xf0\x9f\x91\x99", "\xee\x9c\x8f"=>"\xf0\x9f\x91\x9b", 
				"\xee\x9a\x82"=>"\xf0\x9f\x92\xbc", "\xee\x9a\xad"=>"\xf0\x9f\x91\x9d", "\xee\x9c\x95"=>"\xf0\x9f\x92\xb5", "[$\xef\xbf\xa5]"=>"\xf0\x9f\x92\xb1", "[\xe6\xa0\xaa\xe4\xbe\xa1]"=>"\xf0\x9f\x92\xb9", 
				"[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x92\xb3", "\xee\x9b\x96"=>"\xf0\x9f\x92\xb4", "[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]"=>"\xf0\x9f\x92\xb8", "[\xe4\xb8\xad\xe5\x9b\xbd]"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3", "[\xe3\x83\x89\xe3\x82\xa4\xe3\x83\x84]"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", 
				"[\xe3\x82\xb9\xe3\x83\x9a\xe3\x82\xa4\xe3\x83\xb3]"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "[\xe3\x83\x95\xe3\x83\xa9\xe3\x83\xb3\xe3\x82\xb9]"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "[\xe3\x82\xa4\xe3\x82\xae\xe3\x83\xaa\xe3\x82\xb9]"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "[\xe3\x82\xa4\xe3\x82\xbf\xe3\x83\xaa\xe3\x82\xa2]"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9", "[\xe6\x97\xa5\xe3\x81\xae\xe4\xb8\xb8]"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", 
				"[\xe9\x9f\x93\xe5\x9b\xbd]"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "[\xe3\x83\xad\xe3\x82\xb7\xe3\x82\xa2]"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "[USA]"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "[\xe7\x82\x8e]"=>"\xf0\x9f\x94\xa5", "\xee\x9b\xbb"=>"\xf0\x9f\x92\xa1", 
				"\xee\x9c\x98"=>"\xf0\x9f\x94\xa7", "[\xe3\x83\x8f\xe3\x83\xb3\xe3\x83\x9e\xe3\x83\xbc]"=>"\xf0\x9f\x94\xa8", "[\xe3\x83\x8d\xe3\x82\xb8]"=>"\xf0\x9f\x94\xa9", "[\xe5\x8c\x85\xe4\xb8\x81]"=>"\xf0\x9f\x94\xaa", "[\xe3\x83\x94\xe3\x82\xb9\xe3\x83\x88\xe3\x83\xab]"=>"\xf0\x9f\x94\xab", 
				"[\xe5\x8d\xa0\xe3\x81\x84]"=>"\xf0\x9f\x94\xaf", "[\xe8\x8b\xa5\xe8\x91\x89\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xf0\x9f\x94\xb0", "[\xe6\xb3\xa8\xe5\xb0\x84]"=>"\xf0\x9f\x92\x89", "[\xe8\x96\xac]"=>"\xf0\x9f\x92\x8a", "[A]"=>"\xf0\x9f\x85\xb0", 
				"[B]"=>"\xf0\x9f\x85\xb1", "[AB]"=>"\xf0\x9f\x86\x8e", "[O]"=>"\xf0\x9f\x85\xbe", "\xee\x9a\x84"=>"\xf0\x9f\x8e\x80", "\xee\x9a\x85"=>"\xf0\x9f\x93\xa6", 
				"\xee\x9a\x86"=>"\xf0\x9f\x8e\x82", "\xee\x9a\xa4"=>"\xf0\x9f\x8e\x84", "[\xe3\x82\xb5\xe3\x83\xb3\xe3\x82\xbf]"=>"\xf0\x9f\x8e\x85", "[\xe7\xa5\x9d\xe6\x97\xa5]"=>"\xf0\x9f\x8e\x8c", "[\xe8\x8a\xb1\xe7\x81\xab]"=>"\xf0\x9f\x8e\x86", 
				"[\xe9\xa2\xa8\xe8\x88\xb9]"=>"\xf0\x9f\x8e\x88", "[\xe3\x82\xaf\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x8e\x89", "[\xe9\x96\x80\xe6\x9d\xbe]"=>"\xf0\x9f\x8e\x8d", "[\xe3\x81\xb2\xe3\x81\xaa\xe7\xa5\xad\xe3\x82\x8a]"=>"\xf0\x9f\x8e\x8e", "[\xe5\x8d\x92\xe6\xa5\xad\xe5\xbc\x8f]"=>"\xf0\x9f\x8e\x93", 
				"[\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x89\xe3\x82\xbb\xe3\x83\xab]"=>"\xf0\x9f\x8e\x92", "[\xe3\x81\x93\xe3\x81\x84\xe3\x81\xae\xe3\x81\xbc\xe3\x82\x8a]"=>"\xf0\x9f\x8e\x8f", "[\xe7\xb7\x9a\xe9\xa6\x99\xe8\x8a\xb1\xe7\x81\xab]"=>"\xf0\x9f\x8e\x87", "[\xe9\xa2\xa8\xe9\x88\xb4]"=>"\xf0\x9f\x8e\x90", "[\xe3\x83\x8f\xe3\x83\xad\xe3\x82\xa6\xe3\x82\xa3\xe3\x83\xb3]"=>"\xf0\x9f\x8e\x83", 
				"[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]"=>"\xf0\x9f\x8e\x8a", "[\xe4\xb8\x83\xe5\xa4\x95]"=>"\xf0\x9f\x8e\x8b", "[\xe3\x81\x8a\xe6\x9c\x88\xe8\xa6\x8b]"=>"\xf0\x9f\x8e\x91", "\xee\x99\x9a"=>"\xf0\x9f\x93\x9f", "\xee\x9a\x87"=>"\xf0\x9f\x93\x9e", 
				"\xee\x9a\x88"=>"\xf0\x9f\x93\xb1", "\xee\x9b\x8e"=>"\xf0\x9f\x93\xb2", "\xee\x9a\x89"=>"\xf0\x9f\x93\x91", "\xee\x9b\x90"=>"\xf0\x9f\x93\xa0", "\xee\x9b\x93"=>"\xf0\x9f\x93\xa7", 
				"\xee\x9b\x8f"=>"\xf0\x9f\x93\xa9", "[\xe6\x96\xb0\xe8\x81\x9e]"=>"\xf0\x9f\x93\xb0", "[\xe3\x82\xb9\xe3\x83\x94\xe3\x83\xbc\xe3\x82\xab]"=>"\xf0\x9f\x94\x8a", "[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x9b\xe3\x83\xb3]"=>"\xf0\x9f\x93\xa3", "[\xe3\x82\xa2\xe3\x83\xb3\xe3\x83\x86\xe3\x83\x8a]"=>"\xf0\x9f\x93\xa1", 
				"[\xe9\x80\x81\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa4", "[\xe5\x8f\x97\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa5", "[ABCD]"=>"\xf0\x9f\x94\xa0", "[abcd]"=>"\xf0\x9f\x94\xa1", "[1234]"=>"\xf0\x9f\x94\xa2", 
				"[\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xf0\x9f\x94\xa3", "[ABC]"=>"\xf0\x9f\x94\xa4", "\xee\x9a\xae"=>"\xe2\x9c\x92", "\xee\x9a\xb2"=>"\xf0\x9f\x92\xba", "\xee\x9c\x96"=>"\xf0\x9f\x92\xbb", 
				"\xee\x9c\x99"=>"\xe2\x9c\x8f", "\xee\x9c\xb0"=>"\xf0\x9f\x93\x8e", "[MD]"=>"\xf0\x9f\x92\xbd", "[\xe3\x83\x95\xe3\x83\xad\xe3\x83\x83\xe3\x83\x94\xe3\x83\xbc]"=>"\xf0\x9f\x92\xbe", "\xee\x9a\x8c"=>"\xf0\x9f\x93\x80", 
				"[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]"=>"\xf0\x9f\x93\x8c", "[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]"=>"\xf0\x9f\x93\x86", "[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]"=>"\xf0\x9f\x93\x82", "\xee\x9a\x83"=>"\xf0\x9f\x93\x92", "[\xe5\x90\x8d\xe6\x9c\xad]"=>"\xf0\x9f\x93\x9b", 
				"\xee\x9c\x8a"=>"\xe2\x9e\xb0", "[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]"=>"\xf0\x9f\x93\x89", "[\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x8f", "[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x90", "\xee\x99\x92"=>"\xf0\x9f\x8e\xbd", 
				"\xee\x99\x93"=>"\xe2\x9a\xbe", "\xee\x99\x94"=>"\xe2\x9b\xb3", "\xee\x99\x95"=>"\xf0\x9f\x8e\xbe", "\xee\x99\x96"=>"\xe2\x9a\xbd", "\xee\x99\x97"=>"\xf0\x9f\x8e\xbf", 
				"\xee\x99\x98"=>"\xf0\x9f\x8f\x80", "\xee\x99\x99"=>"\xf0\x9f\x8f\x81", "\xee\x9c\x92"=>"\xf0\x9f\x8f\x84", "\xee\x9c\xb3"=>"\xf0\x9f\x9a\xb6", "[\xe3\x83\x88\xe3\x83\xad\xe3\x83\x95\xe3\x82\xa3\xe3\x83\xbc]"=>"\xf0\x9f\x8f\x86", 
				"[\xe3\x83\x95\xe3\x83\x83\xe3\x83\x88\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xab]"=>"\xf0\x9f\x8f\x88", "[\xe6\xb0\xb4\xe6\xb3\xb3]"=>"\xf0\x9f\x8f\x8a", "\xee\x99\x9b"=>"\xf0\x9f\x9a\x83", "\xee\x99\x9c"=>"\xe2\x93\x82", "\xee\x99\x9d"=>"\xf0\x9f\x9a\x85", 
				"\xee\x99\x9e"=>"\xf0\x9f\x9a\x95", "\xee\x99\x9f"=>"\xf0\x9f\x9a\x99", "\xee\x99\xa0"=>"\xf0\x9f\x9a\x8c", "[\xe3\x83\x90\xe3\x82\xb9\xe5\x81\x9c]"=>"\xf0\x9f\x9a\x8f", "\xee\x99\xa2"=>"\xe2\x9c\x88", 
				"\xee\x9a\xa3"=>"\xf0\x9f\x9a\xa4", "[\xe9\xa7\x85]"=>"\xf0\x9f\x9a\x89", "[\xe3\x83\xad\xe3\x82\xb1\xe3\x83\x83\xe3\x83\x88]"=>"\xf0\x9f\x9a\x80", "[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\x83\xe3\x82\xaf]"=>"\xf0\x9f\x9a\x9a", "[\xe6\xb6\x88\xe9\x98\xb2\xe8\xbb\x8a]"=>"\xf0\x9f\x9a\x92", 
				"[\xe6\x95\x91\xe6\x80\xa5\xe8\xbb\x8a]"=>"\xf0\x9f\x9a\x91", "[\xe3\x83\x91\xe3\x83\x88\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x9a\xa8", "\xee\x99\xab"=>"\xe2\x9b\xbd", "\xee\x99\xac"=>"\xf0\x9f\x85\xbf", "\xee\x99\xad"=>"\xf0\x9f\x9a\xa5", 
				"[\xe5\xb7\xa5\xe4\xba\x8b\xe4\xb8\xad]"=>"\xf0\x9f\x9a\xa7", "\xee\x9b\xb7"=>"\xf0\x9f\x9b\x80", "[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x97]"=>"\xe2\x9b\xba", "\xee\x99\xb9"=>"\xf0\x9f\x8e\xa0", "[\xe8\xa6\xb3\xe8\xa6\xa7\xe8\xbb\x8a]"=>"\xf0\x9f\x8e\xa1", 
				"[\xe3\x82\xb8\xe3\x82\xa7\xe3\x83\x83\xe3\x83\x88\xe3\x82\xb3\xe3\x83\xbc\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x8e\xa2", "\xee\x99\xb6"=>"\xf0\x9f\x8e\xa4", "\xee\x99\xb7"=>"\xf0\x9f\x93\xb9", "\xee\x99\xba"=>"\xf0\x9f\x8e\xa7", "\xee\x99\xbb"=>"\xf0\x9f\x8e\xa8", 
				"\xee\x99\xbc"=>"\xf0\x9f\x8e\xa9", "\xee\x99\xbd"=>"\xf0\x9f\x8e\xaa", "\xee\x99\xbe"=>"\xf0\x9f\x8e\xab", "\xee\x9a\xac"=>"\xf0\x9f\x8e\xac", "[\xe6\xbc\x94\xe5\x8a\x87]"=>"\xf0\x9f\x8e\xad", 
				"\xee\x9a\x8b"=>"\xf0\x9f\x8e\xae", "[\xe9\xba\xbb\xe9\x9b\x80]"=>"\xf0\x9f\x80\x84", "[\xe7\x9a\x84\xe4\xb8\xad]"=>"\xf0\x9f\x8e\xaf", "[777]"=>"\xf0\x9f\x8e\xb0", "[\xe3\x83\x93\xe3\x83\xaa\xe3\x83\xa4\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x8e\xb1", 
				"[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]"=>"\xf0\x9f\x8e\xb2", "[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]"=>"\xf0\x9f\x8e\xb3", "[\xe8\x8a\xb1\xe6\x9c\xad]"=>"\xf0\x9f\x8e\xb4", "[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x83\x8f", "\xee\x9b\xb6"=>"\xf0\x9f\x8e\xb5", 
				"\xee\x9b\xbf"=>"\xf0\x9f\x8e\xbc", "[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]"=>"\xf0\x9f\x8e\xb7", "[\xe3\x82\xae\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x8e\xb8", "[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]"=>"\xf0\x9f\x8e\xb9", "[\xe3\x83\x88\xe3\x83\xa9\xe3\x83\xb3\xe3\x83\x9a\xe3\x83\x83\xe3\x83\x88]"=>"\xf0\x9f\x8e\xba", 
				"[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8e\xbb", "[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xe3\x80\xbd", "\xee\x9a\x81"=>"\xf0\x9f\x93\xb7", "\xee\x9a\x8a"=>"\xf0\x9f\x93\xba", "[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa]"=>"\xf0\x9f\x93\xbb", 
				"[\xe3\x83\x93\xe3\x83\x87\xe3\x82\xaa]"=>"\xf0\x9f\x93\xbc", "\xee\x9c\x97"=>"\xf0\x9f\x92\x8c", "\xee\x9c\x9b"=>"\xf0\x9f\x92\x8e", "[\xe8\x8a\xb1\xe6\x9d\x9f]"=>"\xf0\x9f\x92\x90", "\xee\x9b\xad"=>"\xf0\x9f\x92\x9e", 
				"[\xe7\xb5\x90\xe5\xa9\x9a\xe5\xbc\x8f]"=>"\xf0\x9f\x92\x92", "[18\xe7\xa6\x81]"=>"\xf0\x9f\x94\x9e", "\xee\x9c\xb1"=>"\xc2\xa9", "\xee\x9c\xb6"=>"\xc2\xae", "\xee\x9c\xb2"=>"\xe2\x84\xa2", 
				"[\xef\xbd\x89]"=>"\xe2\x84\xb9", "\xee\x9b\xa0"=>"#\xe2\x83\xa3", "\xee\x9b\xa2"=>"1\xe2\x83\xa3", "\xee\x9b\xa3"=>"2\xe2\x83\xa3", "\xee\x9b\xa4"=>"3\xe2\x83\xa3", 
				"\xee\x9b\xa5"=>"4\xe2\x83\xa3", "\xee\x9b\xa6"=>"5\xe2\x83\xa3", "\xee\x9b\xa7"=>"6\xe2\x83\xa3", "\xee\x9b\xa8"=>"7\xe2\x83\xa3", "\xee\x9b\xa9"=>"8\xe2\x83\xa3", 
				"\xee\x9b\xaa"=>"9\xe2\x83\xa3", "\xee\x9b\xab"=>"0\xe2\x83\xa3", "[10]"=>"\xf0\x9f\x94\x9f", "[\xe3\x83\x90\xe3\x83\xaa3]"=>"\xf0\x9f\x93\xb6", "[\xe3\x83\x9e\xe3\x83\x8a\xe3\x83\xbc\xe3\x83\xa2\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x93\xb3", 
				"[\xe3\x82\xb1\xe3\x83\xbc\xe3\x82\xbf\xe3\x82\xa4OFF]"=>"\xf0\x9f\x93\xb4", "\xee\x99\xb3"=>"\xf0\x9f\x8d\x94", "\xee\x9d\x89"=>"\xf0\x9f\x8d\x99", "\xee\x9d\x8a"=>"\xf0\x9f\x8d\xb0", "\xee\x9d\x8c"=>"\xf0\x9f\x8d\x9a", 
				"\xee\x9d\x8d"=>"\xf0\x9f\x8d\x9e", "[\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4\xe3\x83\x91\xe3\x83\xb3]"=>"\xf0\x9f\x8d\xb3", "[\xe3\x82\xbd\xe3\x83\x95\xe3\x83\x88\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8d\xa6", "[\xe3\x83\x9d\xe3\x83\x86\xe3\x83\x88]"=>"\xf0\x9f\x8d\x9f", "[\xe3\x81\xa0\xe3\x82\x93\xe3\x81\x94]"=>"\xf0\x9f\x8d\xa1", 
				"[\xe3\x81\x9b\xe3\x82\x93\xe3\x81\xb9\xe3\x81\x84]"=>"\xf0\x9f\x8d\x98", "[\xe3\x83\x91\xe3\x82\xb9\xe3\x82\xbf]"=>"\xf0\x9f\x8d\x9d", "[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xbc]"=>"\xf0\x9f\x8d\x9b", "[\xe3\x81\x8a\xe3\x81\xa7\xe3\x82\x93]"=>"\xf0\x9f\x8d\xa2", "[\xe3\x81\x99\xe3\x81\x97]"=>"\xf0\x9f\x8d\xa3", 
				"[\xe5\xbc\x81\xe5\xbd\x93]"=>"\xf0\x9f\x8d\xb1", "[\xe9\x8d\x8b]"=>"\xf0\x9f\x8d\xb2", "[\xe3\x82\xab\xe3\x82\xad\xe6\xb0\xb7]"=>"\xf0\x9f\x8d\xa7", "[\xe8\x82\x89]"=>"\xf0\x9f\x8d\x96", "[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]"=>"\xf0\x9f\x8d\xa0", 
				"[\xe3\x83\x94\xe3\x82\xb6]"=>"\xf0\x9f\x8d\x95", "[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x97", "[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8d\xa8", "[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]"=>"\xf0\x9f\x8d\xa9", "[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]"=>"\xf0\x9f\x8d\xaa", 
				"[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]"=>"\xf0\x9f\x8d\xab", "[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]"=>"\xf0\x9f\x8d\xad", "[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8d\xae", "[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]"=>"\xf0\x9f\x8d\xaf", "[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]"=>"\xf0\x9f\x8d\xa4", 
				"\xee\x99\xaf"=>"\xf0\x9f\x8d\xb4", "\xee\x99\xb0"=>"\xe2\x98\x95", "\xee\x99\xb1"=>"\xf0\x9f\x8d\xb9", "\xee\x99\xb2"=>"\xf0\x9f\x8d\xbb", "\xee\x9c\x9e"=>"\xf0\x9f\x8d\xb5", 
				"\xee\x9d\x96"=>"\xf0\x9f\x8d\xb7", "\xee\x99\xb8"=>"\xe2\x86\x97", "\xee\x9a\x96"=>"\xe2\x86\x98", "\xee\x9a\x97"=>"\xe2\x86\x96", "\xee\x9a\xa5"=>"\xe2\x86\x99", 
				"\xee\x9b\xb5"=>"\xe2\xa4\xb4", "\xee\x9c\x80"=>"\xf0\x9f\x91\x8e", "\xee\x9c\xbc"=>"\xe2\x86\x94", "\xee\x9c\xbd"=>"\xe2\x86\x95", "[\xe2\x86\x91]"=>"\xf0\x9f\x91\x86", 
				"[\xe2\x86\x93]"=>"\xf0\x9f\x91\x87", "[\xe2\x86\x92]"=>"\xf0\x9f\x91\x89", "[\xe2\x86\x90]"=>"\xf0\x9f\x91\x88", "[>]"=>"\xe2\x96\xb6", "[<]"=>"\xe2\x97\x80", 
				"[>>]"=>"\xe2\x8f\xa9", "[<<]"=>"\xe2\x8f\xaa", "\xe2\x96\xb2"=>"\xf0\x9f\x94\xbc", "\xe2\x96\xbc"=>"\xf0\x9f\x94\xbd", "[\xc3\x97]"=>"\xe2\x9c\x96", 
				"\xee\x9c\x82"=>"\xe2\x9d\x95", "\xee\x9c\x83"=>"\xe2\x81\x89", "\xee\x9c\x84"=>"\xe2\x80\xbc", "[\xef\xbc\x9f]"=>"\xe2\x9d\x94", "\xee\x9c\x89"=>"\xe3\x80\xb0", 
				"\xee\x9b\x9f"=>"\xe2\x9e\xbf", "\xee\x9b\xac"=>"\xf0\x9f\x92\x9d", "\xee\x9b\xae"=>"\xf0\x9f\x92\x94", "\xee\x9b\xaf"=>"\xf0\x9f\x92\x95", "\xee\x9b\xb8"=>"\xe2\x9c\xb3", 
				"\xee\x9a\x8d"=>"\xe2\x99\xa5", "\xee\x9a\x8e"=>"\xe2\x99\xa0", "\xee\x9a\x8f"=>"\xe2\x99\xa6", "\xee\x9a\x90"=>"\xe2\x99\xa3", "\xee\x99\xbf"=>"\xf0\x9f\x9a\xac", 
				"\xee\x9a\x80"=>"\xf0\x9f\x9a\xad", "\xee\x9a\x9b"=>"\xe2\x99\xbf", "\xee\x9b\x9e"=>"\xf0\x9f\x9a\xa9", "\xee\x9c\xb7"=>"\xe2\x9a\xa0", "\xee\x9c\xb5"=>"\xf0\x9f\x94\x83", 
				"\xee\x9c\x9d"=>"\xf0\x9f\x9a\xb2", "[\xe2\x99\x82]"=>"\xf0\x9f\x9a\xb9", "[\xe2\x99\x80]"=>"\xf0\x9f\x9a\xba", "\xee\x99\xae"=>"\xf0\x9f\x9a\xbe", "\xee\x9c\x94"=>"\xf0\x9f\x9a\xaa", 
				"\xee\x9c\xb8"=>"\xf0\x9f\x88\xb2", "[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xe2\x9c\x85", "\xee\x9b\x9b"=>"\xf0\x9f\x86\x91", "[COOL]"=>"\xf0\x9f\x86\x92", "\xee\x9b\x97"=>"\xf0\x9f\x86\x93", 
				"\xee\x9b\x98"=>"\xf0\x9f\x86\x94", "\xee\x9b\x9d"=>"\xf0\x9f\x86\x95", "[SOS]"=>"\xf0\x9f\x86\x98", "[UP!]"=>"\xf0\x9f\x86\x99", "[VS]"=>"\xf0\x9f\x86\x9a", 
				"[\xe3\x82\xb3\xe3\x82\xb3]"=>"\xf0\x9f\x88\x81", "[\xe3\x82\xb5\xe3\x83\xbc\xe3\x83\x93\xe3\x82\xb9]"=>"\xf0\x9f\x88\x82", "\xee\x9c\xb9"=>"\xf0\x9f\x88\xb3", "\xee\x9c\xba"=>"\xf0\x9f\x88\xb4", "\xee\x9c\xbb"=>"\xf0\x9f\x88\xb5", 
				"[\xe6\x9c\x89]"=>"\xf0\x9f\x88\xb6", "[\xe7\x84\xa1]"=>"\xf0\x9f\x88\x9a", "[\xe6\x9c\x88]"=>"\xf0\x9f\x88\xb7", "[\xe7\x94\xb3]"=>"\xf0\x9f\x88\xb8", "[\xe5\x89\xb2]"=>"\xf0\x9f\x88\xb9", 
				"[\xe6\x8c\x87]"=>"\xf0\x9f\x88\xaf", "[\xe5\x96\xb6]"=>"\xf0\x9f\x88\xba", "\xee\x9c\xb4"=>"\xe3\x8a\x99", "[\xe7\xa5\x9d]"=>"\xe3\x8a\x97", "[\xe5\xbe\x97]"=>"\xf0\x9f\x89\x90", 
				"[\xe5\x8f\xaf]"=>"\xf0\x9f\x89\x91", "[\xef\xbc\x8b]"=>"\xe2\x9e\x95", "[\xef\xbc\x8d]"=>"\xe2\x9e\x96", "[\xc3\xb7]"=>"\xe2\x9e\x97", "\xee\x9b\xbc"=>"\xf0\x9f\x92\xa2", 
				"\xee\x9b\xbe"=>"\xf0\x9f\x92\xa3", "\xee\x9c\x85"=>"\xf0\x9f\x92\xa5", "\xee\x9c\x86"=>"\xf0\x9f\x92\xa6", "\xee\x9c\x87"=>"\xf0\x9f\x92\xa7", "\xee\x9c\x88"=>"\xf0\x9f\x92\xa8", 
				"[\xe3\x82\xa6\xe3\x83\xb3\xe3\x83\x81]"=>"\xf0\x9f\x92\xa9", "[\xe5\x8a\x9b\xe3\x81\x93\xe3\x81\xb6]"=>"\xf0\x9f\x92\xaa", "[\xe3\x82\xaf\xe3\x83\xa9\xe3\x82\xaf\xe3\x83\xa9]"=>"\xf0\x9f\x92\xab", "[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]"=>"\xf0\x9f\x92\xac", "\xee\x9b\xba"=>"\xe2\x9d\x87", 
				"\xe2\x96\xa0"=>"\xe2\x97\xbc", "\xe2\x97\x86"=>"\xf0\x9f\x94\xb9", "[\xe8\x8a\xb1\xe4\xb8\xb8]"=>"\xf0\x9f\x92\xae", "[100\xe7\x82\xb9]"=>"\xf0\x9f\x92\xaf", "\xee\x9b\x9a"=>"\xe2\x86\xa9", 
				"\xe2\x94\x94\xe2\x86\x92"=>"\xe2\x86\xaa", "[\xe9\x9b\xbb\xe6\xb1\xa0]"=>"\xf0\x9f\x94\x8b", "[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]"=>"\xf0\x9f\x94\x8c", "\xee\x9b\x9c"=>"\xf0\x9f\x94\x8e", "\xee\x9b\x99"=>"\xf0\x9f\x94\x91", 
				"\xee\x9c\x93"=>"\xf0\x9f\x94\x94", "[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]"=>"\xf0\x9f\x94\x98", "[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xf0\x9f\x94\x96", "[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]"=>"\xf0\x9f\x94\x97", "[\xe2\x86\x90BACK]"=>"\xf0\x9f\x94\x99", 
				"\xee\x9a\xb9"=>"\xf0\x9f\x94\x9a", "\xee\x9a\xb8"=>"\xf0\x9f\x94\x9b", "\xee\x9a\xb7"=>"\xf0\x9f\x94\x9c", "[TOP]"=>"\xf0\x9f\x94\x9d", "\xee\x9a\x93"=>"\xe2\x9c\x8a", 
				"\xee\x9a\x95"=>"\xf0\x9f\x91\x90", "\xee\x9a\x94"=>"\xe2\x9c\x8c", "\xee\x9b\xbd"=>"\xf0\x9f\x91\x8a", "\xee\x9c\xa7"=>"\xf0\x9f\x91\x8d", "[\xe4\xba\xba\xe5\xb7\xae\xe3\x81\x97\xe6\x8c\x87]"=>"\xe2\x98\x9d", 
				"[\xe6\x8b\x8d\xe6\x89\x8b]"=>"\xf0\x9f\x91\x8f", 
			),
			'kddi_to_unified' => array(
				"\xee\x92\x88"=>"\xe2\x98\x80", "\xee\x92\x8d"=>"\xe2\x98\x81", "\xee\x92\x8c"=>"\xe2\x98\x94", "\xee\x92\x85"=>"\xe2\x9b\x84", 
				"\xee\x92\x87"=>"\xe2\x9a\xa1", "\xee\x91\xa9"=>"\xf0\x9f\x8c\x80", "\xee\x96\x98"=>"\xf0\x9f\x8c\x81", "\xee\xab\xa8"=>"\xf0\x9f\x8c\x82", "\xee\xab\xb1"=>"\xf0\x9f\x8c\x83", 
				"\xee\xab\xb4"=>"\xf0\x9f\x8c\x85", "\xee\x97\x9a"=>"\xf0\x9f\x8c\x87", "\xee\xab\xb2"=>"\xf0\x9f\x8c\x88", "\xee\x92\x8a"=>"\xe2\x9d\x84", "\xee\x92\x8e"=>"\xe2\x9b\x85", 
				"\xee\x92\xbf"=>"\xf0\x9f\x8c\x89", "\xee\xad\xbc"=>"\xf0\x9f\x8c\x8a", "\xee\xad\x93"=>"\xf0\x9f\x8c\x8b", "\xee\xad\x9f"=>"\xf0\x9f\x8c\x8c", "\xee\x96\xb3"=>"\xf0\x9f\x8c\x8f", 
				"\xee\x96\xa8"=>"\xf0\x9f\x8c\x91", "\xee\x96\xa9"=>"\xf0\x9f\x8c\x94", "\xee\x96\xaa"=>"\xf0\x9f\x8c\x93", "\xee\x92\x86"=>"\xf0\x9f\x8c\x99", "\xe2\x97\x8b"=>"\xf0\x9f\x8c\x95", 
				"\xee\x92\x89"=>"\xf0\x9f\x8c\x9b", "\xee\x92\x8b"=>"\xe2\xad\x90", "\xee\x91\xa8"=>"\xf0\x9f\x8c\xa0", "\xee\x96\x94"=>"\xe2\x8f\xb0", "\xee\x95\xba"=>"\xe2\x8c\x9a", 
				"\xee\x95\xbb"=>"\xe2\x8c\x9b", "\xee\x91\xbc"=>"\xe2\x8f\xb3", "\xee\x92\x8f"=>"\xf0\x9f\x90\x91", "\xee\x92\x90"=>"\xe2\x99\x89", "\xee\x92\x91"=>"\xe2\x99\x8a", 
				"\xee\x92\x92"=>"\xe2\x99\x8b", "\xee\x92\x93"=>"\xe2\x99\x8c", "\xee\x92\x94"=>"\xe2\x99\x8d", "\xee\x92\x95"=>"\xe2\x99\x8e", "\xee\x92\x96"=>"\xe2\x99\x8f", 
				"\xee\x92\x97"=>"\xe2\x99\x90", "\xee\x92\x98"=>"\xe2\x99\x91", "\xee\x92\x99"=>"\xe2\x99\x92", "\xee\x92\x9a"=>"\xf0\x9f\x90\x9f", "\xee\x92\x9b"=>"\xe2\x9b\x8e", 
				"\xee\x94\x93"=>"\xf0\x9f\x8d\x80", "\xee\x93\xa4"=>"\xf0\x9f\x8c\xb7", "\xee\xad\xbd"=>"\xf0\x9f\x8c\xb1", "\xee\x93\x8e"=>"\xf0\x9f\x8d\x81", "\xee\x93\x8a"=>"\xf0\x9f\x8c\xb8", 
				"\xee\x96\xba"=>"\xf0\x9f\x8c\xb9", "\xee\x97\x8d"=>"\xf0\x9f\x8d\x83", "\xee\xaa\x94"=>"\xf0\x9f\x8c\xba", "\xee\x93\xa3"=>"\xf0\x9f\x8c\xbb", "\xee\x93\xa2"=>"\xf0\x9f\x8c\xb4", 
				"\xee\xaa\x96"=>"\xf0\x9f\x8c\xb5", "[\xe7\xa8\xb2\xe7\xa9\x82]"=>"\xf0\x9f\x8c\xbe", "\xee\xac\xb6"=>"\xf0\x9f\x8c\xbd", "\xee\xac\xb7"=>"\xf0\x9f\x8d\x84", "\xee\xac\xb8"=>"\xf0\x9f\x8c\xb0", 
				"\xee\xad\x89"=>"\xf0\x9f\x8c\xbc", "\xee\xae\x82"=>"\xf0\x9f\x8c\xbf", "\xee\x93\x92"=>"\xf0\x9f\x8d\x92", "\xee\xac\xb5"=>"\xf0\x9f\x8d\x8c", "\xee\xaa\xb9"=>"\xf0\x9f\x8d\x8e", 
				"\xee\xaa\xba"=>"\xf0\x9f\x8d\x8a", "\xee\x93\x94"=>"\xf0\x9f\x8d\x93", "\xee\x93\x8d"=>"\xf0\x9f\x8d\x89", "\xee\xaa\xbb"=>"\xf0\x9f\x8d\x85", "\xee\xaa\xbc"=>"\xf0\x9f\x8d\x86", 
				"\xee\xac\xb2"=>"\xf0\x9f\x8d\x88", "\xee\xac\xb3"=>"\xf0\x9f\x8d\x8d", "\xee\xac\xb4"=>"\xf0\x9f\x8d\x87", "\xee\xac\xb9"=>"\xf0\x9f\x8d\x91", "\xee\xad\x9a"=>"\xf0\x9f\x8d\x8f", 
				"\xee\x96\xa4"=>"\xf0\x9f\x91\x80", "\xee\x96\xa5"=>"\xf0\x9f\x91\x82", "\xee\xab\x90"=>"\xf0\x9f\x91\x83", "\xee\xab\x91"=>"\xf0\x9f\x91\x84", "\xee\xad\x87"=>"\xf0\x9f\x91\x85", 
				"\xee\x94\x89"=>"\xf0\x9f\x92\x84", "\xee\xaa\xa0"=>"\xf0\x9f\x92\x85", "\xee\x94\x8b"=>"\xf0\x9f\x92\x86", "\xee\xaa\xa1"=>"\xf0\x9f\x92\x87", "\xee\xaa\xa2"=>"\xf0\x9f\x92\x88", 
				"\xe3\x80\x93"=>"\xf0\x9f\x92\xa0", "\xee\x93\xbc"=>"\xf0\x9f\x91\xa8", "\xee\x93\xba"=>"\xf0\x9f\x91\xa9", "\xee\x94\x81"=>"\xf0\x9f\x91\xaa", "[\xe3\x82\xab\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x91\xab", 
				"\xee\x97\x9d"=>"\xf0\x9f\x91\xae", "\xee\xab\x9b"=>"\xf0\x9f\x91\xaf", "\xee\xab\xa9"=>"\xf0\x9f\x91\xb0", "\xee\xac\x93"=>"\xf0\x9f\x91\xb1", "\xee\xac\x94"=>"\xf0\x9f\x91\xb2", 
				"\xee\xac\x95"=>"\xf0\x9f\x91\xb3", "\xee\xac\x96"=>"\xf0\x9f\x91\xb4", "\xee\xac\x97"=>"\xf0\x9f\x91\xb5", "\xee\xac\x98"=>"\xf0\x9f\x9a\xbc", "\xee\xac\x99"=>"\xf0\x9f\x91\xb7", 
				"\xee\xac\x9a"=>"\xf0\x9f\x91\xb8", "\xee\xad\x84"=>"\xf0\x9f\x91\xb9", "\xee\xad\x85"=>"\xf0\x9f\x91\xba", "\xee\x93\x8b"=>"\xf0\x9f\x91\xbb", "\xee\x96\xbf"=>"\xf0\x9f\x91\xbc", 
				"\xee\x94\x8e"=>"\xf0\x9f\x91\xbd", "\xee\x93\xac"=>"\xf0\x9f\x91\xbe", "\xee\x93\xaf"=>"\xf0\x9f\x91\xbf", "\xee\x93\xb8"=>"\xf0\x9f\x92\x80", "[\xe6\xa1\x88\xe5\x86\x85]"=>"\xf0\x9f\x92\x81", 
				"[\xe8\xa1\x9b\xe5\x85\xb5]"=>"\xf0\x9f\x92\x82", "\xee\xac\x9c"=>"\xf0\x9f\x92\x83", "\xee\xad\xbe"=>"\xf0\x9f\x90\x8c", "\xee\xac\xa2"=>"\xf0\x9f\x90\x8d", "\xee\x93\x98"=>"\xf0\x9f\x90\xb4", 
				"\xee\xac\xa3"=>"\xf0\x9f\x90\x94", "\xee\xac\xa4"=>"\xf0\x9f\x90\x97", "\xee\xac\xa5"=>"\xf0\x9f\x90\xab", "\xee\xac\x9f"=>"\xf0\x9f\x90\x98", "\xee\xac\xa0"=>"\xf0\x9f\x90\xa8", 
				"\xee\x93\x99"=>"\xf0\x9f\x90\xb5", "\xee\x97\x87"=>"\xf0\x9f\x90\x99", "\xee\xab\xac"=>"\xf0\x9f\x90\x9a", "\xee\xac\x9e"=>"\xf0\x9f\x90\x9b", "\xee\x93\x9d"=>"\xf0\x9f\x90\x9c", 
				"\xee\xad\x97"=>"\xf0\x9f\x90\x9d", "\xee\xad\x98"=>"\xf0\x9f\x90\x9e", "\xee\xac\x9d"=>"\xf0\x9f\x90\xa0", "\xee\x93\x93"=>"\xf0\x9f\x90\xa1", "\xee\x97\x94"=>"\xf0\x9f\x90\xa2", 
				"\xee\x93\xa0"=>"\xf0\x9f\x90\xa6", "\xee\xad\xb6"=>"\xf0\x9f\x90\xa5", "\xee\x97\x9b"=>"\xf0\x9f\x90\xa3", "\xee\x93\x9c"=>"\xf0\x9f\x90\xa7", "\xee\x93\x9f"=>"\xf0\x9f\x90\xa9", 
				"\xee\xac\x9b"=>"\xf0\x9f\x90\xac", "\xee\x97\x82"=>"\xf0\x9f\x90\xad", "\xee\x97\x80"=>"\xf0\x9f\x90\xaf", "\xee\x93\x9b"=>"\xf0\x9f\x90\xb1", "\xee\x91\xb0"=>"\xf0\x9f\x90\xb3", 
				"\xee\x93\xa1"=>"\xf0\x9f\x90\xba", "\xee\x93\x9e"=>"\xf0\x9f\x90\xb7", "\xee\x97\x81"=>"\xf0\x9f\x90\xbb", "[\xe3\x83\x8f\xe3\x83\xa0\xe3\x82\xb9\xe3\x82\xbf\xe3\x83\xbc]"=>"\xf0\x9f\x90\xb9", "\xee\xac\xa1"=>"\xf0\x9f\x90\xae", 
				"\xee\x93\x97"=>"\xf0\x9f\x90\xb0", "\xee\x93\x9a"=>"\xf0\x9f\x90\xb8", "\xee\x93\xae"=>"\xf0\x9f\x90\xbe", "\xee\xac\xbf"=>"\xf0\x9f\x90\xb2", "\xee\xad\x86"=>"\xf0\x9f\x90\xbc", 
				"\xee\xad\x88"=>"\xf0\x9f\x90\xbd", "\xee\x91\xb2"=>"\xf0\x9f\x98\xa0", "\xee\xad\xa7"=>"\xf0\x9f\x98\xa9", "\xee\xab\x8a"=>"\xf0\x9f\x98\xb2", "\xee\xab\x80"=>"\xf0\x9f\x98\x94", 
				"\xee\x96\xae"=>"\xf0\x9f\x98\xb5", "\xee\xab\x8b"=>"\xf0\x9f\x98\xb0", "\xee\xab\x89"=>"\xf0\x9f\x98\x92", "\xee\x97\x84"=>"\xf0\x9f\x98\x8d", "\xee\xab\x81"=>"\xf0\x9f\x98\xa4", 
				"\xee\x93\xa7"=>"\xf0\x9f\x98\x9d", "\xee\xab\x8d"=>"\xf0\x9f\x98\x8a", "\xee\xab\x8f"=>"\xf0\x9f\x98\x98", "\xee\xab\x8e"=>"\xf0\x9f\x98\x9a", "\xee\xab\x87"=>"\xf0\x9f\x98\xb7", 
				"\xee\xab\x88"=>"\xf0\x9f\x98\xb3", "\xee\x91\xb1"=>"\xf0\x9f\x98\x84", "\xee\x91\xb1\xee\x96\xb1"=>"\xf0\x9f\x98\x85", "\xee\xab\x85"=>"\xf0\x9f\x98\x8c", "\xee\xae\x80"=>"\xf0\x9f\x98\x81", 
				"\xee\xad\xa4"=>"\xf0\x9f\x98\x82", "\xee\x93\xbb"=>"\xe2\x98\xba", "\xee\xad\xa9"=>"\xf0\x9f\x98\xa2", "\xee\x91\xb3"=>"\xf0\x9f\x98\xad", "\xee\xab\x86"=>"\xf0\x9f\x98\xa8", 
				"\xee\xab\x82"=>"\xf0\x9f\x98\xa3", "\xee\xad\x9d"=>"\xf0\x9f\x98\xa1", "\xee\xab\x83"=>"\xf0\x9f\x98\x96", "\xee\x97\x85"=>"\xf0\x9f\x98\xb1", "\xee\xab\x84"=>"\xf0\x9f\x98\xaa", 
				"\xee\xaa\xbf"=>"\xf0\x9f\x98\x8f", "\xee\x97\x86"=>"\xf0\x9f\x98\xa5", "\xee\x91\xb4"=>"\xf0\x9f\x98\xab", "\xee\x97\x83"=>"\xf0\x9f\x98\x89", "\xee\xad\xa1"=>"\xf0\x9f\x98\xba", 
				"\xee\xad\xbf"=>"\xf0\x9f\x98\xb8", "\xee\xad\xa3"=>"\xf0\x9f\x98\xb9", "\xee\xad\xa0"=>"\xf0\x9f\x98\xbd", "\xee\xad\xa5"=>"\xf0\x9f\x98\xbb", "\xee\xad\xa8"=>"\xf0\x9f\x98\xbf", 
				"\xee\xad\x9e"=>"\xf0\x9f\x98\xbe", "\xee\xad\xaa"=>"\xf0\x9f\x98\xbc", "\xee\xad\xa6"=>"\xf0\x9f\x99\x80", "\xee\xab\x97"=>"\xf0\x9f\x99\x85", "\xee\xab\x98"=>"\xf0\x9f\x99\x86", 
				"\xee\xab\x99"=>"\xf0\x9f\x99\x87", "\xee\xad\x90"=>"\xf0\x9f\x99\x88", "\xee\xad\x91"=>"\xf0\x9f\x99\x8a", "\xee\xad\x92"=>"\xf0\x9f\x99\x89", "\xee\xae\x85"=>"\xf0\x9f\x99\x8b", 
				"\xee\xae\x86"=>"\xf0\x9f\x99\x8c", "\xee\xae\x87"=>"\xf0\x9f\x99\x8d", "\xee\xae\x88"=>"\xf0\x9f\x99\x8e", "\xee\xab\x92"=>"\xf0\x9f\x99\x8f", "\xee\x92\xab"=>"\xf0\x9f\x8f\xa0", 
				"\xee\xac\x89"=>"\xf0\x9f\x8f\xa1", "\xee\x92\xad"=>"\xf0\x9f\x8f\xa2", "\xee\x97\x9e"=>"\xf0\x9f\x8f\xa3", "\xee\x97\x9f"=>"\xf0\x9f\x8f\xa5", "\xee\x92\xaa"=>"\xf0\x9f\x8f\xa6", 
				"\xee\x92\xa3"=>"\xf0\x9f\x8f\xa7", "\xee\xaa\x81"=>"\xf0\x9f\x8f\xa8", "\xee\xab\xb3"=>"\xf0\x9f\x8f\xa9", "\xee\x92\xa4"=>"\xf0\x9f\x8f\xaa", "\xee\xaa\x80"=>"\xf0\x9f\x8f\xab", 
				"\xee\x96\xbb"=>"\xf0\x9f\x92\x92", "\xee\x97\x8f"=>"\xe2\x9b\xb2", "\xee\xab\xb6"=>"\xf0\x9f\x8f\xac", "\xee\xab\xb7"=>"\xf0\x9f\x8f\xaf", "\xee\xab\xb8"=>"\xf0\x9f\x8f\xb0", 
				"\xee\xab\xb9"=>"\xf0\x9f\x8f\xad", "\xee\x92\xa9"=>"\xe2\x9a\x93", "\xee\x92\xbd"=>"\xf0\x9f\x8f\xae", "\xee\x96\xbd"=>"\xf0\x9f\x97\xbb", "\xee\x93\x80"=>"\xf0\x9f\x97\xbc", 
				"[\xe8\x87\xaa\xe7\x94\xb1\xe3\x81\xae\xe5\xa5\xb3\xe7\xa5\x9e]"=>"\xf0\x9f\x97\xbd", "\xee\x95\xb2"=>"\xf0\x9f\x97\xbe", "\xee\xad\xac"=>"\xf0\x9f\x97\xbf", "\xee\x96\xb7"=>"\xf0\x9f\x91\x9e", "\xee\xac\xab"=>"\xf0\x9f\x91\x9f", 
				"\xee\x94\x9a"=>"\xf0\x9f\x91\xa1", "\xee\xaa\x9f"=>"\xf0\x9f\x91\xa2", "\xee\xac\xaa"=>"\xf0\x9f\x91\xa3", "\xee\x93\xbe"=>"\xf0\x9f\x91\x93", "\xee\x96\xb6"=>"\xf0\x9f\x91\x95", 
				"\xee\xad\xb7"=>"\xf0\x9f\x91\x96", "\xee\x97\x89"=>"\xf0\x9f\x94\xb1", "\xee\xaa\x93"=>"\xf0\x9f\x91\x94", "\xee\xaa\x9e"=>"\xf0\x9f\x91\x92", "\xee\xad\xab"=>"\xf0\x9f\x91\x97", 
				"\xee\xaa\xa3"=>"\xf0\x9f\x91\x98", "\xee\xaa\xa4"=>"\xf0\x9f\x91\x99", "\xee\x94\x8d"=>"\xf0\x9f\x91\x9a", "\xee\x94\x84"=>"\xf0\x9f\x91\x9b", "\xee\x92\x9c"=>"\xf0\x9f\x91\x9c", 
				"[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]"=>"\xf0\x9f\x91\x9d", "\xee\x93\x87"=>"\xf0\x9f\x92\xb0", "[$\xef\xbf\xa5]"=>"\xf0\x9f\x92\xb1", "\xee\x97\x9c"=>"\xf0\x9f\x92\xb9", "\xee\x95\xb9"=>"\xf0\x9f\x92\xb2", 
				"\xee\x95\xbc"=>"\xf0\x9f\x92\xb3", "\xee\x95\xbd"=>"\xf0\x9f\x92\xb4", "\xee\x96\x85"=>"\xf0\x9f\x92\xb5", "\xee\xad\x9b"=>"\xf0\x9f\x92\xb8", "\xee\xac\x91"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3", 
				"\xee\xac\x8e"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", "\xee\x97\x95"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "\xee\xab\xba"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "\xee\xac\x90"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "\xee\xac\x8f"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9", 
				"\xee\x93\x8c"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", "\xee\xac\x92"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "\xee\x97\x96"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "\xee\x95\xb3"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "\xee\x91\xbb"=>"\xf0\x9f\x94\xa5", 
				"\xee\x96\x83"=>"\xf0\x9f\x94\xa6", "\xee\x96\x87"=>"\xf0\x9f\x94\xa7", "\xee\x97\x8b"=>"\xf0\x9f\x94\xa8", "\xee\x96\x81"=>"\xf0\x9f\x94\xa9", "\xee\x95\xbf"=>"\xf0\x9f\x94\xaa", 
				"\xee\x94\x8a"=>"\xf0\x9f\x94\xab", "\xee\xaa\x8f"=>"\xf0\x9f\x94\xaf", "\xee\x92\x80"=>"\xf0\x9f\x94\xb0", "\xee\x94\x90"=>"\xf0\x9f\x92\x89", "\xee\xaa\x9a"=>"\xf0\x9f\x92\x8a", 
				"\xee\xac\xa6"=>"\xf0\x9f\x85\xb0", "\xee\xac\xa7"=>"\xf0\x9f\x85\xb1", "\xee\xac\xa9"=>"\xf0\x9f\x86\x8e", "\xee\xac\xa8"=>"\xf0\x9f\x85\xbe", "\xee\x96\x9f"=>"\xf0\x9f\x8e\x80", 
				"\xee\x93\x8f"=>"\xf0\x9f\x8e\x81", "\xee\x96\xa0"=>"\xf0\x9f\x8e\x82", "\xee\x93\x89"=>"\xf0\x9f\x8e\x84", "\xee\xab\xb0"=>"\xf0\x9f\x8e\x85", "\xee\x97\x99"=>"\xf0\x9f\x8e\x8c", 
				"\xee\x97\x8c"=>"\xf0\x9f\x8e\x86", "\xee\xaa\x9b"=>"\xf0\x9f\x8e\x88", "\xee\xaa\x9c"=>"\xf0\x9f\x8e\x89", "\xee\xab\xa3"=>"\xf0\x9f\x8e\x8d", "\xee\xab\xa4"=>"\xf0\x9f\x8e\x8e", 
				"\xee\xab\xa5"=>"\xf0\x9f\x8e\x93", "\xee\xab\xa6"=>"\xf0\x9f\x8e\x92", "\xee\xab\xa7"=>"\xf0\x9f\x8e\x8f", "\xee\xab\xab"=>"\xf0\x9f\x8e\x87", "\xee\xab\xad"=>"\xf0\x9f\x8e\x90", 
				"\xee\xab\xae"=>"\xf0\x9f\x8e\x83", "\xee\x91\xaf"=>"\xf0\x9f\x8e\x8a", "\xee\xac\xbd"=>"\xf0\x9f\x8e\x8b", "\xee\xab\xaf"=>"\xf0\x9f\x8e\x91", "\xee\x96\x9b"=>"\xf0\x9f\x93\x9f", 
				"\xee\x96\x96"=>"\xe2\x98\x8e", "\xee\x94\x9e"=>"\xf0\x9f\x93\x9e", "\xee\x96\x88"=>"\xf0\x9f\x93\xb1", "\xee\xac\x88"=>"\xf0\x9f\x93\xb2", "\xee\xaa\x92"=>"\xf0\x9f\x93\x9d", 
				"\xee\x94\xa0"=>"\xf0\x9f\x93\xa0", "\xee\x94\xa1"=>"\xe2\x9c\x89", "\xee\x96\x91"=>"\xf0\x9f\x93\xa8", "\xee\xad\xa2"=>"\xf0\x9f\x93\xa9", "\xee\x94\x9b"=>"\xf0\x9f\x93\xae", 
				"\xee\xac\x8a"=>"\xf0\x9f\x93\xab", "\xee\x96\x8b"=>"\xf0\x9f\x93\xb0", "\xee\x94\x91"=>"\xf0\x9f\x94\x8a", "\xee\x92\xa8"=>"\xf0\x9f\x93\xa1", "\xee\x96\x92"=>"\xf0\x9f\x93\xa4", 
				"\xee\x96\x93"=>"\xf0\x9f\x93\xa5", "\xee\x94\x9f"=>"\xf0\x9f\x93\xa6", "\xee\xad\xb1"=>"\xf0\x9f\x93\xa7", "\xee\xab\xbd"=>"\xf0\x9f\x94\xa0", "\xee\xab\xbe"=>"\xf0\x9f\x94\xa1", 
				"\xee\xab\xbf"=>"\xf0\x9f\x94\xa2", "\xee\xac\x80"=>"\xf0\x9f\x94\xa3", "\xee\xad\x95"=>"\xf0\x9f\x94\xa4", "\xee\xac\x83"=>"\xe2\x9c\x92", "[\xe3\x81\x84\xe3\x81\x99]"=>"\xf0\x9f\x92\xba", 
				"\xee\x96\xb8"=>"\xf0\x9f\x92\xbb", "\xee\x92\xa1"=>"\xe2\x9c\x8f", "\xee\x92\xa0"=>"\xf0\x9f\x93\x8e", "\xee\x97\x8e"=>"\xf0\x9f\x92\xbc", "\xee\x96\x82"=>"\xf0\x9f\x92\xbd", 
				"\xee\x95\xa2"=>"\xf0\x9f\x92\xbe", "\xee\x94\x8c"=>"\xf0\x9f\x93\x80", "\xee\x94\x96"=>"\xe2\x9c\x82", "\xee\x95\xa0"=>"\xf0\x9f\x93\x8d", "\xee\x95\xa1"=>"\xf0\x9f\x93\x83", 
				"\xee\x95\xa9"=>"\xf0\x9f\x93\x84", "\xee\x95\xa3"=>"\xf0\x9f\x93\x85", "\xee\x96\x8f"=>"\xf0\x9f\x93\x81", "\xee\x96\x90"=>"\xf0\x9f\x93\x82", "\xee\x95\xab"=>"\xf0\x9f\x93\x93", 
				"\xee\x92\x9f"=>"\xf0\x9f\x93\x96", "\xee\x92\x9d"=>"\xf0\x9f\x93\x94", "\xee\x95\xa8"=>"\xf0\x9f\x93\x95", "\xee\x95\xa5"=>"\xf0\x9f\x93\x97", "\xee\x95\xa6"=>"\xf0\x9f\x93\x98", 
				"\xee\x95\xa7"=>"\xf0\x9f\x93\x99", "\xee\x95\xaf"=>"\xf0\x9f\x93\x9a", "\xee\x94\x9d"=>"\xf0\x9f\x93\x9b", "\xee\x95\x9f"=>"\xf0\x9f\x93\x9c", "\xee\x95\xa4"=>"\xf0\x9f\x93\x8b", 
				"\xee\x95\xaa"=>"\xf0\x9f\x93\x86", "\xee\x95\xb4"=>"\xf0\x9f\x93\x8a", "\xee\x95\xb5"=>"\xf0\x9f\x93\x88", "\xee\x95\xb6"=>"\xf0\x9f\x93\x89", "\xee\x95\xac"=>"\xf0\x9f\x93\x87", 
				"\xee\x95\xad"=>"\xf0\x9f\x93\x8c", "\xee\x95\xae"=>"\xf0\x9f\x93\x92", "\xee\x95\xb0"=>"\xf0\x9f\x93\x8f", "\xee\x92\xa2"=>"\xf0\x9f\x93\x90", "\xee\xac\x8b"=>"\xf0\x9f\x93\x91", 
				"\xee\x92\xba"=>"\xe2\x9a\xbe", "\xee\x96\x99"=>"\xe2\x9b\xb3", "\xee\x92\xb7"=>"\xf0\x9f\x8e\xbe", "\xee\x92\xb6"=>"\xe2\x9a\xbd", "\xee\xaa\xac"=>"\xf0\x9f\x8e\xbf", 
				"\xee\x96\x9a"=>"\xf0\x9f\x8f\x80", "\xee\x92\xb9"=>"\xf0\x9f\x8f\x81", "\xee\x92\xb8"=>"\xf0\x9f\x8f\x82", "\xee\x91\xab"=>"\xf0\x9f\x8f\x83", "\xee\xad\x81"=>"\xf0\x9f\x8f\x84", 
				"\xee\x97\x93"=>"\xf0\x9f\x8f\x86", "\xee\x92\xbb"=>"\xf0\x9f\x8f\x88", "\xee\xab\x9e"=>"\xf0\x9f\x8f\x8a", "\xee\x92\xb5"=>"\xf0\x9f\x9a\x83", "\xee\x96\xbc"=>"\xe2\x93\x82", 
				"\xee\x92\xb0"=>"\xf0\x9f\x9a\x85", "\xee\x92\xb1"=>"\xf0\x9f\x9a\x95", "\xee\x92\xaf"=>"\xf0\x9f\x9a\x8c", "\xee\x92\xa7"=>"\xf0\x9f\x9a\x8f", "\xee\xaa\x82"=>"\xf0\x9f\x9a\xa2", 
				"\xee\x92\xb3"=>"\xe2\x9c\x88", "\xee\x92\xb4"=>"\xf0\x9f\x9a\xa4", "\xee\xad\xad"=>"\xf0\x9f\x9a\x89", "\xee\x97\x88"=>"\xf0\x9f\x9a\x80", "\xee\x92\xb2"=>"\xf0\x9f\x9a\x9a", 
				"\xee\xab\x9f"=>"\xf0\x9f\x9a\x92", "\xee\xab\xa0"=>"\xf0\x9f\x9a\x91", "\xee\xab\xa1"=>"\xf0\x9f\x9a\x93", "\xee\x95\xb1"=>"\xe2\x9b\xbd", "\xee\x92\xa6"=>"\xf0\x9f\x85\xbf", 
				"\xee\x91\xaa"=>"\xf0\x9f\x9a\xa5", "\xee\x97\x97"=>"\xf0\x9f\x9a\xa7", "\xee\xad\xb3"=>"\xf0\x9f\x9a\xa8", "\xee\x92\xbc"=>"\xe2\x99\xa8", "\xee\x97\x90"=>"\xe2\x9b\xba", 
				"\xee\x91\xad"=>"\xf0\x9f\x8e\xa1", "\xee\xab\xa2"=>"\xf0\x9f\x8e\xa2", "\xee\xad\x82"=>"\xf0\x9f\x8e\xa3", "\xee\x94\x83"=>"\xf0\x9f\x8e\xa4", "\xee\x94\x97"=>"\xf0\x9f\x8e\xa6", 
				"\xee\x94\x88"=>"\xf0\x9f\x8e\xa7", "\xee\x96\x9c"=>"\xf0\x9f\x8e\xa8", "\xee\xab\xb5"=>"\xf0\x9f\x8e\xa9", "\xee\x96\x9e"=>"\xf0\x9f\x8e\xaa", "\xee\x92\x9e"=>"\xf0\x9f\x8e\xab", 
				"\xee\x92\xbe"=>"\xf0\x9f\x8e\xac", "\xee\x96\x9d"=>"\xf0\x9f\x8e\xad", "\xee\x93\x86"=>"\xf0\x9f\x8e\xae", "\xee\x97\x91"=>"\xf0\x9f\x80\x84", "\xee\x93\x85"=>"\xf0\x9f\x8e\xaf", 
				"\xee\x91\xae"=>"\xf0\x9f\x8e\xb0", "\xee\xab\x9d"=>"\xf0\x9f\x8e\xb1", "\xee\x93\x88"=>"\xf0\x9f\x8e\xb2", "\xee\xad\x83"=>"\xf0\x9f\x8e\xb3", "\xee\xad\xae"=>"\xf0\x9f\x8e\xb4", 
				"\xee\xad\xaf"=>"\xf0\x9f\x83\x8f", "\xee\x96\xbe"=>"\xf0\x9f\x8e\xb5", "\xee\x94\x85"=>"\xf0\x9f\x8e\xb6", "[\xe3\x82\xb5\xe3\x83\x83\xe3\x82\xaf\xe3\x82\xb9]"=>"\xf0\x9f\x8e\xb7", "\xee\x94\x86"=>"\xf0\x9f\x8e\xb8", 
				"\xee\xad\x80"=>"\xf0\x9f\x8e\xb9", "\xee\xab\x9c"=>"\xf0\x9f\x8e\xba", "\xee\x94\x87"=>"\xf0\x9f\x8e\xbb", "\xee\xab\x8c"=>"\xf0\x9f\x8e\xbc", "[\xe6\xad\x8c\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xe3\x80\xbd", 
				"\xee\x94\x95"=>"\xf0\x9f\x93\xb7", "\xee\x95\xbe"=>"\xf0\x9f\x93\xb9", "\xee\x94\x82"=>"\xf0\x9f\x93\xba", "\xee\x96\xb9"=>"\xf0\x9f\x93\xbb", "\xee\x96\x80"=>"\xf0\x9f\x93\xbc", 
				"\xee\x93\xab"=>"\xf0\x9f\x92\x8b", "\xee\xad\xb8"=>"\xf0\x9f\x92\x8c", "\xee\x94\x94"=>"\xf0\x9f\x92\x8e", "\xee\x97\x8a"=>"\xf0\x9f\x92\x8f", "\xee\xaa\x95"=>"\xf0\x9f\x92\x90", 
				"\xee\xab\x9a"=>"\xf0\x9f\x92\x91", "\xee\xaa\x83"=>"\xf0\x9f\x94\x9e", "\xee\x95\x98"=>"\xc2\xa9", "\xee\x95\x99"=>"\xc2\xae", "\xee\x95\x8e"=>"\xe2\x84\xa2", 
				"\xee\x94\xb3"=>"\xe2\x84\xb9", "\xee\xae\x84"=>"#\xe2\x83\xa3", "\xee\x94\xa2"=>"1\xe2\x83\xa3", "\xee\x94\xa3"=>"2\xe2\x83\xa3", "\xee\x94\xa4"=>"3\xe2\x83\xa3", 
				"\xee\x94\xa5"=>"4\xe2\x83\xa3", "\xee\x94\xa6"=>"5\xe2\x83\xa3", "\xee\x94\xa7"=>"6\xe2\x83\xa3", "\xee\x94\xa8"=>"7\xe2\x83\xa3", "\xee\x94\xa9"=>"8\xe2\x83\xa3", 
				"\xee\x94\xaa"=>"9\xe2\x83\xa3", "\xee\x96\xac"=>"0\xe2\x83\xa3", "\xee\x94\xab"=>"\xf0\x9f\x94\x9f", "\xee\xaa\x84"=>"\xf0\x9f\x93\xb6", "\xee\xaa\x90"=>"\xf0\x9f\x93\xb3", 
				"\xee\xaa\x91"=>"\xf0\x9f\x93\xb4", "\xee\x93\x96"=>"\xf0\x9f\x8d\x94", "\xee\x93\x95"=>"\xf0\x9f\x8d\x99", "\xee\x93\x90"=>"\xf0\x9f\x8d\xb0", "\xee\x96\xb4"=>"\xf0\x9f\x8d\x9c", 
				"\xee\xaa\xaf"=>"\xf0\x9f\x8d\x9e", "\xee\x93\x91"=>"\xf0\x9f\x8d\xb3", "\xee\xaa\xb0"=>"\xf0\x9f\x8d\xa6", "\xee\xaa\xb1"=>"\xf0\x9f\x8d\x9f", "\xee\xaa\xb2"=>"\xf0\x9f\x8d\xa1", 
				"\xee\xaa\xb3"=>"\xf0\x9f\x8d\x98", "\xee\xaa\xb4"=>"\xf0\x9f\x8d\x9a", "\xee\xaa\xb5"=>"\xf0\x9f\x8d\x9d", "\xee\xaa\xb6"=>"\xf0\x9f\x8d\x9b", "\xee\xaa\xb7"=>"\xf0\x9f\x8d\xa2", 
				"\xee\xaa\xb8"=>"\xf0\x9f\x8d\xa3", "\xee\xaa\xbd"=>"\xf0\x9f\x8d\xb1", "\xee\xaa\xbe"=>"\xf0\x9f\x8d\xb2", "\xee\xab\xaa"=>"\xf0\x9f\x8d\xa7", "\xee\x93\x84"=>"\xf0\x9f\x8d\x96", 
				"\xee\x93\xad"=>"\xf0\x9f\x8d\xa5", "\xee\xac\xba"=>"\xf0\x9f\x8d\xa0", "\xee\xac\xbb"=>"\xf0\x9f\x8d\x95", "\xee\xac\xbc"=>"\xf0\x9f\x8d\x97", "\xee\xad\x8a"=>"\xf0\x9f\x8d\xa8", 
				"\xee\xad\x8b"=>"\xf0\x9f\x8d\xa9", "\xee\xad\x8c"=>"\xf0\x9f\x8d\xaa", "\xee\xad\x8d"=>"\xf0\x9f\x8d\xab", "\xee\xad\x8e"=>"\xf0\x9f\x8d\xac", "\xee\xad\x8f"=>"\xf0\x9f\x8d\xad", 
				"\xee\xad\x96"=>"\xf0\x9f\x8d\xae", "\xee\xad\x99"=>"\xf0\x9f\x8d\xaf", "\xee\xad\xb0"=>"\xf0\x9f\x8d\xa4", "\xee\x92\xac"=>"\xf0\x9f\x8d\xb4", "\xee\x96\x97"=>"\xe2\x98\x95", 
				"\xee\x93\x82"=>"\xf0\x9f\x8d\xb8", "\xee\x93\x83"=>"\xf0\x9f\x8d\xba", "\xee\xaa\xae"=>"\xf0\x9f\x8d\xb5", "\xee\xaa\x97"=>"\xf0\x9f\x8d\xb6", "\xee\x93\x81"=>"\xf0\x9f\x8d\xb7", 
				"\xee\xaa\x98"=>"\xf0\x9f\x8d\xbb", "\xee\xac\xbe"=>"\xf0\x9f\x8d\xb9", "\xee\x95\x95"=>"\xe2\x86\x97", "\xee\x95\x8d"=>"\xe2\x86\x98", "\xee\x95\x8c"=>"\xe2\x86\x96", 
				"\xee\x95\x96"=>"\xe2\x86\x99", "\xee\xac\xad"=>"\xe2\xa4\xb4", "\xee\xac\xae"=>"\xe2\xa4\xb5", "\xee\xad\xba"=>"\xe2\x86\x94", "\xee\xad\xbb"=>"\xe2\x86\x95", 
				"\xee\x94\xbf"=>"\xe2\xac\x86", "\xee\x95\x80"=>"\xe2\xac\x87", "\xee\x95\x92"=>"\xe2\x9e\xa1", "\xee\x95\x93"=>"\xe2\xac\x85", "\xee\x94\xae"=>"\xe2\x96\xb6", 
				"\xee\x94\xad"=>"\xe2\x97\x80", "\xee\x94\xb0"=>"\xe2\x8f\xa9", "\xee\x94\xaf"=>"\xe2\x8f\xaa", "\xee\x95\x85"=>"\xe2\x8f\xab", "\xee\x95\x84"=>"\xe2\x8f\xac", 
				"\xee\x95\x9a"=>"\xf0\x9f\x94\xba", "\xee\x95\x9b"=>"\xf0\x9f\x94\xbb", "\xee\x95\x83"=>"\xf0\x9f\x94\xbc", "\xee\x95\x82"=>"\xf0\x9f\x94\xbd", "\xee\xaa\xad"=>"\xe2\xad\x95", 
				"\xee\x95\x90"=>"\xe2\x9d\x8c", "\xee\x95\x91"=>"\xe2\x9d\x8e", "\xee\x92\x82"=>"\xe2\x9d\x95", "\xee\xac\xaf"=>"\xe2\x81\x89", "\xee\xac\xb0"=>"\xe2\x80\xbc", 
				"\xee\x92\x83"=>"\xe2\x9d\x94", "\xee\xac\xb1"=>"\xe2\x9e\xb0", "[\xe3\x83\x95\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\x80\xe3\x82\xa4\xe3\x83\xa4\xe3\x83\xab]"=>"\xe2\x9e\xbf", "\xee\x96\x95"=>"\xf0\x9f\x92\x9f", "\xee\xad\xb5"=>"\xf0\x9f\x92\x97", 
				"\xee\x91\xb7"=>"\xf0\x9f\x92\x94", "\xee\x91\xb8"=>"\xf0\x9f\x92\x95", "\xee\xaa\xa6"=>"\xf0\x9f\x92\x96", "\xee\x93\xaa"=>"\xf0\x9f\x92\x98", "\xee\xaa\xa7"=>"\xf0\x9f\x92\x99", 
				"\xee\xaa\xa8"=>"\xf0\x9f\x92\x9a", "\xee\xaa\xa9"=>"\xf0\x9f\x92\x9b", "\xee\xaa\xaa"=>"\xf0\x9f\x92\x9c", "\xee\xad\x94"=>"\xf0\x9f\x92\x9d", "\xee\x96\xaf"=>"\xf0\x9f\x92\x9e", 
				"\xee\xaa\xa5"=>"\xe2\x99\xa5", "\xee\x96\xa1"=>"\xe2\x99\xa0", "\xee\x96\xa2"=>"\xe2\x99\xa6", "\xee\x96\xa3"=>"\xe2\x99\xa3", "\xee\x91\xbd"=>"\xf0\x9f\x9a\xac", 
				"\xee\x91\xbe"=>"\xf0\x9f\x9a\xad", "\xee\x91\xbf"=>"\xe2\x99\xbf", "\xee\xac\xac"=>"\xf0\x9f\x9a\xa9", "\xee\x92\x81"=>"\xe2\x9a\xa0", "\xee\x92\x84"=>"\xe2\x9b\x94", 
				"\xee\xad\xb9"=>"\xe2\x99\xbb", "\xee\x92\xae"=>"\xf0\x9f\x9a\xb2", "\xee\xad\xb2"=>"\xf0\x9f\x9a\xb6", "[\xe2\x99\x82]"=>"\xf0\x9f\x9a\xb9", "[\xe2\x99\x80]"=>"\xf0\x9f\x9a\xba", 
				"\xee\x97\x98"=>"\xf0\x9f\x9b\x80", "\xee\x92\xa5"=>"\xf0\x9f\x9a\xbe", "[\xe3\x83\x89\xe3\x82\xa2]"=>"\xf0\x9f\x9a\xaa", "\xee\x95\x81"=>"\xf0\x9f\x9a\xab", "\xee\x95\x97"=>"\xe2\x9c\x94", 
				"\xee\x96\xab"=>"\xf0\x9f\x86\x91", "\xee\xaa\x85"=>"\xf0\x9f\x86\x92", "\xee\x95\xb8"=>"\xf0\x9f\x86\x93", "\xee\xaa\x88"=>"\xf0\x9f\x86\x94", "\xee\x96\xb5"=>"\xf0\x9f\x86\x95", 
				"[NG]"=>"\xf0\x9f\x86\x96", "\xee\x96\xad"=>"\xf0\x9f\x86\x97", "\xee\x93\xa8"=>"\xf0\x9f\x86\x98", "\xee\x94\x8f"=>"\xf0\x9f\x86\x99", "\xee\x97\x92"=>"\xf0\x9f\x86\x9a", 
				"[\xe3\x82\xb3\xe3\x82\xb3]"=>"\xf0\x9f\x88\x81", "\xee\xaa\x87"=>"\xf0\x9f\x88\x82", "[\xe7\xa6\x81]"=>"\xf0\x9f\x88\xb2", "\xee\xaa\x8a"=>"\xf0\x9f\x88\xb3", "[\xe5\x90\x88]"=>"\xf0\x9f\x88\xb4", 
				"\xee\xaa\x89"=>"\xf0\x9f\x88\xb5", "[\xe6\x9c\x89]"=>"\xf0\x9f\x88\xb6", "[\xe7\x84\xa1]"=>"\xf0\x9f\x88\x9a", "[\xe6\x9c\x88]"=>"\xf0\x9f\x88\xb7", "[\xe7\x94\xb3]"=>"\xf0\x9f\x88\xb8", 
				"\xee\xaa\x86"=>"\xf0\x9f\x88\xb9", "\xee\xaa\x8b"=>"\xf0\x9f\x88\xaf", "\xee\xaa\x8c"=>"\xf0\x9f\x88\xba", "\xee\x93\xb1"=>"\xe3\x8a\x99", "\xee\xaa\x99"=>"\xe3\x8a\x97", 
				"\xee\x93\xb7"=>"\xf0\x9f\x89\x90", "\xee\xac\x81"=>"\xf0\x9f\x89\x91", "\xee\x94\xbc"=>"\xe2\x9e\x95", "\xee\x94\xbd"=>"\xe2\x9e\x96", "\xee\x95\x8f"=>"\xe2\x9c\x96", 
				"\xee\x95\x94"=>"\xe2\x9e\x97", "\xee\x91\xb6"=>"\xf0\x9f\x92\xa1", "\xee\x93\xa5"=>"\xf0\x9f\x92\xa2", "\xee\x91\xba"=>"\xf0\x9f\x92\xa3", "\xee\x91\xb5"=>"\xf0\x9f\x92\xa4", 
				"\xee\x96\xb0"=>"\xf0\x9f\x92\xa5", "\xee\x96\xb1"=>"\xf0\x9f\x92\xa6", "\xee\x93\xa6"=>"\xf0\x9f\x92\xa7", "\xee\x93\xb4"=>"\xf0\x9f\x92\xa8", "\xee\x93\xb5"=>"\xf0\x9f\x92\xa9", 
				"\xee\x93\xa9"=>"\xf0\x9f\x92\xaa", "\xee\xad\x9c"=>"\xf0\x9f\x92\xab", "\xee\x93\xbd"=>"\xf0\x9f\x92\xac", "\xee\xaa\xab"=>"\xe2\x9c\xa8", "\xee\x91\xb9"=>"\xe2\x9c\xb4", 
				"\xee\x94\xbe"=>"\xe2\x9c\xb3", "\xee\x94\xba"=>"\xe2\x9a\xaa", "\xee\x94\xbb"=>"\xe2\x9a\xab", "\xee\x95\x8a"=>"\xf0\x9f\x94\xb4", "\xee\x95\x8b"=>"\xf0\x9f\x94\xb3", 
				"\xee\x95\x88"=>"\xe2\xac\x9c", "\xee\x95\x89"=>"\xe2\xac\x9b", "\xee\x94\xb1"=>"\xe2\x96\xab", "\xee\x94\xb2"=>"\xe2\x96\xaa", "\xee\x94\xb4"=>"\xe2\x97\xbd", 
				"\xee\x94\xb5"=>"\xe2\x97\xbe", "\xee\x94\xb8"=>"\xe2\x97\xbb", "\xee\x94\xb9"=>"\xe2\x97\xbc", "\xee\x95\x86"=>"\xf0\x9f\x94\xb6", "\xee\x95\x87"=>"\xf0\x9f\x94\xb7", 
				"\xee\x94\xb6"=>"\xf0\x9f\x94\xb8", "\xee\x94\xb7"=>"\xf0\x9f\x94\xb9", "\xee\x91\xac"=>"\xe2\x9d\x87", "\xee\x93\xb0"=>"\xf0\x9f\x92\xae", "\xee\x93\xb2"=>"\xf0\x9f\x92\xaf", 
				"\xee\x95\x9d"=>"\xe2\x86\xa9", "\xee\x95\x9c"=>"\xe2\x86\xaa", "\xee\xac\x8d"=>"\xf0\x9f\x94\x83", "\xee\x96\x84"=>"\xf0\x9f\x94\x8b", "\xee\x96\x89"=>"\xf0\x9f\x94\x8c", 
				"\xee\x94\x98"=>"\xf0\x9f\x94\x8d", "\xee\xac\x85"=>"\xf0\x9f\x94\x8e", "\xee\x94\x9c"=>"\xf0\x9f\x94\x93", "\xee\xac\x8c"=>"\xf0\x9f\x94\x8f", "\xee\xab\xbc"=>"\xf0\x9f\x94\x90", 
				"\xee\x94\x99"=>"\xf0\x9f\x94\x91", "\xee\x94\x92"=>"\xf0\x9f\x94\x94", "\xee\xac\x82"=>"\xe2\x98\x91", "\xee\xac\x84"=>"\xf0\x9f\x94\x98", "\xee\xac\x87"=>"\xf0\x9f\x94\x96", 
				"\xee\x96\x8a"=>"\xf0\x9f\x94\x97", "\xee\xac\x86"=>"\xf0\x9f\x94\x99", "[end]"=>"\xf0\x9f\x94\x9a", "[ON]"=>"\xf0\x9f\x94\x9b", "[SOON]"=>"\xf0\x9f\x94\x9c", 
				"[TOP]"=>"\xf0\x9f\x94\x9d", "\xee\x95\x9e"=>"\xe2\x9c\x85", "\xee\xae\x83"=>"\xe2\x9c\x8a", "\xee\x96\xa7"=>"\xe2\x9c\x8b", "\xee\x96\xa6"=>"\xe2\x9c\x8c", 
				"\xee\x93\xb3"=>"\xf0\x9f\x91\x8a", "\xee\x93\xb9"=>"\xf0\x9f\x91\x8d", "\xee\x93\xb6"=>"\xe2\x98\x9d", "\xee\xaa\x8d"=>"\xf0\x9f\x91\x86", "\xee\xaa\x8e"=>"\xf0\x9f\x91\x87", 
				"\xee\x93\xbf"=>"\xf0\x9f\x91\x88", "\xee\x94\x80"=>"\xf0\x9f\x91\x89", "\xee\xab\x96"=>"\xf0\x9f\x91\x90", "\xee\xab\x93"=>"\xf0\x9f\x91\x8f", "\xee\xab\x94"=>"\xf0\x9f\x91\x8c", 
				"\xee\xab\x95"=>"\xf0\x9f\x91\x8e", 
			),
			'softbank_to_unified' => array(
				"\xee\x81\x8a"=>"\xe2\x98\x80", "\xee\x81\x89"=>"\xe2\x98\x81", "\xee\x81\x8b"=>"\xe2\x98\x94", "\xee\x81\x88"=>"\xe2\x9b\x84", 
				"\xee\x84\xbd"=>"\xe2\x9a\xa1", "\xee\x91\x83"=>"\xf0\x9f\x8c\x80", "[\xe9\x9c\xa7]"=>"\xf0\x9f\x8c\x81", "\xee\x90\xbc"=>"\xf0\x9f\x8c\x82", "\xee\x91\x8b"=>"\xf0\x9f\x8c\x8c", 
				"\xee\x81\x8d"=>"\xf0\x9f\x8c\x84", "\xee\x91\x89"=>"\xf0\x9f\x8c\x85", "\xee\x85\x86"=>"\xf0\x9f\x8c\x86", "\xee\x91\x8a"=>"\xf0\x9f\x8c\x87", "\xee\x91\x8c"=>"\xf0\x9f\x8c\x88", 
				"[\xe9\x9b\xaa\xe7\xb5\x90\xe6\x99\xb6]"=>"\xe2\x9d\x84", "\xee\x81\x8a\xee\x81\x89"=>"\xe2\x9b\x85", "\xee\x90\xbe"=>"\xf0\x9f\x8c\x8a", "[\xe7\x81\xab\xe5\xb1\xb1]"=>"\xf0\x9f\x8c\x8b", "[\xe5\x9c\xb0\xe7\x90\x83]"=>"\xf0\x9f\x8c\x8f", 
				"\xe2\x97\x8f"=>"\xf0\x9f\x8c\x91", "\xee\x81\x8c"=>"\xf0\x9f\x8c\x9b", "\xe2\x97\x8b"=>"\xf0\x9f\x8c\x95", "\xee\x8c\xb5"=>"\xf0\x9f\x8c\x9f", "\xe2\x98\x86\xe5\xbd\xa1"=>"\xf0\x9f\x8c\xa0", 
				"\xee\x80\xa4"=>"\xf0\x9f\x95\x90", "\xee\x80\xa5"=>"\xf0\x9f\x95\x91", "\xee\x80\xa6"=>"\xf0\x9f\x95\x92", "\xee\x80\xa7"=>"\xf0\x9f\x95\x93", "\xee\x80\xa8"=>"\xf0\x9f\x95\x94", 
				"\xee\x80\xa9"=>"\xf0\x9f\x95\x95", "\xee\x80\xaa"=>"\xf0\x9f\x95\x96", "\xee\x80\xab"=>"\xf0\x9f\x95\x97", "\xee\x80\xac"=>"\xf0\x9f\x95\x98", "\xee\x80\xad"=>"\xe2\x8f\xb0", 
				"\xee\x80\xae"=>"\xf0\x9f\x95\x9a", "\xee\x80\xaf"=>"\xf0\x9f\x95\x9b", "[\xe8\x85\x95\xe6\x99\x82\xe8\xa8\x88]"=>"\xe2\x8c\x9a", "[\xe7\xa0\x82\xe6\x99\x82\xe8\xa8\x88]"=>"\xe2\x8f\xb3", "\xee\x88\xbf"=>"\xe2\x99\x88", 
				"\xee\x89\x80"=>"\xe2\x99\x89", "\xee\x89\x81"=>"\xe2\x99\x8a", "\xee\x89\x82"=>"\xe2\x99\x8b", "\xee\x89\x83"=>"\xe2\x99\x8c", "\xee\x89\x84"=>"\xe2\x99\x8d", 
				"\xee\x89\x85"=>"\xe2\x99\x8e", "\xee\x89\x86"=>"\xe2\x99\x8f", "\xee\x89\x87"=>"\xe2\x99\x90", "\xee\x89\x88"=>"\xe2\x99\x91", "\xee\x89\x89"=>"\xe2\x99\x92", 
				"\xee\x89\x8a"=>"\xe2\x99\x93", "\xee\x89\x8b"=>"\xe2\x9b\x8e", "\xee\x84\x90"=>"\xf0\x9f\x8c\xbf", "\xee\x8c\x84"=>"\xf0\x9f\x8c\xb7", "\xee\x84\x98"=>"\xf0\x9f\x8d\x81", 
				"\xee\x80\xb0"=>"\xf0\x9f\x8c\xb8", "\xee\x80\xb2"=>"\xf0\x9f\x8c\xb9", "\xee\x84\x99"=>"\xf0\x9f\x8d\x82", "\xee\x91\x87"=>"\xf0\x9f\x8d\x83", "\xee\x8c\x83"=>"\xf0\x9f\x8c\xba", 
				"\xee\x8c\x85"=>"\xf0\x9f\x8c\xbc", "\xee\x8c\x87"=>"\xf0\x9f\x8c\xb4", "\xee\x8c\x88"=>"\xf0\x9f\x8c\xb5", "\xee\x91\x84"=>"\xf0\x9f\x8c\xbe", "[\xe3\x81\xa8\xe3\x81\x86\xe3\x82\x82\xe3\x82\x8d\xe3\x81\x93\xe3\x81\x97]"=>"\xf0\x9f\x8c\xbd", 
				"[\xe3\x82\xad\xe3\x83\x8e\xe3\x82\xb3]"=>"\xf0\x9f\x8d\x84", "[\xe6\xa0\x97]"=>"\xf0\x9f\x8c\xb0", "[\xe3\x81\x95\xe3\x81\x8f\xe3\x82\x89\xe3\x82\x93\xe3\x81\xbc]"=>"\xf0\x9f\x8d\x92", "[\xe3\x83\x90\xe3\x83\x8a\xe3\x83\x8a]"=>"\xf0\x9f\x8d\x8c", "\xee\x8d\x85"=>"\xf0\x9f\x8d\x8f", 
				"\xee\x8d\x86"=>"\xf0\x9f\x8d\x8a", "\xee\x8d\x87"=>"\xf0\x9f\x8d\x93", "\xee\x8d\x88"=>"\xf0\x9f\x8d\x89", "\xee\x8d\x89"=>"\xf0\x9f\x8d\x85", "\xee\x8d\x8a"=>"\xf0\x9f\x8d\x86", 
				"[\xe3\x83\xa1\xe3\x83\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x88", "[\xe3\x83\x91\xe3\x82\xa4\xe3\x83\x8a\xe3\x83\x83\xe3\x83\x97\xe3\x83\xab]"=>"\xf0\x9f\x8d\x8d", "[\xe3\x83\x96\xe3\x83\x89\xe3\x82\xa6]"=>"\xf0\x9f\x8d\x87", "[\xe3\x83\xa2\xe3\x83\xa2]"=>"\xf0\x9f\x8d\x91", "\xee\x90\x99"=>"\xf0\x9f\x91\x80", 
				"\xee\x90\x9b"=>"\xf0\x9f\x91\x82", "\xee\x90\x9a"=>"\xf0\x9f\x91\x83", "\xee\x90\x9c"=>"\xf0\x9f\x91\x84", "\xee\x90\x89"=>"\xf0\x9f\x98\x9d", "\xee\x8c\x9c"=>"\xf0\x9f\x92\x84", 
				"\xee\x8c\x9d"=>"\xf0\x9f\x92\x85", "\xee\x8c\x9e"=>"\xf0\x9f\x92\x86", "\xee\x8c\x9f"=>"\xf0\x9f\x92\x87", "\xee\x8c\xa0"=>"\xf0\x9f\x92\x88", "\xe3\x80\x93"=>"\xf0\x9f\x92\xa0", 
				"\xee\x80\x81"=>"\xf0\x9f\x91\xa6", "\xee\x80\x82"=>"\xf0\x9f\x91\xa7", "\xee\x80\x84"=>"\xf0\x9f\x91\xa8", "\xee\x80\x85"=>"\xf0\x9f\x91\xa9", "[\xe5\xae\xb6\xe6\x97\x8f]"=>"\xf0\x9f\x91\xaa", 
				"\xee\x90\xa8"=>"\xf0\x9f\x91\xab", "\xee\x85\x92"=>"\xf0\x9f\x91\xae", "\xee\x90\xa9"=>"\xf0\x9f\x91\xaf", "[\xe8\x8a\xb1\xe5\xab\x81]"=>"\xf0\x9f\x91\xb0", "\xee\x94\x95"=>"\xf0\x9f\x91\xb1", 
				"\xee\x94\x96"=>"\xf0\x9f\x91\xb2", "\xee\x94\x97"=>"\xf0\x9f\x91\xb3", "\xee\x94\x98"=>"\xf0\x9f\x91\xb4", "\xee\x94\x99"=>"\xf0\x9f\x91\xb5", "\xee\x94\x9a"=>"\xf0\x9f\x91\xb6", 
				"\xee\x94\x9b"=>"\xf0\x9f\x91\xb7", "\xee\x94\x9c"=>"\xf0\x9f\x91\xb8", "[\xe3\x81\xaa\xe3\x81\xbe\xe3\x81\xaf\xe3\x81\x92]"=>"\xf0\x9f\x91\xb9", "[\xe5\xa4\xa9\xe7\x8b\x97]"=>"\xf0\x9f\x91\xba", "\xee\x84\x9b"=>"\xf0\x9f\x91\xbb", 
				"\xee\x81\x8e"=>"\xf0\x9f\x91\xbc", "\xee\x84\x8c"=>"\xf0\x9f\x91\xbd", "\xee\x84\xab"=>"\xf0\x9f\x91\xbe", "\xee\x84\x9a"=>"\xf0\x9f\x91\xbf", "\xee\x84\x9c"=>"\xf0\x9f\x92\x80", 
				"\xee\x89\x93"=>"\xf0\x9f\x92\x81", "\xee\x94\x9e"=>"\xf0\x9f\x92\x82", "\xee\x94\x9f"=>"\xf0\x9f\x92\x83", "[\xe3\x82\xab\xe3\x82\xbf\xe3\x83\x84\xe3\x83\xa0\xe3\x83\xaa]"=>"\xf0\x9f\x90\x8c", "\xee\x94\xad"=>"\xf0\x9f\x90\x8d", 
				"\xee\x84\xb4"=>"\xf0\x9f\x90\x8e", "\xee\x94\xae"=>"\xf0\x9f\x90\x94", "\xee\x94\xaf"=>"\xf0\x9f\x90\x97", "\xee\x94\xb0"=>"\xf0\x9f\x90\xab", "\xee\x94\xa6"=>"\xf0\x9f\x90\x98", 
				"\xee\x94\xa7"=>"\xf0\x9f\x90\xa8", "\xee\x94\xa8"=>"\xf0\x9f\x90\x92", "\xee\x94\xa9"=>"\xf0\x9f\x90\x91", "\xee\x84\x8a"=>"\xf0\x9f\x90\x99", "\xee\x91\x81"=>"\xf0\x9f\x90\x9a", 
				"\xee\x94\xa5"=>"\xf0\x9f\x90\x9b", "[\xe3\x82\xa2\xe3\x83\xaa]"=>"\xf0\x9f\x90\x9c", "[\xe3\x83\x9f\xe3\x83\x84\xe3\x83\x90\xe3\x83\x81]"=>"\xf0\x9f\x90\x9d", "[\xe3\x81\xa6\xe3\x82\x93\xe3\x81\xa8\xe3\x81\x86\xe8\x99\xab]"=>"\xf0\x9f\x90\x9e", "\xee\x94\xa2"=>"\xf0\x9f\x90\xa0", 
				"\xee\x80\x99"=>"\xf0\x9f\x8e\xa3", "[\xe3\x82\xab\xe3\x83\xa1]"=>"\xf0\x9f\x90\xa2", "\xee\x94\xa3"=>"\xf0\x9f\x90\xa3", "\xee\x94\xa1"=>"\xf0\x9f\x90\xa6", "\xee\x81\x95"=>"\xf0\x9f\x90\xa7", 
				"\xee\x81\x92"=>"\xf0\x9f\x90\xb6", "\xee\x94\xa0"=>"\xf0\x9f\x90\xac", "\xee\x81\x93"=>"\xf0\x9f\x90\xad", "\xee\x81\x90"=>"\xf0\x9f\x90\xaf", "\xee\x81\x8f"=>"\xf0\x9f\x90\xb1", 
				"\xee\x81\x94"=>"\xf0\x9f\x90\xb3", "\xee\x80\x9a"=>"\xf0\x9f\x90\xb4", "\xee\x84\x89"=>"\xf0\x9f\x90\xb5", "\xee\x84\x8b"=>"\xf0\x9f\x90\xbd", "\xee\x81\x91"=>"\xf0\x9f\x90\xbb", 
				"\xee\x94\xa4"=>"\xf0\x9f\x90\xb9", "\xee\x94\xaa"=>"\xf0\x9f\x90\xba", "\xee\x94\xab"=>"\xf0\x9f\x90\xae", "\xee\x94\xac"=>"\xf0\x9f\x90\xb0", "\xee\x94\xb1"=>"\xf0\x9f\x90\xb8", 
				"\xee\x94\xb6"=>"\xf0\x9f\x91\xa3", "[\xe8\xbe\xb0]"=>"\xf0\x9f\x90\xb2", "[\xe3\x83\x91\xe3\x83\xb3\xe3\x83\x80]"=>"\xf0\x9f\x90\xbc", "\xee\x81\x99"=>"\xf0\x9f\x98\xa0", "\xee\x90\x83"=>"\xf0\x9f\x99\x8d", 
				"\xee\x90\x90"=>"\xf0\x9f\x98\xb2", "\xee\x81\x98"=>"\xf0\x9f\x98\x9e", "\xee\x90\x86"=>"\xf0\x9f\x98\xab", "\xee\x90\x8f"=>"\xf0\x9f\x98\xb0", "\xee\x90\x8e"=>"\xf0\x9f\x98\x92", 
				"\xee\x84\x86"=>"\xf0\x9f\x98\xbb", "\xee\x90\x84"=>"\xf0\x9f\x98\xbc", "\xee\x84\x85"=>"\xf0\x9f\x98\x9c", "\xee\x81\x96"=>"\xf0\x9f\x98\x8a", "\xee\x90\x98"=>"\xf0\x9f\x98\xbd", 
				"\xee\x90\x97"=>"\xf0\x9f\x98\x9a", "\xee\x90\x8c"=>"\xf0\x9f\x98\xb7", "\xee\x90\x8d"=>"\xf0\x9f\x98\xb3", "\xee\x81\x97"=>"\xf0\x9f\x98\xba", "\xee\x90\x95\xee\x8c\xb1"=>"\xf0\x9f\x98\x85", 
				"\xee\x90\x8a"=>"\xf0\x9f\x98\x8c", "\xee\x90\x92"=>"\xf0\x9f\x98\xb9", "\xee\x90\x94"=>"\xe2\x98\xba", "\xee\x90\x95"=>"\xf0\x9f\x98\x84", "\xee\x90\x93"=>"\xf0\x9f\x98\xbf", 
				"\xee\x90\x91"=>"\xf0\x9f\x98\xad", "\xee\x90\x8b"=>"\xf0\x9f\x98\xa8", "\xee\x90\x96"=>"\xf0\x9f\x99\x8e", "\xee\x90\x87"=>"\xf0\x9f\x92\xab", "\xee\x84\x87"=>"\xf0\x9f\x98\xb1", 
				"\xee\x90\x88"=>"\xf0\x9f\x98\xaa", "\xee\x90\x82"=>"\xf0\x9f\x98\x8f", "\xee\x84\x88"=>"\xf0\x9f\x98\x93", "\xee\x90\x81"=>"\xf0\x9f\x98\xa5", "\xee\x90\x85"=>"\xf0\x9f\x98\x89", 
				"\xee\x90\xa3"=>"\xf0\x9f\x99\x85", "\xee\x90\xa4"=>"\xf0\x9f\x99\x86", "\xee\x90\xa6"=>"\xf0\x9f\x99\x87", "(/_\xef\xbc\xbc)"=>"\xf0\x9f\x99\x88", "(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)"=>"\xf0\x9f\x99\x8a", 
				"|(\xe3\x83\xbb\xc3\x97\xe3\x83\xbb)|"=>"\xf0\x9f\x99\x89", "\xee\x80\x92"=>"\xe2\x9c\x8b", "\xee\x90\xa7"=>"\xf0\x9f\x99\x8c", "\xee\x90\x9d"=>"\xf0\x9f\x99\x8f", "\xee\x80\xb6"=>"\xf0\x9f\x8f\xa1", 
				"\xee\x80\xb8"=>"\xf0\x9f\x8f\xa2", "\xee\x85\x93"=>"\xf0\x9f\x8f\xa3", "\xee\x85\x95"=>"\xf0\x9f\x8f\xa5", "\xee\x85\x8d"=>"\xf0\x9f\x8f\xa6", "\xee\x85\x94"=>"\xf0\x9f\x8f\xa7", 
				"\xee\x85\x98"=>"\xf0\x9f\x8f\xa8", "\xee\x94\x81"=>"\xf0\x9f\x8f\xa9", "\xee\x85\x96"=>"\xf0\x9f\x8f\xaa", "\xee\x85\x97"=>"\xf0\x9f\x8f\xab", "\xee\x80\xb7"=>"\xe2\x9b\xaa", 
				"\xee\x84\xa1"=>"\xe2\x9b\xb2", "\xee\x94\x84"=>"\xf0\x9f\x8f\xac", "\xee\x94\x85"=>"\xf0\x9f\x8f\xaf", "\xee\x94\x86"=>"\xf0\x9f\x8f\xb0", "\xee\x94\x88"=>"\xf0\x9f\x8f\xad", 
				"\xee\x88\x82"=>"\xf0\x9f\x9a\xa2", "\xee\x8c\x8b"=>"\xf0\x9f\x8d\xb6", "\xee\x80\xbb"=>"\xf0\x9f\x97\xbb", "\xee\x94\x89"=>"\xf0\x9f\x97\xbc", "\xee\x94\x9d"=>"\xf0\x9f\x97\xbd", 
				"[\xe6\x97\xa5\xe6\x9c\xac\xe5\x9c\xb0\xe5\x9b\xb3]"=>"\xf0\x9f\x97\xbe", "[\xe3\x83\xa2\xe3\x82\xa2\xe3\x82\xa4]"=>"\xf0\x9f\x97\xbf", "\xee\x80\x87"=>"\xf0\x9f\x91\x9f", "\xee\x84\xbe"=>"\xf0\x9f\x91\xa0", "\xee\x8c\x9a"=>"\xf0\x9f\x91\xa1", 
				"\xee\x8c\x9b"=>"\xf0\x9f\x91\xa2", "[\xe3\x83\xa1\xe3\x82\xac\xe3\x83\x8d]"=>"\xf0\x9f\x91\x93", "\xee\x80\x86"=>"\xf0\x9f\x91\x9a", "[\xe3\x82\xb8\xe3\x83\xbc\xe3\x83\xb3\xe3\x82\xba]"=>"\xf0\x9f\x91\x96", "\xee\x84\x8e"=>"\xf0\x9f\x91\x91", 
				"\xee\x8c\x82"=>"\xf0\x9f\x91\x94", "\xee\x8c\x98"=>"\xf0\x9f\x91\x92", "\xee\x8c\x99"=>"\xf0\x9f\x91\x97", "\xee\x8c\xa1"=>"\xf0\x9f\x91\x98", "\xee\x8c\xa2"=>"\xf0\x9f\x91\x99", 
				"[\xe8\xb2\xa1\xe5\xb8\x83]"=>"\xf0\x9f\x91\x9b", "\xee\x8c\xa3"=>"\xf0\x9f\x91\x9c", "[\xe3\x81\xb5\xe3\x81\x8f\xe3\x82\x8d]"=>"\xf0\x9f\x91\x9d", "\xee\x84\xaf"=>"\xf0\x9f\x92\xb5", "\xee\x85\x89"=>"\xf0\x9f\x92\xb1", 
				"\xee\x85\x8a"=>"\xf0\x9f\x93\x88", "[\xe3\x82\xab\xe3\x83\xbc\xe3\x83\x89]"=>"\xf0\x9f\x92\xb3", "\xef\xbf\xa5"=>"\xf0\x9f\x92\xb4", "[\xe9\xa3\x9b\xe3\x82\x93\xe3\x81\xa7\xe3\x81\x84\xe3\x81\x8f\xe3\x81\x8a\xe9\x87\x91]"=>"\xf0\x9f\x92\xb8", "\xee\x94\x93"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3", 
				"\xee\x94\x8e"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", "\xee\x94\x91"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "\xee\x94\x8d"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "\xee\x94\x90"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "\xee\x94\x8f"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9", 
				"\xee\x94\x8b"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", "\xee\x94\x94"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "\xee\x94\x92"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "\xee\x94\x8c"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "\xee\x84\x9d"=>"\xf0\x9f\x94\xa5", 
				"[\xe6\x87\x90\xe4\xb8\xad\xe9\x9b\xbb\xe7\x81\xaf]"=>"\xf0\x9f\x94\xa6", "[\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x81]"=>"\xf0\x9f\x94\xa7", "\xee\x84\x96"=>"\xf0\x9f\x94\xa8", "[\xe3\x83\x8d\xe3\x82\xb8]"=>"\xf0\x9f\x94\xa9", "[\xe5\x8c\x85\xe4\xb8\x81]"=>"\xf0\x9f\x94\xaa", 
				"\xee\x84\x93"=>"\xf0\x9f\x94\xab", "\xee\x88\xbe"=>"\xf0\x9f\x94\xaf", "\xee\x88\x89"=>"\xf0\x9f\x94\xb0", "\xee\x80\xb1"=>"\xf0\x9f\x94\xb1", "\xee\x84\xbb"=>"\xf0\x9f\x92\x89", 
				"\xee\x8c\x8f"=>"\xf0\x9f\x92\x8a", "\xee\x94\xb2"=>"\xf0\x9f\x85\xb0", "\xee\x94\xb3"=>"\xf0\x9f\x85\xb1", "\xee\x94\xb4"=>"\xf0\x9f\x86\x8e", "\xee\x94\xb5"=>"\xf0\x9f\x85\xbe", 
				"\xee\x8c\x94"=>"\xf0\x9f\x8e\x80", "\xee\x84\x92"=>"\xf0\x9f\x93\xa6", "\xee\x8d\x8b"=>"\xf0\x9f\x8e\x82", "\xee\x80\xb3"=>"\xf0\x9f\x8e\x84", "\xee\x91\x88"=>"\xf0\x9f\x8e\x85", 
				"\xee\x85\x83"=>"\xf0\x9f\x8e\x8c", "\xee\x84\x97"=>"\xf0\x9f\x8e\x86", "\xee\x8c\x90"=>"\xf0\x9f\x8e\x88", "\xee\x8c\x92"=>"\xf0\x9f\x8e\x89", "\xee\x90\xb6"=>"\xf0\x9f\x8e\x8d", 
				"\xee\x90\xb8"=>"\xf0\x9f\x8e\x8e", "\xee\x90\xb9"=>"\xf0\x9f\x8e\x93", "\xee\x90\xba"=>"\xf0\x9f\x8e\x92", "\xee\x90\xbb"=>"\xf0\x9f\x8e\x8f", "\xee\x91\x80"=>"\xf0\x9f\x8e\x87", 
				"\xee\x91\x82"=>"\xf0\x9f\x8e\x90", "\xee\x91\x85"=>"\xf0\x9f\x8e\x83", "[\xe3\x82\xaa\xe3\x83\xa1\xe3\x83\x87\xe3\x83\x88\xe3\x82\xa6]"=>"\xf0\x9f\x8e\x8a", "[\xe4\xb8\x83\xe5\xa4\x95]"=>"\xf0\x9f\x8e\x8b", "\xee\x91\x86"=>"\xf0\x9f\x8e\x91", 
				"[\xe3\x83\x9d\xe3\x82\xb1\xe3\x83\x99\xe3\x83\xab]"=>"\xf0\x9f\x93\x9f", "\xee\x80\x89"=>"\xf0\x9f\x93\x9e", "\xee\x80\x8a"=>"\xf0\x9f\x93\xb1", "\xee\x84\x84"=>"\xf0\x9f\x93\xb2", "\xee\x8c\x81"=>"\xf0\x9f\x93\x91", 
				"\xee\x80\x8b"=>"\xf0\x9f\x93\xa0", "\xee\x84\x83"=>"\xf0\x9f\x93\xa7", "\xee\x84\x81"=>"\xf0\x9f\x93\xab", "\xee\x84\x82"=>"\xf0\x9f\x93\xae", "[\xe6\x96\xb0\xe8\x81\x9e]"=>"\xf0\x9f\x93\xb0", 
				"\xee\x85\x82"=>"\xf0\x9f\x93\xa2", "\xee\x8c\x97"=>"\xf0\x9f\x93\xa3", "\xee\x85\x8b"=>"\xf0\x9f\x93\xa1", "[\xe9\x80\x81\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa4", "[\xe5\x8f\x97\xe4\xbf\xa1BOX]"=>"\xf0\x9f\x93\xa5", 
				"[ABCD]"=>"\xf0\x9f\x94\xa0", "[abcd]"=>"\xf0\x9f\x94\xa1", "[1234]"=>"\xf0\x9f\x94\xa2", "[\xe8\xa8\x98\xe5\x8f\xb7]"=>"\xf0\x9f\x94\xa3", "[ABC]"=>"\xf0\x9f\x94\xa4", 
				"[\xe3\x83\x9a\xe3\x83\xb3]"=>"\xe2\x9c\x92", "\xee\x84\x9f"=>"\xf0\x9f\x92\xba", "\xee\x80\x8c"=>"\xf0\x9f\x92\xbb", "[\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\x83\xe3\x83\x97]"=>"\xf0\x9f\x93\x8e", "\xee\x84\x9e"=>"\xf0\x9f\x92\xbc", 
				"\xee\x8c\x96"=>"\xf0\x9f\x92\xbe", "\xee\x84\xa6"=>"\xf0\x9f\x92\xbf", "\xee\x84\xa7"=>"\xf0\x9f\x93\x80", "\xee\x8c\x93"=>"\xe2\x9c\x82", "[\xe7\x94\xbb\xe3\x81\xb3\xe3\x82\x87\xe3\x81\x86]"=>"\xf0\x9f\x93\x8c", 
				"[\xe3\x82\xab\xe3\x83\xac\xe3\x83\xb3\xe3\x83\x80\xe3\x83\xbc]"=>"\xf0\x9f\x93\x86", "[\xe3\x83\x95\xe3\x82\xa9\xe3\x83\xab\xe3\x83\x80]"=>"\xf0\x9f\x93\x82", "\xee\x85\x88"=>"\xf0\x9f\x93\x92", "[\xe5\x90\x8d\xe6\x9c\xad]"=>"\xf0\x9f\x93\x9b", "[\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xad\xe3\x83\xbc\xe3\x83\xab]"=>"\xf0\x9f\x93\x9c", 
				"[\xe3\x82\xb0\xe3\x83\xa9\xe3\x83\x95]"=>"\xf0\x9f\x93\x89", "[\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x8f", "[\xe4\xb8\x89\xe8\xa7\x92\xe5\xae\x9a\xe8\xa6\x8f]"=>"\xf0\x9f\x93\x90", "\xee\x80\x96"=>"\xe2\x9a\xbe", "\xee\x80\x94"=>"\xe2\x9b\xb3", 
				"\xee\x80\x95"=>"\xf0\x9f\x8e\xbe", "\xee\x80\x98"=>"\xe2\x9a\xbd", "\xee\x80\x93"=>"\xf0\x9f\x8e\xbf", "\xee\x90\xaa"=>"\xf0\x9f\x8f\x80", "\xee\x84\xb2"=>"\xf0\x9f\x8f\x81", 
				"[\xe3\x82\xb9\xe3\x83\x8e\xe3\x83\x9c]"=>"\xf0\x9f\x8f\x82", "\xee\x84\x95"=>"\xf0\x9f\x8f\x83", "\xee\x80\x97"=>"\xf0\x9f\x8f\x84", "\xee\x84\xb1"=>"\xf0\x9f\x8f\x86", "\xee\x90\xab"=>"\xf0\x9f\x8f\x88", 
				"\xee\x90\xad"=>"\xf0\x9f\x8f\x8a", "\xee\x80\x9e"=>"\xf0\x9f\x9a\x83", "\xee\x90\xb4"=>"\xe2\x93\x82", "\xee\x90\xb5"=>"\xf0\x9f\x9a\x84", "\xee\x80\x9f"=>"\xf0\x9f\x9a\x85", 
				"\xee\x80\x9b"=>"\xf0\x9f\x9a\x97", "\xee\x90\xae"=>"\xf0\x9f\x9a\x99", "\xee\x85\x99"=>"\xf0\x9f\x9a\x8c", "\xee\x85\x90"=>"\xf0\x9f\x9a\x8f", "\xee\x80\x9d"=>"\xe2\x9c\x88", 
				"\xee\x80\x9c"=>"\xe2\x9b\xb5", "\xee\x80\xb9"=>"\xf0\x9f\x9a\x89", "\xee\x84\x8d"=>"\xf0\x9f\x9a\x80", "\xee\x84\xb5"=>"\xf0\x9f\x9a\xa4", "\xee\x85\x9a"=>"\xf0\x9f\x9a\x95", 
				"\xee\x90\xaf"=>"\xf0\x9f\x9a\x9a", "\xee\x90\xb0"=>"\xf0\x9f\x9a\x92", "\xee\x90\xb1"=>"\xf0\x9f\x9a\x91", "\xee\x90\xb2"=>"\xf0\x9f\x9a\xa8", "\xee\x80\xba"=>"\xe2\x9b\xbd", 
				"\xee\x85\x8f"=>"\xf0\x9f\x85\xbf", "\xee\x85\x8e"=>"\xf0\x9f\x9a\xa5", "\xee\x84\xb7"=>"\xe2\x9b\x94", "\xee\x84\xa3"=>"\xe2\x99\xa8", "\xee\x84\xa2"=>"\xe2\x9b\xba", 
				"\xee\x84\xa4"=>"\xf0\x9f\x8e\xa1", "\xee\x90\xb3"=>"\xf0\x9f\x8e\xa2", "\xee\x80\xbc"=>"\xf0\x9f\x8e\xa4", "\xee\x80\xbd"=>"\xf0\x9f\x93\xb9", "\xee\x94\x87"=>"\xf0\x9f\x8e\xa6", 
				"\xee\x8c\x8a"=>"\xf0\x9f\x8e\xa7", "\xee\x94\x82"=>"\xf0\x9f\x8e\xa8", "\xee\x94\x83"=>"\xf0\x9f\x8e\xad", "[\xe3\x82\xa4\xe3\x83\x99\xe3\x83\xb3\xe3\x83\x88]"=>"\xf0\x9f\x8e\xaa", "\xee\x84\xa5"=>"\xf0\x9f\x8e\xab", 
				"\xee\x8c\xa4"=>"\xf0\x9f\x8e\xac", "[\xe3\x82\xb2\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8e\xae", "\xee\x84\xad"=>"\xf0\x9f\x80\x84", "\xee\x84\xb0"=>"\xf0\x9f\x8e\xaf", "\xee\x84\xb3"=>"\xf0\x9f\x8e\xb0", 
				"\xee\x90\xac"=>"\xf0\x9f\x8e\xb1", "[\xe3\x82\xb5\xe3\x82\xa4\xe3\x82\xb3\xe3\x83\xad]"=>"\xf0\x9f\x8e\xb2", "[\xe3\x83\x9c\xe3\x83\xbc\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xb0]"=>"\xf0\x9f\x8e\xb3", "[\xe8\x8a\xb1\xe6\x9c\xad]"=>"\xf0\x9f\x8e\xb4", "[\xe3\x82\xb8\xe3\x83\xa7\xe3\x83\xbc\xe3\x82\xab\xe3\x83\xbc]"=>"\xf0\x9f\x83\x8f", 
				"\xee\x80\xbe"=>"\xf0\x9f\x8e\xb5", "\xee\x8c\xa6"=>"\xf0\x9f\x8e\xbc", "\xee\x81\x80"=>"\xf0\x9f\x8e\xb7", "\xee\x81\x81"=>"\xf0\x9f\x8e\xb8", "[\xe3\x83\x94\xe3\x82\xa2\xe3\x83\x8e]"=>"\xf0\x9f\x8e\xb9", 
				"\xee\x81\x82"=>"\xf0\x9f\x8e\xba", "[\xe3\x83\x90\xe3\x82\xa4\xe3\x82\xaa\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8e\xbb", "\xee\x84\xac"=>"\xe3\x80\xbd", "\xee\x80\x88"=>"\xf0\x9f\x93\xb7", "\xee\x84\xaa"=>"\xf0\x9f\x93\xba", 
				"\xee\x84\xa8"=>"\xf0\x9f\x93\xbb", "\xee\x84\xa9"=>"\xf0\x9f\x93\xbc", "\xee\x80\x83"=>"\xf0\x9f\x92\x8b", "\xee\x84\x83\xee\x8c\xa8"=>"\xf0\x9f\x92\x8c", "\xee\x80\xb4"=>"\xf0\x9f\x92\x8d", 
				"\xee\x80\xb5"=>"\xf0\x9f\x92\x8e", "\xee\x84\x91"=>"\xf0\x9f\x92\x8f", "\xee\x8c\x86"=>"\xf0\x9f\x92\x90", "\xee\x90\xa5"=>"\xf0\x9f\x92\x91", "\xee\x90\xbd"=>"\xf0\x9f\x92\x92", 
				"\xee\x88\x87"=>"\xf0\x9f\x94\x9e", "\xee\x89\x8e"=>"\xc2\xa9", "\xee\x89\x8f"=>"\xc2\xae", "\xee\x94\xb7"=>"\xe2\x84\xa2", "[\xef\xbd\x89]"=>"\xe2\x84\xb9", 
				"\xee\x88\x90"=>"#\xe2\x83\xa3", "\xee\x88\x9c"=>"1\xe2\x83\xa3", "\xee\x88\x9d"=>"2\xe2\x83\xa3", "\xee\x88\x9e"=>"3\xe2\x83\xa3", "\xee\x88\x9f"=>"4\xe2\x83\xa3", 
				"\xee\x88\xa0"=>"5\xe2\x83\xa3", "\xee\x88\xa1"=>"6\xe2\x83\xa3", "\xee\x88\xa2"=>"7\xe2\x83\xa3", "\xee\x88\xa3"=>"8\xe2\x83\xa3", "\xee\x88\xa4"=>"9\xe2\x83\xa3", 
				"\xee\x88\xa5"=>"0\xe2\x83\xa3", "[10]"=>"\xf0\x9f\x94\x9f", "\xee\x88\x8b"=>"\xf0\x9f\x93\xb6", "\xee\x89\x90"=>"\xf0\x9f\x93\xb3", "\xee\x89\x91"=>"\xf0\x9f\x93\xb4", 
				"\xee\x84\xa0"=>"\xf0\x9f\x8d\x94", "\xee\x8d\x82"=>"\xf0\x9f\x8d\x99", "\xee\x81\x86"=>"\xf0\x9f\x8d\xb0", "\xee\x8d\x80"=>"\xf0\x9f\x8d\x9c", "\xee\x8c\xb9"=>"\xf0\x9f\x8d\x9e", 
				"\xee\x85\x87"=>"\xf0\x9f\x8d\xb3", "\xee\x8c\xba"=>"\xf0\x9f\x8d\xa6", "\xee\x8c\xbb"=>"\xf0\x9f\x8d\x9f", "\xee\x8c\xbc"=>"\xf0\x9f\x8d\xa1", "\xee\x8c\xbd"=>"\xf0\x9f\x8d\x98", 
				"\xee\x8c\xbe"=>"\xf0\x9f\x8d\x9a", "\xee\x8c\xbf"=>"\xf0\x9f\x8d\x9d", "\xee\x8d\x81"=>"\xf0\x9f\x8d\x9b", "\xee\x8d\x83"=>"\xf0\x9f\x8d\xa2", "\xee\x8d\x84"=>"\xf0\x9f\x8d\xa3", 
				"\xee\x8d\x8c"=>"\xf0\x9f\x8d\xb1", "\xee\x8d\x8d"=>"\xf0\x9f\x8d\xb2", "\xee\x90\xbf"=>"\xf0\x9f\x8d\xa7", "[\xe8\x82\x89]"=>"\xf0\x9f\x8d\x96", "[\xe3\x81\xaa\xe3\x82\x8b\xe3\x81\xa8]"=>"\xf0\x9f\x8d\xa5", 
				"[\xe3\x82\x84\xe3\x81\x8d\xe3\x81\x84\xe3\x82\x82]"=>"\xf0\x9f\x8d\xa0", "[\xe3\x83\x94\xe3\x82\xb6]"=>"\xf0\x9f\x8d\x95", "[\xe3\x83\x81\xe3\x82\xad\xe3\x83\xb3]"=>"\xf0\x9f\x8d\x97", "[\xe3\x82\xa2\xe3\x82\xa4\xe3\x82\xb9\xe3\x82\xaf\xe3\x83\xaa\xe3\x83\xbc\xe3\x83\xa0]"=>"\xf0\x9f\x8d\xa8", "[\xe3\x83\x89\xe3\x83\xbc\xe3\x83\x8a\xe3\x83\x84]"=>"\xf0\x9f\x8d\xa9", 
				"[\xe3\x82\xaf\xe3\x83\x83\xe3\x82\xad\xe3\x83\xbc]"=>"\xf0\x9f\x8d\xaa", "[\xe3\x83\x81\xe3\x83\xa7\xe3\x82\xb3]"=>"\xf0\x9f\x8d\xab", "[\xe3\x82\xad\xe3\x83\xa3\xe3\x83\xb3\xe3\x83\x87\xe3\x82\xa3]"=>"\xf0\x9f\x8d\xad", "[\xe3\x83\x97\xe3\x83\xaa\xe3\x83\xb3]"=>"\xf0\x9f\x8d\xae", "[\xe3\x83\x8f\xe3\x83\x81\xe3\x83\x9f\xe3\x83\x84]"=>"\xf0\x9f\x8d\xaf", 
				"[\xe3\x82\xa8\xe3\x83\x93\xe3\x83\x95\xe3\x83\xa9\xe3\x82\xa4]"=>"\xf0\x9f\x8d\xa4", "\xee\x81\x83"=>"\xf0\x9f\x8d\xb4", "\xee\x81\x85"=>"\xe2\x98\x95", "\xee\x81\x84"=>"\xf0\x9f\x8d\xb9", "\xee\x81\x87"=>"\xf0\x9f\x8d\xba", 
				"\xee\x8c\xb8"=>"\xf0\x9f\x8d\xb5", "\xee\x8c\x8c"=>"\xf0\x9f\x8d\xbb", "\xee\x88\xb6"=>"\xe2\xa4\xb4", "\xee\x88\xb8"=>"\xe2\xa4\xb5", "\xee\x88\xb7"=>"\xe2\x86\x96", 
				"\xee\x88\xb9"=>"\xe2\x86\x99", "\xe2\x87\x94"=>"\xe2\x86\x94", "\xe2\x86\x91\xe2\x86\x93"=>"\xf0\x9f\x94\x83", "\xee\x88\xb2"=>"\xe2\xac\x86", "\xee\x88\xb3"=>"\xe2\xac\x87", 
				"\xee\x88\xb4"=>"\xe2\x9e\xa1", "\xee\x88\xb5"=>"\xf0\x9f\x94\x99", "\xee\x88\xba"=>"\xe2\x96\xb6", "\xee\x88\xbb"=>"\xe2\x97\x80", "\xee\x88\xbc"=>"\xe2\x8f\xa9", 
				"\xee\x88\xbd"=>"\xe2\x8f\xaa", "\xe2\x96\xb2"=>"\xf0\x9f\x94\xbc", "\xe2\x96\xbc"=>"\xf0\x9f\x94\xbd", "\xee\x8c\xb2"=>"\xe2\xad\x95", "\xee\x8c\xb3"=>"\xe2\x9c\x96", 
				"\xee\x80\xa1"=>"\xe2\x9d\x97", "\xef\xbc\x81\xef\xbc\x9f"=>"\xe2\x81\x89", "\xef\xbc\x81\xef\xbc\x81"=>"\xe2\x80\xbc", "\xee\x80\xa0"=>"\xe2\x9d\x93", "\xee\x8c\xb6"=>"\xe2\x9d\x94", 
				"\xee\x8c\xb7"=>"\xe2\x9d\x95", "\xef\xbd\x9e"=>"\xe2\x9e\xb0", "\xee\x88\x91"=>"\xe2\x9e\xbf", "\xee\x80\xa2"=>"\xe2\x9d\xa4", "\xee\x8c\xa7"=>"\xf0\x9f\x92\x9e", 
				"\xee\x80\xa3"=>"\xf0\x9f\x92\x94", "\xee\x8c\xa8"=>"\xf0\x9f\x92\x97", "\xee\x8c\xa9"=>"\xf0\x9f\x92\x98", "\xee\x8c\xaa"=>"\xf0\x9f\x92\x99", "\xee\x8c\xab"=>"\xf0\x9f\x92\x9a", 
				"\xee\x8c\xac"=>"\xf0\x9f\x92\x9b", "\xee\x8c\xad"=>"\xf0\x9f\x92\x9c", "\xee\x90\xb7"=>"\xf0\x9f\x92\x9d", "\xee\x88\x84"=>"\xf0\x9f\x92\x9f", "\xee\x88\x8c"=>"\xe2\x99\xa5", 
				"\xee\x88\x8e"=>"\xe2\x99\xa0", "\xee\x88\x8d"=>"\xe2\x99\xa6", "\xee\x88\x8f"=>"\xe2\x99\xa3", "\xee\x8c\x8e"=>"\xf0\x9f\x9a\xac", "\xee\x88\x88"=>"\xf0\x9f\x9a\xad", 
				"\xee\x88\x8a"=>"\xe2\x99\xbf", "[\xe6\x97\x97]"=>"\xf0\x9f\x9a\xa9", "\xee\x89\x92"=>"\xe2\x9a\xa0", "\xee\x84\xb6"=>"\xf0\x9f\x9a\xb2", "\xee\x88\x81"=>"\xf0\x9f\x9a\xb6", 
				"\xee\x84\xb8"=>"\xf0\x9f\x9a\xb9", "\xee\x84\xb9"=>"\xf0\x9f\x9a\xba", "\xee\x84\xbf"=>"\xf0\x9f\x9b\x80", "\xee\x85\x91"=>"\xf0\x9f\x9a\xbb", "\xee\x85\x80"=>"\xf0\x9f\x9a\xbd", 
				"\xee\x8c\x89"=>"\xf0\x9f\x9a\xbe", "\xee\x84\xba"=>"\xf0\x9f\x9a\xbc", "[\xe3\x83\x89\xe3\x82\xa2]"=>"\xf0\x9f\x9a\xaa", "[\xe7\xa6\x81\xe6\xad\xa2]"=>"\xf0\x9f\x9a\xab", "[\xe3\x83\x81\xe3\x82\xa7\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xe2\x9c\x85", 
				"[CL]"=>"\xf0\x9f\x86\x91", "\xee\x88\x94"=>"\xf0\x9f\x86\x92", "[FREE]"=>"\xf0\x9f\x86\x93", "\xee\x88\xa9"=>"\xf0\x9f\x86\x94", "\xee\x88\x92"=>"\xf0\x9f\x86\x95", 
				"[NG]"=>"\xf0\x9f\x86\x96", "\xee\x89\x8d"=>"\xf0\x9f\x86\x97", "[SOS]"=>"\xf0\x9f\x86\x98", "\xee\x88\x93"=>"\xf0\x9f\x86\x99", "\xee\x84\xae"=>"\xf0\x9f\x86\x9a", 
				"\xee\x88\x83"=>"\xf0\x9f\x88\x81", "\xee\x88\xa8"=>"\xf0\x9f\x88\x82", "[\xe7\xa6\x81]"=>"\xf0\x9f\x88\xb2", "\xee\x88\xab"=>"\xf0\x9f\x88\xb3", "[\xe5\x90\x88]"=>"\xf0\x9f\x88\xb4", 
				"\xee\x88\xaa"=>"\xf0\x9f\x88\xb5", "\xee\x88\x95"=>"\xf0\x9f\x88\xb6", "\xee\x88\x96"=>"\xf0\x9f\x88\x9a", "\xee\x88\x97"=>"\xf0\x9f\x88\xb7", "\xee\x88\x98"=>"\xf0\x9f\x88\xb8", 
				"\xee\x88\xa7"=>"\xf0\x9f\x88\xb9", "\xee\x88\xac"=>"\xf0\x9f\x88\xaf", "\xee\x88\xad"=>"\xf0\x9f\x88\xba", "\xee\x8c\x95"=>"\xe3\x8a\x99", "\xee\x8c\x8d"=>"\xe3\x8a\x97", 
				"\xee\x88\xa6"=>"\xf0\x9f\x89\x90", "[\xe5\x8f\xaf]"=>"\xf0\x9f\x89\x91", "[\xef\xbc\x8b]"=>"\xe2\x9e\x95", "[\xef\xbc\x8d]"=>"\xe2\x9e\x96", "[\xc3\xb7]"=>"\xe2\x9e\x97", 
				"\xee\x84\x8f"=>"\xf0\x9f\x92\xa1", "\xee\x8c\xb4"=>"\xf0\x9f\x92\xa2", "\xee\x8c\x91"=>"\xf0\x9f\x92\xa3", "\xee\x84\xbc"=>"\xf0\x9f\x92\xa4", "[\xe3\x83\x89\xe3\x83\xb3\xe3\x83\x83]"=>"\xf0\x9f\x92\xa5", 
				"\xee\x8c\xb1"=>"\xf0\x9f\x92\xa7", "\xee\x8c\xb0"=>"\xf0\x9f\x92\xa8", "\xee\x81\x9a"=>"\xf0\x9f\x92\xa9", "\xee\x85\x8c"=>"\xf0\x9f\x92\xaa", "[\xe3\x83\x95\xe3\x82\xad\xe3\x83\x80\xe3\x82\xb7]"=>"\xf0\x9f\x92\xac", 
				"\xee\x8c\xae"=>"\xe2\x9d\x87", "\xee\x88\x85"=>"\xe2\x9c\xb4", "\xee\x88\x86"=>"\xe2\x9c\xb3", "\xee\x88\x99"=>"\xf0\x9f\x94\xb4", "\xee\x88\x9a"=>"\xe2\x97\xbc", 
				"\xee\x88\x9b"=>"\xf0\x9f\x94\xb9", "\xee\x8c\xaf"=>"\xe2\xad\x90", "[\xe8\x8a\xb1\xe4\xb8\xb8]"=>"\xf0\x9f\x92\xae", "[100\xe7\x82\xb9]"=>"\xf0\x9f\x92\xaf", "\xe2\x86\x90\xe2\x94\x98"=>"\xe2\x86\xa9", 
				"\xe2\x94\x94\xe2\x86\x92"=>"\xe2\x86\xaa", "\xee\x85\x81"=>"\xf0\x9f\x94\x8a", "[\xe9\x9b\xbb\xe6\xb1\xa0]"=>"\xf0\x9f\x94\x8b", "[\xe3\x82\xb3\xe3\x83\xb3\xe3\x82\xbb\xe3\x83\xb3\xe3\x83\x88]"=>"\xf0\x9f\x94\x8c", "\xee\x84\x94"=>"\xf0\x9f\x94\x8e", 
				"\xee\x85\x84"=>"\xf0\x9f\x94\x90", "\xee\x85\x85"=>"\xf0\x9f\x94\x93", "\xee\x80\xbf"=>"\xf0\x9f\x94\x91", "\xee\x8c\xa5"=>"\xf0\x9f\x94\x94", "[\xe3\x83\xa9\xe3\x82\xb8\xe3\x82\xaa\xe3\x83\x9c\xe3\x82\xbf\xe3\x83\xb3]"=>"\xf0\x9f\x94\x98", 
				"[\xe3\x83\x96\xe3\x83\x83\xe3\x82\xaf\xe3\x83\x9e\xe3\x83\xbc\xe3\x82\xaf]"=>"\xf0\x9f\x94\x96", "[\xe3\x83\xaa\xe3\x83\xb3\xe3\x82\xaf]"=>"\xf0\x9f\x94\x97", "[end]"=>"\xf0\x9f\x94\x9a", "[ON]"=>"\xf0\x9f\x94\x9b", "[SOON]"=>"\xf0\x9f\x94\x9c", 
				"\xee\x89\x8c"=>"\xf0\x9f\x94\x9d", "\xee\x80\x90"=>"\xe2\x9c\x8a", "\xee\x80\x91"=>"\xe2\x9c\x8c", "\xee\x80\x8d"=>"\xf0\x9f\x91\x8a", "\xee\x80\x8e"=>"\xf0\x9f\x91\x8d", 
				"\xee\x80\x8f"=>"\xe2\x98\x9d", "\xee\x88\xae"=>"\xf0\x9f\x91\x86", "\xee\x88\xaf"=>"\xf0\x9f\x91\x87", "\xee\x88\xb0"=>"\xf0\x9f\x91\x88", "\xee\x88\xb1"=>"\xf0\x9f\x91\x89", 
				"\xee\x90\x9e"=>"\xf0\x9f\x91\x8b", "\xee\x90\x9f"=>"\xf0\x9f\x91\x8f", "\xee\x90\xa0"=>"\xf0\x9f\x91\x8c", "\xee\x90\xa1"=>"\xf0\x9f\x91\x8e", "\xee\x90\xa2"=>"\xf0\x9f\x91\x90", 
			),
			'google_to_unified' => array(
				"\xf3\xbe\x80\x80"=>"\xe2\x98\x80", "\xf3\xbe\x80\x81"=>"\xe2\x98\x81", "\xf3\xbe\x80\x82"=>"\xe2\x98\x94", "\xf3\xbe\x80\x83"=>"\xe2\x9b\x84", 
				"\xf3\xbe\x80\x84"=>"\xe2\x9a\xa1", "\xf3\xbe\x80\x85"=>"\xf0\x9f\x8c\x80", "\xf3\xbe\x80\x86"=>"\xf0\x9f\x8c\x81", "\xf3\xbe\x80\x87"=>"\xf0\x9f\x8c\x82", "\xf3\xbe\x80\x88"=>"\xf0\x9f\x8c\x83", 
				"\xf3\xbe\x80\x89"=>"\xf0\x9f\x8c\x84", "\xf3\xbe\x80\x8a"=>"\xf0\x9f\x8c\x85", "\xf3\xbe\x80\x8b"=>"\xf0\x9f\x8c\x86", "\xf3\xbe\x80\x8c"=>"\xf0\x9f\x8c\x87", "\xf3\xbe\x80\x8d"=>"\xf0\x9f\x8c\x88", 
				"\xf3\xbe\x80\x8e"=>"\xe2\x9d\x84", "\xf3\xbe\x80\x8f"=>"\xe2\x9b\x85", "\xf3\xbe\x80\x90"=>"\xf0\x9f\x8c\x89", "\xf3\xbe\x80\xb8"=>"\xf0\x9f\x8c\x8a", "\xf3\xbe\x80\xba"=>"\xf0\x9f\x8c\x8b", 
				"\xf3\xbe\x80\xbb"=>"\xf0\x9f\x8c\x8c", "\xf3\xbe\x80\xb9"=>"\xf0\x9f\x8c\x8f", "\xf3\xbe\x80\x91"=>"\xf0\x9f\x8c\x91", "\xf3\xbe\x80\x92"=>"\xf0\x9f\x8c\x94", "\xf3\xbe\x80\x93"=>"\xf0\x9f\x8c\x93", 
				"\xf3\xbe\x80\x94"=>"\xf0\x9f\x8c\x99", "\xf3\xbe\x80\x95"=>"\xf0\x9f\x8c\x95", "\xf3\xbe\x80\x96"=>"\xf0\x9f\x8c\x9b", "\xf3\xbe\xad\xa9"=>"\xf0\x9f\x8c\x9f", "\xf3\xbe\xad\xaa"=>"\xf0\x9f\x8c\xa0", 
				"\xf3\xbe\x80\x9e"=>"\xf0\x9f\x95\x90", "\xf3\xbe\x80\x9f"=>"\xf0\x9f\x95\x91", "\xf3\xbe\x80\xa0"=>"\xf0\x9f\x95\x92", "\xf3\xbe\x80\xa1"=>"\xf0\x9f\x95\x93", "\xf3\xbe\x80\xa2"=>"\xf0\x9f\x95\x94", 
				"\xf3\xbe\x80\xa3"=>"\xf0\x9f\x95\x95", "\xf3\xbe\x80\xa4"=>"\xf0\x9f\x95\x96", "\xf3\xbe\x80\xa5"=>"\xf0\x9f\x95\x97", "\xf3\xbe\x80\xa6"=>"\xf0\x9f\x95\x98", "\xf3\xbe\x80\xa7"=>"\xf0\x9f\x95\x99", 
				"\xf3\xbe\x80\xa8"=>"\xf0\x9f\x95\x9a", "\xf3\xbe\x80\xa9"=>"\xf0\x9f\x95\x9b", "\xf3\xbe\x80\x9d"=>"\xe2\x8c\x9a", "\xf3\xbe\x80\x9c"=>"\xe2\x8c\x9b", "\xf3\xbe\x80\xaa"=>"\xe2\x8f\xb0", 
				"\xf3\xbe\x80\x9b"=>"\xe2\x8f\xb3", "\xf3\xbe\x80\xab"=>"\xe2\x99\x88", "\xf3\xbe\x80\xac"=>"\xe2\x99\x89", "\xf3\xbe\x80\xad"=>"\xe2\x99\x8a", "\xf3\xbe\x80\xae"=>"\xe2\x99\x8b", 
				"\xf3\xbe\x80\xaf"=>"\xe2\x99\x8c", "\xf3\xbe\x80\xb0"=>"\xe2\x99\x8d", "\xf3\xbe\x80\xb1"=>"\xe2\x99\x8e", "\xf3\xbe\x80\xb2"=>"\xe2\x99\x8f", "\xf3\xbe\x80\xb3"=>"\xe2\x99\x90", 
				"\xf3\xbe\x80\xb4"=>"\xe2\x99\x91", "\xf3\xbe\x80\xb5"=>"\xe2\x99\x92", "\xf3\xbe\x80\xb6"=>"\xe2\x99\x93", "\xf3\xbe\x80\xb7"=>"\xe2\x9b\x8e", "\xf3\xbe\x80\xbc"=>"\xf0\x9f\x8d\x80", 
				"\xf3\xbe\x80\xbd"=>"\xf0\x9f\x8c\xb7", "\xf3\xbe\x80\xbe"=>"\xf0\x9f\x8c\xb1", "\xf3\xbe\x80\xbf"=>"\xf0\x9f\x8d\x81", "\xf3\xbe\x81\x80"=>"\xf0\x9f\x8c\xb8", "\xf3\xbe\x81\x81"=>"\xf0\x9f\x8c\xb9", 
				"\xf3\xbe\x81\x82"=>"\xf0\x9f\x8d\x82", "\xf3\xbe\x81\x83"=>"\xf0\x9f\x8d\x83", "\xf3\xbe\x81\x85"=>"\xf0\x9f\x8c\xba", "\xf3\xbe\x81\x86"=>"\xf0\x9f\x8c\xbb", "\xf3\xbe\x81\x87"=>"\xf0\x9f\x8c\xb4", 
				"\xf3\xbe\x81\x88"=>"\xf0\x9f\x8c\xb5", "\xf3\xbe\x81\x89"=>"\xf0\x9f\x8c\xbe", "\xf3\xbe\x81\x8a"=>"\xf0\x9f\x8c\xbd", "\xf3\xbe\x81\x8b"=>"\xf0\x9f\x8d\x84", "\xf3\xbe\x81\x8c"=>"\xf0\x9f\x8c\xb0", 
				"\xf3\xbe\x81\x8d"=>"\xf0\x9f\x8c\xbc", "\xf3\xbe\x81\x8e"=>"\xf0\x9f\x8c\xbf", "\xf3\xbe\x81\x8f"=>"\xf0\x9f\x8d\x92", "\xf3\xbe\x81\x90"=>"\xf0\x9f\x8d\x8c", "\xf3\xbe\x81\x91"=>"\xf0\x9f\x8d\x8e", 
				"\xf3\xbe\x81\x92"=>"\xf0\x9f\x8d\x8a", "\xf3\xbe\x81\x93"=>"\xf0\x9f\x8d\x93", "\xf3\xbe\x81\x94"=>"\xf0\x9f\x8d\x89", "\xf3\xbe\x81\x95"=>"\xf0\x9f\x8d\x85", "\xf3\xbe\x81\x96"=>"\xf0\x9f\x8d\x86", 
				"\xf3\xbe\x81\x97"=>"\xf0\x9f\x8d\x88", "\xf3\xbe\x81\x98"=>"\xf0\x9f\x8d\x8d", "\xf3\xbe\x81\x99"=>"\xf0\x9f\x8d\x87", "\xf3\xbe\x81\x9a"=>"\xf0\x9f\x8d\x91", "\xf3\xbe\x81\x9b"=>"\xf0\x9f\x8d\x8f", 
				"\xf3\xbe\x86\x90"=>"\xf0\x9f\x91\x80", "\xf3\xbe\x86\x91"=>"\xf0\x9f\x91\x82", "\xf3\xbe\x86\x92"=>"\xf0\x9f\x91\x83", "\xf3\xbe\x86\x93"=>"\xf0\x9f\x91\x84", "\xf3\xbe\x86\x94"=>"\xf0\x9f\x91\x85", 
				"\xf3\xbe\x86\x95"=>"\xf0\x9f\x92\x84", "\xf3\xbe\x86\x96"=>"\xf0\x9f\x92\x85", "\xf3\xbe\x86\x97"=>"\xf0\x9f\x92\x86", "\xf3\xbe\x86\x98"=>"\xf0\x9f\x92\x87", "\xf3\xbe\x86\x99"=>"\xf0\x9f\x92\x88", 
				"\xf3\xbe\x86\x9a"=>"\xf0\x9f\x91\xa4", "\xf3\xbe\x86\x9b"=>"\xf0\x9f\x91\xa6", "\xf3\xbe\x86\x9c"=>"\xf0\x9f\x91\xa7", "\xf3\xbe\x86\x9d"=>"\xf0\x9f\x91\xa8", "\xf3\xbe\x86\x9e"=>"\xf0\x9f\x91\xa9", 
				"\xf3\xbe\x86\x9f"=>"\xf0\x9f\x91\xaa", "\xf3\xbe\x86\xa0"=>"\xf0\x9f\x91\xab", "\xf3\xbe\x86\xa1"=>"\xf0\x9f\x91\xae", "\xf3\xbe\x86\xa2"=>"\xf0\x9f\x91\xaf", "\xf3\xbe\x86\xa3"=>"\xf0\x9f\x91\xb0", 
				"\xf3\xbe\x86\xa4"=>"\xf0\x9f\x91\xb1", "\xf3\xbe\x86\xa5"=>"\xf0\x9f\x91\xb2", "\xf3\xbe\x86\xa6"=>"\xf0\x9f\x91\xb3", "\xf3\xbe\x86\xa7"=>"\xf0\x9f\x91\xb4", "\xf3\xbe\x86\xa8"=>"\xf0\x9f\x91\xb5", 
				"\xf3\xbe\x86\xa9"=>"\xf0\x9f\x91\xb6", "\xf3\xbe\x86\xaa"=>"\xf0\x9f\x91\xb7", "\xf3\xbe\x86\xab"=>"\xf0\x9f\x91\xb8", "\xf3\xbe\x86\xac"=>"\xf0\x9f\x91\xb9", "\xf3\xbe\x86\xad"=>"\xf0\x9f\x91\xba", 
				"\xf3\xbe\x86\xae"=>"\xf0\x9f\x91\xbb", "\xf3\xbe\x86\xaf"=>"\xf0\x9f\x91\xbc", "\xf3\xbe\x86\xb0"=>"\xf0\x9f\x91\xbd", "\xf3\xbe\x86\xb1"=>"\xf0\x9f\x91\xbe", "\xf3\xbe\x86\xb2"=>"\xf0\x9f\x91\xbf", 
				"\xf3\xbe\x86\xb3"=>"\xf0\x9f\x92\x80", "\xf3\xbe\x86\xb4"=>"\xf0\x9f\x92\x81", "\xf3\xbe\x86\xb5"=>"\xf0\x9f\x92\x82", "\xf3\xbe\x86\xb6"=>"\xf0\x9f\x92\x83", "\xf3\xbe\x86\xb9"=>"\xf0\x9f\x90\x8c", 
				"\xf3\xbe\x87\x93"=>"\xf0\x9f\x90\x8d", "\xf3\xbe\x9f\x9c"=>"\xf0\x9f\x90\x8e", "\xf3\xbe\x87\x94"=>"\xf0\x9f\x90\x94", "\xf3\xbe\x87\x95"=>"\xf0\x9f\x90\x97", "\xf3\xbe\x87\x96"=>"\xf0\x9f\x90\xab", 
				"\xf3\xbe\x87\x8c"=>"\xf0\x9f\x90\x98", "\xf3\xbe\x87\x8d"=>"\xf0\x9f\x90\xa8", "\xf3\xbe\x87\x8e"=>"\xf0\x9f\x90\x92", "\xf3\xbe\x87\x8f"=>"\xf0\x9f\x90\x91", "\xf3\xbe\x87\x85"=>"\xf0\x9f\x90\x99", 
				"\xf3\xbe\x87\x86"=>"\xf0\x9f\x90\x9a", "\xf3\xbe\x87\x8b"=>"\xf0\x9f\x90\x9b", "\xf3\xbe\x87\x9a"=>"\xf0\x9f\x90\x9c", "\xf3\xbe\x87\xa1"=>"\xf0\x9f\x90\x9d", "\xf3\xbe\x87\xa2"=>"\xf0\x9f\x90\x9e", 
				"\xf3\xbe\x87\x89"=>"\xf0\x9f\x90\xa0", "\xf3\xbe\x87\x99"=>"\xf0\x9f\x90\xa1", "\xf3\xbe\x87\x9c"=>"\xf0\x9f\x90\xa2", "\xf3\xbe\x86\xba"=>"\xf0\x9f\x90\xa4", "\xf3\xbe\x86\xbb"=>"\xf0\x9f\x90\xa5", 
				"\xf3\xbe\x87\x88"=>"\xf0\x9f\x90\xa6", "\xf3\xbe\x87\x9d"=>"\xf0\x9f\x90\xa3", "\xf3\xbe\x86\xbc"=>"\xf0\x9f\x90\xa7", "\xf3\xbe\x87\x98"=>"\xf0\x9f\x90\xa9", "\xf3\xbe\x86\xbd"=>"\xf0\x9f\x90\x9f", 
				"\xf3\xbe\x87\x87"=>"\xf0\x9f\x90\xac", "\xf3\xbe\x87\x82"=>"\xf0\x9f\x90\xad", "\xf3\xbe\x87\x80"=>"\xf0\x9f\x90\xaf", "\xf3\xbe\x86\xb8"=>"\xf0\x9f\x90\xb1", "\xf3\xbe\x87\x83"=>"\xf0\x9f\x90\xb3", 
				"\xf3\xbe\x86\xbe"=>"\xf0\x9f\x90\xb4", "\xf3\xbe\x87\x84"=>"\xf0\x9f\x90\xb5", "\xf3\xbe\x86\xb7"=>"\xf0\x9f\x90\xb6", "\xf3\xbe\x86\xbf"=>"\xf0\x9f\x90\xb7", "\xf3\xbe\x87\x81"=>"\xf0\x9f\x90\xbb", 
				"\xf3\xbe\x87\x8a"=>"\xf0\x9f\x90\xb9", "\xf3\xbe\x87\x90"=>"\xf0\x9f\x90\xba", "\xf3\xbe\x87\x91"=>"\xf0\x9f\x90\xae", "\xf3\xbe\x87\x92"=>"\xf0\x9f\x90\xb0", "\xf3\xbe\x87\x97"=>"\xf0\x9f\x90\xb8", 
				"\xf3\xbe\x87\x9b"=>"\xf0\x9f\x90\xbe", "\xf3\xbe\x87\x9e"=>"\xf0\x9f\x90\xb2", "\xf3\xbe\x87\x9f"=>"\xf0\x9f\x90\xbc", "\xf3\xbe\x87\xa0"=>"\xf0\x9f\x90\xbd", "\xf3\xbe\x8c\xa0"=>"\xf0\x9f\x98\xa0", 
				"\xf3\xbe\x8c\xa1"=>"\xf0\x9f\x98\xa9", "\xf3\xbe\x8c\xa2"=>"\xf0\x9f\x98\xb2", "\xf3\xbe\x8c\xa3"=>"\xf0\x9f\x98\x9e", "\xf3\xbe\x8c\xa4"=>"\xf0\x9f\x98\xb5", "\xf3\xbe\x8c\xa5"=>"\xf0\x9f\x98\xb0", 
				"\xf3\xbe\x8c\xa6"=>"\xf0\x9f\x98\x92", "\xf3\xbe\x8c\xa7"=>"\xf0\x9f\x98\x8d", "\xf3\xbe\x8c\xa8"=>"\xf0\x9f\x98\xa4", "\xf3\xbe\x8c\xa9"=>"\xf0\x9f\x98\x9c", "\xf3\xbe\x8c\xaa"=>"\xf0\x9f\x98\x9d", 
				"\xf3\xbe\x8c\xab"=>"\xf0\x9f\x98\x8b", "\xf3\xbe\x8c\xac"=>"\xf0\x9f\x98\x98", "\xf3\xbe\x8c\xad"=>"\xf0\x9f\x98\x9a", "\xf3\xbe\x8c\xae"=>"\xf0\x9f\x98\xb7", "\xf3\xbe\x8c\xaf"=>"\xf0\x9f\x98\xb3", 
				"\xf3\xbe\x8c\xb0"=>"\xf0\x9f\x98\x83", "\xf3\xbe\x8c\xb1"=>"\xf0\x9f\x98\x85", "\xf3\xbe\x8c\xb2"=>"\xf0\x9f\x98\x86", "\xf3\xbe\x8c\xb3"=>"\xf0\x9f\x98\x81", "\xf3\xbe\x8c\xb4"=>"\xf0\x9f\x98\x82", 
				"\xf3\xbe\x8c\xb5"=>"\xf0\x9f\x98\x8a", "\xf3\xbe\x8c\xb6"=>"\xe2\x98\xba", "\xf3\xbe\x8c\xb8"=>"\xf0\x9f\x98\x84", "\xf3\xbe\x8c\xb9"=>"\xf0\x9f\x98\xa2", "\xf3\xbe\x8c\xba"=>"\xf0\x9f\x98\xad", 
				"\xf3\xbe\x8c\xbb"=>"\xf0\x9f\x98\xa8", "\xf3\xbe\x8c\xbc"=>"\xf0\x9f\x98\xa3", "\xf3\xbe\x8c\xbd"=>"\xf0\x9f\x98\xa1", "\xf3\xbe\x8c\xbe"=>"\xf0\x9f\x98\x8c", "\xf3\xbe\x8c\xbf"=>"\xf0\x9f\x98\x96", 
				"\xf3\xbe\x8d\x80"=>"\xf0\x9f\x98\x94", "\xf3\xbe\x8d\x81"=>"\xf0\x9f\x98\xb1", "\xf3\xbe\x8d\x82"=>"\xf0\x9f\x98\xaa", "\xf3\xbe\x8d\x83"=>"\xf0\x9f\x98\x8f", "\xf3\xbe\x8d\x84"=>"\xf0\x9f\x98\x93", 
				"\xf3\xbe\x8d\x85"=>"\xf0\x9f\x98\xa5", "\xf3\xbe\x8d\x86"=>"\xf0\x9f\x98\xab", "\xf3\xbe\x8d\x87"=>"\xf0\x9f\x98\x89", "\xf3\xbe\x8d\x88"=>"\xf0\x9f\x98\xba", "\xf3\xbe\x8d\x89"=>"\xf0\x9f\x98\xb8", 
				"\xf3\xbe\x8d\x8a"=>"\xf0\x9f\x98\xb9", "\xf3\xbe\x8d\x8b"=>"\xf0\x9f\x98\xbd", "\xf3\xbe\x8d\x8c"=>"\xf0\x9f\x98\xbb", "\xf3\xbe\x8d\x8d"=>"\xf0\x9f\x98\xbf", "\xf3\xbe\x8d\x8e"=>"\xf0\x9f\x98\xbe", 
				"\xf3\xbe\x8d\x8f"=>"\xf0\x9f\x98\xbc", "\xf3\xbe\x8d\x90"=>"\xf0\x9f\x99\x80", "\xf3\xbe\x8d\x91"=>"\xf0\x9f\x99\x85", "\xf3\xbe\x8d\x92"=>"\xf0\x9f\x99\x86", "\xf3\xbe\x8d\x93"=>"\xf0\x9f\x99\x87", 
				"\xf3\xbe\x8d\x94"=>"\xf0\x9f\x99\x88", "\xf3\xbe\x8d\x95"=>"\xf0\x9f\x99\x8a", "\xf3\xbe\x8d\x96"=>"\xf0\x9f\x99\x89", "\xf3\xbe\x8d\x97"=>"\xf0\x9f\x99\x8b", "\xf3\xbe\x8d\x98"=>"\xf0\x9f\x99\x8c", 
				"\xf3\xbe\x8d\x99"=>"\xf0\x9f\x99\x8d", "\xf3\xbe\x8d\x9a"=>"\xf0\x9f\x99\x8e", "\xf3\xbe\x8d\x9b"=>"\xf0\x9f\x99\x8f", "\xf3\xbe\x92\xb0"=>"\xf0\x9f\x8f\xa0", "\xf3\xbe\x92\xb1"=>"\xf0\x9f\x8f\xa1", 
				"\xf3\xbe\x92\xb2"=>"\xf0\x9f\x8f\xa2", "\xf3\xbe\x92\xb3"=>"\xf0\x9f\x8f\xa3", "\xf3\xbe\x92\xb4"=>"\xf0\x9f\x8f\xa5", "\xf3\xbe\x92\xb5"=>"\xf0\x9f\x8f\xa6", "\xf3\xbe\x92\xb6"=>"\xf0\x9f\x8f\xa7", 
				"\xf3\xbe\x92\xb7"=>"\xf0\x9f\x8f\xa8", "\xf3\xbe\x92\xb8"=>"\xf0\x9f\x8f\xa9", "\xf3\xbe\x92\xb9"=>"\xf0\x9f\x8f\xaa", "\xf3\xbe\x92\xba"=>"\xf0\x9f\x8f\xab", "\xf3\xbe\x92\xbb"=>"\xe2\x9b\xaa", 
				"\xf3\xbe\x92\xbc"=>"\xe2\x9b\xb2", "\xf3\xbe\x92\xbd"=>"\xf0\x9f\x8f\xac", "\xf3\xbe\x92\xbe"=>"\xf0\x9f\x8f\xaf", "\xf3\xbe\x92\xbf"=>"\xf0\x9f\x8f\xb0", "\xf3\xbe\x93\x80"=>"\xf0\x9f\x8f\xad", 
				"\xf3\xbe\x93\x81"=>"\xe2\x9a\x93", "\xf3\xbe\x93\x82"=>"\xf0\x9f\x8f\xae", "\xf3\xbe\x93\x83"=>"\xf0\x9f\x97\xbb", "\xf3\xbe\x93\x84"=>"\xf0\x9f\x97\xbc", "\xf3\xbe\x93\x86"=>"\xf0\x9f\x97\xbd", 
				"\xf3\xbe\x93\x87"=>"\xf0\x9f\x97\xbe", "\xf3\xbe\x93\x88"=>"\xf0\x9f\x97\xbf", "\xf3\xbe\x93\x8c"=>"\xf0\x9f\x91\x9e", "\xf3\xbe\x93\x8d"=>"\xf0\x9f\x91\x9f", "\xf3\xbe\x93\x96"=>"\xf0\x9f\x91\xa0", 
				"\xf3\xbe\x93\x97"=>"\xf0\x9f\x91\xa1", "\xf3\xbe\x93\x98"=>"\xf0\x9f\x91\xa2", "\xf3\xbe\x95\x93"=>"\xf0\x9f\x91\xa3", "\xf3\xbe\x93\x8e"=>"\xf0\x9f\x91\x93", "\xf3\xbe\x93\x8f"=>"\xf0\x9f\x91\x95", 
				"\xf3\xbe\x93\x90"=>"\xf0\x9f\x91\x96", "\xf3\xbe\x93\x91"=>"\xf0\x9f\x91\x91", "\xf3\xbe\x93\x93"=>"\xf0\x9f\x91\x94", "\xf3\xbe\x93\x94"=>"\xf0\x9f\x91\x92", "\xf3\xbe\x93\x95"=>"\xf0\x9f\x91\x97", 
				"\xf3\xbe\x93\x99"=>"\xf0\x9f\x91\x98", "\xf3\xbe\x93\x9a"=>"\xf0\x9f\x91\x99", "\xf3\xbe\x93\x9b"=>"\xf0\x9f\x91\x9a", "\xf3\xbe\x93\x9c"=>"\xf0\x9f\x91\x9b", "\xf3\xbe\x93\xb0"=>"\xf0\x9f\x91\x9c", 
				"\xf3\xbe\x93\xb1"=>"\xf0\x9f\x91\x9d", "\xf3\xbe\x93\x9d"=>"\xf0\x9f\x92\xb0", "\xf3\xbe\x93\x9e"=>"\xf0\x9f\x92\xb1", "\xf3\xbe\x93\x9f"=>"\xf0\x9f\x92\xb9", "\xf3\xbe\x93\xa0"=>"\xf0\x9f\x92\xb2", 
				"\xf3\xbe\x93\xa1"=>"\xf0\x9f\x92\xb3", "\xf3\xbe\x93\xa2"=>"\xf0\x9f\x92\xb4", "\xf3\xbe\x93\xa3"=>"\xf0\x9f\x92\xb5", "\xf3\xbe\x93\xa4"=>"\xf0\x9f\x92\xb8", "\xf3\xbe\x93\xad"=>"\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3", 
				"\xf3\xbe\x93\xa8"=>"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa", "\xf3\xbe\x93\xab"=>"\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8", "\xf3\xbe\x93\xa7"=>"\xf0\x9f\x87\xab\xf0\x9f\x87\xb7", "\xf3\xbe\x93\xaa"=>"\xf0\x9f\x87\xac\xf0\x9f\x87\xa7", "\xf3\xbe\x93\xa9"=>"\xf0\x9f\x87\xae\xf0\x9f\x87\xb9", 
				"\xf3\xbe\x93\xa5"=>"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5", "\xf3\xbe\x93\xae"=>"\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7", "\xf3\xbe\x93\xac"=>"\xf0\x9f\x87\xb7\xf0\x9f\x87\xba", "\xf3\xbe\x93\xa6"=>"\xf0\x9f\x87\xba\xf0\x9f\x87\xb8", "\xf3\xbe\x93\xb6"=>"\xf0\x9f\x94\xa5", 
				"\xf3\xbe\x93\xbb"=>"\xf0\x9f\x94\xa6", "\xf3\xbe\x93\x89"=>"\xf0\x9f\x94\xa7", "\xf3\xbe\x93\x8a"=>"\xf0\x9f\x94\xa8", "\xf3\xbe\x93\x8b"=>"\xf0\x9f\x94\xa9", "\xf3\xbe\x93\xba"=>"\xf0\x9f\x94\xaa", 
				"\xf3\xbe\x93\xb5"=>"\xf0\x9f\x94\xab", "\xf3\xbe\x93\xb7"=>"\xf0\x9f\x94\xae", "\xf3\xbe\x93\xb8"=>"\xf0\x9f\x94\xaf", "\xf3\xbe\x81\x84"=>"\xf0\x9f\x94\xb0", "\xf3\xbe\x93\x92"=>"\xf0\x9f\x94\xb1", 
				"\xf3\xbe\x94\x89"=>"\xf0\x9f\x92\x89", "\xf3\xbe\x94\x8a"=>"\xf0\x9f\x92\x8a", "\xf3\xbe\x94\x8b"=>"\xf0\x9f\x85\xb0", "\xf3\xbe\x94\x8c"=>"\xf0\x9f\x85\xb1", "\xf3\xbe\x94\x8d"=>"\xf0\x9f\x86\x8e", 
				"\xf3\xbe\x94\x8e"=>"\xf0\x9f\x85\xbe", "\xf3\xbe\x94\x8f"=>"\xf0\x9f\x8e\x80", "\xf3\xbe\x94\x90"=>"\xf0\x9f\x8e\x81", "\xf3\xbe\x94\x91"=>"\xf0\x9f\x8e\x82", "\xf3\xbe\x94\x92"=>"\xf0\x9f\x8e\x84", 
				"\xf3\xbe\x94\x93"=>"\xf0\x9f\x8e\x85", "\xf3\xbe\x94\x94"=>"\xf0\x9f\x8e\x8c", "\xf3\xbe\x94\x95"=>"\xf0\x9f\x8e\x86", "\xf3\xbe\x94\x96"=>"\xf0\x9f\x8e\x88", "\xf3\xbe\x94\x97"=>"\xf0\x9f\x8e\x89", 
				"\xf3\xbe\x94\x98"=>"\xf0\x9f\x8e\x8d", "\xf3\xbe\x94\x99"=>"\xf0\x9f\x8e\x8e", "\xf3\xbe\x94\x9a"=>"\xf0\x9f\x8e\x93", "\xf3\xbe\x94\x9b"=>"\xf0\x9f\x8e\x92", "\xf3\xbe\x94\x9c"=>"\xf0\x9f\x8e\x8f", 
				"\xf3\xbe\x94\x9d"=>"\xf0\x9f\x8e\x87", "\xf3\xbe\x94\x9e"=>"\xf0\x9f\x8e\x90", "\xf3\xbe\x94\x9f"=>"\xf0\x9f\x8e\x83", "\xf3\xbe\x94\xa0"=>"\xf0\x9f\x8e\x8a", "\xf3\xbe\x94\xa1"=>"\xf0\x9f\x8e\x8b", 
				"\xf3\xbe\x80\x97"=>"\xf0\x9f\x8e\x91", "\xf3\xbe\x94\xa2"=>"\xf0\x9f\x93\x9f", "\xf3\xbe\x94\xa3"=>"\xe2\x98\x8e", "\xf3\xbe\x94\xa4"=>"\xf0\x9f\x93\x9e", "\xf3\xbe\x94\xa5"=>"\xf0\x9f\x93\xb1", 
				"\xf3\xbe\x94\xa6"=>"\xf0\x9f\x93\xb2", "\xf3\xbe\x94\xa7"=>"\xf0\x9f\x93\x9d", "\xf3\xbe\x94\xa8"=>"\xf0\x9f\x93\xa0", "\xf3\xbe\x94\xa9"=>"\xe2\x9c\x89", "\xf3\xbe\x94\xaa"=>"\xf0\x9f\x93\xa8", 
				"\xf3\xbe\x94\xab"=>"\xf0\x9f\x93\xa9", "\xf3\xbe\x94\xac"=>"\xf0\x9f\x93\xaa", "\xf3\xbe\x94\xad"=>"\xf0\x9f\x93\xab", "\xf3\xbe\x94\xae"=>"\xf0\x9f\x93\xae", "\xf3\xbe\xa0\xa2"=>"\xf0\x9f\x93\xb0", 
				"\xf3\xbe\x94\xaf"=>"\xf0\x9f\x93\xa2", "\xf3\xbe\x94\xb0"=>"\xf0\x9f\x93\xa3", "\xf3\xbe\x94\xb1"=>"\xf0\x9f\x93\xa1", "\xf3\xbe\x94\xb3"=>"\xf0\x9f\x93\xa4", "\xf3\xbe\x94\xb4"=>"\xf0\x9f\x93\xa5", 
				"\xf3\xbe\x94\xb5"=>"\xf0\x9f\x93\xa6", "\xf3\xbe\xae\x92"=>"\xf0\x9f\x93\xa7", "\xf3\xbe\xad\xbc"=>"\xf0\x9f\x94\xa0", "\xf3\xbe\xad\xbd"=>"\xf0\x9f\x94\xa1", "\xf3\xbe\xad\xbe"=>"\xf0\x9f\x94\xa2", 
				"\xf3\xbe\xad\xbf"=>"\xf0\x9f\x94\xa3", "\xf3\xbe\xae\x80"=>"\xf0\x9f\x94\xa4", "\xf3\xbe\x94\xb6"=>"\xe2\x9c\x92", "\xf3\xbe\x94\xb7"=>"\xf0\x9f\x92\xba", "\xf3\xbe\x94\xb8"=>"\xf0\x9f\x92\xbb", 
				"\xf3\xbe\x94\xb9"=>"\xe2\x9c\x8f", "\xf3\xbe\x94\xba"=>"\xf0\x9f\x93\x8e", "\xf3\xbe\x94\xbb"=>"\xf0\x9f\x92\xbc", "\xf3\xbe\x94\xbc"=>"\xf0\x9f\x92\xbd", "\xf3\xbe\x94\xbd"=>"\xf0\x9f\x92\xbe", 
				"\xf3\xbe\xa0\x9d"=>"\xf0\x9f\x92\xbf", "\xf3\xbe\xa0\x9e"=>"\xf0\x9f\x93\x80", "\xf3\xbe\x94\xbe"=>"\xe2\x9c\x82", "\xf3\xbe\x94\xbf"=>"\xf0\x9f\x93\x8d", "\xf3\xbe\x95\x80"=>"\xf0\x9f\x93\x83", 
				"\xf3\xbe\x95\x81"=>"\xf0\x9f\x93\x84", "\xf3\xbe\x95\x82"=>"\xf0\x9f\x93\x85", "\xf3\xbe\x95\x83"=>"\xf0\x9f\x93\x81", "\xf3\xbe\x95\x84"=>"\xf0\x9f\x93\x82", "\xf3\xbe\x95\x85"=>"\xf0\x9f\x93\x93", 
				"\xf3\xbe\x95\x86"=>"\xf0\x9f\x93\x96", "\xf3\xbe\x95\x87"=>"\xf0\x9f\x93\x94", "\xf3\xbe\x94\x82"=>"\xf0\x9f\x93\x95", "\xf3\xbe\x93\xbf"=>"\xf0\x9f\x93\x97", "\xf3\xbe\x94\x80"=>"\xf0\x9f\x93\x98", 
				"\xf3\xbe\x94\x81"=>"\xf0\x9f\x93\x99", "\xf3\xbe\x94\x83"=>"\xf0\x9f\x93\x9a", "\xf3\xbe\x94\x84"=>"\xf0\x9f\x93\x9b", "\xf3\xbe\x93\xbd"=>"\xf0\x9f\x93\x9c", "\xf3\xbe\x95\x88"=>"\xf0\x9f\x93\x8b", 
				"\xf3\xbe\x95\x89"=>"\xf0\x9f\x93\x86", "\xf3\xbe\x95\x8a"=>"\xf0\x9f\x93\x8a", "\xf3\xbe\x95\x8b"=>"\xf0\x9f\x93\x88", "\xf3\xbe\x95\x8c"=>"\xf0\x9f\x93\x89", "\xf3\xbe\x95\x8d"=>"\xf0\x9f\x93\x87", 
				"\xf3\xbe\x95\x8e"=>"\xf0\x9f\x93\x8c", "\xf3\xbe\x95\x8f"=>"\xf0\x9f\x93\x92", "\xf3\xbe\x95\x90"=>"\xf0\x9f\x93\x8f", "\xf3\xbe\x95\x91"=>"\xf0\x9f\x93\x90", "\xf3\xbe\x95\x92"=>"\xf0\x9f\x93\x91", 
				"\xf3\xbe\x9f\x90"=>"\xf0\x9f\x8e\xbd", "\xf3\xbe\x9f\x91"=>"\xe2\x9a\xbe", "\xf3\xbe\x9f\x92"=>"\xe2\x9b\xb3", "\xf3\xbe\x9f\x93"=>"\xf0\x9f\x8e\xbe", "\xf3\xbe\x9f\x94"=>"\xe2\x9a\xbd", 
				"\xf3\xbe\x9f\x95"=>"\xf0\x9f\x8e\xbf", "\xf3\xbe\x9f\x96"=>"\xf0\x9f\x8f\x80", "\xf3\xbe\x9f\x97"=>"\xf0\x9f\x8f\x81", "\xf3\xbe\x9f\x98"=>"\xf0\x9f\x8f\x82", "\xf3\xbe\x9f\x99"=>"\xf0\x9f\x8f\x83", 
				"\xf3\xbe\x9f\x9a"=>"\xf0\x9f\x8f\x84", "\xf3\xbe\x9f\x9b"=>"\xf0\x9f\x8f\x86", "\xf3\xbe\x9f\x9d"=>"\xf0\x9f\x8f\x88", "\xf3\xbe\x9f\x9e"=>"\xf0\x9f\x8f\x8a", "\xf3\xbe\x9f\x9f"=>"\xf0\x9f\x9a\x83", 
				"\xf3\xbe\x9f\xa0"=>"\xf0\x9f\x9a\x87", "\xf3\xbe\x9f\xa1"=>"\xe2\x93\x82", "\xf3\xbe\x9f\xa2"=>"\xf0\x9f\x9a\x84", "\xf3\xbe\x9f\xa3"=>"\xf0\x9f\x9a\x85", "\xf3\xbe\x9f\xa4"=>"\xf0\x9f\x9a\x97", 
				"\xf3\xbe\x9f\xa5"=>"\xf0\x9f\x9a\x99", "\xf3\xbe\x9f\xa6"=>"\xf0\x9f\x9a\x8c", "\xf3\xbe\x9f\xa7"=>"\xf0\x9f\x9a\x8f", "\xf3\xbe\x9f\xa8"=>"\xf0\x9f\x9a\xa2", "\xf3\xbe\x9f\xa9"=>"\xe2\x9c\x88", 
				"\xf3\xbe\x9f\xaa"=>"\xe2\x9b\xb5", "\xf3\xbe\x9f\xac"=>"\xf0\x9f\x9a\x89", "\xf3\xbe\x9f\xad"=>"\xf0\x9f\x9a\x80", "\xf3\xbe\x9f\xae"=>"\xf0\x9f\x9a\xa4", "\xf3\xbe\x9f\xaf"=>"\xf0\x9f\x9a\x95", 
				"\xf3\xbe\x9f\xb1"=>"\xf0\x9f\x9a\x9a", "\xf3\xbe\x9f\xb2"=>"\xf0\x9f\x9a\x92", "\xf3\xbe\x9f\xb3"=>"\xf0\x9f\x9a\x91", "\xf3\xbe\x9f\xb4"=>"\xf0\x9f\x9a\x93", "\xf3\xbe\x9f\xb5"=>"\xe2\x9b\xbd", 
				"\xf3\xbe\x9f\xb6"=>"\xf0\x9f\x85\xbf", "\xf3\xbe\x9f\xb7"=>"\xf0\x9f\x9a\xa5", "\xf3\xbe\x9f\xb8"=>"\xf0\x9f\x9a\xa7", "\xf3\xbe\x9f\xb9"=>"\xf0\x9f\x9a\xa8", "\xf3\xbe\x9f\xba"=>"\xe2\x99\xa8", 
				"\xf3\xbe\x9f\xbb"=>"\xe2\x9b\xba", "\xf3\xbe\x9f\xbc"=>"\xf0\x9f\x8e\xa0", "\xf3\xbe\x9f\xbd"=>"\xf0\x9f\x8e\xa1", "\xf3\xbe\x9f\xbe"=>"\xf0\x9f\x8e\xa2", "\xf3\xbe\x9f\xbf"=>"\xf0\x9f\x8e\xa3", 
				"\xf3\xbe\xa0\x80"=>"\xf0\x9f\x8e\xa4", "\xf3\xbe\xa0\x81"=>"\xf0\x9f\x8e\xa5", "\xf3\xbe\xa0\x82"=>"\xf0\x9f\x8e\xa6", "\xf3\xbe\xa0\x83"=>"\xf0\x9f\x8e\xa7", "\xf3\xbe\xa0\x84"=>"\xf0\x9f\x8e\xa8", 
				"\xf3\xbe\xa0\x85"=>"\xf0\x9f\x8e\xa9", "\xf3\xbe\xa0\x86"=>"\xf0\x9f\x8e\xaa", "\xf3\xbe\xa0\x87"=>"\xf0\x9f\x8e\xab", "\xf3\xbe\xa0\x88"=>"\xf0\x9f\x8e\xac", "\xf3\xbe\xa0\x89"=>"\xf0\x9f\x8e\xad", 
				"\xf3\xbe\xa0\x8a"=>"\xf0\x9f\x8e\xae", "\xf3\xbe\xa0\x8b"=>"\xf0\x9f\x80\x84", "\xf3\xbe\xa0\x8c"=>"\xf0\x9f\x8e\xaf", "\xf3\xbe\xa0\x8d"=>"\xf0\x9f\x8e\xb0", "\xf3\xbe\xa0\x8e"=>"\xf0\x9f\x8e\xb1", 
				"\xf3\xbe\xa0\x8f"=>"\xf0\x9f\x8e\xb2", "\xf3\xbe\xa0\x90"=>"\xf0\x9f\x8e\xb3", "\xf3\xbe\xa0\x91"=>"\xf0\x9f\x8e\xb4", "\xf3\xbe\xa0\x92"=>"\xf0\x9f\x83\x8f", "\xf3\xbe\xa0\x93"=>"\xf0\x9f\x8e\xb5", 
				"\xf3\xbe\xa0\x94"=>"\xf0\x9f\x8e\xb6", "\xf3\xbe\xa0\x95"=>"\xf0\x9f\x8e\xb7", "\xf3\xbe\xa0\x96"=>"\xf0\x9f\x8e\xb8", "\xf3\xbe\xa0\x97"=>"\xf0\x9f\x8e\xb9", "\xf3\xbe\xa0\x98"=>"\xf0\x9f\x8e\xba", 
				"\xf3\xbe\xa0\x99"=>"\xf0\x9f\x8e\xbb", "\xf3\xbe\xa0\x9a"=>"\xf0\x9f\x8e\xbc", "\xf3\xbe\xa0\x9b"=>"\xe3\x80\xbd", "\xf3\xbe\x93\xaf"=>"\xf0\x9f\x93\xb7", "\xf3\xbe\x93\xb9"=>"\xf0\x9f\x93\xb9", 
				"\xf3\xbe\xa0\x9c"=>"\xf0\x9f\x93\xba", "\xf3\xbe\xa0\x9f"=>"\xf0\x9f\x93\xbb", "\xf3\xbe\xa0\xa0"=>"\xf0\x9f\x93\xbc", "\xf3\xbe\xa0\xa3"=>"\xf0\x9f\x92\x8b", "\xf3\xbe\xa0\xa4"=>"\xf0\x9f\x92\x8c", 
				"\xf3\xbe\xa0\xa5"=>"\xf0\x9f\x92\x8d", "\xf3\xbe\xa0\xa6"=>"\xf0\x9f\x92\x8e", "\xf3\xbe\xa0\xa7"=>"\xf0\x9f\x92\x8f", "\xf3\xbe\xa0\xa8"=>"\xf0\x9f\x92\x90", "\xf3\xbe\xa0\xa9"=>"\xf0\x9f\x92\x91", 
				"\xf3\xbe\xa0\xaa"=>"\xf0\x9f\x92\x92", "\xf3\xbe\xac\xa5"=>"\xf0\x9f\x94\x9e", "\xf3\xbe\xac\xa9"=>"\xc2\xa9", "\xf3\xbe\xac\xad"=>"\xc2\xae", "\xf3\xbe\xac\xaa"=>"\xe2\x84\xa2", 
				"\xf3\xbe\xad\x87"=>"\xe2\x84\xb9", "\xf3\xbe\xa0\xac"=>"#\xe2\x83\xa3", "\xf3\xbe\xa0\xae"=>"1\xe2\x83\xa3", "\xf3\xbe\xa0\xaf"=>"2\xe2\x83\xa3", "\xf3\xbe\xa0\xb0"=>"3\xe2\x83\xa3", 
				"\xf3\xbe\xa0\xb1"=>"4\xe2\x83\xa3", "\xf3\xbe\xa0\xb2"=>"5\xe2\x83\xa3", "\xf3\xbe\xa0\xb3"=>"6\xe2\x83\xa3", "\xf3\xbe\xa0\xb4"=>"7\xe2\x83\xa3", "\xf3\xbe\xa0\xb5"=>"8\xe2\x83\xa3", 
				"\xf3\xbe\xa0\xb6"=>"9\xe2\x83\xa3", "\xf3\xbe\xa0\xb7"=>"0\xe2\x83\xa3", "\xf3\xbe\xa0\xbb"=>"\xf0\x9f\x94\x9f", "\xf3\xbe\xa0\xb8"=>"\xf0\x9f\x93\xb6", "\xf3\xbe\xa0\xb9"=>"\xf0\x9f\x93\xb3", 
				"\xf3\xbe\xa0\xba"=>"\xf0\x9f\x93\xb4", "\xf3\xbe\xa5\xa0"=>"\xf0\x9f\x8d\x94", "\xf3\xbe\xa5\xa1"=>"\xf0\x9f\x8d\x99", "\xf3\xbe\xa5\xa2"=>"\xf0\x9f\x8d\xb0", "\xf3\xbe\xa5\xa3"=>"\xf0\x9f\x8d\x9c", 
				"\xf3\xbe\xa5\xa4"=>"\xf0\x9f\x8d\x9e", "\xf3\xbe\xa5\xa5"=>"\xf0\x9f\x8d\xb3", "\xf3\xbe\xa5\xa6"=>"\xf0\x9f\x8d\xa6", "\xf3\xbe\xa5\xa7"=>"\xf0\x9f\x8d\x9f", "\xf3\xbe\xa5\xa8"=>"\xf0\x9f\x8d\xa1", 
				"\xf3\xbe\xa5\xa9"=>"\xf0\x9f\x8d\x98", "\xf3\xbe\xa5\xaa"=>"\xf0\x9f\x8d\x9a", "\xf3\xbe\xa5\xab"=>"\xf0\x9f\x8d\x9d", "\xf3\xbe\xa5\xac"=>"\xf0\x9f\x8d\x9b", "\xf3\xbe\xa5\xad"=>"\xf0\x9f\x8d\xa2", 
				"\xf3\xbe\xa5\xae"=>"\xf0\x9f\x8d\xa3", "\xf3\xbe\xa5\xaf"=>"\xf0\x9f\x8d\xb1", "\xf3\xbe\xa5\xb0"=>"\xf0\x9f\x8d\xb2", "\xf3\xbe\xa5\xb1"=>"\xf0\x9f\x8d\xa7", "\xf3\xbe\xa5\xb2"=>"\xf0\x9f\x8d\x96", 
				"\xf3\xbe\xa5\xb3"=>"\xf0\x9f\x8d\xa5", "\xf3\xbe\xa5\xb4"=>"\xf0\x9f\x8d\xa0", "\xf3\xbe\xa5\xb5"=>"\xf0\x9f\x8d\x95", "\xf3\xbe\xa5\xb6"=>"\xf0\x9f\x8d\x97", "\xf3\xbe\xa5\xb7"=>"\xf0\x9f\x8d\xa8", 
				"\xf3\xbe\xa5\xb8"=>"\xf0\x9f\x8d\xa9", "\xf3\xbe\xa5\xb9"=>"\xf0\x9f\x8d\xaa", "\xf3\xbe\xa5\xba"=>"\xf0\x9f\x8d\xab", "\xf3\xbe\xa5\xbb"=>"\xf0\x9f\x8d\xac", "\xf3\xbe\xa5\xbc"=>"\xf0\x9f\x8d\xad", 
				"\xf3\xbe\xa5\xbd"=>"\xf0\x9f\x8d\xae", "\xf3\xbe\xa5\xbe"=>"\xf0\x9f\x8d\xaf", "\xf3\xbe\xa5\xbf"=>"\xf0\x9f\x8d\xa4", "\xf3\xbe\xa6\x80"=>"\xf0\x9f\x8d\xb4", "\xf3\xbe\xa6\x81"=>"\xe2\x98\x95", 
				"\xf3\xbe\xa6\x82"=>"\xf0\x9f\x8d\xb8", "\xf3\xbe\xa6\x83"=>"\xf0\x9f\x8d\xba", "\xf3\xbe\xa6\x84"=>"\xf0\x9f\x8d\xb5", "\xf3\xbe\xa6\x85"=>"\xf0\x9f\x8d\xb6", "\xf3\xbe\xa6\x86"=>"\xf0\x9f\x8d\xb7", 
				"\xf3\xbe\xa6\x87"=>"\xf0\x9f\x8d\xbb", "\xf3\xbe\xa6\x88"=>"\xf0\x9f\x8d\xb9", "\xf3\xbe\xab\xb0"=>"\xe2\x86\x97", "\xf3\xbe\xab\xb1"=>"\xe2\x86\x98", "\xf3\xbe\xab\xb2"=>"\xe2\x86\x96", 
				"\xf3\xbe\xab\xb3"=>"\xe2\x86\x99", "\xf3\xbe\xab\xb4"=>"\xe2\xa4\xb4", "\xf3\xbe\xab\xb5"=>"\xe2\xa4\xb5", "\xf3\xbe\xab\xb6"=>"\xe2\x86\x94", "\xf3\xbe\xab\xb7"=>"\xe2\x86\x95", 
				"\xf3\xbe\xab\xb8"=>"\xe2\xac\x86", "\xf3\xbe\xab\xb9"=>"\xe2\xac\x87", "\xf3\xbe\xab\xba"=>"\xe2\x9e\xa1", "\xf3\xbe\xab\xbb"=>"\xe2\xac\x85", "\xf3\xbe\xab\xbc"=>"\xe2\x96\xb6", 
				"\xf3\xbe\xab\xbd"=>"\xe2\x97\x80", "\xf3\xbe\xab\xbe"=>"\xe2\x8f\xa9", "\xf3\xbe\xab\xbf"=>"\xe2\x8f\xaa", "\xf3\xbe\xac\x83"=>"\xe2\x8f\xab", "\xf3\xbe\xac\x82"=>"\xe2\x8f\xac", 
				"\xf3\xbe\xad\xb8"=>"\xf0\x9f\x94\xba", "\xf3\xbe\xad\xb9"=>"\xf0\x9f\x94\xbb", "\xf3\xbe\xac\x81"=>"\xf0\x9f\x94\xbc", "\xf3\xbe\xac\x80"=>"\xf0\x9f\x94\xbd", "\xf3\xbe\xad\x84"=>"\xe2\xad\x95", 
				"\xf3\xbe\xad\x85"=>"\xe2\x9d\x8c", "\xf3\xbe\xad\x86"=>"\xe2\x9d\x8e", "\xf3\xbe\xac\x84"=>"\xe2\x9d\x97", "\xf3\xbe\xac\x85"=>"\xe2\x81\x89", "\xf3\xbe\xac\x86"=>"\xe2\x80\xbc", 
				"\xf3\xbe\xac\x89"=>"\xe2\x9d\x93", "\xf3\xbe\xac\x8a"=>"\xe2\x9d\x94", "\xf3\xbe\xac\x8b"=>"\xe2\x9d\x95", "\xf3\xbe\xac\x87"=>"\xe3\x80\xb0", "\xf3\xbe\xac\x88"=>"\xe2\x9e\xb0", 
				"\xf3\xbe\xa0\xab"=>"\xe2\x9e\xbf", "\xf3\xbe\xac\x8c"=>"\xe2\x9d\xa4", "\xf3\xbe\xac\x8d"=>"\xf0\x9f\x92\x93", "\xf3\xbe\xac\x8e"=>"\xf0\x9f\x92\x94", "\xf3\xbe\xac\x8f"=>"\xf0\x9f\x92\x95", 
				"\xf3\xbe\xac\x90"=>"\xf0\x9f\x92\x96", "\xf3\xbe\xac\x91"=>"\xf0\x9f\x92\x97", "\xf3\xbe\xac\x92"=>"\xf0\x9f\x92\x98", "\xf3\xbe\xac\x93"=>"\xf0\x9f\x92\x99", "\xf3\xbe\xac\x94"=>"\xf0\x9f\x92\x9a", 
				"\xf3\xbe\xac\x95"=>"\xf0\x9f\x92\x9b", "\xf3\xbe\xac\x96"=>"\xf0\x9f\x92\x9c", "\xf3\xbe\xac\x97"=>"\xf0\x9f\x92\x9d", "\xf3\xbe\xac\x98"=>"\xf0\x9f\x92\x9e", "\xf3\xbe\xac\x99"=>"\xf0\x9f\x92\x9f", 
				"\xf3\xbe\xac\x9a"=>"\xe2\x99\xa5", "\xf3\xbe\xac\x9b"=>"\xe2\x99\xa0", "\xf3\xbe\xac\x9c"=>"\xe2\x99\xa6", "\xf3\xbe\xac\x9d"=>"\xe2\x99\xa3", "\xf3\xbe\xac\x9e"=>"\xf0\x9f\x9a\xac", 
				"\xf3\xbe\xac\x9f"=>"\xf0\x9f\x9a\xad", "\xf3\xbe\xac\xa0"=>"\xe2\x99\xbf", "\xf3\xbe\xac\xa2"=>"\xf0\x9f\x9a\xa9", "\xf3\xbe\xac\xa3"=>"\xe2\x9a\xa0", "\xf3\xbe\xac\xa6"=>"\xe2\x9b\x94", 
				"\xf3\xbe\xac\xac"=>"\xe2\x99\xbb", "\xf3\xbe\x9f\xab"=>"\xf0\x9f\x9a\xb2", "\xf3\xbe\x9f\xb0"=>"\xf0\x9f\x9a\xb6", "\xf3\xbe\xac\xb3"=>"\xf0\x9f\x9a\xb9", "\xf3\xbe\xac\xb4"=>"\xf0\x9f\x9a\xba", 
				"\xf3\xbe\x94\x85"=>"\xf0\x9f\x9b\x80", "\xf3\xbe\x94\x86"=>"\xf0\x9f\x9a\xbb", "\xf3\xbe\x94\x87"=>"\xf0\x9f\x9a\xbd", "\xf3\xbe\x94\x88"=>"\xf0\x9f\x9a\xbe", "\xf3\xbe\xac\xb5"=>"\xf0\x9f\x9a\xbc", 
				"\xf3\xbe\x93\xb3"=>"\xf0\x9f\x9a\xaa", "\xf3\xbe\xad\x88"=>"\xf0\x9f\x9a\xab", "\xf3\xbe\xad\x89"=>"\xe2\x9c\x94", "\xf3\xbe\xae\x84"=>"\xf0\x9f\x86\x91", "\xf3\xbe\xac\xb8"=>"\xf0\x9f\x86\x92", 
				"\xf3\xbe\xac\xa1"=>"\xf0\x9f\x86\x93", "\xf3\xbe\xae\x81"=>"\xf0\x9f\x86\x94", "\xf3\xbe\xac\xb6"=>"\xf0\x9f\x86\x95", "\xf3\xbe\xac\xa8"=>"\xf0\x9f\x86\x96", "\xf3\xbe\xac\xa7"=>"\xf0\x9f\x86\x97", 
				"\xf3\xbe\xad\x8f"=>"\xf0\x9f\x86\x98", "\xf3\xbe\xac\xb7"=>"\xf0\x9f\x86\x99", "\xf3\xbe\xac\xb2"=>"\xf0\x9f\x86\x9a", "\xf3\xbe\xac\xa4"=>"\xf0\x9f\x88\x81", "\xf3\xbe\xac\xbf"=>"\xf0\x9f\x88\x82", 
				"\xf3\xbe\xac\xae"=>"\xf0\x9f\x88\xb2", "\xf3\xbe\xac\xaf"=>"\xf0\x9f\x88\xb3", "\xf3\xbe\xac\xb0"=>"\xf0\x9f\x88\xb4", "\xf3\xbe\xac\xb1"=>"\xf0\x9f\x88\xb5", "\xf3\xbe\xac\xb9"=>"\xf0\x9f\x88\xb6", 
				"\xf3\xbe\xac\xba"=>"\xf0\x9f\x88\x9a", "\xf3\xbe\xac\xbb"=>"\xf0\x9f\x88\xb7", "\xf3\xbe\xac\xbc"=>"\xf0\x9f\x88\xb8", "\xf3\xbe\xac\xbe"=>"\xf0\x9f\x88\xb9", "\xf3\xbe\xad\x80"=>"\xf0\x9f\x88\xaf", 
				"\xf3\xbe\xad\x81"=>"\xf0\x9f\x88\xba", "\xf3\xbe\xac\xab"=>"\xe3\x8a\x99", "\xf3\xbe\xad\x83"=>"\xe3\x8a\x97", "\xf3\xbe\xac\xbd"=>"\xf0\x9f\x89\x90", "\xf3\xbe\xad\x90"=>"\xf0\x9f\x89\x91", 
				"\xf3\xbe\xad\x91"=>"\xe2\x9e\x95", "\xf3\xbe\xad\x92"=>"\xe2\x9e\x96", "\xf3\xbe\xad\x93"=>"\xe2\x9c\x96", "\xf3\xbe\xad\x94"=>"\xe2\x9e\x97", "\xf3\xbe\xad\x95"=>"\xf0\x9f\x92\xa0", 
				"\xf3\xbe\xad\x96"=>"\xf0\x9f\x92\xa1", "\xf3\xbe\xad\x97"=>"\xf0\x9f\x92\xa2", "\xf3\xbe\xad\x98"=>"\xf0\x9f\x92\xa3", "\xf3\xbe\xad\x99"=>"\xf0\x9f\x92\xa4", "\xf3\xbe\xad\x9a"=>"\xf0\x9f\x92\xa5", 
				"\xf3\xbe\xad\x9b"=>"\xf0\x9f\x92\xa6", "\xf3\xbe\xad\x9c"=>"\xf0\x9f\x92\xa7", "\xf3\xbe\xad\x9d"=>"\xf0\x9f\x92\xa8", "\xf3\xbe\x93\xb4"=>"\xf0\x9f\x92\xa9", "\xf3\xbe\xad\x9e"=>"\xf0\x9f\x92\xaa", 
				"\xf3\xbe\xad\x9f"=>"\xf0\x9f\x92\xab", "\xf3\xbe\x94\xb2"=>"\xf0\x9f\x92\xac", "\xf3\xbe\xad\xa0"=>"\xe2\x9c\xa8", "\xf3\xbe\xad\xa1"=>"\xe2\x9c\xb4", "\xf3\xbe\xad\xa2"=>"\xe2\x9c\xb3", 
				"\xf3\xbe\xad\xa5"=>"\xe2\x9a\xaa", "\xf3\xbe\xad\xa6"=>"\xe2\x9a\xab", "\xf3\xbe\xad\xa3"=>"\xf0\x9f\x94\xb4", "\xf3\xbe\xad\xa4"=>"\xf0\x9f\x94\xb2", "\xf3\xbe\xad\xa7"=>"\xf0\x9f\x94\xb3", 
				"\xf3\xbe\xad\xa8"=>"\xe2\xad\x90", "\xf3\xbe\xad\xab"=>"\xe2\xac\x9c", "\xf3\xbe\xad\xac"=>"\xe2\xac\x9b", "\xf3\xbe\xad\xad"=>"\xe2\x96\xab", "\xf3\xbe\xad\xae"=>"\xe2\x96\xaa", 
				"\xf3\xbe\xad\xaf"=>"\xe2\x97\xbd", "\xf3\xbe\xad\xb0"=>"\xe2\x97\xbe", "\xf3\xbe\xad\xb1"=>"\xe2\x97\xbb", "\xf3\xbe\xad\xb2"=>"\xe2\x97\xbc", "\xf3\xbe\xad\xb3"=>"\xf0\x9f\x94\xb6", 
				"\xf3\xbe\xad\xb4"=>"\xf0\x9f\x94\xb7", "\xf3\xbe\xad\xb5"=>"\xf0\x9f\x94\xb8", "\xf3\xbe\xad\xb6"=>"\xf0\x9f\x94\xb9", "\xf3\xbe\xad\xb7"=>"\xe2\x9d\x87", "\xf3\xbe\xad\xba"=>"\xf0\x9f\x92\xae", 
				"\xf3\xbe\xad\xbb"=>"\xf0\x9f\x92\xaf", "\xf3\xbe\xae\x83"=>"\xe2\x86\xa9", "\xf3\xbe\xae\x88"=>"\xe2\x86\xaa", "\xf3\xbe\xae\x91"=>"\xf0\x9f\x94\x83", "\xf3\xbe\xa0\xa1"=>"\xf0\x9f\x94\x8a", 
				"\xf3\xbe\x93\xbc"=>"\xf0\x9f\x94\x8b", "\xf3\xbe\x93\xbe"=>"\xf0\x9f\x94\x8c", "\xf3\xbe\xae\x85"=>"\xf0\x9f\x94\x8d", "\xf3\xbe\xae\x8d"=>"\xf0\x9f\x94\x8e", "\xf3\xbe\xae\x86"=>"\xf0\x9f\x94\x92", 
				"\xf3\xbe\xae\x87"=>"\xf0\x9f\x94\x93", "\xf3\xbe\xae\x90"=>"\xf0\x9f\x94\x8f", "\xf3\xbe\xae\x8a"=>"\xf0\x9f\x94\x90", "\xf3\xbe\xae\x82"=>"\xf0\x9f\x94\x91", "\xf3\xbe\x93\xb2"=>"\xf0\x9f\x94\x94", 
				"\xf3\xbe\xae\x8b"=>"\xe2\x98\x91", "\xf3\xbe\xae\x8c"=>"\xf0\x9f\x94\x98", "\xf3\xbe\xae\x8f"=>"\xf0\x9f\x94\x96", "\xf3\xbe\xad\x8b"=>"\xf0\x9f\x94\x97", "\xf3\xbe\xae\x8e"=>"\xf0\x9f\x94\x99", 
				"\xf3\xbe\x80\x9a"=>"\xf0\x9f\x94\x9a", "\xf3\xbe\x80\x99"=>"\xf0\x9f\x94\x9b", "\xf3\xbe\x80\x98"=>"\xf0\x9f\x94\x9c", "\xf3\xbe\xad\x82"=>"\xf0\x9f\x94\x9d", "\xf3\xbe\xad\x8a"=>"\xe2\x9c\x85", 
				"\xf3\xbe\xae\x93"=>"\xe2\x9c\x8a", "\xf3\xbe\xae\x95"=>"\xe2\x9c\x8b", "\xf3\xbe\xae\x94"=>"\xe2\x9c\x8c", "\xf3\xbe\xae\x96"=>"\xf0\x9f\x91\x8a", "\xf3\xbe\xae\x97"=>"\xf0\x9f\x91\x8d", 
				"\xf3\xbe\xae\x98"=>"\xe2\x98\x9d", "\xf3\xbe\xae\x99"=>"\xf0\x9f\x91\x86", "\xf3\xbe\xae\x9a"=>"\xf0\x9f\x91\x87", "\xf3\xbe\xae\x9b"=>"\xf0\x9f\x91\x88", "\xf3\xbe\xae\x9c"=>"\xf0\x9f\x91\x89", 
				"\xf3\xbe\xae\x9d"=>"\xf0\x9f\x91\x8b", "\xf3\xbe\xae\x9e"=>"\xf0\x9f\x91\x8f", "\xf3\xbe\xae\x9f"=>"\xf0\x9f\x91\x8c", "\xf3\xbe\xae\xa0"=>"\xf0\x9f\x91\x8e", "\xf3\xbe\xae\xa1"=>"\xf0\x9f\x91\x90", 
			),
			'unified_to_html' => array(
				"\xe2\x98\x80"=>"<span class=\x22emoji emoji2600\x22></span>", "\xe2\x98\x81"=>"<span class=\x22emoji emoji2601\x22></span>", "\xe2\x98\x94"=>"<span class=\x22emoji emoji2614\x22></span>", "\xe2\x9b\x84"=>"<span class=\x22emoji emoji26c4\x22></span>", 
				"\xe2\x9a\xa1"=>"<span class=\x22emoji emoji26a1\x22></span>", "\xf0\x9f\x8c\x80"=>"<span class=\x22emoji emoji1f300\x22></span>", "\xf0\x9f\x8c\x81"=>"<span class=\x22emoji emoji1f301\x22></span>", "\xf0\x9f\x8c\x82"=>"<span class=\x22emoji emoji1f302\x22></span>", "\xf0\x9f\x8c\x83"=>"<span class=\x22emoji emoji1f303\x22></span>", 
				"\xf0\x9f\x8c\x84"=>"<span class=\x22emoji emoji1f304\x22></span>", "\xf0\x9f\x8c\x85"=>"<span class=\x22emoji emoji1f305\x22></span>", "\xf0\x9f\x8c\x86"=>"<span class=\x22emoji emoji1f306\x22></span>", "\xf0\x9f\x8c\x87"=>"<span class=\x22emoji emoji1f307\x22></span>", "\xf0\x9f\x8c\x88"=>"<span class=\x22emoji emoji1f308\x22></span>", 
				"\xe2\x9d\x84"=>"<span class=\x22emoji emoji2744\x22></span>", "\xe2\x9b\x85"=>"<span class=\x22emoji emoji26c5\x22></span>", "\xf0\x9f\x8c\x89"=>"<span class=\x22emoji emoji1f309\x22></span>", "\xf0\x9f\x8c\x8a"=>"<span class=\x22emoji emoji1f30a\x22></span>", "\xf0\x9f\x8c\x8b"=>"<span class=\x22emoji emoji1f30b\x22></span>", 
				"\xf0\x9f\x8c\x8c"=>"<span class=\x22emoji emoji1f30c\x22></span>", "\xf0\x9f\x8c\x8f"=>"<span class=\x22emoji emoji1f30f\x22></span>", "\xf0\x9f\x8c\x91"=>"<span class=\x22emoji emoji1f311\x22></span>", "\xf0\x9f\x8c\x94"=>"<span class=\x22emoji emoji1f314\x22></span>", "\xf0\x9f\x8c\x93"=>"<span class=\x22emoji emoji1f313\x22></span>", 
				"\xf0\x9f\x8c\x99"=>"<span class=\x22emoji emoji1f319\x22></span>", "\xf0\x9f\x8c\x95"=>"<span class=\x22emoji emoji1f315\x22></span>", "\xf0\x9f\x8c\x9b"=>"<span class=\x22emoji emoji1f31b\x22></span>", "\xf0\x9f\x8c\x9f"=>"<span class=\x22emoji emoji1f31f\x22></span>", "\xf0\x9f\x8c\xa0"=>"<span class=\x22emoji emoji1f320\x22></span>", 
				"\xf0\x9f\x95\x90"=>"<span class=\x22emoji emoji1f550\x22></span>", "\xf0\x9f\x95\x91"=>"<span class=\x22emoji emoji1f551\x22></span>", "\xf0\x9f\x95\x92"=>"<span class=\x22emoji emoji1f552\x22></span>", "\xf0\x9f\x95\x93"=>"<span class=\x22emoji emoji1f553\x22></span>", "\xf0\x9f\x95\x94"=>"<span class=\x22emoji emoji1f554\x22></span>", 
				"\xf0\x9f\x95\x95"=>"<span class=\x22emoji emoji1f555\x22></span>", "\xf0\x9f\x95\x96"=>"<span class=\x22emoji emoji1f556\x22></span>", "\xf0\x9f\x95\x97"=>"<span class=\x22emoji emoji1f557\x22></span>", "\xf0\x9f\x95\x98"=>"<span class=\x22emoji emoji1f558\x22></span>", "\xf0\x9f\x95\x99"=>"<span class=\x22emoji emoji1f559\x22></span>", 
				"\xf0\x9f\x95\x9a"=>"<span class=\x22emoji emoji1f55a\x22></span>", "\xf0\x9f\x95\x9b"=>"<span class=\x22emoji emoji1f55b\x22></span>", "\xe2\x8c\x9a"=>"<span class=\x22emoji emoji231a\x22></span>", "\xe2\x8c\x9b"=>"<span class=\x22emoji emoji231b\x22></span>", "\xe2\x8f\xb0"=>"<span class=\x22emoji emoji23f0\x22></span>", 
				"\xe2\x8f\xb3"=>"<span class=\x22emoji emoji23f3\x22></span>", "\xe2\x99\x88"=>"<span class=\x22emoji emoji2648\x22></span>", "\xe2\x99\x89"=>"<span class=\x22emoji emoji2649\x22></span>", "\xe2\x99\x8a"=>"<span class=\x22emoji emoji264a\x22></span>", "\xe2\x99\x8b"=>"<span class=\x22emoji emoji264b\x22></span>", 
				"\xe2\x99\x8c"=>"<span class=\x22emoji emoji264c\x22></span>", "\xe2\x99\x8d"=>"<span class=\x22emoji emoji264d\x22></span>", "\xe2\x99\x8e"=>"<span class=\x22emoji emoji264e\x22></span>", "\xe2\x99\x8f"=>"<span class=\x22emoji emoji264f\x22></span>", "\xe2\x99\x90"=>"<span class=\x22emoji emoji2650\x22></span>", 
				"\xe2\x99\x91"=>"<span class=\x22emoji emoji2651\x22></span>", "\xe2\x99\x92"=>"<span class=\x22emoji emoji2652\x22></span>", "\xe2\x99\x93"=>"<span class=\x22emoji emoji2653\x22></span>", "\xe2\x9b\x8e"=>"<span class=\x22emoji emoji26ce\x22></span>", "\xf0\x9f\x8d\x80"=>"<span class=\x22emoji emoji1f340\x22></span>", 
				"\xf0\x9f\x8c\xb7"=>"<span class=\x22emoji emoji1f337\x22></span>", "\xf0\x9f\x8c\xb1"=>"<span class=\x22emoji emoji1f331\x22></span>", "\xf0\x9f\x8d\x81"=>"<span class=\x22emoji emoji1f341\x22></span>", "\xf0\x9f\x8c\xb8"=>"<span class=\x22emoji emoji1f338\x22></span>", "\xf0\x9f\x8c\xb9"=>"<span class=\x22emoji emoji1f339\x22></span>", 
				"\xf0\x9f\x8d\x82"=>"<span class=\x22emoji emoji1f342\x22></span>", "\xf0\x9f\x8d\x83"=>"<span class=\x22emoji emoji1f343\x22></span>", "\xf0\x9f\x8c\xba"=>"<span class=\x22emoji emoji1f33a\x22></span>", "\xf0\x9f\x8c\xbb"=>"<span class=\x22emoji emoji1f33b\x22></span>", "\xf0\x9f\x8c\xb4"=>"<span class=\x22emoji emoji1f334\x22></span>", 
				"\xf0\x9f\x8c\xb5"=>"<span class=\x22emoji emoji1f335\x22></span>", "\xf0\x9f\x8c\xbe"=>"<span class=\x22emoji emoji1f33e\x22></span>", "\xf0\x9f\x8c\xbd"=>"<span class=\x22emoji emoji1f33d\x22></span>", "\xf0\x9f\x8d\x84"=>"<span class=\x22emoji emoji1f344\x22></span>", "\xf0\x9f\x8c\xb0"=>"<span class=\x22emoji emoji1f330\x22></span>", 
				"\xf0\x9f\x8c\xbc"=>"<span class=\x22emoji emoji1f33c\x22></span>", "\xf0\x9f\x8c\xbf"=>"<span class=\x22emoji emoji1f33f\x22></span>", "\xf0\x9f\x8d\x92"=>"<span class=\x22emoji emoji1f352\x22></span>", "\xf0\x9f\x8d\x8c"=>"<span class=\x22emoji emoji1f34c\x22></span>", "\xf0\x9f\x8d\x8e"=>"<span class=\x22emoji emoji1f34e\x22></span>", 
				"\xf0\x9f\x8d\x8a"=>"<span class=\x22emoji emoji1f34a\x22></span>", "\xf0\x9f\x8d\x93"=>"<span class=\x22emoji emoji1f353\x22></span>", "\xf0\x9f\x8d\x89"=>"<span class=\x22emoji emoji1f349\x22></span>", "\xf0\x9f\x8d\x85"=>"<span class=\x22emoji emoji1f345\x22></span>", "\xf0\x9f\x8d\x86"=>"<span class=\x22emoji emoji1f346\x22></span>", 
				"\xf0\x9f\x8d\x88"=>"<span class=\x22emoji emoji1f348\x22></span>", "\xf0\x9f\x8d\x8d"=>"<span class=\x22emoji emoji1f34d\x22></span>", "\xf0\x9f\x8d\x87"=>"<span class=\x22emoji emoji1f347\x22></span>", "\xf0\x9f\x8d\x91"=>"<span class=\x22emoji emoji1f351\x22></span>", "\xf0\x9f\x8d\x8f"=>"<span class=\x22emoji emoji1f34f\x22></span>", 
				"\xf0\x9f\x91\x80"=>"<span class=\x22emoji emoji1f440\x22></span>", "\xf0\x9f\x91\x82"=>"<span class=\x22emoji emoji1f442\x22></span>", "\xf0\x9f\x91\x83"=>"<span class=\x22emoji emoji1f443\x22></span>", "\xf0\x9f\x91\x84"=>"<span class=\x22emoji emoji1f444\x22></span>", "\xf0\x9f\x91\x85"=>"<span class=\x22emoji emoji1f445\x22></span>", 
				"\xf0\x9f\x92\x84"=>"<span class=\x22emoji emoji1f484\x22></span>", "\xf0\x9f\x92\x85"=>"<span class=\x22emoji emoji1f485\x22></span>", "\xf0\x9f\x92\x86"=>"<span class=\x22emoji emoji1f486\x22></span>", "\xf0\x9f\x92\x87"=>"<span class=\x22emoji emoji1f487\x22></span>", "\xf0\x9f\x92\x88"=>"<span class=\x22emoji emoji1f488\x22></span>", 
				"\xf0\x9f\x91\xa4"=>"<span class=\x22emoji emoji1f464\x22></span>", "\xf0\x9f\x91\xa6"=>"<span class=\x22emoji emoji1f466\x22></span>", "\xf0\x9f\x91\xa7"=>"<span class=\x22emoji emoji1f467\x22></span>", "\xf0\x9f\x91\xa8"=>"<span class=\x22emoji emoji1f468\x22></span>", "\xf0\x9f\x91\xa9"=>"<span class=\x22emoji emoji1f469\x22></span>", 
				"\xf0\x9f\x91\xaa"=>"<span class=\x22emoji emoji1f46a\x22></span>", "\xf0\x9f\x91\xab"=>"<span class=\x22emoji emoji1f46b\x22></span>", "\xf0\x9f\x91\xae"=>"<span class=\x22emoji emoji1f46e\x22></span>", "\xf0\x9f\x91\xaf"=>"<span class=\x22emoji emoji1f46f\x22></span>", "\xf0\x9f\x91\xb0"=>"<span class=\x22emoji emoji1f470\x22></span>", 
				"\xf0\x9f\x91\xb1"=>"<span class=\x22emoji emoji1f471\x22></span>", "\xf0\x9f\x91\xb2"=>"<span class=\x22emoji emoji1f472\x22></span>", "\xf0\x9f\x91\xb3"=>"<span class=\x22emoji emoji1f473\x22></span>", "\xf0\x9f\x91\xb4"=>"<span class=\x22emoji emoji1f474\x22></span>", "\xf0\x9f\x91\xb5"=>"<span class=\x22emoji emoji1f475\x22></span>", 
				"\xf0\x9f\x91\xb6"=>"<span class=\x22emoji emoji1f476\x22></span>", "\xf0\x9f\x91\xb7"=>"<span class=\x22emoji emoji1f477\x22></span>", "\xf0\x9f\x91\xb8"=>"<span class=\x22emoji emoji1f478\x22></span>", "\xf0\x9f\x91\xb9"=>"<span class=\x22emoji emoji1f479\x22></span>", "\xf0\x9f\x91\xba"=>"<span class=\x22emoji emoji1f47a\x22></span>", 
				"\xf0\x9f\x91\xbb"=>"<span class=\x22emoji emoji1f47b\x22></span>", "\xf0\x9f\x91\xbc"=>"<span class=\x22emoji emoji1f47c\x22></span>", "\xf0\x9f\x91\xbd"=>"<span class=\x22emoji emoji1f47d\x22></span>", "\xf0\x9f\x91\xbe"=>"<span class=\x22emoji emoji1f47e\x22></span>", "\xf0\x9f\x91\xbf"=>"<span class=\x22emoji emoji1f47f\x22></span>", 
				"\xf0\x9f\x92\x80"=>"<span class=\x22emoji emoji1f480\x22></span>", "\xf0\x9f\x92\x81"=>"<span class=\x22emoji emoji1f481\x22></span>", "\xf0\x9f\x92\x82"=>"<span class=\x22emoji emoji1f482\x22></span>", "\xf0\x9f\x92\x83"=>"<span class=\x22emoji emoji1f483\x22></span>", "\xf0\x9f\x90\x8c"=>"<span class=\x22emoji emoji1f40c\x22></span>", 
				"\xf0\x9f\x90\x8d"=>"<span class=\x22emoji emoji1f40d\x22></span>", "\xf0\x9f\x90\x8e"=>"<span class=\x22emoji emoji1f40e\x22></span>", "\xf0\x9f\x90\x94"=>"<span class=\x22emoji emoji1f414\x22></span>", "\xf0\x9f\x90\x97"=>"<span class=\x22emoji emoji1f417\x22></span>", "\xf0\x9f\x90\xab"=>"<span class=\x22emoji emoji1f42b\x22></span>", 
				"\xf0\x9f\x90\x98"=>"<span class=\x22emoji emoji1f418\x22></span>", "\xf0\x9f\x90\xa8"=>"<span class=\x22emoji emoji1f428\x22></span>", "\xf0\x9f\x90\x92"=>"<span class=\x22emoji emoji1f412\x22></span>", "\xf0\x9f\x90\x91"=>"<span class=\x22emoji emoji1f411\x22></span>", "\xf0\x9f\x90\x99"=>"<span class=\x22emoji emoji1f419\x22></span>", 
				"\xf0\x9f\x90\x9a"=>"<span class=\x22emoji emoji1f41a\x22></span>", "\xf0\x9f\x90\x9b"=>"<span class=\x22emoji emoji1f41b\x22></span>", "\xf0\x9f\x90\x9c"=>"<span class=\x22emoji emoji1f41c\x22></span>", "\xf0\x9f\x90\x9d"=>"<span class=\x22emoji emoji1f41d\x22></span>", "\xf0\x9f\x90\x9e"=>"<span class=\x22emoji emoji1f41e\x22></span>", 
				"\xf0\x9f\x90\xa0"=>"<span class=\x22emoji emoji1f420\x22></span>", "\xf0\x9f\x90\xa1"=>"<span class=\x22emoji emoji1f421\x22></span>", "\xf0\x9f\x90\xa2"=>"<span class=\x22emoji emoji1f422\x22></span>", "\xf0\x9f\x90\xa4"=>"<span class=\x22emoji emoji1f424\x22></span>", "\xf0\x9f\x90\xa5"=>"<span class=\x22emoji emoji1f425\x22></span>", 
				"\xf0\x9f\x90\xa6"=>"<span class=\x22emoji emoji1f426\x22></span>", "\xf0\x9f\x90\xa3"=>"<span class=\x22emoji emoji1f423\x22></span>", "\xf0\x9f\x90\xa7"=>"<span class=\x22emoji emoji1f427\x22></span>", "\xf0\x9f\x90\xa9"=>"<span class=\x22emoji emoji1f429\x22></span>", "\xf0\x9f\x90\x9f"=>"<span class=\x22emoji emoji1f41f\x22></span>", 
				"\xf0\x9f\x90\xac"=>"<span class=\x22emoji emoji1f42c\x22></span>", "\xf0\x9f\x90\xad"=>"<span class=\x22emoji emoji1f42d\x22></span>", "\xf0\x9f\x90\xaf"=>"<span class=\x22emoji emoji1f42f\x22></span>", "\xf0\x9f\x90\xb1"=>"<span class=\x22emoji emoji1f431\x22></span>", "\xf0\x9f\x90\xb3"=>"<span class=\x22emoji emoji1f433\x22></span>", 
				"\xf0\x9f\x90\xb4"=>"<span class=\x22emoji emoji1f434\x22></span>", "\xf0\x9f\x90\xb5"=>"<span class=\x22emoji emoji1f435\x22></span>", "\xf0\x9f\x90\xb6"=>"<span class=\x22emoji emoji1f436\x22></span>", "\xf0\x9f\x90\xb7"=>"<span class=\x22emoji emoji1f437\x22></span>", "\xf0\x9f\x90\xbb"=>"<span class=\x22emoji emoji1f43b\x22></span>", 
				"\xf0\x9f\x90\xb9"=>"<span class=\x22emoji emoji1f439\x22></span>", "\xf0\x9f\x90\xba"=>"<span class=\x22emoji emoji1f43a\x22></span>", "\xf0\x9f\x90\xae"=>"<span class=\x22emoji emoji1f42e\x22></span>", "\xf0\x9f\x90\xb0"=>"<span class=\x22emoji emoji1f430\x22></span>", "\xf0\x9f\x90\xb8"=>"<span class=\x22emoji emoji1f438\x22></span>", 
				"\xf0\x9f\x90\xbe"=>"<span class=\x22emoji emoji1f43e\x22></span>", "\xf0\x9f\x90\xb2"=>"<span class=\x22emoji emoji1f432\x22></span>", "\xf0\x9f\x90\xbc"=>"<span class=\x22emoji emoji1f43c\x22></span>", "\xf0\x9f\x90\xbd"=>"<span class=\x22emoji emoji1f43d\x22></span>", "\xf0\x9f\x98\xa0"=>"<span class=\x22emoji emoji1f620\x22></span>", 
				"\xf0\x9f\x98\xa9"=>"<span class=\x22emoji emoji1f629\x22></span>", "\xf0\x9f\x98\xb2"=>"<span class=\x22emoji emoji1f632\x22></span>", "\xf0\x9f\x98\x9e"=>"<span class=\x22emoji emoji1f61e\x22></span>", "\xf0\x9f\x98\xb5"=>"<span class=\x22emoji emoji1f635\x22></span>", "\xf0\x9f\x98\xb0"=>"<span class=\x22emoji emoji1f630\x22></span>", 
				"\xf0\x9f\x98\x92"=>"<span class=\x22emoji emoji1f612\x22></span>", "\xf0\x9f\x98\x8d"=>"<span class=\x22emoji emoji1f60d\x22></span>", "\xf0\x9f\x98\xa4"=>"<span class=\x22emoji emoji1f624\x22></span>", "\xf0\x9f\x98\x9c"=>"<span class=\x22emoji emoji1f61c\x22></span>", "\xf0\x9f\x98\x9d"=>"<span class=\x22emoji emoji1f61d\x22></span>", 
				"\xf0\x9f\x98\x8b"=>"<span class=\x22emoji emoji1f60b\x22></span>", "\xf0\x9f\x98\x98"=>"<span class=\x22emoji emoji1f618\x22></span>", "\xf0\x9f\x98\x9a"=>"<span class=\x22emoji emoji1f61a\x22></span>", "\xf0\x9f\x98\xb7"=>"<span class=\x22emoji emoji1f637\x22></span>", "\xf0\x9f\x98\xb3"=>"<span class=\x22emoji emoji1f633\x22></span>", 
				"\xf0\x9f\x98\x83"=>"<span class=\x22emoji emoji1f603\x22></span>", "\xf0\x9f\x98\x85"=>"<span class=\x22emoji emoji1f605\x22></span>", "\xf0\x9f\x98\x86"=>"<span class=\x22emoji emoji1f606\x22></span>", "\xf0\x9f\x98\x81"=>"<span class=\x22emoji emoji1f601\x22></span>", "\xf0\x9f\x98\x82"=>"<span class=\x22emoji emoji1f602\x22></span>", 
				"\xf0\x9f\x98\x8a"=>"<span class=\x22emoji emoji1f60a\x22></span>", "\xe2\x98\xba"=>"<span class=\x22emoji emoji263a\x22></span>", "\xf0\x9f\x98\x84"=>"<span class=\x22emoji emoji1f604\x22></span>", "\xf0\x9f\x98\xa2"=>"<span class=\x22emoji emoji1f622\x22></span>", "\xf0\x9f\x98\xad"=>"<span class=\x22emoji emoji1f62d\x22></span>", 
				"\xf0\x9f\x98\xa8"=>"<span class=\x22emoji emoji1f628\x22></span>", "\xf0\x9f\x98\xa3"=>"<span class=\x22emoji emoji1f623\x22></span>", "\xf0\x9f\x98\xa1"=>"<span class=\x22emoji emoji1f621\x22></span>", "\xf0\x9f\x98\x8c"=>"<span class=\x22emoji emoji1f60c\x22></span>", "\xf0\x9f\x98\x96"=>"<span class=\x22emoji emoji1f616\x22></span>", 
				"\xf0\x9f\x98\x94"=>"<span class=\x22emoji emoji1f614\x22></span>", "\xf0\x9f\x98\xb1"=>"<span class=\x22emoji emoji1f631\x22></span>", "\xf0\x9f\x98\xaa"=>"<span class=\x22emoji emoji1f62a\x22></span>", "\xf0\x9f\x98\x8f"=>"<span class=\x22emoji emoji1f60f\x22></span>", "\xf0\x9f\x98\x93"=>"<span class=\x22emoji emoji1f613\x22></span>", 
				"\xf0\x9f\x98\xa5"=>"<span class=\x22emoji emoji1f625\x22></span>", "\xf0\x9f\x98\xab"=>"<span class=\x22emoji emoji1f62b\x22></span>", "\xf0\x9f\x98\x89"=>"<span class=\x22emoji emoji1f609\x22></span>", "\xf0\x9f\x98\xba"=>"<span class=\x22emoji emoji1f63a\x22></span>", "\xf0\x9f\x98\xb8"=>"<span class=\x22emoji emoji1f638\x22></span>", 
				"\xf0\x9f\x98\xb9"=>"<span class=\x22emoji emoji1f639\x22></span>", "\xf0\x9f\x98\xbd"=>"<span class=\x22emoji emoji1f63d\x22></span>", "\xf0\x9f\x98\xbb"=>"<span class=\x22emoji emoji1f63b\x22></span>", "\xf0\x9f\x98\xbf"=>"<span class=\x22emoji emoji1f63f\x22></span>", "\xf0\x9f\x98\xbe"=>"<span class=\x22emoji emoji1f63e\x22></span>", 
				"\xf0\x9f\x98\xbc"=>"<span class=\x22emoji emoji1f63c\x22></span>", "\xf0\x9f\x99\x80"=>"<span class=\x22emoji emoji1f640\x22></span>", "\xf0\x9f\x99\x85"=>"<span class=\x22emoji emoji1f645\x22></span>", "\xf0\x9f\x99\x86"=>"<span class=\x22emoji emoji1f646\x22></span>", "\xf0\x9f\x99\x87"=>"<span class=\x22emoji emoji1f647\x22></span>", 
				"\xf0\x9f\x99\x88"=>"<span class=\x22emoji emoji1f648\x22></span>", "\xf0\x9f\x99\x8a"=>"<span class=\x22emoji emoji1f64a\x22></span>", "\xf0\x9f\x99\x89"=>"<span class=\x22emoji emoji1f649\x22></span>", "\xf0\x9f\x99\x8b"=>"<span class=\x22emoji emoji1f64b\x22></span>", "\xf0\x9f\x99\x8c"=>"<span class=\x22emoji emoji1f64c\x22></span>", 
				"\xf0\x9f\x99\x8d"=>"<span class=\x22emoji emoji1f64d\x22></span>", "\xf0\x9f\x99\x8e"=>"<span class=\x22emoji emoji1f64e\x22></span>", "\xf0\x9f\x99\x8f"=>"<span class=\x22emoji emoji1f64f\x22></span>", "\xf0\x9f\x8f\xa0"=>"<span class=\x22emoji emoji1f3e0\x22></span>", "\xf0\x9f\x8f\xa1"=>"<span class=\x22emoji emoji1f3e1\x22></span>", 
				"\xf0\x9f\x8f\xa2"=>"<span class=\x22emoji emoji1f3e2\x22></span>", "\xf0\x9f\x8f\xa3"=>"<span class=\x22emoji emoji1f3e3\x22></span>", "\xf0\x9f\x8f\xa5"=>"<span class=\x22emoji emoji1f3e5\x22></span>", "\xf0\x9f\x8f\xa6"=>"<span class=\x22emoji emoji1f3e6\x22></span>", "\xf0\x9f\x8f\xa7"=>"<span class=\x22emoji emoji1f3e7\x22></span>", 
				"\xf0\x9f\x8f\xa8"=>"<span class=\x22emoji emoji1f3e8\x22></span>", "\xf0\x9f\x8f\xa9"=>"<span class=\x22emoji emoji1f3e9\x22></span>", "\xf0\x9f\x8f\xaa"=>"<span class=\x22emoji emoji1f3ea\x22></span>", "\xf0\x9f\x8f\xab"=>"<span class=\x22emoji emoji1f3eb\x22></span>", "\xe2\x9b\xaa"=>"<span class=\x22emoji emoji26ea\x22></span>", 
				"\xe2\x9b\xb2"=>"<span class=\x22emoji emoji26f2\x22></span>", "\xf0\x9f\x8f\xac"=>"<span class=\x22emoji emoji1f3ec\x22></span>", "\xf0\x9f\x8f\xaf"=>"<span class=\x22emoji emoji1f3ef\x22></span>", "\xf0\x9f\x8f\xb0"=>"<span class=\x22emoji emoji1f3f0\x22></span>", "\xf0\x9f\x8f\xad"=>"<span class=\x22emoji emoji1f3ed\x22></span>", 
				"\xe2\x9a\x93"=>"<span class=\x22emoji emoji2693\x22></span>", "\xf0\x9f\x8f\xae"=>"<span class=\x22emoji emoji1f3ee\x22></span>", "\xf0\x9f\x97\xbb"=>"<span class=\x22emoji emoji1f5fb\x22></span>", "\xf0\x9f\x97\xbc"=>"<span class=\x22emoji emoji1f5fc\x22></span>", "\xf0\x9f\x97\xbd"=>"<span class=\x22emoji emoji1f5fd\x22></span>", 
				"\xf0\x9f\x97\xbe"=>"<span class=\x22emoji emoji1f5fe\x22></span>", "\xf0\x9f\x97\xbf"=>"<span class=\x22emoji emoji1f5ff\x22></span>", "\xf0\x9f\x91\x9e"=>"<span class=\x22emoji emoji1f45e\x22></span>", "\xf0\x9f\x91\x9f"=>"<span class=\x22emoji emoji1f45f\x22></span>", "\xf0\x9f\x91\xa0"=>"<span class=\x22emoji emoji1f460\x22></span>", 
				"\xf0\x9f\x91\xa1"=>"<span class=\x22emoji emoji1f461\x22></span>", "\xf0\x9f\x91\xa2"=>"<span class=\x22emoji emoji1f462\x22></span>", "\xf0\x9f\x91\xa3"=>"<span class=\x22emoji emoji1f463\x22></span>", "\xf0\x9f\x91\x93"=>"<span class=\x22emoji emoji1f453\x22></span>", "\xf0\x9f\x91\x95"=>"<span class=\x22emoji emoji1f455\x22></span>", 
				"\xf0\x9f\x91\x96"=>"<span class=\x22emoji emoji1f456\x22></span>", "\xf0\x9f\x91\x91"=>"<span class=\x22emoji emoji1f451\x22></span>", "\xf0\x9f\x91\x94"=>"<span class=\x22emoji emoji1f454\x22></span>", "\xf0\x9f\x91\x92"=>"<span class=\x22emoji emoji1f452\x22></span>", "\xf0\x9f\x91\x97"=>"<span class=\x22emoji emoji1f457\x22></span>", 
				"\xf0\x9f\x91\x98"=>"<span class=\x22emoji emoji1f458\x22></span>", "\xf0\x9f\x91\x99"=>"<span class=\x22emoji emoji1f459\x22></span>", "\xf0\x9f\x91\x9a"=>"<span class=\x22emoji emoji1f45a\x22></span>", "\xf0\x9f\x91\x9b"=>"<span class=\x22emoji emoji1f45b\x22></span>", "\xf0\x9f\x91\x9c"=>"<span class=\x22emoji emoji1f45c\x22></span>", 
				"\xf0\x9f\x91\x9d"=>"<span class=\x22emoji emoji1f45d\x22></span>", "\xf0\x9f\x92\xb0"=>"<span class=\x22emoji emoji1f4b0\x22></span>", "\xf0\x9f\x92\xb1"=>"<span class=\x22emoji emoji1f4b1\x22></span>", "\xf0\x9f\x92\xb9"=>"<span class=\x22emoji emoji1f4b9\x22></span>", "\xf0\x9f\x92\xb2"=>"<span class=\x22emoji emoji1f4b2\x22></span>", 
				"\xf0\x9f\x92\xb3"=>"<span class=\x22emoji emoji1f4b3\x22></span>", "\xf0\x9f\x92\xb4"=>"<span class=\x22emoji emoji1f4b4\x22></span>", "\xf0\x9f\x92\xb5"=>"<span class=\x22emoji emoji1f4b5\x22></span>", "\xf0\x9f\x92\xb8"=>"<span class=\x22emoji emoji1f4b8\x22></span>", "\xf0\x9f\x87\xa8\xf0\x9f\x87\xb3"=>"<span class=\x22emoji emoji1f1e81f1f3\x22></span>", 
				"\xf0\x9f\x87\xa9\xf0\x9f\x87\xaa"=>"<span class=\x22emoji emoji1f1e91f1ea\x22></span>", "\xf0\x9f\x87\xaa\xf0\x9f\x87\xb8"=>"<span class=\x22emoji emoji1f1ea1f1f8\x22></span>", "\xf0\x9f\x87\xab\xf0\x9f\x87\xb7"=>"<span class=\x22emoji emoji1f1eb1f1f7\x22></span>", "\xf0\x9f\x87\xac\xf0\x9f\x87\xa7"=>"<span class=\x22emoji emoji1f1ec1f1e7\x22></span>", "\xf0\x9f\x87\xae\xf0\x9f\x87\xb9"=>"<span class=\x22emoji emoji1f1ee1f1f9\x22></span>", 
				"\xf0\x9f\x87\xaf\xf0\x9f\x87\xb5"=>"<span class=\x22emoji emoji1f1ef1f1f5\x22></span>", "\xf0\x9f\x87\xb0\xf0\x9f\x87\xb7"=>"<span class=\x22emoji emoji1f1f01f1f7\x22></span>", "\xf0\x9f\x87\xb7\xf0\x9f\x87\xba"=>"<span class=\x22emoji emoji1f1f71f1fa\x22></span>", "\xf0\x9f\x87\xba\xf0\x9f\x87\xb8"=>"<span class=\x22emoji emoji1f1fa1f1f8\x22></span>", "\xf0\x9f\x94\xa5"=>"<span class=\x22emoji emoji1f525\x22></span>", 
				"\xf0\x9f\x94\xa6"=>"<span class=\x22emoji emoji1f526\x22></span>", "\xf0\x9f\x94\xa7"=>"<span class=\x22emoji emoji1f527\x22></span>", "\xf0\x9f\x94\xa8"=>"<span class=\x22emoji emoji1f528\x22></span>", "\xf0\x9f\x94\xa9"=>"<span class=\x22emoji emoji1f529\x22></span>", "\xf0\x9f\x94\xaa"=>"<span class=\x22emoji emoji1f52a\x22></span>", 
				"\xf0\x9f\x94\xab"=>"<span class=\x22emoji emoji1f52b\x22></span>", "\xf0\x9f\x94\xae"=>"<span class=\x22emoji emoji1f52e\x22></span>", "\xf0\x9f\x94\xaf"=>"<span class=\x22emoji emoji1f52f\x22></span>", "\xf0\x9f\x94\xb0"=>"<span class=\x22emoji emoji1f530\x22></span>", "\xf0\x9f\x94\xb1"=>"<span class=\x22emoji emoji1f531\x22></span>", 
				"\xf0\x9f\x92\x89"=>"<span class=\x22emoji emoji1f489\x22></span>", "\xf0\x9f\x92\x8a"=>"<span class=\x22emoji emoji1f48a\x22></span>", "\xf0\x9f\x85\xb0"=>"<span class=\x22emoji emoji1f170\x22></span>", "\xf0\x9f\x85\xb1"=>"<span class=\x22emoji emoji1f171\x22></span>", "\xf0\x9f\x86\x8e"=>"<span class=\x22emoji emoji1f18e\x22></span>", 
				"\xf0\x9f\x85\xbe"=>"<span class=\x22emoji emoji1f17e\x22></span>", "\xf0\x9f\x8e\x80"=>"<span class=\x22emoji emoji1f380\x22></span>", "\xf0\x9f\x8e\x81"=>"<span class=\x22emoji emoji1f381\x22></span>", "\xf0\x9f\x8e\x82"=>"<span class=\x22emoji emoji1f382\x22></span>", "\xf0\x9f\x8e\x84"=>"<span class=\x22emoji emoji1f384\x22></span>", 
				"\xf0\x9f\x8e\x85"=>"<span class=\x22emoji emoji1f385\x22></span>", "\xf0\x9f\x8e\x8c"=>"<span class=\x22emoji emoji1f38c\x22></span>", "\xf0\x9f\x8e\x86"=>"<span class=\x22emoji emoji1f386\x22></span>", "\xf0\x9f\x8e\x88"=>"<span class=\x22emoji emoji1f388\x22></span>", "\xf0\x9f\x8e\x89"=>"<span class=\x22emoji emoji1f389\x22></span>", 
				"\xf0\x9f\x8e\x8d"=>"<span class=\x22emoji emoji1f38d\x22></span>", "\xf0\x9f\x8e\x8e"=>"<span class=\x22emoji emoji1f38e\x22></span>", "\xf0\x9f\x8e\x93"=>"<span class=\x22emoji emoji1f393\x22></span>", "\xf0\x9f\x8e\x92"=>"<span class=\x22emoji emoji1f392\x22></span>", "\xf0\x9f\x8e\x8f"=>"<span class=\x22emoji emoji1f38f\x22></span>", 
				"\xf0\x9f\x8e\x87"=>"<span class=\x22emoji emoji1f387\x22></span>", "\xf0\x9f\x8e\x90"=>"<span class=\x22emoji emoji1f390\x22></span>", "\xf0\x9f\x8e\x83"=>"<span class=\x22emoji emoji1f383\x22></span>", "\xf0\x9f\x8e\x8a"=>"<span class=\x22emoji emoji1f38a\x22></span>", "\xf0\x9f\x8e\x8b"=>"<span class=\x22emoji emoji1f38b\x22></span>", 
				"\xf0\x9f\x8e\x91"=>"<span class=\x22emoji emoji1f391\x22></span>", "\xf0\x9f\x93\x9f"=>"<span class=\x22emoji emoji1f4df\x22></span>", "\xe2\x98\x8e"=>"<span class=\x22emoji emoji260e\x22></span>", "\xf0\x9f\x93\x9e"=>"<span class=\x22emoji emoji1f4de\x22></span>", "\xf0\x9f\x93\xb1"=>"<span class=\x22emoji emoji1f4f1\x22></span>", 
				"\xf0\x9f\x93\xb2"=>"<span class=\x22emoji emoji1f4f2\x22></span>", "\xf0\x9f\x93\x9d"=>"<span class=\x22emoji emoji1f4dd\x22></span>", "\xf0\x9f\x93\xa0"=>"<span class=\x22emoji emoji1f4e0\x22></span>", "\xe2\x9c\x89"=>"<span class=\x22emoji emoji2709\x22></span>", "\xf0\x9f\x93\xa8"=>"<span class=\x22emoji emoji1f4e8\x22></span>", 
				"\xf0\x9f\x93\xa9"=>"<span class=\x22emoji emoji1f4e9\x22></span>", "\xf0\x9f\x93\xaa"=>"<span class=\x22emoji emoji1f4ea\x22></span>", "\xf0\x9f\x93\xab"=>"<span class=\x22emoji emoji1f4eb\x22></span>", "\xf0\x9f\x93\xae"=>"<span class=\x22emoji emoji1f4ee\x22></span>", "\xf0\x9f\x93\xb0"=>"<span class=\x22emoji emoji1f4f0\x22></span>", 
				"\xf0\x9f\x93\xa2"=>"<span class=\x22emoji emoji1f4e2\x22></span>", "\xf0\x9f\x93\xa3"=>"<span class=\x22emoji emoji1f4e3\x22></span>", "\xf0\x9f\x93\xa1"=>"<span class=\x22emoji emoji1f4e1\x22></span>", "\xf0\x9f\x93\xa4"=>"<span class=\x22emoji emoji1f4e4\x22></span>", "\xf0\x9f\x93\xa5"=>"<span class=\x22emoji emoji1f4e5\x22></span>", 
				"\xf0\x9f\x93\xa6"=>"<span class=\x22emoji emoji1f4e6\x22></span>", "\xf0\x9f\x93\xa7"=>"<span class=\x22emoji emoji1f4e7\x22></span>", "\xf0\x9f\x94\xa0"=>"<span class=\x22emoji emoji1f520\x22></span>", "\xf0\x9f\x94\xa1"=>"<span class=\x22emoji emoji1f521\x22></span>", "\xf0\x9f\x94\xa2"=>"<span class=\x22emoji emoji1f522\x22></span>", 
				"\xf0\x9f\x94\xa3"=>"<span class=\x22emoji emoji1f523\x22></span>", "\xf0\x9f\x94\xa4"=>"<span class=\x22emoji emoji1f524\x22></span>", "\xe2\x9c\x92"=>"<span class=\x22emoji emoji2712\x22></span>", "\xf0\x9f\x92\xba"=>"<span class=\x22emoji emoji1f4ba\x22></span>", "\xf0\x9f\x92\xbb"=>"<span class=\x22emoji emoji1f4bb\x22></span>", 
				"\xe2\x9c\x8f"=>"<span class=\x22emoji emoji270f\x22></span>", "\xf0\x9f\x93\x8e"=>"<span class=\x22emoji emoji1f4ce\x22></span>", "\xf0\x9f\x92\xbc"=>"<span class=\x22emoji emoji1f4bc\x22></span>", "\xf0\x9f\x92\xbd"=>"<span class=\x22emoji emoji1f4bd\x22></span>", "\xf0\x9f\x92\xbe"=>"<span class=\x22emoji emoji1f4be\x22></span>", 
				"\xf0\x9f\x92\xbf"=>"<span class=\x22emoji emoji1f4bf\x22></span>", "\xf0\x9f\x93\x80"=>"<span class=\x22emoji emoji1f4c0\x22></span>", "\xe2\x9c\x82"=>"<span class=\x22emoji emoji2702\x22></span>", "\xf0\x9f\x93\x8d"=>"<span class=\x22emoji emoji1f4cd\x22></span>", "\xf0\x9f\x93\x83"=>"<span class=\x22emoji emoji1f4c3\x22></span>", 
				"\xf0\x9f\x93\x84"=>"<span class=\x22emoji emoji1f4c4\x22></span>", "\xf0\x9f\x93\x85"=>"<span class=\x22emoji emoji1f4c5\x22></span>", "\xf0\x9f\x93\x81"=>"<span class=\x22emoji emoji1f4c1\x22></span>", "\xf0\x9f\x93\x82"=>"<span class=\x22emoji emoji1f4c2\x22></span>", "\xf0\x9f\x93\x93"=>"<span class=\x22emoji emoji1f4d3\x22></span>", 
				"\xf0\x9f\x93\x96"=>"<span class=\x22emoji emoji1f4d6\x22></span>", "\xf0\x9f\x93\x94"=>"<span class=\x22emoji emoji1f4d4\x22></span>", "\xf0\x9f\x93\x95"=>"<span class=\x22emoji emoji1f4d5\x22></span>", "\xf0\x9f\x93\x97"=>"<span class=\x22emoji emoji1f4d7\x22></span>", "\xf0\x9f\x93\x98"=>"<span class=\x22emoji emoji1f4d8\x22></span>", 
				"\xf0\x9f\x93\x99"=>"<span class=\x22emoji emoji1f4d9\x22></span>", "\xf0\x9f\x93\x9a"=>"<span class=\x22emoji emoji1f4da\x22></span>", "\xf0\x9f\x93\x9b"=>"<span class=\x22emoji emoji1f4db\x22></span>", "\xf0\x9f\x93\x9c"=>"<span class=\x22emoji emoji1f4dc\x22></span>", "\xf0\x9f\x93\x8b"=>"<span class=\x22emoji emoji1f4cb\x22></span>", 
				"\xf0\x9f\x93\x86"=>"<span class=\x22emoji emoji1f4c6\x22></span>", "\xf0\x9f\x93\x8a"=>"<span class=\x22emoji emoji1f4ca\x22></span>", "\xf0\x9f\x93\x88"=>"<span class=\x22emoji emoji1f4c8\x22></span>", "\xf0\x9f\x93\x89"=>"<span class=\x22emoji emoji1f4c9\x22></span>", "\xf0\x9f\x93\x87"=>"<span class=\x22emoji emoji1f4c7\x22></span>", 
				"\xf0\x9f\x93\x8c"=>"<span class=\x22emoji emoji1f4cc\x22></span>", "\xf0\x9f\x93\x92"=>"<span class=\x22emoji emoji1f4d2\x22></span>", "\xf0\x9f\x93\x8f"=>"<span class=\x22emoji emoji1f4cf\x22></span>", "\xf0\x9f\x93\x90"=>"<span class=\x22emoji emoji1f4d0\x22></span>", "\xf0\x9f\x93\x91"=>"<span class=\x22emoji emoji1f4d1\x22></span>", 
				"\xf0\x9f\x8e\xbd"=>"<span class=\x22emoji emoji1f3bd\x22></span>", "\xe2\x9a\xbe"=>"<span class=\x22emoji emoji26be\x22></span>", "\xe2\x9b\xb3"=>"<span class=\x22emoji emoji26f3\x22></span>", "\xf0\x9f\x8e\xbe"=>"<span class=\x22emoji emoji1f3be\x22></span>", "\xe2\x9a\xbd"=>"<span class=\x22emoji emoji26bd\x22></span>", 
				"\xf0\x9f\x8e\xbf"=>"<span class=\x22emoji emoji1f3bf\x22></span>", "\xf0\x9f\x8f\x80"=>"<span class=\x22emoji emoji1f3c0\x22></span>", "\xf0\x9f\x8f\x81"=>"<span class=\x22emoji emoji1f3c1\x22></span>", "\xf0\x9f\x8f\x82"=>"<span class=\x22emoji emoji1f3c2\x22></span>", "\xf0\x9f\x8f\x83"=>"<span class=\x22emoji emoji1f3c3\x22></span>", 
				"\xf0\x9f\x8f\x84"=>"<span class=\x22emoji emoji1f3c4\x22></span>", "\xf0\x9f\x8f\x86"=>"<span class=\x22emoji emoji1f3c6\x22></span>", "\xf0\x9f\x8f\x88"=>"<span class=\x22emoji emoji1f3c8\x22></span>", "\xf0\x9f\x8f\x8a"=>"<span class=\x22emoji emoji1f3ca\x22></span>", "\xf0\x9f\x9a\x83"=>"<span class=\x22emoji emoji1f683\x22></span>", 
				"\xf0\x9f\x9a\x87"=>"<span class=\x22emoji emoji1f687\x22></span>", "\xe2\x93\x82"=>"<span class=\x22emoji emoji24c2\x22></span>", "\xf0\x9f\x9a\x84"=>"<span class=\x22emoji emoji1f684\x22></span>", "\xf0\x9f\x9a\x85"=>"<span class=\x22emoji emoji1f685\x22></span>", "\xf0\x9f\x9a\x97"=>"<span class=\x22emoji emoji1f697\x22></span>", 
				"\xf0\x9f\x9a\x99"=>"<span class=\x22emoji emoji1f699\x22></span>", "\xf0\x9f\x9a\x8c"=>"<span class=\x22emoji emoji1f68c\x22></span>", "\xf0\x9f\x9a\x8f"=>"<span class=\x22emoji emoji1f68f\x22></span>", "\xf0\x9f\x9a\xa2"=>"<span class=\x22emoji emoji1f6a2\x22></span>", "\xe2\x9c\x88"=>"<span class=\x22emoji emoji2708\x22></span>", 
				"\xe2\x9b\xb5"=>"<span class=\x22emoji emoji26f5\x22></span>", "\xf0\x9f\x9a\x89"=>"<span class=\x22emoji emoji1f689\x22></span>", "\xf0\x9f\x9a\x80"=>"<span class=\x22emoji emoji1f680\x22></span>", "\xf0\x9f\x9a\xa4"=>"<span class=\x22emoji emoji1f6a4\x22></span>", "\xf0\x9f\x9a\x95"=>"<span class=\x22emoji emoji1f695\x22></span>", 
				"\xf0\x9f\x9a\x9a"=>"<span class=\x22emoji emoji1f69a\x22></span>", "\xf0\x9f\x9a\x92"=>"<span class=\x22emoji emoji1f692\x22></span>", "\xf0\x9f\x9a\x91"=>"<span class=\x22emoji emoji1f691\x22></span>", "\xf0\x9f\x9a\x93"=>"<span class=\x22emoji emoji1f693\x22></span>", "\xe2\x9b\xbd"=>"<span class=\x22emoji emoji26fd\x22></span>", 
				"\xf0\x9f\x85\xbf"=>"<span class=\x22emoji emoji1f17f\x22></span>", "\xf0\x9f\x9a\xa5"=>"<span class=\x22emoji emoji1f6a5\x22></span>", "\xf0\x9f\x9a\xa7"=>"<span class=\x22emoji emoji1f6a7\x22></span>", "\xf0\x9f\x9a\xa8"=>"<span class=\x22emoji emoji1f6a8\x22></span>", "\xe2\x99\xa8"=>"<span class=\x22emoji emoji2668\x22></span>", 
				"\xe2\x9b\xba"=>"<span class=\x22emoji emoji26fa\x22></span>", "\xf0\x9f\x8e\xa0"=>"<span class=\x22emoji emoji1f3a0\x22></span>", "\xf0\x9f\x8e\xa1"=>"<span class=\x22emoji emoji1f3a1\x22></span>", "\xf0\x9f\x8e\xa2"=>"<span class=\x22emoji emoji1f3a2\x22></span>", "\xf0\x9f\x8e\xa3"=>"<span class=\x22emoji emoji1f3a3\x22></span>", 
				"\xf0\x9f\x8e\xa4"=>"<span class=\x22emoji emoji1f3a4\x22></span>", "\xf0\x9f\x8e\xa5"=>"<span class=\x22emoji emoji1f3a5\x22></span>", "\xf0\x9f\x8e\xa6"=>"<span class=\x22emoji emoji1f3a6\x22></span>", "\xf0\x9f\x8e\xa7"=>"<span class=\x22emoji emoji1f3a7\x22></span>", "\xf0\x9f\x8e\xa8"=>"<span class=\x22emoji emoji1f3a8\x22></span>", 
				"\xf0\x9f\x8e\xa9"=>"<span class=\x22emoji emoji1f3a9\x22></span>", "\xf0\x9f\x8e\xaa"=>"<span class=\x22emoji emoji1f3aa\x22></span>", "\xf0\x9f\x8e\xab"=>"<span class=\x22emoji emoji1f3ab\x22></span>", "\xf0\x9f\x8e\xac"=>"<span class=\x22emoji emoji1f3ac\x22></span>", "\xf0\x9f\x8e\xad"=>"<span class=\x22emoji emoji1f3ad\x22></span>", 
				"\xf0\x9f\x8e\xae"=>"<span class=\x22emoji emoji1f3ae\x22></span>", "\xf0\x9f\x80\x84"=>"<span class=\x22emoji emoji1f004\x22></span>", "\xf0\x9f\x8e\xaf"=>"<span class=\x22emoji emoji1f3af\x22></span>", "\xf0\x9f\x8e\xb0"=>"<span class=\x22emoji emoji1f3b0\x22></span>", "\xf0\x9f\x8e\xb1"=>"<span class=\x22emoji emoji1f3b1\x22></span>", 
				"\xf0\x9f\x8e\xb2"=>"<span class=\x22emoji emoji1f3b2\x22></span>", "\xf0\x9f\x8e\xb3"=>"<span class=\x22emoji emoji1f3b3\x22></span>", "\xf0\x9f\x8e\xb4"=>"<span class=\x22emoji emoji1f3b4\x22></span>", "\xf0\x9f\x83\x8f"=>"<span class=\x22emoji emoji1f0cf\x22></span>", "\xf0\x9f\x8e\xb5"=>"<span class=\x22emoji emoji1f3b5\x22></span>", 
				"\xf0\x9f\x8e\xb6"=>"<span class=\x22emoji emoji1f3b6\x22></span>", "\xf0\x9f\x8e\xb7"=>"<span class=\x22emoji emoji1f3b7\x22></span>", "\xf0\x9f\x8e\xb8"=>"<span class=\x22emoji emoji1f3b8\x22></span>", "\xf0\x9f\x8e\xb9"=>"<span class=\x22emoji emoji1f3b9\x22></span>", "\xf0\x9f\x8e\xba"=>"<span class=\x22emoji emoji1f3ba\x22></span>", 
				"\xf0\x9f\x8e\xbb"=>"<span class=\x22emoji emoji1f3bb\x22></span>", "\xf0\x9f\x8e\xbc"=>"<span class=\x22emoji emoji1f3bc\x22></span>", "\xe3\x80\xbd"=>"<span class=\x22emoji emoji303d\x22></span>", "\xf0\x9f\x93\xb7"=>"<span class=\x22emoji emoji1f4f7\x22></span>", "\xf0\x9f\x93\xb9"=>"<span class=\x22emoji emoji1f4f9\x22></span>", 
				"\xf0\x9f\x93\xba"=>"<span class=\x22emoji emoji1f4fa\x22></span>", "\xf0\x9f\x93\xbb"=>"<span class=\x22emoji emoji1f4fb\x22></span>", "\xf0\x9f\x93\xbc"=>"<span class=\x22emoji emoji1f4fc\x22></span>", "\xf0\x9f\x92\x8b"=>"<span class=\x22emoji emoji1f48b\x22></span>", "\xf0\x9f\x92\x8c"=>"<span class=\x22emoji emoji1f48c\x22></span>", 
				"\xf0\x9f\x92\x8d"=>"<span class=\x22emoji emoji1f48d\x22></span>", "\xf0\x9f\x92\x8e"=>"<span class=\x22emoji emoji1f48e\x22></span>", "\xf0\x9f\x92\x8f"=>"<span class=\x22emoji emoji1f48f\x22></span>", "\xf0\x9f\x92\x90"=>"<span class=\x22emoji emoji1f490\x22></span>", "\xf0\x9f\x92\x91"=>"<span class=\x22emoji emoji1f491\x22></span>", 
				"\xf0\x9f\x92\x92"=>"<span class=\x22emoji emoji1f492\x22></span>", "\xf0\x9f\x94\x9e"=>"<span class=\x22emoji emoji1f51e\x22></span>", "\xc2\xa9"=>"<span class=\x22emoji emojia9\x22></span>", "\xc2\xae"=>"<span class=\x22emoji emojiae\x22></span>", "\xe2\x84\xa2"=>"<span class=\x22emoji emoji2122\x22></span>", 
				"\xe2\x84\xb9"=>"<span class=\x22emoji emoji2139\x22></span>", "#\xe2\x83\xa3"=>"<span class=\x22emoji emoji2320e3\x22></span>", "1\xe2\x83\xa3"=>"<span class=\x22emoji emoji3120e3\x22></span>", "2\xe2\x83\xa3"=>"<span class=\x22emoji emoji3220e3\x22></span>", "3\xe2\x83\xa3"=>"<span class=\x22emoji emoji3320e3\x22></span>", 
				"4\xe2\x83\xa3"=>"<span class=\x22emoji emoji3420e3\x22></span>", "5\xe2\x83\xa3"=>"<span class=\x22emoji emoji3520e3\x22></span>", "6\xe2\x83\xa3"=>"<span class=\x22emoji emoji3620e3\x22></span>", "7\xe2\x83\xa3"=>"<span class=\x22emoji emoji3720e3\x22></span>", "8\xe2\x83\xa3"=>"<span class=\x22emoji emoji3820e3\x22></span>", 
				"9\xe2\x83\xa3"=>"<span class=\x22emoji emoji3920e3\x22></span>", "0\xe2\x83\xa3"=>"<span class=\x22emoji emoji3020e3\x22></span>", "\xf0\x9f\x94\x9f"=>"<span class=\x22emoji emoji1f51f\x22></span>", "\xf0\x9f\x93\xb6"=>"<span class=\x22emoji emoji1f4f6\x22></span>", "\xf0\x9f\x93\xb3"=>"<span class=\x22emoji emoji1f4f3\x22></span>", 
				"\xf0\x9f\x93\xb4"=>"<span class=\x22emoji emoji1f4f4\x22></span>", "\xf0\x9f\x8d\x94"=>"<span class=\x22emoji emoji1f354\x22></span>", "\xf0\x9f\x8d\x99"=>"<span class=\x22emoji emoji1f359\x22></span>", "\xf0\x9f\x8d\xb0"=>"<span class=\x22emoji emoji1f370\x22></span>", "\xf0\x9f\x8d\x9c"=>"<span class=\x22emoji emoji1f35c\x22></span>", 
				"\xf0\x9f\x8d\x9e"=>"<span class=\x22emoji emoji1f35e\x22></span>", "\xf0\x9f\x8d\xb3"=>"<span class=\x22emoji emoji1f373\x22></span>", "\xf0\x9f\x8d\xa6"=>"<span class=\x22emoji emoji1f366\x22></span>", "\xf0\x9f\x8d\x9f"=>"<span class=\x22emoji emoji1f35f\x22></span>", "\xf0\x9f\x8d\xa1"=>"<span class=\x22emoji emoji1f361\x22></span>", 
				"\xf0\x9f\x8d\x98"=>"<span class=\x22emoji emoji1f358\x22></span>", "\xf0\x9f\x8d\x9a"=>"<span class=\x22emoji emoji1f35a\x22></span>", "\xf0\x9f\x8d\x9d"=>"<span class=\x22emoji emoji1f35d\x22></span>", "\xf0\x9f\x8d\x9b"=>"<span class=\x22emoji emoji1f35b\x22></span>", "\xf0\x9f\x8d\xa2"=>"<span class=\x22emoji emoji1f362\x22></span>", 
				"\xf0\x9f\x8d\xa3"=>"<span class=\x22emoji emoji1f363\x22></span>", "\xf0\x9f\x8d\xb1"=>"<span class=\x22emoji emoji1f371\x22></span>", "\xf0\x9f\x8d\xb2"=>"<span class=\x22emoji emoji1f372\x22></span>", "\xf0\x9f\x8d\xa7"=>"<span class=\x22emoji emoji1f367\x22></span>", "\xf0\x9f\x8d\x96"=>"<span class=\x22emoji emoji1f356\x22></span>", 
				"\xf0\x9f\x8d\xa5"=>"<span class=\x22emoji emoji1f365\x22></span>", "\xf0\x9f\x8d\xa0"=>"<span class=\x22emoji emoji1f360\x22></span>", "\xf0\x9f\x8d\x95"=>"<span class=\x22emoji emoji1f355\x22></span>", "\xf0\x9f\x8d\x97"=>"<span class=\x22emoji emoji1f357\x22></span>", "\xf0\x9f\x8d\xa8"=>"<span class=\x22emoji emoji1f368\x22></span>", 
				"\xf0\x9f\x8d\xa9"=>"<span class=\x22emoji emoji1f369\x22></span>", "\xf0\x9f\x8d\xaa"=>"<span class=\x22emoji emoji1f36a\x22></span>", "\xf0\x9f\x8d\xab"=>"<span class=\x22emoji emoji1f36b\x22></span>", "\xf0\x9f\x8d\xac"=>"<span class=\x22emoji emoji1f36c\x22></span>", "\xf0\x9f\x8d\xad"=>"<span class=\x22emoji emoji1f36d\x22></span>", 
				"\xf0\x9f\x8d\xae"=>"<span class=\x22emoji emoji1f36e\x22></span>", "\xf0\x9f\x8d\xaf"=>"<span class=\x22emoji emoji1f36f\x22></span>", "\xf0\x9f\x8d\xa4"=>"<span class=\x22emoji emoji1f364\x22></span>", "\xf0\x9f\x8d\xb4"=>"<span class=\x22emoji emoji1f374\x22></span>", "\xe2\x98\x95"=>"<span class=\x22emoji emoji2615\x22></span>", 
				"\xf0\x9f\x8d\xb8"=>"<span class=\x22emoji emoji1f378\x22></span>", "\xf0\x9f\x8d\xba"=>"<span class=\x22emoji emoji1f37a\x22></span>", "\xf0\x9f\x8d\xb5"=>"<span class=\x22emoji emoji1f375\x22></span>", "\xf0\x9f\x8d\xb6"=>"<span class=\x22emoji emoji1f376\x22></span>", "\xf0\x9f\x8d\xb7"=>"<span class=\x22emoji emoji1f377\x22></span>", 
				"\xf0\x9f\x8d\xbb"=>"<span class=\x22emoji emoji1f37b\x22></span>", "\xf0\x9f\x8d\xb9"=>"<span class=\x22emoji emoji1f379\x22></span>", "\xe2\x86\x97"=>"<span class=\x22emoji emoji2197\x22></span>", "\xe2\x86\x98"=>"<span class=\x22emoji emoji2198\x22></span>", "\xe2\x86\x96"=>"<span class=\x22emoji emoji2196\x22></span>", 
				"\xe2\x86\x99"=>"<span class=\x22emoji emoji2199\x22></span>", "\xe2\xa4\xb4"=>"<span class=\x22emoji emoji2934\x22></span>", "\xe2\xa4\xb5"=>"<span class=\x22emoji emoji2935\x22></span>", "\xe2\x86\x94"=>"<span class=\x22emoji emoji2194\x22></span>", "\xe2\x86\x95"=>"<span class=\x22emoji emoji2195\x22></span>", 
				"\xe2\xac\x86"=>"<span class=\x22emoji emoji2b06\x22></span>", "\xe2\xac\x87"=>"<span class=\x22emoji emoji2b07\x22></span>", "\xe2\x9e\xa1"=>"<span class=\x22emoji emoji27a1\x22></span>", "\xe2\xac\x85"=>"<span class=\x22emoji emoji2b05\x22></span>", "\xe2\x96\xb6"=>"<span class=\x22emoji emoji25b6\x22></span>", 
				"\xe2\x97\x80"=>"<span class=\x22emoji emoji25c0\x22></span>", "\xe2\x8f\xa9"=>"<span class=\x22emoji emoji23e9\x22></span>", "\xe2\x8f\xaa"=>"<span class=\x22emoji emoji23ea\x22></span>", "\xe2\x8f\xab"=>"<span class=\x22emoji emoji23eb\x22></span>", "\xe2\x8f\xac"=>"<span class=\x22emoji emoji23ec\x22></span>", 
				"\xf0\x9f\x94\xba"=>"<span class=\x22emoji emoji1f53a\x22></span>", "\xf0\x9f\x94\xbb"=>"<span class=\x22emoji emoji1f53b\x22></span>", "\xf0\x9f\x94\xbc"=>"<span class=\x22emoji emoji1f53c\x22></span>", "\xf0\x9f\x94\xbd"=>"<span class=\x22emoji emoji1f53d\x22></span>", "\xe2\xad\x95"=>"<span class=\x22emoji emoji2b55\x22></span>", 
				"\xe2\x9d\x8c"=>"<span class=\x22emoji emoji274c\x22></span>", "\xe2\x9d\x8e"=>"<span class=\x22emoji emoji274e\x22></span>", "\xe2\x9d\x97"=>"<span class=\x22emoji emoji2757\x22></span>", "\xe2\x81\x89"=>"<span class=\x22emoji emoji2049\x22></span>", "\xe2\x80\xbc"=>"<span class=\x22emoji emoji203c\x22></span>", 
				"\xe2\x9d\x93"=>"<span class=\x22emoji emoji2753\x22></span>", "\xe2\x9d\x94"=>"<span class=\x22emoji emoji2754\x22></span>", "\xe2\x9d\x95"=>"<span class=\x22emoji emoji2755\x22></span>", "\xe3\x80\xb0"=>"<span class=\x22emoji emoji3030\x22></span>", "\xe2\x9e\xb0"=>"<span class=\x22emoji emoji27b0\x22></span>", 
				"\xe2\x9e\xbf"=>"<span class=\x22emoji emoji27bf\x22></span>", "\xe2\x9d\xa4"=>"<span class=\x22emoji emoji2764\x22></span>", "\xf0\x9f\x92\x93"=>"<span class=\x22emoji emoji1f493\x22></span>", "\xf0\x9f\x92\x94"=>"<span class=\x22emoji emoji1f494\x22></span>", "\xf0\x9f\x92\x95"=>"<span class=\x22emoji emoji1f495\x22></span>", 
				"\xf0\x9f\x92\x96"=>"<span class=\x22emoji emoji1f496\x22></span>", "\xf0\x9f\x92\x97"=>"<span class=\x22emoji emoji1f497\x22></span>", "\xf0\x9f\x92\x98"=>"<span class=\x22emoji emoji1f498\x22></span>", "\xf0\x9f\x92\x99"=>"<span class=\x22emoji emoji1f499\x22></span>", "\xf0\x9f\x92\x9a"=>"<span class=\x22emoji emoji1f49a\x22></span>", 
				"\xf0\x9f\x92\x9b"=>"<span class=\x22emoji emoji1f49b\x22></span>", "\xf0\x9f\x92\x9c"=>"<span class=\x22emoji emoji1f49c\x22></span>", "\xf0\x9f\x92\x9d"=>"<span class=\x22emoji emoji1f49d\x22></span>", "\xf0\x9f\x92\x9e"=>"<span class=\x22emoji emoji1f49e\x22></span>", "\xf0\x9f\x92\x9f"=>"<span class=\x22emoji emoji1f49f\x22></span>", 
				"\xe2\x99\xa5"=>"<span class=\x22emoji emoji2665\x22></span>", "\xe2\x99\xa0"=>"<span class=\x22emoji emoji2660\x22></span>", "\xe2\x99\xa6"=>"<span class=\x22emoji emoji2666\x22></span>", "\xe2\x99\xa3"=>"<span class=\x22emoji emoji2663\x22></span>", "\xf0\x9f\x9a\xac"=>"<span class=\x22emoji emoji1f6ac\x22></span>", 
				"\xf0\x9f\x9a\xad"=>"<span class=\x22emoji emoji1f6ad\x22></span>", "\xe2\x99\xbf"=>"<span class=\x22emoji emoji267f\x22></span>", "\xf0\x9f\x9a\xa9"=>"<span class=\x22emoji emoji1f6a9\x22></span>", "\xe2\x9a\xa0"=>"<span class=\x22emoji emoji26a0\x22></span>", "\xe2\x9b\x94"=>"<span class=\x22emoji emoji26d4\x22></span>", 
				"\xe2\x99\xbb"=>"<span class=\x22emoji emoji267b\x22></span>", "\xf0\x9f\x9a\xb2"=>"<span class=\x22emoji emoji1f6b2\x22></span>", "\xf0\x9f\x9a\xb6"=>"<span class=\x22emoji emoji1f6b6\x22></span>", "\xf0\x9f\x9a\xb9"=>"<span class=\x22emoji emoji1f6b9\x22></span>", "\xf0\x9f\x9a\xba"=>"<span class=\x22emoji emoji1f6ba\x22></span>", 
				"\xf0\x9f\x9b\x80"=>"<span class=\x22emoji emoji1f6c0\x22></span>", "\xf0\x9f\x9a\xbb"=>"<span class=\x22emoji emoji1f6bb\x22></span>", "\xf0\x9f\x9a\xbd"=>"<span class=\x22emoji emoji1f6bd\x22></span>", "\xf0\x9f\x9a\xbe"=>"<span class=\x22emoji emoji1f6be\x22></span>", "\xf0\x9f\x9a\xbc"=>"<span class=\x22emoji emoji1f6bc\x22></span>", 
				"\xf0\x9f\x9a\xaa"=>"<span class=\x22emoji emoji1f6aa\x22></span>", "\xf0\x9f\x9a\xab"=>"<span class=\x22emoji emoji1f6ab\x22></span>", "\xe2\x9c\x94"=>"<span class=\x22emoji emoji2714\x22></span>", "\xf0\x9f\x86\x91"=>"<span class=\x22emoji emoji1f191\x22></span>", "\xf0\x9f\x86\x92"=>"<span class=\x22emoji emoji1f192\x22></span>", 
				"\xf0\x9f\x86\x93"=>"<span class=\x22emoji emoji1f193\x22></span>", "\xf0\x9f\x86\x94"=>"<span class=\x22emoji emoji1f194\x22></span>", "\xf0\x9f\x86\x95"=>"<span class=\x22emoji emoji1f195\x22></span>", "\xf0\x9f\x86\x96"=>"<span class=\x22emoji emoji1f196\x22></span>", "\xf0\x9f\x86\x97"=>"<span class=\x22emoji emoji1f197\x22></span>", 
				"\xf0\x9f\x86\x98"=>"<span class=\x22emoji emoji1f198\x22></span>", "\xf0\x9f\x86\x99"=>"<span class=\x22emoji emoji1f199\x22></span>", "\xf0\x9f\x86\x9a"=>"<span class=\x22emoji emoji1f19a\x22></span>", "\xf0\x9f\x88\x81"=>"<span class=\x22emoji emoji1f201\x22></span>", "\xf0\x9f\x88\x82"=>"<span class=\x22emoji emoji1f202\x22></span>", 
				"\xf0\x9f\x88\xb2"=>"<span class=\x22emoji emoji1f232\x22></span>", "\xf0\x9f\x88\xb3"=>"<span class=\x22emoji emoji1f233\x22></span>", "\xf0\x9f\x88\xb4"=>"<span class=\x22emoji emoji1f234\x22></span>", "\xf0\x9f\x88\xb5"=>"<span class=\x22emoji emoji1f235\x22></span>", "\xf0\x9f\x88\xb6"=>"<span class=\x22emoji emoji1f236\x22></span>", 
				"\xf0\x9f\x88\x9a"=>"<span class=\x22emoji emoji1f21a\x22></span>", "\xf0\x9f\x88\xb7"=>"<span class=\x22emoji emoji1f237\x22></span>", "\xf0\x9f\x88\xb8"=>"<span class=\x22emoji emoji1f238\x22></span>", "\xf0\x9f\x88\xb9"=>"<span class=\x22emoji emoji1f239\x22></span>", "\xf0\x9f\x88\xaf"=>"<span class=\x22emoji emoji1f22f\x22></span>", 
				"\xf0\x9f\x88\xba"=>"<span class=\x22emoji emoji1f23a\x22></span>", "\xe3\x8a\x99"=>"<span class=\x22emoji emoji3299\x22></span>", "\xe3\x8a\x97"=>"<span class=\x22emoji emoji3297\x22></span>", "\xf0\x9f\x89\x90"=>"<span class=\x22emoji emoji1f250\x22></span>", "\xf0\x9f\x89\x91"=>"<span class=\x22emoji emoji1f251\x22></span>", 
				"\xe2\x9e\x95"=>"<span class=\x22emoji emoji2795\x22></span>", "\xe2\x9e\x96"=>"<span class=\x22emoji emoji2796\x22></span>", "\xe2\x9c\x96"=>"<span class=\x22emoji emoji2716\x22></span>", "\xe2\x9e\x97"=>"<span class=\x22emoji emoji2797\x22></span>", "\xf0\x9f\x92\xa0"=>"<span class=\x22emoji emoji1f4a0\x22></span>", 
				"\xf0\x9f\x92\xa1"=>"<span class=\x22emoji emoji1f4a1\x22></span>", "\xf0\x9f\x92\xa2"=>"<span class=\x22emoji emoji1f4a2\x22></span>", "\xf0\x9f\x92\xa3"=>"<span class=\x22emoji emoji1f4a3\x22></span>", "\xf0\x9f\x92\xa4"=>"<span class=\x22emoji emoji1f4a4\x22></span>", "\xf0\x9f\x92\xa5"=>"<span class=\x22emoji emoji1f4a5\x22></span>", 
				"\xf0\x9f\x92\xa6"=>"<span class=\x22emoji emoji1f4a6\x22></span>", "\xf0\x9f\x92\xa7"=>"<span class=\x22emoji emoji1f4a7\x22></span>", "\xf0\x9f\x92\xa8"=>"<span class=\x22emoji emoji1f4a8\x22></span>", "\xf0\x9f\x92\xa9"=>"<span class=\x22emoji emoji1f4a9\x22></span>", "\xf0\x9f\x92\xaa"=>"<span class=\x22emoji emoji1f4aa\x22></span>", 
				"\xf0\x9f\x92\xab"=>"<span class=\x22emoji emoji1f4ab\x22></span>", "\xf0\x9f\x92\xac"=>"<span class=\x22emoji emoji1f4ac\x22></span>", "\xe2\x9c\xa8"=>"<span class=\x22emoji emoji2728\x22></span>", "\xe2\x9c\xb4"=>"<span class=\x22emoji emoji2734\x22></span>", "\xe2\x9c\xb3"=>"<span class=\x22emoji emoji2733\x22></span>", 
				"\xe2\x9a\xaa"=>"<span class=\x22emoji emoji26aa\x22></span>", "\xe2\x9a\xab"=>"<span class=\x22emoji emoji26ab\x22></span>", "\xf0\x9f\x94\xb4"=>"<span class=\x22emoji emoji1f534\x22></span>", "\xf0\x9f\x94\xb5"=>"<span class=\x22emoji emoji1f535\x22></span>", "\xf0\x9f\x94\xb2"=>"<span class=\x22emoji emoji1f532\x22></span>", 
				"\xf0\x9f\x94\xb3"=>"<span class=\x22emoji emoji1f533\x22></span>", "\xe2\xad\x90"=>"<span class=\x22emoji emoji2b50\x22></span>", "\xe2\xac\x9c"=>"<span class=\x22emoji emoji2b1c\x22></span>", "\xe2\xac\x9b"=>"<span class=\x22emoji emoji2b1b\x22></span>", "\xe2\x96\xab"=>"<span class=\x22emoji emoji25ab\x22></span>", 
				"\xe2\x96\xaa"=>"<span class=\x22emoji emoji25aa\x22></span>", "\xe2\x97\xbd"=>"<span class=\x22emoji emoji25fd\x22></span>", "\xe2\x97\xbe"=>"<span class=\x22emoji emoji25fe\x22></span>", "\xe2\x97\xbb"=>"<span class=\x22emoji emoji25fb\x22></span>", "\xe2\x97\xbc"=>"<span class=\x22emoji emoji25fc\x22></span>", 
				"\xf0\x9f\x94\xb6"=>"<span class=\x22emoji emoji1f536\x22></span>", "\xf0\x9f\x94\xb7"=>"<span class=\x22emoji emoji1f537\x22></span>", "\xf0\x9f\x94\xb8"=>"<span class=\x22emoji emoji1f538\x22></span>", "\xf0\x9f\x94\xb9"=>"<span class=\x22emoji emoji1f539\x22></span>", "\xe2\x9d\x87"=>"<span class=\x22emoji emoji2747\x22></span>", 
				"\xf0\x9f\x92\xae"=>"<span class=\x22emoji emoji1f4ae\x22></span>", "\xf0\x9f\x92\xaf"=>"<span class=\x22emoji emoji1f4af\x22></span>", "\xe2\x86\xa9"=>"<span class=\x22emoji emoji21a9\x22></span>", "\xe2\x86\xaa"=>"<span class=\x22emoji emoji21aa\x22></span>", "\xf0\x9f\x94\x83"=>"<span class=\x22emoji emoji1f503\x22></span>", 
				"\xf0\x9f\x94\x8a"=>"<span class=\x22emoji emoji1f50a\x22></span>", "\xf0\x9f\x94\x8b"=>"<span class=\x22emoji emoji1f50b\x22></span>", "\xf0\x9f\x94\x8c"=>"<span class=\x22emoji emoji1f50c\x22></span>", "\xf0\x9f\x94\x8d"=>"<span class=\x22emoji emoji1f50d\x22></span>", "\xf0\x9f\x94\x8e"=>"<span class=\x22emoji emoji1f50e\x22></span>", 
				"\xf0\x9f\x94\x92"=>"<span class=\x22emoji emoji1f512\x22></span>", "\xf0\x9f\x94\x93"=>"<span class=\x22emoji emoji1f513\x22></span>", "\xf0\x9f\x94\x8f"=>"<span class=\x22emoji emoji1f50f\x22></span>", "\xf0\x9f\x94\x90"=>"<span class=\x22emoji emoji1f510\x22></span>", "\xf0\x9f\x94\x91"=>"<span class=\x22emoji emoji1f511\x22></span>", 
				"\xf0\x9f\x94\x94"=>"<span class=\x22emoji emoji1f514\x22></span>", "\xe2\x98\x91"=>"<span class=\x22emoji emoji2611\x22></span>", "\xf0\x9f\x94\x98"=>"<span class=\x22emoji emoji1f518\x22></span>", "\xf0\x9f\x94\x96"=>"<span class=\x22emoji emoji1f516\x22></span>", "\xf0\x9f\x94\x97"=>"<span class=\x22emoji emoji1f517\x22></span>", 
				"\xf0\x9f\x94\x99"=>"<span class=\x22emoji emoji1f519\x22></span>", "\xf0\x9f\x94\x9a"=>"<span class=\x22emoji emoji1f51a\x22></span>", "\xf0\x9f\x94\x9b"=>"<span class=\x22emoji emoji1f51b\x22></span>", "\xf0\x9f\x94\x9c"=>"<span class=\x22emoji emoji1f51c\x22></span>", "\xf0\x9f\x94\x9d"=>"<span class=\x22emoji emoji1f51d\x22></span>", 
				"\xe2\x9c\x85"=>"<span class=\x22emoji emoji2705\x22></span>", "\xe2\x9c\x8a"=>"<span class=\x22emoji emoji270a\x22></span>", "\xe2\x9c\x8b"=>"<span class=\x22emoji emoji270b\x22></span>", "\xe2\x9c\x8c"=>"<span class=\x22emoji emoji270c\x22></span>", "\xf0\x9f\x91\x8a"=>"<span class=\x22emoji emoji1f44a\x22></span>", 
				"\xf0\x9f\x91\x8d"=>"<span class=\x22emoji emoji1f44d\x22></span>", "\xe2\x98\x9d"=>"<span class=\x22emoji emoji261d\x22></span>", "\xf0\x9f\x91\x86"=>"<span class=\x22emoji emoji1f446\x22></span>", "\xf0\x9f\x91\x87"=>"<span class=\x22emoji emoji1f447\x22></span>", "\xf0\x9f\x91\x88"=>"<span class=\x22emoji emoji1f448\x22></span>", 
				"\xf0\x9f\x91\x89"=>"<span class=\x22emoji emoji1f449\x22></span>", "\xf0\x9f\x91\x8b"=>"<span class=\x22emoji emoji1f44b\x22></span>", "\xf0\x9f\x91\x8f"=>"<span class=\x22emoji emoji1f44f\x22></span>", "\xf0\x9f\x91\x8c"=>"<span class=\x22emoji emoji1f44c\x22></span>", "\xf0\x9f\x91\x8e"=>"<span class=\x22emoji emoji1f44e\x22></span>", 
				"\xf0\x9f\x91\x90"=>"<span class=\x22emoji emoji1f450\x22></span>", 
			),
		);

		$this->maps['html_to_unified'] = array_flip($this->maps['unified_to_html']);
	}


	#
	# functions to convert incoming data into the unified format
	#

	public function docomo_to_unified	($text) { return $this->convert($text, 'docomo_to_unified'); }
	public function kddi_to_unified		($text) { return $this->convert($text, 'kddi_to_unified'); }
	public function softbank_to_unified	($text) { return $this->convert($text, 'softbank_to_unified'); }
	public function google_to_unified	($text) { return $this->convert($text, 'google_to_unified'); }


	#
	# functions to convert unified data into an outgoing format
	#

	public function unified_to_docomo	($text) { return $this->convert($text, 'unified_to_docomo'); }
	public function unified_to_kddi		($text) { return $this->convert($text, 'unified_to_kddi'); }
	public function unified_to_softbank	($text) { return $this->convert($text, 'unified_to_softbank'); }
	public function unified_to_google	($text) { return $this->convert($text, 'unified_to_google'); }
	public function unified_to_html		($text) { return $this->convert($text, 'unified_to_html'); }
	public function html_to_unified		($text) { return $this->convert($text, 'html_to_unified'); }



	public function convert($text, $map){
		return str_replace(array_keys($this->maps[$map]), $this->maps[$map], $text);
	}

	public function get_name($unified_cp){
		return $this->maps['names'][$unified_cp] ? $this->maps['names'][$unified_cp] : '?';
	}

	public function any_to_html($text){
		$text = $this->docomo_to_unified($text);
		$text = $this->kddi_to_unified($text);
		$text = $this->softbank_to_unified($text);
		$text = $this->google_to_unified($text);
		return  $this->unified_to_html($text);
	}
}