@streamscloud/kit 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/styles/_input.scss +98 -0
- package/dist/styles/_mixins.scss +2 -2
- package/dist/styles/reset.css +1 -1
- package/dist/ui/color-picker/cmp.color-picker.svelte +3 -12
- package/dist/ui/color-picker/cmp.color-picker.svelte.d.ts +3 -9
- package/dist/ui/dialog/cmp.dialog.svelte +1 -1
- package/dist/ui/dropdown/cmp.dropdown-item.svelte +93 -0
- package/dist/ui/dropdown/cmp.dropdown-item.svelte.d.ts +32 -0
- package/dist/ui/dropdown/cmp.dropdown-panel.svelte +29 -0
- package/dist/ui/dropdown/cmp.dropdown-panel.svelte.d.ts +18 -0
- package/dist/ui/dropdown/cmp.dropdown.svelte +72 -7
- package/dist/ui/dropdown/cmp.dropdown.svelte.d.ts +3 -1
- package/dist/ui/dropdown/index.d.ts +2 -0
- package/dist/ui/dropdown/index.js +2 -0
- package/dist/ui/dynamic-component/cmp.dynamic-component.svelte +0 -5
- package/dist/ui/dynamic-component/cmp.dynamic-component.svelte.d.ts +2 -8
- package/dist/ui/emoji-picker/cmp.emoji-panel.svelte +186 -0
- package/dist/ui/emoji-picker/cmp.emoji-panel.svelte.d.ts +21 -0
- package/dist/ui/emoji-picker/cmp.emoji-picker.svelte +35 -0
- package/dist/ui/emoji-picker/cmp.emoji-picker.svelte.d.ts +15 -0
- package/dist/ui/emoji-picker/emoji-list.d.ts +2 -0
- package/dist/ui/emoji-picker/emoji-list.js +1754 -0
- package/dist/ui/emoji-picker/emoji-picker-localization.d.ts +5 -0
- package/dist/ui/emoji-picker/emoji-picker-localization.js +40 -0
- package/dist/ui/emoji-picker/index.d.ts +2 -0
- package/dist/ui/emoji-picker/index.js +2 -0
- package/dist/ui/emoji-picker/types.d.ts +8 -0
- package/dist/ui/emoji-picker/types.js +1 -0
- package/dist/ui/form-group/cmp.form-group-label.svelte.d.ts +1 -0
- package/dist/ui/form-group/cmp.form-group.svelte.d.ts +1 -0
- package/dist/ui/icon-text/cmp.icon-text.svelte +0 -9
- package/dist/ui/icon-text/cmp.icon-text.svelte.d.ts +4 -9
- package/dist/ui/inputs/index.d.ts +6 -0
- package/dist/ui/inputs/index.js +5 -0
- package/dist/ui/inputs/input/cmp.input-validatable.svelte +57 -0
- package/dist/ui/inputs/input/cmp.input-validatable.svelte.d.ts +56 -0
- package/dist/ui/inputs/input/cmp.input.svelte +235 -0
- package/dist/ui/inputs/input/cmp.input.svelte.d.ts +60 -0
- package/dist/ui/inputs/input/index.d.ts +2 -0
- package/dist/ui/inputs/input/index.js +2 -0
- package/dist/ui/inputs/input-emoji-picker/cmp.input-emoji-picker.svelte +44 -0
- package/dist/ui/inputs/input-emoji-picker/cmp.input-emoji-picker.svelte.d.ts +9 -0
- package/dist/ui/inputs/input-emoji-picker/index.d.ts +2 -0
- package/dist/ui/inputs/input-emoji-picker/index.js +2 -0
- package/dist/ui/inputs/input-emoji-picker/input-emoji-picker-container.d.ts +2 -0
- package/dist/ui/inputs/input-emoji-picker/input-emoji-picker-container.js +16 -0
- package/dist/ui/inputs/numeral-input/cmp.numeral-input-validatable.svelte +55 -0
- package/dist/ui/inputs/numeral-input/cmp.numeral-input-validatable.svelte.d.ts +62 -0
- package/dist/ui/inputs/numeral-input/cmp.numeral-input.svelte +248 -0
- package/dist/ui/inputs/numeral-input/cmp.numeral-input.svelte.d.ts +66 -0
- package/dist/ui/inputs/numeral-input/index.d.ts +2 -0
- package/dist/ui/inputs/numeral-input/index.js +2 -0
- package/dist/ui/inputs/pin-input/cmp.pin-input.svelte +58 -0
- package/dist/ui/inputs/pin-input/cmp.pin-input.svelte.d.ts +23 -0
- package/dist/ui/inputs/pin-input/index.d.ts +1 -0
- package/dist/ui/inputs/pin-input/index.js +1 -0
- package/dist/ui/inputs/pin-input/pin-input-generator.d.ts +27 -0
- package/dist/ui/inputs/pin-input/pin-input-generator.js +114 -0
- package/dist/ui/inputs/rich-text-input/cmp.rich-text-input.svelte +55 -0
- package/dist/ui/inputs/rich-text-input/cmp.rich-text-input.svelte.d.ts +43 -0
- package/dist/ui/inputs/rich-text-input/index.d.ts +2 -0
- package/dist/ui/inputs/rich-text-input/index.js +1 -0
- package/dist/ui/inputs/rich-text-input/rich-text-input-localization.d.ts +12 -0
- package/dist/ui/inputs/rich-text-input/rich-text-input-localization.js +48 -0
- package/dist/ui/inputs/rich-text-input/tinymce-input.svelte +250 -0
- package/dist/ui/inputs/rich-text-input/tinymce-input.svelte.d.ts +25 -0
- package/dist/ui/inputs/rich-text-input/tinymce.declarations.d.ts +7 -0
- package/dist/ui/inputs/rich-text-input/types.d.ts +4 -0
- package/dist/ui/inputs/rich-text-input/types.js +1 -0
- package/dist/ui/inputs/rich-text-input/validated-link-button.d.ts +3 -0
- package/dist/ui/inputs/rich-text-input/validated-link-button.js +78 -0
- package/dist/ui/inputs/textarea/cmp.textarea-validatable.svelte +35 -0
- package/dist/ui/inputs/textarea/cmp.textarea-validatable.svelte.d.ts +53 -0
- package/dist/ui/inputs/textarea/cmp.textarea.svelte +247 -0
- package/dist/ui/inputs/textarea/cmp.textarea.svelte.d.ts +57 -0
- package/dist/ui/inputs/textarea/index.d.ts +2 -0
- package/dist/ui/inputs/textarea/index.js +2 -0
- package/dist/ui/media-viewer-dialog/cmp.media-viewer-dialog.svelte.d.ts +2 -0
- package/dist/ui/selects/_multiselect.scss +282 -0
- package/dist/ui/selects/_singleselect.scss +175 -0
- package/dist/ui/selects/cmp.multiselect.svelte +530 -0
- package/dist/ui/selects/cmp.multiselect.svelte.d.ts +85 -0
- package/dist/ui/selects/cmp.search-multiselect.svelte +532 -0
- package/dist/ui/selects/cmp.search-multiselect.svelte.d.ts +67 -0
- package/dist/ui/selects/cmp.singleselect.svelte +381 -0
- package/dist/ui/selects/cmp.singleselect.svelte.d.ts +78 -0
- package/dist/ui/selects/index.d.ts +5 -0
- package/dist/ui/selects/index.js +4 -0
- package/dist/ui/selects/select-localization.d.ts +6 -0
- package/dist/ui/selects/select-localization.js +27 -0
- package/dist/ui/selects/types.d.ts +29 -0
- package/dist/ui/selects/types.js +1 -0
- package/dist/ui/time-ago/cmp.time-ago.svelte +0 -6
- package/dist/ui/time-ago/cmp.time-ago.svelte.d.ts +2 -6
- package/dist/ui/validatable/_validatable.scss +34 -0
- package/dist/ui/validatable/cmp.validatable.svelte +57 -0
- package/dist/ui/validatable/cmp.validatable.svelte.d.ts +49 -0
- package/dist/ui/validatable/cmp.validation-error.svelte +52 -0
- package/dist/ui/validatable/cmp.validation-error.svelte.d.ts +42 -0
- package/dist/ui/validatable/index.d.ts +2 -0
- package/dist/ui/validatable/index.js +2 -0
- package/package.json +31 -5
- package/dist/ui/color-picker/cmp.input-stub.svelte +0 -98
- package/dist/ui/color-picker/cmp.input-stub.svelte.d.ts +0 -40
|
@@ -0,0 +1,1754 @@
|
|
|
1
|
+
const emotions = [
|
|
2
|
+
{ text: ':grinning:', unicode: '😀' },
|
|
3
|
+
{ text: ':smiley:', unicode: '😃' },
|
|
4
|
+
{ text: ':smile:', unicode: '😄' },
|
|
5
|
+
{ text: ':grin:', unicode: '😁' },
|
|
6
|
+
{ text: ':laughing:', unicode: '😆' },
|
|
7
|
+
{ text: ':sweat_smile:', unicode: '😅' },
|
|
8
|
+
{ text: ':rofl:', unicode: '🤣' },
|
|
9
|
+
{ text: ':joy:', unicode: '😂' },
|
|
10
|
+
{ text: ':slightly_smiling_face:', unicode: '🙂' },
|
|
11
|
+
{ text: ':upside_down_face:', unicode: '🙃' },
|
|
12
|
+
{ text: ':wink:', unicode: '😉' },
|
|
13
|
+
{ text: ':blush:', unicode: '😊' },
|
|
14
|
+
{ text: ':innocent:', unicode: '😇' },
|
|
15
|
+
{ text: ':smiling_face_with_three_hearts:', unicode: '🥰' },
|
|
16
|
+
{ text: ':heart_eyes:', unicode: '😍' },
|
|
17
|
+
{ text: ':star_struck:', unicode: '🤩' },
|
|
18
|
+
{ text: ':kissing_heart:', unicode: '😘' },
|
|
19
|
+
{ text: ':kissing:', unicode: '😗' },
|
|
20
|
+
{ text: ':relaxed:', unicode: '☺️' },
|
|
21
|
+
{ text: ':kissing_closed_eyes:', unicode: '😚' },
|
|
22
|
+
{ text: ':kissing_smiling_eyes:', unicode: '😙' },
|
|
23
|
+
{ text: ':smiling_face_with_tear:', unicode: '🥲' },
|
|
24
|
+
{ text: ':yum:', unicode: '😋' },
|
|
25
|
+
{ text: ':stuck_out_tongue:', unicode: '😛' },
|
|
26
|
+
{ text: ':stuck_out_tongue_winking_eye:', unicode: '😜' },
|
|
27
|
+
{ text: ':zany_face:', unicode: '🤪' },
|
|
28
|
+
{ text: ':stuck_out_tongue_closed_eyes:', unicode: '😝' },
|
|
29
|
+
{ text: ':money_mouth_face:', unicode: '🤑' },
|
|
30
|
+
{ text: ':hugs:', unicode: '🤗' },
|
|
31
|
+
{ text: ':hand_over_mouth:', unicode: '🤭' },
|
|
32
|
+
{ text: ':shushing_face:', unicode: '🤫' },
|
|
33
|
+
{ text: ':thinking:', unicode: '🤔' },
|
|
34
|
+
{ text: ':zipper_mouth_face:', unicode: '🤐' },
|
|
35
|
+
{ text: ':raised_eyebrow:', unicode: '🤨' },
|
|
36
|
+
{ text: ':neutral_face:', unicode: '😐' },
|
|
37
|
+
{ text: ':expressionless:', unicode: '😑' },
|
|
38
|
+
{ text: ':no_mouth:', unicode: '😶' },
|
|
39
|
+
{ text: ':dotted_line_face:', unicode: '🫥' },
|
|
40
|
+
{ text: ':smirk:', unicode: '😏' },
|
|
41
|
+
{ text: ':unamused:', unicode: '😒' },
|
|
42
|
+
{ text: ':roll_eyes:', unicode: '🙄' },
|
|
43
|
+
{ text: ':grimacing:', unicode: '😬' },
|
|
44
|
+
{ text: ':lying_face:', unicode: '🤥' },
|
|
45
|
+
{ text: ':relieved:', unicode: '😌' },
|
|
46
|
+
{ text: ':pensive:', unicode: '😔' },
|
|
47
|
+
{ text: ':sleepy:', unicode: '😪' },
|
|
48
|
+
{ text: ':drooling_face:', unicode: '🤤' },
|
|
49
|
+
{ text: ':sleeping:', unicode: '😴' },
|
|
50
|
+
{ text: ':mask:', unicode: '😷' },
|
|
51
|
+
{ text: ':face_with_thermometer:', unicode: '🤒' },
|
|
52
|
+
{ text: ':face_with_head_bandage:', unicode: '🤕' },
|
|
53
|
+
{ text: ':nauseated_face:', unicode: '🤢' },
|
|
54
|
+
{ text: ':vomiting_face:', unicode: '🤮' },
|
|
55
|
+
{ text: ':sneezing_face:', unicode: '🤧' },
|
|
56
|
+
{ text: ':hot_face:', unicode: '🥵' },
|
|
57
|
+
{ text: ':cold_face:', unicode: '🥶' },
|
|
58
|
+
{ text: ':woozy_face:', unicode: '🥴' },
|
|
59
|
+
{ text: ':dizzy_face:', unicode: '😵' },
|
|
60
|
+
{ text: ':face_with_spiral_eyes:', unicode: '😵💫' },
|
|
61
|
+
{ text: ':exploding_head:', unicode: '🤯' },
|
|
62
|
+
{ text: ':cowboy_hat_face:', unicode: '🤠' },
|
|
63
|
+
{ text: ':partying_face:', unicode: '🥳' },
|
|
64
|
+
{ text: ':disguised_face:', unicode: '🥸' },
|
|
65
|
+
{ text: ':sunglasses:', unicode: '😎' },
|
|
66
|
+
{ text: ':nerd_face:', unicode: '🤓' },
|
|
67
|
+
{ text: ':monocle_face:', unicode: '🧐' },
|
|
68
|
+
{ text: ':confused:', unicode: '😕' },
|
|
69
|
+
{ text: ':worried:', unicode: '😟' },
|
|
70
|
+
{ text: ':slightly_frowning_face:', unicode: '🙁' },
|
|
71
|
+
{ text: ':frowning_face:', unicode: '☹️' },
|
|
72
|
+
{ text: ':open_mouth:', unicode: '😮' },
|
|
73
|
+
{ text: ':hushed:', unicode: '😯' },
|
|
74
|
+
{ text: ':astonished:', unicode: '😲' },
|
|
75
|
+
{ text: ':flushed:', unicode: '😳' },
|
|
76
|
+
{ text: ':pleading_face:', unicode: '🥺' },
|
|
77
|
+
{ text: ':frowning:', unicode: '😦' },
|
|
78
|
+
{ text: ':anguished:', unicode: '😧' },
|
|
79
|
+
{ text: ':fearful:', unicode: '😨' },
|
|
80
|
+
{ text: ':cold_sweat:', unicode: '😰' },
|
|
81
|
+
{ text: ':disappointed_relieved:', unicode: '😥' },
|
|
82
|
+
{ text: ':cry:', unicode: '😢' },
|
|
83
|
+
{ text: ':sob:', unicode: '😭' },
|
|
84
|
+
{ text: ':scream:', unicode: '😱' },
|
|
85
|
+
{ text: ':confounded:', unicode: '😖' },
|
|
86
|
+
{ text: ':persevere:', unicode: '😣' },
|
|
87
|
+
{ text: ':disappointed:', unicode: '😞' },
|
|
88
|
+
{ text: ':sweat:', unicode: '😓' },
|
|
89
|
+
{ text: ':weary:', unicode: '😩' },
|
|
90
|
+
{ text: ':tired_face:', unicode: '😫' },
|
|
91
|
+
{ text: ':yawning_face:', unicode: '🥱' },
|
|
92
|
+
{ text: ':triumph:', unicode: '😤' },
|
|
93
|
+
{ text: ':rage:', unicode: '😡' },
|
|
94
|
+
{ text: ':angry:', unicode: '😠' },
|
|
95
|
+
{ text: ':symbols_over_mouth:', unicode: '🤬' },
|
|
96
|
+
{ text: ':smiling_imp:', unicode: '😈' },
|
|
97
|
+
{ text: ':imp:', unicode: '👿' },
|
|
98
|
+
{ text: ':skull:', unicode: '💀' },
|
|
99
|
+
{ text: ':skull_and_crossbones:', unicode: '☠️' },
|
|
100
|
+
{ text: ':poop:', unicode: '💩' },
|
|
101
|
+
{ text: ':clown_face:', unicode: '🤡' },
|
|
102
|
+
{ text: ':japanese_ogre:', unicode: '👹' },
|
|
103
|
+
{ text: ':japanese_goblin:', unicode: '👺' },
|
|
104
|
+
{ text: ':ghost:', unicode: '👻' },
|
|
105
|
+
{ text: ':alien:', unicode: '👽' },
|
|
106
|
+
{ text: ':space_invader:', unicode: '👾' },
|
|
107
|
+
{ text: ':robot:', unicode: '🤖' },
|
|
108
|
+
{ text: ':smiley_cat:', unicode: '😺' },
|
|
109
|
+
{ text: ':smile_cat:', unicode: '😸' },
|
|
110
|
+
{ text: ':joy_cat:', unicode: '😹' },
|
|
111
|
+
{ text: ':heart_eyes_cat:', unicode: '😻' },
|
|
112
|
+
{ text: ':smirk_cat:', unicode: '😼' },
|
|
113
|
+
{ text: ':kissing_cat:', unicode: '😽' },
|
|
114
|
+
{ text: ':scream_cat:', unicode: '🙀' },
|
|
115
|
+
{ text: ':crying_cat_face:', unicode: '😿' },
|
|
116
|
+
{ text: ':pouting_cat:', unicode: '😾' },
|
|
117
|
+
{ text: ':heart:', unicode: '❤️' },
|
|
118
|
+
{ text: ':orange_heart:', unicode: '🧡' },
|
|
119
|
+
{ text: ':yellow_heart:', unicode: '💛' },
|
|
120
|
+
{ text: ':green_heart:', unicode: '💚' },
|
|
121
|
+
{ text: ':blue_heart:', unicode: '💙' },
|
|
122
|
+
{ text: ':purple_heart:', unicode: '💜' },
|
|
123
|
+
{ text: ':brown_heart:', unicode: '🤎' },
|
|
124
|
+
{ text: ':black_heart:', unicode: '🖤' },
|
|
125
|
+
{ text: ':white_heart:', unicode: '🤍' },
|
|
126
|
+
{ text: ':broken_heart:', unicode: '💔' },
|
|
127
|
+
{ text: ':heart_exclamation:', unicode: '❣️' },
|
|
128
|
+
{ text: ':two_hearts:', unicode: '💕' },
|
|
129
|
+
{ text: ':revolving_hearts:', unicode: '💞' },
|
|
130
|
+
{ text: ':heartbeat:', unicode: '💓' },
|
|
131
|
+
{ text: ':heartpulse:', unicode: '💗' },
|
|
132
|
+
{ text: ':sparkling_heart:', unicode: '💖' },
|
|
133
|
+
{ text: ':cupid:', unicode: '💘' },
|
|
134
|
+
{ text: ':gift_heart:', unicode: '💝' },
|
|
135
|
+
{ text: ':kiss:', unicode: '💋' },
|
|
136
|
+
{ text: ':hundred:', unicode: '💯' },
|
|
137
|
+
{ text: ':anger:', unicode: '💢' },
|
|
138
|
+
{ text: ':boom:', unicode: '💥' },
|
|
139
|
+
{ text: ':dizzy:', unicode: '💫' },
|
|
140
|
+
{ text: ':sweat_drops:', unicode: '💦' },
|
|
141
|
+
{ text: ':dash:', unicode: '💨' },
|
|
142
|
+
{ text: ':hole:', unicode: '🕳️' },
|
|
143
|
+
{ text: ':bomb:', unicode: '💣' },
|
|
144
|
+
{ text: ':speech_balloon:', unicode: '💬' },
|
|
145
|
+
{ text: ':eye_speech_bubble:', unicode: '👁️🗨️' },
|
|
146
|
+
{ text: ':left_speech_bubble:', unicode: '🗨️' },
|
|
147
|
+
{ text: ':right_anger_bubble:', unicode: '🗯️' },
|
|
148
|
+
{ text: ':thought_balloon:', unicode: '💭' },
|
|
149
|
+
{ text: ':zzz:', unicode: '💤' }
|
|
150
|
+
];
|
|
151
|
+
const people = [
|
|
152
|
+
{ text: ':wave:', unicode: '👋' },
|
|
153
|
+
{ text: ':raised_back_of_hand:', unicode: '🤚' },
|
|
154
|
+
{ text: ':raised_hand_with_fingers_splayed:', unicode: '🖐️' },
|
|
155
|
+
{ text: ':hand:', unicode: '✋' },
|
|
156
|
+
{ text: ':vulcan_salute:', unicode: '🖖' },
|
|
157
|
+
{ text: ':ok_hand:', unicode: '👌' },
|
|
158
|
+
{ text: ':pinch:', unicode: '🤌' },
|
|
159
|
+
{ text: ':pinched_fingers:', unicode: '🤏' },
|
|
160
|
+
{ text: ':victory_hand:', unicode: '✌️' },
|
|
161
|
+
{ text: ':crossed_fingers:', unicode: '🤞' },
|
|
162
|
+
{ text: ':love_you_gesture:', unicode: '🤟' },
|
|
163
|
+
{ text: ':metal:', unicode: '🤘' },
|
|
164
|
+
{ text: ':call_me_hand:', unicode: '🤙' },
|
|
165
|
+
{ text: ':point_left:', unicode: '👈' },
|
|
166
|
+
{ text: ':point_right:', unicode: '👉' },
|
|
167
|
+
{ text: ':point_up_2:', unicode: '👆' },
|
|
168
|
+
{ text: ':middle_finger:', unicode: '🖕' },
|
|
169
|
+
{ text: ':point_down:', unicode: '👇' },
|
|
170
|
+
{ text: ':point_up:', unicode: '☝️' },
|
|
171
|
+
{ text: ':thumbsup:', unicode: '👍' },
|
|
172
|
+
{ text: ':thumbsdown:', unicode: '👎' },
|
|
173
|
+
{ text: ':raised_fist:', unicode: '✊' },
|
|
174
|
+
{ text: ':fist_oncoming:', unicode: '👊' },
|
|
175
|
+
{ text: ':fist_left:', unicode: '🤛' },
|
|
176
|
+
{ text: ':fist_right:', unicode: '🤜' },
|
|
177
|
+
{ text: ':clap:', unicode: '👏' },
|
|
178
|
+
{ text: ':raised_hands:', unicode: '🙌' },
|
|
179
|
+
{ text: ':open_hands:', unicode: '👐' },
|
|
180
|
+
{ text: ':palms_up_together:', unicode: '🤲' },
|
|
181
|
+
{ text: ':handshake:', unicode: '🤝' },
|
|
182
|
+
{ text: ':pray:', unicode: '🙏' },
|
|
183
|
+
{ text: ':writing_hand:', unicode: '✍️' },
|
|
184
|
+
{ text: ':nail_care:', unicode: '💅' },
|
|
185
|
+
{ text: ':selfie:', unicode: '🤳' },
|
|
186
|
+
{ text: ':muscle:', unicode: '💪' },
|
|
187
|
+
{ text: ':mechanical_arm:', unicode: '🦾' },
|
|
188
|
+
{ text: ':mechanical_leg:', unicode: '🦿' },
|
|
189
|
+
{ text: ':leg:', unicode: '🦵' },
|
|
190
|
+
{ text: ':foot:', unicode: '🦶' },
|
|
191
|
+
{ text: ':ear:', unicode: '👂' },
|
|
192
|
+
{ text: ':ear_with_hearing_aid:', unicode: '🦻' },
|
|
193
|
+
{ text: ':nose:', unicode: '👃' },
|
|
194
|
+
{ text: ':brain:', unicode: '🧠' },
|
|
195
|
+
{ text: ':anatomical_heart:', unicode: '🫀' },
|
|
196
|
+
{ text: ':lungs:', unicode: '🫁' },
|
|
197
|
+
{ text: ':tooth:', unicode: '🦷' },
|
|
198
|
+
{ text: ':bone:', unicode: '🦴' },
|
|
199
|
+
{ text: ':eyes:', unicode: '👀' },
|
|
200
|
+
{ text: ':eye:', unicode: '👁️' },
|
|
201
|
+
{ text: ':tongue:', unicode: '👅' },
|
|
202
|
+
{ text: ':lips:', unicode: '👄' },
|
|
203
|
+
{ text: ':baby:', unicode: '👶' },
|
|
204
|
+
{ text: ':child:', unicode: '🧒' },
|
|
205
|
+
{ text: ':boy:', unicode: '👦' },
|
|
206
|
+
{ text: ':girl:', unicode: '👧' },
|
|
207
|
+
{ text: ':adult:', unicode: '🧑' },
|
|
208
|
+
{ text: ':blond_haired_person:', unicode: '👱' },
|
|
209
|
+
{ text: ':man:', unicode: '👨' },
|
|
210
|
+
{ text: ':bearded_person:', unicode: '🧔' },
|
|
211
|
+
{ text: ':red_haired_man:', unicode: '👨🦰' },
|
|
212
|
+
{ text: ':curly_haired_man:', unicode: '👨🦱' },
|
|
213
|
+
{ text: ':white_haired_man:', unicode: '👨🦳' },
|
|
214
|
+
{ text: ':bald_man:', unicode: '👨🦲' },
|
|
215
|
+
{ text: ':woman:', unicode: '👩' },
|
|
216
|
+
{ text: ':red_haired_woman:', unicode: '👩🦰' },
|
|
217
|
+
{ text: ':person_red_hair:', unicode: '🧑🦰' },
|
|
218
|
+
{ text: ':curly_haired_woman:', unicode: '👩🦱' },
|
|
219
|
+
{ text: ':person_curly_hair:', unicode: '🧑🦱' },
|
|
220
|
+
{ text: ':white_haired_woman:', unicode: '👩🦳' },
|
|
221
|
+
{ text: ':person_white_hair:', unicode: '🧑🦳' },
|
|
222
|
+
{ text: ':bald_woman:', unicode: '👩🦲' },
|
|
223
|
+
{ text: ':person_bald:', unicode: '🧑🦲' },
|
|
224
|
+
{ text: ':blond_haired_woman:', unicode: '👱♀️' },
|
|
225
|
+
{ text: ':blond_haired_man:', unicode: '👱♂️' },
|
|
226
|
+
{ text: ':older_adult:', unicode: '🧓' },
|
|
227
|
+
{ text: ':older_man:', unicode: '👴' },
|
|
228
|
+
{ text: ':older_woman:', unicode: '👵' },
|
|
229
|
+
{ text: ':person_frowning:', unicode: '🙍' },
|
|
230
|
+
{ text: ':man_frowning:', unicode: '🙍♂️' },
|
|
231
|
+
{ text: ':woman_frowning:', unicode: '🙍♀️' },
|
|
232
|
+
{ text: ':person_pouting:', unicode: '🙎' },
|
|
233
|
+
{ text: ':man_pouting:', unicode: '🙎♂️' },
|
|
234
|
+
{ text: ':woman_pouting:', unicode: '🙎♀️' },
|
|
235
|
+
{ text: ':no_good:', unicode: '🙅' },
|
|
236
|
+
{ text: ':man_gesturing_no:', unicode: '🙅♂️' },
|
|
237
|
+
{ text: ':woman_gesturing_no:', unicode: '🙅♀️' },
|
|
238
|
+
{ text: ':ok_person:', unicode: '🙆' },
|
|
239
|
+
{ text: ':man_gesturing_ok:', unicode: '🙆♂️' },
|
|
240
|
+
{ text: ':woman_gesturing_ok:', unicode: '🙆♀️' },
|
|
241
|
+
{ text: ':information_desk_person:', unicode: '💁' },
|
|
242
|
+
{ text: ':man_tipping_hand:', unicode: '💁♂️' },
|
|
243
|
+
{ text: ':woman_tipping_hand:', unicode: '💁♀️' },
|
|
244
|
+
{ text: ':raising_hand:', unicode: '🙋' },
|
|
245
|
+
{ text: ':man_raising_hand:', unicode: '🙋♂️' },
|
|
246
|
+
{ text: ':woman_raising_hand:', unicode: '🙋♀️' },
|
|
247
|
+
{ text: ':deaf_person:', unicode: '🧏' },
|
|
248
|
+
{ text: ':deaf_man:', unicode: '🧏♂️' },
|
|
249
|
+
{ text: ':deaf_woman:', unicode: '🧏♀️' },
|
|
250
|
+
{ text: ':bow:', unicode: '🙇' },
|
|
251
|
+
{ text: ':man_bowing:', unicode: '🙇♂️' },
|
|
252
|
+
{ text: ':woman_bowing:', unicode: '🙇♀️' },
|
|
253
|
+
{ text: ':person_facepalming:', unicode: '🤦' },
|
|
254
|
+
{ text: ':man_facepalming:', unicode: '🤦♂️' },
|
|
255
|
+
{ text: ':woman_facepalming:', unicode: '🤦♀️' },
|
|
256
|
+
{ text: ':person_shrugging:', unicode: '🤷' },
|
|
257
|
+
{ text: ':man_shrugging:', unicode: '🤷♂️' },
|
|
258
|
+
{ text: ':woman_shrugging:', unicode: '🤷♀️' },
|
|
259
|
+
{ text: ':health_worker:', unicode: '🧑⚕️' },
|
|
260
|
+
{ text: ':man_health_worker:', unicode: '👨⚕️' },
|
|
261
|
+
{ text: ':woman_health_worker:', unicode: '👩⚕️' },
|
|
262
|
+
{ text: ':student:', unicode: '🧑🎓' },
|
|
263
|
+
{ text: ':man_student:', unicode: '👨🎓' },
|
|
264
|
+
{ text: ':woman_student:', unicode: '👩🎓' },
|
|
265
|
+
{ text: ':teacher:', unicode: '🧑🏫' },
|
|
266
|
+
{ text: ':man_teacher:', unicode: '👨🏫' },
|
|
267
|
+
{ text: ':woman_teacher:', unicode: '👩🏫' },
|
|
268
|
+
{ text: ':judge:', unicode: '🧑⚖️' },
|
|
269
|
+
{ text: ':man_judge:', unicode: '👨⚖️' },
|
|
270
|
+
{ text: ':woman_judge:', unicode: '👩⚖️' },
|
|
271
|
+
{ text: ':farmer:', unicode: '🧑🌾' },
|
|
272
|
+
{ text: ':man_farmer:', unicode: '👨🌾' },
|
|
273
|
+
{ text: ':woman_farmer:', unicode: '👩🌾' },
|
|
274
|
+
{ text: ':cook:', unicode: '🧑🍳' },
|
|
275
|
+
{ text: ':man_cook:', unicode: '👨🍳' },
|
|
276
|
+
{ text: ':woman_cook:', unicode: '👩🍳' },
|
|
277
|
+
{ text: ':mechanic:', unicode: '🧑🔧' },
|
|
278
|
+
{ text: ':man_mechanic:', unicode: '👨🔧' },
|
|
279
|
+
{ text: ':woman_mechanic:', unicode: '👩🔧' },
|
|
280
|
+
{ text: ':factory_worker:', unicode: '🧑🏭' },
|
|
281
|
+
{ text: ':man_factory_worker:', unicode: '👨🏭' },
|
|
282
|
+
{ text: ':woman_factory_worker:', unicode: '👩🏭' },
|
|
283
|
+
{ text: ':office_worker:', unicode: '🧑💼' },
|
|
284
|
+
{ text: ':man_office_worker:', unicode: '👨💼' },
|
|
285
|
+
{ text: ':woman_office_worker:', unicode: '👩💼' },
|
|
286
|
+
{ text: ':scientist:', unicode: '🧑🔬' },
|
|
287
|
+
{ text: ':man_scientist:', unicode: '👨🔬' },
|
|
288
|
+
{ text: ':woman_scientist:', unicode: '👩🔬' },
|
|
289
|
+
{ text: ':technologist:', unicode: '🧑💻' },
|
|
290
|
+
{ text: ':man_technologist:', unicode: '👨💻' },
|
|
291
|
+
{ text: ':woman_technologist:', unicode: '👩💻' },
|
|
292
|
+
{ text: ':singer:', unicode: '🧑🎤' },
|
|
293
|
+
{ text: ':man_singer:', unicode: '👨🎤' },
|
|
294
|
+
{ text: ':woman_singer:', unicode: '👩🎤' },
|
|
295
|
+
{ text: ':artist:', unicode: '🧑🎨' },
|
|
296
|
+
{ text: ':man_artist:', unicode: '👨🎨' },
|
|
297
|
+
{ text: ':woman_artist:', unicode: '👩🎨' },
|
|
298
|
+
{ text: ':pilot:', unicode: '🧑✈️' },
|
|
299
|
+
{ text: ':man_pilot:', unicode: '👨✈️' },
|
|
300
|
+
{ text: ':woman_pilot:', unicode: '👩✈️' },
|
|
301
|
+
{ text: ':astronaut:', unicode: '🧑🚀' },
|
|
302
|
+
{ text: ':man_astronaut:', unicode: '👨🚀' },
|
|
303
|
+
{ text: ':woman_astronaut:', unicode: '👩🚀' },
|
|
304
|
+
{ text: ':firefighter:', unicode: '🧑🚒' },
|
|
305
|
+
{ text: ':man_firefighter:', unicode: '👨🚒' },
|
|
306
|
+
{ text: ':woman_firefighter:', unicode: '👩🚒' },
|
|
307
|
+
{ text: ':police_officer:', unicode: '👮' },
|
|
308
|
+
{ text: ':man_police_officer:', unicode: '👮♂️' },
|
|
309
|
+
{ text: ':woman_police_officer:', unicode: '👮♀️' },
|
|
310
|
+
{ text: ':detective:', unicode: '🕵️' },
|
|
311
|
+
{ text: ':man_detective:', unicode: '🕵️♂️' },
|
|
312
|
+
{ text: ':woman_detective:', unicode: '🕵️♀️' },
|
|
313
|
+
{ text: ':guard:', unicode: '💂' },
|
|
314
|
+
{ text: ':man_guard:', unicode: '💂♂️' },
|
|
315
|
+
{ text: ':woman_guard:', unicode: '💂♀️' },
|
|
316
|
+
{ text: ':ninja:', unicode: '🥷' },
|
|
317
|
+
{ text: ':construction_worker:', unicode: '👷' },
|
|
318
|
+
{ text: ':man_construction_worker:', unicode: '👷♂️' },
|
|
319
|
+
{ text: ':woman_construction_worker:', unicode: '👷♀️' },
|
|
320
|
+
{ text: ':prince:', unicode: '🤴' },
|
|
321
|
+
{ text: ':princess:', unicode: '👸' },
|
|
322
|
+
{ text: ':person_with_turban:', unicode: '👳' },
|
|
323
|
+
{ text: ':man_with_turban:', unicode: '👳♂️' },
|
|
324
|
+
{ text: ':woman_with_turban:', unicode: '👳♀️' },
|
|
325
|
+
{ text: ':man_with_gua_pi_mao:', unicode: '👲' },
|
|
326
|
+
{ text: ':woman_with_headscarf:', unicode: '🧕' },
|
|
327
|
+
{ text: ':person_in_tuxedo:', unicode: '🤵' },
|
|
328
|
+
{ text: ':man_in_tuxedo:', unicode: '🤵♂️' },
|
|
329
|
+
{ text: ':woman_in_tuxedo:', unicode: '🤵♀️' },
|
|
330
|
+
{ text: ':person_with_veil:', unicode: '👰' },
|
|
331
|
+
{ text: ':man_with_veil:', unicode: '👰♂️' },
|
|
332
|
+
{ text: ':woman_with_veil:', unicode: '👰♀️' },
|
|
333
|
+
{ text: ':pregnant_woman:', unicode: '🤱' },
|
|
334
|
+
{ text: ':breast_feeding:', unicode: '🤱' },
|
|
335
|
+
{ text: ':woman_feeding_baby:', unicode: '👩🍼' },
|
|
336
|
+
{ text: ':man_feeding_baby:', unicode: '👨🍼' },
|
|
337
|
+
{ text: ':person_feeding_baby:', unicode: '🧑🍼' },
|
|
338
|
+
{ text: ':angel:', unicode: '👼' },
|
|
339
|
+
{ text: ':santa:', unicode: '🎅' },
|
|
340
|
+
{ text: ':mrs_claus:', unicode: '🤶' },
|
|
341
|
+
{ text: ':mx_claus:', unicode: '🧑🎄' },
|
|
342
|
+
{ text: ':superhero:', unicode: '🦸' },
|
|
343
|
+
{ text: ':man_superhero:', unicode: '🦸♂️' },
|
|
344
|
+
{ text: ':woman_superhero:', unicode: '🦸♀️' },
|
|
345
|
+
{ text: ':supervillain:', unicode: '🦹' },
|
|
346
|
+
{ text: ':man_supervillain:', unicode: '🦹♂️' },
|
|
347
|
+
{ text: ':woman_supervillain:', unicode: '🦹♀️' },
|
|
348
|
+
{ text: ':mage:', unicode: '🧙' },
|
|
349
|
+
{ text: ':man_mage:', unicode: '🧙♂️' },
|
|
350
|
+
{ text: ':woman_mage:', unicode: '🧙♀️' },
|
|
351
|
+
{ text: ':fairy:', unicode: '🧚' },
|
|
352
|
+
{ text: ':man_fairy:', unicode: '🧚♂️' },
|
|
353
|
+
{ text: ':woman_fairy:', unicode: '🧚♀️' },
|
|
354
|
+
{ text: ':vampire:', unicode: '🧛' },
|
|
355
|
+
{ text: ':man_vampire:', unicode: '🧛♂️' },
|
|
356
|
+
{ text: ':woman_vampire:', unicode: '🧛♀️' },
|
|
357
|
+
{ text: ':merperson:', unicode: '🧜' },
|
|
358
|
+
{ text: ':merman:', unicode: '🧜♂️' },
|
|
359
|
+
{ text: ':mermaid:', unicode: '🧜♀️' },
|
|
360
|
+
{ text: ':elf:', unicode: '🧝' },
|
|
361
|
+
{ text: ':man_elf:', unicode: '🧝♂️' },
|
|
362
|
+
{ text: ':woman_elf:', unicode: '🧝♀️' },
|
|
363
|
+
{ text: ':genie:', unicode: '🧞' },
|
|
364
|
+
{ text: ':man_genie:', unicode: '🧞♂️' },
|
|
365
|
+
{ text: ':woman_genie:', unicode: '🧞♀️' },
|
|
366
|
+
{ text: ':zombie:', unicode: '🧟' },
|
|
367
|
+
{ text: ':man_zombie:', unicode: '🧟♂️' },
|
|
368
|
+
{ text: ':woman_zombie:', unicode: '🧟♀️' },
|
|
369
|
+
{ text: ':massage:', unicode: '💆' },
|
|
370
|
+
{ text: ':man_getting_massage:', unicode: '💆♂️' },
|
|
371
|
+
{ text: ':woman_getting_massage:', unicode: '💆♀️' },
|
|
372
|
+
{ text: ':haircut:', unicode: '💇' },
|
|
373
|
+
{ text: ':man_getting_haircut:', unicode: '💇♂️' },
|
|
374
|
+
{ text: ':woman_getting_haircut:', unicode: '💇♀️' },
|
|
375
|
+
{ text: ':walking:', unicode: '🚶' },
|
|
376
|
+
{ text: ':man_walking:', unicode: '🚶♂️' },
|
|
377
|
+
{ text: ':woman_walking:', unicode: '🚶♀️' },
|
|
378
|
+
{ text: ':standing_person:', unicode: '🧍' },
|
|
379
|
+
{ text: ':man_standing:', unicode: '🧍♂️' },
|
|
380
|
+
{ text: ':woman_standing:', unicode: '🧍♀️' },
|
|
381
|
+
{ text: ':kneeling_person:', unicode: '🧎' },
|
|
382
|
+
{ text: ':man_kneeling:', unicode: '🧎♂️' },
|
|
383
|
+
{ text: ':woman_kneeling:', unicode: '🧎♀️' },
|
|
384
|
+
{ text: ':person_with_probing_cane:', unicode: '🧑🦯' },
|
|
385
|
+
{ text: ':man_with_probing_cane:', unicode: '👨🦯' },
|
|
386
|
+
{ text: ':woman_with_probing_cane:', unicode: '👩🦯' },
|
|
387
|
+
{ text: ':person_in_motorized_wheelchair:', unicode: '🧑🦼' },
|
|
388
|
+
{ text: ':man_in_motorized_wheelchair:', unicode: '👨🦼' },
|
|
389
|
+
{ text: ':woman_in_motorized_wheelchair:', unicode: '👩🦼' },
|
|
390
|
+
{ text: ':person_in_manual_wheelchair:', unicode: '🧑🦽' },
|
|
391
|
+
{ text: ':man_in_manual_wheelchair:', unicode: '👨🦽' },
|
|
392
|
+
{ text: ':woman_in_manual_wheelchair:', unicode: '👩🦽' },
|
|
393
|
+
{ text: ':runner:', unicode: '🏃' },
|
|
394
|
+
{ text: ':man_running:', unicode: '🏃♂️' },
|
|
395
|
+
{ text: ':woman_running:', unicode: '🏃♀️' },
|
|
396
|
+
{ text: ':dancer:', unicode: '💃' },
|
|
397
|
+
{ text: ':man_dancing:', unicode: '🕺' },
|
|
398
|
+
{ text: ':people_with_bunny_ears:', unicode: '👯' },
|
|
399
|
+
{ text: ':men_with_bunny_ears:', unicode: '👯♂️' },
|
|
400
|
+
{ text: ':women_with_bunny_ears:', unicode: '👯♀️' },
|
|
401
|
+
{ text: ':person_in_steamy_room:', unicode: '🧖' },
|
|
402
|
+
{ text: ':man_in_steamy_room:', unicode: '🧖♂️' },
|
|
403
|
+
{ text: ':woman_in_steamy_room:', unicode: '🧖♀️' },
|
|
404
|
+
{ text: ':person_climbing:', unicode: '🧗' },
|
|
405
|
+
{ text: ':man_climbing:', unicode: '🧗♂️' },
|
|
406
|
+
{ text: ':woman_climbing:', unicode: '🧗♀️' },
|
|
407
|
+
{ text: ':person_fencing:', unicode: '🤺' },
|
|
408
|
+
{ text: ':horse_racing:', unicode: '🏇' },
|
|
409
|
+
{ text: ':skier:', unicode: '⛷️' },
|
|
410
|
+
{ text: ':snowboarder:', unicode: '🏂' },
|
|
411
|
+
{ text: ':person_golfing:', unicode: '🏌️' },
|
|
412
|
+
{ text: ':man_golfing:', unicode: '🏌️♂️' },
|
|
413
|
+
{ text: ':woman_golfing:', unicode: '🏌️♀️' },
|
|
414
|
+
{ text: ':surfer:', unicode: '🏄' },
|
|
415
|
+
{ text: ':man_surfing:', unicode: '🏄♂️' },
|
|
416
|
+
{ text: ':woman_surfing:', unicode: '🏄♀️' },
|
|
417
|
+
{ text: ':person_rowing_boat:', unicode: '🚣' },
|
|
418
|
+
{ text: ':man_rowing_boat:', unicode: '🚣♂️' },
|
|
419
|
+
{ text: ':woman_rowing_boat:', unicode: '🚣♀️' },
|
|
420
|
+
{ text: ':swimmer:', unicode: '🏊' },
|
|
421
|
+
{ text: ':man_swimming:', unicode: '🏊♂️' },
|
|
422
|
+
{ text: ':woman_swimming:', unicode: '🏊♀️' },
|
|
423
|
+
{ text: ':person_bouncing_ball:', unicode: '⛹️' },
|
|
424
|
+
{ text: ':man_bouncing_ball:', unicode: '⛹️♂️' },
|
|
425
|
+
{ text: ':woman_bouncing_ball:', unicode: '⛹️♀️' },
|
|
426
|
+
{ text: ':person_lifting_weights:', unicode: '🏋️' },
|
|
427
|
+
{ text: ':man_lifting_weights:', unicode: '🏋️♂️' },
|
|
428
|
+
{ text: ':woman_lifting_weights:', unicode: '🏋️♀️' },
|
|
429
|
+
{ text: ':person_biking:', unicode: '🚴' },
|
|
430
|
+
{ text: ':man_biking:', unicode: '🚴♂️' },
|
|
431
|
+
{ text: ':woman_biking:', unicode: '🚴♀️' },
|
|
432
|
+
{ text: ':person_mountain_biking:', unicode: '🚵' },
|
|
433
|
+
{ text: ':man_mountain_biking:', unicode: '🚵♂️' },
|
|
434
|
+
{ text: ':woman_mountain_biking:', unicode: '🚵♀️' },
|
|
435
|
+
{ text: ':person_cartwheeling:', unicode: '🤸' },
|
|
436
|
+
{ text: ':man_cartwheeling:', unicode: '🤸♂️' },
|
|
437
|
+
{ text: ':woman_cartwheeling:', unicode: '🤸♀️' },
|
|
438
|
+
{ text: ':wrestlers:', unicode: '🤼' },
|
|
439
|
+
{ text: ':man_wrestling:', unicode: '🤼♂️' },
|
|
440
|
+
{ text: ':woman_wrestling:', unicode: '🤼♀️' },
|
|
441
|
+
{ text: ':person_playing_water_polo:', unicode: '🤽' },
|
|
442
|
+
{ text: ':man_playing_water_polo:', unicode: '🤽♂️' },
|
|
443
|
+
{ text: ':woman_playing_water_polo:', unicode: '🤽♀️' },
|
|
444
|
+
{ text: ':person_playing_handball:', unicode: '🤾' },
|
|
445
|
+
{ text: ':man_playing_handball:', unicode: '🤾♂️' },
|
|
446
|
+
{ text: ':woman_playing_handball:', unicode: '🤾♀️' },
|
|
447
|
+
{ text: ':person_juggling:', unicode: '🤹' },
|
|
448
|
+
{ text: ':man_juggling:', unicode: '🤹♂️' },
|
|
449
|
+
{ text: ':woman_juggling:', unicode: '🤹♀️' },
|
|
450
|
+
{ text: ':person_in_lotus_position:', unicode: '🧘' },
|
|
451
|
+
{ text: ':man_in_lotus_position:', unicode: '🧘♂️' },
|
|
452
|
+
{ text: ':woman_in_lotus_position:', unicode: '🧘♀️' },
|
|
453
|
+
{ text: ':bath:', unicode: '🛀' },
|
|
454
|
+
{ text: ':sleeping_bed:', unicode: '🛌' },
|
|
455
|
+
{ text: ':people_holding_hands:', unicode: '🧑🤝🧑' },
|
|
456
|
+
{ text: ':two_women_holding_hands:', unicode: '👭' },
|
|
457
|
+
{ text: ':woman_and_man_holding_hands:', unicode: '👫' },
|
|
458
|
+
{ text: ':two_men_holding_hands:', unicode: '👬' },
|
|
459
|
+
{ text: ':kiss_with_heart:', unicode: '💏' },
|
|
460
|
+
{ text: ':kiss_woman_man:', unicode: '👩❤️💋👨' },
|
|
461
|
+
{ text: ':kiss_man_man:', unicode: '👨❤️💋👨' },
|
|
462
|
+
{ text: ':kiss_woman_woman:', unicode: '👩❤️💋👩' },
|
|
463
|
+
{ text: ':couple_with_heart:', unicode: '💑' },
|
|
464
|
+
{ text: ':couple_with_heart_woman_man:', unicode: '👩❤️👨' },
|
|
465
|
+
{ text: ':couple_with_heart_man_man:', unicode: '👨❤️👨' },
|
|
466
|
+
{ text: ':couple_with_heart_woman_woman:', unicode: '👩❤️👩' },
|
|
467
|
+
{ text: ':family:', unicode: '👪' },
|
|
468
|
+
{ text: ':family_man_woman_boy:', unicode: '👨👩👦' },
|
|
469
|
+
{ text: ':family_man_woman_girl:', unicode: '👨👩👧' },
|
|
470
|
+
{ text: ':family_man_woman_girl_boy:', unicode: '👨👩👧👦' },
|
|
471
|
+
{ text: ':family_man_woman_boy_boy:', unicode: '👨👩👦👦' },
|
|
472
|
+
{ text: ':family_man_woman_girl_girl:', unicode: '👨👩👧👧' },
|
|
473
|
+
{ text: ':family_man_man_boy:', unicode: '👨👨👦' },
|
|
474
|
+
{ text: ':family_man_man_girl:', unicode: '👨👨👧' },
|
|
475
|
+
{ text: ':family_man_man_girl_boy:', unicode: '👨👨👧👦' },
|
|
476
|
+
{ text: ':family_man_man_boy_boy:', unicode: '👨👨👦👦' },
|
|
477
|
+
{ text: ':family_man_man_girl_girl:', unicode: '👨👨👧👧' },
|
|
478
|
+
{ text: ':family_woman_woman_boy:', unicode: '👩👩👦' },
|
|
479
|
+
{ text: ':family_woman_woman_girl:', unicode: '👩👩👧' },
|
|
480
|
+
{ text: ':family_woman_woman_girl_boy:', unicode: '👩👩👧👦' },
|
|
481
|
+
{ text: ':family_woman_woman_boy_boy:', unicode: '👩👩👦👦' },
|
|
482
|
+
{ text: ':family_woman_woman_girl_girl:', unicode: '👩👩👧👧' },
|
|
483
|
+
{ text: ':family_man_boy:', unicode: '👨👦' },
|
|
484
|
+
{ text: ':family_man_boy_boy:', unicode: '👨👦👦' },
|
|
485
|
+
{ text: ':family_man_girl:', unicode: '👨👧' },
|
|
486
|
+
{ text: ':family_man_girl_boy:', unicode: '👨👧👦' },
|
|
487
|
+
{ text: ':family_man_girl_girl:', unicode: '👨👧👧' },
|
|
488
|
+
{ text: ':family_woman_boy:', unicode: '👩👦' },
|
|
489
|
+
{ text: ':family_woman_boy_boy:', unicode: '👩👦👦' },
|
|
490
|
+
{ text: ':family_woman_girl:', unicode: '👩👧' },
|
|
491
|
+
{ text: ':family_woman_girl_boy:', unicode: '👩👧👦' },
|
|
492
|
+
{ text: ':family_woman_girl_girl:', unicode: '👩👧👧' },
|
|
493
|
+
{ text: ':speaking_head:', unicode: '🗣️' },
|
|
494
|
+
{ text: ':bust_in_silhouette:', unicode: '👤' },
|
|
495
|
+
{ text: ':busts_in_silhouette:', unicode: '👥' },
|
|
496
|
+
{ text: ':people_hugging:', unicode: '🫂' },
|
|
497
|
+
{ text: ':footprints:', unicode: '👣' }
|
|
498
|
+
];
|
|
499
|
+
const nature = [
|
|
500
|
+
{ text: ':monkey_face:', unicode: '🐵' },
|
|
501
|
+
{ text: ':monkey:', unicode: '🐒' },
|
|
502
|
+
{ text: ':gorilla:', unicode: '🦍' },
|
|
503
|
+
{ text: ':orangutan:', unicode: '🦧' },
|
|
504
|
+
{ text: ':dog:', unicode: '🐶' },
|
|
505
|
+
{ text: ':dog2:', unicode: '🐕' },
|
|
506
|
+
{ text: ':guide_dog:', unicode: '🦮' },
|
|
507
|
+
{ text: ':service_dog:', unicode: '🐕🦺' },
|
|
508
|
+
{ text: ':poodle:', unicode: '🐩' },
|
|
509
|
+
{ text: ':wolf:', unicode: '🐺' },
|
|
510
|
+
{ text: ':fox_face:', unicode: '🦊' },
|
|
511
|
+
{ text: ':raccoon:', unicode: '🦝' },
|
|
512
|
+
{ text: ':cat:', unicode: '🐱' },
|
|
513
|
+
{ text: ':cat2:', unicode: '🐈' },
|
|
514
|
+
{ text: ':black_cat:', unicode: '🐈⬛' },
|
|
515
|
+
{ text: ':lion:', unicode: '🦁' },
|
|
516
|
+
{ text: ':tiger:', unicode: '🐯' },
|
|
517
|
+
{ text: ':tiger2:', unicode: '🐅' },
|
|
518
|
+
{ text: ':leopard:', unicode: '🐆' },
|
|
519
|
+
{ text: ':horse:', unicode: '🐴' },
|
|
520
|
+
{ text: ':racehorse:', unicode: '🐎' },
|
|
521
|
+
{ text: ':unicorn:', unicode: '🦄' },
|
|
522
|
+
{ text: ':zebra:', unicode: '🦓' },
|
|
523
|
+
{ text: ':deer:', unicode: '🦌' },
|
|
524
|
+
{ text: ':bison:', unicode: '🦬' },
|
|
525
|
+
{ text: ':cow:', unicode: '🐮' },
|
|
526
|
+
{ text: ':ox:', unicode: '🐂' },
|
|
527
|
+
{ text: ':water_buffalo:', unicode: '🐃' },
|
|
528
|
+
{ text: ':cow2:', unicode: '🐄' },
|
|
529
|
+
{ text: ':pig:', unicode: '🐷' },
|
|
530
|
+
{ text: ':pig2:', unicode: '🐖' },
|
|
531
|
+
{ text: ':boar:', unicode: '🐗' },
|
|
532
|
+
{ text: ':pig_nose:', unicode: '🐽' },
|
|
533
|
+
{ text: ':ram:', unicode: '🐏' },
|
|
534
|
+
{ text: ':sheep:', unicode: '🐑' },
|
|
535
|
+
{ text: ':goat:', unicode: '🐐' },
|
|
536
|
+
{ text: ':dromedary_camel:', unicode: '🐪' },
|
|
537
|
+
{ text: ':camel:', unicode: '🐫' },
|
|
538
|
+
{ text: ':llama:', unicode: '🦙' },
|
|
539
|
+
{ text: ':giraffe:', unicode: '🦒' },
|
|
540
|
+
{ text: ':elephant:', unicode: '🐘' },
|
|
541
|
+
{ text: ':mammoth:', unicode: '🦣' },
|
|
542
|
+
{ text: ':rhinoceros:', unicode: '🦏' },
|
|
543
|
+
{ text: ':hippopotamus:', unicode: '🦛' },
|
|
544
|
+
{ text: ':mouse:', unicode: '🐭' },
|
|
545
|
+
{ text: ':mouse2:', unicode: '🐁' },
|
|
546
|
+
{ text: ':rat:', unicode: '🐀' },
|
|
547
|
+
{ text: ':hamster:', unicode: '🐹' },
|
|
548
|
+
{ text: ':rabbit:', unicode: '🐰' },
|
|
549
|
+
{ text: ':rabbit2:', unicode: '🐇' },
|
|
550
|
+
{ text: ':chipmunk:', unicode: '🐿️' },
|
|
551
|
+
{ text: ':beaver:', unicode: '🦫' },
|
|
552
|
+
{ text: ':hedgehog:', unicode: '🦔' },
|
|
553
|
+
{ text: ':bat:', unicode: '🦇' },
|
|
554
|
+
{ text: ':bear:', unicode: '🐻' },
|
|
555
|
+
{ text: ':polar_bear:', unicode: '🐻❄️' },
|
|
556
|
+
{ text: ':koala:', unicode: '🐨' },
|
|
557
|
+
{ text: ':panda_face:', unicode: '🐼' },
|
|
558
|
+
{ text: ':sloth:', unicode: '🦥' },
|
|
559
|
+
{ text: ':otter:', unicode: '🦦' },
|
|
560
|
+
{ text: ':skunk:', unicode: '🦨' },
|
|
561
|
+
{ text: ':kangaroo:', unicode: '🦘' },
|
|
562
|
+
{ text: ':badger:', unicode: '🦡' },
|
|
563
|
+
{ text: ':feet:', unicode: '🐾' },
|
|
564
|
+
{ text: ':turkey:', unicode: '🦃' },
|
|
565
|
+
{ text: ':chicken:', unicode: '🐔' },
|
|
566
|
+
{ text: ':rooster:', unicode: '🐓' },
|
|
567
|
+
{ text: ':hatching_chick:', unicode: '🐣' },
|
|
568
|
+
{ text: ':baby_chick:', unicode: '🐤' },
|
|
569
|
+
{ text: ':hatched_chick:', unicode: '🐥' },
|
|
570
|
+
{ text: ':bird:', unicode: '🐦' },
|
|
571
|
+
{ text: ':penguin:', unicode: '🐧' },
|
|
572
|
+
{ text: ':dove:', unicode: '🕊️' },
|
|
573
|
+
{ text: ':eagle:', unicode: '🦅' },
|
|
574
|
+
{ text: ':duck:', unicode: '🦆' },
|
|
575
|
+
{ text: ':swan:', unicode: '🦢' },
|
|
576
|
+
{ text: ':owl:', unicode: '🦉' },
|
|
577
|
+
{ text: ':dodo:', unicode: '🦤' },
|
|
578
|
+
{ text: ':feather:', unicode: '🪶' },
|
|
579
|
+
{ text: ':flamingo:', unicode: '🦩' },
|
|
580
|
+
{ text: ':peacock:', unicode: '🦚' },
|
|
581
|
+
{ text: ':parrot:', unicode: '🦜' },
|
|
582
|
+
{ text: ':frog:', unicode: '🐸' },
|
|
583
|
+
{ text: ':crocodile:', unicode: '🐊' },
|
|
584
|
+
{ text: ':turtle:', unicode: '🐢' },
|
|
585
|
+
{ text: ':lizard:', unicode: '🦎' },
|
|
586
|
+
{ text: ':snake:', unicode: '🐍' },
|
|
587
|
+
{ text: ':dragon_face:', unicode: '🐲' },
|
|
588
|
+
{ text: ':dragon:', unicode: '🐉' },
|
|
589
|
+
{ text: ':sauropod:', unicode: '🦕' },
|
|
590
|
+
{ text: ':t-rex:', unicode: '🦖' },
|
|
591
|
+
{ text: ':whale:', unicode: '🐳' },
|
|
592
|
+
{ text: ':whale2:', unicode: '🐋' },
|
|
593
|
+
{ text: ':dolphin:', unicode: '🐬' },
|
|
594
|
+
{ text: ':seal:', unicode: '🦭' },
|
|
595
|
+
{ text: ':fish:', unicode: '🐟' },
|
|
596
|
+
{ text: ':tropical_fish:', unicode: '🐠' },
|
|
597
|
+
{ text: ':blowfish:', unicode: '🐡' },
|
|
598
|
+
{ text: ':shark:', unicode: '🦈' },
|
|
599
|
+
{ text: ':octopus:', unicode: '🐙' },
|
|
600
|
+
{ text: ':shell:', unicode: '🐚' },
|
|
601
|
+
{ text: ':snail:', unicode: '🐌' },
|
|
602
|
+
{ text: ':butterfly:', unicode: '🦋' },
|
|
603
|
+
{ text: ':bug:', unicode: '🐛' },
|
|
604
|
+
{ text: ':ant:', unicode: '🐜' },
|
|
605
|
+
{ text: ':bee:', unicode: '🐝' },
|
|
606
|
+
{ text: ':beetle:', unicode: '🪲' },
|
|
607
|
+
{ text: ':lady_beetle:', unicode: '🐞' },
|
|
608
|
+
{ text: ':cricket:', unicode: '🦗' },
|
|
609
|
+
{ text: ':cockroach:', unicode: '🪳' },
|
|
610
|
+
{ text: ':spider:', unicode: '🕷️' },
|
|
611
|
+
{ text: ':spider_web:', unicode: '🕸️' },
|
|
612
|
+
{ text: ':scorpion:', unicode: '🦂' },
|
|
613
|
+
{ text: ':mosquito:', unicode: '🦟' },
|
|
614
|
+
{ text: ':fly:', unicode: '🪰' },
|
|
615
|
+
{ text: ':worm:', unicode: '🪱' },
|
|
616
|
+
{ text: ':microbe:', unicode: '🦠' },
|
|
617
|
+
{ text: ':bouquet:', unicode: '💐' },
|
|
618
|
+
{ text: ':cherry_blossom:', unicode: '🌸' },
|
|
619
|
+
{ text: ':white_flower:', unicode: '💮' },
|
|
620
|
+
{ text: ':rosette:', unicode: '🏵️' },
|
|
621
|
+
{ text: ':rose:', unicode: '🌹' },
|
|
622
|
+
{ text: ':wilted_flower:', unicode: '🥀' },
|
|
623
|
+
{ text: ':hibiscus:', unicode: '🌺' },
|
|
624
|
+
{ text: ':sunflower:', unicode: '🌻' },
|
|
625
|
+
{ text: ':blossom:', unicode: '🌼' },
|
|
626
|
+
{ text: ':tulip:', unicode: '🌷' },
|
|
627
|
+
{ text: ':seedling:', unicode: '🌱' },
|
|
628
|
+
{ text: ':potted_plant:', unicode: '🪴' },
|
|
629
|
+
{ text: ':evergreen_tree:', unicode: '🌲' },
|
|
630
|
+
{ text: ':deciduous_tree:', unicode: '🌳' },
|
|
631
|
+
{ text: ':palm_tree:', unicode: '🌴' },
|
|
632
|
+
{ text: ':cactus:', unicode: '🌵' },
|
|
633
|
+
{ text: ':ear_of_rice:', unicode: '🌾' },
|
|
634
|
+
{ text: ':herb:', unicode: '🌿' },
|
|
635
|
+
{ text: ':shamrock:', unicode: '☘️' },
|
|
636
|
+
{ text: ':four_leaf_clover:', unicode: '🍀' },
|
|
637
|
+
{ text: ':maple_leaf:', unicode: '🍁' },
|
|
638
|
+
{ text: ':fallen_leaf:', unicode: '🍂' },
|
|
639
|
+
{ text: ':leaves:', unicode: '🍃' },
|
|
640
|
+
{ text: ':mushroom:', unicode: '🍄' },
|
|
641
|
+
{ text: ':chestnut:', unicode: '🌰' }
|
|
642
|
+
];
|
|
643
|
+
const food = [
|
|
644
|
+
{ text: ':grapes:', unicode: '🍇' },
|
|
645
|
+
{ text: ':melon:', unicode: '🍈' },
|
|
646
|
+
{ text: ':watermelon:', unicode: '🍉' },
|
|
647
|
+
{ text: ':tangerine:', unicode: '🍊' },
|
|
648
|
+
{ text: ':lemon:', unicode: '🍋' },
|
|
649
|
+
{ text: ':banana:', unicode: '🍌' },
|
|
650
|
+
{ text: ':pineapple:', unicode: '🍍' },
|
|
651
|
+
{ text: ':mango:', unicode: '🥭' },
|
|
652
|
+
{ text: ':apple:', unicode: '🍎' },
|
|
653
|
+
{ text: ':green_apple:', unicode: '🍏' },
|
|
654
|
+
{ text: ':pear:', unicode: '🍐' },
|
|
655
|
+
{ text: ':peach:', unicode: '🍑' },
|
|
656
|
+
{ text: ':cherries:', unicode: '🍒' },
|
|
657
|
+
{ text: ':strawberry:', unicode: '🍓' },
|
|
658
|
+
{ text: ':blueberries:', unicode: '🫐' },
|
|
659
|
+
{ text: ':kiwi_fruit:', unicode: '🥝' },
|
|
660
|
+
{ text: ':tomato:', unicode: '🍅' },
|
|
661
|
+
{ text: ':olive:', unicode: '🫒' },
|
|
662
|
+
{ text: ':coconut:', unicode: '🥥' },
|
|
663
|
+
{ text: ':avocado:', unicode: '🥑' },
|
|
664
|
+
{ text: ':eggplant:', unicode: '🍆' },
|
|
665
|
+
{ text: ':potato:', unicode: '🥔' },
|
|
666
|
+
{ text: ':carrot:', unicode: '🥕' },
|
|
667
|
+
{ text: ':corn:', unicode: '🌽' },
|
|
668
|
+
{ text: ':hot_pepper:', unicode: '🌶️' },
|
|
669
|
+
{ text: ':bell_pepper:', unicode: '🫑' },
|
|
670
|
+
{ text: ':cucumber:', unicode: '🥒' },
|
|
671
|
+
{ text: ':leafy_greens:', unicode: '🥬' },
|
|
672
|
+
{ text: ':broccoli:', unicode: '🥦' },
|
|
673
|
+
{ text: ':garlic:', unicode: '🧄' },
|
|
674
|
+
{ text: ':onion:', unicode: '🧅' },
|
|
675
|
+
{ text: ':peanuts:', unicode: '🥜' },
|
|
676
|
+
{ text: ':beans:', unicode: '🫘' },
|
|
677
|
+
{ text: ':bread:', unicode: '🍞' },
|
|
678
|
+
{ text: ':croissant:', unicode: '🥐' },
|
|
679
|
+
{ text: ':baguette_bread:', unicode: '🥖' },
|
|
680
|
+
{ text: ':flatbread:', unicode: '🫓' },
|
|
681
|
+
{ text: ':pretzel:', unicode: '🥨' },
|
|
682
|
+
{ text: ':bagel:', unicode: '🥯' },
|
|
683
|
+
{ text: ':pancakes:', unicode: '🥞' },
|
|
684
|
+
{ text: ':waffle:', unicode: '🧇' },
|
|
685
|
+
{ text: ':cheese:', unicode: '🧀' },
|
|
686
|
+
{ text: ':meat_on_bone:', unicode: '🍖' },
|
|
687
|
+
{ text: ':poultry_leg:', unicode: '🍗' },
|
|
688
|
+
{ text: ':cut_of_meat:', unicode: '🥩' },
|
|
689
|
+
{ text: ':bacon:', unicode: '🥓' },
|
|
690
|
+
{ text: ':hamburger:', unicode: '🍔' },
|
|
691
|
+
{ text: ':fries:', unicode: '🍟' },
|
|
692
|
+
{ text: ':pizza:', unicode: '🍕' },
|
|
693
|
+
{ text: ':hotdog:', unicode: '🌭' },
|
|
694
|
+
{ text: ':sandwich:', unicode: '🥪' },
|
|
695
|
+
{ text: ':taco:', unicode: '🌮' },
|
|
696
|
+
{ text: ':burrito:', unicode: '🌯' },
|
|
697
|
+
{ text: ':tamale:', unicode: '🫔' },
|
|
698
|
+
{ text: ':stuffed_flatbread:', unicode: '🥙' },
|
|
699
|
+
{ text: ':falafel:', unicode: '🧆' },
|
|
700
|
+
{ text: ':egg:', unicode: '🥚' },
|
|
701
|
+
{ text: ':fried_egg:', unicode: '🍳' },
|
|
702
|
+
{ text: ':shallow_pan_of_food:', unicode: '🥘' },
|
|
703
|
+
{ text: ':stew:', unicode: '🍲' },
|
|
704
|
+
{ text: ':fondue:', unicode: '🫕' },
|
|
705
|
+
{ text: ':bowl_with_spoon:', unicode: '🥣' },
|
|
706
|
+
{ text: ':green_salad:', unicode: '🥗' },
|
|
707
|
+
{ text: ':popcorn:', unicode: '🍿' },
|
|
708
|
+
{ text: ':butter:', unicode: '🧈' },
|
|
709
|
+
{ text: ':salt:', unicode: '🧂' },
|
|
710
|
+
{ text: ':canned_food:', unicode: '🥫' },
|
|
711
|
+
{ text: ':bento:', unicode: '🍱' },
|
|
712
|
+
{ text: ':rice_cracker:', unicode: '🍘' },
|
|
713
|
+
{ text: ':rice_ball:', unicode: '🍙' },
|
|
714
|
+
{ text: ':rice:', unicode: '🍚' },
|
|
715
|
+
{ text: ':curry:', unicode: '🍛' },
|
|
716
|
+
{ text: ':ramen:', unicode: '🍜' },
|
|
717
|
+
{ text: ':spaghetti:', unicode: '🍝' },
|
|
718
|
+
{ text: ':sweet_potato:', unicode: '🍠' },
|
|
719
|
+
{ text: ':oden:', unicode: '🍢' },
|
|
720
|
+
{ text: ':sushi:', unicode: '🍣' },
|
|
721
|
+
{ text: ':fried_shrimp:', unicode: '🍤' },
|
|
722
|
+
{ text: ':fish_cake:', unicode: '🍥' },
|
|
723
|
+
{ text: ':moon_cake:', unicode: '🥮' },
|
|
724
|
+
{ text: ':dango:', unicode: '🍡' },
|
|
725
|
+
{ text: ':dumpling:', unicode: '🥟' },
|
|
726
|
+
{ text: ':fortune_cookie:', unicode: '🥠' },
|
|
727
|
+
{ text: ':takeout_box:', unicode: '🥡' },
|
|
728
|
+
{ text: ':crab:', unicode: '🦀' },
|
|
729
|
+
{ text: ':lobster:', unicode: '🦞' },
|
|
730
|
+
{ text: ':shrimp:', unicode: '🦐' },
|
|
731
|
+
{ text: ':squid:', unicode: '🦑' },
|
|
732
|
+
{ text: ':oyster:', unicode: '🦪' },
|
|
733
|
+
{ text: ':icecream:', unicode: '🍦' },
|
|
734
|
+
{ text: ':shaved_ice:', unicode: '🍧' },
|
|
735
|
+
{ text: ':ice_cream:', unicode: '🍨' },
|
|
736
|
+
{ text: ':doughnut:', unicode: '🍩' },
|
|
737
|
+
{ text: ':cookie:', unicode: '🍪' },
|
|
738
|
+
{ text: ':birthday:', unicode: '🎂' },
|
|
739
|
+
{ text: ':cake:', unicode: '🍰' },
|
|
740
|
+
{ text: ':cupcake:', unicode: '🧁' },
|
|
741
|
+
{ text: ':pie:', unicode: '🥧' },
|
|
742
|
+
{ text: ':chocolate_bar:', unicode: '🍫' },
|
|
743
|
+
{ text: ':candy:', unicode: '🍬' },
|
|
744
|
+
{ text: ':lollipop:', unicode: '🍭' },
|
|
745
|
+
{ text: ':custard:', unicode: '🍮' },
|
|
746
|
+
{ text: ':honey_pot:', unicode: '🍯' },
|
|
747
|
+
{ text: ':baby_bottle:', unicode: '🍼' },
|
|
748
|
+
{ text: ':milk_glass:', unicode: '🥛' },
|
|
749
|
+
{ text: ':coffee:', unicode: '☕' },
|
|
750
|
+
{ text: ':teapot:', unicode: '🫖' },
|
|
751
|
+
{ text: ':tea:', unicode: '🍵' },
|
|
752
|
+
{ text: ':sake:', unicode: '🍶' },
|
|
753
|
+
{ text: ':champagne:', unicode: '🍾' },
|
|
754
|
+
{ text: ':wine_glass:', unicode: '🍷' },
|
|
755
|
+
{ text: ':cocktail:', unicode: '🍸' },
|
|
756
|
+
{ text: ':tropical_drink:', unicode: '🍹' },
|
|
757
|
+
{ text: ':beer:', unicode: '🍺' },
|
|
758
|
+
{ text: ':beers:', unicode: '🍻' },
|
|
759
|
+
{ text: ':clinking_glasses:', unicode: '🥂' },
|
|
760
|
+
{ text: ':tumbler_glass:', unicode: '🥃' },
|
|
761
|
+
{ text: ':pouring_liquid:', unicode: '🫗' },
|
|
762
|
+
{ text: ':cup_with_straw:', unicode: '🥤' },
|
|
763
|
+
{ text: ':bubble_tea:', unicode: '🧋' },
|
|
764
|
+
{ text: ':beverage_box:', unicode: '🧃' },
|
|
765
|
+
{ text: ':mate:', unicode: '🧉' },
|
|
766
|
+
{ text: ':ice_cube:', unicode: '🧊' }
|
|
767
|
+
];
|
|
768
|
+
const travel = [
|
|
769
|
+
{ text: ':globe_showing_americas:', unicode: '🌎' },
|
|
770
|
+
{ text: ':globe_showing_europe_africa:', unicode: '🌍' },
|
|
771
|
+
{ text: ':globe_showing_asia_australia:', unicode: '🌏' },
|
|
772
|
+
{ text: ':globe_with_meridians:', unicode: '🌐' },
|
|
773
|
+
{ text: ':world_map:', unicode: '🗺️' },
|
|
774
|
+
{ text: ':japan:', unicode: '🗾' },
|
|
775
|
+
{ text: ':compass:', unicode: '🧭' },
|
|
776
|
+
{ text: ':mountain_snow:', unicode: '🏔️' },
|
|
777
|
+
{ text: ':mountain:', unicode: '⛰️' },
|
|
778
|
+
{ text: ':volcano:', unicode: '🌋' },
|
|
779
|
+
{ text: ':mount_fuji:', unicode: '🗻' },
|
|
780
|
+
{ text: ':camping:', unicode: '🏕️' },
|
|
781
|
+
{ text: ':beach_umbrella:', unicode: '🏖️' },
|
|
782
|
+
{ text: ':desert:', unicode: '🏜️' },
|
|
783
|
+
{ text: ':desert_island:', unicode: '🏝️' },
|
|
784
|
+
{ text: ':national_park:', unicode: '🏞️' },
|
|
785
|
+
{ text: ':stadium:', unicode: '🏟️' },
|
|
786
|
+
{ text: ':classical_building:', unicode: '🏛️' },
|
|
787
|
+
{ text: ':building_construction:', unicode: '🏗️' },
|
|
788
|
+
{ text: ':bricks:', unicode: '🧱' },
|
|
789
|
+
{ text: ':rock:', unicode: '🪨' },
|
|
790
|
+
{ text: ':wood:', unicode: '🪵' },
|
|
791
|
+
{ text: ':hut:', unicode: '🛖' },
|
|
792
|
+
{ text: ':houses:', unicode: '🏘️' },
|
|
793
|
+
{ text: ':derelict_house:', unicode: '🏚️' },
|
|
794
|
+
{ text: ':house:', unicode: '🏠' },
|
|
795
|
+
{ text: ':house_with_garden:', unicode: '🏡' },
|
|
796
|
+
{ text: ':office:', unicode: '🏢' },
|
|
797
|
+
{ text: ':post_office:', unicode: '🏣' },
|
|
798
|
+
{ text: ':european_post_office:', unicode: '🏤' },
|
|
799
|
+
{ text: ':hospital:', unicode: '🏥' },
|
|
800
|
+
{ text: ':bank:', unicode: '🏦' },
|
|
801
|
+
{ text: ':hotel:', unicode: '🏨' },
|
|
802
|
+
{ text: ':love_hotel:', unicode: '🏩' },
|
|
803
|
+
{ text: ':convenience_store:', unicode: '🏪' },
|
|
804
|
+
{ text: ':school:', unicode: '🏫' },
|
|
805
|
+
{ text: ':department_store:', unicode: '🏬' },
|
|
806
|
+
{ text: ':factory:', unicode: '🏭' },
|
|
807
|
+
{ text: ':japanese_castle:', unicode: '🏯' },
|
|
808
|
+
{ text: ':european_castle:', unicode: '🏰' },
|
|
809
|
+
{ text: ':wedding:', unicode: '💒' },
|
|
810
|
+
{ text: ':tokyo_tower:', unicode: '🗼' },
|
|
811
|
+
{ text: ':statue_of_liberty:', unicode: '🗽' },
|
|
812
|
+
{ text: ':church:', unicode: '⛪' },
|
|
813
|
+
{ text: ':mosque:', unicode: '🕌' },
|
|
814
|
+
{ text: ':hindu_temple:', unicode: '🛕' },
|
|
815
|
+
{ text: ':synagogue:', unicode: '🕍' },
|
|
816
|
+
{ text: ':shinto_shrine:', unicode: '⛩️' },
|
|
817
|
+
{ text: ':kaaba:', unicode: '🕋' },
|
|
818
|
+
{ text: ':fountain:', unicode: '⛲' },
|
|
819
|
+
{ text: ':tent:', unicode: '⛺' },
|
|
820
|
+
{ text: ':foggy:', unicode: '🌁' },
|
|
821
|
+
{ text: ':night_with_stars:', unicode: '🌃' },
|
|
822
|
+
{ text: ':cityscape:', unicode: '🏙️' },
|
|
823
|
+
{ text: ':sunrise_over_mountains:', unicode: '🌄' },
|
|
824
|
+
{ text: ':sunrise:', unicode: '🌅' },
|
|
825
|
+
{ text: ':city_sunset:', unicode: '🌆' },
|
|
826
|
+
{ text: ':city_sunrise:', unicode: '🌇' },
|
|
827
|
+
{ text: ':bridge_at_night:', unicode: '🌉' },
|
|
828
|
+
{ text: ':hotsprings:', unicode: '♨️' },
|
|
829
|
+
{ text: ':carousel_horse:', unicode: '🎠' },
|
|
830
|
+
{ text: ':playground_slide:', unicode: '🛝' },
|
|
831
|
+
{ text: ':ferris_wheel:', unicode: '🎡' },
|
|
832
|
+
{ text: ':roller_coaster:', unicode: '🎢' },
|
|
833
|
+
{ text: ':barber:', unicode: '💈' },
|
|
834
|
+
{ text: ':circus_tent:', unicode: '🎪' },
|
|
835
|
+
{ text: ':steam_locomotive:', unicode: '🚂' },
|
|
836
|
+
{ text: ':railway_car:', unicode: '🚃' },
|
|
837
|
+
{ text: ':bullettrain_side:', unicode: '🚄' },
|
|
838
|
+
{ text: ':bullettrain_front:', unicode: '🚅' },
|
|
839
|
+
{ text: ':train2:', unicode: '🚆' },
|
|
840
|
+
{ text: ':metro:', unicode: '🚇' },
|
|
841
|
+
{ text: ':light_rail:', unicode: '🚈' },
|
|
842
|
+
{ text: ':station:', unicode: '🚉' },
|
|
843
|
+
{ text: ':tram:', unicode: '🚊' },
|
|
844
|
+
{ text: ':monorail:', unicode: '🚝' },
|
|
845
|
+
{ text: ':mountain_railway:', unicode: '🚞' },
|
|
846
|
+
{ text: ':train:', unicode: '🚋' },
|
|
847
|
+
{ text: ':bus:', unicode: '🚌' },
|
|
848
|
+
{ text: ':oncoming_bus:', unicode: '🚍' },
|
|
849
|
+
{ text: ':trolleybus:', unicode: '🚎' },
|
|
850
|
+
{ text: ':minibus:', unicode: '🚐' },
|
|
851
|
+
{ text: ':ambulance:', unicode: '🚑' },
|
|
852
|
+
{ text: ':fire_engine:', unicode: '🚒' },
|
|
853
|
+
{ text: ':police_car:', unicode: '🚓' },
|
|
854
|
+
{ text: ':oncoming_police_car:', unicode: '🚔' },
|
|
855
|
+
{ text: ':taxi:', unicode: '🚕' },
|
|
856
|
+
{ text: ':oncoming_taxi:', unicode: '🚖' },
|
|
857
|
+
{ text: ':car:', unicode: '🚗' },
|
|
858
|
+
{ text: ':oncoming_automobile:', unicode: '🚘' },
|
|
859
|
+
{ text: ':blue_car:', unicode: '🚙' },
|
|
860
|
+
{ text: ':pickup_truck:', unicode: '🛻' },
|
|
861
|
+
{ text: ':truck:', unicode: '🚚' },
|
|
862
|
+
{ text: ':articulated_lorry:', unicode: '🚛' },
|
|
863
|
+
{ text: ':tractor:', unicode: '🚜' },
|
|
864
|
+
{ text: ':racing_car:', unicode: '🏎️' },
|
|
865
|
+
{ text: ':motorcycle:', unicode: '🏍️' },
|
|
866
|
+
{ text: ':motor_scooter:', unicode: '🛵' },
|
|
867
|
+
{ text: ':manual_wheelchair:', unicode: '🦽' },
|
|
868
|
+
{ text: ':motorized_wheelchair:', unicode: '🦼' },
|
|
869
|
+
{ text: ':auto_rickshaw:', unicode: '🛺' },
|
|
870
|
+
{ text: ':bike:', unicode: '🚲' },
|
|
871
|
+
{ text: ':kick_scooter:', unicode: '🛴' },
|
|
872
|
+
{ text: ':skateboard:', unicode: '🛹' },
|
|
873
|
+
{ text: ':roller_skate:', unicode: '🛼' },
|
|
874
|
+
{ text: ':busstop:', unicode: '🚏' },
|
|
875
|
+
{ text: ':motorway:', unicode: '🛣️' },
|
|
876
|
+
{ text: ':railway_track:', unicode: '🛤️' },
|
|
877
|
+
{ text: ':oil_drum:', unicode: '🛢️' },
|
|
878
|
+
{ text: ':fuelpump:', unicode: '⛽' },
|
|
879
|
+
{ text: ':rotating_light:', unicode: '🚨' },
|
|
880
|
+
{ text: ':traffic_light:', unicode: '🚥' },
|
|
881
|
+
{ text: ':vertical_traffic_light:', unicode: '🚦' },
|
|
882
|
+
{ text: ':stop_sign:', unicode: '🛑' },
|
|
883
|
+
{ text: ':construction:', unicode: '🚧' },
|
|
884
|
+
{ text: ':anchor:', unicode: '⚓' },
|
|
885
|
+
{ text: ':ring_buoy:', unicode: '🛟' },
|
|
886
|
+
{ text: ':boat:', unicode: '⛵' },
|
|
887
|
+
{ text: ':canoe:', unicode: '🛶' },
|
|
888
|
+
{ text: ':speedboat:', unicode: '🚤' },
|
|
889
|
+
{ text: ':passenger_ship:', unicode: '🛳️' },
|
|
890
|
+
{ text: ':ferry:', unicode: '⛴️' },
|
|
891
|
+
{ text: ':motor_boat:', unicode: '🛥️' },
|
|
892
|
+
{ text: ':ship:', unicode: '🚢' },
|
|
893
|
+
{ text: ':airplane:', unicode: '✈️' },
|
|
894
|
+
{ text: ':small_airplane:', unicode: '🛩️' },
|
|
895
|
+
{ text: ':flight_departure:', unicode: '🛫' },
|
|
896
|
+
{ text: ':flight_arrival:', unicode: '🛬' },
|
|
897
|
+
{ text: ':parachute:', unicode: '🪂' },
|
|
898
|
+
{ text: ':seat:', unicode: '💺' },
|
|
899
|
+
{ text: ':helicopter:', unicode: '🚁' },
|
|
900
|
+
{ text: ':suspension_railway:', unicode: '🚟' },
|
|
901
|
+
{ text: ':mountain_cableway:', unicode: '🚠' },
|
|
902
|
+
{ text: ':aerial_tramway:', unicode: '🚡' },
|
|
903
|
+
{ text: ':artificial_satellite:', unicode: '🛰️' },
|
|
904
|
+
{ text: ':rocket:', unicode: '🚀' },
|
|
905
|
+
{ text: ':flying_saucer:', unicode: '🛸' },
|
|
906
|
+
{ text: ':bellhop_bell:', unicode: '🛎️' },
|
|
907
|
+
{ text: ':luggage:', unicode: '🧳' },
|
|
908
|
+
{ text: ':hourglass:', unicode: '⌛' },
|
|
909
|
+
{ text: ':hourglass_flowing_sand:', unicode: '⏳' },
|
|
910
|
+
{ text: ':watch:', unicode: '⌚' },
|
|
911
|
+
{ text: ':alarm_clock:', unicode: '⏰' },
|
|
912
|
+
{ text: ':stopwatch:', unicode: '⏱️' },
|
|
913
|
+
{ text: ':timer_clock:', unicode: '⏲️' },
|
|
914
|
+
{ text: ':mantelpiece_clock:', unicode: '🕰️' },
|
|
915
|
+
{ text: ':clock12:', unicode: '🕐' },
|
|
916
|
+
{ text: ':clock1230:', unicode: '🕧' },
|
|
917
|
+
{ text: ':clock1:', unicode: '🕑' },
|
|
918
|
+
{ text: ':clock130:', unicode: '🕜' },
|
|
919
|
+
{ text: ':clock2:', unicode: '🕒' },
|
|
920
|
+
{ text: ':clock230:', unicode: '🕝' },
|
|
921
|
+
{ text: ':clock3:', unicode: '🕓' },
|
|
922
|
+
{ text: ':clock330:', unicode: '🕞' },
|
|
923
|
+
{ text: ':clock4:', unicode: '🕔' },
|
|
924
|
+
{ text: ':clock430:', unicode: '🕟' },
|
|
925
|
+
{ text: ':clock5:', unicode: '🕕' },
|
|
926
|
+
{ text: ':clock530:', unicode: '🕠' },
|
|
927
|
+
{ text: ':clock6:', unicode: '🕖' },
|
|
928
|
+
{ text: ':clock630:', unicode: '🕡' },
|
|
929
|
+
{ text: ':clock7:', unicode: '🕗' },
|
|
930
|
+
{ text: ':clock730:', unicode: '🕢' },
|
|
931
|
+
{ text: ':clock8:', unicode: '🕘' },
|
|
932
|
+
{ text: ':clock830:', unicode: '🕣' },
|
|
933
|
+
{ text: ':clock9:', unicode: '🕙' },
|
|
934
|
+
{ text: ':clock930:', unicode: '🕤' },
|
|
935
|
+
{ text: ':clock10:', unicode: '🕚' },
|
|
936
|
+
{ text: ':clock1030:', unicode: '🕥' },
|
|
937
|
+
{ text: ':clock11:', unicode: '🕛' },
|
|
938
|
+
{ text: ':clock1130:', unicode: '🕦' },
|
|
939
|
+
{ text: ':new_moon:', unicode: '🌑' },
|
|
940
|
+
{ text: ':waxing_crescent_moon:', unicode: '🌒' },
|
|
941
|
+
{ text: ':first_quarter_moon:', unicode: '🌓' },
|
|
942
|
+
{ text: ':waxing_gibbous_moon:', unicode: '🌔' },
|
|
943
|
+
{ text: ':full_moon:', unicode: '🌕' },
|
|
944
|
+
{ text: ':waning_gibbous_moon:', unicode: '🌖' },
|
|
945
|
+
{ text: ':last_quarter_moon:', unicode: '🌗' },
|
|
946
|
+
{ text: ':waning_crescent_moon:', unicode: '🌘' },
|
|
947
|
+
{ text: ':crescent_moon:', unicode: '🌙' },
|
|
948
|
+
{ text: ':new_moon_with_face:', unicode: '🌚' },
|
|
949
|
+
{ text: ':first_quarter_moon_with_face:', unicode: '🌛' },
|
|
950
|
+
{ text: ':last_quarter_moon_with_face:', unicode: '🌜' },
|
|
951
|
+
{ text: ':thermometer:', unicode: '🌡️' },
|
|
952
|
+
{ text: ':sunny:', unicode: '☀️' },
|
|
953
|
+
{ text: ':full_moon_with_face:', unicode: '🌝' },
|
|
954
|
+
{ text: ':sun_with_face:', unicode: '🌞' },
|
|
955
|
+
{ text: ':ringed_planet:', unicode: '🪐' },
|
|
956
|
+
{ text: ':star:', unicode: '⭐' },
|
|
957
|
+
{ text: ':star2:', unicode: '🌟' },
|
|
958
|
+
{ text: ':stars:', unicode: '🌠' },
|
|
959
|
+
{ text: ':milky_way:', unicode: '🌌' },
|
|
960
|
+
{ text: ':cloud:', unicode: '☁️' },
|
|
961
|
+
{ text: ':partly_sunny:', unicode: '⛅' },
|
|
962
|
+
{ text: ':cloud_with_lightning_and_rain:', unicode: '⛈️' },
|
|
963
|
+
{ text: ':sun_behind_small_cloud:', unicode: '🌤️' },
|
|
964
|
+
{ text: ':sun_behind_large_cloud:', unicode: '🌥️' },
|
|
965
|
+
{ text: ':sun_behind_rain_cloud:', unicode: '🌦️' },
|
|
966
|
+
{ text: ':cloud_with_rain:', unicode: '🌧️' },
|
|
967
|
+
{ text: ':cloud_with_snow:', unicode: '🌨️' },
|
|
968
|
+
{ text: ':cloud_with_lightning:', unicode: '🌩️' },
|
|
969
|
+
{ text: ':tornado:', unicode: '🌪️' },
|
|
970
|
+
{ text: ':fog:', unicode: '🌫️' },
|
|
971
|
+
{ text: ':wind_face:', unicode: '🌬️' },
|
|
972
|
+
{ text: ':cyclone:', unicode: '🌀' },
|
|
973
|
+
{ text: ':rainbow:', unicode: '🌈' },
|
|
974
|
+
{ text: ':closed_umbrella:', unicode: '🌂' },
|
|
975
|
+
{ text: ':open_umbrella:', unicode: '☂️' },
|
|
976
|
+
{ text: ':umbrella:', unicode: '☔' },
|
|
977
|
+
{ text: ':parasol_on_ground:', unicode: '⛱️' },
|
|
978
|
+
{ text: ':zap:', unicode: '⚡' },
|
|
979
|
+
{ text: ':snowflake:', unicode: '❄️' },
|
|
980
|
+
{ text: ':snowman_with_snow:', unicode: '☃️' },
|
|
981
|
+
{ text: ':snowman:', unicode: '⛄' },
|
|
982
|
+
{ text: ':comet:', unicode: '☄️' },
|
|
983
|
+
{ text: ':fire:', unicode: '🔥' },
|
|
984
|
+
{ text: ':droplet:', unicode: '💧' },
|
|
985
|
+
{ text: ':ocean:', unicode: '🌊' }
|
|
986
|
+
];
|
|
987
|
+
const activities = [
|
|
988
|
+
{ text: ':soccer:', unicode: '⚽' },
|
|
989
|
+
{ text: ':basketball:', unicode: '🏀' },
|
|
990
|
+
{ text: ':football:', unicode: '🏈' },
|
|
991
|
+
{ text: ':baseball:', unicode: '⚾' },
|
|
992
|
+
{ text: ':softball:', unicode: '🥎' },
|
|
993
|
+
{ text: ':tennis:', unicode: '🎾' },
|
|
994
|
+
{ text: ':volleyball:', unicode: '🏐' },
|
|
995
|
+
{ text: ':rugby_football:', unicode: '🏉' },
|
|
996
|
+
{ text: ':flying_disc:', unicode: '🥏' },
|
|
997
|
+
{ text: ':8ball:', unicode: '🎱' },
|
|
998
|
+
{ text: ':ping_pong:', unicode: '🏓' },
|
|
999
|
+
{ text: ':badminton:', unicode: '🏸' },
|
|
1000
|
+
{ text: ':goal_net:', unicode: '🥅' },
|
|
1001
|
+
{ text: ':ice_hockey:', unicode: '🏒' },
|
|
1002
|
+
{ text: ':field_hockey:', unicode: '🏑' },
|
|
1003
|
+
{ text: ':lacrosse:', unicode: '🥍' },
|
|
1004
|
+
{ text: ':cricket_game:', unicode: '🏏' },
|
|
1005
|
+
{ text: ':ski:', unicode: '🎿' },
|
|
1006
|
+
{ text: ':trophy:', unicode: '🏆' },
|
|
1007
|
+
{ text: ':first_place_medal:', unicode: '🥇' },
|
|
1008
|
+
{ text: ':second_place_medal:', unicode: '🥈' },
|
|
1009
|
+
{ text: ':third_place_medal:', unicode: '🥉' },
|
|
1010
|
+
{ text: ':medal_sports:', unicode: '🏅' },
|
|
1011
|
+
{ text: ':medal_military:', unicode: '🎖️' },
|
|
1012
|
+
{ text: ':reminder_ribbon:', unicode: '🎗️' },
|
|
1013
|
+
{ text: ':ticket:', unicode: '🎫' },
|
|
1014
|
+
{ text: ':admission_tickets:', unicode: '🎟️' },
|
|
1015
|
+
{ text: ':performing_arts:', unicode: '🎭' },
|
|
1016
|
+
{ text: ':art:', unicode: '🎨' },
|
|
1017
|
+
{ text: ':game_die:', unicode: '🎲' },
|
|
1018
|
+
{ text: ':chess_pawn:', unicode: '♟️' },
|
|
1019
|
+
{ text: ':dart:', unicode: '🎯' },
|
|
1020
|
+
{ text: ':yo_yo:', unicode: '🪀' },
|
|
1021
|
+
{ text: ':kite:', unicode: '🪁' },
|
|
1022
|
+
{ text: ':jigsaw:', unicode: '🧩' },
|
|
1023
|
+
{ text: ':teddy_bear:', unicode: '🧸' },
|
|
1024
|
+
{ text: ':pinata:', unicode: '🪅' },
|
|
1025
|
+
{ text: ':nesting_dolls:', unicode: '🪆' },
|
|
1026
|
+
{ text: ':spades:', unicode: '♠️' },
|
|
1027
|
+
{ text: ':hearts:', unicode: '♥️' },
|
|
1028
|
+
{ text: ':diamonds:', unicode: '♦️' },
|
|
1029
|
+
{ text: ':clubs:', unicode: '♣️' },
|
|
1030
|
+
{ text: ':joker:', unicode: '🃏' },
|
|
1031
|
+
{ text: ':mahjong:', unicode: '🀄' },
|
|
1032
|
+
{ text: ':flower_playing_cards:', unicode: '🎴' },
|
|
1033
|
+
{ text: ':slot_machine:', unicode: '🎰' },
|
|
1034
|
+
{ text: ':bowling:', unicode: '🎳' }
|
|
1035
|
+
];
|
|
1036
|
+
const objects = [
|
|
1037
|
+
{ text: ':eyeglasses:', unicode: '👓' },
|
|
1038
|
+
{ text: ':dark_sunglasses:', unicode: '🕶️' },
|
|
1039
|
+
{ text: ':goggles:', unicode: '🥽' },
|
|
1040
|
+
{ text: ':lab_coat:', unicode: '🥼' },
|
|
1041
|
+
{ text: ':safety_vest:', unicode: '🦺' },
|
|
1042
|
+
{ text: ':necktie:', unicode: '👔' },
|
|
1043
|
+
{ text: ':shirt:', unicode: '👕' },
|
|
1044
|
+
{ text: ':jeans:', unicode: '👖' },
|
|
1045
|
+
{ text: ':scarf:', unicode: '🧣' },
|
|
1046
|
+
{ text: ':gloves:', unicode: '🧤' },
|
|
1047
|
+
{ text: ':coat:', unicode: '🧥' },
|
|
1048
|
+
{ text: ':socks:', unicode: '🧦' },
|
|
1049
|
+
{ text: ':dress:', unicode: '👗' },
|
|
1050
|
+
{ text: ':kimono:', unicode: '👘' },
|
|
1051
|
+
{ text: ':sari:', unicode: '🥻' },
|
|
1052
|
+
{ text: ':one_piece_swimsuit:', unicode: '🩱' },
|
|
1053
|
+
{ text: ':swim_brief:', unicode: '🩲' },
|
|
1054
|
+
{ text: ':shorts:', unicode: '🩳' },
|
|
1055
|
+
{ text: ':bikini:', unicode: '👙' },
|
|
1056
|
+
{ text: ':womans_clothes:', unicode: '👚' },
|
|
1057
|
+
{ text: ':purse:', unicode: '👛' },
|
|
1058
|
+
{ text: ':handbag:', unicode: '👜' },
|
|
1059
|
+
{ text: ':pouch:', unicode: '👝' },
|
|
1060
|
+
{ text: ':shopping:', unicode: '🛍️' },
|
|
1061
|
+
{ text: ':school_satchel:', unicode: '🎒' },
|
|
1062
|
+
{ text: ':thong_sandal:', unicode: '🩴' },
|
|
1063
|
+
{ text: ':mans_shoe:', unicode: '👞' },
|
|
1064
|
+
{ text: ':athletic_shoe:', unicode: '👟' },
|
|
1065
|
+
{ text: ':hiking_boot:', unicode: '🥾' },
|
|
1066
|
+
{ text: ':flat_shoe:', unicode: '🥿' },
|
|
1067
|
+
{ text: ':high_heel:', unicode: '👠' },
|
|
1068
|
+
{ text: ':sandal:', unicode: '👡' },
|
|
1069
|
+
{ text: ':ballet_shoes:', unicode: '🩰' },
|
|
1070
|
+
{ text: ':boot:', unicode: '👢' },
|
|
1071
|
+
{ text: ':crown:', unicode: '👑' },
|
|
1072
|
+
{ text: ':womans_hat:', unicode: '👒' },
|
|
1073
|
+
{ text: ':tophat:', unicode: '🎩' },
|
|
1074
|
+
{ text: ':mortar_board:', unicode: '🎓' },
|
|
1075
|
+
{ text: ':billed_hat:', unicode: '🧢' },
|
|
1076
|
+
{ text: ':military_helmet:', unicode: '🪖' },
|
|
1077
|
+
{ text: ':rescue_worker_helmet:', unicode: '⛑️' },
|
|
1078
|
+
{ text: ':prayer_beads:', unicode: '📿' },
|
|
1079
|
+
{ text: ':lipstick:', unicode: '💄' },
|
|
1080
|
+
{ text: ':ring:', unicode: '💍' },
|
|
1081
|
+
{ text: ':gem:', unicode: '💎' },
|
|
1082
|
+
{ text: ':mute:', unicode: '🔇' },
|
|
1083
|
+
{ text: ':speaker:', unicode: '🔈' },
|
|
1084
|
+
{ text: ':sound:', unicode: '🔉' },
|
|
1085
|
+
{ text: ':loud_sound:', unicode: '🔊' },
|
|
1086
|
+
{ text: ':loudspeaker:', unicode: '📢' },
|
|
1087
|
+
{ text: ':mega:', unicode: '📣' },
|
|
1088
|
+
{ text: ':postal_horn:', unicode: '📯' },
|
|
1089
|
+
{ text: ':bell:', unicode: '🔔' },
|
|
1090
|
+
{ text: ':no_bell:', unicode: '🔕' },
|
|
1091
|
+
{ text: ':musical_score:', unicode: '🎼' },
|
|
1092
|
+
{ text: ':musical_note:', unicode: '🎵' },
|
|
1093
|
+
{ text: ':notes:', unicode: '🎶' },
|
|
1094
|
+
{ text: ':studio_microphone:', unicode: '🎙️' },
|
|
1095
|
+
{ text: ':level_slider:', unicode: '🎚️' },
|
|
1096
|
+
{ text: ':control_knobs:', unicode: '🎛️' },
|
|
1097
|
+
{ text: ':microphone:', unicode: '🎤' },
|
|
1098
|
+
{ text: ':headphones:', unicode: '🎧' },
|
|
1099
|
+
{ text: ':radio:', unicode: '📻' },
|
|
1100
|
+
{ text: ':saxophone:', unicode: '🎷' },
|
|
1101
|
+
{ text: ':accordion:', unicode: '🪗' },
|
|
1102
|
+
{ text: ':guitar:', unicode: '🎸' },
|
|
1103
|
+
{ text: ':musical_keyboard:', unicode: '🎹' },
|
|
1104
|
+
{ text: ':trumpet:', unicode: '🎺' },
|
|
1105
|
+
{ text: ':violin:', unicode: '🎻' },
|
|
1106
|
+
{ text: ':banjo:', unicode: '🪕' },
|
|
1107
|
+
{ text: ':drum:', unicode: '🥁' },
|
|
1108
|
+
{ text: ':long_drum:', unicode: '🪘' },
|
|
1109
|
+
{ text: ':mobile_phone:', unicode: '📱' },
|
|
1110
|
+
{ text: ':calling:', unicode: '📲' },
|
|
1111
|
+
{ text: ':phone:', unicode: '☎️' },
|
|
1112
|
+
{ text: ':telephone_receiver:', unicode: '📞' },
|
|
1113
|
+
{ text: ':pager:', unicode: '📟' },
|
|
1114
|
+
{ text: ':fax:', unicode: '📠' },
|
|
1115
|
+
{ text: ':battery:', unicode: '🔋' },
|
|
1116
|
+
{ text: ':electric_plug:', unicode: '🔌' },
|
|
1117
|
+
{ text: ':computer:', unicode: '💻' },
|
|
1118
|
+
{ text: ':desktop_computer:', unicode: '🖥️' },
|
|
1119
|
+
{ text: ':printer:', unicode: '🖨️' },
|
|
1120
|
+
{ text: ':keyboard:', unicode: '⌨️' },
|
|
1121
|
+
{ text: ':computer_mouse:', unicode: '🖱️' },
|
|
1122
|
+
{ text: ':trackball:', unicode: '🖲️' },
|
|
1123
|
+
{ text: ':minidisc:', unicode: '💽' },
|
|
1124
|
+
{ text: ':floppy_disk:', unicode: '💾' },
|
|
1125
|
+
{ text: ':cd:', unicode: '💿' },
|
|
1126
|
+
{ text: ':dvd:', unicode: '📀' },
|
|
1127
|
+
{ text: ':abacus:', unicode: '🧮' },
|
|
1128
|
+
{ text: ':movie_camera:', unicode: '🎥' },
|
|
1129
|
+
{ text: ':film_strip:', unicode: '🎞️' },
|
|
1130
|
+
{ text: ':film_projector:', unicode: '📽️' },
|
|
1131
|
+
{ text: ':clapper:', unicode: '🎬' },
|
|
1132
|
+
{ text: ':tv:', unicode: '📺' },
|
|
1133
|
+
{ text: ':camera:', unicode: '📷' },
|
|
1134
|
+
{ text: ':camera_flash:', unicode: '📸' },
|
|
1135
|
+
{ text: ':video_camera:', unicode: '📹' },
|
|
1136
|
+
{ text: ':vhs:', unicode: '📼' },
|
|
1137
|
+
{ text: ':mag:', unicode: '🔍' },
|
|
1138
|
+
{ text: ':mag_right:', unicode: '🔎' },
|
|
1139
|
+
{ text: ':candle:', unicode: '🕯️' },
|
|
1140
|
+
{ text: ':bulb:', unicode: '💡' },
|
|
1141
|
+
{ text: ':flashlight:', unicode: '🔦' },
|
|
1142
|
+
{ text: ':izakaya_lantern:', unicode: '🏮' },
|
|
1143
|
+
{ text: ':diya_lamp:', unicode: '🪔' },
|
|
1144
|
+
{ text: ':notebook_with_decorative_cover:', unicode: '📔' },
|
|
1145
|
+
{ text: ':closed_book:', unicode: '📕' },
|
|
1146
|
+
{ text: ':book:', unicode: '📖' },
|
|
1147
|
+
{ text: ':green_book:', unicode: '📗' },
|
|
1148
|
+
{ text: ':blue_book:', unicode: '📘' },
|
|
1149
|
+
{ text: ':orange_book:', unicode: '📙' },
|
|
1150
|
+
{ text: ':books:', unicode: '📚' },
|
|
1151
|
+
{ text: ':notebook:', unicode: '📓' },
|
|
1152
|
+
{ text: ':ledger:', unicode: '📒' },
|
|
1153
|
+
{ text: ':page_with_curl:', unicode: '📃' },
|
|
1154
|
+
{ text: ':scroll:', unicode: '📜' },
|
|
1155
|
+
{ text: ':page_facing_up:', unicode: '📄' },
|
|
1156
|
+
{ text: ':newspaper:', unicode: '📰' },
|
|
1157
|
+
{ text: ':newspaper_roll:', unicode: '🗞️' },
|
|
1158
|
+
{ text: ':bookmark_tabs:', unicode: '📑' },
|
|
1159
|
+
{ text: ':bookmark:', unicode: '🔖' },
|
|
1160
|
+
{ text: ':label:', unicode: '🏷️' },
|
|
1161
|
+
{ text: ':moneybag:', unicode: '💰' },
|
|
1162
|
+
{ text: ':coin:', unicode: '🪙' },
|
|
1163
|
+
{ text: ':yen:', unicode: '💴' },
|
|
1164
|
+
{ text: ':dollar:', unicode: '💵' },
|
|
1165
|
+
{ text: ':euro:', unicode: '💶' },
|
|
1166
|
+
{ text: ':pound:', unicode: '💷' },
|
|
1167
|
+
{ text: ':money_with_wings:', unicode: '💸' },
|
|
1168
|
+
{ text: ':credit_card:', unicode: '💳' },
|
|
1169
|
+
{ text: ':receipt:', unicode: '🧾' },
|
|
1170
|
+
{ text: ':chart:', unicode: '💹' },
|
|
1171
|
+
{ text: ':email:', unicode: '✉️' },
|
|
1172
|
+
{ text: ':e-mail:', unicode: '📧' },
|
|
1173
|
+
{ text: ':incoming_envelope:', unicode: '📨' },
|
|
1174
|
+
{ text: ':envelope_with_arrow:', unicode: '📩' },
|
|
1175
|
+
{ text: ':outbox_tray:', unicode: '📤' },
|
|
1176
|
+
{ text: ':inbox_tray:', unicode: '📥' },
|
|
1177
|
+
{ text: ':package:', unicode: '📦' },
|
|
1178
|
+
{ text: ':mailbox:', unicode: '📪' },
|
|
1179
|
+
{ text: ':mailbox_closed:', unicode: '📫' },
|
|
1180
|
+
{ text: ':mailbox_with_mail:', unicode: '📬' },
|
|
1181
|
+
{ text: ':mailbox_with_no_mail:', unicode: '📭' },
|
|
1182
|
+
{ text: ':postbox:', unicode: '📮' },
|
|
1183
|
+
{ text: ':ballot_box:', unicode: '🗳️' },
|
|
1184
|
+
{ text: ':pencil2:', unicode: '✏️' },
|
|
1185
|
+
{ text: ':black_nib:', unicode: '✒️' },
|
|
1186
|
+
{ text: ':fountain_pen:', unicode: '🖋️' },
|
|
1187
|
+
{ text: ':pen:', unicode: '🖊️' },
|
|
1188
|
+
{ text: ':paintbrush:', unicode: '🖌️' },
|
|
1189
|
+
{ text: ':crayon:', unicode: '🖍️' },
|
|
1190
|
+
{ text: ':memo:', unicode: '📝' },
|
|
1191
|
+
{ text: ':briefcase:', unicode: '💼' },
|
|
1192
|
+
{ text: ':file_folder:', unicode: '📁' },
|
|
1193
|
+
{ text: ':open_file_folder:', unicode: '📂' },
|
|
1194
|
+
{ text: ':card_index_dividers:', unicode: '🗂️' },
|
|
1195
|
+
{ text: ':date:', unicode: '📅' },
|
|
1196
|
+
{ text: ':calendar:', unicode: '📆' },
|
|
1197
|
+
{ text: ':spiral_notepad:', unicode: '🗒️' },
|
|
1198
|
+
{ text: ':spiral_calendar:', unicode: '🗓️' },
|
|
1199
|
+
{ text: ':card_index:', unicode: '📇' },
|
|
1200
|
+
{ text: ':chart_with_upwards_trend:', unicode: '📈' },
|
|
1201
|
+
{ text: ':chart_with_downwards_trend:', unicode: '📉' },
|
|
1202
|
+
{ text: ':bar_chart:', unicode: '📊' },
|
|
1203
|
+
{ text: ':clipboard:', unicode: '📋' },
|
|
1204
|
+
{ text: ':pushpin:', unicode: '📌' },
|
|
1205
|
+
{ text: ':round_pushpin:', unicode: '📍' },
|
|
1206
|
+
{ text: ':paperclip:', unicode: '📎' },
|
|
1207
|
+
{ text: ':paperclips:', unicode: '🖇️' },
|
|
1208
|
+
{ text: ':straight_ruler:', unicode: '📏' },
|
|
1209
|
+
{ text: ':triangular_ruler:', unicode: '📐' },
|
|
1210
|
+
{ text: ':scissors:', unicode: '✂️' },
|
|
1211
|
+
{ text: ':card_file_box:', unicode: '🗃️' },
|
|
1212
|
+
{ text: ':file_cabinet:', unicode: '🗄️' },
|
|
1213
|
+
{ text: ':wastebasket:', unicode: '🗑️' },
|
|
1214
|
+
{ text: ':lock:', unicode: '🔒' },
|
|
1215
|
+
{ text: ':unlock:', unicode: '🔓' },
|
|
1216
|
+
{ text: ':lock_with_ink_pen:', unicode: '🔏' },
|
|
1217
|
+
{ text: ':closed_lock_with_key:', unicode: '🔐' },
|
|
1218
|
+
{ text: ':key:', unicode: '🔑' },
|
|
1219
|
+
{ text: ':old_key:', unicode: '🗝️' },
|
|
1220
|
+
{ text: ':hammer:', unicode: '🔨' },
|
|
1221
|
+
{ text: ':axe:', unicode: '🪓' },
|
|
1222
|
+
{ text: ':pick:', unicode: '⛏️' },
|
|
1223
|
+
{ text: ':hammer_and_pick:', unicode: '⚒️' },
|
|
1224
|
+
{ text: ':hammer_and_wrench:', unicode: '🛠️' },
|
|
1225
|
+
{ text: ':dagger:', unicode: '🗡️' },
|
|
1226
|
+
{ text: ':crossed_swords:', unicode: '⚔️' },
|
|
1227
|
+
{ text: ':gun:', unicode: '🔫' },
|
|
1228
|
+
{ text: ':boomerang:', unicode: '🪃' },
|
|
1229
|
+
{ text: ':bow_and_arrow:', unicode: '🏹' },
|
|
1230
|
+
{ text: ':shield:', unicode: '🛡️' },
|
|
1231
|
+
{ text: ':carpentry_saw:', unicode: '🪚' },
|
|
1232
|
+
{ text: ':wrench:', unicode: '🔧' },
|
|
1233
|
+
{ text: ':screwdriver:', unicode: '🪛' },
|
|
1234
|
+
{ text: ':nut_and_bolt:', unicode: '🔩' },
|
|
1235
|
+
{ text: ':gear:', unicode: '⚙️' },
|
|
1236
|
+
{ text: ':clamp:', unicode: '🗜️' },
|
|
1237
|
+
{ text: ':balance_scale:', unicode: '⚖️' },
|
|
1238
|
+
{ text: ':probing_cane:', unicode: '🦯' },
|
|
1239
|
+
{ text: ':link:', unicode: '🔗' },
|
|
1240
|
+
{ text: ':chains:', unicode: '⛓️' },
|
|
1241
|
+
{ text: ':hook:', unicode: '🪝' },
|
|
1242
|
+
{ text: ':toolbox:', unicode: '🧰' },
|
|
1243
|
+
{ text: ':magnet:', unicode: '🧲' },
|
|
1244
|
+
{ text: ':ladder:', unicode: '🪜' },
|
|
1245
|
+
{ text: ':alembic:', unicode: '⚗️' },
|
|
1246
|
+
{ text: ':test_tube:', unicode: '🧪' },
|
|
1247
|
+
{ text: ':petri_dish:', unicode: '🧫' },
|
|
1248
|
+
{ text: ':dna:', unicode: '🧬' },
|
|
1249
|
+
{ text: ':microscope:', unicode: '🔬' },
|
|
1250
|
+
{ text: ':telescope:', unicode: '🔭' },
|
|
1251
|
+
{ text: ':satellite:', unicode: '📡' },
|
|
1252
|
+
{ text: ':syringe:', unicode: '💉' },
|
|
1253
|
+
{ text: ':drop_of_blood:', unicode: '🩸' },
|
|
1254
|
+
{ text: ':pill:', unicode: '💊' },
|
|
1255
|
+
{ text: ':adhesive_bandage:', unicode: '🩹' },
|
|
1256
|
+
{ text: ':stethoscope:', unicode: '🩺' },
|
|
1257
|
+
{ text: ':door:', unicode: '🚪' },
|
|
1258
|
+
{ text: ':elevator:', unicode: '🛗' },
|
|
1259
|
+
{ text: ':mirror:', unicode: '🪞' },
|
|
1260
|
+
{ text: ':window:', unicode: '🪟' },
|
|
1261
|
+
{ text: ':bed:', unicode: '🛏️' },
|
|
1262
|
+
{ text: ':couch_and_lamp:', unicode: '🛋️' },
|
|
1263
|
+
{ text: ':chair:', unicode: '🪑' },
|
|
1264
|
+
{ text: ':toilet:', unicode: '🚽' },
|
|
1265
|
+
{ text: ':plunger:', unicode: '🪠' },
|
|
1266
|
+
{ text: ':shower:', unicode: '🚿' },
|
|
1267
|
+
{ text: ':bathtub:', unicode: '🛁' },
|
|
1268
|
+
{ text: ':mouse_trap:', unicode: '🪤' },
|
|
1269
|
+
{ text: ':razor:', unicode: '🪒' },
|
|
1270
|
+
{ text: ':lotion_bottle:', unicode: '🧴' },
|
|
1271
|
+
{ text: ':safety_pin:', unicode: '🧷' },
|
|
1272
|
+
{ text: ':broom:', unicode: '🧹' },
|
|
1273
|
+
{ text: ':basket:', unicode: '🧺' },
|
|
1274
|
+
{ text: ':roll_of_paper:', unicode: '🧻' },
|
|
1275
|
+
{ text: ':bucket:', unicode: '🪣' },
|
|
1276
|
+
{ text: ':soap:', unicode: '🧼' },
|
|
1277
|
+
{ text: ':toothbrush:', unicode: '🪥' },
|
|
1278
|
+
{ text: ':sponge:', unicode: '🧽' },
|
|
1279
|
+
{ text: ':fire_extinguisher:', unicode: '🧯' },
|
|
1280
|
+
{ text: ':shopping_cart:', unicode: '🛒' },
|
|
1281
|
+
{ text: ':smoking:', unicode: '🚬' },
|
|
1282
|
+
{ text: ':coffin:', unicode: '⚰️' },
|
|
1283
|
+
{ text: ':headstone:', unicode: '🪦' },
|
|
1284
|
+
{ text: ':funeral_urn:', unicode: '⚱️' },
|
|
1285
|
+
{ text: ':moyai:', unicode: '🗿' },
|
|
1286
|
+
{ text: ':placard:', unicode: '🪧' }
|
|
1287
|
+
];
|
|
1288
|
+
const symbols = [
|
|
1289
|
+
{ text: ':peace_symbol:', unicode: '☮️' },
|
|
1290
|
+
{ text: ':latin_cross:', unicode: '✝️' },
|
|
1291
|
+
{ text: ':star_and_crescent:', unicode: '☪️' },
|
|
1292
|
+
{ text: ':om:', unicode: '🕉️' },
|
|
1293
|
+
{ text: ':wheel_of_dharma:', unicode: '☸️' },
|
|
1294
|
+
{ text: ':star_of_david:', unicode: '✡️' },
|
|
1295
|
+
{ text: ':six_pointed_star:', unicode: '🔯' },
|
|
1296
|
+
{ text: ':menorah:', unicode: '🕎' },
|
|
1297
|
+
{ text: ':yin_yang:', unicode: '☯️' },
|
|
1298
|
+
{ text: ':orthodox_cross:', unicode: '☦️' },
|
|
1299
|
+
{ text: ':place_of_worship:', unicode: '🛐' },
|
|
1300
|
+
{ text: ':ophiuchus:', unicode: '⛎' },
|
|
1301
|
+
{ text: ':aries:', unicode: '♈' },
|
|
1302
|
+
{ text: ':taurus:', unicode: '♉' },
|
|
1303
|
+
{ text: ':gemini:', unicode: '♊' },
|
|
1304
|
+
{ text: ':cancer:', unicode: '♋' },
|
|
1305
|
+
{ text: ':leo:', unicode: '♌' },
|
|
1306
|
+
{ text: ':virgo:', unicode: '♍' },
|
|
1307
|
+
{ text: ':libra:', unicode: '♎' },
|
|
1308
|
+
{ text: ':scorpius:', unicode: '♏' },
|
|
1309
|
+
{ text: ':sagittarius:', unicode: '♐' },
|
|
1310
|
+
{ text: ':capricorn:', unicode: '♑' },
|
|
1311
|
+
{ text: ':aquarius:', unicode: '♒' },
|
|
1312
|
+
{ text: ':pisces:', unicode: '♓' },
|
|
1313
|
+
{ text: ':id:', unicode: '🆔' },
|
|
1314
|
+
{ text: ':atom_symbol:', unicode: '⚛️' },
|
|
1315
|
+
{ text: ':u7a7a:', unicode: '🈳' },
|
|
1316
|
+
{ text: ':u5272:', unicode: '🈹' },
|
|
1317
|
+
{ text: ':radioactive:', unicode: '☢️' },
|
|
1318
|
+
{ text: ':biohazard:', unicode: '☣️' },
|
|
1319
|
+
{ text: ':mobile_phone_off:', unicode: '📴' },
|
|
1320
|
+
{ text: ':vibration_mode:', unicode: '📳' },
|
|
1321
|
+
{ text: ':u6709:', unicode: '🈶' },
|
|
1322
|
+
{ text: ':u7121:', unicode: '🈚' },
|
|
1323
|
+
{ text: ':u7533:', unicode: '🈸' },
|
|
1324
|
+
{ text: ':u55b6:', unicode: '🈺' },
|
|
1325
|
+
{ text: ':u6708:', unicode: '🈷️' },
|
|
1326
|
+
{ text: ':eight_pointed_black_star:', unicode: '✴️' },
|
|
1327
|
+
{ text: ':vs:', unicode: '🆚' },
|
|
1328
|
+
{ text: ':accept:', unicode: '🉑' },
|
|
1329
|
+
{ text: ':ideograph_advantage:', unicode: '🉐' },
|
|
1330
|
+
{ text: ':secret:', unicode: '㊙️' },
|
|
1331
|
+
{ text: ':congratulations:', unicode: '㊗️' },
|
|
1332
|
+
{ text: ':u5408:', unicode: '🈴' },
|
|
1333
|
+
{ text: ':u6e80:', unicode: '🈵' },
|
|
1334
|
+
{ text: ':u7981:', unicode: '🈲' },
|
|
1335
|
+
{ text: ':a:', unicode: '🅰️' },
|
|
1336
|
+
{ text: ':b:', unicode: '🅱️' },
|
|
1337
|
+
{ text: ':ab:', unicode: '🆎' },
|
|
1338
|
+
{ text: ':cl:', unicode: '🆑' },
|
|
1339
|
+
{ text: ':o2:', unicode: '🅾️' },
|
|
1340
|
+
{ text: ':sos:', unicode: '🆘' },
|
|
1341
|
+
{ text: ':no_entry:', unicode: '⛔' },
|
|
1342
|
+
{ text: ':name_badge:', unicode: '📛' },
|
|
1343
|
+
{ text: ':no_entry_sign:', unicode: '🚫' },
|
|
1344
|
+
{ text: ':x:', unicode: '❌' },
|
|
1345
|
+
{ text: ':o:', unicode: '⭕' },
|
|
1346
|
+
{ text: ':no_pedestrians:', unicode: '🚷' },
|
|
1347
|
+
{ text: ':do_not_litter:', unicode: '🚯' },
|
|
1348
|
+
{ text: ':no_bicycles:', unicode: '🚳' },
|
|
1349
|
+
{ text: ':no_minors:', unicode: '🔞' },
|
|
1350
|
+
{ text: ':no_mobile_phones:', unicode: '📵' },
|
|
1351
|
+
{ text: ':exclamation:', unicode: '❗' },
|
|
1352
|
+
{ text: ':grey_exclamation:', unicode: '❕' },
|
|
1353
|
+
{ text: ':question:', unicode: '❓' },
|
|
1354
|
+
{ text: ':grey_question:', unicode: '❔' },
|
|
1355
|
+
{ text: ':bangbang:', unicode: '‼️' },
|
|
1356
|
+
{ text: ':interrobang:', unicode: '⁉️' },
|
|
1357
|
+
{ text: ':100:', unicode: '💯' },
|
|
1358
|
+
{ text: ':low_brightness:', unicode: '🔅' },
|
|
1359
|
+
{ text: ':high_brightness:', unicode: '🔆' },
|
|
1360
|
+
{ text: ':trident:', unicode: '🔱' },
|
|
1361
|
+
{ text: ':fleur_de_lis:', unicode: '⚜️' },
|
|
1362
|
+
{ text: ':part_alternation_mark:', unicode: '〽️' },
|
|
1363
|
+
{ text: ':warning:', unicode: '⚠️' },
|
|
1364
|
+
{ text: ':children_crossing:', unicode: '🚸' },
|
|
1365
|
+
{ text: ':beginner:', unicode: '🔰' },
|
|
1366
|
+
{ text: ':recycle:', unicode: '♻️' },
|
|
1367
|
+
{ text: ':u6307:', unicode: '🈯' },
|
|
1368
|
+
{ text: ':sparkle:', unicode: '❇️' },
|
|
1369
|
+
{ text: ':eight_spoked_asterisk:', unicode: '✳️' },
|
|
1370
|
+
{ text: ':negative_squared_cross_mark:', unicode: '❎' },
|
|
1371
|
+
{ text: ':white_check_mark:', unicode: '✅' },
|
|
1372
|
+
{ text: ':loop:', unicode: '➿' },
|
|
1373
|
+
{ text: ':m:', unicode: 'Ⓜ️' },
|
|
1374
|
+
{ text: ':atm:', unicode: '🏧' },
|
|
1375
|
+
{ text: ':sa:', unicode: '🈂️' },
|
|
1376
|
+
{ text: ':passport_control:', unicode: '🛂' },
|
|
1377
|
+
{ text: ':customs:', unicode: '🛃' },
|
|
1378
|
+
{ text: ':baggage_claim:', unicode: '🛄' },
|
|
1379
|
+
{ text: ':left_luggage:', unicode: '🛅' },
|
|
1380
|
+
{ text: ':wheelchair:', unicode: '♿' },
|
|
1381
|
+
{ text: ':no_smoking:', unicode: '🚭' },
|
|
1382
|
+
{ text: ':wc:', unicode: '🚾' },
|
|
1383
|
+
{ text: ':parking:', unicode: '🅿️' },
|
|
1384
|
+
{ text: ':potable_water:', unicode: '🚰' },
|
|
1385
|
+
{ text: ':mens:', unicode: '🚹' },
|
|
1386
|
+
{ text: ':womens:', unicode: '🚺' },
|
|
1387
|
+
{ text: ':baby_symbol:', unicode: '🚼' },
|
|
1388
|
+
{ text: ':restroom:', unicode: '🚻' },
|
|
1389
|
+
{ text: ':put_litter_in_its_place:', unicode: '🚮' },
|
|
1390
|
+
{ text: ':cinema:', unicode: '🎦' },
|
|
1391
|
+
{ text: ':signal_strength:', unicode: '📶' },
|
|
1392
|
+
{ text: ':koko:', unicode: '🈁' },
|
|
1393
|
+
{ text: ':ng:', unicode: '🆖' },
|
|
1394
|
+
{ text: ':ok:', unicode: '🆗' },
|
|
1395
|
+
{ text: ':up:', unicode: '🆙' },
|
|
1396
|
+
{ text: ':cool:', unicode: '🆒' },
|
|
1397
|
+
{ text: ':new:', unicode: '🆕' },
|
|
1398
|
+
{ text: ':free:', unicode: '🆓' },
|
|
1399
|
+
{ text: ':zero:', unicode: '0️⃣' },
|
|
1400
|
+
{ text: ':one:', unicode: '1️⃣' },
|
|
1401
|
+
{ text: ':two:', unicode: '2️⃣' },
|
|
1402
|
+
{ text: ':three:', unicode: '3️⃣' },
|
|
1403
|
+
{ text: ':four:', unicode: '4️⃣' },
|
|
1404
|
+
{ text: ':five:', unicode: '5️⃣' },
|
|
1405
|
+
{ text: ':six:', unicode: '6️⃣' },
|
|
1406
|
+
{ text: ':seven:', unicode: '7️⃣' },
|
|
1407
|
+
{ text: ':eight:', unicode: '8️⃣' },
|
|
1408
|
+
{ text: ':nine:', unicode: '9️⃣' },
|
|
1409
|
+
{ text: ':keycap_ten:', unicode: '🔟' },
|
|
1410
|
+
{ text: ':asterisk:', unicode: '*️⃣' },
|
|
1411
|
+
{ text: ':hash:', unicode: '#️⃣' },
|
|
1412
|
+
{ text: ':information_source:', unicode: 'ℹ️' },
|
|
1413
|
+
{ text: ':abc:', unicode: '🔤' },
|
|
1414
|
+
{ text: ':abcd:', unicode: '🔡' },
|
|
1415
|
+
{ text: ':capital_abcd:', unicode: '🔠' },
|
|
1416
|
+
{ text: ':symbols:', unicode: '🔣' },
|
|
1417
|
+
{ text: ':wavy_dash:', unicode: '〰️' },
|
|
1418
|
+
{ text: ':curly_loop:', unicode: '➰' },
|
|
1419
|
+
{ text: ':heavy_check_mark:', unicode: '✔️' },
|
|
1420
|
+
{ text: ':arrows_clockwise:', unicode: '🔃' },
|
|
1421
|
+
{ text: ':arrows_counterclockwise:', unicode: '🔄' },
|
|
1422
|
+
{ text: ':arrow_forward:', unicode: '▶️' },
|
|
1423
|
+
{ text: ':fast_forward:', unicode: '⏩' },
|
|
1424
|
+
{ text: ':next_track_button:', unicode: '⏭️' },
|
|
1425
|
+
{ text: ':play_or_pause_button:', unicode: '⏯️' },
|
|
1426
|
+
{ text: ':arrow_backward:', unicode: '◀️' },
|
|
1427
|
+
{ text: ':rewind:', unicode: '⏪' },
|
|
1428
|
+
{ text: ':previous_track_button:', unicode: '⏮️' },
|
|
1429
|
+
{ text: ':arrow_up_small:', unicode: '🔼' },
|
|
1430
|
+
{ text: ':arrow_double_up:', unicode: '⏫' },
|
|
1431
|
+
{ text: ':arrow_down_small:', unicode: '🔽' },
|
|
1432
|
+
{ text: ':arrow_double_down:', unicode: '⏬' },
|
|
1433
|
+
{ text: ':pause_button:', unicode: '⏸️' },
|
|
1434
|
+
{ text: ':stop_button:', unicode: '⏹️' },
|
|
1435
|
+
{ text: ':record_button:', unicode: '⏺️' },
|
|
1436
|
+
{ text: ':twisted_rightwards_arrows:', unicode: '🔀' },
|
|
1437
|
+
{ text: ':repeat:', unicode: '🔁' },
|
|
1438
|
+
{ text: ':repeat_one:', unicode: '🔂' },
|
|
1439
|
+
{ text: ':arrow_right:', unicode: '➡️' },
|
|
1440
|
+
{ text: ':arrow_left:', unicode: '⬅️' },
|
|
1441
|
+
{ text: ':arrow_up:', unicode: '⬆️' },
|
|
1442
|
+
{ text: ':arrow_down:', unicode: '⬇️' },
|
|
1443
|
+
{ text: ':arrow_upper_right:', unicode: '↗️' },
|
|
1444
|
+
{ text: ':arrow_lower_right:', unicode: '↘️' },
|
|
1445
|
+
{ text: ':arrow_lower_left:', unicode: '↙️' },
|
|
1446
|
+
{ text: ':arrow_upper_left:', unicode: '↖️' },
|
|
1447
|
+
{ text: ':arrow_up_down:', unicode: '↕️' },
|
|
1448
|
+
{ text: ':left_right_arrow:', unicode: '↔️' },
|
|
1449
|
+
{ text: ':leftwards_arrow_with_hook:', unicode: '↩️' },
|
|
1450
|
+
{ text: ':arrow_right_hook:', unicode: '↪️' },
|
|
1451
|
+
{ text: ':arrow_heading_up:', unicode: '⤴️' },
|
|
1452
|
+
{ text: ':arrow_heading_down:', unicode: '⤵️' },
|
|
1453
|
+
{ text: ':eject:', unicode: '⏏️' },
|
|
1454
|
+
{ text: ':black_square_button:', unicode: '🔲' },
|
|
1455
|
+
{ text: ':white_square_button:', unicode: '🔳' },
|
|
1456
|
+
{ text: ':radio_button:', unicode: '🔘' },
|
|
1457
|
+
{ text: ':red_circle:', unicode: '🔴' },
|
|
1458
|
+
{ text: ':large_blue_circle:', unicode: '🔵' },
|
|
1459
|
+
{ text: ':black_circle:', unicode: '⚫' },
|
|
1460
|
+
{ text: ':white_circle:', unicode: '⚪' },
|
|
1461
|
+
{ text: ':large_orange_diamond:', unicode: '🔶' },
|
|
1462
|
+
{ text: ':large_blue_diamond:', unicode: '🔷' },
|
|
1463
|
+
{ text: ':small_orange_diamond:', unicode: '🔸' },
|
|
1464
|
+
{ text: ':small_blue_diamond:', unicode: '🔹' },
|
|
1465
|
+
{ text: ':small_red_triangle:', unicode: '🔺' },
|
|
1466
|
+
{ text: ':small_red_triangle_down:', unicode: '🔻' },
|
|
1467
|
+
{ text: ':diamond_shape_with_a_dot_inside:', unicode: '💠' },
|
|
1468
|
+
{ text: ':black_small_square:', unicode: '▪️' },
|
|
1469
|
+
{ text: ':white_small_square:', unicode: '▫️' },
|
|
1470
|
+
{ text: ':black_medium_square:', unicode: '◼️' },
|
|
1471
|
+
{ text: ':white_medium_square:', unicode: '◻️' },
|
|
1472
|
+
{ text: ':black_medium_small_square:', unicode: '◾' },
|
|
1473
|
+
{ text: ':white_medium_small_square:', unicode: '◽' },
|
|
1474
|
+
{ text: ':black_large_square:', unicode: '⬛' },
|
|
1475
|
+
{ text: ':white_large_square:', unicode: '⬜' }
|
|
1476
|
+
];
|
|
1477
|
+
const flags = [
|
|
1478
|
+
{ text: ':andorra:', unicode: '🇦🇩' },
|
|
1479
|
+
{ text: ':united_arab_emirates:', unicode: '🇦🇪' },
|
|
1480
|
+
{ text: ':afghanistan:', unicode: '🇦🇫' },
|
|
1481
|
+
{ text: ':antigua_barbuda:', unicode: '🇦🇬' },
|
|
1482
|
+
{ text: ':anguilla:', unicode: '🇦🇮' },
|
|
1483
|
+
{ text: ':albania:', unicode: '🇦🇱' },
|
|
1484
|
+
{ text: ':armenia:', unicode: '🇦🇲' },
|
|
1485
|
+
{ text: ':angola:', unicode: '🇦🇴' },
|
|
1486
|
+
{ text: ':antarctica:', unicode: '🇦🇶' },
|
|
1487
|
+
{ text: ':argentina:', unicode: '🇦🇷' },
|
|
1488
|
+
{ text: ':american_samoa:', unicode: '🇦🇸' },
|
|
1489
|
+
{ text: ':austria:', unicode: '🇦🇹' },
|
|
1490
|
+
{ text: ':australia:', unicode: '🇦🇺' },
|
|
1491
|
+
{ text: ':aruba:', unicode: '🇦🇼' },
|
|
1492
|
+
{ text: ':aland_islands:', unicode: '🇦🇽' },
|
|
1493
|
+
{ text: ':azerbaijan:', unicode: '🇦🇿' },
|
|
1494
|
+
{ text: ':bosnia_herzegovina:', unicode: '🇧🇦' },
|
|
1495
|
+
{ text: ':barbados:', unicode: '🇧🇧' },
|
|
1496
|
+
{ text: ':bangladesh:', unicode: '🇧🇩' },
|
|
1497
|
+
{ text: ':belgium:', unicode: '🇧🇪' },
|
|
1498
|
+
{ text: ':burkina_faso:', unicode: '🇧🇫' },
|
|
1499
|
+
{ text: ':bulgaria:', unicode: '🇧🇬' },
|
|
1500
|
+
{ text: ':bahrain:', unicode: '🇧🇭' },
|
|
1501
|
+
{ text: ':burundi:', unicode: '🇧🇮' },
|
|
1502
|
+
{ text: ':benin:', unicode: '🇧🇯' },
|
|
1503
|
+
{ text: ':st_barthelemy:', unicode: '🇧🇱' },
|
|
1504
|
+
{ text: ':bermuda:', unicode: '🇧🇲' },
|
|
1505
|
+
{ text: ':brunei:', unicode: '🇧🇳' },
|
|
1506
|
+
{ text: ':bolivia:', unicode: '🇧🇴' },
|
|
1507
|
+
{ text: ':caribbean_netherlands:', unicode: '🇧🇶' },
|
|
1508
|
+
{ text: ':brazil:', unicode: '🇧🇷' },
|
|
1509
|
+
{ text: ':bahamas:', unicode: '🇧🇸' },
|
|
1510
|
+
{ text: ':bhutan:', unicode: '🇧🇹' },
|
|
1511
|
+
{ text: ':bouvet_island:', unicode: '🇧🇻' },
|
|
1512
|
+
{ text: ':botswana:', unicode: '🇧🇼' },
|
|
1513
|
+
{ text: ':belarus:', unicode: '🇧🇾' },
|
|
1514
|
+
{ text: ':belize:', unicode: '🇧🇿' },
|
|
1515
|
+
{ text: ':canada:', unicode: '🇨🇦' },
|
|
1516
|
+
{ text: ':cocos_islands:', unicode: '🇨🇨' },
|
|
1517
|
+
{ text: ':congo_kinshasa:', unicode: '🇨🇩' },
|
|
1518
|
+
{ text: ':central_african_republic:', unicode: '🇨🇫' },
|
|
1519
|
+
{ text: ':congo_brazzaville:', unicode: '🇨🇬' },
|
|
1520
|
+
{ text: ':switzerland:', unicode: '🇨🇭' },
|
|
1521
|
+
{ text: ':cote_divoire:', unicode: '🇨🇮' },
|
|
1522
|
+
{ text: ':cook_islands:', unicode: '🇨🇰' },
|
|
1523
|
+
{ text: ':chile:', unicode: '🇨🇱' },
|
|
1524
|
+
{ text: ':cameroon:', unicode: '🇨🇲' },
|
|
1525
|
+
{ text: ':cn:', unicode: '🇨🇳' },
|
|
1526
|
+
{ text: ':colombia:', unicode: '🇨🇴' },
|
|
1527
|
+
{ text: ':clipperton_island:', unicode: '🇨🇵' },
|
|
1528
|
+
{ text: ':costa_rica:', unicode: '🇨🇷' },
|
|
1529
|
+
{ text: ':cuba:', unicode: '🇨🇺' },
|
|
1530
|
+
{ text: ':cape_verde:', unicode: '🇨🇻' },
|
|
1531
|
+
{ text: ':curacao:', unicode: '🇨🇼' },
|
|
1532
|
+
{ text: ':christmas_island:', unicode: '🇨🇽' },
|
|
1533
|
+
{ text: ':cyprus:', unicode: '🇨🇾' },
|
|
1534
|
+
{ text: ':czech_republic:', unicode: '🇨🇿' },
|
|
1535
|
+
{ text: ':de:', unicode: '🇩🇪' },
|
|
1536
|
+
{ text: ':diego_garcia:', unicode: '🇩🇬' },
|
|
1537
|
+
{ text: ':djibouti:', unicode: '🇩🇯' },
|
|
1538
|
+
{ text: ':denmark:', unicode: '🇩🇰' },
|
|
1539
|
+
{ text: ':dominica:', unicode: '🇩🇲' },
|
|
1540
|
+
{ text: ':dominican_republic:', unicode: '🇩🇴' },
|
|
1541
|
+
{ text: ':algeria:', unicode: '🇩🇿' },
|
|
1542
|
+
{ text: ':ceuta_melilla:', unicode: '🇪🇦' },
|
|
1543
|
+
{ text: ':ecuador:', unicode: '🇪🇨' },
|
|
1544
|
+
{ text: ':estonia:', unicode: '🇪🇪' },
|
|
1545
|
+
{ text: ':egypt:', unicode: '🇪🇬' },
|
|
1546
|
+
{ text: ':western_sahara:', unicode: '🇪🇭' },
|
|
1547
|
+
{ text: ':eritrea:', unicode: '🇪🇷' },
|
|
1548
|
+
{ text: ':es:', unicode: '🇪🇸' },
|
|
1549
|
+
{ text: ':ethiopia:', unicode: '🇪🇹' },
|
|
1550
|
+
{ text: ':eu:', unicode: '🇪🇺' },
|
|
1551
|
+
{ text: ':finland:', unicode: '🇫🇮' },
|
|
1552
|
+
{ text: ':fiji:', unicode: '🇫🇯' },
|
|
1553
|
+
{ text: ':falkland_islands:', unicode: '🇫🇰' },
|
|
1554
|
+
{ text: ':micronesia:', unicode: '🇫🇲' },
|
|
1555
|
+
{ text: ':faroe_islands:', unicode: '🇫🇴' },
|
|
1556
|
+
{ text: ':fr:', unicode: '🇫🇷' },
|
|
1557
|
+
{ text: ':gabon:', unicode: '🇬🇦' },
|
|
1558
|
+
{ text: ':gb:', unicode: '🇬🇧' },
|
|
1559
|
+
{ text: ':grenada:', unicode: '🇬🇩' },
|
|
1560
|
+
{ text: ':georgia:', unicode: '🇬🇪' },
|
|
1561
|
+
{ text: ':french_guiana:', unicode: '🇬🇫' },
|
|
1562
|
+
{ text: ':guernsey:', unicode: '🇬🇬' },
|
|
1563
|
+
{ text: ':ghana:', unicode: '🇬🇭' },
|
|
1564
|
+
{ text: ':gibraltar:', unicode: '🇬🇮' },
|
|
1565
|
+
{ text: ':greenland:', unicode: '🇬🇱' },
|
|
1566
|
+
{ text: ':gambia:', unicode: '🇬🇲' },
|
|
1567
|
+
{ text: ':guinea:', unicode: '🇬🇳' },
|
|
1568
|
+
{ text: ':guadeloupe:', unicode: '🇬🇵' },
|
|
1569
|
+
{ text: ':equatorial_guinea:', unicode: '🇬🇶' },
|
|
1570
|
+
{ text: ':greece:', unicode: '🇬🇷' },
|
|
1571
|
+
{ text: ':south_georgia_south_sandwich_islands:', unicode: '🇬🇸' },
|
|
1572
|
+
{ text: ':guatemala:', unicode: '🇬🇹' },
|
|
1573
|
+
{ text: ':guam:', unicode: '🇬🇺' },
|
|
1574
|
+
{ text: ':guinea_bissau:', unicode: '🇬🇼' },
|
|
1575
|
+
{ text: ':guyana:', unicode: '🇬🇾' },
|
|
1576
|
+
{ text: ':hong_kong:', unicode: '🇭🇰' },
|
|
1577
|
+
{ text: ':heard_mcdonald_islands:', unicode: '🇭🇲' },
|
|
1578
|
+
{ text: ':honduras:', unicode: '🇭🇳' },
|
|
1579
|
+
{ text: ':croatia:', unicode: '🇭🇷' },
|
|
1580
|
+
{ text: ':haiti:', unicode: '🇭🇹' },
|
|
1581
|
+
{ text: ':hungary:', unicode: '🇭🇺' },
|
|
1582
|
+
{ text: ':canary_islands:', unicode: '🇮🇨' },
|
|
1583
|
+
{ text: ':indonesia:', unicode: '🇮🇩' },
|
|
1584
|
+
{ text: ':ireland:', unicode: '🇮🇪' },
|
|
1585
|
+
{ text: ':israel:', unicode: '🇮🇱' },
|
|
1586
|
+
{ text: ':isle_of_man:', unicode: '🇮🇲' },
|
|
1587
|
+
{ text: ':india:', unicode: '🇮🇳' },
|
|
1588
|
+
{ text: ':british_indian_ocean_territory:', unicode: '🇮🇴' },
|
|
1589
|
+
{ text: ':iraq:', unicode: '🇮🇶' },
|
|
1590
|
+
{ text: ':iran:', unicode: '🇮🇷' },
|
|
1591
|
+
{ text: ':iceland:', unicode: '🇮🇸' },
|
|
1592
|
+
{ text: ':it:', unicode: '🇮🇹' },
|
|
1593
|
+
{ text: ':jersey:', unicode: '🇯🇪' },
|
|
1594
|
+
{ text: ':jamaica:', unicode: '🇯🇲' },
|
|
1595
|
+
{ text: ':jordan:', unicode: '🇯🇴' },
|
|
1596
|
+
{ text: ':jp:', unicode: '🇯🇵' },
|
|
1597
|
+
{ text: ':kenya:', unicode: '🇰🇪' },
|
|
1598
|
+
{ text: ':kyrgyzstan:', unicode: '🇰🇬' },
|
|
1599
|
+
{ text: ':cambodia:', unicode: '🇰🇭' },
|
|
1600
|
+
{ text: ':kiribati:', unicode: '🇰🇮' },
|
|
1601
|
+
{ text: ':comoros:', unicode: '🇰🇲' },
|
|
1602
|
+
{ text: ':st_kitts_nevis:', unicode: '🇰🇳' },
|
|
1603
|
+
{ text: ':north_korea:', unicode: '🇰🇵' },
|
|
1604
|
+
{ text: ':kr:', unicode: '🇰🇷' },
|
|
1605
|
+
{ text: ':kuwait:', unicode: '🇰🇼' },
|
|
1606
|
+
{ text: ':cayman_islands:', unicode: '🇰🇾' },
|
|
1607
|
+
{ text: ':kazakhstan:', unicode: '🇰🇿' },
|
|
1608
|
+
{ text: ':laos:', unicode: '🇱🇦' },
|
|
1609
|
+
{ text: ':lebanon:', unicode: '🇱🇧' },
|
|
1610
|
+
{ text: ':st_lucia:', unicode: '🇱🇨' },
|
|
1611
|
+
{ text: ':liechtenstein:', unicode: '🇱🇮' },
|
|
1612
|
+
{ text: ':sri_lanka:', unicode: '🇱🇰' },
|
|
1613
|
+
{ text: ':liberia:', unicode: '🇱🇷' },
|
|
1614
|
+
{ text: ':lesotho:', unicode: '🇱🇸' },
|
|
1615
|
+
{ text: ':lithuania:', unicode: '🇱🇹' },
|
|
1616
|
+
{ text: ':luxembourg:', unicode: '🇱🇺' },
|
|
1617
|
+
{ text: ':latvia:', unicode: '🇱🇻' },
|
|
1618
|
+
{ text: ':libya:', unicode: '🇱🇾' },
|
|
1619
|
+
{ text: ':morocco:', unicode: '🇲🇦' },
|
|
1620
|
+
{ text: ':monaco:', unicode: '🇲🇨' },
|
|
1621
|
+
{ text: ':moldova:', unicode: '🇲🇩' },
|
|
1622
|
+
{ text: ':montenegro:', unicode: '🇲🇪' },
|
|
1623
|
+
{ text: ':st_martin:', unicode: '🇲🇫' },
|
|
1624
|
+
{ text: ':madagascar:', unicode: '🇲🇬' },
|
|
1625
|
+
{ text: ':marshall_islands:', unicode: '🇲🇭' },
|
|
1626
|
+
{ text: ':macedonia:', unicode: '🇲🇰' },
|
|
1627
|
+
{ text: ':mali:', unicode: '🇲🇱' },
|
|
1628
|
+
{ text: ':myanmar:', unicode: '🇲🇲' },
|
|
1629
|
+
{ text: ':mongolia:', unicode: '🇲🇳' },
|
|
1630
|
+
{ text: ':macau:', unicode: '🇲🇴' },
|
|
1631
|
+
{ text: ':northern_mariana_islands:', unicode: '🇲🇵' },
|
|
1632
|
+
{ text: ':martinique:', unicode: '🇲🇶' },
|
|
1633
|
+
{ text: ':mauritania:', unicode: '🇲🇷' },
|
|
1634
|
+
{ text: ':montserrat:', unicode: '🇲🇸' },
|
|
1635
|
+
{ text: ':malta:', unicode: '🇲🇹' },
|
|
1636
|
+
{ text: ':mauritius:', unicode: '🇲🇺' },
|
|
1637
|
+
{ text: ':maldives:', unicode: '🇲🇻' },
|
|
1638
|
+
{ text: ':malawi:', unicode: '🇲🇼' },
|
|
1639
|
+
{ text: ':mexico:', unicode: '🇲🇽' },
|
|
1640
|
+
{ text: ':malaysia:', unicode: '🇲🇾' },
|
|
1641
|
+
{ text: ':mozambique:', unicode: '🇲🇿' },
|
|
1642
|
+
{ text: ':namibia:', unicode: '🇳🇦' },
|
|
1643
|
+
{ text: ':new_caledonia:', unicode: '🇳🇨' },
|
|
1644
|
+
{ text: ':niger:', unicode: '🇳🇪' },
|
|
1645
|
+
{ text: ':norfolk_island:', unicode: '🇳🇫' },
|
|
1646
|
+
{ text: ':nigeria:', unicode: '🇳🇬' },
|
|
1647
|
+
{ text: ':nicaragua:', unicode: '🇳🇮' },
|
|
1648
|
+
{ text: ':netherlands:', unicode: '🇳🇱' },
|
|
1649
|
+
{ text: ':norway:', unicode: '🇳🇴' },
|
|
1650
|
+
{ text: ':nepal:', unicode: '🇳🇵' },
|
|
1651
|
+
{ text: ':nauru:', unicode: '🇳🇷' },
|
|
1652
|
+
{ text: ':niue:', unicode: '🇳🇺' },
|
|
1653
|
+
{ text: ':new_zealand:', unicode: '🇳🇿' },
|
|
1654
|
+
{ text: ':oman:', unicode: '🇴🇲' },
|
|
1655
|
+
{ text: ':panama:', unicode: '🇵🇦' },
|
|
1656
|
+
{ text: ':peru:', unicode: '🇵🇪' },
|
|
1657
|
+
{ text: ':french_polynesia:', unicode: '🇵🇫' },
|
|
1658
|
+
{ text: ':papua_new_guinea:', unicode: '🇵🇬' },
|
|
1659
|
+
{ text: ':philippines:', unicode: '🇵🇭' },
|
|
1660
|
+
{ text: ':pakistan:', unicode: '🇵🇰' },
|
|
1661
|
+
{ text: ':poland:', unicode: '🇵🇱' },
|
|
1662
|
+
{ text: ':st_pierre_miquelon:', unicode: '🇵🇲' },
|
|
1663
|
+
{ text: ':pitcairn_islands:', unicode: '🇵🇳' },
|
|
1664
|
+
{ text: ':puerto_rico:', unicode: '🇵🇷' },
|
|
1665
|
+
{ text: ':palestinian_territories:', unicode: '🇵🇸' },
|
|
1666
|
+
{ text: ':portugal:', unicode: '🇵🇹' },
|
|
1667
|
+
{ text: ':palau:', unicode: '🇵🇼' },
|
|
1668
|
+
{ text: ':paraguay:', unicode: '🇵🇾' },
|
|
1669
|
+
{ text: ':qatar:', unicode: '🇶🇦' },
|
|
1670
|
+
{ text: ':reunion:', unicode: '🇷🇪' },
|
|
1671
|
+
{ text: ':romania:', unicode: '🇷🇴' },
|
|
1672
|
+
{ text: ':serbia:', unicode: '🇷🇸' },
|
|
1673
|
+
{ text: ':ru:', unicode: '🇷🇺' },
|
|
1674
|
+
{ text: ':rwanda:', unicode: '🇷🇼' },
|
|
1675
|
+
{ text: ':saudi_arabia:', unicode: '🇸🇦' },
|
|
1676
|
+
{ text: ':solomon_islands:', unicode: '🇸🇧' },
|
|
1677
|
+
{ text: ':seychelles:', unicode: '🇸🇨' },
|
|
1678
|
+
{ text: ':sudan:', unicode: '🇸🇩' },
|
|
1679
|
+
{ text: ':sweden:', unicode: '🇸🇪' },
|
|
1680
|
+
{ text: ':singapore:', unicode: '🇸🇬' },
|
|
1681
|
+
{ text: ':st_helena:', unicode: '🇸🇭' },
|
|
1682
|
+
{ text: ':slovenia:', unicode: '🇸🇮' },
|
|
1683
|
+
{ text: ':svalbard_jan_mayen:', unicode: '🇸🇯' },
|
|
1684
|
+
{ text: ':slovakia:', unicode: '🇸🇰' },
|
|
1685
|
+
{ text: ':sierra_leone:', unicode: '🇸🇱' },
|
|
1686
|
+
{ text: ':san_marino:', unicode: '🇸🇲' },
|
|
1687
|
+
{ text: ':senegal:', unicode: '🇸🇳' },
|
|
1688
|
+
{ text: ':somalia:', unicode: '🇸🇴' },
|
|
1689
|
+
{ text: ':suriname:', unicode: '🇸🇷' },
|
|
1690
|
+
{ text: ':south_sudan:', unicode: '🇸🇸' },
|
|
1691
|
+
{ text: ':sao_tome_principe:', unicode: '🇸🇹' },
|
|
1692
|
+
{ text: ':el_salvador:', unicode: '🇸🇻' },
|
|
1693
|
+
{ text: ':sint_maarten:', unicode: '🇸🇽' },
|
|
1694
|
+
{ text: ':syria:', unicode: '🇸🇾' },
|
|
1695
|
+
{ text: ':swaziland:', unicode: '🇸🇿' },
|
|
1696
|
+
{ text: ':tristan_da_cunha:', unicode: '🇹🇦' },
|
|
1697
|
+
{ text: ':turks_caicos_islands:', unicode: '🇹🇨' },
|
|
1698
|
+
{ text: ':chad:', unicode: '🇹🇩' },
|
|
1699
|
+
{ text: ':french_southern_territories:', unicode: '🇹🇫' },
|
|
1700
|
+
{ text: ':togo:', unicode: '🇹🇬' },
|
|
1701
|
+
{ text: ':thailand:', unicode: '🇹🇭' },
|
|
1702
|
+
{ text: ':tajikistan:', unicode: '🇹🇯' },
|
|
1703
|
+
{ text: ':tokelau:', unicode: '🇹🇰' },
|
|
1704
|
+
{ text: ':timor_leste:', unicode: '🇹🇱' },
|
|
1705
|
+
{ text: ':turkmenistan:', unicode: '🇹🇲' },
|
|
1706
|
+
{ text: ':tunisia:', unicode: '🇹🇳' },
|
|
1707
|
+
{ text: ':tonga:', unicode: '🇹🇴' },
|
|
1708
|
+
{ text: ':tr:', unicode: '🇹🇷' },
|
|
1709
|
+
{ text: ':trinidad_tobago:', unicode: '🇹🇹' },
|
|
1710
|
+
{ text: ':tuvalu:', unicode: '🇹🇻' },
|
|
1711
|
+
{ text: ':taiwan:', unicode: '🇹🇼' },
|
|
1712
|
+
{ text: ':tanzania:', unicode: '🇹🇿' },
|
|
1713
|
+
{ text: ':ukraine:', unicode: '🇺🇦' },
|
|
1714
|
+
{ text: ':uganda:', unicode: '🇺🇬' },
|
|
1715
|
+
{ text: ':us_outlying_islands:', unicode: '🇺🇲' },
|
|
1716
|
+
{ text: ':united_nations:', unicode: '🇺🇳' },
|
|
1717
|
+
{ text: ':us:', unicode: '🇺🇸' },
|
|
1718
|
+
{ text: ':uruguay:', unicode: '🇺🇾' },
|
|
1719
|
+
{ text: ':uzbekistan:', unicode: '🇺🇿' },
|
|
1720
|
+
{ text: ':vatican_city:', unicode: '🇻🇦' },
|
|
1721
|
+
{ text: ':st_vincent_grenadines:', unicode: '🇻🇨' },
|
|
1722
|
+
{ text: ':venezuela:', unicode: '🇻🇪' },
|
|
1723
|
+
{ text: ':british_virgin_islands:', unicode: '🇻🇬' },
|
|
1724
|
+
{ text: ':us_virgin_islands:', unicode: '🇻🇮' },
|
|
1725
|
+
{ text: ':vietnam:', unicode: '🇻🇳' },
|
|
1726
|
+
{ text: ':vanuatu:', unicode: '🇻🇺' },
|
|
1727
|
+
{ text: ':wallis_futuna:', unicode: '🇼🇫' },
|
|
1728
|
+
{ text: ':samoa:', unicode: '🇼🇸' },
|
|
1729
|
+
{ text: ':kosovo:', unicode: '🇽🇰' },
|
|
1730
|
+
{ text: ':yemen:', unicode: '🇾🇪' },
|
|
1731
|
+
{ text: ':mayotte:', unicode: '🇾🇹' },
|
|
1732
|
+
{ text: ':south_africa:', unicode: '🇿🇦' },
|
|
1733
|
+
{ text: ':zambia:', unicode: '🇿🇲' },
|
|
1734
|
+
{ text: ':zimbabwe:', unicode: '🇿🇼' },
|
|
1735
|
+
{ text: ':black_flag:', unicode: '🏴' },
|
|
1736
|
+
{ text: ':white_flag:', unicode: '🏳️' },
|
|
1737
|
+
{ text: ':rainbow_flag:', unicode: '🏳️🌈' },
|
|
1738
|
+
{ text: ':transgender_flag:', unicode: '🏳️⚧️' },
|
|
1739
|
+
{ text: ':pirate_flag:', unicode: '🏴☠️' },
|
|
1740
|
+
{ text: ':triangular_flag_on_post:', unicode: '🚩' },
|
|
1741
|
+
{ text: ':crossed_flags:', unicode: '🎌' },
|
|
1742
|
+
{ text: ':checkered_flag:', unicode: '🏁' }
|
|
1743
|
+
];
|
|
1744
|
+
export const emojiCategories = [
|
|
1745
|
+
{ name: 'emotions', emojis: emotions },
|
|
1746
|
+
{ name: 'people', emojis: people },
|
|
1747
|
+
{ name: 'nature', emojis: nature },
|
|
1748
|
+
{ name: 'food', emojis: food },
|
|
1749
|
+
{ name: 'travel', emojis: travel },
|
|
1750
|
+
{ name: 'activities', emojis: activities },
|
|
1751
|
+
{ name: 'objects', emojis: objects },
|
|
1752
|
+
{ name: 'symbols', emojis: symbols },
|
|
1753
|
+
{ name: 'flags', emojis: flags }
|
|
1754
|
+
];
|