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

-- This table is generated.

return {
 ["1st place medal"]={ 0x1F947 },
 ["2nd place medal"]={ 0x1F948 },
 ["3rd place medal"]={ 0x1F949 },
 ["a button (blood type)"]={ 0x1F170 },
 ["ab button (blood type)"]={ 0x1F18E },
 ["admission tickets"]={ 0x1F39F },
 ["adult"]={ 0x1F9D1 },
 ["adult: dark skin tone"]={ 0x1F9D1, 0x1F3FF },
 ["adult: light skin tone"]={ 0x1F9D1, 0x1F3FB },
 ["adult: medium skin tone"]={ 0x1F9D1, 0x1F3FD },
 ["adult: medium-dark skin tone"]={ 0x1F9D1, 0x1F3FE },
 ["adult: medium-light skin tone"]={ 0x1F9D1, 0x1F3FC },
 ["aerial tramway"]={ 0x1F6A1 },
 ["afghanistan"]={ 0x1F1E6, 0x1F1EB },
 ["airplane"]={ 0x2708 },
 ["airplane arrival"]={ 0x1F6EC },
 ["airplane departure"]={ 0x1F6EB },
 ["alarm clock"]={ 0x23F0 },
 ["albania"]={ 0x1F1E6, 0x1F1F1 },
 ["alembic"]={ 0x2697 },
 ["algeria"]={ 0x1F1E9, 0x1F1FF },
 ["alien"]={ 0x1F47D },
 ["alien monster"]={ 0x1F47E },
 ["ambulance"]={ 0x1F691 },
 ["american football"]={ 0x1F3C8 },
 ["american samoa"]={ 0x1F1E6, 0x1F1F8 },
 ["amphora"]={ 0x1F3FA },
 ["anchor"]={ 0x2693 },
 ["andorra"]={ 0x1F1E6, 0x1F1E9 },
 ["anger symbol"]={ 0x1F4A2 },
 ["angola"]={ 0x1F1E6, 0x1F1F4 },
 ["angry face"]={ 0x1F620 },
 ["angry face with horns"]={ 0x1F47F },
 ["anguilla"]={ 0x1F1E6, 0x1F1EE },
 ["anguished face"]={ 0x1F627 },
 ["ant"]={ 0x1F41C },
 ["antarctica"]={ 0x1F1E6, 0x1F1F6 },
 ["antenna bars"]={ 0x1F4F6 },
 ["anticlockwise arrows button"]={ 0x1F504 },
 ["antigua & barbuda"]={ 0x1F1E6, 0x1F1EC },
 ["aquarius"]={ 0x2652 },
 ["argentina"]={ 0x1F1E6, 0x1F1F7 },
 ["aries"]={ 0x2648 },
 ["armenia"]={ 0x1F1E6, 0x1F1F2 },
 ["articulated lorry"]={ 0x1F69B },
 ["artist palette"]={ 0x1F3A8 },
 ["aruba"]={ 0x1F1E6, 0x1F1FC },
 ["ascension island"]={ 0x1F1E6, 0x1F1E8 },
 ["astonished face"]={ 0x1F632 },
 ["atm sign"]={ 0x1F3E7 },
 ["atom symbol"]={ 0x269B },
 ["australia"]={ 0x1F1E6, 0x1F1FA },
 ["austria"]={ 0x1F1E6, 0x1F1F9 },
 ["automobile"]={ 0x1F697 },
 ["avocado"]={ 0x1F951 },
 ["azerbaijan"]={ 0x1F1E6, 0x1F1FF },
 ["b button (blood type)"]={ 0x1F171 },
 ["baby"]={ 0x1F476 },
 ["baby angel"]={ 0x1F47C },
 ["baby angel: dark skin tone"]={ 0x1F47C, 0x1F3FF },
 ["baby angel: light skin tone"]={ 0x1F47C, 0x1F3FB },
 ["baby angel: medium skin tone"]={ 0x1F47C, 0x1F3FD },
 ["baby angel: medium-dark skin tone"]={ 0x1F47C, 0x1F3FE },
 ["baby angel: medium-light skin tone"]={ 0x1F47C, 0x1F3FC },
 ["baby bottle"]={ 0x1F37C },
 ["baby chick"]={ 0x1F424 },
 ["baby symbol"]={ 0x1F6BC },
 ["baby: dark skin tone"]={ 0x1F476, 0x1F3FF },
 ["baby: light skin tone"]={ 0x1F476, 0x1F3FB },
 ["baby: medium skin tone"]={ 0x1F476, 0x1F3FD },
 ["baby: medium-dark skin tone"]={ 0x1F476, 0x1F3FE },
 ["baby: medium-light skin tone"]={ 0x1F476, 0x1F3FC },
 ["back arrow"]={ 0x1F519 },
 ["backhand index pointing down"]={ 0x1F447 },
 ["backhand index pointing down: dark skin tone"]={ 0x1F447, 0x1F3FF },
 ["backhand index pointing down: light skin tone"]={ 0x1F447, 0x1F3FB },
 ["backhand index pointing down: medium skin tone"]={ 0x1F447, 0x1F3FD },
 ["backhand index pointing down: medium-dark skin tone"]={ 0x1F447, 0x1F3FE },
 ["backhand index pointing down: medium-light skin tone"]={ 0x1F447, 0x1F3FC },
 ["backhand index pointing left"]={ 0x1F448 },
 ["backhand index pointing left: dark skin tone"]={ 0x1F448, 0x1F3FF },
 ["backhand index pointing left: light skin tone"]={ 0x1F448, 0x1F3FB },
 ["backhand index pointing left: medium skin tone"]={ 0x1F448, 0x1F3FD },
 ["backhand index pointing left: medium-dark skin tone"]={ 0x1F448, 0x1F3FE },
 ["backhand index pointing left: medium-light skin tone"]={ 0x1F448, 0x1F3FC },
 ["backhand index pointing right"]={ 0x1F449 },
 ["backhand index pointing right: dark skin tone"]={ 0x1F449, 0x1F3FF },
 ["backhand index pointing right: light skin tone"]={ 0x1F449, 0x1F3FB },
 ["backhand index pointing right: medium skin tone"]={ 0x1F449, 0x1F3FD },
 ["backhand index pointing right: medium-dark skin tone"]={ 0x1F449, 0x1F3FE },
 ["backhand index pointing right: medium-light skin tone"]={ 0x1F449, 0x1F3FC },
 ["backhand index pointing up"]={ 0x1F446 },
 ["backhand index pointing up: dark skin tone"]={ 0x1F446, 0x1F3FF },
 ["backhand index pointing up: light skin tone"]={ 0x1F446, 0x1F3FB },
 ["backhand index pointing up: medium skin tone"]={ 0x1F446, 0x1F3FD },
 ["backhand index pointing up: medium-dark skin tone"]={ 0x1F446, 0x1F3FE },
 ["backhand index pointing up: medium-light skin tone"]={ 0x1F446, 0x1F3FC },
 ["bacon"]={ 0x1F953 },
 ["badminton"]={ 0x1F3F8 },
 ["baggage claim"]={ 0x1F6C4 },
 ["baguette bread"]={ 0x1F956 },
 ["bahamas"]={ 0x1F1E7, 0x1F1F8 },
 ["bahrain"]={ 0x1F1E7, 0x1F1ED },
 ["balance scale"]={ 0x2696 },
 ["balloon"]={ 0x1F388 },
 ["ballot box with ballot"]={ 0x1F5F3 },
 ["ballot box with check"]={ 0x2611 },
 ["banana"]={ 0x1F34C },
 ["bangladesh"]={ 0x1F1E7, 0x1F1E9 },
 ["bank"]={ 0x1F3E6 },
 ["bar chart"]={ 0x1F4CA },
 ["barbados"]={ 0x1F1E7, 0x1F1E7 },
 ["barber pole"]={ 0x1F488 },
 ["baseball"]={ 0x26BE },
 ["basketball"]={ 0x1F3C0 },
 ["bat"]={ 0x1F987 },
 ["bathtub"]={ 0x1F6C1 },
 ["battery"]={ 0x1F50B },
 ["beach with umbrella"]={ 0x1F3D6 },
 ["bear face"]={ 0x1F43B },
 ["bearded person"]={ 0x1F9D4 },
 ["bearded person: dark skin tone"]={ 0x1F9D4, 0x1F3FF },
 ["bearded person: light skin tone"]={ 0x1F9D4, 0x1F3FB },
 ["bearded person: medium skin tone"]={ 0x1F9D4, 0x1F3FD },
 ["bearded person: medium-dark skin tone"]={ 0x1F9D4, 0x1F3FE },
 ["bearded person: medium-light skin tone"]={ 0x1F9D4, 0x1F3FC },
 ["beating heart"]={ 0x1F493 },
 ["bed"]={ 0x1F6CF },
 ["beer mug"]={ 0x1F37A },
 ["belarus"]={ 0x1F1E7, 0x1F1FE },
 ["belgium"]={ 0x1F1E7, 0x1F1EA },
 ["belize"]={ 0x1F1E7, 0x1F1FF },
 ["bell"]={ 0x1F514 },
 ["bell with slash"]={ 0x1F515 },
 ["bellhop bell"]={ 0x1F6CE },
 ["benin"]={ 0x1F1E7, 0x1F1EF },
 ["bento box"]={ 0x1F371 },
 ["bermuda"]={ 0x1F1E7, 0x1F1F2 },
 ["bhutan"]={ 0x1F1E7, 0x1F1F9 },
 ["bicycle"]={ 0x1F6B2 },
 ["bikini"]={ 0x1F459 },
 ["billed cap"]={ 0x1F9E2 },
 ["biohazard"]={ 0x2623 },
 ["bird"]={ 0x1F426 },
 ["birthday cake"]={ 0x1F382 },
 ["black circle"]={ 0x26AB },
 ["black flag"]={ 0x1F3F4 },
 ["black heart"]={ 0x1F5A4 },
 ["black large square"]={ 0x2B1B },
 ["black medium square"]={ 0x25FC },
 ["black medium-small square"]={ 0x25FE },
 ["black nib"]={ 0x2712 },
 ["black small square"]={ 0x25AA },
 ["black square button"]={ 0x1F532 },
 ["blond-haired man"]={ 0x1F471, 0x200D, 0x2642 },
 ["blond-haired man: dark skin tone"]={ 0x1F471, 0x1F3FF, 0x200D, 0x2642 },
 ["blond-haired man: light skin tone"]={ 0x1F471, 0x1F3FB, 0x200D, 0x2642 },
 ["blond-haired man: medium skin tone"]={ 0x1F471, 0x1F3FD, 0x200D, 0x2642 },
 ["blond-haired man: medium-dark skin tone"]={ 0x1F471, 0x1F3FE, 0x200D, 0x2642 },
 ["blond-haired man: medium-light skin tone"]={ 0x1F471, 0x1F3FC, 0x200D, 0x2642 },
 ["blond-haired person"]={ 0x1F471 },
 ["blond-haired person: dark skin tone"]={ 0x1F471, 0x1F3FF },
 ["blond-haired person: light skin tone"]={ 0x1F471, 0x1F3FB },
 ["blond-haired person: medium skin tone"]={ 0x1F471, 0x1F3FD },
 ["blond-haired person: medium-dark skin tone"]={ 0x1F471, 0x1F3FE },
 ["blond-haired person: medium-light skin tone"]={ 0x1F471, 0x1F3FC },
 ["blond-haired woman"]={ 0x1F471, 0x200D, 0x2640 },
 ["blond-haired woman: dark skin tone"]={ 0x1F471, 0x1F3FF, 0x200D, 0x2640 },
 ["blond-haired woman: light skin tone"]={ 0x1F471, 0x1F3FB, 0x200D, 0x2640 },
 ["blond-haired woman: medium skin tone"]={ 0x1F471, 0x1F3FD, 0x200D, 0x2640 },
 ["blond-haired woman: medium-dark skin tone"]={ 0x1F471, 0x1F3FE, 0x200D, 0x2640 },
 ["blond-haired woman: medium-light skin tone"]={ 0x1F471, 0x1F3FC, 0x200D, 0x2640 },
 ["blossom"]={ 0x1F33C },
 ["blowfish"]={ 0x1F421 },
 ["blue book"]={ 0x1F4D8 },
 ["blue circle"]={ 0x1F535 },
 ["blue heart"]={ 0x1F499 },
 ["boar"]={ 0x1F417 },
 ["bolivia"]={ 0x1F1E7, 0x1F1F4 },
 ["bomb"]={ 0x1F4A3 },
 ["bookmark"]={ 0x1F516 },
 ["bookmark tabs"]={ 0x1F4D1 },
 ["books"]={ 0x1F4DA },
 ["bosnia & herzegovina"]={ 0x1F1E7, 0x1F1E6 },
 ["botswana"]={ 0x1F1E7, 0x1F1FC },
 ["bottle with popping cork"]={ 0x1F37E },
 ["bouquet"]={ 0x1F490 },
 ["bouvet island"]={ 0x1F1E7, 0x1F1FB },
 ["bow and arrow"]={ 0x1F3F9 },
 ["bowl with spoon"]={ 0x1F963 },
 ["bowling"]={ 0x1F3B3 },
 ["boxing glove"]={ 0x1F94A },
 ["boy"]={ 0x1F466 },
 ["boy: dark skin tone"]={ 0x1F466, 0x1F3FF },
 ["boy: light skin tone"]={ 0x1F466, 0x1F3FB },
 ["boy: medium skin tone"]={ 0x1F466, 0x1F3FD },
 ["boy: medium-dark skin tone"]={ 0x1F466, 0x1F3FE },
 ["boy: medium-light skin tone"]={ 0x1F466, 0x1F3FC },
 ["brain"]={ 0x1F9E0 },
 ["brazil"]={ 0x1F1E7, 0x1F1F7 },
 ["bread"]={ 0x1F35E },
 ["breast-feeding"]={ 0x1F931 },
 ["breast-feeding: dark skin tone"]={ 0x1F931, 0x1F3FF },
 ["breast-feeding: light skin tone"]={ 0x1F931, 0x1F3FB },
 ["breast-feeding: medium skin tone"]={ 0x1F931, 0x1F3FD },
 ["breast-feeding: medium-dark skin tone"]={ 0x1F931, 0x1F3FE },
 ["breast-feeding: medium-light skin tone"]={ 0x1F931, 0x1F3FC },
 ["bride with veil"]={ 0x1F470 },
 ["bride with veil: dark skin tone"]={ 0x1F470, 0x1F3FF },
 ["bride with veil: light skin tone"]={ 0x1F470, 0x1F3FB },
 ["bride with veil: medium skin tone"]={ 0x1F470, 0x1F3FD },
 ["bride with veil: medium-dark skin tone"]={ 0x1F470, 0x1F3FE },
 ["bride with veil: medium-light skin tone"]={ 0x1F470, 0x1F3FC },
 ["bridge at night"]={ 0x1F309 },
 ["briefcase"]={ 0x1F4BC },
 ["bright button"]={ 0x1F506 },
 ["british indian ocean territory"]={ 0x1F1EE, 0x1F1F4 },
 ["british virgin islands"]={ 0x1F1FB, 0x1F1EC },
 ["broccoli"]={ 0x1F966 },
 ["broken heart"]={ 0x1F494 },
 ["brunei"]={ 0x1F1E7, 0x1F1F3 },
 ["bug"]={ 0x1F41B },
 ["building construction"]={ 0x1F3D7 },
 ["bulgaria"]={ 0x1F1E7, 0x1F1EC },
 ["burkina faso"]={ 0x1F1E7, 0x1F1EB },
 ["burrito"]={ 0x1F32F },
 ["burundi"]={ 0x1F1E7, 0x1F1EE },
 ["bus"]={ 0x1F68C },
 ["bus stop"]={ 0x1F68F },
 ["bust in silhouette"]={ 0x1F464 },
 ["busts in silhouette"]={ 0x1F465 },
 ["butterfly"]={ 0x1F98B },
 ["cactus"]={ 0x1F335 },
 ["calendar"]={ 0x1F4C5 },
 ["call me hand"]={ 0x1F919 },
 ["call me hand: dark skin tone"]={ 0x1F919, 0x1F3FF },
 ["call me hand: light skin tone"]={ 0x1F919, 0x1F3FB },
 ["call me hand: medium skin tone"]={ 0x1F919, 0x1F3FD },
 ["call me hand: medium-dark skin tone"]={ 0x1F919, 0x1F3FE },
 ["call me hand: medium-light skin tone"]={ 0x1F919, 0x1F3FC },
 ["cambodia"]={ 0x1F1F0, 0x1F1ED },
 ["camel"]={ 0x1F42A },
 ["camera"]={ 0x1F4F7 },
 ["camera with flash"]={ 0x1F4F8 },
 ["cameroon"]={ 0x1F1E8, 0x1F1F2 },
 ["camping"]={ 0x1F3D5 },
 ["canada"]={ 0x1F1E8, 0x1F1E6 },
 ["canary islands"]={ 0x1F1EE, 0x1F1E8 },
 ["cancer"]={ 0x264B },
 ["candle"]={ 0x1F56F },
 ["candy"]={ 0x1F36C },
 ["canned food"]={ 0x1F96B },
 ["canoe"]={ 0x1F6F6 },
 ["cape verde"]={ 0x1F1E8, 0x1F1FB },
 ["capricorn"]={ 0x2651 },
 ["card file box"]={ 0x1F5C3 },
 ["card index"]={ 0x1F4C7 },
 ["card index dividers"]={ 0x1F5C2 },
 ["caribbean netherlands"]={ 0x1F1E7, 0x1F1F6 },
 ["carousel horse"]={ 0x1F3A0 },
 ["carp streamer"]={ 0x1F38F },
 ["carrot"]={ 0x1F955 },
 ["castle"]={ 0x1F3F0 },
 ["cat"]={ 0x1F408 },
 ["cat face"]={ 0x1F431 },
 ["cat face with tears of joy"]={ 0x1F639 },
 ["cat face with wry smile"]={ 0x1F63C },
 ["cayman islands"]={ 0x1F1F0, 0x1F1FE },
 ["central african republic"]={ 0x1F1E8, 0x1F1EB },
 ["ceuta & melilla"]={ 0x1F1EA, 0x1F1E6 },
 ["chad"]={ 0x1F1F9, 0x1F1E9 },
 ["chains"]={ 0x26D3 },
 ["chart decreasing"]={ 0x1F4C9 },
 ["chart increasing"]={ 0x1F4C8 },
 ["chart increasing with yen"]={ 0x1F4B9 },
 ["cheese wedge"]={ 0x1F9C0 },
 ["chequered flag"]={ 0x1F3C1 },
 ["cherries"]={ 0x1F352 },
 ["cherry blossom"]={ 0x1F338 },
 ["chestnut"]={ 0x1F330 },
 ["chicken"]={ 0x1F414 },
 ["child"]={ 0x1F9D2 },
 ["child: dark skin tone"]={ 0x1F9D2, 0x1F3FF },
 ["child: light skin tone"]={ 0x1F9D2, 0x1F3FB },
 ["child: medium skin tone"]={ 0x1F9D2, 0x1F3FD },
 ["child: medium-dark skin tone"]={ 0x1F9D2, 0x1F3FE },
 ["child: medium-light skin tone"]={ 0x1F9D2, 0x1F3FC },
 ["children crossing"]={ 0x1F6B8 },
 ["chile"]={ 0x1F1E8, 0x1F1F1 },
 ["china"]={ 0x1F1E8, 0x1F1F3 },
 ["chipmunk"]={ 0x1F43F },
 ["chocolate bar"]={ 0x1F36B },
 ["chopsticks"]={ 0x1F962 },
 ["christmas island"]={ 0x1F1E8, 0x1F1FD },
 ["christmas tree"]={ 0x1F384 },
 ["church"]={ 0x26EA },
 ["cigarette"]={ 0x1F6AC },
 ["cinema"]={ 0x1F3A6 },
 ["circled m"]={ 0x24C2 },
 ["circus tent"]={ 0x1F3AA },
 ["cityscape"]={ 0x1F3D9 },
 ["cityscape at dusk"]={ 0x1F306 },
 ["cl button"]={ 0x1F191 },
 ["clamp"]={ 0x1F5DC },
 ["clapper board"]={ 0x1F3AC },
 ["clapping hands"]={ 0x1F44F },
 ["clapping hands: dark skin tone"]={ 0x1F44F, 0x1F3FF },
 ["clapping hands: light skin tone"]={ 0x1F44F, 0x1F3FB },
 ["clapping hands: medium skin tone"]={ 0x1F44F, 0x1F3FD },
 ["clapping hands: medium-dark skin tone"]={ 0x1F44F, 0x1F3FE },
 ["clapping hands: medium-light skin tone"]={ 0x1F44F, 0x1F3FC },
 ["classical building"]={ 0x1F3DB },
 ["clinking beer mugs"]={ 0x1F37B },
 ["clinking glasses"]={ 0x1F942 },
 ["clipboard"]={ 0x1F4CB },
 ["clipperton island"]={ 0x1F1E8, 0x1F1F5 },
 ["clockwise vertical arrows"]={ 0x1F503 },
 ["closed book"]={ 0x1F4D5 },
 ["closed mailbox with lowered flag"]={ 0x1F4EA },
 ["closed mailbox with raised flag"]={ 0x1F4EB },
 ["closed umbrella"]={ 0x1F302 },
 ["cloud"]={ 0x2601 },
 ["cloud with lightning"]={ 0x1F329 },
 ["cloud with lightning and rain"]={ 0x26C8 },
 ["cloud with rain"]={ 0x1F327 },
 ["cloud with snow"]={ 0x1F328 },
 ["clown face"]={ 0x1F921 },
 ["club suit"]={ 0x2663 },
 ["clutch bag"]={ 0x1F45D },
 ["coat"]={ 0x1F9E5 },
 ["cocktail glass"]={ 0x1F378 },
 ["coconut"]={ 0x1F965 },
 ["cocos (keeling) islands"]={ 0x1F1E8, 0x1F1E8 },
 ["coffin"]={ 0x26B0 },
 ["collision"]={ 0x1F4A5 },
 ["colombia"]={ 0x1F1E8, 0x1F1F4 },
 ["comet"]={ 0x2604 },
 ["comoros"]={ 0x1F1F0, 0x1F1F2 },
 ["computer disk"]={ 0x1F4BD },
 ["computer mouse"]={ 0x1F5B1 },
 ["confetti ball"]={ 0x1F38A },
 ["confounded face"]={ 0x1F616 },
 ["confused face"]={ 0x1F615 },
 ["congo - brazzaville"]={ 0x1F1E8, 0x1F1EC },
 ["congo - kinshasa"]={ 0x1F1E8, 0x1F1E9 },
 ["construction"]={ 0x1F6A7 },
 ["construction worker"]={ 0x1F477 },
 ["construction worker: dark skin tone"]={ 0x1F477, 0x1F3FF },
 ["construction worker: light skin tone"]={ 0x1F477, 0x1F3FB },
 ["construction worker: medium skin tone"]={ 0x1F477, 0x1F3FD },
 ["construction worker: medium-dark skin tone"]={ 0x1F477, 0x1F3FE },
 ["construction worker: medium-light skin tone"]={ 0x1F477, 0x1F3FC },
 ["control knobs"]={ 0x1F39B },
 ["convenience store"]={ 0x1F3EA },
 ["cook islands"]={ 0x1F1E8, 0x1F1F0 },
 ["cooked rice"]={ 0x1F35A },
 ["cookie"]={ 0x1F36A },
 ["cooking"]={ 0x1F373 },
 ["cool button"]={ 0x1F192 },
 ["copyright"]={ 0xA9 },
 ["costa rica"]={ 0x1F1E8, 0x1F1F7 },
 ["couch and lamp"]={ 0x1F6CB },
 ["couple with heart"]={ 0x1F491 },
 ["couple with heart: man, man"]={ 0x1F468, 0x200D, 0x2764, 0x200D, 0x1F468 },
 ["couple with heart: woman, man"]={ 0x1F469, 0x200D, 0x2764, 0x200D, 0x1F468 },
 ["couple with heart: woman, woman"]={ 0x1F469, 0x200D, 0x2764, 0x200D, 0x1F469 },
 ["cow"]={ 0x1F404 },
 ["cow face"]={ 0x1F42E },
 ["cowboy hat face"]={ 0x1F920 },
 ["crab"]={ 0x1F980 },
 ["crayon"]={ 0x1F58D },
 ["crazy face"]={ 0x1F92A },
 ["credit card"]={ 0x1F4B3 },
 ["crescent moon"]={ 0x1F319 },
 ["cricket"]={ 0x1F3CF },
 ["croatia"]={ 0x1F1ED, 0x1F1F7 },
 ["crocodile"]={ 0x1F40A },
 ["croissant"]={ 0x1F950 },
 ["cross mark"]={ 0x274C },
 ["cross mark button"]={ 0x274E },
 ["crossed fingers"]={ 0x1F91E },
 ["crossed fingers: dark skin tone"]={ 0x1F91E, 0x1F3FF },
 ["crossed fingers: light skin tone"]={ 0x1F91E, 0x1F3FB },
 ["crossed fingers: medium skin tone"]={ 0x1F91E, 0x1F3FD },
 ["crossed fingers: medium-dark skin tone"]={ 0x1F91E, 0x1F3FE },
 ["crossed fingers: medium-light skin tone"]={ 0x1F91E, 0x1F3FC },
 ["crossed flags"]={ 0x1F38C },
 ["crossed swords"]={ 0x2694 },
 ["crown"]={ 0x1F451 },
 ["crying cat face"]={ 0x1F63F },
 ["crying face"]={ 0x1F622 },
 ["crystal ball"]={ 0x1F52E },
 ["cuba"]={ 0x1F1E8, 0x1F1FA },
 ["cucumber"]={ 0x1F952 },
 ["cup with straw"]={ 0x1F964 },
 ["curaçao"]={ 0x1F1E8, 0x1F1FC },
 ["curling stone"]={ 0x1F94C },
 ["curly loop"]={ 0x27B0 },
 ["currency exchange"]={ 0x1F4B1 },
 ["curry rice"]={ 0x1F35B },
 ["custard"]={ 0x1F36E },
 ["customs"]={ 0x1F6C3 },
 ["cut of meat"]={ 0x1F969 },
 ["cyclone"]={ 0x1F300 },
 ["cyprus"]={ 0x1F1E8, 0x1F1FE },
 ["czechia"]={ 0x1F1E8, 0x1F1FF },
 ["côte d’ivoire"]={ 0x1F1E8, 0x1F1EE },
 ["dagger"]={ 0x1F5E1 },
 ["dango"]={ 0x1F361 },
 ["dashing away"]={ 0x1F4A8 },
 ["deciduous tree"]={ 0x1F333 },
 ["deer"]={ 0x1F98C },
 ["delivery truck"]={ 0x1F69A },
 ["denmark"]={ 0x1F1E9, 0x1F1F0 },
 ["department store"]={ 0x1F3EC },
 ["derelict house"]={ 0x1F3DA },
 ["desert"]={ 0x1F3DC },
 ["desert island"]={ 0x1F3DD },
 ["desktop computer"]={ 0x1F5A5 },
 ["detective"]={ 0x1F575 },
 ["detective: dark skin tone"]={ 0x1F575, 0x1F3FF },
 ["detective: light skin tone"]={ 0x1F575, 0x1F3FB },
 ["detective: medium skin tone"]={ 0x1F575, 0x1F3FD },
 ["detective: medium-dark skin tone"]={ 0x1F575, 0x1F3FE },
 ["detective: medium-light skin tone"]={ 0x1F575, 0x1F3FC },
 ["diamond suit"]={ 0x2666 },
 ["diamond with a dot"]={ 0x1F4A0 },
 ["diego garcia"]={ 0x1F1E9, 0x1F1EC },
 ["dim button"]={ 0x1F505 },
 ["direct hit"]={ 0x1F3AF },
 ["disappointed but relieved face"]={ 0x1F625 },
 ["disappointed face"]={ 0x1F61E },
 ["dizzy"]={ 0x1F4AB },
 ["dizzy face"]={ 0x1F635 },
 ["djibouti"]={ 0x1F1E9, 0x1F1EF },
 ["dog"]={ 0x1F415 },
 ["dog face"]={ 0x1F436 },
 ["dollar banknote"]={ 0x1F4B5 },
 ["dolphin"]={ 0x1F42C },
 ["dominica"]={ 0x1F1E9, 0x1F1F2 },
 ["dominican republic"]={ 0x1F1E9, 0x1F1F4 },
 ["door"]={ 0x1F6AA },
 ["dotted six-pointed star"]={ 0x1F52F },
 ["double curly loop"]={ 0x27BF },
 ["double exclamation mark"]={ 0x203C },
 ["doughnut"]={ 0x1F369 },
 ["dove"]={ 0x1F54A },
 ["down arrow"]={ 0x2B07 },
 ["down button"]={ 0x1F53D },
 ["down-left arrow"]={ 0x2199 },
 ["down-right arrow"]={ 0x2198 },
 ["dragon"]={ 0x1F409 },
 ["dragon face"]={ 0x1F432 },
 ["dress"]={ 0x1F457 },
 ["drooling face"]={ 0x1F924 },
 ["droplet"]={ 0x1F4A7 },
 ["drum"]={ 0x1F941 },
 ["duck"]={ 0x1F986 },
 ["dumpling"]={ 0x1F95F },
 ["dvd"]={ 0x1F4C0 },
 ["e-mail"]={ 0x1F4E7 },
 ["eagle"]={ 0x1F985 },
 ["ear"]={ 0x1F442 },
 ["ear of corn"]={ 0x1F33D },
 ["ear: dark skin tone"]={ 0x1F442, 0x1F3FF },
 ["ear: light skin tone"]={ 0x1F442, 0x1F3FB },
 ["ear: medium skin tone"]={ 0x1F442, 0x1F3FD },
 ["ear: medium-dark skin tone"]={ 0x1F442, 0x1F3FE },
 ["ear: medium-light skin tone"]={ 0x1F442, 0x1F3FC },
 ["ecuador"]={ 0x1F1EA, 0x1F1E8 },
 ["egg"]={ 0x1F95A },
 ["eggplant"]={ 0x1F346 },
 ["egypt"]={ 0x1F1EA, 0x1F1EC },
 ["eight o’clock"]={ 0x1F557 },
 ["eight-pointed star"]={ 0x2734 },
 ["eight-spoked asterisk"]={ 0x2733 },
 ["eight-thirty"]={ 0x1F563 },
 ["eject button"]={ 0x23CF },
 ["el salvador"]={ 0x1F1F8, 0x1F1FB },
 ["electric plug"]={ 0x1F50C },
 ["elephant"]={ 0x1F418 },
 ["eleven o’clock"]={ 0x1F55A },
 ["eleven-thirty"]={ 0x1F566 },
 ["elf"]={ 0x1F9DD },
 ["elf: dark skin tone"]={ 0x1F9DD, 0x1F3FF },
 ["elf: light skin tone"]={ 0x1F9DD, 0x1F3FB },
 ["elf: medium skin tone"]={ 0x1F9DD, 0x1F3FD },
 ["elf: medium-dark skin tone"]={ 0x1F9DD, 0x1F3FE },
 ["elf: medium-light skin tone"]={ 0x1F9DD, 0x1F3FC },
 ["end arrow"]={ 0x1F51A },
 ["england"]={ 0x1F3F4, 0xE0067, 0xE0062, 0xE0065, 0xE006E, 0xE0067, 0xE007F },
 ["envelope"]={ 0x2709 },
 ["envelope with arrow"]={ 0x1F4E9 },
 ["equatorial guinea"]={ 0x1F1EC, 0x1F1F6 },
 ["eritrea"]={ 0x1F1EA, 0x1F1F7 },
 ["estonia"]={ 0x1F1EA, 0x1F1EA },
 ["ethiopia"]={ 0x1F1EA, 0x1F1F9 },
 ["euro banknote"]={ 0x1F4B6 },
 ["european union"]={ 0x1F1EA, 0x1F1FA },
 ["evergreen tree"]={ 0x1F332 },
 ["ewe"]={ 0x1F411 },
 ["exclamation mark"]={ 0x2757 },
 ["exclamation question mark"]={ 0x2049 },
 ["exploding head"]={ 0x1F92F },
 ["expressionless face"]={ 0x1F611 },
 ["eye"]={ 0x1F441 },
 ["eye in speech bubble"]={ 0x1F441, 0x200D, 0x1F5E8 },
 ["eyes"]={ 0x1F440 },
 ["face blowing a kiss"]={ 0x1F618 },
 ["face savouring delicious food"]={ 0x1F60B },
 ["face screaming in fear"]={ 0x1F631 },
 ["face vomiting"]={ 0x1F92E },
 ["face with cold sweat"]={ 0x1F613 },
 ["face with hand over mouth"]={ 0x1F92D },
 ["face with head-bandage"]={ 0x1F915 },
 ["face with medical mask"]={ 0x1F637 },
 ["face with monocle"]={ 0x1F9D0 },
 ["face with open mouth"]={ 0x1F62E },
 ["face with open mouth & cold sweat"]={ 0x1F630 },
 ["face with raised eyebrow"]={ 0x1F928 },
 ["face with rolling eyes"]={ 0x1F644 },
 ["face with steam from nose"]={ 0x1F624 },
 ["face with stuck-out tongue"]={ 0x1F61B },
 ["face with stuck-out tongue & closed eyes"]={ 0x1F61D },
 ["face with stuck-out tongue & winking eye"]={ 0x1F61C },
 ["face with symbols over mouth"]={ 0x1F92C },
 ["face with tears of joy"]={ 0x1F602 },
 ["face with thermometer"]={ 0x1F912 },
 ["face without mouth"]={ 0x1F636 },
 ["factory"]={ 0x1F3ED },
 ["fairy"]={ 0x1F9DA },
 ["fairy: dark skin tone"]={ 0x1F9DA, 0x1F3FF },
 ["fairy: light skin tone"]={ 0x1F9DA, 0x1F3FB },
 ["fairy: medium skin tone"]={ 0x1F9DA, 0x1F3FD },
 ["fairy: medium-dark skin tone"]={ 0x1F9DA, 0x1F3FE },
 ["fairy: medium-light skin tone"]={ 0x1F9DA, 0x1F3FC },
 ["falkland islands"]={ 0x1F1EB, 0x1F1F0 },
 ["fallen leaf"]={ 0x1F342 },
 ["family"]={ 0x1F46A },
 ["family: man, boy"]={ 0x1F468, 0x200D, 0x1F466 },
 ["family: man, boy, boy"]={ 0x1F468, 0x200D, 0x1F466, 0x200D, 0x1F466 },
 ["family: man, girl"]={ 0x1F468, 0x200D, 0x1F467 },
 ["family: man, girl, boy"]={ 0x1F468, 0x200D, 0x1F467, 0x200D, 0x1F466 },
 ["family: man, girl, girl"]={ 0x1F468, 0x200D, 0x1F467, 0x200D, 0x1F467 },
 ["family: man, man, boy"]={ 0x1F468, 0x200D, 0x1F468, 0x200D, 0x1F466 },
 ["family: man, man, boy, boy"]={ 0x1F468, 0x200D, 0x1F468, 0x200D, 0x1F466, 0x200D, 0x1F466 },
 ["family: man, man, girl"]={ 0x1F468, 0x200D, 0x1F468, 0x200D, 0x1F467 },
 ["family: man, man, girl, boy"]={ 0x1F468, 0x200D, 0x1F468, 0x200D, 0x1F467, 0x200D, 0x1F466 },
 ["family: man, man, girl, girl"]={ 0x1F468, 0x200D, 0x1F468, 0x200D, 0x1F467, 0x200D, 0x1F467 },
 ["family: man, woman, boy"]={ 0x1F468, 0x200D, 0x1F469, 0x200D, 0x1F466 },
 ["family: man, woman, boy, boy"]={ 0x1F468, 0x200D, 0x1F469, 0x200D, 0x1F466, 0x200D, 0x1F466 },
 ["family: man, woman, girl"]={ 0x1F468, 0x200D, 0x1F469, 0x200D, 0x1F467 },
 ["family: man, woman, girl, boy"]={ 0x1F468, 0x200D, 0x1F469, 0x200D, 0x1F467, 0x200D, 0x1F466 },
 ["family: man, woman, girl, girl"]={ 0x1F468, 0x200D, 0x1F469, 0x200D, 0x1F467, 0x200D, 0x1F467 },
 ["family: woman, boy"]={ 0x1F469, 0x200D, 0x1F466 },
 ["family: woman, boy, boy"]={ 0x1F469, 0x200D, 0x1F466, 0x200D, 0x1F466 },
 ["family: woman, girl"]={ 0x1F469, 0x200D, 0x1F467 },
 ["family: woman, girl, boy"]={ 0x1F469, 0x200D, 0x1F467, 0x200D, 0x1F466 },
 ["family: woman, girl, girl"]={ 0x1F469, 0x200D, 0x1F467, 0x200D, 0x1F467 },
 ["family: woman, woman, boy"]={ 0x1F469, 0x200D, 0x1F469, 0x200D, 0x1F466 },
 ["family: woman, woman, boy, boy"]={ 0x1F469, 0x200D, 0x1F469, 0x200D, 0x1F466, 0x200D, 0x1F466 },
 ["family: woman, woman, girl"]={ 0x1F469, 0x200D, 0x1F469, 0x200D, 0x1F467 },
 ["family: woman, woman, girl, boy"]={ 0x1F469, 0x200D, 0x1F469, 0x200D, 0x1F467, 0x200D, 0x1F466 },
 ["family: woman, woman, girl, girl"]={ 0x1F469, 0x200D, 0x1F469, 0x200D, 0x1F467, 0x200D, 0x1F467 },
 ["faroe islands"]={ 0x1F1EB, 0x1F1F4 },
 ["fast down button"]={ 0x23EC },
 ["fast reverse button"]={ 0x23EA },
 ["fast up button"]={ 0x23EB },
 ["fast-forward button"]={ 0x23E9 },
 ["fax machine"]={ 0x1F4E0 },
 ["fearful face"]={ 0x1F628 },
 ["female sign"]={ 0x2640 },
 ["ferris wheel"]={ 0x1F3A1 },
 ["ferry"]={ 0x26F4 },
 ["field hockey"]={ 0x1F3D1 },
 ["fiji"]={ 0x1F1EB, 0x1F1EF },
 ["file cabinet"]={ 0x1F5C4 },
 ["file folder"]={ 0x1F4C1 },
 ["film frames"]={ 0x1F39E },
 ["film projector"]={ 0x1F4FD },
 ["finland"]={ 0x1F1EB, 0x1F1EE },
 ["fire"]={ 0x1F525 },
 ["fire engine"]={ 0x1F692 },
 ["fireworks"]={ 0x1F386 },
 ["first quarter moon"]={ 0x1F313 },
 ["first quarter moon with face"]={ 0x1F31B },
 ["fish"]={ 0x1F41F },
 ["fish cake with swirl"]={ 0x1F365 },
 ["fishing pole"]={ 0x1F3A3 },
 ["five o’clock"]={ 0x1F554 },
 ["five-thirty"]={ 0x1F560 },
 ["flag in hole"]={ 0x26F3 },
 ["flashlight"]={ 0x1F526 },
 ["fleur-de-lis"]={ 0x269C },
 ["flexed biceps"]={ 0x1F4AA },
 ["flexed biceps: dark skin tone"]={ 0x1F4AA, 0x1F3FF },
 ["flexed biceps: light skin tone"]={ 0x1F4AA, 0x1F3FB },
 ["flexed biceps: medium skin tone"]={ 0x1F4AA, 0x1F3FD },
 ["flexed biceps: medium-dark skin tone"]={ 0x1F4AA, 0x1F3FE },
 ["flexed biceps: medium-light skin tone"]={ 0x1F4AA, 0x1F3FC },
 ["floppy disk"]={ 0x1F4BE },
 ["flower playing cards"]={ 0x1F3B4 },
 ["flushed face"]={ 0x1F633 },
 ["flying saucer"]={ 0x1F6F8 },
 ["fog"]={ 0x1F32B },
 ["foggy"]={ 0x1F301 },
 ["folded hands"]={ 0x1F64F },
 ["folded hands: dark skin tone"]={ 0x1F64F, 0x1F3FF },
 ["folded hands: light skin tone"]={ 0x1F64F, 0x1F3FB },
 ["folded hands: medium skin tone"]={ 0x1F64F, 0x1F3FD },
 ["folded hands: medium-dark skin tone"]={ 0x1F64F, 0x1F3FE },
 ["folded hands: medium-light skin tone"]={ 0x1F64F, 0x1F3FC },
 ["footprints"]={ 0x1F463 },
 ["fork and knife"]={ 0x1F374 },
 ["fork and knife with plate"]={ 0x1F37D },
 ["fortune cookie"]={ 0x1F960 },
 ["fountain"]={ 0x26F2 },
 ["fountain pen"]={ 0x1F58B },
 ["four leaf clover"]={ 0x1F340 },
 ["four o’clock"]={ 0x1F553 },
 ["four-thirty"]={ 0x1F55F },
 ["fox face"]={ 0x1F98A },
 ["framed picture"]={ 0x1F5BC },
 ["france"]={ 0x1F1EB, 0x1F1F7 },
 ["free button"]={ 0x1F193 },
 ["french fries"]={ 0x1F35F },
 ["french guiana"]={ 0x1F1EC, 0x1F1EB },
 ["french polynesia"]={ 0x1F1F5, 0x1F1EB },
 ["french southern territories"]={ 0x1F1F9, 0x1F1EB },
 ["fried shrimp"]={ 0x1F364 },
 ["frog face"]={ 0x1F438 },
 ["front-facing baby chick"]={ 0x1F425 },
 ["frowning face"]={ 0x2639 },
 ["frowning face with open mouth"]={ 0x1F626 },
 ["fuel pump"]={ 0x26FD },
 ["full moon"]={ 0x1F315 },
 ["full moon with face"]={ 0x1F31D },
 ["funeral urn"]={ 0x26B1 },
 ["gabon"]={ 0x1F1EC, 0x1F1E6 },
 ["gambia"]={ 0x1F1EC, 0x1F1F2 },
 ["game die"]={ 0x1F3B2 },
 ["gear"]={ 0x2699 },
 ["gem stone"]={ 0x1F48E },
 ["gemini"]={ 0x264A },
 ["genie"]={ 0x1F9DE },
 ["georgia"]={ 0x1F1EC, 0x1F1EA },
 ["germany"]={ 0x1F1E9, 0x1F1EA },
 ["ghana"]={ 0x1F1EC, 0x1F1ED },
 ["ghost"]={ 0x1F47B },
 ["gibraltar"]={ 0x1F1EC, 0x1F1EE },
 ["giraffe"]={ 0x1F992 },
 ["girl"]={ 0x1F467 },
 ["girl: dark skin tone"]={ 0x1F467, 0x1F3FF },
 ["girl: light skin tone"]={ 0x1F467, 0x1F3FB },
 ["girl: medium skin tone"]={ 0x1F467, 0x1F3FD },
 ["girl: medium-dark skin tone"]={ 0x1F467, 0x1F3FE },
 ["girl: medium-light skin tone"]={ 0x1F467, 0x1F3FC },
 ["glass of milk"]={ 0x1F95B },
 ["glasses"]={ 0x1F453 },
 ["globe showing americas"]={ 0x1F30E },
 ["globe showing asia-australia"]={ 0x1F30F },
 ["globe showing europe-africa"]={ 0x1F30D },
 ["globe with meridians"]={ 0x1F310 },
 ["gloves"]={ 0x1F9E4 },
 ["glowing star"]={ 0x1F31F },
 ["goal net"]={ 0x1F945 },
 ["goat"]={ 0x1F410 },
 ["goblin"]={ 0x1F47A },
 ["gorilla"]={ 0x1F98D },
 ["graduation cap"]={ 0x1F393 },
 ["grapes"]={ 0x1F347 },
 ["greece"]={ 0x1F1EC, 0x1F1F7 },
 ["green apple"]={ 0x1F34F },
 ["green book"]={ 0x1F4D7 },
 ["green heart"]={ 0x1F49A },
 ["green salad"]={ 0x1F957 },
 ["greenland"]={ 0x1F1EC, 0x1F1F1 },
 ["grenada"]={ 0x1F1EC, 0x1F1E9 },
 ["grimacing face"]={ 0x1F62C },
 ["grinning cat face with smiling eyes"]={ 0x1F638 },
 ["grinning face"]={ 0x1F600 },
 ["grinning face with smiling eyes"]={ 0x1F601 },
 ["growing heart"]={ 0x1F497 },
 ["guadeloupe"]={ 0x1F1EC, 0x1F1F5 },
 ["guam"]={ 0x1F1EC, 0x1F1FA },
 ["guard"]={ 0x1F482 },
 ["guard: dark skin tone"]={ 0x1F482, 0x1F3FF },
 ["guard: light skin tone"]={ 0x1F482, 0x1F3FB },
 ["guard: medium skin tone"]={ 0x1F482, 0x1F3FD },
 ["guard: medium-dark skin tone"]={ 0x1F482, 0x1F3FE },
 ["guard: medium-light skin tone"]={ 0x1F482, 0x1F3FC },
 ["guatemala"]={ 0x1F1EC, 0x1F1F9 },
 ["guernsey"]={ 0x1F1EC, 0x1F1EC },
 ["guinea"]={ 0x1F1EC, 0x1F1F3 },
 ["guinea-bissau"]={ 0x1F1EC, 0x1F1FC },
 ["guitar"]={ 0x1F3B8 },
 ["guyana"]={ 0x1F1EC, 0x1F1FE },
 ["haiti"]={ 0x1F1ED, 0x1F1F9 },
 ["hamburger"]={ 0x1F354 },
 ["hammer"]={ 0x1F528 },
 ["hammer and pick"]={ 0x2692 },
 ["hammer and wrench"]={ 0x1F6E0 },
 ["hamster face"]={ 0x1F439 },
 ["handbag"]={ 0x1F45C },
 ["handshake"]={ 0x1F91D },
 ["hatching chick"]={ 0x1F423 },
 ["headphone"]={ 0x1F3A7 },
 ["hear-no-evil monkey"]={ 0x1F649 },
 ["heard & mcdonald islands"]={ 0x1F1ED, 0x1F1F2 },
 ["heart decoration"]={ 0x1F49F },
 ["heart suit"]={ 0x2665 },
 ["heart with arrow"]={ 0x1F498 },
 ["heart with ribbon"]={ 0x1F49D },
 ["heavy check mark"]={ 0x2714 },
 ["heavy division sign"]={ 0x2797 },
 ["heavy dollar sign"]={ 0x1F4B2 },
 ["heavy heart exclamation"]={ 0x2763 },
 ["heavy large circle"]={ 0x2B55 },
 ["heavy minus sign"]={ 0x2796 },
 ["heavy multiplication x"]={ 0x2716 },
 ["heavy plus sign"]={ 0x2795 },
 ["hedgehog"]={ 0x1F994 },
 ["helicopter"]={ 0x1F681 },
 ["herb"]={ 0x1F33F },
 ["hibiscus"]={ 0x1F33A },
 ["high voltage"]={ 0x26A1 },
 ["high-heeled shoe"]={ 0x1F460 },
 ["high-speed train"]={ 0x1F684 },
 ["high-speed train with bullet nose"]={ 0x1F685 },
 ["hole"]={ 0x1F573 },
 ["honduras"]={ 0x1F1ED, 0x1F1F3 },
 ["honey pot"]={ 0x1F36F },
 ["honeybee"]={ 0x1F41D },
 ["hong kong sar china"]={ 0x1F1ED, 0x1F1F0 },
 ["horizontal traffic light"]={ 0x1F6A5 },
 ["horse"]={ 0x1F40E },
 ["horse face"]={ 0x1F434 },
 ["horse racing"]={ 0x1F3C7 },
 ["horse racing: dark skin tone"]={ 0x1F3C7, 0x1F3FF },
 ["horse racing: light skin tone"]={ 0x1F3C7, 0x1F3FB },
 ["horse racing: medium skin tone"]={ 0x1F3C7, 0x1F3FD },
 ["horse racing: medium-dark skin tone"]={ 0x1F3C7, 0x1F3FE },
 ["horse racing: medium-light skin tone"]={ 0x1F3C7, 0x1F3FC },
 ["hospital"]={ 0x1F3E5 },
 ["hot beverage"]={ 0x2615 },
 ["hot dog"]={ 0x1F32D },
 ["hot pepper"]={ 0x1F336 },
 ["hot springs"]={ 0x2668 },
 ["hotel"]={ 0x1F3E8 },
 ["hourglass"]={ 0x231B },
 ["hourglass with flowing sand"]={ 0x23F3 },
 ["house"]={ 0x1F3E0 },
 ["house with garden"]={ 0x1F3E1 },
 ["hugging face"]={ 0x1F917 },
 ["hundred points"]={ 0x1F4AF },
 ["hungary"]={ 0x1F1ED, 0x1F1FA },
 ["hushed face"]={ 0x1F62F },
 ["ice cream"]={ 0x1F368 },
 ["ice hockey"]={ 0x1F3D2 },
 ["ice skate"]={ 0x26F8 },
 ["iceland"]={ 0x1F1EE, 0x1F1F8 },
 ["id button"]={ 0x1F194 },
 ["inbox tray"]={ 0x1F4E5 },
 ["incoming envelope"]={ 0x1F4E8 },
 ["index pointing up"]={ 0x261D },
 ["index pointing up: dark skin tone"]={ 0x261D, 0x1F3FF },
 ["index pointing up: light skin tone"]={ 0x261D, 0x1F3FB },
 ["index pointing up: medium skin tone"]={ 0x261D, 0x1F3FD },
 ["index pointing up: medium-dark skin tone"]={ 0x261D, 0x1F3FE },
 ["index pointing up: medium-light skin tone"]={ 0x261D, 0x1F3FC },
 ["india"]={ 0x1F1EE, 0x1F1F3 },
 ["indonesia"]={ 0x1F1EE, 0x1F1E9 },
 ["information"]={ 0x2139 },
 ["input latin letters"]={ 0x1F524 },
 ["input latin lowercase"]={ 0x1F521 },
 ["input latin uppercase"]={ 0x1F520 },
 ["input numbers"]={ 0x1F522 },
 ["input symbols"]={ 0x1F523 },
 ["iran"]={ 0x1F1EE, 0x1F1F7 },
 ["iraq"]={ 0x1F1EE, 0x1F1F6 },
 ["ireland"]={ 0x1F1EE, 0x1F1EA },
 ["isle of man"]={ 0x1F1EE, 0x1F1F2 },
 ["israel"]={ 0x1F1EE, 0x1F1F1 },
 ["italy"]={ 0x1F1EE, 0x1F1F9 },
 ["jack-o-lantern"]={ 0x1F383 },
 ["jamaica"]={ 0x1F1EF, 0x1F1F2 },
 ["japan"]={ 0x1F1EF, 0x1F1F5 },
 ["japanese castle"]={ 0x1F3EF },
 ["japanese dolls"]={ 0x1F38E },
 ["japanese post office"]={ 0x1F3E3 },
 ["japanese symbol for beginner"]={ 0x1F530 },
 ["japanese “acceptable” button"]={ 0x1F251 },
 ["japanese “application” button"]={ 0x1F238 },
 ["japanese “bargain” button"]={ 0x1F250 },
 ["japanese “congratulations” button"]={ 0x3297 },
 ["japanese “discount” button"]={ 0x1F239 },
 ["japanese “free of charge” button"]={ 0x1F21A },
 ["japanese “here” button"]={ 0x1F201 },
 ["japanese “monthly amount” button"]={ 0x1F237 },
 ["japanese “no vacancy” button"]={ 0x1F235 },
 ["japanese “not free of charge” button"]={ 0x1F236 },
 ["japanese “open for business” button"]={ 0x1F23A },
 ["japanese “passing grade” button"]={ 0x1F234 },
 ["japanese “prohibited” button"]={ 0x1F232 },
 ["japanese “reserved” button"]={ 0x1F22F },
 ["japanese “secret” button"]={ 0x3299 },
 ["japanese “service charge” button"]={ 0x1F202 },
 ["japanese “vacancy” button"]={ 0x1F233 },
 ["jeans"]={ 0x1F456 },
 ["jersey"]={ 0x1F1EF, 0x1F1EA },
 ["joker"]={ 0x1F0CF },
 ["jordan"]={ 0x1F1EF, 0x1F1F4 },
 ["joystick"]={ 0x1F579 },
 ["kaaba"]={ 0x1F54B },
 ["kazakhstan"]={ 0x1F1F0, 0x1F1FF },
 ["kenya"]={ 0x1F1F0, 0x1F1EA },
 ["key"]={ 0x1F511 },
 ["keyboard"]={ 0x2328 },
 ["keycap 10"]={ 0x1F51F },
 ["keycap: 0"]={ 0x30, 0x20E3 },
 ["keycap: 1"]={ 0x31, 0x20E3 },
 ["keycap: 2"]={ 0x32, 0x20E3 },
 ["keycap: 3"]={ 0x33, 0x20E3 },
 ["keycap: 4"]={ 0x34, 0x20E3 },
 ["keycap: 5"]={ 0x35, 0x20E3 },
 ["keycap: 6"]={ 0x36, 0x20E3 },
 ["keycap: 7"]={ 0x37, 0x20E3 },
 ["keycap: 8"]={ 0x38, 0x20E3 },
 ["keycap: 9"]={ 0x39, 0x20E3 },
 ["keycap: asterisk"]={ 0x2A, 0x20E3 },
 ["keycap: hash"]={ 0x23, 0x20E3 },
 ["kick scooter"]={ 0x1F6F4 },
 ["kimono"]={ 0x1F458 },
 ["kiribati"]={ 0x1F1F0, 0x1F1EE },
 ["kiss"]={ 0x1F48F },
 ["kiss mark"]={ 0x1F48B },
 ["kiss: man, man"]={ 0x1F468, 0x200D, 0x2764, 0x200D, 0x1F48B, 0x200D, 0x1F468 },
 ["kiss: woman, man"]={ 0x1F469, 0x200D, 0x2764, 0x200D, 0x1F48B, 0x200D, 0x1F468 },
 ["kiss: woman, woman"]={ 0x1F469, 0x200D, 0x2764, 0x200D, 0x1F48B, 0x200D, 0x1F469 },
 ["kissing cat face with closed eyes"]={ 0x1F63D },
 ["kissing face"]={ 0x1F617 },
 ["kissing face with closed eyes"]={ 0x1F61A },
 ["kissing face with smiling eyes"]={ 0x1F619 },
 ["kitchen knife"]={ 0x1F52A },
 ["kiwi fruit"]={ 0x1F95D },
 ["koala"]={ 0x1F428 },
 ["kosovo"]={ 0x1F1FD, 0x1F1F0 },
 ["kuwait"]={ 0x1F1F0, 0x1F1FC },
 ["kyrgyzstan"]={ 0x1F1F0, 0x1F1EC },
 ["label"]={ 0x1F3F7 },
 ["lady beetle"]={ 0x1F41E },
 ["laos"]={ 0x1F1F1, 0x1F1E6 },
 ["laptop computer"]={ 0x1F4BB },
 ["large blue diamond"]={ 0x1F537 },
 ["large orange diamond"]={ 0x1F536 },
 ["last quarter moon"]={ 0x1F317 },
 ["last quarter moon with face"]={ 0x1F31C },
 ["last track button"]={ 0x23EE },
 ["latin cross"]={ 0x271D },
 ["latvia"]={ 0x1F1F1, 0x1F1FB },
 ["leaf fluttering in wind"]={ 0x1F343 },
 ["lebanon"]={ 0x1F1F1, 0x1F1E7 },
 ["ledger"]={ 0x1F4D2 },
 ["left arrow"]={ 0x2B05 },
 ["left arrow curving right"]={ 0x21AA },
 ["left luggage"]={ 0x1F6C5 },
 ["left speech bubble"]={ 0x1F5E8 },
 ["left-facing fist"]={ 0x1F91B },
 ["left-facing fist: dark skin tone"]={ 0x1F91B, 0x1F3FF },
 ["left-facing fist: light skin tone"]={ 0x1F91B, 0x1F3FB },
 ["left-facing fist: medium skin tone"]={ 0x1F91B, 0x1F3FD },
 ["left-facing fist: medium-dark skin tone"]={ 0x1F91B, 0x1F3FE },
 ["left-facing fist: medium-light skin tone"]={ 0x1F91B, 0x1F3FC },
 ["left-pointing magnifying glass"]={ 0x1F50D },
 ["left-right arrow"]={ 0x2194 },
 ["lemon"]={ 0x1F34B },
 ["leo"]={ 0x264C },
 ["leopard"]={ 0x1F406 },
 ["lesotho"]={ 0x1F1F1, 0x1F1F8 },
 ["level slider"]={ 0x1F39A },
 ["liberia"]={ 0x1F1F1, 0x1F1F7 },
 ["libra"]={ 0x264E },
 ["libya"]={ 0x1F1F1, 0x1F1FE },
 ["liechtenstein"]={ 0x1F1F1, 0x1F1EE },
 ["light bulb"]={ 0x1F4A1 },
 ["light rail"]={ 0x1F688 },
 ["link"]={ 0x1F517 },
 ["linked paperclips"]={ 0x1F587 },
 ["lion face"]={ 0x1F981 },
 ["lipstick"]={ 0x1F484 },
 ["lithuania"]={ 0x1F1F1, 0x1F1F9 },
 ["litter in bin sign"]={ 0x1F6AE },
 ["lizard"]={ 0x1F98E },
 ["locked"]={ 0x1F512 },
 ["locked with key"]={ 0x1F510 },
 ["locked with pen"]={ 0x1F50F },
 ["locomotive"]={ 0x1F682 },
 ["lollipop"]={ 0x1F36D },
 ["loudly crying face"]={ 0x1F62D },
 ["loudspeaker"]={ 0x1F4E2 },
 ["love hotel"]={ 0x1F3E9 },
 ["love letter"]={ 0x1F48C },
 ["love-you gesture"]={ 0x1F91F },
 ["love-you gesture: dark skin tone"]={ 0x1F91F, 0x1F3FF },
 ["love-you gesture: light skin tone"]={ 0x1F91F, 0x1F3FB },
 ["love-you gesture: medium skin tone"]={ 0x1F91F, 0x1F3FD },
 ["love-you gesture: medium-dark skin tone"]={ 0x1F91F, 0x1F3FE },
 ["love-you gesture: medium-light skin tone"]={ 0x1F91F, 0x1F3FC },
 ["luxembourg"]={ 0x1F1F1, 0x1F1FA },
 ["lying face"]={ 0x1F925 },
 ["macau sar china"]={ 0x1F1F2, 0x1F1F4 },
 ["macedonia"]={ 0x1F1F2, 0x1F1F0 },
 ["madagascar"]={ 0x1F1F2, 0x1F1EC },
 ["mage"]={ 0x1F9D9 },
 ["mage: dark skin tone"]={ 0x1F9D9, 0x1F3FF },
 ["mage: light skin tone"]={ 0x1F9D9, 0x1F3FB },
 ["mage: medium skin tone"]={ 0x1F9D9, 0x1F3FD },
 ["mage: medium-dark skin tone"]={ 0x1F9D9, 0x1F3FE },
 ["mage: medium-light skin tone"]={ 0x1F9D9, 0x1F3FC },
 ["mahjong red dragon"]={ 0x1F004 },
 ["malawi"]={ 0x1F1F2, 0x1F1FC },
 ["malaysia"]={ 0x1F1F2, 0x1F1FE },
 ["maldives"]={ 0x1F1F2, 0x1F1FB },
 ["male sign"]={ 0x2642 },
 ["mali"]={ 0x1F1F2, 0x1F1F1 },
 ["malta"]={ 0x1F1F2, 0x1F1F9 },
 ["man"]={ 0x1F468 },
 ["man and woman holding hands"]={ 0x1F46B },
 ["man artist"]={ 0x1F468, 0x200D, 0x1F3A8 },
 ["man artist: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F3A8 },
 ["man artist: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F3A8 },
 ["man artist: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F3A8 },
 ["man artist: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F3A8 },
 ["man artist: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F3A8 },
 ["man astronaut"]={ 0x1F468, 0x200D, 0x1F680 },
 ["man astronaut: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F680 },
 ["man astronaut: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F680 },
 ["man astronaut: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F680 },
 ["man astronaut: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F680 },
 ["man astronaut: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F680 },
 ["man biking"]={ 0x1F6B4, 0x200D, 0x2642 },
 ["man biking: dark skin tone"]={ 0x1F6B4, 0x1F3FF, 0x200D, 0x2642 },
 ["man biking: light skin tone"]={ 0x1F6B4, 0x1F3FB, 0x200D, 0x2642 },
 ["man biking: medium skin tone"]={ 0x1F6B4, 0x1F3FD, 0x200D, 0x2642 },
 ["man biking: medium-dark skin tone"]={ 0x1F6B4, 0x1F3FE, 0x200D, 0x2642 },
 ["man biking: medium-light skin tone"]={ 0x1F6B4, 0x1F3FC, 0x200D, 0x2642 },
 ["man bouncing ball"]={ 0x26F9, 0x200D, 0x2642 },
 ["man bouncing ball: dark skin tone"]={ 0x26F9, 0x1F3FF, 0x200D, 0x2642 },
 ["man bouncing ball: light skin tone"]={ 0x26F9, 0x1F3FB, 0x200D, 0x2642 },
 ["man bouncing ball: medium skin tone"]={ 0x26F9, 0x1F3FD, 0x200D, 0x2642 },
 ["man bouncing ball: medium-dark skin tone"]={ 0x26F9, 0x1F3FE, 0x200D, 0x2642 },
 ["man bouncing ball: medium-light skin tone"]={ 0x26F9, 0x1F3FC, 0x200D, 0x2642 },
 ["man bowing"]={ 0x1F647, 0x200D, 0x2642 },
 ["man bowing: dark skin tone"]={ 0x1F647, 0x1F3FF, 0x200D, 0x2642 },
 ["man bowing: light skin tone"]={ 0x1F647, 0x1F3FB, 0x200D, 0x2642 },
 ["man bowing: medium skin tone"]={ 0x1F647, 0x1F3FD, 0x200D, 0x2642 },
 ["man bowing: medium-dark skin tone"]={ 0x1F647, 0x1F3FE, 0x200D, 0x2642 },
 ["man bowing: medium-light skin tone"]={ 0x1F647, 0x1F3FC, 0x200D, 0x2642 },
 ["man cartwheeling"]={ 0x1F938, 0x200D, 0x2642 },
 ["man cartwheeling: dark skin tone"]={ 0x1F938, 0x1F3FF, 0x200D, 0x2642 },
 ["man cartwheeling: light skin tone"]={ 0x1F938, 0x1F3FB, 0x200D, 0x2642 },
 ["man cartwheeling: medium skin tone"]={ 0x1F938, 0x1F3FD, 0x200D, 0x2642 },
 ["man cartwheeling: medium-dark skin tone"]={ 0x1F938, 0x1F3FE, 0x200D, 0x2642 },
 ["man cartwheeling: medium-light skin tone"]={ 0x1F938, 0x1F3FC, 0x200D, 0x2642 },
 ["man climbing"]={ 0x1F9D7, 0x200D, 0x2642 },
 ["man climbing: dark skin tone"]={ 0x1F9D7, 0x1F3FF, 0x200D, 0x2642 },
 ["man climbing: light skin tone"]={ 0x1F9D7, 0x1F3FB, 0x200D, 0x2642 },
 ["man climbing: medium skin tone"]={ 0x1F9D7, 0x1F3FD, 0x200D, 0x2642 },
 ["man climbing: medium-dark skin tone"]={ 0x1F9D7, 0x1F3FE, 0x200D, 0x2642 },
 ["man climbing: medium-light skin tone"]={ 0x1F9D7, 0x1F3FC, 0x200D, 0x2642 },
 ["man construction worker"]={ 0x1F477, 0x200D, 0x2642 },
 ["man construction worker: dark skin tone"]={ 0x1F477, 0x1F3FF, 0x200D, 0x2642 },
 ["man construction worker: light skin tone"]={ 0x1F477, 0x1F3FB, 0x200D, 0x2642 },
 ["man construction worker: medium skin tone"]={ 0x1F477, 0x1F3FD, 0x200D, 0x2642 },
 ["man construction worker: medium-dark skin tone"]={ 0x1F477, 0x1F3FE, 0x200D, 0x2642 },
 ["man construction worker: medium-light skin tone"]={ 0x1F477, 0x1F3FC, 0x200D, 0x2642 },
 ["man cook"]={ 0x1F468, 0x200D, 0x1F373 },
 ["man cook: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F373 },
 ["man cook: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F373 },
 ["man cook: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F373 },
 ["man cook: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F373 },
 ["man cook: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F373 },
 ["man dancing"]={ 0x1F57A },
 ["man dancing: dark skin tone"]={ 0x1F57A, 0x1F3FF },
 ["man dancing: light skin tone"]={ 0x1F57A, 0x1F3FB },
 ["man dancing: medium skin tone"]={ 0x1F57A, 0x1F3FD },
 ["man dancing: medium-dark skin tone"]={ 0x1F57A, 0x1F3FE },
 ["man dancing: medium-light skin tone"]={ 0x1F57A, 0x1F3FC },
 ["man detective"]={ 0x1F575, 0x200D, 0x2642 },
 ["man detective: dark skin tone"]={ 0x1F575, 0x1F3FF, 0x200D, 0x2642 },
 ["man detective: light skin tone"]={ 0x1F575, 0x1F3FB, 0x200D, 0x2642 },
 ["man detective: medium skin tone"]={ 0x1F575, 0x1F3FD, 0x200D, 0x2642 },
 ["man detective: medium-dark skin tone"]={ 0x1F575, 0x1F3FE, 0x200D, 0x2642 },
 ["man detective: medium-light skin tone"]={ 0x1F575, 0x1F3FC, 0x200D, 0x2642 },
 ["man elf"]={ 0x1F9DD, 0x200D, 0x2642 },
 ["man elf: dark skin tone"]={ 0x1F9DD, 0x1F3FF, 0x200D, 0x2642 },
 ["man elf: light skin tone"]={ 0x1F9DD, 0x1F3FB, 0x200D, 0x2642 },
 ["man elf: medium skin tone"]={ 0x1F9DD, 0x1F3FD, 0x200D, 0x2642 },
 ["man elf: medium-dark skin tone"]={ 0x1F9DD, 0x1F3FE, 0x200D, 0x2642 },
 ["man elf: medium-light skin tone"]={ 0x1F9DD, 0x1F3FC, 0x200D, 0x2642 },
 ["man facepalming"]={ 0x1F926, 0x200D, 0x2642 },
 ["man facepalming: dark skin tone"]={ 0x1F926, 0x1F3FF, 0x200D, 0x2642 },
 ["man facepalming: light skin tone"]={ 0x1F926, 0x1F3FB, 0x200D, 0x2642 },
 ["man facepalming: medium skin tone"]={ 0x1F926, 0x1F3FD, 0x200D, 0x2642 },
 ["man facepalming: medium-dark skin tone"]={ 0x1F926, 0x1F3FE, 0x200D, 0x2642 },
 ["man facepalming: medium-light skin tone"]={ 0x1F926, 0x1F3FC, 0x200D, 0x2642 },
 ["man factory worker"]={ 0x1F468, 0x200D, 0x1F3ED },
 ["man factory worker: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F3ED },
 ["man factory worker: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F3ED },
 ["man factory worker: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F3ED },
 ["man factory worker: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F3ED },
 ["man factory worker: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F3ED },
 ["man fairy"]={ 0x1F9DA, 0x200D, 0x2642 },
 ["man fairy: dark skin tone"]={ 0x1F9DA, 0x1F3FF, 0x200D, 0x2642 },
 ["man fairy: light skin tone"]={ 0x1F9DA, 0x1F3FB, 0x200D, 0x2642 },
 ["man fairy: medium skin tone"]={ 0x1F9DA, 0x1F3FD, 0x200D, 0x2642 },
 ["man fairy: medium-dark skin tone"]={ 0x1F9DA, 0x1F3FE, 0x200D, 0x2642 },
 ["man fairy: medium-light skin tone"]={ 0x1F9DA, 0x1F3FC, 0x200D, 0x2642 },
 ["man farmer"]={ 0x1F468, 0x200D, 0x1F33E },
 ["man farmer: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F33E },
 ["man farmer: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F33E },
 ["man farmer: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F33E },
 ["man farmer: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F33E },
 ["man farmer: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F33E },
 ["man firefighter"]={ 0x1F468, 0x200D, 0x1F692 },
 ["man firefighter: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F692 },
 ["man firefighter: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F692 },
 ["man firefighter: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F692 },
 ["man firefighter: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F692 },
 ["man firefighter: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F692 },
 ["man frowning"]={ 0x1F64D, 0x200D, 0x2642 },
 ["man frowning: dark skin tone"]={ 0x1F64D, 0x1F3FF, 0x200D, 0x2642 },
 ["man frowning: light skin tone"]={ 0x1F64D, 0x1F3FB, 0x200D, 0x2642 },
 ["man frowning: medium skin tone"]={ 0x1F64D, 0x1F3FD, 0x200D, 0x2642 },
 ["man frowning: medium-dark skin tone"]={ 0x1F64D, 0x1F3FE, 0x200D, 0x2642 },
 ["man frowning: medium-light skin tone"]={ 0x1F64D, 0x1F3FC, 0x200D, 0x2642 },
 ["man genie"]={ 0x1F9DE, 0x200D, 0x2642 },
 ["man gesturing no"]={ 0x1F645, 0x200D, 0x2642 },
 ["man gesturing no: dark skin tone"]={ 0x1F645, 0x1F3FF, 0x200D, 0x2642 },
 ["man gesturing no: light skin tone"]={ 0x1F645, 0x1F3FB, 0x200D, 0x2642 },
 ["man gesturing no: medium skin tone"]={ 0x1F645, 0x1F3FD, 0x200D, 0x2642 },
 ["man gesturing no: medium-dark skin tone"]={ 0x1F645, 0x1F3FE, 0x200D, 0x2642 },
 ["man gesturing no: medium-light skin tone"]={ 0x1F645, 0x1F3FC, 0x200D, 0x2642 },
 ["man gesturing ok"]={ 0x1F646, 0x200D, 0x2642 },
 ["man gesturing ok: dark skin tone"]={ 0x1F646, 0x1F3FF, 0x200D, 0x2642 },
 ["man gesturing ok: light skin tone"]={ 0x1F646, 0x1F3FB, 0x200D, 0x2642 },
 ["man gesturing ok: medium skin tone"]={ 0x1F646, 0x1F3FD, 0x200D, 0x2642 },
 ["man gesturing ok: medium-dark skin tone"]={ 0x1F646, 0x1F3FE, 0x200D, 0x2642 },
 ["man gesturing ok: medium-light skin tone"]={ 0x1F646, 0x1F3FC, 0x200D, 0x2642 },
 ["man getting haircut"]={ 0x1F487, 0x200D, 0x2642 },
 ["man getting haircut: dark skin tone"]={ 0x1F487, 0x1F3FF, 0x200D, 0x2642 },
 ["man getting haircut: light skin tone"]={ 0x1F487, 0x1F3FB, 0x200D, 0x2642 },
 ["man getting haircut: medium skin tone"]={ 0x1F487, 0x1F3FD, 0x200D, 0x2642 },
 ["man getting haircut: medium-dark skin tone"]={ 0x1F487, 0x1F3FE, 0x200D, 0x2642 },
 ["man getting haircut: medium-light skin tone"]={ 0x1F487, 0x1F3FC, 0x200D, 0x2642 },
 ["man getting massage"]={ 0x1F486, 0x200D, 0x2642 },
 ["man getting massage: dark skin tone"]={ 0x1F486, 0x1F3FF, 0x200D, 0x2642 },
 ["man getting massage: light skin tone"]={ 0x1F486, 0x1F3FB, 0x200D, 0x2642 },
 ["man getting massage: medium skin tone"]={ 0x1F486, 0x1F3FD, 0x200D, 0x2642 },
 ["man getting massage: medium-dark skin tone"]={ 0x1F486, 0x1F3FE, 0x200D, 0x2642 },
 ["man getting massage: medium-light skin tone"]={ 0x1F486, 0x1F3FC, 0x200D, 0x2642 },
 ["man golfing"]={ 0x1F3CC, 0x200D, 0x2642 },
 ["man golfing: dark skin tone"]={ 0x1F3CC, 0x1F3FF, 0x200D, 0x2642 },
 ["man golfing: light skin tone"]={ 0x1F3CC, 0x1F3FB, 0x200D, 0x2642 },
 ["man golfing: medium skin tone"]={ 0x1F3CC, 0x1F3FD, 0x200D, 0x2642 },
 ["man golfing: medium-dark skin tone"]={ 0x1F3CC, 0x1F3FE, 0x200D, 0x2642 },
 ["man golfing: medium-light skin tone"]={ 0x1F3CC, 0x1F3FC, 0x200D, 0x2642 },
 ["man guard"]={ 0x1F482, 0x200D, 0x2642 },
 ["man guard: dark skin tone"]={ 0x1F482, 0x1F3FF, 0x200D, 0x2642 },
 ["man guard: light skin tone"]={ 0x1F482, 0x1F3FB, 0x200D, 0x2642 },
 ["man guard: medium skin tone"]={ 0x1F482, 0x1F3FD, 0x200D, 0x2642 },
 ["man guard: medium-dark skin tone"]={ 0x1F482, 0x1F3FE, 0x200D, 0x2642 },
 ["man guard: medium-light skin tone"]={ 0x1F482, 0x1F3FC, 0x200D, 0x2642 },
 ["man health worker"]={ 0x1F468, 0x200D, 0x2695 },
 ["man health worker: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x2695 },
 ["man health worker: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x2695 },
 ["man health worker: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x2695 },
 ["man health worker: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x2695 },
 ["man health worker: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x2695 },
 ["man in business suit levitating"]={ 0x1F574 },
 ["man in business suit levitating: dark skin tone"]={ 0x1F574, 0x1F3FF },
 ["man in business suit levitating: light skin tone"]={ 0x1F574, 0x1F3FB },
 ["man in business suit levitating: medium skin tone"]={ 0x1F574, 0x1F3FD },
 ["man in business suit levitating: medium-dark skin tone"]={ 0x1F574, 0x1F3FE },
 ["man in business suit levitating: medium-light skin tone"]={ 0x1F574, 0x1F3FC },
 ["man in lotus position"]={ 0x1F9D8, 0x200D, 0x2642 },
 ["man in lotus position: dark skin tone"]={ 0x1F9D8, 0x1F3FF, 0x200D, 0x2642 },
 ["man in lotus position: light skin tone"]={ 0x1F9D8, 0x1F3FB, 0x200D, 0x2642 },
 ["man in lotus position: medium skin tone"]={ 0x1F9D8, 0x1F3FD, 0x200D, 0x2642 },
 ["man in lotus position: medium-dark skin tone"]={ 0x1F9D8, 0x1F3FE, 0x200D, 0x2642 },
 ["man in lotus position: medium-light skin tone"]={ 0x1F9D8, 0x1F3FC, 0x200D, 0x2642 },
 ["man in steamy room"]={ 0x1F9D6, 0x200D, 0x2642 },
 ["man in steamy room: dark skin tone"]={ 0x1F9D6, 0x1F3FF, 0x200D, 0x2642 },
 ["man in steamy room: light skin tone"]={ 0x1F9D6, 0x1F3FB, 0x200D, 0x2642 },
 ["man in steamy room: medium skin tone"]={ 0x1F9D6, 0x1F3FD, 0x200D, 0x2642 },
 ["man in steamy room: medium-dark skin tone"]={ 0x1F9D6, 0x1F3FE, 0x200D, 0x2642 },
 ["man in steamy room: medium-light skin tone"]={ 0x1F9D6, 0x1F3FC, 0x200D, 0x2642 },
 ["man in tuxedo"]={ 0x1F935 },
 ["man in tuxedo: dark skin tone"]={ 0x1F935, 0x1F3FF },
 ["man in tuxedo: light skin tone"]={ 0x1F935, 0x1F3FB },
 ["man in tuxedo: medium skin tone"]={ 0x1F935, 0x1F3FD },
 ["man in tuxedo: medium-dark skin tone"]={ 0x1F935, 0x1F3FE },
 ["man in tuxedo: medium-light skin tone"]={ 0x1F935, 0x1F3FC },
 ["man judge"]={ 0x1F468, 0x200D, 0x2696 },
 ["man judge: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x2696 },
 ["man judge: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x2696 },
 ["man judge: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x2696 },
 ["man judge: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x2696 },
 ["man judge: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x2696 },
 ["man juggling"]={ 0x1F939, 0x200D, 0x2642 },
 ["man juggling: dark skin tone"]={ 0x1F939, 0x1F3FF, 0x200D, 0x2642 },
 ["man juggling: light skin tone"]={ 0x1F939, 0x1F3FB, 0x200D, 0x2642 },
 ["man juggling: medium skin tone"]={ 0x1F939, 0x1F3FD, 0x200D, 0x2642 },
 ["man juggling: medium-dark skin tone"]={ 0x1F939, 0x1F3FE, 0x200D, 0x2642 },
 ["man juggling: medium-light skin tone"]={ 0x1F939, 0x1F3FC, 0x200D, 0x2642 },
 ["man lifting weights"]={ 0x1F3CB, 0x200D, 0x2642 },
 ["man lifting weights: dark skin tone"]={ 0x1F3CB, 0x1F3FF, 0x200D, 0x2642 },
 ["man lifting weights: light skin tone"]={ 0x1F3CB, 0x1F3FB, 0x200D, 0x2642 },
 ["man lifting weights: medium skin tone"]={ 0x1F3CB, 0x1F3FD, 0x200D, 0x2642 },
 ["man lifting weights: medium-dark skin tone"]={ 0x1F3CB, 0x1F3FE, 0x200D, 0x2642 },
 ["man lifting weights: medium-light skin tone"]={ 0x1F3CB, 0x1F3FC, 0x200D, 0x2642 },
 ["man mage"]={ 0x1F9D9, 0x200D, 0x2642 },
 ["man mage: dark skin tone"]={ 0x1F9D9, 0x1F3FF, 0x200D, 0x2642 },
 ["man mage: light skin tone"]={ 0x1F9D9, 0x1F3FB, 0x200D, 0x2642 },
 ["man mage: medium skin tone"]={ 0x1F9D9, 0x1F3FD, 0x200D, 0x2642 },
 ["man mage: medium-dark skin tone"]={ 0x1F9D9, 0x1F3FE, 0x200D, 0x2642 },
 ["man mage: medium-light skin tone"]={ 0x1F9D9, 0x1F3FC, 0x200D, 0x2642 },
 ["man mechanic"]={ 0x1F468, 0x200D, 0x1F527 },
 ["man mechanic: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F527 },
 ["man mechanic: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F527 },
 ["man mechanic: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F527 },
 ["man mechanic: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F527 },
 ["man mechanic: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F527 },
 ["man mountain biking"]={ 0x1F6B5, 0x200D, 0x2642 },
 ["man mountain biking: dark skin tone"]={ 0x1F6B5, 0x1F3FF, 0x200D, 0x2642 },
 ["man mountain biking: light skin tone"]={ 0x1F6B5, 0x1F3FB, 0x200D, 0x2642 },
 ["man mountain biking: medium skin tone"]={ 0x1F6B5, 0x1F3FD, 0x200D, 0x2642 },
 ["man mountain biking: medium-dark skin tone"]={ 0x1F6B5, 0x1F3FE, 0x200D, 0x2642 },
 ["man mountain biking: medium-light skin tone"]={ 0x1F6B5, 0x1F3FC, 0x200D, 0x2642 },
 ["man office worker"]={ 0x1F468, 0x200D, 0x1F4BC },
 ["man office worker: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F4BC },
 ["man office worker: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F4BC },
 ["man office worker: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F4BC },
 ["man office worker: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F4BC },
 ["man office worker: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F4BC },
 ["man pilot"]={ 0x1F468, 0x200D, 0x2708 },
 ["man pilot: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x2708 },
 ["man pilot: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x2708 },
 ["man pilot: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x2708 },
 ["man pilot: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x2708 },
 ["man pilot: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x2708 },
 ["man playing handball"]={ 0x1F93E, 0x200D, 0x2642 },
 ["man playing handball: dark skin tone"]={ 0x1F93E, 0x1F3FF, 0x200D, 0x2642 },
 ["man playing handball: light skin tone"]={ 0x1F93E, 0x1F3FB, 0x200D, 0x2642 },
 ["man playing handball: medium skin tone"]={ 0x1F93E, 0x1F3FD, 0x200D, 0x2642 },
 ["man playing handball: medium-dark skin tone"]={ 0x1F93E, 0x1F3FE, 0x200D, 0x2642 },
 ["man playing handball: medium-light skin tone"]={ 0x1F93E, 0x1F3FC, 0x200D, 0x2642 },
 ["man playing water polo"]={ 0x1F93D, 0x200D, 0x2642 },
 ["man playing water polo: dark skin tone"]={ 0x1F93D, 0x1F3FF, 0x200D, 0x2642 },
 ["man playing water polo: light skin tone"]={ 0x1F93D, 0x1F3FB, 0x200D, 0x2642 },
 ["man playing water polo: medium skin tone"]={ 0x1F93D, 0x1F3FD, 0x200D, 0x2642 },
 ["man playing water polo: medium-dark skin tone"]={ 0x1F93D, 0x1F3FE, 0x200D, 0x2642 },
 ["man playing water polo: medium-light skin tone"]={ 0x1F93D, 0x1F3FC, 0x200D, 0x2642 },
 ["man police officer"]={ 0x1F46E, 0x200D, 0x2642 },
 ["man police officer: dark skin tone"]={ 0x1F46E, 0x1F3FF, 0x200D, 0x2642 },
 ["man police officer: light skin tone"]={ 0x1F46E, 0x1F3FB, 0x200D, 0x2642 },
 ["man police officer: medium skin tone"]={ 0x1F46E, 0x1F3FD, 0x200D, 0x2642 },
 ["man police officer: medium-dark skin tone"]={ 0x1F46E, 0x1F3FE, 0x200D, 0x2642 },
 ["man police officer: medium-light skin tone"]={ 0x1F46E, 0x1F3FC, 0x200D, 0x2642 },
 ["man pouting"]={ 0x1F64E, 0x200D, 0x2642 },
 ["man pouting: dark skin tone"]={ 0x1F64E, 0x1F3FF, 0x200D, 0x2642 },
 ["man pouting: light skin tone"]={ 0x1F64E, 0x1F3FB, 0x200D, 0x2642 },
 ["man pouting: medium skin tone"]={ 0x1F64E, 0x1F3FD, 0x200D, 0x2642 },
 ["man pouting: medium-dark skin tone"]={ 0x1F64E, 0x1F3FE, 0x200D, 0x2642 },
 ["man pouting: medium-light skin tone"]={ 0x1F64E, 0x1F3FC, 0x200D, 0x2642 },
 ["man raising hand"]={ 0x1F64B, 0x200D, 0x2642 },
 ["man raising hand: dark skin tone"]={ 0x1F64B, 0x1F3FF, 0x200D, 0x2642 },
 ["man raising hand: light skin tone"]={ 0x1F64B, 0x1F3FB, 0x200D, 0x2642 },
 ["man raising hand: medium skin tone"]={ 0x1F64B, 0x1F3FD, 0x200D, 0x2642 },
 ["man raising hand: medium-dark skin tone"]={ 0x1F64B, 0x1F3FE, 0x200D, 0x2642 },
 ["man raising hand: medium-light skin tone"]={ 0x1F64B, 0x1F3FC, 0x200D, 0x2642 },
 ["man rowing boat"]={ 0x1F6A3, 0x200D, 0x2642 },
 ["man rowing boat: dark skin tone"]={ 0x1F6A3, 0x1F3FF, 0x200D, 0x2642 },
 ["man rowing boat: light skin tone"]={ 0x1F6A3, 0x1F3FB, 0x200D, 0x2642 },
 ["man rowing boat: medium skin tone"]={ 0x1F6A3, 0x1F3FD, 0x200D, 0x2642 },
 ["man rowing boat: medium-dark skin tone"]={ 0x1F6A3, 0x1F3FE, 0x200D, 0x2642 },
 ["man rowing boat: medium-light skin tone"]={ 0x1F6A3, 0x1F3FC, 0x200D, 0x2642 },
 ["man running"]={ 0x1F3C3, 0x200D, 0x2642 },
 ["man running: dark skin tone"]={ 0x1F3C3, 0x1F3FF, 0x200D, 0x2642 },
 ["man running: light skin tone"]={ 0x1F3C3, 0x1F3FB, 0x200D, 0x2642 },
 ["man running: medium skin tone"]={ 0x1F3C3, 0x1F3FD, 0x200D, 0x2642 },
 ["man running: medium-dark skin tone"]={ 0x1F3C3, 0x1F3FE, 0x200D, 0x2642 },
 ["man running: medium-light skin tone"]={ 0x1F3C3, 0x1F3FC, 0x200D, 0x2642 },
 ["man scientist"]={ 0x1F468, 0x200D, 0x1F52C },
 ["man scientist: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F52C },
 ["man scientist: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F52C },
 ["man scientist: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F52C },
 ["man scientist: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F52C },
 ["man scientist: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F52C },
 ["man shrugging"]={ 0x1F937, 0x200D, 0x2642 },
 ["man shrugging: dark skin tone"]={ 0x1F937, 0x1F3FF, 0x200D, 0x2642 },
 ["man shrugging: light skin tone"]={ 0x1F937, 0x1F3FB, 0x200D, 0x2642 },
 ["man shrugging: medium skin tone"]={ 0x1F937, 0x1F3FD, 0x200D, 0x2642 },
 ["man shrugging: medium-dark skin tone"]={ 0x1F937, 0x1F3FE, 0x200D, 0x2642 },
 ["man shrugging: medium-light skin tone"]={ 0x1F937, 0x1F3FC, 0x200D, 0x2642 },
 ["man singer"]={ 0x1F468, 0x200D, 0x1F3A4 },
 ["man singer: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F3A4 },
 ["man singer: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F3A4 },
 ["man singer: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F3A4 },
 ["man singer: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F3A4 },
 ["man singer: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F3A4 },
 ["man student"]={ 0x1F468, 0x200D, 0x1F393 },
 ["man student: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F393 },
 ["man student: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F393 },
 ["man student: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F393 },
 ["man student: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F393 },
 ["man student: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F393 },
 ["man surfing"]={ 0x1F3C4, 0x200D, 0x2642 },
 ["man surfing: dark skin tone"]={ 0x1F3C4, 0x1F3FF, 0x200D, 0x2642 },
 ["man surfing: light skin tone"]={ 0x1F3C4, 0x1F3FB, 0x200D, 0x2642 },
 ["man surfing: medium skin tone"]={ 0x1F3C4, 0x1F3FD, 0x200D, 0x2642 },
 ["man surfing: medium-dark skin tone"]={ 0x1F3C4, 0x1F3FE, 0x200D, 0x2642 },
 ["man surfing: medium-light skin tone"]={ 0x1F3C4, 0x1F3FC, 0x200D, 0x2642 },
 ["man swimming"]={ 0x1F3CA, 0x200D, 0x2642 },
 ["man swimming: dark skin tone"]={ 0x1F3CA, 0x1F3FF, 0x200D, 0x2642 },
 ["man swimming: light skin tone"]={ 0x1F3CA, 0x1F3FB, 0x200D, 0x2642 },
 ["man swimming: medium skin tone"]={ 0x1F3CA, 0x1F3FD, 0x200D, 0x2642 },
 ["man swimming: medium-dark skin tone"]={ 0x1F3CA, 0x1F3FE, 0x200D, 0x2642 },
 ["man swimming: medium-light skin tone"]={ 0x1F3CA, 0x1F3FC, 0x200D, 0x2642 },
 ["man teacher"]={ 0x1F468, 0x200D, 0x1F3EB },
 ["man teacher: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F3EB },
 ["man teacher: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F3EB },
 ["man teacher: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F3EB },
 ["man teacher: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F3EB },
 ["man teacher: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F3EB },
 ["man technologist"]={ 0x1F468, 0x200D, 0x1F4BB },
 ["man technologist: dark skin tone"]={ 0x1F468, 0x1F3FF, 0x200D, 0x1F4BB },
 ["man technologist: light skin tone"]={ 0x1F468, 0x1F3FB, 0x200D, 0x1F4BB },
 ["man technologist: medium skin tone"]={ 0x1F468, 0x1F3FD, 0x200D, 0x1F4BB },
 ["man technologist: medium-dark skin tone"]={ 0x1F468, 0x1F3FE, 0x200D, 0x1F4BB },
 ["man technologist: medium-light skin tone"]={ 0x1F468, 0x1F3FC, 0x200D, 0x1F4BB },
 ["man tipping hand"]={ 0x1F481, 0x200D, 0x2642 },
 ["man tipping hand: dark skin tone"]={ 0x1F481, 0x1F3FF, 0x200D, 0x2642 },
 ["man tipping hand: light skin tone"]={ 0x1F481, 0x1F3FB, 0x200D, 0x2642 },
 ["man tipping hand: medium skin tone"]={ 0x1F481, 0x1F3FD, 0x200D, 0x2642 },
 ["man tipping hand: medium-dark skin tone"]={ 0x1F481, 0x1F3FE, 0x200D, 0x2642 },
 ["man tipping hand: medium-light skin tone"]={ 0x1F481, 0x1F3FC, 0x200D, 0x2642 },
 ["man vampire"]={ 0x1F9DB, 0x200D, 0x2642 },
 ["man vampire: dark skin tone"]={ 0x1F9DB, 0x1F3FF, 0x200D, 0x2642 },
 ["man vampire: light skin tone"]={ 0x1F9DB, 0x1F3FB, 0x200D, 0x2642 },
 ["man vampire: medium skin tone"]={ 0x1F9DB, 0x1F3FD, 0x200D, 0x2642 },
 ["man vampire: medium-dark skin tone"]={ 0x1F9DB, 0x1F3FE, 0x200D, 0x2642 },
 ["man vampire: medium-light skin tone"]={ 0x1F9DB, 0x1F3FC, 0x200D, 0x2642 },
 ["man walking"]={ 0x1F6B6, 0x200D, 0x2642 },
 ["man walking: dark skin tone"]={ 0x1F6B6, 0x1F3FF, 0x200D, 0x2642 },
 ["man walking: light skin tone"]={ 0x1F6B6, 0x1F3FB, 0x200D, 0x2642 },
 ["man walking: medium skin tone"]={ 0x1F6B6, 0x1F3FD, 0x200D, 0x2642 },
 ["man walking: medium-dark skin tone"]={ 0x1F6B6, 0x1F3FE, 0x200D, 0x2642 },
 ["man walking: medium-light skin tone"]={ 0x1F6B6, 0x1F3FC, 0x200D, 0x2642 },
 ["man wearing turban"]={ 0x1F473, 0x200D, 0x2642 },
 ["man wearing turban: dark skin tone"]={ 0x1F473, 0x1F3FF, 0x200D, 0x2642 },
 ["man wearing turban: light skin tone"]={ 0x1F473, 0x1F3FB, 0x200D, 0x2642 },
 ["man wearing turban: medium skin tone"]={ 0x1F473, 0x1F3FD, 0x200D, 0x2642 },
 ["man wearing turban: medium-dark skin tone"]={ 0x1F473, 0x1F3FE, 0x200D, 0x2642 },
 ["man wearing turban: medium-light skin tone"]={ 0x1F473, 0x1F3FC, 0x200D, 0x2642 },
 ["man with chinese cap"]={ 0x1F472 },
 ["man with chinese cap: dark skin tone"]={ 0x1F472, 0x1F3FF },
 ["man with chinese cap: light skin tone"]={ 0x1F472, 0x1F3FB },
 ["man with chinese cap: medium skin tone"]={ 0x1F472, 0x1F3FD },
 ["man with chinese cap: medium-dark skin tone"]={ 0x1F472, 0x1F3FE },
 ["man with chinese cap: medium-light skin tone"]={ 0x1F472, 0x1F3FC },
 ["man zombie"]={ 0x1F9DF, 0x200D, 0x2642 },
 ["man: dark skin tone"]={ 0x1F468, 0x1F3FF },
 ["man: light skin tone"]={ 0x1F468, 0x1F3FB },
 ["man: medium skin tone"]={ 0x1F468, 0x1F3FD },
 ["man: medium-dark skin tone"]={ 0x1F468, 0x1F3FE },
 ["man: medium-light skin tone"]={ 0x1F468, 0x1F3FC },
 ["mantelpiece clock"]={ 0x1F570 },
 ["man’s shoe"]={ 0x1F45E },
 ["map of japan"]={ 0x1F5FE },
 ["maple leaf"]={ 0x1F341 },
 ["marshall islands"]={ 0x1F1F2, 0x1F1ED },
 ["martial arts uniform"]={ 0x1F94B },
 ["martinique"]={ 0x1F1F2, 0x1F1F6 },
 ["mauritania"]={ 0x1F1F2, 0x1F1F7 },
 ["mauritius"]={ 0x1F1F2, 0x1F1FA },
 ["mayotte"]={ 0x1F1FE, 0x1F1F9 },
 ["meat on bone"]={ 0x1F356 },
 ["medical symbol"]={ 0x2695 },
 ["megaphone"]={ 0x1F4E3 },
 ["melon"]={ 0x1F348 },
 ["memo"]={ 0x1F4DD },
 ["men with bunny ears partying"]={ 0x1F46F, 0x200D, 0x2642 },
 ["men wrestling"]={ 0x1F93C, 0x200D, 0x2642 },
 ["menorah"]={ 0x1F54E },
 ["men’s room"]={ 0x1F6B9 },
 ["mermaid"]={ 0x1F9DC, 0x200D, 0x2640 },
 ["mermaid: dark skin tone"]={ 0x1F9DC, 0x1F3FF, 0x200D, 0x2640 },
 ["mermaid: light skin tone"]={ 0x1F9DC, 0x1F3FB, 0x200D, 0x2640 },
 ["mermaid: medium skin tone"]={ 0x1F9DC, 0x1F3FD, 0x200D, 0x2640 },
 ["mermaid: medium-dark skin tone"]={ 0x1F9DC, 0x1F3FE, 0x200D, 0x2640 },
 ["mermaid: medium-light skin tone"]={ 0x1F9DC, 0x1F3FC, 0x200D, 0x2640 },
 ["merman"]={ 0x1F9DC, 0x200D, 0x2642 },
 ["merman: dark skin tone"]={ 0x1F9DC, 0x1F3FF, 0x200D, 0x2642 },
 ["merman: light skin tone"]={ 0x1F9DC, 0x1F3FB, 0x200D, 0x2642 },
 ["merman: medium skin tone"]={ 0x1F9DC, 0x1F3FD, 0x200D, 0x2642 },
 ["merman: medium-dark skin tone"]={ 0x1F9DC, 0x1F3FE, 0x200D, 0x2642 },
 ["merman: medium-light skin tone"]={ 0x1F9DC, 0x1F3FC, 0x200D, 0x2642 },
 ["merperson"]={ 0x1F9DC },
 ["merperson: dark skin tone"]={ 0x1F9DC, 0x1F3FF },
 ["merperson: light skin tone"]={ 0x1F9DC, 0x1F3FB },
 ["merperson: medium skin tone"]={ 0x1F9DC, 0x1F3FD },
 ["merperson: medium-dark skin tone"]={ 0x1F9DC, 0x1F3FE },
 ["merperson: medium-light skin tone"]={ 0x1F9DC, 0x1F3FC },
 ["metro"]={ 0x1F687 },
 ["mexico"]={ 0x1F1F2, 0x1F1FD },
 ["micronesia"]={ 0x1F1EB, 0x1F1F2 },
 ["microphone"]={ 0x1F3A4 },
 ["microscope"]={ 0x1F52C },
 ["middle finger"]={ 0x1F595 },
 ["middle finger: dark skin tone"]={ 0x1F595, 0x1F3FF },
 ["middle finger: light skin tone"]={ 0x1F595, 0x1F3FB },
 ["middle finger: medium skin tone"]={ 0x1F595, 0x1F3FD },
 ["middle finger: medium-dark skin tone"]={ 0x1F595, 0x1F3FE },
 ["middle finger: medium-light skin tone"]={ 0x1F595, 0x1F3FC },
 ["military medal"]={ 0x1F396 },
 ["milky way"]={ 0x1F30C },
 ["minibus"]={ 0x1F690 },
 ["moai"]={ 0x1F5FF },
 ["mobile phone"]={ 0x1F4F1 },
 ["mobile phone off"]={ 0x1F4F4 },
 ["mobile phone with arrow"]={ 0x1F4F2 },
 ["moldova"]={ 0x1F1F2, 0x1F1E9 },
 ["monaco"]={ 0x1F1F2, 0x1F1E8 },
 ["money bag"]={ 0x1F4B0 },
 ["money with wings"]={ 0x1F4B8 },
 ["money-mouth face"]={ 0x1F911 },
 ["mongolia"]={ 0x1F1F2, 0x1F1F3 },
 ["monkey"]={ 0x1F412 },
 ["monkey face"]={ 0x1F435 },
 ["monorail"]={ 0x1F69D },
 ["montenegro"]={ 0x1F1F2, 0x1F1EA },
 ["montserrat"]={ 0x1F1F2, 0x1F1F8 },
 ["moon viewing ceremony"]={ 0x1F391 },
 ["morocco"]={ 0x1F1F2, 0x1F1E6 },
 ["mosque"]={ 0x1F54C },
 ["motor boat"]={ 0x1F6E5 },
 ["motor scooter"]={ 0x1F6F5 },
 ["motorcycle"]={ 0x1F3CD },
 ["motorway"]={ 0x1F6E3 },
 ["mount fuji"]={ 0x1F5FB },
 ["mountain"]={ 0x26F0 },
 ["mountain cableway"]={ 0x1F6A0 },
 ["mountain railway"]={ 0x1F69E },
 ["mouse"]={ 0x1F401 },
 ["mouse face"]={ 0x1F42D },
 ["mouth"]={ 0x1F444 },
 ["movie camera"]={ 0x1F3A5 },
 ["mozambique"]={ 0x1F1F2, 0x1F1FF },
 ["mrs. claus"]={ 0x1F936 },
 ["mrs. claus: dark skin tone"]={ 0x1F936, 0x1F3FF },
 ["mrs. claus: light skin tone"]={ 0x1F936, 0x1F3FB },
 ["mrs. claus: medium skin tone"]={ 0x1F936, 0x1F3FD },
 ["mrs. claus: medium-dark skin tone"]={ 0x1F936, 0x1F3FE },
 ["mrs. claus: medium-light skin tone"]={ 0x1F936, 0x1F3FC },
 ["mushroom"]={ 0x1F344 },
 ["musical keyboard"]={ 0x1F3B9 },
 ["musical note"]={ 0x1F3B5 },
 ["musical notes"]={ 0x1F3B6 },
 ["musical score"]={ 0x1F3BC },
 ["muted speaker"]={ 0x1F507 },
 ["myanmar (burma)"]={ 0x1F1F2, 0x1F1F2 },
 ["nail polish"]={ 0x1F485 },
 ["nail polish: dark skin tone"]={ 0x1F485, 0x1F3FF },
 ["nail polish: light skin tone"]={ 0x1F485, 0x1F3FB },
 ["nail polish: medium skin tone"]={ 0x1F485, 0x1F3FD },
 ["nail polish: medium-dark skin tone"]={ 0x1F485, 0x1F3FE },
 ["nail polish: medium-light skin tone"]={ 0x1F485, 0x1F3FC },
 ["name badge"]={ 0x1F4DB },
 ["namibia"]={ 0x1F1F3, 0x1F1E6 },
 ["national park"]={ 0x1F3DE },
 ["nauru"]={ 0x1F1F3, 0x1F1F7 },
 ["nauseated face"]={ 0x1F922 },
 ["necktie"]={ 0x1F454 },
 ["nepal"]={ 0x1F1F3, 0x1F1F5 },
 ["nerd face"]={ 0x1F913 },
 ["netherlands"]={ 0x1F1F3, 0x1F1F1 },
 ["neutral face"]={ 0x1F610 },
 ["new button"]={ 0x1F195 },
 ["new caledonia"]={ 0x1F1F3, 0x1F1E8 },
 ["new moon"]={ 0x1F311 },
 ["new moon face"]={ 0x1F31A },
 ["new zealand"]={ 0x1F1F3, 0x1F1FF },
 ["newspaper"]={ 0x1F4F0 },
 ["next track button"]={ 0x23ED },
 ["ng button"]={ 0x1F196 },
 ["nicaragua"]={ 0x1F1F3, 0x1F1EE },
 ["niger"]={ 0x1F1F3, 0x1F1EA },
 ["nigeria"]={ 0x1F1F3, 0x1F1EC },
 ["night with stars"]={ 0x1F303 },
 ["nine o’clock"]={ 0x1F558 },
 ["nine-thirty"]={ 0x1F564 },
 ["niue"]={ 0x1F1F3, 0x1F1FA },
 ["no bicycles"]={ 0x1F6B3 },
 ["no entry"]={ 0x26D4 },
 ["no littering"]={ 0x1F6AF },
 ["no mobile phones"]={ 0x1F4F5 },
 ["no one under eighteen"]={ 0x1F51E },
 ["no pedestrians"]={ 0x1F6B7 },
 ["no smoking"]={ 0x1F6AD },
 ["non-potable water"]={ 0x1F6B1 },
 ["norfolk island"]={ 0x1F1F3, 0x1F1EB },
 ["north korea"]={ 0x1F1F0, 0x1F1F5 },
 ["northern mariana islands"]={ 0x1F1F2, 0x1F1F5 },
 ["norway"]={ 0x1F1F3, 0x1F1F4 },
 ["nose"]={ 0x1F443 },
 ["nose: dark skin tone"]={ 0x1F443, 0x1F3FF },
 ["nose: light skin tone"]={ 0x1F443, 0x1F3FB },
 ["nose: medium skin tone"]={ 0x1F443, 0x1F3FD },
 ["nose: medium-dark skin tone"]={ 0x1F443, 0x1F3FE },
 ["nose: medium-light skin tone"]={ 0x1F443, 0x1F3FC },
 ["notebook"]={ 0x1F4D3 },
 ["notebook with decorative cover"]={ 0x1F4D4 },
 ["nut and bolt"]={ 0x1F529 },
 ["o button (blood type)"]={ 0x1F17E },
 ["octopus"]={ 0x1F419 },
 ["oden"]={ 0x1F362 },
 ["office building"]={ 0x1F3E2 },
 ["ogre"]={ 0x1F479 },
 ["oil drum"]={ 0x1F6E2 },
 ["ok button"]={ 0x1F197 },
 ["ok hand"]={ 0x1F44C },
 ["ok hand: dark skin tone"]={ 0x1F44C, 0x1F3FF },
 ["ok hand: light skin tone"]={ 0x1F44C, 0x1F3FB },
 ["ok hand: medium skin tone"]={ 0x1F44C, 0x1F3FD },
 ["ok hand: medium-dark skin tone"]={ 0x1F44C, 0x1F3FE },
 ["ok hand: medium-light skin tone"]={ 0x1F44C, 0x1F3FC },
 ["old key"]={ 0x1F5DD },
 ["old man"]={ 0x1F474 },
 ["old man: dark skin tone"]={ 0x1F474, 0x1F3FF },
 ["old man: light skin tone"]={ 0x1F474, 0x1F3FB },
 ["old man: medium skin tone"]={ 0x1F474, 0x1F3FD },
 ["old man: medium-dark skin tone"]={ 0x1F474, 0x1F3FE },
 ["old man: medium-light skin tone"]={ 0x1F474, 0x1F3FC },
 ["old woman"]={ 0x1F475 },
 ["old woman: dark skin tone"]={ 0x1F475, 0x1F3FF },
 ["old woman: light skin tone"]={ 0x1F475, 0x1F3FB },
 ["old woman: medium skin tone"]={ 0x1F475, 0x1F3FD },
 ["old woman: medium-dark skin tone"]={ 0x1F475, 0x1F3FE },
 ["old woman: medium-light skin tone"]={ 0x1F475, 0x1F3FC },
 ["older adult"]={ 0x1F9D3 },
 ["older adult: dark skin tone"]={ 0x1F9D3, 0x1F3FF },
 ["older adult: light skin tone"]={ 0x1F9D3, 0x1F3FB },
 ["older adult: medium skin tone"]={ 0x1F9D3, 0x1F3FD },
 ["older adult: medium-dark skin tone"]={ 0x1F9D3, 0x1F3FE },
 ["older adult: medium-light skin tone"]={ 0x1F9D3, 0x1F3FC },
 ["om"]={ 0x1F549 },
 ["oman"]={ 0x1F1F4, 0x1F1F2 },
 ["on! arrow"]={ 0x1F51B },
 ["oncoming automobile"]={ 0x1F698 },
 ["oncoming bus"]={ 0x1F68D },
 ["oncoming fist"]={ 0x1F44A },
 ["oncoming fist: dark skin tone"]={ 0x1F44A, 0x1F3FF },
 ["oncoming fist: light skin tone"]={ 0x1F44A, 0x1F3FB },
 ["oncoming fist: medium skin tone"]={ 0x1F44A, 0x1F3FD },
 ["oncoming fist: medium-dark skin tone"]={ 0x1F44A, 0x1F3FE },
 ["oncoming fist: medium-light skin tone"]={ 0x1F44A, 0x1F3FC },
 ["oncoming police car"]={ 0x1F694 },
 ["oncoming taxi"]={ 0x1F696 },
 ["one o’clock"]={ 0x1F550 },
 ["one-thirty"]={ 0x1F55C },
 ["open book"]={ 0x1F4D6 },
 ["open file folder"]={ 0x1F4C2 },
 ["open hands"]={ 0x1F450 },
 ["open hands: dark skin tone"]={ 0x1F450, 0x1F3FF },
 ["open hands: light skin tone"]={ 0x1F450, 0x1F3FB },
 ["open hands: medium skin tone"]={ 0x1F450, 0x1F3FD },
 ["open hands: medium-dark skin tone"]={ 0x1F450, 0x1F3FE },
 ["open hands: medium-light skin tone"]={ 0x1F450, 0x1F3FC },
 ["open mailbox with lowered flag"]={ 0x1F4ED },
 ["open mailbox with raised flag"]={ 0x1F4EC },
 ["ophiuchus"]={ 0x26CE },
 ["optical disk"]={ 0x1F4BF },
 ["orange book"]={ 0x1F4D9 },
 ["orange heart"]={ 0x1F9E1 },
 ["orthodox cross"]={ 0x2626 },
 ["outbox tray"]={ 0x1F4E4 },
 ["owl"]={ 0x1F989 },
 ["ox"]={ 0x1F402 },
 ["p button"]={ 0x1F17F },
 ["package"]={ 0x1F4E6 },
 ["page facing up"]={ 0x1F4C4 },
 ["page with curl"]={ 0x1F4C3 },
 ["pager"]={ 0x1F4DF },
 ["paintbrush"]={ 0x1F58C },
 ["pakistan"]={ 0x1F1F5, 0x1F1F0 },
 ["palau"]={ 0x1F1F5, 0x1F1FC },
 ["palestinian territories"]={ 0x1F1F5, 0x1F1F8 },
 ["palm tree"]={ 0x1F334 },
 ["palms up together"]={ 0x1F932 },
 ["palms up together: dark skin tone"]={ 0x1F932, 0x1F3FF },
 ["palms up together: light skin tone"]={ 0x1F932, 0x1F3FB },
 ["palms up together: medium skin tone"]={ 0x1F932, 0x1F3FD },
 ["palms up together: medium-dark skin tone"]={ 0x1F932, 0x1F3FE },
 ["palms up together: medium-light skin tone"]={ 0x1F932, 0x1F3FC },
 ["panama"]={ 0x1F1F5, 0x1F1E6 },
 ["pancakes"]={ 0x1F95E },
 ["panda face"]={ 0x1F43C },
 ["paperclip"]={ 0x1F4CE },
 ["papua new guinea"]={ 0x1F1F5, 0x1F1EC },
 ["paraguay"]={ 0x1F1F5, 0x1F1FE },
 ["part alternation mark"]={ 0x303D },
 ["party popper"]={ 0x1F389 },
 ["passenger ship"]={ 0x1F6F3 },
 ["passport control"]={ 0x1F6C2 },
 ["pause button"]={ 0x23F8 },
 ["paw prints"]={ 0x1F43E },
 ["peace symbol"]={ 0x262E },
 ["peach"]={ 0x1F351 },
 ["peanuts"]={ 0x1F95C },
 ["pear"]={ 0x1F350 },
 ["pen"]={ 0x1F58A },
 ["pencil"]={ 0x270F },
 ["penguin"]={ 0x1F427 },
 ["pensive face"]={ 0x1F614 },
 ["people with bunny ears partying"]={ 0x1F46F },
 ["people wrestling"]={ 0x1F93C },
 ["performing arts"]={ 0x1F3AD },
 ["persevering face"]={ 0x1F623 },
 ["person biking"]={ 0x1F6B4 },
 ["person biking: dark skin tone"]={ 0x1F6B4, 0x1F3FF },
 ["person biking: light skin tone"]={ 0x1F6B4, 0x1F3FB },
 ["person biking: medium skin tone"]={ 0x1F6B4, 0x1F3FD },
 ["person biking: medium-dark skin tone"]={ 0x1F6B4, 0x1F3FE },
 ["person biking: medium-light skin tone"]={ 0x1F6B4, 0x1F3FC },
 ["person bouncing ball"]={ 0x26F9 },
 ["person bouncing ball: dark skin tone"]={ 0x26F9, 0x1F3FF },
 ["person bouncing ball: light skin tone"]={ 0x26F9, 0x1F3FB },
 ["person bouncing ball: medium skin tone"]={ 0x26F9, 0x1F3FD },
 ["person bouncing ball: medium-dark skin tone"]={ 0x26F9, 0x1F3FE },
 ["person bouncing ball: medium-light skin tone"]={ 0x26F9, 0x1F3FC },
 ["person bowing"]={ 0x1F647 },
 ["person bowing: dark skin tone"]={ 0x1F647, 0x1F3FF },
 ["person bowing: light skin tone"]={ 0x1F647, 0x1F3FB },
 ["person bowing: medium skin tone"]={ 0x1F647, 0x1F3FD },
 ["person bowing: medium-dark skin tone"]={ 0x1F647, 0x1F3FE },
 ["person bowing: medium-light skin tone"]={ 0x1F647, 0x1F3FC },
 ["person cartwheeling"]={ 0x1F938 },
 ["person cartwheeling: dark skin tone"]={ 0x1F938, 0x1F3FF },
 ["person cartwheeling: light skin tone"]={ 0x1F938, 0x1F3FB },
 ["person cartwheeling: medium skin tone"]={ 0x1F938, 0x1F3FD },
 ["person cartwheeling: medium-dark skin tone"]={ 0x1F938, 0x1F3FE },
 ["person cartwheeling: medium-light skin tone"]={ 0x1F938, 0x1F3FC },
 ["person climbing"]={ 0x1F9D7 },
 ["person climbing: dark skin tone"]={ 0x1F9D7, 0x1F3FF },
 ["person climbing: light skin tone"]={ 0x1F9D7, 0x1F3FB },
 ["person climbing: medium skin tone"]={ 0x1F9D7, 0x1F3FD },
 ["person climbing: medium-dark skin tone"]={ 0x1F9D7, 0x1F3FE },
 ["person climbing: medium-light skin tone"]={ 0x1F9D7, 0x1F3FC },
 ["person facepalming"]={ 0x1F926 },
 ["person facepalming: dark skin tone"]={ 0x1F926, 0x1F3FF },
 ["person facepalming: light skin tone"]={ 0x1F926, 0x1F3FB },
 ["person facepalming: medium skin tone"]={ 0x1F926, 0x1F3FD },
 ["person facepalming: medium-dark skin tone"]={ 0x1F926, 0x1F3FE },
 ["person facepalming: medium-light skin tone"]={ 0x1F926, 0x1F3FC },
 ["person fencing"]={ 0x1F93A },
 ["person frowning"]={ 0x1F64D },
 ["person frowning: dark skin tone"]={ 0x1F64D, 0x1F3FF },
 ["person frowning: light skin tone"]={ 0x1F64D, 0x1F3FB },
 ["person frowning: medium skin tone"]={ 0x1F64D, 0x1F3FD },
 ["person frowning: medium-dark skin tone"]={ 0x1F64D, 0x1F3FE },
 ["person frowning: medium-light skin tone"]={ 0x1F64D, 0x1F3FC },
 ["person gesturing no"]={ 0x1F645 },
 ["person gesturing no: dark skin tone"]={ 0x1F645, 0x1F3FF },
 ["person gesturing no: light skin tone"]={ 0x1F645, 0x1F3FB },
 ["person gesturing no: medium skin tone"]={ 0x1F645, 0x1F3FD },
 ["person gesturing no: medium-dark skin tone"]={ 0x1F645, 0x1F3FE },
 ["person gesturing no: medium-light skin tone"]={ 0x1F645, 0x1F3FC },
 ["person gesturing ok"]={ 0x1F646 },
 ["person gesturing ok: dark skin tone"]={ 0x1F646, 0x1F3FF },
 ["person gesturing ok: light skin tone"]={ 0x1F646, 0x1F3FB },
 ["person gesturing ok: medium skin tone"]={ 0x1F646, 0x1F3FD },
 ["person gesturing ok: medium-dark skin tone"]={ 0x1F646, 0x1F3FE },
 ["person gesturing ok: medium-light skin tone"]={ 0x1F646, 0x1F3FC },
 ["person getting haircut"]={ 0x1F487 },
 ["person getting haircut: dark skin tone"]={ 0x1F487, 0x1F3FF },
 ["person getting haircut: light skin tone"]={ 0x1F487, 0x1F3FB },
 ["person getting haircut: medium skin tone"]={ 0x1F487, 0x1F3FD },
 ["person getting haircut: medium-dark skin tone"]={ 0x1F487, 0x1F3FE },
 ["person getting haircut: medium-light skin tone"]={ 0x1F487, 0x1F3FC },
 ["person getting massage"]={ 0x1F486 },
 ["person getting massage: dark skin tone"]={ 0x1F486, 0x1F3FF },
 ["person getting massage: light skin tone"]={ 0x1F486, 0x1F3FB },
 ["person getting massage: medium skin tone"]={ 0x1F486, 0x1F3FD },
 ["person getting massage: medium-dark skin tone"]={ 0x1F486, 0x1F3FE },
 ["person getting massage: medium-light skin tone"]={ 0x1F486, 0x1F3FC },
 ["person golfing"]={ 0x1F3CC },
 ["person golfing: dark skin tone"]={ 0x1F3CC, 0x1F3FF },
 ["person golfing: light skin tone"]={ 0x1F3CC, 0x1F3FB },
 ["person golfing: medium skin tone"]={ 0x1F3CC, 0x1F3FD },
 ["person golfing: medium-dark skin tone"]={ 0x1F3CC, 0x1F3FE },
 ["person golfing: medium-light skin tone"]={ 0x1F3CC, 0x1F3FC },
 ["person in bed"]={ 0x1F6CC },
 ["person in bed: dark skin tone"]={ 0x1F6CC, 0x1F3FF },
 ["person in bed: light skin tone"]={ 0x1F6CC, 0x1F3FB },
 ["person in bed: medium skin tone"]={ 0x1F6CC, 0x1F3FD },
 ["person in bed: medium-dark skin tone"]={ 0x1F6CC, 0x1F3FE },
 ["person in bed: medium-light skin tone"]={ 0x1F6CC, 0x1F3FC },
 ["person in lotus position"]={ 0x1F9D8 },
 ["person in lotus position: dark skin tone"]={ 0x1F9D8, 0x1F3FF },
 ["person in lotus position: light skin tone"]={ 0x1F9D8, 0x1F3FB },
 ["person in lotus position: medium skin tone"]={ 0x1F9D8, 0x1F3FD },
 ["person in lotus position: medium-dark skin tone"]={ 0x1F9D8, 0x1F3FE },
 ["person in lotus position: medium-light skin tone"]={ 0x1F9D8, 0x1F3FC },
 ["person in steamy room"]={ 0x1F9D6 },
 ["person in steamy room: dark skin tone"]={ 0x1F9D6, 0x1F3FF },
 ["person in steamy room: light skin tone"]={ 0x1F9D6, 0x1F3FB },
 ["person in steamy room: medium skin tone"]={ 0x1F9D6, 0x1F3FD },
 ["person in steamy room: medium-dark skin tone"]={ 0x1F9D6, 0x1F3FE },
 ["person in steamy room: medium-light skin tone"]={ 0x1F9D6, 0x1F3FC },
 ["person juggling"]={ 0x1F939 },
 ["person juggling: dark skin tone"]={ 0x1F939, 0x1F3FF },
 ["person juggling: light skin tone"]={ 0x1F939, 0x1F3FB },
 ["person juggling: medium skin tone"]={ 0x1F939, 0x1F3FD },
 ["person juggling: medium-dark skin tone"]={ 0x1F939, 0x1F3FE },
 ["person juggling: medium-light skin tone"]={ 0x1F939, 0x1F3FC },
 ["person lifting weights"]={ 0x1F3CB },
 ["person lifting weights: dark skin tone"]={ 0x1F3CB, 0x1F3FF },
 ["person lifting weights: light skin tone"]={ 0x1F3CB, 0x1F3FB },
 ["person lifting weights: medium skin tone"]={ 0x1F3CB, 0x1F3FD },
 ["person lifting weights: medium-dark skin tone"]={ 0x1F3CB, 0x1F3FE },
 ["person lifting weights: medium-light skin tone"]={ 0x1F3CB, 0x1F3FC },
 ["person mountain biking"]={ 0x1F6B5 },
 ["person mountain biking: dark skin tone"]={ 0x1F6B5, 0x1F3FF },
 ["person mountain biking: light skin tone"]={ 0x1F6B5, 0x1F3FB },
 ["person mountain biking: medium skin tone"]={ 0x1F6B5, 0x1F3FD },
 ["person mountain biking: medium-dark skin tone"]={ 0x1F6B5, 0x1F3FE },
 ["person mountain biking: medium-light skin tone"]={ 0x1F6B5, 0x1F3FC },
 ["person playing handball"]={ 0x1F93E },
 ["person playing handball: dark skin tone"]={ 0x1F93E, 0x1F3FF },
 ["person playing handball: light skin tone"]={ 0x1F93E, 0x1F3FB },
 ["person playing handball: medium skin tone"]={ 0x1F93E, 0x1F3FD },
 ["person playing handball: medium-dark skin tone"]={ 0x1F93E, 0x1F3FE },
 ["person playing handball: medium-light skin tone"]={ 0x1F93E, 0x1F3FC },
 ["person playing water polo"]={ 0x1F93D },
 ["person playing water polo: dark skin tone"]={ 0x1F93D, 0x1F3FF },
 ["person playing water polo: light skin tone"]={ 0x1F93D, 0x1F3FB },
 ["person playing water polo: medium skin tone"]={ 0x1F93D, 0x1F3FD },
 ["person playing water polo: medium-dark skin tone"]={ 0x1F93D, 0x1F3FE },
 ["person playing water polo: medium-light skin tone"]={ 0x1F93D, 0x1F3FC },
 ["person pouting"]={ 0x1F64E },
 ["person pouting: dark skin tone"]={ 0x1F64E, 0x1F3FF },
 ["person pouting: light skin tone"]={ 0x1F64E, 0x1F3FB },
 ["person pouting: medium skin tone"]={ 0x1F64E, 0x1F3FD },
 ["person pouting: medium-dark skin tone"]={ 0x1F64E, 0x1F3FE },
 ["person pouting: medium-light skin tone"]={ 0x1F64E, 0x1F3FC },
 ["person raising hand"]={ 0x1F64B },
 ["person raising hand: dark skin tone"]={ 0x1F64B, 0x1F3FF },
 ["person raising hand: light skin tone"]={ 0x1F64B, 0x1F3FB },
 ["person raising hand: medium skin tone"]={ 0x1F64B, 0x1F3FD },
 ["person raising hand: medium-dark skin tone"]={ 0x1F64B, 0x1F3FE },
 ["person raising hand: medium-light skin tone"]={ 0x1F64B, 0x1F3FC },
 ["person rowing boat"]={ 0x1F6A3 },
 ["person rowing boat: dark skin tone"]={ 0x1F6A3, 0x1F3FF },
 ["person rowing boat: light skin tone"]={ 0x1F6A3, 0x1F3FB },
 ["person rowing boat: medium skin tone"]={ 0x1F6A3, 0x1F3FD },
 ["person rowing boat: medium-dark skin tone"]={ 0x1F6A3, 0x1F3FE },
 ["person rowing boat: medium-light skin tone"]={ 0x1F6A3, 0x1F3FC },
 ["person running"]={ 0x1F3C3 },
 ["person running: dark skin tone"]={ 0x1F3C3, 0x1F3FF },
 ["person running: light skin tone"]={ 0x1F3C3, 0x1F3FB },
 ["person running: medium skin tone"]={ 0x1F3C3, 0x1F3FD },
 ["person running: medium-dark skin tone"]={ 0x1F3C3, 0x1F3FE },
 ["person running: medium-light skin tone"]={ 0x1F3C3, 0x1F3FC },
 ["person shrugging"]={ 0x1F937 },
 ["person shrugging: dark skin tone"]={ 0x1F937, 0x1F3FF },
 ["person shrugging: light skin tone"]={ 0x1F937, 0x1F3FB },
 ["person shrugging: medium skin tone"]={ 0x1F937, 0x1F3FD },
 ["person shrugging: medium-dark skin tone"]={ 0x1F937, 0x1F3FE },
 ["person shrugging: medium-light skin tone"]={ 0x1F937, 0x1F3FC },
 ["person surfing"]={ 0x1F3C4 },
 ["person surfing: dark skin tone"]={ 0x1F3C4, 0x1F3FF },
 ["person surfing: light skin tone"]={ 0x1F3C4, 0x1F3FB },
 ["person surfing: medium skin tone"]={ 0x1F3C4, 0x1F3FD },
 ["person surfing: medium-dark skin tone"]={ 0x1F3C4, 0x1F3FE },
 ["person surfing: medium-light skin tone"]={ 0x1F3C4, 0x1F3FC },
 ["person swimming"]={ 0x1F3CA },
 ["person swimming: dark skin tone"]={ 0x1F3CA, 0x1F3FF },
 ["person swimming: light skin tone"]={ 0x1F3CA, 0x1F3FB },
 ["person swimming: medium skin tone"]={ 0x1F3CA, 0x1F3FD },
 ["person swimming: medium-dark skin tone"]={ 0x1F3CA, 0x1F3FE },
 ["person swimming: medium-light skin tone"]={ 0x1F3CA, 0x1F3FC },
 ["person taking bath"]={ 0x1F6C0 },
 ["person taking bath: dark skin tone"]={ 0x1F6C0, 0x1F3FF },
 ["person taking bath: light skin tone"]={ 0x1F6C0, 0x1F3FB },
 ["person taking bath: medium skin tone"]={ 0x1F6C0, 0x1F3FD },
 ["person taking bath: medium-dark skin tone"]={ 0x1F6C0, 0x1F3FE },
 ["person taking bath: medium-light skin tone"]={ 0x1F6C0, 0x1F3FC },
 ["person tipping hand"]={ 0x1F481 },
 ["person tipping hand: dark skin tone"]={ 0x1F481, 0x1F3FF },
 ["person tipping hand: light skin tone"]={ 0x1F481, 0x1F3FB },
 ["person tipping hand: medium skin tone"]={ 0x1F481, 0x1F3FD },
 ["person tipping hand: medium-dark skin tone"]={ 0x1F481, 0x1F3FE },
 ["person tipping hand: medium-light skin tone"]={ 0x1F481, 0x1F3FC },
 ["person walking"]={ 0x1F6B6 },
 ["person walking: dark skin tone"]={ 0x1F6B6, 0x1F3FF },
 ["person walking: light skin tone"]={ 0x1F6B6, 0x1F3FB },
 ["person walking: medium skin tone"]={ 0x1F6B6, 0x1F3FD },
 ["person walking: medium-dark skin tone"]={ 0x1F6B6, 0x1F3FE },
 ["person walking: medium-light skin tone"]={ 0x1F6B6, 0x1F3FC },
 ["person wearing turban"]={ 0x1F473 },
 ["person wearing turban: dark skin tone"]={ 0x1F473, 0x1F3FF },
 ["person wearing turban: light skin tone"]={ 0x1F473, 0x1F3FB },
 ["person wearing turban: medium skin tone"]={ 0x1F473, 0x1F3FD },
 ["person wearing turban: medium-dark skin tone"]={ 0x1F473, 0x1F3FE },
 ["person wearing turban: medium-light skin tone"]={ 0x1F473, 0x1F3FC },
 ["peru"]={ 0x1F1F5, 0x1F1EA },
 ["philippines"]={ 0x1F1F5, 0x1F1ED },
 ["pick"]={ 0x26CF },
 ["pie"]={ 0x1F967 },
 ["pig"]={ 0x1F416 },
 ["pig face"]={ 0x1F437 },
 ["pig nose"]={ 0x1F43D },
 ["pile of poo"]={ 0x1F4A9 },
 ["pill"]={ 0x1F48A },
 ["pine decoration"]={ 0x1F38D },
 ["pineapple"]={ 0x1F34D },
 ["ping pong"]={ 0x1F3D3 },
 ["pisces"]={ 0x2653 },
 ["pistol"]={ 0x1F52B },
 ["pitcairn islands"]={ 0x1F1F5, 0x1F1F3 },
 ["pizza"]={ 0x1F355 },
 ["place of worship"]={ 0x1F6D0 },
 ["play button"]={ 0x25B6 },
 ["play or pause button"]={ 0x23EF },
 ["poland"]={ 0x1F1F5, 0x1F1F1 },
 ["police car"]={ 0x1F693 },
 ["police car light"]={ 0x1F6A8 },
 ["police officer"]={ 0x1F46E },
 ["police officer: dark skin tone"]={ 0x1F46E, 0x1F3FF },
 ["police officer: light skin tone"]={ 0x1F46E, 0x1F3FB },
 ["police officer: medium skin tone"]={ 0x1F46E, 0x1F3FD },
 ["police officer: medium-dark skin tone"]={ 0x1F46E, 0x1F3FE },
 ["police officer: medium-light skin tone"]={ 0x1F46E, 0x1F3FC },
 ["poodle"]={ 0x1F429 },
 ["pool 8 ball"]={ 0x1F3B1 },
 ["popcorn"]={ 0x1F37F },
 ["portugal"]={ 0x1F1F5, 0x1F1F9 },
 ["post office"]={ 0x1F3E4 },
 ["postal horn"]={ 0x1F4EF },
 ["postbox"]={ 0x1F4EE },
 ["pot of food"]={ 0x1F372 },
 ["potable water"]={ 0x1F6B0 },
 ["potato"]={ 0x1F954 },
 ["poultry leg"]={ 0x1F357 },
 ["pound banknote"]={ 0x1F4B7 },
 ["pouting cat face"]={ 0x1F63E },
 ["pouting face"]={ 0x1F621 },
 ["prayer beads"]={ 0x1F4FF },
 ["pregnant woman"]={ 0x1F930 },
 ["pregnant woman: dark skin tone"]={ 0x1F930, 0x1F3FF },
 ["pregnant woman: light skin tone"]={ 0x1F930, 0x1F3FB },
 ["pregnant woman: medium skin tone"]={ 0x1F930, 0x1F3FD },
 ["pregnant woman: medium-dark skin tone"]={ 0x1F930, 0x1F3FE },
 ["pregnant woman: medium-light skin tone"]={ 0x1F930, 0x1F3FC },
 ["pretzel"]={ 0x1F968 },
 ["prince"]={ 0x1F934 },
 ["prince: dark skin tone"]={ 0x1F934, 0x1F3FF },
 ["prince: light skin tone"]={ 0x1F934, 0x1F3FB },
 ["prince: medium skin tone"]={ 0x1F934, 0x1F3FD },
 ["prince: medium-dark skin tone"]={ 0x1F934, 0x1F3FE },
 ["prince: medium-light skin tone"]={ 0x1F934, 0x1F3FC },
 ["princess"]={ 0x1F478 },
 ["princess: dark skin tone"]={ 0x1F478, 0x1F3FF },
 ["princess: light skin tone"]={ 0x1F478, 0x1F3FB },
 ["princess: medium skin tone"]={ 0x1F478, 0x1F3FD },
 ["princess: medium-dark skin tone"]={ 0x1F478, 0x1F3FE },
 ["princess: medium-light skin tone"]={ 0x1F478, 0x1F3FC },
 ["printer"]={ 0x1F5A8 },
 ["prohibited"]={ 0x1F6AB },
 ["puerto rico"]={ 0x1F1F5, 0x1F1F7 },
 ["purple heart"]={ 0x1F49C },
 ["purse"]={ 0x1F45B },
 ["pushpin"]={ 0x1F4CC },
 ["qatar"]={ 0x1F1F6, 0x1F1E6 },
 ["question mark"]={ 0x2753 },
 ["rabbit"]={ 0x1F407 },
 ["rabbit face"]={ 0x1F430 },
 ["racing car"]={ 0x1F3CE },
 ["radio"]={ 0x1F4FB },
 ["radio button"]={ 0x1F518 },
 ["radioactive"]={ 0x2622 },
 ["railway car"]={ 0x1F683 },
 ["railway track"]={ 0x1F6E4 },
 ["rainbow"]={ 0x1F308 },
 ["rainbow flag"]={ 0x1F3F3, 0x200D, 0x1F308 },
 ["raised back of hand"]={ 0x1F91A },
 ["raised back of hand: dark skin tone"]={ 0x1F91A, 0x1F3FF },
 ["raised back of hand: light skin tone"]={ 0x1F91A, 0x1F3FB },
 ["raised back of hand: medium skin tone"]={ 0x1F91A, 0x1F3FD },
 ["raised back of hand: medium-dark skin tone"]={ 0x1F91A, 0x1F3FE },
 ["raised back of hand: medium-light skin tone"]={ 0x1F91A, 0x1F3FC },
 ["raised fist"]={ 0x270A },
 ["raised fist: dark skin tone"]={ 0x270A, 0x1F3FF },
 ["raised fist: light skin tone"]={ 0x270A, 0x1F3FB },
 ["raised fist: medium skin tone"]={ 0x270A, 0x1F3FD },
 ["raised fist: medium-dark skin tone"]={ 0x270A, 0x1F3FE },
 ["raised fist: medium-light skin tone"]={ 0x270A, 0x1F3FC },
 ["raised hand"]={ 0x270B },
 ["raised hand with fingers splayed"]={ 0x1F590 },
 ["raised hand with fingers splayed: dark skin tone"]={ 0x1F590, 0x1F3FF },
 ["raised hand with fingers splayed: light skin tone"]={ 0x1F590, 0x1F3FB },
 ["raised hand with fingers splayed: medium skin tone"]={ 0x1F590, 0x1F3FD },
 ["raised hand with fingers splayed: medium-dark skin tone"]={ 0x1F590, 0x1F3FE },
 ["raised hand with fingers splayed: medium-light skin tone"]={ 0x1F590, 0x1F3FC },
 ["raised hand: dark skin tone"]={ 0x270B, 0x1F3FF },
 ["raised hand: light skin tone"]={ 0x270B, 0x1F3FB },
 ["raised hand: medium skin tone"]={ 0x270B, 0x1F3FD },
 ["raised hand: medium-dark skin tone"]={ 0x270B, 0x1F3FE },
 ["raised hand: medium-light skin tone"]={ 0x270B, 0x1F3FC },
 ["raising hands"]={ 0x1F64C },
 ["raising hands: dark skin tone"]={ 0x1F64C, 0x1F3FF },
 ["raising hands: light skin tone"]={ 0x1F64C, 0x1F3FB },
 ["raising hands: medium skin tone"]={ 0x1F64C, 0x1F3FD },
 ["raising hands: medium-dark skin tone"]={ 0x1F64C, 0x1F3FE },
 ["raising hands: medium-light skin tone"]={ 0x1F64C, 0x1F3FC },
 ["ram"]={ 0x1F40F },
 ["rat"]={ 0x1F400 },
 ["record button"]={ 0x23FA },
 ["recycling symbol"]={ 0x267B },
 ["red apple"]={ 0x1F34E },
 ["red circle"]={ 0x1F534 },
 ["red heart"]={ 0x2764 },
 ["red paper lantern"]={ 0x1F3EE },
 ["red triangle pointed down"]={ 0x1F53B },
 ["red triangle pointed up"]={ 0x1F53A },
 ["registered"]={ 0xAE },
 ["relieved face"]={ 0x1F60C },
 ["reminder ribbon"]={ 0x1F397 },
 ["repeat button"]={ 0x1F501 },
 ["repeat single button"]={ 0x1F502 },
 ["rescue worker’s helmet"]={ 0x26D1 },
 ["restroom"]={ 0x1F6BB },
 ["reverse button"]={ 0x25C0 },
 ["revolving hearts"]={ 0x1F49E },
 ["rhinoceros"]={ 0x1F98F },
 ["ribbon"]={ 0x1F380 },
 ["rice ball"]={ 0x1F359 },
 ["rice cracker"]={ 0x1F358 },
 ["right anger bubble"]={ 0x1F5EF },
 ["right arrow"]={ 0x27A1 },
 ["right arrow curving down"]={ 0x2935 },
 ["right arrow curving left"]={ 0x21A9 },
 ["right arrow curving up"]={ 0x2934 },
 ["right-facing fist"]={ 0x1F91C },
 ["right-facing fist: dark skin tone"]={ 0x1F91C, 0x1F3FF },
 ["right-facing fist: light skin tone"]={ 0x1F91C, 0x1F3FB },
 ["right-facing fist: medium skin tone"]={ 0x1F91C, 0x1F3FD },
 ["right-facing fist: medium-dark skin tone"]={ 0x1F91C, 0x1F3FE },
 ["right-facing fist: medium-light skin tone"]={ 0x1F91C, 0x1F3FC },
 ["right-pointing magnifying glass"]={ 0x1F50E },
 ["ring"]={ 0x1F48D },
 ["roasted sweet potato"]={ 0x1F360 },
 ["robot face"]={ 0x1F916 },
 ["rocket"]={ 0x1F680 },
 ["rolled-up newspaper"]={ 0x1F5DE },
 ["roller coaster"]={ 0x1F3A2 },
 ["rolling on the floor laughing"]={ 0x1F923 },
 ["romania"]={ 0x1F1F7, 0x1F1F4 },
 ["rooster"]={ 0x1F413 },
 ["rose"]={ 0x1F339 },
 ["rosette"]={ 0x1F3F5 },
 ["round pushpin"]={ 0x1F4CD },
 ["rugby football"]={ 0x1F3C9 },
 ["running shirt"]={ 0x1F3BD },
 ["running shoe"]={ 0x1F45F },
 ["russia"]={ 0x1F1F7, 0x1F1FA },
 ["rwanda"]={ 0x1F1F7, 0x1F1FC },
 ["réunion"]={ 0x1F1F7, 0x1F1EA },
 ["sagittarius"]={ 0x2650 },
 ["sailboat"]={ 0x26F5 },
 ["sake"]={ 0x1F376 },
 ["samoa"]={ 0x1F1FC, 0x1F1F8 },
 ["san marino"]={ 0x1F1F8, 0x1F1F2 },
 ["sandwich"]={ 0x1F96A },
 ["santa claus"]={ 0x1F385 },
 ["santa claus: dark skin tone"]={ 0x1F385, 0x1F3FF },
 ["santa claus: light skin tone"]={ 0x1F385, 0x1F3FB },
 ["santa claus: medium skin tone"]={ 0x1F385, 0x1F3FD },
 ["santa claus: medium-dark skin tone"]={ 0x1F385, 0x1F3FE },
 ["santa claus: medium-light skin tone"]={ 0x1F385, 0x1F3FC },
 ["satellite"]={ 0x1F6F0 },
 ["satellite antenna"]={ 0x1F4E1 },
 ["saudi arabia"]={ 0x1F1F8, 0x1F1E6 },
 ["sauropod"]={ 0x1F995 },
 ["saxophone"]={ 0x1F3B7 },
 ["scarf"]={ 0x1F9E3 },
 ["school"]={ 0x1F3EB },
 ["school backpack"]={ 0x1F392 },
 ["scissors"]={ 0x2702 },
 ["scorpion"]={ 0x1F982 },
 ["scorpius"]={ 0x264F },
 ["scotland"]={ 0x1F3F4, 0xE0067, 0xE0062, 0xE0073, 0xE0063, 0xE0074, 0xE007F },
 ["scroll"]={ 0x1F4DC },
 ["seat"]={ 0x1F4BA },
 ["see-no-evil monkey"]={ 0x1F648 },
 ["seedling"]={ 0x1F331 },
 ["selfie"]={ 0x1F933 },
 ["selfie: dark skin tone"]={ 0x1F933, 0x1F3FF },
 ["selfie: light skin tone"]={ 0x1F933, 0x1F3FB },
 ["selfie: medium skin tone"]={ 0x1F933, 0x1F3FD },
 ["selfie: medium-dark skin tone"]={ 0x1F933, 0x1F3FE },
 ["selfie: medium-light skin tone"]={ 0x1F933, 0x1F3FC },
 ["senegal"]={ 0x1F1F8, 0x1F1F3 },
 ["serbia"]={ 0x1F1F7, 0x1F1F8 },
 ["seven o’clock"]={ 0x1F556 },
 ["seven-thirty"]={ 0x1F562 },
 ["seychelles"]={ 0x1F1F8, 0x1F1E8 },
 ["shallow pan of food"]={ 0x1F958 },
 ["shamrock"]={ 0x2618 },
 ["shark"]={ 0x1F988 },
 ["shaved ice"]={ 0x1F367 },
 ["sheaf of rice"]={ 0x1F33E },
 ["shield"]={ 0x1F6E1 },
 ["shinto shrine"]={ 0x26E9 },
 ["ship"]={ 0x1F6A2 },
 ["shooting star"]={ 0x1F320 },
 ["shopping bags"]={ 0x1F6CD },
 ["shopping cart"]={ 0x1F6D2 },
 ["shortcake"]={ 0x1F370 },
 ["shower"]={ 0x1F6BF },
 ["shrimp"]={ 0x1F990 },
 ["shuffle tracks button"]={ 0x1F500 },
 ["shushing face"]={ 0x1F92B },
 ["sierra leone"]={ 0x1F1F8, 0x1F1F1 },
 ["sign of the horns"]={ 0x1F918 },
 ["sign of the horns: dark skin tone"]={ 0x1F918, 0x1F3FF },
 ["sign of the horns: light skin tone"]={ 0x1F918, 0x1F3FB },
 ["sign of the horns: medium skin tone"]={ 0x1F918, 0x1F3FD },
 ["sign of the horns: medium-dark skin tone"]={ 0x1F918, 0x1F3FE },
 ["sign of the horns: medium-light skin tone"]={ 0x1F918, 0x1F3FC },
 ["singapore"]={ 0x1F1F8, 0x1F1EC },
 ["sint maarten"]={ 0x1F1F8, 0x1F1FD },
 ["six o’clock"]={ 0x1F555 },
 ["six-thirty"]={ 0x1F561 },
 ["skier"]={ 0x26F7 },
 ["skis"]={ 0x1F3BF },
 ["skull"]={ 0x1F480 },
 ["skull and crossbones"]={ 0x2620 },
 ["sled"]={ 0x1F6F7 },
 ["sleeping face"]={ 0x1F634 },
 ["sleepy face"]={ 0x1F62A },
 ["slightly frowning face"]={ 0x1F641 },
 ["slightly smiling face"]={ 0x1F642 },
 ["slot machine"]={ 0x1F3B0 },
 ["slovakia"]={ 0x1F1F8, 0x1F1F0 },
 ["slovenia"]={ 0x1F1F8, 0x1F1EE },
 ["small airplane"]={ 0x1F6E9 },
 ["small blue diamond"]={ 0x1F539 },
 ["small orange diamond"]={ 0x1F538 },
 ["smiling cat face with heart-eyes"]={ 0x1F63B },
 ["smiling cat face with open mouth"]={ 0x1F63A },
 ["smiling face"]={ 0x263A },
 ["smiling face with halo"]={ 0x1F607 },
 ["smiling face with heart-eyes"]={ 0x1F60D },
 ["smiling face with horns"]={ 0x1F608 },
 ["smiling face with open mouth"]={ 0x1F603 },
 ["smiling face with open mouth & closed eyes"]={ 0x1F606 },
 ["smiling face with open mouth & cold sweat"]={ 0x1F605 },
 ["smiling face with open mouth & smiling eyes"]={ 0x1F604 },
 ["smiling face with smiling eyes"]={ 0x1F60A },
 ["smiling face with sunglasses"]={ 0x1F60E },
 ["smirking face"]={ 0x1F60F },
 ["snail"]={ 0x1F40C },
 ["snake"]={ 0x1F40D },
 ["sneezing face"]={ 0x1F927 },
 ["snow-capped mountain"]={ 0x1F3D4 },
 ["snowboarder"]={ 0x1F3C2 },
 ["snowboarder: dark skin tone"]={ 0x1F3C2, 0x1F3FF },
 ["snowboarder: light skin tone"]={ 0x1F3C2, 0x1F3FB },
 ["snowboarder: medium skin tone"]={ 0x1F3C2, 0x1F3FD },
 ["snowboarder: medium-dark skin tone"]={ 0x1F3C2, 0x1F3FE },
 ["snowboarder: medium-light skin tone"]={ 0x1F3C2, 0x1F3FC },
 ["snowflake"]={ 0x2744 },
 ["snowman"]={ 0x2603 },
 ["snowman without snow"]={ 0x26C4 },
 ["soccer ball"]={ 0x26BD },
 ["socks"]={ 0x1F9E6 },
 ["soft ice cream"]={ 0x1F366 },
 ["solomon islands"]={ 0x1F1F8, 0x1F1E7 },
 ["somalia"]={ 0x1F1F8, 0x1F1F4 },
 ["soon arrow"]={ 0x1F51C },
 ["sos button"]={ 0x1F198 },
 ["south africa"]={ 0x1F1FF, 0x1F1E6 },
 ["south georgia & south sandwich islands"]={ 0x1F1EC, 0x1F1F8 },
 ["south korea"]={ 0x1F1F0, 0x1F1F7 },
 ["south sudan"]={ 0x1F1F8, 0x1F1F8 },
 ["spade suit"]={ 0x2660 },
 ["spaghetti"]={ 0x1F35D },
 ["spain"]={ 0x1F1EA, 0x1F1F8 },
 ["sparkle"]={ 0x2747 },
 ["sparkler"]={ 0x1F387 },
 ["sparkles"]={ 0x2728 },
 ["sparkling heart"]={ 0x1F496 },
 ["speak-no-evil monkey"]={ 0x1F64A },
 ["speaker high volume"]={ 0x1F50A },
 ["speaker low volume"]={ 0x1F508 },
 ["speaker medium volume"]={ 0x1F509 },
 ["speaking head"]={ 0x1F5E3 },
 ["speech balloon"]={ 0x1F4AC },
 ["speedboat"]={ 0x1F6A4 },
 ["spider"]={ 0x1F577 },
 ["spider web"]={ 0x1F578 },
 ["spiral calendar"]={ 0x1F5D3 },
 ["spiral notepad"]={ 0x1F5D2 },
 ["spiral shell"]={ 0x1F41A },
 ["spoon"]={ 0x1F944 },
 ["sport utility vehicle"]={ 0x1F699 },
 ["sports medal"]={ 0x1F3C5 },
 ["spouting whale"]={ 0x1F433 },
 ["squid"]={ 0x1F991 },
 ["sri lanka"]={ 0x1F1F1, 0x1F1F0 },
 ["st. barthélemy"]={ 0x1F1E7, 0x1F1F1 },
 ["st. helena"]={ 0x1F1F8, 0x1F1ED },
 ["st. kitts & nevis"]={ 0x1F1F0, 0x1F1F3 },
 ["st. lucia"]={ 0x1F1F1, 0x1F1E8 },
 ["st. martin"]={ 0x1F1F2, 0x1F1EB },
 ["st. pierre & miquelon"]={ 0x1F1F5, 0x1F1F2 },
 ["st. vincent & grenadines"]={ 0x1F1FB, 0x1F1E8 },
 ["stadium"]={ 0x1F3DF },
 ["star and crescent"]={ 0x262A },
 ["star of david"]={ 0x2721 },
 ["star-struck"]={ 0x1F929 },
 ["station"]={ 0x1F689 },
 ["statue of liberty"]={ 0x1F5FD },
 ["steaming bowl"]={ 0x1F35C },
 ["stop button"]={ 0x23F9 },
 ["stop sign"]={ 0x1F6D1 },
 ["stopwatch"]={ 0x23F1 },
 ["straight ruler"]={ 0x1F4CF },
 ["strawberry"]={ 0x1F353 },
 ["studio microphone"]={ 0x1F399 },
 ["stuffed flatbread"]={ 0x1F959 },
 ["sudan"]={ 0x1F1F8, 0x1F1E9 },
 ["sun"]={ 0x2600 },
 ["sun behind cloud"]={ 0x26C5 },
 ["sun behind large cloud"]={ 0x1F325 },
 ["sun behind rain cloud"]={ 0x1F326 },
 ["sun behind small cloud"]={ 0x1F324 },
 ["sun with face"]={ 0x1F31E },
 ["sunflower"]={ 0x1F33B },
 ["sunglasses"]={ 0x1F576 },
 ["sunrise"]={ 0x1F305 },
 ["sunrise over mountains"]={ 0x1F304 },
 ["sunset"]={ 0x1F307 },
 ["suriname"]={ 0x1F1F8, 0x1F1F7 },
 ["sushi"]={ 0x1F363 },
 ["suspension railway"]={ 0x1F69F },
 ["svalbard & jan mayen"]={ 0x1F1F8, 0x1F1EF },
 ["swaziland"]={ 0x1F1F8, 0x1F1FF },
 ["sweat droplets"]={ 0x1F4A6 },
 ["sweden"]={ 0x1F1F8, 0x1F1EA },
 ["switzerland"]={ 0x1F1E8, 0x1F1ED },
 ["synagogue"]={ 0x1F54D },
 ["syria"]={ 0x1F1F8, 0x1F1FE },
 ["syringe"]={ 0x1F489 },
 ["são tomé & príncipe"]={ 0x1F1F8, 0x1F1F9 },
 ["t-rex"]={ 0x1F996 },
 ["t-shirt"]={ 0x1F455 },
 ["taco"]={ 0x1F32E },
 ["taiwan"]={ 0x1F1F9, 0x1F1FC },
 ["tajikistan"]={ 0x1F1F9, 0x1F1EF },
 ["takeout box"]={ 0x1F961 },
 ["tanabata tree"]={ 0x1F38B },
 ["tangerine"]={ 0x1F34A },
 ["tanzania"]={ 0x1F1F9, 0x1F1FF },
 ["taurus"]={ 0x2649 },
 ["taxi"]={ 0x1F695 },
 ["teacup without handle"]={ 0x1F375 },
 ["tear-off calendar"]={ 0x1F4C6 },
 ["telephone"]={ 0x260E },
 ["telephone receiver"]={ 0x1F4DE },
 ["telescope"]={ 0x1F52D },
 ["television"]={ 0x1F4FA },
 ["ten o’clock"]={ 0x1F559 },
 ["ten-thirty"]={ 0x1F565 },
 ["tennis"]={ 0x1F3BE },
 ["tent"]={ 0x26FA },
 ["thailand"]={ 0x1F1F9, 0x1F1ED },
 ["thermometer"]={ 0x1F321 },
 ["thinking face"]={ 0x1F914 },
 ["thought balloon"]={ 0x1F4AD },
 ["three o’clock"]={ 0x1F552 },
 ["three-thirty"]={ 0x1F55E },
 ["thumbs down"]={ 0x1F44E },
 ["thumbs down: dark skin tone"]={ 0x1F44E, 0x1F3FF },
 ["thumbs down: light skin tone"]={ 0x1F44E, 0x1F3FB },
 ["thumbs down: medium skin tone"]={ 0x1F44E, 0x1F3FD },
 ["thumbs down: medium-dark skin tone"]={ 0x1F44E, 0x1F3FE },
 ["thumbs down: medium-light skin tone"]={ 0x1F44E, 0x1F3FC },
 ["thumbs up"]={ 0x1F44D },
 ["thumbs up: dark skin tone"]={ 0x1F44D, 0x1F3FF },
 ["thumbs up: light skin tone"]={ 0x1F44D, 0x1F3FB },
 ["thumbs up: medium skin tone"]={ 0x1F44D, 0x1F3FD },
 ["thumbs up: medium-dark skin tone"]={ 0x1F44D, 0x1F3FE },
 ["thumbs up: medium-light skin tone"]={ 0x1F44D, 0x1F3FC },
 ["ticket"]={ 0x1F3AB },
 ["tiger"]={ 0x1F405 },
 ["tiger face"]={ 0x1F42F },
 ["timer clock"]={ 0x23F2 },
 ["timor-leste"]={ 0x1F1F9, 0x1F1F1 },
 ["tired face"]={ 0x1F62B },
 ["togo"]={ 0x1F1F9, 0x1F1EC },
 ["toilet"]={ 0x1F6BD },
 ["tokelau"]={ 0x1F1F9, 0x1F1F0 },
 ["tokyo tower"]={ 0x1F5FC },
 ["tomato"]={ 0x1F345 },
 ["tonga"]={ 0x1F1F9, 0x1F1F4 },
 ["tongue"]={ 0x1F445 },
 ["top arrow"]={ 0x1F51D },
 ["top hat"]={ 0x1F3A9 },
 ["tornado"]={ 0x1F32A },
 ["trackball"]={ 0x1F5B2 },
 ["tractor"]={ 0x1F69C },
 ["trade mark"]={ 0x2122 },
 ["train"]={ 0x1F686 },
 ["tram"]={ 0x1F68A },
 ["tram car"]={ 0x1F68B },
 ["triangular flag"]={ 0x1F6A9 },
 ["triangular ruler"]={ 0x1F4D0 },
 ["trident emblem"]={ 0x1F531 },
 ["trinidad & tobago"]={ 0x1F1F9, 0x1F1F9 },
 ["tristan da cunha"]={ 0x1F1F9, 0x1F1E6 },
 ["trolleybus"]={ 0x1F68E },
 ["trophy"]={ 0x1F3C6 },
 ["tropical drink"]={ 0x1F379 },
 ["tropical fish"]={ 0x1F420 },
 ["trumpet"]={ 0x1F3BA },
 ["tulip"]={ 0x1F337 },
 ["tumbler glass"]={ 0x1F943 },
 ["tunisia"]={ 0x1F1F9, 0x1F1F3 },
 ["turkey"]={ 0x1F1F9, 0x1F1F7 },
 ["turkmenistan"]={ 0x1F1F9, 0x1F1F2 },
 ["turks & caicos islands"]={ 0x1F1F9, 0x1F1E8 },
 ["turtle"]={ 0x1F422 },
 ["tuvalu"]={ 0x1F1F9, 0x1F1FB },
 ["twelve o’clock"]={ 0x1F55B },
 ["twelve-thirty"]={ 0x1F567 },
 ["two hearts"]={ 0x1F495 },
 ["two men holding hands"]={ 0x1F46C },
 ["two o’clock"]={ 0x1F551 },
 ["two women holding hands"]={ 0x1F46D },
 ["two-hump camel"]={ 0x1F42B },
 ["two-thirty"]={ 0x1F55D },
 ["u.s. outlying islands"]={ 0x1F1FA, 0x1F1F2 },
 ["u.s. virgin islands"]={ 0x1F1FB, 0x1F1EE },
 ["uganda"]={ 0x1F1FA, 0x1F1EC },
 ["ukraine"]={ 0x1F1FA, 0x1F1E6 },
 ["umbrella"]={ 0x2602 },
 ["umbrella on ground"]={ 0x26F1 },
 ["umbrella with rain drops"]={ 0x2614 },
 ["unamused face"]={ 0x1F612 },
 ["unicorn face"]={ 0x1F984 },
 ["united arab emirates"]={ 0x1F1E6, 0x1F1EA },
 ["united kingdom"]={ 0x1F1EC, 0x1F1E7 },
 ["united nations"]={ 0x1F1FA, 0x1F1F3 },
 ["united states"]={ 0x1F1FA, 0x1F1F8 },
 ["unlocked"]={ 0x1F513 },
 ["up arrow"]={ 0x2B06 },
 ["up button"]={ 0x1F53C },
 ["up! button"]={ 0x1F199 },
 ["up-down arrow"]={ 0x2195 },
 ["up-left arrow"]={ 0x2196 },
 ["up-right arrow"]={ 0x2197 },
 ["upside-down face"]={ 0x1F643 },
 ["uruguay"]={ 0x1F1FA, 0x1F1FE },
 ["uzbekistan"]={ 0x1F1FA, 0x1F1FF },
 ["vampire"]={ 0x1F9DB },
 ["vampire: dark skin tone"]={ 0x1F9DB, 0x1F3FF },
 ["vampire: light skin tone"]={ 0x1F9DB, 0x1F3FB },
 ["vampire: medium skin tone"]={ 0x1F9DB, 0x1F3FD },
 ["vampire: medium-dark skin tone"]={ 0x1F9DB, 0x1F3FE },
 ["vampire: medium-light skin tone"]={ 0x1F9DB, 0x1F3FC },
 ["vanuatu"]={ 0x1F1FB, 0x1F1FA },
 ["vatican city"]={ 0x1F1FB, 0x1F1E6 },
 ["venezuela"]={ 0x1F1FB, 0x1F1EA },
 ["vertical traffic light"]={ 0x1F6A6 },
 ["vibration mode"]={ 0x1F4F3 },
 ["victory hand"]={ 0x270C },
 ["victory hand: dark skin tone"]={ 0x270C, 0x1F3FF },
 ["victory hand: light skin tone"]={ 0x270C, 0x1F3FB },
 ["victory hand: medium skin tone"]={ 0x270C, 0x1F3FD },
 ["victory hand: medium-dark skin tone"]={ 0x270C, 0x1F3FE },
 ["victory hand: medium-light skin tone"]={ 0x270C, 0x1F3FC },
 ["video camera"]={ 0x1F4F9 },
 ["video game"]={ 0x1F3AE },
 ["videocassette"]={ 0x1F4FC },
 ["vietnam"]={ 0x1F1FB, 0x1F1F3 },
 ["violin"]={ 0x1F3BB },
 ["virgo"]={ 0x264D },
 ["volcano"]={ 0x1F30B },
 ["volleyball"]={ 0x1F3D0 },
 ["vs button"]={ 0x1F19A },
 ["vulcan salute"]={ 0x1F596 },
 ["vulcan salute: dark skin tone"]={ 0x1F596, 0x1F3FF },
 ["vulcan salute: light skin tone"]={ 0x1F596, 0x1F3FB },
 ["vulcan salute: medium skin tone"]={ 0x1F596, 0x1F3FD },
 ["vulcan salute: medium-dark skin tone"]={ 0x1F596, 0x1F3FE },
 ["vulcan salute: medium-light skin tone"]={ 0x1F596, 0x1F3FC },
 ["wales"]={ 0x1F3F4, 0xE0067, 0xE0062, 0xE0077, 0xE006C, 0xE0073, 0xE007F },
 ["wallis & futuna"]={ 0x1F1FC, 0x1F1EB },
 ["waning crescent moon"]={ 0x1F318 },
 ["waning gibbous moon"]={ 0x1F316 },
 ["warning"]={ 0x26A0 },
 ["wastebasket"]={ 0x1F5D1 },
 ["watch"]={ 0x231A },
 ["water buffalo"]={ 0x1F403 },
 ["water closet"]={ 0x1F6BE },
 ["water wave"]={ 0x1F30A },
 ["watermelon"]={ 0x1F349 },
 ["waving hand"]={ 0x1F44B },
 ["waving hand: dark skin tone"]={ 0x1F44B, 0x1F3FF },
 ["waving hand: light skin tone"]={ 0x1F44B, 0x1F3FB },
 ["waving hand: medium skin tone"]={ 0x1F44B, 0x1F3FD },
 ["waving hand: medium-dark skin tone"]={ 0x1F44B, 0x1F3FE },
 ["waving hand: medium-light skin tone"]={ 0x1F44B, 0x1F3FC },
 ["wavy dash"]={ 0x3030 },
 ["waxing crescent moon"]={ 0x1F312 },
 ["waxing gibbous moon"]={ 0x1F314 },
 ["weary cat face"]={ 0x1F640 },
 ["weary face"]={ 0x1F629 },
 ["wedding"]={ 0x1F492 },
 ["western sahara"]={ 0x1F1EA, 0x1F1ED },
 ["whale"]={ 0x1F40B },
 ["wheel of dharma"]={ 0x2638 },
 ["wheelchair symbol"]={ 0x267F },
 ["white circle"]={ 0x26AA },
 ["white exclamation mark"]={ 0x2755 },
 ["white flag"]={ 0x1F3F3 },
 ["white flower"]={ 0x1F4AE },
 ["white heavy check mark"]={ 0x2705 },
 ["white large square"]={ 0x2B1C },
 ["white medium square"]={ 0x25FB },
 ["white medium star"]={ 0x2B50 },
 ["white medium-small square"]={ 0x25FD },
 ["white question mark"]={ 0x2754 },
 ["white small square"]={ 0x25AB },
 ["white square button"]={ 0x1F533 },
 ["wilted flower"]={ 0x1F940 },
 ["wind chime"]={ 0x1F390 },
 ["wind face"]={ 0x1F32C },
 ["wine glass"]={ 0x1F377 },
 ["winking face"]={ 0x1F609 },
 ["wolf face"]={ 0x1F43A },
 ["woman"]={ 0x1F469 },
 ["woman artist"]={ 0x1F469, 0x200D, 0x1F3A8 },
 ["woman artist: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F3A8 },
 ["woman artist: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F3A8 },
 ["woman artist: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F3A8 },
 ["woman artist: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F3A8 },
 ["woman artist: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F3A8 },
 ["woman astronaut"]={ 0x1F469, 0x200D, 0x1F680 },
 ["woman astronaut: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F680 },
 ["woman astronaut: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F680 },
 ["woman astronaut: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F680 },
 ["woman astronaut: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F680 },
 ["woman astronaut: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F680 },
 ["woman biking"]={ 0x1F6B4, 0x200D, 0x2640 },
 ["woman biking: dark skin tone"]={ 0x1F6B4, 0x1F3FF, 0x200D, 0x2640 },
 ["woman biking: light skin tone"]={ 0x1F6B4, 0x1F3FB, 0x200D, 0x2640 },
 ["woman biking: medium skin tone"]={ 0x1F6B4, 0x1F3FD, 0x200D, 0x2640 },
 ["woman biking: medium-dark skin tone"]={ 0x1F6B4, 0x1F3FE, 0x200D, 0x2640 },
 ["woman biking: medium-light skin tone"]={ 0x1F6B4, 0x1F3FC, 0x200D, 0x2640 },
 ["woman bouncing ball"]={ 0x26F9, 0x200D, 0x2640 },
 ["woman bouncing ball: dark skin tone"]={ 0x26F9, 0x1F3FF, 0x200D, 0x2640 },
 ["woman bouncing ball: light skin tone"]={ 0x26F9, 0x1F3FB, 0x200D, 0x2640 },
 ["woman bouncing ball: medium skin tone"]={ 0x26F9, 0x1F3FD, 0x200D, 0x2640 },
 ["woman bouncing ball: medium-dark skin tone"]={ 0x26F9, 0x1F3FE, 0x200D, 0x2640 },
 ["woman bouncing ball: medium-light skin tone"]={ 0x26F9, 0x1F3FC, 0x200D, 0x2640 },
 ["woman bowing"]={ 0x1F647, 0x200D, 0x2640 },
 ["woman bowing: dark skin tone"]={ 0x1F647, 0x1F3FF, 0x200D, 0x2640 },
 ["woman bowing: light skin tone"]={ 0x1F647, 0x1F3FB, 0x200D, 0x2640 },
 ["woman bowing: medium skin tone"]={ 0x1F647, 0x1F3FD, 0x200D, 0x2640 },
 ["woman bowing: medium-dark skin tone"]={ 0x1F647, 0x1F3FE, 0x200D, 0x2640 },
 ["woman bowing: medium-light skin tone"]={ 0x1F647, 0x1F3FC, 0x200D, 0x2640 },
 ["woman cartwheeling"]={ 0x1F938, 0x200D, 0x2640 },
 ["woman cartwheeling: dark skin tone"]={ 0x1F938, 0x1F3FF, 0x200D, 0x2640 },
 ["woman cartwheeling: light skin tone"]={ 0x1F938, 0x1F3FB, 0x200D, 0x2640 },
 ["woman cartwheeling: medium skin tone"]={ 0x1F938, 0x1F3FD, 0x200D, 0x2640 },
 ["woman cartwheeling: medium-dark skin tone"]={ 0x1F938, 0x1F3FE, 0x200D, 0x2640 },
 ["woman cartwheeling: medium-light skin tone"]={ 0x1F938, 0x1F3FC, 0x200D, 0x2640 },
 ["woman climbing"]={ 0x1F9D7, 0x200D, 0x2640 },
 ["woman climbing: dark skin tone"]={ 0x1F9D7, 0x1F3FF, 0x200D, 0x2640 },
 ["woman climbing: light skin tone"]={ 0x1F9D7, 0x1F3FB, 0x200D, 0x2640 },
 ["woman climbing: medium skin tone"]={ 0x1F9D7, 0x1F3FD, 0x200D, 0x2640 },
 ["woman climbing: medium-dark skin tone"]={ 0x1F9D7, 0x1F3FE, 0x200D, 0x2640 },
 ["woman climbing: medium-light skin tone"]={ 0x1F9D7, 0x1F3FC, 0x200D, 0x2640 },
 ["woman construction worker"]={ 0x1F477, 0x200D, 0x2640 },
 ["woman construction worker: dark skin tone"]={ 0x1F477, 0x1F3FF, 0x200D, 0x2640 },
 ["woman construction worker: light skin tone"]={ 0x1F477, 0x1F3FB, 0x200D, 0x2640 },
 ["woman construction worker: medium skin tone"]={ 0x1F477, 0x1F3FD, 0x200D, 0x2640 },
 ["woman construction worker: medium-dark skin tone"]={ 0x1F477, 0x1F3FE, 0x200D, 0x2640 },
 ["woman construction worker: medium-light skin tone"]={ 0x1F477, 0x1F3FC, 0x200D, 0x2640 },
 ["woman cook"]={ 0x1F469, 0x200D, 0x1F373 },
 ["woman cook: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F373 },
 ["woman cook: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F373 },
 ["woman cook: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F373 },
 ["woman cook: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F373 },
 ["woman cook: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F373 },
 ["woman dancing"]={ 0x1F483 },
 ["woman dancing: dark skin tone"]={ 0x1F483, 0x1F3FF },
 ["woman dancing: light skin tone"]={ 0x1F483, 0x1F3FB },
 ["woman dancing: medium skin tone"]={ 0x1F483, 0x1F3FD },
 ["woman dancing: medium-dark skin tone"]={ 0x1F483, 0x1F3FE },
 ["woman dancing: medium-light skin tone"]={ 0x1F483, 0x1F3FC },
 ["woman detective"]={ 0x1F575, 0x200D, 0x2640 },
 ["woman detective: dark skin tone"]={ 0x1F575, 0x1F3FF, 0x200D, 0x2640 },
 ["woman detective: light skin tone"]={ 0x1F575, 0x1F3FB, 0x200D, 0x2640 },
 ["woman detective: medium skin tone"]={ 0x1F575, 0x1F3FD, 0x200D, 0x2640 },
 ["woman detective: medium-dark skin tone"]={ 0x1F575, 0x1F3FE, 0x200D, 0x2640 },
 ["woman detective: medium-light skin tone"]={ 0x1F575, 0x1F3FC, 0x200D, 0x2640 },
 ["woman elf"]={ 0x1F9DD, 0x200D, 0x2640 },
 ["woman elf: dark skin tone"]={ 0x1F9DD, 0x1F3FF, 0x200D, 0x2640 },
 ["woman elf: light skin tone"]={ 0x1F9DD, 0x1F3FB, 0x200D, 0x2640 },
 ["woman elf: medium skin tone"]={ 0x1F9DD, 0x1F3FD, 0x200D, 0x2640 },
 ["woman elf: medium-dark skin tone"]={ 0x1F9DD, 0x1F3FE, 0x200D, 0x2640 },
 ["woman elf: medium-light skin tone"]={ 0x1F9DD, 0x1F3FC, 0x200D, 0x2640 },
 ["woman facepalming"]={ 0x1F926, 0x200D, 0x2640 },
 ["woman facepalming: dark skin tone"]={ 0x1F926, 0x1F3FF, 0x200D, 0x2640 },
 ["woman facepalming: light skin tone"]={ 0x1F926, 0x1F3FB, 0x200D, 0x2640 },
 ["woman facepalming: medium skin tone"]={ 0x1F926, 0x1F3FD, 0x200D, 0x2640 },
 ["woman facepalming: medium-dark skin tone"]={ 0x1F926, 0x1F3FE, 0x200D, 0x2640 },
 ["woman facepalming: medium-light skin tone"]={ 0x1F926, 0x1F3FC, 0x200D, 0x2640 },
 ["woman factory worker"]={ 0x1F469, 0x200D, 0x1F3ED },
 ["woman factory worker: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F3ED },
 ["woman factory worker: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F3ED },
 ["woman factory worker: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F3ED },
 ["woman factory worker: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F3ED },
 ["woman factory worker: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F3ED },
 ["woman fairy"]={ 0x1F9DA, 0x200D, 0x2640 },
 ["woman fairy: dark skin tone"]={ 0x1F9DA, 0x1F3FF, 0x200D, 0x2640 },
 ["woman fairy: light skin tone"]={ 0x1F9DA, 0x1F3FB, 0x200D, 0x2640 },
 ["woman fairy: medium skin tone"]={ 0x1F9DA, 0x1F3FD, 0x200D, 0x2640 },
 ["woman fairy: medium-dark skin tone"]={ 0x1F9DA, 0x1F3FE, 0x200D, 0x2640 },
 ["woman fairy: medium-light skin tone"]={ 0x1F9DA, 0x1F3FC, 0x200D, 0x2640 },
 ["woman farmer"]={ 0x1F469, 0x200D, 0x1F33E },
 ["woman farmer: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F33E },
 ["woman farmer: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F33E },
 ["woman farmer: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F33E },
 ["woman farmer: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F33E },
 ["woman farmer: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F33E },
 ["woman firefighter"]={ 0x1F469, 0x200D, 0x1F692 },
 ["woman firefighter: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F692 },
 ["woman firefighter: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F692 },
 ["woman firefighter: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F692 },
 ["woman firefighter: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F692 },
 ["woman firefighter: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F692 },
 ["woman frowning"]={ 0x1F64D, 0x200D, 0x2640 },
 ["woman frowning: dark skin tone"]={ 0x1F64D, 0x1F3FF, 0x200D, 0x2640 },
 ["woman frowning: light skin tone"]={ 0x1F64D, 0x1F3FB, 0x200D, 0x2640 },
 ["woman frowning: medium skin tone"]={ 0x1F64D, 0x1F3FD, 0x200D, 0x2640 },
 ["woman frowning: medium-dark skin tone"]={ 0x1F64D, 0x1F3FE, 0x200D, 0x2640 },
 ["woman frowning: medium-light skin tone"]={ 0x1F64D, 0x1F3FC, 0x200D, 0x2640 },
 ["woman genie"]={ 0x1F9DE, 0x200D, 0x2640 },
 ["woman gesturing no"]={ 0x1F645, 0x200D, 0x2640 },
 ["woman gesturing no: dark skin tone"]={ 0x1F645, 0x1F3FF, 0x200D, 0x2640 },
 ["woman gesturing no: light skin tone"]={ 0x1F645, 0x1F3FB, 0x200D, 0x2640 },
 ["woman gesturing no: medium skin tone"]={ 0x1F645, 0x1F3FD, 0x200D, 0x2640 },
 ["woman gesturing no: medium-dark skin tone"]={ 0x1F645, 0x1F3FE, 0x200D, 0x2640 },
 ["woman gesturing no: medium-light skin tone"]={ 0x1F645, 0x1F3FC, 0x200D, 0x2640 },
 ["woman gesturing ok"]={ 0x1F646, 0x200D, 0x2640 },
 ["woman gesturing ok: dark skin tone"]={ 0x1F646, 0x1F3FF, 0x200D, 0x2640 },
 ["woman gesturing ok: light skin tone"]={ 0x1F646, 0x1F3FB, 0x200D, 0x2640 },
 ["woman gesturing ok: medium skin tone"]={ 0x1F646, 0x1F3FD, 0x200D, 0x2640 },
 ["woman gesturing ok: medium-dark skin tone"]={ 0x1F646, 0x1F3FE, 0x200D, 0x2640 },
 ["woman gesturing ok: medium-light skin tone"]={ 0x1F646, 0x1F3FC, 0x200D, 0x2640 },
 ["woman getting haircut"]={ 0x1F487, 0x200D, 0x2640 },
 ["woman getting haircut: dark skin tone"]={ 0x1F487, 0x1F3FF, 0x200D, 0x2640 },
 ["woman getting haircut: light skin tone"]={ 0x1F487, 0x1F3FB, 0x200D, 0x2640 },
 ["woman getting haircut: medium skin tone"]={ 0x1F487, 0x1F3FD, 0x200D, 0x2640 },
 ["woman getting haircut: medium-dark skin tone"]={ 0x1F487, 0x1F3FE, 0x200D, 0x2640 },
 ["woman getting haircut: medium-light skin tone"]={ 0x1F487, 0x1F3FC, 0x200D, 0x2640 },
 ["woman getting massage"]={ 0x1F486, 0x200D, 0x2640 },
 ["woman getting massage: dark skin tone"]={ 0x1F486, 0x1F3FF, 0x200D, 0x2640 },
 ["woman getting massage: light skin tone"]={ 0x1F486, 0x1F3FB, 0x200D, 0x2640 },
 ["woman getting massage: medium skin tone"]={ 0x1F486, 0x1F3FD, 0x200D, 0x2640 },
 ["woman getting massage: medium-dark skin tone"]={ 0x1F486, 0x1F3FE, 0x200D, 0x2640 },
 ["woman getting massage: medium-light skin tone"]={ 0x1F486, 0x1F3FC, 0x200D, 0x2640 },
 ["woman golfing"]={ 0x1F3CC, 0x200D, 0x2640 },
 ["woman golfing: dark skin tone"]={ 0x1F3CC, 0x1F3FF, 0x200D, 0x2640 },
 ["woman golfing: light skin tone"]={ 0x1F3CC, 0x1F3FB, 0x200D, 0x2640 },
 ["woman golfing: medium skin tone"]={ 0x1F3CC, 0x1F3FD, 0x200D, 0x2640 },
 ["woman golfing: medium-dark skin tone"]={ 0x1F3CC, 0x1F3FE, 0x200D, 0x2640 },
 ["woman golfing: medium-light skin tone"]={ 0x1F3CC, 0x1F3FC, 0x200D, 0x2640 },
 ["woman guard"]={ 0x1F482, 0x200D, 0x2640 },
 ["woman guard: dark skin tone"]={ 0x1F482, 0x1F3FF, 0x200D, 0x2640 },
 ["woman guard: light skin tone"]={ 0x1F482, 0x1F3FB, 0x200D, 0x2640 },
 ["woman guard: medium skin tone"]={ 0x1F482, 0x1F3FD, 0x200D, 0x2640 },
 ["woman guard: medium-dark skin tone"]={ 0x1F482, 0x1F3FE, 0x200D, 0x2640 },
 ["woman guard: medium-light skin tone"]={ 0x1F482, 0x1F3FC, 0x200D, 0x2640 },
 ["woman health worker"]={ 0x1F469, 0x200D, 0x2695 },
 ["woman health worker: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x2695 },
 ["woman health worker: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x2695 },
 ["woman health worker: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x2695 },
 ["woman health worker: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x2695 },
 ["woman health worker: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x2695 },
 ["woman in lotus position"]={ 0x1F9D8, 0x200D, 0x2640 },
 ["woman in lotus position: dark skin tone"]={ 0x1F9D8, 0x1F3FF, 0x200D, 0x2640 },
 ["woman in lotus position: light skin tone"]={ 0x1F9D8, 0x1F3FB, 0x200D, 0x2640 },
 ["woman in lotus position: medium skin tone"]={ 0x1F9D8, 0x1F3FD, 0x200D, 0x2640 },
 ["woman in lotus position: medium-dark skin tone"]={ 0x1F9D8, 0x1F3FE, 0x200D, 0x2640 },
 ["woman in lotus position: medium-light skin tone"]={ 0x1F9D8, 0x1F3FC, 0x200D, 0x2640 },
 ["woman in steamy room"]={ 0x1F9D6, 0x200D, 0x2640 },
 ["woman in steamy room: dark skin tone"]={ 0x1F9D6, 0x1F3FF, 0x200D, 0x2640 },
 ["woman in steamy room: light skin tone"]={ 0x1F9D6, 0x1F3FB, 0x200D, 0x2640 },
 ["woman in steamy room: medium skin tone"]={ 0x1F9D6, 0x1F3FD, 0x200D, 0x2640 },
 ["woman in steamy room: medium-dark skin tone"]={ 0x1F9D6, 0x1F3FE, 0x200D, 0x2640 },
 ["woman in steamy room: medium-light skin tone"]={ 0x1F9D6, 0x1F3FC, 0x200D, 0x2640 },
 ["woman judge"]={ 0x1F469, 0x200D, 0x2696 },
 ["woman judge: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x2696 },
 ["woman judge: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x2696 },
 ["woman judge: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x2696 },
 ["woman judge: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x2696 },
 ["woman judge: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x2696 },
 ["woman juggling"]={ 0x1F939, 0x200D, 0x2640 },
 ["woman juggling: dark skin tone"]={ 0x1F939, 0x1F3FF, 0x200D, 0x2640 },
 ["woman juggling: light skin tone"]={ 0x1F939, 0x1F3FB, 0x200D, 0x2640 },
 ["woman juggling: medium skin tone"]={ 0x1F939, 0x1F3FD, 0x200D, 0x2640 },
 ["woman juggling: medium-dark skin tone"]={ 0x1F939, 0x1F3FE, 0x200D, 0x2640 },
 ["woman juggling: medium-light skin tone"]={ 0x1F939, 0x1F3FC, 0x200D, 0x2640 },
 ["woman lifting weights"]={ 0x1F3CB, 0x200D, 0x2640 },
 ["woman lifting weights: dark skin tone"]={ 0x1F3CB, 0x1F3FF, 0x200D, 0x2640 },
 ["woman lifting weights: light skin tone"]={ 0x1F3CB, 0x1F3FB, 0x200D, 0x2640 },
 ["woman lifting weights: medium skin tone"]={ 0x1F3CB, 0x1F3FD, 0x200D, 0x2640 },
 ["woman lifting weights: medium-dark skin tone"]={ 0x1F3CB, 0x1F3FE, 0x200D, 0x2640 },
 ["woman lifting weights: medium-light skin tone"]={ 0x1F3CB, 0x1F3FC, 0x200D, 0x2640 },
 ["woman mage"]={ 0x1F9D9, 0x200D, 0x2640 },
 ["woman mage: dark skin tone"]={ 0x1F9D9, 0x1F3FF, 0x200D, 0x2640 },
 ["woman mage: light skin tone"]={ 0x1F9D9, 0x1F3FB, 0x200D, 0x2640 },
 ["woman mage: medium skin tone"]={ 0x1F9D9, 0x1F3FD, 0x200D, 0x2640 },
 ["woman mage: medium-dark skin tone"]={ 0x1F9D9, 0x1F3FE, 0x200D, 0x2640 },
 ["woman mage: medium-light skin tone"]={ 0x1F9D9, 0x1F3FC, 0x200D, 0x2640 },
 ["woman mechanic"]={ 0x1F469, 0x200D, 0x1F527 },
 ["woman mechanic: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F527 },
 ["woman mechanic: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F527 },
 ["woman mechanic: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F527 },
 ["woman mechanic: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F527 },
 ["woman mechanic: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F527 },
 ["woman mountain biking"]={ 0x1F6B5, 0x200D, 0x2640 },
 ["woman mountain biking: dark skin tone"]={ 0x1F6B5, 0x1F3FF, 0x200D, 0x2640 },
 ["woman mountain biking: light skin tone"]={ 0x1F6B5, 0x1F3FB, 0x200D, 0x2640 },
 ["woman mountain biking: medium skin tone"]={ 0x1F6B5, 0x1F3FD, 0x200D, 0x2640 },
 ["woman mountain biking: medium-dark skin tone"]={ 0x1F6B5, 0x1F3FE, 0x200D, 0x2640 },
 ["woman mountain biking: medium-light skin tone"]={ 0x1F6B5, 0x1F3FC, 0x200D, 0x2640 },
 ["woman office worker"]={ 0x1F469, 0x200D, 0x1F4BC },
 ["woman office worker: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F4BC },
 ["woman office worker: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F4BC },
 ["woman office worker: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F4BC },
 ["woman office worker: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F4BC },
 ["woman office worker: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F4BC },
 ["woman pilot"]={ 0x1F469, 0x200D, 0x2708 },
 ["woman pilot: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x2708 },
 ["woman pilot: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x2708 },
 ["woman pilot: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x2708 },
 ["woman pilot: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x2708 },
 ["woman pilot: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x2708 },
 ["woman playing handball"]={ 0x1F93E, 0x200D, 0x2640 },
 ["woman playing handball: dark skin tone"]={ 0x1F93E, 0x1F3FF, 0x200D, 0x2640 },
 ["woman playing handball: light skin tone"]={ 0x1F93E, 0x1F3FB, 0x200D, 0x2640 },
 ["woman playing handball: medium skin tone"]={ 0x1F93E, 0x1F3FD, 0x200D, 0x2640 },
 ["woman playing handball: medium-dark skin tone"]={ 0x1F93E, 0x1F3FE, 0x200D, 0x2640 },
 ["woman playing handball: medium-light skin tone"]={ 0x1F93E, 0x1F3FC, 0x200D, 0x2640 },
 ["woman playing water polo"]={ 0x1F93D, 0x200D, 0x2640 },
 ["woman playing water polo: dark skin tone"]={ 0x1F93D, 0x1F3FF, 0x200D, 0x2640 },
 ["woman playing water polo: light skin tone"]={ 0x1F93D, 0x1F3FB, 0x200D, 0x2640 },
 ["woman playing water polo: medium skin tone"]={ 0x1F93D, 0x1F3FD, 0x200D, 0x2640 },
 ["woman playing water polo: medium-dark skin tone"]={ 0x1F93D, 0x1F3FE, 0x200D, 0x2640 },
 ["woman playing water polo: medium-light skin tone"]={ 0x1F93D, 0x1F3FC, 0x200D, 0x2640 },
 ["woman police officer"]={ 0x1F46E, 0x200D, 0x2640 },
 ["woman police officer: dark skin tone"]={ 0x1F46E, 0x1F3FF, 0x200D, 0x2640 },
 ["woman police officer: light skin tone"]={ 0x1F46E, 0x1F3FB, 0x200D, 0x2640 },
 ["woman police officer: medium skin tone"]={ 0x1F46E, 0x1F3FD, 0x200D, 0x2640 },
 ["woman police officer: medium-dark skin tone"]={ 0x1F46E, 0x1F3FE, 0x200D, 0x2640 },
 ["woman police officer: medium-light skin tone"]={ 0x1F46E, 0x1F3FC, 0x200D, 0x2640 },
 ["woman pouting"]={ 0x1F64E, 0x200D, 0x2640 },
 ["woman pouting: dark skin tone"]={ 0x1F64E, 0x1F3FF, 0x200D, 0x2640 },
 ["woman pouting: light skin tone"]={ 0x1F64E, 0x1F3FB, 0x200D, 0x2640 },
 ["woman pouting: medium skin tone"]={ 0x1F64E, 0x1F3FD, 0x200D, 0x2640 },
 ["woman pouting: medium-dark skin tone"]={ 0x1F64E, 0x1F3FE, 0x200D, 0x2640 },
 ["woman pouting: medium-light skin tone"]={ 0x1F64E, 0x1F3FC, 0x200D, 0x2640 },
 ["woman raising hand"]={ 0x1F64B, 0x200D, 0x2640 },
 ["woman raising hand: dark skin tone"]={ 0x1F64B, 0x1F3FF, 0x200D, 0x2640 },
 ["woman raising hand: light skin tone"]={ 0x1F64B, 0x1F3FB, 0x200D, 0x2640 },
 ["woman raising hand: medium skin tone"]={ 0x1F64B, 0x1F3FD, 0x200D, 0x2640 },
 ["woman raising hand: medium-dark skin tone"]={ 0x1F64B, 0x1F3FE, 0x200D, 0x2640 },
 ["woman raising hand: medium-light skin tone"]={ 0x1F64B, 0x1F3FC, 0x200D, 0x2640 },
 ["woman rowing boat"]={ 0x1F6A3, 0x200D, 0x2640 },
 ["woman rowing boat: dark skin tone"]={ 0x1F6A3, 0x1F3FF, 0x200D, 0x2640 },
 ["woman rowing boat: light skin tone"]={ 0x1F6A3, 0x1F3FB, 0x200D, 0x2640 },
 ["woman rowing boat: medium skin tone"]={ 0x1F6A3, 0x1F3FD, 0x200D, 0x2640 },
 ["woman rowing boat: medium-dark skin tone"]={ 0x1F6A3, 0x1F3FE, 0x200D, 0x2640 },
 ["woman rowing boat: medium-light skin tone"]={ 0x1F6A3, 0x1F3FC, 0x200D, 0x2640 },
 ["woman running"]={ 0x1F3C3, 0x200D, 0x2640 },
 ["woman running: dark skin tone"]={ 0x1F3C3, 0x1F3FF, 0x200D, 0x2640 },
 ["woman running: light skin tone"]={ 0x1F3C3, 0x1F3FB, 0x200D, 0x2640 },
 ["woman running: medium skin tone"]={ 0x1F3C3, 0x1F3FD, 0x200D, 0x2640 },
 ["woman running: medium-dark skin tone"]={ 0x1F3C3, 0x1F3FE, 0x200D, 0x2640 },
 ["woman running: medium-light skin tone"]={ 0x1F3C3, 0x1F3FC, 0x200D, 0x2640 },
 ["woman scientist"]={ 0x1F469, 0x200D, 0x1F52C },
 ["woman scientist: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F52C },
 ["woman scientist: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F52C },
 ["woman scientist: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F52C },
 ["woman scientist: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F52C },
 ["woman scientist: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F52C },
 ["woman shrugging"]={ 0x1F937, 0x200D, 0x2640 },
 ["woman shrugging: dark skin tone"]={ 0x1F937, 0x1F3FF, 0x200D, 0x2640 },
 ["woman shrugging: light skin tone"]={ 0x1F937, 0x1F3FB, 0x200D, 0x2640 },
 ["woman shrugging: medium skin tone"]={ 0x1F937, 0x1F3FD, 0x200D, 0x2640 },
 ["woman shrugging: medium-dark skin tone"]={ 0x1F937, 0x1F3FE, 0x200D, 0x2640 },
 ["woman shrugging: medium-light skin tone"]={ 0x1F937, 0x1F3FC, 0x200D, 0x2640 },
 ["woman singer"]={ 0x1F469, 0x200D, 0x1F3A4 },
 ["woman singer: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F3A4 },
 ["woman singer: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F3A4 },
 ["woman singer: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F3A4 },
 ["woman singer: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F3A4 },
 ["woman singer: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F3A4 },
 ["woman student"]={ 0x1F469, 0x200D, 0x1F393 },
 ["woman student: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F393 },
 ["woman student: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F393 },
 ["woman student: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F393 },
 ["woman student: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F393 },
 ["woman student: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F393 },
 ["woman surfing"]={ 0x1F3C4, 0x200D, 0x2640 },
 ["woman surfing: dark skin tone"]={ 0x1F3C4, 0x1F3FF, 0x200D, 0x2640 },
 ["woman surfing: light skin tone"]={ 0x1F3C4, 0x1F3FB, 0x200D, 0x2640 },
 ["woman surfing: medium skin tone"]={ 0x1F3C4, 0x1F3FD, 0x200D, 0x2640 },
 ["woman surfing: medium-dark skin tone"]={ 0x1F3C4, 0x1F3FE, 0x200D, 0x2640 },
 ["woman surfing: medium-light skin tone"]={ 0x1F3C4, 0x1F3FC, 0x200D, 0x2640 },
 ["woman swimming"]={ 0x1F3CA, 0x200D, 0x2640 },
 ["woman swimming: dark skin tone"]={ 0x1F3CA, 0x1F3FF, 0x200D, 0x2640 },
 ["woman swimming: light skin tone"]={ 0x1F3CA, 0x1F3FB, 0x200D, 0x2640 },
 ["woman swimming: medium skin tone"]={ 0x1F3CA, 0x1F3FD, 0x200D, 0x2640 },
 ["woman swimming: medium-dark skin tone"]={ 0x1F3CA, 0x1F3FE, 0x200D, 0x2640 },
 ["woman swimming: medium-light skin tone"]={ 0x1F3CA, 0x1F3FC, 0x200D, 0x2640 },
 ["woman teacher"]={ 0x1F469, 0x200D, 0x1F3EB },
 ["woman teacher: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F3EB },
 ["woman teacher: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F3EB },
 ["woman teacher: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F3EB },
 ["woman teacher: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F3EB },
 ["woman teacher: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F3EB },
 ["woman technologist"]={ 0x1F469, 0x200D, 0x1F4BB },
 ["woman technologist: dark skin tone"]={ 0x1F469, 0x1F3FF, 0x200D, 0x1F4BB },
 ["woman technologist: light skin tone"]={ 0x1F469, 0x1F3FB, 0x200D, 0x1F4BB },
 ["woman technologist: medium skin tone"]={ 0x1F469, 0x1F3FD, 0x200D, 0x1F4BB },
 ["woman technologist: medium-dark skin tone"]={ 0x1F469, 0x1F3FE, 0x200D, 0x1F4BB },
 ["woman technologist: medium-light skin tone"]={ 0x1F469, 0x1F3FC, 0x200D, 0x1F4BB },
 ["woman tipping hand"]={ 0x1F481, 0x200D, 0x2640 },
 ["woman tipping hand: dark skin tone"]={ 0x1F481, 0x1F3FF, 0x200D, 0x2640 },
 ["woman tipping hand: light skin tone"]={ 0x1F481, 0x1F3FB, 0x200D, 0x2640 },
 ["woman tipping hand: medium skin tone"]={ 0x1F481, 0x1F3FD, 0x200D, 0x2640 },
 ["woman tipping hand: medium-dark skin tone"]={ 0x1F481, 0x1F3FE, 0x200D, 0x2640 },
 ["woman tipping hand: medium-light skin tone"]={ 0x1F481, 0x1F3FC, 0x200D, 0x2640 },
 ["woman vampire"]={ 0x1F9DB, 0x200D, 0x2640 },
 ["woman vampire: dark skin tone"]={ 0x1F9DB, 0x1F3FF, 0x200D, 0x2640 },
 ["woman vampire: light skin tone"]={ 0x1F9DB, 0x1F3FB, 0x200D, 0x2640 },
 ["woman vampire: medium skin tone"]={ 0x1F9DB, 0x1F3FD, 0x200D, 0x2640 },
 ["woman vampire: medium-dark skin tone"]={ 0x1F9DB, 0x1F3FE, 0x200D, 0x2640 },
 ["woman vampire: medium-light skin tone"]={ 0x1F9DB, 0x1F3FC, 0x200D, 0x2640 },
 ["woman walking"]={ 0x1F6B6, 0x200D, 0x2640 },
 ["woman walking: dark skin tone"]={ 0x1F6B6, 0x1F3FF, 0x200D, 0x2640 },
 ["woman walking: light skin tone"]={ 0x1F6B6, 0x1F3FB, 0x200D, 0x2640 },
 ["woman walking: medium skin tone"]={ 0x1F6B6, 0x1F3FD, 0x200D, 0x2640 },
 ["woman walking: medium-dark skin tone"]={ 0x1F6B6, 0x1F3FE, 0x200D, 0x2640 },
 ["woman walking: medium-light skin tone"]={ 0x1F6B6, 0x1F3FC, 0x200D, 0x2640 },
 ["woman wearing turban"]={ 0x1F473, 0x200D, 0x2640 },
 ["woman wearing turban: dark skin tone"]={ 0x1F473, 0x1F3FF, 0x200D, 0x2640 },
 ["woman wearing turban: light skin tone"]={ 0x1F473, 0x1F3FB, 0x200D, 0x2640 },
 ["woman wearing turban: medium skin tone"]={ 0x1F473, 0x1F3FD, 0x200D, 0x2640 },
 ["woman wearing turban: medium-dark skin tone"]={ 0x1F473, 0x1F3FE, 0x200D, 0x2640 },
 ["woman wearing turban: medium-light skin tone"]={ 0x1F473, 0x1F3FC, 0x200D, 0x2640 },
 ["woman with headscarf"]={ 0x1F9D5 },
 ["woman with headscarf: dark skin tone"]={ 0x1F9D5, 0x1F3FF },
 ["woman with headscarf: light skin tone"]={ 0x1F9D5, 0x1F3FB },
 ["woman with headscarf: medium skin tone"]={ 0x1F9D5, 0x1F3FD },
 ["woman with headscarf: medium-dark skin tone"]={ 0x1F9D5, 0x1F3FE },
 ["woman with headscarf: medium-light skin tone"]={ 0x1F9D5, 0x1F3FC },
 ["woman zombie"]={ 0x1F9DF, 0x200D, 0x2640 },
 ["woman: dark skin tone"]={ 0x1F469, 0x1F3FF },
 ["woman: light skin tone"]={ 0x1F469, 0x1F3FB },
 ["woman: medium skin tone"]={ 0x1F469, 0x1F3FD },
 ["woman: medium-dark skin tone"]={ 0x1F469, 0x1F3FE },
 ["woman: medium-light skin tone"]={ 0x1F469, 0x1F3FC },
 ["woman’s boot"]={ 0x1F462 },
 ["woman’s clothes"]={ 0x1F45A },
 ["woman’s hat"]={ 0x1F452 },
 ["woman’s sandal"]={ 0x1F461 },
 ["women with bunny ears partying"]={ 0x1F46F, 0x200D, 0x2640 },
 ["women wrestling"]={ 0x1F93C, 0x200D, 0x2640 },
 ["women’s room"]={ 0x1F6BA },
 ["world map"]={ 0x1F5FA },
 ["worried face"]={ 0x1F61F },
 ["wrapped gift"]={ 0x1F381 },
 ["wrench"]={ 0x1F527 },
 ["writing hand"]={ 0x270D },
 ["writing hand: dark skin tone"]={ 0x270D, 0x1F3FF },
 ["writing hand: light skin tone"]={ 0x270D, 0x1F3FB },
 ["writing hand: medium skin tone"]={ 0x270D, 0x1F3FD },
 ["writing hand: medium-dark skin tone"]={ 0x270D, 0x1F3FE },
 ["writing hand: medium-light skin tone"]={ 0x270D, 0x1F3FC },
 ["yellow heart"]={ 0x1F49B },
 ["yemen"]={ 0x1F1FE, 0x1F1EA },
 ["yen banknote"]={ 0x1F4B4 },
 ["yin yang"]={ 0x262F },
 ["zambia"]={ 0x1F1FF, 0x1F1F2 },
 ["zebra"]={ 0x1F993 },
 ["zimbabwe"]={ 0x1F1FF, 0x1F1FC },
 ["zipper-mouth face"]={ 0x1F910 },
 ["zombie"]={ 0x1F9DF },
 ["zzz"]={ 0x1F4A4 },
 ["Åland islands"]={ 0x1F1E6, 0x1F1FD },
}