File: en.xml

package info (click to toggle)
python-babel 2.6.0%2Bdfsg.1-1%2Bdeb10u1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 164,640 kB
  • sloc: xml: 1,848,178; python: 11,849; makefile: 213; sh: 44
file content (2543 lines) | stat: -rw-r--r-- 170,161 bytes parent folder | download
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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE ldml SYSTEM "../../common/dtd/ldml.dtd">
<!-- Copyright ยฉ 1991-2018 Unicode, Inc.
For terms of use, see http://www.unicode.org/copyright.html
Unicode and the Unicode Logo are registered trademarks of Unicode, Inc. in the U.S. and other countries.
CLDR data files are interpreted according to the LDML specification (http://unicode.org/reports/tr35/)

Warnings: All cp values have U+FE0F characters removed. See /annotationsDerived/ for derived annotations.
-->
<ldml>
	<identity>
		<version number="$Revision: 13933 $"/>
		<language type="en"/>
	</identity>
	<annotations>
		<annotation cp="๐Ÿป">light skin tone | skin tone | type 1โ€“2</annotation>
		<annotation cp="๐Ÿป" type="tts">light skin tone</annotation>
		<annotation cp="๐Ÿผ">medium-light skin tone | skin tone | type 3</annotation>
		<annotation cp="๐Ÿผ" type="tts">medium-light skin tone</annotation>
		<annotation cp="๐Ÿฝ">medium skin tone | skin tone | type 4</annotation>
		<annotation cp="๐Ÿฝ" type="tts">medium skin tone</annotation>
		<annotation cp="๐Ÿพ">medium-dark skin tone | skin tone | type 5</annotation>
		<annotation cp="๐Ÿพ" type="tts">medium-dark skin tone</annotation>
		<annotation cp="๐Ÿฟ">dark skin tone | skin tone | type 6</annotation>
		<annotation cp="๐Ÿฟ" type="tts">dark skin tone</annotation>
		<annotation cp="๐Ÿ˜€">face | grin | grinning face</annotation>
		<annotation cp="๐Ÿ˜€" type="tts">grinning face</annotation>
		<annotation cp="๐Ÿ˜">beaming face with smiling eyes | eye | face | grin | smile</annotation>
		<annotation cp="๐Ÿ˜" type="tts">beaming face with smiling eyes</annotation>
		<annotation cp="๐Ÿ˜‚">face | face with tears of joy | joy | laugh | tear</annotation>
		<annotation cp="๐Ÿ˜‚" type="tts">face with tears of joy</annotation>
		<annotation cp="๐Ÿคฃ">face | floor | laugh | rolling | rolling on the floor laughing</annotation>
		<annotation cp="๐Ÿคฃ" type="tts">rolling on the floor laughing</annotation>
		<annotation cp="๐Ÿ˜ƒ">face | grinning face with big eyes | mouth | open | smile</annotation>
		<annotation cp="๐Ÿ˜ƒ" type="tts">grinning face with big eyes</annotation>
		<annotation cp="๐Ÿ˜„">eye | face | grinning face with smiling eyes | mouth | open | smile</annotation>
		<annotation cp="๐Ÿ˜„" type="tts">grinning face with smiling eyes</annotation>
		<annotation cp="๐Ÿ˜…">cold | face | grinning face with sweat | open | smile | sweat</annotation>
		<annotation cp="๐Ÿ˜…" type="tts">grinning face with sweat</annotation>
		<annotation cp="๐Ÿ˜†">face | grinning squinting face | laugh | mouth | open | satisfied | smile</annotation>
		<annotation cp="๐Ÿ˜†" type="tts">grinning squinting face</annotation>
		<annotation cp="๐Ÿ˜‰">face | wink | winking face</annotation>
		<annotation cp="๐Ÿ˜‰" type="tts">winking face</annotation>
		<annotation cp="๐Ÿ˜Š">blush | eye | face | smile | smiling face with smiling eyes</annotation>
		<annotation cp="๐Ÿ˜Š" type="tts">smiling face with smiling eyes</annotation>
		<annotation cp="๐Ÿ˜‹">delicious | face | face savoring food | savouring | smile | um | yum</annotation>
		<annotation cp="๐Ÿ˜‹" type="tts">face savoring food</annotation>
		<annotation cp="๐Ÿ˜Ž">bright | cool | eye | eyewear | face | glasses | smile | smiling face with sunglasses | sun | sunglasses</annotation>
		<annotation cp="๐Ÿ˜Ž" type="tts">smiling face with sunglasses</annotation>
		<annotation cp="๐Ÿ˜">eye | face | love | smile | smiling face with heart-eyes</annotation>
		<annotation cp="๐Ÿ˜" type="tts">smiling face with heart-eyes</annotation>
		<annotation cp="๐Ÿ˜˜">face | face blowing a kiss | kiss</annotation>
		<annotation cp="๐Ÿ˜˜" type="tts">face blowing a kiss</annotation>
		<annotation cp="๐Ÿ˜—">face | kiss | kissing face</annotation>
		<annotation cp="๐Ÿ˜—" type="tts">kissing face</annotation>
		<annotation cp="๐Ÿ˜™">eye | face | kiss | kissing face with smiling eyes | smile</annotation>
		<annotation cp="๐Ÿ˜™" type="tts">kissing face with smiling eyes</annotation>
		<annotation cp="๐Ÿ˜š">closed | eye | face | kiss | kissing face with closed eyes</annotation>
		<annotation cp="๐Ÿ˜š" type="tts">kissing face with closed eyes</annotation>
		<annotation cp="โ˜บ">face | outlined | relaxed | smile | smiling face</annotation>
		<annotation cp="โ˜บ" type="tts">smiling face</annotation>
		<annotation cp="๐Ÿ™‚">face | slightly smiling face | smile</annotation>
		<annotation cp="๐Ÿ™‚" type="tts">slightly smiling face</annotation>
		<annotation cp="๐Ÿค—">face | hug | hugging</annotation>
		<annotation cp="๐Ÿค—" type="tts">hugging face</annotation>
		<annotation cp="๐Ÿคฉ">eyes | face | grinning | star | star-struck</annotation>
		<annotation cp="๐Ÿคฉ" type="tts">star-struck</annotation>
		<annotation cp="๐Ÿค”">face | thinking</annotation>
		<annotation cp="๐Ÿค”" type="tts">thinking face</annotation>
		<annotation cp="๐Ÿคจ">distrust | face with raised eyebrow | skeptic</annotation>
		<annotation cp="๐Ÿคจ" type="tts">face with raised eyebrow</annotation>
		<annotation cp="๐Ÿ˜">deadpan | face | neutral</annotation>
		<annotation cp="๐Ÿ˜" type="tts">neutral face</annotation>
		<annotation cp="๐Ÿ˜‘">expressionless | face | inexpressive | unexpressive</annotation>
		<annotation cp="๐Ÿ˜‘" type="tts">expressionless face</annotation>
		<annotation cp="๐Ÿ˜ถ">face | face without mouth | mouth | quiet | silent</annotation>
		<annotation cp="๐Ÿ˜ถ" type="tts">face without mouth</annotation>
		<annotation cp="๐Ÿ™„">eyes | face | face with rolling eyes | rolling</annotation>
		<annotation cp="๐Ÿ™„" type="tts">face with rolling eyes</annotation>
		<annotation cp="๐Ÿ˜">face | smirk | smirking face</annotation>
		<annotation cp="๐Ÿ˜" type="tts">smirking face</annotation>
		<annotation cp="๐Ÿ˜ฃ">face | persevere | persevering face</annotation>
		<annotation cp="๐Ÿ˜ฃ" type="tts">persevering face</annotation>
		<annotation cp="๐Ÿ˜ฅ">disappointed | face | relieved | sad but relieved face | whew</annotation>
		<annotation cp="๐Ÿ˜ฅ" type="tts">sad but relieved face</annotation>
		<annotation cp="๐Ÿ˜ฎ">face | face with open mouth | mouth | open | sympathy</annotation>
		<annotation cp="๐Ÿ˜ฎ" type="tts">face with open mouth</annotation>
		<annotation cp="๐Ÿค">face | mouth | zipper | zipper-mouth face</annotation>
		<annotation cp="๐Ÿค" type="tts">zipper-mouth face</annotation>
		<annotation cp="๐Ÿ˜ฏ">face | hushed | stunned | surprised</annotation>
		<annotation cp="๐Ÿ˜ฏ" type="tts">hushed face</annotation>
		<annotation cp="๐Ÿ˜ช">face | sleep | sleepy face</annotation>
		<annotation cp="๐Ÿ˜ช" type="tts">sleepy face</annotation>
		<annotation cp="๐Ÿ˜ซ">face | tired</annotation>
		<annotation cp="๐Ÿ˜ซ" type="tts">tired face</annotation>
		<annotation cp="๐Ÿ˜ด">face | sleep | sleeping face | zzz</annotation>
		<annotation cp="๐Ÿ˜ด" type="tts">sleeping face</annotation>
		<annotation cp="๐Ÿ˜Œ">face | relieved</annotation>
		<annotation cp="๐Ÿ˜Œ" type="tts">relieved face</annotation>
		<annotation cp="๐Ÿ˜›">face | face with tongue | tongue</annotation>
		<annotation cp="๐Ÿ˜›" type="tts">face with tongue</annotation>
		<annotation cp="๐Ÿ˜œ">eye | face | joke | tongue | wink | winking face with tongue</annotation>
		<annotation cp="๐Ÿ˜œ" type="tts">winking face with tongue</annotation>
		<annotation cp="๐Ÿ˜">eye | face | horrible | squinting face with tongue | taste | tongue</annotation>
		<annotation cp="๐Ÿ˜" type="tts">squinting face with tongue</annotation>
		<annotation cp="๐Ÿคค">drooling | face</annotation>
		<annotation cp="๐Ÿคค" type="tts">drooling face</annotation>
		<annotation cp="๐Ÿ˜’">face | unamused | unhappy</annotation>
		<annotation cp="๐Ÿ˜’" type="tts">unamused face</annotation>
		<annotation cp="๐Ÿ˜“">cold | downcast face with sweat | face | sweat</annotation>
		<annotation cp="๐Ÿ˜“" type="tts">downcast face with sweat</annotation>
		<annotation cp="๐Ÿ˜”">dejected | face | pensive</annotation>
		<annotation cp="๐Ÿ˜”" type="tts">pensive face</annotation>
		<annotation cp="๐Ÿ˜•">confused | face</annotation>
		<annotation cp="๐Ÿ˜•" type="tts">confused face</annotation>
		<annotation cp="๐Ÿ™ƒ">face | upside-down</annotation>
		<annotation cp="๐Ÿ™ƒ" type="tts">upside-down face</annotation>
		<annotation cp="๐Ÿค‘">face | money | money-mouth face | mouth</annotation>
		<annotation cp="๐Ÿค‘" type="tts">money-mouth face</annotation>
		<annotation cp="๐Ÿ˜ฒ">astonished | face | shocked | totally</annotation>
		<annotation cp="๐Ÿ˜ฒ" type="tts">astonished face</annotation>
		<annotation cp="โ˜น">face | frown | frowning face</annotation>
		<annotation cp="โ˜น" type="tts">frowning face</annotation>
		<annotation cp="๐Ÿ™">face | frown | slightly frowning face</annotation>
		<annotation cp="๐Ÿ™" type="tts">slightly frowning face</annotation>
		<annotation cp="๐Ÿ˜–">confounded | face</annotation>
		<annotation cp="๐Ÿ˜–" type="tts">confounded face</annotation>
		<annotation cp="๐Ÿ˜ž">disappointed | face</annotation>
		<annotation cp="๐Ÿ˜ž" type="tts">disappointed face</annotation>
		<annotation cp="๐Ÿ˜Ÿ">face | worried</annotation>
		<annotation cp="๐Ÿ˜Ÿ" type="tts">worried face</annotation>
		<annotation cp="๐Ÿ˜ค">face | face with steam from nose | triumph | won</annotation>
		<annotation cp="๐Ÿ˜ค" type="tts">face with steam from nose</annotation>
		<annotation cp="๐Ÿ˜ข">cry | crying face | face | sad | tear</annotation>
		<annotation cp="๐Ÿ˜ข" type="tts">crying face</annotation>
		<annotation cp="๐Ÿ˜ญ">cry | face | loudly crying face | sad | sob | tear</annotation>
		<annotation cp="๐Ÿ˜ญ" type="tts">loudly crying face</annotation>
		<annotation cp="๐Ÿ˜ฆ">face | frown | frowning face with open mouth | mouth | open</annotation>
		<annotation cp="๐Ÿ˜ฆ" type="tts">frowning face with open mouth</annotation>
		<annotation cp="๐Ÿ˜ง">anguished | face</annotation>
		<annotation cp="๐Ÿ˜ง" type="tts">anguished face</annotation>
		<annotation cp="๐Ÿ˜จ">face | fear | fearful | scared</annotation>
		<annotation cp="๐Ÿ˜จ" type="tts">fearful face</annotation>
		<annotation cp="๐Ÿ˜ฉ">face | tired | weary</annotation>
		<annotation cp="๐Ÿ˜ฉ" type="tts">weary face</annotation>
		<annotation cp="๐Ÿคฏ">exploding head | shocked</annotation>
		<annotation cp="๐Ÿคฏ" type="tts">exploding head</annotation>
		<annotation cp="๐Ÿ˜ฌ">face | grimace | grimacing face</annotation>
		<annotation cp="๐Ÿ˜ฌ" type="tts">grimacing face</annotation>
		<annotation cp="๐Ÿ˜ฐ">anxious face with sweat | blue | cold | face | mouth | open | rushed | sweat</annotation>
		<annotation cp="๐Ÿ˜ฐ" type="tts">anxious face with sweat</annotation>
		<annotation cp="๐Ÿ˜ฑ">face | face screaming in fear | fear | fearful | munch | scared | scream</annotation>
		<annotation cp="๐Ÿ˜ฑ" type="tts">face screaming in fear</annotation>
		<annotation cp="๐Ÿ˜ณ">dazed | face | flushed</annotation>
		<annotation cp="๐Ÿ˜ณ" type="tts">flushed face</annotation>
		<annotation cp="๐Ÿคช">eye | goofy | large | small | zany face</annotation>
		<annotation cp="๐Ÿคช" type="tts">zany face</annotation>
		<annotation cp="๐Ÿ˜ต">dizzy | face</annotation>
		<annotation cp="๐Ÿ˜ต" type="tts">dizzy face</annotation>
		<annotation cp="๐Ÿ˜ก">angry | face | mad | pouting | rage | red</annotation>
		<annotation cp="๐Ÿ˜ก" type="tts">pouting face</annotation>
		<annotation cp="๐Ÿ˜ ">angry | face | mad</annotation>
		<annotation cp="๐Ÿ˜ " type="tts">angry face</annotation>
		<annotation cp="๐Ÿคฌ">face with symbols on mouth | swearing</annotation>
		<annotation cp="๐Ÿคฌ" type="tts">face with symbols on mouth</annotation>
		<annotation cp="๐Ÿ˜ท">cold | doctor | face | face with medical mask | mask | medicine | sick</annotation>
		<annotation cp="๐Ÿ˜ท" type="tts">face with medical mask</annotation>
		<annotation cp="๐Ÿค’">face | face with thermometer | ill | sick | thermometer</annotation>
		<annotation cp="๐Ÿค’" type="tts">face with thermometer</annotation>
		<annotation cp="๐Ÿค•">bandage | face | face with head-bandage | hurt | injury</annotation>
		<annotation cp="๐Ÿค•" type="tts">face with head-bandage</annotation>
		<annotation cp="๐Ÿคข">face | nauseated | vomit</annotation>
		<annotation cp="๐Ÿคข" type="tts">nauseated face</annotation>
		<annotation cp="๐Ÿคฎ">face vomiting | sick | vomit</annotation>
		<annotation cp="๐Ÿคฎ" type="tts">face vomiting</annotation>
		<annotation cp="๐Ÿคง">face | gesundheit | sneeze | sneezing face</annotation>
		<annotation cp="๐Ÿคง" type="tts">sneezing face</annotation>
		<annotation cp="๐Ÿ˜‡">angel | face | fairy tale | fantasy | halo | innocent | smile | smiling face with halo</annotation>
		<annotation cp="๐Ÿ˜‡" type="tts">smiling face with halo</annotation>
		<annotation cp="๐Ÿค ">cowboy | cowgirl | face | hat</annotation>
		<annotation cp="๐Ÿค " type="tts">cowboy hat face</annotation>
		<annotation cp="๐Ÿคก">clown | face</annotation>
		<annotation cp="๐Ÿคก" type="tts">clown face</annotation>
		<annotation cp="๐Ÿคฅ">face | lie | lying face | pinocchio</annotation>
		<annotation cp="๐Ÿคฅ" type="tts">lying face</annotation>
		<annotation cp="๐Ÿคซ">quiet | shush | shushing face</annotation>
		<annotation cp="๐Ÿคซ" type="tts">shushing face</annotation>
		<annotation cp="๐Ÿคญ">face with hand over mouth | whoops</annotation>
		<annotation cp="๐Ÿคญ" type="tts">face with hand over mouth</annotation>
		<annotation cp="๐Ÿง">face with monocle | stuffy</annotation>
		<annotation cp="๐Ÿง" type="tts">face with monocle</annotation>
		<annotation cp="๐Ÿค“">face | geek | nerd</annotation>
		<annotation cp="๐Ÿค“" type="tts">nerd face</annotation>
		<annotation cp="๐Ÿ˜ˆ">face | fairy tale | fantasy | horns | smile | smiling face with horns</annotation>
		<annotation cp="๐Ÿ˜ˆ" type="tts">smiling face with horns</annotation>
		<annotation cp="๐Ÿ‘ฟ">angry face with horns | demon | devil | face | fairy tale | fantasy | imp</annotation>
		<annotation cp="๐Ÿ‘ฟ" type="tts">angry face with horns</annotation>
		<annotation cp="๐Ÿ‘น">creature | face | fairy tale | fantasy | monster | ogre</annotation>
		<annotation cp="๐Ÿ‘น" type="tts">ogre</annotation>
		<annotation cp="๐Ÿ‘บ">creature | face | fairy tale | fantasy | goblin | monster</annotation>
		<annotation cp="๐Ÿ‘บ" type="tts">goblin</annotation>
		<annotation cp="๐Ÿ’€">death | face | fairy tale | monster | skull</annotation>
		<annotation cp="๐Ÿ’€" type="tts">skull</annotation>
		<annotation cp="โ˜ ">crossbones | death | face | monster | skull | skull and crossbones</annotation>
		<annotation cp="โ˜ " type="tts">skull and crossbones</annotation>
		<annotation cp="๐Ÿ‘ป">creature | face | fairy tale | fantasy | ghost | monster</annotation>
		<annotation cp="๐Ÿ‘ป" type="tts">ghost</annotation>
		<annotation cp="๐Ÿ‘ฝ">alien | creature | extraterrestrial | face | fairy tale | fantasy | monster | ufo</annotation>
		<annotation cp="๐Ÿ‘ฝ" type="tts">alien</annotation>
		<annotation cp="๐Ÿ‘พ">alien | creature | extraterrestrial | face | fairy tale | fantasy | monster | ufo</annotation>
		<annotation cp="๐Ÿ‘พ" type="tts">alien monster</annotation>
		<annotation cp="๐Ÿค–">face | monster | robot</annotation>
		<annotation cp="๐Ÿค–" type="tts">robot face</annotation>
		<annotation cp="๐Ÿ’ฉ">comic | dung | face | monster | pile of poo | poo | poop</annotation>
		<annotation cp="๐Ÿ’ฉ" type="tts">pile of poo</annotation>
		<annotation cp="๐Ÿ˜บ">cat | face | grinning cat face | mouth | open | smile</annotation>
		<annotation cp="๐Ÿ˜บ" type="tts">grinning cat face</annotation>
		<annotation cp="๐Ÿ˜ธ">cat | eye | face | grin | grinning cat face with smiling eyes | smile</annotation>
		<annotation cp="๐Ÿ˜ธ" type="tts">grinning cat face with smiling eyes</annotation>
		<annotation cp="๐Ÿ˜น">cat | cat face with tears of joy | face | joy | tear</annotation>
		<annotation cp="๐Ÿ˜น" type="tts">cat face with tears of joy</annotation>
		<annotation cp="๐Ÿ˜ป">cat | eye | face | love | smile | smiling cat face with heart-eyes</annotation>
		<annotation cp="๐Ÿ˜ป" type="tts">smiling cat face with heart-eyes</annotation>
		<annotation cp="๐Ÿ˜ผ">cat | cat face with wry smile | face | ironic | smile | wry</annotation>
		<annotation cp="๐Ÿ˜ผ" type="tts">cat face with wry smile</annotation>
		<annotation cp="๐Ÿ˜ฝ">cat | eye | face | kiss | kissing cat face</annotation>
		<annotation cp="๐Ÿ˜ฝ" type="tts">kissing cat face</annotation>
		<annotation cp="๐Ÿ™€">cat | face | oh | surprised | weary</annotation>
		<annotation cp="๐Ÿ™€" type="tts">weary cat face</annotation>
		<annotation cp="๐Ÿ˜ฟ">cat | cry | crying cat face | face | sad | tear</annotation>
		<annotation cp="๐Ÿ˜ฟ" type="tts">crying cat face</annotation>
		<annotation cp="๐Ÿ˜พ">cat | face | pouting</annotation>
		<annotation cp="๐Ÿ˜พ" type="tts">pouting cat face</annotation>
		<annotation cp="๐Ÿ™ˆ">evil | face | forbidden | gesture | monkey | no | not | prohibited | see | see-no-evil monkey</annotation>
		<annotation cp="๐Ÿ™ˆ" type="tts">see-no-evil monkey</annotation>
		<annotation cp="๐Ÿ™‰">evil | face | forbidden | gesture | hear | hear-no-evil monkey | monkey | no | not | prohibited</annotation>
		<annotation cp="๐Ÿ™‰" type="tts">hear-no-evil monkey</annotation>
		<annotation cp="๐Ÿ™Š">evil | face | forbidden | gesture | monkey | no | not | prohibited | speak | speak-no-evil monkey</annotation>
		<annotation cp="๐Ÿ™Š" type="tts">speak-no-evil monkey</annotation>
		<annotation cp="๐Ÿ‘ถ">baby | young</annotation>
		<annotation cp="๐Ÿ‘ถ" type="tts">baby</annotation>
		<annotation cp="๐Ÿง’">child | gender-neutral | young</annotation>
		<annotation cp="๐Ÿง’" type="tts">child</annotation>
		<annotation cp="๐Ÿ‘ฆ">boy | young</annotation>
		<annotation cp="๐Ÿ‘ฆ" type="tts">boy</annotation>
		<annotation cp="๐Ÿ‘ง">girl | Virgo | young | zodiac</annotation>
		<annotation cp="๐Ÿ‘ง" type="tts">girl</annotation>
		<annotation cp="๐Ÿง‘">adult | gender-neutral</annotation>
		<annotation cp="๐Ÿง‘" type="tts">adult</annotation>
		<annotation cp="๐Ÿ‘จ">man</annotation>
		<annotation cp="๐Ÿ‘จ" type="tts">man</annotation>
		<annotation cp="๐Ÿ‘ฉ">woman</annotation>
		<annotation cp="๐Ÿ‘ฉ" type="tts">woman</annotation>
		<annotation cp="๐Ÿง“">gender-neutral | old | older adult</annotation>
		<annotation cp="๐Ÿง“" type="tts">older adult</annotation>
		<annotation cp="๐Ÿ‘ด">man | old</annotation>
		<annotation cp="๐Ÿ‘ด" type="tts">old man</annotation>
		<annotation cp="๐Ÿ‘ต">old | woman</annotation>
		<annotation cp="๐Ÿ‘ต" type="tts">old woman</annotation>
		<annotation cp="๐Ÿ‘จโ€โš•">doctor | healthcare | man | man health worker | nurse | therapist</annotation>
		<annotation cp="๐Ÿ‘จโ€โš•" type="tts">man health worker</annotation>
		<annotation cp="๐Ÿ‘ฉโ€โš•">doctor | healthcare | nurse | therapist | woman | woman health worker</annotation>
		<annotation cp="๐Ÿ‘ฉโ€โš•" type="tts">woman health worker</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŽ“">graduate | man | student</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŽ“" type="tts">man student</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŽ“">graduate | student | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŽ“" type="tts">woman student</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿซ">instructor | man | professor | teacher</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿซ" type="tts">man teacher</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿซ">instructor | professor | teacher | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿซ" type="tts">woman teacher</annotation>
		<annotation cp="๐Ÿ‘จโ€โš–">justice | man | man judge | scales</annotation>
		<annotation cp="๐Ÿ‘จโ€โš–" type="tts">man judge</annotation>
		<annotation cp="๐Ÿ‘ฉโ€โš–">judge | scales | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€โš–" type="tts">woman judge</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŒพ">farmer | gardener | man | rancher</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŒพ" type="tts">man farmer</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŒพ">farmer | gardener | rancher | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŒพ" type="tts">woman farmer</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿณ">chef | cook | man</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿณ" type="tts">man cook</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿณ">chef | cook | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿณ" type="tts">woman cook</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ”ง">electrician | man | mechanic | plumber | tradesperson</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ”ง" type="tts">man mechanic</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ”ง">electrician | mechanic | plumber | tradesperson | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ”ง" type="tts">woman mechanic</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿญ">assembly | factory | industrial | man | worker</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿญ" type="tts">man factory worker</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿญ">assembly | factory | industrial | woman | worker</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿญ" type="tts">woman factory worker</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ’ผ">architect | business | man | man office worker | manager | office | white-collar</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ’ผ" type="tts">man office worker</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ’ผ">architect | business | manager | office | white-collar | woman | woman office worker</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ’ผ" type="tts">woman office worker</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ”ฌ">biologist | chemist | engineer | man | mathematician | physicist | scientist</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ”ฌ" type="tts">man scientist</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ”ฌ">biologist | chemist | engineer | mathematician | physicist | scientist | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ”ฌ" type="tts">woman scientist</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ’ป">coder | developer | inventor | man | software | technologist</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿ’ป" type="tts">man technologist</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ’ป">coder | developer | inventor | software | technologist | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿ’ป" type="tts">woman technologist</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŽค">actor | entertainer | man | rock | singer | star</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŽค" type="tts">man singer</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŽค">actor | entertainer | rock | singer | star | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŽค" type="tts">woman singer</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŽจ">artist | man | palette</annotation>
		<annotation cp="๐Ÿ‘จโ€๐ŸŽจ" type="tts">man artist</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŽจ">artist | palette | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐ŸŽจ" type="tts">woman artist</annotation>
		<annotation cp="๐Ÿ‘จโ€โœˆ">man | pilot | plane</annotation>
		<annotation cp="๐Ÿ‘จโ€โœˆ" type="tts">man pilot</annotation>
		<annotation cp="๐Ÿ‘ฉโ€โœˆ">pilot | plane | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€โœˆ" type="tts">woman pilot</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿš€">astronaut | man | rocket</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿš€" type="tts">man astronaut</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿš€">astronaut | rocket | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿš€" type="tts">woman astronaut</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿš’">firefighter | firetruck | man</annotation>
		<annotation cp="๐Ÿ‘จโ€๐Ÿš’" type="tts">man firefighter</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿš’">firefighter | firetruck | woman</annotation>
		<annotation cp="๐Ÿ‘ฉโ€๐Ÿš’" type="tts">woman firefighter</annotation>
		<annotation cp="๐Ÿ‘ฎ">cop | officer | police</annotation>
		<annotation cp="๐Ÿ‘ฎ" type="tts">police officer</annotation>
		<annotation cp="๐Ÿ‘ฎโ€โ™‚">cop | man | officer | police</annotation>
		<annotation cp="๐Ÿ‘ฎโ€โ™‚" type="tts">man police officer</annotation>
		<annotation cp="๐Ÿ‘ฎโ€โ™€">cop | officer | police | woman</annotation>
		<annotation cp="๐Ÿ‘ฎโ€โ™€" type="tts">woman police officer</annotation>
		<annotation cp="๐Ÿ•ต">detective | sleuth | spy</annotation>
		<annotation cp="๐Ÿ•ต" type="tts">detective</annotation>
		<annotation cp="๐Ÿ•ตโ€โ™‚">detective | man | sleuth | spy</annotation>
		<annotation cp="๐Ÿ•ตโ€โ™‚" type="tts">man detective</annotation>
		<annotation cp="๐Ÿ•ตโ€โ™€">detective | sleuth | spy | woman</annotation>
		<annotation cp="๐Ÿ•ตโ€โ™€" type="tts">woman detective</annotation>
		<annotation cp="๐Ÿ’‚">guard</annotation>
		<annotation cp="๐Ÿ’‚" type="tts">guard</annotation>
		<annotation cp="๐Ÿ’‚โ€โ™‚">guard | man</annotation>
		<annotation cp="๐Ÿ’‚โ€โ™‚" type="tts">man guard</annotation>
		<annotation cp="๐Ÿ’‚โ€โ™€">guard | woman</annotation>
		<annotation cp="๐Ÿ’‚โ€โ™€" type="tts">woman guard</annotation>
		<annotation cp="๐Ÿ‘ท">construction | hat | worker</annotation>
		<annotation cp="๐Ÿ‘ท" type="tts">construction worker</annotation>
		<annotation cp="๐Ÿ‘ทโ€โ™‚">construction | man | worker</annotation>
		<annotation cp="๐Ÿ‘ทโ€โ™‚" type="tts">man construction worker</annotation>
		<annotation cp="๐Ÿ‘ทโ€โ™€">construction | woman | worker</annotation>
		<annotation cp="๐Ÿ‘ทโ€โ™€" type="tts">woman construction worker</annotation>
		<annotation cp="๐Ÿคด">prince</annotation>
		<annotation cp="๐Ÿคด" type="tts">prince</annotation>
		<annotation cp="๐Ÿ‘ธ">fairy tale | fantasy | princess</annotation>
		<annotation cp="๐Ÿ‘ธ" type="tts">princess</annotation>
		<annotation cp="๐Ÿ‘ณ">person wearing turban | turban</annotation>
		<annotation cp="๐Ÿ‘ณ" type="tts">person wearing turban</annotation>
		<annotation cp="๐Ÿ‘ณโ€โ™‚">man | man wearing turban | turban</annotation>
		<annotation cp="๐Ÿ‘ณโ€โ™‚" type="tts">man wearing turban</annotation>
		<annotation cp="๐Ÿ‘ณโ€โ™€">turban | woman | woman wearing turban</annotation>
		<annotation cp="๐Ÿ‘ณโ€โ™€" type="tts">woman wearing turban</annotation>
		<annotation cp="๐Ÿ‘ฒ">gua pi mao | hat | man | man with Chinese cap</annotation>
		<annotation cp="๐Ÿ‘ฒ" type="tts">man with Chinese cap</annotation>
		<annotation cp="๐Ÿง•">headscarf | hijab | mantilla | tichel | woman with headscarf</annotation>
		<annotation cp="๐Ÿง•" type="tts">woman with headscarf</annotation>
		<annotation cp="๐Ÿง”">beard | bearded person</annotation>
		<annotation cp="๐Ÿง”" type="tts">bearded person</annotation>
		<annotation cp="๐Ÿ‘ฑ">blond | blond-haired person</annotation>
		<annotation cp="๐Ÿ‘ฑ" type="tts">blond-haired person</annotation>
		<annotation cp="๐Ÿ‘ฑโ€โ™‚">blond | blond-haired man | man</annotation>
		<annotation cp="๐Ÿ‘ฑโ€โ™‚" type="tts">blond-haired man</annotation>
		<annotation cp="๐Ÿ‘ฑโ€โ™€">blond-haired woman | blonde | woman</annotation>
		<annotation cp="๐Ÿ‘ฑโ€โ™€" type="tts">blond-haired woman</annotation>
		<annotation cp="๐Ÿคต">groom | man | man in tuxedo | tuxedo</annotation>
		<annotation cp="๐Ÿคต" type="tts">man in tuxedo</annotation>
		<annotation cp="๐Ÿ‘ฐ">bride | bride with veil | veil | wedding</annotation>
		<annotation cp="๐Ÿ‘ฐ" type="tts">bride with veil</annotation>
		<annotation cp="๐Ÿคฐ">pregnant | woman</annotation>
		<annotation cp="๐Ÿคฐ" type="tts">pregnant woman</annotation>
		<annotation cp="๐Ÿคฑ">baby | breast | breast-feeding | nursing</annotation>
		<annotation cp="๐Ÿคฑ" type="tts">breast-feeding</annotation>
		<annotation cp="๐Ÿ‘ผ">angel | baby | face | fairy tale | fantasy</annotation>
		<annotation cp="๐Ÿ‘ผ" type="tts">baby angel</annotation>
		<annotation cp="๐ŸŽ…">celebration | Christmas | claus | father | santa | Santa Claus</annotation>
		<annotation cp="๐ŸŽ…" type="tts">Santa Claus</annotation>
		<annotation cp="๐Ÿคถ">celebration | Christmas | claus | mother | Mrs. | Mrs. Claus</annotation>
		<annotation cp="๐Ÿคถ" type="tts">Mrs. Claus</annotation>
		<annotation cp="๐Ÿง™">mage | sorcerer | sorceress | witch | wizard</annotation>
		<annotation cp="๐Ÿง™" type="tts">mage</annotation>
		<annotation cp="๐Ÿง™โ€โ™€">sorceress | witch | woman mage</annotation>
		<annotation cp="๐Ÿง™โ€โ™€" type="tts">woman mage</annotation>
		<annotation cp="๐Ÿง™โ€โ™‚">man mage | sorcerer | wizard</annotation>
		<annotation cp="๐Ÿง™โ€โ™‚" type="tts">man mage</annotation>
		<annotation cp="๐Ÿงš">fairy | Oberon | Puck | Titania</annotation>
		<annotation cp="๐Ÿงš" type="tts">fairy</annotation>
		<annotation cp="๐Ÿงšโ€โ™€">Titania | woman fairy</annotation>
		<annotation cp="๐Ÿงšโ€โ™€" type="tts">woman fairy</annotation>
		<annotation cp="๐Ÿงšโ€โ™‚">man fairy | Oberon | Puck</annotation>
		<annotation cp="๐Ÿงšโ€โ™‚" type="tts">man fairy</annotation>
		<annotation cp="๐Ÿง›">Dracula | undead | vampire</annotation>
		<annotation cp="๐Ÿง›" type="tts">vampire</annotation>
		<annotation cp="๐Ÿง›โ€โ™€">undead | woman vampire</annotation>
		<annotation cp="๐Ÿง›โ€โ™€" type="tts">woman vampire</annotation>
		<annotation cp="๐Ÿง›โ€โ™‚">Dracula | man vampire | undead</annotation>
		<annotation cp="๐Ÿง›โ€โ™‚" type="tts">man vampire</annotation>
		<annotation cp="๐Ÿงœ">mermaid | merman | merperson | merwoman</annotation>
		<annotation cp="๐Ÿงœ" type="tts">merperson</annotation>
		<annotation cp="๐Ÿงœโ€โ™€">mermaid | merwoman</annotation>
		<annotation cp="๐Ÿงœโ€โ™€" type="tts">mermaid</annotation>
		<annotation cp="๐Ÿงœโ€โ™‚">merman | Triton</annotation>
		<annotation cp="๐Ÿงœโ€โ™‚" type="tts">merman</annotation>
		<annotation cp="๐Ÿง">elf | magical</annotation>
		<annotation cp="๐Ÿง" type="tts">elf</annotation>
		<annotation cp="๐Ÿงโ€โ™€">magical | woman elf</annotation>
		<annotation cp="๐Ÿงโ€โ™€" type="tts">woman elf</annotation>
		<annotation cp="๐Ÿงโ€โ™‚">magical | man elf</annotation>
		<annotation cp="๐Ÿงโ€โ™‚" type="tts">man elf</annotation>
		<annotation cp="๐Ÿงž">djinn | genie</annotation>
		<annotation cp="๐Ÿงž" type="tts">genie</annotation>
		<annotation cp="๐Ÿงžโ€โ™€">djinn | woman genie</annotation>
		<annotation cp="๐Ÿงžโ€โ™€" type="tts">woman genie</annotation>
		<annotation cp="๐Ÿงžโ€โ™‚">djinn | man genie</annotation>
		<annotation cp="๐Ÿงžโ€โ™‚" type="tts">man genie</annotation>
		<annotation cp="๐ŸงŸ">undead | walking dead | zombie</annotation>
		<annotation cp="๐ŸงŸ" type="tts">zombie</annotation>
		<annotation cp="๐ŸงŸโ€โ™€">undead | walking dead | woman zombie</annotation>
		<annotation cp="๐ŸงŸโ€โ™€" type="tts">woman zombie</annotation>
		<annotation cp="๐ŸงŸโ€โ™‚">man zombie | undead | walking dead</annotation>
		<annotation cp="๐ŸงŸโ€โ™‚" type="tts">man zombie</annotation>
		<annotation cp="๐Ÿ™">frown | gesture | person frowning</annotation>
		<annotation cp="๐Ÿ™" type="tts">person frowning</annotation>
		<annotation cp="๐Ÿ™โ€โ™‚">frowning | gesture | man</annotation>
		<annotation cp="๐Ÿ™โ€โ™‚" type="tts">man frowning</annotation>
		<annotation cp="๐Ÿ™โ€โ™€">frowning | gesture | woman</annotation>
		<annotation cp="๐Ÿ™โ€โ™€" type="tts">woman frowning</annotation>
		<annotation cp="๐Ÿ™Ž">gesture | person pouting | pouting</annotation>
		<annotation cp="๐Ÿ™Ž" type="tts">person pouting</annotation>
		<annotation cp="๐Ÿ™Žโ€โ™‚">gesture | man | pouting</annotation>
		<annotation cp="๐Ÿ™Žโ€โ™‚" type="tts">man pouting</annotation>
		<annotation cp="๐Ÿ™Žโ€โ™€">gesture | pouting | woman</annotation>
		<annotation cp="๐Ÿ™Žโ€โ™€" type="tts">woman pouting</annotation>
		<annotation cp="๐Ÿ™…">forbidden | gesture | hand | no | not | person gesturing NO | prohibited</annotation>
		<annotation cp="๐Ÿ™…" type="tts">person gesturing NO</annotation>
		<annotation cp="๐Ÿ™…โ€โ™‚">forbidden | gesture | hand | man | man gesturing NO | no | prohibited</annotation>
		<annotation cp="๐Ÿ™…โ€โ™‚" type="tts">man gesturing NO</annotation>
		<annotation cp="๐Ÿ™…โ€โ™€">forbidden | gesture | hand | no | prohibited | woman | woman gesturing NO</annotation>
		<annotation cp="๐Ÿ™…โ€โ™€" type="tts">woman gesturing NO</annotation>
		<annotation cp="๐Ÿ™†">gesture | hand | OK | person gesturing OK</annotation>
		<annotation cp="๐Ÿ™†" type="tts">person gesturing OK</annotation>
		<annotation cp="๐Ÿ™†โ€โ™‚">gesture | hand | man | man gesturing OK | OK</annotation>
		<annotation cp="๐Ÿ™†โ€โ™‚" type="tts">man gesturing OK</annotation>
		<annotation cp="๐Ÿ™†โ€โ™€">gesture | hand | OK | woman | woman gesturing OK</annotation>
		<annotation cp="๐Ÿ™†โ€โ™€" type="tts">woman gesturing OK</annotation>
		<annotation cp="๐Ÿ’">hand | help | information | person tipping hand | sassy | tipping</annotation>
		<annotation cp="๐Ÿ’" type="tts">person tipping hand</annotation>
		<annotation cp="๐Ÿ’โ€โ™‚">man | man tipping hand | sassy | tipping hand</annotation>
		<annotation cp="๐Ÿ’โ€โ™‚" type="tts">man tipping hand</annotation>
		<annotation cp="๐Ÿ’โ€โ™€">sassy | tipping hand | woman | woman tipping hand</annotation>
		<annotation cp="๐Ÿ’โ€โ™€" type="tts">woman tipping hand</annotation>
		<annotation cp="๐Ÿ™‹">gesture | hand | happy | person raising hand | raised</annotation>
		<annotation cp="๐Ÿ™‹" type="tts">person raising hand</annotation>
		<annotation cp="๐Ÿ™‹โ€โ™‚">gesture | man | man raising hand | raising hand</annotation>
		<annotation cp="๐Ÿ™‹โ€โ™‚" type="tts">man raising hand</annotation>
		<annotation cp="๐Ÿ™‹โ€โ™€">gesture | raising hand | woman | woman raising hand</annotation>
		<annotation cp="๐Ÿ™‹โ€โ™€" type="tts">woman raising hand</annotation>
		<annotation cp="๐Ÿ™‡">apology | bow | gesture | person bowing | sorry</annotation>
		<annotation cp="๐Ÿ™‡" type="tts">person bowing</annotation>
		<annotation cp="๐Ÿ™‡โ€โ™‚">apology | bowing | favor | gesture | man | sorry</annotation>
		<annotation cp="๐Ÿ™‡โ€โ™‚" type="tts">man bowing</annotation>
		<annotation cp="๐Ÿ™‡โ€โ™€">apology | bowing | favor | gesture | sorry | woman</annotation>
		<annotation cp="๐Ÿ™‡โ€โ™€" type="tts">woman bowing</annotation>
		<annotation cp="๐Ÿคฆ">disbelief | exasperation | face | palm | person facepalming</annotation>
		<annotation cp="๐Ÿคฆ" type="tts">person facepalming</annotation>
		<annotation cp="๐Ÿคฆโ€โ™‚">disbelief | exasperation | facepalm | man | man facepalming</annotation>
		<annotation cp="๐Ÿคฆโ€โ™‚" type="tts">man facepalming</annotation>
		<annotation cp="๐Ÿคฆโ€โ™€">disbelief | exasperation | facepalm | woman | woman facepalming</annotation>
		<annotation cp="๐Ÿคฆโ€โ™€" type="tts">woman facepalming</annotation>
		<annotation cp="๐Ÿคท">doubt | ignorance | indifference | person shrugging | shrug</annotation>
		<annotation cp="๐Ÿคท" type="tts">person shrugging</annotation>
		<annotation cp="๐Ÿคทโ€โ™‚">doubt | ignorance | indifference | man | man shrugging | shrug</annotation>
		<annotation cp="๐Ÿคทโ€โ™‚" type="tts">man shrugging</annotation>
		<annotation cp="๐Ÿคทโ€โ™€">doubt | ignorance | indifference | shrug | woman | woman shrugging</annotation>
		<annotation cp="๐Ÿคทโ€โ™€" type="tts">woman shrugging</annotation>
		<annotation cp="๐Ÿ’†">face | massage | person getting massage | salon</annotation>
		<annotation cp="๐Ÿ’†" type="tts">person getting massage</annotation>
		<annotation cp="๐Ÿ’†โ€โ™‚">face | man | man getting massage | massage</annotation>
		<annotation cp="๐Ÿ’†โ€โ™‚" type="tts">man getting massage</annotation>
		<annotation cp="๐Ÿ’†โ€โ™€">face | massage | woman | woman getting massage</annotation>
		<annotation cp="๐Ÿ’†โ€โ™€" type="tts">woman getting massage</annotation>
		<annotation cp="๐Ÿ’‡">barber | beauty | haircut | parlor | person getting haircut</annotation>
		<annotation cp="๐Ÿ’‡" type="tts">person getting haircut</annotation>
		<annotation cp="๐Ÿ’‡โ€โ™‚">haircut | man | man getting haircut</annotation>
		<annotation cp="๐Ÿ’‡โ€โ™‚" type="tts">man getting haircut</annotation>
		<annotation cp="๐Ÿ’‡โ€โ™€">haircut | woman | woman getting haircut</annotation>
		<annotation cp="๐Ÿ’‡โ€โ™€" type="tts">woman getting haircut</annotation>
		<annotation cp="๐Ÿšถ">hike | person walking | walk | walking</annotation>
		<annotation cp="๐Ÿšถ" type="tts">person walking</annotation>
		<annotation cp="๐Ÿšถโ€โ™‚">hike | man | man walking | walk</annotation>
		<annotation cp="๐Ÿšถโ€โ™‚" type="tts">man walking</annotation>
		<annotation cp="๐Ÿšถโ€โ™€">hike | walk | woman | woman walking</annotation>
		<annotation cp="๐Ÿšถโ€โ™€" type="tts">woman walking</annotation>
		<annotation cp="๐Ÿƒ">marathon | person running | running</annotation>
		<annotation cp="๐Ÿƒ" type="tts">person running</annotation>
		<annotation cp="๐Ÿƒโ€โ™‚">man | marathon | racing | running</annotation>
		<annotation cp="๐Ÿƒโ€โ™‚" type="tts">man running</annotation>
		<annotation cp="๐Ÿƒโ€โ™€">marathon | racing | running | woman</annotation>
		<annotation cp="๐Ÿƒโ€โ™€" type="tts">woman running</annotation>
		<annotation cp="๐Ÿ’ƒ">dancing | woman</annotation>
		<annotation cp="๐Ÿ’ƒ" type="tts">woman dancing</annotation>
		<annotation cp="๐Ÿ•บ">dance | man | man dancing</annotation>
		<annotation cp="๐Ÿ•บ" type="tts">man dancing</annotation>
		<annotation cp="๐Ÿ‘ฏ">bunny ear | dancer | partying | people with bunny ears</annotation>
		<annotation cp="๐Ÿ‘ฏ" type="tts">people with bunny ears</annotation>
		<annotation cp="๐Ÿ‘ฏโ€โ™‚">bunny ear | dancer | men | men with bunny ears | partying</annotation>
		<annotation cp="๐Ÿ‘ฏโ€โ™‚" type="tts">men with bunny ears</annotation>
		<annotation cp="๐Ÿ‘ฏโ€โ™€">bunny ear | dancer | partying | women | women with bunny ears</annotation>
		<annotation cp="๐Ÿ‘ฏโ€โ™€" type="tts">women with bunny ears</annotation>
		<annotation cp="๐Ÿง–">person in steamy room | sauna | steam room</annotation>
		<annotation cp="๐Ÿง–" type="tts">person in steamy room</annotation>
		<annotation cp="๐Ÿง–โ€โ™€">sauna | steam room | woman in steamy room</annotation>
		<annotation cp="๐Ÿง–โ€โ™€" type="tts">woman in steamy room</annotation>
		<annotation cp="๐Ÿง–โ€โ™‚">man in steamy room | sauna | steam room</annotation>
		<annotation cp="๐Ÿง–โ€โ™‚" type="tts">man in steamy room</annotation>
		<annotation cp="๐Ÿง—">climber | person climbing</annotation>
		<annotation cp="๐Ÿง—" type="tts">person climbing</annotation>
		<annotation cp="๐Ÿง—โ€โ™€">climber | woman climbing</annotation>
		<annotation cp="๐Ÿง—โ€โ™€" type="tts">woman climbing</annotation>
		<annotation cp="๐Ÿง—โ€โ™‚">climber | man climbing</annotation>
		<annotation cp="๐Ÿง—โ€โ™‚" type="tts">man climbing</annotation>
		<annotation cp="๐Ÿง˜">meditation | person in lotus position | yoga</annotation>
		<annotation cp="๐Ÿง˜" type="tts">person in lotus position</annotation>
		<annotation cp="๐Ÿง˜โ€โ™€">meditation | woman in lotus position | yoga</annotation>
		<annotation cp="๐Ÿง˜โ€โ™€" type="tts">woman in lotus position</annotation>
		<annotation cp="๐Ÿง˜โ€โ™‚">man in lotus position | meditation | yoga</annotation>
		<annotation cp="๐Ÿง˜โ€โ™‚" type="tts">man in lotus position</annotation>
		<annotation cp="๐Ÿ›€">bath | bathtub | person taking bath</annotation>
		<annotation cp="๐Ÿ›€" type="tts">person taking bath</annotation>
		<annotation cp="๐Ÿ›Œ">hotel | person in bed | sleep</annotation>
		<annotation cp="๐Ÿ›Œ" type="tts">person in bed</annotation>
		<annotation cp="๐Ÿ•ด">business | man | man in suit levitating | suit</annotation>
		<annotation cp="๐Ÿ•ด" type="tts">man in suit levitating</annotation>
		<annotation cp="๐Ÿ—ฃ">face | head | silhouette | speak | speaking</annotation>
		<annotation cp="๐Ÿ—ฃ" type="tts">speaking head</annotation>
		<annotation cp="๐Ÿ‘ค">bust | bust in silhouette | silhouette</annotation>
		<annotation cp="๐Ÿ‘ค" type="tts">bust in silhouette</annotation>
		<annotation cp="๐Ÿ‘ฅ">bust | busts in silhouette | silhouette</annotation>
		<annotation cp="๐Ÿ‘ฅ" type="tts">busts in silhouette</annotation>
		<annotation cp="๐Ÿคบ">fencer | fencing | person fencing | sword</annotation>
		<annotation cp="๐Ÿคบ" type="tts">person fencing</annotation>
		<annotation cp="๐Ÿ‡">horse | jockey | racehorse | racing</annotation>
		<annotation cp="๐Ÿ‡" type="tts">horse racing</annotation>
		<annotation cp="โ›ท">ski | skier | snow</annotation>
		<annotation cp="โ›ท" type="tts">skier</annotation>
		<annotation cp="๐Ÿ‚">ski | snow | snowboard | snowboarder</annotation>
		<annotation cp="๐Ÿ‚" type="tts">snowboarder</annotation>
		<annotation cp="๐ŸŒ">ball | golf | person golfing</annotation>
		<annotation cp="๐ŸŒ" type="tts">person golfing</annotation>
		<annotation cp="๐ŸŒโ€โ™‚">golf | man | man golfing</annotation>
		<annotation cp="๐ŸŒโ€โ™‚" type="tts">man golfing</annotation>
		<annotation cp="๐ŸŒโ€โ™€">golf | woman | woman golfing</annotation>
		<annotation cp="๐ŸŒโ€โ™€" type="tts">woman golfing</annotation>
		<annotation cp="๐Ÿ„">person surfing | surfing</annotation>
		<annotation cp="๐Ÿ„" type="tts">person surfing</annotation>
		<annotation cp="๐Ÿ„โ€โ™‚">man | surfing</annotation>
		<annotation cp="๐Ÿ„โ€โ™‚" type="tts">man surfing</annotation>
		<annotation cp="๐Ÿ„โ€โ™€">surfing | woman</annotation>
		<annotation cp="๐Ÿ„โ€โ™€" type="tts">woman surfing</annotation>
		<annotation cp="๐Ÿšฃ">boat | person rowing boat | rowboat</annotation>
		<annotation cp="๐Ÿšฃ" type="tts">person rowing boat</annotation>
		<annotation cp="๐Ÿšฃโ€โ™‚">boat | man | man rowing boat | rowboat</annotation>
		<annotation cp="๐Ÿšฃโ€โ™‚" type="tts">man rowing boat</annotation>
		<annotation cp="๐Ÿšฃโ€โ™€">boat | rowboat | woman | woman rowing boat</annotation>
		<annotation cp="๐Ÿšฃโ€โ™€" type="tts">woman rowing boat</annotation>
		<annotation cp="๐ŸŠ">person swimming | swim</annotation>
		<annotation cp="๐ŸŠ" type="tts">person swimming</annotation>
		<annotation cp="๐ŸŠโ€โ™‚">man | man swimming | swim</annotation>
		<annotation cp="๐ŸŠโ€โ™‚" type="tts">man swimming</annotation>
		<annotation cp="๐ŸŠโ€โ™€">swim | woman | woman swimming</annotation>
		<annotation cp="๐ŸŠโ€โ™€" type="tts">woman swimming</annotation>
		<annotation cp="โ›น">ball | person bouncing ball</annotation>
		<annotation cp="โ›น" type="tts">person bouncing ball</annotation>
		<annotation cp="โ›นโ€โ™‚">ball | man | man bouncing ball</annotation>
		<annotation cp="โ›นโ€โ™‚" type="tts">man bouncing ball</annotation>
		<annotation cp="โ›นโ€โ™€">ball | woman | woman bouncing ball</annotation>
		<annotation cp="โ›นโ€โ™€" type="tts">woman bouncing ball</annotation>
		<annotation cp="๐Ÿ‹">lifter | person lifting weights | weight</annotation>
		<annotation cp="๐Ÿ‹" type="tts">person lifting weights</annotation>
		<annotation cp="๐Ÿ‹โ€โ™‚">man | man lifting weights | weight lifter</annotation>
		<annotation cp="๐Ÿ‹โ€โ™‚" type="tts">man lifting weights</annotation>
		<annotation cp="๐Ÿ‹โ€โ™€">weight lifter | woman | woman lifting weights</annotation>
		<annotation cp="๐Ÿ‹โ€โ™€" type="tts">woman lifting weights</annotation>
		<annotation cp="๐Ÿšด">bicycle | biking | cyclist | person biking</annotation>
		<annotation cp="๐Ÿšด" type="tts">person biking</annotation>
		<annotation cp="๐Ÿšดโ€โ™‚">bicycle | biking | cyclist | man</annotation>
		<annotation cp="๐Ÿšดโ€โ™‚" type="tts">man biking</annotation>
		<annotation cp="๐Ÿšดโ€โ™€">bicycle | biking | cyclist | woman</annotation>
		<annotation cp="๐Ÿšดโ€โ™€" type="tts">woman biking</annotation>
		<annotation cp="๐Ÿšต">bicycle | bicyclist | bike | cyclist | mountain | person mountain biking</annotation>
		<annotation cp="๐Ÿšต" type="tts">person mountain biking</annotation>
		<annotation cp="๐Ÿšตโ€โ™‚">bicycle | bike | cyclist | man | man mountain biking | mountain</annotation>
		<annotation cp="๐Ÿšตโ€โ™‚" type="tts">man mountain biking</annotation>
		<annotation cp="๐Ÿšตโ€โ™€">bicycle | bike | biking | cyclist | mountain | woman</annotation>
		<annotation cp="๐Ÿšตโ€โ™€" type="tts">woman mountain biking</annotation>
		<annotation cp="๐ŸŽ">car | racing</annotation>
		<annotation cp="๐ŸŽ" type="tts">racing car</annotation>
		<annotation cp="๐Ÿ">motorcycle | racing</annotation>
		<annotation cp="๐Ÿ" type="tts">motorcycle</annotation>
		<annotation cp="๐Ÿคธ">cartwheel | gymnastics | person cartwheeling</annotation>
		<annotation cp="๐Ÿคธ" type="tts">person cartwheeling</annotation>
		<annotation cp="๐Ÿคธโ€โ™‚">cartwheel | gymnastics | man | man cartwheeling</annotation>
		<annotation cp="๐Ÿคธโ€โ™‚" type="tts">man cartwheeling</annotation>
		<annotation cp="๐Ÿคธโ€โ™€">cartwheel | gymnastics | woman | woman cartwheeling</annotation>
		<annotation cp="๐Ÿคธโ€โ™€" type="tts">woman cartwheeling</annotation>
		<annotation cp="๐Ÿคผ">people wrestling | wrestle | wrestler</annotation>
		<annotation cp="๐Ÿคผ" type="tts">people wrestling</annotation>
		<annotation cp="๐Ÿคผโ€โ™‚">men | men wrestling | wrestle</annotation>
		<annotation cp="๐Ÿคผโ€โ™‚" type="tts">men wrestling</annotation>
		<annotation cp="๐Ÿคผโ€โ™€">women | women wrestling | wrestle</annotation>
		<annotation cp="๐Ÿคผโ€โ™€" type="tts">women wrestling</annotation>
		<annotation cp="๐Ÿคฝ">person playing water polo | polo | water</annotation>
		<annotation cp="๐Ÿคฝ" type="tts">person playing water polo</annotation>
		<annotation cp="๐Ÿคฝโ€โ™‚">man | man playing water polo | water polo</annotation>
		<annotation cp="๐Ÿคฝโ€โ™‚" type="tts">man playing water polo</annotation>
		<annotation cp="๐Ÿคฝโ€โ™€">water polo | woman | woman playing water polo</annotation>
		<annotation cp="๐Ÿคฝโ€โ™€" type="tts">woman playing water polo</annotation>
		<annotation cp="๐Ÿคพ">ball | handball | person playing handball</annotation>
		<annotation cp="๐Ÿคพ" type="tts">person playing handball</annotation>
		<annotation cp="๐Ÿคพโ€โ™‚">handball | man | man playing handball</annotation>
		<annotation cp="๐Ÿคพโ€โ™‚" type="tts">man playing handball</annotation>
		<annotation cp="๐Ÿคพโ€โ™€">handball | woman | woman playing handball</annotation>
		<annotation cp="๐Ÿคพโ€โ™€" type="tts">woman playing handball</annotation>
		<annotation cp="๐Ÿคน">balance | juggle | multitask | person juggling | skill</annotation>
		<annotation cp="๐Ÿคน" type="tts">person juggling</annotation>
		<annotation cp="๐Ÿคนโ€โ™‚">juggling | man | multitask</annotation>
		<annotation cp="๐Ÿคนโ€โ™‚" type="tts">man juggling</annotation>
		<annotation cp="๐Ÿคนโ€โ™€">juggling | multitask | woman</annotation>
		<annotation cp="๐Ÿคนโ€โ™€" type="tts">woman juggling</annotation>
		<annotation cp="๐Ÿ‘ซ">couple | hand | hold | man | man and woman holding hands | woman</annotation>
		<annotation cp="๐Ÿ‘ซ" type="tts">man and woman holding hands</annotation>
		<annotation cp="๐Ÿ‘ฌ">couple | Gemini | hand | hold | man | twins | two men holding hands | zodiac</annotation>
		<annotation cp="๐Ÿ‘ฌ" type="tts">two men holding hands</annotation>
		<annotation cp="๐Ÿ‘ญ">couple | hand | hold | two women holding hands | woman</annotation>
		<annotation cp="๐Ÿ‘ญ" type="tts">two women holding hands</annotation>
		<annotation cp="๐Ÿ’">couple | kiss</annotation>
		<annotation cp="๐Ÿ’" type="tts">kiss</annotation>
		<annotation cp="๐Ÿ’‘">couple | couple with heart | love</annotation>
		<annotation cp="๐Ÿ’‘" type="tts">couple with heart</annotation>
		<annotation cp="๐Ÿ‘ช">family</annotation>
		<annotation cp="๐Ÿ‘ช" type="tts">family</annotation>
		<annotation cp="๐Ÿคณ">camera | phone | selfie</annotation>
		<annotation cp="๐Ÿคณ" type="tts">selfie</annotation>
		<annotation cp="๐Ÿ’ช">biceps | comic | flex | flexed biceps | muscle</annotation>
		<annotation cp="๐Ÿ’ช" type="tts">flexed biceps</annotation>
		<annotation cp="๐Ÿ‘ˆ">backhand | backhand index pointing left | finger | hand | index | point</annotation>
		<annotation cp="๐Ÿ‘ˆ" type="tts">backhand index pointing left</annotation>
		<annotation cp="๐Ÿ‘‰">backhand | backhand index pointing right | finger | hand | index | point</annotation>
		<annotation cp="๐Ÿ‘‰" type="tts">backhand index pointing right</annotation>
		<annotation cp="โ˜">finger | hand | index | index pointing up | point | up</annotation>
		<annotation cp="โ˜" type="tts">index pointing up</annotation>
		<annotation cp="๐Ÿ‘†">backhand | backhand index pointing up | finger | hand | index | point | up</annotation>
		<annotation cp="๐Ÿ‘†" type="tts">backhand index pointing up</annotation>
		<annotation cp="๐Ÿ–•">finger | hand | middle finger</annotation>
		<annotation cp="๐Ÿ–•" type="tts">middle finger</annotation>
		<annotation cp="๐Ÿ‘‡">backhand | backhand index pointing down | down | finger | hand | index | point</annotation>
		<annotation cp="๐Ÿ‘‡" type="tts">backhand index pointing down</annotation>
		<annotation cp="โœŒ">hand | v | victory</annotation>
		<annotation cp="โœŒ" type="tts">victory hand</annotation>
		<annotation cp="๐Ÿคž">cross | crossed fingers | finger | hand | luck</annotation>
		<annotation cp="๐Ÿคž" type="tts">crossed fingers</annotation>
		<annotation cp="๐Ÿ––">finger | hand | spock | vulcan | vulcan salute</annotation>
		<annotation cp="๐Ÿ––" type="tts">vulcan salute</annotation>
		<annotation cp="๐Ÿค˜">finger | hand | horns | rock-on | sign of the horns</annotation>
		<annotation cp="๐Ÿค˜" type="tts">sign of the horns</annotation>
		<annotation cp="๐Ÿค™">call | call me hand | hand</annotation>
		<annotation cp="๐Ÿค™" type="tts">call me hand</annotation>
		<annotation cp="๐Ÿ–">finger | hand | hand with fingers splayed | splayed</annotation>
		<annotation cp="๐Ÿ–" type="tts">hand with fingers splayed</annotation>
		<annotation cp="โœ‹">hand | raised hand</annotation>
		<annotation cp="โœ‹" type="tts">raised hand</annotation>
		<annotation cp="๐Ÿ‘Œ">hand | OK</annotation>
		<annotation cp="๐Ÿ‘Œ" type="tts">OK hand</annotation>
		<annotation cp="๐Ÿ‘">+1 | hand | thumb | thumbs up | up</annotation>
		<annotation cp="๐Ÿ‘" type="tts">thumbs up</annotation>
		<annotation cp="๐Ÿ‘Ž">-1 | down | hand | thumb | thumbs down</annotation>
		<annotation cp="๐Ÿ‘Ž" type="tts">thumbs down</annotation>
		<annotation cp="โœŠ">clenched | fist | hand | punch | raised fist</annotation>
		<annotation cp="โœŠ" type="tts">raised fist</annotation>
		<annotation cp="๐Ÿ‘Š">clenched | fist | hand | oncoming fist | punch</annotation>
		<annotation cp="๐Ÿ‘Š" type="tts">oncoming fist</annotation>
		<annotation cp="๐Ÿค›">fist | left-facing fist | leftwards</annotation>
		<annotation cp="๐Ÿค›" type="tts">left-facing fist</annotation>
		<annotation cp="๐Ÿคœ">fist | right-facing fist | rightwards</annotation>
		<annotation cp="๐Ÿคœ" type="tts">right-facing fist</annotation>
		<annotation cp="๐Ÿคš">backhand | raised | raised back of hand</annotation>
		<annotation cp="๐Ÿคš" type="tts">raised back of hand</annotation>
		<annotation cp="๐Ÿ‘‹">hand | wave | waving</annotation>
		<annotation cp="๐Ÿ‘‹" type="tts">waving hand</annotation>
		<annotation cp="๐ŸคŸ">hand | ILY | love-you gesture</annotation>
		<annotation cp="๐ŸคŸ" type="tts">love-you gesture</annotation>
		<annotation cp="โœ">hand | write | writing hand</annotation>
		<annotation cp="โœ" type="tts">writing hand</annotation>
		<annotation cp="๐Ÿ‘">clap | clapping hands | hand</annotation>
		<annotation cp="๐Ÿ‘" type="tts">clapping hands</annotation>
		<annotation cp="๐Ÿ‘">hand | open | open hands</annotation>
		<annotation cp="๐Ÿ‘" type="tts">open hands</annotation>
		<annotation cp="๐Ÿ™Œ">celebration | gesture | hand | hooray | raised | raising hands</annotation>
		<annotation cp="๐Ÿ™Œ" type="tts">raising hands</annotation>
		<annotation cp="๐Ÿคฒ">palms up together | prayer</annotation>
		<annotation cp="๐Ÿคฒ" type="tts">palms up together</annotation>
		<annotation cp="๐Ÿ™">ask | bow | folded | folded hands | gesture | hand | please | pray | thanks</annotation>
		<annotation cp="๐Ÿ™" type="tts">folded hands</annotation>
		<annotation cp="๐Ÿค">agreement | hand | handshake | meeting | shake</annotation>
		<annotation cp="๐Ÿค" type="tts">handshake</annotation>
		<annotation cp="๐Ÿ’…">care | cosmetics | manicure | nail | polish</annotation>
		<annotation cp="๐Ÿ’…" type="tts">nail polish</annotation>
		<annotation cp="๐Ÿ‘‚">body | ear</annotation>
		<annotation cp="๐Ÿ‘‚" type="tts">ear</annotation>
		<annotation cp="๐Ÿ‘ƒ">body | nose</annotation>
		<annotation cp="๐Ÿ‘ƒ" type="tts">nose</annotation>
		<annotation cp="๐Ÿ‘ฃ">clothing | footprint | footprints | print</annotation>
		<annotation cp="๐Ÿ‘ฃ" type="tts">footprints</annotation>
		<annotation cp="๐Ÿ‘€">eye | eyes | face</annotation>
		<annotation cp="๐Ÿ‘€" type="tts">eyes</annotation>
		<annotation cp="๐Ÿ‘">body | eye</annotation>
		<annotation cp="๐Ÿ‘" type="tts">eye</annotation>
		<annotation cp="๐Ÿ‘โ€๐Ÿ—จ">eye | eye in speech bubble | speech bubble | witness</annotation>
		<annotation cp="๐Ÿ‘โ€๐Ÿ—จ" type="tts">eye in speech bubble</annotation>
		<annotation cp="๐Ÿง ">brain | intelligent</annotation>
		<annotation cp="๐Ÿง " type="tts">brain</annotation>
		<annotation cp="๐Ÿ‘…">body | tongue</annotation>
		<annotation cp="๐Ÿ‘…" type="tts">tongue</annotation>
		<annotation cp="๐Ÿ‘„">lips | mouth</annotation>
		<annotation cp="๐Ÿ‘„" type="tts">mouth</annotation>
		<annotation cp="๐Ÿ’‹">kiss | kiss mark | lips</annotation>
		<annotation cp="๐Ÿ’‹" type="tts">kiss mark</annotation>
		<annotation cp="๐Ÿ’˜">arrow | cupid | heart with arrow</annotation>
		<annotation cp="๐Ÿ’˜" type="tts">heart with arrow</annotation>
		<annotation cp="โค">heart | red heart</annotation>
		<annotation cp="โค" type="tts">red heart</annotation>
		<annotation cp="๐Ÿ’“">beating | beating heart | heartbeat | pulsating</annotation>
		<annotation cp="๐Ÿ’“" type="tts">beating heart</annotation>
		<annotation cp="๐Ÿ’”">break | broken | broken heart</annotation>
		<annotation cp="๐Ÿ’”" type="tts">broken heart</annotation>
		<annotation cp="๐Ÿ’•">love | two hearts</annotation>
		<annotation cp="๐Ÿ’•" type="tts">two hearts</annotation>
		<annotation cp="๐Ÿ’–">excited | sparkle | sparkling heart</annotation>
		<annotation cp="๐Ÿ’–" type="tts">sparkling heart</annotation>
		<annotation cp="๐Ÿ’—">excited | growing | growing heart | nervous | pulse</annotation>
		<annotation cp="๐Ÿ’—" type="tts">growing heart</annotation>
		<annotation cp="๐Ÿ’™">blue | blue heart</annotation>
		<annotation cp="๐Ÿ’™" type="tts">blue heart</annotation>
		<annotation cp="๐Ÿ’š">green | green heart</annotation>
		<annotation cp="๐Ÿ’š" type="tts">green heart</annotation>
		<annotation cp="๐Ÿ’›">yellow | yellow heart</annotation>
		<annotation cp="๐Ÿ’›" type="tts">yellow heart</annotation>
		<annotation cp="๐Ÿงก">orange | orange heart</annotation>
		<annotation cp="๐Ÿงก" type="tts">orange heart</annotation>
		<annotation cp="๐Ÿ’œ">purple | purple heart</annotation>
		<annotation cp="๐Ÿ’œ" type="tts">purple heart</annotation>
		<annotation cp="๐Ÿ–ค">black | black heart | evil | wicked</annotation>
		<annotation cp="๐Ÿ–ค" type="tts">black heart</annotation>
		<annotation cp="๐Ÿ’">heart with ribbon | ribbon | valentine</annotation>
		<annotation cp="๐Ÿ’" type="tts">heart with ribbon</annotation>
		<annotation cp="๐Ÿ’ž">revolving | revolving hearts</annotation>
		<annotation cp="๐Ÿ’ž" type="tts">revolving hearts</annotation>
		<annotation cp="๐Ÿ’Ÿ">heart | heart decoration</annotation>
		<annotation cp="๐Ÿ’Ÿ" type="tts">heart decoration</annotation>
		<annotation cp="โฃ">exclamation | heavy heart exclamation | mark | punctuation</annotation>
		<annotation cp="โฃ" type="tts">heavy heart exclamation</annotation>
		<annotation cp="๐Ÿ’Œ">heart | letter | love | mail</annotation>
		<annotation cp="๐Ÿ’Œ" type="tts">love letter</annotation>
		<annotation cp="๐Ÿ’ค">comic | sleep | zzz</annotation>
		<annotation cp="๐Ÿ’ค" type="tts">zzz</annotation>
		<annotation cp="๐Ÿ’ข">anger symbol | angry | comic | mad</annotation>
		<annotation cp="๐Ÿ’ข" type="tts">anger symbol</annotation>
		<annotation cp="๐Ÿ’ฃ">bomb | comic</annotation>
		<annotation cp="๐Ÿ’ฃ" type="tts">bomb</annotation>
		<annotation cp="๐Ÿ’ฅ">boom | collision | comic</annotation>
		<annotation cp="๐Ÿ’ฅ" type="tts">collision</annotation>
		<annotation cp="๐Ÿ’ฆ">comic | splashing | sweat | sweat droplets</annotation>
		<annotation cp="๐Ÿ’ฆ" type="tts">sweat droplets</annotation>
		<annotation cp="๐Ÿ’จ">comic | dash | dashing away | running</annotation>
		<annotation cp="๐Ÿ’จ" type="tts">dashing away</annotation>
		<annotation cp="๐Ÿ’ซ">comic | dizzy | star</annotation>
		<annotation cp="๐Ÿ’ซ" type="tts">dizzy</annotation>
		<annotation cp="๐Ÿ’ฌ">balloon | bubble | comic | dialog | speech</annotation>
		<annotation cp="๐Ÿ’ฌ" type="tts">speech balloon</annotation>
		<annotation cp="๐Ÿ—จ">dialog | left speech bubble | speech</annotation>
		<annotation cp="๐Ÿ—จ" type="tts">left speech bubble</annotation>
		<annotation cp="๐Ÿ—ฏ">angry | balloon | bubble | mad | right anger bubble</annotation>
		<annotation cp="๐Ÿ—ฏ" type="tts">right anger bubble</annotation>
		<annotation cp="๐Ÿ’ญ">balloon | bubble | comic | thought</annotation>
		<annotation cp="๐Ÿ’ญ" type="tts">thought balloon</annotation>
		<annotation cp="๐Ÿ•ณ">hole</annotation>
		<annotation cp="๐Ÿ•ณ" type="tts">hole</annotation>
		<annotation cp="๐Ÿ‘“">clothing | eye | eyeglasses | eyewear | glasses</annotation>
		<annotation cp="๐Ÿ‘“" type="tts">glasses</annotation>
		<annotation cp="๐Ÿ•ถ">dark | eye | eyewear | glasses | sunglasses</annotation>
		<annotation cp="๐Ÿ•ถ" type="tts">sunglasses</annotation>
		<annotation cp="๐Ÿ‘”">clothing | necktie | tie</annotation>
		<annotation cp="๐Ÿ‘”" type="tts">necktie</annotation>
		<annotation cp="๐Ÿ‘•">clothing | shirt | t-shirt | tshirt</annotation>
		<annotation cp="๐Ÿ‘•" type="tts">t-shirt</annotation>
		<annotation cp="๐Ÿ‘–">clothing | jeans | pants | trousers</annotation>
		<annotation cp="๐Ÿ‘–" type="tts">jeans</annotation>
		<annotation cp="๐Ÿงฃ">neck | scarf</annotation>
		<annotation cp="๐Ÿงฃ" type="tts">scarf</annotation>
		<annotation cp="๐Ÿงค">gloves | hand</annotation>
		<annotation cp="๐Ÿงค" type="tts">gloves</annotation>
		<annotation cp="๐Ÿงฅ">coat | jacket</annotation>
		<annotation cp="๐Ÿงฅ" type="tts">coat</annotation>
		<annotation cp="๐Ÿงฆ">socks | stocking</annotation>
		<annotation cp="๐Ÿงฆ" type="tts">socks</annotation>
		<annotation cp="๐Ÿ‘—">clothing | dress</annotation>
		<annotation cp="๐Ÿ‘—" type="tts">dress</annotation>
		<annotation cp="๐Ÿ‘˜">clothing | kimono</annotation>
		<annotation cp="๐Ÿ‘˜" type="tts">kimono</annotation>
		<annotation cp="๐Ÿ‘™">bikini | clothing | swim</annotation>
		<annotation cp="๐Ÿ‘™" type="tts">bikini</annotation>
		<annotation cp="๐Ÿ‘š">clothing | woman | womanโ€™s clothes</annotation>
		<annotation cp="๐Ÿ‘š" type="tts">womanโ€™s clothes</annotation>
		<annotation cp="๐Ÿ‘›">clothing | coin | purse</annotation>
		<annotation cp="๐Ÿ‘›" type="tts">purse</annotation>
		<annotation cp="๐Ÿ‘œ">bag | clothing | handbag | purse</annotation>
		<annotation cp="๐Ÿ‘œ" type="tts">handbag</annotation>
		<annotation cp="๐Ÿ‘">bag | clothing | clutch bag | pouch</annotation>
		<annotation cp="๐Ÿ‘" type="tts">clutch bag</annotation>
		<annotation cp="๐Ÿ›">bag | hotel | shopping | shopping bags</annotation>
		<annotation cp="๐Ÿ›" type="tts">shopping bags</annotation>
		<annotation cp="๐ŸŽ’">backpack | bag | rucksack | satchel | school</annotation>
		<annotation cp="๐ŸŽ’" type="tts">backpack</annotation>
		<annotation cp="๐Ÿ‘ž">clothing | man | manโ€™s shoe | shoe</annotation>
		<annotation cp="๐Ÿ‘ž" type="tts">manโ€™s shoe</annotation>
		<annotation cp="๐Ÿ‘Ÿ">athletic | clothing | running shoe | shoe | sneaker</annotation>
		<annotation cp="๐Ÿ‘Ÿ" type="tts">running shoe</annotation>
		<annotation cp="๐Ÿ‘ ">clothing | heel | high-heeled shoe | shoe | woman</annotation>
		<annotation cp="๐Ÿ‘ " type="tts">high-heeled shoe</annotation>
		<annotation cp="๐Ÿ‘ก">clothing | sandal | shoe | woman | womanโ€™s sandal</annotation>
		<annotation cp="๐Ÿ‘ก" type="tts">womanโ€™s sandal</annotation>
		<annotation cp="๐Ÿ‘ข">boot | clothing | shoe | woman | womanโ€™s boot</annotation>
		<annotation cp="๐Ÿ‘ข" type="tts">womanโ€™s boot</annotation>
		<annotation cp="๐Ÿ‘‘">clothing | crown | king | queen</annotation>
		<annotation cp="๐Ÿ‘‘" type="tts">crown</annotation>
		<annotation cp="๐Ÿ‘’">clothing | hat | woman | womanโ€™s hat</annotation>
		<annotation cp="๐Ÿ‘’" type="tts">womanโ€™s hat</annotation>
		<annotation cp="๐ŸŽฉ">clothing | hat | top | tophat</annotation>
		<annotation cp="๐ŸŽฉ" type="tts">top hat</annotation>
		<annotation cp="๐ŸŽ“">cap | celebration | clothing | graduation | hat</annotation>
		<annotation cp="๐ŸŽ“" type="tts">graduation cap</annotation>
		<annotation cp="๐Ÿงข">baseball cap | billed cap</annotation>
		<annotation cp="๐Ÿงข" type="tts">billed cap</annotation>
		<annotation cp="โ›‘">aid | cross | face | hat | helmet | rescue workerโ€™s helmet</annotation>
		<annotation cp="โ›‘" type="tts">rescue workerโ€™s helmet</annotation>
		<annotation cp="๐Ÿ“ฟ">beads | clothing | necklace | prayer | religion</annotation>
		<annotation cp="๐Ÿ“ฟ" type="tts">prayer beads</annotation>
		<annotation cp="๐Ÿ’„">cosmetics | lipstick | makeup</annotation>
		<annotation cp="๐Ÿ’„" type="tts">lipstick</annotation>
		<annotation cp="๐Ÿ’">diamond | ring</annotation>
		<annotation cp="๐Ÿ’" type="tts">ring</annotation>
		<annotation cp="๐Ÿ’Ž">diamond | gem | gem stone | jewel</annotation>
		<annotation cp="๐Ÿ’Ž" type="tts">gem stone</annotation>
		<annotation cp="๐Ÿต">face | monkey</annotation>
		<annotation cp="๐Ÿต" type="tts">monkey face</annotation>
		<annotation cp="๐Ÿ’">monkey</annotation>
		<annotation cp="๐Ÿ’" type="tts">monkey</annotation>
		<annotation cp="๐Ÿฆ">gorilla</annotation>
		<annotation cp="๐Ÿฆ" type="tts">gorilla</annotation>
		<annotation cp="๐Ÿถ">dog | face | pet</annotation>
		<annotation cp="๐Ÿถ" type="tts">dog face</annotation>
		<annotation cp="๐Ÿ•">dog | pet</annotation>
		<annotation cp="๐Ÿ•" type="tts">dog</annotation>
		<annotation cp="๐Ÿฉ">dog | poodle</annotation>
		<annotation cp="๐Ÿฉ" type="tts">poodle</annotation>
		<annotation cp="๐Ÿบ">face | wolf</annotation>
		<annotation cp="๐Ÿบ" type="tts">wolf face</annotation>
		<annotation cp="๐ŸฆŠ">face | fox</annotation>
		<annotation cp="๐ŸฆŠ" type="tts">fox face</annotation>
		<annotation cp="๐Ÿฑ">cat | face | pet</annotation>
		<annotation cp="๐Ÿฑ" type="tts">cat face</annotation>
		<annotation cp="๐Ÿˆ">cat | pet</annotation>
		<annotation cp="๐Ÿˆ" type="tts">cat</annotation>
		<annotation cp="๐Ÿฆ">face | Leo | lion | zodiac</annotation>
		<annotation cp="๐Ÿฆ" type="tts">lion face</annotation>
		<annotation cp="๐Ÿฏ">face | tiger</annotation>
		<annotation cp="๐Ÿฏ" type="tts">tiger face</annotation>
		<annotation cp="๐Ÿ…">tiger</annotation>
		<annotation cp="๐Ÿ…" type="tts">tiger</annotation>
		<annotation cp="๐Ÿ†">leopard</annotation>
		<annotation cp="๐Ÿ†" type="tts">leopard</annotation>
		<annotation cp="๐Ÿด">face | horse</annotation>
		<annotation cp="๐Ÿด" type="tts">horse face</annotation>
		<annotation cp="๐ŸŽ">equestrian | horse | racehorse | racing</annotation>
		<annotation cp="๐ŸŽ" type="tts">horse</annotation>
		<annotation cp="๐Ÿฆ„">face | unicorn</annotation>
		<annotation cp="๐Ÿฆ„" type="tts">unicorn face</annotation>
		<annotation cp="๐Ÿฆ“">stripe | zebra</annotation>
		<annotation cp="๐Ÿฆ“" type="tts">zebra</annotation>
		<annotation cp="๐ŸฆŒ">deer</annotation>
		<annotation cp="๐ŸฆŒ" type="tts">deer</annotation>
		<annotation cp="๐Ÿฎ">cow | face</annotation>
		<annotation cp="๐Ÿฎ" type="tts">cow face</annotation>
		<annotation cp="๐Ÿ‚">bull | ox | Taurus | zodiac</annotation>
		<annotation cp="๐Ÿ‚" type="tts">ox</annotation>
		<annotation cp="๐Ÿƒ">buffalo | water</annotation>
		<annotation cp="๐Ÿƒ" type="tts">water buffalo</annotation>
		<annotation cp="๐Ÿ„">cow</annotation>
		<annotation cp="๐Ÿ„" type="tts">cow</annotation>
		<annotation cp="๐Ÿท">face | pig</annotation>
		<annotation cp="๐Ÿท" type="tts">pig face</annotation>
		<annotation cp="๐Ÿ–">pig | sow</annotation>
		<annotation cp="๐Ÿ–" type="tts">pig</annotation>
		<annotation cp="๐Ÿ—">boar | pig</annotation>
		<annotation cp="๐Ÿ—" type="tts">boar</annotation>
		<annotation cp="๐Ÿฝ">face | nose | pig</annotation>
		<annotation cp="๐Ÿฝ" type="tts">pig nose</annotation>
		<annotation cp="๐Ÿ">Aries | male | ram | sheep | zodiac</annotation>
		<annotation cp="๐Ÿ" type="tts">ram</annotation>
		<annotation cp="๐Ÿ‘">ewe | female | sheep</annotation>
		<annotation cp="๐Ÿ‘" type="tts">ewe</annotation>
		<annotation cp="๐Ÿ">Capricorn | goat | zodiac</annotation>
		<annotation cp="๐Ÿ" type="tts">goat</annotation>
		<annotation cp="๐Ÿช">camel | dromedary | hump</annotation>
		<annotation cp="๐Ÿช" type="tts">camel</annotation>
		<annotation cp="๐Ÿซ">bactrian | camel | hump | two-hump camel</annotation>
		<annotation cp="๐Ÿซ" type="tts">two-hump camel</annotation>
		<annotation cp="๐Ÿฆ’">giraffe | spots</annotation>
		<annotation cp="๐Ÿฆ’" type="tts">giraffe</annotation>
		<annotation cp="๐Ÿ˜">elephant</annotation>
		<annotation cp="๐Ÿ˜" type="tts">elephant</annotation>
		<annotation cp="๐Ÿฆ">rhinoceros</annotation>
		<annotation cp="๐Ÿฆ" type="tts">rhinoceros</annotation>
		<annotation cp="๐Ÿญ">face | mouse</annotation>
		<annotation cp="๐Ÿญ" type="tts">mouse face</annotation>
		<annotation cp="๐Ÿ">mouse</annotation>
		<annotation cp="๐Ÿ" type="tts">mouse</annotation>
		<annotation cp="๐Ÿ€">rat</annotation>
		<annotation cp="๐Ÿ€" type="tts">rat</annotation>
		<annotation cp="๐Ÿน">face | hamster | pet</annotation>
		<annotation cp="๐Ÿน" type="tts">hamster face</annotation>
		<annotation cp="๐Ÿฐ">bunny | face | pet | rabbit</annotation>
		<annotation cp="๐Ÿฐ" type="tts">rabbit face</annotation>
		<annotation cp="๐Ÿ‡">bunny | pet | rabbit</annotation>
		<annotation cp="๐Ÿ‡" type="tts">rabbit</annotation>
		<annotation cp="๐Ÿฟ">chipmunk | squirrel</annotation>
		<annotation cp="๐Ÿฟ" type="tts">chipmunk</annotation>
		<annotation cp="๐Ÿฆ”">hedgehog | spiny</annotation>
		<annotation cp="๐Ÿฆ”" type="tts">hedgehog</annotation>
		<annotation cp="๐Ÿฆ‡">bat | vampire</annotation>
		<annotation cp="๐Ÿฆ‡" type="tts">bat</annotation>
		<annotation cp="๐Ÿป">bear | face</annotation>
		<annotation cp="๐Ÿป" type="tts">bear face</annotation>
		<annotation cp="๐Ÿจ">bear | koala</annotation>
		<annotation cp="๐Ÿจ" type="tts">koala</annotation>
		<annotation cp="๐Ÿผ">face | panda</annotation>
		<annotation cp="๐Ÿผ" type="tts">panda face</annotation>
		<annotation cp="๐Ÿพ">feet | paw | paw prints | print</annotation>
		<annotation cp="๐Ÿพ" type="tts">paw prints</annotation>
		<annotation cp="๐Ÿฆƒ">bird | turkey</annotation>
		<annotation cp="๐Ÿฆƒ" type="tts">turkey</annotation>
		<annotation cp="๐Ÿ”">bird | chicken</annotation>
		<annotation cp="๐Ÿ”" type="tts">chicken</annotation>
		<annotation cp="๐Ÿ“">bird | rooster</annotation>
		<annotation cp="๐Ÿ“" type="tts">rooster</annotation>
		<annotation cp="๐Ÿฃ">baby | bird | chick | hatching</annotation>
		<annotation cp="๐Ÿฃ" type="tts">hatching chick</annotation>
		<annotation cp="๐Ÿค">baby | bird | chick</annotation>
		<annotation cp="๐Ÿค" type="tts">baby chick</annotation>
		<annotation cp="๐Ÿฅ">baby | bird | chick | front-facing baby chick</annotation>
		<annotation cp="๐Ÿฅ" type="tts">front-facing baby chick</annotation>
		<annotation cp="๐Ÿฆ">bird</annotation>
		<annotation cp="๐Ÿฆ" type="tts">bird</annotation>
		<annotation cp="๐Ÿง">bird | penguin</annotation>
		<annotation cp="๐Ÿง" type="tts">penguin</annotation>
		<annotation cp="๐Ÿ•Š">bird | dove | fly | peace</annotation>
		<annotation cp="๐Ÿ•Š" type="tts">dove</annotation>
		<annotation cp="๐Ÿฆ…">bird | eagle</annotation>
		<annotation cp="๐Ÿฆ…" type="tts">eagle</annotation>
		<annotation cp="๐Ÿฆ†">bird | duck</annotation>
		<annotation cp="๐Ÿฆ†" type="tts">duck</annotation>
		<annotation cp="๐Ÿฆ‰">bird | owl | wise</annotation>
		<annotation cp="๐Ÿฆ‰" type="tts">owl</annotation>
		<annotation cp="๐Ÿธ">face | frog</annotation>
		<annotation cp="๐Ÿธ" type="tts">frog face</annotation>
		<annotation cp="๐ŸŠ">crocodile</annotation>
		<annotation cp="๐ŸŠ" type="tts">crocodile</annotation>
		<annotation cp="๐Ÿข">terrapin | tortoise | turtle</annotation>
		<annotation cp="๐Ÿข" type="tts">turtle</annotation>
		<annotation cp="๐ŸฆŽ">lizard | reptile</annotation>
		<annotation cp="๐ŸฆŽ" type="tts">lizard</annotation>
		<annotation cp="๐Ÿ">bearer | Ophiuchus | serpent | snake | zodiac</annotation>
		<annotation cp="๐Ÿ" type="tts">snake</annotation>
		<annotation cp="๐Ÿฒ">dragon | face | fairy tale</annotation>
		<annotation cp="๐Ÿฒ" type="tts">dragon face</annotation>
		<annotation cp="๐Ÿ‰">dragon | fairy tale</annotation>
		<annotation cp="๐Ÿ‰" type="tts">dragon</annotation>
		<annotation cp="๐Ÿฆ•">brachiosaurus | brontosaurus | diplodocus | sauropod</annotation>
		<annotation cp="๐Ÿฆ•" type="tts">sauropod</annotation>
		<annotation cp="๐Ÿฆ–">T-Rex | Tyrannosaurus Rex</annotation>
		<annotation cp="๐Ÿฆ–" type="tts">T-Rex</annotation>
		<annotation cp="๐Ÿณ">face | spouting | whale</annotation>
		<annotation cp="๐Ÿณ" type="tts">spouting whale</annotation>
		<annotation cp="๐Ÿ‹">whale</annotation>
		<annotation cp="๐Ÿ‹" type="tts">whale</annotation>
		<annotation cp="๐Ÿฌ">dolphin | flipper</annotation>
		<annotation cp="๐Ÿฌ" type="tts">dolphin</annotation>
		<annotation cp="๐ŸŸ">fish | Pisces | zodiac</annotation>
		<annotation cp="๐ŸŸ" type="tts">fish</annotation>
		<annotation cp="๐Ÿ ">fish | tropical</annotation>
		<annotation cp="๐Ÿ " type="tts">tropical fish</annotation>
		<annotation cp="๐Ÿก">blowfish | fish</annotation>
		<annotation cp="๐Ÿก" type="tts">blowfish</annotation>
		<annotation cp="๐Ÿฆˆ">fish | shark</annotation>
		<annotation cp="๐Ÿฆˆ" type="tts">shark</annotation>
		<annotation cp="๐Ÿ™">octopus</annotation>
		<annotation cp="๐Ÿ™" type="tts">octopus</annotation>
		<annotation cp="๐Ÿš">shell | spiral</annotation>
		<annotation cp="๐Ÿš" type="tts">spiral shell</annotation>
		<annotation cp="๐Ÿฆ€">Cancer | crab | zodiac</annotation>
		<annotation cp="๐Ÿฆ€" type="tts">crab</annotation>
		<annotation cp="๐Ÿฆ">food | shellfish | shrimp | small</annotation>
		<annotation cp="๐Ÿฆ" type="tts">shrimp</annotation>
		<annotation cp="๐Ÿฆ‘">food | molusc | squid</annotation>
		<annotation cp="๐Ÿฆ‘" type="tts">squid</annotation>
		<annotation cp="๐ŸŒ">snail</annotation>
		<annotation cp="๐ŸŒ" type="tts">snail</annotation>
		<annotation cp="๐Ÿฆ‹">butterfly | insect | pretty</annotation>
		<annotation cp="๐Ÿฆ‹" type="tts">butterfly</annotation>
		<annotation cp="๐Ÿ›">bug | insect</annotation>
		<annotation cp="๐Ÿ›" type="tts">bug</annotation>
		<annotation cp="๐Ÿœ">ant | insect</annotation>
		<annotation cp="๐Ÿœ" type="tts">ant</annotation>
		<annotation cp="๐Ÿ">bee | honeybee | insect</annotation>
		<annotation cp="๐Ÿ" type="tts">honeybee</annotation>
		<annotation cp="๐Ÿž">beetle | insect | lady beetle | ladybird | ladybug</annotation>
		<annotation cp="๐Ÿž" type="tts">lady beetle</annotation>
		<annotation cp="๐Ÿฆ—">cricket | grasshopper</annotation>
		<annotation cp="๐Ÿฆ—" type="tts">cricket</annotation>
		<annotation cp="๐Ÿ•ท">insect | spider</annotation>
		<annotation cp="๐Ÿ•ท" type="tts">spider</annotation>
		<annotation cp="๐Ÿ•ธ">spider | web</annotation>
		<annotation cp="๐Ÿ•ธ" type="tts">spider web</annotation>
		<annotation cp="๐Ÿฆ‚">scorpio | Scorpio | scorpion | zodiac</annotation>
		<annotation cp="๐Ÿฆ‚" type="tts">scorpion</annotation>
		<annotation cp="๐Ÿ’">bouquet | flower</annotation>
		<annotation cp="๐Ÿ’" type="tts">bouquet</annotation>
		<annotation cp="๐ŸŒธ">blossom | cherry | flower</annotation>
		<annotation cp="๐ŸŒธ" type="tts">cherry blossom</annotation>
		<annotation cp="๐Ÿ’ฎ">flower | white flower</annotation>
		<annotation cp="๐Ÿ’ฎ" type="tts">white flower</annotation>
		<annotation cp="๐Ÿต">plant | rosette</annotation>
		<annotation cp="๐Ÿต" type="tts">rosette</annotation>
		<annotation cp="๐ŸŒน">flower | rose</annotation>
		<annotation cp="๐ŸŒน" type="tts">rose</annotation>
		<annotation cp="๐Ÿฅ€">flower | wilted</annotation>
		<annotation cp="๐Ÿฅ€" type="tts">wilted flower</annotation>
		<annotation cp="๐ŸŒบ">flower | hibiscus</annotation>
		<annotation cp="๐ŸŒบ" type="tts">hibiscus</annotation>
		<annotation cp="๐ŸŒป">flower | sun | sunflower</annotation>
		<annotation cp="๐ŸŒป" type="tts">sunflower</annotation>
		<annotation cp="๐ŸŒผ">blossom | flower</annotation>
		<annotation cp="๐ŸŒผ" type="tts">blossom</annotation>
		<annotation cp="๐ŸŒท">flower | tulip</annotation>
		<annotation cp="๐ŸŒท" type="tts">tulip</annotation>
		<annotation cp="๐ŸŒฑ">seedling | young</annotation>
		<annotation cp="๐ŸŒฑ" type="tts">seedling</annotation>
		<annotation cp="๐ŸŒฒ">evergreen tree | tree</annotation>
		<annotation cp="๐ŸŒฒ" type="tts">evergreen tree</annotation>
		<annotation cp="๐ŸŒณ">deciduous | shedding | tree</annotation>
		<annotation cp="๐ŸŒณ" type="tts">deciduous tree</annotation>
		<annotation cp="๐ŸŒด">palm | tree</annotation>
		<annotation cp="๐ŸŒด" type="tts">palm tree</annotation>
		<annotation cp="๐ŸŒต">cactus | plant</annotation>
		<annotation cp="๐ŸŒต" type="tts">cactus</annotation>
		<annotation cp="๐ŸŒพ">ear | grain | rice | sheaf of rice</annotation>
		<annotation cp="๐ŸŒพ" type="tts">sheaf of rice</annotation>
		<annotation cp="๐ŸŒฟ">herb | leaf</annotation>
		<annotation cp="๐ŸŒฟ" type="tts">herb</annotation>
		<annotation cp="โ˜˜">plant | shamrock</annotation>
		<annotation cp="โ˜˜" type="tts">shamrock</annotation>
		<annotation cp="๐Ÿ€">4 | clover | four | four-leaf clover | leaf</annotation>
		<annotation cp="๐Ÿ€" type="tts">four leaf clover</annotation>
		<annotation cp="๐Ÿ">falling | leaf | maple</annotation>
		<annotation cp="๐Ÿ" type="tts">maple leaf</annotation>
		<annotation cp="๐Ÿ‚">fallen leaf | falling | leaf</annotation>
		<annotation cp="๐Ÿ‚" type="tts">fallen leaf</annotation>
		<annotation cp="๐Ÿƒ">blow | flutter | leaf | leaf fluttering in wind | wind</annotation>
		<annotation cp="๐Ÿƒ" type="tts">leaf fluttering in wind</annotation>
		<annotation cp="๐Ÿ‡">fruit | grape | grapes</annotation>
		<annotation cp="๐Ÿ‡" type="tts">grapes</annotation>
		<annotation cp="๐Ÿˆ">fruit | melon</annotation>
		<annotation cp="๐Ÿˆ" type="tts">melon</annotation>
		<annotation cp="๐Ÿ‰">fruit | watermelon</annotation>
		<annotation cp="๐Ÿ‰" type="tts">watermelon</annotation>
		<annotation cp="๐ŸŠ">fruit | orange | tangerine</annotation>
		<annotation cp="๐ŸŠ" type="tts">tangerine</annotation>
		<annotation cp="๐Ÿ‹">citrus | fruit | lemon</annotation>
		<annotation cp="๐Ÿ‹" type="tts">lemon</annotation>
		<annotation cp="๐ŸŒ">banana | fruit</annotation>
		<annotation cp="๐ŸŒ" type="tts">banana</annotation>
		<annotation cp="๐Ÿ">fruit | pineapple</annotation>
		<annotation cp="๐Ÿ" type="tts">pineapple</annotation>
		<annotation cp="๐ŸŽ">apple | fruit | red</annotation>
		<annotation cp="๐ŸŽ" type="tts">red apple</annotation>
		<annotation cp="๐Ÿ">apple | fruit | green</annotation>
		<annotation cp="๐Ÿ" type="tts">green apple</annotation>
		<annotation cp="๐Ÿ">fruit | pear</annotation>
		<annotation cp="๐Ÿ" type="tts">pear</annotation>
		<annotation cp="๐Ÿ‘">fruit | peach</annotation>
		<annotation cp="๐Ÿ‘" type="tts">peach</annotation>
		<annotation cp="๐Ÿ’">berries | cherries | cherry | fruit | red</annotation>
		<annotation cp="๐Ÿ’" type="tts">cherries</annotation>
		<annotation cp="๐Ÿ“">berry | fruit | strawberry</annotation>
		<annotation cp="๐Ÿ“" type="tts">strawberry</annotation>
		<annotation cp="๐Ÿฅ">food | fruit | kiwi</annotation>
		<annotation cp="๐Ÿฅ" type="tts">kiwi fruit</annotation>
		<annotation cp="๐Ÿ…">fruit | tomato | vegetable</annotation>
		<annotation cp="๐Ÿ…" type="tts">tomato</annotation>
		<annotation cp="๐Ÿฅฅ">coconut | palm | piรฑa colada</annotation>
		<annotation cp="๐Ÿฅฅ" type="tts">coconut</annotation>
		<annotation cp="๐Ÿฅ‘">avocado | food | fruit</annotation>
		<annotation cp="๐Ÿฅ‘" type="tts">avocado</annotation>
		<annotation cp="๐Ÿ†">aubergine | eggplant | vegetable</annotation>
		<annotation cp="๐Ÿ†" type="tts">eggplant</annotation>
		<annotation cp="๐Ÿฅ”">food | potato | vegetable</annotation>
		<annotation cp="๐Ÿฅ”" type="tts">potato</annotation>
		<annotation cp="๐Ÿฅ•">carrot | food | vegetable</annotation>
		<annotation cp="๐Ÿฅ•" type="tts">carrot</annotation>
		<annotation cp="๐ŸŒฝ">corn | ear | ear of corn | maize | maze</annotation>
		<annotation cp="๐ŸŒฝ" type="tts">ear of corn</annotation>
		<annotation cp="๐ŸŒถ">hot | pepper</annotation>
		<annotation cp="๐ŸŒถ" type="tts">hot pepper</annotation>
		<annotation cp="๐Ÿฅ’">cucumber | food | pickle | vegetable</annotation>
		<annotation cp="๐Ÿฅ’" type="tts">cucumber</annotation>
		<annotation cp="๐Ÿฅฆ">broccoli | wild cabbage</annotation>
		<annotation cp="๐Ÿฅฆ" type="tts">broccoli</annotation>
		<annotation cp="๐Ÿ„">mushroom | toadstool</annotation>
		<annotation cp="๐Ÿ„" type="tts">mushroom</annotation>
		<annotation cp="๐Ÿฅœ">food | nut | peanut | peanuts | vegetable</annotation>
		<annotation cp="๐Ÿฅœ" type="tts">peanuts</annotation>
		<annotation cp="๐ŸŒฐ">chestnut | plant</annotation>
		<annotation cp="๐ŸŒฐ" type="tts">chestnut</annotation>
		<annotation cp="๐Ÿž">bread | loaf</annotation>
		<annotation cp="๐Ÿž" type="tts">bread</annotation>
		<annotation cp="๐Ÿฅ">bread | crescent roll | croissant | food | french</annotation>
		<annotation cp="๐Ÿฅ" type="tts">croissant</annotation>
		<annotation cp="๐Ÿฅ–">baguette | bread | food | french</annotation>
		<annotation cp="๐Ÿฅ–" type="tts">baguette bread</annotation>
		<annotation cp="๐Ÿฅจ">pretzel | twisted</annotation>
		<annotation cp="๐Ÿฅจ" type="tts">pretzel</annotation>
		<annotation cp="๐Ÿฅž">crรชpe | food | hotcake | pancake | pancakes</annotation>
		<annotation cp="๐Ÿฅž" type="tts">pancakes</annotation>
		<annotation cp="๐Ÿง€">cheese | cheese wedge</annotation>
		<annotation cp="๐Ÿง€" type="tts">cheese wedge</annotation>
		<annotation cp="๐Ÿ–">bone | meat | meat on bone</annotation>
		<annotation cp="๐Ÿ–" type="tts">meat on bone</annotation>
		<annotation cp="๐Ÿ—">bone | chicken | drumstick | leg | poultry</annotation>
		<annotation cp="๐Ÿ—" type="tts">poultry leg</annotation>
		<annotation cp="๐Ÿฅฉ">chop | cut of meat | lambchop | porkchop | steak</annotation>
		<annotation cp="๐Ÿฅฉ" type="tts">cut of meat</annotation>
		<annotation cp="๐Ÿฅ“">bacon | food | meat</annotation>
		<annotation cp="๐Ÿฅ“" type="tts">bacon</annotation>
		<annotation cp="๐Ÿ”">burger | hamburger</annotation>
		<annotation cp="๐Ÿ”" type="tts">hamburger</annotation>
		<annotation cp="๐ŸŸ">french | fries</annotation>
		<annotation cp="๐ŸŸ" type="tts">french fries</annotation>
		<annotation cp="๐Ÿ•">cheese | pizza | slice</annotation>
		<annotation cp="๐Ÿ•" type="tts">pizza</annotation>
		<annotation cp="๐ŸŒญ">frankfurter | hot dog | hotdog | sausage</annotation>
		<annotation cp="๐ŸŒญ" type="tts">hot dog</annotation>
		<annotation cp="๐Ÿฅช">bread | sandwich</annotation>
		<annotation cp="๐Ÿฅช" type="tts">sandwich</annotation>
		<annotation cp="๐ŸŒฎ">mexican | taco</annotation>
		<annotation cp="๐ŸŒฎ" type="tts">taco</annotation>
		<annotation cp="๐ŸŒฏ">burrito | mexican | wrap</annotation>
		<annotation cp="๐ŸŒฏ" type="tts">burrito</annotation>
		<annotation cp="๐Ÿฅ™">falafel | flatbread | food | gyro | kebab | stuffed</annotation>
		<annotation cp="๐Ÿฅ™" type="tts">stuffed flatbread</annotation>
		<annotation cp="๐Ÿฅš">egg | food</annotation>
		<annotation cp="๐Ÿฅš" type="tts">egg</annotation>
		<annotation cp="๐Ÿณ">cooking | egg | frying | pan</annotation>
		<annotation cp="๐Ÿณ" type="tts">cooking</annotation>
		<annotation cp="๐Ÿฅ˜">casserole | food | paella | pan | shallow | shallow pan of food</annotation>
		<annotation cp="๐Ÿฅ˜" type="tts">shallow pan of food</annotation>
		<annotation cp="๐Ÿฒ">pot | pot of food | stew</annotation>
		<annotation cp="๐Ÿฒ" type="tts">pot of food</annotation>
		<annotation cp="๐Ÿฅฃ">bowl with spoon | breakfast | cereal | congee</annotation>
		<annotation cp="๐Ÿฅฃ" type="tts">bowl with spoon</annotation>
		<annotation cp="๐Ÿฅ—">food | green | salad</annotation>
		<annotation cp="๐Ÿฅ—" type="tts">green salad</annotation>
		<annotation cp="๐Ÿฟ">popcorn</annotation>
		<annotation cp="๐Ÿฟ" type="tts">popcorn</annotation>
		<annotation cp="๐Ÿฅซ">can | canned food</annotation>
		<annotation cp="๐Ÿฅซ" type="tts">canned food</annotation>
		<annotation cp="๐Ÿฑ">bento | box</annotation>
		<annotation cp="๐Ÿฑ" type="tts">bento box</annotation>
		<annotation cp="๐Ÿ˜">cracker | rice</annotation>
		<annotation cp="๐Ÿ˜" type="tts">rice cracker</annotation>
		<annotation cp="๐Ÿ™">ball | Japanese | rice</annotation>
		<annotation cp="๐Ÿ™" type="tts">rice ball</annotation>
		<annotation cp="๐Ÿš">cooked | rice</annotation>
		<annotation cp="๐Ÿš" type="tts">cooked rice</annotation>
		<annotation cp="๐Ÿ›">curry | rice</annotation>
		<annotation cp="๐Ÿ›" type="tts">curry rice</annotation>
		<annotation cp="๐Ÿœ">bowl | noodle | ramen | steaming</annotation>
		<annotation cp="๐Ÿœ" type="tts">steaming bowl</annotation>
		<annotation cp="๐Ÿ">pasta | spaghetti</annotation>
		<annotation cp="๐Ÿ" type="tts">spaghetti</annotation>
		<annotation cp="๐Ÿ ">potato | roasted | sweet</annotation>
		<annotation cp="๐Ÿ " type="tts">roasted sweet potato</annotation>
		<annotation cp="๐Ÿข">kebab | oden | seafood | skewer | stick</annotation>
		<annotation cp="๐Ÿข" type="tts">oden</annotation>
		<annotation cp="๐Ÿฃ">sushi</annotation>
		<annotation cp="๐Ÿฃ" type="tts">sushi</annotation>
		<annotation cp="๐Ÿค">fried | prawn | shrimp | tempura</annotation>
		<annotation cp="๐Ÿค" type="tts">fried shrimp</annotation>
		<annotation cp="๐Ÿฅ">cake | fish | fish cake with swirl | pastry | swirl</annotation>
		<annotation cp="๐Ÿฅ" type="tts">fish cake with swirl</annotation>
		<annotation cp="๐Ÿก">dango | dessert | Japanese | skewer | stick | sweet</annotation>
		<annotation cp="๐Ÿก" type="tts">dango</annotation>
		<annotation cp="๐ŸฅŸ">dumpling | empanada | gyลza | jiaozi | pierogi | potsticker</annotation>
		<annotation cp="๐ŸฅŸ" type="tts">dumpling</annotation>
		<annotation cp="๐Ÿฅ ">fortune cookie | prophecy</annotation>
		<annotation cp="๐Ÿฅ " type="tts">fortune cookie</annotation>
		<annotation cp="๐Ÿฅก">oyster pail | takeout box</annotation>
		<annotation cp="๐Ÿฅก" type="tts">takeout box</annotation>
		<annotation cp="๐Ÿฆ">cream | dessert | ice | icecream | soft | sweet</annotation>
		<annotation cp="๐Ÿฆ" type="tts">soft ice cream</annotation>
		<annotation cp="๐Ÿง">dessert | ice | shaved | sweet</annotation>
		<annotation cp="๐Ÿง" type="tts">shaved ice</annotation>
		<annotation cp="๐Ÿจ">cream | dessert | ice | sweet</annotation>
		<annotation cp="๐Ÿจ" type="tts">ice cream</annotation>
		<annotation cp="๐Ÿฉ">dessert | donut | doughnut | sweet</annotation>
		<annotation cp="๐Ÿฉ" type="tts">doughnut</annotation>
		<annotation cp="๐Ÿช">cookie | dessert | sweet</annotation>
		<annotation cp="๐Ÿช" type="tts">cookie</annotation>
		<annotation cp="๐ŸŽ‚">birthday | cake | celebration | dessert | pastry | sweet</annotation>
		<annotation cp="๐ŸŽ‚" type="tts">birthday cake</annotation>
		<annotation cp="๐Ÿฐ">cake | dessert | pastry | shortcake | slice | sweet</annotation>
		<annotation cp="๐Ÿฐ" type="tts">shortcake</annotation>
		<annotation cp="๐Ÿฅง">filling | pastry | pie</annotation>
		<annotation cp="๐Ÿฅง" type="tts">pie</annotation>
		<annotation cp="๐Ÿซ">bar | chocolate | dessert | sweet</annotation>
		<annotation cp="๐Ÿซ" type="tts">chocolate bar</annotation>
		<annotation cp="๐Ÿฌ">candy | dessert | sweet</annotation>
		<annotation cp="๐Ÿฌ" type="tts">candy</annotation>
		<annotation cp="๐Ÿญ">candy | dessert | lollipop | sweet</annotation>
		<annotation cp="๐Ÿญ" type="tts">lollipop</annotation>
		<annotation cp="๐Ÿฎ">custard | dessert | pudding | sweet</annotation>
		<annotation cp="๐Ÿฎ" type="tts">custard</annotation>
		<annotation cp="๐Ÿฏ">honey | honeypot | pot | sweet</annotation>
		<annotation cp="๐Ÿฏ" type="tts">honey pot</annotation>
		<annotation cp="๐Ÿผ">baby | bottle | drink | milk</annotation>
		<annotation cp="๐Ÿผ" type="tts">baby bottle</annotation>
		<annotation cp="๐Ÿฅ›">drink | glass | glass of milk | milk</annotation>
		<annotation cp="๐Ÿฅ›" type="tts">glass of milk</annotation>
		<annotation cp="โ˜•">beverage | coffee | drink | hot | steaming | tea</annotation>
		<annotation cp="โ˜•" type="tts">hot beverage</annotation>
		<annotation cp="๐Ÿต">beverage | cup | drink | tea | teacup | teacup without handle</annotation>
		<annotation cp="๐Ÿต" type="tts">teacup without handle</annotation>
		<annotation cp="๐Ÿถ">bar | beverage | bottle | cup | drink | sake</annotation>
		<annotation cp="๐Ÿถ" type="tts">sake</annotation>
		<annotation cp="๐Ÿพ">bar | bottle | bottle with popping cork | cork | drink | popping</annotation>
		<annotation cp="๐Ÿพ" type="tts">bottle with popping cork</annotation>
		<annotation cp="๐Ÿท">bar | beverage | drink | glass | wine</annotation>
		<annotation cp="๐Ÿท" type="tts">wine glass</annotation>
		<annotation cp="๐Ÿธ">bar | cocktail | drink | glass</annotation>
		<annotation cp="๐Ÿธ" type="tts">cocktail glass</annotation>
		<annotation cp="๐Ÿน">bar | drink | tropical</annotation>
		<annotation cp="๐Ÿน" type="tts">tropical drink</annotation>
		<annotation cp="๐Ÿบ">bar | beer | drink | mug</annotation>
		<annotation cp="๐Ÿบ" type="tts">beer mug</annotation>
		<annotation cp="๐Ÿป">bar | beer | clink | clinking beer mugs | drink | mug</annotation>
		<annotation cp="๐Ÿป" type="tts">clinking beer mugs</annotation>
		<annotation cp="๐Ÿฅ‚">celebrate | clink | clinking glasses | drink | glass</annotation>
		<annotation cp="๐Ÿฅ‚" type="tts">clinking glasses</annotation>
		<annotation cp="๐Ÿฅƒ">glass | liquor | shot | tumbler | whisky</annotation>
		<annotation cp="๐Ÿฅƒ" type="tts">tumbler glass</annotation>
		<annotation cp="๐Ÿฅค">cup with straw | juice | soda</annotation>
		<annotation cp="๐Ÿฅค" type="tts">cup with straw</annotation>
		<annotation cp="๐Ÿฅข">chopsticks | hashi</annotation>
		<annotation cp="๐Ÿฅข" type="tts">chopsticks</annotation>
		<annotation cp="๐Ÿฝ">cooking | fork | fork and knife with plate | knife | plate</annotation>
		<annotation cp="๐Ÿฝ" type="tts">fork and knife with plate</annotation>
		<annotation cp="๐Ÿด">cooking | cutlery | fork | fork and knife | knife</annotation>
		<annotation cp="๐Ÿด" type="tts">fork and knife</annotation>
		<annotation cp="๐Ÿฅ„">spoon | tableware</annotation>
		<annotation cp="๐Ÿฅ„" type="tts">spoon</annotation>
		<annotation cp="๐Ÿ”ช">cooking | hocho | kitchen knife | knife | tool | weapon</annotation>
		<annotation cp="๐Ÿ”ช" type="tts">kitchen knife</annotation>
		<annotation cp="๐Ÿบ">amphora | Aquarius | cooking | drink | jug | tool | weapon | zodiac</annotation>
		<annotation cp="๐Ÿบ" type="tts">amphora</annotation>
		<annotation cp="๐ŸŒ">Africa | earth | Europe | globe | globe showing Europe-Africa | world</annotation>
		<annotation cp="๐ŸŒ" type="tts">globe showing Europe-Africa</annotation>
		<annotation cp="๐ŸŒŽ">Americas | earth | globe | globe showing Americas | world</annotation>
		<annotation cp="๐ŸŒŽ" type="tts">globe showing Americas</annotation>
		<annotation cp="๐ŸŒ">Asia | Australia | earth | globe | globe showing Asia-Australia | world</annotation>
		<annotation cp="๐ŸŒ" type="tts">globe showing Asia-Australia</annotation>
		<annotation cp="๐ŸŒ">earth | globe | globe with meridians | meridians | world</annotation>
		<annotation cp="๐ŸŒ" type="tts">globe with meridians</annotation>
		<annotation cp="๐Ÿ—บ">map | world</annotation>
		<annotation cp="๐Ÿ—บ" type="tts">world map</annotation>
		<annotation cp="๐Ÿ—พ">Japan | map | map of Japan</annotation>
		<annotation cp="๐Ÿ—พ" type="tts">map of Japan</annotation>
		<annotation cp="๐Ÿ”">cold | mountain | snow | snow-capped mountain</annotation>
		<annotation cp="๐Ÿ”" type="tts">snow-capped mountain</annotation>
		<annotation cp="โ›ฐ">mountain</annotation>
		<annotation cp="โ›ฐ" type="tts">mountain</annotation>
		<annotation cp="๐ŸŒ‹">eruption | mountain | volcano</annotation>
		<annotation cp="๐ŸŒ‹" type="tts">volcano</annotation>
		<annotation cp="๐Ÿ—ป">fuji | mount fuji | mountain</annotation>
		<annotation cp="๐Ÿ—ป" type="tts">mount fuji</annotation>
		<annotation cp="๐Ÿ•">camping</annotation>
		<annotation cp="๐Ÿ•" type="tts">camping</annotation>
		<annotation cp="๐Ÿ–">beach | beach with umbrella | umbrella</annotation>
		<annotation cp="๐Ÿ–" type="tts">beach with umbrella</annotation>
		<annotation cp="๐Ÿœ">desert</annotation>
		<annotation cp="๐Ÿœ" type="tts">desert</annotation>
		<annotation cp="๐Ÿ">desert | island</annotation>
		<annotation cp="๐Ÿ" type="tts">desert island</annotation>
		<annotation cp="๐Ÿž">national park | park</annotation>
		<annotation cp="๐Ÿž" type="tts">national park</annotation>
		<annotation cp="๐ŸŸ">stadium</annotation>
		<annotation cp="๐ŸŸ" type="tts">stadium</annotation>
		<annotation cp="๐Ÿ›">classical | classical building</annotation>
		<annotation cp="๐Ÿ›" type="tts">classical building</annotation>
		<annotation cp="๐Ÿ—">building construction | construction</annotation>
		<annotation cp="๐Ÿ—" type="tts">building construction</annotation>
		<annotation cp="๐Ÿ˜">houses</annotation>
		<annotation cp="๐Ÿ˜" type="tts">houses</annotation>
		<annotation cp="๐Ÿš">derelict | house</annotation>
		<annotation cp="๐Ÿš" type="tts">derelict house</annotation>
		<annotation cp="๐Ÿ ">home | house</annotation>
		<annotation cp="๐Ÿ " type="tts">house</annotation>
		<annotation cp="๐Ÿก">garden | home | house | house with garden</annotation>
		<annotation cp="๐Ÿก" type="tts">house with garden</annotation>
		<annotation cp="๐Ÿข">building | office building</annotation>
		<annotation cp="๐Ÿข" type="tts">office building</annotation>
		<annotation cp="๐Ÿฃ">Japanese | Japanese post office | post</annotation>
		<annotation cp="๐Ÿฃ" type="tts">Japanese post office</annotation>
		<annotation cp="๐Ÿค">European | post | post office</annotation>
		<annotation cp="๐Ÿค" type="tts">post office</annotation>
		<annotation cp="๐Ÿฅ">doctor | hospital | medicine</annotation>
		<annotation cp="๐Ÿฅ" type="tts">hospital</annotation>
		<annotation cp="๐Ÿฆ">bank | building</annotation>
		<annotation cp="๐Ÿฆ" type="tts">bank</annotation>
		<annotation cp="๐Ÿจ">building | hotel</annotation>
		<annotation cp="๐Ÿจ" type="tts">hotel</annotation>
		<annotation cp="๐Ÿฉ">hotel | love</annotation>
		<annotation cp="๐Ÿฉ" type="tts">love hotel</annotation>
		<annotation cp="๐Ÿช">convenience | store</annotation>
		<annotation cp="๐Ÿช" type="tts">convenience store</annotation>
		<annotation cp="๐Ÿซ">building | school</annotation>
		<annotation cp="๐Ÿซ" type="tts">school</annotation>
		<annotation cp="๐Ÿฌ">department | store</annotation>
		<annotation cp="๐Ÿฌ" type="tts">department store</annotation>
		<annotation cp="๐Ÿญ">building | factory</annotation>
		<annotation cp="๐Ÿญ" type="tts">factory</annotation>
		<annotation cp="๐Ÿฏ">castle | Japanese</annotation>
		<annotation cp="๐Ÿฏ" type="tts">Japanese castle</annotation>
		<annotation cp="๐Ÿฐ">castle | European</annotation>
		<annotation cp="๐Ÿฐ" type="tts">castle</annotation>
		<annotation cp="๐Ÿ’’">chapel | romance | wedding</annotation>
		<annotation cp="๐Ÿ’’" type="tts">wedding</annotation>
		<annotation cp="๐Ÿ—ผ">Tokyo | tower</annotation>
		<annotation cp="๐Ÿ—ผ" type="tts">Tokyo tower</annotation>
		<annotation cp="๐Ÿ—ฝ">liberty | statue | Statue of Liberty</annotation>
		<annotation cp="๐Ÿ—ฝ" type="tts">Statue of Liberty</annotation>
		<annotation cp="โ›ช">Christian | church | cross | religion</annotation>
		<annotation cp="โ›ช" type="tts">church</annotation>
		<annotation cp="๐Ÿ•Œ">islam | mosque | Muslim | religion</annotation>
		<annotation cp="๐Ÿ•Œ" type="tts">mosque</annotation>
		<annotation cp="๐Ÿ•">Jew | Jewish | religion | synagogue | temple</annotation>
		<annotation cp="๐Ÿ•" type="tts">synagogue</annotation>
		<annotation cp="โ›ฉ">religion | shinto | shrine</annotation>
		<annotation cp="โ›ฉ" type="tts">shinto shrine</annotation>
		<annotation cp="๐Ÿ•‹">islam | kaaba | Muslim | religion</annotation>
		<annotation cp="๐Ÿ•‹" type="tts">kaaba</annotation>
		<annotation cp="โ›ฒ">fountain</annotation>
		<annotation cp="โ›ฒ" type="tts">fountain</annotation>
		<annotation cp="โ›บ">camping | tent</annotation>
		<annotation cp="โ›บ" type="tts">tent</annotation>
		<annotation cp="๐ŸŒ">fog | foggy</annotation>
		<annotation cp="๐ŸŒ" type="tts">foggy</annotation>
		<annotation cp="๐ŸŒƒ">night | night with stars | star</annotation>
		<annotation cp="๐ŸŒƒ" type="tts">night with stars</annotation>
		<annotation cp="๐Ÿ™">city | cityscape</annotation>
		<annotation cp="๐Ÿ™" type="tts">cityscape</annotation>
		<annotation cp="๐ŸŒ„">morning | mountain | sun | sunrise | sunrise over mountains</annotation>
		<annotation cp="๐ŸŒ„" type="tts">sunrise over mountains</annotation>
		<annotation cp="๐ŸŒ…">morning | sun | sunrise</annotation>
		<annotation cp="๐ŸŒ…" type="tts">sunrise</annotation>
		<annotation cp="๐ŸŒ†">city | cityscape at dusk | dusk | evening | landscape | sun | sunset</annotation>
		<annotation cp="๐ŸŒ†" type="tts">cityscape at dusk</annotation>
		<annotation cp="๐ŸŒ‡">dusk | sun | sunset</annotation>
		<annotation cp="๐ŸŒ‡" type="tts">sunset</annotation>
		<annotation cp="๐ŸŒ‰">bridge | bridge at night | night</annotation>
		<annotation cp="๐ŸŒ‰" type="tts">bridge at night</annotation>
		<annotation cp="โ™จ">hot | hotsprings | springs | steaming</annotation>
		<annotation cp="โ™จ" type="tts">hot springs</annotation>
		<annotation cp="๐ŸŒŒ">milky way | space</annotation>
		<annotation cp="๐ŸŒŒ" type="tts">milky way</annotation>
		<annotation cp="๐ŸŽ ">carousel | horse</annotation>
		<annotation cp="๐ŸŽ " type="tts">carousel horse</annotation>
		<annotation cp="๐ŸŽก">amusement park | ferris | wheel</annotation>
		<annotation cp="๐ŸŽก" type="tts">ferris wheel</annotation>
		<annotation cp="๐ŸŽข">amusement park | coaster | roller</annotation>
		<annotation cp="๐ŸŽข" type="tts">roller coaster</annotation>
		<annotation cp="๐Ÿ’ˆ">barber | haircut | pole</annotation>
		<annotation cp="๐Ÿ’ˆ" type="tts">barber pole</annotation>
		<annotation cp="๐ŸŽช">circus | tent</annotation>
		<annotation cp="๐ŸŽช" type="tts">circus tent</annotation>
		<annotation cp="๐Ÿš‚">engine | locomotive | railway | steam | train</annotation>
		<annotation cp="๐Ÿš‚" type="tts">locomotive</annotation>
		<annotation cp="๐Ÿšƒ">car | electric | railway | train | tram | trolleybus</annotation>
		<annotation cp="๐Ÿšƒ" type="tts">railway car</annotation>
		<annotation cp="๐Ÿš„">high-speed train | railway | shinkansen | speed | train</annotation>
		<annotation cp="๐Ÿš„" type="tts">high-speed train</annotation>
		<annotation cp="๐Ÿš…">bullet | railway | shinkansen | speed | train</annotation>
		<annotation cp="๐Ÿš…" type="tts">bullet train</annotation>
		<annotation cp="๐Ÿš†">railway | train</annotation>
		<annotation cp="๐Ÿš†" type="tts">train</annotation>
		<annotation cp="๐Ÿš‡">metro | subway</annotation>
		<annotation cp="๐Ÿš‡" type="tts">metro</annotation>
		<annotation cp="๐Ÿšˆ">light rail | railway</annotation>
		<annotation cp="๐Ÿšˆ" type="tts">light rail</annotation>
		<annotation cp="๐Ÿš‰">railway | station | train</annotation>
		<annotation cp="๐Ÿš‰" type="tts">station</annotation>
		<annotation cp="๐ŸšŠ">tram | trolleybus</annotation>
		<annotation cp="๐ŸšŠ" type="tts">tram</annotation>
		<annotation cp="๐Ÿš">monorail | vehicle</annotation>
		<annotation cp="๐Ÿš" type="tts">monorail</annotation>
		<annotation cp="๐Ÿšž">car | mountain | railway</annotation>
		<annotation cp="๐Ÿšž" type="tts">mountain railway</annotation>
		<annotation cp="๐Ÿš‹">car | tram | trolleybus</annotation>
		<annotation cp="๐Ÿš‹" type="tts">tram car</annotation>
		<annotation cp="๐ŸšŒ">bus | vehicle</annotation>
		<annotation cp="๐ŸšŒ" type="tts">bus</annotation>
		<annotation cp="๐Ÿš">bus | oncoming</annotation>
		<annotation cp="๐Ÿš" type="tts">oncoming bus</annotation>
		<annotation cp="๐ŸšŽ">bus | tram | trolley | trolleybus</annotation>
		<annotation cp="๐ŸšŽ" type="tts">trolleybus</annotation>
		<annotation cp="๐Ÿš">bus | minibus</annotation>
		<annotation cp="๐Ÿš" type="tts">minibus</annotation>
		<annotation cp="๐Ÿš‘">ambulance | vehicle</annotation>
		<annotation cp="๐Ÿš‘" type="tts">ambulance</annotation>
		<annotation cp="๐Ÿš’">engine | fire | truck</annotation>
		<annotation cp="๐Ÿš’" type="tts">fire engine</annotation>
		<annotation cp="๐Ÿš“">car | patrol | police</annotation>
		<annotation cp="๐Ÿš“" type="tts">police car</annotation>
		<annotation cp="๐Ÿš”">car | oncoming | police</annotation>
		<annotation cp="๐Ÿš”" type="tts">oncoming police car</annotation>
		<annotation cp="๐Ÿš•">taxi | vehicle</annotation>
		<annotation cp="๐Ÿš•" type="tts">taxi</annotation>
		<annotation cp="๐Ÿš–">oncoming | taxi</annotation>
		<annotation cp="๐Ÿš–" type="tts">oncoming taxi</annotation>
		<annotation cp="๐Ÿš—">automobile | car</annotation>
		<annotation cp="๐Ÿš—" type="tts">automobile</annotation>
		<annotation cp="๐Ÿš˜">automobile | car | oncoming</annotation>
		<annotation cp="๐Ÿš˜" type="tts">oncoming automobile</annotation>
		<annotation cp="๐Ÿš™">recreational | sport utility | sport utility vehicle</annotation>
		<annotation cp="๐Ÿš™" type="tts">sport utility vehicle</annotation>
		<annotation cp="๐Ÿšš">delivery | truck</annotation>
		<annotation cp="๐Ÿšš" type="tts">delivery truck</annotation>
		<annotation cp="๐Ÿš›">articulated lorry | lorry | semi | truck</annotation>
		<annotation cp="๐Ÿš›" type="tts">articulated lorry</annotation>
		<annotation cp="๐Ÿšœ">tractor | vehicle</annotation>
		<annotation cp="๐Ÿšœ" type="tts">tractor</annotation>
		<annotation cp="๐Ÿšฒ">bicycle | bike</annotation>
		<annotation cp="๐Ÿšฒ" type="tts">bicycle</annotation>
		<annotation cp="๐Ÿ›ด">kick | scooter</annotation>
		<annotation cp="๐Ÿ›ด" type="tts">kick scooter</annotation>
		<annotation cp="๐Ÿ›ต">motor | scooter</annotation>
		<annotation cp="๐Ÿ›ต" type="tts">motor scooter</annotation>
		<annotation cp="๐Ÿš">bus | busstop | stop</annotation>
		<annotation cp="๐Ÿš" type="tts">bus stop</annotation>
		<annotation cp="๐Ÿ›ฃ">highway | motorway | road</annotation>
		<annotation cp="๐Ÿ›ฃ" type="tts">motorway</annotation>
		<annotation cp="๐Ÿ›ค">railway | railway track | train</annotation>
		<annotation cp="๐Ÿ›ค" type="tts">railway track</annotation>
		<annotation cp="๐Ÿ›ข">drum | oil</annotation>
		<annotation cp="๐Ÿ›ข" type="tts">oil drum</annotation>
		<annotation cp="โ›ฝ">diesel | fuel | fuelpump | gas | pump | station</annotation>
		<annotation cp="โ›ฝ" type="tts">fuel pump</annotation>
		<annotation cp="๐Ÿšจ">beacon | car | light | police | revolving</annotation>
		<annotation cp="๐Ÿšจ" type="tts">police car light</annotation>
		<annotation cp="๐Ÿšฅ">horizontal traffic light | light | signal | traffic</annotation>
		<annotation cp="๐Ÿšฅ" type="tts">horizontal traffic light</annotation>
		<annotation cp="๐Ÿšฆ">light | signal | traffic | vertical traffic light</annotation>
		<annotation cp="๐Ÿšฆ" type="tts">vertical traffic light</annotation>
		<annotation cp="๐Ÿ›‘">octagonal | sign | stop</annotation>
		<annotation cp="๐Ÿ›‘" type="tts">stop sign</annotation>
		<annotation cp="๐Ÿšง">barrier | construction</annotation>
		<annotation cp="๐Ÿšง" type="tts">construction</annotation>
		<annotation cp="โš“">anchor | ship | tool</annotation>
		<annotation cp="โš“" type="tts">anchor</annotation>
		<annotation cp="โ›ต">boat | resort | sailboat | sea | yacht</annotation>
		<annotation cp="โ›ต" type="tts">sailboat</annotation>
		<annotation cp="๐Ÿ›ถ">boat | canoe</annotation>
		<annotation cp="๐Ÿ›ถ" type="tts">canoe</annotation>
		<annotation cp="๐Ÿšค">boat | speedboat</annotation>
		<annotation cp="๐Ÿšค" type="tts">speedboat</annotation>
		<annotation cp="๐Ÿ›ณ">passenger | ship</annotation>
		<annotation cp="๐Ÿ›ณ" type="tts">passenger ship</annotation>
		<annotation cp="โ›ด">boat | ferry | passenger</annotation>
		<annotation cp="โ›ด" type="tts">ferry</annotation>
		<annotation cp="๐Ÿ›ฅ">boat | motor boat | motorboat</annotation>
		<annotation cp="๐Ÿ›ฅ" type="tts">motor boat</annotation>
		<annotation cp="๐Ÿšข">boat | passenger | ship</annotation>
		<annotation cp="๐Ÿšข" type="tts">ship</annotation>
		<annotation cp="โœˆ">aeroplane | airplane</annotation>
		<annotation cp="โœˆ" type="tts">airplane</annotation>
		<annotation cp="๐Ÿ›ฉ">aeroplane | airplane | small airplane</annotation>
		<annotation cp="๐Ÿ›ฉ" type="tts">small airplane</annotation>
		<annotation cp="๐Ÿ›ซ">aeroplane | airplane | check-in | departure | departures</annotation>
		<annotation cp="๐Ÿ›ซ" type="tts">airplane departure</annotation>
		<annotation cp="๐Ÿ›ฌ">aeroplane | airplane | airplane arrival | arrivals | arriving | landing</annotation>
		<annotation cp="๐Ÿ›ฌ" type="tts">airplane arrival</annotation>
		<annotation cp="๐Ÿ’บ">chair | seat</annotation>
		<annotation cp="๐Ÿ’บ" type="tts">seat</annotation>
		<annotation cp="๐Ÿš">helicopter | vehicle</annotation>
		<annotation cp="๐Ÿš" type="tts">helicopter</annotation>
		<annotation cp="๐ŸšŸ">railway | suspension</annotation>
		<annotation cp="๐ŸšŸ" type="tts">suspension railway</annotation>
		<annotation cp="๐Ÿš ">cable | gondola | mountain | mountain cableway</annotation>
		<annotation cp="๐Ÿš " type="tts">mountain cableway</annotation>
		<annotation cp="๐Ÿšก">aerial | cable | car | gondola | tramway</annotation>
		<annotation cp="๐Ÿšก" type="tts">aerial tramway</annotation>
		<annotation cp="๐Ÿ›ฐ">satellite | space</annotation>
		<annotation cp="๐Ÿ›ฐ" type="tts">satellite</annotation>
		<annotation cp="๐Ÿš€">rocket | space</annotation>
		<annotation cp="๐Ÿš€" type="tts">rocket</annotation>
		<annotation cp="๐Ÿ›ธ">flying saucer | UFO</annotation>
		<annotation cp="๐Ÿ›ธ" type="tts">flying saucer</annotation>
		<annotation cp="๐Ÿ›Ž">bell | bellhop | hotel</annotation>
		<annotation cp="๐Ÿ›Ž" type="tts">bellhop bell</annotation>
		<annotation cp="โŒ›">hourglass done | sand | timer</annotation>
		<annotation cp="โŒ›" type="tts">hourglass done</annotation>
		<annotation cp="โณ">hourglass | hourglass not done | sand | timer</annotation>
		<annotation cp="โณ" type="tts">hourglass not done</annotation>
		<annotation cp="โŒš">clock | watch</annotation>
		<annotation cp="โŒš" type="tts">watch</annotation>
		<annotation cp="โฐ">alarm | clock</annotation>
		<annotation cp="โฐ" type="tts">alarm clock</annotation>
		<annotation cp="โฑ">clock | stopwatch</annotation>
		<annotation cp="โฑ" type="tts">stopwatch</annotation>
		<annotation cp="โฒ">clock | timer</annotation>
		<annotation cp="โฒ" type="tts">timer clock</annotation>
		<annotation cp="๐Ÿ•ฐ">clock | mantelpiece clock</annotation>
		<annotation cp="๐Ÿ•ฐ" type="tts">mantelpiece clock</annotation>
		<annotation cp="๐Ÿ•›">00 | 12 | 12:00 | clock | oโ€™clock | twelve</annotation>
		<annotation cp="๐Ÿ•›" type="tts">twelve oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ง">12 | 12:30 | 30 | clock | thirty | twelve | twelve-thirty</annotation>
		<annotation cp="๐Ÿ•ง" type="tts">twelve-thirty</annotation>
		<annotation cp="๐Ÿ•">00 | 1 | 1:00 | clock | oโ€™clock | one</annotation>
		<annotation cp="๐Ÿ•" type="tts">one oโ€™clock</annotation>
		<annotation cp="๐Ÿ•œ">1 | 1:30 | 30 | clock | one | one-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•œ" type="tts">one-thirty</annotation>
		<annotation cp="๐Ÿ•‘">00 | 2 | 2:00 | clock | oโ€™clock | two</annotation>
		<annotation cp="๐Ÿ•‘" type="tts">two oโ€™clock</annotation>
		<annotation cp="๐Ÿ•">2 | 2:30 | 30 | clock | thirty | two | two-thirty</annotation>
		<annotation cp="๐Ÿ•" type="tts">two-thirty</annotation>
		<annotation cp="๐Ÿ•’">00 | 3 | 3:00 | clock | oโ€™clock | three</annotation>
		<annotation cp="๐Ÿ•’" type="tts">three oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ž">3 | 3:30 | 30 | clock | thirty | three | three-thirty</annotation>
		<annotation cp="๐Ÿ•ž" type="tts">three-thirty</annotation>
		<annotation cp="๐Ÿ•“">00 | 4 | 4:00 | clock | four | oโ€™clock</annotation>
		<annotation cp="๐Ÿ•“" type="tts">four oโ€™clock</annotation>
		<annotation cp="๐Ÿ•Ÿ">30 | 4 | 4:30 | clock | four | four-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•Ÿ" type="tts">four-thirty</annotation>
		<annotation cp="๐Ÿ•”">00 | 5 | 5:00 | clock | five | oโ€™clock</annotation>
		<annotation cp="๐Ÿ•”" type="tts">five oโ€™clock</annotation>
		<annotation cp="๐Ÿ• ">30 | 5 | 5:30 | clock | five | five-thirty | thirty</annotation>
		<annotation cp="๐Ÿ• " type="tts">five-thirty</annotation>
		<annotation cp="๐Ÿ••">00 | 6 | 6:00 | clock | oโ€™clock | six</annotation>
		<annotation cp="๐Ÿ••" type="tts">six oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ก">30 | 6 | 6:30 | clock | six | six-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•ก" type="tts">six-thirty</annotation>
		<annotation cp="๐Ÿ•–">00 | 7 | 7:00 | clock | oโ€™clock | seven</annotation>
		<annotation cp="๐Ÿ•–" type="tts">seven oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ข">30 | 7 | 7:30 | clock | seven | seven-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•ข" type="tts">seven-thirty</annotation>
		<annotation cp="๐Ÿ•—">00 | 8 | 8:00 | clock | eight | oโ€™clock</annotation>
		<annotation cp="๐Ÿ•—" type="tts">eight oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ฃ">30 | 8 | 8:30 | clock | eight | eight-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•ฃ" type="tts">eight-thirty</annotation>
		<annotation cp="๐Ÿ•˜">00 | 9 | 9:00 | clock | nine | oโ€™clock</annotation>
		<annotation cp="๐Ÿ•˜" type="tts">nine oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ค">30 | 9 | 9:30 | clock | nine | nine-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•ค" type="tts">nine-thirty</annotation>
		<annotation cp="๐Ÿ•™">00 | 10 | 10:00 | clock | oโ€™clock | ten</annotation>
		<annotation cp="๐Ÿ•™" type="tts">ten oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ฅ">10 | 10:30 | 30 | clock | ten | ten-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•ฅ" type="tts">ten-thirty</annotation>
		<annotation cp="๐Ÿ•š">00 | 11 | 11:00 | clock | eleven | oโ€™clock</annotation>
		<annotation cp="๐Ÿ•š" type="tts">eleven oโ€™clock</annotation>
		<annotation cp="๐Ÿ•ฆ">11 | 11:30 | 30 | clock | eleven | eleven-thirty | thirty</annotation>
		<annotation cp="๐Ÿ•ฆ" type="tts">eleven-thirty</annotation>
		<annotation cp="๐ŸŒ‘">dark | moon | new moon</annotation>
		<annotation cp="๐ŸŒ‘" type="tts">new moon</annotation>
		<annotation cp="๐ŸŒ’">crescent | moon | waxing</annotation>
		<annotation cp="๐ŸŒ’" type="tts">waxing crescent moon</annotation>
		<annotation cp="๐ŸŒ“">first quarter moon | moon | quarter</annotation>
		<annotation cp="๐ŸŒ“" type="tts">first quarter moon</annotation>
		<annotation cp="๐ŸŒ”">gibbous | moon | waxing</annotation>
		<annotation cp="๐ŸŒ”" type="tts">waxing gibbous moon</annotation>
		<annotation cp="๐ŸŒ•">full | moon</annotation>
		<annotation cp="๐ŸŒ•" type="tts">full moon</annotation>
		<annotation cp="๐ŸŒ–">gibbous | moon | waning</annotation>
		<annotation cp="๐ŸŒ–" type="tts">waning gibbous moon</annotation>
		<annotation cp="๐ŸŒ—">last quarter moon | moon | quarter</annotation>
		<annotation cp="๐ŸŒ—" type="tts">last quarter moon</annotation>
		<annotation cp="๐ŸŒ˜">crescent | moon | waning</annotation>
		<annotation cp="๐ŸŒ˜" type="tts">waning crescent moon</annotation>
		<annotation cp="๐ŸŒ™">crescent | moon</annotation>
		<annotation cp="๐ŸŒ™" type="tts">crescent moon</annotation>
		<annotation cp="๐ŸŒš">face | moon | new moon face</annotation>
		<annotation cp="๐ŸŒš" type="tts">new moon face</annotation>
		<annotation cp="๐ŸŒ›">face | first quarter moon face | moon | quarter</annotation>
		<annotation cp="๐ŸŒ›" type="tts">first quarter moon face</annotation>
		<annotation cp="๐ŸŒœ">face | last quarter moon face | moon | quarter</annotation>
		<annotation cp="๐ŸŒœ" type="tts">last quarter moon face</annotation>
		<annotation cp="๐ŸŒก">thermometer | weather</annotation>
		<annotation cp="๐ŸŒก" type="tts">thermometer</annotation>
		<annotation cp="โ˜€">bright | rays | sun | sunny</annotation>
		<annotation cp="โ˜€" type="tts">sun</annotation>
		<annotation cp="๐ŸŒ">bright | face | full | moon</annotation>
		<annotation cp="๐ŸŒ" type="tts">full moon face</annotation>
		<annotation cp="๐ŸŒž">bright | face | sun | sun with face</annotation>
		<annotation cp="๐ŸŒž" type="tts">sun with face</annotation>
		<annotation cp="โญ">star</annotation>
		<annotation cp="โญ" type="tts">star</annotation>
		<annotation cp="๐ŸŒŸ">glittery | glow | glowing star | shining | sparkle | star</annotation>
		<annotation cp="๐ŸŒŸ" type="tts">glowing star</annotation>
		<annotation cp="๐ŸŒ ">falling | shooting | star</annotation>
		<annotation cp="๐ŸŒ " type="tts">shooting star</annotation>
		<annotation cp="โ˜">cloud | weather</annotation>
		<annotation cp="โ˜" type="tts">cloud</annotation>
		<annotation cp="โ›…">cloud | sun | sun behind cloud</annotation>
		<annotation cp="โ›…" type="tts">sun behind cloud</annotation>
		<annotation cp="โ›ˆ">cloud | cloud with lightning and rain | rain | thunder</annotation>
		<annotation cp="โ›ˆ" type="tts">cloud with lightning and rain</annotation>
		<annotation cp="๐ŸŒค">cloud | sun | sun behind small cloud</annotation>
		<annotation cp="๐ŸŒค" type="tts">sun behind small cloud</annotation>
		<annotation cp="๐ŸŒฅ">cloud | sun | sun behind large cloud</annotation>
		<annotation cp="๐ŸŒฅ" type="tts">sun behind large cloud</annotation>
		<annotation cp="๐ŸŒฆ">cloud | rain | sun | sun behind rain cloud</annotation>
		<annotation cp="๐ŸŒฆ" type="tts">sun behind rain cloud</annotation>
		<annotation cp="๐ŸŒง">cloud | cloud with rain | rain</annotation>
		<annotation cp="๐ŸŒง" type="tts">cloud with rain</annotation>
		<annotation cp="๐ŸŒจ">cloud | cloud with snow | cold | snow</annotation>
		<annotation cp="๐ŸŒจ" type="tts">cloud with snow</annotation>
		<annotation cp="๐ŸŒฉ">cloud | cloud with lightning | lightning</annotation>
		<annotation cp="๐ŸŒฉ" type="tts">cloud with lightning</annotation>
		<annotation cp="๐ŸŒช">cloud | tornado | whirlwind</annotation>
		<annotation cp="๐ŸŒช" type="tts">tornado</annotation>
		<annotation cp="๐ŸŒซ">cloud | fog</annotation>
		<annotation cp="๐ŸŒซ" type="tts">fog</annotation>
		<annotation cp="๐ŸŒฌ">blow | cloud | face | wind</annotation>
		<annotation cp="๐ŸŒฌ" type="tts">wind face</annotation>
		<annotation cp="๐ŸŒ€">cyclone | dizzy | hurricane | twister | typhoon</annotation>
		<annotation cp="๐ŸŒ€" type="tts">cyclone</annotation>
		<annotation cp="๐ŸŒˆ">rain | rainbow</annotation>
		<annotation cp="๐ŸŒˆ" type="tts">rainbow</annotation>
		<annotation cp="๐ŸŒ‚">closed umbrella | clothing | rain | umbrella</annotation>
		<annotation cp="๐ŸŒ‚" type="tts">closed umbrella</annotation>
		<annotation cp="โ˜‚">clothing | rain | umbrella</annotation>
		<annotation cp="โ˜‚" type="tts">umbrella</annotation>
		<annotation cp="โ˜”">clothing | drop | rain | umbrella | umbrella with rain drops</annotation>
		<annotation cp="โ˜”" type="tts">umbrella with rain drops</annotation>
		<annotation cp="โ›ฑ">rain | sun | umbrella | umbrella on ground</annotation>
		<annotation cp="โ›ฑ" type="tts">umbrella on ground</annotation>
		<annotation cp="โšก">danger | electric | electricity | high voltage | lightning | voltage | zap</annotation>
		<annotation cp="โšก" type="tts">high voltage</annotation>
		<annotation cp="โ„">cold | snow | snowflake</annotation>
		<annotation cp="โ„" type="tts">snowflake</annotation>
		<annotation cp="โ˜ƒ">cold | snow | snowman</annotation>
		<annotation cp="โ˜ƒ" type="tts">snowman</annotation>
		<annotation cp="โ›„">cold | snow | snowman | snowman without snow</annotation>
		<annotation cp="โ›„" type="tts">snowman without snow</annotation>
		<annotation cp="โ˜„">comet | space</annotation>
		<annotation cp="โ˜„" type="tts">comet</annotation>
		<annotation cp="๐Ÿ”ฅ">fire | flame | tool</annotation>
		<annotation cp="๐Ÿ”ฅ" type="tts">fire</annotation>
		<annotation cp="๐Ÿ’ง">cold | comic | drop | droplet | sweat</annotation>
		<annotation cp="๐Ÿ’ง" type="tts">droplet</annotation>
		<annotation cp="๐ŸŒŠ">ocean | water | wave</annotation>
		<annotation cp="๐ŸŒŠ" type="tts">water wave</annotation>
		<annotation cp="๐ŸŽƒ">celebration | halloween | jack | jack-o-lantern | lantern</annotation>
		<annotation cp="๐ŸŽƒ" type="tts">jack-o-lantern</annotation>
		<annotation cp="๐ŸŽ„">celebration | Christmas | tree</annotation>
		<annotation cp="๐ŸŽ„" type="tts">Christmas tree</annotation>
		<annotation cp="๐ŸŽ†">celebration | fireworks</annotation>
		<annotation cp="๐ŸŽ†" type="tts">fireworks</annotation>
		<annotation cp="๐ŸŽ‡">celebration | fireworks | sparkle | sparkler</annotation>
		<annotation cp="๐ŸŽ‡" type="tts">sparkler</annotation>
		<annotation cp="โœจ">sparkle | sparkles | star</annotation>
		<annotation cp="โœจ" type="tts">sparkles</annotation>
		<annotation cp="๐ŸŽˆ">balloon | celebration</annotation>
		<annotation cp="๐ŸŽˆ" type="tts">balloon</annotation>
		<annotation cp="๐ŸŽ‰">celebration | party | popper | tada</annotation>
		<annotation cp="๐ŸŽ‰" type="tts">party popper</annotation>
		<annotation cp="๐ŸŽŠ">ball | celebration | confetti</annotation>
		<annotation cp="๐ŸŽŠ" type="tts">confetti ball</annotation>
		<annotation cp="๐ŸŽ‹">banner | celebration | Japanese | tanabata tree | tree</annotation>
		<annotation cp="๐ŸŽ‹" type="tts">tanabata tree</annotation>
		<annotation cp="๐ŸŽ">bamboo | celebration | Japanese | pine | pine decoration</annotation>
		<annotation cp="๐ŸŽ" type="tts">pine decoration</annotation>
		<annotation cp="๐ŸŽŽ">celebration | doll | festival | Japanese | Japanese dolls</annotation>
		<annotation cp="๐ŸŽŽ" type="tts">Japanese dolls</annotation>
		<annotation cp="๐ŸŽ">carp | celebration | streamer</annotation>
		<annotation cp="๐ŸŽ" type="tts">carp streamer</annotation>
		<annotation cp="๐ŸŽ">bell | celebration | chime | wind</annotation>
		<annotation cp="๐ŸŽ" type="tts">wind chime</annotation>
		<annotation cp="๐ŸŽ‘">celebration | ceremony | moon | moon viewing ceremony</annotation>
		<annotation cp="๐ŸŽ‘" type="tts">moon viewing ceremony</annotation>
		<annotation cp="๐ŸŽ€">celebration | ribbon</annotation>
		<annotation cp="๐ŸŽ€" type="tts">ribbon</annotation>
		<annotation cp="๐ŸŽ">box | celebration | gift | present | wrapped</annotation>
		<annotation cp="๐ŸŽ" type="tts">wrapped gift</annotation>
		<annotation cp="๐ŸŽ—">celebration | reminder | ribbon</annotation>
		<annotation cp="๐ŸŽ—" type="tts">reminder ribbon</annotation>
		<annotation cp="๐ŸŽŸ">admission | admission tickets | ticket</annotation>
		<annotation cp="๐ŸŽŸ" type="tts">admission tickets</annotation>
		<annotation cp="๐ŸŽซ">admission | ticket</annotation>
		<annotation cp="๐ŸŽซ" type="tts">ticket</annotation>
		<annotation cp="๐ŸŽ–">celebration | medal | military</annotation>
		<annotation cp="๐ŸŽ–" type="tts">military medal</annotation>
		<annotation cp="๐Ÿ†">prize | trophy</annotation>
		<annotation cp="๐Ÿ†" type="tts">trophy</annotation>
		<annotation cp="๐Ÿ…">medal | sports medal</annotation>
		<annotation cp="๐Ÿ…" type="tts">sports medal</annotation>
		<annotation cp="๐Ÿฅ‡">1st place medal | first | gold | medal</annotation>
		<annotation cp="๐Ÿฅ‡" type="tts">1st place medal</annotation>
		<annotation cp="๐Ÿฅˆ">2nd place medal | medal | second | silver</annotation>
		<annotation cp="๐Ÿฅˆ" type="tts">2nd place medal</annotation>
		<annotation cp="๐Ÿฅ‰">3rd place medal | bronze | medal | third</annotation>
		<annotation cp="๐Ÿฅ‰" type="tts">3rd place medal</annotation>
		<annotation cp="โšฝ">ball | football | soccer</annotation>
		<annotation cp="โšฝ" type="tts">soccer ball</annotation>
		<annotation cp="โšพ">ball | baseball</annotation>
		<annotation cp="โšพ" type="tts">baseball</annotation>
		<annotation cp="๐Ÿ€">ball | basketball | hoop</annotation>
		<annotation cp="๐Ÿ€" type="tts">basketball</annotation>
		<annotation cp="๐Ÿ">ball | game | volleyball</annotation>
		<annotation cp="๐Ÿ" type="tts">volleyball</annotation>
		<annotation cp="๐Ÿˆ">american | ball | football</annotation>
		<annotation cp="๐Ÿˆ" type="tts">american football</annotation>
		<annotation cp="๐Ÿ‰">ball | football | rugby</annotation>
		<annotation cp="๐Ÿ‰" type="tts">rugby football</annotation>
		<annotation cp="๐ŸŽพ">ball | racquet | tennis</annotation>
		<annotation cp="๐ŸŽพ" type="tts">tennis</annotation>
		<annotation cp="๐ŸŽณ">ball | bowling | game</annotation>
		<annotation cp="๐ŸŽณ" type="tts">bowling</annotation>
		<annotation cp="๐Ÿ">ball | bat | cricket game | game</annotation>
		<annotation cp="๐Ÿ" type="tts">cricket game</annotation>
		<annotation cp="๐Ÿ‘">ball | field | game | hockey | stick</annotation>
		<annotation cp="๐Ÿ‘" type="tts">field hockey</annotation>
		<annotation cp="๐Ÿ’">game | hockey | ice | puck | stick</annotation>
		<annotation cp="๐Ÿ’" type="tts">ice hockey</annotation>
		<annotation cp="๐Ÿ“">ball | bat | game | paddle | ping pong | table tennis</annotation>
		<annotation cp="๐Ÿ“" type="tts">ping pong</annotation>
		<annotation cp="๐Ÿธ">badminton | birdie | game | racquet | shuttlecock</annotation>
		<annotation cp="๐Ÿธ" type="tts">badminton</annotation>
		<annotation cp="๐ŸฅŠ">boxing | glove</annotation>
		<annotation cp="๐ŸฅŠ" type="tts">boxing glove</annotation>
		<annotation cp="๐Ÿฅ‹">judo | karate | martial arts | martial arts uniform | taekwondo | uniform</annotation>
		<annotation cp="๐Ÿฅ‹" type="tts">martial arts uniform</annotation>
		<annotation cp="๐Ÿฅ…">goal | net</annotation>
		<annotation cp="๐Ÿฅ…" type="tts">goal net</annotation>
		<annotation cp="โ›ณ">flag in hole | golf | hole</annotation>
		<annotation cp="โ›ณ" type="tts">flag in hole</annotation>
		<annotation cp="โ›ธ">ice | skate</annotation>
		<annotation cp="โ›ธ" type="tts">ice skate</annotation>
		<annotation cp="๐ŸŽฃ">fish | fishing pole | pole</annotation>
		<annotation cp="๐ŸŽฃ" type="tts">fishing pole</annotation>
		<annotation cp="๐ŸŽฝ">athletics | running | sash | shirt</annotation>
		<annotation cp="๐ŸŽฝ" type="tts">running shirt</annotation>
		<annotation cp="๐ŸŽฟ">ski | skis | snow</annotation>
		<annotation cp="๐ŸŽฟ" type="tts">skis</annotation>
		<annotation cp="๐Ÿ›ท">sled | sledge | sleigh</annotation>
		<annotation cp="๐Ÿ›ท" type="tts">sled</annotation>
		<annotation cp="๐ŸฅŒ">curling stone | game | rock</annotation>
		<annotation cp="๐ŸฅŒ" type="tts">curling stone</annotation>
		<annotation cp="๐ŸŽฏ">bull | bullseye | dart | direct hit | eye | game | hit | target</annotation>
		<annotation cp="๐ŸŽฏ" type="tts">direct hit</annotation>
		<annotation cp="๐ŸŽฑ">8 | ball | billiard | eight | game | pool 8 ball</annotation>
		<annotation cp="๐ŸŽฑ" type="tts">pool 8 ball</annotation>
		<annotation cp="๐Ÿ”ฎ">ball | crystal | fairy tale | fantasy | fortune | tool</annotation>
		<annotation cp="๐Ÿ”ฎ" type="tts">crystal ball</annotation>
		<annotation cp="๐ŸŽฎ">controller | game | video game</annotation>
		<annotation cp="๐ŸŽฎ" type="tts">video game</annotation>
		<annotation cp="๐Ÿ•น">game | joystick | video game</annotation>
		<annotation cp="๐Ÿ•น" type="tts">joystick</annotation>
		<annotation cp="๐ŸŽฐ">game | slot | slot machine</annotation>
		<annotation cp="๐ŸŽฐ" type="tts">slot machine</annotation>
		<annotation cp="๐ŸŽฒ">dice | die | game</annotation>
		<annotation cp="๐ŸŽฒ" type="tts">game die</annotation>
		<annotation cp="โ™ ">card | game | spade suit</annotation>
		<annotation cp="โ™ " type="tts">spade suit</annotation>
		<annotation cp="โ™ฅ">card | game | heart suit</annotation>
		<annotation cp="โ™ฅ" type="tts">heart suit</annotation>
		<annotation cp="โ™ฆ">card | diamond suit | game</annotation>
		<annotation cp="โ™ฆ" type="tts">diamond suit</annotation>
		<annotation cp="โ™ฃ">card | club suit | game</annotation>
		<annotation cp="โ™ฃ" type="tts">club suit</annotation>
		<annotation cp="๐Ÿƒ">card | game | joker | wildcard</annotation>
		<annotation cp="๐Ÿƒ" type="tts">joker</annotation>
		<annotation cp="๐Ÿ€„">game | mahjong | mahjong red dragon | red</annotation>
		<annotation cp="๐Ÿ€„" type="tts">mahjong red dragon</annotation>
		<annotation cp="๐ŸŽด">card | flower | flower playing cards | game | Japanese | playing</annotation>
		<annotation cp="๐ŸŽด" type="tts">flower playing cards</annotation>
		<annotation cp="๐ŸŽญ">art | mask | performing | performing arts | theater | theatre</annotation>
		<annotation cp="๐ŸŽญ" type="tts">performing arts</annotation>
		<annotation cp="๐Ÿ–ผ">art | frame | framed picture | museum | painting | picture</annotation>
		<annotation cp="๐Ÿ–ผ" type="tts">framed picture</annotation>
		<annotation cp="๐ŸŽจ">art | artist palette | museum | painting | palette</annotation>
		<annotation cp="๐ŸŽจ" type="tts">artist palette</annotation>
		<annotation cp="๐Ÿ”‡">mute | muted speaker | quiet | silent | speaker</annotation>
		<annotation cp="๐Ÿ”‡" type="tts">muted speaker</annotation>
		<annotation cp="๐Ÿ”ˆ">soft | speaker low volume</annotation>
		<annotation cp="๐Ÿ”ˆ" type="tts">speaker low volume</annotation>
		<annotation cp="๐Ÿ”‰">medium | speaker medium volume</annotation>
		<annotation cp="๐Ÿ”‰" type="tts">speaker medium volume</annotation>
		<annotation cp="๐Ÿ”Š">loud | speaker high volume</annotation>
		<annotation cp="๐Ÿ”Š" type="tts">speaker high volume</annotation>
		<annotation cp="๐Ÿ“ข">loud | loudspeaker | public address</annotation>
		<annotation cp="๐Ÿ“ข" type="tts">loudspeaker</annotation>
		<annotation cp="๐Ÿ“ฃ">cheering | megaphone</annotation>
		<annotation cp="๐Ÿ“ฃ" type="tts">megaphone</annotation>
		<annotation cp="๐Ÿ“ฏ">horn | post | postal</annotation>
		<annotation cp="๐Ÿ“ฏ" type="tts">postal horn</annotation>
		<annotation cp="๐Ÿ””">bell</annotation>
		<annotation cp="๐Ÿ””" type="tts">bell</annotation>
		<annotation cp="๐Ÿ”•">bell | bell with slash | forbidden | mute | no | not | prohibited | quiet | silent</annotation>
		<annotation cp="๐Ÿ”•" type="tts">bell with slash</annotation>
		<annotation cp="๐ŸŽผ">music | musical score | score</annotation>
		<annotation cp="๐ŸŽผ" type="tts">musical score</annotation>
		<annotation cp="๐ŸŽต">music | musical note | note</annotation>
		<annotation cp="๐ŸŽต" type="tts">musical note</annotation>
		<annotation cp="๐ŸŽถ">music | musical notes | note | notes</annotation>
		<annotation cp="๐ŸŽถ" type="tts">musical notes</annotation>
		<annotation cp="๐ŸŽ™">mic | microphone | music | studio</annotation>
		<annotation cp="๐ŸŽ™" type="tts">studio microphone</annotation>
		<annotation cp="๐ŸŽš">level | music | slider</annotation>
		<annotation cp="๐ŸŽš" type="tts">level slider</annotation>
		<annotation cp="๐ŸŽ›">control | knobs | music</annotation>
		<annotation cp="๐ŸŽ›" type="tts">control knobs</annotation>
		<annotation cp="๐ŸŽค">karaoke | mic | microphone</annotation>
		<annotation cp="๐ŸŽค" type="tts">microphone</annotation>
		<annotation cp="๐ŸŽง">earbud | headphone</annotation>
		<annotation cp="๐ŸŽง" type="tts">headphone</annotation>
		<annotation cp="๐Ÿ“ป">radio | video</annotation>
		<annotation cp="๐Ÿ“ป" type="tts">radio</annotation>
		<annotation cp="๐ŸŽท">instrument | music | sax | saxophone</annotation>
		<annotation cp="๐ŸŽท" type="tts">saxophone</annotation>
		<annotation cp="๐ŸŽธ">guitar | instrument | music</annotation>
		<annotation cp="๐ŸŽธ" type="tts">guitar</annotation>
		<annotation cp="๐ŸŽน">instrument | keyboard | music | musical keyboard | piano</annotation>
		<annotation cp="๐ŸŽน" type="tts">musical keyboard</annotation>
		<annotation cp="๐ŸŽบ">instrument | music | trumpet</annotation>
		<annotation cp="๐ŸŽบ" type="tts">trumpet</annotation>
		<annotation cp="๐ŸŽป">instrument | music | violin</annotation>
		<annotation cp="๐ŸŽป" type="tts">violin</annotation>
		<annotation cp="๐Ÿฅ">drum | drumsticks | music</annotation>
		<annotation cp="๐Ÿฅ" type="tts">drum</annotation>
		<annotation cp="๐Ÿ“ฑ">cell | mobile | phone | telephone</annotation>
		<annotation cp="๐Ÿ“ฑ" type="tts">mobile phone</annotation>
		<annotation cp="๐Ÿ“ฒ">arrow | call | cell | mobile | mobile phone with arrow | phone | receive | telephone</annotation>
		<annotation cp="๐Ÿ“ฒ" type="tts">mobile phone with arrow</annotation>
		<annotation cp="โ˜Ž">phone | telephone</annotation>
		<annotation cp="โ˜Ž" type="tts">telephone</annotation>
		<annotation cp="๐Ÿ“ž">phone | receiver | telephone</annotation>
		<annotation cp="๐Ÿ“ž" type="tts">telephone receiver</annotation>
		<annotation cp="๐Ÿ“Ÿ">pager</annotation>
		<annotation cp="๐Ÿ“Ÿ" type="tts">pager</annotation>
		<annotation cp="๐Ÿ“ ">fax | fax machine</annotation>
		<annotation cp="๐Ÿ“ " type="tts">fax machine</annotation>
		<annotation cp="๐Ÿ”‹">battery</annotation>
		<annotation cp="๐Ÿ”‹" type="tts">battery</annotation>
		<annotation cp="๐Ÿ”Œ">electric | electricity | plug</annotation>
		<annotation cp="๐Ÿ”Œ" type="tts">electric plug</annotation>
		<annotation cp="๐Ÿ’ป">computer | laptop computer | pc | personal</annotation>
		<annotation cp="๐Ÿ’ป" type="tts">laptop computer</annotation>
		<annotation cp="๐Ÿ–ฅ">computer | desktop</annotation>
		<annotation cp="๐Ÿ–ฅ" type="tts">desktop computer</annotation>
		<annotation cp="๐Ÿ–จ">computer | printer</annotation>
		<annotation cp="๐Ÿ–จ" type="tts">printer</annotation>
		<annotation cp="โŒจ">computer | keyboard</annotation>
		<annotation cp="โŒจ" type="tts">keyboard</annotation>
		<annotation cp="๐Ÿ–ฑ">computer | computer mouse</annotation>
		<annotation cp="๐Ÿ–ฑ" type="tts">computer mouse</annotation>
		<annotation cp="๐Ÿ–ฒ">computer | trackball</annotation>
		<annotation cp="๐Ÿ–ฒ" type="tts">trackball</annotation>
		<annotation cp="๐Ÿ’ฝ">computer | disk | minidisk | optical</annotation>
		<annotation cp="๐Ÿ’ฝ" type="tts">computer disk</annotation>
		<annotation cp="๐Ÿ’พ">computer | disk | floppy</annotation>
		<annotation cp="๐Ÿ’พ" type="tts">floppy disk</annotation>
		<annotation cp="๐Ÿ’ฟ">cd | computer | disk | optical</annotation>
		<annotation cp="๐Ÿ’ฟ" type="tts">optical disk</annotation>
		<annotation cp="๐Ÿ“€">blu-ray | computer | disk | dvd | optical</annotation>
		<annotation cp="๐Ÿ“€" type="tts">dvd</annotation>
		<annotation cp="๐ŸŽฅ">camera | cinema | movie</annotation>
		<annotation cp="๐ŸŽฅ" type="tts">movie camera</annotation>
		<annotation cp="๐ŸŽž">cinema | film | frames | movie</annotation>
		<annotation cp="๐ŸŽž" type="tts">film frames</annotation>
		<annotation cp="๐Ÿ“ฝ">cinema | film | movie | projector | video</annotation>
		<annotation cp="๐Ÿ“ฝ" type="tts">film projector</annotation>
		<annotation cp="๐ŸŽฌ">clapper | clapper board | movie</annotation>
		<annotation cp="๐ŸŽฌ" type="tts">clapper board</annotation>
		<annotation cp="๐Ÿ“บ">television | tv | video</annotation>
		<annotation cp="๐Ÿ“บ" type="tts">television</annotation>
		<annotation cp="๐Ÿ“ท">camera | video</annotation>
		<annotation cp="๐Ÿ“ท" type="tts">camera</annotation>
		<annotation cp="๐Ÿ“ธ">camera | camera with flash | flash | video</annotation>
		<annotation cp="๐Ÿ“ธ" type="tts">camera with flash</annotation>
		<annotation cp="๐Ÿ“น">camera | video</annotation>
		<annotation cp="๐Ÿ“น" type="tts">video camera</annotation>
		<annotation cp="๐Ÿ“ผ">tape | vhs | video | videocassette</annotation>
		<annotation cp="๐Ÿ“ผ" type="tts">videocassette</annotation>
		<annotation cp="๐Ÿ”">glass | magnifying | magnifying glass tilted left | search | tool</annotation>
		<annotation cp="๐Ÿ”" type="tts">magnifying glass tilted left</annotation>
		<annotation cp="๐Ÿ”Ž">glass | magnifying | magnifying glass tilted right | search | tool</annotation>
		<annotation cp="๐Ÿ”Ž" type="tts">magnifying glass tilted right</annotation>
		<annotation cp="๐Ÿ•ฏ">candle | light</annotation>
		<annotation cp="๐Ÿ•ฏ" type="tts">candle</annotation>
		<annotation cp="๐Ÿ’ก">bulb | comic | electric | idea | light</annotation>
		<annotation cp="๐Ÿ’ก" type="tts">light bulb</annotation>
		<annotation cp="๐Ÿ”ฆ">electric | flashlight | light | tool | torch</annotation>
		<annotation cp="๐Ÿ”ฆ" type="tts">flashlight</annotation>
		<annotation cp="๐Ÿฎ">bar | lantern | light | red | red paper lantern</annotation>
		<annotation cp="๐Ÿฎ" type="tts">red paper lantern</annotation>
		<annotation cp="๐Ÿ“”">book | cover | decorated | notebook | notebook with decorative cover</annotation>
		<annotation cp="๐Ÿ“”" type="tts">notebook with decorative cover</annotation>
		<annotation cp="๐Ÿ“•">book | closed</annotation>
		<annotation cp="๐Ÿ“•" type="tts">closed book</annotation>
		<annotation cp="๐Ÿ“–">book | open</annotation>
		<annotation cp="๐Ÿ“–" type="tts">open book</annotation>
		<annotation cp="๐Ÿ“—">book | green</annotation>
		<annotation cp="๐Ÿ“—" type="tts">green book</annotation>
		<annotation cp="๐Ÿ“˜">blue | book</annotation>
		<annotation cp="๐Ÿ“˜" type="tts">blue book</annotation>
		<annotation cp="๐Ÿ“™">book | orange</annotation>
		<annotation cp="๐Ÿ“™" type="tts">orange book</annotation>
		<annotation cp="๐Ÿ“š">book | books</annotation>
		<annotation cp="๐Ÿ“š" type="tts">books</annotation>
		<annotation cp="๐Ÿ““">notebook</annotation>
		<annotation cp="๐Ÿ““" type="tts">notebook</annotation>
		<annotation cp="๐Ÿ“’">ledger | notebook</annotation>
		<annotation cp="๐Ÿ“’" type="tts">ledger</annotation>
		<annotation cp="๐Ÿ“ƒ">curl | document | page | page with curl</annotation>
		<annotation cp="๐Ÿ“ƒ" type="tts">page with curl</annotation>
		<annotation cp="๐Ÿ“œ">paper | scroll</annotation>
		<annotation cp="๐Ÿ“œ" type="tts">scroll</annotation>
		<annotation cp="๐Ÿ“„">document | page | page facing up</annotation>
		<annotation cp="๐Ÿ“„" type="tts">page facing up</annotation>
		<annotation cp="๐Ÿ“ฐ">news | newspaper | paper</annotation>
		<annotation cp="๐Ÿ“ฐ" type="tts">newspaper</annotation>
		<annotation cp="๐Ÿ—ž">news | newspaper | paper | rolled | rolled-up newspaper</annotation>
		<annotation cp="๐Ÿ—ž" type="tts">rolled-up newspaper</annotation>
		<annotation cp="๐Ÿ“‘">bookmark | mark | marker | tabs</annotation>
		<annotation cp="๐Ÿ“‘" type="tts">bookmark tabs</annotation>
		<annotation cp="๐Ÿ”–">bookmark | mark</annotation>
		<annotation cp="๐Ÿ”–" type="tts">bookmark</annotation>
		<annotation cp="๐Ÿท">label</annotation>
		<annotation cp="๐Ÿท" type="tts">label</annotation>
		<annotation cp="๐Ÿ’ฐ">bag | dollar | money | moneybag</annotation>
		<annotation cp="๐Ÿ’ฐ" type="tts">money bag</annotation>
		<annotation cp="๐Ÿ’ด">bank | banknote | bill | currency | money | note | yen</annotation>
		<annotation cp="๐Ÿ’ด" type="tts">yen banknote</annotation>
		<annotation cp="๐Ÿ’ต">bank | banknote | bill | currency | dollar | money | note</annotation>
		<annotation cp="๐Ÿ’ต" type="tts">dollar banknote</annotation>
		<annotation cp="๐Ÿ’ถ">bank | banknote | bill | currency | euro | money | note</annotation>
		<annotation cp="๐Ÿ’ถ" type="tts">euro banknote</annotation>
		<annotation cp="๐Ÿ’ท">bank | banknote | bill | currency | money | note | pound</annotation>
		<annotation cp="๐Ÿ’ท" type="tts">pound banknote</annotation>
		<annotation cp="๐Ÿ’ธ">bank | banknote | bill | dollar | fly | money | money with wings | note | wings</annotation>
		<annotation cp="๐Ÿ’ธ" type="tts">money with wings</annotation>
		<annotation cp="๐Ÿ’ณ">bank | card | credit | money</annotation>
		<annotation cp="๐Ÿ’ณ" type="tts">credit card</annotation>
		<annotation cp="๐Ÿ’น">bank | chart | chart increasing with yen | currency | graph | growth | market | money | rise | trend | upward | yen</annotation>
		<annotation cp="๐Ÿ’น" type="tts">chart increasing with yen</annotation>
		<annotation cp="๐Ÿ’ฑ">bank | currency | exchange | money</annotation>
		<annotation cp="๐Ÿ’ฑ" type="tts">currency exchange</annotation>
		<annotation cp="๐Ÿ’ฒ">currency | dollar | heavy dollar sign | money</annotation>
		<annotation cp="๐Ÿ’ฒ" type="tts">heavy dollar sign</annotation>
		<annotation cp="โœ‰">email | envelope | letter</annotation>
		<annotation cp="โœ‰" type="tts">envelope</annotation>
		<annotation cp="๐Ÿ“ง">e-mail | email | letter | mail</annotation>
		<annotation cp="๐Ÿ“ง" type="tts">e-mail</annotation>
		<annotation cp="๐Ÿ“จ">e-mail | email | envelope | incoming | letter | mail | receive</annotation>
		<annotation cp="๐Ÿ“จ" type="tts">incoming envelope</annotation>
		<annotation cp="๐Ÿ“ฉ">arrow | down | e-mail | email | envelope | envelope with arrow | letter | mail | outgoing | sent</annotation>
		<annotation cp="๐Ÿ“ฉ" type="tts">envelope with arrow</annotation>
		<annotation cp="๐Ÿ“ค">box | letter | mail | outbox | sent | tray</annotation>
		<annotation cp="๐Ÿ“ค" type="tts">outbox tray</annotation>
		<annotation cp="๐Ÿ“ฅ">box | inbox | letter | mail | receive | tray</annotation>
		<annotation cp="๐Ÿ“ฅ" type="tts">inbox tray</annotation>
		<annotation cp="๐Ÿ“ฆ">box | package | parcel</annotation>
		<annotation cp="๐Ÿ“ฆ" type="tts">package</annotation>
		<annotation cp="๐Ÿ“ซ">closed | closed mailbox with raised flag | mail | mailbox | postbox</annotation>
		<annotation cp="๐Ÿ“ซ" type="tts">closed mailbox with raised flag</annotation>
		<annotation cp="๐Ÿ“ช">closed | closed mailbox with lowered flag | lowered | mail | mailbox | postbox</annotation>
		<annotation cp="๐Ÿ“ช" type="tts">closed mailbox with lowered flag</annotation>
		<annotation cp="๐Ÿ“ฌ">mail | mailbox | open | open mailbox with raised flag | postbox</annotation>
		<annotation cp="๐Ÿ“ฌ" type="tts">open mailbox with raised flag</annotation>
		<annotation cp="๐Ÿ“ญ">lowered | mail | mailbox | open | open mailbox with lowered flag | postbox</annotation>
		<annotation cp="๐Ÿ“ญ" type="tts">open mailbox with lowered flag</annotation>
		<annotation cp="๐Ÿ“ฎ">mail | mailbox | postbox</annotation>
		<annotation cp="๐Ÿ“ฎ" type="tts">postbox</annotation>
		<annotation cp="๐Ÿ—ณ">ballot | ballot box with ballot | box</annotation>
		<annotation cp="๐Ÿ—ณ" type="tts">ballot box with ballot</annotation>
		<annotation cp="โœ">pencil</annotation>
		<annotation cp="โœ" type="tts">pencil</annotation>
		<annotation cp="โœ’">black nib | nib | pen</annotation>
		<annotation cp="โœ’" type="tts">black nib</annotation>
		<annotation cp="๐Ÿ–‹">fountain | pen</annotation>
		<annotation cp="๐Ÿ–‹" type="tts">fountain pen</annotation>
		<annotation cp="๐Ÿ–Š">ballpoint | pen</annotation>
		<annotation cp="๐Ÿ–Š" type="tts">pen</annotation>
		<annotation cp="๐Ÿ–Œ">paintbrush | painting</annotation>
		<annotation cp="๐Ÿ–Œ" type="tts">paintbrush</annotation>
		<annotation cp="๐Ÿ–">crayon</annotation>
		<annotation cp="๐Ÿ–" type="tts">crayon</annotation>
		<annotation cp="๐Ÿ“">memo | pencil</annotation>
		<annotation cp="๐Ÿ“" type="tts">memo</annotation>
		<annotation cp="๐Ÿ’ผ">briefcase</annotation>
		<annotation cp="๐Ÿ’ผ" type="tts">briefcase</annotation>
		<annotation cp="๐Ÿ“">file | folder</annotation>
		<annotation cp="๐Ÿ“" type="tts">file folder</annotation>
		<annotation cp="๐Ÿ“‚">file | folder | open</annotation>
		<annotation cp="๐Ÿ“‚" type="tts">open file folder</annotation>
		<annotation cp="๐Ÿ—‚">card | dividers | index</annotation>
		<annotation cp="๐Ÿ—‚" type="tts">card index dividers</annotation>
		<annotation cp="๐Ÿ“…">calendar | date</annotation>
		<annotation cp="๐Ÿ“…" type="tts">calendar</annotation>
		<annotation cp="๐Ÿ“†">calendar | tear-off calendar</annotation>
		<annotation cp="๐Ÿ“†" type="tts">tear-off calendar</annotation>
		<annotation cp="๐Ÿ—’">note | pad | spiral | spiral notepad</annotation>
		<annotation cp="๐Ÿ—’" type="tts">spiral notepad</annotation>
		<annotation cp="๐Ÿ—“">calendar | pad | spiral</annotation>
		<annotation cp="๐Ÿ—“" type="tts">spiral calendar</annotation>
		<annotation cp="๐Ÿ“‡">card | index | rolodex</annotation>
		<annotation cp="๐Ÿ“‡" type="tts">card index</annotation>
		<annotation cp="๐Ÿ“ˆ">chart | chart increasing | graph | growth | trend | upward</annotation>
		<annotation cp="๐Ÿ“ˆ" type="tts">chart increasing</annotation>
		<annotation cp="๐Ÿ“‰">chart | chart decreasing | down | graph | trend</annotation>
		<annotation cp="๐Ÿ“‰" type="tts">chart decreasing</annotation>
		<annotation cp="๐Ÿ“Š">bar | chart | graph</annotation>
		<annotation cp="๐Ÿ“Š" type="tts">bar chart</annotation>
		<annotation cp="๐Ÿ“‹">clipboard</annotation>
		<annotation cp="๐Ÿ“‹" type="tts">clipboard</annotation>
		<annotation cp="๐Ÿ“Œ">pin | pushpin</annotation>
		<annotation cp="๐Ÿ“Œ" type="tts">pushpin</annotation>
		<annotation cp="๐Ÿ“">pin | pushpin | round pushpin</annotation>
		<annotation cp="๐Ÿ“" type="tts">round pushpin</annotation>
		<annotation cp="๐Ÿ“Ž">paperclip</annotation>
		<annotation cp="๐Ÿ“Ž" type="tts">paperclip</annotation>
		<annotation cp="๐Ÿ–‡">link | linked paperclips | paperclip</annotation>
		<annotation cp="๐Ÿ–‡" type="tts">linked paperclips</annotation>
		<annotation cp="๐Ÿ“">ruler | straight edge | straight ruler</annotation>
		<annotation cp="๐Ÿ“" type="tts">straight ruler</annotation>
		<annotation cp="๐Ÿ“">ruler | set | triangle | triangular ruler</annotation>
		<annotation cp="๐Ÿ“" type="tts">triangular ruler</annotation>
		<annotation cp="โœ‚">cutting | scissors | tool</annotation>
		<annotation cp="โœ‚" type="tts">scissors</annotation>
		<annotation cp="๐Ÿ—ƒ">box | card | file</annotation>
		<annotation cp="๐Ÿ—ƒ" type="tts">card file box</annotation>
		<annotation cp="๐Ÿ—„">cabinet | file | filing</annotation>
		<annotation cp="๐Ÿ—„" type="tts">file cabinet</annotation>
		<annotation cp="๐Ÿ—‘">wastebasket</annotation>
		<annotation cp="๐Ÿ—‘" type="tts">wastebasket</annotation>
		<annotation cp="๐Ÿ”’">closed | locked</annotation>
		<annotation cp="๐Ÿ”’" type="tts">locked</annotation>
		<annotation cp="๐Ÿ”“">lock | open | unlock | unlocked</annotation>
		<annotation cp="๐Ÿ”“" type="tts">unlocked</annotation>
		<annotation cp="๐Ÿ”">ink | lock | locked with pen | nib | pen | privacy</annotation>
		<annotation cp="๐Ÿ”" type="tts">locked with pen</annotation>
		<annotation cp="๐Ÿ”">closed | key | lock | locked with key | secure</annotation>
		<annotation cp="๐Ÿ”" type="tts">locked with key</annotation>
		<annotation cp="๐Ÿ”‘">key | lock | password</annotation>
		<annotation cp="๐Ÿ”‘" type="tts">key</annotation>
		<annotation cp="๐Ÿ—">clue | key | lock | old</annotation>
		<annotation cp="๐Ÿ—" type="tts">old key</annotation>
		<annotation cp="๐Ÿ”จ">hammer | tool</annotation>
		<annotation cp="๐Ÿ”จ" type="tts">hammer</annotation>
		<annotation cp="โ›">mining | pick | tool</annotation>
		<annotation cp="โ›" type="tts">pick</annotation>
		<annotation cp="โš’">hammer | hammer and pick | pick | tool</annotation>
		<annotation cp="โš’" type="tts">hammer and pick</annotation>
		<annotation cp="๐Ÿ› ">hammer | hammer and wrench | spanner | tool | wrench</annotation>
		<annotation cp="๐Ÿ› " type="tts">hammer and wrench</annotation>
		<annotation cp="๐Ÿ—ก">dagger | knife | weapon</annotation>
		<annotation cp="๐Ÿ—ก" type="tts">dagger</annotation>
		<annotation cp="โš”">crossed | swords | weapon</annotation>
		<annotation cp="โš”" type="tts">crossed swords</annotation>
		<annotation cp="๐Ÿ”ซ">gun | handgun | pistol | revolver | tool | weapon</annotation>
		<annotation cp="๐Ÿ”ซ" type="tts">pistol</annotation>
		<annotation cp="๐Ÿน">archer | archery | arrow | bow | bow and arrow | Sagittarius | tool | weapon | zodiac</annotation>
		<annotation cp="๐Ÿน" type="tts">bow and arrow</annotation>
		<annotation cp="๐Ÿ›ก">shield | weapon</annotation>
		<annotation cp="๐Ÿ›ก" type="tts">shield</annotation>
		<annotation cp="๐Ÿ”ง">spanner | tool | wrench</annotation>
		<annotation cp="๐Ÿ”ง" type="tts">wrench</annotation>
		<annotation cp="๐Ÿ”ฉ">bolt | nut | nut and bolt | tool</annotation>
		<annotation cp="๐Ÿ”ฉ" type="tts">nut and bolt</annotation>
		<annotation cp="โš™">cog | cogwheel | gear | tool</annotation>
		<annotation cp="โš™" type="tts">gear</annotation>
		<annotation cp="๐Ÿ—œ">clamp | compress | tool | vice</annotation>
		<annotation cp="๐Ÿ—œ" type="tts">clamp</annotation>
		<annotation cp="โš–">balance | balance scale | justice | Libra | scales | tool | weight | zodiac</annotation>
		<annotation cp="โš–" type="tts">balance scale</annotation>
		<annotation cp="๐Ÿ”—">link</annotation>
		<annotation cp="๐Ÿ”—" type="tts">link</annotation>
		<annotation cp="โ›“">chain | chains</annotation>
		<annotation cp="โ›“" type="tts">chains</annotation>
		<annotation cp="โš—">alembic | chemistry | tool</annotation>
		<annotation cp="โš—" type="tts">alembic</annotation>
		<annotation cp="๐Ÿ”ฌ">microscope | science | tool</annotation>
		<annotation cp="๐Ÿ”ฌ" type="tts">microscope</annotation>
		<annotation cp="๐Ÿ”ญ">science | telescope | tool</annotation>
		<annotation cp="๐Ÿ”ญ" type="tts">telescope</annotation>
		<annotation cp="๐Ÿ“ก">antenna | dish | satellite</annotation>
		<annotation cp="๐Ÿ“ก" type="tts">satellite antenna</annotation>
		<annotation cp="๐Ÿ’‰">doctor | medicine | needle | shot | sick | syringe | tool</annotation>
		<annotation cp="๐Ÿ’‰" type="tts">syringe</annotation>
		<annotation cp="๐Ÿ’Š">doctor | medicine | pill | sick</annotation>
		<annotation cp="๐Ÿ’Š" type="tts">pill</annotation>
		<annotation cp="๐Ÿšช">door</annotation>
		<annotation cp="๐Ÿšช" type="tts">door</annotation>
		<annotation cp="๐Ÿ›">bed | hotel | sleep</annotation>
		<annotation cp="๐Ÿ›" type="tts">bed</annotation>
		<annotation cp="๐Ÿ›‹">couch | couch and lamp | hotel | lamp</annotation>
		<annotation cp="๐Ÿ›‹" type="tts">couch and lamp</annotation>
		<annotation cp="๐Ÿšฝ">toilet</annotation>
		<annotation cp="๐Ÿšฝ" type="tts">toilet</annotation>
		<annotation cp="๐Ÿšฟ">shower | water</annotation>
		<annotation cp="๐Ÿšฟ" type="tts">shower</annotation>
		<annotation cp="๐Ÿ›">bath | bathtub</annotation>
		<annotation cp="๐Ÿ›" type="tts">bathtub</annotation>
		<annotation cp="๐Ÿ›’">cart | shopping | trolley</annotation>
		<annotation cp="๐Ÿ›’" type="tts">shopping cart</annotation>
		<annotation cp="๐Ÿšฌ">cigarette | smoking</annotation>
		<annotation cp="๐Ÿšฌ" type="tts">cigarette</annotation>
		<annotation cp="โšฐ">coffin | death</annotation>
		<annotation cp="โšฐ" type="tts">coffin</annotation>
		<annotation cp="โšฑ">ashes | death | funeral | urn</annotation>
		<annotation cp="โšฑ" type="tts">funeral urn</annotation>
		<annotation cp="๐Ÿ—ฟ">face | moai | moyai | statue</annotation>
		<annotation cp="๐Ÿ—ฟ" type="tts">moai</annotation>
		<annotation cp="๐Ÿง">atm | ATM sign | automated | bank | teller</annotation>
		<annotation cp="๐Ÿง" type="tts">ATM sign</annotation>
		<annotation cp="๐Ÿšฎ">litter | litter bin | litter in bin sign</annotation>
		<annotation cp="๐Ÿšฎ" type="tts">litter in bin sign</annotation>
		<annotation cp="๐Ÿšฐ">drinking | potable | water</annotation>
		<annotation cp="๐Ÿšฐ" type="tts">potable water</annotation>
		<annotation cp="โ™ฟ">access | wheelchair symbol</annotation>
		<annotation cp="โ™ฟ" type="tts">wheelchair symbol</annotation>
		<annotation cp="๐Ÿšน">lavatory | man | menโ€™s room | restroom | wc</annotation>
		<annotation cp="๐Ÿšน" type="tts">menโ€™s room</annotation>
		<annotation cp="๐Ÿšบ">lavatory | restroom | wc | woman | womenโ€™s room</annotation>
		<annotation cp="๐Ÿšบ" type="tts">womenโ€™s room</annotation>
		<annotation cp="๐Ÿšป">lavatory | restroom | WC</annotation>
		<annotation cp="๐Ÿšป" type="tts">restroom</annotation>
		<annotation cp="๐Ÿšผ">baby | baby symbol | changing</annotation>
		<annotation cp="๐Ÿšผ" type="tts">baby symbol</annotation>
		<annotation cp="๐Ÿšพ">closet | lavatory | restroom | water | wc</annotation>
		<annotation cp="๐Ÿšพ" type="tts">water closet</annotation>
		<annotation cp="๐Ÿ›‚">control | passport</annotation>
		<annotation cp="๐Ÿ›‚" type="tts">passport control</annotation>
		<annotation cp="๐Ÿ›ƒ">customs</annotation>
		<annotation cp="๐Ÿ›ƒ" type="tts">customs</annotation>
		<annotation cp="๐Ÿ›„">baggage | claim</annotation>
		<annotation cp="๐Ÿ›„" type="tts">baggage claim</annotation>
		<annotation cp="๐Ÿ›…">baggage | left luggage | locker | luggage</annotation>
		<annotation cp="๐Ÿ›…" type="tts">left luggage</annotation>
		<annotation cp="โš ">warning</annotation>
		<annotation cp="โš " type="tts">warning</annotation>
		<annotation cp="๐Ÿšธ">child | children crossing | crossing | pedestrian | traffic</annotation>
		<annotation cp="๐Ÿšธ" type="tts">children crossing</annotation>
		<annotation cp="โ›”">entry | forbidden | no | not | prohibited | traffic</annotation>
		<annotation cp="โ›”" type="tts">no entry</annotation>
		<annotation cp="๐Ÿšซ">entry | forbidden | no | not | prohibited</annotation>
		<annotation cp="๐Ÿšซ" type="tts">prohibited</annotation>
		<annotation cp="๐Ÿšณ">bicycle | bike | forbidden | no | no bicycles | not | prohibited</annotation>
		<annotation cp="๐Ÿšณ" type="tts">no bicycles</annotation>
		<annotation cp="๐Ÿšญ">forbidden | no | not | prohibited | smoking</annotation>
		<annotation cp="๐Ÿšญ" type="tts">no smoking</annotation>
		<annotation cp="๐Ÿšฏ">forbidden | litter | no | no littering | not | prohibited</annotation>
		<annotation cp="๐Ÿšฏ" type="tts">no littering</annotation>
		<annotation cp="๐Ÿšฑ">non-drinking | non-potable | water</annotation>
		<annotation cp="๐Ÿšฑ" type="tts">non-potable water</annotation>
		<annotation cp="๐Ÿšท">forbidden | no | no pedestrians | not | pedestrian | prohibited</annotation>
		<annotation cp="๐Ÿšท" type="tts">no pedestrians</annotation>
		<annotation cp="๐Ÿ“ต">cell | forbidden | mobile | no | no mobile phones | not | phone | prohibited | telephone</annotation>
		<annotation cp="๐Ÿ“ต" type="tts">no mobile phones</annotation>
		<annotation cp="๐Ÿ”ž">18 | age restriction | eighteen | forbidden | no | no one under eighteen | not | prohibited | underage</annotation>
		<annotation cp="๐Ÿ”ž" type="tts">no one under eighteen</annotation>
		<annotation cp="โ˜ข">radioactive | sign</annotation>
		<annotation cp="โ˜ข" type="tts">radioactive</annotation>
		<annotation cp="โ˜ฃ">biohazard | sign</annotation>
		<annotation cp="โ˜ฃ" type="tts">biohazard</annotation>
		<annotation cp="โฌ†">arrow | cardinal | direction | north | up arrow</annotation>
		<annotation cp="โฌ†" type="tts">up arrow</annotation>
		<annotation cp="โ†—">arrow | direction | intercardinal | northeast | up-right arrow</annotation>
		<annotation cp="โ†—" type="tts">up-right arrow</annotation>
		<annotation cp="โžก">arrow | cardinal | direction | east | right arrow</annotation>
		<annotation cp="โžก" type="tts">right arrow</annotation>
		<annotation cp="โ†˜">arrow | direction | down-right arrow | intercardinal | southeast</annotation>
		<annotation cp="โ†˜" type="tts">down-right arrow</annotation>
		<annotation cp="โฌ‡">arrow | cardinal | direction | down | south</annotation>
		<annotation cp="โฌ‡" type="tts">down arrow</annotation>
		<annotation cp="โ†™">arrow | direction | down-left arrow | intercardinal | southwest</annotation>
		<annotation cp="โ†™" type="tts">down-left arrow</annotation>
		<annotation cp="โฌ…">arrow | cardinal | direction | left arrow | west</annotation>
		<annotation cp="โฌ…" type="tts">left arrow</annotation>
		<annotation cp="โ†–">arrow | direction | intercardinal | northwest | up-left arrow</annotation>
		<annotation cp="โ†–" type="tts">up-left arrow</annotation>
		<annotation cp="โ†•">arrow | up-down arrow</annotation>
		<annotation cp="โ†•" type="tts">up-down arrow</annotation>
		<annotation cp="โ†”">arrow | left-right arrow</annotation>
		<annotation cp="โ†”" type="tts">left-right arrow</annotation>
		<annotation cp="โ†ฉ">arrow | right arrow curving left</annotation>
		<annotation cp="โ†ฉ" type="tts">right arrow curving left</annotation>
		<annotation cp="โ†ช">arrow | left arrow curving right</annotation>
		<annotation cp="โ†ช" type="tts">left arrow curving right</annotation>
		<annotation cp="โคด">arrow | right arrow curving up</annotation>
		<annotation cp="โคด" type="tts">right arrow curving up</annotation>
		<annotation cp="โคต">arrow | down | right arrow curving down</annotation>
		<annotation cp="โคต" type="tts">right arrow curving down</annotation>
		<annotation cp="๐Ÿ”ƒ">arrow | clockwise | clockwise vertical arrows | reload</annotation>
		<annotation cp="๐Ÿ”ƒ" type="tts">clockwise vertical arrows</annotation>
		<annotation cp="๐Ÿ”„">anticlockwise | arrow | counterclockwise | counterclockwise arrows button | withershins</annotation>
		<annotation cp="๐Ÿ”„" type="tts">counterclockwise arrows button</annotation>
		<annotation cp="๐Ÿ”™">arrow | back | BACK arrow</annotation>
		<annotation cp="๐Ÿ”™" type="tts">BACK arrow</annotation>
		<annotation cp="๐Ÿ”š">arrow | end | END arrow</annotation>
		<annotation cp="๐Ÿ”š" type="tts">END arrow</annotation>
		<annotation cp="๐Ÿ”›">arrow | mark | on | ON! arrow</annotation>
		<annotation cp="๐Ÿ”›" type="tts">ON! arrow</annotation>
		<annotation cp="๐Ÿ”œ">arrow | soon | SOON arrow</annotation>
		<annotation cp="๐Ÿ”œ" type="tts">SOON arrow</annotation>
		<annotation cp="๐Ÿ”">arrow | top | TOP arrow | up</annotation>
		<annotation cp="๐Ÿ”" type="tts">TOP arrow</annotation>
		<annotation cp="๐Ÿ›">place of worship | religion | worship</annotation>
		<annotation cp="๐Ÿ›" type="tts">place of worship</annotation>
		<annotation cp="โš›">atheist | atom | atom symbol</annotation>
		<annotation cp="โš›" type="tts">atom symbol</annotation>
		<annotation cp="๐Ÿ•‰">Hindu | om | religion</annotation>
		<annotation cp="๐Ÿ•‰" type="tts">om</annotation>
		<annotation cp="โœก">David | Jew | Jewish | religion | star | star of David</annotation>
		<annotation cp="โœก" type="tts">star of David</annotation>
		<annotation cp="โ˜ธ">Buddhist | dharma | religion | wheel | wheel of dharma</annotation>
		<annotation cp="โ˜ธ" type="tts">wheel of dharma</annotation>
		<annotation cp="โ˜ฏ">religion | tao | taoist | yang | yin</annotation>
		<annotation cp="โ˜ฏ" type="tts">yin yang</annotation>
		<annotation cp="โœ">Christian | cross | latin cross | religion</annotation>
		<annotation cp="โœ" type="tts">latin cross</annotation>
		<annotation cp="โ˜ฆ">Christian | cross | orthodox cross | religion</annotation>
		<annotation cp="โ˜ฆ" type="tts">orthodox cross</annotation>
		<annotation cp="โ˜ช">islam | Muslim | religion | star and crescent</annotation>
		<annotation cp="โ˜ช" type="tts">star and crescent</annotation>
		<annotation cp="โ˜ฎ">peace | peace symbol</annotation>
		<annotation cp="โ˜ฎ" type="tts">peace symbol</annotation>
		<annotation cp="๐Ÿ•Ž">candelabrum | candlestick | menorah | religion</annotation>
		<annotation cp="๐Ÿ•Ž" type="tts">menorah</annotation>
		<annotation cp="๐Ÿ”ฏ">dotted six-pointed star | fortune | star</annotation>
		<annotation cp="๐Ÿ”ฏ" type="tts">dotted six-pointed star</annotation>
		<annotation cp="โ™ˆ">Aries | ram | zodiac</annotation>
		<annotation cp="โ™ˆ" type="tts">Aries</annotation>
		<annotation cp="โ™‰">bull | ox | Taurus | zodiac</annotation>
		<annotation cp="โ™‰" type="tts">Taurus</annotation>
		<annotation cp="โ™Š">Gemini | twins | zodiac</annotation>
		<annotation cp="โ™Š" type="tts">Gemini</annotation>
		<annotation cp="โ™‹">Cancer | crab | zodiac</annotation>
		<annotation cp="โ™‹" type="tts">Cancer</annotation>
		<annotation cp="โ™Œ">Leo | lion | zodiac</annotation>
		<annotation cp="โ™Œ" type="tts">Leo</annotation>
		<annotation cp="โ™">Virgo | zodiac</annotation>
		<annotation cp="โ™" type="tts">Virgo</annotation>
		<annotation cp="โ™Ž">balance | justice | Libra | scales | zodiac</annotation>
		<annotation cp="โ™Ž" type="tts">Libra</annotation>
		<annotation cp="โ™">Scorpio | scorpion | scorpius | zodiac</annotation>
		<annotation cp="โ™" type="tts">Scorpio</annotation>
		<annotation cp="โ™">archer | Sagittarius | zodiac</annotation>
		<annotation cp="โ™" type="tts">Sagittarius</annotation>
		<annotation cp="โ™‘">Capricorn | goat | zodiac</annotation>
		<annotation cp="โ™‘" type="tts">Capricorn</annotation>
		<annotation cp="โ™’">Aquarius | bearer | water | zodiac</annotation>
		<annotation cp="โ™’" type="tts">Aquarius</annotation>
		<annotation cp="โ™“">fish | Pisces | zodiac</annotation>
		<annotation cp="โ™“" type="tts">Pisces</annotation>
		<annotation cp="โ›Ž">bearer | Ophiuchus | serpent | snake | zodiac</annotation>
		<annotation cp="โ›Ž" type="tts">Ophiuchus</annotation>
		<annotation cp="๐Ÿ”€">arrow | crossed | shuffle tracks button</annotation>
		<annotation cp="๐Ÿ”€" type="tts">shuffle tracks button</annotation>
		<annotation cp="๐Ÿ”">arrow | clockwise | repeat | repeat button</annotation>
		<annotation cp="๐Ÿ”" type="tts">repeat button</annotation>
		<annotation cp="๐Ÿ”‚">arrow | clockwise | once | repeat single button</annotation>
		<annotation cp="๐Ÿ”‚" type="tts">repeat single button</annotation>
		<annotation cp="โ–ถ">arrow | play | play button | right | triangle</annotation>
		<annotation cp="โ–ถ" type="tts">play button</annotation>
		<annotation cp="โฉ">arrow | double | fast | fast-forward button | forward</annotation>
		<annotation cp="โฉ" type="tts">fast-forward button</annotation>
		<annotation cp="โญ">arrow | next scene | next track | next track button | triangle</annotation>
		<annotation cp="โญ" type="tts">next track button</annotation>
		<annotation cp="โฏ">arrow | pause | play | play or pause button | right | triangle</annotation>
		<annotation cp="โฏ" type="tts">play or pause button</annotation>
		<annotation cp="โ—€">arrow | left | reverse | reverse button | triangle</annotation>
		<annotation cp="โ—€" type="tts">reverse button</annotation>
		<annotation cp="โช">arrow | double | fast reverse button | rewind</annotation>
		<annotation cp="โช" type="tts">fast reverse button</annotation>
		<annotation cp="โฎ">arrow | last track button | previous scene | previous track | triangle</annotation>
		<annotation cp="โฎ" type="tts">last track button</annotation>
		<annotation cp="๐Ÿ”ผ">arrow | button | red | upwards button</annotation>
		<annotation cp="๐Ÿ”ผ" type="tts">upwards button</annotation>
		<annotation cp="โซ">arrow | double | fast up button</annotation>
		<annotation cp="โซ" type="tts">fast up button</annotation>
		<annotation cp="๐Ÿ”ฝ">arrow | button | down | downwards button | red</annotation>
		<annotation cp="๐Ÿ”ฝ" type="tts">downwards button</annotation>
		<annotation cp="โฌ">arrow | double | down | fast down button</annotation>
		<annotation cp="โฌ" type="tts">fast down button</annotation>
		<annotation cp="โธ">bar | double | pause | pause button | vertical</annotation>
		<annotation cp="โธ" type="tts">pause button</annotation>
		<annotation cp="โน">square | stop | stop button</annotation>
		<annotation cp="โน" type="tts">stop button</annotation>
		<annotation cp="โบ">circle | record | record button</annotation>
		<annotation cp="โบ" type="tts">record button</annotation>
		<annotation cp="โ">eject | eject button</annotation>
		<annotation cp="โ" type="tts">eject button</annotation>
		<annotation cp="๐ŸŽฆ">camera | cinema | film | movie</annotation>
		<annotation cp="๐ŸŽฆ" type="tts">cinema</annotation>
		<annotation cp="๐Ÿ”…">brightness | dim | dim button | low</annotation>
		<annotation cp="๐Ÿ”…" type="tts">dim button</annotation>
		<annotation cp="๐Ÿ”†">bright | bright button | brightness</annotation>
		<annotation cp="๐Ÿ”†" type="tts">bright button</annotation>
		<annotation cp="๐Ÿ“ถ">antenna | antenna bars | bar | cell | mobile | phone | signal | telephone</annotation>
		<annotation cp="๐Ÿ“ถ" type="tts">antenna bars</annotation>
		<annotation cp="๐Ÿ“ณ">cell | mobile | mode | phone | telephone | vibration</annotation>
		<annotation cp="๐Ÿ“ณ" type="tts">vibration mode</annotation>
		<annotation cp="๐Ÿ“ด">cell | mobile | off | phone | telephone</annotation>
		<annotation cp="๐Ÿ“ด" type="tts">mobile phone off</annotation>
		<annotation cp="โ™€">female sign | woman</annotation>
		<annotation cp="โ™€" type="tts">female sign</annotation>
		<annotation cp="โ™‚">male sign | man</annotation>
		<annotation cp="โ™‚" type="tts">male sign</annotation>
		<annotation cp="โš•">aesculapius | medical symbol | medicine | staff</annotation>
		<annotation cp="โš•" type="tts">medical symbol</annotation>
		<annotation cp="โ™ป">recycle | recycling symbol</annotation>
		<annotation cp="โ™ป" type="tts">recycling symbol</annotation>
		<annotation cp="โšœ">fleur-de-lis</annotation>
		<annotation cp="โšœ" type="tts">fleur-de-lis</annotation>
		<annotation cp="๐Ÿ”ฑ">anchor | emblem | ship | tool | trident</annotation>
		<annotation cp="๐Ÿ”ฑ" type="tts">trident emblem</annotation>
		<annotation cp="๐Ÿ“›">badge | name</annotation>
		<annotation cp="๐Ÿ“›" type="tts">name badge</annotation>
		<annotation cp="๐Ÿ”ฐ">beginner | chevron | green | Japanese | Japanese symbol for beginner | leaf | tool | yellow</annotation>
		<annotation cp="๐Ÿ”ฐ" type="tts">Japanese symbol for beginner</annotation>
		<annotation cp="โญ•">circle | heavy large circle | o</annotation>
		<annotation cp="โญ•" type="tts">heavy large circle</annotation>
		<annotation cp="โœ…">check | mark | white heavy check mark</annotation>
		<annotation cp="โœ…" type="tts">white heavy check mark</annotation>
		<annotation cp="โ˜‘">ballot | ballot box with check | box | check</annotation>
		<annotation cp="โ˜‘" type="tts">ballot box with check</annotation>
		<annotation cp="โœ”">check | heavy check mark | mark</annotation>
		<annotation cp="โœ”" type="tts">heavy check mark</annotation>
		<annotation cp="โœ–">cancel | heavy multiplication x | multiplication | multiply | x</annotation>
		<annotation cp="โœ–" type="tts">heavy multiplication x</annotation>
		<annotation cp="โŒ">cancel | cross mark | mark | multiplication | multiply | x</annotation>
		<annotation cp="โŒ" type="tts">cross mark</annotation>
		<annotation cp="โŽ">cross mark button | mark | square</annotation>
		<annotation cp="โŽ" type="tts">cross mark button</annotation>
		<annotation cp="โž•">heavy plus sign | math | plus</annotation>
		<annotation cp="โž•" type="tts">heavy plus sign</annotation>
		<annotation cp="โž–">heavy minus sign | math | minus</annotation>
		<annotation cp="โž–" type="tts">heavy minus sign</annotation>
		<annotation cp="โž—">division | heavy division sign | math</annotation>
		<annotation cp="โž—" type="tts">heavy division sign</annotation>
		<annotation cp="โžฐ">curl | curly loop | loop</annotation>
		<annotation cp="โžฐ" type="tts">curly loop</annotation>
		<annotation cp="โžฟ">curl | double | double curly loop | loop</annotation>
		<annotation cp="โžฟ" type="tts">double curly loop</annotation>
		<annotation cp="ใ€ฝ">mark | part | part alternation mark</annotation>
		<annotation cp="ใ€ฝ" type="tts">part alternation mark</annotation>
		<annotation cp="โœณ">asterisk | eight-spoked asterisk</annotation>
		<annotation cp="โœณ" type="tts">eight-spoked asterisk</annotation>
		<annotation cp="โœด">eight-pointed star | star</annotation>
		<annotation cp="โœด" type="tts">eight-pointed star</annotation>
		<annotation cp="โ‡">sparkle</annotation>
		<annotation cp="โ‡" type="tts">sparkle</annotation>
		<annotation cp="โ€ผ">bangbang | double exclamation mark | exclamation | mark | punctuation</annotation>
		<annotation cp="โ€ผ" type="tts">double exclamation mark</annotation>
		<annotation cp="โ‰">exclamation | interrobang | mark | punctuation | question</annotation>
		<annotation cp="โ‰" type="tts">exclamation question mark</annotation>
		<annotation cp="โ“">mark | punctuation | question</annotation>
		<annotation cp="โ“" type="tts">question mark</annotation>
		<annotation cp="โ”">mark | outlined | punctuation | question | white question mark</annotation>
		<annotation cp="โ”" type="tts">white question mark</annotation>
		<annotation cp="โ•">exclamation | mark | outlined | punctuation | white exclamation mark</annotation>
		<annotation cp="โ•" type="tts">white exclamation mark</annotation>
		<annotation cp="โ—">exclamation | mark | punctuation</annotation>
		<annotation cp="โ—" type="tts">exclamation mark</annotation>
		<annotation cp="ใ€ฐ">dash | punctuation | wavy</annotation>
		<annotation cp="ใ€ฐ" type="tts">wavy dash</annotation>
		<annotation cp="ยฉ">copyright</annotation>
		<annotation cp="ยฉ" type="tts">copyright</annotation>
		<annotation cp="ยฎ">registered</annotation>
		<annotation cp="ยฎ" type="tts">registered</annotation>
		<annotation cp="โ„ข">mark | tm | trade mark | trademark</annotation>
		<annotation cp="โ„ข" type="tts">trade mark</annotation>
		<annotation cp="๐Ÿ’ฏ">100 | full | hundred | hundred points | score</annotation>
		<annotation cp="๐Ÿ’ฏ" type="tts">hundred points</annotation>
		<annotation cp="๐Ÿ” ">ABCD | input | latin | letters | uppercase</annotation>
		<annotation cp="๐Ÿ” " type="tts">input latin uppercase</annotation>
		<annotation cp="๐Ÿ”ก">abcd | input | latin | letters | lowercase</annotation>
		<annotation cp="๐Ÿ”ก" type="tts">input latin lowercase</annotation>
		<annotation cp="๐Ÿ”ข">1234 | input | numbers</annotation>
		<annotation cp="๐Ÿ”ข" type="tts">input numbers</annotation>
		<annotation cp="๐Ÿ”ฃ">ใ€’โ™ช&amp;% | input | input symbols</annotation>
		<annotation cp="๐Ÿ”ฃ" type="tts">input symbols</annotation>
		<annotation cp="๐Ÿ”ค">abc | alphabet | input | latin | letters</annotation>
		<annotation cp="๐Ÿ”ค" type="tts">input latin letters</annotation>
		<annotation cp="๐Ÿ…ฐ">a | A button (blood type) | blood type</annotation>
		<annotation cp="๐Ÿ…ฐ" type="tts">A button (blood type)</annotation>
		<annotation cp="๐Ÿ†Ž">ab | AB button (blood type) | blood type</annotation>
		<annotation cp="๐Ÿ†Ž" type="tts">AB button (blood type)</annotation>
		<annotation cp="๐Ÿ…ฑ">b | B button (blood type) | blood type</annotation>
		<annotation cp="๐Ÿ…ฑ" type="tts">B button (blood type)</annotation>
		<annotation cp="๐Ÿ†‘">cl | CL button</annotation>
		<annotation cp="๐Ÿ†‘" type="tts">CL button</annotation>
		<annotation cp="๐Ÿ†’">cool | COOL button</annotation>
		<annotation cp="๐Ÿ†’" type="tts">COOL button</annotation>
		<annotation cp="๐Ÿ†“">free | FREE button</annotation>
		<annotation cp="๐Ÿ†“" type="tts">FREE button</annotation>
		<annotation cp="โ„น">i | information</annotation>
		<annotation cp="โ„น" type="tts">information</annotation>
		<annotation cp="๐Ÿ†”">id | ID button | identity</annotation>
		<annotation cp="๐Ÿ†”" type="tts">ID button</annotation>
		<annotation cp="โ“‚">circle | circled M | m</annotation>
		<annotation cp="โ“‚" type="tts">circled M</annotation>
		<annotation cp="๐Ÿ†•">new | NEW button</annotation>
		<annotation cp="๐Ÿ†•" type="tts">NEW button</annotation>
		<annotation cp="๐Ÿ†–">ng | NG button</annotation>
		<annotation cp="๐Ÿ†–" type="tts">NG button</annotation>
		<annotation cp="๐Ÿ…พ">blood type | o | O button (blood type)</annotation>
		<annotation cp="๐Ÿ…พ" type="tts">O button (blood type)</annotation>
		<annotation cp="๐Ÿ†—">OK | OK button</annotation>
		<annotation cp="๐Ÿ†—" type="tts">OK button</annotation>
		<annotation cp="๐Ÿ…ฟ">P button | parking</annotation>
		<annotation cp="๐Ÿ…ฟ" type="tts">P button</annotation>
		<annotation cp="๐Ÿ†˜">help | sos | SOS button</annotation>
		<annotation cp="๐Ÿ†˜" type="tts">SOS button</annotation>
		<annotation cp="๐Ÿ†™">mark | up | UP! button</annotation>
		<annotation cp="๐Ÿ†™" type="tts">UP! button</annotation>
		<annotation cp="๐Ÿ†š">versus | vs | VS button</annotation>
		<annotation cp="๐Ÿ†š" type="tts">VS button</annotation>
		<annotation cp="๐Ÿˆ">โ€œhereโ€ | Japanese | Japanese โ€œhereโ€ button | katakana | ใ‚ณใ‚ณ</annotation>
		<annotation cp="๐Ÿˆ" type="tts">Japanese โ€œhereโ€ button</annotation>
		<annotation cp="๐Ÿˆ‚">โ€œservice chargeโ€ | Japanese | Japanese โ€œservice chargeโ€ button | katakana | ใ‚ต</annotation>
		<annotation cp="๐Ÿˆ‚" type="tts">Japanese โ€œservice chargeโ€ button</annotation>
		<annotation cp="๐Ÿˆท">โ€œmonthly amountโ€ | ideograph | Japanese | Japanese โ€œmonthly amountโ€ button | ๆœˆ</annotation>
		<annotation cp="๐Ÿˆท" type="tts">Japanese โ€œmonthly amountโ€ button</annotation>
		<annotation cp="๐Ÿˆถ">โ€œnot free of chargeโ€ | ideograph | Japanese | Japanese โ€œnot free of chargeโ€ button | ๆœ‰</annotation>
		<annotation cp="๐Ÿˆถ" type="tts">Japanese โ€œnot free of chargeโ€ button</annotation>
		<annotation cp="๐Ÿˆฏ">โ€œreservedโ€ | ideograph | Japanese | Japanese โ€œreservedโ€ button | ๆŒ‡</annotation>
		<annotation cp="๐Ÿˆฏ" type="tts">Japanese โ€œreservedโ€ button</annotation>
		<annotation cp="๐Ÿ‰">โ€œbargainโ€ | ideograph | Japanese | Japanese โ€œbargainโ€ button | ๅพ—</annotation>
		<annotation cp="๐Ÿ‰" type="tts">Japanese โ€œbargainโ€ button</annotation>
		<annotation cp="๐Ÿˆน">โ€œdiscountโ€ | ideograph | Japanese | Japanese โ€œdiscountโ€ button | ๅ‰ฒ</annotation>
		<annotation cp="๐Ÿˆน" type="tts">Japanese โ€œdiscountโ€ button</annotation>
		<annotation cp="๐Ÿˆš">โ€œfree of chargeโ€ | ideograph | Japanese | Japanese โ€œfree of chargeโ€ button | ็„ก</annotation>
		<annotation cp="๐Ÿˆš" type="tts">Japanese โ€œfree of chargeโ€ button</annotation>
		<annotation cp="๐Ÿˆฒ">โ€œprohibitedโ€ | ideograph | Japanese | Japanese โ€œprohibitedโ€ button | ็ฆ</annotation>
		<annotation cp="๐Ÿˆฒ" type="tts">Japanese โ€œprohibitedโ€ button</annotation>
		<annotation cp="๐Ÿ‰‘">โ€œacceptableโ€ | ideograph | Japanese | Japanese โ€œacceptableโ€ button | ๅฏ</annotation>
		<annotation cp="๐Ÿ‰‘" type="tts">Japanese โ€œacceptableโ€ button</annotation>
		<annotation cp="๐Ÿˆธ">โ€œapplicationโ€ | ideograph | Japanese | Japanese โ€œapplicationโ€ button | ็”ณ</annotation>
		<annotation cp="๐Ÿˆธ" type="tts">Japanese โ€œapplicationโ€ button</annotation>
		<annotation cp="๐Ÿˆด">โ€œpassing gradeโ€ | ideograph | Japanese | Japanese โ€œpassing gradeโ€ button | ๅˆ</annotation>
		<annotation cp="๐Ÿˆด" type="tts">Japanese โ€œpassing gradeโ€ button</annotation>
		<annotation cp="๐Ÿˆณ">โ€œvacancyโ€ | ideograph | Japanese | Japanese โ€œvacancyโ€ button | ็ฉบ</annotation>
		<annotation cp="๐Ÿˆณ" type="tts">Japanese โ€œvacancyโ€ button</annotation>
		<annotation cp="ใŠ—">โ€œcongratulationsโ€ | ideograph | Japanese | Japanese โ€œcongratulationsโ€ button | ็ฅ</annotation>
		<annotation cp="ใŠ—" type="tts">Japanese โ€œcongratulationsโ€ button</annotation>
		<annotation cp="ใŠ™">โ€œsecretโ€ | ideograph | Japanese | Japanese โ€œsecretโ€ button | ็ง˜</annotation>
		<annotation cp="ใŠ™" type="tts">Japanese โ€œsecretโ€ button</annotation>
		<annotation cp="๐Ÿˆบ">โ€œopen for businessโ€ | ideograph | Japanese | Japanese โ€œopen for businessโ€ button | ๅ–ถ</annotation>
		<annotation cp="๐Ÿˆบ" type="tts">Japanese โ€œopen for businessโ€ button</annotation>
		<annotation cp="๐Ÿˆต">โ€œno vacancyโ€ | ideograph | Japanese | Japanese โ€œno vacancyโ€ button | ๆบ€</annotation>
		<annotation cp="๐Ÿˆต" type="tts">Japanese โ€œno vacancyโ€ button</annotation>
		<annotation cp="โ–ช">black small square | geometric | square</annotation>
		<annotation cp="โ–ช" type="tts">black small square</annotation>
		<annotation cp="โ–ซ">geometric | square | white small square</annotation>
		<annotation cp="โ–ซ" type="tts">white small square</annotation>
		<annotation cp="โ—ป">geometric | square | white medium square</annotation>
		<annotation cp="โ—ป" type="tts">white medium square</annotation>
		<annotation cp="โ—ผ">black medium square | geometric | square</annotation>
		<annotation cp="โ—ผ" type="tts">black medium square</annotation>
		<annotation cp="โ—ฝ">geometric | square | white medium-small square</annotation>
		<annotation cp="โ—ฝ" type="tts">white medium-small square</annotation>
		<annotation cp="โ—พ">black medium-small square | geometric | square</annotation>
		<annotation cp="โ—พ" type="tts">black medium-small square</annotation>
		<annotation cp="โฌ›">black large square | geometric | square</annotation>
		<annotation cp="โฌ›" type="tts">black large square</annotation>
		<annotation cp="โฌœ">geometric | square | white large square</annotation>
		<annotation cp="โฌœ" type="tts">white large square</annotation>
		<annotation cp="๐Ÿ”ถ">diamond | geometric | large orange diamond | orange</annotation>
		<annotation cp="๐Ÿ”ถ" type="tts">large orange diamond</annotation>
		<annotation cp="๐Ÿ”ท">blue | diamond | geometric | large blue diamond</annotation>
		<annotation cp="๐Ÿ”ท" type="tts">large blue diamond</annotation>
		<annotation cp="๐Ÿ”ธ">diamond | geometric | orange | small orange diamond</annotation>
		<annotation cp="๐Ÿ”ธ" type="tts">small orange diamond</annotation>
		<annotation cp="๐Ÿ”น">blue | diamond | geometric | small blue diamond</annotation>
		<annotation cp="๐Ÿ”น" type="tts">small blue diamond</annotation>
		<annotation cp="๐Ÿ”บ">geometric | red | red triangle pointed up</annotation>
		<annotation cp="๐Ÿ”บ" type="tts">red triangle pointed up</annotation>
		<annotation cp="๐Ÿ”ป">down | geometric | red | red triangle pointed down</annotation>
		<annotation cp="๐Ÿ”ป" type="tts">red triangle pointed down</annotation>
		<annotation cp="๐Ÿ’ ">comic | diamond | diamond with a dot | geometric | inside</annotation>
		<annotation cp="๐Ÿ’ " type="tts">diamond with a dot</annotation>
		<annotation cp="๐Ÿ”˜">button | geometric | radio</annotation>
		<annotation cp="๐Ÿ”˜" type="tts">radio button</annotation>
		<annotation cp="๐Ÿ”ฒ">black square button | button | geometric | square</annotation>
		<annotation cp="๐Ÿ”ฒ" type="tts">black square button</annotation>
		<annotation cp="๐Ÿ”ณ">button | geometric | outlined | square | white square button</annotation>
		<annotation cp="๐Ÿ”ณ" type="tts">white square button</annotation>
		<annotation cp="โšช">circle | geometric | white circle</annotation>
		<annotation cp="โšช" type="tts">white circle</annotation>
		<annotation cp="โšซ">black circle | circle | geometric</annotation>
		<annotation cp="โšซ" type="tts">black circle</annotation>
		<annotation cp="๐Ÿ”ด">circle | geometric | red</annotation>
		<annotation cp="๐Ÿ”ด" type="tts">red circle</annotation>
		<annotation cp="๐Ÿ”ต">blue | circle | geometric</annotation>
		<annotation cp="๐Ÿ”ต" type="tts">blue circle</annotation>
		<annotation cp="๐Ÿ">checkered | chequered | chequered flag | racing</annotation>
		<annotation cp="๐Ÿ" type="tts">chequered flag</annotation>
		<annotation cp="๐Ÿšฉ">post | triangular flag</annotation>
		<annotation cp="๐Ÿšฉ" type="tts">triangular flag</annotation>
		<annotation cp="๐ŸŽŒ">celebration | cross | crossed | crossed flags | Japanese</annotation>
		<annotation cp="๐ŸŽŒ" type="tts">crossed flags</annotation>
		<annotation cp="๐Ÿด">black flag | waving</annotation>
		<annotation cp="๐Ÿด" type="tts">black flag</annotation>
		<annotation cp="๐Ÿณ">waving | white flag</annotation>
		<annotation cp="๐Ÿณ" type="tts">white flag</annotation>
		<annotation cp="๐Ÿณโ€๐ŸŒˆ">rainbow | rainbow flag</annotation>
		<annotation cp="๐Ÿณโ€๐ŸŒˆ" type="tts">rainbow flag</annotation>
	</annotations>
</ldml>