This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
related_words.rb
893 lines (893 loc) · 38.7 KB
/
related_words.rb
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
# Originally copied from https://github.com/muan/emoji at `51b8e34f3c`.
RELATED_WORDS = {
'+1' => ['thumb', 'thumbs', 'thumbsup'],
'-1' => ['thumb', 'thumbs', 'thumbsdown'],
'100' => ['score', 'perfect', 'numbers'],
'1234' => ['numbers', 'blue-square'],
'8ball' => ['pool', 'game'],
'a' => ['red-square', 'alphabet'],
'ab' => ['red-square', 'alphabet'],
'abc' => ['blue-square', 'alphabet'],
'abcd' => ['blue-square', 'alphabet'],
'accept' => ['ok', 'good', 'chinese', 'kanji', 'agree', 'yes'],
'aerial_tramway' => ['transportation', 'vehicle'],
'airplane' => ['vehicle', 'transportation', 'flight'],
'alarm_clock' => ['time', 'wake'],
'alien' => ['UFO', 'paul'],
'ambulance' => ['health', '911'],
'anchor' => ['ship', 'ferry'],
'angel' => ['heaven', 'wings'],
'anger' => ['angry', 'mad'],
'angry' => ['mad', 'face', 'annoyed'],
'anguished' => ['face', 'stunned', 'nervous'],
'ant' => ['animal', 'insect'],
'apple' => ['fruit', 'mac'],
'aquarius' => ['sign', 'purple-square', 'zodiac'],
'aries' => ['sign', 'purple-square', 'zodiac'],
'arrow_backward' => ['arrow', 'blue-square'],
'arrow_double_down' => ['arrow', 'blue-square'],
'arrow_double_up' => ['arrow', 'blue-square'],
'arrow_down' => ['arrow', 'blue-square'],
'arrow_down_small' => ['arrow', 'blue-square'],
'arrow_forward' => ['arrow', 'blue-square'],
'arrow_heading_down' => ['blue-square', 'arrow'],
'arrow_heading_up' => ['blue-square', 'arrow'],
'arrow_left' => ['blue-square', 'arrow'],
'arrow_lower_left' => ['arrow', 'blue-square'],
'arrow_lower_right' => ['arrow', 'blue-square'],
'arrow_right' => ['blue-square'],
'arrow_right_hook' => ['blue-square'],
'arrow_up' => ['blue-square'],
'arrow_up_down' => ['blue-square'],
'arrow_up_small' => ['blue-square'],
'arrow_upper_left' => ['blue-square'],
'arrow_upper_right' => ['blue-square'],
'arrows_clockwise' => ['sync'],
'arrows_counterclockwise' => ['blue-square', 'sync'],
'art' => ['design', 'paint', 'draw'],
'articulated_lorry' => ['vehicle', 'cars', 'transportation'],
'astonished' => ['face', 'xox'],
'athletic_shoe' => ['shoes', 'sports'],
'atm' => ['money', 'cash', 'blue-square'],
'b' => ['red-square', 'alphabet'],
'baby' => ['child'],
'baby_bottle' => ['food', 'container'],
'baby_chick' => ['animal', 'chicken'],
'baby_symbol' => ['orange-square', 'child'],
'back' => ['arrow'],
'baggage_claim' => ['blue-square', 'airport', 'transport'],
'balloon' => ['party'],
'ballot_box_with_check' => ['ok', 'agree'],
'bamboo' => ['plant', 'nature', 'vegetable'],
'banana' => ['fruit', 'food'],
'bangbang' => ['exclamation', 'surprise'],
'bank' => ['building'],
'bar_chart' => ['graph', 'presentation', 'stats'],
'barber' => ['hair', 'salon', 'style'],
'baseball' => ['sports', 'balls', 'MLB'],
'basketball' => ['sports', 'balls', 'NBA'],
'bath' => ['clean', 'shower'],
'bathtub' => ['clean', 'shower'],
'battery' => ['power', 'energy', 'sustain'],
'bear' => ['animal', 'nature'],
'bee' => ['animal', 'insect'],
'beer' => ['relax', 'beverage', 'drink', 'drunk', 'party', 'pub'],
'beers' => ['relax', 'beverage', 'drink', 'drunk', 'party', 'pub', 'cheers'],
'beetle' => ['insect', 'nature'],
'beginner' => ['badge', 'shield'],
'bell' => ['sound', 'notification', 'christmas', 'xmas'],
'bento' => ['food', 'japanese', 'box'],
'bicyclist' => ['sports', 'bike', 'exercise', 'hipster'],
'bike' => ['sports', 'bicycle', 'exercise', 'hipster'],
'bikini' => ['swimming', 'female', 'woman' ,'girl', 'fashion', 'beach'],
'bird' => ['animal', 'nature'],
'birthday' => ['party'],
'black_circle' => [],
'black_joker' => ['poker', 'cards', 'game'],
'black_large_square' => [],
'black_medium_small_square' => [],
'black_medium_square' => [],
'black_nib' => ['pen', 'stationery'],
'black_small_square' => [],
'black_square_button' => [],
'blossom' => ['nature', 'flowers', 'yellow'],
'blowfish' => ['nature', 'food', 'sea', 'ocean'],
'blue_book' => ['read', 'library', 'knowledge'],
'blue_car' => ['car'],
'blue_heart' => ['love', 'like', 'affection', 'valentines'],
'blush' => ['face', 'smile', 'happy'],
'boar' => ['animal', 'nature'],
'boat' => ['transportation'],
'bomb' => ['boom', 'explode'],
'book' => ['library', 'literature'],
'bookmark' => ['favorite'],
'bookmark_tabs' => ['favorite'],
'books' => ['literature', 'library'],
'boom' => ['bomb'],
'boot' => ['shoes', 'fashion'],
'bouquet' => ['flowers', 'nature', 'valentines'],
'bow' => ['man', 'male', 'boy'],
'bowling' => ['sports', 'fun', 'play'],
'bowtie' => ['face', 'formal', 'fashion', 'suit', 'classy'],
'boy' => ['man', 'male', 'guy'],
'bread' => ['food', 'wheat', 'breakfast', 'toast'],
'bride_with_veil' => ['couple', 'marriage', 'wedding'],
'bridge_at_night' => ['photo', 'sanfrancisco'],
'briefcase' => ['business', 'documents', 'work'],
'broken_heart' => ['sad', 'sorry'],
'bug' => ['insect', 'nature', 'caterpillar'],
'bulb' => ['light', 'electricity'],
'bullettrain_front' => ['transportation'],
'bullettrain_side' => ['transportation', 'vehicle'],
'bus' => ['car', 'vehicle', 'transportation'],
'busstop' => ['transportation'],
'bust_in_silhouette' => ['man', 'user', 'person', 'human'],
'busts_in_silhouette' => ['man', 'user', 'person', 'human', 'group', 'team'],
'cactus' => ['vegetable', 'plant', 'nature'],
'cake' => ['food', 'desert', 'sweet'],
'calendar' => ['schedule'],
'calling' => ['iphone', 'incoming', 'communication'],
'camel' => ['animal', 'nature', 'hot'],
'camera' => ['gadgets', 'photo'],
'cancer' => ['sign', 'zodiac', 'zodiac'],
'candy' => ['snack', 'desert'],
'capital_abcd' => ['alphabet', 'words', 'blue-square'],
'capricorn' => ['sign', 'zodiac'],
'car' => ['transportation', 'vehicle'],
'card_index' => ['business', 'stationery', 'office', 'rolodex'],
'carousel_horse' => ['photo', 'carnival', 'horse'],
'cat' => ['animal'],
'cat2' => ['animal'],
'cd' => ['technology', 'dvd'],
'chart' => ['green-square', 'graph'],
'chart_with_downwards_trend' => ['graph'],
'chart_with_upwards_trend' => ['graph'],
'checkered_flag' => ['contest', 'finishline', 'rase', 'gokart', 'winner'],
'cherries' => ['food', 'fruit'],
'cherry_blossom' => ['flower', 'nature', 'plant'],
'chestnut' => ['food', 'squirrel'],
'chicken' => ['animal', 'hen'],
'children_crossing' => ['school'],
'chocolate_bar' => ['food', 'snack', 'desert', 'candy', 'sweet'],
'christmas_tree' => ['festival', 'vacation', 'december', 'xmas', 'pine'],
'church' => ['building', 'religion', 'christ'],
'cinema' => ['blue-square', 'record', 'film', 'movie'],
'circus_tent' => ['festival', 'carnival', 'party'],
'city_sunrise' => ['photo'],
'city_sunset' => ['photo'],
'cl' => ['alphabet', 'words', 'red-square'],
'clap' => ['hands', 'praise', 'applause'],
'clapper' => ['movie', 'film', 'record'],
'clipboard' => ['stationery', 'documents'],
'clock1' => ['time', 'clock'],
'clock10' => ['time', 'clock'],
'clock1030' => ['time', 'clock'],
'clock11' => ['time', 'clock'],
'clock1130' => ['time', 'clock'],
'clock12' => ['time', 'clock'],
'clock1230' => ['time', 'clock'],
'clock130' => ['time', 'clock'],
'clock2' => ['time', 'clock'],
'clock230' => ['time', 'clock'],
'clock3' => ['time', 'clock'],
'clock330' => ['time', 'clock'],
'clock4' => ['time', 'clock'],
'clock430' => ['time', 'clock'],
'clock5' => ['time', 'clock'],
'clock530' => ['time', 'clock'],
'clock6' => ['time', 'clock'],
'clock630' => ['time', 'clock'],
'clock7' => ['time', 'clock'],
'clock730' => ['time', 'clock'],
'clock8' => ['time', 'clock'],
'clock830' => ['time', 'clock'],
'clock9' => ['time', 'clock'],
'clock930' => ['time', 'clock'],
'closed_book' => ['read', 'library', 'knowledge'],
'closed_lock_with_key' => ['security', 'privacy'],
'closed_umbrella' => ['weather', 'rain'],
'cloud' => ['weather', 'sky'],
'clubs' => ['poker', 'cards'],
'cn' => ['china', 'chinese', 'prc'],
'cocktail' => ['drink', 'drunk', 'alcohol', 'beverage'],
'coffee' => ['drink', 'beverage', 'cafe', 'espresso'],
'cold_sweat' => ['face', 'nervous'],
'collision' => ['boom', 'bomb', 'blown'],
'computer' => ['tech', 'laptop'],
'confetti_ball' => ['festival', 'party'],
'confounded' => ['face', 'confused', 'sick', 'unwell'],
'confused' => ['indifference'],
'congratulations' => ['chinese', 'kanji', 'japanese'],
'construction' => ['wip'],
'construction_worker' => ['man', 'male', 'human', 'wip'],
'convenience_store' => ['building'],
'cookie' => ['food', 'snack', 'oreo', 'chocolate'],
'cool' => ['words', 'blue-square'],
'cop' => ['man', 'police', 'law', 'enforcement', 'arrest'],
'copyright' => ['ip', 'license'],
'corn' => ['food', 'vegetable', 'plant', 'maize'],
'couple' => ['people', 'human', 'love', 'date', 'dating', 'like', 'affection', 'valentines', 'marriage'],
'couple_with_heart' => ['love', 'like', 'affection', 'human', 'dating', 'valentines', 'marriage'],
'couplekiss' => ['valentines', 'love', 'like', 'dating', 'marriage'],
'cow' => ['beef', 'ox', 'animal'],
'cow2' => ['beef', 'ox', 'animal', 'nature'],
'credit_card' => ['money', 'pay', 'dollar', 'bill'],
'crescent_moon' => ['night'],
'crocodile' => ['animal', 'nature', 'alligator'],
'crossed_flags' => ['japan'],
'crown' => ['king', 'kod'],
'cry' => ['face', 'tears', 'sad', 'face'],
'crying_cat_face' => ['animal', 'tears', 'weep', 'sad', 'cats'],
'crystal_ball' => ['disco', 'party'],
'cupid' => ['love', 'like', 'heart', 'affection', 'valentines'],
'curly_loop' => ['scribble'],
'currency_exchange' => ['money', 'dollar'],
'curry' => ['food'],
'custard' => ['desert', 'food'],
'customs' => ['passport', 'border'],
'cyclone' => ['swirl'],
'dancer' => ['female', 'girl', 'woman'],
'dancers' => ['female', 'bunny', 'women', 'girls'],
'dango' => ['food'],
'dart' => ['game', 'bar'],
'dash' => ['wind', 'air', 'fast', 'shoo'],
'date' => ['calendar', 'schedule'],
'de' => ['german', 'nation'],
'deciduous_tree' => ['plant', 'nature'],
'department_store' => ['building', 'shopping', 'mall'],
'diamond_shape_with_a_dot_inside' => [],
'diamonds' => ['poker', 'cards'],
'disappointed' => ['face', 'sad', 'upset'],
'disappointed_relieved' => ['face', 'phew', 'sweat', 'nervous'],
'dizzy' => ['star', 'sparkle', 'shoot'],
'dizzy_face' => ['face', 'spent', 'unconscious', 'xox'],
'do_not_litter' => ['trash', 'bin', 'garbage'],
'dog' => ['animal', 'friend', 'nature', 'woff'],
'dog2' => ['animal', 'nature', 'friend', 'doge'],
'dollar' => ['money', 'bill', 'currency'],
'dolls' => ['japanese', 'toy', 'kimono'],
'dolphin' => ['animal', 'nature', 'fish'],
'door' => ['house', 'entry', 'exit'],
'doughnut' => ['food', 'desert', 'snack', 'sweet', 'donut'],
'dragon' => ['animal', 'myth', 'nature', 'chinese', 'green'],
'dragon_face' => ['animal', 'myth', 'nature', 'chinese', 'green'],
'dress' => ['fashion'],
'dromedary_camel' => ['animal', 'hot', 'desert'],
'droplet' => ['water', 'drip', 'faucet'],
'dvd' => ['cd'],
'e-mail' => ['communication', 'inbox'],
'ear' => ['face', 'hear', 'sound', 'listen'],
'ear_of_rice' => ['nature', 'plant'],
'earth_africa' => ['globe', 'world', 'international', 'europe'],
'earth_americas' => ['globe', 'world', 'USA', 'international'],
'earth_asia' => ['globe', 'world', 'east', 'international'],
'egg' => ['food'],
'eggplant' => ['vegetable', 'nature', 'food'],
'eight' => ['8', 'blue-square', 'numbers'],
'eight_pointed_black_star' => [],
'eight_spoked_asterisk' => ['star', 'sparkle', 'green-square'],
'electric_plug' => ['charger', 'power'],
'elephant' => ['animal', 'nature', 'nose', 'thailand', 'trunk'],
'email' => ['inbox', 'communication'],
'end' => ['words', 'arrow'],
'envelope' => ['mail', 'letter', 'postal', 'communication'],
'envelope_with_arrow' => ['email'],
'es' => ['spain', 'flag', 'nation'],
'euro' => ['money', 'dollar'],
'european_castle' => ['building'],
'european_post_office' => ['building'],
'evergreen_tree' => ['plant', 'nature'],
'exclamation' => ['surprise'],
'expressionless' => ['face', 'indifferent'],
'eyeglasses' => ['fashion', 'accessories'],
'eyes' => ['look', 'watch', 'stalk', 'peek'],
'facepunch' => ['angry', 'violence', 'fist', 'hit', 'attack'],
'factory' => ['building'],
'fallen_leaf' => ['nature', 'plant', 'vegetable', 'leaves'],
'family' => ['home', 'parents', 'child', 'mom', 'dad', 'father', 'mother'],
'fast_forward' => ['blue-square'],
'fax' => ['communication', 'technology'],
'fearful' => ['face', 'scared', 'terrified', 'nervous', 'oops'],
'feelsgood' => ['doom', 'ghonly'],
'feet' => ['animal'],
'ferris_wheel' => ['photo', 'carnival', 'londoneye'],
'file_folder' => ['documents'],
'finnadie' => ['doom', 'ghonly'],
'fire' => ['hot', 'cook'],
'fire_engine' => ['transportation', 'cars', 'vehicle'],
'fireworks' => ['photo', 'festival', 'carnival', 'congratulations'],
'first_quarter_moon' => ['nature'],
'first_quarter_moon_with_face' => [],
'fish' => ['animal', 'food', 'nature'],
'fish_cake' => ['food'],
'fishing_pole_and_fish' => ['food', 'hobby'],
'fist' => ['fingers', 'hand'],
'five' => ['numbers', 'blue-square', 'prime'],
'flags' => ['fish', 'japanese', 'koinobori', 'carp'],
'flashlight' => ['dark'],
'floppy_disk' => ['oldschool', 'technology', 'save', 'vintage'],
'flower_playing_cards' => [],
'flushed' => ['face', 'blush', 'shy', 'flattered'],
'foggy' => ['photo'],
'football' => ['sports', 'balls'],
'footprints' => ['feet'],
'fork_and_knife' => ['cutlery', 'kitchen'],
'fountain' => ['photo'],
'four' => ['4', 'numbers', 'blue-square'],
'four_leaf_clover' => ['vegetable', 'plant', 'nature', 'lucky'],
'fr' => ['flag', 'nation', 'france', 'french'],
'free' => ['blue-square', 'words'],
'fried_shrimp' => ['food', 'animal'],
'fries' => ['food'],
'frog' => ['animal', 'nature'],
'frowning' => ['face', 'aw', 'surprised'],
'fuelpump' => ['gas station'],
'full_moon' => ['nature'],
'full_moon_with_face' => [],
'game_die' => ['dice'],
'gb' => ['nation', 'flag', 'british', 'UK'],
'gem' => ['blue', 'ruby'],
'gemini' => ['sign', 'zodiac'],
'ghost' => ['halloween', 'scary'],
'gift' => ['present', 'birthday', 'christmas', 'xmas'],
'gift_heart' => ['love', 'valentines'],
'girl' => ['female', 'woman'],
'globe_with_meridians' => ['earth', 'international', 'world'],
'goat' => ['animal', 'nature'],
'goberserk' => ['doom', 'ghonly'],
'godmode' => ['doom', 'ghonly'],
'golf' => ['sports', 'green'],
'grapes' => ['fruit', 'food'],
'green_apple' => ['fruit', 'nature'],
'green_book' => ['read', 'library', 'knowledge'],
'green_heart' => ['love', 'like', 'affection', 'valentines'],
'grey_exclamation' => [],
'grey_question' => ['doubts'],
'grimacing' => ['face'],
'grin' => ['face', 'happy', 'smile', 'joy'],
'grinning' => ['face', 'smile', 'happy', 'joy'],
'guardsman' => ['uk', 'gb', 'british', 'man', 'male'],
'guitar' => ['music', 'instrument'],
'gun' => ['violence', 'weapon'],
'haircut' => ['female', 'girl', 'woman', 'scissors'],
'hamburger' => ['food', 'fastfood', 'cheeseburger'],
'hammer' => ['tools', 'verdict', 'judge', 'done', 'law', 'ruling', 'diy'],
'hamster' => ['animal', 'nature'],
'hand' => ['fingers', 'stop', 'highfive'],
'handbag' => ['fashion', 'bag', 'accessory', 'accessories'],
'hankey' => ['poop', 'shit', 'shitface'],
'hash' => ['symbol'],
'hatched_chick' => ['chicken', 'baby'],
'hatching_chick' => ['chicken', 'egg', 'born'],
'headphones' => ['music', 'score', 'gadgets'],
'hear_no_evil' => ['animal', 'monkey', 'nature'],
'heart' => ['love', 'like', 'valentines'],
'heart_decoration' => ['purple-square', 'love', 'like'],
'heart_eyes' => ['face', 'love', 'like', 'affection', 'valentines'],
'heart_eyes_cat' => ['animal', 'love', 'like', 'affection', 'cats', 'valentines'],
'heartbeat' => ['love', 'like', 'affection', 'valentines'],
'heartpulse' => ['like', 'love', 'affection', 'valentines'],
'hearts' => ['poker', 'cards'],
'heavy_check_mark' => ['ok', 'nike'],
'heavy_division_sign' => ['divide', 'math', 'calculation'],
'heavy_dollar_sign' => ['money'],
'heavy_exclamation_mark' => ['surprise', 'wow'],
'heavy_minus_sign' => ['math', 'calculation'],
'heavy_multiplication_x' => ['math', 'calculation'],
'heavy_plus_sign' => ['math', 'calculation'],
'helicopter' => ['transportation', 'vehicle'],
'herb' => ['vegetable', 'plant', 'medicine', 'weed', 'grass', 'lawn'],
'hibiscus' => ['plant', 'vegetable', 'flowers'],
'high_brightness' => ['sun', 'light'],
'high_heel' => ['fashion', 'shoes', 'female'],
'hocho' => ['knife', 'cut'],
'honey_pot' => ['bees'],
'honeybee' => ['animal', 'insect'],
'horse' => ['animal'],
'horse_racing' => ['animal', 'betting'],
'hospital' => ['building', 'health', 'surgery', 'doctor', 'clinic'],
'hotel' => ['building', 'whotel', 'accomodation', 'checkin'],
'hotsprings' => ['bath'],
'hourglass' => ['time', 'clock', 'oldschool'],
'hourglass_flowing_sand' => ['oldschool', 'time', 'countdown'],
'house' => ['building', 'home'],
'house_with_garden' => ['home', 'plant', 'nature'],
'hurtrealbad' => ['mad', 'doom', 'ghonly'],
'hushed' => ['face', 'woo'],
'ice_cream' => ['food', 'hot', 'desert'],
'icecream' => ['food', 'hot', 'desert'],
'id' => ['purple-square', 'words'],
'ideograph_advantage' => ['chinese', 'kanji', 'obtain', 'get'],
'imp' => ['devil', 'evil', 'angry', 'horns'],
'inbox_tray' => ['email'],
'incoming_envelope' => ['email', 'inbox'],
'information_desk_person' => ['female', 'girl', 'woman', 'human'],
'information_source' => ['blue-square', 'alphabet'],
'innocent' => ['face', 'angel', 'heaven'],
'interrobang' => ['wat'],
'iphone' => ['technology', 'apple', 'gadgets'],
'it' => ['italy'],
'izakaya_lantern' => ['light'],
'jack_o_lantern' => ['halloween', 'pumpkin'],
'japan' => ['nation'],
'japanese_castle' => ['photo', 'building'],
'japanese_goblin' => [],
'japanese_ogre' => ['monster'],
'jeans' => ['fashion', 'shopping'],
'joy' => ['face', 'cry', 'tears', 'weep', 'happy', 'haha'],
'joy_cat' => ['animal', 'cats', 'haha', 'happy', 'tears'],
'jp' => ['japan', 'nation', 'flag'],
'key' => ['lock', 'door', 'password'],
'keycap_ten' => ['numbers', '10', 'blue-square'],
'kimono' => ['dress', 'fashion', 'women', 'female', 'japanese'],
'kiss' => ['face', 'lips', 'love', 'like', 'affection', 'valentines'],
'kissing' => ['love', 'like', 'face', '3', 'valentines'],
'kissing_cat' => ['animal', 'cats'],
'kissing_closed_eyes' => ['face', 'love', 'like', 'affection', 'valentines'],
'kissing_heart' => ['face', 'love', 'like', 'affection', 'valentines'],
'kissing_smiling_eyes' => ['face', 'affection', 'valentines'],
'koala' => ['animal', 'nature'],
'koko' => ['blue-square', 'here', 'katakana', 'japanese', 'destination'],
'kr' => ['korea', 'nation', 'flag'],
'lantern' => ['light'],
'large_blue_circle' => [],
'large_blue_diamond' => [],
'large_orange_diamond' => [],
'last_quarter_moon' => [],
'last_quarter_moon_with_face' => [],
'laughing' => ['happy', 'joy'],
'leaves' => ['nature', 'plant', 'tree', 'vegetable', 'grass', 'lawn'],
'ledger' => ['notes'],
'left_luggage' => ['blue-square', 'travel'],
'left_right_arrow' => [],
'leftwards_arrow_with_hook' => [],
'lemon' => ['fruit', 'nature', 'citrus'],
'leo' => ['sign', 'purple-square', 'zodiac'],
'leopard' => ['animal', 'nature'],
'libra' => ['sign', 'purple-square', 'zodiac'],
'light_rail' => ['transportation', 'vehicle'],
'link' => ['rings', 'url'],
'lips' => ['face', 'kiss', 'love', 'like', 'affection', 'valentines'],
'lipstick' => ['female', 'girl', 'fashion'],
'lock' => ['security'],
'lock_with_ink_pen' => ['security', 'secret'],
'lollipop' => ['food', 'snack', 'candy', 'sweet'],
'loop' => ['tape', 'cassette'],
'loudspeaker' => ['volume', 'sound'],
'love_hotel' => ['love', 'like', 'affection', 'dating'],
'love_letter' => ['email', 'like', 'affection', 'envelope', 'valentines'],
'low_brightness' => ['sun'],
'm' => ['alphabet', 'blue-circle'],
'mag' => ['search', 'zoom'],
'mag_right' => ['search', 'zoom'],
'mahjong' => ['game', 'chinese', 'kanji'],
'mailbox' => ['email', 'inbox', 'communication'],
'mailbox_closed' => ['email', 'communication', 'inbox'],
'mailbox_with_mail' => ['email', 'inbox', 'communication'],
'mailbox_with_no_mail' => ['email', 'inbox'],
'man' => ['mustashe', 'father', 'dad', 'guy', 'classy'],
'man_with_gua_pi_mao' => ['male', 'boy'],
'man_with_turban' => ['male'],
'mans_shoe' => ['fashion', 'male'],
'maple_leaf' => ['nature', 'plant', 'vegetable'],
'mask' => ['face', 'sick', 'ill'],
'massage' => ['female', 'girl', 'woman'],
'meat_on_bone' => ['good'],
'mega' => ['sound', 'speaker', 'volume'],
'melon' => ['fruit', 'nature', 'food'],
'memo' => ['documents', 'stationery', 'writing', 'letter'],
'mens' => ['toilet', 'restroom', 'wc'],
'metal' => ['fingers', 'rocknroll', 'concert', 'band'],
'metro' => ['transportation', 'blue-square', 'mrt', 'underground', 'tube'],
'microphone' => ['sound', 'music', 'PA'],
'microscope' => ['laboratory', 'experiment', 'zoomin'],
'milky_way' => ['photo'],
'minibus' => ['vehicle', 'car', 'transportation'],
'minidisc' => ['technology', 'record', 'data'],
'mobile_phone_off' => ['mute'],
'money_with_wings' => ['dollar', 'bills'],
'moneybag' => ['dollar'],
'monkey' => ['animal', 'nature'],
'monkey_face' => ['animal', 'nature'],
'monorail' => ['transportation', 'vehicle'],
'moon' => ['nature'],
'mortar_board' => ['school', 'college', 'degree', 'university', 'graduation'],
'mount_fuji' => ['photo', 'mountain', 'nature', 'japan'],
'mountain_bicyclist' => ['transportation', 'sports', 'human'],
'mountain_cableway' => ['transportation', 'vehicle'],
'mountain_railway' => ['transportation'],
'mouse' => ['animal', 'nature'],
'mouse2' => ['animal', 'nature'],
'movie_camera' => ['film', 'record'],
'moyai' => ['stone'],
'muscle' => ['hand', 'strong', 'arm'],
'mushroom' => ['plant', 'vegetable'],
'musical_keyboard' => ['piano', 'instrument'],
'musical_note' => ['score'],
'musical_score' => ['notation', 'clef'],
'mute' => ['sound', 'volume'],
'nail_care' => ['beauty', 'manicure'],
'name_badge' => ['fire'],
'neckbeard' => ['nerdy'],
'necktie' => ['shirt', 'suitup', 'formal', 'fashion', 'cloth'],
'negative_squared_cross_mark' => ['x', 'green-square', 'no', 'deny'],
'neutral_face' => ['face', 'indifference'],
'new' => ['blue-square'],
'new_moon' => ['nature'],
'new_moon_with_face' => ['nature'],
'newspaper' => ['press'],
'ng' => ['blue-square'],
'nine' => ['blue-square'],
'no_bell' => ['sound', 'volume', 'mute'],
'no_bicycles' => [],
'no_entry' => ['limit', 'security', 'privacy'],
'no_entry_sign' => [],
'no_good' => ['female', 'girl', 'woman'],
'no_mobile_phones' => ['iphone', 'mute'],
'no_mouth' => ['face', 'hellokitty', 'silent'],
'no_pedestrians' => ['limit'],
'no_smoking' => ['cigarette'],
'non-potable_water' => [],
'nose' => ['smell', 'sniff'],
'notebook' => ['stationery'],
'notebook_with_decorative_cover' => [],
'notes' => ['music', 'score'],
'nut_and_bolt' => ['handy', 'tools', 'diy'],
'o' => ['circle', 'round'],
'o2' => ['alphabet', 'red-square'],
'ocean' => ['sea', 'water', 'wave'],
'octocat' => ['animal', 'octopus', 'cat', 'github', 'ghonly'],
'octopus' => ['animal'],
'oden' => ['food', 'japanese'],
'office' => ['building', 'bureau', 'work'],
'ok' => ['good', 'agree', 'yes', 'blue-square'],
'ok_hand' => ['fingers', 'limbs'],
'ok_woman' => ['women', 'girl', 'female', 'pink', 'human'],
'older_man' => ['human', 'male', 'men'],
'older_woman' => ['female', 'women', 'girl'],
'on' => ['arrow', 'words'],
'oncoming_automobile' => ['car', 'vehicle', 'transportation'],
'oncoming_bus' => ['vehicle', 'transportation'],
'oncoming_police_car' => ['vehicle', 'law', 'enforcement', 'cops'],
'oncoming_taxi' => ['vehicle', 'cars', 'uber'],
'one' => ['blue-square', 'numbers', '1'],
'open_book' => ['read', 'library', 'knowledge'],
'open_file_folder' => ['documents'],
'open_hands' => ['fingers', 'butterfly'],
'open_mouth' => ['face', 'surprise', 'impressed', 'wow'],
'ophiuchus' => ['sign', 'purple-square'],
'orange_book' => ['read', 'library', 'knowledge'],
'outbox_tray' => ['inbox', 'email'],
'ox' => ['animal', 'cow', 'beef'],
'package' => ['mail', 'gift'],
'page_facing_up' => ['documents'],
'page_with_curl' => ['documents'],
'pager' => ['bbcall', 'oldschool', 'vintage'],
'palm_tree' => ['plant', 'vegetable', 'nature'],
'panda_face' => ['animal', 'nature'],
'paperclip' => ['documents', 'stationery'],
'parking' => ['cars', 'blue-square', 'alphabet'],
'part_alternation_mark' => ['graph'],
'partly_sunny' => ['weather', 'nature', 'cloud', 'morning'],
'passport_control' => ['custom', 'blue-square'],
'paw_prints' => ['animal'],
'peach' => ['fruit', 'nature', 'food'],
'pear' => ['fruit', 'nature'],
'pencil' => ['station', 'documents'],
'pencil2' => ['stationery'],
'penguin' => ['animal', 'nature'],
'pensive' => ['face', 'sad'],
'performing_arts' => ['acting', 'theater', 'drama'],
'persevere' => ['face', 'sick', 'no', 'upset'],
'person_frowning' => ['female', 'girl', 'woman'],
'person_with_blond_hair' => ['man', 'male'],
'person_with_pouting_face' => ['female', 'girl', 'woman'],
'phone' => ['technology', 'communication'],
'pig' => ['animal', 'swine'],
'pig2' => ['animal', 'nature'],
'pig_nose' => ['animal'],
'pill' => ['health', 'medicine'],
'pineapple' => ['fruit', 'nature', 'food'],
'pisces' => ['purple-square', 'sign', 'zodiac'],
'pizza' => ['food', 'party'],
'point_down' => ['fingers', 'hand', 'direction'],
'point_left' => ['direction', 'fingers', 'hand'],
'point_right' => ['fingers', 'hand', 'direction'],
'point_up' => ['hand', 'fingers', 'direction'],
'point_up_2' => ['fingers', 'hand', 'direction'],
'police_car' => ['vehicle', 'cars', 'transportation', 'law', 'enforcement', 'cops'],
'poodle' => ['dog', 'animal', '101', 'nature'],
'poop' => ['poop', 'shit', 'shitface'],
'post_office' => ['building', 'email', 'communication'],
'postal_horn' => ['instrument', 'music'],
'postbox' => ['email', 'letter', 'envelope'],
'potable_water' => ['blue-square', 'liquid', 'restroom', 'cleaning', 'faucet'],
'pouch' => ['bag', 'accessories'],
'poultry_leg' => ['food', 'meat', 'chicken'],
'poultry_leg' => ['food', 'meat'],
'pound' => ['british', 'sterling', 'money', 'bills', 'uk', 'england'],
'pouting_cat' => ['animal', 'cats'],
'pray' => ['please', 'hope', 'wish'],
'princess' => ['girl', 'woman', 'female', 'blond', 'crown'],
'punch' => [],
'purple_heart' => ['love', 'like', 'affection', 'valentines'],
'purse' => ['fashion', 'accessories', 'money'],
'pushpin' => ['stationery'],
'put_litter_in_its_place' => ['blue-square'],
'question' => ['doubt', 'confused'],
'rabbit' => ['animal', 'nature'],
'rabbit2' => ['animal', 'nature'],
'racehorse' => ['animal', 'gamble'],
'radio' => ['communication', 'music', 'podcast', 'program'],
'radio_button' => ['input'],
'rage' => ['angry', 'mad'],
'rage1' => ['angry', 'mad', 'doom', 'ghonly'],
'rage2' => ['angry', 'mad', 'doom', 'ghonly'],
'rage3' => ['angry', 'mad', 'doom', 'ghonly'],
'rage4' => ['angry', 'mad', 'doom', 'ghonly'],
'railway_car' => ['transportation', 'vehicle'],
'rainbow' => ['nature', 'happy', 'unicorn', 'photo', 'sky'],
'raised_hand' => ['female', 'girl', 'woman'],
'raised_hands' => ['gesture', 'hooray'],
'raising_hand' => ['female', 'girl', 'woman'],
'ram' => ['animal', 'sheep', 'nature'],
'ramen' => ['food', 'japanese', 'noodle', 'chipsticks'],
'rat' => ['animal', 'mouse'],
'recycle' => ['arrow', 'environment', 'garbage', 'trash'],
'red_car' => ['transportation', 'vehicle'],
'red_circle' => ['shape'],
'registered' => ['alphabet', 'circle'],
'relaxed' => ['face', 'blush', 'massage', 'happiness'],
'relieved' => ['face', 'relaxed', 'phew', 'massage', 'happiness'],
'repeat' => ['loop', 'record'],
'repeat_one' => ['blue-square', 'loop'],
'restroom' => ['blue-square'],
'revolving_hearts' => ['love', 'like', 'affection', 'valentines'],
'rewind' => ['play', 'blue-square'],
'ribbon' => ['decoration', 'pink', 'girl', 'bowtie'],
'rice' => ['food'],
'rice_ball' => ['food', 'japanese'],
'rice_cracker' => ['food', 'japanese'],
'rice_scene' => ['photo'],
'ring' => ['wedding', 'propose', 'marriage', 'valentines'],
'robot_face' => ['robot', 'bot', 'droid'],
'rocket' => ['launch', 'ship', 'staffmode'],
'roller_coaster' => ['carnival', 'playground', 'photo', 'play', 'fun'],
'rooster' => ['animal', 'nature', 'chicken'],
'rose' => ['flowers', 'valentines', 'love'],
'rotating_light' => ['police', 'ambulance', '911', 'emergency'],
'round_pushpin' => ['stationery'],
'rowboat' => ['sports', 'hobby', 'water', 'ship', 'rowing'],
'ru' => ['russian', 'nation', 'flag'],
'rugby_football' => ['sports'],
'runner' => ['man', 'walking', 'exercise'],
'running' => ['man', 'walking', 'exercise'],
'running_shirt_with_sash' => ['play'],
'sa' => ['japanese', 'blue-square'],
'sagittarius' => ['sign', 'zodiac'],
'sailboat' => ['transportation', 'ship'],
'sake' => ['wine', 'drink', 'drunk', 'beverage'],
'sandal' => ['shoes', 'fashion'],
'santa' => ['festival', 'man', 'male', 'christmas', 'xmas'],
'satellite' => ['communication'],
'satisfied' => ['haha', 'happy', 'face', 'joy', 'glad'],
'saxophone' => ['music', 'instrument'],
'school' => ['building'],
'school_satchel' => ['student', 'education', 'bag'],
'scissors' => ['stationery', 'cut'],
'scorpius' => ['sign', 'zodiac'],
'scream' => ['face', 'munch', 'fear'],
'scream_cat' => ['animal', 'cats', 'munch'],
'scroll' => ['documents'],
'seat' => ['sit'],
'secret' => ['privacy'],
'see_no_evil' => ['monkey', 'animal', 'nature'],
'seedling' => ['plant', 'nature', 'grass', 'lawn'],
'seven' => ['7', 'numbers', 'blue-square', 'prime'],
'shaved_ice' => ['hot', 'desert'],
'sheep' => ['animal', 'nature'],
'shell' => ['nature', 'sea', 'beach'],
'ship' => ['transportation'],
'shipit' => ['squirrel'],
'shirt' => ['fashion', 'cloth'],
'shit' => ['poop', 'face'],
'shoe' => ['accessories', 'fashion'],
'shower' => ['clean', 'bath'],
'signal_strength' => ['blue-square'],
'six' => ['6', 'numbers', 'blue-square'],
'six_pointed_star' => ['purple-square'],
'ski' => ['sports', 'winter', 'cold'],
'skin-tone-2' => ['skin', 'tone'],
'skin-tone-3' => ['skin', 'tone'],
'skin-tone-4' => ['skin', 'tone'],
'skin-tone-5' => ['skin', 'tone'],
'skin-tone-6' => ['skin', 'tone'],
'skull' => ['dead'],
'sleeping' => ['face', 'tired', 'sleepy', 'zzz'],
'sleepy' => ['face', 'tired'],
'slot_machine' => ['bet', 'gamble', 'vegas'],
'small_blue_diamond' => [],
'small_orange_diamond' => [],
'small_red_triangle' => [],
'small_red_triangle_down' => [],
'smile' => ['face', 'happy', 'joy'],
'smile_cat' => ['animal', 'cats'],
'smiley' => ['face', 'happy', 'joy', 'haha'],
'smiley_cat' => ['animal', 'cats', 'happy'],
'smiling_imp' => ['devil', 'horns'],
'smirk' => ['smile', 'mean', 'prank'],
'smirk_cat' => ['animal', 'cats'],
'smoking' => ['kills', 'tobacco', 'cigarette'],
'snail' => ['slow', 'animal', 'shell'],
'snake' => ['animal', 'evil', 'reptile'],
'snowboarder' => ['sports', 'winter'],
'snowflake' => ['winter', 'season', 'cold', 'weather', 'christmas', 'xmas'],
'snowman' => ['winter', 'season', 'cold', 'weather', 'christmas', 'xmas'],
'sob' => ['face', 'cry', 'tears', 'sad', 'upset'],
'soccer' => ['sports', 'balls', 'football'],
'soon' => ['arrow', 'words'],
'sos' => ['help', 'red-square', 'words', 'emergency'],
'sound' => ['volume', 'speaker'],
'space_invader' => ['game'],
'spades' => ['poker', 'cards'],
'spaghetti' => ['food', 'italian', 'noodle'],
'sparkle' => ['stars', 'green-square'],
'sparkler' => ['stars', 'night', 'shine'],
'sparkles' => ['stars', 'shine', 'shiny', 'cool'],
'sparkling_heart' => ['love', 'like', 'affection', 'valentines'],
'speak_no_evil' => ['monkey', 'animal', 'nature'],
'speaker' => ['volume', 'sound'],
'speech_balloon' => ['bubble', 'words'],
'speedboat' => ['ship', 'transportation', 'vehicle'],
'squirrel' => ['animal', 'sherlock', 'inspector', 'dectective'],
'star' => ['night'],
'star2' => ['night'],
'stars' => ['night', 'photo'],
'station' => ['transportation', 'vehicle', 'public'],
'statue_of_liberty' => ['american', 'newyork'],
'steam_locomotive' => ['transportation', 'vehicle', 'train'],
'stew' => ['food'],
'straight_ruler' => ['stationery'],
'strawberry' => ['fruit', 'food', 'nature'],
'stuck_out_tongue' => ['face', 'prank', 'childish'],
'stuck_out_tongue_closed_eyes' => ['face', 'prank', 'crazy'],
'stuck_out_tongue_winking_eye' => ['face', 'prank', 'childish'],
'sun_with_face' => ['morning'],
'sunflower' => ['nature', 'plant'],
'sunglasses' => ['face', 'cool', 'shades'],
'sunny' => ['weather', 'brightness'],
'sunrise' => ['morning', 'view', 'vacation', 'photo'],
'sunrise_over_mountains' => ['view', 'vacation', 'photo'],
'surfer' => ['sports', 'ocean', 'sea'],
'sushi' => ['food', 'japanese'],
'suspect' => ['mad', 'doom', 'ghonly'],
'suspension_railway' => ['vehicle', 'transportation'],
'sweat' => ['face', 'hot', 'tired'],
'sweat_drops' => ['water'],
'sweat_smile' => ['face', 'hot', 'happy'],
'sweet_potato' => ['food', 'nature'],
'swimmer' => ['sports', 'sea'],
'symbols' => ['blue-square'],
'syringe' => ['health', 'hospital', 'drugs', 'blood', 'medicine', 'needle'],
'tada' => ['party', 'contulations'],
'tanabata_tree' => ['plant', 'nature'],
'tangerine' => ['food', 'fruit', 'nature', 'citrus'],
'taurus' => ['purple-square', 'sign', 'zodiac'],
'taxi' => ['uber', 'vehicle', 'cars', 'transportation'],
'tea' => ['drink', 'bowl', 'breakfast', 'green', 'british'],
'telephone' => ['communication', 'technology'],
'telephone_receiver' => ['technology', 'communication'],
'telescope' => ['stars', 'space'],
'tennis' => ['sports', 'balls', 'green'],
'tent' => ['photo', 'camp', 'outdoors'],
'thought_balloon' => ['bubble', 'cloud', 'speech'],
'three' => ['3', 'numbers', 'prime', 'blue-square'],
'thumbsdown' => [],
'thumbsup' => [],
'ticket' => ['event', 'concert', 'pass'],
'tiger' => ['animal', 'feline'],
'tiger2' => ['animal', 'nature', 'feline'],
'tired_face' => ['face', 'sick', 'whine', 'upset'],
'tm' => ['trademark', 'brand'],
'toilet' => ['restroom', 'wc'],
'tokyo_tower' => ['photo', 'japan'],
'tomato' => ['fruit', 'vegetable', 'nature', 'food'],
'tongue' => [],
'top' => ['words', 'blue-square'],
'tophat' => ['magic', 'gentleman', 'classy', 'fancy'],
'tractor' => ['vehicle', 'car', 'farming', 'agriculture'],
'traffic_light' => ['traffic', 'transportation'],
'train' => ['transportation'],
'train2' => ['transportation', 'vehicle'],
'tram' => ['transportation', 'vehicle'],
'triangular_flag_on_post' => [],
'triangular_ruler' => ['stationery', 'math', 'architect', 'sketch'],
'trident' => ['weapon', 'spear'],
'triumph' => ['face', 'gas', 'phew'],
'trolleybus' => ['bart', 'transportation', 'vehicle'],
'trollface' => ['internet', 'meme'],
'trophy' => ['win', 'award', 'contest', 'place', 'ftw', 'ceremony'],
'tropical_drink' => ['beverage', 'cocktail'],
'tropical_fish' => ['animal'],
'truck' => ['cars', 'transportation'],
'trumpet' => ['music'],
'tshirt' => ['fashion'],
'tulip' => ['flowers', 'plant', 'nature'],
'turtle' => ['animal', 'slow'],
'tv' => ['technology', 'program', 'oldschool', 'show'],
'twisted_rightwards_arrows' => ['blue-square'],
'two' => ['numbers', '2', 'prime', 'blue-square'],
'two_hearts' => ['love', 'like', 'affection', 'valentines'],
'two_men_holding_hands' => ['couple', 'love', 'like', 'bromance', 'friends', 'valentines', 'marriage'],
'two_women_holding_hands' => ['friends', 'couple', 'love', 'like', 'valentines', 'marriage'],
'u5272' => ['cut', 'divide', 'chinese', 'kanji', 'pink'],
'u5408' => ['japanese', 'chinese', 'join', 'kanji'],
'u55b6' => ['japanese', 'opening hours'],
'u6307' => ['chinese', 'point', 'green-square', 'kanji'],
'u6708' => ['chinese', 'moon', 'japanese', 'orange-square', 'kanji'],
'u6709' => ['orange-square', 'chinese', 'have', 'kanji'],
'u6e80' => ['full', 'chinese', 'japanese', 'red-square', 'kanji'],
'u7121' => ['no', 'nothing', 'chinese', 'kanji', 'japanese', 'orange-square'],
'u7533' => ['chinese', 'japanese', 'kanji'],
'u7981' => ['kanji', 'japanese', 'chinese', 'forbidden', 'limit', 'restricted'],
'u7a7a' => ['kanji', 'japanese', 'chinese', 'empty'],
'uk' => ['british'],
'umbrella' => ['rain', 'weather'],
'unamused' => ['indifference', 'face', 'bored'],
'underage' => ['18', 'drink', 'pub', 'night'],
'unlock' => ['privacy', 'security'],
'up' => ['blue-square'],
'us' => ['nation', 'flag', 'american', 'USA'],
'v' => ['fingers', 'ohyeah', 'hand', 'victory'],
'vertical_traffic_light' => ['transportation'],
'vhs' => ['record', 'video', 'oldschool'],
'vibration_mode' => ['orange-square', 'phone'],
'video_camera' => ['film'],
'video_game' => ['play'],
'violin' => ['music', 'instrument'],
'virgo' => ['sign', 'zodiac'],
'volcano' => ['photo', 'eruption'],
'vs' => ['words', 'orange-square'],
'walking' => ['man', 'human', 'pedestrian'],
'waning_crescent_moon' => ['nature'],
'waning_gibbous_moon' => ['nature'],
'warning' => ['exclamation', 'wip'],
'watch' => ['time', 'accessories', 'timepiece'],
'water_buffalo' => ['animal', 'nature', 'ox', 'cow'],
'watermelon' => ['fruit', 'food'],
'wave' => ['hands', 'gesture', 'goodbye', 'solong', 'farewell'],
'wavy_dash' => ['draw', 'line'],
'waxing_crescent_moon' => ['nature'],
'waxing_gibbous_moon' => ['nature'],
'wc' => ['toilet', 'restroom', 'blue-square'],
'weary' => ['face', 'tired', 'sleepy', 'sad'],
'wedding' => ['love', 'like', 'affection', 'couple', 'marriage'],
'whale' => ['animal', 'nature', 'sea'],
'whale2' => ['animal', 'nature', 'sea'],
'wheelchair' => ['blue-square', 'disabled'],
'white_check_mark' => ['green-square', 'ok', 'agree'],
'white_circle' => [],
'white_flower' => ['japanese'],
'white_large_square' => [],
'white_medium_small_square' => [],
'white_medium_square' => [],
'white_small_square' => [],
'white_square_button' => [],
'wind_chime' => ['nature', 'ding'],
'wine_glass' => ['drink', 'beverage', 'drunk'],
'wink' => ['face', 'happy'],
'wolf' => ['animal', 'nature'],
'woman' => ['female', 'girls'],
'womans_clothes' => ['fashion'],
'womans_hat' => ['fashion', 'accessories'],
'womens' => ['purple-square'],
'worried' => ['face', 'concern', 'nervous'],
'wrench' => ['tools'],
'x' => ['no'],
'yellow_heart' => ['love', 'like', 'affection', 'valentines'],
'yen' => ['money', 'japanese', 'dollar'],
'yum' => ['happy', 'joy', 'tongue', 'smile', 'face'],
'zap' => ['thunder', 'weather', 'lighting', 'lightning', 'voltage'],
'zero' => ['numbers', 'blue-square', 'null'],
'zzz' => ['sleepy', 'tired'],
}