-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemojies.py
1857 lines (1857 loc) Β· 69.6 KB
/
emojies.py
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
emojies = {
":grinning:": "\U0001f600",
":smiley:": "\U0001f603",
":smile:": "\U0001f604",
":grin:": "\U0001f601",
":laughing:": "\U0001f606",
":satisfied:": "\U0001f606",
":sweat_smile:": "\U0001f605",
":rofl:": "\U0001f923",
":joy:": "\U0001f602",
":slightly_smiling_face:": "\U0001f642",
":upside_down_face:": "\U0001f643",
":wink:": "\U0001f609",
":blush:": "\U0001f60a",
":innocent:": "\U0001f607",
":smiling_face_with_three_hearts:": "\U0001f970",
":heart_eyes:": "\U0001f60d",
":star_struck:": "\U0001f929",
":kissing_heart:": "\U0001f618",
":kissing:": "\U0001f617",
":relaxed:": "\u263a\ufe0f",
":kissing_closed_eyes:": "\U0001f61a",
":kissing_smiling_eyes:": "\U0001f619",
":smiling_face_with_tear:": "\U0001f972",
":yum:": "\U0001f60b",
":stuck_out_tongue:": "\U0001f61b",
":stuck_out_tongue_winking_eye:": "\U0001f61c",
":zany_face:": "\U0001f92a",
":stuck_out_tongue_closed_eyes:": "\U0001f61d",
":money_mouth_face:": "\U0001f911",
":hugs:": "\U0001f917",
":hand_over_mouth:": "\U0001f92d",
":shushing_face:": "\U0001f92b",
":thinking:": "\U0001f914",
":zipper_mouth_face:": "\U0001f910",
":raised_eyebrow:": "\U0001f928",
":neutral_face:": "\U0001f610",
":expressionless:": "\U0001f611",
":no_mouth:": "\U0001f636",
":face_in_clouds:": "\U0001f636\u200d\U0001f32b\ufe0f",
":smirk:": "\U0001f60f",
":unamused:": "\U0001f612",
":roll_eyes:": "\U0001f644",
":grimacing:": "\U0001f62c",
":face_exhaling:": "\U0001f62e\u200d\U0001f4a8",
":lying_face:": "\U0001f925",
":relieved:": "\U0001f60c",
":pensive:": "\U0001f614",
":sleepy:": "\U0001f62a",
":drooling_face:": "\U0001f924",
":sleeping:": "\U0001f634",
":mask:": "\U0001f637",
":face_with_thermometer:": "\U0001f912",
":face_with_head_bandage:": "\U0001f915",
":nauseated_face:": "\U0001f922",
":vomiting_face:": "\U0001f92e",
":sneezing_face:": "\U0001f927",
":hot_face:": "\U0001f975",
":cold_face:": "\U0001f976",
":woozy_face:": "\U0001f974",
":dizzy_face:": "\U0001f635",
":face_with_spiral_eyes:": "\U0001f635\u200d\U0001f4ab",
":exploding_head:": "\U0001f92f",
":cowboy_hat_face:": "\U0001f920",
":partying_face:": "\U0001f973",
":disguised_face:": "\U0001f978",
":sunglasses:": "\U0001f60e",
":nerd_face:": "\U0001f913",
":monocle_face:": "\U0001f9d0",
":confused:": "\U0001f615",
":worried:": "\U0001f61f",
":slightly_frowning_face:": "\U0001f641",
":frowning_face:": "\u2639\ufe0f",
":open_mouth:": "\U0001f62e",
":hushed:": "\U0001f62f",
":astonished:": "\U0001f632",
":flushed:": "\U0001f633",
":pleading_face:": "\U0001f97a",
":frowning:": "\U0001f626",
":anguished:": "\U0001f627",
":fearful:": "\U0001f628",
":cold_sweat:": "\U0001f630",
":disappointed_relieved:": "\U0001f625",
":cry:": "\U0001f622",
":sob:": "\U0001f62d",
":scream:": "\U0001f631",
":confounded:": "\U0001f616",
":persevere:": "\U0001f623",
":disappointed:": "\U0001f61e",
":sweat:": "\U0001f613",
":weary:": "\U0001f629",
":tired_face:": "\U0001f62b",
":yawning_face:": "\U0001f971",
":triumph:": "\U0001f624",
":rage:": "\U0001f621",
":pout:": "\U0001f621",
":angry:": "\U0001f620",
":cursing_face:": "\U0001f92c",
":smiling_imp:": "\U0001f608",
":imp:": "\U0001f47f",
":skull:": "\U0001f480",
":skull_and_crossbones:": "\u2620\ufe0f",
":hankey:": "\U0001f4a9",
":poop:": "\U0001f4a9",
":shit:": "\U0001f4a9",
":clown_face:": "\U0001f921",
":japanese_ogre:": "\U0001f479",
":japanese_goblin:": "\U0001f47a",
":ghost:": "\U0001f47b",
":alien:": "\U0001f47d",
":space_invader:": "\U0001f47e",
":robot:": "\U0001f916",
":smiley_cat:": "\U0001f63a",
":smile_cat:": "\U0001f638",
":joy_cat:": "\U0001f639",
":heart_eyes_cat:": "\U0001f63b",
":smirk_cat:": "\U0001f63c",
":kissing_cat:": "\U0001f63d",
":scream_cat:": "\U0001f640",
":crying_cat_face:": "\U0001f63f",
":pouting_cat:": "\U0001f63e",
":see_no_evil:": "\U0001f648",
":hear_no_evil:": "\U0001f649",
":speak_no_evil:": "\U0001f64a",
":kiss:": "\U0001f48b",
":love_letter:": "\U0001f48c",
":cupid:": "\U0001f498",
":gift_heart:": "\U0001f49d",
":sparkling_heart:": "\U0001f496",
":heartpulse:": "\U0001f497",
":heartbeat:": "\U0001f493",
":revolving_hearts:": "\U0001f49e",
":two_hearts:": "\U0001f495",
":heart_decoration:": "\U0001f49f",
":heavy_heart_exclamation:": "\u2763\ufe0f",
":broken_heart:": "\U0001f494",
":heart_on_fire:": "\u2764\ufe0f\u200d\U0001f525",
":mending_heart:": "\u2764\ufe0f\u200d\U0001fa79",
":heart:": "\u2764\ufe0f",
":orange_heart:": "\U0001f9e1",
":yellow_heart:": "\U0001f49b",
":green_heart:": "\U0001f49a",
":blue_heart:": "\U0001f499",
":purple_heart:": "\U0001f49c",
":brown_heart:": "\U0001f90e",
":black_heart:": "\U0001f5a4",
":white_heart:": "\U0001f90d",
":100:": "\U0001f4af",
":anger:": "\U0001f4a2",
":boom:": "\U0001f4a5",
":collision:": "\U0001f4a5",
":dizzy:": "\U0001f4ab",
":sweat_drops:": "\U0001f4a6",
":dash:": "\U0001f4a8",
":hole:": "\U0001f573\ufe0f",
":bomb:": "\U0001f4a3",
":speech_balloon:": "\U0001f4ac",
":eye_speech_bubble:": "\U0001f441\ufe0f\u200d\U0001f5e8\ufe0f",
":left_speech_bubble:": "\U0001f5e8\ufe0f",
":right_anger_bubble:": "\U0001f5ef\ufe0f",
":thought_balloon:": "\U0001f4ad",
":zzz:": "\U0001f4a4",
":wave:": "\U0001f44b",
":raised_back_of_hand:": "\U0001f91a",
":raised_hand_with_fingers_splayed:": "\U0001f590\ufe0f",
":hand:": "\u270b",
":raised_hand:": "\u270b",
":vulcan_salute:": "\U0001f596",
":ok_hand:": "\U0001f44c",
":pinched_fingers:": "\U0001f90c",
":pinching_hand:": "\U0001f90f",
":v:": "\u270c\ufe0f",
":crossed_fingers:": "\U0001f91e",
":love_you_gesture:": "\U0001f91f",
":metal:": "\U0001f918",
":call_me_hand:": "\U0001f919",
":point_left:": "\U0001f448",
":point_right:": "\U0001f449",
":point_up_2:": "\U0001f446",
":middle_finger:": "\U0001f595",
":fu:": "\U0001f595",
":point_down:": "\U0001f447",
":point_up:": "\u261d\ufe0f",
":+1:": "\U0001f44d",
":thumbsup:": "\U0001f44d",
":-1:": "\U0001f44e",
":thumbsdown:": "\U0001f44e",
":fist_raised:": "\u270a",
":fist:": "\u270a",
":fist_oncoming:": "\U0001f44a",
":facepunch:": "\U0001f44a",
":punch:": "\U0001f44a",
":fist_left:": "\U0001f91b",
":fist_right:": "\U0001f91c",
":clap:": "\U0001f44f",
":raised_hands:": "\U0001f64c",
":open_hands:": "\U0001f450",
":palms_up_together:": "\U0001f932",
":handshake:": "\U0001f91d",
":pray:": "\U0001f64f",
":writing_hand:": "\u270d\ufe0f",
":nail_care:": "\U0001f485",
":selfie:": "\U0001f933",
":muscle:": "\U0001f4aa",
":mechanical_arm:": "\U0001f9be",
":mechanical_leg:": "\U0001f9bf",
":leg:": "\U0001f9b5",
":foot:": "\U0001f9b6",
":ear:": "\U0001f442",
":ear_with_hearing_aid:": "\U0001f9bb",
":nose:": "\U0001f443",
":brain:": "\U0001f9e0",
":anatomical_heart:": "\U0001fac0",
":lungs:": "\U0001fac1",
":tooth:": "\U0001f9b7",
":bone:": "\U0001f9b4",
":eyes:": "\U0001f440",
":eye:": "\U0001f441\ufe0f",
":tongue:": "\U0001f445",
":lips:": "\U0001f444",
":baby:": "\U0001f476",
":child:": "\U0001f9d2",
":boy:": "\U0001f466",
":girl:": "\U0001f467",
":adult:": "\U0001f9d1",
":blond_haired_person:": "\U0001f471",
":man:": "\U0001f468",
":bearded_person:": "\U0001f9d4",
":man_beard:": "\U0001f9d4\u200d\u2642\ufe0f",
":woman_beard:": "\U0001f9d4\u200d\u2640\ufe0f",
":red_haired_man:": "\U0001f468\u200d\U0001f9b0",
":curly_haired_man:": "\U0001f468\u200d\U0001f9b1",
":white_haired_man:": "\U0001f468\u200d\U0001f9b3",
":bald_man:": "\U0001f468\u200d\U0001f9b2",
":woman:": "\U0001f469",
":red_haired_woman:": "\U0001f469\u200d\U0001f9b0",
":person_red_hair:": "\U0001f9d1\u200d\U0001f9b0",
":curly_haired_woman:": "\U0001f469\u200d\U0001f9b1",
":person_curly_hair:": "\U0001f9d1\u200d\U0001f9b1",
":white_haired_woman:": "\U0001f469\u200d\U0001f9b3",
":person_white_hair:": "\U0001f9d1\u200d\U0001f9b3",
":bald_woman:": "\U0001f469\u200d\U0001f9b2",
":person_bald:": "\U0001f9d1\u200d\U0001f9b2",
":blond_haired_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blonde_woman:": "\U0001f471\u200d\u2640\ufe0f",
":blond_haired_man:": "\U0001f471\u200d\u2642\ufe0f",
":older_adult:": "\U0001f9d3",
":older_man:": "\U0001f474",
":older_woman:": "\U0001f475",
":frowning_person:": "\U0001f64d",
":frowning_man:": "\U0001f64d\u200d\u2642\ufe0f",
":frowning_woman:": "\U0001f64d\u200d\u2640\ufe0f",
":pouting_face:": "\U0001f64e",
":pouting_man:": "\U0001f64e\u200d\u2642\ufe0f",
":pouting_woman:": "\U0001f64e\u200d\u2640\ufe0f",
":no_good:": "\U0001f645",
":no_good_man:": "\U0001f645\u200d\u2642\ufe0f",
":ng_man:": "\U0001f645\u200d\u2642\ufe0f",
":no_good_woman:": "\U0001f645\u200d\u2640\ufe0f",
":ng_woman:": "\U0001f645\u200d\u2640\ufe0f",
":ok_person:": "\U0001f646",
":ok_man:": "\U0001f646\u200d\u2642\ufe0f",
":ok_woman:": "\U0001f646\u200d\u2640\ufe0f",
":tipping_hand_person:": "\U0001f481",
":information_desk_person:": "\U0001f481",
":tipping_hand_man:": "\U0001f481\u200d\u2642\ufe0f",
":sassy_man:": "\U0001f481\u200d\u2642\ufe0f",
":tipping_hand_woman:": "\U0001f481\u200d\u2640\ufe0f",
":sassy_woman:": "\U0001f481\u200d\u2640\ufe0f",
":raising_hand:": "\U0001f64b",
":raising_hand_man:": "\U0001f64b\u200d\u2642\ufe0f",
":raising_hand_woman:": "\U0001f64b\u200d\u2640\ufe0f",
":deaf_person:": "\U0001f9cf",
":deaf_man:": "\U0001f9cf\u200d\u2642\ufe0f",
":deaf_woman:": "\U0001f9cf\u200d\u2640\ufe0f",
":bow:": "\U0001f647",
":bowing_man:": "\U0001f647\u200d\u2642\ufe0f",
":bowing_woman:": "\U0001f647\u200d\u2640\ufe0f",
":facepalm:": "\U0001f926",
":man_facepalming:": "\U0001f926\u200d\u2642\ufe0f",
":woman_facepalming:": "\U0001f926\u200d\u2640\ufe0f",
":shrug:": "\U0001f937",
":man_shrugging:": "\U0001f937\u200d\u2642\ufe0f",
":woman_shrugging:": "\U0001f937\u200d\u2640\ufe0f",
":health_worker:": "\U0001f9d1\u200d\u2695\ufe0f",
":man_health_worker:": "\U0001f468\u200d\u2695\ufe0f",
":woman_health_worker:": "\U0001f469\u200d\u2695\ufe0f",
":student:": "\U0001f9d1\u200d\U0001f393",
":man_student:": "\U0001f468\u200d\U0001f393",
":woman_student:": "\U0001f469\u200d\U0001f393",
":teacher:": "\U0001f9d1\u200d\U0001f3eb",
":man_teacher:": "\U0001f468\u200d\U0001f3eb",
":woman_teacher:": "\U0001f469\u200d\U0001f3eb",
":judge:": "\U0001f9d1\u200d\u2696\ufe0f",
":man_judge:": "\U0001f468\u200d\u2696\ufe0f",
":woman_judge:": "\U0001f469\u200d\u2696\ufe0f",
":farmer:": "\U0001f9d1\u200d\U0001f33e",
":man_farmer:": "\U0001f468\u200d\U0001f33e",
":woman_farmer:": "\U0001f469\u200d\U0001f33e",
":cook:": "\U0001f9d1\u200d\U0001f373",
":man_cook:": "\U0001f468\u200d\U0001f373",
":woman_cook:": "\U0001f469\u200d\U0001f373",
":mechanic:": "\U0001f9d1\u200d\U0001f527",
":man_mechanic:": "\U0001f468\u200d\U0001f527",
":woman_mechanic:": "\U0001f469\u200d\U0001f527",
":factory_worker:": "\U0001f9d1\u200d\U0001f3ed",
":man_factory_worker:": "\U0001f468\u200d\U0001f3ed",
":woman_factory_worker:": "\U0001f469\u200d\U0001f3ed",
":office_worker:": "\U0001f9d1\u200d\U0001f4bc",
":man_office_worker:": "\U0001f468\u200d\U0001f4bc",
":woman_office_worker:": "\U0001f469\u200d\U0001f4bc",
":scientist:": "\U0001f9d1\u200d\U0001f52c",
":man_scientist:": "\U0001f468\u200d\U0001f52c",
":woman_scientist:": "\U0001f469\u200d\U0001f52c",
":technologist:": "\U0001f9d1\u200d\U0001f4bb",
":man_technologist:": "\U0001f468\u200d\U0001f4bb",
":woman_technologist:": "\U0001f469\u200d\U0001f4bb",
":singer:": "\U0001f9d1\u200d\U0001f3a4",
":man_singer:": "\U0001f468\u200d\U0001f3a4",
":woman_singer:": "\U0001f469\u200d\U0001f3a4",
":artist:": "\U0001f9d1\u200d\U0001f3a8",
":man_artist:": "\U0001f468\u200d\U0001f3a8",
":woman_artist:": "\U0001f469\u200d\U0001f3a8",
":pilot:": "\U0001f9d1\u200d\u2708\ufe0f",
":man_pilot:": "\U0001f468\u200d\u2708\ufe0f",
":woman_pilot:": "\U0001f469\u200d\u2708\ufe0f",
":astronaut:": "\U0001f9d1\u200d\U0001f680",
":man_astronaut:": "\U0001f468\u200d\U0001f680",
":woman_astronaut:": "\U0001f469\u200d\U0001f680",
":firefighter:": "\U0001f9d1\u200d\U0001f692",
":man_firefighter:": "\U0001f468\u200d\U0001f692",
":woman_firefighter:": "\U0001f469\u200d\U0001f692",
":police_officer:": "\U0001f46e",
":cop:": "\U0001f46e",
":policeman:": "\U0001f46e\u200d\u2642\ufe0f",
":policewoman:": "\U0001f46e\u200d\u2640\ufe0f",
":detective:": "\U0001f575\ufe0f",
":male_detective:": "\U0001f575\ufe0f\u200d\u2642\ufe0f",
":female_detective:": "\U0001f575\ufe0f\u200d\u2640\ufe0f",
":guard:": "\U0001f482",
":guardsman:": "\U0001f482\u200d\u2642\ufe0f",
":guardswoman:": "\U0001f482\u200d\u2640\ufe0f",
":ninja:": "\U0001f977",
":construction_worker:": "\U0001f477",
":construction_worker_man:": "\U0001f477\u200d\u2642\ufe0f",
":construction_worker_woman:": "\U0001f477\u200d\u2640\ufe0f",
":prince:": "\U0001f934",
":princess:": "\U0001f478",
":person_with_turban:": "\U0001f473",
":man_with_turban:": "\U0001f473\u200d\u2642\ufe0f",
":woman_with_turban:": "\U0001f473\u200d\u2640\ufe0f",
":man_with_gua_pi_mao:": "\U0001f472",
":woman_with_headscarf:": "\U0001f9d5",
":person_in_tuxedo:": "\U0001f935",
":man_in_tuxedo:": "\U0001f935\u200d\u2642\ufe0f",
":woman_in_tuxedo:": "\U0001f935\u200d\u2640\ufe0f",
":person_with_veil:": "\U0001f470",
":man_with_veil:": "\U0001f470\u200d\u2642\ufe0f",
":woman_with_veil:": "\U0001f470\u200d\u2640\ufe0f",
":bride_with_veil:": "\U0001f470\u200d\u2640\ufe0f",
":pregnant_woman:": "\U0001f930",
":breast_feeding:": "\U0001f931",
":woman_feeding_baby:": "\U0001f469\u200d\U0001f37c",
":man_feeding_baby:": "\U0001f468\u200d\U0001f37c",
":person_feeding_baby:": "\U0001f9d1\u200d\U0001f37c",
":angel:": "\U0001f47c",
":santa:": "\U0001f385",
":mrs_claus:": "\U0001f936",
":mx_claus:": "\U0001f9d1\u200d\U0001f384",
":superhero:": "\U0001f9b8",
":superhero_man:": "\U0001f9b8\u200d\u2642\ufe0f",
":superhero_woman:": "\U0001f9b8\u200d\u2640\ufe0f",
":supervillain:": "\U0001f9b9",
":supervillain_man:": "\U0001f9b9\u200d\u2642\ufe0f",
":supervillain_woman:": "\U0001f9b9\u200d\u2640\ufe0f",
":mage:": "\U0001f9d9",
":mage_man:": "\U0001f9d9\u200d\u2642\ufe0f",
":mage_woman:": "\U0001f9d9\u200d\u2640\ufe0f",
":fairy:": "\U0001f9da",
":fairy_man:": "\U0001f9da\u200d\u2642\ufe0f",
":fairy_woman:": "\U0001f9da\u200d\u2640\ufe0f",
":vampire:": "\U0001f9db",
":vampire_man:": "\U0001f9db\u200d\u2642\ufe0f",
":vampire_woman:": "\U0001f9db\u200d\u2640\ufe0f",
":merperson:": "\U0001f9dc",
":merman:": "\U0001f9dc\u200d\u2642\ufe0f",
":mermaid:": "\U0001f9dc\u200d\u2640\ufe0f",
":elf:": "\U0001f9dd",
":elf_man:": "\U0001f9dd\u200d\u2642\ufe0f",
":elf_woman:": "\U0001f9dd\u200d\u2640\ufe0f",
":genie:": "\U0001f9de",
":genie_man:": "\U0001f9de\u200d\u2642\ufe0f",
":genie_woman:": "\U0001f9de\u200d\u2640\ufe0f",
":zombie:": "\U0001f9df",
":zombie_man:": "\U0001f9df\u200d\u2642\ufe0f",
":zombie_woman:": "\U0001f9df\u200d\u2640\ufe0f",
":massage:": "\U0001f486",
":massage_man:": "\U0001f486\u200d\u2642\ufe0f",
":massage_woman:": "\U0001f486\u200d\u2640\ufe0f",
":haircut:": "\U0001f487",
":haircut_man:": "\U0001f487\u200d\u2642\ufe0f",
":haircut_woman:": "\U0001f487\u200d\u2640\ufe0f",
":walking:": "\U0001f6b6",
":walking_man:": "\U0001f6b6\u200d\u2642\ufe0f",
":walking_woman:": "\U0001f6b6\u200d\u2640\ufe0f",
":standing_person:": "\U0001f9cd",
":standing_man:": "\U0001f9cd\u200d\u2642\ufe0f",
":standing_woman:": "\U0001f9cd\u200d\u2640\ufe0f",
":kneeling_person:": "\U0001f9ce",
":kneeling_man:": "\U0001f9ce\u200d\u2642\ufe0f",
":kneeling_woman:": "\U0001f9ce\u200d\u2640\ufe0f",
":person_with_probing_cane:": "\U0001f9d1\u200d\U0001f9af",
":man_with_probing_cane:": "\U0001f468\u200d\U0001f9af",
":woman_with_probing_cane:": "\U0001f469\u200d\U0001f9af",
":person_in_motorized_wheelchair:": "\U0001f9d1\u200d\U0001f9bc",
":man_in_motorized_wheelchair:": "\U0001f468\u200d\U0001f9bc",
":woman_in_motorized_wheelchair:": "\U0001f469\u200d\U0001f9bc",
":person_in_manual_wheelchair:": "\U0001f9d1\u200d\U0001f9bd",
":man_in_manual_wheelchair:": "\U0001f468\u200d\U0001f9bd",
":woman_in_manual_wheelchair:": "\U0001f469\u200d\U0001f9bd",
":runner:": "\U0001f3c3",
":running:": "\U0001f3c3",
":running_man:": "\U0001f3c3\u200d\u2642\ufe0f",
":running_woman:": "\U0001f3c3\u200d\u2640\ufe0f",
":woman_dancing:": "\U0001f483",
":dancer:": "\U0001f483",
":man_dancing:": "\U0001f57a",
":business_suit_levitating:": "\U0001f574\ufe0f",
":dancers:": "\U0001f46f",
":dancing_men:": "\U0001f46f\u200d\u2642\ufe0f",
":dancing_women:": "\U0001f46f\u200d\u2640\ufe0f",
":sauna_person:": "\U0001f9d6",
":sauna_man:": "\U0001f9d6\u200d\u2642\ufe0f",
":sauna_woman:": "\U0001f9d6\u200d\u2640\ufe0f",
":climbing:": "\U0001f9d7",
":climbing_man:": "\U0001f9d7\u200d\u2642\ufe0f",
":climbing_woman:": "\U0001f9d7\u200d\u2640\ufe0f",
":person_fencing:": "\U0001f93a",
":horse_racing:": "\U0001f3c7",
":skier:": "\u26f7\ufe0f",
":snowboarder:": "\U0001f3c2",
":golfing:": "\U0001f3cc\ufe0f",
":golfing_man:": "\U0001f3cc\ufe0f\u200d\u2642\ufe0f",
":golfing_woman:": "\U0001f3cc\ufe0f\u200d\u2640\ufe0f",
":surfer:": "\U0001f3c4",
":surfing_man:": "\U0001f3c4\u200d\u2642\ufe0f",
":surfing_woman:": "\U0001f3c4\u200d\u2640\ufe0f",
":rowboat:": "\U0001f6a3",
":rowing_man:": "\U0001f6a3\u200d\u2642\ufe0f",
":rowing_woman:": "\U0001f6a3\u200d\u2640\ufe0f",
":swimmer:": "\U0001f3ca",
":swimming_man:": "\U0001f3ca\u200d\u2642\ufe0f",
":swimming_woman:": "\U0001f3ca\u200d\u2640\ufe0f",
":bouncing_ball_person:": "\u26f9\ufe0f",
":bouncing_ball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
":basketball_man:": "\u26f9\ufe0f\u200d\u2642\ufe0f",
":bouncing_ball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
":basketball_woman:": "\u26f9\ufe0f\u200d\u2640\ufe0f",
":weight_lifting:": "\U0001f3cb\ufe0f",
":weight_lifting_man:": "\U0001f3cb\ufe0f\u200d\u2642\ufe0f",
":weight_lifting_woman:": "\U0001f3cb\ufe0f\u200d\u2640\ufe0f",
":bicyclist:": "\U0001f6b4",
":biking_man:": "\U0001f6b4\u200d\u2642\ufe0f",
":biking_woman:": "\U0001f6b4\u200d\u2640\ufe0f",
":mountain_bicyclist:": "\U0001f6b5",
":mountain_biking_man:": "\U0001f6b5\u200d\u2642\ufe0f",
":mountain_biking_woman:": "\U0001f6b5\u200d\u2640\ufe0f",
":cartwheeling:": "\U0001f938",
":man_cartwheeling:": "\U0001f938\u200d\u2642\ufe0f",
":woman_cartwheeling:": "\U0001f938\u200d\u2640\ufe0f",
":wrestling:": "\U0001f93c",
":men_wrestling:": "\U0001f93c\u200d\u2642\ufe0f",
":women_wrestling:": "\U0001f93c\u200d\u2640\ufe0f",
":water_polo:": "\U0001f93d",
":man_playing_water_polo:": "\U0001f93d\u200d\u2642\ufe0f",
":woman_playing_water_polo:": "\U0001f93d\u200d\u2640\ufe0f",
":handball_person:": "\U0001f93e",
":man_playing_handball:": "\U0001f93e\u200d\u2642\ufe0f",
":woman_playing_handball:": "\U0001f93e\u200d\u2640\ufe0f",
":juggling_person:": "\U0001f939",
":man_juggling:": "\U0001f939\u200d\u2642\ufe0f",
":woman_juggling:": "\U0001f939\u200d\u2640\ufe0f",
":lotus_position:": "\U0001f9d8",
":lotus_position_man:": "\U0001f9d8\u200d\u2642\ufe0f",
":lotus_position_woman:": "\U0001f9d8\u200d\u2640\ufe0f",
":bath:": "\U0001f6c0",
":sleeping_bed:": "\U0001f6cc",
":people_holding_hands:": "\U0001f9d1\u200d\U0001f91d\u200d\U0001f9d1",
":two_women_holding_hands:": "\U0001f46d",
":couple:": "\U0001f46b",
":two_men_holding_hands:": "\U0001f46c",
":couplekiss:": "\U0001f48f",
":couplekiss_man_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
":couplekiss_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f468",
":couplekiss_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f48b\u200d\U0001f469",
":couple_with_heart:": "\U0001f491",
":couple_with_heart_woman_man:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart_man_man:": "\U0001f468\u200d\u2764\ufe0f\u200d\U0001f468",
":couple_with_heart_woman_woman:": "\U0001f469\u200d\u2764\ufe0f\u200d\U0001f469",
":family:": "\U0001f46a",
":family_man_woman_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466",
":family_man_woman_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467",
":family_man_woman_girl_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_man_woman_boy_boy:": "\U0001f468\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_man_woman_girl_girl:": "\U0001f468\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_man_man_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466",
":family_man_man_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467",
":family_man_man_girl_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_man_man_boy_boy:": "\U0001f468\u200d\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_man_man_girl_girl:": "\U0001f468\u200d\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_woman_woman_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466",
":family_woman_woman_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467",
":family_woman_woman_girl_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_woman_woman_boy_boy:": "\U0001f469\u200d\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_woman_woman_girl_girl:": "\U0001f469\u200d\U0001f469\u200d\U0001f467\u200d\U0001f467",
":family_man_boy:": "\U0001f468\u200d\U0001f466",
":family_man_boy_boy:": "\U0001f468\u200d\U0001f466\u200d\U0001f466",
":family_man_girl:": "\U0001f468\u200d\U0001f467",
":family_man_girl_boy:": "\U0001f468\u200d\U0001f467\u200d\U0001f466",
":family_man_girl_girl:": "\U0001f468\u200d\U0001f467\u200d\U0001f467",
":family_woman_boy:": "\U0001f469\u200d\U0001f466",
":family_woman_boy_boy:": "\U0001f469\u200d\U0001f466\u200d\U0001f466",
":family_woman_girl:": "\U0001f469\u200d\U0001f467",
":family_woman_girl_boy:": "\U0001f469\u200d\U0001f467\u200d\U0001f466",
":family_woman_girl_girl:": "\U0001f469\u200d\U0001f467\u200d\U0001f467",
":speaking_head:": "\U0001f5e3\ufe0f",
":bust_in_silhouette:": "\U0001f464",
":busts_in_silhouette:": "\U0001f465",
":people_hugging:": "\U0001fac2",
":footprints:": "\U0001f463",
":monkey_face:": "\U0001f435",
":monkey:": "\U0001f412",
":gorilla:": "\U0001f98d",
":orangutan:": "\U0001f9a7",
":dog:": "\U0001f436",
":dog2:": "\U0001f415",
":guide_dog:": "\U0001f9ae",
":service_dog:": "\U0001f415\u200d\U0001f9ba",
":poodle:": "\U0001f429",
":wolf:": "\U0001f43a",
":fox_face:": "\U0001f98a",
":raccoon:": "\U0001f99d",
":cat:": "\U0001f431",
":cat2:": "\U0001f408",
":black_cat:": "\U0001f408\u200d\u2b1b",
":lion:": "\U0001f981",
":tiger:": "\U0001f42f",
":tiger2:": "\U0001f405",
":leopard:": "\U0001f406",
":horse:": "\U0001f434",
":racehorse:": "\U0001f40e",
":unicorn:": "\U0001f984",
":zebra:": "\U0001f993",
":deer:": "\U0001f98c",
":bison:": "\U0001f9ac",
":cow:": "\U0001f42e",
":ox:": "\U0001f402",
":water_buffalo:": "\U0001f403",
":cow2:": "\U0001f404",
":pig:": "\U0001f437",
":pig2:": "\U0001f416",
":boar:": "\U0001f417",
":pig_nose:": "\U0001f43d",
":ram:": "\U0001f40f",
":sheep:": "\U0001f411",
":goat:": "\U0001f410",
":dromedary_camel:": "\U0001f42a",
":camel:": "\U0001f42b",
":llama:": "\U0001f999",
":giraffe:": "\U0001f992",
":elephant:": "\U0001f418",
":mammoth:": "\U0001f9a3",
":rhinoceros:": "\U0001f98f",
":hippopotamus:": "\U0001f99b",
":mouse:": "\U0001f42d",
":mouse2:": "\U0001f401",
":rat:": "\U0001f400",
":hamster:": "\U0001f439",
":rabbit:": "\U0001f430",
":rabbit2:": "\U0001f407",
":chipmunk:": "\U0001f43f\ufe0f",
":beaver:": "\U0001f9ab",
":hedgehog:": "\U0001f994",
":bat:": "\U0001f987",
":bear:": "\U0001f43b",
":polar_bear:": "\U0001f43b\u200d\u2744\ufe0f",
":koala:": "\U0001f428",
":panda_face:": "\U0001f43c",
":sloth:": "\U0001f9a5",
":otter:": "\U0001f9a6",
":skunk:": "\U0001f9a8",
":kangaroo:": "\U0001f998",
":badger:": "\U0001f9a1",
":feet:": "\U0001f43e",
":paw_prints:": "\U0001f43e",
":turkey:": "\U0001f983",
":chicken:": "\U0001f414",
":rooster:": "\U0001f413",
":hatching_chick:": "\U0001f423",
":baby_chick:": "\U0001f424",
":hatched_chick:": "\U0001f425",
":bird:": "\U0001f426",
":penguin:": "\U0001f427",
":dove:": "\U0001f54a\ufe0f",
":eagle:": "\U0001f985",
":duck:": "\U0001f986",
":swan:": "\U0001f9a2",
":owl:": "\U0001f989",
":dodo:": "\U0001f9a4",
":feather:": "\U0001fab6",
":flamingo:": "\U0001f9a9",
":peacock:": "\U0001f99a",
":parrot:": "\U0001f99c",
":frog:": "\U0001f438",
":crocodile:": "\U0001f40a",
":turtle:": "\U0001f422",
":lizard:": "\U0001f98e",
":snake:": "\U0001f40d",
":dragon_face:": "\U0001f432",
":dragon:": "\U0001f409",
":sauropod:": "\U0001f995",
":t-rex:": "\U0001f996",
":whale:": "\U0001f433",
":whale2:": "\U0001f40b",
":dolphin:": "\U0001f42c",
":flipper:": "\U0001f42c",
":seal:": "\U0001f9ad",
":fish:": "\U0001f41f",
":tropical_fish:": "\U0001f420",
":blowfish:": "\U0001f421",
":shark:": "\U0001f988",
":octopus:": "\U0001f419",
":shell:": "\U0001f41a",
":snail:": "\U0001f40c",
":butterfly:": "\U0001f98b",
":bug:": "\U0001f41b",
":ant:": "\U0001f41c",
":bee:": "\U0001f41d",
":honeybee:": "\U0001f41d",
":beetle:": "\U0001fab2",
":lady_beetle:": "\U0001f41e",
":cricket:": "\U0001f997",
":cockroach:": "\U0001fab3",
":spider:": "\U0001f577\ufe0f",
":spider_web:": "\U0001f578\ufe0f",
":scorpion:": "\U0001f982",
":mosquito:": "\U0001f99f",
":fly:": "\U0001fab0",
":worm:": "\U0001fab1",
":microbe:": "\U0001f9a0",
":bouquet:": "\U0001f490",
":cherry_blossom:": "\U0001f338",
":white_flower:": "\U0001f4ae",
":rosette:": "\U0001f3f5\ufe0f",
":rose:": "\U0001f339",
":wilted_flower:": "\U0001f940",
":hibiscus:": "\U0001f33a",
":sunflower:": "\U0001f33b",
":blossom:": "\U0001f33c",
":tulip:": "\U0001f337",
":seedling:": "\U0001f331",
":potted_plant:": "\U0001fab4",
":evergreen_tree:": "\U0001f332",
":deciduous_tree:": "\U0001f333",
":palm_tree:": "\U0001f334",
":cactus:": "\U0001f335",
":ear_of_rice:": "\U0001f33e",
":herb:": "\U0001f33f",
":shamrock:": "\u2618\ufe0f",
":four_leaf_clover:": "\U0001f340",
":maple_leaf:": "\U0001f341",
":fallen_leaf:": "\U0001f342",
":leaves:": "\U0001f343",
":grapes:": "\U0001f347",
":melon:": "\U0001f348",
":watermelon:": "\U0001f349",
":tangerine:": "\U0001f34a",
":orange:": "\U0001f34a",
":mandarin:": "\U0001f34a",
":lemon:": "\U0001f34b",
":banana:": "\U0001f34c",
":pineapple:": "\U0001f34d",
":mango:": "\U0001f96d",
":apple:": "\U0001f34e",
":green_apple:": "\U0001f34f",
":pear:": "\U0001f350",
":peach:": "\U0001f351",
":cherries:": "\U0001f352",
":strawberry:": "\U0001f353",
":blueberries:": "\U0001fad0",
":kiwi_fruit:": "\U0001f95d",
":tomato:": "\U0001f345",
":olive:": "\U0001fad2",
":coconut:": "\U0001f965",
":avocado:": "\U0001f951",
":eggplant:": "\U0001f346",
":potato:": "\U0001f954",
":carrot:": "\U0001f955",
":corn:": "\U0001f33d",
":hot_pepper:": "\U0001f336\ufe0f",
":bell_pepper:": "\U0001fad1",
":cucumber:": "\U0001f952",
":leafy_green:": "\U0001f96c",
":broccoli:": "\U0001f966",
":garlic:": "\U0001f9c4",
":onion:": "\U0001f9c5",
":mushroom:": "\U0001f344",
":peanuts:": "\U0001f95c",
":chestnut:": "\U0001f330",
":bread:": "\U0001f35e",
":croissant:": "\U0001f950",
":baguette_bread:": "\U0001f956",
":flatbread:": "\U0001fad3",
":pretzel:": "\U0001f968",
":bagel:": "\U0001f96f",
":pancakes:": "\U0001f95e",
":waffle:": "\U0001f9c7",
":cheese:": "\U0001f9c0",
":meat_on_bone:": "\U0001f356",
":poultry_leg:": "\U0001f357",
":cut_of_meat:": "\U0001f969",
":bacon:": "\U0001f953",
":hamburger:": "\U0001f354",
":fries:": "\U0001f35f",
":pizza:": "\U0001f355",
":hotdog:": "\U0001f32d",
":sandwich:": "\U0001f96a",
":taco:": "\U0001f32e",
":burrito:": "\U0001f32f",
":tamale:": "\U0001fad4",
":stuffed_flatbread:": "\U0001f959",
":falafel:": "\U0001f9c6",
":egg:": "\U0001f95a",
":fried_egg:": "\U0001f373",
":shallow_pan_of_food:": "\U0001f958",
":stew:": "\U0001f372",
":fondue:": "\U0001fad5",
":bowl_with_spoon:": "\U0001f963",
":green_salad:": "\U0001f957",
":popcorn:": "\U0001f37f",
":butter:": "\U0001f9c8",
":salt:": "\U0001f9c2",
":canned_food:": "\U0001f96b",
":bento:": "\U0001f371",
":rice_cracker:": "\U0001f358",
":rice_ball:": "\U0001f359",
":rice:": "\U0001f35a",
":curry:": "\U0001f35b",
":ramen:": "\U0001f35c",
":spaghetti:": "\U0001f35d",
":sweet_potato:": "\U0001f360",
":oden:": "\U0001f362",
":sushi:": "\U0001f363",
":fried_shrimp:": "\U0001f364",
":fish_cake:": "\U0001f365",
":moon_cake:": "\U0001f96e",
":dango:": "\U0001f361",
":dumpling:": "\U0001f95f",
":fortune_cookie:": "\U0001f960",
":takeout_box:": "\U0001f961",
":crab:": "\U0001f980",
":lobster:": "\U0001f99e",
":shrimp:": "\U0001f990",
":squid:": "\U0001f991",
":oyster:": "\U0001f9aa",
":icecream:": "\U0001f366",
":shaved_ice:": "\U0001f367",
":ice_cream:": "\U0001f368",
":doughnut:": "\U0001f369",
":cookie:": "\U0001f36a",
":birthday:": "\U0001f382",
":cake:": "\U0001f370",
":cupcake:": "\U0001f9c1",
":pie:": "\U0001f967",
":chocolate_bar:": "\U0001f36b",
":candy:": "\U0001f36c",
":lollipop:": "\U0001f36d",
":custard:": "\U0001f36e",
":honey_pot:": "\U0001f36f",
":baby_bottle:": "\U0001f37c",
":milk_glass:": "\U0001f95b",
":coffee:": "\u2615",
":teapot:": "\U0001fad6",
":tea:": "\U0001f375",
":sake:": "\U0001f376",
":champagne:": "\U0001f37e",
":wine_glass:": "\U0001f377",
":cocktail:": "\U0001f378",
":tropical_drink:": "\U0001f379",
":beer:": "\U0001f37a",
":beers:": "\U0001f37b",
":clinking_glasses:": "\U0001f942",
":tumbler_glass:": "\U0001f943",
":cup_with_straw:": "\U0001f964",
":bubble_tea:": "\U0001f9cb",
":beverage_box:": "\U0001f9c3",
":mate:": "\U0001f9c9",
":ice_cube:": "\U0001f9ca",
":chopsticks:": "\U0001f962",
":plate_with_cutlery:": "\U0001f37d\ufe0f",
":fork_and_knife:": "\U0001f374",
":spoon:": "\U0001f944",
":hocho:": "\U0001f52a",
":knife:": "\U0001f52a",
":amphora:": "\U0001f3fa",
":earth_africa:": "\U0001f30d",
":earth_americas:": "\U0001f30e",
":earth_asia:": "\U0001f30f",
":globe_with_meridians:": "\U0001f310",
":world_map:": "\U0001f5fa\ufe0f",
":japan:": "\U0001f5fe",
":compass:": "\U0001f9ed",
":mountain_snow:": "\U0001f3d4\ufe0f",
":mountain:": "\u26f0\ufe0f",
":volcano:": "\U0001f30b",
":mount_fuji:": "\U0001f5fb",
":camping:": "\U0001f3d5\ufe0f",
":beach_umbrella:": "\U0001f3d6\ufe0f",
":desert:": "\U0001f3dc\ufe0f",
":desert_island:": "\U0001f3dd\ufe0f",
":national_park:": "\U0001f3de\ufe0f",
":stadium:": "\U0001f3df\ufe0f",
":classical_building:": "\U0001f3db\ufe0f",
":building_construction:": "\U0001f3d7\ufe0f",
":bricks:": "\U0001f9f1",
":rock:": "\U0001faa8",
":wood:": "\U0001fab5",
":hut:": "\U0001f6d6",
":houses:": "\U0001f3d8\ufe0f",
":derelict_house:": "\U0001f3da\ufe0f",
":house:": "\U0001f3e0",
":house_with_garden:": "\U0001f3e1",
":office:": "\U0001f3e2",
":post_office:": "\U0001f3e3",
":european_post_office:": "\U0001f3e4",
":hospital:": "\U0001f3e5",
":bank:": "\U0001f3e6",
":hotel:": "\U0001f3e8",
":love_hotel:": "\U0001f3e9",
":convenience_store:": "\U0001f3ea",
":school:": "\U0001f3eb",
":department_store:": "\U0001f3ec",
":factory:": "\U0001f3ed",
":japanese_castle:": "\U0001f3ef",
":european_castle:": "\U0001f3f0",
":wedding:": "\U0001f492",
":tokyo_tower:": "\U0001f5fc",
":statue_of_liberty:": "\U0001f5fd",
":church:": "\u26ea",
":mosque:": "\U0001f54c",
":hindu_temple:": "\U0001f6d5",
":synagogue:": "\U0001f54d",
":shinto_shrine:": "\u26e9\ufe0f",
":kaaba:": "\U0001f54b",
":fountain:": "\u26f2",
":tent:": "\u26fa",
":foggy:": "\U0001f301",
":night_with_stars:": "\U0001f303",
":cityscape:": "\U0001f3d9\ufe0f",
":sunrise_over_mountains:": "\U0001f304",
":sunrise:": "\U0001f305",
":city_sunset:": "\U0001f306",
":city_sunrise:": "\U0001f307",
":bridge_at_night:": "\U0001f309",
":hotsprings:": "\u2668\ufe0f",
":carousel_horse:": "\U0001f3a0",
":ferris_wheel:": "\U0001f3a1",
":roller_coaster:": "\U0001f3a2",
":barber:": "\U0001f488",
":circus_tent:": "\U0001f3aa",
":steam_locomotive:": "\U0001f682",
":railway_car:": "\U0001f683",
":bullettrain_side:": "\U0001f684",
":bullettrain_front:": "\U0001f685",
":train2:": "\U0001f686",
":metro:": "\U0001f687",
":light_rail:": "\U0001f688",
":station:": "\U0001f689",
":tram:": "\U0001f68a",
":monorail:": "\U0001f69d",
":mountain_railway:": "\U0001f69e",
":train:": "\U0001f68b",
":bus:": "\U0001f68c",
":oncoming_bus:": "\U0001f68d",
":trolleybus:": "\U0001f68e",
":minibus:": "\U0001f690",
":ambulance:": "\U0001f691",
":fire_engine:": "\U0001f692",
":police_car:": "\U0001f693",
":oncoming_police_car:": "\U0001f694",
":taxi:": "\U0001f695",
":oncoming_taxi:": "\U0001f696",
":car:": "\U0001f697",
":red_car:": "\U0001f697",
":oncoming_automobile:": "\U0001f698",
":blue_car:": "\U0001f699",
":pickup_truck:": "\U0001f6fb",
":truck:": "\U0001f69a",
":articulated_lorry:": "\U0001f69b",
":tractor:": "\U0001f69c",
":racing_car:": "\U0001f3ce\ufe0f",
":motorcycle:": "\U0001f3cd\ufe0f",
":motor_scooter:": "\U0001f6f5",
":manual_wheelchair:": "\U0001f9bd",
":motorized_wheelchair:": "\U0001f9bc",
":auto_rickshaw:": "\U0001f6fa",
":bike:": "\U0001f6b2",
":kick_scooter:": "\U0001f6f4",
":skateboard:": "\U0001f6f9",
":roller_skate:": "\U0001f6fc",
":busstop:": "\U0001f68f",
":motorway:": "\U0001f6e3\ufe0f",
":railway_track:": "\U0001f6e4\ufe0f",
":oil_drum:": "\U0001f6e2\ufe0f",
":fuelpump:": "\u26fd",
":rotating_light:": "\U0001f6a8",
":traffic_light:": "\U0001f6a5",
":vertical_traffic_light:": "\U0001f6a6",
":stop_sign:": "\U0001f6d1",
":construction:": "\U0001f6a7",
":anchor:": "\u2693",
":boat:": "\u26f5",
":sailboat:": "\u26f5",
":canoe:": "\U0001f6f6",
":speedboat:": "\U0001f6a4",
":passenger_ship:": "\U0001f6f3\ufe0f",
":ferry:": "\u26f4\ufe0f",
":motor_boat:": "\U0001f6e5\ufe0f",
":ship:": "\U0001f6a2",
":airplane:": "\u2708\ufe0f",
":small_airplane:": "\U0001f6e9\ufe0f",
":flight_departure:": "\U0001f6eb",
":flight_arrival:": "\U0001f6ec",
":parachute:": "\U0001fa82",
":seat:": "\U0001f4ba",
":helicopter:": "\U0001f681",
":suspension_railway:": "\U0001f69f",
":mountain_cableway:": "\U0001f6a0",
":aerial_tramway:": "\U0001f6a1",
":artificial_satellite:": "\U0001f6f0\ufe0f",
":rocket:": "\U0001f680",
":flying_saucer:": "\U0001f6f8",
":bellhop_bell:": "\U0001f6ce\ufe0f",
":luggage:": "\U0001f9f3",
":hourglass:": "\u231b",
":hourglass_flowing_sand:": "\u23f3",
":watch:": "\u231a",
":alarm_clock:": "\u23f0",
":stopwatch:": "\u23f1\ufe0f",
":timer_clock:": "\u23f2\ufe0f",
":mantelpiece_clock:": "\U0001f570\ufe0f",
":clock12:": "\U0001f55b",
":clock1230:": "\U0001f567",
":clock1:": "\U0001f550",
":clock130:": "\U0001f55c",
":clock2:": "\U0001f551",
":clock230:": "\U0001f55d",
":clock3:": "\U0001f552",
":clock330:": "\U0001f55e",
":clock4:": "\U0001f553",
":clock430:": "\U0001f55f",
":clock5:": "\U0001f554",
":clock530:": "\U0001f560",
":clock6:": "\U0001f555",
":clock630:": "\U0001f561",
":clock7:": "\U0001f556",
":clock730:": "\U0001f562",
":clock8:": "\U0001f557",
":clock830:": "\U0001f563",
":clock9:": "\U0001f558",
":clock930:": "\U0001f564",
":clock10:": "\U0001f559",
":clock1030:": "\U0001f565",
":clock11:": "\U0001f55a",
":clock1130:": "\U0001f566",
":new_moon:": "\U0001f311",
":waxing_crescent_moon:": "\U0001f312",
":first_quarter_moon:": "\U0001f313",
":moon:": "\U0001f314",
":waxing_gibbous_moon:": "\U0001f314",
":full_moon:": "\U0001f315",
":waning_gibbous_moon:": "\U0001f316",
":last_quarter_moon:": "\U0001f317",
":waning_crescent_moon:": "\U0001f318",
":crescent_moon:": "\U0001f319",
":new_moon_with_face:": "\U0001f31a",
":first_quarter_moon_with_face:": "\U0001f31b",
":last_quarter_moon_with_face:": "\U0001f31c",
":thermometer:": "\U0001f321\ufe0f",
":sunny:": "\u2600\ufe0f",
":full_moon_with_face:": "\U0001f31d",
":sun_with_face:": "\U0001f31e",
":ringed_planet:": "\U0001fa90",
":star:": "\u2b50",
":star2:": "\U0001f31f",
":stars:": "\U0001f320",
":milky_way:": "\U0001f30c",
":cloud:": "\u2601\ufe0f",
":partly_sunny:": "\u26c5",
":cloud_with_lightning_and_rain:": "\u26c8\ufe0f",