[READ-ONLY] a fast, modern browser for the npm registry
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: render emojis in readmes (#277)

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: Daniel Roe <daniel@roe.dev>

authored by

btea
autofix-ci[bot]
Daniel Roe
and committed by
GitHub
0811e38f 60a77598

+1921 -1
+2 -1
server/utils/readme.ts
··· 4 4 import type { ReadmeResponse } from '#shared/types/readme' 5 5 import { convertBlobToRawUrl, type RepositoryInfo } from '#shared/utils/git-providers' 6 6 import { highlightCodeSync } from './shiki' 7 + import { convertToEmoji } from '#shared/utils/emoji' 7 8 8 9 /** 9 10 * Playground provider configuration ··· 407 408 }) 408 409 409 410 return { 410 - html: sanitized, 411 + html: convertToEmoji(sanitized), 411 412 playgroundLinks: collectedLinks, 412 413 } 413 414 }
+1919
shared/utils/emoji.ts
··· 1 + // copied from https://github.com/markdown-it/markdown-it-emoji/blob/master/lib/data/full.mjs 2 + const emojis = { 3 + '100': '๐Ÿ’ฏ', 4 + '1234': '๐Ÿ”ข', 5 + 'grinning': '๐Ÿ˜€', 6 + 'smiley': '๐Ÿ˜ƒ', 7 + 'smile': '๐Ÿ˜„', 8 + 'grin': '๐Ÿ˜', 9 + 'laughing': '๐Ÿ˜†', 10 + 'satisfied': '๐Ÿ˜†', 11 + 'sweat_smile': '๐Ÿ˜…', 12 + 'rofl': '๐Ÿคฃ', 13 + 'joy': '๐Ÿ˜‚', 14 + 'slightly_smiling_face': '๐Ÿ™‚', 15 + 'upside_down_face': '๐Ÿ™ƒ', 16 + 'melting_face': '๐Ÿซ ', 17 + 'wink': '๐Ÿ˜‰', 18 + 'blush': '๐Ÿ˜Š', 19 + 'innocent': '๐Ÿ˜‡', 20 + 'smiling_face_with_three_hearts': '๐Ÿฅฐ', 21 + 'heart_eyes': '๐Ÿ˜', 22 + 'star_struck': '๐Ÿคฉ', 23 + 'kissing_heart': '๐Ÿ˜˜', 24 + 'kissing': '๐Ÿ˜—', 25 + 'relaxed': 'โ˜บ๏ธ', 26 + 'kissing_closed_eyes': '๐Ÿ˜š', 27 + 'kissing_smiling_eyes': '๐Ÿ˜™', 28 + 'smiling_face_with_tear': '๐Ÿฅฒ', 29 + 'yum': '๐Ÿ˜‹', 30 + 'stuck_out_tongue': '๐Ÿ˜›', 31 + 'stuck_out_tongue_winking_eye': '๐Ÿ˜œ', 32 + 'zany_face': '๐Ÿคช', 33 + 'stuck_out_tongue_closed_eyes': '๐Ÿ˜', 34 + 'money_mouth_face': '๐Ÿค‘', 35 + 'hugs': '๐Ÿค—', 36 + 'hand_over_mouth': '๐Ÿคญ', 37 + 'face_with_open_eyes_and_hand_over_mouth': '๐Ÿซข', 38 + 'face_with_peeking_eye': '๐Ÿซฃ', 39 + 'shushing_face': '๐Ÿคซ', 40 + 'thinking': '๐Ÿค”', 41 + 'saluting_face': '๐Ÿซก', 42 + 'zipper_mouth_face': '๐Ÿค', 43 + 'raised_eyebrow': '๐Ÿคจ', 44 + 'neutral_face': '๐Ÿ˜', 45 + 'expressionless': '๐Ÿ˜‘', 46 + 'no_mouth': '๐Ÿ˜ถ', 47 + 'dotted_line_face': '๐Ÿซฅ', 48 + 'face_in_clouds': '๐Ÿ˜ถโ€๐ŸŒซ๏ธ', 49 + 'smirk': '๐Ÿ˜', 50 + 'unamused': '๐Ÿ˜’', 51 + 'roll_eyes': '๐Ÿ™„', 52 + 'grimacing': '๐Ÿ˜ฌ', 53 + 'face_exhaling': '๐Ÿ˜ฎโ€๐Ÿ’จ', 54 + 'lying_face': '๐Ÿคฅ', 55 + 'shaking_face': '๐Ÿซจ', 56 + 'relieved': '๐Ÿ˜Œ', 57 + 'pensive': '๐Ÿ˜”', 58 + 'sleepy': '๐Ÿ˜ช', 59 + 'drooling_face': '๐Ÿคค', 60 + 'sleeping': '๐Ÿ˜ด', 61 + 'mask': '๐Ÿ˜ท', 62 + 'face_with_thermometer': '๐Ÿค’', 63 + 'face_with_head_bandage': '๐Ÿค•', 64 + 'nauseated_face': '๐Ÿคข', 65 + 'vomiting_face': '๐Ÿคฎ', 66 + 'sneezing_face': '๐Ÿคง', 67 + 'hot_face': '๐Ÿฅต', 68 + 'cold_face': '๐Ÿฅถ', 69 + 'woozy_face': '๐Ÿฅด', 70 + 'dizzy_face': '๐Ÿ˜ต', 71 + 'face_with_spiral_eyes': '๐Ÿ˜ตโ€๐Ÿ’ซ', 72 + 'exploding_head': '๐Ÿคฏ', 73 + 'cowboy_hat_face': '๐Ÿค ', 74 + 'partying_face': '๐Ÿฅณ', 75 + 'disguised_face': '๐Ÿฅธ', 76 + 'sunglasses': '๐Ÿ˜Ž', 77 + 'nerd_face': '๐Ÿค“', 78 + 'monocle_face': '๐Ÿง', 79 + 'confused': '๐Ÿ˜•', 80 + 'face_with_diagonal_mouth': '๐Ÿซค', 81 + 'worried': '๐Ÿ˜Ÿ', 82 + 'slightly_frowning_face': '๐Ÿ™', 83 + 'frowning_face': 'โ˜น๏ธ', 84 + 'open_mouth': '๐Ÿ˜ฎ', 85 + 'hushed': '๐Ÿ˜ฏ', 86 + 'astonished': '๐Ÿ˜ฒ', 87 + 'flushed': '๐Ÿ˜ณ', 88 + 'pleading_face': '๐Ÿฅบ', 89 + 'face_holding_back_tears': '๐Ÿฅน', 90 + 'frowning': '๐Ÿ˜ฆ', 91 + 'anguished': '๐Ÿ˜ง', 92 + 'fearful': '๐Ÿ˜จ', 93 + 'cold_sweat': '๐Ÿ˜ฐ', 94 + 'disappointed_relieved': '๐Ÿ˜ฅ', 95 + 'cry': '๐Ÿ˜ข', 96 + 'sob': '๐Ÿ˜ญ', 97 + 'scream': '๐Ÿ˜ฑ', 98 + 'confounded': '๐Ÿ˜–', 99 + 'persevere': '๐Ÿ˜ฃ', 100 + 'disappointed': '๐Ÿ˜ž', 101 + 'sweat': '๐Ÿ˜“', 102 + 'weary': '๐Ÿ˜ฉ', 103 + 'tired_face': '๐Ÿ˜ซ', 104 + 'yawning_face': '๐Ÿฅฑ', 105 + 'triumph': '๐Ÿ˜ค', 106 + 'rage': '๐Ÿ˜ก', 107 + 'pout': '๐Ÿ˜ก', 108 + 'angry': '๐Ÿ˜ ', 109 + 'cursing_face': '๐Ÿคฌ', 110 + 'smiling_imp': '๐Ÿ˜ˆ', 111 + 'imp': '๐Ÿ‘ฟ', 112 + 'skull': '๐Ÿ’€', 113 + 'skull_and_crossbones': 'โ˜ ๏ธ', 114 + 'hankey': '๐Ÿ’ฉ', 115 + 'poop': '๐Ÿ’ฉ', 116 + 'shit': '๐Ÿ’ฉ', 117 + 'clown_face': '๐Ÿคก', 118 + 'japanese_ogre': '๐Ÿ‘น', 119 + 'japanese_goblin': '๐Ÿ‘บ', 120 + 'ghost': '๐Ÿ‘ป', 121 + 'alien': '๐Ÿ‘ฝ', 122 + 'space_invader': '๐Ÿ‘พ', 123 + 'robot': '๐Ÿค–', 124 + 'smiley_cat': '๐Ÿ˜บ', 125 + 'smile_cat': '๐Ÿ˜ธ', 126 + 'joy_cat': '๐Ÿ˜น', 127 + 'heart_eyes_cat': '๐Ÿ˜ป', 128 + 'smirk_cat': '๐Ÿ˜ผ', 129 + 'kissing_cat': '๐Ÿ˜ฝ', 130 + 'scream_cat': '๐Ÿ™€', 131 + 'crying_cat_face': '๐Ÿ˜ฟ', 132 + 'pouting_cat': '๐Ÿ˜พ', 133 + 'see_no_evil': '๐Ÿ™ˆ', 134 + 'hear_no_evil': '๐Ÿ™‰', 135 + 'speak_no_evil': '๐Ÿ™Š', 136 + 'love_letter': '๐Ÿ’Œ', 137 + 'cupid': '๐Ÿ’˜', 138 + 'gift_heart': '๐Ÿ’', 139 + 'sparkling_heart': '๐Ÿ’–', 140 + 'heartpulse': '๐Ÿ’—', 141 + 'heartbeat': '๐Ÿ’“', 142 + 'revolving_hearts': '๐Ÿ’ž', 143 + 'two_hearts': '๐Ÿ’•', 144 + 'heart_decoration': '๐Ÿ’Ÿ', 145 + 'heavy_heart_exclamation': 'โฃ๏ธ', 146 + 'broken_heart': '๐Ÿ’”', 147 + 'heart_on_fire': 'โค๏ธโ€๐Ÿ”ฅ', 148 + 'mending_heart': 'โค๏ธโ€๐Ÿฉน', 149 + 'heart': 'โค๏ธ', 150 + 'pink_heart': '๐Ÿฉท', 151 + 'orange_heart': '๐Ÿงก', 152 + 'yellow_heart': '๐Ÿ’›', 153 + 'green_heart': '๐Ÿ’š', 154 + 'blue_heart': '๐Ÿ’™', 155 + 'light_blue_heart': '๐Ÿฉต', 156 + 'purple_heart': '๐Ÿ’œ', 157 + 'brown_heart': '๐ŸคŽ', 158 + 'black_heart': '๐Ÿ–ค', 159 + 'grey_heart': '๐Ÿฉถ', 160 + 'white_heart': '๐Ÿค', 161 + 'kiss': '๐Ÿ’‹', 162 + 'anger': '๐Ÿ’ข', 163 + 'boom': '๐Ÿ’ฅ', 164 + 'collision': '๐Ÿ’ฅ', 165 + 'dizzy': '๐Ÿ’ซ', 166 + 'sweat_drops': '๐Ÿ’ฆ', 167 + 'dash': '๐Ÿ’จ', 168 + 'hole': '๐Ÿ•ณ๏ธ', 169 + 'speech_balloon': '๐Ÿ’ฌ', 170 + 'eye_speech_bubble': '๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ', 171 + 'left_speech_bubble': '๐Ÿ—จ๏ธ', 172 + 'right_anger_bubble': '๐Ÿ—ฏ๏ธ', 173 + 'thought_balloon': '๐Ÿ’ญ', 174 + 'zzz': '๐Ÿ’ค', 175 + 'wave': '๐Ÿ‘‹', 176 + 'raised_back_of_hand': '๐Ÿคš', 177 + 'raised_hand_with_fingers_splayed': '๐Ÿ–๏ธ', 178 + 'hand': 'โœ‹', 179 + 'raised_hand': 'โœ‹', 180 + 'vulcan_salute': '๐Ÿ––', 181 + 'rightwards_hand': '๐Ÿซฑ', 182 + 'leftwards_hand': '๐Ÿซฒ', 183 + 'palm_down_hand': '๐Ÿซณ', 184 + 'palm_up_hand': '๐Ÿซด', 185 + 'leftwards_pushing_hand': '๐Ÿซท', 186 + 'rightwards_pushing_hand': '๐Ÿซธ', 187 + 'ok_hand': '๐Ÿ‘Œ', 188 + 'pinched_fingers': '๐ŸคŒ', 189 + 'pinching_hand': '๐Ÿค', 190 + 'v': 'โœŒ๏ธ', 191 + 'crossed_fingers': '๐Ÿคž', 192 + 'hand_with_index_finger_and_thumb_crossed': '๐Ÿซฐ', 193 + 'love_you_gesture': '๐ŸคŸ', 194 + 'metal': '๐Ÿค˜', 195 + 'call_me_hand': '๐Ÿค™', 196 + 'point_left': '๐Ÿ‘ˆ', 197 + 'point_right': '๐Ÿ‘‰', 198 + 'point_up_2': '๐Ÿ‘†', 199 + 'middle_finger': '๐Ÿ–•', 200 + 'fu': '๐Ÿ–•', 201 + 'point_down': '๐Ÿ‘‡', 202 + 'point_up': 'โ˜๏ธ', 203 + 'index_pointing_at_the_viewer': '๐Ÿซต', 204 + '+1': '๐Ÿ‘', 205 + 'thumbsup': '๐Ÿ‘', 206 + '-1': '๐Ÿ‘Ž', 207 + 'thumbsdown': '๐Ÿ‘Ž', 208 + 'fist_raised': 'โœŠ', 209 + 'fist': 'โœŠ', 210 + 'fist_oncoming': '๐Ÿ‘Š', 211 + 'facepunch': '๐Ÿ‘Š', 212 + 'punch': '๐Ÿ‘Š', 213 + 'fist_left': '๐Ÿค›', 214 + 'fist_right': '๐Ÿคœ', 215 + 'clap': '๐Ÿ‘', 216 + 'raised_hands': '๐Ÿ™Œ', 217 + 'heart_hands': '๐Ÿซถ', 218 + 'open_hands': '๐Ÿ‘', 219 + 'palms_up_together': '๐Ÿคฒ', 220 + 'handshake': '๐Ÿค', 221 + 'pray': '๐Ÿ™', 222 + 'writing_hand': 'โœ๏ธ', 223 + 'nail_care': '๐Ÿ’…', 224 + 'selfie': '๐Ÿคณ', 225 + 'muscle': '๐Ÿ’ช', 226 + 'mechanical_arm': '๐Ÿฆพ', 227 + 'mechanical_leg': '๐Ÿฆฟ', 228 + 'leg': '๐Ÿฆต', 229 + 'foot': '๐Ÿฆถ', 230 + 'ear': '๐Ÿ‘‚', 231 + 'ear_with_hearing_aid': '๐Ÿฆป', 232 + 'nose': '๐Ÿ‘ƒ', 233 + 'brain': '๐Ÿง ', 234 + 'anatomical_heart': '๐Ÿซ€', 235 + 'lungs': '๐Ÿซ', 236 + 'tooth': '๐Ÿฆท', 237 + 'bone': '๐Ÿฆด', 238 + 'eyes': '๐Ÿ‘€', 239 + 'eye': '๐Ÿ‘๏ธ', 240 + 'tongue': '๐Ÿ‘…', 241 + 'lips': '๐Ÿ‘„', 242 + 'biting_lip': '๐Ÿซฆ', 243 + 'baby': '๐Ÿ‘ถ', 244 + 'child': '๐Ÿง’', 245 + 'boy': '๐Ÿ‘ฆ', 246 + 'girl': '๐Ÿ‘ง', 247 + 'adult': '๐Ÿง‘', 248 + 'blond_haired_person': '๐Ÿ‘ฑ', 249 + 'man': '๐Ÿ‘จ', 250 + 'bearded_person': '๐Ÿง”', 251 + 'man_beard': '๐Ÿง”โ€โ™‚๏ธ', 252 + 'woman_beard': '๐Ÿง”โ€โ™€๏ธ', 253 + 'red_haired_man': '๐Ÿ‘จโ€๐Ÿฆฐ', 254 + 'curly_haired_man': '๐Ÿ‘จโ€๐Ÿฆฑ', 255 + 'white_haired_man': '๐Ÿ‘จโ€๐Ÿฆณ', 256 + 'bald_man': '๐Ÿ‘จโ€๐Ÿฆฒ', 257 + 'woman': '๐Ÿ‘ฉ', 258 + 'red_haired_woman': '๐Ÿ‘ฉโ€๐Ÿฆฐ', 259 + 'person_red_hair': '๐Ÿง‘โ€๐Ÿฆฐ', 260 + 'curly_haired_woman': '๐Ÿ‘ฉโ€๐Ÿฆฑ', 261 + 'person_curly_hair': '๐Ÿง‘โ€๐Ÿฆฑ', 262 + 'white_haired_woman': '๐Ÿ‘ฉโ€๐Ÿฆณ', 263 + 'person_white_hair': '๐Ÿง‘โ€๐Ÿฆณ', 264 + 'bald_woman': '๐Ÿ‘ฉโ€๐Ÿฆฒ', 265 + 'person_bald': '๐Ÿง‘โ€๐Ÿฆฒ', 266 + 'blond_haired_woman': '๐Ÿ‘ฑโ€โ™€๏ธ', 267 + 'blonde_woman': '๐Ÿ‘ฑโ€โ™€๏ธ', 268 + 'blond_haired_man': '๐Ÿ‘ฑโ€โ™‚๏ธ', 269 + 'older_adult': '๐Ÿง“', 270 + 'older_man': '๐Ÿ‘ด', 271 + 'older_woman': '๐Ÿ‘ต', 272 + 'frowning_person': '๐Ÿ™', 273 + 'frowning_man': '๐Ÿ™โ€โ™‚๏ธ', 274 + 'frowning_woman': '๐Ÿ™โ€โ™€๏ธ', 275 + 'pouting_face': '๐Ÿ™Ž', 276 + 'pouting_man': '๐Ÿ™Žโ€โ™‚๏ธ', 277 + 'pouting_woman': '๐Ÿ™Žโ€โ™€๏ธ', 278 + 'no_good': '๐Ÿ™…', 279 + 'no_good_man': '๐Ÿ™…โ€โ™‚๏ธ', 280 + 'ng_man': '๐Ÿ™…โ€โ™‚๏ธ', 281 + 'no_good_woman': '๐Ÿ™…โ€โ™€๏ธ', 282 + 'ng_woman': '๐Ÿ™…โ€โ™€๏ธ', 283 + 'ok_person': '๐Ÿ™†', 284 + 'ok_man': '๐Ÿ™†โ€โ™‚๏ธ', 285 + 'ok_woman': '๐Ÿ™†โ€โ™€๏ธ', 286 + 'tipping_hand_person': '๐Ÿ’', 287 + 'information_desk_person': '๐Ÿ’', 288 + 'tipping_hand_man': '๐Ÿ’โ€โ™‚๏ธ', 289 + 'sassy_man': '๐Ÿ’โ€โ™‚๏ธ', 290 + 'tipping_hand_woman': '๐Ÿ’โ€โ™€๏ธ', 291 + 'sassy_woman': '๐Ÿ’โ€โ™€๏ธ', 292 + 'raising_hand': '๐Ÿ™‹', 293 + 'raising_hand_man': '๐Ÿ™‹โ€โ™‚๏ธ', 294 + 'raising_hand_woman': '๐Ÿ™‹โ€โ™€๏ธ', 295 + 'deaf_person': '๐Ÿง', 296 + 'deaf_man': '๐Ÿงโ€โ™‚๏ธ', 297 + 'deaf_woman': '๐Ÿงโ€โ™€๏ธ', 298 + 'bow': '๐Ÿ™‡', 299 + 'bowing_man': '๐Ÿ™‡โ€โ™‚๏ธ', 300 + 'bowing_woman': '๐Ÿ™‡โ€โ™€๏ธ', 301 + 'facepalm': '๐Ÿคฆ', 302 + 'man_facepalming': '๐Ÿคฆโ€โ™‚๏ธ', 303 + 'woman_facepalming': '๐Ÿคฆโ€โ™€๏ธ', 304 + 'shrug': '๐Ÿคท', 305 + 'man_shrugging': '๐Ÿคทโ€โ™‚๏ธ', 306 + 'woman_shrugging': '๐Ÿคทโ€โ™€๏ธ', 307 + 'health_worker': '๐Ÿง‘โ€โš•๏ธ', 308 + 'man_health_worker': '๐Ÿ‘จโ€โš•๏ธ', 309 + 'woman_health_worker': '๐Ÿ‘ฉโ€โš•๏ธ', 310 + 'student': '๐Ÿง‘โ€๐ŸŽ“', 311 + 'man_student': '๐Ÿ‘จโ€๐ŸŽ“', 312 + 'woman_student': '๐Ÿ‘ฉโ€๐ŸŽ“', 313 + 'teacher': '๐Ÿง‘โ€๐Ÿซ', 314 + 'man_teacher': '๐Ÿ‘จโ€๐Ÿซ', 315 + 'woman_teacher': '๐Ÿ‘ฉโ€๐Ÿซ', 316 + 'judge': '๐Ÿง‘โ€โš–๏ธ', 317 + 'man_judge': '๐Ÿ‘จโ€โš–๏ธ', 318 + 'woman_judge': '๐Ÿ‘ฉโ€โš–๏ธ', 319 + 'farmer': '๐Ÿง‘โ€๐ŸŒพ', 320 + 'man_farmer': '๐Ÿ‘จโ€๐ŸŒพ', 321 + 'woman_farmer': '๐Ÿ‘ฉโ€๐ŸŒพ', 322 + 'cook': '๐Ÿง‘โ€๐Ÿณ', 323 + 'man_cook': '๐Ÿ‘จโ€๐Ÿณ', 324 + 'woman_cook': '๐Ÿ‘ฉโ€๐Ÿณ', 325 + 'mechanic': '๐Ÿง‘โ€๐Ÿ”ง', 326 + 'man_mechanic': '๐Ÿ‘จโ€๐Ÿ”ง', 327 + 'woman_mechanic': '๐Ÿ‘ฉโ€๐Ÿ”ง', 328 + 'factory_worker': '๐Ÿง‘โ€๐Ÿญ', 329 + 'man_factory_worker': '๐Ÿ‘จโ€๐Ÿญ', 330 + 'woman_factory_worker': '๐Ÿ‘ฉโ€๐Ÿญ', 331 + 'office_worker': '๐Ÿง‘โ€๐Ÿ’ผ', 332 + 'man_office_worker': '๐Ÿ‘จโ€๐Ÿ’ผ', 333 + 'woman_office_worker': '๐Ÿ‘ฉโ€๐Ÿ’ผ', 334 + 'scientist': '๐Ÿง‘โ€๐Ÿ”ฌ', 335 + 'man_scientist': '๐Ÿ‘จโ€๐Ÿ”ฌ', 336 + 'woman_scientist': '๐Ÿ‘ฉโ€๐Ÿ”ฌ', 337 + 'technologist': '๐Ÿง‘โ€๐Ÿ’ป', 338 + 'man_technologist': '๐Ÿ‘จโ€๐Ÿ’ป', 339 + 'woman_technologist': '๐Ÿ‘ฉโ€๐Ÿ’ป', 340 + 'singer': '๐Ÿง‘โ€๐ŸŽค', 341 + 'man_singer': '๐Ÿ‘จโ€๐ŸŽค', 342 + 'woman_singer': '๐Ÿ‘ฉโ€๐ŸŽค', 343 + 'artist': '๐Ÿง‘โ€๐ŸŽจ', 344 + 'man_artist': '๐Ÿ‘จโ€๐ŸŽจ', 345 + 'woman_artist': '๐Ÿ‘ฉโ€๐ŸŽจ', 346 + 'pilot': '๐Ÿง‘โ€โœˆ๏ธ', 347 + 'man_pilot': '๐Ÿ‘จโ€โœˆ๏ธ', 348 + 'woman_pilot': '๐Ÿ‘ฉโ€โœˆ๏ธ', 349 + 'astronaut': '๐Ÿง‘โ€๐Ÿš€', 350 + 'man_astronaut': '๐Ÿ‘จโ€๐Ÿš€', 351 + 'woman_astronaut': '๐Ÿ‘ฉโ€๐Ÿš€', 352 + 'firefighter': '๐Ÿง‘โ€๐Ÿš’', 353 + 'man_firefighter': '๐Ÿ‘จโ€๐Ÿš’', 354 + 'woman_firefighter': '๐Ÿ‘ฉโ€๐Ÿš’', 355 + 'police_officer': '๐Ÿ‘ฎ', 356 + 'cop': '๐Ÿ‘ฎ', 357 + 'policeman': '๐Ÿ‘ฎโ€โ™‚๏ธ', 358 + 'policewoman': '๐Ÿ‘ฎโ€โ™€๏ธ', 359 + 'detective': '๐Ÿ•ต๏ธ', 360 + 'male_detective': '๐Ÿ•ต๏ธโ€โ™‚๏ธ', 361 + 'female_detective': '๐Ÿ•ต๏ธโ€โ™€๏ธ', 362 + 'guard': '๐Ÿ’‚', 363 + 'guardsman': '๐Ÿ’‚โ€โ™‚๏ธ', 364 + 'guardswoman': '๐Ÿ’‚โ€โ™€๏ธ', 365 + 'ninja': '๐Ÿฅท', 366 + 'construction_worker': '๐Ÿ‘ท', 367 + 'construction_worker_man': '๐Ÿ‘ทโ€โ™‚๏ธ', 368 + 'construction_worker_woman': '๐Ÿ‘ทโ€โ™€๏ธ', 369 + 'person_with_crown': '๐Ÿซ…', 370 + 'prince': '๐Ÿคด', 371 + 'princess': '๐Ÿ‘ธ', 372 + 'person_with_turban': '๐Ÿ‘ณ', 373 + 'man_with_turban': '๐Ÿ‘ณโ€โ™‚๏ธ', 374 + 'woman_with_turban': '๐Ÿ‘ณโ€โ™€๏ธ', 375 + 'man_with_gua_pi_mao': '๐Ÿ‘ฒ', 376 + 'woman_with_headscarf': '๐Ÿง•', 377 + 'person_in_tuxedo': '๐Ÿคต', 378 + 'man_in_tuxedo': '๐Ÿคตโ€โ™‚๏ธ', 379 + 'woman_in_tuxedo': '๐Ÿคตโ€โ™€๏ธ', 380 + 'person_with_veil': '๐Ÿ‘ฐ', 381 + 'man_with_veil': '๐Ÿ‘ฐโ€โ™‚๏ธ', 382 + 'woman_with_veil': '๐Ÿ‘ฐโ€โ™€๏ธ', 383 + 'bride_with_veil': '๐Ÿ‘ฐโ€โ™€๏ธ', 384 + 'pregnant_woman': '๐Ÿคฐ', 385 + 'pregnant_man': '๐Ÿซƒ', 386 + 'pregnant_person': '๐Ÿซ„', 387 + 'breast_feeding': '๐Ÿคฑ', 388 + 'woman_feeding_baby': '๐Ÿ‘ฉโ€๐Ÿผ', 389 + 'man_feeding_baby': '๐Ÿ‘จโ€๐Ÿผ', 390 + 'person_feeding_baby': '๐Ÿง‘โ€๐Ÿผ', 391 + 'angel': '๐Ÿ‘ผ', 392 + 'santa': '๐ŸŽ…', 393 + 'mrs_claus': '๐Ÿคถ', 394 + 'mx_claus': '๐Ÿง‘โ€๐ŸŽ„', 395 + 'superhero': '๐Ÿฆธ', 396 + 'superhero_man': '๐Ÿฆธโ€โ™‚๏ธ', 397 + 'superhero_woman': '๐Ÿฆธโ€โ™€๏ธ', 398 + 'supervillain': '๐Ÿฆน', 399 + 'supervillain_man': '๐Ÿฆนโ€โ™‚๏ธ', 400 + 'supervillain_woman': '๐Ÿฆนโ€โ™€๏ธ', 401 + 'mage': '๐Ÿง™', 402 + 'mage_man': '๐Ÿง™โ€โ™‚๏ธ', 403 + 'mage_woman': '๐Ÿง™โ€โ™€๏ธ', 404 + 'fairy': '๐Ÿงš', 405 + 'fairy_man': '๐Ÿงšโ€โ™‚๏ธ', 406 + 'fairy_woman': '๐Ÿงšโ€โ™€๏ธ', 407 + 'vampire': '๐Ÿง›', 408 + 'vampire_man': '๐Ÿง›โ€โ™‚๏ธ', 409 + 'vampire_woman': '๐Ÿง›โ€โ™€๏ธ', 410 + 'merperson': '๐Ÿงœ', 411 + 'merman': '๐Ÿงœโ€โ™‚๏ธ', 412 + 'mermaid': '๐Ÿงœโ€โ™€๏ธ', 413 + 'elf': '๐Ÿง', 414 + 'elf_man': '๐Ÿงโ€โ™‚๏ธ', 415 + 'elf_woman': '๐Ÿงโ€โ™€๏ธ', 416 + 'genie': '๐Ÿงž', 417 + 'genie_man': '๐Ÿงžโ€โ™‚๏ธ', 418 + 'genie_woman': '๐Ÿงžโ€โ™€๏ธ', 419 + 'zombie': '๐ŸงŸ', 420 + 'zombie_man': '๐ŸงŸโ€โ™‚๏ธ', 421 + 'zombie_woman': '๐ŸงŸโ€โ™€๏ธ', 422 + 'troll': '๐ŸงŒ', 423 + 'massage': '๐Ÿ’†', 424 + 'massage_man': '๐Ÿ’†โ€โ™‚๏ธ', 425 + 'massage_woman': '๐Ÿ’†โ€โ™€๏ธ', 426 + 'haircut': '๐Ÿ’‡', 427 + 'haircut_man': '๐Ÿ’‡โ€โ™‚๏ธ', 428 + 'haircut_woman': '๐Ÿ’‡โ€โ™€๏ธ', 429 + 'walking': '๐Ÿšถ', 430 + 'walking_man': '๐Ÿšถโ€โ™‚๏ธ', 431 + 'walking_woman': '๐Ÿšถโ€โ™€๏ธ', 432 + 'standing_person': '๐Ÿง', 433 + 'standing_man': '๐Ÿงโ€โ™‚๏ธ', 434 + 'standing_woman': '๐Ÿงโ€โ™€๏ธ', 435 + 'kneeling_person': '๐ŸงŽ', 436 + 'kneeling_man': '๐ŸงŽโ€โ™‚๏ธ', 437 + 'kneeling_woman': '๐ŸงŽโ€โ™€๏ธ', 438 + 'person_with_probing_cane': '๐Ÿง‘โ€๐Ÿฆฏ', 439 + 'man_with_probing_cane': '๐Ÿ‘จโ€๐Ÿฆฏ', 440 + 'woman_with_probing_cane': '๐Ÿ‘ฉโ€๐Ÿฆฏ', 441 + 'person_in_motorized_wheelchair': '๐Ÿง‘โ€๐Ÿฆผ', 442 + 'man_in_motorized_wheelchair': '๐Ÿ‘จโ€๐Ÿฆผ', 443 + 'woman_in_motorized_wheelchair': '๐Ÿ‘ฉโ€๐Ÿฆผ', 444 + 'person_in_manual_wheelchair': '๐Ÿง‘โ€๐Ÿฆฝ', 445 + 'man_in_manual_wheelchair': '๐Ÿ‘จโ€๐Ÿฆฝ', 446 + 'woman_in_manual_wheelchair': '๐Ÿ‘ฉโ€๐Ÿฆฝ', 447 + 'runner': '๐Ÿƒ', 448 + 'running': '๐Ÿƒ', 449 + 'running_man': '๐Ÿƒโ€โ™‚๏ธ', 450 + 'running_woman': '๐Ÿƒโ€โ™€๏ธ', 451 + 'woman_dancing': '๐Ÿ’ƒ', 452 + 'dancer': '๐Ÿ’ƒ', 453 + 'man_dancing': '๐Ÿ•บ', 454 + 'business_suit_levitating': '๐Ÿ•ด๏ธ', 455 + 'dancers': '๐Ÿ‘ฏ', 456 + 'dancing_men': '๐Ÿ‘ฏโ€โ™‚๏ธ', 457 + 'dancing_women': '๐Ÿ‘ฏโ€โ™€๏ธ', 458 + 'sauna_person': '๐Ÿง–', 459 + 'sauna_man': '๐Ÿง–โ€โ™‚๏ธ', 460 + 'sauna_woman': '๐Ÿง–โ€โ™€๏ธ', 461 + 'climbing': '๐Ÿง—', 462 + 'climbing_man': '๐Ÿง—โ€โ™‚๏ธ', 463 + 'climbing_woman': '๐Ÿง—โ€โ™€๏ธ', 464 + 'person_fencing': '๐Ÿคบ', 465 + 'horse_racing': '๐Ÿ‡', 466 + 'skier': 'โ›ท๏ธ', 467 + 'snowboarder': '๐Ÿ‚', 468 + 'golfing': '๐ŸŒ๏ธ', 469 + 'golfing_man': '๐ŸŒ๏ธโ€โ™‚๏ธ', 470 + 'golfing_woman': '๐ŸŒ๏ธโ€โ™€๏ธ', 471 + 'surfer': '๐Ÿ„', 472 + 'surfing_man': '๐Ÿ„โ€โ™‚๏ธ', 473 + 'surfing_woman': '๐Ÿ„โ€โ™€๏ธ', 474 + 'rowboat': '๐Ÿšฃ', 475 + 'rowing_man': '๐Ÿšฃโ€โ™‚๏ธ', 476 + 'rowing_woman': '๐Ÿšฃโ€โ™€๏ธ', 477 + 'swimmer': '๐ŸŠ', 478 + 'swimming_man': '๐ŸŠโ€โ™‚๏ธ', 479 + 'swimming_woman': '๐ŸŠโ€โ™€๏ธ', 480 + 'bouncing_ball_person': 'โ›น๏ธ', 481 + 'bouncing_ball_man': 'โ›น๏ธโ€โ™‚๏ธ', 482 + 'basketball_man': 'โ›น๏ธโ€โ™‚๏ธ', 483 + 'bouncing_ball_woman': 'โ›น๏ธโ€โ™€๏ธ', 484 + 'basketball_woman': 'โ›น๏ธโ€โ™€๏ธ', 485 + 'weight_lifting': '๐Ÿ‹๏ธ', 486 + 'weight_lifting_man': '๐Ÿ‹๏ธโ€โ™‚๏ธ', 487 + 'weight_lifting_woman': '๐Ÿ‹๏ธโ€โ™€๏ธ', 488 + 'bicyclist': '๐Ÿšด', 489 + 'biking_man': '๐Ÿšดโ€โ™‚๏ธ', 490 + 'biking_woman': '๐Ÿšดโ€โ™€๏ธ', 491 + 'mountain_bicyclist': '๐Ÿšต', 492 + 'mountain_biking_man': '๐Ÿšตโ€โ™‚๏ธ', 493 + 'mountain_biking_woman': '๐Ÿšตโ€โ™€๏ธ', 494 + 'cartwheeling': '๐Ÿคธ', 495 + 'man_cartwheeling': '๐Ÿคธโ€โ™‚๏ธ', 496 + 'woman_cartwheeling': '๐Ÿคธโ€โ™€๏ธ', 497 + 'wrestling': '๐Ÿคผ', 498 + 'men_wrestling': '๐Ÿคผโ€โ™‚๏ธ', 499 + 'women_wrestling': '๐Ÿคผโ€โ™€๏ธ', 500 + 'water_polo': '๐Ÿคฝ', 501 + 'man_playing_water_polo': '๐Ÿคฝโ€โ™‚๏ธ', 502 + 'woman_playing_water_polo': '๐Ÿคฝโ€โ™€๏ธ', 503 + 'handball_person': '๐Ÿคพ', 504 + 'man_playing_handball': '๐Ÿคพโ€โ™‚๏ธ', 505 + 'woman_playing_handball': '๐Ÿคพโ€โ™€๏ธ', 506 + 'juggling_person': '๐Ÿคน', 507 + 'man_juggling': '๐Ÿคนโ€โ™‚๏ธ', 508 + 'woman_juggling': '๐Ÿคนโ€โ™€๏ธ', 509 + 'lotus_position': '๐Ÿง˜', 510 + 'lotus_position_man': '๐Ÿง˜โ€โ™‚๏ธ', 511 + 'lotus_position_woman': '๐Ÿง˜โ€โ™€๏ธ', 512 + 'bath': '๐Ÿ›€', 513 + 'sleeping_bed': '๐Ÿ›Œ', 514 + 'people_holding_hands': '๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘', 515 + 'two_women_holding_hands': '๐Ÿ‘ญ', 516 + 'couple': '๐Ÿ‘ซ', 517 + 'two_men_holding_hands': '๐Ÿ‘ฌ', 518 + 'couplekiss': '๐Ÿ’', 519 + 'couplekiss_man_woman': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ', 520 + 'couplekiss_man_man': '๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ', 521 + 'couplekiss_woman_woman': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ', 522 + 'couple_with_heart': '๐Ÿ’‘', 523 + 'couple_with_heart_woman_man': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ', 524 + 'couple_with_heart_man_man': '๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ', 525 + 'couple_with_heart_woman_woman': '๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ', 526 + 'family': '๐Ÿ‘ช', 527 + 'family_man_woman_boy': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ', 528 + 'family_man_woman_girl': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง', 529 + 'family_man_woman_girl_boy': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', 530 + 'family_man_woman_boy_boy': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', 531 + 'family_man_woman_girl_girl': '๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', 532 + 'family_man_man_boy': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ', 533 + 'family_man_man_girl': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง', 534 + 'family_man_man_girl_boy': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', 535 + 'family_man_man_boy_boy': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', 536 + 'family_man_man_girl_girl': '๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง', 537 + 'family_woman_woman_boy': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ', 538 + 'family_woman_woman_girl': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง', 539 + 'family_woman_woman_girl_boy': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', 540 + 'family_woman_woman_boy_boy': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', 541 + 'family_woman_woman_girl_girl': '๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', 542 + 'family_man_boy': '๐Ÿ‘จโ€๐Ÿ‘ฆ', 543 + 'family_man_boy_boy': '๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', 544 + 'family_man_girl': '๐Ÿ‘จโ€๐Ÿ‘ง', 545 + 'family_man_girl_boy': '๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', 546 + 'family_man_girl_girl': '๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง', 547 + 'family_woman_boy': '๐Ÿ‘ฉโ€๐Ÿ‘ฆ', 548 + 'family_woman_boy_boy': '๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ', 549 + 'family_woman_girl': '๐Ÿ‘ฉโ€๐Ÿ‘ง', 550 + 'family_woman_girl_boy': '๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ', 551 + 'family_woman_girl_girl': '๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง', 552 + 'speaking_head': '๐Ÿ—ฃ๏ธ', 553 + 'bust_in_silhouette': '๐Ÿ‘ค', 554 + 'busts_in_silhouette': '๐Ÿ‘ฅ', 555 + 'people_hugging': '๐Ÿซ‚', 556 + 'footprints': '๐Ÿ‘ฃ', 557 + 'monkey_face': '๐Ÿต', 558 + 'monkey': '๐Ÿ’', 559 + 'gorilla': '๐Ÿฆ', 560 + 'orangutan': '๐Ÿฆง', 561 + 'dog': '๐Ÿถ', 562 + 'dog2': '๐Ÿ•', 563 + 'guide_dog': '๐Ÿฆฎ', 564 + 'service_dog': '๐Ÿ•โ€๐Ÿฆบ', 565 + 'poodle': '๐Ÿฉ', 566 + 'wolf': '๐Ÿบ', 567 + 'fox_face': '๐ŸฆŠ', 568 + 'raccoon': '๐Ÿฆ', 569 + 'cat': '๐Ÿฑ', 570 + 'cat2': '๐Ÿˆ', 571 + 'black_cat': '๐Ÿˆโ€โฌ›', 572 + 'lion': '๐Ÿฆ', 573 + 'tiger': '๐Ÿฏ', 574 + 'tiger2': '๐Ÿ…', 575 + 'leopard': '๐Ÿ†', 576 + 'horse': '๐Ÿด', 577 + 'moose': '๐ŸซŽ', 578 + 'donkey': '๐Ÿซ', 579 + 'racehorse': '๐ŸŽ', 580 + 'unicorn': '๐Ÿฆ„', 581 + 'zebra': '๐Ÿฆ“', 582 + 'deer': '๐ŸฆŒ', 583 + 'bison': '๐Ÿฆฌ', 584 + 'cow': '๐Ÿฎ', 585 + 'ox': '๐Ÿ‚', 586 + 'water_buffalo': '๐Ÿƒ', 587 + 'cow2': '๐Ÿ„', 588 + 'pig': '๐Ÿท', 589 + 'pig2': '๐Ÿ–', 590 + 'boar': '๐Ÿ—', 591 + 'pig_nose': '๐Ÿฝ', 592 + 'ram': '๐Ÿ', 593 + 'sheep': '๐Ÿ‘', 594 + 'goat': '๐Ÿ', 595 + 'dromedary_camel': '๐Ÿช', 596 + 'camel': '๐Ÿซ', 597 + 'llama': '๐Ÿฆ™', 598 + 'giraffe': '๐Ÿฆ’', 599 + 'elephant': '๐Ÿ˜', 600 + 'mammoth': '๐Ÿฆฃ', 601 + 'rhinoceros': '๐Ÿฆ', 602 + 'hippopotamus': '๐Ÿฆ›', 603 + 'mouse': '๐Ÿญ', 604 + 'mouse2': '๐Ÿ', 605 + 'rat': '๐Ÿ€', 606 + 'hamster': '๐Ÿน', 607 + 'rabbit': '๐Ÿฐ', 608 + 'rabbit2': '๐Ÿ‡', 609 + 'chipmunk': '๐Ÿฟ๏ธ', 610 + 'beaver': '๐Ÿฆซ', 611 + 'hedgehog': '๐Ÿฆ”', 612 + 'bat': '๐Ÿฆ‡', 613 + 'bear': '๐Ÿป', 614 + 'polar_bear': '๐Ÿปโ€โ„๏ธ', 615 + 'koala': '๐Ÿจ', 616 + 'panda_face': '๐Ÿผ', 617 + 'sloth': '๐Ÿฆฅ', 618 + 'otter': '๐Ÿฆฆ', 619 + 'skunk': '๐Ÿฆจ', 620 + 'kangaroo': '๐Ÿฆ˜', 621 + 'badger': '๐Ÿฆก', 622 + 'feet': '๐Ÿพ', 623 + 'paw_prints': '๐Ÿพ', 624 + 'turkey': '๐Ÿฆƒ', 625 + 'chicken': '๐Ÿ”', 626 + 'rooster': '๐Ÿ“', 627 + 'hatching_chick': '๐Ÿฃ', 628 + 'baby_chick': '๐Ÿค', 629 + 'hatched_chick': '๐Ÿฅ', 630 + 'bird': '๐Ÿฆ', 631 + 'penguin': '๐Ÿง', 632 + 'dove': '๐Ÿ•Š๏ธ', 633 + 'eagle': '๐Ÿฆ…', 634 + 'duck': '๐Ÿฆ†', 635 + 'swan': '๐Ÿฆข', 636 + 'owl': '๐Ÿฆ‰', 637 + 'dodo': '๐Ÿฆค', 638 + 'feather': '๐Ÿชถ', 639 + 'flamingo': '๐Ÿฆฉ', 640 + 'peacock': '๐Ÿฆš', 641 + 'parrot': '๐Ÿฆœ', 642 + 'wing': '๐Ÿชฝ', 643 + 'black_bird': '๐Ÿฆโ€โฌ›', 644 + 'goose': '๐Ÿชฟ', 645 + 'frog': '๐Ÿธ', 646 + 'crocodile': '๐ŸŠ', 647 + 'turtle': '๐Ÿข', 648 + 'lizard': '๐ŸฆŽ', 649 + 'snake': '๐Ÿ', 650 + 'dragon_face': '๐Ÿฒ', 651 + 'dragon': '๐Ÿ‰', 652 + 'sauropod': '๐Ÿฆ•', 653 + 't-rex': '๐Ÿฆ–', 654 + 'whale': '๐Ÿณ', 655 + 'whale2': '๐Ÿ‹', 656 + 'dolphin': '๐Ÿฌ', 657 + 'flipper': '๐Ÿฌ', 658 + 'seal': '๐Ÿฆญ', 659 + 'fish': '๐ŸŸ', 660 + 'tropical_fish': '๐Ÿ ', 661 + 'blowfish': '๐Ÿก', 662 + 'shark': '๐Ÿฆˆ', 663 + 'octopus': '๐Ÿ™', 664 + 'shell': '๐Ÿš', 665 + 'coral': '๐Ÿชธ', 666 + 'jellyfish': '๐Ÿชผ', 667 + 'snail': '๐ŸŒ', 668 + 'butterfly': '๐Ÿฆ‹', 669 + 'bug': '๐Ÿ›', 670 + 'ant': '๐Ÿœ', 671 + 'bee': '๐Ÿ', 672 + 'honeybee': '๐Ÿ', 673 + 'beetle': '๐Ÿชฒ', 674 + 'lady_beetle': '๐Ÿž', 675 + 'cricket': '๐Ÿฆ—', 676 + 'cockroach': '๐Ÿชณ', 677 + 'spider': '๐Ÿ•ท๏ธ', 678 + 'spider_web': '๐Ÿ•ธ๏ธ', 679 + 'scorpion': '๐Ÿฆ‚', 680 + 'mosquito': '๐ŸฆŸ', 681 + 'fly': '๐Ÿชฐ', 682 + 'worm': '๐Ÿชฑ', 683 + 'microbe': '๐Ÿฆ ', 684 + 'bouquet': '๐Ÿ’', 685 + 'cherry_blossom': '๐ŸŒธ', 686 + 'white_flower': '๐Ÿ’ฎ', 687 + 'lotus': '๐Ÿชท', 688 + 'rosette': '๐Ÿต๏ธ', 689 + 'rose': '๐ŸŒน', 690 + 'wilted_flower': '๐Ÿฅ€', 691 + 'hibiscus': '๐ŸŒบ', 692 + 'sunflower': '๐ŸŒป', 693 + 'blossom': '๐ŸŒผ', 694 + 'tulip': '๐ŸŒท', 695 + 'hyacinth': '๐Ÿชป', 696 + 'seedling': '๐ŸŒฑ', 697 + 'potted_plant': '๐Ÿชด', 698 + 'evergreen_tree': '๐ŸŒฒ', 699 + 'deciduous_tree': '๐ŸŒณ', 700 + 'palm_tree': '๐ŸŒด', 701 + 'cactus': '๐ŸŒต', 702 + 'ear_of_rice': '๐ŸŒพ', 703 + 'herb': '๐ŸŒฟ', 704 + 'shamrock': 'โ˜˜๏ธ', 705 + 'four_leaf_clover': '๐Ÿ€', 706 + 'maple_leaf': '๐Ÿ', 707 + 'fallen_leaf': '๐Ÿ‚', 708 + 'leaves': '๐Ÿƒ', 709 + 'empty_nest': '๐Ÿชน', 710 + 'nest_with_eggs': '๐Ÿชบ', 711 + 'mushroom': '๐Ÿ„', 712 + 'grapes': '๐Ÿ‡', 713 + 'melon': '๐Ÿˆ', 714 + 'watermelon': '๐Ÿ‰', 715 + 'tangerine': '๐ŸŠ', 716 + 'orange': '๐ŸŠ', 717 + 'mandarin': '๐ŸŠ', 718 + 'lemon': '๐Ÿ‹', 719 + 'banana': '๐ŸŒ', 720 + 'pineapple': '๐Ÿ', 721 + 'mango': '๐Ÿฅญ', 722 + 'apple': '๐ŸŽ', 723 + 'green_apple': '๐Ÿ', 724 + 'pear': '๐Ÿ', 725 + 'peach': '๐Ÿ‘', 726 + 'cherries': '๐Ÿ’', 727 + 'strawberry': '๐Ÿ“', 728 + 'blueberries': '๐Ÿซ', 729 + 'kiwi_fruit': '๐Ÿฅ', 730 + 'tomato': '๐Ÿ…', 731 + 'olive': '๐Ÿซ’', 732 + 'coconut': '๐Ÿฅฅ', 733 + 'avocado': '๐Ÿฅ‘', 734 + 'eggplant': '๐Ÿ†', 735 + 'potato': '๐Ÿฅ”', 736 + 'carrot': '๐Ÿฅ•', 737 + 'corn': '๐ŸŒฝ', 738 + 'hot_pepper': '๐ŸŒถ๏ธ', 739 + 'bell_pepper': '๐Ÿซ‘', 740 + 'cucumber': '๐Ÿฅ’', 741 + 'leafy_green': '๐Ÿฅฌ', 742 + 'broccoli': '๐Ÿฅฆ', 743 + 'garlic': '๐Ÿง„', 744 + 'onion': '๐Ÿง…', 745 + 'peanuts': '๐Ÿฅœ', 746 + 'beans': '๐Ÿซ˜', 747 + 'chestnut': '๐ŸŒฐ', 748 + 'ginger_root': '๐Ÿซš', 749 + 'pea_pod': '๐Ÿซ›', 750 + 'bread': '๐Ÿž', 751 + 'croissant': '๐Ÿฅ', 752 + 'baguette_bread': '๐Ÿฅ–', 753 + 'flatbread': '๐Ÿซ“', 754 + 'pretzel': '๐Ÿฅจ', 755 + 'bagel': '๐Ÿฅฏ', 756 + 'pancakes': '๐Ÿฅž', 757 + 'waffle': '๐Ÿง‡', 758 + 'cheese': '๐Ÿง€', 759 + 'meat_on_bone': '๐Ÿ–', 760 + 'poultry_leg': '๐Ÿ—', 761 + 'cut_of_meat': '๐Ÿฅฉ', 762 + 'bacon': '๐Ÿฅ“', 763 + 'hamburger': '๐Ÿ”', 764 + 'fries': '๐ŸŸ', 765 + 'pizza': '๐Ÿ•', 766 + 'hotdog': '๐ŸŒญ', 767 + 'sandwich': '๐Ÿฅช', 768 + 'taco': '๐ŸŒฎ', 769 + 'burrito': '๐ŸŒฏ', 770 + 'tamale': '๐Ÿซ”', 771 + 'stuffed_flatbread': '๐Ÿฅ™', 772 + 'falafel': '๐Ÿง†', 773 + 'egg': '๐Ÿฅš', 774 + 'fried_egg': '๐Ÿณ', 775 + 'shallow_pan_of_food': '๐Ÿฅ˜', 776 + 'stew': '๐Ÿฒ', 777 + 'fondue': '๐Ÿซ•', 778 + 'bowl_with_spoon': '๐Ÿฅฃ', 779 + 'green_salad': '๐Ÿฅ—', 780 + 'popcorn': '๐Ÿฟ', 781 + 'butter': '๐Ÿงˆ', 782 + 'salt': '๐Ÿง‚', 783 + 'canned_food': '๐Ÿฅซ', 784 + 'bento': '๐Ÿฑ', 785 + 'rice_cracker': '๐Ÿ˜', 786 + 'rice_ball': '๐Ÿ™', 787 + 'rice': '๐Ÿš', 788 + 'curry': '๐Ÿ›', 789 + 'ramen': '๐Ÿœ', 790 + 'spaghetti': '๐Ÿ', 791 + 'sweet_potato': '๐Ÿ ', 792 + 'oden': '๐Ÿข', 793 + 'sushi': '๐Ÿฃ', 794 + 'fried_shrimp': '๐Ÿค', 795 + 'fish_cake': '๐Ÿฅ', 796 + 'moon_cake': '๐Ÿฅฎ', 797 + 'dango': '๐Ÿก', 798 + 'dumpling': '๐ŸฅŸ', 799 + 'fortune_cookie': '๐Ÿฅ ', 800 + 'takeout_box': '๐Ÿฅก', 801 + 'crab': '๐Ÿฆ€', 802 + 'lobster': '๐Ÿฆž', 803 + 'shrimp': '๐Ÿฆ', 804 + 'squid': '๐Ÿฆ‘', 805 + 'oyster': '๐Ÿฆช', 806 + 'icecream': '๐Ÿฆ', 807 + 'shaved_ice': '๐Ÿง', 808 + 'ice_cream': '๐Ÿจ', 809 + 'doughnut': '๐Ÿฉ', 810 + 'cookie': '๐Ÿช', 811 + 'birthday': '๐ŸŽ‚', 812 + 'cake': '๐Ÿฐ', 813 + 'cupcake': '๐Ÿง', 814 + 'pie': '๐Ÿฅง', 815 + 'chocolate_bar': '๐Ÿซ', 816 + 'candy': '๐Ÿฌ', 817 + 'lollipop': '๐Ÿญ', 818 + 'custard': '๐Ÿฎ', 819 + 'honey_pot': '๐Ÿฏ', 820 + 'baby_bottle': '๐Ÿผ', 821 + 'milk_glass': '๐Ÿฅ›', 822 + 'coffee': 'โ˜•', 823 + 'teapot': '๐Ÿซ–', 824 + 'tea': '๐Ÿต', 825 + 'sake': '๐Ÿถ', 826 + 'champagne': '๐Ÿพ', 827 + 'wine_glass': '๐Ÿท', 828 + 'cocktail': '๐Ÿธ', 829 + 'tropical_drink': '๐Ÿน', 830 + 'beer': '๐Ÿบ', 831 + 'beers': '๐Ÿป', 832 + 'clinking_glasses': '๐Ÿฅ‚', 833 + 'tumbler_glass': '๐Ÿฅƒ', 834 + 'pouring_liquid': '๐Ÿซ—', 835 + 'cup_with_straw': '๐Ÿฅค', 836 + 'bubble_tea': '๐Ÿง‹', 837 + 'beverage_box': '๐Ÿงƒ', 838 + 'mate': '๐Ÿง‰', 839 + 'ice_cube': '๐ŸงŠ', 840 + 'chopsticks': '๐Ÿฅข', 841 + 'plate_with_cutlery': '๐Ÿฝ๏ธ', 842 + 'fork_and_knife': '๐Ÿด', 843 + 'spoon': '๐Ÿฅ„', 844 + 'hocho': '๐Ÿ”ช', 845 + 'knife': '๐Ÿ”ช', 846 + 'jar': '๐Ÿซ™', 847 + 'amphora': '๐Ÿบ', 848 + 'earth_africa': '๐ŸŒ', 849 + 'earth_americas': '๐ŸŒŽ', 850 + 'earth_asia': '๐ŸŒ', 851 + 'globe_with_meridians': '๐ŸŒ', 852 + 'world_map': '๐Ÿ—บ๏ธ', 853 + 'japan': '๐Ÿ—พ', 854 + 'compass': '๐Ÿงญ', 855 + 'mountain_snow': '๐Ÿ”๏ธ', 856 + 'mountain': 'โ›ฐ๏ธ', 857 + 'volcano': '๐ŸŒ‹', 858 + 'mount_fuji': '๐Ÿ—ป', 859 + 'camping': '๐Ÿ•๏ธ', 860 + 'beach_umbrella': '๐Ÿ–๏ธ', 861 + 'desert': '๐Ÿœ๏ธ', 862 + 'desert_island': '๐Ÿ๏ธ', 863 + 'national_park': '๐Ÿž๏ธ', 864 + 'stadium': '๐ŸŸ๏ธ', 865 + 'classical_building': '๐Ÿ›๏ธ', 866 + 'building_construction': '๐Ÿ—๏ธ', 867 + 'bricks': '๐Ÿงฑ', 868 + 'rock': '๐Ÿชจ', 869 + 'wood': '๐Ÿชต', 870 + 'hut': '๐Ÿ›–', 871 + 'houses': '๐Ÿ˜๏ธ', 872 + 'derelict_house': '๐Ÿš๏ธ', 873 + 'house': '๐Ÿ ', 874 + 'house_with_garden': '๐Ÿก', 875 + 'office': '๐Ÿข', 876 + 'post_office': '๐Ÿฃ', 877 + 'european_post_office': '๐Ÿค', 878 + 'hospital': '๐Ÿฅ', 879 + 'bank': '๐Ÿฆ', 880 + 'hotel': '๐Ÿจ', 881 + 'love_hotel': '๐Ÿฉ', 882 + 'convenience_store': '๐Ÿช', 883 + 'school': '๐Ÿซ', 884 + 'department_store': '๐Ÿฌ', 885 + 'factory': '๐Ÿญ', 886 + 'japanese_castle': '๐Ÿฏ', 887 + 'european_castle': '๐Ÿฐ', 888 + 'wedding': '๐Ÿ’’', 889 + 'tokyo_tower': '๐Ÿ—ผ', 890 + 'statue_of_liberty': '๐Ÿ—ฝ', 891 + 'church': 'โ›ช', 892 + 'mosque': '๐Ÿ•Œ', 893 + 'hindu_temple': '๐Ÿ›•', 894 + 'synagogue': '๐Ÿ•', 895 + 'shinto_shrine': 'โ›ฉ๏ธ', 896 + 'kaaba': '๐Ÿ•‹', 897 + 'fountain': 'โ›ฒ', 898 + 'tent': 'โ›บ', 899 + 'foggy': '๐ŸŒ', 900 + 'night_with_stars': '๐ŸŒƒ', 901 + 'cityscape': '๐Ÿ™๏ธ', 902 + 'sunrise_over_mountains': '๐ŸŒ„', 903 + 'sunrise': '๐ŸŒ…', 904 + 'city_sunset': '๐ŸŒ†', 905 + 'city_sunrise': '๐ŸŒ‡', 906 + 'bridge_at_night': '๐ŸŒ‰', 907 + 'hotsprings': 'โ™จ๏ธ', 908 + 'carousel_horse': '๐ŸŽ ', 909 + 'playground_slide': '๐Ÿ›', 910 + 'ferris_wheel': '๐ŸŽก', 911 + 'roller_coaster': '๐ŸŽข', 912 + 'barber': '๐Ÿ’ˆ', 913 + 'circus_tent': '๐ŸŽช', 914 + 'steam_locomotive': '๐Ÿš‚', 915 + 'railway_car': '๐Ÿšƒ', 916 + 'bullettrain_side': '๐Ÿš„', 917 + 'bullettrain_front': '๐Ÿš…', 918 + 'train2': '๐Ÿš†', 919 + 'metro': '๐Ÿš‡', 920 + 'light_rail': '๐Ÿšˆ', 921 + 'station': '๐Ÿš‰', 922 + 'tram': '๐ŸšŠ', 923 + 'monorail': '๐Ÿš', 924 + 'mountain_railway': '๐Ÿšž', 925 + 'train': '๐Ÿš‹', 926 + 'bus': '๐ŸšŒ', 927 + 'oncoming_bus': '๐Ÿš', 928 + 'trolleybus': '๐ŸšŽ', 929 + 'minibus': '๐Ÿš', 930 + 'ambulance': '๐Ÿš‘', 931 + 'fire_engine': '๐Ÿš’', 932 + 'police_car': '๐Ÿš“', 933 + 'oncoming_police_car': '๐Ÿš”', 934 + 'taxi': '๐Ÿš•', 935 + 'oncoming_taxi': '๐Ÿš–', 936 + 'car': '๐Ÿš—', 937 + 'red_car': '๐Ÿš—', 938 + 'oncoming_automobile': '๐Ÿš˜', 939 + 'blue_car': '๐Ÿš™', 940 + 'pickup_truck': '๐Ÿ›ป', 941 + 'truck': '๐Ÿšš', 942 + 'articulated_lorry': '๐Ÿš›', 943 + 'tractor': '๐Ÿšœ', 944 + 'racing_car': '๐ŸŽ๏ธ', 945 + 'motorcycle': '๐Ÿ๏ธ', 946 + 'motor_scooter': '๐Ÿ›ต', 947 + 'manual_wheelchair': '๐Ÿฆฝ', 948 + 'motorized_wheelchair': '๐Ÿฆผ', 949 + 'auto_rickshaw': '๐Ÿ›บ', 950 + 'bike': '๐Ÿšฒ', 951 + 'kick_scooter': '๐Ÿ›ด', 952 + 'skateboard': '๐Ÿ›น', 953 + 'roller_skate': '๐Ÿ›ผ', 954 + 'busstop': '๐Ÿš', 955 + 'motorway': '๐Ÿ›ฃ๏ธ', 956 + 'railway_track': '๐Ÿ›ค๏ธ', 957 + 'oil_drum': '๐Ÿ›ข๏ธ', 958 + 'fuelpump': 'โ›ฝ', 959 + 'wheel': '๐Ÿ›ž', 960 + 'rotating_light': '๐Ÿšจ', 961 + 'traffic_light': '๐Ÿšฅ', 962 + 'vertical_traffic_light': '๐Ÿšฆ', 963 + 'stop_sign': '๐Ÿ›‘', 964 + 'construction': '๐Ÿšง', 965 + 'anchor': 'โš“', 966 + 'ring_buoy': '๐Ÿ›Ÿ', 967 + 'boat': 'โ›ต', 968 + 'sailboat': 'โ›ต', 969 + 'canoe': '๐Ÿ›ถ', 970 + 'speedboat': '๐Ÿšค', 971 + 'passenger_ship': '๐Ÿ›ณ๏ธ', 972 + 'ferry': 'โ›ด๏ธ', 973 + 'motor_boat': '๐Ÿ›ฅ๏ธ', 974 + 'ship': '๐Ÿšข', 975 + 'airplane': 'โœˆ๏ธ', 976 + 'small_airplane': '๐Ÿ›ฉ๏ธ', 977 + 'flight_departure': '๐Ÿ›ซ', 978 + 'flight_arrival': '๐Ÿ›ฌ', 979 + 'parachute': '๐Ÿช‚', 980 + 'seat': '๐Ÿ’บ', 981 + 'helicopter': '๐Ÿš', 982 + 'suspension_railway': '๐ŸšŸ', 983 + 'mountain_cableway': '๐Ÿš ', 984 + 'aerial_tramway': '๐Ÿšก', 985 + 'artificial_satellite': '๐Ÿ›ฐ๏ธ', 986 + 'rocket': '๐Ÿš€', 987 + 'flying_saucer': '๐Ÿ›ธ', 988 + 'bellhop_bell': '๐Ÿ›Ž๏ธ', 989 + 'luggage': '๐Ÿงณ', 990 + 'hourglass': 'โŒ›', 991 + 'hourglass_flowing_sand': 'โณ', 992 + 'watch': 'โŒš', 993 + 'alarm_clock': 'โฐ', 994 + 'stopwatch': 'โฑ๏ธ', 995 + 'timer_clock': 'โฒ๏ธ', 996 + 'mantelpiece_clock': '๐Ÿ•ฐ๏ธ', 997 + 'clock12': '๐Ÿ•›', 998 + 'clock1230': '๐Ÿ•ง', 999 + 'clock1': '๐Ÿ•', 1000 + 'clock130': '๐Ÿ•œ', 1001 + 'clock2': '๐Ÿ•‘', 1002 + 'clock230': '๐Ÿ•', 1003 + 'clock3': '๐Ÿ•’', 1004 + 'clock330': '๐Ÿ•ž', 1005 + 'clock4': '๐Ÿ•“', 1006 + 'clock430': '๐Ÿ•Ÿ', 1007 + 'clock5': '๐Ÿ•”', 1008 + 'clock530': '๐Ÿ• ', 1009 + 'clock6': '๐Ÿ••', 1010 + 'clock630': '๐Ÿ•ก', 1011 + 'clock7': '๐Ÿ•–', 1012 + 'clock730': '๐Ÿ•ข', 1013 + 'clock8': '๐Ÿ•—', 1014 + 'clock830': '๐Ÿ•ฃ', 1015 + 'clock9': '๐Ÿ•˜', 1016 + 'clock930': '๐Ÿ•ค', 1017 + 'clock10': '๐Ÿ•™', 1018 + 'clock1030': '๐Ÿ•ฅ', 1019 + 'clock11': '๐Ÿ•š', 1020 + 'clock1130': '๐Ÿ•ฆ', 1021 + 'new_moon': '๐ŸŒ‘', 1022 + 'waxing_crescent_moon': '๐ŸŒ’', 1023 + 'first_quarter_moon': '๐ŸŒ“', 1024 + 'moon': '๐ŸŒ”', 1025 + 'waxing_gibbous_moon': '๐ŸŒ”', 1026 + 'full_moon': '๐ŸŒ•', 1027 + 'waning_gibbous_moon': '๐ŸŒ–', 1028 + 'last_quarter_moon': '๐ŸŒ—', 1029 + 'waning_crescent_moon': '๐ŸŒ˜', 1030 + 'crescent_moon': '๐ŸŒ™', 1031 + 'new_moon_with_face': '๐ŸŒš', 1032 + 'first_quarter_moon_with_face': '๐ŸŒ›', 1033 + 'last_quarter_moon_with_face': '๐ŸŒœ', 1034 + 'thermometer': '๐ŸŒก๏ธ', 1035 + 'sunny': 'โ˜€๏ธ', 1036 + 'full_moon_with_face': '๐ŸŒ', 1037 + 'sun_with_face': '๐ŸŒž', 1038 + 'ringed_planet': '๐Ÿช', 1039 + 'star': 'โญ', 1040 + 'star2': '๐ŸŒŸ', 1041 + 'stars': '๐ŸŒ ', 1042 + 'milky_way': '๐ŸŒŒ', 1043 + 'cloud': 'โ˜๏ธ', 1044 + 'partly_sunny': 'โ›…', 1045 + 'cloud_with_lightning_and_rain': 'โ›ˆ๏ธ', 1046 + 'sun_behind_small_cloud': '๐ŸŒค๏ธ', 1047 + 'sun_behind_large_cloud': '๐ŸŒฅ๏ธ', 1048 + 'sun_behind_rain_cloud': '๐ŸŒฆ๏ธ', 1049 + 'cloud_with_rain': '๐ŸŒง๏ธ', 1050 + 'cloud_with_snow': '๐ŸŒจ๏ธ', 1051 + 'cloud_with_lightning': '๐ŸŒฉ๏ธ', 1052 + 'tornado': '๐ŸŒช๏ธ', 1053 + 'fog': '๐ŸŒซ๏ธ', 1054 + 'wind_face': '๐ŸŒฌ๏ธ', 1055 + 'cyclone': '๐ŸŒ€', 1056 + 'rainbow': '๐ŸŒˆ', 1057 + 'closed_umbrella': '๐ŸŒ‚', 1058 + 'open_umbrella': 'โ˜‚๏ธ', 1059 + 'umbrella': 'โ˜”', 1060 + 'parasol_on_ground': 'โ›ฑ๏ธ', 1061 + 'zap': 'โšก', 1062 + 'snowflake': 'โ„๏ธ', 1063 + 'snowman_with_snow': 'โ˜ƒ๏ธ', 1064 + 'snowman': 'โ›„', 1065 + 'comet': 'โ˜„๏ธ', 1066 + 'fire': '๐Ÿ”ฅ', 1067 + 'droplet': '๐Ÿ’ง', 1068 + 'ocean': '๐ŸŒŠ', 1069 + 'jack_o_lantern': '๐ŸŽƒ', 1070 + 'christmas_tree': '๐ŸŽ„', 1071 + 'fireworks': '๐ŸŽ†', 1072 + 'sparkler': '๐ŸŽ‡', 1073 + 'firecracker': '๐Ÿงจ', 1074 + 'sparkles': 'โœจ', 1075 + 'balloon': '๐ŸŽˆ', 1076 + 'tada': '๐ŸŽ‰', 1077 + 'confetti_ball': '๐ŸŽŠ', 1078 + 'tanabata_tree': '๐ŸŽ‹', 1079 + 'bamboo': '๐ŸŽ', 1080 + 'dolls': '๐ŸŽŽ', 1081 + 'flags': '๐ŸŽ', 1082 + 'wind_chime': '๐ŸŽ', 1083 + 'rice_scene': '๐ŸŽ‘', 1084 + 'red_envelope': '๐Ÿงง', 1085 + 'ribbon': '๐ŸŽ€', 1086 + 'gift': '๐ŸŽ', 1087 + 'reminder_ribbon': '๐ŸŽ—๏ธ', 1088 + 'tickets': '๐ŸŽŸ๏ธ', 1089 + 'ticket': '๐ŸŽซ', 1090 + 'medal_military': '๐ŸŽ–๏ธ', 1091 + 'trophy': '๐Ÿ†', 1092 + 'medal_sports': '๐Ÿ…', 1093 + '1st_place_medal': '๐Ÿฅ‡', 1094 + '2nd_place_medal': '๐Ÿฅˆ', 1095 + '3rd_place_medal': '๐Ÿฅ‰', 1096 + 'soccer': 'โšฝ', 1097 + 'baseball': 'โšพ', 1098 + 'softball': '๐ŸฅŽ', 1099 + 'basketball': '๐Ÿ€', 1100 + 'volleyball': '๐Ÿ', 1101 + 'football': '๐Ÿˆ', 1102 + 'rugby_football': '๐Ÿ‰', 1103 + 'tennis': '๐ŸŽพ', 1104 + 'flying_disc': '๐Ÿฅ', 1105 + 'bowling': '๐ŸŽณ', 1106 + 'cricket_game': '๐Ÿ', 1107 + 'field_hockey': '๐Ÿ‘', 1108 + 'ice_hockey': '๐Ÿ’', 1109 + 'lacrosse': '๐Ÿฅ', 1110 + 'ping_pong': '๐Ÿ“', 1111 + 'badminton': '๐Ÿธ', 1112 + 'boxing_glove': '๐ŸฅŠ', 1113 + 'martial_arts_uniform': '๐Ÿฅ‹', 1114 + 'goal_net': '๐Ÿฅ…', 1115 + 'golf': 'โ›ณ', 1116 + 'ice_skate': 'โ›ธ๏ธ', 1117 + 'fishing_pole_and_fish': '๐ŸŽฃ', 1118 + 'diving_mask': '๐Ÿคฟ', 1119 + 'running_shirt_with_sash': '๐ŸŽฝ', 1120 + 'ski': '๐ŸŽฟ', 1121 + 'sled': '๐Ÿ›ท', 1122 + 'curling_stone': '๐ŸฅŒ', 1123 + 'dart': '๐ŸŽฏ', 1124 + 'yo_yo': '๐Ÿช€', 1125 + 'kite': '๐Ÿช', 1126 + 'gun': '๐Ÿ”ซ', 1127 + '8ball': '๐ŸŽฑ', 1128 + 'crystal_ball': '๐Ÿ”ฎ', 1129 + 'magic_wand': '๐Ÿช„', 1130 + 'video_game': '๐ŸŽฎ', 1131 + 'joystick': '๐Ÿ•น๏ธ', 1132 + 'slot_machine': '๐ŸŽฐ', 1133 + 'game_die': '๐ŸŽฒ', 1134 + 'jigsaw': '๐Ÿงฉ', 1135 + 'teddy_bear': '๐Ÿงธ', 1136 + 'pinata': '๐Ÿช…', 1137 + 'mirror_ball': '๐Ÿชฉ', 1138 + 'nesting_dolls': '๐Ÿช†', 1139 + 'spades': 'โ™ ๏ธ', 1140 + 'hearts': 'โ™ฅ๏ธ', 1141 + 'diamonds': 'โ™ฆ๏ธ', 1142 + 'clubs': 'โ™ฃ๏ธ', 1143 + 'chess_pawn': 'โ™Ÿ๏ธ', 1144 + 'black_joker': '๐Ÿƒ', 1145 + 'mahjong': '๐Ÿ€„', 1146 + 'flower_playing_cards': '๐ŸŽด', 1147 + 'performing_arts': '๐ŸŽญ', 1148 + 'framed_picture': '๐Ÿ–ผ๏ธ', 1149 + 'art': '๐ŸŽจ', 1150 + 'thread': '๐Ÿงต', 1151 + 'sewing_needle': '๐Ÿชก', 1152 + 'yarn': '๐Ÿงถ', 1153 + 'knot': '๐Ÿชข', 1154 + 'eyeglasses': '๐Ÿ‘“', 1155 + 'dark_sunglasses': '๐Ÿ•ถ๏ธ', 1156 + 'goggles': '๐Ÿฅฝ', 1157 + 'lab_coat': '๐Ÿฅผ', 1158 + 'safety_vest': '๐Ÿฆบ', 1159 + 'necktie': '๐Ÿ‘”', 1160 + 'shirt': '๐Ÿ‘•', 1161 + 'tshirt': '๐Ÿ‘•', 1162 + 'jeans': '๐Ÿ‘–', 1163 + 'scarf': '๐Ÿงฃ', 1164 + 'gloves': '๐Ÿงค', 1165 + 'coat': '๐Ÿงฅ', 1166 + 'socks': '๐Ÿงฆ', 1167 + 'dress': '๐Ÿ‘—', 1168 + 'kimono': '๐Ÿ‘˜', 1169 + 'sari': '๐Ÿฅป', 1170 + 'one_piece_swimsuit': '๐Ÿฉฑ', 1171 + 'swim_brief': '๐Ÿฉฒ', 1172 + 'shorts': '๐Ÿฉณ', 1173 + 'bikini': '๐Ÿ‘™', 1174 + 'womans_clothes': '๐Ÿ‘š', 1175 + 'folding_hand_fan': '๐Ÿชญ', 1176 + 'purse': '๐Ÿ‘›', 1177 + 'handbag': '๐Ÿ‘œ', 1178 + 'pouch': '๐Ÿ‘', 1179 + 'shopping': '๐Ÿ›๏ธ', 1180 + 'school_satchel': '๐ŸŽ’', 1181 + 'thong_sandal': '๐Ÿฉด', 1182 + 'mans_shoe': '๐Ÿ‘ž', 1183 + 'shoe': '๐Ÿ‘ž', 1184 + 'athletic_shoe': '๐Ÿ‘Ÿ', 1185 + 'hiking_boot': '๐Ÿฅพ', 1186 + 'flat_shoe': '๐Ÿฅฟ', 1187 + 'high_heel': '๐Ÿ‘ ', 1188 + 'sandal': '๐Ÿ‘ก', 1189 + 'ballet_shoes': '๐Ÿฉฐ', 1190 + 'boot': '๐Ÿ‘ข', 1191 + 'hair_pick': '๐Ÿชฎ', 1192 + 'crown': '๐Ÿ‘‘', 1193 + 'womans_hat': '๐Ÿ‘’', 1194 + 'tophat': '๐ŸŽฉ', 1195 + 'mortar_board': '๐ŸŽ“', 1196 + 'billed_cap': '๐Ÿงข', 1197 + 'military_helmet': '๐Ÿช–', 1198 + 'rescue_worker_helmet': 'โ›‘๏ธ', 1199 + 'prayer_beads': '๐Ÿ“ฟ', 1200 + 'lipstick': '๐Ÿ’„', 1201 + 'ring': '๐Ÿ’', 1202 + 'gem': '๐Ÿ’Ž', 1203 + 'mute': '๐Ÿ”‡', 1204 + 'speaker': '๐Ÿ”ˆ', 1205 + 'sound': '๐Ÿ”‰', 1206 + 'loud_sound': '๐Ÿ”Š', 1207 + 'loudspeaker': '๐Ÿ“ข', 1208 + 'mega': '๐Ÿ“ฃ', 1209 + 'postal_horn': '๐Ÿ“ฏ', 1210 + 'bell': '๐Ÿ””', 1211 + 'no_bell': '๐Ÿ”•', 1212 + 'musical_score': '๐ŸŽผ', 1213 + 'musical_note': '๐ŸŽต', 1214 + 'notes': '๐ŸŽถ', 1215 + 'studio_microphone': '๐ŸŽ™๏ธ', 1216 + 'level_slider': '๐ŸŽš๏ธ', 1217 + 'control_knobs': '๐ŸŽ›๏ธ', 1218 + 'microphone': '๐ŸŽค', 1219 + 'headphones': '๐ŸŽง', 1220 + 'radio': '๐Ÿ“ป', 1221 + 'saxophone': '๐ŸŽท', 1222 + 'accordion': '๐Ÿช—', 1223 + 'guitar': '๐ŸŽธ', 1224 + 'musical_keyboard': '๐ŸŽน', 1225 + 'trumpet': '๐ŸŽบ', 1226 + 'violin': '๐ŸŽป', 1227 + 'banjo': '๐Ÿช•', 1228 + 'drum': '๐Ÿฅ', 1229 + 'long_drum': '๐Ÿช˜', 1230 + 'maracas': '๐Ÿช‡', 1231 + 'flute': '๐Ÿชˆ', 1232 + 'iphone': '๐Ÿ“ฑ', 1233 + 'calling': '๐Ÿ“ฒ', 1234 + 'phone': 'โ˜Ž๏ธ', 1235 + 'telephone': 'โ˜Ž๏ธ', 1236 + 'telephone_receiver': '๐Ÿ“ž', 1237 + 'pager': '๐Ÿ“Ÿ', 1238 + 'fax': '๐Ÿ“ ', 1239 + 'battery': '๐Ÿ”‹', 1240 + 'low_battery': '๐Ÿชซ', 1241 + 'electric_plug': '๐Ÿ”Œ', 1242 + 'computer': '๐Ÿ’ป', 1243 + 'desktop_computer': '๐Ÿ–ฅ๏ธ', 1244 + 'printer': '๐Ÿ–จ๏ธ', 1245 + 'keyboard': 'โŒจ๏ธ', 1246 + 'computer_mouse': '๐Ÿ–ฑ๏ธ', 1247 + 'trackball': '๐Ÿ–ฒ๏ธ', 1248 + 'minidisc': '๐Ÿ’ฝ', 1249 + 'floppy_disk': '๐Ÿ’พ', 1250 + 'cd': '๐Ÿ’ฟ', 1251 + 'dvd': '๐Ÿ“€', 1252 + 'abacus': '๐Ÿงฎ', 1253 + 'movie_camera': '๐ŸŽฅ', 1254 + 'film_strip': '๐ŸŽž๏ธ', 1255 + 'film_projector': '๐Ÿ“ฝ๏ธ', 1256 + 'clapper': '๐ŸŽฌ', 1257 + 'tv': '๐Ÿ“บ', 1258 + 'camera': '๐Ÿ“ท', 1259 + 'camera_flash': '๐Ÿ“ธ', 1260 + 'video_camera': '๐Ÿ“น', 1261 + 'vhs': '๐Ÿ“ผ', 1262 + 'mag': '๐Ÿ”', 1263 + 'mag_right': '๐Ÿ”Ž', 1264 + 'candle': '๐Ÿ•ฏ๏ธ', 1265 + 'bulb': '๐Ÿ’ก', 1266 + 'flashlight': '๐Ÿ”ฆ', 1267 + 'izakaya_lantern': '๐Ÿฎ', 1268 + 'lantern': '๐Ÿฎ', 1269 + 'diya_lamp': '๐Ÿช”', 1270 + 'notebook_with_decorative_cover': '๐Ÿ“”', 1271 + 'closed_book': '๐Ÿ“•', 1272 + 'book': '๐Ÿ“–', 1273 + 'open_book': '๐Ÿ“–', 1274 + 'green_book': '๐Ÿ“—', 1275 + 'blue_book': '๐Ÿ“˜', 1276 + 'orange_book': '๐Ÿ“™', 1277 + 'books': '๐Ÿ“š', 1278 + 'notebook': '๐Ÿ““', 1279 + 'ledger': '๐Ÿ“’', 1280 + 'page_with_curl': '๐Ÿ“ƒ', 1281 + 'scroll': '๐Ÿ“œ', 1282 + 'page_facing_up': '๐Ÿ“„', 1283 + 'newspaper': '๐Ÿ“ฐ', 1284 + 'newspaper_roll': '๐Ÿ—ž๏ธ', 1285 + 'bookmark_tabs': '๐Ÿ“‘', 1286 + 'bookmark': '๐Ÿ”–', 1287 + 'label': '๐Ÿท๏ธ', 1288 + 'moneybag': '๐Ÿ’ฐ', 1289 + 'coin': '๐Ÿช™', 1290 + 'yen': '๐Ÿ’ด', 1291 + 'dollar': '๐Ÿ’ต', 1292 + 'euro': '๐Ÿ’ถ', 1293 + 'pound': '๐Ÿ’ท', 1294 + 'money_with_wings': '๐Ÿ’ธ', 1295 + 'credit_card': '๐Ÿ’ณ', 1296 + 'receipt': '๐Ÿงพ', 1297 + 'chart': '๐Ÿ’น', 1298 + 'envelope': 'โœ‰๏ธ', 1299 + 'email': '๐Ÿ“ง', 1300 + 'e-mail': '๐Ÿ“ง', 1301 + 'incoming_envelope': '๐Ÿ“จ', 1302 + 'envelope_with_arrow': '๐Ÿ“ฉ', 1303 + 'outbox_tray': '๐Ÿ“ค', 1304 + 'inbox_tray': '๐Ÿ“ฅ', 1305 + 'package': '๐Ÿ“ฆ', 1306 + 'mailbox': '๐Ÿ“ซ', 1307 + 'mailbox_closed': '๐Ÿ“ช', 1308 + 'mailbox_with_mail': '๐Ÿ“ฌ', 1309 + 'mailbox_with_no_mail': '๐Ÿ“ญ', 1310 + 'postbox': '๐Ÿ“ฎ', 1311 + 'ballot_box': '๐Ÿ—ณ๏ธ', 1312 + 'pencil2': 'โœ๏ธ', 1313 + 'black_nib': 'โœ’๏ธ', 1314 + 'fountain_pen': '๐Ÿ–‹๏ธ', 1315 + 'pen': '๐Ÿ–Š๏ธ', 1316 + 'paintbrush': '๐Ÿ–Œ๏ธ', 1317 + 'crayon': '๐Ÿ–๏ธ', 1318 + 'memo': '๐Ÿ“', 1319 + 'pencil': '๐Ÿ“', 1320 + 'briefcase': '๐Ÿ’ผ', 1321 + 'file_folder': '๐Ÿ“', 1322 + 'open_file_folder': '๐Ÿ“‚', 1323 + 'card_index_dividers': '๐Ÿ—‚๏ธ', 1324 + 'date': '๐Ÿ“…', 1325 + 'calendar': '๐Ÿ“†', 1326 + 'spiral_notepad': '๐Ÿ—’๏ธ', 1327 + 'spiral_calendar': '๐Ÿ—“๏ธ', 1328 + 'card_index': '๐Ÿ“‡', 1329 + 'chart_with_upwards_trend': '๐Ÿ“ˆ', 1330 + 'chart_with_downwards_trend': '๐Ÿ“‰', 1331 + 'bar_chart': '๐Ÿ“Š', 1332 + 'clipboard': '๐Ÿ“‹', 1333 + 'pushpin': '๐Ÿ“Œ', 1334 + 'round_pushpin': '๐Ÿ“', 1335 + 'paperclip': '๐Ÿ“Ž', 1336 + 'paperclips': '๐Ÿ–‡๏ธ', 1337 + 'straight_ruler': '๐Ÿ“', 1338 + 'triangular_ruler': '๐Ÿ“', 1339 + 'scissors': 'โœ‚๏ธ', 1340 + 'card_file_box': '๐Ÿ—ƒ๏ธ', 1341 + 'file_cabinet': '๐Ÿ—„๏ธ', 1342 + 'wastebasket': '๐Ÿ—‘๏ธ', 1343 + 'lock': '๐Ÿ”’', 1344 + 'unlock': '๐Ÿ”“', 1345 + 'lock_with_ink_pen': '๐Ÿ”', 1346 + 'closed_lock_with_key': '๐Ÿ”', 1347 + 'key': '๐Ÿ”‘', 1348 + 'old_key': '๐Ÿ—๏ธ', 1349 + 'hammer': '๐Ÿ”จ', 1350 + 'axe': '๐Ÿช“', 1351 + 'pick': 'โ›๏ธ', 1352 + 'hammer_and_pick': 'โš’๏ธ', 1353 + 'hammer_and_wrench': '๐Ÿ› ๏ธ', 1354 + 'dagger': '๐Ÿ—ก๏ธ', 1355 + 'crossed_swords': 'โš”๏ธ', 1356 + 'bomb': '๐Ÿ’ฃ', 1357 + 'boomerang': '๐Ÿชƒ', 1358 + 'bow_and_arrow': '๐Ÿน', 1359 + 'shield': '๐Ÿ›ก๏ธ', 1360 + 'carpentry_saw': '๐Ÿชš', 1361 + 'wrench': '๐Ÿ”ง', 1362 + 'screwdriver': '๐Ÿช›', 1363 + 'nut_and_bolt': '๐Ÿ”ฉ', 1364 + 'gear': 'โš™๏ธ', 1365 + 'clamp': '๐Ÿ—œ๏ธ', 1366 + 'balance_scale': 'โš–๏ธ', 1367 + 'probing_cane': '๐Ÿฆฏ', 1368 + 'link': '๐Ÿ”—', 1369 + 'chains': 'โ›“๏ธ', 1370 + 'hook': '๐Ÿช', 1371 + 'toolbox': '๐Ÿงฐ', 1372 + 'magnet': '๐Ÿงฒ', 1373 + 'ladder': '๐Ÿชœ', 1374 + 'alembic': 'โš—๏ธ', 1375 + 'test_tube': '๐Ÿงช', 1376 + 'petri_dish': '๐Ÿงซ', 1377 + 'dna': '๐Ÿงฌ', 1378 + 'microscope': '๐Ÿ”ฌ', 1379 + 'telescope': '๐Ÿ”ญ', 1380 + 'satellite': '๐Ÿ“ก', 1381 + 'syringe': '๐Ÿ’‰', 1382 + 'drop_of_blood': '๐Ÿฉธ', 1383 + 'pill': '๐Ÿ’Š', 1384 + 'adhesive_bandage': '๐Ÿฉน', 1385 + 'crutch': '๐Ÿฉผ', 1386 + 'stethoscope': '๐Ÿฉบ', 1387 + 'x_ray': '๐Ÿฉป', 1388 + 'door': '๐Ÿšช', 1389 + 'elevator': '๐Ÿ›—', 1390 + 'mirror': '๐Ÿชž', 1391 + 'window': '๐ŸชŸ', 1392 + 'bed': '๐Ÿ›๏ธ', 1393 + 'couch_and_lamp': '๐Ÿ›‹๏ธ', 1394 + 'chair': '๐Ÿช‘', 1395 + 'toilet': '๐Ÿšฝ', 1396 + 'plunger': '๐Ÿช ', 1397 + 'shower': '๐Ÿšฟ', 1398 + 'bathtub': '๐Ÿ›', 1399 + 'mouse_trap': '๐Ÿชค', 1400 + 'razor': '๐Ÿช’', 1401 + 'lotion_bottle': '๐Ÿงด', 1402 + 'safety_pin': '๐Ÿงท', 1403 + 'broom': '๐Ÿงน', 1404 + 'basket': '๐Ÿงบ', 1405 + 'roll_of_paper': '๐Ÿงป', 1406 + 'bucket': '๐Ÿชฃ', 1407 + 'soap': '๐Ÿงผ', 1408 + 'bubbles': '๐Ÿซง', 1409 + 'toothbrush': '๐Ÿชฅ', 1410 + 'sponge': '๐Ÿงฝ', 1411 + 'fire_extinguisher': '๐Ÿงฏ', 1412 + 'shopping_cart': '๐Ÿ›’', 1413 + 'smoking': '๐Ÿšฌ', 1414 + 'coffin': 'โšฐ๏ธ', 1415 + 'headstone': '๐Ÿชฆ', 1416 + 'funeral_urn': 'โšฑ๏ธ', 1417 + 'nazar_amulet': '๐Ÿงฟ', 1418 + 'hamsa': '๐Ÿชฌ', 1419 + 'moyai': '๐Ÿ—ฟ', 1420 + 'placard': '๐Ÿชง', 1421 + 'identification_card': '๐Ÿชช', 1422 + 'atm': '๐Ÿง', 1423 + 'put_litter_in_its_place': '๐Ÿšฎ', 1424 + 'potable_water': '๐Ÿšฐ', 1425 + 'wheelchair': 'โ™ฟ', 1426 + 'mens': '๐Ÿšน', 1427 + 'womens': '๐Ÿšบ', 1428 + 'restroom': '๐Ÿšป', 1429 + 'baby_symbol': '๐Ÿšผ', 1430 + 'wc': '๐Ÿšพ', 1431 + 'passport_control': '๐Ÿ›‚', 1432 + 'customs': '๐Ÿ›ƒ', 1433 + 'baggage_claim': '๐Ÿ›„', 1434 + 'left_luggage': '๐Ÿ›…', 1435 + 'warning': 'โš ๏ธ', 1436 + 'children_crossing': '๐Ÿšธ', 1437 + 'no_entry': 'โ›”', 1438 + 'no_entry_sign': '๐Ÿšซ', 1439 + 'no_bicycles': '๐Ÿšณ', 1440 + 'no_smoking': '๐Ÿšญ', 1441 + 'do_not_litter': '๐Ÿšฏ', 1442 + 'non-potable_water': '๐Ÿšฑ', 1443 + 'no_pedestrians': '๐Ÿšท', 1444 + 'no_mobile_phones': '๐Ÿ“ต', 1445 + 'underage': '๐Ÿ”ž', 1446 + 'radioactive': 'โ˜ข๏ธ', 1447 + 'biohazard': 'โ˜ฃ๏ธ', 1448 + 'arrow_up': 'โฌ†๏ธ', 1449 + 'arrow_upper_right': 'โ†—๏ธ', 1450 + 'arrow_right': 'โžก๏ธ', 1451 + 'arrow_lower_right': 'โ†˜๏ธ', 1452 + 'arrow_down': 'โฌ‡๏ธ', 1453 + 'arrow_lower_left': 'โ†™๏ธ', 1454 + 'arrow_left': 'โฌ…๏ธ', 1455 + 'arrow_upper_left': 'โ†–๏ธ', 1456 + 'arrow_up_down': 'โ†•๏ธ', 1457 + 'left_right_arrow': 'โ†”๏ธ', 1458 + 'leftwards_arrow_with_hook': 'โ†ฉ๏ธ', 1459 + 'arrow_right_hook': 'โ†ช๏ธ', 1460 + 'arrow_heading_up': 'โคด๏ธ', 1461 + 'arrow_heading_down': 'โคต๏ธ', 1462 + 'arrows_clockwise': '๐Ÿ”ƒ', 1463 + 'arrows_counterclockwise': '๐Ÿ”„', 1464 + 'back': '๐Ÿ”™', 1465 + 'end': '๐Ÿ”š', 1466 + 'on': '๐Ÿ”›', 1467 + 'soon': '๐Ÿ”œ', 1468 + 'top': '๐Ÿ”', 1469 + 'place_of_worship': '๐Ÿ›', 1470 + 'atom_symbol': 'โš›๏ธ', 1471 + 'om': '๐Ÿ•‰๏ธ', 1472 + 'star_of_david': 'โœก๏ธ', 1473 + 'wheel_of_dharma': 'โ˜ธ๏ธ', 1474 + 'yin_yang': 'โ˜ฏ๏ธ', 1475 + 'latin_cross': 'โœ๏ธ', 1476 + 'orthodox_cross': 'โ˜ฆ๏ธ', 1477 + 'star_and_crescent': 'โ˜ช๏ธ', 1478 + 'peace_symbol': 'โ˜ฎ๏ธ', 1479 + 'menorah': '๐Ÿ•Ž', 1480 + 'six_pointed_star': '๐Ÿ”ฏ', 1481 + 'khanda': '๐Ÿชฏ', 1482 + 'aries': 'โ™ˆ', 1483 + 'taurus': 'โ™‰', 1484 + 'gemini': 'โ™Š', 1485 + 'cancer': 'โ™‹', 1486 + 'leo': 'โ™Œ', 1487 + 'virgo': 'โ™', 1488 + 'libra': 'โ™Ž', 1489 + 'scorpius': 'โ™', 1490 + 'sagittarius': 'โ™', 1491 + 'capricorn': 'โ™‘', 1492 + 'aquarius': 'โ™’', 1493 + 'pisces': 'โ™“', 1494 + 'ophiuchus': 'โ›Ž', 1495 + 'twisted_rightwards_arrows': '๐Ÿ”€', 1496 + 'repeat': '๐Ÿ”', 1497 + 'repeat_one': '๐Ÿ”‚', 1498 + 'arrow_forward': 'โ–ถ๏ธ', 1499 + 'fast_forward': 'โฉ', 1500 + 'next_track_button': 'โญ๏ธ', 1501 + 'play_or_pause_button': 'โฏ๏ธ', 1502 + 'arrow_backward': 'โ—€๏ธ', 1503 + 'rewind': 'โช', 1504 + 'previous_track_button': 'โฎ๏ธ', 1505 + 'arrow_up_small': '๐Ÿ”ผ', 1506 + 'arrow_double_up': 'โซ', 1507 + 'arrow_down_small': '๐Ÿ”ฝ', 1508 + 'arrow_double_down': 'โฌ', 1509 + 'pause_button': 'โธ๏ธ', 1510 + 'stop_button': 'โน๏ธ', 1511 + 'record_button': 'โบ๏ธ', 1512 + 'eject_button': 'โ๏ธ', 1513 + 'cinema': '๐ŸŽฆ', 1514 + 'low_brightness': '๐Ÿ”…', 1515 + 'high_brightness': '๐Ÿ”†', 1516 + 'signal_strength': '๐Ÿ“ถ', 1517 + 'wireless': '๐Ÿ›œ', 1518 + 'vibration_mode': '๐Ÿ“ณ', 1519 + 'mobile_phone_off': '๐Ÿ“ด', 1520 + 'female_sign': 'โ™€๏ธ', 1521 + 'male_sign': 'โ™‚๏ธ', 1522 + 'transgender_symbol': 'โšง๏ธ', 1523 + 'heavy_multiplication_x': 'โœ–๏ธ', 1524 + 'heavy_plus_sign': 'โž•', 1525 + 'heavy_minus_sign': 'โž–', 1526 + 'heavy_division_sign': 'โž—', 1527 + 'heavy_equals_sign': '๐ŸŸฐ', 1528 + 'infinity': 'โ™พ๏ธ', 1529 + 'bangbang': 'โ€ผ๏ธ', 1530 + 'interrobang': 'โ‰๏ธ', 1531 + 'question': 'โ“', 1532 + 'grey_question': 'โ”', 1533 + 'grey_exclamation': 'โ•', 1534 + 'exclamation': 'โ—', 1535 + 'heavy_exclamation_mark': 'โ—', 1536 + 'wavy_dash': 'ใ€ฐ๏ธ', 1537 + 'currency_exchange': '๐Ÿ’ฑ', 1538 + 'heavy_dollar_sign': '๐Ÿ’ฒ', 1539 + 'medical_symbol': 'โš•๏ธ', 1540 + 'recycle': 'โ™ป๏ธ', 1541 + 'fleur_de_lis': 'โšœ๏ธ', 1542 + 'trident': '๐Ÿ”ฑ', 1543 + 'name_badge': '๐Ÿ“›', 1544 + 'beginner': '๐Ÿ”ฐ', 1545 + 'o': 'โญ•', 1546 + 'white_check_mark': 'โœ…', 1547 + 'ballot_box_with_check': 'โ˜‘๏ธ', 1548 + 'heavy_check_mark': 'โœ”๏ธ', 1549 + 'x': 'โŒ', 1550 + 'negative_squared_cross_mark': 'โŽ', 1551 + 'curly_loop': 'โžฐ', 1552 + 'loop': 'โžฟ', 1553 + 'part_alternation_mark': 'ใ€ฝ๏ธ', 1554 + 'eight_spoked_asterisk': 'โœณ๏ธ', 1555 + 'eight_pointed_black_star': 'โœด๏ธ', 1556 + 'sparkle': 'โ‡๏ธ', 1557 + 'copyright': 'ยฉ๏ธ', 1558 + 'registered': 'ยฎ๏ธ', 1559 + 'tm': 'โ„ข๏ธ', 1560 + 'hash': '#๏ธโƒฃ', 1561 + 'asterisk': '*๏ธโƒฃ', 1562 + 'zero': '0๏ธโƒฃ', 1563 + 'one': '1๏ธโƒฃ', 1564 + 'two': '2๏ธโƒฃ', 1565 + 'three': '3๏ธโƒฃ', 1566 + 'four': '4๏ธโƒฃ', 1567 + 'five': '5๏ธโƒฃ', 1568 + 'six': '6๏ธโƒฃ', 1569 + 'seven': '7๏ธโƒฃ', 1570 + 'eight': '8๏ธโƒฃ', 1571 + 'nine': '9๏ธโƒฃ', 1572 + 'keycap_ten': '๐Ÿ”Ÿ', 1573 + 'capital_abcd': '๐Ÿ” ', 1574 + 'abcd': '๐Ÿ”ก', 1575 + 'symbols': '๐Ÿ”ฃ', 1576 + 'abc': '๐Ÿ”ค', 1577 + 'a': '๐Ÿ…ฐ๏ธ', 1578 + 'ab': '๐Ÿ†Ž', 1579 + 'b': '๐Ÿ…ฑ๏ธ', 1580 + 'cl': '๐Ÿ†‘', 1581 + 'cool': '๐Ÿ†’', 1582 + 'free': '๐Ÿ†“', 1583 + 'information_source': 'โ„น๏ธ', 1584 + 'id': '๐Ÿ†”', 1585 + 'm': 'โ“‚๏ธ', 1586 + 'new': '๐Ÿ†•', 1587 + 'ng': '๐Ÿ†–', 1588 + 'o2': '๐Ÿ…พ๏ธ', 1589 + 'ok': '๐Ÿ†—', 1590 + 'parking': '๐Ÿ…ฟ๏ธ', 1591 + 'sos': '๐Ÿ†˜', 1592 + 'up': '๐Ÿ†™', 1593 + 'vs': '๐Ÿ†š', 1594 + 'koko': '๐Ÿˆ', 1595 + 'sa': '๐Ÿˆ‚๏ธ', 1596 + 'ideograph_advantage': '๐Ÿ‰', 1597 + 'accept': '๐Ÿ‰‘', 1598 + 'congratulations': 'ใŠ—๏ธ', 1599 + 'secret': 'ใŠ™๏ธ', 1600 + 'u6e80': '๐Ÿˆต', 1601 + 'red_circle': '๐Ÿ”ด', 1602 + 'orange_circle': '๐ŸŸ ', 1603 + 'yellow_circle': '๐ŸŸก', 1604 + 'green_circle': '๐ŸŸข', 1605 + 'large_blue_circle': '๐Ÿ”ต', 1606 + 'purple_circle': '๐ŸŸฃ', 1607 + 'brown_circle': '๐ŸŸค', 1608 + 'black_circle': 'โšซ', 1609 + 'white_circle': 'โšช', 1610 + 'red_square': '๐ŸŸฅ', 1611 + 'orange_square': '๐ŸŸง', 1612 + 'yellow_square': '๐ŸŸจ', 1613 + 'green_square': '๐ŸŸฉ', 1614 + 'blue_square': '๐ŸŸฆ', 1615 + 'purple_square': '๐ŸŸช', 1616 + 'brown_square': '๐ŸŸซ', 1617 + 'black_large_square': 'โฌ›', 1618 + 'white_large_square': 'โฌœ', 1619 + 'black_medium_square': 'โ—ผ๏ธ', 1620 + 'white_medium_square': 'โ—ป๏ธ', 1621 + 'black_medium_small_square': 'โ—พ', 1622 + 'white_medium_small_square': 'โ—ฝ', 1623 + 'black_small_square': 'โ–ช๏ธ', 1624 + 'white_small_square': 'โ–ซ๏ธ', 1625 + 'large_orange_diamond': '๐Ÿ”ถ', 1626 + 'large_blue_diamond': '๐Ÿ”ท', 1627 + 'small_orange_diamond': '๐Ÿ”ธ', 1628 + 'small_blue_diamond': '๐Ÿ”น', 1629 + 'small_red_triangle': '๐Ÿ”บ', 1630 + 'small_red_triangle_down': '๐Ÿ”ป', 1631 + 'diamond_shape_with_a_dot_inside': '๐Ÿ’ ', 1632 + 'radio_button': '๐Ÿ”˜', 1633 + 'white_square_button': '๐Ÿ”ณ', 1634 + 'black_square_button': '๐Ÿ”ฒ', 1635 + 'checkered_flag': '๐Ÿ', 1636 + 'triangular_flag_on_post': '๐Ÿšฉ', 1637 + 'crossed_flags': '๐ŸŽŒ', 1638 + 'black_flag': '๐Ÿด', 1639 + 'white_flag': '๐Ÿณ๏ธ', 1640 + 'rainbow_flag': '๐Ÿณ๏ธโ€๐ŸŒˆ', 1641 + 'transgender_flag': '๐Ÿณ๏ธโ€โšง๏ธ', 1642 + 'pirate_flag': '๐Ÿดโ€โ˜ ๏ธ', 1643 + 'ascension_island': '๐Ÿ‡ฆ๐Ÿ‡จ', 1644 + 'andorra': '๐Ÿ‡ฆ๐Ÿ‡ฉ', 1645 + 'united_arab_emirates': '๐Ÿ‡ฆ๐Ÿ‡ช', 1646 + 'afghanistan': '๐Ÿ‡ฆ๐Ÿ‡ซ', 1647 + 'antigua_barbuda': '๐Ÿ‡ฆ๐Ÿ‡ฌ', 1648 + 'anguilla': '๐Ÿ‡ฆ๐Ÿ‡ฎ', 1649 + 'albania': '๐Ÿ‡ฆ๐Ÿ‡ฑ', 1650 + 'armenia': '๐Ÿ‡ฆ๐Ÿ‡ฒ', 1651 + 'angola': '๐Ÿ‡ฆ๐Ÿ‡ด', 1652 + 'antarctica': '๐Ÿ‡ฆ๐Ÿ‡ถ', 1653 + 'argentina': '๐Ÿ‡ฆ๐Ÿ‡ท', 1654 + 'american_samoa': '๐Ÿ‡ฆ๐Ÿ‡ธ', 1655 + 'austria': '๐Ÿ‡ฆ๐Ÿ‡น', 1656 + 'australia': '๐Ÿ‡ฆ๐Ÿ‡บ', 1657 + 'aruba': '๐Ÿ‡ฆ๐Ÿ‡ผ', 1658 + 'aland_islands': '๐Ÿ‡ฆ๐Ÿ‡ฝ', 1659 + 'azerbaijan': '๐Ÿ‡ฆ๐Ÿ‡ฟ', 1660 + 'bosnia_herzegovina': '๐Ÿ‡ง๐Ÿ‡ฆ', 1661 + 'barbados': '๐Ÿ‡ง๐Ÿ‡ง', 1662 + 'bangladesh': '๐Ÿ‡ง๐Ÿ‡ฉ', 1663 + 'belgium': '๐Ÿ‡ง๐Ÿ‡ช', 1664 + 'burkina_faso': '๐Ÿ‡ง๐Ÿ‡ซ', 1665 + 'bulgaria': '๐Ÿ‡ง๐Ÿ‡ฌ', 1666 + 'bahrain': '๐Ÿ‡ง๐Ÿ‡ญ', 1667 + 'burundi': '๐Ÿ‡ง๐Ÿ‡ฎ', 1668 + 'benin': '๐Ÿ‡ง๐Ÿ‡ฏ', 1669 + 'st_barthelemy': '๐Ÿ‡ง๐Ÿ‡ฑ', 1670 + 'bermuda': '๐Ÿ‡ง๐Ÿ‡ฒ', 1671 + 'brunei': '๐Ÿ‡ง๐Ÿ‡ณ', 1672 + 'bolivia': '๐Ÿ‡ง๐Ÿ‡ด', 1673 + 'caribbean_netherlands': '๐Ÿ‡ง๐Ÿ‡ถ', 1674 + 'brazil': '๐Ÿ‡ง๐Ÿ‡ท', 1675 + 'bahamas': '๐Ÿ‡ง๐Ÿ‡ธ', 1676 + 'bhutan': '๐Ÿ‡ง๐Ÿ‡น', 1677 + 'bouvet_island': '๐Ÿ‡ง๐Ÿ‡ป', 1678 + 'botswana': '๐Ÿ‡ง๐Ÿ‡ผ', 1679 + 'belarus': '๐Ÿ‡ง๐Ÿ‡พ', 1680 + 'belize': '๐Ÿ‡ง๐Ÿ‡ฟ', 1681 + 'canada': '๐Ÿ‡จ๐Ÿ‡ฆ', 1682 + 'cocos_islands': '๐Ÿ‡จ๐Ÿ‡จ', 1683 + 'congo_kinshasa': '๐Ÿ‡จ๐Ÿ‡ฉ', 1684 + 'central_african_republic': '๐Ÿ‡จ๐Ÿ‡ซ', 1685 + 'congo_brazzaville': '๐Ÿ‡จ๐Ÿ‡ฌ', 1686 + 'switzerland': '๐Ÿ‡จ๐Ÿ‡ญ', 1687 + 'cote_divoire': '๐Ÿ‡จ๐Ÿ‡ฎ', 1688 + 'cook_islands': '๐Ÿ‡จ๐Ÿ‡ฐ', 1689 + 'chile': '๐Ÿ‡จ๐Ÿ‡ฑ', 1690 + 'cameroon': '๐Ÿ‡จ๐Ÿ‡ฒ', 1691 + 'cn': '๐Ÿ‡จ๐Ÿ‡ณ', 1692 + 'colombia': '๐Ÿ‡จ๐Ÿ‡ด', 1693 + 'clipperton_island': '๐Ÿ‡จ๐Ÿ‡ต', 1694 + 'costa_rica': '๐Ÿ‡จ๐Ÿ‡ท', 1695 + 'cuba': '๐Ÿ‡จ๐Ÿ‡บ', 1696 + 'cape_verde': '๐Ÿ‡จ๐Ÿ‡ป', 1697 + 'curacao': '๐Ÿ‡จ๐Ÿ‡ผ', 1698 + 'christmas_island': '๐Ÿ‡จ๐Ÿ‡ฝ', 1699 + 'cyprus': '๐Ÿ‡จ๐Ÿ‡พ', 1700 + 'czech_republic': '๐Ÿ‡จ๐Ÿ‡ฟ', 1701 + 'de': '๐Ÿ‡ฉ๐Ÿ‡ช', 1702 + 'diego_garcia': '๐Ÿ‡ฉ๐Ÿ‡ฌ', 1703 + 'djibouti': '๐Ÿ‡ฉ๐Ÿ‡ฏ', 1704 + 'denmark': '๐Ÿ‡ฉ๐Ÿ‡ฐ', 1705 + 'dominica': '๐Ÿ‡ฉ๐Ÿ‡ฒ', 1706 + 'dominican_republic': '๐Ÿ‡ฉ๐Ÿ‡ด', 1707 + 'algeria': '๐Ÿ‡ฉ๐Ÿ‡ฟ', 1708 + 'ceuta_melilla': '๐Ÿ‡ช๐Ÿ‡ฆ', 1709 + 'ecuador': '๐Ÿ‡ช๐Ÿ‡จ', 1710 + 'estonia': '๐Ÿ‡ช๐Ÿ‡ช', 1711 + 'egypt': '๐Ÿ‡ช๐Ÿ‡ฌ', 1712 + 'western_sahara': '๐Ÿ‡ช๐Ÿ‡ญ', 1713 + 'eritrea': '๐Ÿ‡ช๐Ÿ‡ท', 1714 + 'es': '๐Ÿ‡ช๐Ÿ‡ธ', 1715 + 'ethiopia': '๐Ÿ‡ช๐Ÿ‡น', 1716 + 'eu': '๐Ÿ‡ช๐Ÿ‡บ', 1717 + 'european_union': '๐Ÿ‡ช๐Ÿ‡บ', 1718 + 'finland': '๐Ÿ‡ซ๐Ÿ‡ฎ', 1719 + 'fiji': '๐Ÿ‡ซ๐Ÿ‡ฏ', 1720 + 'falkland_islands': '๐Ÿ‡ซ๐Ÿ‡ฐ', 1721 + 'micronesia': '๐Ÿ‡ซ๐Ÿ‡ฒ', 1722 + 'faroe_islands': '๐Ÿ‡ซ๐Ÿ‡ด', 1723 + 'fr': '๐Ÿ‡ซ๐Ÿ‡ท', 1724 + 'gabon': '๐Ÿ‡ฌ๐Ÿ‡ฆ', 1725 + 'gb': '๐Ÿ‡ฌ๐Ÿ‡ง', 1726 + 'uk': '๐Ÿ‡ฌ๐Ÿ‡ง', 1727 + 'grenada': '๐Ÿ‡ฌ๐Ÿ‡ฉ', 1728 + 'georgia': '๐Ÿ‡ฌ๐Ÿ‡ช', 1729 + 'french_guiana': '๐Ÿ‡ฌ๐Ÿ‡ซ', 1730 + 'guernsey': '๐Ÿ‡ฌ๐Ÿ‡ฌ', 1731 + 'ghana': '๐Ÿ‡ฌ๐Ÿ‡ญ', 1732 + 'gibraltar': '๐Ÿ‡ฌ๐Ÿ‡ฎ', 1733 + 'greenland': '๐Ÿ‡ฌ๐Ÿ‡ฑ', 1734 + 'gambia': '๐Ÿ‡ฌ๐Ÿ‡ฒ', 1735 + 'guinea': '๐Ÿ‡ฌ๐Ÿ‡ณ', 1736 + 'guadeloupe': '๐Ÿ‡ฌ๐Ÿ‡ต', 1737 + 'equatorial_guinea': '๐Ÿ‡ฌ๐Ÿ‡ถ', 1738 + 'greece': '๐Ÿ‡ฌ๐Ÿ‡ท', 1739 + 'south_georgia_south_sandwich_islands': '๐Ÿ‡ฌ๐Ÿ‡ธ', 1740 + 'guatemala': '๐Ÿ‡ฌ๐Ÿ‡น', 1741 + 'guam': '๐Ÿ‡ฌ๐Ÿ‡บ', 1742 + 'guinea_bissau': '๐Ÿ‡ฌ๐Ÿ‡ผ', 1743 + 'guyana': '๐Ÿ‡ฌ๐Ÿ‡พ', 1744 + 'hong_kong': '๐Ÿ‡ญ๐Ÿ‡ฐ', 1745 + 'heard_mcdonald_islands': '๐Ÿ‡ญ๐Ÿ‡ฒ', 1746 + 'honduras': '๐Ÿ‡ญ๐Ÿ‡ณ', 1747 + 'croatia': '๐Ÿ‡ญ๐Ÿ‡ท', 1748 + 'haiti': '๐Ÿ‡ญ๐Ÿ‡น', 1749 + 'hungary': '๐Ÿ‡ญ๐Ÿ‡บ', 1750 + 'canary_islands': '๐Ÿ‡ฎ๐Ÿ‡จ', 1751 + 'indonesia': '๐Ÿ‡ฎ๐Ÿ‡ฉ', 1752 + 'ireland': '๐Ÿ‡ฎ๐Ÿ‡ช', 1753 + 'israel': '๐Ÿ‡ฎ๐Ÿ‡ฑ', 1754 + 'isle_of_man': '๐Ÿ‡ฎ๐Ÿ‡ฒ', 1755 + 'india': '๐Ÿ‡ฎ๐Ÿ‡ณ', 1756 + 'british_indian_ocean_territory': '๐Ÿ‡ฎ๐Ÿ‡ด', 1757 + 'iraq': '๐Ÿ‡ฎ๐Ÿ‡ถ', 1758 + 'iran': '๐Ÿ‡ฎ๐Ÿ‡ท', 1759 + 'iceland': '๐Ÿ‡ฎ๐Ÿ‡ธ', 1760 + 'it': '๐Ÿ‡ฎ๐Ÿ‡น', 1761 + 'jersey': '๐Ÿ‡ฏ๐Ÿ‡ช', 1762 + 'jamaica': '๐Ÿ‡ฏ๐Ÿ‡ฒ', 1763 + 'jordan': '๐Ÿ‡ฏ๐Ÿ‡ด', 1764 + 'jp': '๐Ÿ‡ฏ๐Ÿ‡ต', 1765 + 'kenya': '๐Ÿ‡ฐ๐Ÿ‡ช', 1766 + 'kyrgyzstan': '๐Ÿ‡ฐ๐Ÿ‡ฌ', 1767 + 'cambodia': '๐Ÿ‡ฐ๐Ÿ‡ญ', 1768 + 'kiribati': '๐Ÿ‡ฐ๐Ÿ‡ฎ', 1769 + 'comoros': '๐Ÿ‡ฐ๐Ÿ‡ฒ', 1770 + 'st_kitts_nevis': '๐Ÿ‡ฐ๐Ÿ‡ณ', 1771 + 'north_korea': '๐Ÿ‡ฐ๐Ÿ‡ต', 1772 + 'kr': '๐Ÿ‡ฐ๐Ÿ‡ท', 1773 + 'kuwait': '๐Ÿ‡ฐ๐Ÿ‡ผ', 1774 + 'cayman_islands': '๐Ÿ‡ฐ๐Ÿ‡พ', 1775 + 'kazakhstan': '๐Ÿ‡ฐ๐Ÿ‡ฟ', 1776 + 'laos': '๐Ÿ‡ฑ๐Ÿ‡ฆ', 1777 + 'lebanon': '๐Ÿ‡ฑ๐Ÿ‡ง', 1778 + 'st_lucia': '๐Ÿ‡ฑ๐Ÿ‡จ', 1779 + 'liechtenstein': '๐Ÿ‡ฑ๐Ÿ‡ฎ', 1780 + 'sri_lanka': '๐Ÿ‡ฑ๐Ÿ‡ฐ', 1781 + 'liberia': '๐Ÿ‡ฑ๐Ÿ‡ท', 1782 + 'lesotho': '๐Ÿ‡ฑ๐Ÿ‡ธ', 1783 + 'lithuania': '๐Ÿ‡ฑ๐Ÿ‡น', 1784 + 'luxembourg': '๐Ÿ‡ฑ๐Ÿ‡บ', 1785 + 'latvia': '๐Ÿ‡ฑ๐Ÿ‡ป', 1786 + 'libya': '๐Ÿ‡ฑ๐Ÿ‡พ', 1787 + 'morocco': '๐Ÿ‡ฒ๐Ÿ‡ฆ', 1788 + 'monaco': '๐Ÿ‡ฒ๐Ÿ‡จ', 1789 + 'moldova': '๐Ÿ‡ฒ๐Ÿ‡ฉ', 1790 + 'montenegro': '๐Ÿ‡ฒ๐Ÿ‡ช', 1791 + 'st_martin': '๐Ÿ‡ฒ๐Ÿ‡ซ', 1792 + 'madagascar': '๐Ÿ‡ฒ๐Ÿ‡ฌ', 1793 + 'marshall_islands': '๐Ÿ‡ฒ๐Ÿ‡ญ', 1794 + 'macedonia': '๐Ÿ‡ฒ๐Ÿ‡ฐ', 1795 + 'mali': '๐Ÿ‡ฒ๐Ÿ‡ฑ', 1796 + 'myanmar': '๐Ÿ‡ฒ๐Ÿ‡ฒ', 1797 + 'mongolia': '๐Ÿ‡ฒ๐Ÿ‡ณ', 1798 + 'macau': '๐Ÿ‡ฒ๐Ÿ‡ด', 1799 + 'northern_mariana_islands': '๐Ÿ‡ฒ๐Ÿ‡ต', 1800 + 'martinique': '๐Ÿ‡ฒ๐Ÿ‡ถ', 1801 + 'mauritania': '๐Ÿ‡ฒ๐Ÿ‡ท', 1802 + 'montserrat': '๐Ÿ‡ฒ๐Ÿ‡ธ', 1803 + 'malta': '๐Ÿ‡ฒ๐Ÿ‡น', 1804 + 'mauritius': '๐Ÿ‡ฒ๐Ÿ‡บ', 1805 + 'maldives': '๐Ÿ‡ฒ๐Ÿ‡ป', 1806 + 'malawi': '๐Ÿ‡ฒ๐Ÿ‡ผ', 1807 + 'mexico': '๐Ÿ‡ฒ๐Ÿ‡ฝ', 1808 + 'malaysia': '๐Ÿ‡ฒ๐Ÿ‡พ', 1809 + 'mozambique': '๐Ÿ‡ฒ๐Ÿ‡ฟ', 1810 + 'namibia': '๐Ÿ‡ณ๐Ÿ‡ฆ', 1811 + 'new_caledonia': '๐Ÿ‡ณ๐Ÿ‡จ', 1812 + 'niger': '๐Ÿ‡ณ๐Ÿ‡ช', 1813 + 'norfolk_island': '๐Ÿ‡ณ๐Ÿ‡ซ', 1814 + 'nigeria': '๐Ÿ‡ณ๐Ÿ‡ฌ', 1815 + 'nicaragua': '๐Ÿ‡ณ๐Ÿ‡ฎ', 1816 + 'netherlands': '๐Ÿ‡ณ๐Ÿ‡ฑ', 1817 + 'norway': '๐Ÿ‡ณ๐Ÿ‡ด', 1818 + 'nepal': '๐Ÿ‡ณ๐Ÿ‡ต', 1819 + 'nauru': '๐Ÿ‡ณ๐Ÿ‡ท', 1820 + 'niue': '๐Ÿ‡ณ๐Ÿ‡บ', 1821 + 'new_zealand': '๐Ÿ‡ณ๐Ÿ‡ฟ', 1822 + 'oman': '๐Ÿ‡ด๐Ÿ‡ฒ', 1823 + 'panama': '๐Ÿ‡ต๐Ÿ‡ฆ', 1824 + 'peru': '๐Ÿ‡ต๐Ÿ‡ช', 1825 + 'french_polynesia': '๐Ÿ‡ต๐Ÿ‡ซ', 1826 + 'papua_new_guinea': '๐Ÿ‡ต๐Ÿ‡ฌ', 1827 + 'philippines': '๐Ÿ‡ต๐Ÿ‡ญ', 1828 + 'pakistan': '๐Ÿ‡ต๐Ÿ‡ฐ', 1829 + 'poland': '๐Ÿ‡ต๐Ÿ‡ฑ', 1830 + 'st_pierre_miquelon': '๐Ÿ‡ต๐Ÿ‡ฒ', 1831 + 'pitcairn_islands': '๐Ÿ‡ต๐Ÿ‡ณ', 1832 + 'puerto_rico': '๐Ÿ‡ต๐Ÿ‡ท', 1833 + 'palestinian_territories': '๐Ÿ‡ต๐Ÿ‡ธ', 1834 + 'portugal': '๐Ÿ‡ต๐Ÿ‡น', 1835 + 'palau': '๐Ÿ‡ต๐Ÿ‡ผ', 1836 + 'paraguay': '๐Ÿ‡ต๐Ÿ‡พ', 1837 + 'qatar': '๐Ÿ‡ถ๐Ÿ‡ฆ', 1838 + 'reunion': '๐Ÿ‡ท๐Ÿ‡ช', 1839 + 'romania': '๐Ÿ‡ท๐Ÿ‡ด', 1840 + 'serbia': '๐Ÿ‡ท๐Ÿ‡ธ', 1841 + 'ru': '๐Ÿ‡ท๐Ÿ‡บ', 1842 + 'rwanda': '๐Ÿ‡ท๐Ÿ‡ผ', 1843 + 'saudi_arabia': '๐Ÿ‡ธ๐Ÿ‡ฆ', 1844 + 'solomon_islands': '๐Ÿ‡ธ๐Ÿ‡ง', 1845 + 'seychelles': '๐Ÿ‡ธ๐Ÿ‡จ', 1846 + 'sudan': '๐Ÿ‡ธ๐Ÿ‡ฉ', 1847 + 'sweden': '๐Ÿ‡ธ๐Ÿ‡ช', 1848 + 'singapore': '๐Ÿ‡ธ๐Ÿ‡ฌ', 1849 + 'st_helena': '๐Ÿ‡ธ๐Ÿ‡ญ', 1850 + 'slovenia': '๐Ÿ‡ธ๐Ÿ‡ฎ', 1851 + 'svalbard_jan_mayen': '๐Ÿ‡ธ๐Ÿ‡ฏ', 1852 + 'slovakia': '๐Ÿ‡ธ๐Ÿ‡ฐ', 1853 + 'sierra_leone': '๐Ÿ‡ธ๐Ÿ‡ฑ', 1854 + 'san_marino': '๐Ÿ‡ธ๐Ÿ‡ฒ', 1855 + 'senegal': '๐Ÿ‡ธ๐Ÿ‡ณ', 1856 + 'somalia': '๐Ÿ‡ธ๐Ÿ‡ด', 1857 + 'suriname': '๐Ÿ‡ธ๐Ÿ‡ท', 1858 + 'south_sudan': '๐Ÿ‡ธ๐Ÿ‡ธ', 1859 + 'sao_tome_principe': '๐Ÿ‡ธ๐Ÿ‡น', 1860 + 'el_salvador': '๐Ÿ‡ธ๐Ÿ‡ป', 1861 + 'sint_maarten': '๐Ÿ‡ธ๐Ÿ‡ฝ', 1862 + 'syria': '๐Ÿ‡ธ๐Ÿ‡พ', 1863 + 'swaziland': '๐Ÿ‡ธ๐Ÿ‡ฟ', 1864 + 'tristan_da_cunha': '๐Ÿ‡น๐Ÿ‡ฆ', 1865 + 'turks_caicos_islands': '๐Ÿ‡น๐Ÿ‡จ', 1866 + 'chad': '๐Ÿ‡น๐Ÿ‡ฉ', 1867 + 'french_southern_territories': '๐Ÿ‡น๐Ÿ‡ซ', 1868 + 'togo': '๐Ÿ‡น๐Ÿ‡ฌ', 1869 + 'thailand': '๐Ÿ‡น๐Ÿ‡ญ', 1870 + 'tajikistan': '๐Ÿ‡น๐Ÿ‡ฏ', 1871 + 'tokelau': '๐Ÿ‡น๐Ÿ‡ฐ', 1872 + 'timor_leste': '๐Ÿ‡น๐Ÿ‡ฑ', 1873 + 'turkmenistan': '๐Ÿ‡น๐Ÿ‡ฒ', 1874 + 'tunisia': '๐Ÿ‡น๐Ÿ‡ณ', 1875 + 'tonga': '๐Ÿ‡น๐Ÿ‡ด', 1876 + 'tr': '๐Ÿ‡น๐Ÿ‡ท', 1877 + 'trinidad_tobago': '๐Ÿ‡น๐Ÿ‡น', 1878 + 'tuvalu': '๐Ÿ‡น๐Ÿ‡ป', 1879 + 'taiwan': '๐Ÿ‡น๐Ÿ‡ผ', 1880 + 'tanzania': '๐Ÿ‡น๐Ÿ‡ฟ', 1881 + 'ukraine': '๐Ÿ‡บ๐Ÿ‡ฆ', 1882 + 'uganda': '๐Ÿ‡บ๐Ÿ‡ฌ', 1883 + 'us_outlying_islands': '๐Ÿ‡บ๐Ÿ‡ฒ', 1884 + 'united_nations': '๐Ÿ‡บ๐Ÿ‡ณ', 1885 + 'us': '๐Ÿ‡บ๐Ÿ‡ธ', 1886 + 'uruguay': '๐Ÿ‡บ๐Ÿ‡พ', 1887 + 'uzbekistan': '๐Ÿ‡บ๐Ÿ‡ฟ', 1888 + 'vatican_city': '๐Ÿ‡ป๐Ÿ‡ฆ', 1889 + 'st_vincent_grenadines': '๐Ÿ‡ป๐Ÿ‡จ', 1890 + 'venezuela': '๐Ÿ‡ป๐Ÿ‡ช', 1891 + 'british_virgin_islands': '๐Ÿ‡ป๐Ÿ‡ฌ', 1892 + 'us_virgin_islands': '๐Ÿ‡ป๐Ÿ‡ฎ', 1893 + 'vietnam': '๐Ÿ‡ป๐Ÿ‡ณ', 1894 + 'vanuatu': '๐Ÿ‡ป๐Ÿ‡บ', 1895 + 'wallis_futuna': '๐Ÿ‡ผ๐Ÿ‡ซ', 1896 + 'samoa': '๐Ÿ‡ผ๐Ÿ‡ธ', 1897 + 'kosovo': '๐Ÿ‡ฝ๐Ÿ‡ฐ', 1898 + 'yemen': '๐Ÿ‡พ๐Ÿ‡ช', 1899 + 'mayotte': '๐Ÿ‡พ๐Ÿ‡น', 1900 + 'south_africa': '๐Ÿ‡ฟ๐Ÿ‡ฆ', 1901 + 'zambia': '๐Ÿ‡ฟ๐Ÿ‡ฒ', 1902 + 'zimbabwe': '๐Ÿ‡ฟ๐Ÿ‡ผ', 1903 + 'england': '๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ', 1904 + 'scotland': '๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ', 1905 + 'wales': '๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ', 1906 + } 1907 + 1908 + const emojisKeysRegex = new RegExp( 1909 + Object.keys(emojis) 1910 + .map(key => `:${key}:`) 1911 + .join('|'), 1912 + 'g', 1913 + ) 1914 + export function convertToEmoji(text: string): string { 1915 + return text.replace(emojisKeysRegex, match => { 1916 + const key = match.slice(1, -1) as keyof typeof emojis 1917 + return emojis[key] || match 1918 + }) 1919 + }