-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomAliases.json
2412 lines (2412 loc) ยท 86.6 KB
/
customAliases.json
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
{
"0๏ธโฃ": ["0", "zero"],
"1๏ธโฃ": ["1", "one"],
"2๏ธโฃ": ["2", "two"],
"3๏ธโฃ": ["3", "three"],
"4๏ธโฃ": ["4", "four"],
"5๏ธโฃ": ["5", "five"],
"6๏ธโฃ": ["6", "six"],
"7๏ธโฃ": ["7", "seven"],
"8๏ธโฃ": ["8", "eight"],
"9๏ธโฃ": ["9", "nine"],
"๐": ["10", "keycap_ten"],
"๐ฏ": ["100", "hundred_points_symbol", "hundred_points"],
"๐ข": ["1234", "input_symbol_for_numbers", "input_numbers"],
"#๏ธโฃ": ["hash", "#"],
"*๏ธโฃ": ["keycap_star", "asterisk", "*"],
"ยฉ๏ธ": ["copyright"],
"ยฎ๏ธ": ["registered"],
"๐": ["mahjong", "mahjong_tile_red_dragon", "mahjong_red_dragon"],
"๐": ["black_joker", "playing_card_black_joker", "joker"],
"๐
ฐ๏ธ": ["a", "a_button_(blood_type)"],
"๐
ฑ๏ธ": ["b", "b_button_(blood_type)"],
"๐
พ๏ธ": ["o2", "o_button_(blood_type)"],
"๐
ฟ๏ธ": ["parking", "p_button"],
"๐": ["ab", "negative_squared_ab", "ab_button_(blood_type)"],
"๐": ["cl", "squared_cl", "cl_button"],
"๐": ["cool", "squared_cool", "cool_button"],
"๐": ["free", "squared_free", "free_button"],
"๐": ["id", "squared_id", "id_button"],
"๐": ["new", "squared_new", "new_button"],
"๐": ["ng", "squared_ng", "ng_button"],
"๐": ["ok", "squared_ok", "ok_button"],
"๐": ["sos", "squared_sos", "sos_button"],
"๐": ["up", "squared_up_with_exclamation_mark", "up!_button"],
"๐": ["vs", "squared_vs", "vs_button"],
"๐ฆ๐จ": ["flag-ac", "ascension_island"],
"๐ฆ๐ฉ": ["flag-ad", "ad", "andorra"],
"๐ฆ๐ช": ["flag-ae", "ae", "united_arab_emirates"],
"๐ฆ๐ซ": ["flag-af", "af", "afghanistan"],
"๐ฆ๐ฌ": ["flag-ag", "ag", "antigua_barbuda", "antigua_&_barbuda"],
"๐ฆ๐ฎ": ["flag-ai", "ai", "anguilla"],
"๐ฆ๐ฑ": ["flag-al", "al", "albania"],
"๐ฆ๐ฒ": ["flag-am", "am", "armenia"],
"๐ฆ๐ด": ["flag-ao", "ao", "angola"],
"๐ฆ๐ถ": ["flag-aq", "antarctica"],
"๐ฆ๐ท": ["flag-ar", "ar", "argentina"],
"๐ฆ๐ธ": ["flag-as", "as", "american_samoa"],
"๐ฆ๐น": ["flag-at", "at", "austria"],
"๐ฆ๐บ": ["flag-au", "au", "australia"],
"๐ฆ๐ผ": ["flag-aw", "aw", "aruba"],
"๐ฆ๐ฝ": ["flag-ax", "aland_islands", "รฅland_islands"],
"๐ฆ๐ฟ": ["flag-az", "az", "azerbaijan"],
"๐ง๐ฆ": ["flag-ba", "ba", "bosnia_herzegovina", "bosnia_&_herzegovina"],
"๐ง๐ง": ["flag-bb", "bb", "barbados"],
"๐ง๐ฉ": ["flag-bd", "bd", "bangladesh"],
"๐ง๐ช": ["flag-be", "be", "belgium"],
"๐ง๐ซ": ["flag-bf", "bf", "burkina_faso"],
"๐ง๐ฌ": ["flag-bg", "bg", "bulgaria"],
"๐ง๐ญ": ["flag-bh", "bh", "bahrain"],
"๐ง๐ฎ": ["flag-bi", "bi", "burundi"],
"๐ง๐ฏ": ["flag-bj", "bj", "benin"],
"๐ง๐ฑ": ["flag-bl", "st_barthelemy"],
"๐ง๐ฒ": ["flag-bm", "bm", "bermuda"],
"๐ง๐ณ": ["flag-bn", "bn", "brunei"],
"๐ง๐ด": ["flag-bo", "bo", "bolivia"],
"๐ง๐ถ": ["flag-bq", "caribbean_netherlands"],
"๐ง๐ท": ["flag-br", "br", "brazil"],
"๐ง๐ธ": ["flag-bs", "bs", "bahamas"],
"๐ง๐น": ["flag-bt", "bt", "bhutan"],
"๐ง๐ป": ["flag-bv", "bouvet_island"],
"๐ง๐ผ": ["flag-bw", "bw", "botswana"],
"๐ง๐พ": ["flag-by", "by", "belarus"],
"๐ง๐ฟ": ["flag-bz", "bz", "belize"],
"๐จ๐ฆ": ["flag-ca", "ca", "canada"],
"๐จ๐จ": ["flag-cc", "cocos_islands", "cocos_(keeling)_islands"],
"๐จ๐ฉ": ["flag-cd", "cd_flag", "congo_kinshasa", "congo_-_kinshasa"],
"๐จ๐ซ": ["flag-cf", "cf", "central_african_republic"],
"๐จ๐ฌ": ["flag-cg", "cg", "congo_brazzaville", "congo_-_brazzaville"],
"๐จ๐ญ": ["flag-ch", "ch", "switzerland"],
"๐จ๐ฎ": ["flag-ci", "ci", "cote_divoire", "cรดte_dโivoire"],
"๐จ๐ฐ": ["flag-ck", "ck", "cook_islands"],
"๐จ๐ฑ": ["flag-cl", "cl_flag", "chile"],
"๐จ๐ฒ": ["flag-cm", "cm", "cameroon"],
"๐จ๐ณ": ["cn", "flag-cn", "china"],
"๐จ๐ด": ["flag-co", "co", "colombia"],
"๐จ๐ต": ["flag-cp", "clipperton_island"],
"๐จ๐ท": ["flag-cr", "cr", "costa_rica"],
"๐จ๐บ": ["flag-cu", "cu", "cuba"],
"๐จ๐ป": ["flag-cv", "cv", "cape_verde"],
"๐จ๐ผ": ["flag-cw", "cw", "curacao", "curaรงao"],
"๐จ๐ฝ": ["flag-cx", "christmas_island"],
"๐จ๐พ": ["flag-cy", "cy", "cyprus"],
"๐จ๐ฟ": ["flag-cz", "cz", "czech_republic", "czechia"],
"๐ฉ๐ช": ["de", "flag-de", "germany"],
"๐ฉ๐ฌ": ["flag-dg", "diego_garcia"],
"๐ฉ๐ฏ": ["flag-dj", "dj", "djibouti"],
"๐ฉ๐ฐ": ["flag-dk", "dk", "denmark"],
"๐ฉ๐ฒ": ["flag-dm", "dm", "dominica"],
"๐ฉ๐ด": ["flag-do", "do", "dominican_republic"],
"๐ฉ๐ฟ": ["flag-dz", "dz", "algeria"],
"๐ช๐ฆ": ["flag-ea", "ceuta_melilla", "ceuta_&_melilla"],
"๐ช๐จ": ["flag-ec", "ec", "ecuador"],
"๐ช๐ช": ["flag-ee", "ee", "estonia"],
"๐ช๐ฌ": ["flag-eg", "eg", "egypt"],
"๐ช๐ญ": ["flag-eh", "western_sahara"],
"๐ช๐ท": ["flag-er", "er", "eritrea"],
"๐ช๐ธ": ["es", "flag-es", "spain"],
"๐ช๐น": ["flag-et", "et", "ethiopia"],
"๐ช๐บ": ["flag-eu", "eu", "european_union"],
"๐ซ๐ฎ": ["flag-fi", "fi", "finland"],
"๐ซ๐ฏ": ["flag-fj", "fj", "fiji"],
"๐ซ๐ฐ": ["flag-fk", "falkland_islands"],
"๐ซ๐ฒ": ["flag-fm", "micronesia"],
"๐ซ๐ด": ["flag-fo", "fo", "faroe_islands"],
"๐ซ๐ท": ["fr", "flag-fr", "france"],
"๐ฌ๐ฆ": ["flag-ga", "ga", "gabon"],
"๐ฌ๐ง": ["gb", "flag-gb", "uk", "united_kingdom"],
"๐ฌ๐ฉ": ["flag-gd", "gd", "grenada"],
"๐ฌ๐ช": ["flag-ge", "ge", "georgia"],
"๐ฌ๐ซ": ["flag-gf", "gf", "french_guiana"],
"๐ฌ๐ฌ": ["flag-gg", "guernsey"],
"๐ฌ๐ญ": ["flag-gh", "gh", "ghana"],
"๐ฌ๐ฎ": ["flag-gi", "gi", "gibraltar"],
"๐ฌ๐ฑ": ["flag-gl", "greenland"],
"๐ฌ๐ฒ": ["flag-gm", "gm", "gambia"],
"๐ฌ๐ณ": ["flag-gn", "gn", "guinea"],
"๐ฌ๐ต": ["flag-gp", "gp", "guadeloupe"],
"๐ฌ๐ถ": ["flag-gq", "gq", "equatorial_guinea"],
"๐ฌ๐ท": ["flag-gr", "gr", "greece"],
"๐ฌ๐ธ": [
"flag-gs",
"south_georgia_south_sandwich_islands",
"south_georgia_&_south_sandwich_islands"
],
"๐ฌ๐น": ["flag-gt", "gt", "guatemala"],
"๐ฌ๐บ": ["flag-gu", "gu", "guam"],
"๐ฌ๐ผ": ["flag-gw", "gw", "guinea_bissau", "guinea-bissau"],
"๐ฌ๐พ": ["flag-gy", "gy", "guyana"],
"๐ญ๐ฐ": ["flag-hk", "hk", "hong_kong", "hong_kong_sar_china"],
"๐ญ๐ฒ": ["flag-hm", "heard_mcdonald_islands", "heard_&_mcdonald_islands"],
"๐ญ๐ณ": ["flag-hn", "hn", "honduras"],
"๐ญ๐ท": ["flag-hr", "hr", "croatia"],
"๐ญ๐น": ["flag-ht", "ht", "haiti"],
"๐ญ๐บ": ["flag-hu", "hu", "hungary"],
"๐ฎ๐จ": ["flag-ic", "canary_islands"],
"๐ฎ๐ฉ": ["flag-id", "id_flag", "indonesia"],
"๐ฎ๐ช": ["flag-ie", "ie", "ireland"],
"๐ฎ๐ฑ": ["flag-il", "il", "israel"],
"๐ฎ๐ฒ": ["flag-im", "isle_of_man"],
"๐ฎ๐ณ": ["flag-in", "in", "india"],
"๐ฎ๐ด": ["flag-io", "british_indian_ocean_territory"],
"๐ฎ๐ถ": ["flag-iq", "iq", "iraq"],
"๐ฎ๐ท": ["flag-ir", "ir", "iran"],
"๐ฎ๐ธ": ["flag-is", "is", "iceland"],
"๐ฎ๐น": ["it", "flag-it", "italy"],
"๐ฏ๐ช": ["flag-je", "jersey"],
"๐ฏ๐ฒ": ["flag-jm", "jm", "jamaica"],
"๐ฏ๐ด": ["flag-jo", "jo", "jordan"],
"๐ฏ๐ต": ["jp", "flag-jp"],
"๐ฐ๐ช": ["flag-ke", "ke", "kenya"],
"๐ฐ๐ฌ": ["flag-kg", "kg", "kyrgyzstan"],
"๐ฐ๐ญ": ["flag-kh", "kh", "cambodia"],
"๐ฐ๐ฎ": ["flag-ki", "ki", "kiribati"],
"๐ฐ๐ฒ": ["flag-km", "km", "comoros"],
"๐ฐ๐ณ": ["flag-kn", "st_kitts_nevis"],
"๐ฐ๐ต": ["flag-kp", "kp", "north_korea"],
"๐ฐ๐ท": ["kr", "flag-kr", "south_korea"],
"๐ฐ๐ผ": ["flag-kw", "kw", "kuwait"],
"๐ฐ๐พ": ["flag-ky", "ky", "cayman_islands"],
"๐ฐ๐ฟ": ["flag-kz", "kz", "kazakhstan"],
"๐ฑ๐ฆ": ["flag-la", "la", "laos"],
"๐ฑ๐ง": ["flag-lb", "lb", "lebanon"],
"๐ฑ๐จ": ["flag-lc", "st_lucia"],
"๐ฑ๐ฎ": ["flag-li", "li", "liechtenstein"],
"๐ฑ๐ฐ": ["flag-lk", "lk", "sri_lanka"],
"๐ฑ๐ท": ["flag-lr", "lr", "liberia"],
"๐ฑ๐ธ": ["flag-ls", "ls", "lesotho"],
"๐ฑ๐น": ["flag-lt", "lt", "lithuania"],
"๐ฑ๐บ": ["flag-lu", "lu", "luxembourg"],
"๐ฑ๐ป": ["flag-lv", "lv", "latvia"],
"๐ฑ๐พ": ["flag-ly", "ly", "libya"],
"๐ฒ๐ฆ": ["flag-ma", "ma", "morocco"],
"๐ฒ๐จ": ["flag-mc", "monaco"],
"๐ฒ๐ฉ": ["flag-md", "md", "moldova"],
"๐ฒ๐ช": ["flag-me", "me", "montenegro"],
"๐ฒ๐ซ": ["flag-mf", "st_martin"],
"๐ฒ๐ฌ": ["flag-mg", "mg", "madagascar"],
"๐ฒ๐ญ": ["flag-mh", "marshall_islands"],
"๐ฒ๐ฐ": ["flag-mk", "mk", "macedonia"],
"๐ฒ๐ฑ": ["flag-ml", "ml", "mali"],
"๐ฒ๐ฒ": ["flag-mm", "mm", "myanmar", "myanmar_(burma)"],
"๐ฒ๐ณ": ["flag-mn", "mn", "mongolia"],
"๐ฒ๐ด": ["flag-mo", "mo", "macau", "macao_sar_china"],
"๐ฒ๐ต": ["flag-mp", "mp", "northern_mariana_islands"],
"๐ฒ๐ถ": ["flag-mq", "mq", "martinique"],
"๐ฒ๐ท": ["flag-mr", "mr", "mauritania"],
"๐ฒ๐ธ": ["flag-ms", "ms", "montserrat"],
"๐ฒ๐น": ["flag-mt", "mt", "malta"],
"๐ฒ๐บ": ["flag-mu", "mauritius"],
"๐ฒ๐ป": ["flag-mv", "mv", "maldives"],
"๐ฒ๐ผ": ["flag-mw", "mw", "malawi"],
"๐ฒ๐ฝ": ["flag-mx", "mx", "mexico"],
"๐ฒ๐พ": ["flag-my", "my", "malaysia"],
"๐ฒ๐ฟ": ["flag-mz", "mz", "mozambique"],
"๐ณ๐ฆ": ["flag-na", "na", "namibia"],
"๐ณ๐จ": ["flag-nc", "nc", "new_caledonia"],
"๐ณ๐ช": ["flag-ne", "ne", "niger"],
"๐ณ๐ซ": ["flag-nf", "norfolk_island"],
"๐ณ๐ฌ": ["flag-ng", "nigeria"],
"๐ณ๐ฎ": ["flag-ni", "ni", "nicaragua"],
"๐ณ๐ฑ": ["flag-nl", "nl", "netherlands"],
"๐ณ๐ด": ["flag-no", "no", "norway"],
"๐ณ๐ต": ["flag-np", "np", "nepal"],
"๐ณ๐ท": ["flag-nr", "nauru"],
"๐ณ๐บ": ["flag-nu", "nu", "niue"],
"๐ณ๐ฟ": ["flag-nz", "nz", "new_zealand"],
"๐ด๐ฒ": ["flag-om", "om", "oman"],
"๐ต๐ฆ": ["flag-pa", "pa", "panama"],
"๐ต๐ช": ["flag-pe", "pe", "peru"],
"๐ต๐ซ": ["flag-pf", "french_polynesia"],
"๐ต๐ฌ": ["flag-pg", "pg", "papua_new_guinea"],
"๐ต๐ญ": ["flag-ph", "ph", "philippines"],
"๐ต๐ฐ": ["flag-pk", "pk", "pakistan"],
"๐ต๐ฑ": ["flag-pl", "pl", "poland"],
"๐ต๐ฒ": ["flag-pm", "st_pierre_miquelon"],
"๐ต๐ณ": ["flag-pn", "pitcairn_islands"],
"๐ต๐ท": ["flag-pr", "pr", "puerto_rico"],
"๐ต๐ธ": ["flag-ps", "ps", "palestinian_territories"],
"๐ต๐น": ["flag-pt", "pt", "portugal"],
"๐ต๐ผ": ["flag-pw", "pw", "palau"],
"๐ต๐พ": ["flag-py", "py", "paraguay"],
"๐ถ๐ฆ": ["flag-qa", "qa", "qatar"],
"๐ท๐ช": ["flag-re", "re", "reunion", "rรฉunion"],
"๐ท๐ด": ["flag-ro", "ro", "romania"],
"๐ท๐ธ": ["flag-rs", "rs", "serbia"],
"๐ท๐บ": ["ru", "flag-ru", "russia"],
"๐ท๐ผ": ["flag-rw", "rw", "rwanda"],
"๐ธ๐ฆ": ["flag-sa", "sa_flag", "saudi_arabia"],
"๐ธ๐ง": ["flag-sb", "sb", "solomon_islands"],
"๐ธ๐จ": ["flag-sc", "sc", "seychelles"],
"๐ธ๐ฉ": ["flag-sd", "sd", "sudan"],
"๐ธ๐ช": ["flag-se", "se", "sweden"],
"๐ธ๐ฌ": ["flag-sg", "sg", "singapore"],
"๐ธ๐ญ": ["flag-sh", "st_helena"],
"๐ธ๐ฎ": ["flag-si", "si", "slovenia"],
"๐ธ๐ฏ": ["flag-sj", "svalbard_jan_mayen", "svalbard_&_jan_mayen"],
"๐ธ๐ฐ": ["flag-sk", "sk", "slovakia"],
"๐ธ๐ฑ": ["flag-sl", "sl", "sierra_leone"],
"๐ธ๐ฒ": ["flag-sm", "sm", "san_marino"],
"๐ธ๐ณ": ["flag-sn", "sn", "senegal"],
"๐ธ๐ด": ["flag-so", "so", "somalia"],
"๐ธ๐ท": ["flag-sr", "sr", "suriname"],
"๐ธ๐ธ": ["flag-ss", "ss", "south_sudan"],
"๐ธ๐น": ["flag-st", "st", "sao_tome_principe", "sรฃo_tomรฉ_&_prรญncipe"],
"๐ธ๐ป": ["flag-sv", "sv", "el_salvador"],
"๐ธ๐ฝ": ["flag-sx", "sint_maarten"],
"๐ธ๐พ": ["flag-sy", "sy", "syria"],
"๐ธ๐ฟ": ["flag-sz", "sz", "swaziland", "eswatini"],
"๐น๐ฆ": ["flag-ta", "tristan_da_cunha"],
"๐น๐จ": ["flag-tc", "tc", "turks_caicos_islands", "turks_&_caicos_islands"],
"๐น๐ฉ": ["flag-td", "chad"],
"๐น๐ซ": ["flag-tf", "tf", "french_southern_territories"],
"๐น๐ฌ": ["flag-tg", "tg", "togo"],
"๐น๐ญ": ["flag-th", "th", "thailand"],
"๐น๐ฏ": ["flag-tj", "tj", "tajikistan"],
"๐น๐ฐ": ["flag-tk", "tokelau"],
"๐น๐ฑ": ["flag-tl", "tl", "timor_leste", "timor-leste"],
"๐น๐ฒ": ["flag-tm", "tm_flag", "turkmenistan"],
"๐น๐ณ": ["flag-tn", "tn", "tunisia"],
"๐น๐ด": ["flag-to", "to", "tonga"],
"๐น๐ท": ["flag-tr", "tr"],
"๐น๐น": ["flag-tt", "tt", "trinidad_tobago", "trinidad_&_tobago"],
"๐น๐ป": ["flag-tv", "tv_flag", "tuvalu"],
"๐น๐ผ": ["flag-tw", "taiwan"],
"๐น๐ฟ": ["flag-tz", "tz", "tanzania"],
"๐บ๐ฆ": ["flag-ua", "ua", "ukraine"],
"๐บ๐ฌ": ["flag-ug", "ug", "uganda"],
"๐บ๐ฒ": ["flag-um", "us_outlying_islands"],
"๐บ๐ณ": ["flag-un", "united_nations"],
"๐บ๐ธ": ["us", "flag-us", "united_states"],
"๐บ๐พ": ["flag-uy", "uy", "uruguay"],
"๐บ๐ฟ": ["flag-uz", "uz", "uzbekistan"],
"๐ป๐ฆ": ["flag-va", "vatican_city"],
"๐ป๐จ": ["flag-vc", "vc", "st_vincent_grenadines"],
"๐ป๐ช": ["flag-ve", "ve", "venezuela"],
"๐ป๐ฌ": ["flag-vg", "vg", "british_virgin_islands"],
"๐ป๐ฎ": ["flag-vi", "vi", "us_virgin_islands"],
"๐ป๐ณ": ["flag-vn", "vn", "vietnam"],
"๐ป๐บ": ["flag-vu", "vu", "vanuatu"],
"๐ผ๐ซ": ["flag-wf", "wallis_futuna", "wallis_&_futuna"],
"๐ผ๐ธ": ["flag-ws", "ws", "samoa"],
"๐ฝ๐ฐ": ["flag-xk", "kosovo"],
"๐พ๐ช": ["flag-ye", "ye", "yemen"],
"๐พ๐น": ["flag-yt", "mayotte"],
"๐ฟ๐ฆ": ["flag-za", "za", "south_africa"],
"๐ฟ๐ฒ": ["flag-zm", "zm", "zambia"],
"๐ฟ๐ผ": ["flag-zw", "zw", "zimbabwe"],
"๐": ["koko", "squared_katakana_koko", "japanese_โhereโ_button"],
"๐๏ธ": ["sa", "japanese_โservice_chargeโ_button"],
"๐": [
"u7121",
"squared_cjk_unified_ideograph-7121",
"japanese_โfree_of_chargeโ_button"
],
"๐ฏ": [
"u6307",
"squared_cjk_unified_ideograph-6307",
"japanese_โreservedโ_button"
],
"๐ฒ": [
"u7981",
"squared_cjk_unified_ideograph-7981",
"japanese_โprohibitedโ_button"
],
"๐ณ": [
"u7a7a",
"squared_cjk_unified_ideograph-7a7a",
"japanese_โvacancyโ_button"
],
"๐ด": [
"u5408",
"squared_cjk_unified_ideograph-5408",
"japanese_โpassing_gradeโ_button"
],
"๐ต": [
"u6e80",
"squared_cjk_unified_ideograph-6e80",
"japanese_โno_vacancyโ_button"
],
"๐ถ": [
"u6709",
"squared_cjk_unified_ideograph-6709",
"japanese_โnot_free_of_chargeโ_button"
],
"๐ท๏ธ": ["u6708", "japanese_โmonthly_amountโ_button"],
"๐ธ": [
"u7533",
"squared_cjk_unified_ideograph-7533",
"japanese_โapplicationโ_button"
],
"๐น": [
"u5272",
"squared_cjk_unified_ideograph-5272",
"japanese_โdiscountโ_button"
],
"๐บ": [
"u55b6",
"squared_cjk_unified_ideograph-55b6",
"japanese_โopen_for_businessโ_button"
],
"๐": [
"ideograph_advantage",
"circled_ideograph_advantage",
"japanese_โbargainโ_button"
],
"๐": ["accept", "circled_ideograph_accept", "japanese_โacceptableโ_button"],
"๐": ["cyclone"],
"๐": ["foggy"],
"๐": ["closed_umbrella"],
"๐": ["night_with_stars"],
"๐": ["sunrise_over_mountains"],
"๐
": ["sunrise"],
"๐": ["city_sunset", "cityscape_at_dusk"],
"๐": ["city_sunrise", "sunset_over_buildings", "sunset"],
"๐": ["rainbow"],
"๐": ["bridge_at_night"],
"๐": ["ocean", "water_wave"],
"๐": ["volcano"],
"๐": ["milky_way"],
"๐": [
"earth_africa",
"earth_globe_europe-africa",
"globe_showing_europe-africa"
],
"๐": ["earth_americas", "earth_globe_americas", "globe_showing_americas"],
"๐": [
"earth_asia",
"earth_globe_asia-australia",
"globe_showing_asia-australia"
],
"๐": ["globe_with_meridians"],
"๐": ["new_moon", "new_moon_symbol"],
"๐": ["waxing_crescent_moon", "waxing_crescent_moon_symbol"],
"๐": ["first_quarter_moon", "first_quarter_moon_symbol"],
"๐": ["moon", "waxing_gibbous_moon", "waxing_gibbous_moon_symbol"],
"๐": ["full_moon", "full_moon_symbol"],
"๐": ["waning_gibbous_moon", "waning_gibbous_moon_symbol"],
"๐": ["last_quarter_moon", "last_quarter_moon_symbol"],
"๐": ["waning_crescent_moon", "waning_crescent_moon_symbol"],
"๐": ["crescent_moon"],
"๐": ["new_moon_with_face", "new_moon_face"],
"๐": ["first_quarter_moon_with_face", "first_quarter_moon_face"],
"๐": ["last_quarter_moon_with_face", "last_quarter_moon_face"],
"๐": ["full_moon_with_face", "full_moon_face"],
"๐": ["sun_with_face"],
"๐": ["star2", "glowing_star"],
"๐ ": ["stars", "shooting_star"],
"๐ก๏ธ": ["thermometer"],
"๐ค๏ธ": ["mostly_sunny"],
"๐ฅ๏ธ": ["barely_sunny"],
"๐ฆ๏ธ": ["partly_sunny_rain"],
"๐ง๏ธ": ["rain_cloud"],
"๐จ๏ธ": ["snow_cloud"],
"๐ฉ๏ธ": ["lightning"],
"๐ช๏ธ": ["tornado"],
"๐ซ๏ธ": ["fog"],
"๐ฌ๏ธ": ["wind_blowing_face"],
"๐ญ": ["hotdog", "hot_dog"],
"๐ฎ": ["taco"],
"๐ฏ": ["burrito", "wrap"],
"๐ฐ": ["chestnut"],
"๐ฑ": ["seedling"],
"๐ฒ": ["evergreen_tree"],
"๐ณ": ["deciduous_tree"],
"๐ด": ["palm_tree"],
"๐ต": ["cactus"],
"๐ถ๏ธ": ["hot_pepper"],
"๐ท": ["tulip"],
"๐ธ": ["cherry_blossom"],
"๐น": ["rose"],
"๐บ": ["hibiscus"],
"๐ป": ["sunflower"],
"๐ผ": ["blossom"],
"๐ฝ": ["corn", "ear_of_maize", "ear_of_corn"],
"๐พ": ["ear_of_rice", "sheaf_of_rice"],
"๐ฟ": ["herb"],
"๐": ["four_leaf_clover"],
"๐": ["maple_leaf"],
"๐": ["fallen_leaf"],
"๐": ["leaves", "leaf_fluttering_in_wind"],
"๐": ["mushroom"],
"๐
": ["tomato"],
"๐": ["eggplant", "aubergine"],
"๐": ["grapes"],
"๐": ["melon"],
"๐": ["watermelon"],
"๐": ["tangerine", "orange", "mandarin"],
"๐": ["lemon"],
"๐": ["banana"],
"๐": ["pineapple"],
"๐": ["apple", "red_apple"],
"๐": ["green_apple"],
"๐": ["pear"],
"๐": ["peach"],
"๐": ["cherries"],
"๐": ["strawberry"],
"๐": ["hamburger"],
"๐": ["pizza", "slice_of_pizza"],
"๐": ["meat_on_bone"],
"๐": ["poultry_leg"],
"๐": ["rice_cracker"],
"๐": ["rice_ball"],
"๐": ["rice", "cooked_rice"],
"๐": ["curry", "curry_and_rice", "curry_rice"],
"๐": ["ramen", "steaming_bowl"],
"๐": ["spaghetti"],
"๐": ["bread"],
"๐": ["fries", "french_fries"],
"๐ ": ["sweet_potato", "roasted_sweet_potato"],
"๐ก": ["dango"],
"๐ข": ["oden"],
"๐ฃ": ["sushi"],
"๐ค": ["fried_shrimp"],
"๐ฅ": ["fish_cake", "fish_cake_with_swirl_design", "fish_cake_with_swirl"],
"๐ฆ": ["icecream", "soft_ice_cream"],
"๐ง": ["shaved_ice"],
"๐จ": ["ice_cream"],
"๐ฉ": ["doughnut"],
"๐ช": ["cookie"],
"๐ซ": ["chocolate_bar"],
"๐ฌ": ["candy"],
"๐ญ": ["lollipop"],
"๐ฎ": ["custard"],
"๐ฏ": ["honey_pot"],
"๐ฐ": ["cake", "shortcake"],
"๐ฑ": ["bento", "bento_box"],
"๐ฒ": ["stew", "pot_of_food"],
"๐ณ": ["fried_egg", "cooking"],
"๐ด": ["fork_and_knife"],
"๐ต": ["tea", "teacup_without_handle"],
"๐ถ": ["sake", "sake_bottle_and_cup"],
"๐ท": ["wine_glass"],
"๐ธ": ["cocktail", "cocktail_glass"],
"๐น": ["tropical_drink"],
"๐บ": ["beer", "beer_mug"],
"๐ป": ["beers", "clinking_beer_mugs"],
"๐ผ": ["baby_bottle"],
"๐ฝ๏ธ": ["knife_fork_plate"],
"๐พ": ["champagne", "sparkling_wine", "bottle_with_popping_cork"],
"๐ฟ": ["popcorn"],
"๐": ["ribbon"],
"๐": ["gift", "wrapped_present", "wrapped_gift"],
"๐": ["birthday", "birthday_cake"],
"๐": ["jack_o_lantern", "jack-o-lantern"],
"๐": ["christmas_tree"],
"๐
": ["santa", "father_christmas", "santa_claus"],
"๐": ["fireworks"],
"๐": ["sparkler", "firework_sparkler"],
"๐": ["balloon"],
"๐": ["tada", "party_popper"],
"๐": ["confetti_ball"],
"๐": ["tanabata_tree"],
"๐": ["crossed_flags"],
"๐": ["bamboo", "pine_decoration"],
"๐": ["dolls", "japanese_dolls"],
"๐": ["flags", "carp_streamer"],
"๐": ["wind_chime"],
"๐": ["rice_scene", "moon_viewing_ceremony"],
"๐": ["school_satchel", "backpack"],
"๐": ["mortar_board", "graduation_cap"],
"๐๏ธ": ["medal"],
"๐๏ธ": ["reminder_ribbon"],
"๐๏ธ": ["studio_microphone"],
"๐๏ธ": ["level_slider"],
"๐๏ธ": ["control_knobs"],
"๐๏ธ": ["film_frames"],
"๐๏ธ": ["admission_tickets"],
"๐ ": ["carousel_horse"],
"๐ก": ["ferris_wheel"],
"๐ข": ["roller_coaster"],
"๐ฃ": ["fishing_pole_and_fish", "fishing_pole"],
"๐ค": ["microphone"],
"๐ฅ": ["movie_camera"],
"๐ฆ": ["cinema"],
"๐ง": ["headphones", "headphone"],
"๐จ": ["art", "artist_palette"],
"๐ฉ": ["tophat", "top_hat"],
"๐ช": ["circus_tent"],
"๐ซ": ["ticket"],
"๐ฌ": ["clapper", "clapper_board"],
"๐ญ": ["performing_arts"],
"๐ฎ": ["video_game"],
"๐ฏ": ["dart", "direct_hit"],
"๐ฐ": ["slot_machine"],
"๐ฑ": ["8ball", "billiards", "pool_8_ball"],
"๐ฒ": ["game_die"],
"๐ณ": ["bowling"],
"๐ด": ["flower_playing_cards"],
"๐ต": ["musical_note"],
"๐ถ": ["notes", "multiple_musical_notes", "musical_notes"],
"๐ท": ["saxophone"],
"๐ธ": ["guitar"],
"๐น": ["musical_keyboard"],
"๐บ": ["trumpet"],
"๐ป": ["violin"],
"๐ผ": ["musical_score"],
"๐ฝ": ["running_shirt_with_sash", "running_shirt"],
"๐พ": ["tennis", "tennis_racquet_and_ball"],
"๐ฟ": ["ski", "ski_and_ski_boot", "skis"],
"๐": ["basketball", "basketball_and_hoop"],
"๐": ["checkered_flag", "chequered_flag"],
"๐": ["snowboarder"],
"๐โโ๏ธ": ["woman-running"],
"๐โโ๏ธ": ["man-running"],
"๐": ["runner", "running", "person_running"],
"๐โโ๏ธ": ["woman-surfing"],
"๐โโ๏ธ": ["man-surfing"],
"๐": ["surfer", "person_surfing"],
"๐
": ["sports_medal", "sports_decoration", "medal_sports"],
"๐": ["trophy"],
"๐": ["horse_racing"],
"๐": ["football", "american_football"],
"๐": ["rugby_football"],
"๐โโ๏ธ": ["woman-swimming"],
"๐โโ๏ธ": ["man-swimming"],
"๐": ["swimmer", "person_swimming"],
"๐๏ธโโ๏ธ": [
"woman-lifting-weights",
"weight_lifting_woman",
"woman_lifting_weights"
],
"๐๏ธโโ๏ธ": ["man-lifting-weights", "weight_lifting_man", "man_lifting_weights"],
"๐๏ธ": ["weight_lifter"],
"๐๏ธโโ๏ธ": ["woman-golfing", "golfing_woman"],
"๐๏ธโโ๏ธ": ["man-golfing", "golfing_man"],
"๐๏ธ": ["golfer"],
"๐๏ธ": ["racing_motorcycle"],
"๐๏ธ": ["racing_car"],
"๐": ["cricket_bat_and_ball", "cricket_game"],
"๐": ["volleyball"],
"๐": ["field_hockey_stick_and_ball", "field_hockey"],
"๐": ["ice_hockey_stick_and_puck", "ice_hockey"],
"๐": ["table_tennis_paddle_and_ball", "table_tennis", "ping_pong"],
"๐๏ธ": ["snow_capped_mountain"],
"๐๏ธ": ["camping"],
"๐๏ธ": ["beach_with_umbrella"],
"๐๏ธ": ["building_construction"],
"๐๏ธ": ["house_buildings"],
"๐๏ธ": ["cityscape"],
"๐๏ธ": ["derelict_house_building"],
"๐๏ธ": ["classical_building"],
"๐๏ธ": ["desert"],
"๐๏ธ": ["desert_island"],
"๐๏ธ": ["national_park"],
"๐๏ธ": ["stadium"],
"๐ ": ["house", "house_building"],
"๐ก": ["house_with_garden"],
"๐ข": ["office", "office_building"],
"๐ฃ": ["post_office", "japanese_post_office"],
"๐ค": ["european_post_office"],
"๐ฅ": ["hospital"],
"๐ฆ": ["bank"],
"๐ง": ["atm", "automated_teller_machine", "atm_sign"],
"๐จ": ["hotel"],
"๐ฉ": ["love_hotel"],
"๐ช": ["convenience_store"],
"๐ซ": ["school"],
"๐ฌ": ["department_store"],
"๐ญ": ["factory"],
"๐ฎ": ["izakaya_lantern", "lantern", "red_paper_lantern"],
"๐ฏ": ["japanese_castle"],
"๐ฐ": ["european_castle", "castle"],
"๐ณ๏ธโ๐": ["rainbow-flag", "rainbow_flag"],
"๐ณ๏ธ": ["waving_white_flag"],
"๐ด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ": ["flag-england", "england"],
"๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ": ["flag-scotland", "scotland"],
"๐ด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ": ["flag-wales", "wales"],
"๐ด": ["waving_black_flag", "black_flag"],
"๐ต๏ธ": ["rosette"],
"๐ท๏ธ": ["label"],
"๐ธ": [
"badminton_racquet_and_shuttlecock",
"badminton",
"badminton_racket_and_shuttlecock"
],
"๐น": ["bow_and_arrow", "bow_arrow", "archery"],
"๐บ": ["amphora", "jar", "vase"],
"๐ป": ["skin-tone-2"],
"๐ผ": ["skin-tone-3"],
"๐ฝ": ["skin-tone-4"],
"๐พ": ["skin-tone-5"],
"๐ฟ": ["skin-tone-6"],
"๐": ["rat"],
"๐": ["mouse2"],
"๐": ["ox"],
"๐": ["water_buffalo"],
"๐": ["cow2"],
"๐
": ["tiger2"],
"๐": ["leopard"],
"๐": ["rabbit2"],
"๐": ["cat2"],
"๐": ["dragon"],
"๐": ["crocodile"],
"๐": ["whale2"],
"๐": ["snail"],
"๐": ["snake"],
"๐": ["racehorse"],
"๐": ["ram"],
"๐": ["goat"],
"๐": ["sheep", "ewe"],
"๐": ["monkey"],
"๐": ["rooster"],
"๐": ["chicken"],
"๐": ["dog2"],
"๐": ["pig2"],
"๐": ["boar"],
"๐": ["elephant"],
"๐": ["octopus"],
"๐": ["shell", "spiral_shell"],
"๐": ["bug"],
"๐": ["ant"],
"๐": ["bee", "honeybee"],
"๐": ["beetle", "lady_beetle"],
"๐": ["fish"],
"๐ ": ["tropical_fish"],
"๐ก": ["blowfish"],
"๐ข": ["turtle"],
"๐ฃ": ["hatching_chick"],
"๐ค": ["baby_chick"],
"๐ฅ": ["hatched_chick", "front-facing_baby_chick"],
"๐ฆ": ["bird"],
"๐ง": ["penguin"],
"๐จ": ["koala"],
"๐ฉ": ["poodle"],
"๐ช": ["dromedary_camel"],
"๐ซ": ["camel", "bactrian_camel", "two-hump_camel"],
"๐ฌ": ["dolphin", "flipper"],
"๐ญ": ["mouse", "mouse_face"],
"๐ฎ": ["cow", "cow_face"],
"๐ฏ": ["tiger", "tiger_face"],
"๐ฐ": ["rabbit", "rabbit_face"],
"๐ฑ": ["cat", "cat_face"],
"๐ฒ": ["dragon_face"],
"๐ณ": ["whale", "spouting_whale"],
"๐ด": ["horse", "horse_face"],
"๐ต": ["monkey_face"],
"๐ถ": ["dog", "dog_face"],
"๐ท": ["pig", "pig_face"],
"๐ธ": ["frog", "frog_face"],
"๐น": ["hamster", "hamster_face"],
"๐บ": ["wolf", "wolf_face"],
"๐ป": ["bear", "bear_face"],
"๐ผ": ["panda_face", "panda"],
"๐ฝ": ["pig_nose"],
"๐พ": ["feet", "paw_prints"],
"๐ฟ๏ธ": ["chipmunk"],
"๐": ["eyes"],
"๐๏ธโ๐จ๏ธ": ["eye-in-speech-bubble", "eye_speech_bubble"],
"๐๏ธ": ["eye"],
"๐": ["ear"],
"๐": ["nose"],
"๐": ["lips", "mouth"],
"๐
": ["tongue"],
"๐": [
"point_up_2",
"white_up_pointing_backhand_index",
"backhand_index_pointing_up"
],
"๐": [
"point_down",
"white_down_pointing_backhand_index",
"backhand_index_pointing_down"
],
"๐": [
"point_left",
"white_left_pointing_backhand_index",
"backhand_index_pointing_left"
],
"๐": [
"point_right",
"white_right_pointing_backhand_index",
"backhand_index_pointing_right"
],
"๐": [
"facepunch",
"punch",
"fisted_hand_sign",
"fist_oncoming",
"oncoming_fist"
],
"๐": ["wave", "waving_hand_sign", "waving_hand"],
"๐": ["ok_hand", "ok_hand_sign"],
"๐": ["+1", "thumbsup", "thumbs_up_sign", "thumbs_up"],
"๐": ["-1", "thumbsdown", "thumbs_down_sign", "thumbs_down"],
"๐": ["clap", "clapping_hands_sign", "clapping_hands"],
"๐": ["open_hands", "open_hands_sign"],
"๐": ["crown"],
"๐": ["womans_hat", "womanโs_hat"],
"๐": ["eyeglasses", "glasses"],
"๐": ["necktie"],
"๐": ["shirt", "tshirt", "t-shirt"],
"๐": ["jeans"],
"๐": ["dress"],
"๐": ["kimono"],
"๐": ["bikini"],
"๐": ["womans_clothes", "womanโs_clothes"],
"๐": ["purse"],
"๐": ["handbag"],
"๐": ["pouch", "clutch_bag"],
"๐": ["mans_shoe", "shoe", "manโs_shoe"],
"๐": ["athletic_shoe", "running_shoe"],
"๐ ": ["high_heel", "high-heeled_shoe"],
"๐ก": ["sandal", "womans_sandal", "womanโs_sandal"],
"๐ข": ["boot", "womans_boots", "womanโs_boot"],
"๐ฃ": ["footprints"],
"๐ค": ["bust_in_silhouette"],
"๐ฅ": ["busts_in_silhouette"],
"๐ฆ": ["boy"],
"๐ง": ["girl"],
"๐จโ๐พ": ["male-farmer", "male_farmer", "man_farmer"],
"๐จโ๐ณ": ["male-cook", "male_cook", "man_cook"],
"๐จโ๐": ["male-student", "male_student", "man_student"],
"๐จโ๐ค": ["male-singer", "male_singer", "man_singer"],
"๐จโ๐จ": ["male-artist", "male_artist", "man_artist"],
"๐จโ๐ซ": ["male-teacher", "male_teacher", "man_teacher"],
"๐จโ๐ญ": ["male-factory-worker", "male_factory_worker", "man_factory_worker"],
"๐จโ๐ฆโ๐ฆ": ["man-boy-boy", "family_man_boy_boy", "man,_boy,_boy"],
"๐จโ๐ฆ": ["man-boy", "family_man_boy", "man,_boy"],
"๐จโ๐งโ๐ฆ": ["man-girl-boy", "family_man_girl_boy", "man,_girl,_boy"],
"๐จโ๐งโ๐ง": ["man-girl-girl", "family_man_girl_girl", "man,_girl,_girl"],
"๐จโ๐ง": ["man-girl", "family_man_girl", "man,_girl"],
"๐จโ๐จโ๐ฆ": [
"man-man-boy",
"family_man_man_boy",
"family_(man,_man,_boy)",
"man,_man,_boy"
],
"๐จโ๐จโ๐ฆโ๐ฆ": [
"man-man-boy-boy",
"family_man_man_boy_boy",
"family_(man,_man,_boy,_boy)",
"man,_man,_boy,_boy"
],
"๐จโ๐จโ๐ง": [
"man-man-girl",
"family_man_man_girl",
"family_(man,_man,_girl)",
"man,_man,_girl"
],
"๐จโ๐จโ๐งโ๐ฆ": [
"man-man-girl-boy",
"family_man_man_girl_boy",
"family_(man,_man,_girl,_boy)",
"man,_man,_girl,_boy"
],
"๐จโ๐จโ๐งโ๐ง": [
"man-man-girl-girl",
"family_man_man_girl_girl",
"family_(man,_man,_girl,_girl)",
"man,_man,_girl,_girl"
],
"๐จโ๐ฉโ๐ฆ": [
"man-woman-boy",
"family_man_woman_boy",
"family_(man,_woman,_boy)",
"man,_woman,_boy"
],
"๐จโ๐ฉโ๐ฆโ๐ฆ": [
"man-woman-boy-boy",
"family_man_woman_boy_boy",
"family_(man,_woman,_boy,_boy)",
"man,_woman,_boy,_boy"
],
"๐จโ๐ฉโ๐ง": [
"man-woman-girl",
"family_man_woman_girl",
"family_(man,_woman,_girl)",
"man,_woman,_girl"
],
"๐จโ๐ฉโ๐งโ๐ฆ": [
"man-woman-girl-boy",
"family_man_woman_girl_boy",
"family_(man,_woman,_girl,_boy)",
"man,_woman,_girl,_boy"
],
"๐จโ๐ฉโ๐งโ๐ง": [
"man-woman-girl-girl",
"family_man_woman_girl_girl",
"family_(man,_woman,_girl,_girl)",
"man,_woman,_girl,_girl"
],
"๐จโ๐ป": ["male-technologist", "male_technologist", "man_technologist"],
"๐จโ๐ผ": ["male-office-worker", "male_office_worker", "man_office_worker"],
"๐จโ๐ง": ["male-mechanic", "male_mechanic", "man_mechanic"],
"๐จโ๐ฌ": ["male-scientist", "male_scientist", "man_scientist"],
"๐จโ๐": ["male-astronaut", "male_astronaut", "man_astronaut"],
"๐จโ๐": ["male-firefighter", "male_firefighter", "man_firefighter"],
"๐จโโ๏ธ": ["male-doctor", "male_health_worker", "man_health_worker"],
"๐จโโ๏ธ": ["male-judge", "man_judge", "male_judge"],
"๐จโโ๏ธ": ["male-pilot", "male_pilot", "man_pilot"],
"๐จโโค๏ธโ๐จ": ["man-heart-man"],
"๐จโโค๏ธโ๐โ๐จ": ["man-kiss-man", "man,_man"],
"๐จ": ["man"],
"๐ฉโ๐พ": ["female-farmer", "female_farmer", "woman_farmer", "woman_famer"],
"๐ฉโ๐ณ": ["female-cook", "female_cook", "woman_cook"],
"๐ฉโ๐": ["female-student", "female_student", "woman_student"],
"๐ฉโ๐ค": ["female-singer", "female_singer", "woman_singer"],
"๐ฉโ๐จ": ["female-artist", "female_artist", "woman_artist"],
"๐ฉโ๐ซ": ["female-teacher", "female_teacher", "woman_teacher"],
"๐ฉโ๐ญ": [
"female-factory-worker",
"female_factory_worker",
"woman_factory_worker"
],
"๐ฉโ๐ฆโ๐ฆ": ["woman-boy-boy", "family_woman_boy_boy", "woman,_boy,_boy"],
"๐ฉโ๐ฆ": ["woman-boy", "family_woman_boy", "woman,_boy"],
"๐ฉโ๐งโ๐ฆ": ["woman-girl-boy", "family_woman_girl_boy", "woman,_girl,_boy"],
"๐ฉโ๐งโ๐ง": ["woman-girl-girl", "family_woman_girl_girl", "woman,_girl,_girl"],
"๐ฉโ๐ง": ["woman-girl", "family_woman_girl", "woman,_girl"],
"๐ฉโ๐ฉโ๐ฆ": [
"woman-woman-boy",
"family_woman_woman_boy",
"family_(woman,_woman,_boy)",
"woman,_woman,_boy"
],
"๐ฉโ๐ฉโ๐ฆโ๐ฆ": [
"woman-woman-boy-boy",
"family_woman_woman_boy_boy",
"family_(woman,_woman,_boy,_boy)",
"woman,_woman,_boy,_boy"
],
"๐ฉโ๐ฉโ๐ง": [
"woman-woman-girl",
"family_woman_woman_girl",
"family_(woman,_woman,_girl)",
"woman,_woman,_girl"
],
"๐ฉโ๐ฉโ๐งโ๐ฆ": [
"woman-woman-girl-boy",
"family_woman_woman_girl_boy",
"family_(woman,_woman,_girl,_boy)",
"woman,_woman,_girl,_boy"
],
"๐ฉโ๐ฉโ๐งโ๐ง": [
"woman-woman-girl-girl",
"family_woman_woman_girl_girl",
"family_(woman,_woman,_girl,_girl)",
"woman,_woman,_girl,_girl"
],
"๐ฉโ๐ป": ["female-technologist", "female_technologist", "woman_technologist"],
"๐ฉโ๐ผ": ["female-office-worker", "female_office_worker", "woman_office_worker"],
"๐ฉโ๐ง": ["female-mechanic", "female_mechanic", "woman_mechanic"],
"๐ฉโ๐ฌ": ["female-scientist", "female_scientist", "woman_scientist"],
"๐ฉโ๐": ["female-astronaut", "female_astronaut", "woman_astronaut"],
"๐ฉโ๐": ["female-firefighter", "female_firefighter", "woman_firefighter"],
"๐ฉโโ๏ธ": ["female-doctor", "female_health_worker", "woman_health_worker"],
"๐ฉโโ๏ธ": ["female-judge", "woman_judge", "female_judge"],
"๐ฉโโ๏ธ": ["female-pilot", "female_pilot", "woman_pilot"],
"๐ฉโโค๏ธโ๐จ": ["woman-heart-man", "couple_with_heart_woman_man"],
"๐ฉโโค๏ธโ๐ฉ": ["woman-heart-woman"],
"๐ฉโโค๏ธโ๐โ๐จ": ["woman-kiss-man", "couplekiss_man_woman", "woman,_man"],
"๐ฉโโค๏ธโ๐โ๐ฉ": [
"woman-kiss-woman",
"couplekiss_woman_woman",
"kiss_(woman,_woman)",
"woman,_woman"
],
"๐ฉ": ["woman"],
"๐ช": ["family"],
"๐ซ": [
"couple",
"man_and_woman_holding_hands",
"woman_and_man_holding_hands"
],
"๐ฌ": ["two_men_holding_hands", "men_holding_hands"],
"๐ญ": ["two_women_holding_hands", "women_holding_hands"],
"๐ฎโโ๏ธ": ["female-police-officer"],
"๐ฎโโ๏ธ": ["male-police-officer"],
"๐ฎ": ["cop", "police_officer"],
"๐ฏโโ๏ธ": ["woman-with-bunny-ears-partying"],
"๐ฏโโ๏ธ": ["man-with-bunny-ears-partying"],
"๐ฏ": ["dancers", "woman_with_bunny_ears", "people_with_bunny_ears"],
"๐ฐ": ["bride_with_veil"],
"๐ฑโโ๏ธ": ["blond-haired-woman"],
"๐ฑโโ๏ธ": ["blond-haired-man"],
"๐ฑ": ["person_with_blond_hair", "blond_haired_person", "blond_hair"],
"๐ฒ": ["man_with_gua_pi_mao", "man_with_chinese_cap"],
"๐ณโโ๏ธ": ["woman-wearing-turban"],
"๐ณโโ๏ธ": ["man-wearing-turban"],
"๐ณ": ["man_with_turban", "person_with_turban", "person_wearing_turban"],
"๐ด": ["older_man", "old_man"],
"๐ต": ["older_woman", "old_woman"],
"๐ถ": ["baby"],
"๐ทโโ๏ธ": ["female-construction-worker"],
"๐ทโโ๏ธ": ["male-construction-worker"],
"๐ท": ["construction_worker"],
"๐ธ": ["princess"],
"๐น": ["japanese_ogre", "ogre"],
"๐บ": ["japanese_goblin", "goblin"],
"๐ป": ["ghost"],
"๐ผ": ["angel", "baby_angel"],
"๐ฝ": ["alien", "extraterrestrial_alien"],
"๐พ": ["space_invader", "alien_monster"],
"๐ฟ": ["imp", "angry_face_with_horns"],
"๐": ["skull"],
"๐โโ๏ธ": ["woman-tipping-hand"],
"๐โโ๏ธ": ["man-tipping-hand"],
"๐": [
"information_desk_person",
"tipping_hand_person",
"person_tipping_hand"
],
"๐โโ๏ธ": ["female-guard"],
"๐โโ๏ธ": ["male-guard"],
"๐": ["guardsman", "guard"],
"๐": ["dancer", "woman_dancing"],
"๐": ["lipstick"],
"๐
": ["nail_care", "nail_polish"],
"๐โโ๏ธ": ["woman-getting-massage"],
"๐โโ๏ธ": ["man-getting-massage"],
"๐": ["massage", "face_massage", "person_getting_massage"],
"๐โโ๏ธ": ["woman-getting-haircut"],
"๐โโ๏ธ": ["man-getting-haircut"],
"๐": ["haircut", "person_getting_haircut"],
"๐": ["barber", "barber_pole"],
"๐": ["syringe"],
"๐": ["pill"],
"๐": ["kiss", "kiss_mark"],
"๐": ["love_letter"],
"๐": ["ring"],
"๐": ["gem", "gem_stone"],
"๐": ["couplekiss"],
"๐": ["bouquet"],
"๐": ["couple_with_heart"],
"๐": ["wedding"],
"๐": ["heartbeat", "beating_heart"],
"๐": ["broken_heart"],
"๐": ["two_hearts"],
"๐": ["sparkling_heart"],
"๐": ["heartpulse", "growing_heart"],
"๐": ["cupid", "heart_with_arrow"],
"๐": ["blue_heart"],
"๐": ["green_heart"],
"๐": ["yellow_heart"],
"๐": ["purple_heart"],
"๐": ["gift_heart", "heart_with_ribbon"],
"๐": ["revolving_hearts"],
"๐": ["heart_decoration"],
"๐ ": ["diamond_shape_with_a_dot_inside", "diamond_with_a_dot"],
"๐ก": ["bulb", "electric_light_bulb", "light_bulb"],
"๐ข": ["anger", "anger_symbol"],
"๐ฃ": ["bomb"],
"๐ค": ["zzz", "sleeping_symbol"],
"๐ฅ": ["boom", "collision", "collision_symbol"],
"๐ฆ": ["sweat_drops", "splashing_sweat_symbol", "sweat_droplets"],
"๐ง": ["droplet"],
"๐จ": ["dash", "dash_symbol", "dashing_away"],
"๐ฉ": ["hankey", "poop", "shit", "pile_of_poo"],
"๐ช": ["muscle", "flexed_biceps"],
"๐ซ": ["dizzy", "dizzy_symbol"],