diff --git a/CONTEXT.md b/CONTEXT.md index f2bdc041f83..78680b0ab45 100644 --- a/CONTEXT.md +++ b/CONTEXT.md @@ -140,6 +140,19 @@ A **Message Action** is the active mode on a Message in the Room view. The three | **Edit** | A Message Action where a single Message is being edited by the current user | Editing | | **React** | A Message Action where a single Message is the target of a reaction picker | Reacting | +## Emojis + +A **Reaction** and the frequently used emojis table store an emoji by _name_, never as a glyph. A name that stops resolving does not degrade to the old picture — it renders as literal `:shortname:` text — which is why names are only ever added to the resolvable set, not removed. The name travels in two forms, colon-wrapped and bare; see the ambiguity flagged below. The dataset is generated; see [emojis](docs/emojis.md) for how. + +| Term | Definition | Aliases to avoid | +| -------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------- | +| **Shortname** | The colon-wrapped `:name:` token Message text and a Reaction's `emoji` field hold; the only form `useShortnameToUnicode` resolves | Emoji code, emoji id | +| **Listed Name** | The single Shortname per listed emoji that the picker shows (`emojisByCategory`) and that search returns; unlisted emoji have none | Canonical name, primary | +| **Alias** | Any other Shortname resolving to the same emoji; searchable, but search answers with the Listed Name (`water_wave` finds `ocean`) | Synonym, alternate name | +| **Legacy Shortname** | A hand-maintained Shortname the generated dataset does not carry, kept resolvable by fallback because an older client could have stored it | Deprecated name, old name | +| **Pinned Shortname** | A Shortname held at the glyph a previous release resolved, applied at generation time, for when upstream reassigns the name to another emoji | Override, frozen name | +| **Custom Emoji** | A Workspace-uploaded image emoji, stored by name plus file extension rather than resolving to unicode | Custom reaction, sticker | + ## Users & Roles | Term | Definition | Aliases to avoid | @@ -269,5 +282,8 @@ A **Message Action** is the active mode on a Message in the Room view. The three - **"Preview"** is overloaded. **Message Preview** (`isPreview`) is a Message rendered outside its Room (search, pinned, share, notifications). `PreviewContent` is a different concept: the compact body of a Thread Message shown in the parent Room. Disambiguate when either could be meant. - **"Muted"** is overloaded: a User can be muted in a Room (a moderator action that removes send permission, recorded by `user-muted`/`mute_unmute` System Messages) OR be an **Ignored User** (a per-viewer filter that hides their Messages behind an Ignored Message placeholder, stored in `room.ignored`). Muting is a room permission; ignoring is a personal filter. Different concepts — keep them apart. - **"Reply"** is overloaded: **Reply Broadcast** is the action available to non-authorized users in a Broadcast Room; replying in a **Thread** is navigation into the Thread view. Neither is a **Message Action** — there is no "reply" Message Action. +- **"Shortname"** travels in two forms and only one resolves. In-app APIs pass the **bare** name — `IEmoji`, the `emojisByCategory` and `aliasesByEmojiName` keys, `DEFAULT_EMOJIS`, `searchEmojiNames`, the frequently used table's `content`, and the name `setReaction` sends. Message text, a Reaction's `emoji` field, and the `shortnameToUnicodeMap` keys are **colon-wrapped**. `formatShortnameToUnicode` matches only the colon-wrapped form, so a bare name must be wrapped before resolving and a stored one stripped before it is looked up by name. +- **"Pinned"** is overloaded: **Pinned** is a Message Flag (a Message pinned in a Room); a **Pinned Shortname** is an emoji name held at an older glyph by `scripts/pinned-shortnames.js`. Nothing connects them — say which one you mean. +- **"Alias"** is overloaded. Every glossary table here has an _Aliases to avoid_ column: words **not** to use. An emoji **Alias** is the opposite — a first-class Shortname that resolves and is searchable, just not the **Listed Name** search answers with. Do not read the emoji sense as a term to avoid. - **"Status" vs "flags"** — a Message has exactly one delivery **Status** (Sent, Temp, Error). **Pinned** and **Starred** are independent **Message Flags**, not statuses; do not group them with delivery states. - **"Interaction" retired** — the selection-plus-action state was once an "interaction" concept; the canonical term is now **Message Action State**. Use **Message Action**, not "interaction", for which Message is selected and how. (Selection is not separate — it lives inside the active Message Action.) diff --git a/app/containers/EmojiPicker/EmojiCategory.tsx b/app/containers/EmojiPicker/EmojiCategory.tsx index d1e9250e8b0..8ea477bcf70 100644 --- a/app/containers/EmojiPicker/EmojiCategory.tsx +++ b/app/containers/EmojiPicker/EmojiCategory.tsx @@ -5,7 +5,7 @@ import { type ICustomEmojis, type IEmoji } from '../../definitions/IEmoji'; import scrollPersistTaps from '../../lib/methods/helpers/scrollPersistTaps'; import { PressableEmoji } from './PressableEmoji'; import { EMOJI_BUTTON_SIZE } from './styles'; -import { emojisByCategory } from '../../lib/constants/emojis'; +import { emojisByCategory } from '../../lib/constants/emojis/data'; import { useAppSelector } from '../../lib/hooks/useAppSelector'; import { useFrequentlyUsedEmoji } from '../../lib/hooks/useFrequentlyUsedEmoji'; import { type IEmojiCategoryProps, type TEmojiCategory } from './interfaces'; diff --git a/app/containers/EmojiPicker/index.tsx b/app/containers/EmojiPicker/index.tsx index d69e67c1e63..02fba838165 100644 --- a/app/containers/EmojiPicker/index.tsx +++ b/app/containers/EmojiPicker/index.tsx @@ -6,7 +6,7 @@ import { useSafeAreaInsets } from 'react-native-safe-area-context'; import EmojiCategory from './EmojiCategory'; import Footer from './Footer'; import styles from './styles'; -import { categories } from '../../lib/constants/emojis'; +import { categories } from '../../lib/constants/emojis/categories'; import { type IEmoji } from '../../definitions'; import { addFrequentlyUsed } from '../../lib/methods/emojis'; import { type IEmojiPickerProps, EventTypes } from './interfaces'; diff --git a/app/containers/EmojiPicker/interfaces.ts b/app/containers/EmojiPicker/interfaces.ts index 1bc5ccf594e..10ce79d0fa1 100644 --- a/app/containers/EmojiPicker/interfaces.ts +++ b/app/containers/EmojiPicker/interfaces.ts @@ -1,6 +1,6 @@ import { type ImageStyle, type StyleProp, type TextInputProps } from 'react-native'; -import { type emojisByCategory } from '../../lib/constants/emojis'; +import { type emojisByCategory } from '../../lib/constants/emojis/data'; import { type ICustomEmoji, type IEmoji } from '../../definitions'; export enum EventTypes { diff --git a/app/containers/MessageComposer/MessageComposer.tsx b/app/containers/MessageComposer/MessageComposer.tsx index bcbe3e3a947..6ece97bc771 100644 --- a/app/containers/MessageComposer/MessageComposer.tsx +++ b/app/containers/MessageComposer/MessageComposer.tsx @@ -23,7 +23,7 @@ import { sanitizeLikeString } from '../../lib/database/utils'; import { generateTriggerId } from '../../lib/methods/actions'; import { runSlashCommand } from '../../lib/services/restApi'; import log from '../../lib/methods/helpers/log'; -import { prepareQuoteMessage, insertEmojiAtCursor } from './helpers'; +import { prepareQuoteMessage, insertEmojiAtCursor, lastGlyphLength } from './helpers'; import useShortnameToUnicode from '../../lib/hooks/useShortnameToUnicode'; import { useCloseKeyboardWhenOrientationChanges } from './hooks/useCloseKeyboardWhenOrientationChanges'; import { useEmojiKeyboard } from './hooks/useEmojiKeyboard'; @@ -186,14 +186,10 @@ export const MessageComposer = ({ switch (eventType) { case EventTypes.BACKSPACE_PRESSED: - const emojiRegex = /\u00a9|\u00ae|[\u2000-\u3300]|\ud83c[\ud000-\udfff]|\ud83d[\ud000-\udfff]|\ud83e[\ud000-\udfff]/; - let charsToRemove = 1; - const lastEmoji = text.substr(cursor > 0 ? cursor - 2 : text.length - 2, cursor > 0 ? cursor : text.length); - // Check if last character is an emoji - if (emojiRegex.test(lastEmoji)) charsToRemove = 2; - newText = - text.substr(0, (cursor > 0 ? cursor : text.length) - charsToRemove) + text.substr(cursor > 0 ? cursor : text.length); - newCursor = cursor - charsToRemove; + const deleteAt = cursor > 0 ? cursor : text.length; + const charsToRemove = lastGlyphLength(text, deleteAt); + newText = text.substr(0, deleteAt - charsToRemove) + text.substr(deleteAt); + newCursor = deleteAt - charsToRemove; composerInputComponentRef.current.setInput(newText, { start: newCursor, end: newCursor }); break; case EventTypes.EMOJI_PRESSED: diff --git a/app/containers/MessageComposer/helpers/index.ts b/app/containers/MessageComposer/helpers/index.ts index 497d94088b4..6562e28bc55 100644 --- a/app/containers/MessageComposer/helpers/index.ts +++ b/app/containers/MessageComposer/helpers/index.ts @@ -3,3 +3,4 @@ export * from './forceJpgExtension'; export * from './getMentionRegexp'; export * from './prepareQuoteMessage'; export * from './insertEmojiAtCursor'; +export * from './lastGlyphLength'; diff --git a/app/containers/MessageComposer/helpers/lastGlyphLength.test.ts b/app/containers/MessageComposer/helpers/lastGlyphLength.test.ts new file mode 100644 index 00000000000..db313de5158 --- /dev/null +++ b/app/containers/MessageComposer/helpers/lastGlyphLength.test.ts @@ -0,0 +1,50 @@ +import { lastGlyphLength } from './lastGlyphLength'; + +const at = (text: string) => lastGlyphLength(text, text.length); + +describe('lastGlyphLength', () => { + it('counts a plain character as one code unit', () => { + expect(at('ab')).toBe(1); + }); + + it('counts a surrogate pair as one glyph', () => { + expect(at('\u{1F6B2}')).toBe(2); + }); + + it('counts a surrogate pair followed by a variation selector as one glyph', () => { + // What emojibase emits for :bike:, and what the old two-code-unit window missed. + expect(at('\u{1F6B2}️')).toBe(3); + }); + + it('counts a variation selector on a BMP base as one glyph', () => { + expect(at('❤️')).toBe(2); + }); + + it('counts a skin tone modifier as part of the glyph', () => { + expect(at('\u{1F44D}\u{1F3FD}')).toBe(4); + }); + + it('counts a ZWJ sequence as one glyph', () => { + expect(at('\u{1F468}‍\u{1F469}‍\u{1F467}‍\u{1F466}')).toBe(11); + }); + + it('counts a ZWJ sequence ending in a variation selector as one glyph', () => { + expect(at('\u{1F93C}‍♂️')).toBe(5); + }); + + it('counts a keycap as one glyph', () => { + expect(at('1️⃣')).toBe(3); + }); + + it('counts a flag as one glyph', () => { + expect(at('\u{1F1E7}\u{1F1F7}')).toBe(4); + }); + + it('leaves text before the glyph alone', () => { + expect(lastGlyphLength('hi \u{1F6B2}️ there', 6)).toBe(3); + }); + + it('returns zero at the start of the text', () => { + expect(lastGlyphLength('abc', 0)).toBe(0); + }); +}); diff --git a/app/containers/MessageComposer/helpers/lastGlyphLength.ts b/app/containers/MessageComposer/helpers/lastGlyphLength.ts new file mode 100644 index 00000000000..c344eb3b5ac --- /dev/null +++ b/app/containers/MessageComposer/helpers/lastGlyphLength.ts @@ -0,0 +1,57 @@ +const ZWJ = 0x200d; +const VARIATION_SELECTOR_16 = 0xfe0f; +const VARIATION_SELECTOR_15 = 0xfe0e; +const COMBINING_ENCLOSING_KEYCAP = 0x20e3; + +const isSkinTone = (codePoint: number) => codePoint >= 0x1f3fb && codePoint <= 0x1f3ff; +const isRegionalIndicator = (codePoint: number) => codePoint >= 0x1f1e6 && codePoint <= 0x1f1ff; +const isAttachedToWhatPrecedesIt = (codePoint: number) => + codePoint === VARIATION_SELECTOR_16 || + codePoint === VARIATION_SELECTOR_15 || + codePoint === COMBINING_ENCLOSING_KEYCAP || + isSkinTone(codePoint); + +const codePointBefore = (text: string, index: number) => { + const low = text.charCodeAt(index - 1); + if (low >= 0xdc00 && low <= 0xdfff && index >= 2) { + const high = text.charCodeAt(index - 2); + if (high >= 0xd800 && high <= 0xdbff) { + return { codePoint: text.codePointAt(index - 2) as number, size: 2 }; + } + } + return { codePoint: low, size: 1 }; +}; + +// How many UTF-16 code units the character ending at `end` occupies, counting a whole emoji +// sequence as one. Backspace deletes that many, so a tap removes the glyph rather than an +// invisible modifier — emojibase emits fully-qualified sequences, so most emoji end in U+FE0F. +export const lastGlyphLength = (text: string, end: number): number => { + if (end <= 0) { + return 0; + } + let index = end; + let length = 0; + while (index > 0) { + const { codePoint, size } = codePointBefore(text, index); + index -= size; + length += size; + + if (isAttachedToWhatPrecedesIt(codePoint)) { + continue; + } + if (index >= 1 && text.charCodeAt(index - 1) === ZWJ) { + index -= 1; + length += 1; + continue; + } + // Flags are a pair of regional indicators with nothing joining them. + if (isRegionalIndicator(codePoint) && index >= 2) { + const previous = codePointBefore(text, index); + if (isRegionalIndicator(previous.codePoint)) { + length += previous.size; + } + } + break; + } + return length; +}; diff --git a/app/containers/MessageComposer/hooks/useAutocomplete.test.tsx b/app/containers/MessageComposer/hooks/useAutocomplete.test.tsx new file mode 100644 index 00000000000..3a849e001bc --- /dev/null +++ b/app/containers/MessageComposer/hooks/useAutocomplete.test.tsx @@ -0,0 +1,33 @@ +import { renderHook, waitFor } from '@testing-library/react-native'; + +import { useAutocomplete } from './useAutocomplete'; +import { type IAutocompleteEmoji } from '../interfaces'; + +jest.mock('../../../lib/database', () => ({ + __esModule: true, + default: { active: { get: jest.fn(() => ({ query: jest.fn(() => ({ fetch: jest.fn().mockResolvedValue([]) })) })) } } +})); +jest.mock('../../../lib/methods/search', () => ({ searchLocal: jest.fn(), searchRemote: jest.fn() })); +jest.mock('../../../lib/services/restApi', () => ({ getCommandPreview: jest.fn(), getListCannedResponse: jest.fn() })); +jest.mock('../../../lib/hooks/usePermissions', () => ({ usePermissions: () => [false, false] })); +jest.mock('../../../lib/methods/helpers/log', () => ({ __esModule: true, default: jest.fn() })); + +const names = async (text: string) => { + const { result } = renderHook(() => useAutocomplete({ text, type: ':', rid: 'rid', accessibilityFocusOnInput: () => null })); + await waitFor(() => expect(result.current.some(item => item.type === ':')).toBe(true)); + return (result.current as IAutocompleteEmoji[]).map(item => item.emoji); +}; + +describe('useAutocomplete emoji suggestions', () => { + it('suggests an emoji by its listed shortname', async () => { + expect(await names('ocean')).toContain('ocean'); + }); + + it('suggests an emoji typed by an alias, returning the listed shortname', async () => { + expect(await names('water_wave')).toContain('ocean'); + }); + + it('matches case insensitively, like the emoji picker search', async () => { + expect(await names('Ocean')).toContain('ocean'); + }); +}); diff --git a/app/containers/MessageComposer/hooks/useAutocomplete.ts b/app/containers/MessageComposer/hooks/useAutocomplete.ts index 5096daf0546..f9da86dfe98 100644 --- a/app/containers/MessageComposer/hooks/useAutocomplete.ts +++ b/app/containers/MessageComposer/hooks/useAutocomplete.ts @@ -8,9 +8,9 @@ import { type TAutocompleteType } from '../interfaces'; import { searchLocal, searchRemote, type TSearch } from '../../../lib/methods/search'; +import { searchEmojiNames } from '../../../lib/methods/emojis'; import { sanitizeLikeString } from '../../../lib/database/utils'; import database from '../../../lib/database'; -import { emojis } from '../../../lib/constants/emojis'; import { type ICustomEmoji } from '../../../definitions'; import { getCommandPreview, getListCannedResponse } from '../../../lib/services/restApi'; import log from '../../../lib/methods/helpers/log'; @@ -144,7 +144,7 @@ export const useAutocomplete = ({ if (type === ':') { const customEmojis = await getCustomEmojis(text); if (ignore) return; - const filteredStandardEmojis = emojis.filter(emoji => emoji.indexOf(text) !== -1).slice(0, MENTIONS_COUNT_TO_DISPLAY); + const filteredStandardEmojis = searchEmojiNames(text).slice(0, MENTIONS_COUNT_TO_DISPLAY); let mergedEmojis: IAutocompleteEmoji[] = customEmojis.map(emoji => ({ id: emoji.name, emoji, diff --git a/app/containers/markdown/__snapshots__/Markdown.test.tsx.snap b/app/containers/markdown/__snapshots__/Markdown.test.tsx.snap index cd3bc86d5d8..5c067a788e9 100644 --- a/app/containers/markdown/__snapshots__/Markdown.test.tsx.snap +++ b/app/containers/markdown/__snapshots__/Markdown.test.tsx.snap @@ -715,7 +715,7 @@ exports[`Story Snapshots: Emoji should match snapshot 1`] = ` } > - 👍 + 👍️ @@ -1005,7 +1005,7 @@ exports[`Story Snapshots: Emoji should match snapshot 1`] = ` ] } > - 👍 + 👍️ - Testing: 😃 👍 :marioparty: + Testing: 😃 👍️ :marioparty: unicode.replace(/\uFE0F/g, ''); +const resolve = (name: string) => shortnameToUnicodeMap[`:${name}:`] ?? legacyShortnameToUnicodeMap[`:${name}:`]; + +// The only seven glyphs that changed against the pre-emojibase map, all repairs of a missing joiner. +const JOINER_REPAIRS: [string, string][] = [ + [':kiss_mm:', '👨\u200D❤\uFE0F\u200D💋\u200D👨'], + [':couplekiss_mm:', '👨\u200D❤\uFE0F\u200D💋\u200D👨'], + [':kiss_ww:', '👩\u200D❤\uFE0F\u200D💋\u200D👩'], + [':couplekiss_ww:', '👩\u200D❤\uFE0F\u200D💋\u200D👩'], + [':kiss_woman_man:', '👩\u200D❤\uFE0F\u200D💋\u200D👨'], + [':men_wrestling:', '🤼\u200D♂\uFE0F'], + [':women_wrestling:', '🤼\u200D♀\uFE0F'] +]; + +// The pins, spelled out so editing scripts/pinned-shortnames.js fails here and not only in the picker. +const PINNED_GLYPHS: [string, string][] = [ + [':beetle:', '🐞'], + [':man_in_tuxedo:', '🤵'], + [':man_in_tuxedo_tone1:', '🤵🏻'], + [':man_in_tuxedo_tone2:', '🤵🏼'], + [':man_in_tuxedo_tone3:', '🤵🏽'], + [':man_in_tuxedo_tone4:', '🤵🏾'], + [':man_in_tuxedo_tone5:', '🤵🏿'] +]; + +const UNLISTED_COMPONENTS = [ + ...Array.from({ length: 26 }, (_, i) => `regional_indicator_${String.fromCharCode(97 + i)}`), + 'digit_zero', + 'digit_one', + 'digit_two', + 'digit_three', + 'digit_four', + 'digit_five', + 'digit_six', + 'digit_seven', + 'digit_eight', + 'digit_nine', + 'asterisk_symbol', + 'pound_symbol' +]; + +describe('emoji data', () => { + it('resolves every listed emoji to a unicode character', () => { + const unresolved = emojis.filter(name => !shortnameToUnicodeMap[`:${name}:`]); + expect(unresolved).toEqual([]); + }); + + it('lists every emoji exactly once', () => { + expect(emojis.length).toBe(new Set(emojis).size); + }); + + it('keys aliases by a listed emoji name', () => { + const listed = new Set(emojis); + expect(Object.keys(aliasesByEmojiName).filter(name => !listed.has(name))).toEqual([]); + }); + + it('resolves every alias to the same emoji as the name it belongs to', () => { + const mismatched = Object.keys(aliasesByEmojiName).filter(name => { + const expected = bare(shortnameToUnicodeMap[`:${name}:`]); + return aliasesByEmojiName[name].some(alias => bare(resolve(alias) ?? '') !== expected); + }); + expect(mismatched).toEqual([]); + }); + + it('has no category with an empty emoji list', () => { + expect( + Object.keys(emojisByCategory).filter(key => emojisByCategory[key as keyof typeof emojisByCategory].length === 0) + ).toEqual([]); + }); + + it('holds every pinned shortname at its pinned glyph', () => { + expect(Object.entries(pinnedShortnames)).toEqual(PINNED_GLYPHS); + const drifted = Object.keys(pinnedShortnames).filter( + shortname => shortnameToUnicodeMap[shortname] !== pinnedShortnames[shortname as keyof typeof pinnedShortnames] + ); + expect(drifted).toEqual([]); + }); + + it('holds every repaired joiner glyph at the value this branch decided on', () => { + const drifted = JOINER_REPAIRS.filter(([shortname, unicode]) => shortnameToUnicodeMap[shortname] !== unicode); + expect(drifted).toEqual([]); + }); + + it('never puts a variation selector before a skin tone modifier', () => { + const illFormed = [shortnameToUnicodeMap, legacyShortnameToUnicodeMap].flatMap(map => + Object.keys(map).filter(key => /\uFE0F[\u{1F3FB}-\u{1F3FF}]/u.test(map[key])) + ); + expect(illFormed).toEqual([]); + }); + + it('resolves every unlisted component without listing it', () => { + expect(UNLISTED_COMPONENTS.filter(name => !resolve(name))).toEqual([]); + const listed = new Set(emojis); + expect(UNLISTED_COMPONENTS.filter(name => listed.has(name))).toEqual([]); + }); + + it('keeps legacy shortnames out of the current map', () => { + expect(Object.keys(legacyShortnameToUnicodeMap).filter(key => key in shortnameToUnicodeMap)).toEqual([]); + }); +}); diff --git a/app/lib/constants/emojis/data.ts b/app/lib/constants/emojis/data.ts new file mode 100644 index 00000000000..5977d1b2340 --- /dev/null +++ b/app/lib/constants/emojis/data.ts @@ -0,0 +1,9612 @@ +// Generated by scripts/generate-emoji-data.js — do not edit by hand. +// Run `pnpm generate-emoji-data` after bumping the emojibase-data dependency. +// See docs/emojis.md. +/* eslint-disable */ + +export const emojisByCategory = { + people: [ + 'grinning', + 'smiley', + 'smile', + 'grin', + 'laughing', + 'sweat_smile', + 'rofl', + 'joy', + 'slight_smile', + 'upside_down', + 'melting_face', + 'wink', + 'blush', + 'innocent', + 'smiling_face_with_3_hearts', + 'heart_eyes', + 'star_struck', + 'kissing_heart', + 'kissing', + 'relaxed', + 'kissing_closed_eyes', + 'kissing_smiling_eyes', + 'smiling_face_with_tear', + 'yum', + 'stuck_out_tongue', + 'stuck_out_tongue_winking_eye', + 'zany_face', + 'stuck_out_tongue_closed_eyes', + 'money_mouth', + 'hugging', + 'face_with_hand_over_mouth', + 'face_with_open_eyes_and_hand_over_mouth', + 'face_with_peeking_eye', + 'shushing_face', + 'thinking', + 'saluting_face', + 'zipper_mouth', + 'face_with_raised_eyebrow', + 'neutral_face', + 'expressionless', + 'no_mouth', + 'dotted_line_face', + 'face_in_clouds', + 'smirk', + 'unamused', + 'rolling_eyes', + 'grimacing', + 'face_exhaling', + 'lying_face', + 'shaking_face', + 'head_shaking_horizontally', + 'head_shaking_vertically', + 'relieved', + 'pensive', + 'sleepy', + 'drooling_face', + 'sleeping', + 'face_with_eye_bags', + 'mask', + 'thermometer_face', + 'head_bandage', + 'nauseated_face', + 'face_vomiting', + 'sneezing_face', + 'hot_face', + 'cold_face', + 'woozy_face', + 'dizzy_face', + 'face_with_spiral_eyes', + 'exploding_head', + 'cowboy', + 'partying_face', + 'disguised_face', + 'sunglasses', + 'nerd', + 'face_with_monocle', + 'confused', + 'face_with_diagonal_mouth', + 'worried', + 'slight_frown', + 'frowning2', + 'open_mouth', + 'hushed', + 'astonished', + 'flushed', + 'distorted_face', + 'pleading_face', + 'face_holding_back_tears', + 'frowning', + 'anguished', + 'fearful', + 'cold_sweat', + 'disappointed_relieved', + 'cry', + 'sob', + 'scream', + 'confounded', + 'persevere', + 'disappointed', + 'sweat', + 'weary', + 'tired_face', + 'yawning_face', + 'triumph', + 'rage', + 'angry', + 'face_with_symbols_over_mouth', + 'smiling_imp', + 'imp', + 'skull', + 'skull_crossbones', + 'poop', + 'clown', + 'japanese_ogre', + 'japanese_goblin', + 'ghost', + 'alien', + 'space_invader', + 'robot', + 'smiley_cat', + 'smile_cat', + 'joy_cat', + 'heart_eyes_cat', + 'smirk_cat', + 'kissing_cat', + 'scream_cat', + 'crying_cat_face', + 'pouting_cat', + 'see_no_evil', + 'hear_no_evil', + 'speak_no_evil', + 'love_letter', + 'cupid', + 'gift_heart', + 'sparkling_heart', + 'heartpulse', + 'heartbeat', + 'revolving_hearts', + 'two_hearts', + 'heart_decoration', + 'heart_exclamation', + 'broken_heart', + 'heart_on_fire', + 'mending_heart', + 'heart', + 'pink_heart', + 'orange_heart', + 'yellow_heart', + 'green_heart', + 'blue_heart', + 'light_blue_heart', + 'purple_heart', + 'brown_heart', + 'black_heart', + 'grey_heart', + 'white_heart', + 'kiss', + '100', + 'anger', + 'fight_cloud', + 'boom', + 'dizzy', + 'sweat_drops', + 'dash', + 'hole', + 'speech_balloon', + 'eye_in_speech_bubble', + 'speech_left', + 'anger_right', + 'thought_balloon', + 'zzz', + 'wave', + 'raised_back_of_hand', + 'hand_splayed', + 'raised_hand', + 'vulcan', + 'rightwards_hand', + 'leftwards_hand', + 'palm_down_hand', + 'palm_up_hand', + 'leftwards_pushing_hand', + 'rightwards_pushing_hand', + 'ok_hand', + 'pinched_fingers', + 'pinching_hand', + 'v', + 'fingers_crossed', + 'hand_with_index_finger_and_thumb_crossed', + 'love_you_gesture', + 'metal', + 'call_me', + 'point_left', + 'point_right', + 'point_up_2', + 'middle_finger', + 'point_down', + 'point_up', + 'index_pointing_at_the_viewer', + 'thumbsup', + 'thumbsdown', + 'fist', + 'punch', + 'left_facing_fist', + 'right_facing_fist', + 'clap', + 'raised_hands', + 'heart_hands', + 'open_hands', + 'palms_up_together', + 'handshake', + 'pray', + 'writing_hand', + 'nail_care', + 'selfie', + 'muscle', + 'mechanical_arm', + 'mechanical_leg', + 'leg', + 'foot', + 'ear', + 'ear_with_hearing_aid', + 'nose', + 'brain', + 'anatomical_heart', + 'lungs', + 'tooth', + 'bone', + 'eyes', + 'eye', + 'tongue', + 'lips', + 'biting_lip', + 'baby', + 'child', + 'boy', + 'girl', + 'adult', + 'blond_haired_person', + 'man', + 'bearded_person', + 'man_beard', + 'woman_beard', + 'man_red_haired', + 'man_curly_haired', + 'man_white_haired', + 'man_bald', + 'woman', + 'woman_red_haired', + 'person_red_hair', + 'woman_curly_haired', + 'person_curly_hair', + 'woman_white_haired', + 'person_white_hair', + 'woman_bald', + 'person_bald', + 'blond-haired_woman', + 'blond-haired_man', + 'older_adult', + 'older_man', + 'older_woman', + 'person_frowning', + 'man_frowning', + 'woman_frowning', + 'person_pouting', + 'man_pouting', + 'woman_pouting', + 'person_gesturing_no', + 'man_gesturing_no', + 'woman_gesturing_no', + 'person_gesturing_ok', + 'man_gesturing_ok', + 'woman_gesturing_ok', + 'person_tipping_hand', + 'man_tipping_hand', + 'woman_tipping_hand', + 'person_raising_hand', + 'man_raising_hand', + 'woman_raising_hand', + 'deaf_person', + 'deaf_man', + 'deaf_woman', + 'person_bowing', + 'man_bowing', + 'woman_bowing', + 'person_facepalming', + 'man_facepalming', + 'woman_facepalming', + 'person_shrugging', + 'man_shrugging', + 'woman_shrugging', + 'health_worker', + 'man_health_worker', + 'woman_health_worker', + 'student', + 'man_student', + 'woman_student', + 'teacher', + 'man_teacher', + 'woman_teacher', + 'judge', + 'man_judge', + 'woman_judge', + 'farmer', + 'man_farmer', + 'woman_farmer', + 'cook', + 'man_cook', + 'woman_cook', + 'mechanic', + 'man_mechanic', + 'woman_mechanic', + 'factory_worker', + 'man_factory_worker', + 'woman_factory_worker', + 'office_worker', + 'man_office_worker', + 'woman_office_worker', + 'scientist', + 'man_scientist', + 'woman_scientist', + 'technologist', + 'man_technologist', + 'woman_technologist', + 'singer', + 'man_singer', + 'woman_singer', + 'artist', + 'man_artist', + 'woman_artist', + 'pilot', + 'man_pilot', + 'woman_pilot', + 'astronaut', + 'man_astronaut', + 'woman_astronaut', + 'firefighter', + 'man_firefighter', + 'woman_firefighter', + 'police_officer', + 'man_police_officer', + 'woman_police_officer', + 'detective', + 'man_detective', + 'woman_detective', + 'guard', + 'man_guard', + 'woman_guard', + 'ninja', + 'construction_worker', + 'man_construction_worker', + 'woman_construction_worker', + 'person_with_crown', + 'prince', + 'princess', + 'person_wearing_turban', + 'man_wearing_turban', + 'woman_wearing_turban', + 'man_with_chinese_cap', + 'woman_with_headscarf', + 'person_in_tuxedo', + 'man_in_tuxedo', + 'woman_in_tuxedo', + 'person_with_veil', + 'man_with_veil', + 'woman_with_veil', + 'pregnant_woman', + 'pregnant_man', + 'pregnant_person', + 'breast_feeding', + 'woman_feeding_baby', + 'man_feeding_baby', + 'person_feeding_baby', + 'angel', + 'santa', + 'mrs_claus', + 'mx_claus', + 'superhero', + 'man_superhero', + 'woman_superhero', + 'supervillain', + 'man_supervillain', + 'woman_supervillain', + 'mage', + 'man_mage', + 'woman_mage', + 'fairy', + 'man_fairy', + 'woman_fairy', + 'vampire', + 'man_vampire', + 'woman_vampire', + 'merperson', + 'merman', + 'mermaid', + 'elf', + 'man_elf', + 'woman_elf', + 'genie', + 'man_genie', + 'woman_genie', + 'zombie', + 'man_zombie', + 'woman_zombie', + 'troll', + 'hairy_creature', + 'person_getting_massage', + 'man_getting_face_massage', + 'woman_getting_face_massage', + 'person_getting_haircut', + 'man_getting_haircut', + 'woman_getting_haircut', + 'person_walking', + 'man_walking', + 'woman_walking', + 'person_walking_facing_right', + 'woman_walking_facing_right', + 'man_walking_facing_right', + 'person_standing', + 'man_standing', + 'woman_standing', + 'person_kneeling', + 'man_kneeling', + 'woman_kneeling', + 'person_kneeling_facing_right', + 'woman_kneeling_facing_right', + 'man_kneeling_facing_right', + 'person_with_probing_cane', + 'person_with_white_cane_facing_right', + 'man_with_probing_cane', + 'man_with_white_cane_facing_right', + 'woman_with_probing_cane', + 'woman_with_white_cane_facing_right', + 'person_in_motorized_wheelchair', + 'person_in_motorized_wheelchair_facing_right', + 'man_in_motorized_wheelchair', + 'man_in_motorized_wheelchair_facing_right', + 'woman_in_motorized_wheelchair', + 'woman_in_motorized_wheelchair_facing_right', + 'person_in_manual_wheelchair', + 'person_in_manual_wheelchair_facing_right', + 'man_in_manual_wheelchair', + 'man_in_manual_wheelchair_facing_right', + 'woman_in_manual_wheelchair', + 'woman_in_manual_wheelchair_facing_right', + 'person_running', + 'man_running', + 'woman_running', + 'person_running_facing_right', + 'woman_running_facing_right', + 'man_running_facing_right', + 'ballet_dancer', + 'dancer', + 'man_dancing', + 'levitate', + 'people_with_bunny_ears_partying', + 'men_with_bunny_ears_partying', + 'women_with_bunny_ears_partying', + 'person_in_steamy_room', + 'man_in_steamy_room', + 'woman_in_steamy_room', + 'person_climbing', + 'man_climbing', + 'woman_climbing', + 'person_fencing', + 'horse_racing', + 'skier', + 'snowboarder', + 'person_golfing', + 'man_golfing', + 'woman_golfing', + 'person_surfing', + 'man_surfing', + 'woman_surfing', + 'person_rowing_boat', + 'man_rowing_boat', + 'woman_rowing_boat', + 'person_swimming', + 'man_swimming', + 'woman_swimming', + 'person_bouncing_ball', + 'man_bouncing_ball', + 'woman_bouncing_ball', + 'person_lifting_weights', + 'man_lifting_weights', + 'woman_lifting_weights', + 'person_biking', + 'man_biking', + 'woman_biking', + 'person_mountain_biking', + 'man_mountain_biking', + 'woman_mountain_biking', + 'person_doing_cartwheel', + 'man_cartwheeling', + 'woman_cartwheeling', + 'people_wrestling', + 'men_wrestling', + 'women_wrestling', + 'person_playing_water_polo', + 'man_playing_water_polo', + 'woman_playing_water_polo', + 'person_playing_handball', + 'man_playing_handball', + 'woman_playing_handball', + 'person_juggling', + 'man_juggling', + 'woman_juggling', + 'person_in_lotus_position', + 'man_in_lotus_position', + 'woman_in_lotus_position', + 'bath', + 'sleeping_accommodation', + 'people_holding_hands', + 'two_women_holding_hands', + 'couple', + 'two_men_holding_hands', + 'couplekiss', + 'kiss_woman_man', + 'kiss_mm', + 'kiss_ww', + 'couple_with_heart', + 'couple_with_heart_woman_man', + 'couple_mm', + 'couple_ww', + 'family_man_woman_boy', + 'family_mwg', + 'family_mwgb', + 'family_mwbb', + 'family_mwgg', + 'family_mmb', + 'family_mmg', + 'family_mmgb', + 'family_mmbb', + 'family_mmgg', + 'family_wwb', + 'family_wwg', + 'family_wwgb', + 'family_wwbb', + 'family_wwgg', + 'family_man_boy', + 'family_man_boy_boy', + 'family_man_girl', + 'family_man_girl_boy', + 'family_man_girl_girl', + 'family_woman_boy', + 'family_woman_boy_boy', + 'family_woman_girl', + 'family_woman_girl_boy', + 'family_woman_girl_girl', + 'speaking_head', + 'bust_in_silhouette', + 'busts_in_silhouette', + 'people_hugging', + 'family', + 'family_adult_adult_child', + 'family_adult_adult_child_child', + 'family_adult_child', + 'family_adult_child_child', + 'footprints', + 'fingerprint' + ], + nature: [ + 'monkey_face', + 'monkey', + 'gorilla', + 'orangutan', + 'dog', + 'dog2', + 'guide_dog', + 'service_dog', + 'poodle', + 'wolf', + 'fox', + 'raccoon', + 'cat', + 'cat2', + 'black_cat', + 'lion_face', + 'tiger', + 'tiger2', + 'leopard', + 'horse', + 'moose', + 'donkey', + 'racehorse', + 'unicorn', + 'zebra', + 'deer', + 'bison', + 'cow', + 'ox', + 'water_buffalo', + 'cow2', + 'pig', + 'pig2', + 'boar', + 'pig_nose', + 'ram', + 'sheep', + 'goat', + 'dromedary_camel', + 'camel', + 'llama', + 'giraffe', + 'elephant', + 'mammoth', + 'rhino', + 'hippopotamus', + 'mouse', + 'mouse2', + 'rat', + 'hamster', + 'rabbit', + 'rabbit2', + 'chipmunk', + 'beaver', + 'hedgehog', + 'bat', + 'bear', + 'polar_bear', + 'koala', + 'panda_face', + 'sloth', + 'otter', + 'skunk', + 'kangaroo', + 'badger', + 'feet', + 'turkey', + 'chicken', + 'rooster', + 'hatching_chick', + 'baby_chick', + 'hatched_chick', + 'bird', + 'penguin', + 'dove', + 'eagle', + 'duck', + 'swan', + 'owl', + 'dodo', + 'feather', + 'flamingo', + 'peacock', + 'parrot', + 'wing', + 'black_bird', + 'goose', + 'phoenix', + 'frog', + 'crocodile', + 'turtle', + 'lizard', + 'snake', + 'dragon_face', + 'dragon', + 'sauropod', + 't_rex', + 'whale', + 'whale2', + 'dolphin', + 'orca', + 'seal', + 'fish', + 'tropical_fish', + 'blowfish', + 'shark', + 'octopus', + 'shell', + 'coral', + 'jellyfish', + 'crab', + 'lobster', + 'shrimp', + 'squid', + 'oyster', + 'snail', + 'butterfly', + 'bug', + 'ant', + 'bee', + 'beetle', + 'lady_beetle', + 'cricket', + 'cockroach', + 'spider', + 'spider_web', + 'scorpion', + 'mosquito', + 'fly', + 'worm', + 'microbe', + 'bouquet', + 'cherry_blossom', + 'white_flower', + 'lotus', + 'rosette', + 'rose', + 'wilted_rose', + 'hibiscus', + 'sunflower', + 'blossom', + 'tulip', + 'hyacinth', + 'seedling', + 'potted_plant', + 'evergreen_tree', + 'deciduous_tree', + 'palm_tree', + 'cactus', + 'ear_of_rice', + 'herb', + 'shamrock', + 'four_leaf_clover', + 'maple_leaf', + 'fallen_leaf', + 'leaves', + 'empty_nest', + 'nest_with_eggs', + 'mushroom', + 'leafless_tree' + ], + food: [ + 'grapes', + 'melon', + 'watermelon', + 'tangerine', + 'lemon', + 'lime', + 'banana', + 'pineapple', + 'mango', + 'apple', + 'green_apple', + 'pear', + 'peach', + 'cherries', + 'strawberry', + 'blueberries', + 'kiwi', + 'tomato', + 'olive', + 'coconut', + 'avocado', + 'eggplant', + 'potato', + 'carrot', + 'corn', + 'hot_pepper', + 'bell_pepper', + 'cucumber', + 'leafy_green', + 'broccoli', + 'garlic', + 'onion', + 'peanuts', + 'beans', + 'chestnut', + 'ginger_root', + 'pea_pod', + 'brown_mushroom', + 'root_vegetable', + 'bread', + 'croissant', + 'french_bread', + 'flatbread', + 'pretzel', + 'bagel', + 'pancakes', + 'waffle', + 'cheese', + 'meat_on_bone', + 'poultry_leg', + 'cut_of_meat', + 'bacon', + 'hamburger', + 'fries', + 'pizza', + 'hotdog', + 'sandwich', + 'taco', + 'burrito', + 'tamale', + 'stuffed_flatbread', + 'falafel', + 'egg', + 'cooking', + 'shallow_pan_of_food', + 'stew', + 'fondue', + 'bowl_with_spoon', + 'salad', + 'popcorn', + 'butter', + 'salt', + 'canned_food', + 'bento', + 'rice_cracker', + 'rice_ball', + 'rice', + 'curry', + 'ramen', + 'spaghetti', + 'sweet_potato', + 'oden', + 'sushi', + 'fried_shrimp', + 'fish_cake', + 'moon_cake', + 'dango', + 'dumpling', + 'fortune_cookie', + 'takeout_box', + 'icecream', + 'shaved_ice', + 'ice_cream', + 'doughnut', + 'cookie', + 'birthday', + 'cake', + 'cupcake', + 'pie', + 'chocolate_bar', + 'candy', + 'lollipop', + 'custard', + 'honey_pot', + 'baby_bottle', + 'milk', + 'coffee', + 'teapot', + 'tea', + 'sake', + 'champagne', + 'wine_glass', + 'cocktail', + 'tropical_drink', + 'beer', + 'beers', + 'champagne_glass', + 'tumbler_glass', + 'pouring_liquid', + 'cup_with_straw', + 'bubble_tea', + 'beverage_box', + 'mate', + 'ice_cube', + 'chopsticks', + 'fork_knife_plate', + 'fork_and_knife', + 'spoon', + 'knife', + 'jar', + 'amphora' + ], + activity: [ + 'jack_o_lantern', + 'christmas_tree', + 'fireworks', + 'sparkler', + 'firecracker', + 'sparkles', + 'balloon', + 'tada', + 'confetti_ball', + 'tanabata_tree', + 'bamboo', + 'dolls', + 'flags', + 'wind_chime', + 'rice_scene', + 'red_envelope', + 'ribbon', + 'gift', + 'reminder_ribbon', + 'tickets', + 'ticket', + 'military_medal', + 'trophy', + 'medal', + 'first_place', + 'second_place', + 'third_place', + 'soccer', + 'baseball', + 'softball', + 'basketball', + 'volleyball', + 'football', + 'rugby_football', + 'tennis', + 'flying_disc', + 'bowling', + 'cricket_game', + 'field_hockey', + 'hockey', + 'lacrosse', + 'ping_pong', + 'badminton', + 'boxing_glove', + 'martial_arts_uniform', + 'goal', + 'golf', + 'ice_skate', + 'fishing_pole_and_fish', + 'diving_mask', + 'running_shirt_with_sash', + 'ski', + 'sled', + 'curling_stone', + 'dart', + 'yo_yo', + 'kite', + 'gun', + '8ball', + 'crystal_ball', + 'magic_wand', + 'video_game', + 'joystick', + 'slot_machine', + 'game_die', + 'jigsaw', + 'teddy_bear', + 'pinata', + 'mirror_ball', + 'nesting_dolls', + 'spades', + 'hearts', + 'diamonds', + 'clubs', + 'chess_pawn', + 'black_joker', + 'mahjong', + 'flower_playing_cards', + 'performing_arts', + 'frame_photo', + 'art', + 'thread', + 'sewing_needle', + 'yarn', + 'knot' + ], + travel: [ + 'earth_africa', + 'earth_americas', + 'earth_asia', + 'globe_with_meridians', + 'map', + 'japan', + 'compass', + 'mountain_snow', + 'mountain', + 'landslide', + 'volcano', + 'mount_fuji', + 'camping', + 'beach', + 'desert', + 'island', + 'park', + 'stadium', + 'classical_building', + 'construction_site', + 'bricks', + 'rock', + 'wood', + 'hut', + 'homes', + 'house_abandoned', + 'house', + 'house_with_garden', + 'office', + 'post_office', + 'european_post_office', + 'hospital', + 'bank', + 'hotel', + 'love_hotel', + 'convenience_store', + 'school', + 'department_store', + 'factory', + 'japanese_castle', + 'european_castle', + 'wedding', + 'tokyo_tower', + 'statue_of_liberty', + 'church', + 'mosque', + 'hindu_temple', + 'synagogue', + 'shinto_shrine', + 'kaaba', + 'fountain', + 'tent', + 'foggy', + 'night_with_stars', + 'cityscape', + 'sunrise_over_mountains', + 'sunrise', + 'city_dusk', + 'city_sunset', + 'bridge_at_night', + 'hotsprings', + 'carousel_horse', + 'playground_slide', + 'ferris_wheel', + 'roller_coaster', + 'barber', + 'circus_tent', + 'steam_locomotive', + 'railway_car', + 'bullettrain_side', + 'bullettrain_front', + 'train2', + 'metro', + 'light_rail', + 'station', + 'tram', + 'monorail', + 'mountain_railway', + 'train', + 'bus', + 'oncoming_bus', + 'trolleybus', + 'minibus', + 'ambulance', + 'fire_engine', + 'police_car', + 'oncoming_police_car', + 'taxi', + 'oncoming_taxi', + 'red_car', + 'oncoming_automobile', + 'blue_car', + 'pickup_truck', + 'truck', + 'articulated_lorry', + 'tractor', + 'race_car', + 'motorcycle', + 'motor_scooter', + 'manual_wheelchair', + 'motorized_wheelchair', + 'auto_rickshaw', + 'bike', + 'scooter', + 'skateboard', + 'roller_skate', + 'busstop', + 'motorway', + 'railway_track', + 'oil', + 'fuelpump', + 'wheel', + 'rotating_light', + 'traffic_light', + 'vertical_traffic_light', + 'octagonal_sign', + 'construction', + 'anchor', + 'ring_buoy', + 'sailboat', + 'canoe', + 'speedboat', + 'cruise_ship', + 'ferry', + 'motorboat', + 'ship', + 'airplane', + 'airplane_small', + 'airplane_departure', + 'airplane_arriving', + 'parachute', + 'seat', + 'helicopter', + 'suspension_railway', + 'mountain_cableway', + 'aerial_tramway', + 'satellite_orbital', + 'rocket', + 'flying_saucer', + 'bellhop', + 'luggage', + 'hourglass', + 'hourglass_flowing_sand', + 'watch', + 'alarm_clock', + 'stopwatch', + 'timer', + 'clock', + 'clock12', + 'clock1230', + 'clock1', + 'clock130', + 'clock2', + 'clock230', + 'clock3', + 'clock330', + 'clock4', + 'clock430', + 'clock5', + 'clock530', + 'clock6', + 'clock630', + 'clock7', + 'clock730', + 'clock8', + 'clock830', + 'clock9', + 'clock930', + 'clock10', + 'clock1030', + 'clock11', + 'clock1130', + 'new_moon', + 'waxing_crescent_moon', + 'first_quarter_moon', + 'waxing_gibbous_moon', + 'full_moon', + 'waning_gibbous_moon', + 'last_quarter_moon', + 'waning_crescent_moon', + 'crescent_moon', + 'new_moon_with_face', + 'first_quarter_moon_with_face', + 'last_quarter_moon_with_face', + 'thermometer', + 'sunny', + 'full_moon_with_face', + 'sun_with_face', + 'ringed_planet', + 'star', + 'star2', + 'stars', + 'milky_way', + 'cloud', + 'partly_sunny', + 'thunder_cloud_rain', + 'white_sun_small_cloud', + 'white_sun_cloud', + 'white_sun_rain_cloud', + 'cloud_rain', + 'cloud_snow', + 'cloud_lightning', + 'cloud_tornado', + 'fog', + 'wind_blowing_face', + 'cyclone', + 'rainbow', + 'closed_umbrella', + 'umbrella2', + 'umbrella', + 'beach_umbrella', + 'zap', + 'snowflake', + 'snowman2', + 'snowman', + 'comet', + 'fire', + 'droplet', + 'ocean' + ], + objects: [ + 'eyeglasses', + 'dark_sunglasses', + 'goggles', + 'lab_coat', + 'safety_vest', + 'necktie', + 'shirt', + 'jeans', + 'scarf', + 'gloves', + 'coat', + 'socks', + 'dress', + 'kimono', + 'sari', + 'one_piece_swimsuit', + 'briefs', + 'shorts', + 'bikini', + 'womans_clothes', + 'folding_hand_fan', + 'purse', + 'handbag', + 'pouch', + 'shopping_bags', + 'school_satchel', + 'thong_sandal', + 'mans_shoe', + 'athletic_shoe', + 'hiking_boot', + 'womans_flat_shoe', + 'high_heel', + 'sandal', + 'ballet_shoes', + 'boot', + 'hair_pick', + 'crown', + 'womans_hat', + 'tophat', + 'mortar_board', + 'billed_cap', + 'military_helmet', + 'helmet_with_cross', + 'prayer_beads', + 'lipstick', + 'ring', + 'gem', + 'mute', + 'speaker', + 'sound', + 'loud_sound', + 'loudspeaker', + 'mega', + 'postal_horn', + 'bell', + 'no_bell', + 'musical_score', + 'musical_note', + 'notes', + 'microphone2', + 'level_slider', + 'control_knobs', + 'microphone', + 'headphones', + 'radio', + 'saxophone', + 'trumpet', + 'trombone', + 'accordion', + 'guitar', + 'musical_keyboard', + 'violin', + 'banjo', + 'drum', + 'long_drum', + 'maracas', + 'flute', + 'harp', + 'mobile_phone', + 'calling', + 'telephone', + 'telephone_receiver', + 'pager', + 'fax', + 'battery', + 'low_battery', + 'electric_plug', + 'computer', + 'desktop', + 'printer', + 'keyboard', + 'mouse_three_button', + 'trackball', + 'minidisc', + 'floppy_disk', + 'cd', + 'dvd', + 'abacus', + 'movie_camera', + 'film_frames', + 'projector', + 'clapper', + 'tv', + 'camera', + 'camera_with_flash', + 'video_camera', + 'vhs', + 'mag', + 'mag_right', + 'candle', + 'bulb', + 'flashlight', + 'izakaya_lantern', + 'diya_lamp', + 'notebook_with_decorative_cover', + 'closed_book', + 'book', + 'green_book', + 'blue_book', + 'orange_book', + 'books', + 'notebook', + 'ledger', + 'page_with_curl', + 'scroll', + 'page_facing_up', + 'newspaper', + 'newspaper2', + 'bookmark_tabs', + 'bookmark', + 'label', + 'coin', + 'moneybag', + 'treasure_chest', + 'yen', + 'dollar', + 'euro', + 'pound', + 'money_with_wings', + 'credit_card', + 'receipt', + 'chart', + 'envelope', + 'e-mail', + 'incoming_envelope', + 'envelope_with_arrow', + 'outbox_tray', + 'inbox_tray', + 'package', + 'mailbox', + 'mailbox_closed', + 'mailbox_with_mail', + 'mailbox_with_no_mail', + 'postbox', + 'ballot_box', + 'pencil2', + 'black_nib', + 'pen_fountain', + 'pen_ballpoint', + 'paintbrush', + 'crayon', + 'pencil', + 'briefcase', + 'file_folder', + 'open_file_folder', + 'dividers', + 'date', + 'calendar', + 'notepad_spiral', + 'calendar_spiral', + 'card_index', + 'chart_with_upwards_trend', + 'chart_with_downwards_trend', + 'bar_chart', + 'clipboard', + 'pushpin', + 'round_pushpin', + 'paperclip', + 'paperclips', + 'straight_ruler', + 'triangular_ruler', + 'scissors', + 'card_box', + 'file_cabinet', + 'wastebasket', + 'lock', + 'unlock', + 'lock_with_ink_pen', + 'closed_lock_with_key', + 'key', + 'key2', + 'hammer', + 'axe', + 'pick', + 'hammer_pick', + 'tools', + 'dagger', + 'crossed_swords', + 'bomb', + 'boomerang', + 'bow_and_arrow', + 'shield', + 'carpentry_saw', + 'wrench', + 'screwdriver', + 'nut_and_bolt', + 'gear', + 'compression', + 'scales', + 'probing_cane', + 'link', + 'broken_chain', + 'chains', + 'hook', + 'toolbox', + 'magnet', + 'ladder', + 'shovel', + 'alembic', + 'test_tube', + 'petri_dish', + 'dna', + 'microscope', + 'telescope', + 'satellite', + 'syringe', + 'drop_of_blood', + 'pill', + 'adhesive_bandage', + 'crutch', + 'stethoscope', + 'x_ray', + 'door', + 'elevator', + 'mirror', + 'window', + 'bed', + 'couch', + 'chair', + 'toilet', + 'plunger', + 'shower', + 'bathtub', + 'mouse_trap', + 'razor', + 'squeeze_bottle', + 'safety_pin', + 'broom', + 'basket', + 'roll_of_paper', + 'bucket', + 'soap', + 'bubbles', + 'toothbrush', + 'sponge', + 'fire_extinguisher', + 'shopping_cart', + 'smoking', + 'coffin', + 'headstone', + 'urn', + 'nazar_amulet', + 'hamsa', + 'moyai', + 'placard', + 'identification_card' + ], + symbols: [ + 'atm', + 'put_litter_in_its_place', + 'potable_water', + 'wheelchair', + 'mens', + 'womens', + 'restroom', + 'baby_symbol', + 'wc', + 'passport_control', + 'customs', + 'baggage_claim', + 'left_luggage', + 'warning', + 'children_crossing', + 'no_entry', + 'no_entry_sign', + 'no_bicycles', + 'no_smoking', + 'do_not_litter', + 'non-potable_water', + 'no_pedestrians', + 'no_mobile_phones', + 'underage', + 'radioactive', + 'biohazard', + 'arrow_up', + 'arrow_upper_right', + 'arrow_right', + 'arrow_lower_right', + 'arrow_down', + 'arrow_lower_left', + 'arrow_left', + 'arrow_upper_left', + 'arrow_up_down', + 'left_right_arrow', + 'leftwards_arrow_with_hook', + 'arrow_right_hook', + 'arrow_heading_up', + 'arrow_heading_down', + 'arrows_clockwise', + 'arrows_counterclockwise', + 'back', + 'end', + 'on', + 'soon', + 'top', + 'place_of_worship', + 'atom', + 'om_symbol', + 'star_of_david', + 'wheel_of_dharma', + 'yin_yang', + 'cross', + 'orthodox_cross', + 'star_and_crescent', + 'peace', + 'menorah', + 'six_pointed_star', + 'khanda', + 'aries', + 'taurus', + 'gemini', + 'cancer', + 'leo', + 'virgo', + 'libra', + 'scorpius', + 'sagittarius', + 'capricorn', + 'aquarius', + 'pisces', + 'ophiuchus', + 'twisted_rightwards_arrows', + 'repeat', + 'repeat_one', + 'arrow_forward', + 'fast_forward', + 'track_next', + 'play_pause', + 'arrow_backward', + 'rewind', + 'track_previous', + 'arrow_up_small', + 'arrow_double_up', + 'arrow_down_small', + 'arrow_double_down', + 'pause_button', + 'stop_button', + 'record_button', + 'eject', + 'cinema', + 'low_brightness', + 'high_brightness', + 'signal_strength', + 'wireless', + 'vibration_mode', + 'mobile_phone_off', + 'female_sign', + 'male_sign', + 'transgender_symbol', + 'heavy_multiplication_x', + 'heavy_plus_sign', + 'heavy_minus_sign', + 'heavy_division_sign', + 'heavy_equals_sign', + 'infinity', + 'bangbang', + 'interrobang', + 'question', + 'grey_question', + 'grey_exclamation', + 'exclamation', + 'wavy_dash', + 'currency_exchange', + 'heavy_dollar_sign', + 'medical_symbol', + 'recycle', + 'fleur-de-lis', + 'trident', + 'name_badge', + 'beginner', + 'o', + 'white_check_mark', + 'ballot_box_with_check', + 'heavy_check_mark', + 'x', + 'negative_squared_cross_mark', + 'curly_loop', + 'loop', + 'part_alternation_mark', + 'eight_spoked_asterisk', + 'eight_pointed_black_star', + 'sparkle', + 'copyright', + 'registered', + 'tm', + 'splatter', + 'hash', + 'asterisk', + 'zero', + 'one', + 'two', + 'three', + 'four', + 'five', + 'six', + 'seven', + 'eight', + 'nine', + 'keycap_ten', + 'capital_abcd', + 'abcd', + '1234', + 'symbols', + 'abc', + 'a', + 'ab', + 'b', + 'cl', + 'cool', + 'free', + 'information_source', + 'id', + 'm', + 'new', + 'ng', + 'o2', + 'ok', + 'parking', + 'sos', + 'up', + 'vs', + 'koko', + 'sa', + 'u6708', + 'u6709', + 'u6307', + 'ideograph_advantage', + 'u5272', + 'u7121', + 'u7981', + 'accept', + 'u7533', + 'u5408', + 'u7a7a', + 'congratulations', + 'secret', + 'u55b6', + 'u6e80', + 'red_circle', + 'orange_circle', + 'yellow_circle', + 'green_circle', + 'blue_circle', + 'purple_circle', + 'brown_circle', + 'black_circle', + 'white_circle', + 'red_square', + 'orange_square', + 'yellow_square', + 'green_square', + 'blue_square', + 'purple_square', + 'brown_square', + 'black_large_square', + 'white_large_square', + 'black_medium_square', + 'white_medium_square', + 'black_medium_small_square', + 'white_medium_small_square', + 'black_small_square', + 'white_small_square', + 'large_orange_diamond', + 'large_blue_diamond', + 'small_orange_diamond', + 'small_blue_diamond', + 'small_red_triangle', + 'small_red_triangle_down', + 'diamond_shape_with_a_dot_inside', + 'radio_button', + 'white_square_button', + 'black_square_button' + ], + flags: [ + 'checkered_flag', + 'triangular_flag_on_post', + 'crossed_flags', + 'flag_black', + 'flag_white', + 'rainbow_flag', + 'transgender_flag', + 'pirate_flag', + 'flag_ac', + 'flag_ad', + 'flag_ae', + 'flag_af', + 'flag_ag', + 'flag_ai', + 'flag_al', + 'flag_am', + 'flag_ao', + 'flag_aq', + 'flag_ar', + 'flag_as', + 'flag_at', + 'flag_au', + 'flag_aw', + 'flag_ax', + 'flag_az', + 'flag_ba', + 'flag_bb', + 'flag_bd', + 'flag_be', + 'flag_bf', + 'flag_bg', + 'flag_bh', + 'flag_bi', + 'flag_bj', + 'flag_bl', + 'flag_bm', + 'flag_bn', + 'flag_bo', + 'flag_bq', + 'flag_br', + 'flag_bs', + 'flag_bt', + 'flag_bv', + 'flag_bw', + 'flag_by', + 'flag_bz', + 'flag_ca', + 'flag_cc', + 'flag_cd', + 'flag_cf', + 'flag_cg', + 'flag_ch', + 'flag_ci', + 'flag_ck', + 'flag_cl', + 'flag_cm', + 'flag_cn', + 'flag_co', + 'flag_cp', + 'flag_cq', + 'flag_cr', + 'flag_cu', + 'flag_cv', + 'flag_cw', + 'flag_cx', + 'flag_cy', + 'flag_cz', + 'flag_de', + 'flag_dg', + 'flag_dj', + 'flag_dk', + 'flag_dm', + 'flag_do', + 'flag_dz', + 'flag_ea', + 'flag_ec', + 'flag_ee', + 'flag_eg', + 'flag_eh', + 'flag_er', + 'flag_es', + 'flag_et', + 'flag_eu', + 'flag_fi', + 'flag_fj', + 'flag_fk', + 'flag_fm', + 'flag_fo', + 'flag_fr', + 'flag_ga', + 'flag_gb', + 'flag_gd', + 'flag_ge', + 'flag_gf', + 'flag_gg', + 'flag_gh', + 'flag_gi', + 'flag_gl', + 'flag_gm', + 'flag_gn', + 'flag_gp', + 'flag_gq', + 'flag_gr', + 'flag_gs', + 'flag_gt', + 'flag_gu', + 'flag_gw', + 'flag_gy', + 'flag_hk', + 'flag_hm', + 'flag_hn', + 'flag_hr', + 'flag_ht', + 'flag_hu', + 'flag_ic', + 'flag_id', + 'flag_ie', + 'flag_il', + 'flag_im', + 'flag_in', + 'flag_io', + 'flag_iq', + 'flag_ir', + 'flag_is', + 'flag_it', + 'flag_je', + 'flag_jm', + 'flag_jo', + 'flag_jp', + 'flag_ke', + 'flag_kg', + 'flag_kh', + 'flag_ki', + 'flag_km', + 'flag_kn', + 'flag_kp', + 'flag_kr', + 'flag_kw', + 'flag_ky', + 'flag_kz', + 'flag_la', + 'flag_lb', + 'flag_lc', + 'flag_li', + 'flag_lk', + 'flag_lr', + 'flag_ls', + 'flag_lt', + 'flag_lu', + 'flag_lv', + 'flag_ly', + 'flag_ma', + 'flag_mc', + 'flag_md', + 'flag_me', + 'flag_mf', + 'flag_mg', + 'flag_mh', + 'flag_mk', + 'flag_ml', + 'flag_mm', + 'flag_mn', + 'flag_mo', + 'flag_mp', + 'flag_mq', + 'flag_mr', + 'flag_ms', + 'flag_mt', + 'flag_mu', + 'flag_mv', + 'flag_mw', + 'flag_mx', + 'flag_my', + 'flag_mz', + 'flag_na', + 'flag_nc', + 'flag_ne', + 'flag_nf', + 'flag_ng', + 'flag_ni', + 'flag_nl', + 'flag_no', + 'flag_np', + 'flag_nr', + 'flag_nu', + 'flag_nz', + 'flag_om', + 'flag_pa', + 'flag_pe', + 'flag_pf', + 'flag_pg', + 'flag_ph', + 'flag_pk', + 'flag_pl', + 'flag_pm', + 'flag_pn', + 'flag_pr', + 'flag_ps', + 'flag_pt', + 'flag_pw', + 'flag_py', + 'flag_qa', + 'flag_re', + 'flag_ro', + 'flag_rs', + 'flag_ru', + 'flag_rw', + 'flag_sa', + 'flag_sb', + 'flag_sc', + 'flag_sd', + 'flag_se', + 'flag_sg', + 'flag_sh', + 'flag_si', + 'flag_sj', + 'flag_sk', + 'flag_sl', + 'flag_sm', + 'flag_sn', + 'flag_so', + 'flag_sr', + 'flag_ss', + 'flag_st', + 'flag_sv', + 'flag_sx', + 'flag_sy', + 'flag_sz', + 'flag_ta', + 'flag_tc', + 'flag_td', + 'flag_tf', + 'flag_tg', + 'flag_th', + 'flag_tj', + 'flag_tk', + 'flag_tl', + 'flag_tm', + 'flag_tn', + 'flag_to', + 'flag_tr', + 'flag_tt', + 'flag_tv', + 'flag_tw', + 'flag_tz', + 'flag_ua', + 'flag_ug', + 'flag_um', + 'united_nations', + 'flag_us', + 'flag_uy', + 'flag_uz', + 'flag_va', + 'flag_vc', + 'flag_ve', + 'flag_vg', + 'flag_vi', + 'flag_vn', + 'flag_vu', + 'flag_wf', + 'flag_ws', + 'flag_xk', + 'flag_ye', + 'flag_yt', + 'flag_za', + 'flag_zm', + 'flag_zw', + 'england', + 'scotland', + 'wales' + ] +}; + +// Every generated shortname, aliases and skin tone variants included. Not everything the app can +// resolve: useShortnameToUnicode falls back to legacyShortnames.json, which is kept out of this map. +// Values come from emojibase, except the ones held back by scripts/pinned-shortnames.js. +export const shortnameToUnicodeMap: { [key: string]: string } = { + ':regional_indicator_a:': '🇦', + ':regional_indicator_b:': '🇧', + ':regional_indicator_c:': '🇨', + ':regional_indicator_d:': '🇩', + ':regional_indicator_e:': '🇪', + ':regional_indicator_f:': '🇫', + ':regional_indicator_g:': '🇬', + ':regional_indicator_h:': '🇭', + ':regional_indicator_i:': '🇮', + ':regional_indicator_j:': '🇯', + ':regional_indicator_k:': '🇰', + ':regional_indicator_l:': '🇱', + ':regional_indicator_m:': '🇲', + ':regional_indicator_n:': '🇳', + ':regional_indicator_o:': '🇴', + ':regional_indicator_p:': '🇵', + ':regional_indicator_q:': '🇶', + ':regional_indicator_r:': '🇷', + ':regional_indicator_s:': '🇸', + ':regional_indicator_t:': '🇹', + ':regional_indicator_u:': '🇺', + ':regional_indicator_v:': '🇻', + ':regional_indicator_w:': '🇼', + ':regional_indicator_x:': '🇽', + ':regional_indicator_y:': '🇾', + ':regional_indicator_z:': '🇿', + ':grinning:': '😀', + ':grinning_face:': '😀', + ':smiley:': '😃', + ':smile:': '😄', + ':grin:': '😁', + ':laughing:': '😆', + ':satisfied:': '😆', + ':sweat_smile:': '😅', + ':rofl:': '🤣', + ':rolling_on_the_floor_laughing:': '🤣', + ':joy:': '😂', + ':slight_smile:': '🙂', + ':slightly_smiling_face:': '🙂', + ':upside_down:': '🙃', + ':upside_down_face:': '🙃', + ':melting_face:': '🫠', + ':wink:': '😉', + ':winking_face:': '😉', + ':blush:': '😊', + ':innocent:': '😇', + ':smiling_face_with_3_hearts:': '🥰', + ':heart_eyes:': '😍', + ':star_struck:': '🤩', + ':kissing_heart:': '😘', + ':kissing:': '😗', + ':kissing_face:': '😗', + ':relaxed:': '☺️', + ':smiling_face:': '☺️', + ':kissing_closed_eyes:': '😚', + ':kissing_smiling_eyes:': '😙', + ':smiling_face_with_tear:': '🥲', + ':yum:': '😋', + ':stuck_out_tongue:': '😛', + ':stuck_out_tongue_winking_eye:': '😜', + ':zany_face:': '🤪', + ':stuck_out_tongue_closed_eyes:': '😝', + ':money_mouth:': '🤑', + ':money_mouth_face:': '🤑', + ':hugging:': '🤗', + ':hugging_face:': '🤗', + ':face_with_hand_over_mouth:': '🤭', + ':face_with_open_eyes_and_hand_over_mouth:': '🫢', + ':face_with_peeking_eye:': '🫣', + ':shushing_face:': '🤫', + ':thinking:': '🤔', + ':thinking_face:': '🤔', + ':saluting_face:': '🫡', + ':zipper_mouth:': '🤐', + ':zipper_mouth_face:': '🤐', + ':face_with_raised_eyebrow:': '🤨', + ':neutral_face:': '😐️', + ':expressionless:': '😑', + ':no_mouth:': '😶', + ':dotted_line_face:': '🫥', + ':face_in_clouds:': '😶‍🌫️', + ':smirk:': '😏', + ':smirking_face:': '😏', + ':unamused:': '😒', + ':unamused_face:': '😒', + ':rolling_eyes:': '🙄', + ':face_with_rolling_eyes:': '🙄', + ':grimacing:': '😬', + ':face_exhaling:': '😮‍💨', + ':lying_face:': '🤥', + ':liar:': '🤥', + ':shaking_face:': '🫨', + ':head_shaking_horizontally:': '🙂‍↔️', + ':head_shaking_vertically:': '🙂‍↕️', + ':relieved:': '😌', + ':relieved_face:': '😌', + ':pensive:': '😔', + ':pensive_face:': '😔', + ':sleepy:': '😪', + ':sleepy_face:': '😪', + ':drooling_face:': '🤤', + ':drool:': '🤤', + ':sleeping:': '😴', + ':sleeping_face:': '😴', + ':face_with_eye_bags:': '🫩', + ':mask:': '😷', + ':thermometer_face:': '🤒', + ':face_with_thermometer:': '🤒', + ':head_bandage:': '🤕', + ':face_with_head_bandage:': '🤕', + ':nauseated_face:': '🤢', + ':sick:': '🤢', + ':face_vomiting:': '🤮', + ':sneezing_face:': '🤧', + ':sneeze:': '🤧', + ':hot_face:': '🥵', + ':cold_face:': '🥶', + ':woozy_face:': '🥴', + ':dizzy_face:': '😵', + ':face_with_spiral_eyes:': '😵‍💫', + ':exploding_head:': '🤯', + ':cowboy:': '🤠', + ':face_with_cowboy_hat:': '🤠', + ':partying_face:': '🥳', + ':disguised_face:': '🥸', + ':sunglasses:': '😎', + ':nerd:': '🤓', + ':nerd_face:': '🤓', + ':face_with_monocle:': '🧐', + ':confused:': '😕', + ':confused_face:': '😕', + ':face_with_diagonal_mouth:': '🫤', + ':worried:': '😟', + ':worried_face:': '😟', + ':slight_frown:': '🙁', + ':slightly_frowning_face:': '🙁', + ':frowning2:': '☹️', + ':white_frowning_face:': '☹️', + ':frowning_face:': '☹️', + ':open_mouth:': '😮', + ':hushed:': '😯', + ':hushed_face:': '😯', + ':astonished:': '😲', + ':flushed:': '😳', + ':flushed_face:': '😳', + ':distorted_face:': '🫪', + ':pleading_face:': '🥺', + ':face_holding_back_tears:': '🥹', + ':frowning:': '😦', + ':anguished:': '😧', + ':fearful:': '😨', + ':fearful_face:': '😨', + ':cold_sweat:': '😰', + ':disappointed_relieved:': '😥', + ':cry:': '😢', + ':crying_face:': '😢', + ':sob:': '😭', + ':scream:': '😱', + ':confounded:': '😖', + ':persevere:': '😣', + ':disappointed:': '😞', + ':sweat:': '😓', + ':weary:': '😩', + ':weary_face:': '😩', + ':tired_face:': '😫', + ':yawning_face:': '🥱', + ':triumph:': '😤', + ':rage:': '😡', + ':pouting_face:': '😡', + ':angry:': '😠', + ':angry_face:': '😠', + ':face_with_symbols_over_mouth:': '🤬', + ':smiling_imp:': '😈', + ':imp:': '👿', + ':skull:': '💀', + ':skeleton:': '💀', + ':skull_crossbones:': '☠️', + ':skull_and_crossbones:': '☠️', + ':poop:': '💩', + ':shit:': '💩', + ':hankey:': '💩', + ':poo:': '💩', + ':pile_of_poo:': '💩', + ':clown:': '🤡', + ':clown_face:': '🤡', + ':japanese_ogre:': '👹', + ':ogre:': '👹', + ':japanese_goblin:': '👺', + ':goblin:': '👺', + ':ghost:': '👻', + ':alien:': '👽️', + ':space_invader:': '👾', + ':alien_monster:': '👾', + ':robot:': '🤖', + ':robot_face:': '🤖', + ':smiley_cat:': '😺', + ':grinning_cat:': '😺', + ':smile_cat:': '😸', + ':joy_cat:': '😹', + ':heart_eyes_cat:': '😻', + ':smirk_cat:': '😼', + ':kissing_cat:': '😽', + ':scream_cat:': '🙀', + ':weary_cat:': '🙀', + ':crying_cat_face:': '😿', + ':crying_cat:': '😿', + ':pouting_cat:': '😾', + ':see_no_evil:': '🙈', + ':hear_no_evil:': '🙉', + ':speak_no_evil:': '🙊', + ':love_letter:': '💌', + ':cupid:': '💘', + ':gift_heart:': '💝', + ':sparkling_heart:': '💖', + ':heartpulse:': '💗', + ':growing_heart:': '💗', + ':heartbeat:': '💓', + ':beating_heart:': '💓', + ':revolving_hearts:': '💞', + ':two_hearts:': '💕', + ':heart_decoration:': '💟', + ':heart_exclamation:': '❣️', + ':heavy_heart_exclamation_mark_ornament:': '❣️', + ':broken_heart:': '💔', + ':heart_on_fire:': '❤️‍🔥', + ':mending_heart:': '❤️‍🩹', + ':heart:': '❤️', + ':red_heart:': '❤️', + ':pink_heart:': '🩷', + ':orange_heart:': '🧡', + ':yellow_heart:': '💛', + ':green_heart:': '💚', + ':blue_heart:': '💙', + ':light_blue_heart:': '🩵', + ':purple_heart:': '💜', + ':brown_heart:': '🤎', + ':black_heart:': '🖤', + ':grey_heart:': '🩶', + ':white_heart:': '🤍', + ':kiss:': '💋', + ':kiss_mark:': '💋', + ':100:': '💯', + ':anger:': '💢', + ':fight_cloud:': '🫯', + ':boom:': '💥', + ':collision:': '💥', + ':dizzy:': '💫', + ':sweat_drops:': '💦', + ':dash:': '💨', + ':dashing_away:': '💨', + ':hole:': '🕳️', + ':speech_balloon:': '💬', + ':eye_in_speech_bubble:': '👁️‍🗨️', + ':speech_left:': '🗨️', + ':left_speech_bubble:': '🗨️', + ':anger_right:': '🗯️', + ':right_anger_bubble:': '🗯️', + ':thought_balloon:': '💭', + ':zzz:': '💤', + ':wave:': '👋', + ':waving_hand:': '👋', + ':wave_tone1:': '👋🏻', + ':wave_tone2:': '👋🏼', + ':wave_tone3:': '👋🏽', + ':wave_tone4:': '👋🏾', + ':wave_tone5:': '👋🏿', + ':raised_back_of_hand:': '🤚', + ':back_of_hand:': '🤚', + ':raised_back_of_hand_tone1:': '🤚🏻', + ':back_of_hand_tone1:': '🤚🏻', + ':raised_back_of_hand_tone2:': '🤚🏼', + ':back_of_hand_tone2:': '🤚🏼', + ':raised_back_of_hand_tone3:': '🤚🏽', + ':back_of_hand_tone3:': '🤚🏽', + ':raised_back_of_hand_tone4:': '🤚🏾', + ':back_of_hand_tone4:': '🤚🏾', + ':raised_back_of_hand_tone5:': '🤚🏿', + ':back_of_hand_tone5:': '🤚🏿', + ':hand_splayed:': '🖐️', + ':raised_hand_with_fingers_splayed:': '🖐️', + ':hand_splayed_tone1:': '🖐🏻', + ':raised_hand_with_fingers_splayed_tone1:': '🖐🏻', + ':hand_splayed_tone2:': '🖐🏼', + ':raised_hand_with_fingers_splayed_tone2:': '🖐🏼', + ':hand_splayed_tone3:': '🖐🏽', + ':raised_hand_with_fingers_splayed_tone3:': '🖐🏽', + ':hand_splayed_tone4:': '🖐🏾', + ':raised_hand_with_fingers_splayed_tone4:': '🖐🏾', + ':hand_splayed_tone5:': '🖐🏿', + ':raised_hand_with_fingers_splayed_tone5:': '🖐🏿', + ':raised_hand:': '✋️', + ':raised_hand_tone1:': '✋🏻', + ':raised_hand_tone2:': '✋🏼', + ':raised_hand_tone3:': '✋🏽', + ':raised_hand_tone4:': '✋🏾', + ':raised_hand_tone5:': '✋🏿', + ':vulcan:': '🖖', + ':raised_hand_with_part_between_middle_and_ring_fingers:': '🖖', + ':vulcan_salute:': '🖖', + ':vulcan_tone1:': '🖖🏻', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone1:': '🖖🏻', + ':vulcan_tone2:': '🖖🏼', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone2:': '🖖🏼', + ':vulcan_tone3:': '🖖🏽', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone3:': '🖖🏽', + ':vulcan_tone4:': '🖖🏾', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone4:': '🖖🏾', + ':vulcan_tone5:': '🖖🏿', + ':raised_hand_with_part_between_middle_and_ring_fingers_tone5:': '🖖🏿', + ':rightwards_hand:': '🫱', + ':rightwards_hand_tone1:': '🫱🏻', + ':rightwards_hand_light_skin_tone:': '🫱🏻', + ':rightwards_hand_tone2:': '🫱🏼', + ':rightwards_hand_medium_light_skin_tone:': '🫱🏼', + ':rightwards_hand_tone3:': '🫱🏽', + ':rightwards_hand_medium_skin_tone:': '🫱🏽', + ':rightwards_hand_tone4:': '🫱🏾', + ':rightwards_hand_medium_dark_skin_tone:': '🫱🏾', + ':rightwards_hand_tone5:': '🫱🏿', + ':rightwards_hand_dark_skin_tone:': '🫱🏿', + ':leftwards_hand:': '🫲', + ':leftwards_hand_tone1:': '🫲🏻', + ':leftwards_hand_light_skin_tone:': '🫲🏻', + ':leftwards_hand_tone2:': '🫲🏼', + ':leftwards_hand_medium_light_skin_tone:': '🫲🏼', + ':leftwards_hand_tone3:': '🫲🏽', + ':leftwards_hand_medium_skin_tone:': '🫲🏽', + ':leftwards_hand_tone4:': '🫲🏾', + ':leftwards_hand_medium_dark_skin_tone:': '🫲🏾', + ':leftwards_hand_tone5:': '🫲🏿', + ':leftwards_hand_dark_skin_tone:': '🫲🏿', + ':palm_down_hand:': '🫳', + ':palm_down_hand_tone1:': '🫳🏻', + ':palm_down_hand_light_skin_tone:': '🫳🏻', + ':palm_down_hand_tone2:': '🫳🏼', + ':palm_down_hand_medium_light_skin_tone:': '🫳🏼', + ':palm_down_hand_tone3:': '🫳🏽', + ':palm_down_hand_medium_skin_tone:': '🫳🏽', + ':palm_down_hand_tone4:': '🫳🏾', + ':palm_down_hand_medium_dark_skin_tone:': '🫳🏾', + ':palm_down_hand_tone5:': '🫳🏿', + ':palm_down_hand_dark_skin_tone:': '🫳🏿', + ':palm_up_hand:': '🫴', + ':palm_up_hand_tone1:': '🫴🏻', + ':palm_up_hand_light_skin_tone:': '🫴🏻', + ':palm_up_hand_tone2:': '🫴🏼', + ':palm_up_hand_medium_light_skin_tone:': '🫴🏼', + ':palm_up_hand_tone3:': '🫴🏽', + ':palm_up_hand_medium_skin_tone:': '🫴🏽', + ':palm_up_hand_tone4:': '🫴🏾', + ':palm_up_hand_medium_dark_skin_tone:': '🫴🏾', + ':palm_up_hand_tone5:': '🫴🏿', + ':palm_up_hand_dark_skin_tone:': '🫴🏿', + ':leftwards_pushing_hand:': '🫷', + ':leftwards_pushing_hand_tone1:': '🫷🏻', + ':leftwards_pushing_hand_light_skin_tone:': '🫷🏻', + ':leftwards_pushing_hand_tone2:': '🫷🏼', + ':leftwards_pushing_hand_medium_light_skin_tone:': '🫷🏼', + ':leftwards_pushing_hand_tone3:': '🫷🏽', + ':leftwards_pushing_hand_medium_skin_tone:': '🫷🏽', + ':leftwards_pushing_hand_tone4:': '🫷🏾', + ':leftwards_pushing_hand_medium_dark_skin_tone:': '🫷🏾', + ':leftwards_pushing_hand_tone5:': '🫷🏿', + ':leftwards_pushing_hand_dark_skin_tone:': '🫷🏿', + ':rightwards_pushing_hand:': '🫸', + ':rightwards_pushing_hand_tone1:': '🫸🏻', + ':rightwards_pushing_hand_light_skin_tone:': '🫸🏻', + ':rightwards_pushing_hand_tone2:': '🫸🏼', + ':rightwards_pushing_hand_medium_light_skin_tone:': '🫸🏼', + ':rightwards_pushing_hand_tone3:': '🫸🏽', + ':rightwards_pushing_hand_medium_skin_tone:': '🫸🏽', + ':rightwards_pushing_hand_tone4:': '🫸🏾', + ':rightwards_pushing_hand_medium_dark_skin_tone:': '🫸🏾', + ':rightwards_pushing_hand_tone5:': '🫸🏿', + ':rightwards_pushing_hand_dark_skin_tone:': '🫸🏿', + ':ok_hand:': '👌', + ':ok_hand_tone1:': '👌🏻', + ':ok_hand_tone2:': '👌🏼', + ':ok_hand_tone3:': '👌🏽', + ':ok_hand_tone4:': '👌🏾', + ':ok_hand_tone5:': '👌🏿', + ':pinched_fingers:': '🤌', + ':pinched_fingers_tone1:': '🤌🏻', + ':pinched_fingers_light_skin_tone:': '🤌🏻', + ':pinched_fingers_tone2:': '🤌🏼', + ':pinched_fingers_medium_light_skin_tone:': '🤌🏼', + ':pinched_fingers_tone3:': '🤌🏽', + ':pinched_fingers_medium_skin_tone:': '🤌🏽', + ':pinched_fingers_tone4:': '🤌🏾', + ':pinched_fingers_medium_dark_skin_tone:': '🤌🏾', + ':pinched_fingers_tone5:': '🤌🏿', + ':pinched_fingers_dark_skin_tone:': '🤌🏿', + ':pinching_hand:': '🤏', + ':pinching_hand_tone1:': '🤏🏻', + ':pinching_hand_light_skin_tone:': '🤏🏻', + ':pinching_hand_tone2:': '🤏🏼', + ':pinching_hand_medium_light_skin_tone:': '🤏🏼', + ':pinching_hand_tone3:': '🤏🏽', + ':pinching_hand_medium_skin_tone:': '🤏🏽', + ':pinching_hand_tone4:': '🤏🏾', + ':pinching_hand_medium_dark_skin_tone:': '🤏🏾', + ':pinching_hand_tone5:': '🤏🏿', + ':pinching_hand_dark_skin_tone:': '🤏🏿', + ':v:': '✌️', + ':victory_hand:': '✌️', + ':v_tone1:': '✌🏻', + ':v_tone2:': '✌🏼', + ':v_tone3:': '✌🏽', + ':v_tone4:': '✌🏾', + ':v_tone5:': '✌🏿', + ':fingers_crossed:': '🤞', + ':hand_with_index_and_middle_finger_crossed:': '🤞', + ':fingers_crossed_tone1:': '🤞🏻', + ':hand_with_index_and_middle_fingers_crossed_tone1:': '🤞🏻', + ':fingers_crossed_tone2:': '🤞🏼', + ':hand_with_index_and_middle_fingers_crossed_tone2:': '🤞🏼', + ':fingers_crossed_tone3:': '🤞🏽', + ':hand_with_index_and_middle_fingers_crossed_tone3:': '🤞🏽', + ':fingers_crossed_tone4:': '🤞🏾', + ':hand_with_index_and_middle_fingers_crossed_tone4:': '🤞🏾', + ':fingers_crossed_tone5:': '🤞🏿', + ':hand_with_index_and_middle_fingers_crossed_tone5:': '🤞🏿', + ':hand_with_index_finger_and_thumb_crossed:': '🫰', + ':hand_with_index_finger_and_thumb_crossed_tone1:': '🫰🏻', + ':hand_with_index_finger_and_thumb_crossed_light_skin_tone:': '🫰🏻', + ':hand_with_index_finger_and_thumb_crossed_tone2:': '🫰🏼', + ':hand_with_index_finger_and_thumb_crossed_medium_light_skin_tone:': '🫰🏼', + ':hand_with_index_finger_and_thumb_crossed_tone3:': '🫰🏽', + ':hand_with_index_finger_and_thumb_crossed_medium_skin_tone:': '🫰🏽', + ':hand_with_index_finger_and_thumb_crossed_tone4:': '🫰🏾', + ':hand_with_index_finger_and_thumb_crossed_medium_dark_skin_tone:': '🫰🏾', + ':hand_with_index_finger_and_thumb_crossed_tone5:': '🫰🏿', + ':hand_with_index_finger_and_thumb_crossed_dark_skin_tone:': '🫰🏿', + ':love_you_gesture:': '🤟', + ':love_you_gesture_tone1:': '🤟🏻', + ':love_you_gesture_light_skin_tone:': '🤟🏻', + ':love_you_gesture_tone2:': '🤟🏼', + ':love_you_gesture_medium_light_skin_tone:': '🤟🏼', + ':love_you_gesture_tone3:': '🤟🏽', + ':love_you_gesture_medium_skin_tone:': '🤟🏽', + ':love_you_gesture_tone4:': '🤟🏾', + ':love_you_gesture_medium_dark_skin_tone:': '🤟🏾', + ':love_you_gesture_tone5:': '🤟🏿', + ':love_you_gesture_dark_skin_tone:': '🤟🏿', + ':metal:': '🤘', + ':sign_of_the_horns:': '🤘', + ':metal_tone1:': '🤘🏻', + ':sign_of_the_horns_tone1:': '🤘🏻', + ':metal_tone2:': '🤘🏼', + ':sign_of_the_horns_tone2:': '🤘🏼', + ':metal_tone3:': '🤘🏽', + ':sign_of_the_horns_tone3:': '🤘🏽', + ':metal_tone4:': '🤘🏾', + ':sign_of_the_horns_tone4:': '🤘🏾', + ':metal_tone5:': '🤘🏿', + ':sign_of_the_horns_tone5:': '🤘🏿', + ':call_me:': '🤙', + ':call_me_hand:': '🤙', + ':call_me_tone1:': '🤙🏻', + ':call_me_hand_tone1:': '🤙🏻', + ':call_me_tone2:': '🤙🏼', + ':call_me_hand_tone2:': '🤙🏼', + ':call_me_tone3:': '🤙🏽', + ':call_me_hand_tone3:': '🤙🏽', + ':call_me_tone4:': '🤙🏾', + ':call_me_hand_tone4:': '🤙🏾', + ':call_me_tone5:': '🤙🏿', + ':call_me_hand_tone5:': '🤙🏿', + ':point_left:': '👈️', + ':point_left_tone1:': '👈🏻', + ':point_left_tone2:': '👈🏼', + ':point_left_tone3:': '👈🏽', + ':point_left_tone4:': '👈🏾', + ':point_left_tone5:': '👈🏿', + ':point_right:': '👉️', + ':point_right_tone1:': '👉🏻', + ':point_right_tone2:': '👉🏼', + ':point_right_tone3:': '👉🏽', + ':point_right_tone4:': '👉🏾', + ':point_right_tone5:': '👉🏿', + ':point_up_2:': '👆️', + ':point_up_2_tone1:': '👆🏻', + ':point_up_2_tone2:': '👆🏼', + ':point_up_2_tone3:': '👆🏽', + ':point_up_2_tone4:': '👆🏾', + ':point_up_2_tone5:': '👆🏿', + ':middle_finger:': '🖕', + ':reversed_hand_with_middle_finger_extended:': '🖕', + ':middle_finger_tone1:': '🖕🏻', + ':reversed_hand_with_middle_finger_extended_tone1:': '🖕🏻', + ':middle_finger_tone2:': '🖕🏼', + ':reversed_hand_with_middle_finger_extended_tone2:': '🖕🏼', + ':middle_finger_tone3:': '🖕🏽', + ':reversed_hand_with_middle_finger_extended_tone3:': '🖕🏽', + ':middle_finger_tone4:': '🖕🏾', + ':reversed_hand_with_middle_finger_extended_tone4:': '🖕🏾', + ':middle_finger_tone5:': '🖕🏿', + ':reversed_hand_with_middle_finger_extended_tone5:': '🖕🏿', + ':point_down:': '👇️', + ':point_down_tone1:': '👇🏻', + ':point_down_tone2:': '👇🏼', + ':point_down_tone3:': '👇🏽', + ':point_down_tone4:': '👇🏾', + ':point_down_tone5:': '👇🏿', + ':point_up:': '☝️', + ':point_up_tone1:': '☝🏻', + ':point_up_tone2:': '☝🏼', + ':point_up_tone3:': '☝🏽', + ':point_up_tone4:': '☝🏾', + ':point_up_tone5:': '☝🏿', + ':index_pointing_at_the_viewer:': '🫵', + ':index_pointing_at_the_viewer_tone1:': '🫵🏻', + ':index_pointing_at_the_viewer_light_skin_tone:': '🫵🏻', + ':index_pointing_at_the_viewer_tone2:': '🫵🏼', + ':index_pointing_at_the_viewer_medium_light_skin_tone:': '🫵🏼', + ':index_pointing_at_the_viewer_tone3:': '🫵🏽', + ':index_pointing_at_the_viewer_medium_skin_tone:': '🫵🏽', + ':index_pointing_at_the_viewer_tone4:': '🫵🏾', + ':index_pointing_at_the_viewer_medium_dark_skin_tone:': '🫵🏾', + ':index_pointing_at_the_viewer_tone5:': '🫵🏿', + ':index_pointing_at_the_viewer_dark_skin_tone:': '🫵🏿', + ':thumbsup:': '👍️', + ':+1:': '👍️', + ':thumbup:': '👍️', + ':thumbs_up:': '👍️', + ':thumbsup_tone1:': '👍🏻', + ':+1_tone1:': '👍🏻', + ':thumbup_tone1:': '👍🏻', + ':thumbsup_tone2:': '👍🏼', + ':+1_tone2:': '👍🏼', + ':thumbup_tone2:': '👍🏼', + ':thumbsup_tone3:': '👍🏽', + ':+1_tone3:': '👍🏽', + ':thumbup_tone3:': '👍🏽', + ':thumbsup_tone4:': '👍🏾', + ':+1_tone4:': '👍🏾', + ':thumbup_tone4:': '👍🏾', + ':thumbsup_tone5:': '👍🏿', + ':+1_tone5:': '👍🏿', + ':thumbup_tone5:': '👍🏿', + ':thumbsdown:': '👎️', + ':-1:': '👎️', + ':thumbdown:': '👎️', + ':thumbs_down:': '👎️', + ':thumbsdown_tone1:': '👎🏻', + ':-1_tone1:': '👎🏻', + ':thumbdown_tone1:': '👎🏻', + ':thumbsdown_tone2:': '👎🏼', + ':-1_tone2:': '👎🏼', + ':thumbdown_tone2:': '👎🏼', + ':thumbsdown_tone3:': '👎🏽', + ':-1_tone3:': '👎🏽', + ':thumbdown_tone3:': '👎🏽', + ':thumbsdown_tone4:': '👎🏾', + ':-1_tone4:': '👎🏾', + ':thumbdown_tone4:': '👎🏾', + ':thumbsdown_tone5:': '👎🏿', + ':-1_tone5:': '👎🏿', + ':thumbdown_tone5:': '👎🏿', + ':fist:': '✊️', + ':raised_fist:': '✊️', + ':fist_tone1:': '✊🏻', + ':fist_tone2:': '✊🏼', + ':fist_tone3:': '✊🏽', + ':fist_tone4:': '✊🏾', + ':fist_tone5:': '✊🏿', + ':punch:': '👊', + ':oncoming_fist:': '👊', + ':punch_tone1:': '👊🏻', + ':punch_tone2:': '👊🏼', + ':punch_tone3:': '👊🏽', + ':punch_tone4:': '👊🏾', + ':punch_tone5:': '👊🏿', + ':left_facing_fist:': '🤛', + ':left_fist:': '🤛', + ':left_facing_fist_tone1:': '🤛🏻', + ':left_fist_tone1:': '🤛🏻', + ':left_facing_fist_tone2:': '🤛🏼', + ':left_fist_tone2:': '🤛🏼', + ':left_facing_fist_tone3:': '🤛🏽', + ':left_fist_tone3:': '🤛🏽', + ':left_facing_fist_tone4:': '🤛🏾', + ':left_fist_tone4:': '🤛🏾', + ':left_facing_fist_tone5:': '🤛🏿', + ':left_fist_tone5:': '🤛🏿', + ':right_facing_fist:': '🤜', + ':right_fist:': '🤜', + ':right_facing_fist_tone1:': '🤜🏻', + ':right_fist_tone1:': '🤜🏻', + ':right_facing_fist_tone2:': '🤜🏼', + ':right_fist_tone2:': '🤜🏼', + ':right_facing_fist_tone3:': '🤜🏽', + ':right_fist_tone3:': '🤜🏽', + ':right_facing_fist_tone4:': '🤜🏾', + ':right_fist_tone4:': '🤜🏾', + ':right_facing_fist_tone5:': '🤜🏿', + ':right_fist_tone5:': '🤜🏿', + ':clap:': '👏', + ':clap_tone1:': '👏🏻', + ':clap_tone2:': '👏🏼', + ':clap_tone3:': '👏🏽', + ':clap_tone4:': '👏🏾', + ':clap_tone5:': '👏🏿', + ':raised_hands:': '🙌', + ':raising_hands:': '🙌', + ':raised_hands_tone1:': '🙌🏻', + ':raised_hands_tone2:': '🙌🏼', + ':raised_hands_tone3:': '🙌🏽', + ':raised_hands_tone4:': '🙌🏾', + ':raised_hands_tone5:': '🙌🏿', + ':heart_hands:': '🫶', + ':heart_hands_tone1:': '🫶🏻', + ':heart_hands_light_skin_tone:': '🫶🏻', + ':heart_hands_tone2:': '🫶🏼', + ':heart_hands_medium_light_skin_tone:': '🫶🏼', + ':heart_hands_tone3:': '🫶🏽', + ':heart_hands_medium_skin_tone:': '🫶🏽', + ':heart_hands_tone4:': '🫶🏾', + ':heart_hands_medium_dark_skin_tone:': '🫶🏾', + ':heart_hands_tone5:': '🫶🏿', + ':heart_hands_dark_skin_tone:': '🫶🏿', + ':open_hands:': '👐', + ':open_hands_tone1:': '👐🏻', + ':open_hands_tone2:': '👐🏼', + ':open_hands_tone3:': '👐🏽', + ':open_hands_tone4:': '👐🏾', + ':open_hands_tone5:': '👐🏿', + ':palms_up_together:': '🤲', + ':palms_up_together_tone1:': '🤲🏻', + ':palms_up_together_light_skin_tone:': '🤲🏻', + ':palms_up_together_tone2:': '🤲🏼', + ':palms_up_together_medium_light_skin_tone:': '🤲🏼', + ':palms_up_together_tone3:': '🤲🏽', + ':palms_up_together_medium_skin_tone:': '🤲🏽', + ':palms_up_together_tone4:': '🤲🏾', + ':palms_up_together_medium_dark_skin_tone:': '🤲🏾', + ':palms_up_together_tone5:': '🤲🏿', + ':palms_up_together_dark_skin_tone:': '🤲🏿', + ':handshake:': '🤝', + ':shaking_hands:': '🤝', + ':handshake_tone1:': '🤝🏻', + ':handshake_light_skin_tone:': '🤝🏻', + ':handshake_tone2:': '🤝🏼', + ':handshake_medium_light_skin_tone:': '🤝🏼', + ':handshake_tone3:': '🤝🏽', + ':handshake_medium_skin_tone:': '🤝🏽', + ':handshake_tone4:': '🤝🏾', + ':handshake_medium_dark_skin_tone:': '🤝🏾', + ':handshake_tone5:': '🤝🏿', + ':handshake_dark_skin_tone:': '🤝🏿', + ':handshake_tone1_tone2:': '🫱🏻‍🫲🏼', + ':handshake_light_skin_tone_medium_light_skin_tone:': '🫱🏻‍🫲🏼', + ':handshake_tone1-2:': '🫱🏻‍🫲🏼', + ':handshake_tone1_tone3:': '🫱🏻‍🫲🏽', + ':handshake_light_skin_tone_medium_skin_tone:': '🫱🏻‍🫲🏽', + ':handshake_tone1-3:': '🫱🏻‍🫲🏽', + ':handshake_tone1_tone4:': '🫱🏻‍🫲🏾', + ':handshake_light_skin_tone_medium_dark_skin_tone:': '🫱🏻‍🫲🏾', + ':handshake_tone1-4:': '🫱🏻‍🫲🏾', + ':handshake_tone1_tone5:': '🫱🏻‍🫲🏿', + ':handshake_light_skin_tone_dark_skin_tone:': '🫱🏻‍🫲🏿', + ':handshake_tone1-5:': '🫱🏻‍🫲🏿', + ':handshake_tone2_tone1:': '🫱🏼‍🫲🏻', + ':handshake_medium_light_skin_tone_light_skin_tone:': '🫱🏼‍🫲🏻', + ':handshake_tone2-1:': '🫱🏼‍🫲🏻', + ':handshake_tone2_tone3:': '🫱🏼‍🫲🏽', + ':handshake_medium_light_skin_tone_medium_skin_tone:': '🫱🏼‍🫲🏽', + ':handshake_tone2-3:': '🫱🏼‍🫲🏽', + ':handshake_tone2_tone4:': '🫱🏼‍🫲🏾', + ':handshake_medium_light_skin_tone_medium_dark_skin_tone:': '🫱🏼‍🫲🏾', + ':handshake_tone2-4:': '🫱🏼‍🫲🏾', + ':handshake_tone2_tone5:': '🫱🏼‍🫲🏿', + ':handshake_medium_light_skin_tone_dark_skin_tone:': '🫱🏼‍🫲🏿', + ':handshake_tone2-5:': '🫱🏼‍🫲🏿', + ':handshake_tone3_tone1:': '🫱🏽‍🫲🏻', + ':handshake_medium_skin_tone_light_skin_tone:': '🫱🏽‍🫲🏻', + ':handshake_tone3-1:': '🫱🏽‍🫲🏻', + ':handshake_tone3_tone2:': '🫱🏽‍🫲🏼', + ':handshake_medium_skin_tone_medium_light_skin_tone:': '🫱🏽‍🫲🏼', + ':handshake_tone3-2:': '🫱🏽‍🫲🏼', + ':handshake_tone3_tone4:': '🫱🏽‍🫲🏾', + ':handshake_medium_skin_tone_medium_dark_skin_tone:': '🫱🏽‍🫲🏾', + ':handshake_tone3-4:': '🫱🏽‍🫲🏾', + ':handshake_tone3_tone5:': '🫱🏽‍🫲🏿', + ':handshake_medium_skin_tone_dark_skin_tone:': '🫱🏽‍🫲🏿', + ':handshake_tone3-5:': '🫱🏽‍🫲🏿', + ':handshake_tone4_tone1:': '🫱🏾‍🫲🏻', + ':handshake_medium_dark_skin_tone_light_skin_tone:': '🫱🏾‍🫲🏻', + ':handshake_tone4-1:': '🫱🏾‍🫲🏻', + ':handshake_tone4_tone2:': '🫱🏾‍🫲🏼', + ':handshake_medium_dark_skin_tone_medium_light_skin_tone:': '🫱🏾‍🫲🏼', + ':handshake_tone4-2:': '🫱🏾‍🫲🏼', + ':handshake_tone4_tone3:': '🫱🏾‍🫲🏽', + ':handshake_medium_dark_skin_tone_medium_skin_tone:': '🫱🏾‍🫲🏽', + ':handshake_tone4-3:': '🫱🏾‍🫲🏽', + ':handshake_tone4_tone5:': '🫱🏾‍🫲🏿', + ':handshake_medium_dark_skin_tone_dark_skin_tone:': '🫱🏾‍🫲🏿', + ':handshake_tone4-5:': '🫱🏾‍🫲🏿', + ':handshake_tone5_tone1:': '🫱🏿‍🫲🏻', + ':handshake_dark_skin_tone_light_skin_tone:': '🫱🏿‍🫲🏻', + ':handshake_tone5-1:': '🫱🏿‍🫲🏻', + ':handshake_tone5_tone2:': '🫱🏿‍🫲🏼', + ':handshake_dark_skin_tone_medium_light_skin_tone:': '🫱🏿‍🫲🏼', + ':handshake_tone5-2:': '🫱🏿‍🫲🏼', + ':handshake_tone5_tone3:': '🫱🏿‍🫲🏽', + ':handshake_dark_skin_tone_medium_skin_tone:': '🫱🏿‍🫲🏽', + ':handshake_tone5-3:': '🫱🏿‍🫲🏽', + ':handshake_tone5_tone4:': '🫱🏿‍🫲🏾', + ':handshake_dark_skin_tone_medium_dark_skin_tone:': '🫱🏿‍🫲🏾', + ':handshake_tone5-4:': '🫱🏿‍🫲🏾', + ':pray:': '🙏', + ':folded_hands:': '🙏', + ':pray_tone1:': '🙏🏻', + ':pray_tone2:': '🙏🏼', + ':pray_tone3:': '🙏🏽', + ':pray_tone4:': '🙏🏾', + ':pray_tone5:': '🙏🏿', + ':writing_hand:': '✍️', + ':writing_hand_tone1:': '✍🏻', + ':writing_hand_tone2:': '✍🏼', + ':writing_hand_tone3:': '✍🏽', + ':writing_hand_tone4:': '✍🏾', + ':writing_hand_tone5:': '✍🏿', + ':nail_care:': '💅', + ':nail_polish:': '💅', + ':nail_care_tone1:': '💅🏻', + ':nail_care_tone2:': '💅🏼', + ':nail_care_tone3:': '💅🏽', + ':nail_care_tone4:': '💅🏾', + ':nail_care_tone5:': '💅🏿', + ':selfie:': '🤳', + ':selfie_tone1:': '🤳🏻', + ':selfie_tone2:': '🤳🏼', + ':selfie_tone3:': '🤳🏽', + ':selfie_tone4:': '🤳🏾', + ':selfie_tone5:': '🤳🏿', + ':muscle:': '💪', + ':flexed_biceps:': '💪', + ':muscle_tone1:': '💪🏻', + ':muscle_tone2:': '💪🏼', + ':muscle_tone3:': '💪🏽', + ':muscle_tone4:': '💪🏾', + ':muscle_tone5:': '💪🏿', + ':mechanical_arm:': '🦾', + ':mechanical_leg:': '🦿', + ':leg:': '🦵', + ':leg_tone1:': '🦵🏻', + ':leg_light_skin_tone:': '🦵🏻', + ':leg_tone2:': '🦵🏼', + ':leg_medium_light_skin_tone:': '🦵🏼', + ':leg_tone3:': '🦵🏽', + ':leg_medium_skin_tone:': '🦵🏽', + ':leg_tone4:': '🦵🏾', + ':leg_medium_dark_skin_tone:': '🦵🏾', + ':leg_tone5:': '🦵🏿', + ':leg_dark_skin_tone:': '🦵🏿', + ':foot:': '🦶', + ':foot_tone1:': '🦶🏻', + ':foot_light_skin_tone:': '🦶🏻', + ':foot_tone2:': '🦶🏼', + ':foot_medium_light_skin_tone:': '🦶🏼', + ':foot_tone3:': '🦶🏽', + ':foot_medium_skin_tone:': '🦶🏽', + ':foot_tone4:': '🦶🏾', + ':foot_medium_dark_skin_tone:': '🦶🏾', + ':foot_tone5:': '🦶🏿', + ':foot_dark_skin_tone:': '🦶🏿', + ':ear:': '👂️', + ':ear_tone1:': '👂🏻', + ':ear_tone2:': '👂🏼', + ':ear_tone3:': '👂🏽', + ':ear_tone4:': '👂🏾', + ':ear_tone5:': '👂🏿', + ':ear_with_hearing_aid:': '🦻', + ':ear_with_hearing_aid_tone1:': '🦻🏻', + ':ear_with_hearing_aid_light_skin_tone:': '🦻🏻', + ':ear_with_hearing_aid_tone2:': '🦻🏼', + ':ear_with_hearing_aid_medium_light_skin_tone:': '🦻🏼', + ':ear_with_hearing_aid_tone3:': '🦻🏽', + ':ear_with_hearing_aid_medium_skin_tone:': '🦻🏽', + ':ear_with_hearing_aid_tone4:': '🦻🏾', + ':ear_with_hearing_aid_medium_dark_skin_tone:': '🦻🏾', + ':ear_with_hearing_aid_tone5:': '🦻🏿', + ':ear_with_hearing_aid_dark_skin_tone:': '🦻🏿', + ':nose:': '👃', + ':nose_tone1:': '👃🏻', + ':nose_tone2:': '👃🏼', + ':nose_tone3:': '👃🏽', + ':nose_tone4:': '👃🏾', + ':nose_tone5:': '👃🏿', + ':brain:': '🧠', + ':anatomical_heart:': '🫀', + ':lungs:': '🫁', + ':tooth:': '🦷', + ':bone:': '🦴', + ':eyes:': '👀', + ':eye:': '👁️', + ':tongue:': '👅', + ':lips:': '👄', + ':mouth:': '👄', + ':biting_lip:': '🫦', + ':baby:': '👶', + ':baby_tone1:': '👶🏻', + ':baby_tone2:': '👶🏼', + ':baby_tone3:': '👶🏽', + ':baby_tone4:': '👶🏾', + ':baby_tone5:': '👶🏿', + ':child:': '🧒', + ':child_tone1:': '🧒🏻', + ':child_light_skin_tone:': '🧒🏻', + ':child_tone2:': '🧒🏼', + ':child_medium_light_skin_tone:': '🧒🏼', + ':child_tone3:': '🧒🏽', + ':child_medium_skin_tone:': '🧒🏽', + ':child_tone4:': '🧒🏾', + ':child_medium_dark_skin_tone:': '🧒🏾', + ':child_tone5:': '🧒🏿', + ':child_dark_skin_tone:': '🧒🏿', + ':boy:': '👦', + ':boy_tone1:': '👦🏻', + ':boy_tone2:': '👦🏼', + ':boy_tone3:': '👦🏽', + ':boy_tone4:': '👦🏾', + ':boy_tone5:': '👦🏿', + ':girl:': '👧', + ':girl_tone1:': '👧🏻', + ':girl_tone2:': '👧🏼', + ':girl_tone3:': '👧🏽', + ':girl_tone4:': '👧🏾', + ':girl_tone5:': '👧🏿', + ':adult:': '🧑', + ':person:': '🧑', + ':adult_tone1:': '🧑🏻', + ':adult_light_skin_tone:': '🧑🏻', + ':adult_tone2:': '🧑🏼', + ':adult_medium_light_skin_tone:': '🧑🏼', + ':adult_tone3:': '🧑🏽', + ':adult_medium_skin_tone:': '🧑🏽', + ':adult_tone4:': '🧑🏾', + ':adult_medium_dark_skin_tone:': '🧑🏾', + ':adult_tone5:': '🧑🏿', + ':adult_dark_skin_tone:': '🧑🏿', + ':blond_haired_person:': '👱', + ':person_with_blond_hair:': '👱', + ':blond_haired_person_tone1:': '👱🏻', + ':person_with_blond_hair_tone1:': '👱🏻', + ':blond_haired_person_tone2:': '👱🏼', + ':person_with_blond_hair_tone2:': '👱🏼', + ':blond_haired_person_tone3:': '👱🏽', + ':person_with_blond_hair_tone3:': '👱🏽', + ':blond_haired_person_tone4:': '👱🏾', + ':person_with_blond_hair_tone4:': '👱🏾', + ':blond_haired_person_tone5:': '👱🏿', + ':person_with_blond_hair_tone5:': '👱🏿', + ':man:': '👨', + ':man_tone1:': '👨🏻', + ':man_tone2:': '👨🏼', + ':man_tone3:': '👨🏽', + ':man_tone4:': '👨🏾', + ':man_tone5:': '👨🏿', + ':bearded_person:': '🧔', + ':person_beard:': '🧔', + ':bearded_person_tone1:': '🧔🏻', + ':bearded_person_light_skin_tone:': '🧔🏻', + ':bearded_person_tone2:': '🧔🏼', + ':bearded_person_medium_light_skin_tone:': '🧔🏼', + ':bearded_person_tone3:': '🧔🏽', + ':bearded_person_medium_skin_tone:': '🧔🏽', + ':bearded_person_tone4:': '🧔🏾', + ':bearded_person_medium_dark_skin_tone:': '🧔🏾', + ':bearded_person_tone5:': '🧔🏿', + ':bearded_person_dark_skin_tone:': '🧔🏿', + ':man_beard:': '🧔‍♂️', + ':man_tone1_beard:': '🧔🏻‍♂️', + ':man_light_skin_tone_beard:': '🧔🏻‍♂️', + ':man_beard_tone1:': '🧔🏻‍♂️', + ':man_tone2_beard:': '🧔🏼‍♂️', + ':man_medium_light_skin_tone_beard:': '🧔🏼‍♂️', + ':man_beard_tone2:': '🧔🏼‍♂️', + ':man_tone3_beard:': '🧔🏽‍♂️', + ':man_medium_skin_tone_beard:': '🧔🏽‍♂️', + ':man_beard_tone3:': '🧔🏽‍♂️', + ':man_tone4_beard:': '🧔🏾‍♂️', + ':man_medium_dark_skin_tone_beard:': '🧔🏾‍♂️', + ':man_beard_tone4:': '🧔🏾‍♂️', + ':man_tone5_beard:': '🧔🏿‍♂️', + ':man_dark_skin_tone_beard:': '🧔🏿‍♂️', + ':man_beard_tone5:': '🧔🏿‍♂️', + ':woman_beard:': '🧔‍♀️', + ':woman_tone1_beard:': '🧔🏻‍♀️', + ':woman_light_skin_tone_beard:': '🧔🏻‍♀️', + ':woman_beard_tone1:': '🧔🏻‍♀️', + ':woman_tone2_beard:': '🧔🏼‍♀️', + ':woman_medium_light_skin_tone_beard:': '🧔🏼‍♀️', + ':woman_beard_tone2:': '🧔🏼‍♀️', + ':woman_tone3_beard:': '🧔🏽‍♀️', + ':woman_medium_skin_tone_beard:': '🧔🏽‍♀️', + ':woman_beard_tone3:': '🧔🏽‍♀️', + ':woman_tone4_beard:': '🧔🏾‍♀️', + ':woman_medium_dark_skin_tone_beard:': '🧔🏾‍♀️', + ':woman_beard_tone4:': '🧔🏾‍♀️', + ':woman_tone5_beard:': '🧔🏿‍♀️', + ':woman_dark_skin_tone_beard:': '🧔🏿‍♀️', + ':woman_beard_tone5:': '🧔🏿‍♀️', + ':man_red_haired:': '👨‍🦰', + ':man_red_hair:': '👨‍🦰', + ':man_red_haired_tone1:': '👨🏻‍🦰', + ':man_red_haired_light_skin_tone:': '👨🏻‍🦰', + ':man_red_haired_tone2:': '👨🏼‍🦰', + ':man_red_haired_medium_light_skin_tone:': '👨🏼‍🦰', + ':man_red_haired_tone3:': '👨🏽‍🦰', + ':man_red_haired_medium_skin_tone:': '👨🏽‍🦰', + ':man_red_haired_tone4:': '👨🏾‍🦰', + ':man_red_haired_medium_dark_skin_tone:': '👨🏾‍🦰', + ':man_red_haired_tone5:': '👨🏿‍🦰', + ':man_red_haired_dark_skin_tone:': '👨🏿‍🦰', + ':man_curly_haired:': '👨‍🦱', + ':man_curly_haired_tone1:': '👨🏻‍🦱', + ':man_curly_haired_light_skin_tone:': '👨🏻‍🦱', + ':man_curly_haired_tone2:': '👨🏼‍🦱', + ':man_curly_haired_medium_light_skin_tone:': '👨🏼‍🦱', + ':man_curly_haired_tone3:': '👨🏽‍🦱', + ':man_curly_haired_medium_skin_tone:': '👨🏽‍🦱', + ':man_curly_haired_tone4:': '👨🏾‍🦱', + ':man_curly_haired_medium_dark_skin_tone:': '👨🏾‍🦱', + ':man_curly_haired_tone5:': '👨🏿‍🦱', + ':man_curly_haired_dark_skin_tone:': '👨🏿‍🦱', + ':man_white_haired:': '👨‍🦳', + ':man_white_haired_tone1:': '👨🏻‍🦳', + ':man_white_haired_light_skin_tone:': '👨🏻‍🦳', + ':man_white_haired_tone2:': '👨🏼‍🦳', + ':man_white_haired_medium_light_skin_tone:': '👨🏼‍🦳', + ':man_white_haired_tone3:': '👨🏽‍🦳', + ':man_white_haired_medium_skin_tone:': '👨🏽‍🦳', + ':man_white_haired_tone4:': '👨🏾‍🦳', + ':man_white_haired_medium_dark_skin_tone:': '👨🏾‍🦳', + ':man_white_haired_tone5:': '👨🏿‍🦳', + ':man_white_haired_dark_skin_tone:': '👨🏿‍🦳', + ':man_bald:': '👨‍🦲', + ':man_bald_tone1:': '👨🏻‍🦲', + ':man_bald_light_skin_tone:': '👨🏻‍🦲', + ':man_bald_tone2:': '👨🏼‍🦲', + ':man_bald_medium_light_skin_tone:': '👨🏼‍🦲', + ':man_bald_tone3:': '👨🏽‍🦲', + ':man_bald_medium_skin_tone:': '👨🏽‍🦲', + ':man_bald_tone4:': '👨🏾‍🦲', + ':man_bald_medium_dark_skin_tone:': '👨🏾‍🦲', + ':man_bald_tone5:': '👨🏿‍🦲', + ':man_bald_dark_skin_tone:': '👨🏿‍🦲', + ':woman:': '👩', + ':woman_tone1:': '👩🏻', + ':woman_tone2:': '👩🏼', + ':woman_tone3:': '👩🏽', + ':woman_tone4:': '👩🏾', + ':woman_tone5:': '👩🏿', + ':woman_red_haired:': '👩‍🦰', + ':woman_red_haired_tone1:': '👩🏻‍🦰', + ':woman_red_haired_light_skin_tone:': '👩🏻‍🦰', + ':woman_red_haired_tone2:': '👩🏼‍🦰', + ':woman_red_haired_medium_light_skin_tone:': '👩🏼‍🦰', + ':woman_red_haired_tone3:': '👩🏽‍🦰', + ':woman_red_haired_medium_skin_tone:': '👩🏽‍🦰', + ':woman_red_haired_tone4:': '👩🏾‍🦰', + ':woman_red_haired_medium_dark_skin_tone:': '👩🏾‍🦰', + ':woman_red_haired_tone5:': '👩🏿‍🦰', + ':woman_red_haired_dark_skin_tone:': '👩🏿‍🦰', + ':person_red_hair:': '🧑‍🦰', + ':person_tone1_red_hair:': '🧑🏻‍🦰', + ':person_light_skin_tone_red_hair:': '🧑🏻‍🦰', + ':person_red_hair_tone1:': '🧑🏻‍🦰', + ':person_tone2_red_hair:': '🧑🏼‍🦰', + ':person_medium_light_skin_tone_red_hair:': '🧑🏼‍🦰', + ':person_red_hair_tone2:': '🧑🏼‍🦰', + ':person_tone3_red_hair:': '🧑🏽‍🦰', + ':person_medium_skin_tone_red_hair:': '🧑🏽‍🦰', + ':person_red_hair_tone3:': '🧑🏽‍🦰', + ':person_tone4_red_hair:': '🧑🏾‍🦰', + ':person_medium_dark_skin_tone_red_hair:': '🧑🏾‍🦰', + ':person_red_hair_tone4:': '🧑🏾‍🦰', + ':person_tone5_red_hair:': '🧑🏿‍🦰', + ':person_dark_skin_tone_red_hair:': '🧑🏿‍🦰', + ':person_red_hair_tone5:': '🧑🏿‍🦰', + ':woman_curly_haired:': '👩‍🦱', + ':woman_curly_haired_tone1:': '👩🏻‍🦱', + ':woman_curly_haired_light_skin_tone:': '👩🏻‍🦱', + ':woman_curly_haired_tone2:': '👩🏼‍🦱', + ':woman_curly_haired_medium_light_skin_tone:': '👩🏼‍🦱', + ':woman_curly_haired_tone3:': '👩🏽‍🦱', + ':woman_curly_haired_medium_skin_tone:': '👩🏽‍🦱', + ':woman_curly_haired_tone4:': '👩🏾‍🦱', + ':woman_curly_haired_medium_dark_skin_tone:': '👩🏾‍🦱', + ':woman_curly_haired_tone5:': '👩🏿‍🦱', + ':woman_curly_haired_dark_skin_tone:': '👩🏿‍🦱', + ':person_curly_hair:': '🧑‍🦱', + ':person_tone1_curly_hair:': '🧑🏻‍🦱', + ':person_light_skin_tone_curly_hair:': '🧑🏻‍🦱', + ':person_curly_hair_tone1:': '🧑🏻‍🦱', + ':person_tone2_curly_hair:': '🧑🏼‍🦱', + ':person_medium_light_skin_tone_curly_hair:': '🧑🏼‍🦱', + ':person_curly_hair_tone2:': '🧑🏼‍🦱', + ':person_tone3_curly_hair:': '🧑🏽‍🦱', + ':person_medium_skin_tone_curly_hair:': '🧑🏽‍🦱', + ':person_curly_hair_tone3:': '🧑🏽‍🦱', + ':person_tone4_curly_hair:': '🧑🏾‍🦱', + ':person_medium_dark_skin_tone_curly_hair:': '🧑🏾‍🦱', + ':person_curly_hair_tone4:': '🧑🏾‍🦱', + ':person_tone5_curly_hair:': '🧑🏿‍🦱', + ':person_dark_skin_tone_curly_hair:': '🧑🏿‍🦱', + ':person_curly_hair_tone5:': '🧑🏿‍🦱', + ':woman_white_haired:': '👩‍🦳', + ':woman_white_haired_tone1:': '👩🏻‍🦳', + ':woman_white_haired_light_skin_tone:': '👩🏻‍🦳', + ':woman_white_haired_tone2:': '👩🏼‍🦳', + ':woman_white_haired_medium_light_skin_tone:': '👩🏼‍🦳', + ':woman_white_haired_tone3:': '👩🏽‍🦳', + ':woman_white_haired_medium_skin_tone:': '👩🏽‍🦳', + ':woman_white_haired_tone4:': '👩🏾‍🦳', + ':woman_white_haired_medium_dark_skin_tone:': '👩🏾‍🦳', + ':woman_white_haired_tone5:': '👩🏿‍🦳', + ':woman_white_haired_dark_skin_tone:': '👩🏿‍🦳', + ':person_white_hair:': '🧑‍🦳', + ':person_tone1_white_hair:': '🧑🏻‍🦳', + ':person_light_skin_tone_white_hair:': '🧑🏻‍🦳', + ':person_white_hair_tone1:': '🧑🏻‍🦳', + ':person_tone2_white_hair:': '🧑🏼‍🦳', + ':person_medium_light_skin_tone_white_hair:': '🧑🏼‍🦳', + ':person_white_hair_tone2:': '🧑🏼‍🦳', + ':person_tone3_white_hair:': '🧑🏽‍🦳', + ':person_medium_skin_tone_white_hair:': '🧑🏽‍🦳', + ':person_white_hair_tone3:': '🧑🏽‍🦳', + ':person_tone4_white_hair:': '🧑🏾‍🦳', + ':person_medium_dark_skin_tone_white_hair:': '🧑🏾‍🦳', + ':person_white_hair_tone4:': '🧑🏾‍🦳', + ':person_tone5_white_hair:': '🧑🏿‍🦳', + ':person_dark_skin_tone_white_hair:': '🧑🏿‍🦳', + ':person_white_hair_tone5:': '🧑🏿‍🦳', + ':woman_bald:': '👩‍🦲', + ':woman_bald_tone1:': '👩🏻‍🦲', + ':woman_bald_light_skin_tone:': '👩🏻‍🦲', + ':woman_bald_tone2:': '👩🏼‍🦲', + ':woman_bald_medium_light_skin_tone:': '👩🏼‍🦲', + ':woman_bald_tone3:': '👩🏽‍🦲', + ':woman_bald_medium_skin_tone:': '👩🏽‍🦲', + ':woman_bald_tone4:': '👩🏾‍🦲', + ':woman_bald_medium_dark_skin_tone:': '👩🏾‍🦲', + ':woman_bald_tone5:': '👩🏿‍🦲', + ':woman_bald_dark_skin_tone:': '👩🏿‍🦲', + ':person_bald:': '🧑‍🦲', + ':person_tone1_bald:': '🧑🏻‍🦲', + ':person_light_skin_tone_bald:': '🧑🏻‍🦲', + ':person_bald_tone1:': '🧑🏻‍🦲', + ':person_tone2_bald:': '🧑🏼‍🦲', + ':person_medium_light_skin_tone_bald:': '🧑🏼‍🦲', + ':person_bald_tone2:': '🧑🏼‍🦲', + ':person_tone3_bald:': '🧑🏽‍🦲', + ':person_medium_skin_tone_bald:': '🧑🏽‍🦲', + ':person_bald_tone3:': '🧑🏽‍🦲', + ':person_tone4_bald:': '🧑🏾‍🦲', + ':person_medium_dark_skin_tone_bald:': '🧑🏾‍🦲', + ':person_bald_tone4:': '🧑🏾‍🦲', + ':person_tone5_bald:': '🧑🏿‍🦲', + ':person_dark_skin_tone_bald:': '🧑🏿‍🦲', + ':person_bald_tone5:': '🧑🏿‍🦲', + ':blond-haired_woman:': '👱‍♀️', + ':blond-haired_woman_tone1:': '👱🏻‍♀️', + ':blond-haired_woman_light_skin_tone:': '👱🏻‍♀️', + ':blond-haired_woman_tone2:': '👱🏼‍♀️', + ':blond-haired_woman_medium_light_skin_tone:': '👱🏼‍♀️', + ':blond-haired_woman_tone3:': '👱🏽‍♀️', + ':blond-haired_woman_medium_skin_tone:': '👱🏽‍♀️', + ':blond-haired_woman_tone4:': '👱🏾‍♀️', + ':blond-haired_woman_medium_dark_skin_tone:': '👱🏾‍♀️', + ':blond-haired_woman_tone5:': '👱🏿‍♀️', + ':blond-haired_woman_dark_skin_tone:': '👱🏿‍♀️', + ':blond-haired_man:': '👱‍♂️', + ':blond-haired_man_tone1:': '👱🏻‍♂️', + ':blond-haired_man_light_skin_tone:': '👱🏻‍♂️', + ':blond-haired_man_tone2:': '👱🏼‍♂️', + ':blond-haired_man_medium_light_skin_tone:': '👱🏼‍♂️', + ':blond-haired_man_tone3:': '👱🏽‍♂️', + ':blond-haired_man_medium_skin_tone:': '👱🏽‍♂️', + ':blond-haired_man_tone4:': '👱🏾‍♂️', + ':blond-haired_man_medium_dark_skin_tone:': '👱🏾‍♂️', + ':blond-haired_man_tone5:': '👱🏿‍♂️', + ':blond-haired_man_dark_skin_tone:': '👱🏿‍♂️', + ':older_adult:': '🧓', + ':older_person:': '🧓', + ':older_adult_tone1:': '🧓🏻', + ':older_adult_light_skin_tone:': '🧓🏻', + ':older_adult_tone2:': '🧓🏼', + ':older_adult_medium_light_skin_tone:': '🧓🏼', + ':older_adult_tone3:': '🧓🏽', + ':older_adult_medium_skin_tone:': '🧓🏽', + ':older_adult_tone4:': '🧓🏾', + ':older_adult_medium_dark_skin_tone:': '🧓🏾', + ':older_adult_tone5:': '🧓🏿', + ':older_adult_dark_skin_tone:': '🧓🏿', + ':older_man:': '👴', + ':old_man:': '👴', + ':older_man_tone1:': '👴🏻', + ':older_man_tone2:': '👴🏼', + ':older_man_tone3:': '👴🏽', + ':older_man_tone4:': '👴🏾', + ':older_man_tone5:': '👴🏿', + ':older_woman:': '👵', + ':grandma:': '👵', + ':old_woman:': '👵', + ':older_woman_tone1:': '👵🏻', + ':grandma_tone1:': '👵🏻', + ':older_woman_tone2:': '👵🏼', + ':grandma_tone2:': '👵🏼', + ':older_woman_tone3:': '👵🏽', + ':grandma_tone3:': '👵🏽', + ':older_woman_tone4:': '👵🏾', + ':grandma_tone4:': '👵🏾', + ':older_woman_tone5:': '👵🏿', + ':grandma_tone5:': '👵🏿', + ':person_frowning:': '🙍', + ':person_frowning_tone1:': '🙍🏻', + ':person_frowning_tone2:': '🙍🏼', + ':person_frowning_tone3:': '🙍🏽', + ':person_frowning_tone4:': '🙍🏾', + ':person_frowning_tone5:': '🙍🏿', + ':man_frowning:': '🙍‍♂️', + ':man_frowning_tone1:': '🙍🏻‍♂️', + ':man_frowning_light_skin_tone:': '🙍🏻‍♂️', + ':man_frowning_tone2:': '🙍🏼‍♂️', + ':man_frowning_medium_light_skin_tone:': '🙍🏼‍♂️', + ':man_frowning_tone3:': '🙍🏽‍♂️', + ':man_frowning_medium_skin_tone:': '🙍🏽‍♂️', + ':man_frowning_tone4:': '🙍🏾‍♂️', + ':man_frowning_medium_dark_skin_tone:': '🙍🏾‍♂️', + ':man_frowning_tone5:': '🙍🏿‍♂️', + ':man_frowning_dark_skin_tone:': '🙍🏿‍♂️', + ':woman_frowning:': '🙍‍♀️', + ':woman_frowning_tone1:': '🙍🏻‍♀️', + ':woman_frowning_light_skin_tone:': '🙍🏻‍♀️', + ':woman_frowning_tone2:': '🙍🏼‍♀️', + ':woman_frowning_medium_light_skin_tone:': '🙍🏼‍♀️', + ':woman_frowning_tone3:': '🙍🏽‍♀️', + ':woman_frowning_medium_skin_tone:': '🙍🏽‍♀️', + ':woman_frowning_tone4:': '🙍🏾‍♀️', + ':woman_frowning_medium_dark_skin_tone:': '🙍🏾‍♀️', + ':woman_frowning_tone5:': '🙍🏿‍♀️', + ':woman_frowning_dark_skin_tone:': '🙍🏿‍♀️', + ':person_pouting:': '🙎', + ':person_with_pouting_face:': '🙎', + ':person_pouting_tone1:': '🙎🏻', + ':person_with_pouting_face_tone1:': '🙎🏻', + ':person_pouting_tone2:': '🙎🏼', + ':person_with_pouting_face_tone2:': '🙎🏼', + ':person_pouting_tone3:': '🙎🏽', + ':person_with_pouting_face_tone3:': '🙎🏽', + ':person_pouting_tone4:': '🙎🏾', + ':person_with_pouting_face_tone4:': '🙎🏾', + ':person_pouting_tone5:': '🙎🏿', + ':person_with_pouting_face_tone5:': '🙎🏿', + ':man_pouting:': '🙎‍♂️', + ':man_pouting_tone1:': '🙎🏻‍♂️', + ':man_pouting_light_skin_tone:': '🙎🏻‍♂️', + ':man_pouting_tone2:': '🙎🏼‍♂️', + ':man_pouting_medium_light_skin_tone:': '🙎🏼‍♂️', + ':man_pouting_tone3:': '🙎🏽‍♂️', + ':man_pouting_medium_skin_tone:': '🙎🏽‍♂️', + ':man_pouting_tone4:': '🙎🏾‍♂️', + ':man_pouting_medium_dark_skin_tone:': '🙎🏾‍♂️', + ':man_pouting_tone5:': '🙎🏿‍♂️', + ':man_pouting_dark_skin_tone:': '🙎🏿‍♂️', + ':woman_pouting:': '🙎‍♀️', + ':woman_pouting_tone1:': '🙎🏻‍♀️', + ':woman_pouting_light_skin_tone:': '🙎🏻‍♀️', + ':woman_pouting_tone2:': '🙎🏼‍♀️', + ':woman_pouting_medium_light_skin_tone:': '🙎🏼‍♀️', + ':woman_pouting_tone3:': '🙎🏽‍♀️', + ':woman_pouting_medium_skin_tone:': '🙎🏽‍♀️', + ':woman_pouting_tone4:': '🙎🏾‍♀️', + ':woman_pouting_medium_dark_skin_tone:': '🙎🏾‍♀️', + ':woman_pouting_tone5:': '🙎🏿‍♀️', + ':woman_pouting_dark_skin_tone:': '🙎🏿‍♀️', + ':person_gesturing_no:': '🙅', + ':no_good:': '🙅', + ':person_gesturing_no_tone1:': '🙅🏻', + ':no_good_tone1:': '🙅🏻', + ':person_gesturing_no_tone2:': '🙅🏼', + ':no_good_tone2:': '🙅🏼', + ':person_gesturing_no_tone3:': '🙅🏽', + ':no_good_tone3:': '🙅🏽', + ':person_gesturing_no_tone4:': '🙅🏾', + ':no_good_tone4:': '🙅🏾', + ':person_gesturing_no_tone5:': '🙅🏿', + ':no_good_tone5:': '🙅🏿', + ':man_gesturing_no:': '🙅‍♂️', + ':man_gesturing_no_tone1:': '🙅🏻‍♂️', + ':man_gesturing_no_light_skin_tone:': '🙅🏻‍♂️', + ':man_gesturing_no_tone2:': '🙅🏼‍♂️', + ':man_gesturing_no_medium_light_skin_tone:': '🙅🏼‍♂️', + ':man_gesturing_no_tone3:': '🙅🏽‍♂️', + ':man_gesturing_no_medium_skin_tone:': '🙅🏽‍♂️', + ':man_gesturing_no_tone4:': '🙅🏾‍♂️', + ':man_gesturing_no_medium_dark_skin_tone:': '🙅🏾‍♂️', + ':man_gesturing_no_tone5:': '🙅🏿‍♂️', + ':man_gesturing_no_dark_skin_tone:': '🙅🏿‍♂️', + ':woman_gesturing_no:': '🙅‍♀️', + ':woman_gesturing_no_tone1:': '🙅🏻‍♀️', + ':woman_gesturing_no_light_skin_tone:': '🙅🏻‍♀️', + ':woman_gesturing_no_tone2:': '🙅🏼‍♀️', + ':woman_gesturing_no_medium_light_skin_tone:': '🙅🏼‍♀️', + ':woman_gesturing_no_tone3:': '🙅🏽‍♀️', + ':woman_gesturing_no_medium_skin_tone:': '🙅🏽‍♀️', + ':woman_gesturing_no_tone4:': '🙅🏾‍♀️', + ':woman_gesturing_no_medium_dark_skin_tone:': '🙅🏾‍♀️', + ':woman_gesturing_no_tone5:': '🙅🏿‍♀️', + ':woman_gesturing_no_dark_skin_tone:': '🙅🏿‍♀️', + ':person_gesturing_ok:': '🙆', + ':ok_woman:': '🙆', + ':person_gesturing_ok_tone1:': '🙆🏻', + ':ok_woman_tone1:': '🙆🏻', + ':person_gesturing_ok_tone2:': '🙆🏼', + ':ok_woman_tone2:': '🙆🏼', + ':person_gesturing_ok_tone3:': '🙆🏽', + ':ok_woman_tone3:': '🙆🏽', + ':person_gesturing_ok_tone4:': '🙆🏾', + ':ok_woman_tone4:': '🙆🏾', + ':person_gesturing_ok_tone5:': '🙆🏿', + ':ok_woman_tone5:': '🙆🏿', + ':man_gesturing_ok:': '🙆‍♂️', + ':man_gesturing_ok_tone1:': '🙆🏻‍♂️', + ':man_gesturing_ok_light_skin_tone:': '🙆🏻‍♂️', + ':man_gesturing_ok_tone2:': '🙆🏼‍♂️', + ':man_gesturing_ok_medium_light_skin_tone:': '🙆🏼‍♂️', + ':man_gesturing_ok_tone3:': '🙆🏽‍♂️', + ':man_gesturing_ok_medium_skin_tone:': '🙆🏽‍♂️', + ':man_gesturing_ok_tone4:': '🙆🏾‍♂️', + ':man_gesturing_ok_medium_dark_skin_tone:': '🙆🏾‍♂️', + ':man_gesturing_ok_tone5:': '🙆🏿‍♂️', + ':man_gesturing_ok_dark_skin_tone:': '🙆🏿‍♂️', + ':woman_gesturing_ok:': '🙆‍♀️', + ':woman_gesturing_ok_tone1:': '🙆🏻‍♀️', + ':woman_gesturing_ok_light_skin_tone:': '🙆🏻‍♀️', + ':woman_gesturing_ok_tone2:': '🙆🏼‍♀️', + ':woman_gesturing_ok_medium_light_skin_tone:': '🙆🏼‍♀️', + ':woman_gesturing_ok_tone3:': '🙆🏽‍♀️', + ':woman_gesturing_ok_medium_skin_tone:': '🙆🏽‍♀️', + ':woman_gesturing_ok_tone4:': '🙆🏾‍♀️', + ':woman_gesturing_ok_medium_dark_skin_tone:': '🙆🏾‍♀️', + ':woman_gesturing_ok_tone5:': '🙆🏿‍♀️', + ':woman_gesturing_ok_dark_skin_tone:': '🙆🏿‍♀️', + ':person_tipping_hand:': '💁', + ':information_desk_person:': '💁', + ':person_tipping_hand_tone1:': '💁🏻', + ':information_desk_person_tone1:': '💁🏻', + ':person_tipping_hand_tone2:': '💁🏼', + ':information_desk_person_tone2:': '💁🏼', + ':person_tipping_hand_tone3:': '💁🏽', + ':information_desk_person_tone3:': '💁🏽', + ':person_tipping_hand_tone4:': '💁🏾', + ':information_desk_person_tone4:': '💁🏾', + ':person_tipping_hand_tone5:': '💁🏿', + ':information_desk_person_tone5:': '💁🏿', + ':man_tipping_hand:': '💁‍♂️', + ':man_tipping_hand_tone1:': '💁🏻‍♂️', + ':man_tipping_hand_light_skin_tone:': '💁🏻‍♂️', + ':man_tipping_hand_tone2:': '💁🏼‍♂️', + ':man_tipping_hand_medium_light_skin_tone:': '💁🏼‍♂️', + ':man_tipping_hand_tone3:': '💁🏽‍♂️', + ':man_tipping_hand_medium_skin_tone:': '💁🏽‍♂️', + ':man_tipping_hand_tone4:': '💁🏾‍♂️', + ':man_tipping_hand_medium_dark_skin_tone:': '💁🏾‍♂️', + ':man_tipping_hand_tone5:': '💁🏿‍♂️', + ':man_tipping_hand_dark_skin_tone:': '💁🏿‍♂️', + ':woman_tipping_hand:': '💁‍♀️', + ':woman_tipping_hand_tone1:': '💁🏻‍♀️', + ':woman_tipping_hand_light_skin_tone:': '💁🏻‍♀️', + ':woman_tipping_hand_tone2:': '💁🏼‍♀️', + ':woman_tipping_hand_medium_light_skin_tone:': '💁🏼‍♀️', + ':woman_tipping_hand_tone3:': '💁🏽‍♀️', + ':woman_tipping_hand_medium_skin_tone:': '💁🏽‍♀️', + ':woman_tipping_hand_tone4:': '💁🏾‍♀️', + ':woman_tipping_hand_medium_dark_skin_tone:': '💁🏾‍♀️', + ':woman_tipping_hand_tone5:': '💁🏿‍♀️', + ':woman_tipping_hand_dark_skin_tone:': '💁🏿‍♀️', + ':person_raising_hand:': '🙋', + ':raising_hand:': '🙋', + ':person_raising_hand_tone1:': '🙋🏻', + ':raising_hand_tone1:': '🙋🏻', + ':person_raising_hand_tone2:': '🙋🏼', + ':raising_hand_tone2:': '🙋🏼', + ':person_raising_hand_tone3:': '🙋🏽', + ':raising_hand_tone3:': '🙋🏽', + ':person_raising_hand_tone4:': '🙋🏾', + ':raising_hand_tone4:': '🙋🏾', + ':person_raising_hand_tone5:': '🙋🏿', + ':raising_hand_tone5:': '🙋🏿', + ':man_raising_hand:': '🙋‍♂️', + ':man_raising_hand_tone1:': '🙋🏻‍♂️', + ':man_raising_hand_light_skin_tone:': '🙋🏻‍♂️', + ':man_raising_hand_tone2:': '🙋🏼‍♂️', + ':man_raising_hand_medium_light_skin_tone:': '🙋🏼‍♂️', + ':man_raising_hand_tone3:': '🙋🏽‍♂️', + ':man_raising_hand_medium_skin_tone:': '🙋🏽‍♂️', + ':man_raising_hand_tone4:': '🙋🏾‍♂️', + ':man_raising_hand_medium_dark_skin_tone:': '🙋🏾‍♂️', + ':man_raising_hand_tone5:': '🙋🏿‍♂️', + ':man_raising_hand_dark_skin_tone:': '🙋🏿‍♂️', + ':woman_raising_hand:': '🙋‍♀️', + ':woman_raising_hand_tone1:': '🙋🏻‍♀️', + ':woman_raising_hand_light_skin_tone:': '🙋🏻‍♀️', + ':woman_raising_hand_tone2:': '🙋🏼‍♀️', + ':woman_raising_hand_medium_light_skin_tone:': '🙋🏼‍♀️', + ':woman_raising_hand_tone3:': '🙋🏽‍♀️', + ':woman_raising_hand_medium_skin_tone:': '🙋🏽‍♀️', + ':woman_raising_hand_tone4:': '🙋🏾‍♀️', + ':woman_raising_hand_medium_dark_skin_tone:': '🙋🏾‍♀️', + ':woman_raising_hand_tone5:': '🙋🏿‍♀️', + ':woman_raising_hand_dark_skin_tone:': '🙋🏿‍♀️', + ':deaf_person:': '🧏', + ':deaf_person_tone1:': '🧏🏻', + ':deaf_person_light_skin_tone:': '🧏🏻', + ':deaf_person_tone2:': '🧏🏼', + ':deaf_person_medium_light_skin_tone:': '🧏🏼', + ':deaf_person_tone3:': '🧏🏽', + ':deaf_person_medium_skin_tone:': '🧏🏽', + ':deaf_person_tone4:': '🧏🏾', + ':deaf_person_medium_dark_skin_tone:': '🧏🏾', + ':deaf_person_tone5:': '🧏🏿', + ':deaf_person_dark_skin_tone:': '🧏🏿', + ':deaf_man:': '🧏‍♂️', + ':deaf_man_tone1:': '🧏🏻‍♂️', + ':deaf_man_light_skin_tone:': '🧏🏻‍♂️', + ':deaf_man_tone2:': '🧏🏼‍♂️', + ':deaf_man_medium_light_skin_tone:': '🧏🏼‍♂️', + ':deaf_man_tone3:': '🧏🏽‍♂️', + ':deaf_man_medium_skin_tone:': '🧏🏽‍♂️', + ':deaf_man_tone4:': '🧏🏾‍♂️', + ':deaf_man_medium_dark_skin_tone:': '🧏🏾‍♂️', + ':deaf_man_tone5:': '🧏🏿‍♂️', + ':deaf_man_dark_skin_tone:': '🧏🏿‍♂️', + ':deaf_woman:': '🧏‍♀️', + ':deaf_woman_tone1:': '🧏🏻‍♀️', + ':deaf_woman_light_skin_tone:': '🧏🏻‍♀️', + ':deaf_woman_tone2:': '🧏🏼‍♀️', + ':deaf_woman_medium_light_skin_tone:': '🧏🏼‍♀️', + ':deaf_woman_tone3:': '🧏🏽‍♀️', + ':deaf_woman_medium_skin_tone:': '🧏🏽‍♀️', + ':deaf_woman_tone4:': '🧏🏾‍♀️', + ':deaf_woman_medium_dark_skin_tone:': '🧏🏾‍♀️', + ':deaf_woman_tone5:': '🧏🏿‍♀️', + ':deaf_woman_dark_skin_tone:': '🧏🏿‍♀️', + ':person_bowing:': '🙇', + ':bow:': '🙇', + ':person_bowing_tone1:': '🙇🏻', + ':bow_tone1:': '🙇🏻', + ':person_bowing_tone2:': '🙇🏼', + ':bow_tone2:': '🙇🏼', + ':person_bowing_tone3:': '🙇🏽', + ':bow_tone3:': '🙇🏽', + ':person_bowing_tone4:': '🙇🏾', + ':bow_tone4:': '🙇🏾', + ':person_bowing_tone5:': '🙇🏿', + ':bow_tone5:': '🙇🏿', + ':man_bowing:': '🙇‍♂️', + ':man_bowing_tone1:': '🙇🏻‍♂️', + ':man_bowing_light_skin_tone:': '🙇🏻‍♂️', + ':man_bowing_tone2:': '🙇🏼‍♂️', + ':man_bowing_medium_light_skin_tone:': '🙇🏼‍♂️', + ':man_bowing_tone3:': '🙇🏽‍♂️', + ':man_bowing_medium_skin_tone:': '🙇🏽‍♂️', + ':man_bowing_tone4:': '🙇🏾‍♂️', + ':man_bowing_medium_dark_skin_tone:': '🙇🏾‍♂️', + ':man_bowing_tone5:': '🙇🏿‍♂️', + ':man_bowing_dark_skin_tone:': '🙇🏿‍♂️', + ':woman_bowing:': '🙇‍♀️', + ':woman_bowing_tone1:': '🙇🏻‍♀️', + ':woman_bowing_light_skin_tone:': '🙇🏻‍♀️', + ':woman_bowing_tone2:': '🙇🏼‍♀️', + ':woman_bowing_medium_light_skin_tone:': '🙇🏼‍♀️', + ':woman_bowing_tone3:': '🙇🏽‍♀️', + ':woman_bowing_medium_skin_tone:': '🙇🏽‍♀️', + ':woman_bowing_tone4:': '🙇🏾‍♀️', + ':woman_bowing_medium_dark_skin_tone:': '🙇🏾‍♀️', + ':woman_bowing_tone5:': '🙇🏿‍♀️', + ':woman_bowing_dark_skin_tone:': '🙇🏿‍♀️', + ':person_facepalming:': '🤦', + ':face_palm:': '🤦', + ':facepalm:': '🤦', + ':person_facepalming_tone1:': '🤦🏻', + ':face_palm_tone1:': '🤦🏻', + ':facepalm_tone1:': '🤦🏻', + ':person_facepalming_tone2:': '🤦🏼', + ':face_palm_tone2:': '🤦🏼', + ':facepalm_tone2:': '🤦🏼', + ':person_facepalming_tone3:': '🤦🏽', + ':face_palm_tone3:': '🤦🏽', + ':facepalm_tone3:': '🤦🏽', + ':person_facepalming_tone4:': '🤦🏾', + ':face_palm_tone4:': '🤦🏾', + ':facepalm_tone4:': '🤦🏾', + ':person_facepalming_tone5:': '🤦🏿', + ':face_palm_tone5:': '🤦🏿', + ':facepalm_tone5:': '🤦🏿', + ':man_facepalming:': '🤦‍♂️', + ':man_facepalming_tone1:': '🤦🏻‍♂️', + ':man_facepalming_light_skin_tone:': '🤦🏻‍♂️', + ':man_facepalming_tone2:': '🤦🏼‍♂️', + ':man_facepalming_medium_light_skin_tone:': '🤦🏼‍♂️', + ':man_facepalming_tone3:': '🤦🏽‍♂️', + ':man_facepalming_medium_skin_tone:': '🤦🏽‍♂️', + ':man_facepalming_tone4:': '🤦🏾‍♂️', + ':man_facepalming_medium_dark_skin_tone:': '🤦🏾‍♂️', + ':man_facepalming_tone5:': '🤦🏿‍♂️', + ':man_facepalming_dark_skin_tone:': '🤦🏿‍♂️', + ':woman_facepalming:': '🤦‍♀️', + ':woman_facepalming_tone1:': '🤦🏻‍♀️', + ':woman_facepalming_light_skin_tone:': '🤦🏻‍♀️', + ':woman_facepalming_tone2:': '🤦🏼‍♀️', + ':woman_facepalming_medium_light_skin_tone:': '🤦🏼‍♀️', + ':woman_facepalming_tone3:': '🤦🏽‍♀️', + ':woman_facepalming_medium_skin_tone:': '🤦🏽‍♀️', + ':woman_facepalming_tone4:': '🤦🏾‍♀️', + ':woman_facepalming_medium_dark_skin_tone:': '🤦🏾‍♀️', + ':woman_facepalming_tone5:': '🤦🏿‍♀️', + ':woman_facepalming_dark_skin_tone:': '🤦🏿‍♀️', + ':person_shrugging:': '🤷', + ':shrug:': '🤷', + ':person_shrugging_tone1:': '🤷🏻', + ':shrug_tone1:': '🤷🏻', + ':person_shrugging_tone2:': '🤷🏼', + ':shrug_tone2:': '🤷🏼', + ':person_shrugging_tone3:': '🤷🏽', + ':shrug_tone3:': '🤷🏽', + ':person_shrugging_tone4:': '🤷🏾', + ':shrug_tone4:': '🤷🏾', + ':person_shrugging_tone5:': '🤷🏿', + ':shrug_tone5:': '🤷🏿', + ':man_shrugging:': '🤷‍♂️', + ':man_shrugging_tone1:': '🤷🏻‍♂️', + ':man_shrugging_light_skin_tone:': '🤷🏻‍♂️', + ':man_shrugging_tone2:': '🤷🏼‍♂️', + ':man_shrugging_medium_light_skin_tone:': '🤷🏼‍♂️', + ':man_shrugging_tone3:': '🤷🏽‍♂️', + ':man_shrugging_medium_skin_tone:': '🤷🏽‍♂️', + ':man_shrugging_tone4:': '🤷🏾‍♂️', + ':man_shrugging_medium_dark_skin_tone:': '🤷🏾‍♂️', + ':man_shrugging_tone5:': '🤷🏿‍♂️', + ':man_shrugging_dark_skin_tone:': '🤷🏿‍♂️', + ':woman_shrugging:': '🤷‍♀️', + ':woman_shrugging_tone1:': '🤷🏻‍♀️', + ':woman_shrugging_light_skin_tone:': '🤷🏻‍♀️', + ':woman_shrugging_tone2:': '🤷🏼‍♀️', + ':woman_shrugging_medium_light_skin_tone:': '🤷🏼‍♀️', + ':woman_shrugging_tone3:': '🤷🏽‍♀️', + ':woman_shrugging_medium_skin_tone:': '🤷🏽‍♀️', + ':woman_shrugging_tone4:': '🤷🏾‍♀️', + ':woman_shrugging_medium_dark_skin_tone:': '🤷🏾‍♀️', + ':woman_shrugging_tone5:': '🤷🏿‍♀️', + ':woman_shrugging_dark_skin_tone:': '🤷🏿‍♀️', + ':health_worker:': '🧑‍⚕️', + ':health_worker_tone1:': '🧑🏻‍⚕️', + ':health_worker_light_skin_tone:': '🧑🏻‍⚕️', + ':health_worker_tone2:': '🧑🏼‍⚕️', + ':health_worker_medium_light_skin_tone:': '🧑🏼‍⚕️', + ':health_worker_tone3:': '🧑🏽‍⚕️', + ':health_worker_medium_skin_tone:': '🧑🏽‍⚕️', + ':health_worker_tone4:': '🧑🏾‍⚕️', + ':health_worker_medium_dark_skin_tone:': '🧑🏾‍⚕️', + ':health_worker_tone5:': '🧑🏿‍⚕️', + ':health_worker_dark_skin_tone:': '🧑🏿‍⚕️', + ':man_health_worker:': '👨‍⚕️', + ':man_health_worker_tone1:': '👨🏻‍⚕️', + ':man_health_worker_light_skin_tone:': '👨🏻‍⚕️', + ':man_health_worker_tone2:': '👨🏼‍⚕️', + ':man_health_worker_medium_light_skin_tone:': '👨🏼‍⚕️', + ':man_health_worker_tone3:': '👨🏽‍⚕️', + ':man_health_worker_medium_skin_tone:': '👨🏽‍⚕️', + ':man_health_worker_tone4:': '👨🏾‍⚕️', + ':man_health_worker_medium_dark_skin_tone:': '👨🏾‍⚕️', + ':man_health_worker_tone5:': '👨🏿‍⚕️', + ':man_health_worker_dark_skin_tone:': '👨🏿‍⚕️', + ':woman_health_worker:': '👩‍⚕️', + ':woman_health_worker_tone1:': '👩🏻‍⚕️', + ':woman_health_worker_light_skin_tone:': '👩🏻‍⚕️', + ':woman_health_worker_tone2:': '👩🏼‍⚕️', + ':woman_health_worker_medium_light_skin_tone:': '👩🏼‍⚕️', + ':woman_health_worker_tone3:': '👩🏽‍⚕️', + ':woman_health_worker_medium_skin_tone:': '👩🏽‍⚕️', + ':woman_health_worker_tone4:': '👩🏾‍⚕️', + ':woman_health_worker_medium_dark_skin_tone:': '👩🏾‍⚕️', + ':woman_health_worker_tone5:': '👩🏿‍⚕️', + ':woman_health_worker_dark_skin_tone:': '👩🏿‍⚕️', + ':student:': '🧑‍🎓', + ':student_tone1:': '🧑🏻‍🎓', + ':student_light_skin_tone:': '🧑🏻‍🎓', + ':student_tone2:': '🧑🏼‍🎓', + ':student_medium_light_skin_tone:': '🧑🏼‍🎓', + ':student_tone3:': '🧑🏽‍🎓', + ':student_medium_skin_tone:': '🧑🏽‍🎓', + ':student_tone4:': '🧑🏾‍🎓', + ':student_medium_dark_skin_tone:': '🧑🏾‍🎓', + ':student_tone5:': '🧑🏿‍🎓', + ':student_dark_skin_tone:': '🧑🏿‍🎓', + ':man_student:': '👨‍🎓', + ':man_student_tone1:': '👨🏻‍🎓', + ':man_student_light_skin_tone:': '👨🏻‍🎓', + ':man_student_tone2:': '👨🏼‍🎓', + ':man_student_medium_light_skin_tone:': '👨🏼‍🎓', + ':man_student_tone3:': '👨🏽‍🎓', + ':man_student_medium_skin_tone:': '👨🏽‍🎓', + ':man_student_tone4:': '👨🏾‍🎓', + ':man_student_medium_dark_skin_tone:': '👨🏾‍🎓', + ':man_student_tone5:': '👨🏿‍🎓', + ':man_student_dark_skin_tone:': '👨🏿‍🎓', + ':woman_student:': '👩‍🎓', + ':woman_student_tone1:': '👩🏻‍🎓', + ':woman_student_light_skin_tone:': '👩🏻‍🎓', + ':woman_student_tone2:': '👩🏼‍🎓', + ':woman_student_medium_light_skin_tone:': '👩🏼‍🎓', + ':woman_student_tone3:': '👩🏽‍🎓', + ':woman_student_medium_skin_tone:': '👩🏽‍🎓', + ':woman_student_tone4:': '👩🏾‍🎓', + ':woman_student_medium_dark_skin_tone:': '👩🏾‍🎓', + ':woman_student_tone5:': '👩🏿‍🎓', + ':woman_student_dark_skin_tone:': '👩🏿‍🎓', + ':teacher:': '🧑‍🏫', + ':teacher_tone1:': '🧑🏻‍🏫', + ':teacher_light_skin_tone:': '🧑🏻‍🏫', + ':teacher_tone2:': '🧑🏼‍🏫', + ':teacher_medium_light_skin_tone:': '🧑🏼‍🏫', + ':teacher_tone3:': '🧑🏽‍🏫', + ':teacher_medium_skin_tone:': '🧑🏽‍🏫', + ':teacher_tone4:': '🧑🏾‍🏫', + ':teacher_medium_dark_skin_tone:': '🧑🏾‍🏫', + ':teacher_tone5:': '🧑🏿‍🏫', + ':teacher_dark_skin_tone:': '🧑🏿‍🏫', + ':man_teacher:': '👨‍🏫', + ':man_teacher_tone1:': '👨🏻‍🏫', + ':man_teacher_light_skin_tone:': '👨🏻‍🏫', + ':man_teacher_tone2:': '👨🏼‍🏫', + ':man_teacher_medium_light_skin_tone:': '👨🏼‍🏫', + ':man_teacher_tone3:': '👨🏽‍🏫', + ':man_teacher_medium_skin_tone:': '👨🏽‍🏫', + ':man_teacher_tone4:': '👨🏾‍🏫', + ':man_teacher_medium_dark_skin_tone:': '👨🏾‍🏫', + ':man_teacher_tone5:': '👨🏿‍🏫', + ':man_teacher_dark_skin_tone:': '👨🏿‍🏫', + ':woman_teacher:': '👩‍🏫', + ':woman_teacher_tone1:': '👩🏻‍🏫', + ':woman_teacher_light_skin_tone:': '👩🏻‍🏫', + ':woman_teacher_tone2:': '👩🏼‍🏫', + ':woman_teacher_medium_light_skin_tone:': '👩🏼‍🏫', + ':woman_teacher_tone3:': '👩🏽‍🏫', + ':woman_teacher_medium_skin_tone:': '👩🏽‍🏫', + ':woman_teacher_tone4:': '👩🏾‍🏫', + ':woman_teacher_medium_dark_skin_tone:': '👩🏾‍🏫', + ':woman_teacher_tone5:': '👩🏿‍🏫', + ':woman_teacher_dark_skin_tone:': '👩🏿‍🏫', + ':judge:': '🧑‍⚖️', + ':judge_tone1:': '🧑🏻‍⚖️', + ':judge_light_skin_tone:': '🧑🏻‍⚖️', + ':judge_tone2:': '🧑🏼‍⚖️', + ':judge_medium_light_skin_tone:': '🧑🏼‍⚖️', + ':judge_tone3:': '🧑🏽‍⚖️', + ':judge_medium_skin_tone:': '🧑🏽‍⚖️', + ':judge_tone4:': '🧑🏾‍⚖️', + ':judge_medium_dark_skin_tone:': '🧑🏾‍⚖️', + ':judge_tone5:': '🧑🏿‍⚖️', + ':judge_dark_skin_tone:': '🧑🏿‍⚖️', + ':man_judge:': '👨‍⚖️', + ':man_judge_tone1:': '👨🏻‍⚖️', + ':man_judge_light_skin_tone:': '👨🏻‍⚖️', + ':man_judge_tone2:': '👨🏼‍⚖️', + ':man_judge_medium_light_skin_tone:': '👨🏼‍⚖️', + ':man_judge_tone3:': '👨🏽‍⚖️', + ':man_judge_medium_skin_tone:': '👨🏽‍⚖️', + ':man_judge_tone4:': '👨🏾‍⚖️', + ':man_judge_medium_dark_skin_tone:': '👨🏾‍⚖️', + ':man_judge_tone5:': '👨🏿‍⚖️', + ':man_judge_dark_skin_tone:': '👨🏿‍⚖️', + ':woman_judge:': '👩‍⚖️', + ':woman_judge_tone1:': '👩🏻‍⚖️', + ':woman_judge_light_skin_tone:': '👩🏻‍⚖️', + ':woman_judge_tone2:': '👩🏼‍⚖️', + ':woman_judge_medium_light_skin_tone:': '👩🏼‍⚖️', + ':woman_judge_tone3:': '👩🏽‍⚖️', + ':woman_judge_medium_skin_tone:': '👩🏽‍⚖️', + ':woman_judge_tone4:': '👩🏾‍⚖️', + ':woman_judge_medium_dark_skin_tone:': '👩🏾‍⚖️', + ':woman_judge_tone5:': '👩🏿‍⚖️', + ':woman_judge_dark_skin_tone:': '👩🏿‍⚖️', + ':farmer:': '🧑‍🌾', + ':farmer_tone1:': '🧑🏻‍🌾', + ':farmer_light_skin_tone:': '🧑🏻‍🌾', + ':farmer_tone2:': '🧑🏼‍🌾', + ':farmer_medium_light_skin_tone:': '🧑🏼‍🌾', + ':farmer_tone3:': '🧑🏽‍🌾', + ':farmer_medium_skin_tone:': '🧑🏽‍🌾', + ':farmer_tone4:': '🧑🏾‍🌾', + ':farmer_medium_dark_skin_tone:': '🧑🏾‍🌾', + ':farmer_tone5:': '🧑🏿‍🌾', + ':farmer_dark_skin_tone:': '🧑🏿‍🌾', + ':man_farmer:': '👨‍🌾', + ':man_farmer_tone1:': '👨🏻‍🌾', + ':man_farmer_light_skin_tone:': '👨🏻‍🌾', + ':man_farmer_tone2:': '👨🏼‍🌾', + ':man_farmer_medium_light_skin_tone:': '👨🏼‍🌾', + ':man_farmer_tone3:': '👨🏽‍🌾', + ':man_farmer_medium_skin_tone:': '👨🏽‍🌾', + ':man_farmer_tone4:': '👨🏾‍🌾', + ':man_farmer_medium_dark_skin_tone:': '👨🏾‍🌾', + ':man_farmer_tone5:': '👨🏿‍🌾', + ':man_farmer_dark_skin_tone:': '👨🏿‍🌾', + ':woman_farmer:': '👩‍🌾', + ':woman_farmer_tone1:': '👩🏻‍🌾', + ':woman_farmer_light_skin_tone:': '👩🏻‍🌾', + ':woman_farmer_tone2:': '👩🏼‍🌾', + ':woman_farmer_medium_light_skin_tone:': '👩🏼‍🌾', + ':woman_farmer_tone3:': '👩🏽‍🌾', + ':woman_farmer_medium_skin_tone:': '👩🏽‍🌾', + ':woman_farmer_tone4:': '👩🏾‍🌾', + ':woman_farmer_medium_dark_skin_tone:': '👩🏾‍🌾', + ':woman_farmer_tone5:': '👩🏿‍🌾', + ':woman_farmer_dark_skin_tone:': '👩🏿‍🌾', + ':cook:': '🧑‍🍳', + ':cook_tone1:': '🧑🏻‍🍳', + ':cook_light_skin_tone:': '🧑🏻‍🍳', + ':cook_tone2:': '🧑🏼‍🍳', + ':cook_medium_light_skin_tone:': '🧑🏼‍🍳', + ':cook_tone3:': '🧑🏽‍🍳', + ':cook_medium_skin_tone:': '🧑🏽‍🍳', + ':cook_tone4:': '🧑🏾‍🍳', + ':cook_medium_dark_skin_tone:': '🧑🏾‍🍳', + ':cook_tone5:': '🧑🏿‍🍳', + ':cook_dark_skin_tone:': '🧑🏿‍🍳', + ':man_cook:': '👨‍🍳', + ':man_cook_tone1:': '👨🏻‍🍳', + ':man_cook_light_skin_tone:': '👨🏻‍🍳', + ':man_cook_tone2:': '👨🏼‍🍳', + ':man_cook_medium_light_skin_tone:': '👨🏼‍🍳', + ':man_cook_tone3:': '👨🏽‍🍳', + ':man_cook_medium_skin_tone:': '👨🏽‍🍳', + ':man_cook_tone4:': '👨🏾‍🍳', + ':man_cook_medium_dark_skin_tone:': '👨🏾‍🍳', + ':man_cook_tone5:': '👨🏿‍🍳', + ':man_cook_dark_skin_tone:': '👨🏿‍🍳', + ':woman_cook:': '👩‍🍳', + ':woman_cook_tone1:': '👩🏻‍🍳', + ':woman_cook_light_skin_tone:': '👩🏻‍🍳', + ':woman_cook_tone2:': '👩🏼‍🍳', + ':woman_cook_medium_light_skin_tone:': '👩🏼‍🍳', + ':woman_cook_tone3:': '👩🏽‍🍳', + ':woman_cook_medium_skin_tone:': '👩🏽‍🍳', + ':woman_cook_tone4:': '👩🏾‍🍳', + ':woman_cook_medium_dark_skin_tone:': '👩🏾‍🍳', + ':woman_cook_tone5:': '👩🏿‍🍳', + ':woman_cook_dark_skin_tone:': '👩🏿‍🍳', + ':mechanic:': '🧑‍🔧', + ':mechanic_tone1:': '🧑🏻‍🔧', + ':mechanic_light_skin_tone:': '🧑🏻‍🔧', + ':mechanic_tone2:': '🧑🏼‍🔧', + ':mechanic_medium_light_skin_tone:': '🧑🏼‍🔧', + ':mechanic_tone3:': '🧑🏽‍🔧', + ':mechanic_medium_skin_tone:': '🧑🏽‍🔧', + ':mechanic_tone4:': '🧑🏾‍🔧', + ':mechanic_medium_dark_skin_tone:': '🧑🏾‍🔧', + ':mechanic_tone5:': '🧑🏿‍🔧', + ':mechanic_dark_skin_tone:': '🧑🏿‍🔧', + ':man_mechanic:': '👨‍🔧', + ':man_mechanic_tone1:': '👨🏻‍🔧', + ':man_mechanic_light_skin_tone:': '👨🏻‍🔧', + ':man_mechanic_tone2:': '👨🏼‍🔧', + ':man_mechanic_medium_light_skin_tone:': '👨🏼‍🔧', + ':man_mechanic_tone3:': '👨🏽‍🔧', + ':man_mechanic_medium_skin_tone:': '👨🏽‍🔧', + ':man_mechanic_tone4:': '👨🏾‍🔧', + ':man_mechanic_medium_dark_skin_tone:': '👨🏾‍🔧', + ':man_mechanic_tone5:': '👨🏿‍🔧', + ':man_mechanic_dark_skin_tone:': '👨🏿‍🔧', + ':woman_mechanic:': '👩‍🔧', + ':woman_mechanic_tone1:': '👩🏻‍🔧', + ':woman_mechanic_light_skin_tone:': '👩🏻‍🔧', + ':woman_mechanic_tone2:': '👩🏼‍🔧', + ':woman_mechanic_medium_light_skin_tone:': '👩🏼‍🔧', + ':woman_mechanic_tone3:': '👩🏽‍🔧', + ':woman_mechanic_medium_skin_tone:': '👩🏽‍🔧', + ':woman_mechanic_tone4:': '👩🏾‍🔧', + ':woman_mechanic_medium_dark_skin_tone:': '👩🏾‍🔧', + ':woman_mechanic_tone5:': '👩🏿‍🔧', + ':woman_mechanic_dark_skin_tone:': '👩🏿‍🔧', + ':factory_worker:': '🧑‍🏭', + ':factory_worker_tone1:': '🧑🏻‍🏭', + ':factory_worker_light_skin_tone:': '🧑🏻‍🏭', + ':factory_worker_tone2:': '🧑🏼‍🏭', + ':factory_worker_medium_light_skin_tone:': '🧑🏼‍🏭', + ':factory_worker_tone3:': '🧑🏽‍🏭', + ':factory_worker_medium_skin_tone:': '🧑🏽‍🏭', + ':factory_worker_tone4:': '🧑🏾‍🏭', + ':factory_worker_medium_dark_skin_tone:': '🧑🏾‍🏭', + ':factory_worker_tone5:': '🧑🏿‍🏭', + ':factory_worker_dark_skin_tone:': '🧑🏿‍🏭', + ':man_factory_worker:': '👨‍🏭', + ':man_factory_worker_tone1:': '👨🏻‍🏭', + ':man_factory_worker_light_skin_tone:': '👨🏻‍🏭', + ':man_factory_worker_tone2:': '👨🏼‍🏭', + ':man_factory_worker_medium_light_skin_tone:': '👨🏼‍🏭', + ':man_factory_worker_tone3:': '👨🏽‍🏭', + ':man_factory_worker_medium_skin_tone:': '👨🏽‍🏭', + ':man_factory_worker_tone4:': '👨🏾‍🏭', + ':man_factory_worker_medium_dark_skin_tone:': '👨🏾‍🏭', + ':man_factory_worker_tone5:': '👨🏿‍🏭', + ':man_factory_worker_dark_skin_tone:': '👨🏿‍🏭', + ':woman_factory_worker:': '👩‍🏭', + ':woman_factory_worker_tone1:': '👩🏻‍🏭', + ':woman_factory_worker_light_skin_tone:': '👩🏻‍🏭', + ':woman_factory_worker_tone2:': '👩🏼‍🏭', + ':woman_factory_worker_medium_light_skin_tone:': '👩🏼‍🏭', + ':woman_factory_worker_tone3:': '👩🏽‍🏭', + ':woman_factory_worker_medium_skin_tone:': '👩🏽‍🏭', + ':woman_factory_worker_tone4:': '👩🏾‍🏭', + ':woman_factory_worker_medium_dark_skin_tone:': '👩🏾‍🏭', + ':woman_factory_worker_tone5:': '👩🏿‍🏭', + ':woman_factory_worker_dark_skin_tone:': '👩🏿‍🏭', + ':office_worker:': '🧑‍💼', + ':office_worker_tone1:': '🧑🏻‍💼', + ':office_worker_light_skin_tone:': '🧑🏻‍💼', + ':office_worker_tone2:': '🧑🏼‍💼', + ':office_worker_medium_light_skin_tone:': '🧑🏼‍💼', + ':office_worker_tone3:': '🧑🏽‍💼', + ':office_worker_medium_skin_tone:': '🧑🏽‍💼', + ':office_worker_tone4:': '🧑🏾‍💼', + ':office_worker_medium_dark_skin_tone:': '🧑🏾‍💼', + ':office_worker_tone5:': '🧑🏿‍💼', + ':office_worker_dark_skin_tone:': '🧑🏿‍💼', + ':man_office_worker:': '👨‍💼', + ':man_office_worker_tone1:': '👨🏻‍💼', + ':man_office_worker_light_skin_tone:': '👨🏻‍💼', + ':man_office_worker_tone2:': '👨🏼‍💼', + ':man_office_worker_medium_light_skin_tone:': '👨🏼‍💼', + ':man_office_worker_tone3:': '👨🏽‍💼', + ':man_office_worker_medium_skin_tone:': '👨🏽‍💼', + ':man_office_worker_tone4:': '👨🏾‍💼', + ':man_office_worker_medium_dark_skin_tone:': '👨🏾‍💼', + ':man_office_worker_tone5:': '👨🏿‍💼', + ':man_office_worker_dark_skin_tone:': '👨🏿‍💼', + ':woman_office_worker:': '👩‍💼', + ':woman_office_worker_tone1:': '👩🏻‍💼', + ':woman_office_worker_light_skin_tone:': '👩🏻‍💼', + ':woman_office_worker_tone2:': '👩🏼‍💼', + ':woman_office_worker_medium_light_skin_tone:': '👩🏼‍💼', + ':woman_office_worker_tone3:': '👩🏽‍💼', + ':woman_office_worker_medium_skin_tone:': '👩🏽‍💼', + ':woman_office_worker_tone4:': '👩🏾‍💼', + ':woman_office_worker_medium_dark_skin_tone:': '👩🏾‍💼', + ':woman_office_worker_tone5:': '👩🏿‍💼', + ':woman_office_worker_dark_skin_tone:': '👩🏿‍💼', + ':scientist:': '🧑‍🔬', + ':scientist_tone1:': '🧑🏻‍🔬', + ':scientist_light_skin_tone:': '🧑🏻‍🔬', + ':scientist_tone2:': '🧑🏼‍🔬', + ':scientist_medium_light_skin_tone:': '🧑🏼‍🔬', + ':scientist_tone3:': '🧑🏽‍🔬', + ':scientist_medium_skin_tone:': '🧑🏽‍🔬', + ':scientist_tone4:': '🧑🏾‍🔬', + ':scientist_medium_dark_skin_tone:': '🧑🏾‍🔬', + ':scientist_tone5:': '🧑🏿‍🔬', + ':scientist_dark_skin_tone:': '🧑🏿‍🔬', + ':man_scientist:': '👨‍🔬', + ':man_scientist_tone1:': '👨🏻‍🔬', + ':man_scientist_light_skin_tone:': '👨🏻‍🔬', + ':man_scientist_tone2:': '👨🏼‍🔬', + ':man_scientist_medium_light_skin_tone:': '👨🏼‍🔬', + ':man_scientist_tone3:': '👨🏽‍🔬', + ':man_scientist_medium_skin_tone:': '👨🏽‍🔬', + ':man_scientist_tone4:': '👨🏾‍🔬', + ':man_scientist_medium_dark_skin_tone:': '👨🏾‍🔬', + ':man_scientist_tone5:': '👨🏿‍🔬', + ':man_scientist_dark_skin_tone:': '👨🏿‍🔬', + ':woman_scientist:': '👩‍🔬', + ':woman_scientist_tone1:': '👩🏻‍🔬', + ':woman_scientist_light_skin_tone:': '👩🏻‍🔬', + ':woman_scientist_tone2:': '👩🏼‍🔬', + ':woman_scientist_medium_light_skin_tone:': '👩🏼‍🔬', + ':woman_scientist_tone3:': '👩🏽‍🔬', + ':woman_scientist_medium_skin_tone:': '👩🏽‍🔬', + ':woman_scientist_tone4:': '👩🏾‍🔬', + ':woman_scientist_medium_dark_skin_tone:': '👩🏾‍🔬', + ':woman_scientist_tone5:': '👩🏿‍🔬', + ':woman_scientist_dark_skin_tone:': '👩🏿‍🔬', + ':technologist:': '🧑‍💻', + ':technologist_tone1:': '🧑🏻‍💻', + ':technologist_light_skin_tone:': '🧑🏻‍💻', + ':technologist_tone2:': '🧑🏼‍💻', + ':technologist_medium_light_skin_tone:': '🧑🏼‍💻', + ':technologist_tone3:': '🧑🏽‍💻', + ':technologist_medium_skin_tone:': '🧑🏽‍💻', + ':technologist_tone4:': '🧑🏾‍💻', + ':technologist_medium_dark_skin_tone:': '🧑🏾‍💻', + ':technologist_tone5:': '🧑🏿‍💻', + ':technologist_dark_skin_tone:': '🧑🏿‍💻', + ':man_technologist:': '👨‍💻', + ':man_technologist_tone1:': '👨🏻‍💻', + ':man_technologist_light_skin_tone:': '👨🏻‍💻', + ':man_technologist_tone2:': '👨🏼‍💻', + ':man_technologist_medium_light_skin_tone:': '👨🏼‍💻', + ':man_technologist_tone3:': '👨🏽‍💻', + ':man_technologist_medium_skin_tone:': '👨🏽‍💻', + ':man_technologist_tone4:': '👨🏾‍💻', + ':man_technologist_medium_dark_skin_tone:': '👨🏾‍💻', + ':man_technologist_tone5:': '👨🏿‍💻', + ':man_technologist_dark_skin_tone:': '👨🏿‍💻', + ':woman_technologist:': '👩‍💻', + ':woman_technologist_tone1:': '👩🏻‍💻', + ':woman_technologist_light_skin_tone:': '👩🏻‍💻', + ':woman_technologist_tone2:': '👩🏼‍💻', + ':woman_technologist_medium_light_skin_tone:': '👩🏼‍💻', + ':woman_technologist_tone3:': '👩🏽‍💻', + ':woman_technologist_medium_skin_tone:': '👩🏽‍💻', + ':woman_technologist_tone4:': '👩🏾‍💻', + ':woman_technologist_medium_dark_skin_tone:': '👩🏾‍💻', + ':woman_technologist_tone5:': '👩🏿‍💻', + ':woman_technologist_dark_skin_tone:': '👩🏿‍💻', + ':singer:': '🧑‍🎤', + ':singer_tone1:': '🧑🏻‍🎤', + ':singer_light_skin_tone:': '🧑🏻‍🎤', + ':singer_tone2:': '🧑🏼‍🎤', + ':singer_medium_light_skin_tone:': '🧑🏼‍🎤', + ':singer_tone3:': '🧑🏽‍🎤', + ':singer_medium_skin_tone:': '🧑🏽‍🎤', + ':singer_tone4:': '🧑🏾‍🎤', + ':singer_medium_dark_skin_tone:': '🧑🏾‍🎤', + ':singer_tone5:': '🧑🏿‍🎤', + ':singer_dark_skin_tone:': '🧑🏿‍🎤', + ':man_singer:': '👨‍🎤', + ':man_singer_tone1:': '👨🏻‍🎤', + ':man_singer_light_skin_tone:': '👨🏻‍🎤', + ':man_singer_tone2:': '👨🏼‍🎤', + ':man_singer_medium_light_skin_tone:': '👨🏼‍🎤', + ':man_singer_tone3:': '👨🏽‍🎤', + ':man_singer_medium_skin_tone:': '👨🏽‍🎤', + ':man_singer_tone4:': '👨🏾‍🎤', + ':man_singer_medium_dark_skin_tone:': '👨🏾‍🎤', + ':man_singer_tone5:': '👨🏿‍🎤', + ':man_singer_dark_skin_tone:': '👨🏿‍🎤', + ':woman_singer:': '👩‍🎤', + ':woman_singer_tone1:': '👩🏻‍🎤', + ':woman_singer_light_skin_tone:': '👩🏻‍🎤', + ':woman_singer_tone2:': '👩🏼‍🎤', + ':woman_singer_medium_light_skin_tone:': '👩🏼‍🎤', + ':woman_singer_tone3:': '👩🏽‍🎤', + ':woman_singer_medium_skin_tone:': '👩🏽‍🎤', + ':woman_singer_tone4:': '👩🏾‍🎤', + ':woman_singer_medium_dark_skin_tone:': '👩🏾‍🎤', + ':woman_singer_tone5:': '👩🏿‍🎤', + ':woman_singer_dark_skin_tone:': '👩🏿‍🎤', + ':artist:': '🧑‍🎨', + ':artist_tone1:': '🧑🏻‍🎨', + ':artist_light_skin_tone:': '🧑🏻‍🎨', + ':artist_tone2:': '🧑🏼‍🎨', + ':artist_medium_light_skin_tone:': '🧑🏼‍🎨', + ':artist_tone3:': '🧑🏽‍🎨', + ':artist_medium_skin_tone:': '🧑🏽‍🎨', + ':artist_tone4:': '🧑🏾‍🎨', + ':artist_medium_dark_skin_tone:': '🧑🏾‍🎨', + ':artist_tone5:': '🧑🏿‍🎨', + ':artist_dark_skin_tone:': '🧑🏿‍🎨', + ':man_artist:': '👨‍🎨', + ':man_artist_tone1:': '👨🏻‍🎨', + ':man_artist_light_skin_tone:': '👨🏻‍🎨', + ':man_artist_tone2:': '👨🏼‍🎨', + ':man_artist_medium_light_skin_tone:': '👨🏼‍🎨', + ':man_artist_tone3:': '👨🏽‍🎨', + ':man_artist_medium_skin_tone:': '👨🏽‍🎨', + ':man_artist_tone4:': '👨🏾‍🎨', + ':man_artist_medium_dark_skin_tone:': '👨🏾‍🎨', + ':man_artist_tone5:': '👨🏿‍🎨', + ':man_artist_dark_skin_tone:': '👨🏿‍🎨', + ':woman_artist:': '👩‍🎨', + ':woman_artist_tone1:': '👩🏻‍🎨', + ':woman_artist_light_skin_tone:': '👩🏻‍🎨', + ':woman_artist_tone2:': '👩🏼‍🎨', + ':woman_artist_medium_light_skin_tone:': '👩🏼‍🎨', + ':woman_artist_tone3:': '👩🏽‍🎨', + ':woman_artist_medium_skin_tone:': '👩🏽‍🎨', + ':woman_artist_tone4:': '👩🏾‍🎨', + ':woman_artist_medium_dark_skin_tone:': '👩🏾‍🎨', + ':woman_artist_tone5:': '👩🏿‍🎨', + ':woman_artist_dark_skin_tone:': '👩🏿‍🎨', + ':pilot:': '🧑‍✈️', + ':pilot_tone1:': '🧑🏻‍✈️', + ':pilot_light_skin_tone:': '🧑🏻‍✈️', + ':pilot_tone2:': '🧑🏼‍✈️', + ':pilot_medium_light_skin_tone:': '🧑🏼‍✈️', + ':pilot_tone3:': '🧑🏽‍✈️', + ':pilot_medium_skin_tone:': '🧑🏽‍✈️', + ':pilot_tone4:': '🧑🏾‍✈️', + ':pilot_medium_dark_skin_tone:': '🧑🏾‍✈️', + ':pilot_tone5:': '🧑🏿‍✈️', + ':pilot_dark_skin_tone:': '🧑🏿‍✈️', + ':man_pilot:': '👨‍✈️', + ':man_pilot_tone1:': '👨🏻‍✈️', + ':man_pilot_light_skin_tone:': '👨🏻‍✈️', + ':man_pilot_tone2:': '👨🏼‍✈️', + ':man_pilot_medium_light_skin_tone:': '👨🏼‍✈️', + ':man_pilot_tone3:': '👨🏽‍✈️', + ':man_pilot_medium_skin_tone:': '👨🏽‍✈️', + ':man_pilot_tone4:': '👨🏾‍✈️', + ':man_pilot_medium_dark_skin_tone:': '👨🏾‍✈️', + ':man_pilot_tone5:': '👨🏿‍✈️', + ':man_pilot_dark_skin_tone:': '👨🏿‍✈️', + ':woman_pilot:': '👩‍✈️', + ':woman_pilot_tone1:': '👩🏻‍✈️', + ':woman_pilot_light_skin_tone:': '👩🏻‍✈️', + ':woman_pilot_tone2:': '👩🏼‍✈️', + ':woman_pilot_medium_light_skin_tone:': '👩🏼‍✈️', + ':woman_pilot_tone3:': '👩🏽‍✈️', + ':woman_pilot_medium_skin_tone:': '👩🏽‍✈️', + ':woman_pilot_tone4:': '👩🏾‍✈️', + ':woman_pilot_medium_dark_skin_tone:': '👩🏾‍✈️', + ':woman_pilot_tone5:': '👩🏿‍✈️', + ':woman_pilot_dark_skin_tone:': '👩🏿‍✈️', + ':astronaut:': '🧑‍🚀', + ':astronaut_tone1:': '🧑🏻‍🚀', + ':astronaut_light_skin_tone:': '🧑🏻‍🚀', + ':astronaut_tone2:': '🧑🏼‍🚀', + ':astronaut_medium_light_skin_tone:': '🧑🏼‍🚀', + ':astronaut_tone3:': '🧑🏽‍🚀', + ':astronaut_medium_skin_tone:': '🧑🏽‍🚀', + ':astronaut_tone4:': '🧑🏾‍🚀', + ':astronaut_medium_dark_skin_tone:': '🧑🏾‍🚀', + ':astronaut_tone5:': '🧑🏿‍🚀', + ':astronaut_dark_skin_tone:': '🧑🏿‍🚀', + ':man_astronaut:': '👨‍🚀', + ':man_astronaut_tone1:': '👨🏻‍🚀', + ':man_astronaut_light_skin_tone:': '👨🏻‍🚀', + ':man_astronaut_tone2:': '👨🏼‍🚀', + ':man_astronaut_medium_light_skin_tone:': '👨🏼‍🚀', + ':man_astronaut_tone3:': '👨🏽‍🚀', + ':man_astronaut_medium_skin_tone:': '👨🏽‍🚀', + ':man_astronaut_tone4:': '👨🏾‍🚀', + ':man_astronaut_medium_dark_skin_tone:': '👨🏾‍🚀', + ':man_astronaut_tone5:': '👨🏿‍🚀', + ':man_astronaut_dark_skin_tone:': '👨🏿‍🚀', + ':woman_astronaut:': '👩‍🚀', + ':woman_astronaut_tone1:': '👩🏻‍🚀', + ':woman_astronaut_light_skin_tone:': '👩🏻‍🚀', + ':woman_astronaut_tone2:': '👩🏼‍🚀', + ':woman_astronaut_medium_light_skin_tone:': '👩🏼‍🚀', + ':woman_astronaut_tone3:': '👩🏽‍🚀', + ':woman_astronaut_medium_skin_tone:': '👩🏽‍🚀', + ':woman_astronaut_tone4:': '👩🏾‍🚀', + ':woman_astronaut_medium_dark_skin_tone:': '👩🏾‍🚀', + ':woman_astronaut_tone5:': '👩🏿‍🚀', + ':woman_astronaut_dark_skin_tone:': '👩🏿‍🚀', + ':firefighter:': '🧑‍🚒', + ':firefighter_tone1:': '🧑🏻‍🚒', + ':firefighter_light_skin_tone:': '🧑🏻‍🚒', + ':firefighter_tone2:': '🧑🏼‍🚒', + ':firefighter_medium_light_skin_tone:': '🧑🏼‍🚒', + ':firefighter_tone3:': '🧑🏽‍🚒', + ':firefighter_medium_skin_tone:': '🧑🏽‍🚒', + ':firefighter_tone4:': '🧑🏾‍🚒', + ':firefighter_medium_dark_skin_tone:': '🧑🏾‍🚒', + ':firefighter_tone5:': '🧑🏿‍🚒', + ':firefighter_dark_skin_tone:': '🧑🏿‍🚒', + ':man_firefighter:': '👨‍🚒', + ':man_firefighter_tone1:': '👨🏻‍🚒', + ':man_firefighter_light_skin_tone:': '👨🏻‍🚒', + ':man_firefighter_tone2:': '👨🏼‍🚒', + ':man_firefighter_medium_light_skin_tone:': '👨🏼‍🚒', + ':man_firefighter_tone3:': '👨🏽‍🚒', + ':man_firefighter_medium_skin_tone:': '👨🏽‍🚒', + ':man_firefighter_tone4:': '👨🏾‍🚒', + ':man_firefighter_medium_dark_skin_tone:': '👨🏾‍🚒', + ':man_firefighter_tone5:': '👨🏿‍🚒', + ':man_firefighter_dark_skin_tone:': '👨🏿‍🚒', + ':woman_firefighter:': '👩‍🚒', + ':woman_firefighter_tone1:': '👩🏻‍🚒', + ':woman_firefighter_light_skin_tone:': '👩🏻‍🚒', + ':woman_firefighter_tone2:': '👩🏼‍🚒', + ':woman_firefighter_medium_light_skin_tone:': '👩🏼‍🚒', + ':woman_firefighter_tone3:': '👩🏽‍🚒', + ':woman_firefighter_medium_skin_tone:': '👩🏽‍🚒', + ':woman_firefighter_tone4:': '👩🏾‍🚒', + ':woman_firefighter_medium_dark_skin_tone:': '👩🏾‍🚒', + ':woman_firefighter_tone5:': '👩🏿‍🚒', + ':woman_firefighter_dark_skin_tone:': '👩🏿‍🚒', + ':police_officer:': '👮', + ':cop:': '👮', + ':police_officer_tone1:': '👮🏻', + ':cop_tone1:': '👮🏻', + ':police_officer_tone2:': '👮🏼', + ':cop_tone2:': '👮🏼', + ':police_officer_tone3:': '👮🏽', + ':cop_tone3:': '👮🏽', + ':police_officer_tone4:': '👮🏾', + ':cop_tone4:': '👮🏾', + ':police_officer_tone5:': '👮🏿', + ':cop_tone5:': '👮🏿', + ':man_police_officer:': '👮‍♂️', + ':man_police_officer_tone1:': '👮🏻‍♂️', + ':man_police_officer_light_skin_tone:': '👮🏻‍♂️', + ':man_police_officer_tone2:': '👮🏼‍♂️', + ':man_police_officer_medium_light_skin_tone:': '👮🏼‍♂️', + ':man_police_officer_tone3:': '👮🏽‍♂️', + ':man_police_officer_medium_skin_tone:': '👮🏽‍♂️', + ':man_police_officer_tone4:': '👮🏾‍♂️', + ':man_police_officer_medium_dark_skin_tone:': '👮🏾‍♂️', + ':man_police_officer_tone5:': '👮🏿‍♂️', + ':man_police_officer_dark_skin_tone:': '👮🏿‍♂️', + ':woman_police_officer:': '👮‍♀️', + ':woman_police_officer_tone1:': '👮🏻‍♀️', + ':woman_police_officer_light_skin_tone:': '👮🏻‍♀️', + ':woman_police_officer_tone2:': '👮🏼‍♀️', + ':woman_police_officer_medium_light_skin_tone:': '👮🏼‍♀️', + ':woman_police_officer_tone3:': '👮🏽‍♀️', + ':woman_police_officer_medium_skin_tone:': '👮🏽‍♀️', + ':woman_police_officer_tone4:': '👮🏾‍♀️', + ':woman_police_officer_medium_dark_skin_tone:': '👮🏾‍♀️', + ':woman_police_officer_tone5:': '👮🏿‍♀️', + ':woman_police_officer_dark_skin_tone:': '👮🏿‍♀️', + ':detective:': '🕵️', + ':spy:': '🕵️', + ':sleuth_or_spy:': '🕵️', + ':detective_tone1:': '🕵🏻', + ':spy_tone1:': '🕵🏻', + ':sleuth_or_spy_tone1:': '🕵🏻', + ':detective_tone2:': '🕵🏼', + ':spy_tone2:': '🕵🏼', + ':sleuth_or_spy_tone2:': '🕵🏼', + ':detective_tone3:': '🕵🏽', + ':spy_tone3:': '🕵🏽', + ':sleuth_or_spy_tone3:': '🕵🏽', + ':detective_tone4:': '🕵🏾', + ':spy_tone4:': '🕵🏾', + ':sleuth_or_spy_tone4:': '🕵🏾', + ':detective_tone5:': '🕵🏿', + ':spy_tone5:': '🕵🏿', + ':sleuth_or_spy_tone5:': '🕵🏿', + ':man_detective:': '🕵️‍♂️', + ':man_detective_tone1:': '🕵🏻‍♂️', + ':man_detective_light_skin_tone:': '🕵🏻‍♂️', + ':man_detective_tone2:': '🕵🏼‍♂️', + ':man_detective_medium_light_skin_tone:': '🕵🏼‍♂️', + ':man_detective_tone3:': '🕵🏽‍♂️', + ':man_detective_medium_skin_tone:': '🕵🏽‍♂️', + ':man_detective_tone4:': '🕵🏾‍♂️', + ':man_detective_medium_dark_skin_tone:': '🕵🏾‍♂️', + ':man_detective_tone5:': '🕵🏿‍♂️', + ':man_detective_dark_skin_tone:': '🕵🏿‍♂️', + ':woman_detective:': '🕵️‍♀️', + ':woman_detective_tone1:': '🕵🏻‍♀️', + ':woman_detective_light_skin_tone:': '🕵🏻‍♀️', + ':woman_detective_tone2:': '🕵🏼‍♀️', + ':woman_detective_medium_light_skin_tone:': '🕵🏼‍♀️', + ':woman_detective_tone3:': '🕵🏽‍♀️', + ':woman_detective_medium_skin_tone:': '🕵🏽‍♀️', + ':woman_detective_tone4:': '🕵🏾‍♀️', + ':woman_detective_medium_dark_skin_tone:': '🕵🏾‍♀️', + ':woman_detective_tone5:': '🕵🏿‍♀️', + ':woman_detective_dark_skin_tone:': '🕵🏿‍♀️', + ':guard:': '💂', + ':guardsman:': '💂', + ':guard_tone1:': '💂🏻', + ':guardsman_tone1:': '💂🏻', + ':guard_tone2:': '💂🏼', + ':guardsman_tone2:': '💂🏼', + ':guard_tone3:': '💂🏽', + ':guardsman_tone3:': '💂🏽', + ':guard_tone4:': '💂🏾', + ':guardsman_tone4:': '💂🏾', + ':guard_tone5:': '💂🏿', + ':guardsman_tone5:': '💂🏿', + ':man_guard:': '💂‍♂️', + ':man_guard_tone1:': '💂🏻‍♂️', + ':man_guard_light_skin_tone:': '💂🏻‍♂️', + ':man_guard_tone2:': '💂🏼‍♂️', + ':man_guard_medium_light_skin_tone:': '💂🏼‍♂️', + ':man_guard_tone3:': '💂🏽‍♂️', + ':man_guard_medium_skin_tone:': '💂🏽‍♂️', + ':man_guard_tone4:': '💂🏾‍♂️', + ':man_guard_medium_dark_skin_tone:': '💂🏾‍♂️', + ':man_guard_tone5:': '💂🏿‍♂️', + ':man_guard_dark_skin_tone:': '💂🏿‍♂️', + ':woman_guard:': '💂‍♀️', + ':woman_guard_tone1:': '💂🏻‍♀️', + ':woman_guard_light_skin_tone:': '💂🏻‍♀️', + ':woman_guard_tone2:': '💂🏼‍♀️', + ':woman_guard_medium_light_skin_tone:': '💂🏼‍♀️', + ':woman_guard_tone3:': '💂🏽‍♀️', + ':woman_guard_medium_skin_tone:': '💂🏽‍♀️', + ':woman_guard_tone4:': '💂🏾‍♀️', + ':woman_guard_medium_dark_skin_tone:': '💂🏾‍♀️', + ':woman_guard_tone5:': '💂🏿‍♀️', + ':woman_guard_dark_skin_tone:': '💂🏿‍♀️', + ':ninja:': '🥷', + ':ninja_tone1:': '🥷🏻', + ':ninja_light_skin_tone:': '🥷🏻', + ':ninja_tone2:': '🥷🏼', + ':ninja_medium_light_skin_tone:': '🥷🏼', + ':ninja_tone3:': '🥷🏽', + ':ninja_medium_skin_tone:': '🥷🏽', + ':ninja_tone4:': '🥷🏾', + ':ninja_medium_dark_skin_tone:': '🥷🏾', + ':ninja_tone5:': '🥷🏿', + ':ninja_dark_skin_tone:': '🥷🏿', + ':construction_worker:': '👷', + ':construction_worker_tone1:': '👷🏻', + ':construction_worker_tone2:': '👷🏼', + ':construction_worker_tone3:': '👷🏽', + ':construction_worker_tone4:': '👷🏾', + ':construction_worker_tone5:': '👷🏿', + ':man_construction_worker:': '👷‍♂️', + ':man_construction_worker_tone1:': '👷🏻‍♂️', + ':man_construction_worker_light_skin_tone:': '👷🏻‍♂️', + ':man_construction_worker_tone2:': '👷🏼‍♂️', + ':man_construction_worker_medium_light_skin_tone:': '👷🏼‍♂️', + ':man_construction_worker_tone3:': '👷🏽‍♂️', + ':man_construction_worker_medium_skin_tone:': '👷🏽‍♂️', + ':man_construction_worker_tone4:': '👷🏾‍♂️', + ':man_construction_worker_medium_dark_skin_tone:': '👷🏾‍♂️', + ':man_construction_worker_tone5:': '👷🏿‍♂️', + ':man_construction_worker_dark_skin_tone:': '👷🏿‍♂️', + ':woman_construction_worker:': '👷‍♀️', + ':woman_construction_worker_tone1:': '👷🏻‍♀️', + ':woman_construction_worker_light_skin_tone:': '👷🏻‍♀️', + ':woman_construction_worker_tone2:': '👷🏼‍♀️', + ':woman_construction_worker_medium_light_skin_tone:': '👷🏼‍♀️', + ':woman_construction_worker_tone3:': '👷🏽‍♀️', + ':woman_construction_worker_medium_skin_tone:': '👷🏽‍♀️', + ':woman_construction_worker_tone4:': '👷🏾‍♀️', + ':woman_construction_worker_medium_dark_skin_tone:': '👷🏾‍♀️', + ':woman_construction_worker_tone5:': '👷🏿‍♀️', + ':woman_construction_worker_dark_skin_tone:': '👷🏿‍♀️', + ':person_with_crown:': '🫅', + ':person_with_crown_tone1:': '🫅🏻', + ':person_with_crown_light_skin_tone:': '🫅🏻', + ':person_with_crown_tone2:': '🫅🏼', + ':person_with_crown_medium_light_skin_tone:': '🫅🏼', + ':person_with_crown_tone3:': '🫅🏽', + ':person_with_crown_medium_skin_tone:': '🫅🏽', + ':person_with_crown_tone4:': '🫅🏾', + ':person_with_crown_medium_dark_skin_tone:': '🫅🏾', + ':person_with_crown_tone5:': '🫅🏿', + ':person_with_crown_dark_skin_tone:': '🫅🏿', + ':prince:': '🤴', + ':prince_tone1:': '🤴🏻', + ':prince_tone2:': '🤴🏼', + ':prince_tone3:': '🤴🏽', + ':prince_tone4:': '🤴🏾', + ':prince_tone5:': '🤴🏿', + ':princess:': '👸', + ':princess_tone1:': '👸🏻', + ':princess_tone2:': '👸🏼', + ':princess_tone3:': '👸🏽', + ':princess_tone4:': '👸🏾', + ':princess_tone5:': '👸🏿', + ':person_wearing_turban:': '👳', + ':man_with_turban:': '👳', + ':person_wearing_turban_tone1:': '👳🏻', + ':man_with_turban_tone1:': '👳🏻', + ':person_wearing_turban_tone2:': '👳🏼', + ':man_with_turban_tone2:': '👳🏼', + ':person_wearing_turban_tone3:': '👳🏽', + ':man_with_turban_tone3:': '👳🏽', + ':person_wearing_turban_tone4:': '👳🏾', + ':man_with_turban_tone4:': '👳🏾', + ':person_wearing_turban_tone5:': '👳🏿', + ':man_with_turban_tone5:': '👳🏿', + ':man_wearing_turban:': '👳‍♂️', + ':man_wearing_turban_tone1:': '👳🏻‍♂️', + ':man_wearing_turban_light_skin_tone:': '👳🏻‍♂️', + ':man_wearing_turban_tone2:': '👳🏼‍♂️', + ':man_wearing_turban_medium_light_skin_tone:': '👳🏼‍♂️', + ':man_wearing_turban_tone3:': '👳🏽‍♂️', + ':man_wearing_turban_medium_skin_tone:': '👳🏽‍♂️', + ':man_wearing_turban_tone4:': '👳🏾‍♂️', + ':man_wearing_turban_medium_dark_skin_tone:': '👳🏾‍♂️', + ':man_wearing_turban_tone5:': '👳🏿‍♂️', + ':man_wearing_turban_dark_skin_tone:': '👳🏿‍♂️', + ':woman_wearing_turban:': '👳‍♀️', + ':woman_wearing_turban_tone1:': '👳🏻‍♀️', + ':woman_wearing_turban_light_skin_tone:': '👳🏻‍♀️', + ':woman_wearing_turban_tone2:': '👳🏼‍♀️', + ':woman_wearing_turban_medium_light_skin_tone:': '👳🏼‍♀️', + ':woman_wearing_turban_tone3:': '👳🏽‍♀️', + ':woman_wearing_turban_medium_skin_tone:': '👳🏽‍♀️', + ':woman_wearing_turban_tone4:': '👳🏾‍♀️', + ':woman_wearing_turban_medium_dark_skin_tone:': '👳🏾‍♀️', + ':woman_wearing_turban_tone5:': '👳🏿‍♀️', + ':woman_wearing_turban_dark_skin_tone:': '👳🏿‍♀️', + ':man_with_chinese_cap:': '👲', + ':man_with_gua_pi_mao:': '👲', + ':man_with_chinese_cap_tone1:': '👲🏻', + ':man_with_gua_pi_mao_tone1:': '👲🏻', + ':man_with_chinese_cap_tone2:': '👲🏼', + ':man_with_gua_pi_mao_tone2:': '👲🏼', + ':man_with_chinese_cap_tone3:': '👲🏽', + ':man_with_gua_pi_mao_tone3:': '👲🏽', + ':man_with_chinese_cap_tone4:': '👲🏾', + ':man_with_gua_pi_mao_tone4:': '👲🏾', + ':man_with_chinese_cap_tone5:': '👲🏿', + ':man_with_gua_pi_mao_tone5:': '👲🏿', + ':woman_with_headscarf:': '🧕', + ':woman_with_headscarf_tone1:': '🧕🏻', + ':woman_with_headscarf_light_skin_tone:': '🧕🏻', + ':woman_with_headscarf_tone2:': '🧕🏼', + ':woman_with_headscarf_medium_light_skin_tone:': '🧕🏼', + ':woman_with_headscarf_tone3:': '🧕🏽', + ':woman_with_headscarf_medium_skin_tone:': '🧕🏽', + ':woman_with_headscarf_tone4:': '🧕🏾', + ':woman_with_headscarf_medium_dark_skin_tone:': '🧕🏾', + ':woman_with_headscarf_tone5:': '🧕🏿', + ':woman_with_headscarf_dark_skin_tone:': '🧕🏿', + ':person_in_tuxedo:': '🤵', + ':person_in_tuxedo_tone1:': '🤵🏻', + ':tuxedo_tone1:': '🤵🏻', + ':person_in_tuxedo_tone2:': '🤵🏼', + ':tuxedo_tone2:': '🤵🏼', + ':person_in_tuxedo_tone3:': '🤵🏽', + ':tuxedo_tone3:': '🤵🏽', + ':person_in_tuxedo_tone4:': '🤵🏾', + ':tuxedo_tone4:': '🤵🏾', + ':person_in_tuxedo_tone5:': '🤵🏿', + ':tuxedo_tone5:': '🤵🏿', + ':man_in_tuxedo:': '🤵', + ':man_in_tuxedo_tone1:': '🤵🏻', + ':man_in_tuxedo_light_skin_tone:': '🤵🏻‍♂️', + ':man_in_tuxedo_tone2:': '🤵🏼', + ':man_in_tuxedo_medium_light_skin_tone:': '🤵🏼‍♂️', + ':man_in_tuxedo_tone3:': '🤵🏽', + ':man_in_tuxedo_medium_skin_tone:': '🤵🏽‍♂️', + ':man_in_tuxedo_tone4:': '🤵🏾', + ':man_in_tuxedo_medium_dark_skin_tone:': '🤵🏾‍♂️', + ':man_in_tuxedo_tone5:': '🤵🏿', + ':man_in_tuxedo_dark_skin_tone:': '🤵🏿‍♂️', + ':woman_in_tuxedo:': '🤵‍♀️', + ':woman_in_tuxedo_tone1:': '🤵🏻‍♀️', + ':woman_in_tuxedo_light_skin_tone:': '🤵🏻‍♀️', + ':woman_in_tuxedo_tone2:': '🤵🏼‍♀️', + ':woman_in_tuxedo_medium_light_skin_tone:': '🤵🏼‍♀️', + ':woman_in_tuxedo_tone3:': '🤵🏽‍♀️', + ':woman_in_tuxedo_medium_skin_tone:': '🤵🏽‍♀️', + ':woman_in_tuxedo_tone4:': '🤵🏾‍♀️', + ':woman_in_tuxedo_medium_dark_skin_tone:': '🤵🏾‍♀️', + ':woman_in_tuxedo_tone5:': '🤵🏿‍♀️', + ':woman_in_tuxedo_dark_skin_tone:': '🤵🏿‍♀️', + ':person_with_veil:': '👰', + ':person_with_veil_tone1:': '👰🏻', + ':person_with_veil_tone2:': '👰🏼', + ':person_with_veil_tone3:': '👰🏽', + ':person_with_veil_tone4:': '👰🏾', + ':person_with_veil_tone5:': '👰🏿', + ':man_with_veil:': '👰‍♂️', + ':man_with_veil_tone1:': '👰🏻‍♂️', + ':man_with_veil_light_skin_tone:': '👰🏻‍♂️', + ':man_with_veil_tone2:': '👰🏼‍♂️', + ':man_with_veil_medium_light_skin_tone:': '👰🏼‍♂️', + ':man_with_veil_tone3:': '👰🏽‍♂️', + ':man_with_veil_medium_skin_tone:': '👰🏽‍♂️', + ':man_with_veil_tone4:': '👰🏾‍♂️', + ':man_with_veil_medium_dark_skin_tone:': '👰🏾‍♂️', + ':man_with_veil_tone5:': '👰🏿‍♂️', + ':man_with_veil_dark_skin_tone:': '👰🏿‍♂️', + ':woman_with_veil:': '👰‍♀️', + ':woman_with_veil_tone1:': '👰🏻‍♀️', + ':woman_with_veil_light_skin_tone:': '👰🏻‍♀️', + ':woman_with_veil_tone2:': '👰🏼‍♀️', + ':woman_with_veil_medium_light_skin_tone:': '👰🏼‍♀️', + ':woman_with_veil_tone3:': '👰🏽‍♀️', + ':woman_with_veil_medium_skin_tone:': '👰🏽‍♀️', + ':woman_with_veil_tone4:': '👰🏾‍♀️', + ':woman_with_veil_medium_dark_skin_tone:': '👰🏾‍♀️', + ':woman_with_veil_tone5:': '👰🏿‍♀️', + ':woman_with_veil_dark_skin_tone:': '👰🏿‍♀️', + ':pregnant_woman:': '🤰', + ':expecting_woman:': '🤰', + ':pregnant_woman_tone1:': '🤰🏻', + ':expecting_woman_tone1:': '🤰🏻', + ':pregnant_woman_tone2:': '🤰🏼', + ':expecting_woman_tone2:': '🤰🏼', + ':pregnant_woman_tone3:': '🤰🏽', + ':expecting_woman_tone3:': '🤰🏽', + ':pregnant_woman_tone4:': '🤰🏾', + ':expecting_woman_tone4:': '🤰🏾', + ':pregnant_woman_tone5:': '🤰🏿', + ':expecting_woman_tone5:': '🤰🏿', + ':pregnant_man:': '🫃', + ':pregnant_man_tone1:': '🫃🏻', + ':pregnant_man_light_skin_tone:': '🫃🏻', + ':pregnant_man_tone2:': '🫃🏼', + ':pregnant_man_medium_light_skin_tone:': '🫃🏼', + ':pregnant_man_tone3:': '🫃🏽', + ':pregnant_man_medium_skin_tone:': '🫃🏽', + ':pregnant_man_tone4:': '🫃🏾', + ':pregnant_man_medium_dark_skin_tone:': '🫃🏾', + ':pregnant_man_tone5:': '🫃🏿', + ':pregnant_man_dark_skin_tone:': '🫃🏿', + ':pregnant_person:': '🫄', + ':pregnant_person_tone1:': '🫄🏻', + ':pregnant_person_light_skin_tone:': '🫄🏻', + ':pregnant_person_tone2:': '🫄🏼', + ':pregnant_person_medium_light_skin_tone:': '🫄🏼', + ':pregnant_person_tone3:': '🫄🏽', + ':pregnant_person_medium_skin_tone:': '🫄🏽', + ':pregnant_person_tone4:': '🫄🏾', + ':pregnant_person_medium_dark_skin_tone:': '🫄🏾', + ':pregnant_person_tone5:': '🫄🏿', + ':pregnant_person_dark_skin_tone:': '🫄🏿', + ':breast_feeding:': '🤱', + ':breast_feeding_tone1:': '🤱🏻', + ':breast_feeding_light_skin_tone:': '🤱🏻', + ':breast_feeding_tone2:': '🤱🏼', + ':breast_feeding_medium_light_skin_tone:': '🤱🏼', + ':breast_feeding_tone3:': '🤱🏽', + ':breast_feeding_medium_skin_tone:': '🤱🏽', + ':breast_feeding_tone4:': '🤱🏾', + ':breast_feeding_medium_dark_skin_tone:': '🤱🏾', + ':breast_feeding_tone5:': '🤱🏿', + ':breast_feeding_dark_skin_tone:': '🤱🏿', + ':woman_feeding_baby:': '👩‍🍼', + ':woman_feeding_baby_tone1:': '👩🏻‍🍼', + ':woman_feeding_baby_light_skin_tone:': '👩🏻‍🍼', + ':woman_feeding_baby_tone2:': '👩🏼‍🍼', + ':woman_feeding_baby_medium_light_skin_tone:': '👩🏼‍🍼', + ':woman_feeding_baby_tone3:': '👩🏽‍🍼', + ':woman_feeding_baby_medium_skin_tone:': '👩🏽‍🍼', + ':woman_feeding_baby_tone4:': '👩🏾‍🍼', + ':woman_feeding_baby_medium_dark_skin_tone:': '👩🏾‍🍼', + ':woman_feeding_baby_tone5:': '👩🏿‍🍼', + ':woman_feeding_baby_dark_skin_tone:': '👩🏿‍🍼', + ':man_feeding_baby:': '👨‍🍼', + ':man_feeding_baby_tone1:': '👨🏻‍🍼', + ':man_feeding_baby_light_skin_tone:': '👨🏻‍🍼', + ':man_feeding_baby_tone2:': '👨🏼‍🍼', + ':man_feeding_baby_medium_light_skin_tone:': '👨🏼‍🍼', + ':man_feeding_baby_tone3:': '👨🏽‍🍼', + ':man_feeding_baby_medium_skin_tone:': '👨🏽‍🍼', + ':man_feeding_baby_tone4:': '👨🏾‍🍼', + ':man_feeding_baby_medium_dark_skin_tone:': '👨🏾‍🍼', + ':man_feeding_baby_tone5:': '👨🏿‍🍼', + ':man_feeding_baby_dark_skin_tone:': '👨🏿‍🍼', + ':person_feeding_baby:': '🧑‍🍼', + ':person_feeding_baby_tone1:': '🧑🏻‍🍼', + ':person_feeding_baby_light_skin_tone:': '🧑🏻‍🍼', + ':person_feeding_baby_tone2:': '🧑🏼‍🍼', + ':person_feeding_baby_medium_light_skin_tone:': '🧑🏼‍🍼', + ':person_feeding_baby_tone3:': '🧑🏽‍🍼', + ':person_feeding_baby_medium_skin_tone:': '🧑🏽‍🍼', + ':person_feeding_baby_tone4:': '🧑🏾‍🍼', + ':person_feeding_baby_medium_dark_skin_tone:': '🧑🏾‍🍼', + ':person_feeding_baby_tone5:': '🧑🏿‍🍼', + ':person_feeding_baby_dark_skin_tone:': '🧑🏿‍🍼', + ':angel:': '👼', + ':baby_angel:': '👼', + ':angel_tone1:': '👼🏻', + ':angel_tone2:': '👼🏼', + ':angel_tone3:': '👼🏽', + ':angel_tone4:': '👼🏾', + ':angel_tone5:': '👼🏿', + ':santa:': '🎅', + ':santa_claus:': '🎅', + ':santa_tone1:': '🎅🏻', + ':santa_tone2:': '🎅🏼', + ':santa_tone3:': '🎅🏽', + ':santa_tone4:': '🎅🏾', + ':santa_tone5:': '🎅🏿', + ':mrs_claus:': '🤶', + ':mother_christmas:': '🤶', + ':mrs_claus_tone1:': '🤶🏻', + ':mother_christmas_tone1:': '🤶🏻', + ':mrs_claus_tone2:': '🤶🏼', + ':mother_christmas_tone2:': '🤶🏼', + ':mrs_claus_tone3:': '🤶🏽', + ':mother_christmas_tone3:': '🤶🏽', + ':mrs_claus_tone4:': '🤶🏾', + ':mother_christmas_tone4:': '🤶🏾', + ':mrs_claus_tone5:': '🤶🏿', + ':mother_christmas_tone5:': '🤶🏿', + ':mx_claus:': '🧑‍🎄', + ':mx_claus_tone1:': '🧑🏻‍🎄', + ':mx_claus_light_skin_tone:': '🧑🏻‍🎄', + ':mx_claus_tone2:': '🧑🏼‍🎄', + ':mx_claus_medium_light_skin_tone:': '🧑🏼‍🎄', + ':mx_claus_tone3:': '🧑🏽‍🎄', + ':mx_claus_medium_skin_tone:': '🧑🏽‍🎄', + ':mx_claus_tone4:': '🧑🏾‍🎄', + ':mx_claus_medium_dark_skin_tone:': '🧑🏾‍🎄', + ':mx_claus_tone5:': '🧑🏿‍🎄', + ':mx_claus_dark_skin_tone:': '🧑🏿‍🎄', + ':superhero:': '🦸', + ':superhero_tone1:': '🦸🏻', + ':superhero_light_skin_tone:': '🦸🏻', + ':superhero_tone2:': '🦸🏼', + ':superhero_medium_light_skin_tone:': '🦸🏼', + ':superhero_tone3:': '🦸🏽', + ':superhero_medium_skin_tone:': '🦸🏽', + ':superhero_tone4:': '🦸🏾', + ':superhero_medium_dark_skin_tone:': '🦸🏾', + ':superhero_tone5:': '🦸🏿', + ':superhero_dark_skin_tone:': '🦸🏿', + ':man_superhero:': '🦸‍♂️', + ':man_superhero_tone1:': '🦸🏻‍♂️', + ':man_superhero_light_skin_tone:': '🦸🏻‍♂️', + ':man_superhero_tone2:': '🦸🏼‍♂️', + ':man_superhero_medium_light_skin_tone:': '🦸🏼‍♂️', + ':man_superhero_tone3:': '🦸🏽‍♂️', + ':man_superhero_medium_skin_tone:': '🦸🏽‍♂️', + ':man_superhero_tone4:': '🦸🏾‍♂️', + ':man_superhero_medium_dark_skin_tone:': '🦸🏾‍♂️', + ':man_superhero_tone5:': '🦸🏿‍♂️', + ':man_superhero_dark_skin_tone:': '🦸🏿‍♂️', + ':woman_superhero:': '🦸‍♀️', + ':woman_superhero_tone1:': '🦸🏻‍♀️', + ':woman_superhero_light_skin_tone:': '🦸🏻‍♀️', + ':woman_superhero_tone2:': '🦸🏼‍♀️', + ':woman_superhero_medium_light_skin_tone:': '🦸🏼‍♀️', + ':woman_superhero_tone3:': '🦸🏽‍♀️', + ':woman_superhero_medium_skin_tone:': '🦸🏽‍♀️', + ':woman_superhero_tone4:': '🦸🏾‍♀️', + ':woman_superhero_medium_dark_skin_tone:': '🦸🏾‍♀️', + ':woman_superhero_tone5:': '🦸🏿‍♀️', + ':woman_superhero_dark_skin_tone:': '🦸🏿‍♀️', + ':supervillain:': '🦹', + ':supervillain_tone1:': '🦹🏻', + ':supervillain_light_skin_tone:': '🦹🏻', + ':supervillain_tone2:': '🦹🏼', + ':supervillain_medium_light_skin_tone:': '🦹🏼', + ':supervillain_tone3:': '🦹🏽', + ':supervillain_medium_skin_tone:': '🦹🏽', + ':supervillain_tone4:': '🦹🏾', + ':supervillain_medium_dark_skin_tone:': '🦹🏾', + ':supervillain_tone5:': '🦹🏿', + ':supervillain_dark_skin_tone:': '🦹🏿', + ':man_supervillain:': '🦹‍♂️', + ':man_supervillain_tone1:': '🦹🏻‍♂️', + ':man_supervillain_light_skin_tone:': '🦹🏻‍♂️', + ':man_supervillain_tone2:': '🦹🏼‍♂️', + ':man_supervillain_medium_light_skin_tone:': '🦹🏼‍♂️', + ':man_supervillain_tone3:': '🦹🏽‍♂️', + ':man_supervillain_medium_skin_tone:': '🦹🏽‍♂️', + ':man_supervillain_tone4:': '🦹🏾‍♂️', + ':man_supervillain_medium_dark_skin_tone:': '🦹🏾‍♂️', + ':man_supervillain_tone5:': '🦹🏿‍♂️', + ':man_supervillain_dark_skin_tone:': '🦹🏿‍♂️', + ':woman_supervillain:': '🦹‍♀️', + ':woman_supervillain_tone1:': '🦹🏻‍♀️', + ':woman_supervillain_light_skin_tone:': '🦹🏻‍♀️', + ':woman_supervillain_tone2:': '🦹🏼‍♀️', + ':woman_supervillain_medium_light_skin_tone:': '🦹🏼‍♀️', + ':woman_supervillain_tone3:': '🦹🏽‍♀️', + ':woman_supervillain_medium_skin_tone:': '🦹🏽‍♀️', + ':woman_supervillain_tone4:': '🦹🏾‍♀️', + ':woman_supervillain_medium_dark_skin_tone:': '🦹🏾‍♀️', + ':woman_supervillain_tone5:': '🦹🏿‍♀️', + ':woman_supervillain_dark_skin_tone:': '🦹🏿‍♀️', + ':mage:': '🧙', + ':mage_tone1:': '🧙🏻', + ':mage_light_skin_tone:': '🧙🏻', + ':mage_tone2:': '🧙🏼', + ':mage_medium_light_skin_tone:': '🧙🏼', + ':mage_tone3:': '🧙🏽', + ':mage_medium_skin_tone:': '🧙🏽', + ':mage_tone4:': '🧙🏾', + ':mage_medium_dark_skin_tone:': '🧙🏾', + ':mage_tone5:': '🧙🏿', + ':mage_dark_skin_tone:': '🧙🏿', + ':man_mage:': '🧙‍♂️', + ':man_mage_tone1:': '🧙🏻‍♂️', + ':man_mage_light_skin_tone:': '🧙🏻‍♂️', + ':man_mage_tone2:': '🧙🏼‍♂️', + ':man_mage_medium_light_skin_tone:': '🧙🏼‍♂️', + ':man_mage_tone3:': '🧙🏽‍♂️', + ':man_mage_medium_skin_tone:': '🧙🏽‍♂️', + ':man_mage_tone4:': '🧙🏾‍♂️', + ':man_mage_medium_dark_skin_tone:': '🧙🏾‍♂️', + ':man_mage_tone5:': '🧙🏿‍♂️', + ':man_mage_dark_skin_tone:': '🧙🏿‍♂️', + ':woman_mage:': '🧙‍♀️', + ':woman_mage_tone1:': '🧙🏻‍♀️', + ':woman_mage_light_skin_tone:': '🧙🏻‍♀️', + ':woman_mage_tone2:': '🧙🏼‍♀️', + ':woman_mage_medium_light_skin_tone:': '🧙🏼‍♀️', + ':woman_mage_tone3:': '🧙🏽‍♀️', + ':woman_mage_medium_skin_tone:': '🧙🏽‍♀️', + ':woman_mage_tone4:': '🧙🏾‍♀️', + ':woman_mage_medium_dark_skin_tone:': '🧙🏾‍♀️', + ':woman_mage_tone5:': '🧙🏿‍♀️', + ':woman_mage_dark_skin_tone:': '🧙🏿‍♀️', + ':fairy:': '🧚', + ':fairy_tone1:': '🧚🏻', + ':fairy_light_skin_tone:': '🧚🏻', + ':fairy_tone2:': '🧚🏼', + ':fairy_medium_light_skin_tone:': '🧚🏼', + ':fairy_tone3:': '🧚🏽', + ':fairy_medium_skin_tone:': '🧚🏽', + ':fairy_tone4:': '🧚🏾', + ':fairy_medium_dark_skin_tone:': '🧚🏾', + ':fairy_tone5:': '🧚🏿', + ':fairy_dark_skin_tone:': '🧚🏿', + ':man_fairy:': '🧚‍♂️', + ':man_fairy_tone1:': '🧚🏻‍♂️', + ':man_fairy_light_skin_tone:': '🧚🏻‍♂️', + ':man_fairy_tone2:': '🧚🏼‍♂️', + ':man_fairy_medium_light_skin_tone:': '🧚🏼‍♂️', + ':man_fairy_tone3:': '🧚🏽‍♂️', + ':man_fairy_medium_skin_tone:': '🧚🏽‍♂️', + ':man_fairy_tone4:': '🧚🏾‍♂️', + ':man_fairy_medium_dark_skin_tone:': '🧚🏾‍♂️', + ':man_fairy_tone5:': '🧚🏿‍♂️', + ':man_fairy_dark_skin_tone:': '🧚🏿‍♂️', + ':woman_fairy:': '🧚‍♀️', + ':woman_fairy_tone1:': '🧚🏻‍♀️', + ':woman_fairy_light_skin_tone:': '🧚🏻‍♀️', + ':woman_fairy_tone2:': '🧚🏼‍♀️', + ':woman_fairy_medium_light_skin_tone:': '🧚🏼‍♀️', + ':woman_fairy_tone3:': '🧚🏽‍♀️', + ':woman_fairy_medium_skin_tone:': '🧚🏽‍♀️', + ':woman_fairy_tone4:': '🧚🏾‍♀️', + ':woman_fairy_medium_dark_skin_tone:': '🧚🏾‍♀️', + ':woman_fairy_tone5:': '🧚🏿‍♀️', + ':woman_fairy_dark_skin_tone:': '🧚🏿‍♀️', + ':vampire:': '🧛', + ':vampire_tone1:': '🧛🏻', + ':vampire_light_skin_tone:': '🧛🏻', + ':vampire_tone2:': '🧛🏼', + ':vampire_medium_light_skin_tone:': '🧛🏼', + ':vampire_tone3:': '🧛🏽', + ':vampire_medium_skin_tone:': '🧛🏽', + ':vampire_tone4:': '🧛🏾', + ':vampire_medium_dark_skin_tone:': '🧛🏾', + ':vampire_tone5:': '🧛🏿', + ':vampire_dark_skin_tone:': '🧛🏿', + ':man_vampire:': '🧛‍♂️', + ':man_vampire_tone1:': '🧛🏻‍♂️', + ':man_vampire_light_skin_tone:': '🧛🏻‍♂️', + ':man_vampire_tone2:': '🧛🏼‍♂️', + ':man_vampire_medium_light_skin_tone:': '🧛🏼‍♂️', + ':man_vampire_tone3:': '🧛🏽‍♂️', + ':man_vampire_medium_skin_tone:': '🧛🏽‍♂️', + ':man_vampire_tone4:': '🧛🏾‍♂️', + ':man_vampire_medium_dark_skin_tone:': '🧛🏾‍♂️', + ':man_vampire_tone5:': '🧛🏿‍♂️', + ':man_vampire_dark_skin_tone:': '🧛🏿‍♂️', + ':woman_vampire:': '🧛‍♀️', + ':woman_vampire_tone1:': '🧛🏻‍♀️', + ':woman_vampire_light_skin_tone:': '🧛🏻‍♀️', + ':woman_vampire_tone2:': '🧛🏼‍♀️', + ':woman_vampire_medium_light_skin_tone:': '🧛🏼‍♀️', + ':woman_vampire_tone3:': '🧛🏽‍♀️', + ':woman_vampire_medium_skin_tone:': '🧛🏽‍♀️', + ':woman_vampire_tone4:': '🧛🏾‍♀️', + ':woman_vampire_medium_dark_skin_tone:': '🧛🏾‍♀️', + ':woman_vampire_tone5:': '🧛🏿‍♀️', + ':woman_vampire_dark_skin_tone:': '🧛🏿‍♀️', + ':merperson:': '🧜', + ':merperson_tone1:': '🧜🏻', + ':merperson_light_skin_tone:': '🧜🏻', + ':merperson_tone2:': '🧜🏼', + ':merperson_medium_light_skin_tone:': '🧜🏼', + ':merperson_tone3:': '🧜🏽', + ':merperson_medium_skin_tone:': '🧜🏽', + ':merperson_tone4:': '🧜🏾', + ':merperson_medium_dark_skin_tone:': '🧜🏾', + ':merperson_tone5:': '🧜🏿', + ':merperson_dark_skin_tone:': '🧜🏿', + ':merman:': '🧜‍♂️', + ':merman_tone1:': '🧜🏻‍♂️', + ':merman_light_skin_tone:': '🧜🏻‍♂️', + ':merman_tone2:': '🧜🏼‍♂️', + ':merman_medium_light_skin_tone:': '🧜🏼‍♂️', + ':merman_tone3:': '🧜🏽‍♂️', + ':merman_medium_skin_tone:': '🧜🏽‍♂️', + ':merman_tone4:': '🧜🏾‍♂️', + ':merman_medium_dark_skin_tone:': '🧜🏾‍♂️', + ':merman_tone5:': '🧜🏿‍♂️', + ':merman_dark_skin_tone:': '🧜🏿‍♂️', + ':mermaid:': '🧜‍♀️', + ':mermaid_tone1:': '🧜🏻‍♀️', + ':mermaid_light_skin_tone:': '🧜🏻‍♀️', + ':mermaid_tone2:': '🧜🏼‍♀️', + ':mermaid_medium_light_skin_tone:': '🧜🏼‍♀️', + ':mermaid_tone3:': '🧜🏽‍♀️', + ':mermaid_medium_skin_tone:': '🧜🏽‍♀️', + ':mermaid_tone4:': '🧜🏾‍♀️', + ':mermaid_medium_dark_skin_tone:': '🧜🏾‍♀️', + ':mermaid_tone5:': '🧜🏿‍♀️', + ':mermaid_dark_skin_tone:': '🧜🏿‍♀️', + ':elf:': '🧝', + ':elf_tone1:': '🧝🏻', + ':elf_light_skin_tone:': '🧝🏻', + ':elf_tone2:': '🧝🏼', + ':elf_medium_light_skin_tone:': '🧝🏼', + ':elf_tone3:': '🧝🏽', + ':elf_medium_skin_tone:': '🧝🏽', + ':elf_tone4:': '🧝🏾', + ':elf_medium_dark_skin_tone:': '🧝🏾', + ':elf_tone5:': '🧝🏿', + ':elf_dark_skin_tone:': '🧝🏿', + ':man_elf:': '🧝‍♂️', + ':man_elf_tone1:': '🧝🏻‍♂️', + ':man_elf_light_skin_tone:': '🧝🏻‍♂️', + ':man_elf_tone2:': '🧝🏼‍♂️', + ':man_elf_medium_light_skin_tone:': '🧝🏼‍♂️', + ':man_elf_tone3:': '🧝🏽‍♂️', + ':man_elf_medium_skin_tone:': '🧝🏽‍♂️', + ':man_elf_tone4:': '🧝🏾‍♂️', + ':man_elf_medium_dark_skin_tone:': '🧝🏾‍♂️', + ':man_elf_tone5:': '🧝🏿‍♂️', + ':man_elf_dark_skin_tone:': '🧝🏿‍♂️', + ':woman_elf:': '🧝‍♀️', + ':woman_elf_tone1:': '🧝🏻‍♀️', + ':woman_elf_light_skin_tone:': '🧝🏻‍♀️', + ':woman_elf_tone2:': '🧝🏼‍♀️', + ':woman_elf_medium_light_skin_tone:': '🧝🏼‍♀️', + ':woman_elf_tone3:': '🧝🏽‍♀️', + ':woman_elf_medium_skin_tone:': '🧝🏽‍♀️', + ':woman_elf_tone4:': '🧝🏾‍♀️', + ':woman_elf_medium_dark_skin_tone:': '🧝🏾‍♀️', + ':woman_elf_tone5:': '🧝🏿‍♀️', + ':woman_elf_dark_skin_tone:': '🧝🏿‍♀️', + ':genie:': '🧞', + ':man_genie:': '🧞‍♂️', + ':woman_genie:': '🧞‍♀️', + ':zombie:': '🧟', + ':man_zombie:': '🧟‍♂️', + ':woman_zombie:': '🧟‍♀️', + ':troll:': '🧌', + ':hairy_creature:': '🫈', + ':person_getting_massage:': '💆', + ':massage:': '💆', + ':person_getting_massage_tone1:': '💆🏻', + ':massage_tone1:': '💆🏻', + ':person_getting_massage_tone2:': '💆🏼', + ':massage_tone2:': '💆🏼', + ':person_getting_massage_tone3:': '💆🏽', + ':massage_tone3:': '💆🏽', + ':person_getting_massage_tone4:': '💆🏾', + ':massage_tone4:': '💆🏾', + ':person_getting_massage_tone5:': '💆🏿', + ':massage_tone5:': '💆🏿', + ':man_getting_face_massage:': '💆‍♂️', + ':man_getting_face_massage_tone1:': '💆🏻‍♂️', + ':man_getting_face_massage_light_skin_tone:': '💆🏻‍♂️', + ':man_getting_face_massage_tone2:': '💆🏼‍♂️', + ':man_getting_face_massage_medium_light_skin_tone:': '💆🏼‍♂️', + ':man_getting_face_massage_tone3:': '💆🏽‍♂️', + ':man_getting_face_massage_medium_skin_tone:': '💆🏽‍♂️', + ':man_getting_face_massage_tone4:': '💆🏾‍♂️', + ':man_getting_face_massage_medium_dark_skin_tone:': '💆🏾‍♂️', + ':man_getting_face_massage_tone5:': '💆🏿‍♂️', + ':man_getting_face_massage_dark_skin_tone:': '💆🏿‍♂️', + ':woman_getting_face_massage:': '💆‍♀️', + ':woman_getting_face_massage_tone1:': '💆🏻‍♀️', + ':woman_getting_face_massage_light_skin_tone:': '💆🏻‍♀️', + ':woman_getting_face_massage_tone2:': '💆🏼‍♀️', + ':woman_getting_face_massage_medium_light_skin_tone:': '💆🏼‍♀️', + ':woman_getting_face_massage_tone3:': '💆🏽‍♀️', + ':woman_getting_face_massage_medium_skin_tone:': '💆🏽‍♀️', + ':woman_getting_face_massage_tone4:': '💆🏾‍♀️', + ':woman_getting_face_massage_medium_dark_skin_tone:': '💆🏾‍♀️', + ':woman_getting_face_massage_tone5:': '💆🏿‍♀️', + ':woman_getting_face_massage_dark_skin_tone:': '💆🏿‍♀️', + ':person_getting_haircut:': '💇', + ':haircut:': '💇', + ':person_getting_haircut_tone1:': '💇🏻', + ':haircut_tone1:': '💇🏻', + ':person_getting_haircut_tone2:': '💇🏼', + ':haircut_tone2:': '💇🏼', + ':person_getting_haircut_tone3:': '💇🏽', + ':haircut_tone3:': '💇🏽', + ':person_getting_haircut_tone4:': '💇🏾', + ':haircut_tone4:': '💇🏾', + ':person_getting_haircut_tone5:': '💇🏿', + ':haircut_tone5:': '💇🏿', + ':man_getting_haircut:': '💇‍♂️', + ':man_getting_haircut_tone1:': '💇🏻‍♂️', + ':man_getting_haircut_light_skin_tone:': '💇🏻‍♂️', + ':man_getting_haircut_tone2:': '💇🏼‍♂️', + ':man_getting_haircut_medium_light_skin_tone:': '💇🏼‍♂️', + ':man_getting_haircut_tone3:': '💇🏽‍♂️', + ':man_getting_haircut_medium_skin_tone:': '💇🏽‍♂️', + ':man_getting_haircut_tone4:': '💇🏾‍♂️', + ':man_getting_haircut_medium_dark_skin_tone:': '💇🏾‍♂️', + ':man_getting_haircut_tone5:': '💇🏿‍♂️', + ':man_getting_haircut_dark_skin_tone:': '💇🏿‍♂️', + ':woman_getting_haircut:': '💇‍♀️', + ':woman_getting_haircut_tone1:': '💇🏻‍♀️', + ':woman_getting_haircut_light_skin_tone:': '💇🏻‍♀️', + ':woman_getting_haircut_tone2:': '💇🏼‍♀️', + ':woman_getting_haircut_medium_light_skin_tone:': '💇🏼‍♀️', + ':woman_getting_haircut_tone3:': '💇🏽‍♀️', + ':woman_getting_haircut_medium_skin_tone:': '💇🏽‍♀️', + ':woman_getting_haircut_tone4:': '💇🏾‍♀️', + ':woman_getting_haircut_medium_dark_skin_tone:': '💇🏾‍♀️', + ':woman_getting_haircut_tone5:': '💇🏿‍♀️', + ':woman_getting_haircut_dark_skin_tone:': '💇🏿‍♀️', + ':person_walking:': '🚶', + ':walking:': '🚶', + ':person_walking_tone1:': '🚶🏻', + ':walking_tone1:': '🚶🏻', + ':person_walking_tone2:': '🚶🏼', + ':walking_tone2:': '🚶🏼', + ':person_walking_tone3:': '🚶🏽', + ':walking_tone3:': '🚶🏽', + ':person_walking_tone4:': '🚶🏾', + ':walking_tone4:': '🚶🏾', + ':person_walking_tone5:': '🚶🏿', + ':walking_tone5:': '🚶🏿', + ':man_walking:': '🚶‍♂️', + ':man_walking_tone1:': '🚶🏻‍♂️', + ':man_walking_light_skin_tone:': '🚶🏻‍♂️', + ':man_walking_tone2:': '🚶🏼‍♂️', + ':man_walking_medium_light_skin_tone:': '🚶🏼‍♂️', + ':man_walking_tone3:': '🚶🏽‍♂️', + ':man_walking_medium_skin_tone:': '🚶🏽‍♂️', + ':man_walking_tone4:': '🚶🏾‍♂️', + ':man_walking_medium_dark_skin_tone:': '🚶🏾‍♂️', + ':man_walking_tone5:': '🚶🏿‍♂️', + ':man_walking_dark_skin_tone:': '🚶🏿‍♂️', + ':woman_walking:': '🚶‍♀️', + ':woman_walking_tone1:': '🚶🏻‍♀️', + ':woman_walking_light_skin_tone:': '🚶🏻‍♀️', + ':woman_walking_tone2:': '🚶🏼‍♀️', + ':woman_walking_medium_light_skin_tone:': '🚶🏼‍♀️', + ':woman_walking_tone3:': '🚶🏽‍♀️', + ':woman_walking_medium_skin_tone:': '🚶🏽‍♀️', + ':woman_walking_tone4:': '🚶🏾‍♀️', + ':woman_walking_medium_dark_skin_tone:': '🚶🏾‍♀️', + ':woman_walking_tone5:': '🚶🏿‍♀️', + ':woman_walking_dark_skin_tone:': '🚶🏿‍♀️', + ':person_walking_facing_right:': '🚶‍➡️', + ':person_walking_facing_right_tone1:': '🚶🏻‍➡️', + ':person_walking_facing_right_light_skin_tone:': '🚶🏻‍➡️', + ':person_walking_facing_right_tone2:': '🚶🏼‍➡️', + ':person_walking_facing_right_medium_light_skin_tone:': '🚶🏼‍➡️', + ':person_walking_facing_right_tone3:': '🚶🏽‍➡️', + ':person_walking_facing_right_medium_skin_tone:': '🚶🏽‍➡️', + ':person_walking_facing_right_tone4:': '🚶🏾‍➡️', + ':person_walking_facing_right_medium_dark_skin_tone:': '🚶🏾‍➡️', + ':person_walking_facing_right_tone5:': '🚶🏿‍➡️', + ':person_walking_facing_right_dark_skin_tone:': '🚶🏿‍➡️', + ':woman_walking_facing_right:': '🚶‍♀️‍➡️', + ':woman_walking_facing_right_tone1:': '🚶🏻‍♀️‍➡️', + ':woman_walking_facing_right_light_skin_tone:': '🚶🏻‍♀️‍➡️', + ':woman_walking_facing_right_tone2:': '🚶🏼‍♀️‍➡️', + ':woman_walking_facing_right_medium_light_skin_tone:': '🚶🏼‍♀️‍➡️', + ':woman_walking_facing_right_tone3:': '🚶🏽‍♀️‍➡️', + ':woman_walking_facing_right_medium_skin_tone:': '🚶🏽‍♀️‍➡️', + ':woman_walking_facing_right_tone4:': '🚶🏾‍♀️‍➡️', + ':woman_walking_facing_right_medium_dark_skin_tone:': '🚶🏾‍♀️‍➡️', + ':woman_walking_facing_right_tone5:': '🚶🏿‍♀️‍➡️', + ':woman_walking_facing_right_dark_skin_tone:': '🚶🏿‍♀️‍➡️', + ':man_walking_facing_right:': '🚶‍♂️‍➡️', + ':man_walking_facing_right_tone1:': '🚶🏻‍♂️‍➡️', + ':man_walking_facing_right_light_skin_tone:': '🚶🏻‍♂️‍➡️', + ':man_walking_facing_right_tone2:': '🚶🏼‍♂️‍➡️', + ':man_walking_facing_right_medium_light_skin_tone:': '🚶🏼‍♂️‍➡️', + ':man_walking_facing_right_tone3:': '🚶🏽‍♂️‍➡️', + ':man_walking_facing_right_medium_skin_tone:': '🚶🏽‍♂️‍➡️', + ':man_walking_facing_right_tone4:': '🚶🏾‍♂️‍➡️', + ':man_walking_facing_right_medium_dark_skin_tone:': '🚶🏾‍♂️‍➡️', + ':man_walking_facing_right_tone5:': '🚶🏿‍♂️‍➡️', + ':man_walking_facing_right_dark_skin_tone:': '🚶🏿‍♂️‍➡️', + ':person_standing:': '🧍', + ':person_standing_tone1:': '🧍🏻', + ':person_standing_light_skin_tone:': '🧍🏻', + ':person_standing_tone2:': '🧍🏼', + ':person_standing_medium_light_skin_tone:': '🧍🏼', + ':person_standing_tone3:': '🧍🏽', + ':person_standing_medium_skin_tone:': '🧍🏽', + ':person_standing_tone4:': '🧍🏾', + ':person_standing_medium_dark_skin_tone:': '🧍🏾', + ':person_standing_tone5:': '🧍🏿', + ':person_standing_dark_skin_tone:': '🧍🏿', + ':man_standing:': '🧍‍♂️', + ':man_standing_tone1:': '🧍🏻‍♂️', + ':man_standing_light_skin_tone:': '🧍🏻‍♂️', + ':man_standing_tone2:': '🧍🏼‍♂️', + ':man_standing_medium_light_skin_tone:': '🧍🏼‍♂️', + ':man_standing_tone3:': '🧍🏽‍♂️', + ':man_standing_medium_skin_tone:': '🧍🏽‍♂️', + ':man_standing_tone4:': '🧍🏾‍♂️', + ':man_standing_medium_dark_skin_tone:': '🧍🏾‍♂️', + ':man_standing_tone5:': '🧍🏿‍♂️', + ':man_standing_dark_skin_tone:': '🧍🏿‍♂️', + ':woman_standing:': '🧍‍♀️', + ':woman_standing_tone1:': '🧍🏻‍♀️', + ':woman_standing_light_skin_tone:': '🧍🏻‍♀️', + ':woman_standing_tone2:': '🧍🏼‍♀️', + ':woman_standing_medium_light_skin_tone:': '🧍🏼‍♀️', + ':woman_standing_tone3:': '🧍🏽‍♀️', + ':woman_standing_medium_skin_tone:': '🧍🏽‍♀️', + ':woman_standing_tone4:': '🧍🏾‍♀️', + ':woman_standing_medium_dark_skin_tone:': '🧍🏾‍♀️', + ':woman_standing_tone5:': '🧍🏿‍♀️', + ':woman_standing_dark_skin_tone:': '🧍🏿‍♀️', + ':person_kneeling:': '🧎', + ':person_kneeling_tone1:': '🧎🏻', + ':person_kneeling_light_skin_tone:': '🧎🏻', + ':person_kneeling_tone2:': '🧎🏼', + ':person_kneeling_medium_light_skin_tone:': '🧎🏼', + ':person_kneeling_tone3:': '🧎🏽', + ':person_kneeling_medium_skin_tone:': '🧎🏽', + ':person_kneeling_tone4:': '🧎🏾', + ':person_kneeling_medium_dark_skin_tone:': '🧎🏾', + ':person_kneeling_tone5:': '🧎🏿', + ':person_kneeling_dark_skin_tone:': '🧎🏿', + ':man_kneeling:': '🧎‍♂️', + ':man_kneeling_tone1:': '🧎🏻‍♂️', + ':man_kneeling_light_skin_tone:': '🧎🏻‍♂️', + ':man_kneeling_tone2:': '🧎🏼‍♂️', + ':man_kneeling_medium_light_skin_tone:': '🧎🏼‍♂️', + ':man_kneeling_tone3:': '🧎🏽‍♂️', + ':man_kneeling_medium_skin_tone:': '🧎🏽‍♂️', + ':man_kneeling_tone4:': '🧎🏾‍♂️', + ':man_kneeling_medium_dark_skin_tone:': '🧎🏾‍♂️', + ':man_kneeling_tone5:': '🧎🏿‍♂️', + ':man_kneeling_dark_skin_tone:': '🧎🏿‍♂️', + ':woman_kneeling:': '🧎‍♀️', + ':woman_kneeling_tone1:': '🧎🏻‍♀️', + ':woman_kneeling_light_skin_tone:': '🧎🏻‍♀️', + ':woman_kneeling_tone2:': '🧎🏼‍♀️', + ':woman_kneeling_medium_light_skin_tone:': '🧎🏼‍♀️', + ':woman_kneeling_tone3:': '🧎🏽‍♀️', + ':woman_kneeling_medium_skin_tone:': '🧎🏽‍♀️', + ':woman_kneeling_tone4:': '🧎🏾‍♀️', + ':woman_kneeling_medium_dark_skin_tone:': '🧎🏾‍♀️', + ':woman_kneeling_tone5:': '🧎🏿‍♀️', + ':woman_kneeling_dark_skin_tone:': '🧎🏿‍♀️', + ':person_kneeling_facing_right:': '🧎‍➡️', + ':person_kneeling_facing_right_tone1:': '🧎🏻‍➡️', + ':person_kneeling_facing_right_light_skin_tone:': '🧎🏻‍➡️', + ':person_kneeling_facing_right_tone2:': '🧎🏼‍➡️', + ':person_kneeling_facing_right_medium_light_skin_tone:': '🧎🏼‍➡️', + ':person_kneeling_facing_right_tone3:': '🧎🏽‍➡️', + ':person_kneeling_facing_right_medium_skin_tone:': '🧎🏽‍➡️', + ':person_kneeling_facing_right_tone4:': '🧎🏾‍➡️', + ':person_kneeling_facing_right_medium_dark_skin_tone:': '🧎🏾‍➡️', + ':person_kneeling_facing_right_tone5:': '🧎🏿‍➡️', + ':person_kneeling_facing_right_dark_skin_tone:': '🧎🏿‍➡️', + ':woman_kneeling_facing_right:': '🧎‍♀️‍➡️', + ':woman_kneeling_facing_right_tone1:': '🧎🏻‍♀️‍➡️', + ':woman_kneeling_facing_right_light_skin_tone:': '🧎🏻‍♀️‍➡️', + ':woman_kneeling_facing_right_tone2:': '🧎🏼‍♀️‍➡️', + ':woman_kneeling_facing_right_medium_light_skin_tone:': '🧎🏼‍♀️‍➡️', + ':woman_kneeling_facing_right_tone3:': '🧎🏽‍♀️‍➡️', + ':woman_kneeling_facing_right_medium_skin_tone:': '🧎🏽‍♀️‍➡️', + ':woman_kneeling_facing_right_tone4:': '🧎🏾‍♀️‍➡️', + ':woman_kneeling_facing_right_medium_dark_skin_tone:': '🧎🏾‍♀️‍➡️', + ':woman_kneeling_facing_right_tone5:': '🧎🏿‍♀️‍➡️', + ':woman_kneeling_facing_right_dark_skin_tone:': '🧎🏿‍♀️‍➡️', + ':man_kneeling_facing_right:': '🧎‍♂️‍➡️', + ':man_kneeling_facing_right_tone1:': '🧎🏻‍♂️‍➡️', + ':man_kneeling_facing_right_light_skin_tone:': '🧎🏻‍♂️‍➡️', + ':man_kneeling_facing_right_tone2:': '🧎🏼‍♂️‍➡️', + ':man_kneeling_facing_right_medium_light_skin_tone:': '🧎🏼‍♂️‍➡️', + ':man_kneeling_facing_right_tone3:': '🧎🏽‍♂️‍➡️', + ':man_kneeling_facing_right_medium_skin_tone:': '🧎🏽‍♂️‍➡️', + ':man_kneeling_facing_right_tone4:': '🧎🏾‍♂️‍➡️', + ':man_kneeling_facing_right_medium_dark_skin_tone:': '🧎🏾‍♂️‍➡️', + ':man_kneeling_facing_right_tone5:': '🧎🏿‍♂️‍➡️', + ':man_kneeling_facing_right_dark_skin_tone:': '🧎🏿‍♂️‍➡️', + ':person_with_probing_cane:': '🧑‍🦯', + ':person_with_probing_cane_tone1:': '🧑🏻‍🦯', + ':person_with_probing_cane_light_skin_tone:': '🧑🏻‍🦯', + ':person_with_probing_cane_tone2:': '🧑🏼‍🦯', + ':person_with_probing_cane_medium_light_skin_tone:': '🧑🏼‍🦯', + ':person_with_probing_cane_tone3:': '🧑🏽‍🦯', + ':person_with_probing_cane_medium_skin_tone:': '🧑🏽‍🦯', + ':person_with_probing_cane_tone4:': '🧑🏾‍🦯', + ':person_with_probing_cane_medium_dark_skin_tone:': '🧑🏾‍🦯', + ':person_with_probing_cane_tone5:': '🧑🏿‍🦯', + ':person_with_probing_cane_dark_skin_tone:': '🧑🏿‍🦯', + ':person_with_white_cane_facing_right:': '🧑‍🦯‍➡️', + ':person_with_white_cane_facing_right_tone1:': '🧑🏻‍🦯‍➡️', + ':person_with_white_cane_facing_right_light_skin_tone:': '🧑🏻‍🦯‍➡️', + ':person_with_white_cane_facing_right_tone2:': '🧑🏼‍🦯‍➡️', + ':person_with_white_cane_facing_right_medium_light_skin_tone:': '🧑🏼‍🦯‍➡️', + ':person_with_white_cane_facing_right_tone3:': '🧑🏽‍🦯‍➡️', + ':person_with_white_cane_facing_right_medium_skin_tone:': '🧑🏽‍🦯‍➡️', + ':person_with_white_cane_facing_right_tone4:': '🧑🏾‍🦯‍➡️', + ':person_with_white_cane_facing_right_medium_dark_skin_tone:': '🧑🏾‍🦯‍➡️', + ':person_with_white_cane_facing_right_tone5:': '🧑🏿‍🦯‍➡️', + ':person_with_white_cane_facing_right_dark_skin_tone:': '🧑🏿‍🦯‍➡️', + ':man_with_probing_cane:': '👨‍🦯', + ':man_with_probing_cane_tone1:': '👨🏻‍🦯', + ':man_with_probing_cane_light_skin_tone:': '👨🏻‍🦯', + ':man_with_probing_cane_tone2:': '👨🏼‍🦯', + ':man_with_probing_cane_medium_light_skin_tone:': '👨🏼‍🦯', + ':man_with_probing_cane_tone3:': '👨🏽‍🦯', + ':man_with_probing_cane_medium_skin_tone:': '👨🏽‍🦯', + ':man_with_probing_cane_tone4:': '👨🏾‍🦯', + ':man_with_probing_cane_medium_dark_skin_tone:': '👨🏾‍🦯', + ':man_with_probing_cane_tone5:': '👨🏿‍🦯', + ':man_with_probing_cane_dark_skin_tone:': '👨🏿‍🦯', + ':man_with_white_cane_facing_right:': '👨‍🦯‍➡️', + ':man_with_white_cane_facing_right_tone1:': '👨🏻‍🦯‍➡️', + ':man_with_white_cane_facing_right_light_skin_tone:': '👨🏻‍🦯‍➡️', + ':man_with_white_cane_facing_right_tone2:': '👨🏼‍🦯‍➡️', + ':man_with_white_cane_facing_right_medium_light_skin_tone:': '👨🏼‍🦯‍➡️', + ':man_with_white_cane_facing_right_tone3:': '👨🏽‍🦯‍➡️', + ':man_with_white_cane_facing_right_medium_skin_tone:': '👨🏽‍🦯‍➡️', + ':man_with_white_cane_facing_right_tone4:': '👨🏾‍🦯‍➡️', + ':man_with_white_cane_facing_right_medium_dark_skin_tone:': '👨🏾‍🦯‍➡️', + ':man_with_white_cane_facing_right_tone5:': '👨🏿‍🦯‍➡️', + ':man_with_white_cane_facing_right_dark_skin_tone:': '👨🏿‍🦯‍➡️', + ':woman_with_probing_cane:': '👩‍🦯', + ':woman_with_probing_cane_tone1:': '👩🏻‍🦯', + ':woman_with_probing_cane_light_skin_tone:': '👩🏻‍🦯', + ':woman_with_probing_cane_tone2:': '👩🏼‍🦯', + ':woman_with_probing_cane_medium_light_skin_tone:': '👩🏼‍🦯', + ':woman_with_probing_cane_tone3:': '👩🏽‍🦯', + ':woman_with_probing_cane_medium_skin_tone:': '👩🏽‍🦯', + ':woman_with_probing_cane_tone4:': '👩🏾‍🦯', + ':woman_with_probing_cane_medium_dark_skin_tone:': '👩🏾‍🦯', + ':woman_with_probing_cane_tone5:': '👩🏿‍🦯', + ':woman_with_probing_cane_dark_skin_tone:': '👩🏿‍🦯', + ':woman_with_white_cane_facing_right:': '👩‍🦯‍➡️', + ':woman_with_white_cane_facing_right_tone1:': '👩🏻‍🦯‍➡️', + ':woman_with_white_cane_facing_right_light_skin_tone:': '👩🏻‍🦯‍➡️', + ':woman_with_white_cane_facing_right_tone2:': '👩🏼‍🦯‍➡️', + ':woman_with_white_cane_facing_right_medium_light_skin_tone:': '👩🏼‍🦯‍➡️', + ':woman_with_white_cane_facing_right_tone3:': '👩🏽‍🦯‍➡️', + ':woman_with_white_cane_facing_right_medium_skin_tone:': '👩🏽‍🦯‍➡️', + ':woman_with_white_cane_facing_right_tone4:': '👩🏾‍🦯‍➡️', + ':woman_with_white_cane_facing_right_medium_dark_skin_tone:': '👩🏾‍🦯‍➡️', + ':woman_with_white_cane_facing_right_tone5:': '👩🏿‍🦯‍➡️', + ':woman_with_white_cane_facing_right_dark_skin_tone:': '👩🏿‍🦯‍➡️', + ':person_in_motorized_wheelchair:': '🧑‍🦼', + ':person_in_motorized_wheelchair_tone1:': '🧑🏻‍🦼', + ':person_in_motorized_wheelchair_light_skin_tone:': '🧑🏻‍🦼', + ':person_in_motorized_wheelchair_tone2:': '🧑🏼‍🦼', + ':person_in_motorized_wheelchair_medium_light_skin_tone:': '🧑🏼‍🦼', + ':person_in_motorized_wheelchair_tone3:': '🧑🏽‍🦼', + ':person_in_motorized_wheelchair_medium_skin_tone:': '🧑🏽‍🦼', + ':person_in_motorized_wheelchair_tone4:': '🧑🏾‍🦼', + ':person_in_motorized_wheelchair_medium_dark_skin_tone:': '🧑🏾‍🦼', + ':person_in_motorized_wheelchair_tone5:': '🧑🏿‍🦼', + ':person_in_motorized_wheelchair_dark_skin_tone:': '🧑🏿‍🦼', + ':person_in_motorized_wheelchair_facing_right:': '🧑‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_tone1:': '🧑🏻‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_light_skin_tone:': '🧑🏻‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_tone2:': '🧑🏼‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_medium_light_skin_tone:': '🧑🏼‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_tone3:': '🧑🏽‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_medium_skin_tone:': '🧑🏽‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_tone4:': '🧑🏾‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_medium_dark_skin_tone:': '🧑🏾‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_tone5:': '🧑🏿‍🦼‍➡️', + ':person_in_motorized_wheelchair_facing_right_dark_skin_tone:': '🧑🏿‍🦼‍➡️', + ':man_in_motorized_wheelchair:': '👨‍🦼', + ':man_in_motorized_wheelchair_tone1:': '👨🏻‍🦼', + ':man_in_motorized_wheelchair_light_skin_tone:': '👨🏻‍🦼', + ':man_in_motorized_wheelchair_tone2:': '👨🏼‍🦼', + ':man_in_motorized_wheelchair_medium_light_skin_tone:': '👨🏼‍🦼', + ':man_in_motorized_wheelchair_tone3:': '👨🏽‍🦼', + ':man_in_motorized_wheelchair_medium_skin_tone:': '👨🏽‍🦼', + ':man_in_motorized_wheelchair_tone4:': '👨🏾‍🦼', + ':man_in_motorized_wheelchair_medium_dark_skin_tone:': '👨🏾‍🦼', + ':man_in_motorized_wheelchair_tone5:': '👨🏿‍🦼', + ':man_in_motorized_wheelchair_dark_skin_tone:': '👨🏿‍🦼', + ':man_in_motorized_wheelchair_facing_right:': '👨‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_tone1:': '👨🏻‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_light_skin_tone:': '👨🏻‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_tone2:': '👨🏼‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_medium_light_skin_tone:': '👨🏼‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_tone3:': '👨🏽‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_medium_skin_tone:': '👨🏽‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_tone4:': '👨🏾‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_medium_dark_skin_tone:': '👨🏾‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_tone5:': '👨🏿‍🦼‍➡️', + ':man_in_motorized_wheelchair_facing_right_dark_skin_tone:': '👨🏿‍🦼‍➡️', + ':woman_in_motorized_wheelchair:': '👩‍🦼', + ':woman_in_motorized_wheelchair_tone1:': '👩🏻‍🦼', + ':woman_in_motorized_wheelchair_light_skin_tone:': '👩🏻‍🦼', + ':woman_in_motorized_wheelchair_tone2:': '👩🏼‍🦼', + ':woman_in_motorized_wheelchair_medium_light_skin_tone:': '👩🏼‍🦼', + ':woman_in_motorized_wheelchair_tone3:': '👩🏽‍🦼', + ':woman_in_motorized_wheelchair_medium_skin_tone:': '👩🏽‍🦼', + ':woman_in_motorized_wheelchair_tone4:': '👩🏾‍🦼', + ':woman_in_motorized_wheelchair_medium_dark_skin_tone:': '👩🏾‍🦼', + ':woman_in_motorized_wheelchair_tone5:': '👩🏿‍🦼', + ':woman_in_motorized_wheelchair_dark_skin_tone:': '👩🏿‍🦼', + ':woman_in_motorized_wheelchair_facing_right:': '👩‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_tone1:': '👩🏻‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_light_skin_tone:': '👩🏻‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_tone2:': '👩🏼‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_medium_light_skin_tone:': '👩🏼‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_tone3:': '👩🏽‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_medium_skin_tone:': '👩🏽‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_tone4:': '👩🏾‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_medium_dark_skin_tone:': '👩🏾‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_tone5:': '👩🏿‍🦼‍➡️', + ':woman_in_motorized_wheelchair_facing_right_dark_skin_tone:': '👩🏿‍🦼‍➡️', + ':person_in_manual_wheelchair:': '🧑‍🦽', + ':person_in_manual_wheelchair_tone1:': '🧑🏻‍🦽', + ':person_in_manual_wheelchair_light_skin_tone:': '🧑🏻‍🦽', + ':person_in_manual_wheelchair_tone2:': '🧑🏼‍🦽', + ':person_in_manual_wheelchair_medium_light_skin_tone:': '🧑🏼‍🦽', + ':person_in_manual_wheelchair_tone3:': '🧑🏽‍🦽', + ':person_in_manual_wheelchair_medium_skin_tone:': '🧑🏽‍🦽', + ':person_in_manual_wheelchair_tone4:': '🧑🏾‍🦽', + ':person_in_manual_wheelchair_medium_dark_skin_tone:': '🧑🏾‍🦽', + ':person_in_manual_wheelchair_tone5:': '🧑🏿‍🦽', + ':person_in_manual_wheelchair_dark_skin_tone:': '🧑🏿‍🦽', + ':person_in_manual_wheelchair_facing_right:': '🧑‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_tone1:': '🧑🏻‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_light_skin_tone:': '🧑🏻‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_tone2:': '🧑🏼‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_medium_light_skin_tone:': '🧑🏼‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_tone3:': '🧑🏽‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_medium_skin_tone:': '🧑🏽‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_tone4:': '🧑🏾‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_medium_dark_skin_tone:': '🧑🏾‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_tone5:': '🧑🏿‍🦽‍➡️', + ':person_in_manual_wheelchair_facing_right_dark_skin_tone:': '🧑🏿‍🦽‍➡️', + ':man_in_manual_wheelchair:': '👨‍🦽', + ':man_in_manual_wheelchair_tone1:': '👨🏻‍🦽', + ':man_in_manual_wheelchair_light_skin_tone:': '👨🏻‍🦽', + ':man_in_manual_wheelchair_tone2:': '👨🏼‍🦽', + ':man_in_manual_wheelchair_medium_light_skin_tone:': '👨🏼‍🦽', + ':man_in_manual_wheelchair_tone3:': '👨🏽‍🦽', + ':man_in_manual_wheelchair_medium_skin_tone:': '👨🏽‍🦽', + ':man_in_manual_wheelchair_tone4:': '👨🏾‍🦽', + ':man_in_manual_wheelchair_medium_dark_skin_tone:': '👨🏾‍🦽', + ':man_in_manual_wheelchair_tone5:': '👨🏿‍🦽', + ':man_in_manual_wheelchair_dark_skin_tone:': '👨🏿‍🦽', + ':man_in_manual_wheelchair_facing_right:': '👨‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_tone1:': '👨🏻‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_light_skin_tone:': '👨🏻‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_tone2:': '👨🏼‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_medium_light_skin_tone:': '👨🏼‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_tone3:': '👨🏽‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_medium_skin_tone:': '👨🏽‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_tone4:': '👨🏾‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_medium_dark_skin_tone:': '👨🏾‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_tone5:': '👨🏿‍🦽‍➡️', + ':man_in_manual_wheelchair_facing_right_dark_skin_tone:': '👨🏿‍🦽‍➡️', + ':woman_in_manual_wheelchair:': '👩‍🦽', + ':woman_in_manual_wheelchair_tone1:': '👩🏻‍🦽', + ':woman_in_manual_wheelchair_light_skin_tone:': '👩🏻‍🦽', + ':woman_in_manual_wheelchair_tone2:': '👩🏼‍🦽', + ':woman_in_manual_wheelchair_medium_light_skin_tone:': '👩🏼‍🦽', + ':woman_in_manual_wheelchair_tone3:': '👩🏽‍🦽', + ':woman_in_manual_wheelchair_medium_skin_tone:': '👩🏽‍🦽', + ':woman_in_manual_wheelchair_tone4:': '👩🏾‍🦽', + ':woman_in_manual_wheelchair_medium_dark_skin_tone:': '👩🏾‍🦽', + ':woman_in_manual_wheelchair_tone5:': '👩🏿‍🦽', + ':woman_in_manual_wheelchair_dark_skin_tone:': '👩🏿‍🦽', + ':woman_in_manual_wheelchair_facing_right:': '👩‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_tone1:': '👩🏻‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_light_skin_tone:': '👩🏻‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_tone2:': '👩🏼‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_medium_light_skin_tone:': '👩🏼‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_tone3:': '👩🏽‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_medium_skin_tone:': '👩🏽‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_tone4:': '👩🏾‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_medium_dark_skin_tone:': '👩🏾‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_tone5:': '👩🏿‍🦽‍➡️', + ':woman_in_manual_wheelchair_facing_right_dark_skin_tone:': '👩🏿‍🦽‍➡️', + ':person_running:': '🏃', + ':runner:': '🏃', + ':person_running_tone1:': '🏃🏻', + ':runner_tone1:': '🏃🏻', + ':person_running_tone2:': '🏃🏼', + ':runner_tone2:': '🏃🏼', + ':person_running_tone3:': '🏃🏽', + ':runner_tone3:': '🏃🏽', + ':person_running_tone4:': '🏃🏾', + ':runner_tone4:': '🏃🏾', + ':person_running_tone5:': '🏃🏿', + ':runner_tone5:': '🏃🏿', + ':man_running:': '🏃‍♂️', + ':man_running_tone1:': '🏃🏻‍♂️', + ':man_running_light_skin_tone:': '🏃🏻‍♂️', + ':man_running_tone2:': '🏃🏼‍♂️', + ':man_running_medium_light_skin_tone:': '🏃🏼‍♂️', + ':man_running_tone3:': '🏃🏽‍♂️', + ':man_running_medium_skin_tone:': '🏃🏽‍♂️', + ':man_running_tone4:': '🏃🏾‍♂️', + ':man_running_medium_dark_skin_tone:': '🏃🏾‍♂️', + ':man_running_tone5:': '🏃🏿‍♂️', + ':man_running_dark_skin_tone:': '🏃🏿‍♂️', + ':woman_running:': '🏃‍♀️', + ':woman_running_tone1:': '🏃🏻‍♀️', + ':woman_running_light_skin_tone:': '🏃🏻‍♀️', + ':woman_running_tone2:': '🏃🏼‍♀️', + ':woman_running_medium_light_skin_tone:': '🏃🏼‍♀️', + ':woman_running_tone3:': '🏃🏽‍♀️', + ':woman_running_medium_skin_tone:': '🏃🏽‍♀️', + ':woman_running_tone4:': '🏃🏾‍♀️', + ':woman_running_medium_dark_skin_tone:': '🏃🏾‍♀️', + ':woman_running_tone5:': '🏃🏿‍♀️', + ':woman_running_dark_skin_tone:': '🏃🏿‍♀️', + ':person_running_facing_right:': '🏃‍➡️', + ':person_running_facing_right_tone1:': '🏃🏻‍➡️', + ':person_running_facing_right_light_skin_tone:': '🏃🏻‍➡️', + ':person_running_facing_right_tone2:': '🏃🏼‍➡️', + ':person_running_facing_right_medium_light_skin_tone:': '🏃🏼‍➡️', + ':person_running_facing_right_tone3:': '🏃🏽‍➡️', + ':person_running_facing_right_medium_skin_tone:': '🏃🏽‍➡️', + ':person_running_facing_right_tone4:': '🏃🏾‍➡️', + ':person_running_facing_right_medium_dark_skin_tone:': '🏃🏾‍➡️', + ':person_running_facing_right_tone5:': '🏃🏿‍➡️', + ':person_running_facing_right_dark_skin_tone:': '🏃🏿‍➡️', + ':woman_running_facing_right:': '🏃‍♀️‍➡️', + ':woman_running_facing_right_tone1:': '🏃🏻‍♀️‍➡️', + ':woman_running_facing_right_light_skin_tone:': '🏃🏻‍♀️‍➡️', + ':woman_running_facing_right_tone2:': '🏃🏼‍♀️‍➡️', + ':woman_running_facing_right_medium_light_skin_tone:': '🏃🏼‍♀️‍➡️', + ':woman_running_facing_right_tone3:': '🏃🏽‍♀️‍➡️', + ':woman_running_facing_right_medium_skin_tone:': '🏃🏽‍♀️‍➡️', + ':woman_running_facing_right_tone4:': '🏃🏾‍♀️‍➡️', + ':woman_running_facing_right_medium_dark_skin_tone:': '🏃🏾‍♀️‍➡️', + ':woman_running_facing_right_tone5:': '🏃🏿‍♀️‍➡️', + ':woman_running_facing_right_dark_skin_tone:': '🏃🏿‍♀️‍➡️', + ':man_running_facing_right:': '🏃‍♂️‍➡️', + ':man_running_facing_right_tone1:': '🏃🏻‍♂️‍➡️', + ':man_running_facing_right_light_skin_tone:': '🏃🏻‍♂️‍➡️', + ':man_running_facing_right_tone2:': '🏃🏼‍♂️‍➡️', + ':man_running_facing_right_medium_light_skin_tone:': '🏃🏼‍♂️‍➡️', + ':man_running_facing_right_tone3:': '🏃🏽‍♂️‍➡️', + ':man_running_facing_right_medium_skin_tone:': '🏃🏽‍♂️‍➡️', + ':man_running_facing_right_tone4:': '🏃🏾‍♂️‍➡️', + ':man_running_facing_right_medium_dark_skin_tone:': '🏃🏾‍♂️‍➡️', + ':man_running_facing_right_tone5:': '🏃🏿‍♂️‍➡️', + ':man_running_facing_right_dark_skin_tone:': '🏃🏿‍♂️‍➡️', + ':ballet_dancer:': '🧑‍🩰', + ':ballet_dancer_tone1:': '🧑🏻‍🩰', + ':ballet_dancer_tone2:': '🧑🏼‍🩰', + ':ballet_dancer_tone3:': '🧑🏽‍🩰', + ':ballet_dancer_tone4:': '🧑🏾‍🩰', + ':ballet_dancer_tone5:': '🧑🏿‍🩰', + ':dancer:': '💃', + ':woman_dancing:': '💃', + ':dancer_tone1:': '💃🏻', + ':dancer_tone2:': '💃🏼', + ':dancer_tone3:': '💃🏽', + ':dancer_tone4:': '💃🏾', + ':dancer_tone5:': '💃🏿', + ':man_dancing:': '🕺', + ':male_dancer:': '🕺', + ':man_dancing_tone1:': '🕺🏻', + ':male_dancer_tone1:': '🕺🏻', + ':man_dancing_tone2:': '🕺🏼', + ':male_dancer_tone2:': '🕺🏼', + ':man_dancing_tone3:': '🕺🏽', + ':male_dancer_tone3:': '🕺🏽', + ':man_dancing_tone4:': '🕺🏾', + ':male_dancer_tone4:': '🕺🏾', + ':man_dancing_tone5:': '🕺🏿', + ':male_dancer_tone5:': '🕺🏿', + ':levitate:': '🕴️', + ':man_in_business_suit_levitating:': '🕴️', + ':levitate_tone1:': '🕴🏻', + ':man_in_business_suit_levitating_tone1:': '🕴🏻', + ':man_in_business_suit_levitating_light_skin_tone:': '🕴🏻', + ':levitate_tone2:': '🕴🏼', + ':man_in_business_suit_levitating_tone2:': '🕴🏼', + ':man_in_business_suit_levitating_medium_light_skin_tone:': '🕴🏼', + ':levitate_tone3:': '🕴🏽', + ':man_in_business_suit_levitating_tone3:': '🕴🏽', + ':man_in_business_suit_levitating_medium_skin_tone:': '🕴🏽', + ':levitate_tone4:': '🕴🏾', + ':man_in_business_suit_levitating_tone4:': '🕴🏾', + ':man_in_business_suit_levitating_medium_dark_skin_tone:': '🕴🏾', + ':levitate_tone5:': '🕴🏿', + ':man_in_business_suit_levitating_tone5:': '🕴🏿', + ':man_in_business_suit_levitating_dark_skin_tone:': '🕴🏿', + ':people_with_bunny_ears_partying:': '👯', + ':dancers:': '👯', + ':dancers_tone1:': '👯🏻', + ':people_with_bunny_ears_partying_tone1:': '👯🏻', + ':dancers_tone2:': '👯🏼', + ':people_with_bunny_ears_partying_tone2:': '👯🏼', + ':dancers_tone3:': '👯🏽', + ':people_with_bunny_ears_partying_tone3:': '👯🏽', + ':dancers_tone4:': '👯🏾', + ':people_with_bunny_ears_partying_tone4:': '👯🏾', + ':dancers_tone5:': '👯🏿', + ':people_with_bunny_ears_partying_tone5:': '👯🏿', + ':dancers_tone1-2:': '🧑🏻‍🐰‍🧑🏼', + ':people_with_bunny_ears_partying_tone1-2:': '🧑🏻‍🐰‍🧑🏼', + ':dancers_tone1-3:': '🧑🏻‍🐰‍🧑🏽', + ':people_with_bunny_ears_partying_tone1-3:': '🧑🏻‍🐰‍🧑🏽', + ':dancers_tone1-4:': '🧑🏻‍🐰‍🧑🏾', + ':people_with_bunny_ears_partying_tone1-4:': '🧑🏻‍🐰‍🧑🏾', + ':dancers_tone1-5:': '🧑🏻‍🐰‍🧑🏿', + ':people_with_bunny_ears_partying_tone1-5:': '🧑🏻‍🐰‍🧑🏿', + ':dancers_tone2-1:': '🧑🏼‍🐰‍🧑🏻', + ':people_with_bunny_ears_partying_tone2-1:': '🧑🏼‍🐰‍🧑🏻', + ':dancers_tone2-3:': '🧑🏼‍🐰‍🧑🏽', + ':people_with_bunny_ears_partying_tone2-3:': '🧑🏼‍🐰‍🧑🏽', + ':dancers_tone2-4:': '🧑🏼‍🐰‍🧑🏾', + ':people_with_bunny_ears_partying_tone2-4:': '🧑🏼‍🐰‍🧑🏾', + ':dancers_tone2-5:': '🧑🏼‍🐰‍🧑🏿', + ':people_with_bunny_ears_partying_tone2-5:': '🧑🏼‍🐰‍🧑🏿', + ':dancers_tone3-1:': '🧑🏽‍🐰‍🧑🏻', + ':people_with_bunny_ears_partying_tone3-1:': '🧑🏽‍🐰‍🧑🏻', + ':dancers_tone3-2:': '🧑🏽‍🐰‍🧑🏼', + ':people_with_bunny_ears_partying_tone3-2:': '🧑🏽‍🐰‍🧑🏼', + ':dancers_tone3-4:': '🧑🏽‍🐰‍🧑🏾', + ':people_with_bunny_ears_partying_tone3-4:': '🧑🏽‍🐰‍🧑🏾', + ':dancers_tone3-5:': '🧑🏽‍🐰‍🧑🏿', + ':people_with_bunny_ears_partying_tone3-5:': '🧑🏽‍🐰‍🧑🏿', + ':dancers_tone4-1:': '🧑🏾‍🐰‍🧑🏻', + ':people_with_bunny_ears_partying_tone4-1:': '🧑🏾‍🐰‍🧑🏻', + ':dancers_tone4-2:': '🧑🏾‍🐰‍🧑🏼', + ':people_with_bunny_ears_partying_tone4-2:': '🧑🏾‍🐰‍🧑🏼', + ':dancers_tone4-3:': '🧑🏾‍🐰‍🧑🏽', + ':people_with_bunny_ears_partying_tone4-3:': '🧑🏾‍🐰‍🧑🏽', + ':dancers_tone4-5:': '🧑🏾‍🐰‍🧑🏿', + ':people_with_bunny_ears_partying_tone4-5:': '🧑🏾‍🐰‍🧑🏿', + ':dancers_tone5-1:': '🧑🏿‍🐰‍🧑🏻', + ':people_with_bunny_ears_partying_tone5-1:': '🧑🏿‍🐰‍🧑🏻', + ':dancers_tone5-2:': '🧑🏿‍🐰‍🧑🏼', + ':people_with_bunny_ears_partying_tone5-2:': '🧑🏿‍🐰‍🧑🏼', + ':dancers_tone5-3:': '🧑🏿‍🐰‍🧑🏽', + ':people_with_bunny_ears_partying_tone5-3:': '🧑🏿‍🐰‍🧑🏽', + ':dancers_tone5-4:': '🧑🏿‍🐰‍🧑🏾', + ':people_with_bunny_ears_partying_tone5-4:': '🧑🏿‍🐰‍🧑🏾', + ':men_with_bunny_ears_partying:': '👯‍♂️', + ':men_with_bunny_ears_partying_tone1-2:': '👨🏻‍🐰‍👨🏼', + ':men_with_bunny_ears_partying_tone1-3:': '👨🏻‍🐰‍👨🏽', + ':men_with_bunny_ears_partying_tone1-4:': '👨🏻‍🐰‍👨🏾', + ':men_with_bunny_ears_partying_tone1-5:': '👨🏻‍🐰‍👨🏿', + ':men_with_bunny_ears_partying_tone2-1:': '👨🏼‍🐰‍👨🏻', + ':men_with_bunny_ears_partying_tone2-3:': '👨🏼‍🐰‍👨🏽', + ':men_with_bunny_ears_partying_tone2-4:': '👨🏼‍🐰‍👨🏾', + ':men_with_bunny_ears_partying_tone2-5:': '👨🏼‍🐰‍👨🏿', + ':men_with_bunny_ears_partying_tone3-1:': '👨🏽‍🐰‍👨🏻', + ':men_with_bunny_ears_partying_tone3-2:': '👨🏽‍🐰‍👨🏼', + ':men_with_bunny_ears_partying_tone3-4:': '👨🏽‍🐰‍👨🏾', + ':men_with_bunny_ears_partying_tone3-5:': '👨🏽‍🐰‍👨🏿', + ':men_with_bunny_ears_partying_tone4-1:': '👨🏾‍🐰‍👨🏻', + ':men_with_bunny_ears_partying_tone4-2:': '👨🏾‍🐰‍👨🏼', + ':men_with_bunny_ears_partying_tone4-3:': '👨🏾‍🐰‍👨🏽', + ':men_with_bunny_ears_partying_tone4-5:': '👨🏾‍🐰‍👨🏿', + ':men_with_bunny_ears_partying_tone5-1:': '👨🏿‍🐰‍👨🏻', + ':men_with_bunny_ears_partying_tone5-2:': '👨🏿‍🐰‍👨🏼', + ':men_with_bunny_ears_partying_tone5-3:': '👨🏿‍🐰‍👨🏽', + ':men_with_bunny_ears_partying_tone5-4:': '👨🏿‍🐰‍👨🏾', + ':men_with_bunny_ears_partying_tone1:': '👯🏻‍♂️', + ':men_with_bunny_ears_partying_tone2:': '👯🏼‍♂️', + ':men_with_bunny_ears_partying_tone3:': '👯🏽‍♂️', + ':men_with_bunny_ears_partying_tone4:': '👯🏾‍♂️', + ':men_with_bunny_ears_partying_tone5:': '👯🏿‍♂️', + ':women_with_bunny_ears_partying:': '👯‍♀️', + ':women_with_bunny_ears_partying_tone1-2:': '👩🏻‍🐰‍👩🏼', + ':women_with_bunny_ears_partying_tone1-3:': '👩🏻‍🐰‍👩🏽', + ':women_with_bunny_ears_partying_tone1-4:': '👩🏻‍🐰‍👩🏾', + ':women_with_bunny_ears_partying_tone1-5:': '👩🏻‍🐰‍👩🏿', + ':women_with_bunny_ears_partying_tone2-1:': '👩🏼‍🐰‍👩🏻', + ':women_with_bunny_ears_partying_tone2-3:': '👩🏼‍🐰‍👩🏽', + ':women_with_bunny_ears_partying_tone2-4:': '👩🏼‍🐰‍👩🏾', + ':women_with_bunny_ears_partying_tone2-5:': '👩🏼‍🐰‍👩🏿', + ':women_with_bunny_ears_partying_tone3-1:': '👩🏽‍🐰‍👩🏻', + ':women_with_bunny_ears_partying_tone3-2:': '👩🏽‍🐰‍👩🏼', + ':women_with_bunny_ears_partying_tone3-4:': '👩🏽‍🐰‍👩🏾', + ':women_with_bunny_ears_partying_tone3-5:': '👩🏽‍🐰‍👩🏿', + ':women_with_bunny_ears_partying_tone4-1:': '👩🏾‍🐰‍👩🏻', + ':women_with_bunny_ears_partying_tone4-2:': '👩🏾‍🐰‍👩🏼', + ':women_with_bunny_ears_partying_tone4-3:': '👩🏾‍🐰‍👩🏽', + ':women_with_bunny_ears_partying_tone4-5:': '👩🏾‍🐰‍👩🏿', + ':women_with_bunny_ears_partying_tone5-1:': '👩🏿‍🐰‍👩🏻', + ':women_with_bunny_ears_partying_tone5-2:': '👩🏿‍🐰‍👩🏼', + ':women_with_bunny_ears_partying_tone5-3:': '👩🏿‍🐰‍👩🏽', + ':women_with_bunny_ears_partying_tone5-4:': '👩🏿‍🐰‍👩🏾', + ':women_with_bunny_ears_partying_tone1:': '👯🏻‍♀️', + ':women_with_bunny_ears_partying_tone2:': '👯🏼‍♀️', + ':women_with_bunny_ears_partying_tone3:': '👯🏽‍♀️', + ':women_with_bunny_ears_partying_tone4:': '👯🏾‍♀️', + ':women_with_bunny_ears_partying_tone5:': '👯🏿‍♀️', + ':person_in_steamy_room:': '🧖', + ':person_in_steamy_room_tone1:': '🧖🏻', + ':person_in_steamy_room_light_skin_tone:': '🧖🏻', + ':person_in_steamy_room_tone2:': '🧖🏼', + ':person_in_steamy_room_medium_light_skin_tone:': '🧖🏼', + ':person_in_steamy_room_tone3:': '🧖🏽', + ':person_in_steamy_room_medium_skin_tone:': '🧖🏽', + ':person_in_steamy_room_tone4:': '🧖🏾', + ':person_in_steamy_room_medium_dark_skin_tone:': '🧖🏾', + ':person_in_steamy_room_tone5:': '🧖🏿', + ':person_in_steamy_room_dark_skin_tone:': '🧖🏿', + ':man_in_steamy_room:': '🧖‍♂️', + ':man_in_steamy_room_tone1:': '🧖🏻‍♂️', + ':man_in_steamy_room_light_skin_tone:': '🧖🏻‍♂️', + ':man_in_steamy_room_tone2:': '🧖🏼‍♂️', + ':man_in_steamy_room_medium_light_skin_tone:': '🧖🏼‍♂️', + ':man_in_steamy_room_tone3:': '🧖🏽‍♂️', + ':man_in_steamy_room_medium_skin_tone:': '🧖🏽‍♂️', + ':man_in_steamy_room_tone4:': '🧖🏾‍♂️', + ':man_in_steamy_room_medium_dark_skin_tone:': '🧖🏾‍♂️', + ':man_in_steamy_room_tone5:': '🧖🏿‍♂️', + ':man_in_steamy_room_dark_skin_tone:': '🧖🏿‍♂️', + ':woman_in_steamy_room:': '🧖‍♀️', + ':woman_in_steamy_room_tone1:': '🧖🏻‍♀️', + ':woman_in_steamy_room_light_skin_tone:': '🧖🏻‍♀️', + ':woman_in_steamy_room_tone2:': '🧖🏼‍♀️', + ':woman_in_steamy_room_medium_light_skin_tone:': '🧖🏼‍♀️', + ':woman_in_steamy_room_tone3:': '🧖🏽‍♀️', + ':woman_in_steamy_room_medium_skin_tone:': '🧖🏽‍♀️', + ':woman_in_steamy_room_tone4:': '🧖🏾‍♀️', + ':woman_in_steamy_room_medium_dark_skin_tone:': '🧖🏾‍♀️', + ':woman_in_steamy_room_tone5:': '🧖🏿‍♀️', + ':woman_in_steamy_room_dark_skin_tone:': '🧖🏿‍♀️', + ':person_climbing:': '🧗', + ':person_climbing_tone1:': '🧗🏻', + ':person_climbing_light_skin_tone:': '🧗🏻', + ':person_climbing_tone2:': '🧗🏼', + ':person_climbing_medium_light_skin_tone:': '🧗🏼', + ':person_climbing_tone3:': '🧗🏽', + ':person_climbing_medium_skin_tone:': '🧗🏽', + ':person_climbing_tone4:': '🧗🏾', + ':person_climbing_medium_dark_skin_tone:': '🧗🏾', + ':person_climbing_tone5:': '🧗🏿', + ':person_climbing_dark_skin_tone:': '🧗🏿', + ':man_climbing:': '🧗‍♂️', + ':man_climbing_tone1:': '🧗🏻‍♂️', + ':man_climbing_light_skin_tone:': '🧗🏻‍♂️', + ':man_climbing_tone2:': '🧗🏼‍♂️', + ':man_climbing_medium_light_skin_tone:': '🧗🏼‍♂️', + ':man_climbing_tone3:': '🧗🏽‍♂️', + ':man_climbing_medium_skin_tone:': '🧗🏽‍♂️', + ':man_climbing_tone4:': '🧗🏾‍♂️', + ':man_climbing_medium_dark_skin_tone:': '🧗🏾‍♂️', + ':man_climbing_tone5:': '🧗🏿‍♂️', + ':man_climbing_dark_skin_tone:': '🧗🏿‍♂️', + ':woman_climbing:': '🧗‍♀️', + ':woman_climbing_tone1:': '🧗🏻‍♀️', + ':woman_climbing_light_skin_tone:': '🧗🏻‍♀️', + ':woman_climbing_tone2:': '🧗🏼‍♀️', + ':woman_climbing_medium_light_skin_tone:': '🧗🏼‍♀️', + ':woman_climbing_tone3:': '🧗🏽‍♀️', + ':woman_climbing_medium_skin_tone:': '🧗🏽‍♀️', + ':woman_climbing_tone4:': '🧗🏾‍♀️', + ':woman_climbing_medium_dark_skin_tone:': '🧗🏾‍♀️', + ':woman_climbing_tone5:': '🧗🏿‍♀️', + ':woman_climbing_dark_skin_tone:': '🧗🏿‍♀️', + ':person_fencing:': '🤺', + ':fencer:': '🤺', + ':fencing:': '🤺', + ':horse_racing:': '🏇', + ':horse_racing_tone1:': '🏇🏻', + ':horse_racing_tone2:': '🏇🏼', + ':horse_racing_tone3:': '🏇🏽', + ':horse_racing_tone4:': '🏇🏾', + ':horse_racing_tone5:': '🏇🏿', + ':skier:': '⛷️', + ':snowboarder:': '🏂️', + ':snowboarder_tone1:': '🏂🏻', + ':snowboarder_light_skin_tone:': '🏂🏻', + ':snowboarder_tone2:': '🏂🏼', + ':snowboarder_medium_light_skin_tone:': '🏂🏼', + ':snowboarder_tone3:': '🏂🏽', + ':snowboarder_medium_skin_tone:': '🏂🏽', + ':snowboarder_tone4:': '🏂🏾', + ':snowboarder_medium_dark_skin_tone:': '🏂🏾', + ':snowboarder_tone5:': '🏂🏿', + ':snowboarder_dark_skin_tone:': '🏂🏿', + ':person_golfing:': '🏌️', + ':golfer:': '🏌️', + ':person_golfing_tone1:': '🏌🏻', + ':person_golfing_light_skin_tone:': '🏌🏻', + ':person_golfing_tone2:': '🏌🏼', + ':person_golfing_medium_light_skin_tone:': '🏌🏼', + ':person_golfing_tone3:': '🏌🏽', + ':person_golfing_medium_skin_tone:': '🏌🏽', + ':person_golfing_tone4:': '🏌🏾', + ':person_golfing_medium_dark_skin_tone:': '🏌🏾', + ':person_golfing_tone5:': '🏌🏿', + ':person_golfing_dark_skin_tone:': '🏌🏿', + ':man_golfing:': '🏌️‍♂️', + ':man_golfing_tone1:': '🏌🏻‍♂️', + ':man_golfing_light_skin_tone:': '🏌🏻‍♂️', + ':man_golfing_tone2:': '🏌🏼‍♂️', + ':man_golfing_medium_light_skin_tone:': '🏌🏼‍♂️', + ':man_golfing_tone3:': '🏌🏽‍♂️', + ':man_golfing_medium_skin_tone:': '🏌🏽‍♂️', + ':man_golfing_tone4:': '🏌🏾‍♂️', + ':man_golfing_medium_dark_skin_tone:': '🏌🏾‍♂️', + ':man_golfing_tone5:': '🏌🏿‍♂️', + ':man_golfing_dark_skin_tone:': '🏌🏿‍♂️', + ':woman_golfing:': '🏌️‍♀️', + ':woman_golfing_tone1:': '🏌🏻‍♀️', + ':woman_golfing_light_skin_tone:': '🏌🏻‍♀️', + ':woman_golfing_tone2:': '🏌🏼‍♀️', + ':woman_golfing_medium_light_skin_tone:': '🏌🏼‍♀️', + ':woman_golfing_tone3:': '🏌🏽‍♀️', + ':woman_golfing_medium_skin_tone:': '🏌🏽‍♀️', + ':woman_golfing_tone4:': '🏌🏾‍♀️', + ':woman_golfing_medium_dark_skin_tone:': '🏌🏾‍♀️', + ':woman_golfing_tone5:': '🏌🏿‍♀️', + ':woman_golfing_dark_skin_tone:': '🏌🏿‍♀️', + ':person_surfing:': '🏄️', + ':surfer:': '🏄️', + ':person_surfing_tone1:': '🏄🏻', + ':surfer_tone1:': '🏄🏻', + ':person_surfing_tone2:': '🏄🏼', + ':surfer_tone2:': '🏄🏼', + ':person_surfing_tone3:': '🏄🏽', + ':surfer_tone3:': '🏄🏽', + ':person_surfing_tone4:': '🏄🏾', + ':surfer_tone4:': '🏄🏾', + ':person_surfing_tone5:': '🏄🏿', + ':surfer_tone5:': '🏄🏿', + ':man_surfing:': '🏄‍♂️', + ':man_surfing_tone1:': '🏄🏻‍♂️', + ':man_surfing_light_skin_tone:': '🏄🏻‍♂️', + ':man_surfing_tone2:': '🏄🏼‍♂️', + ':man_surfing_medium_light_skin_tone:': '🏄🏼‍♂️', + ':man_surfing_tone3:': '🏄🏽‍♂️', + ':man_surfing_medium_skin_tone:': '🏄🏽‍♂️', + ':man_surfing_tone4:': '🏄🏾‍♂️', + ':man_surfing_medium_dark_skin_tone:': '🏄🏾‍♂️', + ':man_surfing_tone5:': '🏄🏿‍♂️', + ':man_surfing_dark_skin_tone:': '🏄🏿‍♂️', + ':woman_surfing:': '🏄‍♀️', + ':woman_surfing_tone1:': '🏄🏻‍♀️', + ':woman_surfing_light_skin_tone:': '🏄🏻‍♀️', + ':woman_surfing_tone2:': '🏄🏼‍♀️', + ':woman_surfing_medium_light_skin_tone:': '🏄🏼‍♀️', + ':woman_surfing_tone3:': '🏄🏽‍♀️', + ':woman_surfing_medium_skin_tone:': '🏄🏽‍♀️', + ':woman_surfing_tone4:': '🏄🏾‍♀️', + ':woman_surfing_medium_dark_skin_tone:': '🏄🏾‍♀️', + ':woman_surfing_tone5:': '🏄🏿‍♀️', + ':woman_surfing_dark_skin_tone:': '🏄🏿‍♀️', + ':person_rowing_boat:': '🚣', + ':rowboat:': '🚣', + ':person_rowing_boat_tone1:': '🚣🏻', + ':rowboat_tone1:': '🚣🏻', + ':person_rowing_boat_tone2:': '🚣🏼', + ':rowboat_tone2:': '🚣🏼', + ':person_rowing_boat_tone3:': '🚣🏽', + ':rowboat_tone3:': '🚣🏽', + ':person_rowing_boat_tone4:': '🚣🏾', + ':rowboat_tone4:': '🚣🏾', + ':person_rowing_boat_tone5:': '🚣🏿', + ':rowboat_tone5:': '🚣🏿', + ':man_rowing_boat:': '🚣‍♂️', + ':man_rowing_boat_tone1:': '🚣🏻‍♂️', + ':man_rowing_boat_light_skin_tone:': '🚣🏻‍♂️', + ':man_rowing_boat_tone2:': '🚣🏼‍♂️', + ':man_rowing_boat_medium_light_skin_tone:': '🚣🏼‍♂️', + ':man_rowing_boat_tone3:': '🚣🏽‍♂️', + ':man_rowing_boat_medium_skin_tone:': '🚣🏽‍♂️', + ':man_rowing_boat_tone4:': '🚣🏾‍♂️', + ':man_rowing_boat_medium_dark_skin_tone:': '🚣🏾‍♂️', + ':man_rowing_boat_tone5:': '🚣🏿‍♂️', + ':man_rowing_boat_dark_skin_tone:': '🚣🏿‍♂️', + ':woman_rowing_boat:': '🚣‍♀️', + ':woman_rowing_boat_tone1:': '🚣🏻‍♀️', + ':woman_rowing_boat_light_skin_tone:': '🚣🏻‍♀️', + ':woman_rowing_boat_tone2:': '🚣🏼‍♀️', + ':woman_rowing_boat_medium_light_skin_tone:': '🚣🏼‍♀️', + ':woman_rowing_boat_tone3:': '🚣🏽‍♀️', + ':woman_rowing_boat_medium_skin_tone:': '🚣🏽‍♀️', + ':woman_rowing_boat_tone4:': '🚣🏾‍♀️', + ':woman_rowing_boat_medium_dark_skin_tone:': '🚣🏾‍♀️', + ':woman_rowing_boat_tone5:': '🚣🏿‍♀️', + ':woman_rowing_boat_dark_skin_tone:': '🚣🏿‍♀️', + ':person_swimming:': '🏊️', + ':swimmer:': '🏊️', + ':person_swimming_tone1:': '🏊🏻', + ':swimmer_tone1:': '🏊🏻', + ':person_swimming_tone2:': '🏊🏼', + ':swimmer_tone2:': '🏊🏼', + ':person_swimming_tone3:': '🏊🏽', + ':swimmer_tone3:': '🏊🏽', + ':person_swimming_tone4:': '🏊🏾', + ':swimmer_tone4:': '🏊🏾', + ':person_swimming_tone5:': '🏊🏿', + ':swimmer_tone5:': '🏊🏿', + ':man_swimming:': '🏊‍♂️', + ':man_swimming_tone1:': '🏊🏻‍♂️', + ':man_swimming_light_skin_tone:': '🏊🏻‍♂️', + ':man_swimming_tone2:': '🏊🏼‍♂️', + ':man_swimming_medium_light_skin_tone:': '🏊🏼‍♂️', + ':man_swimming_tone3:': '🏊🏽‍♂️', + ':man_swimming_medium_skin_tone:': '🏊🏽‍♂️', + ':man_swimming_tone4:': '🏊🏾‍♂️', + ':man_swimming_medium_dark_skin_tone:': '🏊🏾‍♂️', + ':man_swimming_tone5:': '🏊🏿‍♂️', + ':man_swimming_dark_skin_tone:': '🏊🏿‍♂️', + ':woman_swimming:': '🏊‍♀️', + ':woman_swimming_tone1:': '🏊🏻‍♀️', + ':woman_swimming_light_skin_tone:': '🏊🏻‍♀️', + ':woman_swimming_tone2:': '🏊🏼‍♀️', + ':woman_swimming_medium_light_skin_tone:': '🏊🏼‍♀️', + ':woman_swimming_tone3:': '🏊🏽‍♀️', + ':woman_swimming_medium_skin_tone:': '🏊🏽‍♀️', + ':woman_swimming_tone4:': '🏊🏾‍♀️', + ':woman_swimming_medium_dark_skin_tone:': '🏊🏾‍♀️', + ':woman_swimming_tone5:': '🏊🏿‍♀️', + ':woman_swimming_dark_skin_tone:': '🏊🏿‍♀️', + ':person_bouncing_ball:': '⛹️', + ':basketball_player:': '⛹️', + ':person_with_ball:': '⛹️', + ':person_bouncing_ball_tone1:': '⛹🏻', + ':basketball_player_tone1:': '⛹🏻', + ':person_with_ball_tone1:': '⛹🏻', + ':person_bouncing_ball_tone2:': '⛹🏼', + ':basketball_player_tone2:': '⛹🏼', + ':person_with_ball_tone2:': '⛹🏼', + ':person_bouncing_ball_tone3:': '⛹🏽', + ':basketball_player_tone3:': '⛹🏽', + ':person_with_ball_tone3:': '⛹🏽', + ':person_bouncing_ball_tone4:': '⛹🏾', + ':basketball_player_tone4:': '⛹🏾', + ':person_with_ball_tone4:': '⛹🏾', + ':person_bouncing_ball_tone5:': '⛹🏿', + ':basketball_player_tone5:': '⛹🏿', + ':person_with_ball_tone5:': '⛹🏿', + ':man_bouncing_ball:': '⛹️‍♂️', + ':man_bouncing_ball_tone1:': '⛹🏻‍♂️', + ':man_bouncing_ball_light_skin_tone:': '⛹🏻‍♂️', + ':man_bouncing_ball_tone2:': '⛹🏼‍♂️', + ':man_bouncing_ball_medium_light_skin_tone:': '⛹🏼‍♂️', + ':man_bouncing_ball_tone3:': '⛹🏽‍♂️', + ':man_bouncing_ball_medium_skin_tone:': '⛹🏽‍♂️', + ':man_bouncing_ball_tone4:': '⛹🏾‍♂️', + ':man_bouncing_ball_medium_dark_skin_tone:': '⛹🏾‍♂️', + ':man_bouncing_ball_tone5:': '⛹🏿‍♂️', + ':man_bouncing_ball_dark_skin_tone:': '⛹🏿‍♂️', + ':woman_bouncing_ball:': '⛹️‍♀️', + ':woman_bouncing_ball_tone1:': '⛹🏻‍♀️', + ':woman_bouncing_ball_light_skin_tone:': '⛹🏻‍♀️', + ':woman_bouncing_ball_tone2:': '⛹🏼‍♀️', + ':woman_bouncing_ball_medium_light_skin_tone:': '⛹🏼‍♀️', + ':woman_bouncing_ball_tone3:': '⛹🏽‍♀️', + ':woman_bouncing_ball_medium_skin_tone:': '⛹🏽‍♀️', + ':woman_bouncing_ball_tone4:': '⛹🏾‍♀️', + ':woman_bouncing_ball_medium_dark_skin_tone:': '⛹🏾‍♀️', + ':woman_bouncing_ball_tone5:': '⛹🏿‍♀️', + ':woman_bouncing_ball_dark_skin_tone:': '⛹🏿‍♀️', + ':person_lifting_weights:': '🏋️', + ':lifter:': '🏋️', + ':weight_lifter:': '🏋️', + ':person_lifting_weights_tone1:': '🏋🏻', + ':lifter_tone1:': '🏋🏻', + ':weight_lifter_tone1:': '🏋🏻', + ':person_lifting_weights_tone2:': '🏋🏼', + ':lifter_tone2:': '🏋🏼', + ':weight_lifter_tone2:': '🏋🏼', + ':person_lifting_weights_tone3:': '🏋🏽', + ':lifter_tone3:': '🏋🏽', + ':weight_lifter_tone3:': '🏋🏽', + ':person_lifting_weights_tone4:': '🏋🏾', + ':lifter_tone4:': '🏋🏾', + ':weight_lifter_tone4:': '🏋🏾', + ':person_lifting_weights_tone5:': '🏋🏿', + ':lifter_tone5:': '🏋🏿', + ':weight_lifter_tone5:': '🏋🏿', + ':man_lifting_weights:': '🏋️‍♂️', + ':man_lifting_weights_tone1:': '🏋🏻‍♂️', + ':man_lifting_weights_light_skin_tone:': '🏋🏻‍♂️', + ':man_lifting_weights_tone2:': '🏋🏼‍♂️', + ':man_lifting_weights_medium_light_skin_tone:': '🏋🏼‍♂️', + ':man_lifting_weights_tone3:': '🏋🏽‍♂️', + ':man_lifting_weights_medium_skin_tone:': '🏋🏽‍♂️', + ':man_lifting_weights_tone4:': '🏋🏾‍♂️', + ':man_lifting_weights_medium_dark_skin_tone:': '🏋🏾‍♂️', + ':man_lifting_weights_tone5:': '🏋🏿‍♂️', + ':man_lifting_weights_dark_skin_tone:': '🏋🏿‍♂️', + ':woman_lifting_weights:': '🏋️‍♀️', + ':woman_lifting_weights_tone1:': '🏋🏻‍♀️', + ':woman_lifting_weights_light_skin_tone:': '🏋🏻‍♀️', + ':woman_lifting_weights_tone2:': '🏋🏼‍♀️', + ':woman_lifting_weights_medium_light_skin_tone:': '🏋🏼‍♀️', + ':woman_lifting_weights_tone3:': '🏋🏽‍♀️', + ':woman_lifting_weights_medium_skin_tone:': '🏋🏽‍♀️', + ':woman_lifting_weights_tone4:': '🏋🏾‍♀️', + ':woman_lifting_weights_medium_dark_skin_tone:': '🏋🏾‍♀️', + ':woman_lifting_weights_tone5:': '🏋🏿‍♀️', + ':woman_lifting_weights_dark_skin_tone:': '🏋🏿‍♀️', + ':person_biking:': '🚴', + ':bicyclist:': '🚴', + ':person_biking_tone1:': '🚴🏻', + ':bicyclist_tone1:': '🚴🏻', + ':person_biking_tone2:': '🚴🏼', + ':bicyclist_tone2:': '🚴🏼', + ':person_biking_tone3:': '🚴🏽', + ':bicyclist_tone3:': '🚴🏽', + ':person_biking_tone4:': '🚴🏾', + ':bicyclist_tone4:': '🚴🏾', + ':person_biking_tone5:': '🚴🏿', + ':bicyclist_tone5:': '🚴🏿', + ':man_biking:': '🚴‍♂️', + ':man_biking_tone1:': '🚴🏻‍♂️', + ':man_biking_light_skin_tone:': '🚴🏻‍♂️', + ':man_biking_tone2:': '🚴🏼‍♂️', + ':man_biking_medium_light_skin_tone:': '🚴🏼‍♂️', + ':man_biking_tone3:': '🚴🏽‍♂️', + ':man_biking_medium_skin_tone:': '🚴🏽‍♂️', + ':man_biking_tone4:': '🚴🏾‍♂️', + ':man_biking_medium_dark_skin_tone:': '🚴🏾‍♂️', + ':man_biking_tone5:': '🚴🏿‍♂️', + ':man_biking_dark_skin_tone:': '🚴🏿‍♂️', + ':woman_biking:': '🚴‍♀️', + ':woman_biking_tone1:': '🚴🏻‍♀️', + ':woman_biking_light_skin_tone:': '🚴🏻‍♀️', + ':woman_biking_tone2:': '🚴🏼‍♀️', + ':woman_biking_medium_light_skin_tone:': '🚴🏼‍♀️', + ':woman_biking_tone3:': '🚴🏽‍♀️', + ':woman_biking_medium_skin_tone:': '🚴🏽‍♀️', + ':woman_biking_tone4:': '🚴🏾‍♀️', + ':woman_biking_medium_dark_skin_tone:': '🚴🏾‍♀️', + ':woman_biking_tone5:': '🚴🏿‍♀️', + ':woman_biking_dark_skin_tone:': '🚴🏿‍♀️', + ':person_mountain_biking:': '🚵', + ':mountain_bicyclist:': '🚵', + ':person_mountain_biking_tone1:': '🚵🏻', + ':mountain_bicyclist_tone1:': '🚵🏻', + ':person_mountain_biking_tone2:': '🚵🏼', + ':mountain_bicyclist_tone2:': '🚵🏼', + ':person_mountain_biking_tone3:': '🚵🏽', + ':mountain_bicyclist_tone3:': '🚵🏽', + ':person_mountain_biking_tone4:': '🚵🏾', + ':mountain_bicyclist_tone4:': '🚵🏾', + ':person_mountain_biking_tone5:': '🚵🏿', + ':mountain_bicyclist_tone5:': '🚵🏿', + ':man_mountain_biking:': '🚵‍♂️', + ':man_mountain_biking_tone1:': '🚵🏻‍♂️', + ':man_mountain_biking_light_skin_tone:': '🚵🏻‍♂️', + ':man_mountain_biking_tone2:': '🚵🏼‍♂️', + ':man_mountain_biking_medium_light_skin_tone:': '🚵🏼‍♂️', + ':man_mountain_biking_tone3:': '🚵🏽‍♂️', + ':man_mountain_biking_medium_skin_tone:': '🚵🏽‍♂️', + ':man_mountain_biking_tone4:': '🚵🏾‍♂️', + ':man_mountain_biking_medium_dark_skin_tone:': '🚵🏾‍♂️', + ':man_mountain_biking_tone5:': '🚵🏿‍♂️', + ':man_mountain_biking_dark_skin_tone:': '🚵🏿‍♂️', + ':woman_mountain_biking:': '🚵‍♀️', + ':woman_mountain_biking_tone1:': '🚵🏻‍♀️', + ':woman_mountain_biking_light_skin_tone:': '🚵🏻‍♀️', + ':woman_mountain_biking_tone2:': '🚵🏼‍♀️', + ':woman_mountain_biking_medium_light_skin_tone:': '🚵🏼‍♀️', + ':woman_mountain_biking_tone3:': '🚵🏽‍♀️', + ':woman_mountain_biking_medium_skin_tone:': '🚵🏽‍♀️', + ':woman_mountain_biking_tone4:': '🚵🏾‍♀️', + ':woman_mountain_biking_medium_dark_skin_tone:': '🚵🏾‍♀️', + ':woman_mountain_biking_tone5:': '🚵🏿‍♀️', + ':woman_mountain_biking_dark_skin_tone:': '🚵🏿‍♀️', + ':person_doing_cartwheel:': '🤸', + ':cartwheel:': '🤸', + ':person_doing_cartwheel_tone1:': '🤸🏻', + ':cartwheel_tone1:': '🤸🏻', + ':person_doing_cartwheel_tone2:': '🤸🏼', + ':cartwheel_tone2:': '🤸🏼', + ':person_doing_cartwheel_tone3:': '🤸🏽', + ':cartwheel_tone3:': '🤸🏽', + ':person_doing_cartwheel_tone4:': '🤸🏾', + ':cartwheel_tone4:': '🤸🏾', + ':person_doing_cartwheel_tone5:': '🤸🏿', + ':cartwheel_tone5:': '🤸🏿', + ':man_cartwheeling:': '🤸‍♂️', + ':man_cartwheeling_tone1:': '🤸🏻‍♂️', + ':man_cartwheeling_light_skin_tone:': '🤸🏻‍♂️', + ':man_cartwheeling_tone2:': '🤸🏼‍♂️', + ':man_cartwheeling_medium_light_skin_tone:': '🤸🏼‍♂️', + ':man_cartwheeling_tone3:': '🤸🏽‍♂️', + ':man_cartwheeling_medium_skin_tone:': '🤸🏽‍♂️', + ':man_cartwheeling_tone4:': '🤸🏾‍♂️', + ':man_cartwheeling_medium_dark_skin_tone:': '🤸🏾‍♂️', + ':man_cartwheeling_tone5:': '🤸🏿‍♂️', + ':man_cartwheeling_dark_skin_tone:': '🤸🏿‍♂️', + ':woman_cartwheeling:': '🤸‍♀️', + ':woman_cartwheeling_tone1:': '🤸🏻‍♀️', + ':woman_cartwheeling_light_skin_tone:': '🤸🏻‍♀️', + ':woman_cartwheeling_tone2:': '🤸🏼‍♀️', + ':woman_cartwheeling_medium_light_skin_tone:': '🤸🏼‍♀️', + ':woman_cartwheeling_tone3:': '🤸🏽‍♀️', + ':woman_cartwheeling_medium_skin_tone:': '🤸🏽‍♀️', + ':woman_cartwheeling_tone4:': '🤸🏾‍♀️', + ':woman_cartwheeling_medium_dark_skin_tone:': '🤸🏾‍♀️', + ':woman_cartwheeling_tone5:': '🤸🏿‍♀️', + ':woman_cartwheeling_dark_skin_tone:': '🤸🏿‍♀️', + ':people_wrestling:': '🤼', + ':wrestlers:': '🤼', + ':wrestling:': '🤼', + ':people_wrestling_tone1:': '🤼🏻', + ':wrestlers_tone1:': '🤼🏻', + ':wrestling_tone1:': '🤼🏻', + ':people_wrestling_tone2:': '🤼🏼', + ':wrestlers_tone2:': '🤼🏼', + ':wrestling_tone2:': '🤼🏼', + ':people_wrestling_tone3:': '🤼🏽', + ':wrestlers_tone3:': '🤼🏽', + ':wrestling_tone3:': '🤼🏽', + ':people_wrestling_tone4:': '🤼🏾', + ':wrestlers_tone4:': '🤼🏾', + ':wrestling_tone4:': '🤼🏾', + ':people_wrestling_tone5:': '🤼🏿', + ':wrestlers_tone5:': '🤼🏿', + ':wrestling_tone5:': '🤼🏿', + ':people_wrestling_tone1-2:': '🧑🏻‍🫯‍🧑🏼', + ':wrestlers_tone1-2:': '🧑🏻‍🫯‍🧑🏼', + ':wrestling_tone1-2:': '🧑🏻‍🫯‍🧑🏼', + ':people_wrestling_tone1-3:': '🧑🏻‍🫯‍🧑🏽', + ':wrestlers_tone1-3:': '🧑🏻‍🫯‍🧑🏽', + ':wrestling_tone1-3:': '🧑🏻‍🫯‍🧑🏽', + ':people_wrestling_tone1-4:': '🧑🏻‍🫯‍🧑🏾', + ':wrestlers_tone1-4:': '🧑🏻‍🫯‍🧑🏾', + ':wrestling_tone1-4:': '🧑🏻‍🫯‍🧑🏾', + ':people_wrestling_tone1-5:': '🧑🏻‍🫯‍🧑🏿', + ':wrestlers_tone1-5:': '🧑🏻‍🫯‍🧑🏿', + ':wrestling_tone1-5:': '🧑🏻‍🫯‍🧑🏿', + ':people_wrestling_tone2-1:': '🧑🏼‍🫯‍🧑🏻', + ':wrestlers_tone2-1:': '🧑🏼‍🫯‍🧑🏻', + ':wrestling_tone2-1:': '🧑🏼‍🫯‍🧑🏻', + ':people_wrestling_tone2-3:': '🧑🏼‍🫯‍🧑🏽', + ':wrestlers_tone2-3:': '🧑🏼‍🫯‍🧑🏽', + ':wrestling_tone2-3:': '🧑🏼‍🫯‍🧑🏽', + ':people_wrestling_tone2-4:': '🧑🏼‍🫯‍🧑🏾', + ':wrestlers_tone2-4:': '🧑🏼‍🫯‍🧑🏾', + ':wrestling_tone2-4:': '🧑🏼‍🫯‍🧑🏾', + ':people_wrestling_tone2-5:': '🧑🏼‍🫯‍🧑🏿', + ':wrestlers_tone2-5:': '🧑🏼‍🫯‍🧑🏿', + ':wrestling_tone2-5:': '🧑🏼‍🫯‍🧑🏿', + ':people_wrestling_tone3-1:': '🧑🏽‍🫯‍🧑🏻', + ':wrestlers_tone3-1:': '🧑🏽‍🫯‍🧑🏻', + ':wrestling_tone3-1:': '🧑🏽‍🫯‍🧑🏻', + ':people_wrestling_tone3-2:': '🧑🏽‍🫯‍🧑🏼', + ':wrestlers_tone3-2:': '🧑🏽‍🫯‍🧑🏼', + ':wrestling_tone3-2:': '🧑🏽‍🫯‍🧑🏼', + ':people_wrestling_tone3-4:': '🧑🏽‍🫯‍🧑🏾', + ':wrestlers_tone3-4:': '🧑🏽‍🫯‍🧑🏾', + ':wrestling_tone3-4:': '🧑🏽‍🫯‍🧑🏾', + ':people_wrestling_tone3-5:': '🧑🏽‍🫯‍🧑🏿', + ':wrestlers_tone3-5:': '🧑🏽‍🫯‍🧑🏿', + ':wrestling_tone3-5:': '🧑🏽‍🫯‍🧑🏿', + ':people_wrestling_tone4-1:': '🧑🏾‍🫯‍🧑🏻', + ':wrestlers_tone4-1:': '🧑🏾‍🫯‍🧑🏻', + ':wrestling_tone4-1:': '🧑🏾‍🫯‍🧑🏻', + ':people_wrestling_tone4-2:': '🧑🏾‍🫯‍🧑🏼', + ':wrestlers_tone4-2:': '🧑🏾‍🫯‍🧑🏼', + ':wrestling_tone4-2:': '🧑🏾‍🫯‍🧑🏼', + ':people_wrestling_tone4-3:': '🧑🏾‍🫯‍🧑🏽', + ':wrestlers_tone4-3:': '🧑🏾‍🫯‍🧑🏽', + ':wrestling_tone4-3:': '🧑🏾‍🫯‍🧑🏽', + ':people_wrestling_tone4-5:': '🧑🏾‍🫯‍🧑🏿', + ':wrestlers_tone4-5:': '🧑🏾‍🫯‍🧑🏿', + ':wrestling_tone4-5:': '🧑🏾‍🫯‍🧑🏿', + ':people_wrestling_tone5-1:': '🧑🏿‍🫯‍🧑🏻', + ':wrestlers_tone5-1:': '🧑🏿‍🫯‍🧑🏻', + ':wrestling_tone5-1:': '🧑🏿‍🫯‍🧑🏻', + ':people_wrestling_tone5-2:': '🧑🏿‍🫯‍🧑🏼', + ':wrestlers_tone5-2:': '🧑🏿‍🫯‍🧑🏼', + ':wrestling_tone5-2:': '🧑🏿‍🫯‍🧑🏼', + ':people_wrestling_tone5-3:': '🧑🏿‍🫯‍🧑🏽', + ':wrestlers_tone5-3:': '🧑🏿‍🫯‍🧑🏽', + ':wrestling_tone5-3:': '🧑🏿‍🫯‍🧑🏽', + ':people_wrestling_tone5-4:': '🧑🏿‍🫯‍🧑🏾', + ':wrestlers_tone5-4:': '🧑🏿‍🫯‍🧑🏾', + ':wrestling_tone5-4:': '🧑🏿‍🫯‍🧑🏾', + ':men_wrestling:': '🤼‍♂️', + ':men_wrestling_tone1-2:': '👨🏻‍🫯‍👨🏼', + ':men_wrestling_tone1-3:': '👨🏻‍🫯‍👨🏽', + ':men_wrestling_tone1-4:': '👨🏻‍🫯‍👨🏾', + ':men_wrestling_tone1-5:': '👨🏻‍🫯‍👨🏿', + ':men_wrestling_tone2-1:': '👨🏼‍🫯‍👨🏻', + ':men_wrestling_tone2-3:': '👨🏼‍🫯‍👨🏽', + ':men_wrestling_tone2-4:': '👨🏼‍🫯‍👨🏾', + ':men_wrestling_tone2-5:': '👨🏼‍🫯‍👨🏿', + ':men_wrestling_tone3-1:': '👨🏽‍🫯‍👨🏻', + ':men_wrestling_tone3-2:': '👨🏽‍🫯‍👨🏼', + ':men_wrestling_tone3-4:': '👨🏽‍🫯‍👨🏾', + ':men_wrestling_tone3-5:': '👨🏽‍🫯‍👨🏿', + ':men_wrestling_tone4-1:': '👨🏾‍🫯‍👨🏻', + ':men_wrestling_tone4-2:': '👨🏾‍🫯‍👨🏼', + ':men_wrestling_tone4-3:': '👨🏾‍🫯‍👨🏽', + ':men_wrestling_tone4-5:': '👨🏾‍🫯‍👨🏿', + ':men_wrestling_tone5-1:': '👨🏿‍🫯‍👨🏻', + ':men_wrestling_tone5-2:': '👨🏿‍🫯‍👨🏼', + ':men_wrestling_tone5-3:': '👨🏿‍🫯‍👨🏽', + ':men_wrestling_tone5-4:': '👨🏿‍🫯‍👨🏾', + ':men_wrestling_tone1:': '🤼🏻‍♂️', + ':men_wrestling_tone2:': '🤼🏼‍♂️', + ':men_wrestling_tone3:': '🤼🏽‍♂️', + ':men_wrestling_tone4:': '🤼🏾‍♂️', + ':men_wrestling_tone5:': '🤼🏿‍♂️', + ':women_wrestling:': '🤼‍♀️', + ':women_wrestling_tone1-2:': '👩🏻‍🫯‍👩🏼', + ':women_wrestling_tone1-3:': '👩🏻‍🫯‍👩🏽', + ':women_wrestling_tone1-4:': '👩🏻‍🫯‍👩🏾', + ':women_wrestling_tone1-5:': '👩🏻‍🫯‍👩🏿', + ':women_wrestling_tone2-1:': '👩🏼‍🫯‍👩🏻', + ':women_wrestling_tone2-3:': '👩🏼‍🫯‍👩🏽', + ':women_wrestling_tone2-4:': '👩🏼‍🫯‍👩🏾', + ':women_wrestling_tone2-5:': '👩🏼‍🫯‍👩🏿', + ':women_wrestling_tone3-1:': '👩🏽‍🫯‍👩🏻', + ':women_wrestling_tone3-2:': '👩🏽‍🫯‍👩🏼', + ':women_wrestling_tone3-4:': '👩🏽‍🫯‍👩🏾', + ':women_wrestling_tone3-5:': '👩🏽‍🫯‍👩🏿', + ':women_wrestling_tone4-1:': '👩🏾‍🫯‍👩🏻', + ':women_wrestling_tone4-2:': '👩🏾‍🫯‍👩🏼', + ':women_wrestling_tone4-3:': '👩🏾‍🫯‍👩🏽', + ':women_wrestling_tone4-5:': '👩🏾‍🫯‍👩🏿', + ':women_wrestling_tone5-1:': '👩🏿‍🫯‍👩🏻', + ':women_wrestling_tone5-2:': '👩🏿‍🫯‍👩🏼', + ':women_wrestling_tone5-3:': '👩🏿‍🫯‍👩🏽', + ':women_wrestling_tone5-4:': '👩🏿‍🫯‍👩🏾', + ':women_wrestling_tone1:': '🤼🏻‍♀️', + ':women_wrestling_tone2:': '🤼🏼‍♀️', + ':women_wrestling_tone3:': '🤼🏽‍♀️', + ':women_wrestling_tone4:': '🤼🏾‍♀️', + ':women_wrestling_tone5:': '🤼🏿‍♀️', + ':person_playing_water_polo:': '🤽', + ':water_polo:': '🤽', + ':person_playing_water_polo_tone1:': '🤽🏻', + ':water_polo_tone1:': '🤽🏻', + ':person_playing_water_polo_tone2:': '🤽🏼', + ':water_polo_tone2:': '🤽🏼', + ':person_playing_water_polo_tone3:': '🤽🏽', + ':water_polo_tone3:': '🤽🏽', + ':person_playing_water_polo_tone4:': '🤽🏾', + ':water_polo_tone4:': '🤽🏾', + ':person_playing_water_polo_tone5:': '🤽🏿', + ':water_polo_tone5:': '🤽🏿', + ':man_playing_water_polo:': '🤽‍♂️', + ':man_playing_water_polo_tone1:': '🤽🏻‍♂️', + ':man_playing_water_polo_light_skin_tone:': '🤽🏻‍♂️', + ':man_playing_water_polo_tone2:': '🤽🏼‍♂️', + ':man_playing_water_polo_medium_light_skin_tone:': '🤽🏼‍♂️', + ':man_playing_water_polo_tone3:': '🤽🏽‍♂️', + ':man_playing_water_polo_medium_skin_tone:': '🤽🏽‍♂️', + ':man_playing_water_polo_tone4:': '🤽🏾‍♂️', + ':man_playing_water_polo_medium_dark_skin_tone:': '🤽🏾‍♂️', + ':man_playing_water_polo_tone5:': '🤽🏿‍♂️', + ':man_playing_water_polo_dark_skin_tone:': '🤽🏿‍♂️', + ':woman_playing_water_polo:': '🤽‍♀️', + ':woman_playing_water_polo_tone1:': '🤽🏻‍♀️', + ':woman_playing_water_polo_light_skin_tone:': '🤽🏻‍♀️', + ':woman_playing_water_polo_tone2:': '🤽🏼‍♀️', + ':woman_playing_water_polo_medium_light_skin_tone:': '🤽🏼‍♀️', + ':woman_playing_water_polo_tone3:': '🤽🏽‍♀️', + ':woman_playing_water_polo_medium_skin_tone:': '🤽🏽‍♀️', + ':woman_playing_water_polo_tone4:': '🤽🏾‍♀️', + ':woman_playing_water_polo_medium_dark_skin_tone:': '🤽🏾‍♀️', + ':woman_playing_water_polo_tone5:': '🤽🏿‍♀️', + ':woman_playing_water_polo_dark_skin_tone:': '🤽🏿‍♀️', + ':person_playing_handball:': '🤾', + ':handball:': '🤾', + ':person_playing_handball_tone1:': '🤾🏻', + ':handball_tone1:': '🤾🏻', + ':person_playing_handball_tone2:': '🤾🏼', + ':handball_tone2:': '🤾🏼', + ':person_playing_handball_tone3:': '🤾🏽', + ':handball_tone3:': '🤾🏽', + ':person_playing_handball_tone4:': '🤾🏾', + ':handball_tone4:': '🤾🏾', + ':person_playing_handball_tone5:': '🤾🏿', + ':handball_tone5:': '🤾🏿', + ':man_playing_handball:': '🤾‍♂️', + ':man_playing_handball_tone1:': '🤾🏻‍♂️', + ':man_playing_handball_light_skin_tone:': '🤾🏻‍♂️', + ':man_playing_handball_tone2:': '🤾🏼‍♂️', + ':man_playing_handball_medium_light_skin_tone:': '🤾🏼‍♂️', + ':man_playing_handball_tone3:': '🤾🏽‍♂️', + ':man_playing_handball_medium_skin_tone:': '🤾🏽‍♂️', + ':man_playing_handball_tone4:': '🤾🏾‍♂️', + ':man_playing_handball_medium_dark_skin_tone:': '🤾🏾‍♂️', + ':man_playing_handball_tone5:': '🤾🏿‍♂️', + ':man_playing_handball_dark_skin_tone:': '🤾🏿‍♂️', + ':woman_playing_handball:': '🤾‍♀️', + ':woman_playing_handball_tone1:': '🤾🏻‍♀️', + ':woman_playing_handball_light_skin_tone:': '🤾🏻‍♀️', + ':woman_playing_handball_tone2:': '🤾🏼‍♀️', + ':woman_playing_handball_medium_light_skin_tone:': '🤾🏼‍♀️', + ':woman_playing_handball_tone3:': '🤾🏽‍♀️', + ':woman_playing_handball_medium_skin_tone:': '🤾🏽‍♀️', + ':woman_playing_handball_tone4:': '🤾🏾‍♀️', + ':woman_playing_handball_medium_dark_skin_tone:': '🤾🏾‍♀️', + ':woman_playing_handball_tone5:': '🤾🏿‍♀️', + ':woman_playing_handball_dark_skin_tone:': '🤾🏿‍♀️', + ':person_juggling:': '🤹', + ':juggling:': '🤹', + ':juggler:': '🤹', + ':person_juggling_tone1:': '🤹🏻', + ':juggling_tone1:': '🤹🏻', + ':juggler_tone1:': '🤹🏻', + ':person_juggling_tone2:': '🤹🏼', + ':juggling_tone2:': '🤹🏼', + ':juggler_tone2:': '🤹🏼', + ':person_juggling_tone3:': '🤹🏽', + ':juggling_tone3:': '🤹🏽', + ':juggler_tone3:': '🤹🏽', + ':person_juggling_tone4:': '🤹🏾', + ':juggling_tone4:': '🤹🏾', + ':juggler_tone4:': '🤹🏾', + ':person_juggling_tone5:': '🤹🏿', + ':juggling_tone5:': '🤹🏿', + ':juggler_tone5:': '🤹🏿', + ':man_juggling:': '🤹‍♂️', + ':man_juggling_tone1:': '🤹🏻‍♂️', + ':man_juggling_light_skin_tone:': '🤹🏻‍♂️', + ':man_juggling_tone2:': '🤹🏼‍♂️', + ':man_juggling_medium_light_skin_tone:': '🤹🏼‍♂️', + ':man_juggling_tone3:': '🤹🏽‍♂️', + ':man_juggling_medium_skin_tone:': '🤹🏽‍♂️', + ':man_juggling_tone4:': '🤹🏾‍♂️', + ':man_juggling_medium_dark_skin_tone:': '🤹🏾‍♂️', + ':man_juggling_tone5:': '🤹🏿‍♂️', + ':man_juggling_dark_skin_tone:': '🤹🏿‍♂️', + ':woman_juggling:': '🤹‍♀️', + ':woman_juggling_tone1:': '🤹🏻‍♀️', + ':woman_juggling_light_skin_tone:': '🤹🏻‍♀️', + ':woman_juggling_tone2:': '🤹🏼‍♀️', + ':woman_juggling_medium_light_skin_tone:': '🤹🏼‍♀️', + ':woman_juggling_tone3:': '🤹🏽‍♀️', + ':woman_juggling_medium_skin_tone:': '🤹🏽‍♀️', + ':woman_juggling_tone4:': '🤹🏾‍♀️', + ':woman_juggling_medium_dark_skin_tone:': '🤹🏾‍♀️', + ':woman_juggling_tone5:': '🤹🏿‍♀️', + ':woman_juggling_dark_skin_tone:': '🤹🏿‍♀️', + ':person_in_lotus_position:': '🧘', + ':person_in_lotus_position_tone1:': '🧘🏻', + ':person_in_lotus_position_light_skin_tone:': '🧘🏻', + ':person_in_lotus_position_tone2:': '🧘🏼', + ':person_in_lotus_position_medium_light_skin_tone:': '🧘🏼', + ':person_in_lotus_position_tone3:': '🧘🏽', + ':person_in_lotus_position_medium_skin_tone:': '🧘🏽', + ':person_in_lotus_position_tone4:': '🧘🏾', + ':person_in_lotus_position_medium_dark_skin_tone:': '🧘🏾', + ':person_in_lotus_position_tone5:': '🧘🏿', + ':person_in_lotus_position_dark_skin_tone:': '🧘🏿', + ':man_in_lotus_position:': '🧘‍♂️', + ':man_in_lotus_position_tone1:': '🧘🏻‍♂️', + ':man_in_lotus_position_light_skin_tone:': '🧘🏻‍♂️', + ':man_in_lotus_position_tone2:': '🧘🏼‍♂️', + ':man_in_lotus_position_medium_light_skin_tone:': '🧘🏼‍♂️', + ':man_in_lotus_position_tone3:': '🧘🏽‍♂️', + ':man_in_lotus_position_medium_skin_tone:': '🧘🏽‍♂️', + ':man_in_lotus_position_tone4:': '🧘🏾‍♂️', + ':man_in_lotus_position_medium_dark_skin_tone:': '🧘🏾‍♂️', + ':man_in_lotus_position_tone5:': '🧘🏿‍♂️', + ':man_in_lotus_position_dark_skin_tone:': '🧘🏿‍♂️', + ':woman_in_lotus_position:': '🧘‍♀️', + ':woman_in_lotus_position_tone1:': '🧘🏻‍♀️', + ':woman_in_lotus_position_light_skin_tone:': '🧘🏻‍♀️', + ':woman_in_lotus_position_tone2:': '🧘🏼‍♀️', + ':woman_in_lotus_position_medium_light_skin_tone:': '🧘🏼‍♀️', + ':woman_in_lotus_position_tone3:': '🧘🏽‍♀️', + ':woman_in_lotus_position_medium_skin_tone:': '🧘🏽‍♀️', + ':woman_in_lotus_position_tone4:': '🧘🏾‍♀️', + ':woman_in_lotus_position_medium_dark_skin_tone:': '🧘🏾‍♀️', + ':woman_in_lotus_position_tone5:': '🧘🏿‍♀️', + ':woman_in_lotus_position_dark_skin_tone:': '🧘🏿‍♀️', + ':bath:': '🛀', + ':bath_tone1:': '🛀🏻', + ':bath_tone2:': '🛀🏼', + ':bath_tone3:': '🛀🏽', + ':bath_tone4:': '🛀🏾', + ':bath_tone5:': '🛀🏿', + ':sleeping_accommodation:': '🛌', + ':person_in_bed:': '🛌', + ':person_in_bed_tone1:': '🛌🏻', + ':person_in_bed_light_skin_tone:': '🛌🏻', + ':sleeping_accommodation_tone1:': '🛌🏻', + ':person_in_bed_tone2:': '🛌🏼', + ':person_in_bed_medium_light_skin_tone:': '🛌🏼', + ':sleeping_accommodation_tone2:': '🛌🏼', + ':person_in_bed_tone3:': '🛌🏽', + ':person_in_bed_medium_skin_tone:': '🛌🏽', + ':sleeping_accommodation_tone3:': '🛌🏽', + ':person_in_bed_tone4:': '🛌🏾', + ':person_in_bed_medium_dark_skin_tone:': '🛌🏾', + ':sleeping_accommodation_tone4:': '🛌🏾', + ':person_in_bed_tone5:': '🛌🏿', + ':person_in_bed_dark_skin_tone:': '🛌🏿', + ':sleeping_accommodation_tone5:': '🛌🏿', + ':people_holding_hands:': '🧑‍🤝‍🧑', + ':people_holding_hands_tone1:': '🧑🏻‍🤝‍🧑🏻', + ':people_holding_hands_light_skin_tone:': '🧑🏻‍🤝‍🧑🏻', + ':people_holding_hands_tone1_tone2:': '🧑🏻‍🤝‍🧑🏼', + ':people_holding_hands_light_skin_tone_medium_light_skin_tone:': '🧑🏻‍🤝‍🧑🏼', + ':people_holding_hands_tone1-2:': '🧑🏻‍🤝‍🧑🏼', + ':people_holding_hands_tone1_tone3:': '🧑🏻‍🤝‍🧑🏽', + ':people_holding_hands_light_skin_tone_medium_skin_tone:': '🧑🏻‍🤝‍🧑🏽', + ':people_holding_hands_tone1-3:': '🧑🏻‍🤝‍🧑🏽', + ':people_holding_hands_tone1_tone4:': '🧑🏻‍🤝‍🧑🏾', + ':people_holding_hands_light_skin_tone_medium_dark_skin_tone:': '🧑🏻‍🤝‍🧑🏾', + ':people_holding_hands_tone1-4:': '🧑🏻‍🤝‍🧑🏾', + ':people_holding_hands_tone1_tone5:': '🧑🏻‍🤝‍🧑🏿', + ':people_holding_hands_light_skin_tone_dark_skin_tone:': '🧑🏻‍🤝‍🧑🏿', + ':people_holding_hands_tone1-5:': '🧑🏻‍🤝‍🧑🏿', + ':people_holding_hands_tone2_tone1:': '🧑🏼‍🤝‍🧑🏻', + ':people_holding_hands_medium_light_skin_tone_light_skin_tone:': '🧑🏼‍🤝‍🧑🏻', + ':people_holding_hands_tone2-1:': '🧑🏼‍🤝‍🧑🏻', + ':people_holding_hands_tone2:': '🧑🏼‍🤝‍🧑🏼', + ':people_holding_hands_medium_light_skin_tone:': '🧑🏼‍🤝‍🧑🏼', + ':people_holding_hands_tone2_tone3:': '🧑🏼‍🤝‍🧑🏽', + ':people_holding_hands_medium_light_skin_tone_medium_skin_tone:': '🧑🏼‍🤝‍🧑🏽', + ':people_holding_hands_tone2-3:': '🧑🏼‍🤝‍🧑🏽', + ':people_holding_hands_tone2_tone4:': '🧑🏼‍🤝‍🧑🏾', + ':people_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:': '🧑🏼‍🤝‍🧑🏾', + ':people_holding_hands_tone2-4:': '🧑🏼‍🤝‍🧑🏾', + ':people_holding_hands_tone2_tone5:': '🧑🏼‍🤝‍🧑🏿', + ':people_holding_hands_medium_light_skin_tone_dark_skin_tone:': '🧑🏼‍🤝‍🧑🏿', + ':people_holding_hands_tone2-5:': '🧑🏼‍🤝‍🧑🏿', + ':people_holding_hands_tone3_tone1:': '🧑🏽‍🤝‍🧑🏻', + ':people_holding_hands_medium_skin_tone_light_skin_tone:': '🧑🏽‍🤝‍🧑🏻', + ':people_holding_hands_tone3-1:': '🧑🏽‍🤝‍🧑🏻', + ':people_holding_hands_tone3_tone2:': '🧑🏽‍🤝‍🧑🏼', + ':people_holding_hands_medium_skin_tone_medium_light_skin_tone:': '🧑🏽‍🤝‍🧑🏼', + ':people_holding_hands_tone3-2:': '🧑🏽‍🤝‍🧑🏼', + ':people_holding_hands_tone3:': '🧑🏽‍🤝‍🧑🏽', + ':people_holding_hands_medium_skin_tone:': '🧑🏽‍🤝‍🧑🏽', + ':people_holding_hands_tone3_tone4:': '🧑🏽‍🤝‍🧑🏾', + ':people_holding_hands_medium_skin_tone_medium_dark_skin_tone:': '🧑🏽‍🤝‍🧑🏾', + ':people_holding_hands_tone3-4:': '🧑🏽‍🤝‍🧑🏾', + ':people_holding_hands_tone3_tone5:': '🧑🏽‍🤝‍🧑🏿', + ':people_holding_hands_medium_skin_tone_dark_skin_tone:': '🧑🏽‍🤝‍🧑🏿', + ':people_holding_hands_tone3-5:': '🧑🏽‍🤝‍🧑🏿', + ':people_holding_hands_tone4_tone1:': '🧑🏾‍🤝‍🧑🏻', + ':people_holding_hands_medium_dark_skin_tone_light_skin_tone:': '🧑🏾‍🤝‍🧑🏻', + ':people_holding_hands_tone4-1:': '🧑🏾‍🤝‍🧑🏻', + ':people_holding_hands_tone4_tone2:': '🧑🏾‍🤝‍🧑🏼', + ':people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '🧑🏾‍🤝‍🧑🏼', + ':people_holding_hands_tone4-2:': '🧑🏾‍🤝‍🧑🏼', + ':people_holding_hands_tone4_tone3:': '🧑🏾‍🤝‍🧑🏽', + ':people_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '🧑🏾‍🤝‍🧑🏽', + ':people_holding_hands_tone4-3:': '🧑🏾‍🤝‍🧑🏽', + ':people_holding_hands_tone4:': '🧑🏾‍🤝‍🧑🏾', + ':people_holding_hands_medium_dark_skin_tone:': '🧑🏾‍🤝‍🧑🏾', + ':people_holding_hands_tone4_tone5:': '🧑🏾‍🤝‍🧑🏿', + ':people_holding_hands_medium_dark_skin_tone_dark_skin_tone:': '🧑🏾‍🤝‍🧑🏿', + ':people_holding_hands_tone4-5:': '🧑🏾‍🤝‍🧑🏿', + ':people_holding_hands_tone5_tone1:': '🧑🏿‍🤝‍🧑🏻', + ':people_holding_hands_dark_skin_tone_light_skin_tone:': '🧑🏿‍🤝‍🧑🏻', + ':people_holding_hands_tone5-1:': '🧑🏿‍🤝‍🧑🏻', + ':people_holding_hands_tone5_tone2:': '🧑🏿‍🤝‍🧑🏼', + ':people_holding_hands_dark_skin_tone_medium_light_skin_tone:': '🧑🏿‍🤝‍🧑🏼', + ':people_holding_hands_tone5-2:': '🧑🏿‍🤝‍🧑🏼', + ':people_holding_hands_tone5_tone3:': '🧑🏿‍🤝‍🧑🏽', + ':people_holding_hands_dark_skin_tone_medium_skin_tone:': '🧑🏿‍🤝‍🧑🏽', + ':people_holding_hands_tone5-3:': '🧑🏿‍🤝‍🧑🏽', + ':people_holding_hands_tone5_tone4:': '🧑🏿‍🤝‍🧑🏾', + ':people_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '🧑🏿‍🤝‍🧑🏾', + ':people_holding_hands_tone5-4:': '🧑🏿‍🤝‍🧑🏾', + ':people_holding_hands_tone5:': '🧑🏿‍🤝‍🧑🏿', + ':people_holding_hands_dark_skin_tone:': '🧑🏿‍🤝‍🧑🏿', + ':two_women_holding_hands:': '👭', + ':women_holding_hands_tone1:': '👭🏻', + ':women_holding_hands_light_skin_tone:': '👭🏻', + ':two_women_holding_hands_tone1:': '👭🏻', + ':women_holding_hands_tone2:': '👭🏼', + ':women_holding_hands_medium_light_skin_tone:': '👭🏼', + ':two_women_holding_hands_tone2:': '👭🏼', + ':women_holding_hands_tone3:': '👭🏽', + ':women_holding_hands_medium_skin_tone:': '👭🏽', + ':two_women_holding_hands_tone3:': '👭🏽', + ':women_holding_hands_tone4:': '👭🏾', + ':women_holding_hands_medium_dark_skin_tone:': '👭🏾', + ':two_women_holding_hands_tone4:': '👭🏾', + ':women_holding_hands_tone5:': '👭🏿', + ':women_holding_hands_dark_skin_tone:': '👭🏿', + ':two_women_holding_hands_tone5:': '👭🏿', + ':women_holding_hands_tone1_tone2:': '👩🏻‍🤝‍👩🏼', + ':women_holding_hands_light_skin_tone_medium_light_skin_tone:': '👩🏻‍🤝‍👩🏼', + ':two_women_holding_hands_tone1-2:': '👩🏻‍🤝‍👩🏼', + ':women_holding_hands_tone1_tone3:': '👩🏻‍🤝‍👩🏽', + ':women_holding_hands_light_skin_tone_medium_skin_tone:': '👩🏻‍🤝‍👩🏽', + ':two_women_holding_hands_tone1-3:': '👩🏻‍🤝‍👩🏽', + ':women_holding_hands_tone1_tone4:': '👩🏻‍🤝‍👩🏾', + ':women_holding_hands_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍🤝‍👩🏾', + ':two_women_holding_hands_tone1-4:': '👩🏻‍🤝‍👩🏾', + ':women_holding_hands_tone1_tone5:': '👩🏻‍🤝‍👩🏿', + ':women_holding_hands_light_skin_tone_dark_skin_tone:': '👩🏻‍🤝‍👩🏿', + ':two_women_holding_hands_tone1-5:': '👩🏻‍🤝‍👩🏿', + ':women_holding_hands_tone2_tone1:': '👩🏼‍🤝‍👩🏻', + ':women_holding_hands_medium_light_skin_tone_light_skin_tone:': '👩🏼‍🤝‍👩🏻', + ':two_women_holding_hands_tone2-1:': '👩🏼‍🤝‍👩🏻', + ':women_holding_hands_tone2_tone3:': '👩🏼‍🤝‍👩🏽', + ':women_holding_hands_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍🤝‍👩🏽', + ':two_women_holding_hands_tone2-3:': '👩🏼‍🤝‍👩🏽', + ':women_holding_hands_tone2_tone4:': '👩🏼‍🤝‍👩🏾', + ':women_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍🤝‍👩🏾', + ':two_women_holding_hands_tone2-4:': '👩🏼‍🤝‍👩🏾', + ':women_holding_hands_tone2_tone5:': '👩🏼‍🤝‍👩🏿', + ':women_holding_hands_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍🤝‍👩🏿', + ':two_women_holding_hands_tone2-5:': '👩🏼‍🤝‍👩🏿', + ':women_holding_hands_tone3_tone1:': '👩🏽‍🤝‍👩🏻', + ':women_holding_hands_medium_skin_tone_light_skin_tone:': '👩🏽‍🤝‍👩🏻', + ':two_women_holding_hands_tone3-1:': '👩🏽‍🤝‍👩🏻', + ':women_holding_hands_tone3_tone2:': '👩🏽‍🤝‍👩🏼', + ':women_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍🤝‍👩🏼', + ':two_women_holding_hands_tone3-2:': '👩🏽‍🤝‍👩🏼', + ':women_holding_hands_tone3_tone4:': '👩🏽‍🤝‍👩🏾', + ':women_holding_hands_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍🤝‍👩🏾', + ':two_women_holding_hands_tone3-4:': '👩🏽‍🤝‍👩🏾', + ':women_holding_hands_tone3_tone5:': '👩🏽‍🤝‍👩🏿', + ':women_holding_hands_medium_skin_tone_dark_skin_tone:': '👩🏽‍🤝‍👩🏿', + ':two_women_holding_hands_tone3-5:': '👩🏽‍🤝‍👩🏿', + ':women_holding_hands_tone4_tone1:': '👩🏾‍🤝‍👩🏻', + ':women_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍🤝‍👩🏻', + ':two_women_holding_hands_tone4-1:': '👩🏾‍🤝‍👩🏻', + ':women_holding_hands_tone4_tone2:': '👩🏾‍🤝‍👩🏼', + ':women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍🤝‍👩🏼', + ':two_women_holding_hands_tone4-2:': '👩🏾‍🤝‍👩🏼', + ':women_holding_hands_tone4_tone3:': '👩🏾‍🤝‍👩🏽', + ':women_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍🤝‍👩🏽', + ':two_women_holding_hands_tone4-3:': '👩🏾‍🤝‍👩🏽', + ':women_holding_hands_tone4_tone5:': '👩🏾‍🤝‍👩🏿', + ':women_holding_hands_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍🤝‍👩🏿', + ':two_women_holding_hands_tone4-5:': '👩🏾‍🤝‍👩🏿', + ':women_holding_hands_tone5_tone1:': '👩🏿‍🤝‍👩🏻', + ':women_holding_hands_dark_skin_tone_light_skin_tone:': '👩🏿‍🤝‍👩🏻', + ':two_women_holding_hands_tone5-1:': '👩🏿‍🤝‍👩🏻', + ':women_holding_hands_tone5_tone2:': '👩🏿‍🤝‍👩🏼', + ':women_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍🤝‍👩🏼', + ':two_women_holding_hands_tone5-2:': '👩🏿‍🤝‍👩🏼', + ':women_holding_hands_tone5_tone3:': '👩🏿‍🤝‍👩🏽', + ':women_holding_hands_dark_skin_tone_medium_skin_tone:': '👩🏿‍🤝‍👩🏽', + ':two_women_holding_hands_tone5-3:': '👩🏿‍🤝‍👩🏽', + ':women_holding_hands_tone5_tone4:': '👩🏿‍🤝‍👩🏾', + ':women_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍🤝‍👩🏾', + ':two_women_holding_hands_tone5-4:': '👩🏿‍🤝‍👩🏾', + ':couple:': '👫', + ':woman_and_man_holding_hands_tone1:': '👫🏻', + ':woman_and_man_holding_hands_light_skin_tone:': '👫🏻', + ':couple_tone1:': '👫🏻', + ':woman_and_man_holding_hands_tone2:': '👫🏼', + ':woman_and_man_holding_hands_medium_light_skin_tone:': '👫🏼', + ':couple_tone2:': '👫🏼', + ':woman_and_man_holding_hands_tone3:': '👫🏽', + ':woman_and_man_holding_hands_medium_skin_tone:': '👫🏽', + ':couple_tone3:': '👫🏽', + ':woman_and_man_holding_hands_tone4:': '👫🏾', + ':woman_and_man_holding_hands_medium_dark_skin_tone:': '👫🏾', + ':couple_tone4:': '👫🏾', + ':woman_and_man_holding_hands_tone5:': '👫🏿', + ':woman_and_man_holding_hands_dark_skin_tone:': '👫🏿', + ':couple_tone5:': '👫🏿', + ':woman_and_man_holding_hands_tone1_tone2:': '👩🏻‍🤝‍👨🏼', + ':woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone:': '👩🏻‍🤝‍👨🏼', + ':couple_tone1-2:': '👩🏻‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone1_tone3:': '👩🏻‍🤝‍👨🏽', + ':woman_and_man_holding_hands_light_skin_tone_medium_skin_tone:': '👩🏻‍🤝‍👨🏽', + ':couple_tone1-3:': '👩🏻‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone1_tone4:': '👩🏻‍🤝‍👨🏾', + ':woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍🤝‍👨🏾', + ':couple_tone1-4:': '👩🏻‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone1_tone5:': '👩🏻‍🤝‍👨🏿', + ':woman_and_man_holding_hands_light_skin_tone_dark_skin_tone:': '👩🏻‍🤝‍👨🏿', + ':couple_tone1-5:': '👩🏻‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone2_tone1:': '👩🏼‍🤝‍👨🏻', + ':woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone:': '👩🏼‍🤝‍👨🏻', + ':couple_tone2-1:': '👩🏼‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone2_tone3:': '👩🏼‍🤝‍👨🏽', + ':woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍🤝‍👨🏽', + ':couple_tone2-3:': '👩🏼‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone2_tone4:': '👩🏼‍🤝‍👨🏾', + ':woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍🤝‍👨🏾', + ':couple_tone2-4:': '👩🏼‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone2_tone5:': '👩🏼‍🤝‍👨🏿', + ':woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍🤝‍👨🏿', + ':couple_tone2-5:': '👩🏼‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone3_tone1:': '👩🏽‍🤝‍👨🏻', + ':woman_and_man_holding_hands_medium_skin_tone_light_skin_tone:': '👩🏽‍🤝‍👨🏻', + ':couple_tone3-1:': '👩🏽‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone3_tone2:': '👩🏽‍🤝‍👨🏼', + ':woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍🤝‍👨🏼', + ':couple_tone3-2:': '👩🏽‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone3_tone4:': '👩🏽‍🤝‍👨🏾', + ':woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍🤝‍👨🏾', + ':couple_tone3-4:': '👩🏽‍🤝‍👨🏾', + ':woman_and_man_holding_hands_tone3_tone5:': '👩🏽‍🤝‍👨🏿', + ':woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone:': '👩🏽‍🤝‍👨🏿', + ':couple_tone3-5:': '👩🏽‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone4_tone1:': '👩🏾‍🤝‍👨🏻', + ':woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍🤝‍👨🏻', + ':couple_tone4-1:': '👩🏾‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone4_tone2:': '👩🏾‍🤝‍👨🏼', + ':woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍🤝‍👨🏼', + ':couple_tone4-2:': '👩🏾‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone4_tone3:': '👩🏾‍🤝‍👨🏽', + ':woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍🤝‍👨🏽', + ':couple_tone4-3:': '👩🏾‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone4_tone5:': '👩🏾‍🤝‍👨🏿', + ':woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍🤝‍👨🏿', + ':couple_tone4-5:': '👩🏾‍🤝‍👨🏿', + ':woman_and_man_holding_hands_tone5_tone1:': '👩🏿‍🤝‍👨🏻', + ':woman_and_man_holding_hands_dark_skin_tone_light_skin_tone:': '👩🏿‍🤝‍👨🏻', + ':couple_tone5-1:': '👩🏿‍🤝‍👨🏻', + ':woman_and_man_holding_hands_tone5_tone2:': '👩🏿‍🤝‍👨🏼', + ':woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍🤝‍👨🏼', + ':couple_tone5-2:': '👩🏿‍🤝‍👨🏼', + ':woman_and_man_holding_hands_tone5_tone3:': '👩🏿‍🤝‍👨🏽', + ':woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone:': '👩🏿‍🤝‍👨🏽', + ':couple_tone5-3:': '👩🏿‍🤝‍👨🏽', + ':woman_and_man_holding_hands_tone5_tone4:': '👩🏿‍🤝‍👨🏾', + ':woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍🤝‍👨🏾', + ':couple_tone5-4:': '👩🏿‍🤝‍👨🏾', + ':two_men_holding_hands:': '👬', + ':men_holding_hands_tone1:': '👬🏻', + ':men_holding_hands_light_skin_tone:': '👬🏻', + ':two_men_holding_hands_tone1:': '👬🏻', + ':men_holding_hands_tone2:': '👬🏼', + ':men_holding_hands_medium_light_skin_tone:': '👬🏼', + ':two_men_holding_hands_tone2:': '👬🏼', + ':men_holding_hands_tone3:': '👬🏽', + ':men_holding_hands_medium_skin_tone:': '👬🏽', + ':two_men_holding_hands_tone3:': '👬🏽', + ':men_holding_hands_tone4:': '👬🏾', + ':men_holding_hands_medium_dark_skin_tone:': '👬🏾', + ':two_men_holding_hands_tone4:': '👬🏾', + ':men_holding_hands_tone5:': '👬🏿', + ':men_holding_hands_dark_skin_tone:': '👬🏿', + ':two_men_holding_hands_tone5:': '👬🏿', + ':men_holding_hands_tone1_tone2:': '👨🏻‍🤝‍👨🏼', + ':men_holding_hands_light_skin_tone_medium_light_skin_tone:': '👨🏻‍🤝‍👨🏼', + ':two_men_holding_hands_tone1-2:': '👨🏻‍🤝‍👨🏼', + ':men_holding_hands_tone1_tone3:': '👨🏻‍🤝‍👨🏽', + ':men_holding_hands_light_skin_tone_medium_skin_tone:': '👨🏻‍🤝‍👨🏽', + ':two_men_holding_hands_tone1-3:': '👨🏻‍🤝‍👨🏽', + ':men_holding_hands_tone1_tone4:': '👨🏻‍🤝‍👨🏾', + ':men_holding_hands_light_skin_tone_medium_dark_skin_tone:': '👨🏻‍🤝‍👨🏾', + ':two_men_holding_hands_tone1-4:': '👨🏻‍🤝‍👨🏾', + ':men_holding_hands_tone1_tone5:': '👨🏻‍🤝‍👨🏿', + ':men_holding_hands_light_skin_tone_dark_skin_tone:': '👨🏻‍🤝‍👨🏿', + ':two_men_holding_hands_tone1-5:': '👨🏻‍🤝‍👨🏿', + ':men_holding_hands_tone2_tone1:': '👨🏼‍🤝‍👨🏻', + ':men_holding_hands_medium_light_skin_tone_light_skin_tone:': '👨🏼‍🤝‍👨🏻', + ':two_men_holding_hands_tone2-1:': '👨🏼‍🤝‍👨🏻', + ':men_holding_hands_tone2_tone3:': '👨🏼‍🤝‍👨🏽', + ':men_holding_hands_medium_light_skin_tone_medium_skin_tone:': '👨🏼‍🤝‍👨🏽', + ':two_men_holding_hands_tone2-3:': '👨🏼‍🤝‍👨🏽', + ':men_holding_hands_tone2_tone4:': '👨🏼‍🤝‍👨🏾', + ':men_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:': '👨🏼‍🤝‍👨🏾', + ':two_men_holding_hands_tone2-4:': '👨🏼‍🤝‍👨🏾', + ':men_holding_hands_tone2_tone5:': '👨🏼‍🤝‍👨🏿', + ':men_holding_hands_medium_light_skin_tone_dark_skin_tone:': '👨🏼‍🤝‍👨🏿', + ':two_men_holding_hands_tone2-5:': '👨🏼‍🤝‍👨🏿', + ':men_holding_hands_tone3_tone1:': '👨🏽‍🤝‍👨🏻', + ':men_holding_hands_medium_skin_tone_light_skin_tone:': '👨🏽‍🤝‍👨🏻', + ':two_men_holding_hands_tone3-1:': '👨🏽‍🤝‍👨🏻', + ':men_holding_hands_tone3_tone2:': '👨🏽‍🤝‍👨🏼', + ':men_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👨🏽‍🤝‍👨🏼', + ':two_men_holding_hands_tone3-2:': '👨🏽‍🤝‍👨🏼', + ':men_holding_hands_tone3_tone4:': '👨🏽‍🤝‍👨🏾', + ':men_holding_hands_medium_skin_tone_medium_dark_skin_tone:': '👨🏽‍🤝‍👨🏾', + ':two_men_holding_hands_tone3-4:': '👨🏽‍🤝‍👨🏾', + ':men_holding_hands_tone3_tone5:': '👨🏽‍🤝‍👨🏿', + ':men_holding_hands_medium_skin_tone_dark_skin_tone:': '👨🏽‍🤝‍👨🏿', + ':two_men_holding_hands_tone3-5:': '👨🏽‍🤝‍👨🏿', + ':men_holding_hands_tone4_tone1:': '👨🏾‍🤝‍👨🏻', + ':men_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👨🏾‍🤝‍👨🏻', + ':two_men_holding_hands_tone4-1:': '👨🏾‍🤝‍👨🏻', + ':men_holding_hands_tone4_tone2:': '👨🏾‍🤝‍👨🏼', + ':men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👨🏾‍🤝‍👨🏼', + ':two_men_holding_hands_tone4-2:': '👨🏾‍🤝‍👨🏼', + ':men_holding_hands_tone4_tone3:': '👨🏾‍🤝‍👨🏽', + ':men_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👨🏾‍🤝‍👨🏽', + ':two_men_holding_hands_tone4-3:': '👨🏾‍🤝‍👨🏽', + ':men_holding_hands_tone4_tone5:': '👨🏾‍🤝‍👨🏿', + ':men_holding_hands_medium_dark_skin_tone_dark_skin_tone:': '👨🏾‍🤝‍👨🏿', + ':two_men_holding_hands_tone4-5:': '👨🏾‍🤝‍👨🏿', + ':men_holding_hands_tone5_tone1:': '👨🏿‍🤝‍👨🏻', + ':men_holding_hands_dark_skin_tone_light_skin_tone:': '👨🏿‍🤝‍👨🏻', + ':two_men_holding_hands_tone5-1:': '👨🏿‍🤝‍👨🏻', + ':men_holding_hands_tone5_tone2:': '👨🏿‍🤝‍👨🏼', + ':men_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👨🏿‍🤝‍👨🏼', + ':two_men_holding_hands_tone5-2:': '👨🏿‍🤝‍👨🏼', + ':men_holding_hands_tone5_tone3:': '👨🏿‍🤝‍👨🏽', + ':men_holding_hands_dark_skin_tone_medium_skin_tone:': '👨🏿‍🤝‍👨🏽', + ':two_men_holding_hands_tone5-3:': '👨🏿‍🤝‍👨🏽', + ':men_holding_hands_tone5_tone4:': '👨🏿‍🤝‍👨🏾', + ':men_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👨🏿‍🤝‍👨🏾', + ':two_men_holding_hands_tone5-4:': '👨🏿‍🤝‍👨🏾', + ':couplekiss:': '💏', + ':kiss_tone1:': '💏🏻', + ':kiss_light_skin_tone:': '💏🏻', + ':couplekiss_tone1:': '💏🏻', + ':kiss_tone2:': '💏🏼', + ':kiss_medium_light_skin_tone:': '💏🏼', + ':couplekiss_tone2:': '💏🏼', + ':kiss_tone3:': '💏🏽', + ':kiss_medium_skin_tone:': '💏🏽', + ':couplekiss_tone3:': '💏🏽', + ':kiss_tone4:': '💏🏾', + ':kiss_medium_dark_skin_tone:': '💏🏾', + ':couplekiss_tone4:': '💏🏾', + ':kiss_tone5:': '💏🏿', + ':kiss_dark_skin_tone:': '💏🏿', + ':couplekiss_tone5:': '💏🏿', + ':kiss_person_person_tone1_tone2:': '🧑🏻‍❤️‍💋‍🧑🏼', + ':kiss_person_person_light_skin_tone_medium_light_skin_tone:': '🧑🏻‍❤️‍💋‍🧑🏼', + ':couplekiss_tone1-2:': '🧑🏻‍❤️‍💋‍🧑🏼', + ':kiss_person_person_tone1_tone3:': '🧑🏻‍❤️‍💋‍🧑🏽', + ':kiss_person_person_light_skin_tone_medium_skin_tone:': '🧑🏻‍❤️‍💋‍🧑🏽', + ':couplekiss_tone1-3:': '🧑🏻‍❤️‍💋‍🧑🏽', + ':kiss_person_person_tone1_tone4:': '🧑🏻‍❤️‍💋‍🧑🏾', + ':kiss_person_person_light_skin_tone_medium_dark_skin_tone:': '🧑🏻‍❤️‍💋‍🧑🏾', + ':couplekiss_tone1-4:': '🧑🏻‍❤️‍💋‍🧑🏾', + ':kiss_person_person_tone1_tone5:': '🧑🏻‍❤️‍💋‍🧑🏿', + ':kiss_person_person_light_skin_tone_dark_skin_tone:': '🧑🏻‍❤️‍💋‍🧑🏿', + ':couplekiss_tone1-5:': '🧑🏻‍❤️‍💋‍🧑🏿', + ':kiss_person_person_tone2_tone1:': '🧑🏼‍❤️‍💋‍🧑🏻', + ':kiss_person_person_medium_light_skin_tone_light_skin_tone:': '🧑🏼‍❤️‍💋‍🧑🏻', + ':couplekiss_tone2-1:': '🧑🏼‍❤️‍💋‍🧑🏻', + ':kiss_person_person_tone2_tone3:': '🧑🏼‍❤️‍💋‍🧑🏽', + ':kiss_person_person_medium_light_skin_tone_medium_skin_tone:': '🧑🏼‍❤️‍💋‍🧑🏽', + ':couplekiss_tone2-3:': '🧑🏼‍❤️‍💋‍🧑🏽', + ':kiss_person_person_tone2_tone4:': '🧑🏼‍❤️‍💋‍🧑🏾', + ':kiss_person_person_medium_light_skin_tone_medium_dark_skin_tone:': '🧑🏼‍❤️‍💋‍🧑🏾', + ':couplekiss_tone2-4:': '🧑🏼‍❤️‍💋‍🧑🏾', + ':kiss_person_person_tone2_tone5:': '🧑🏼‍❤️‍💋‍🧑🏿', + ':kiss_person_person_medium_light_skin_tone_dark_skin_tone:': '🧑🏼‍❤️‍💋‍🧑🏿', + ':couplekiss_tone2-5:': '🧑🏼‍❤️‍💋‍🧑🏿', + ':kiss_person_person_tone3_tone1:': '🧑🏽‍❤️‍💋‍🧑🏻', + ':kiss_person_person_medium_skin_tone_light_skin_tone:': '🧑🏽‍❤️‍💋‍🧑🏻', + ':couplekiss_tone3-1:': '🧑🏽‍❤️‍💋‍🧑🏻', + ':kiss_person_person_tone3_tone2:': '🧑🏽‍❤️‍💋‍🧑🏼', + ':kiss_person_person_medium_skin_tone_medium_light_skin_tone:': '🧑🏽‍❤️‍💋‍🧑🏼', + ':couplekiss_tone3-2:': '🧑🏽‍❤️‍💋‍🧑🏼', + ':kiss_person_person_tone3_tone4:': '🧑🏽‍❤️‍💋‍🧑🏾', + ':kiss_person_person_medium_skin_tone_medium_dark_skin_tone:': '🧑🏽‍❤️‍💋‍🧑🏾', + ':couplekiss_tone3-4:': '🧑🏽‍❤️‍💋‍🧑🏾', + ':kiss_person_person_tone3_tone5:': '🧑🏽‍❤️‍💋‍🧑🏿', + ':kiss_person_person_medium_skin_tone_dark_skin_tone:': '🧑🏽‍❤️‍💋‍🧑🏿', + ':couplekiss_tone3-5:': '🧑🏽‍❤️‍💋‍🧑🏿', + ':kiss_person_person_tone4_tone1:': '🧑🏾‍❤️‍💋‍🧑🏻', + ':kiss_person_person_medium_dark_skin_tone_light_skin_tone:': '🧑🏾‍❤️‍💋‍🧑🏻', + ':couplekiss_tone4-1:': '🧑🏾‍❤️‍💋‍🧑🏻', + ':kiss_person_person_tone4_tone2:': '🧑🏾‍❤️‍💋‍🧑🏼', + ':kiss_person_person_medium_dark_skin_tone_medium_light_skin_tone:': '🧑🏾‍❤️‍💋‍🧑🏼', + ':couplekiss_tone4-2:': '🧑🏾‍❤️‍💋‍🧑🏼', + ':kiss_person_person_tone4_tone3:': '🧑🏾‍❤️‍💋‍🧑🏽', + ':kiss_person_person_medium_dark_skin_tone_medium_skin_tone:': '🧑🏾‍❤️‍💋‍🧑🏽', + ':couplekiss_tone4-3:': '🧑🏾‍❤️‍💋‍🧑🏽', + ':kiss_person_person_tone4_tone5:': '🧑🏾‍❤️‍💋‍🧑🏿', + ':kiss_person_person_medium_dark_skin_tone_dark_skin_tone:': '🧑🏾‍❤️‍💋‍🧑🏿', + ':couplekiss_tone4-5:': '🧑🏾‍❤️‍💋‍🧑🏿', + ':kiss_person_person_tone5_tone1:': '🧑🏿‍❤️‍💋‍🧑🏻', + ':kiss_person_person_dark_skin_tone_light_skin_tone:': '🧑🏿‍❤️‍💋‍🧑🏻', + ':couplekiss_tone5-1:': '🧑🏿‍❤️‍💋‍🧑🏻', + ':kiss_person_person_tone5_tone2:': '🧑🏿‍❤️‍💋‍🧑🏼', + ':kiss_person_person_dark_skin_tone_medium_light_skin_tone:': '🧑🏿‍❤️‍💋‍🧑🏼', + ':couplekiss_tone5-2:': '🧑🏿‍❤️‍💋‍🧑🏼', + ':kiss_person_person_tone5_tone3:': '🧑🏿‍❤️‍💋‍🧑🏽', + ':kiss_person_person_dark_skin_tone_medium_skin_tone:': '🧑🏿‍❤️‍💋‍🧑🏽', + ':couplekiss_tone5-3:': '🧑🏿‍❤️‍💋‍🧑🏽', + ':kiss_person_person_tone5_tone4:': '🧑🏿‍❤️‍💋‍🧑🏾', + ':kiss_person_person_dark_skin_tone_medium_dark_skin_tone:': '🧑🏿‍❤️‍💋‍🧑🏾', + ':couplekiss_tone5-4:': '🧑🏿‍❤️‍💋‍🧑🏾', + ':kiss_woman_man:': '👩‍❤️‍💋‍👨', + ':kiss_woman_man_tone1:': '👩🏻‍❤️‍💋‍👨🏻', + ':kiss_woman_man_light_skin_tone:': '👩🏻‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone1_tone2:': '👩🏻‍❤️‍💋‍👨🏼', + ':kiss_woman_man_light_skin_tone_medium_light_skin_tone:': '👩🏻‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone1-2:': '👩🏻‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone1_tone3:': '👩🏻‍❤️‍💋‍👨🏽', + ':kiss_woman_man_light_skin_tone_medium_skin_tone:': '👩🏻‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone1-3:': '👩🏻‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone1_tone4:': '👩🏻‍❤️‍💋‍👨🏾', + ':kiss_woman_man_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone1-4:': '👩🏻‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone1_tone5:': '👩🏻‍❤️‍💋‍👨🏿', + ':kiss_woman_man_light_skin_tone_dark_skin_tone:': '👩🏻‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone1-5:': '👩🏻‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone2_tone1:': '👩🏼‍❤️‍💋‍👨🏻', + ':kiss_woman_man_medium_light_skin_tone_light_skin_tone:': '👩🏼‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone2-1:': '👩🏼‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone2:': '👩🏼‍❤️‍💋‍👨🏼', + ':kiss_woman_man_medium_light_skin_tone:': '👩🏼‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone2_tone3:': '👩🏼‍❤️‍💋‍👨🏽', + ':kiss_woman_man_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone2-3:': '👩🏼‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone2_tone4:': '👩🏼‍❤️‍💋‍👨🏾', + ':kiss_woman_man_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone2-4:': '👩🏼‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone2_tone5:': '👩🏼‍❤️‍💋‍👨🏿', + ':kiss_woman_man_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone2-5:': '👩🏼‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone3_tone1:': '👩🏽‍❤️‍💋‍👨🏻', + ':kiss_woman_man_medium_skin_tone_light_skin_tone:': '👩🏽‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone3-1:': '👩🏽‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone3_tone2:': '👩🏽‍❤️‍💋‍👨🏼', + ':kiss_woman_man_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone3-2:': '👩🏽‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone3:': '👩🏽‍❤️‍💋‍👨🏽', + ':kiss_woman_man_medium_skin_tone:': '👩🏽‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone3_tone4:': '👩🏽‍❤️‍💋‍👨🏾', + ':kiss_woman_man_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone3-4:': '👩🏽‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone3_tone5:': '👩🏽‍❤️‍💋‍👨🏿', + ':kiss_woman_man_medium_skin_tone_dark_skin_tone:': '👩🏽‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone3-5:': '👩🏽‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone4_tone1:': '👩🏾‍❤️‍💋‍👨🏻', + ':kiss_woman_man_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone4-1:': '👩🏾‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone4_tone2:': '👩🏾‍❤️‍💋‍👨🏼', + ':kiss_woman_man_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone4-2:': '👩🏾‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone4_tone3:': '👩🏾‍❤️‍💋‍👨🏽', + ':kiss_woman_man_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone4-3:': '👩🏾‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone4:': '👩🏾‍❤️‍💋‍👨🏾', + ':kiss_woman_man_medium_dark_skin_tone:': '👩🏾‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone4_tone5:': '👩🏾‍❤️‍💋‍👨🏿', + ':kiss_woman_man_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone4-5:': '👩🏾‍❤️‍💋‍👨🏿', + ':kiss_woman_man_tone5_tone1:': '👩🏿‍❤️‍💋‍👨🏻', + ':kiss_woman_man_dark_skin_tone_light_skin_tone:': '👩🏿‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone5-1:': '👩🏿‍❤️‍💋‍👨🏻', + ':kiss_woman_man_tone5_tone2:': '👩🏿‍❤️‍💋‍👨🏼', + ':kiss_woman_man_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone5-2:': '👩🏿‍❤️‍💋‍👨🏼', + ':kiss_woman_man_tone5_tone3:': '👩🏿‍❤️‍💋‍👨🏽', + ':kiss_woman_man_dark_skin_tone_medium_skin_tone:': '👩🏿‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone5-3:': '👩🏿‍❤️‍💋‍👨🏽', + ':kiss_woman_man_tone5_tone4:': '👩🏿‍❤️‍💋‍👨🏾', + ':kiss_woman_man_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone5-4:': '👩🏿‍❤️‍💋‍👨🏾', + ':kiss_woman_man_tone5:': '👩🏿‍❤️‍💋‍👨🏿', + ':kiss_woman_man_dark_skin_tone:': '👩🏿‍❤️‍💋‍👨🏿', + ':kiss_mm:': '👨‍❤️‍💋‍👨', + ':couplekiss_mm:': '👨‍❤️‍💋‍👨', + ':kiss_man_man:': '👨‍❤️‍💋‍👨', + ':kiss_man_man_tone1:': '👨🏻‍❤️‍💋‍👨🏻', + ':kiss_man_man_light_skin_tone:': '👨🏻‍❤️‍💋‍👨🏻', + ':kiss_mm_tone1:': '👨🏻‍❤️‍💋‍👨🏻', + ':kiss_man_man_tone1_tone2:': '👨🏻‍❤️‍💋‍👨🏼', + ':kiss_man_man_light_skin_tone_medium_light_skin_tone:': '👨🏻‍❤️‍💋‍👨🏼', + ':kiss_mm_tone1-2:': '👨🏻‍❤️‍💋‍👨🏼', + ':kiss_man_man_tone1_tone3:': '👨🏻‍❤️‍💋‍👨🏽', + ':kiss_man_man_light_skin_tone_medium_skin_tone:': '👨🏻‍❤️‍💋‍👨🏽', + ':kiss_mm_tone1-3:': '👨🏻‍❤️‍💋‍👨🏽', + ':kiss_man_man_tone1_tone4:': '👨🏻‍❤️‍💋‍👨🏾', + ':kiss_man_man_light_skin_tone_medium_dark_skin_tone:': '👨🏻‍❤️‍💋‍👨🏾', + ':kiss_mm_tone1-4:': '👨🏻‍❤️‍💋‍👨🏾', + ':kiss_man_man_tone1_tone5:': '👨🏻‍❤️‍💋‍👨🏿', + ':kiss_man_man_light_skin_tone_dark_skin_tone:': '👨🏻‍❤️‍💋‍👨🏿', + ':kiss_mm_tone1-5:': '👨🏻‍❤️‍💋‍👨🏿', + ':kiss_man_man_tone2_tone1:': '👨🏼‍❤️‍💋‍👨🏻', + ':kiss_man_man_medium_light_skin_tone_light_skin_tone:': '👨🏼‍❤️‍💋‍👨🏻', + ':kiss_mm_tone2-1:': '👨🏼‍❤️‍💋‍👨🏻', + ':kiss_man_man_tone2:': '👨🏼‍❤️‍💋‍👨🏼', + ':kiss_man_man_medium_light_skin_tone:': '👨🏼‍❤️‍💋‍👨🏼', + ':kiss_mm_tone2:': '👨🏼‍❤️‍💋‍👨🏼', + ':kiss_man_man_tone2_tone3:': '👨🏼‍❤️‍💋‍👨🏽', + ':kiss_man_man_medium_light_skin_tone_medium_skin_tone:': '👨🏼‍❤️‍💋‍👨🏽', + ':kiss_mm_tone2-3:': '👨🏼‍❤️‍💋‍👨🏽', + ':kiss_man_man_tone2_tone4:': '👨🏼‍❤️‍💋‍👨🏾', + ':kiss_man_man_medium_light_skin_tone_medium_dark_skin_tone:': '👨🏼‍❤️‍💋‍👨🏾', + ':kiss_mm_tone2-4:': '👨🏼‍❤️‍💋‍👨🏾', + ':kiss_man_man_tone2_tone5:': '👨🏼‍❤️‍💋‍👨🏿', + ':kiss_man_man_medium_light_skin_tone_dark_skin_tone:': '👨🏼‍❤️‍💋‍👨🏿', + ':kiss_mm_tone2-5:': '👨🏼‍❤️‍💋‍👨🏿', + ':kiss_man_man_tone3_tone1:': '👨🏽‍❤️‍💋‍👨🏻', + ':kiss_man_man_medium_skin_tone_light_skin_tone:': '👨🏽‍❤️‍💋‍👨🏻', + ':kiss_mm_tone3-1:': '👨🏽‍❤️‍💋‍👨🏻', + ':kiss_man_man_tone3_tone2:': '👨🏽‍❤️‍💋‍👨🏼', + ':kiss_man_man_medium_skin_tone_medium_light_skin_tone:': '👨🏽‍❤️‍💋‍👨🏼', + ':kiss_mm_tone3-2:': '👨🏽‍❤️‍💋‍👨🏼', + ':kiss_man_man_tone3:': '👨🏽‍❤️‍💋‍👨🏽', + ':kiss_man_man_medium_skin_tone:': '👨🏽‍❤️‍💋‍👨🏽', + ':kiss_mm_tone3:': '👨🏽‍❤️‍💋‍👨🏽', + ':kiss_man_man_tone3_tone4:': '👨🏽‍❤️‍💋‍👨🏾', + ':kiss_man_man_medium_skin_tone_medium_dark_skin_tone:': '👨🏽‍❤️‍💋‍👨🏾', + ':kiss_mm_tone3-4:': '👨🏽‍❤️‍💋‍👨🏾', + ':kiss_man_man_tone3_tone5:': '👨🏽‍❤️‍💋‍👨🏿', + ':kiss_man_man_medium_skin_tone_dark_skin_tone:': '👨🏽‍❤️‍💋‍👨🏿', + ':kiss_mm_tone3-5:': '👨🏽‍❤️‍💋‍👨🏿', + ':kiss_man_man_tone4_tone1:': '👨🏾‍❤️‍💋‍👨🏻', + ':kiss_man_man_medium_dark_skin_tone_light_skin_tone:': '👨🏾‍❤️‍💋‍👨🏻', + ':kiss_mm_tone4-1:': '👨🏾‍❤️‍💋‍👨🏻', + ':kiss_man_man_tone4_tone2:': '👨🏾‍❤️‍💋‍👨🏼', + ':kiss_man_man_medium_dark_skin_tone_medium_light_skin_tone:': '👨🏾‍❤️‍💋‍👨🏼', + ':kiss_mm_tone4-2:': '👨🏾‍❤️‍💋‍👨🏼', + ':kiss_man_man_tone4_tone3:': '👨🏾‍❤️‍💋‍👨🏽', + ':kiss_man_man_medium_dark_skin_tone_medium_skin_tone:': '👨🏾‍❤️‍💋‍👨🏽', + ':kiss_mm_tone4-3:': '👨🏾‍❤️‍💋‍👨🏽', + ':kiss_man_man_tone4:': '👨🏾‍❤️‍💋‍👨🏾', + ':kiss_man_man_medium_dark_skin_tone:': '👨🏾‍❤️‍💋‍👨🏾', + ':kiss_mm_tone4:': '👨🏾‍❤️‍💋‍👨🏾', + ':kiss_man_man_tone4_tone5:': '👨🏾‍❤️‍💋‍👨🏿', + ':kiss_man_man_medium_dark_skin_tone_dark_skin_tone:': '👨🏾‍❤️‍💋‍👨🏿', + ':kiss_mm_tone4-5:': '👨🏾‍❤️‍💋‍👨🏿', + ':kiss_man_man_tone5_tone1:': '👨🏿‍❤️‍💋‍👨🏻', + ':kiss_man_man_dark_skin_tone_light_skin_tone:': '👨🏿‍❤️‍💋‍👨🏻', + ':kiss_mm_tone5-1:': '👨🏿‍❤️‍💋‍👨🏻', + ':kiss_man_man_tone5_tone2:': '👨🏿‍❤️‍💋‍👨🏼', + ':kiss_man_man_dark_skin_tone_medium_light_skin_tone:': '👨🏿‍❤️‍💋‍👨🏼', + ':kiss_mm_tone5-2:': '👨🏿‍❤️‍💋‍👨🏼', + ':kiss_man_man_tone5_tone3:': '👨🏿‍❤️‍💋‍👨🏽', + ':kiss_man_man_dark_skin_tone_medium_skin_tone:': '👨🏿‍❤️‍💋‍👨🏽', + ':kiss_mm_tone5-3:': '👨🏿‍❤️‍💋‍👨🏽', + ':kiss_man_man_tone5_tone4:': '👨🏿‍❤️‍💋‍👨🏾', + ':kiss_man_man_dark_skin_tone_medium_dark_skin_tone:': '👨🏿‍❤️‍💋‍👨🏾', + ':kiss_mm_tone5-4:': '👨🏿‍❤️‍💋‍👨🏾', + ':kiss_man_man_tone5:': '👨🏿‍❤️‍💋‍👨🏿', + ':kiss_man_man_dark_skin_tone:': '👨🏿‍❤️‍💋‍👨🏿', + ':kiss_mm_tone5:': '👨🏿‍❤️‍💋‍👨🏿', + ':kiss_ww:': '👩‍❤️‍💋‍👩', + ':couplekiss_ww:': '👩‍❤️‍💋‍👩', + ':kiss_woman_woman_tone1:': '👩🏻‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_light_skin_tone:': '👩🏻‍❤️‍💋‍👩🏻', + ':kiss_ww_tone1:': '👩🏻‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_tone1_tone2:': '👩🏻‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_light_skin_tone_medium_light_skin_tone:': '👩🏻‍❤️‍💋‍👩🏼', + ':kiss_ww_tone1-2:': '👩🏻‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_tone1_tone3:': '👩🏻‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_light_skin_tone_medium_skin_tone:': '👩🏻‍❤️‍💋‍👩🏽', + ':kiss_ww_tone1-3:': '👩🏻‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_tone1_tone4:': '👩🏻‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍❤️‍💋‍👩🏾', + ':kiss_ww_tone1-4:': '👩🏻‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_tone1_tone5:': '👩🏻‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_light_skin_tone_dark_skin_tone:': '👩🏻‍❤️‍💋‍👩🏿', + ':kiss_ww_tone1-5:': '👩🏻‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_tone2_tone1:': '👩🏼‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_medium_light_skin_tone_light_skin_tone:': '👩🏼‍❤️‍💋‍👩🏻', + ':kiss_ww_tone2-1:': '👩🏼‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_tone2:': '👩🏼‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_medium_light_skin_tone:': '👩🏼‍❤️‍💋‍👩🏼', + ':kiss_ww_tone2:': '👩🏼‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_tone2_tone3:': '👩🏼‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍❤️‍💋‍👩🏽', + ':kiss_ww_tone2-3:': '👩🏼‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_tone2_tone4:': '👩🏼‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍❤️‍💋‍👩🏾', + ':kiss_ww_tone2-4:': '👩🏼‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_tone2_tone5:': '👩🏼‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍❤️‍💋‍👩🏿', + ':kiss_ww_tone2-5:': '👩🏼‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_tone3_tone1:': '👩🏽‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_medium_skin_tone_light_skin_tone:': '👩🏽‍❤️‍💋‍👩🏻', + ':kiss_ww_tone3-1:': '👩🏽‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_tone3_tone2:': '👩🏽‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍❤️‍💋‍👩🏼', + ':kiss_ww_tone3-2:': '👩🏽‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_tone3:': '👩🏽‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_medium_skin_tone:': '👩🏽‍❤️‍💋‍👩🏽', + ':kiss_ww_tone3:': '👩🏽‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_tone3_tone4:': '👩🏽‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍❤️‍💋‍👩🏾', + ':kiss_ww_tone3-4:': '👩🏽‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_tone3_tone5:': '👩🏽‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_medium_skin_tone_dark_skin_tone:': '👩🏽‍❤️‍💋‍👩🏿', + ':kiss_ww_tone3-5:': '👩🏽‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_tone4_tone1:': '👩🏾‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍❤️‍💋‍👩🏻', + ':kiss_ww_tone4-1:': '👩🏾‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_tone4_tone2:': '👩🏾‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍❤️‍💋‍👩🏼', + ':kiss_ww_tone4-2:': '👩🏾‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_tone4_tone3:': '👩🏾‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍❤️‍💋‍👩🏽', + ':kiss_ww_tone4-3:': '👩🏾‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_tone4:': '👩🏾‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_medium_dark_skin_tone:': '👩🏾‍❤️‍💋‍👩🏾', + ':kiss_ww_tone4:': '👩🏾‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_tone4_tone5:': '👩🏾‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍❤️‍💋‍👩🏿', + ':kiss_ww_tone4-5:': '👩🏾‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_tone5_tone1:': '👩🏿‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_dark_skin_tone_light_skin_tone:': '👩🏿‍❤️‍💋‍👩🏻', + ':kiss_ww_tone5-1:': '👩🏿‍❤️‍💋‍👩🏻', + ':kiss_woman_woman_tone5_tone2:': '👩🏿‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍❤️‍💋‍👩🏼', + ':kiss_ww_tone5-2:': '👩🏿‍❤️‍💋‍👩🏼', + ':kiss_woman_woman_tone5_tone3:': '👩🏿‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_dark_skin_tone_medium_skin_tone:': '👩🏿‍❤️‍💋‍👩🏽', + ':kiss_ww_tone5-3:': '👩🏿‍❤️‍💋‍👩🏽', + ':kiss_woman_woman_tone5_tone4:': '👩🏿‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍❤️‍💋‍👩🏾', + ':kiss_ww_tone5-4:': '👩🏿‍❤️‍💋‍👩🏾', + ':kiss_woman_woman_tone5:': '👩🏿‍❤️‍💋‍👩🏿', + ':kiss_woman_woman_dark_skin_tone:': '👩🏿‍❤️‍💋‍👩🏿', + ':kiss_ww_tone5:': '👩🏿‍❤️‍💋‍👩🏿', + ':couple_with_heart:': '💑', + ':couple_with_heart_tone1:': '💑🏻', + ':couple_with_heart_light_skin_tone:': '💑🏻', + ':couple_with_heart_tone2:': '💑🏼', + ':couple_with_heart_medium_light_skin_tone:': '💑🏼', + ':couple_with_heart_tone3:': '💑🏽', + ':couple_with_heart_medium_skin_tone:': '💑🏽', + ':couple_with_heart_tone4:': '💑🏾', + ':couple_with_heart_medium_dark_skin_tone:': '💑🏾', + ':couple_with_heart_tone5:': '💑🏿', + ':couple_with_heart_dark_skin_tone:': '💑🏿', + ':couple_with_heart_person_person_tone1_tone2:': '🧑🏻‍❤️‍🧑🏼', + ':couple_with_heart_person_person_light_skin_tone_medium_light_skin_tone:': '🧑🏻‍❤️‍🧑🏼', + ':couple_with_heart_tone1-2:': '🧑🏻‍❤️‍🧑🏼', + ':couple_with_heart_person_person_tone1_tone3:': '🧑🏻‍❤️‍🧑🏽', + ':couple_with_heart_person_person_light_skin_tone_medium_skin_tone:': '🧑🏻‍❤️‍🧑🏽', + ':couple_with_heart_tone1-3:': '🧑🏻‍❤️‍🧑🏽', + ':couple_with_heart_person_person_tone1_tone4:': '🧑🏻‍❤️‍🧑🏾', + ':couple_with_heart_person_person_light_skin_tone_medium_dark_skin_tone:': '🧑🏻‍❤️‍🧑🏾', + ':couple_with_heart_tone1-4:': '🧑🏻‍❤️‍🧑🏾', + ':couple_with_heart_person_person_tone1_tone5:': '🧑🏻‍❤️‍🧑🏿', + ':couple_with_heart_person_person_light_skin_tone_dark_skin_tone:': '🧑🏻‍❤️‍🧑🏿', + ':couple_with_heart_tone1-5:': '🧑🏻‍❤️‍🧑🏿', + ':couple_with_heart_person_person_tone2_tone1:': '🧑🏼‍❤️‍🧑🏻', + ':couple_with_heart_person_person_medium_light_skin_tone_light_skin_tone:': '🧑🏼‍❤️‍🧑🏻', + ':couple_with_heart_tone2-1:': '🧑🏼‍❤️‍🧑🏻', + ':couple_with_heart_person_person_tone2_tone3:': '🧑🏼‍❤️‍🧑🏽', + ':couple_with_heart_person_person_medium_light_skin_tone_medium_skin_tone:': '🧑🏼‍❤️‍🧑🏽', + ':couple_with_heart_tone2-3:': '🧑🏼‍❤️‍🧑🏽', + ':couple_with_heart_person_person_tone2_tone4:': '🧑🏼‍❤️‍🧑🏾', + ':couple_with_heart_person_person_medium_light_skin_tone_medium_dark_skin_tone:': '🧑🏼‍❤️‍🧑🏾', + ':couple_with_heart_tone2-4:': '🧑🏼‍❤️‍🧑🏾', + ':couple_with_heart_person_person_tone2_tone5:': '🧑🏼‍❤️‍🧑🏿', + ':couple_with_heart_person_person_medium_light_skin_tone_dark_skin_tone:': '🧑🏼‍❤️‍🧑🏿', + ':couple_with_heart_tone2-5:': '🧑🏼‍❤️‍🧑🏿', + ':couple_with_heart_person_person_tone3_tone1:': '🧑🏽‍❤️‍🧑🏻', + ':couple_with_heart_person_person_medium_skin_tone_light_skin_tone:': '🧑🏽‍❤️‍🧑🏻', + ':couple_with_heart_tone3-1:': '🧑🏽‍❤️‍🧑🏻', + ':couple_with_heart_person_person_tone3_tone2:': '🧑🏽‍❤️‍🧑🏼', + ':couple_with_heart_person_person_medium_skin_tone_medium_light_skin_tone:': '🧑🏽‍❤️‍🧑🏼', + ':couple_with_heart_tone3-2:': '🧑🏽‍❤️‍🧑🏼', + ':couple_with_heart_person_person_tone3_tone4:': '🧑🏽‍❤️‍🧑🏾', + ':couple_with_heart_person_person_medium_skin_tone_medium_dark_skin_tone:': '🧑🏽‍❤️‍🧑🏾', + ':couple_with_heart_tone3-4:': '🧑🏽‍❤️‍🧑🏾', + ':couple_with_heart_person_person_tone3_tone5:': '🧑🏽‍❤️‍🧑🏿', + ':couple_with_heart_person_person_medium_skin_tone_dark_skin_tone:': '🧑🏽‍❤️‍🧑🏿', + ':couple_with_heart_tone3-5:': '🧑🏽‍❤️‍🧑🏿', + ':couple_with_heart_person_person_tone4_tone1:': '🧑🏾‍❤️‍🧑🏻', + ':couple_with_heart_person_person_medium_dark_skin_tone_light_skin_tone:': '🧑🏾‍❤️‍🧑🏻', + ':couple_with_heart_tone4-1:': '🧑🏾‍❤️‍🧑🏻', + ':couple_with_heart_person_person_tone4_tone2:': '🧑🏾‍❤️‍🧑🏼', + ':couple_with_heart_person_person_medium_dark_skin_tone_medium_light_skin_tone:': '🧑🏾‍❤️‍🧑🏼', + ':couple_with_heart_tone4-2:': '🧑🏾‍❤️‍🧑🏼', + ':couple_with_heart_person_person_tone4_tone3:': '🧑🏾‍❤️‍🧑🏽', + ':couple_with_heart_person_person_medium_dark_skin_tone_medium_skin_tone:': '🧑🏾‍❤️‍🧑🏽', + ':couple_with_heart_tone4-3:': '🧑🏾‍❤️‍🧑🏽', + ':couple_with_heart_person_person_tone4_tone5:': '🧑🏾‍❤️‍🧑🏿', + ':couple_with_heart_person_person_medium_dark_skin_tone_dark_skin_tone:': '🧑🏾‍❤️‍🧑🏿', + ':couple_with_heart_tone4-5:': '🧑🏾‍❤️‍🧑🏿', + ':couple_with_heart_person_person_tone5_tone1:': '🧑🏿‍❤️‍🧑🏻', + ':couple_with_heart_person_person_dark_skin_tone_light_skin_tone:': '🧑🏿‍❤️‍🧑🏻', + ':couple_with_heart_tone5-1:': '🧑🏿‍❤️‍🧑🏻', + ':couple_with_heart_person_person_tone5_tone2:': '🧑🏿‍❤️‍🧑🏼', + ':couple_with_heart_person_person_dark_skin_tone_medium_light_skin_tone:': '🧑🏿‍❤️‍🧑🏼', + ':couple_with_heart_tone5-2:': '🧑🏿‍❤️‍🧑🏼', + ':couple_with_heart_person_person_tone5_tone3:': '🧑🏿‍❤️‍🧑🏽', + ':couple_with_heart_person_person_dark_skin_tone_medium_skin_tone:': '🧑🏿‍❤️‍🧑🏽', + ':couple_with_heart_tone5-3:': '🧑🏿‍❤️‍🧑🏽', + ':couple_with_heart_person_person_tone5_tone4:': '🧑🏿‍❤️‍🧑🏾', + ':couple_with_heart_person_person_dark_skin_tone_medium_dark_skin_tone:': '🧑🏿‍❤️‍🧑🏾', + ':couple_with_heart_tone5-4:': '🧑🏿‍❤️‍🧑🏾', + ':couple_with_heart_woman_man:': '👩‍❤️‍👨', + ':couple_with_heart_woman_man_tone1:': '👩🏻‍❤️‍👨🏻', + ':couple_with_heart_woman_man_light_skin_tone:': '👩🏻‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone1_tone2:': '👩🏻‍❤️‍👨🏼', + ':couple_with_heart_woman_man_light_skin_tone_medium_light_skin_tone:': '👩🏻‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone1-2:': '👩🏻‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone1_tone3:': '👩🏻‍❤️‍👨🏽', + ':couple_with_heart_woman_man_light_skin_tone_medium_skin_tone:': '👩🏻‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone1-3:': '👩🏻‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone1_tone4:': '👩🏻‍❤️‍👨🏾', + ':couple_with_heart_woman_man_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone1-4:': '👩🏻‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone1_tone5:': '👩🏻‍❤️‍👨🏿', + ':couple_with_heart_woman_man_light_skin_tone_dark_skin_tone:': '👩🏻‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone1-5:': '👩🏻‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone2_tone1:': '👩🏼‍❤️‍👨🏻', + ':couple_with_heart_woman_man_medium_light_skin_tone_light_skin_tone:': '👩🏼‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone2-1:': '👩🏼‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone2:': '👩🏼‍❤️‍👨🏼', + ':couple_with_heart_woman_man_medium_light_skin_tone:': '👩🏼‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone2_tone3:': '👩🏼‍❤️‍👨🏽', + ':couple_with_heart_woman_man_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone2-3:': '👩🏼‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone2_tone4:': '👩🏼‍❤️‍👨🏾', + ':couple_with_heart_woman_man_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone2-4:': '👩🏼‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone2_tone5:': '👩🏼‍❤️‍👨🏿', + ':couple_with_heart_woman_man_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone2-5:': '👩🏼‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone3_tone1:': '👩🏽‍❤️‍👨🏻', + ':couple_with_heart_woman_man_medium_skin_tone_light_skin_tone:': '👩🏽‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone3-1:': '👩🏽‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone3_tone2:': '👩🏽‍❤️‍👨🏼', + ':couple_with_heart_woman_man_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone3-2:': '👩🏽‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone3:': '👩🏽‍❤️‍👨🏽', + ':couple_with_heart_woman_man_medium_skin_tone:': '👩🏽‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone3_tone4:': '👩🏽‍❤️‍👨🏾', + ':couple_with_heart_woman_man_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone3-4:': '👩🏽‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone3_tone5:': '👩🏽‍❤️‍👨🏿', + ':couple_with_heart_woman_man_medium_skin_tone_dark_skin_tone:': '👩🏽‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone3-5:': '👩🏽‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone4_tone1:': '👩🏾‍❤️‍👨🏻', + ':couple_with_heart_woman_man_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone4-1:': '👩🏾‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone4_tone2:': '👩🏾‍❤️‍👨🏼', + ':couple_with_heart_woman_man_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone4-2:': '👩🏾‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone4_tone3:': '👩🏾‍❤️‍👨🏽', + ':couple_with_heart_woman_man_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone4-3:': '👩🏾‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone4:': '👩🏾‍❤️‍👨🏾', + ':couple_with_heart_woman_man_medium_dark_skin_tone:': '👩🏾‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone4_tone5:': '👩🏾‍❤️‍👨🏿', + ':couple_with_heart_woman_man_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone4-5:': '👩🏾‍❤️‍👨🏿', + ':couple_with_heart_woman_man_tone5_tone1:': '👩🏿‍❤️‍👨🏻', + ':couple_with_heart_woman_man_dark_skin_tone_light_skin_tone:': '👩🏿‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone5-1:': '👩🏿‍❤️‍👨🏻', + ':couple_with_heart_woman_man_tone5_tone2:': '👩🏿‍❤️‍👨🏼', + ':couple_with_heart_woman_man_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone5-2:': '👩🏿‍❤️‍👨🏼', + ':couple_with_heart_woman_man_tone5_tone3:': '👩🏿‍❤️‍👨🏽', + ':couple_with_heart_woman_man_dark_skin_tone_medium_skin_tone:': '👩🏿‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone5-3:': '👩🏿‍❤️‍👨🏽', + ':couple_with_heart_woman_man_tone5_tone4:': '👩🏿‍❤️‍👨🏾', + ':couple_with_heart_woman_man_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone5-4:': '👩🏿‍❤️‍👨🏾', + ':couple_with_heart_woman_man_tone5:': '👩🏿‍❤️‍👨🏿', + ':couple_with_heart_woman_man_dark_skin_tone:': '👩🏿‍❤️‍👨🏿', + ':couple_mm:': '👨‍❤️‍👨', + ':couple_with_heart_mm:': '👨‍❤️‍👨', + ':couple_with_heart_man_man_tone1:': '👨🏻‍❤️‍👨🏻', + ':couple_with_heart_man_man_light_skin_tone:': '👨🏻‍❤️‍👨🏻', + ':couple_mm_tone1:': '👨🏻‍❤️‍👨🏻', + ':couple_with_heart_man_man_tone1_tone2:': '👨🏻‍❤️‍👨🏼', + ':couple_with_heart_man_man_light_skin_tone_medium_light_skin_tone:': '👨🏻‍❤️‍👨🏼', + ':couple_mm_tone1-2:': '👨🏻‍❤️‍👨🏼', + ':couple_with_heart_man_man_tone1_tone3:': '👨🏻‍❤️‍👨🏽', + ':couple_with_heart_man_man_light_skin_tone_medium_skin_tone:': '👨🏻‍❤️‍👨🏽', + ':couple_mm_tone1-3:': '👨🏻‍❤️‍👨🏽', + ':couple_with_heart_man_man_tone1_tone4:': '👨🏻‍❤️‍👨🏾', + ':couple_with_heart_man_man_light_skin_tone_medium_dark_skin_tone:': '👨🏻‍❤️‍👨🏾', + ':couple_mm_tone1-4:': '👨🏻‍❤️‍👨🏾', + ':couple_with_heart_man_man_tone1_tone5:': '👨🏻‍❤️‍👨🏿', + ':couple_with_heart_man_man_light_skin_tone_dark_skin_tone:': '👨🏻‍❤️‍👨🏿', + ':couple_mm_tone1-5:': '👨🏻‍❤️‍👨🏿', + ':couple_with_heart_man_man_tone2_tone1:': '👨🏼‍❤️‍👨🏻', + ':couple_with_heart_man_man_medium_light_skin_tone_light_skin_tone:': '👨🏼‍❤️‍👨🏻', + ':couple_mm_tone2-1:': '👨🏼‍❤️‍👨🏻', + ':couple_with_heart_man_man_tone2:': '👨🏼‍❤️‍👨🏼', + ':couple_with_heart_man_man_medium_light_skin_tone:': '👨🏼‍❤️‍👨🏼', + ':couple_mm_tone2:': '👨🏼‍❤️‍👨🏼', + ':couple_with_heart_man_man_tone2_tone3:': '👨🏼‍❤️‍👨🏽', + ':couple_with_heart_man_man_medium_light_skin_tone_medium_skin_tone:': '👨🏼‍❤️‍👨🏽', + ':couple_mm_tone2-3:': '👨🏼‍❤️‍👨🏽', + ':couple_with_heart_man_man_tone2_tone4:': '👨🏼‍❤️‍👨🏾', + ':couple_with_heart_man_man_medium_light_skin_tone_medium_dark_skin_tone:': '👨🏼‍❤️‍👨🏾', + ':couple_mm_tone2-4:': '👨🏼‍❤️‍👨🏾', + ':couple_with_heart_man_man_tone2_tone5:': '👨🏼‍❤️‍👨🏿', + ':couple_with_heart_man_man_medium_light_skin_tone_dark_skin_tone:': '👨🏼‍❤️‍👨🏿', + ':couple_mm_tone2-5:': '👨🏼‍❤️‍👨🏿', + ':couple_with_heart_man_man_tone3_tone1:': '👨🏽‍❤️‍👨🏻', + ':couple_with_heart_man_man_medium_skin_tone_light_skin_tone:': '👨🏽‍❤️‍👨🏻', + ':couple_mm_tone3-1:': '👨🏽‍❤️‍👨🏻', + ':couple_with_heart_man_man_tone3_tone2:': '👨🏽‍❤️‍👨🏼', + ':couple_with_heart_man_man_medium_skin_tone_medium_light_skin_tone:': '👨🏽‍❤️‍👨🏼', + ':couple_mm_tone3-2:': '👨🏽‍❤️‍👨🏼', + ':couple_with_heart_man_man_tone3:': '👨🏽‍❤️‍👨🏽', + ':couple_with_heart_man_man_medium_skin_tone:': '👨🏽‍❤️‍👨🏽', + ':couple_mm_tone3:': '👨🏽‍❤️‍👨🏽', + ':couple_with_heart_man_man_tone3_tone4:': '👨🏽‍❤️‍👨🏾', + ':couple_with_heart_man_man_medium_skin_tone_medium_dark_skin_tone:': '👨🏽‍❤️‍👨🏾', + ':couple_mm_tone3-4:': '👨🏽‍❤️‍👨🏾', + ':couple_with_heart_man_man_tone3_tone5:': '👨🏽‍❤️‍👨🏿', + ':couple_with_heart_man_man_medium_skin_tone_dark_skin_tone:': '👨🏽‍❤️‍👨🏿', + ':couple_mm_tone3-5:': '👨🏽‍❤️‍👨🏿', + ':couple_with_heart_man_man_tone4_tone1:': '👨🏾‍❤️‍👨🏻', + ':couple_with_heart_man_man_medium_dark_skin_tone_light_skin_tone:': '👨🏾‍❤️‍👨🏻', + ':couple_mm_tone4-1:': '👨🏾‍❤️‍👨🏻', + ':couple_with_heart_man_man_tone4_tone2:': '👨🏾‍❤️‍👨🏼', + ':couple_with_heart_man_man_medium_dark_skin_tone_medium_light_skin_tone:': '👨🏾‍❤️‍👨🏼', + ':couple_mm_tone4-2:': '👨🏾‍❤️‍👨🏼', + ':couple_with_heart_man_man_tone4_tone3:': '👨🏾‍❤️‍👨🏽', + ':couple_with_heart_man_man_medium_dark_skin_tone_medium_skin_tone:': '👨🏾‍❤️‍👨🏽', + ':couple_mm_tone4-3:': '👨🏾‍❤️‍👨🏽', + ':couple_with_heart_man_man_tone4:': '👨🏾‍❤️‍👨🏾', + ':couple_with_heart_man_man_medium_dark_skin_tone:': '👨🏾‍❤️‍👨🏾', + ':couple_mm_tone4:': '👨🏾‍❤️‍👨🏾', + ':couple_with_heart_man_man_tone4_tone5:': '👨🏾‍❤️‍👨🏿', + ':couple_with_heart_man_man_medium_dark_skin_tone_dark_skin_tone:': '👨🏾‍❤️‍👨🏿', + ':couple_mm_tone4-5:': '👨🏾‍❤️‍👨🏿', + ':couple_with_heart_man_man_tone5_tone1:': '👨🏿‍❤️‍👨🏻', + ':couple_with_heart_man_man_dark_skin_tone_light_skin_tone:': '👨🏿‍❤️‍👨🏻', + ':couple_mm_tone5-1:': '👨🏿‍❤️‍👨🏻', + ':couple_with_heart_man_man_tone5_tone2:': '👨🏿‍❤️‍👨🏼', + ':couple_with_heart_man_man_dark_skin_tone_medium_light_skin_tone:': '👨🏿‍❤️‍👨🏼', + ':couple_mm_tone5-2:': '👨🏿‍❤️‍👨🏼', + ':couple_with_heart_man_man_tone5_tone3:': '👨🏿‍❤️‍👨🏽', + ':couple_with_heart_man_man_dark_skin_tone_medium_skin_tone:': '👨🏿‍❤️‍👨🏽', + ':couple_mm_tone5-3:': '👨🏿‍❤️‍👨🏽', + ':couple_with_heart_man_man_tone5_tone4:': '👨🏿‍❤️‍👨🏾', + ':couple_with_heart_man_man_dark_skin_tone_medium_dark_skin_tone:': '👨🏿‍❤️‍👨🏾', + ':couple_mm_tone5-4:': '👨🏿‍❤️‍👨🏾', + ':couple_with_heart_man_man_tone5:': '👨🏿‍❤️‍👨🏿', + ':couple_with_heart_man_man_dark_skin_tone:': '👨🏿‍❤️‍👨🏿', + ':couple_mm_tone5:': '👨🏿‍❤️‍👨🏿', + ':couple_ww:': '👩‍❤️‍👩', + ':couple_with_heart_ww:': '👩‍❤️‍👩', + ':couple_with_heart_woman_woman_tone1:': '👩🏻‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_light_skin_tone:': '👩🏻‍❤️‍👩🏻', + ':couple_ww_tone1:': '👩🏻‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_tone1_tone2:': '👩🏻‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_light_skin_tone_medium_light_skin_tone:': '👩🏻‍❤️‍👩🏼', + ':couple_ww_tone1-2:': '👩🏻‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_tone1_tone3:': '👩🏻‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_light_skin_tone_medium_skin_tone:': '👩🏻‍❤️‍👩🏽', + ':couple_ww_tone1-3:': '👩🏻‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_tone1_tone4:': '👩🏻‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍❤️‍👩🏾', + ':couple_ww_tone1-4:': '👩🏻‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_tone1_tone5:': '👩🏻‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_light_skin_tone_dark_skin_tone:': '👩🏻‍❤️‍👩🏿', + ':couple_ww_tone1-5:': '👩🏻‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_tone2_tone1:': '👩🏼‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_medium_light_skin_tone_light_skin_tone:': '👩🏼‍❤️‍👩🏻', + ':couple_ww_tone2-1:': '👩🏼‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_tone2:': '👩🏼‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_medium_light_skin_tone:': '👩🏼‍❤️‍👩🏼', + ':couple_ww_tone2:': '👩🏼‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_tone2_tone3:': '👩🏼‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍❤️‍👩🏽', + ':couple_ww_tone2-3:': '👩🏼‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_tone2_tone4:': '👩🏼‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍❤️‍👩🏾', + ':couple_ww_tone2-4:': '👩🏼‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_tone2_tone5:': '👩🏼‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍❤️‍👩🏿', + ':couple_ww_tone2-5:': '👩🏼‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_tone3_tone1:': '👩🏽‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_medium_skin_tone_light_skin_tone:': '👩🏽‍❤️‍👩🏻', + ':couple_ww_tone3-1:': '👩🏽‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_tone3_tone2:': '👩🏽‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍❤️‍👩🏼', + ':couple_ww_tone3-2:': '👩🏽‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_tone3:': '👩🏽‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_medium_skin_tone:': '👩🏽‍❤️‍👩🏽', + ':couple_ww_tone3:': '👩🏽‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_tone3_tone4:': '👩🏽‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍❤️‍👩🏾', + ':couple_ww_tone3-4:': '👩🏽‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_tone3_tone5:': '👩🏽‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_medium_skin_tone_dark_skin_tone:': '👩🏽‍❤️‍👩🏿', + ':couple_ww_tone3-5:': '👩🏽‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_tone4_tone1:': '👩🏾‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍❤️‍👩🏻', + ':couple_ww_tone4-1:': '👩🏾‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_tone4_tone2:': '👩🏾‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍❤️‍👩🏼', + ':couple_ww_tone4-2:': '👩🏾‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_tone4_tone3:': '👩🏾‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍❤️‍👩🏽', + ':couple_ww_tone4-3:': '👩🏾‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_tone4:': '👩🏾‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_medium_dark_skin_tone:': '👩🏾‍❤️‍👩🏾', + ':couple_ww_tone4:': '👩🏾‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_tone4_tone5:': '👩🏾‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍❤️‍👩🏿', + ':couple_ww_tone4-5:': '👩🏾‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_tone5_tone1:': '👩🏿‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_dark_skin_tone_light_skin_tone:': '👩🏿‍❤️‍👩🏻', + ':couple_ww_tone5-1:': '👩🏿‍❤️‍👩🏻', + ':couple_with_heart_woman_woman_tone5_tone2:': '👩🏿‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍❤️‍👩🏼', + ':couple_ww_tone5-2:': '👩🏿‍❤️‍👩🏼', + ':couple_with_heart_woman_woman_tone5_tone3:': '👩🏿‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_dark_skin_tone_medium_skin_tone:': '👩🏿‍❤️‍👩🏽', + ':couple_ww_tone5-3:': '👩🏿‍❤️‍👩🏽', + ':couple_with_heart_woman_woman_tone5_tone4:': '👩🏿‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍❤️‍👩🏾', + ':couple_ww_tone5-4:': '👩🏿‍❤️‍👩🏾', + ':couple_with_heart_woman_woman_tone5:': '👩🏿‍❤️‍👩🏿', + ':couple_with_heart_woman_woman_dark_skin_tone:': '👩🏿‍❤️‍👩🏿', + ':couple_ww_tone5:': '👩🏿‍❤️‍👩🏿', + ':family_man_woman_boy:': '👨‍👩‍👦', + ':family_mwg:': '👨‍👩‍👧', + ':family_mwgb:': '👨‍👩‍👧‍👦', + ':family_mwbb:': '👨‍👩‍👦‍👦', + ':family_mwgg:': '👨‍👩‍👧‍👧', + ':family_mmb:': '👨‍👨‍👦', + ':family_mmg:': '👨‍👨‍👧', + ':family_mmgb:': '👨‍👨‍👧‍👦', + ':family_mmbb:': '👨‍👨‍👦‍👦', + ':family_mmgg:': '👨‍👨‍👧‍👧', + ':family_wwb:': '👩‍👩‍👦', + ':family_wwg:': '👩‍👩‍👧', + ':family_wwgb:': '👩‍👩‍👧‍👦', + ':family_wwbb:': '👩‍👩‍👦‍👦', + ':family_wwgg:': '👩‍👩‍👧‍👧', + ':family_man_boy:': '👨‍👦', + ':family_man_boy_boy:': '👨‍👦‍👦', + ':family_man_girl:': '👨‍👧', + ':family_man_girl_boy:': '👨‍👧‍👦', + ':family_man_girl_girl:': '👨‍👧‍👧', + ':family_woman_boy:': '👩‍👦', + ':family_woman_boy_boy:': '👩‍👦‍👦', + ':family_woman_girl:': '👩‍👧', + ':family_woman_girl_boy:': '👩‍👧‍👦', + ':family_woman_girl_girl:': '👩‍👧‍👧', + ':speaking_head:': '🗣️', + ':speaking_head_in_silhouette:': '🗣️', + ':bust_in_silhouette:': '👤', + ':busts_in_silhouette:': '👥', + ':people_hugging:': '🫂', + ':family:': '👪️', + ':family_adult_adult_child:': '🧑‍🧑‍🧒', + ':family_adult_adult_child_child:': '🧑‍🧑‍🧒‍🧒', + ':family_adult_child:': '🧑‍🧒', + ':family_adult_child_child:': '🧑‍🧒‍🧒', + ':footprints:': '👣', + ':fingerprint:': '🫆', + ':monkey_face:': '🐵', + ':monkey:': '🐒', + ':gorilla:': '🦍', + ':orangutan:': '🦧', + ':dog:': '🐶', + ':dog_face:': '🐶', + ':dog2:': '🐕️', + ':guide_dog:': '🦮', + ':service_dog:': '🐕‍🦺', + ':poodle:': '🐩', + ':wolf:': '🐺', + ':fox:': '🦊', + ':fox_face:': '🦊', + ':raccoon:': '🦝', + ':cat:': '🐱', + ':cat_face:': '🐱', + ':cat2:': '🐈️', + ':black_cat:': '🐈‍⬛', + ':lion_face:': '🦁', + ':lion:': '🦁', + ':tiger:': '🐯', + ':tiger_face:': '🐯', + ':tiger2:': '🐅', + ':leopard:': '🐆', + ':horse:': '🐴', + ':horse_face:': '🐴', + ':moose:': '🫎', + ':donkey:': '🫏', + ':racehorse:': '🐎', + ':unicorn:': '🦄', + ':unicorn_face:': '🦄', + ':zebra:': '🦓', + ':deer:': '🦌', + ':bison:': '🦬', + ':cow:': '🐮', + ':cow_face:': '🐮', + ':ox:': '🐂', + ':water_buffalo:': '🐃', + ':cow2:': '🐄', + ':pig:': '🐷', + ':pig_face:': '🐷', + ':pig2:': '🐖', + ':boar:': '🐗', + ':pig_nose:': '🐽', + ':ram:': '🐏', + ':sheep:': '🐑', + ':ewe:': '🐑', + ':goat:': '🐐', + ':dromedary_camel:': '🐪', + ':camel:': '🐫', + ':llama:': '🦙', + ':giraffe:': '🦒', + ':elephant:': '🐘', + ':mammoth:': '🦣', + ':rhino:': '🦏', + ':rhinoceros:': '🦏', + ':hippopotamus:': '🦛', + ':mouse:': '🐭', + ':mouse_face:': '🐭', + ':mouse2:': '🐁', + ':rat:': '🐀', + ':hamster:': '🐹', + ':rabbit:': '🐰', + ':rabbit_face:': '🐰', + ':rabbit2:': '🐇', + ':chipmunk:': '🐿️', + ':beaver:': '🦫', + ':hedgehog:': '🦔', + ':bat:': '🦇', + ':bear:': '🐻', + ':polar_bear:': '🐻‍❄️', + ':koala:': '🐨', + ':panda_face:': '🐼', + ':panda:': '🐼', + ':sloth:': '🦥', + ':otter:': '🦦', + ':skunk:': '🦨', + ':kangaroo:': '🦘', + ':badger:': '🦡', + ':feet:': '🐾', + ':paw_prints:': '🐾', + ':turkey:': '🦃', + ':chicken:': '🐔', + ':rooster:': '🐓', + ':hatching_chick:': '🐣', + ':baby_chick:': '🐤', + ':hatched_chick:': '🐥', + ':bird:': '🐦️', + ':penguin:': '🐧', + ':dove:': '🕊️', + ':dove_of_peace:': '🕊️', + ':eagle:': '🦅', + ':duck:': '🦆', + ':swan:': '🦢', + ':owl:': '🦉', + ':dodo:': '🦤', + ':feather:': '🪶', + ':flamingo:': '🦩', + ':peacock:': '🦚', + ':parrot:': '🦜', + ':wing:': '🪽', + ':black_bird:': '🐦‍⬛', + ':goose:': '🪿', + ':phoenix:': '🐦‍🔥', + ':frog:': '🐸', + ':crocodile:': '🐊', + ':turtle:': '🐢', + ':lizard:': '🦎', + ':snake:': '🐍', + ':dragon_face:': '🐲', + ':dragon:': '🐉', + ':sauropod:': '🦕', + ':t_rex:': '🦖', + ':whale:': '🐳', + ':whale2:': '🐋', + ':dolphin:': '🐬', + ':orca:': '🫍', + ':seal:': '🦭', + ':fish:': '🐟️', + ':tropical_fish:': '🐠', + ':blowfish:': '🐡', + ':shark:': '🦈', + ':octopus:': '🐙', + ':shell:': '🐚', + ':spiral_shell:': '🐚', + ':coral:': '🪸', + ':jellyfish:': '🪼', + ':crab:': '🦀', + ':lobster:': '🦞', + ':shrimp:': '🦐', + ':squid:': '🦑', + ':oyster:': '🦪', + ':snail:': '🐌', + ':butterfly:': '🦋', + ':bug:': '🐛', + ':ant:': '🐜', + ':bee:': '🐝', + ':honeybee:': '🐝', + ':beetle:': '🐞', + ':lady_beetle:': '🐞', + ':cricket:': '🦗', + ':cockroach:': '🪳', + ':spider:': '🕷️', + ':spider_web:': '🕸️', + ':scorpion:': '🦂', + ':mosquito:': '🦟', + ':fly:': '🪰', + ':worm:': '🪱', + ':microbe:': '🦠', + ':bouquet:': '💐', + ':cherry_blossom:': '🌸', + ':white_flower:': '💮', + ':lotus:': '🪷', + ':rosette:': '🏵️', + ':rose:': '🌹', + ':wilted_rose:': '🥀', + ':wilted_flower:': '🥀', + ':hibiscus:': '🌺', + ':sunflower:': '🌻', + ':blossom:': '🌼', + ':tulip:': '🌷', + ':hyacinth:': '🪻', + ':seedling:': '🌱', + ':potted_plant:': '🪴', + ':evergreen_tree:': '🌲', + ':deciduous_tree:': '🌳', + ':palm_tree:': '🌴', + ':cactus:': '🌵', + ':ear_of_rice:': '🌾', + ':sheaf_of_rice:': '🌾', + ':herb:': '🌿', + ':shamrock:': '☘️', + ':four_leaf_clover:': '🍀', + ':maple_leaf:': '🍁', + ':fallen_leaf:': '🍂', + ':leaves:': '🍃', + ':empty_nest:': '🪹', + ':nest_with_eggs:': '🪺', + ':mushroom:': '🍄', + ':leafless_tree:': '🪾', + ':grapes:': '🍇', + ':melon:': '🍈', + ':watermelon:': '🍉', + ':tangerine:': '🍊', + ':lemon:': '🍋', + ':lime:': '🍋‍🟩', + ':banana:': '🍌', + ':pineapple:': '🍍', + ':mango:': '🥭', + ':apple:': '🍎', + ':red_apple:': '🍎', + ':green_apple:': '🍏', + ':pear:': '🍐', + ':peach:': '🍑', + ':cherries:': '🍒', + ':strawberry:': '🍓', + ':blueberries:': '🫐', + ':kiwi:': '🥝', + ':kiwifruit:': '🥝', + ':kiwi_fruit:': '🥝', + ':tomato:': '🍅', + ':olive:': '🫒', + ':coconut:': '🥥', + ':avocado:': '🥑', + ':eggplant:': '🍆', + ':potato:': '🥔', + ':carrot:': '🥕', + ':corn:': '🌽', + ':ear_of_corn:': '🌽', + ':hot_pepper:': '🌶️', + ':bell_pepper:': '🫑', + ':cucumber:': '🥒', + ':leafy_green:': '🥬', + ':broccoli:': '🥦', + ':garlic:': '🧄', + ':onion:': '🧅', + ':peanuts:': '🥜', + ':shelled_peanut:': '🥜', + ':beans:': '🫘', + ':chestnut:': '🌰', + ':ginger_root:': '🫚', + ':pea_pod:': '🫛', + ':brown_mushroom:': '🍄‍🟫', + ':root_vegetable:': '🫜', + ':bread:': '🍞', + ':croissant:': '🥐', + ':french_bread:': '🥖', + ':baguette_bread:': '🥖', + ':flatbread:': '🫓', + ':pretzel:': '🥨', + ':bagel:': '🥯', + ':pancakes:': '🥞', + ':waffle:': '🧇', + ':cheese:': '🧀', + ':cheese_wedge:': '🧀', + ':meat_on_bone:': '🍖', + ':poultry_leg:': '🍗', + ':cut_of_meat:': '🥩', + ':bacon:': '🥓', + ':hamburger:': '🍔', + ':fries:': '🍟', + ':french_fries:': '🍟', + ':pizza:': '🍕', + ':hotdog:': '🌭', + ':hot_dog:': '🌭', + ':sandwich:': '🥪', + ':taco:': '🌮', + ':burrito:': '🌯', + ':tamale:': '🫔', + ':stuffed_flatbread:': '🥙', + ':stuffed_pita:': '🥙', + ':falafel:': '🧆', + ':egg:': '🥚', + ':cooking:': '🍳', + ':shallow_pan_of_food:': '🥘', + ':paella:': '🥘', + ':stew:': '🍲', + ':pot_of_food:': '🍲', + ':fondue:': '🫕', + ':bowl_with_spoon:': '🥣', + ':salad:': '🥗', + ':green_salad:': '🥗', + ':popcorn:': '🍿', + ':butter:': '🧈', + ':salt:': '🧂', + ':canned_food:': '🥫', + ':bento:': '🍱', + ':bento_box:': '🍱', + ':rice_cracker:': '🍘', + ':rice_ball:': '🍙', + ':rice:': '🍚', + ':cooked_rice:': '🍚', + ':curry:': '🍛', + ':curry_rice:': '🍛', + ':ramen:': '🍜', + ':steaming_bowl:': '🍜', + ':spaghetti:': '🍝', + ':sweet_potato:': '🍠', + ':oden:': '🍢', + ':sushi:': '🍣', + ':fried_shrimp:': '🍤', + ':fish_cake:': '🍥', + ':moon_cake:': '🥮', + ':dango:': '🍡', + ':dumpling:': '🥟', + ':fortune_cookie:': '🥠', + ':takeout_box:': '🥡', + ':icecream:': '🍦', + ':shaved_ice:': '🍧', + ':ice_cream:': '🍨', + ':doughnut:': '🍩', + ':cookie:': '🍪', + ':birthday:': '🎂', + ':birthday_cake:': '🎂', + ':cake:': '🍰', + ':shortcake:': '🍰', + ':cupcake:': '🧁', + ':pie:': '🥧', + ':chocolate_bar:': '🍫', + ':candy:': '🍬', + ':lollipop:': '🍭', + ':custard:': '🍮', + ':pudding:': '🍮', + ':flan:': '🍮', + ':honey_pot:': '🍯', + ':baby_bottle:': '🍼', + ':milk:': '🥛', + ':glass_of_milk:': '🥛', + ':coffee:': '☕️', + ':hot_beverage:': '☕️', + ':teapot:': '🫖', + ':tea:': '🍵', + ':sake:': '🍶', + ':champagne:': '🍾', + ':bottle_with_popping_cork:': '🍾', + ':wine_glass:': '🍷', + ':cocktail:': '🍸️', + ':tropical_drink:': '🍹', + ':beer:': '🍺', + ':beer_mug:': '🍺', + ':beers:': '🍻', + ':champagne_glass:': '🥂', + ':clinking_glass:': '🥂', + ':tumbler_glass:': '🥃', + ':whisky:': '🥃', + ':pouring_liquid:': '🫗', + ':cup_with_straw:': '🥤', + ':bubble_tea:': '🧋', + ':beverage_box:': '🧃', + ':mate:': '🧉', + ':ice_cube:': '🧊', + ':chopsticks:': '🥢', + ':fork_knife_plate:': '🍽️', + ':fork_and_knife_with_plate:': '🍽️', + ':fork_and_knife:': '🍴', + ':spoon:': '🥄', + ':knife:': '🔪', + ':kitchen_knife:': '🔪', + ':jar:': '🫙', + ':amphora:': '🏺', + ':earth_africa:': '🌍️', + ':earth_americas:': '🌎️', + ':earth_asia:': '🌏️', + ':globe_with_meridians:': '🌐', + ':map:': '🗺️', + ':world_map:': '🗺️', + ':japan:': '🗾', + ':map_of_japan:': '🗾', + ':compass:': '🧭', + ':mountain_snow:': '🏔️', + ':snow_capped_mountain:': '🏔️', + ':mountain:': '⛰️', + ':landslide:': '🛘', + ':volcano:': '🌋', + ':mount_fuji:': '🗻', + ':camping:': '🏕️', + ':beach:': '🏖️', + ':beach_with_umbrella:': '🏖️', + ':desert:': '🏜️', + ':island:': '🏝️', + ':desert_island:': '🏝️', + ':park:': '🏞️', + ':national_park:': '🏞️', + ':stadium:': '🏟️', + ':classical_building:': '🏛️', + ':construction_site:': '🏗️', + ':building_construction:': '🏗️', + ':bricks:': '🧱', + ':brick:': '🧱', + ':rock:': '🪨', + ':wood:': '🪵', + ':hut:': '🛖', + ':homes:': '🏘️', + ':house_buildings:': '🏘️', + ':houses:': '🏘️', + ':house_abandoned:': '🏚️', + ':derelict_house_building:': '🏚️', + ':house:': '🏠️', + ':house_with_garden:': '🏡', + ':office:': '🏢', + ':post_office:': '🏣', + ':european_post_office:': '🏤', + ':hospital:': '🏥', + ':bank:': '🏦', + ':hotel:': '🏨', + ':love_hotel:': '🏩', + ':convenience_store:': '🏪', + ':school:': '🏫', + ':department_store:': '🏬', + ':factory:': '🏭️', + ':japanese_castle:': '🏯', + ':european_castle:': '🏰', + ':castle:': '🏰', + ':wedding:': '💒', + ':tokyo_tower:': '🗼', + ':statue_of_liberty:': '🗽', + ':church:': '⛪️', + ':mosque:': '🕌', + ':hindu_temple:': '🛕', + ':synagogue:': '🕍', + ':shinto_shrine:': '⛩️', + ':kaaba:': '🕋', + ':fountain:': '⛲️', + ':tent:': '⛺️', + ':foggy:': '🌁', + ':night_with_stars:': '🌃', + ':cityscape:': '🏙️', + ':sunrise_over_mountains:': '🌄', + ':sunrise:': '🌅', + ':city_dusk:': '🌆', + ':city_sunset:': '🌇', + ':city_sunrise:': '🌇', + ':sunset:': '🌇', + ':bridge_at_night:': '🌉', + ':hotsprings:': '♨️', + ':hot_springs:': '♨️', + ':carousel_horse:': '🎠', + ':playground_slide:': '🛝', + ':ferris_wheel:': '🎡', + ':roller_coaster:': '🎢', + ':barber:': '💈', + ':barber_pole:': '💈', + ':circus_tent:': '🎪', + ':steam_locomotive:': '🚂', + ':locomotive:': '🚂', + ':railway_car:': '🚃', + ':bullettrain_side:': '🚄', + ':bullettrain_front:': '🚅', + ':bullet_train:': '🚅', + ':train2:': '🚆', + ':metro:': '🚇️', + ':light_rail:': '🚈', + ':station:': '🚉', + ':tram:': '🚊', + ':monorail:': '🚝', + ':mountain_railway:': '🚞', + ':train:': '🚋', + ':tram_car:': '🚋', + ':bus:': '🚌', + ':oncoming_bus:': '🚍️', + ':trolleybus:': '🚎', + ':minibus:': '🚐', + ':ambulance:': '🚑️', + ':fire_engine:': '🚒', + ':police_car:': '🚓', + ':oncoming_police_car:': '🚔️', + ':taxi:': '🚕', + ':oncoming_taxi:': '🚖', + ':red_car:': '🚗', + ':automobile:': '🚗', + ':oncoming_automobile:': '🚘️', + ':blue_car:': '🚙', + ':pickup_truck:': '🛻', + ':truck:': '🚚', + ':articulated_lorry:': '🚛', + ':tractor:': '🚜', + ':race_car:': '🏎️', + ':racing_car:': '🏎️', + ':motorcycle:': '🏍️', + ':racing_motorcycle:': '🏍️', + ':motor_scooter:': '🛵', + ':motorbike:': '🛵', + ':manual_wheelchair:': '🦽', + ':motorized_wheelchair:': '🦼', + ':auto_rickshaw:': '🛺', + ':bike:': '🚲️', + ':bicycle:': '🚲️', + ':scooter:': '🛴', + ':kick_scooter:': '🛴', + ':skateboard:': '🛹', + ':roller_skate:': '🛼', + ':busstop:': '🚏', + ':bus_stop:': '🚏', + ':motorway:': '🛣️', + ':railway_track:': '🛤️', + ':railroad_track:': '🛤️', + ':oil:': '🛢️', + ':oil_drum:': '🛢️', + ':fuelpump:': '⛽️', + ':fuel_pump:': '⛽️', + ':wheel:': '🛞', + ':rotating_light:': '🚨', + ':traffic_light:': '🚥', + ':vertical_traffic_light:': '🚦', + ':octagonal_sign:': '🛑', + ':stop_sign:': '🛑', + ':construction:': '🚧', + ':anchor:': '⚓️', + ':ring_buoy:': '🛟', + ':sailboat:': '⛵️', + ':canoe:': '🛶', + ':kayak:': '🛶', + ':speedboat:': '🚤', + ':cruise_ship:': '🛳️', + ':passenger_ship:': '🛳️', + ':ferry:': '⛴️', + ':motorboat:': '🛥️', + ':motor_boat:': '🛥️', + ':ship:': '🚢', + ':airplane:': '✈️', + ':airplane_small:': '🛩️', + ':small_airplane:': '🛩️', + ':airplane_departure:': '🛫', + ':airplane_arriving:': '🛬', + ':parachute:': '🪂', + ':seat:': '💺', + ':helicopter:': '🚁', + ':suspension_railway:': '🚟', + ':mountain_cableway:': '🚠', + ':aerial_tramway:': '🚡', + ':satellite_orbital:': '🛰️', + ':rocket:': '🚀', + ':flying_saucer:': '🛸', + ':bellhop:': '🛎️', + ':bellhop_bell:': '🛎️', + ':luggage:': '🧳', + ':hourglass:': '⌛️', + ':hourglass_flowing_sand:': '⏳️', + ':watch:': '⌚️', + ':alarm_clock:': '⏰️', + ':stopwatch:': '⏱️', + ':timer:': '⏲️', + ':timer_clock:': '⏲️', + ':clock:': '🕰️', + ':mantlepiece_clock:': '🕰️', + ':clock12:': '🕛️', + ':twelve_oclock:': '🕛️', + ':clock1230:': '🕧️', + ':twelve_thirty:': '🕧️', + ':clock1:': '🕐️', + ':one_oclock:': '🕐️', + ':clock130:': '🕜️', + ':one_thirty:': '🕜️', + ':clock2:': '🕑️', + ':two_oclock:': '🕑️', + ':clock230:': '🕝️', + ':two_thirty:': '🕝️', + ':clock3:': '🕒️', + ':three_oclock:': '🕒️', + ':clock330:': '🕞️', + ':three_thirty:': '🕞️', + ':clock4:': '🕓️', + ':four_oclock:': '🕓️', + ':clock430:': '🕟️', + ':four_thirty:': '🕟️', + ':clock5:': '🕔️', + ':five_oclock:': '🕔️', + ':clock530:': '🕠️', + ':five_thirty:': '🕠️', + ':clock6:': '🕕️', + ':six_oclock:': '🕕️', + ':clock630:': '🕡️', + ':six_thirty:': '🕡️', + ':clock7:': '🕖️', + ':seven_oclock:': '🕖️', + ':clock730:': '🕢️', + ':seven_thirty:': '🕢️', + ':clock8:': '🕗️', + ':eight_oclock:': '🕗️', + ':clock830:': '🕣️', + ':eight_thirty:': '🕣️', + ':clock9:': '🕘️', + ':nine_oclock:': '🕘️', + ':clock930:': '🕤️', + ':nine_thirty:': '🕤️', + ':clock10:': '🕙️', + ':ten_oclock:': '🕙️', + ':clock1030:': '🕥️', + ':ten_thirty:': '🕥️', + ':clock11:': '🕚️', + ':eleven_oclock:': '🕚️', + ':clock1130:': '🕦️', + ':eleven_thirty:': '🕦️', + ':new_moon:': '🌑', + ':waxing_crescent_moon:': '🌒', + ':first_quarter_moon:': '🌓', + ':waxing_gibbous_moon:': '🌔', + ':full_moon:': '🌕️', + ':waning_gibbous_moon:': '🌖', + ':last_quarter_moon:': '🌗', + ':waning_crescent_moon:': '🌘', + ':crescent_moon:': '🌙', + ':new_moon_with_face:': '🌚', + ':new_moon_face:': '🌚', + ':first_quarter_moon_with_face:': '🌛', + ':last_quarter_moon_with_face:': '🌜️', + ':thermometer:': '🌡️', + ':sunny:': '☀️', + ':sun:': '☀️', + ':full_moon_with_face:': '🌝', + ':sun_with_face:': '🌞', + ':ringed_planet:': '🪐', + ':star:': '⭐️', + ':star2:': '🌟', + ':glowing_star:': '🌟', + ':stars:': '🌠', + ':shooting_star:': '🌠', + ':milky_way:': '🌌', + ':cloud:': '☁️', + ':partly_sunny:': '⛅️', + ':thunder_cloud_rain:': '⛈️', + ':thunder_cloud_and_rain:': '⛈️', + ':white_sun_small_cloud:': '🌤️', + ':white_sun_with_small_cloud:': '🌤️', + ':white_sun_cloud:': '🌥️', + ':white_sun_behind_cloud:': '🌥️', + ':white_sun_rain_cloud:': '🌦️', + ':white_sun_behind_cloud_with_rain:': '🌦️', + ':cloud_rain:': '🌧️', + ':cloud_with_rain:': '🌧️', + ':cloud_snow:': '🌨️', + ':cloud_with_snow:': '🌨️', + ':cloud_lightning:': '🌩️', + ':cloud_with_lightning:': '🌩️', + ':cloud_tornado:': '🌪️', + ':cloud_with_tornado:': '🌪️', + ':tornado:': '🌪️', + ':fog:': '🌫️', + ':wind_blowing_face:': '🌬️', + ':wind_face:': '🌬️', + ':cyclone:': '🌀', + ':rainbow:': '🌈', + ':closed_umbrella:': '🌂', + ':umbrella2:': '☂️', + ':umbrella:': '☔️', + ':beach_umbrella:': '⛱️', + ':umbrella_on_ground:': '⛱️', + ':zap:': '⚡️', + ':high_voltage:': '⚡️', + ':snowflake:': '❄️', + ':snowman2:': '☃️', + ':snowman:': '⛄️', + ':comet:': '☄️', + ':fire:': '🔥', + ':flame:': '🔥', + ':droplet:': '💧', + ':ocean:': '🌊', + ':water_wave:': '🌊', + ':jack_o_lantern:': '🎃', + ':christmas_tree:': '🎄', + ':fireworks:': '🎆', + ':sparkler:': '🎇', + ':firecracker:': '🧨', + ':sparkles:': '✨️', + ':balloon:': '🎈', + ':tada:': '🎉', + ':party_popper:': '🎉', + ':confetti_ball:': '🎊', + ':tanabata_tree:': '🎋', + ':bamboo:': '🎍', + ':dolls:': '🎎', + ':flags:': '🎏', + ':carp_streamer:': '🎏', + ':wind_chime:': '🎐', + ':rice_scene:': '🎑', + ':red_envelope:': '🧧', + ':ribbon:': '🎀', + ':gift:': '🎁', + ':wrapped_gift:': '🎁', + ':reminder_ribbon:': '🎗️', + ':tickets:': '🎟️', + ':admission_tickets:': '🎟️', + ':ticket:': '🎫', + ':military_medal:': '🎖️', + ':trophy:': '🏆️', + ':medal:': '🏅', + ':sports_medal:': '🏅', + ':first_place:': '🥇', + ':first_place_medal:': '🥇', + ':second_place:': '🥈', + ':second_place_medal:': '🥈', + ':third_place:': '🥉', + ':third_place_medal:': '🥉', + ':soccer:': '⚽️', + ':soccer_ball:': '⚽️', + ':baseball:': '⚾️', + ':softball:': '🥎', + ':basketball:': '🏀', + ':volleyball:': '🏐', + ':football:': '🏈', + ':rugby_football:': '🏉', + ':tennis:': '🎾', + ':flying_disc:': '🥏', + ':bowling:': '🎳', + ':cricket_game:': '🏏', + ':cricket_bat_ball:': '🏏', + ':field_hockey:': '🏑', + ':hockey:': '🏒', + ':ice_hockey:': '🏒', + ':lacrosse:': '🥍', + ':ping_pong:': '🏓', + ':table_tennis:': '🏓', + ':badminton:': '🏸', + ':boxing_glove:': '🥊', + ':boxing_gloves:': '🥊', + ':martial_arts_uniform:': '🥋', + ':karate_uniform:': '🥋', + ':goal:': '🥅', + ':goal_net:': '🥅', + ':golf:': '⛳️', + ':flag_in_hole:': '⛳️', + ':ice_skate:': '⛸️', + ':fishing_pole_and_fish:': '🎣', + ':fishing_pole:': '🎣', + ':diving_mask:': '🤿', + ':running_shirt_with_sash:': '🎽', + ':running_shirt:': '🎽', + ':ski:': '🎿', + ':skis:': '🎿', + ':sled:': '🛷', + ':curling_stone:': '🥌', + ':dart:': '🎯', + ':direct_hit:': '🎯', + ':yo_yo:': '🪀', + ':kite:': '🪁', + ':gun:': '🔫', + ':pistol:': '🔫', + ':8ball:': '🎱', + ':crystal_ball:': '🔮', + ':magic_wand:': '🪄', + ':video_game:': '🎮️', + ':joystick:': '🕹️', + ':slot_machine:': '🎰', + ':game_die:': '🎲', + ':jigsaw:': '🧩', + ':puzzle_piece:': '🧩', + ':teddy_bear:': '🧸', + ':pinata:': '🪅', + ':mirror_ball:': '🪩', + ':nesting_dolls:': '🪆', + ':spades:': '♠️', + ':spade_suit:': '♠️', + ':hearts:': '♥️', + ':heart_suit:': '♥️', + ':diamonds:': '♦️', + ':diamond_suit:': '♦️', + ':clubs:': '♣️', + ':club_suit:': '♣️', + ':chess_pawn:': '♟️', + ':black_joker:': '🃏', + ':joker:': '🃏', + ':mahjong:': '🀄️', + ':flower_playing_cards:': '🎴', + ':performing_arts:': '🎭️', + ':frame_photo:': '🖼️', + ':frame_with_picture:': '🖼️', + ':art:': '🎨', + ':thread:': '🧵', + ':sewing_needle:': '🪡', + ':yarn:': '🧶', + ':knot:': '🪢', + ':eyeglasses:': '👓️', + ':glasses:': '👓️', + ':dark_sunglasses:': '🕶️', + ':goggles:': '🥽', + ':lab_coat:': '🥼', + ':safety_vest:': '🦺', + ':necktie:': '👔', + ':shirt:': '👕', + ':t_shirt:': '👕', + ':jeans:': '👖', + ':scarf:': '🧣', + ':gloves:': '🧤', + ':coat:': '🧥', + ':socks:': '🧦', + ':dress:': '👗', + ':kimono:': '👘', + ':sari:': '🥻', + ':one_piece_swimsuit:': '🩱', + ':briefs:': '🩲', + ':shorts:': '🩳', + ':bikini:': '👙', + ':womans_clothes:': '👚', + ':folding_hand_fan:': '🪭', + ':purse:': '👛', + ':handbag:': '👜', + ':pouch:': '👝', + ':clutch_bag:': '👝', + ':shopping_bags:': '🛍️', + ':school_satchel:': '🎒', + ':backpack:': '🎒', + ':thong_sandal:': '🩴', + ':mans_shoe:': '👞', + ':athletic_shoe:': '👟', + ':running_shoe:': '👟', + ':hiking_boot:': '🥾', + ':womans_flat_shoe:': '🥿', + ':flat_shoe:': '🥿', + ':high_heel:': '👠', + ':sandal:': '👡', + ':womans_sandal:': '👡', + ':ballet_shoes:': '🩰', + ':boot:': '👢', + ':womans_boot:': '👢', + ':hair_pick:': '🪮', + ':crown:': '👑', + ':womans_hat:': '👒', + ':tophat:': '🎩', + ':top_hat:': '🎩', + ':mortar_board:': '🎓️', + ':billed_cap:': '🧢', + ':military_helmet:': '🪖', + ':helmet_with_cross:': '⛑️', + ':helmet_with_white_cross:': '⛑️', + ':prayer_beads:': '📿', + ':lipstick:': '💄', + ':ring:': '💍', + ':gem:': '💎', + ':gem_stone:': '💎', + ':mute:': '🔇', + ':muted_speaker:': '🔇', + ':speaker:': '🔈️', + ':sound:': '🔉', + ':loud_sound:': '🔊', + ':loudspeaker:': '📢', + ':mega:': '📣', + ':megaphone:': '📣', + ':postal_horn:': '📯', + ':bell:': '🔔', + ':no_bell:': '🔕', + ':musical_score:': '🎼', + ':musical_note:': '🎵', + ':notes:': '🎶', + ':musical_notes:': '🎶', + ':microphone2:': '🎙️', + ':studio_microphone:': '🎙️', + ':level_slider:': '🎚️', + ':control_knobs:': '🎛️', + ':microphone:': '🎤', + ':headphones:': '🎧️', + ':headphone:': '🎧️', + ':radio:': '📻️', + ':saxophone:': '🎷', + ':trumpet:': '🎺', + ':trombone:': '🪊', + ':accordion:': '🪗', + ':guitar:': '🎸', + ':musical_keyboard:': '🎹', + ':violin:': '🎻', + ':banjo:': '🪕', + ':drum:': '🥁', + ':drum_with_drumsticks:': '🥁', + ':long_drum:': '🪘', + ':maracas:': '🪇', + ':flute:': '🪈', + ':harp:': '🪉', + ':mobile_phone:': '📱', + ':calling:': '📲', + ':telephone:': '☎️', + ':telephone_receiver:': '📞', + ':pager:': '📟️', + ':fax:': '📠', + ':fax_machine:': '📠', + ':battery:': '🔋', + ':low_battery:': '🪫', + ':electric_plug:': '🔌', + ':computer:': '💻️', + ':desktop:': '🖥️', + ':desktop_computer:': '🖥️', + ':printer:': '🖨️', + ':keyboard:': '⌨️', + ':mouse_three_button:': '🖱️', + ':three_button_mouse:': '🖱️', + ':trackball:': '🖲️', + ':minidisc:': '💽', + ':computer_disk:': '💽', + ':floppy_disk:': '💾', + ':cd:': '💿️', + ':optical_disk:': '💿️', + ':dvd:': '📀', + ':abacus:': '🧮', + ':movie_camera:': '🎥', + ':film_frames:': '🎞️', + ':projector:': '📽️', + ':film_projector:': '📽️', + ':clapper:': '🎬️', + ':clapper_board:': '🎬️', + ':tv:': '📺️', + ':television:': '📺️', + ':camera:': '📷️', + ':camera_with_flash:': '📸', + ':video_camera:': '📹️', + ':vhs:': '📼', + ':videocassette:': '📼', + ':mag:': '🔍️', + ':mag_right:': '🔎', + ':candle:': '🕯️', + ':bulb:': '💡', + ':light_bulb:': '💡', + ':flashlight:': '🔦', + ':izakaya_lantern:': '🏮', + ':diya_lamp:': '🪔', + ':notebook_with_decorative_cover:': '📔', + ':closed_book:': '📕', + ':book:': '📖', + ':open_book:': '📖', + ':green_book:': '📗', + ':blue_book:': '📘', + ':orange_book:': '📙', + ':books:': '📚️', + ':notebook:': '📓', + ':ledger:': '📒', + ':page_with_curl:': '📃', + ':scroll:': '📜', + ':page_facing_up:': '📄', + ':newspaper:': '📰', + ':newspaper2:': '🗞️', + ':rolled_up_newspaper:': '🗞️', + ':bookmark_tabs:': '📑', + ':bookmark:': '🔖', + ':label:': '🏷️', + ':coin:': '🪙', + ':moneybag:': '💰️', + ':money_bag:': '💰️', + ':treasure_chest:': '🪎', + ':yen:': '💴', + ':yen_banknote:': '💴', + ':dollar:': '💵', + ':euro:': '💶', + ':euro_banknote:': '💶', + ':pound:': '💷', + ':money_with_wings:': '💸', + ':credit_card:': '💳️', + ':receipt:': '🧾', + ':chart:': '💹', + ':envelope:': '✉️', + ':e-mail:': '📧', + ':email:': '📧', + ':e_mail:': '📧', + ':incoming_envelope:': '📨', + ':envelope_with_arrow:': '📩', + ':outbox_tray:': '📤️', + ':inbox_tray:': '📥️', + ':package:': '📦️', + ':mailbox:': '📫️', + ':mailbox_closed:': '📪️', + ':mailbox_with_mail:': '📬️', + ':mailbox_with_no_mail:': '📭️', + ':postbox:': '📮', + ':ballot_box:': '🗳️', + ':ballot_box_with_ballot:': '🗳️', + ':pencil2:': '✏️', + ':black_nib:': '✒️', + ':pen_fountain:': '🖋️', + ':lower_left_fountain_pen:': '🖋️', + ':fountain_pen:': '🖋️', + ':pen_ballpoint:': '🖊️', + ':lower_left_ballpoint_pen:': '🖊️', + ':pen:': '🖊️', + ':paintbrush:': '🖌️', + ':lower_left_paintbrush:': '🖌️', + ':crayon:': '🖍️', + ':lower_left_crayon:': '🖍️', + ':pencil:': '📝', + ':memo:': '📝', + ':briefcase:': '💼', + ':file_folder:': '📁', + ':open_file_folder:': '📂', + ':dividers:': '🗂️', + ':card_index_dividers:': '🗂️', + ':date:': '📅', + ':calendar:': '📆', + ':notepad_spiral:': '🗒️', + ':spiral_note_pad:': '🗒️', + ':calendar_spiral:': '🗓️', + ':spiral_calendar_pad:': '🗓️', + ':card_index:': '📇', + ':chart_with_upwards_trend:': '📈', + ':chart_with_downwards_trend:': '📉', + ':bar_chart:': '📊', + ':clipboard:': '📋️', + ':pushpin:': '📌', + ':round_pushpin:': '📍', + ':paperclip:': '📎', + ':paperclips:': '🖇️', + ':linked_paperclips:': '🖇️', + ':straight_ruler:': '📏', + ':triangular_ruler:': '📐', + ':scissors:': '✂️', + ':card_box:': '🗃️', + ':card_file_box:': '🗃️', + ':file_cabinet:': '🗄️', + ':wastebasket:': '🗑️', + ':lock:': '🔒️', + ':locked:': '🔒️', + ':unlock:': '🔓️', + ':unlocked:': '🔓️', + ':lock_with_ink_pen:': '🔏', + ':closed_lock_with_key:': '🔐', + ':key:': '🔑', + ':key2:': '🗝️', + ':old_key:': '🗝️', + ':hammer:': '🔨', + ':axe:': '🪓', + ':pick:': '⛏️', + ':hammer_pick:': '⚒️', + ':hammer_and_pick:': '⚒️', + ':tools:': '🛠️', + ':hammer_and_wrench:': '🛠️', + ':dagger:': '🗡️', + ':dagger_knife:': '🗡️', + ':crossed_swords:': '⚔️', + ':bomb:': '💣️', + ':boomerang:': '🪃', + ':bow_and_arrow:': '🏹', + ':archery:': '🏹', + ':shield:': '🛡️', + ':carpentry_saw:': '🪚', + ':wrench:': '🔧', + ':screwdriver:': '🪛', + ':nut_and_bolt:': '🔩', + ':gear:': '⚙️', + ':compression:': '🗜️', + ':clamp:': '🗜️', + ':scales:': '⚖️', + ':balance_scale:': '⚖️', + ':probing_cane:': '🦯', + ':link:': '🔗', + ':broken_chain:': '⛓️‍💥', + ':chains:': '⛓️', + ':hook:': '🪝', + ':toolbox:': '🧰', + ':magnet:': '🧲', + ':ladder:': '🪜', + ':shovel:': '🪏', + ':alembic:': '⚗️', + ':test_tube:': '🧪', + ':petri_dish:': '🧫', + ':dna:': '🧬', + ':microscope:': '🔬', + ':telescope:': '🔭', + ':satellite:': '📡', + ':syringe:': '💉', + ':drop_of_blood:': '🩸', + ':pill:': '💊', + ':adhesive_bandage:': '🩹', + ':crutch:': '🩼', + ':stethoscope:': '🩺', + ':x_ray:': '🩻', + ':door:': '🚪', + ':elevator:': '🛗', + ':mirror:': '🪞', + ':window:': '🪟', + ':bed:': '🛏️', + ':couch:': '🛋️', + ':couch_and_lamp:': '🛋️', + ':chair:': '🪑', + ':toilet:': '🚽', + ':plunger:': '🪠', + ':shower:': '🚿', + ':bathtub:': '🛁', + ':mouse_trap:': '🪤', + ':razor:': '🪒', + ':squeeze_bottle:': '🧴', + ':lotion_bottle:': '🧴', + ':safety_pin:': '🧷', + ':broom:': '🧹', + ':basket:': '🧺', + ':roll_of_paper:': '🧻', + ':bucket:': '🪣', + ':soap:': '🧼', + ':bubbles:': '🫧', + ':toothbrush:': '🪥', + ':sponge:': '🧽', + ':fire_extinguisher:': '🧯', + ':shopping_cart:': '🛒', + ':shopping_trolley:': '🛒', + ':smoking:': '🚬', + ':cigarette:': '🚬', + ':coffin:': '⚰️', + ':headstone:': '🪦', + ':urn:': '⚱️', + ':funeral_urn:': '⚱️', + ':nazar_amulet:': '🧿', + ':hamsa:': '🪬', + ':moyai:': '🗿', + ':moai:': '🗿', + ':placard:': '🪧', + ':identification_card:': '🪪', + ':atm:': '🏧', + ':put_litter_in_its_place:': '🚮', + ':potable_water:': '🚰', + ':wheelchair:': '♿️', + ':mens:': '🚹️', + ':mens_room:': '🚹️', + ':womens:': '🚺️', + ':womens_room:': '🚺️', + ':restroom:': '🚻', + ':baby_symbol:': '🚼️', + ':wc:': '🚾', + ':water_closet:': '🚾', + ':passport_control:': '🛂', + ':customs:': '🛃', + ':baggage_claim:': '🛄', + ':left_luggage:': '🛅', + ':warning:': '⚠️', + ':children_crossing:': '🚸', + ':no_entry:': '⛔️', + ':no_entry_sign:': '🚫', + ':prohibited:': '🚫', + ':no_bicycles:': '🚳', + ':no_smoking:': '🚭️', + ':do_not_litter:': '🚯', + ':no_littering:': '🚯', + ':non-potable_water:': '🚱', + ':no_pedestrians:': '🚷', + ':no_mobile_phones:': '📵', + ':underage:': '🔞', + ':radioactive:': '☢️', + ':radioactive_sign:': '☢️', + ':biohazard:': '☣️', + ':biohazard_sign:': '☣️', + ':arrow_up:': '⬆️', + ':up_arrow:': '⬆️', + ':arrow_upper_right:': '↗️', + ':arrow_right:': '➡️', + ':right_arrow:': '➡️', + ':arrow_lower_right:': '↘️', + ':arrow_down:': '⬇️', + ':down_arrow:': '⬇️', + ':arrow_lower_left:': '↙️', + ':arrow_left:': '⬅️', + ':left_arrow:': '⬅️', + ':arrow_upper_left:': '↖️', + ':up_left_arrow:': '↖️', + ':arrow_up_down:': '↕️', + ':up_down_arrow:': '↕️', + ':left_right_arrow:': '↔️', + ':leftwards_arrow_with_hook:': '↩️', + ':arrow_right_hook:': '↪️', + ':arrow_heading_up:': '⤴️', + ':arrow_heading_down:': '⤵️', + ':arrows_clockwise:': '🔃', + ':arrows_counterclockwise:': '🔄', + ':back:': '🔙', + ':back_arrow:': '🔙', + ':end:': '🔚', + ':end_arrow:': '🔚', + ':on:': '🔛', + ':on_arrow:': '🔛', + ':soon:': '🔜', + ':soon_arrow:': '🔜', + ':top:': '🔝', + ':top_arrow:': '🔝', + ':place_of_worship:': '🛐', + ':worship_symbol:': '🛐', + ':atom:': '⚛️', + ':atom_symbol:': '⚛️', + ':om_symbol:': '🕉️', + ':star_of_david:': '✡️', + ':wheel_of_dharma:': '☸️', + ':yin_yang:': '☯️', + ':cross:': '✝️', + ':latin_cross:': '✝️', + ':orthodox_cross:': '☦️', + ':star_and_crescent:': '☪️', + ':peace:': '☮️', + ':peace_symbol:': '☮️', + ':menorah:': '🕎', + ':six_pointed_star:': '🔯', + ':khanda:': '🪯', + ':aries:': '♈️', + ':taurus:': '♉️', + ':gemini:': '♊️', + ':cancer:': '♋️', + ':leo:': '♌️', + ':virgo:': '♍️', + ':libra:': '♎️', + ':scorpius:': '♏️', + ':scorpio:': '♏️', + ':sagittarius:': '♐️', + ':capricorn:': '♑️', + ':aquarius:': '♒️', + ':pisces:': '♓️', + ':ophiuchus:': '⛎️', + ':twisted_rightwards_arrows:': '🔀', + ':repeat:': '🔁', + ':repeat_one:': '🔂', + ':arrow_forward:': '▶️', + ':fast_forward:': '⏩️', + ':track_next:': '⏭️', + ':next_track:': '⏭️', + ':play_pause:': '⏯️', + ':arrow_backward:': '◀️', + ':rewind:': '⏪️', + ':track_previous:': '⏮️', + ':previous_track:': '⏮️', + ':arrow_up_small:': '🔼', + ':arrow_double_up:': '⏫️', + ':arrow_down_small:': '🔽', + ':arrow_double_down:': '⏬️', + ':pause_button:': '⏸️', + ':double_vertical_bar:': '⏸️', + ':stop_button:': '⏹️', + ':record_button:': '⏺️', + ':eject:': '⏏️', + ':eject_symbol:': '⏏️', + ':cinema:': '🎦', + ':low_brightness:': '🔅', + ':high_brightness:': '🔆', + ':signal_strength:': '📶', + ':antenna_bars:': '📶', + ':wireless:': '🛜', + ':vibration_mode:': '📳', + ':mobile_phone_off:': '📴', + ':female_sign:': '♀️', + ':male_sign:': '♂️', + ':transgender_symbol:': '⚧️', + ':heavy_multiplication_x:': '✖️', + ':heavy_plus_sign:': '➕️', + ':heavy_minus_sign:': '➖️', + ':heavy_division_sign:': '➗️', + ':heavy_equals_sign:': '🟰', + ':infinity:': '♾️', + ':bangbang:': '‼️', + ':interrobang:': '⁉️', + ':question:': '❓️', + ':question_mark:': '❓️', + ':grey_question:': '❔️', + ':grey_exclamation:': '❕️', + ':exclamation:': '❗️', + ':wavy_dash:': '〰️', + ':currency_exchange:': '💱', + ':heavy_dollar_sign:': '💲', + ':medical_symbol:': '⚕️', + ':recycle:': '♻️', + ':fleur-de-lis:': '⚜️', + ':fleur_de_lis:': '⚜️', + ':trident:': '🔱', + ':name_badge:': '📛', + ':beginner:': '🔰', + ':o:': '⭕️', + ':white_check_mark:': '✅️', + ':ballot_box_with_check:': '☑️', + ':heavy_check_mark:': '✔️', + ':check_mark:': '✔️', + ':x:': '❌️', + ':cross_mark:': '❌️', + ':negative_squared_cross_mark:': '❎️', + ':curly_loop:': '➰️', + ':loop:': '➿️', + ':part_alternation_mark:': '〽️', + ':eight_spoked_asterisk:': '✳️', + ':eight_pointed_black_star:': '✴️', + ':sparkle:': '❇️', + ':copyright:': '©️', + ':registered:': '®️', + ':tm:': '™️', + ':trade_mark:': '™️', + ':splatter:': '🫟', + ':hash:': '#️⃣', + ':asterisk:': '*️⃣', + ':keycap_asterisk:': '*️⃣', + ':zero:': '0️⃣', + ':one:': '1️⃣', + ':two:': '2️⃣', + ':three:': '3️⃣', + ':four:': '4️⃣', + ':five:': '5️⃣', + ':six:': '6️⃣', + ':seven:': '7️⃣', + ':eight:': '8️⃣', + ':nine:': '9️⃣', + ':keycap_ten:': '🔟', + ':capital_abcd:': '🔠', + ':abcd:': '🔡', + ':1234:': '🔢', + ':input_numbers:': '🔢', + ':symbols:': '🔣', + ':input_symbols:': '🔣', + ':abc:': '🔤', + ':a:': '🅰️', + ':ab:': '🆎', + ':b:': '🅱️', + ':cl:': '🆑', + ':cool:': '🆒', + ':free:': '🆓', + ':information_source:': 'ℹ️', + ':information:': 'ℹ️', + ':id:': '🆔', + ':m:': 'Ⓜ️', + ':circled_m:': 'Ⓜ️', + ':new:': '🆕', + ':ng:': '🆖', + ':o2:': '🅾️', + ':ok:': '🆗', + ':parking:': '🅿️', + ':sos:': '🆘', + ':up:': '🆙', + ':vs:': '🆚', + ':koko:': '🈁', + ':sa:': '🈂️', + ':u6708:': '🈷️', + ':u6709:': '🈶', + ':u6307:': '🈯️', + ':ideograph_advantage:': '🉐', + ':u5272:': '🈹', + ':u7121:': '🈚️', + ':u7981:': '🈲', + ':accept:': '🉑', + ':u7533:': '🈸', + ':u5408:': '🈴', + ':u7a7a:': '🈳', + ':congratulations:': '㊗️', + ':secret:': '㊙️', + ':u55b6:': '🈺', + ':u6e80:': '🈵', + ':red_circle:': '🔴', + ':orange_circle:': '🟠', + ':yellow_circle:': '🟡', + ':green_circle:': '🟢', + ':blue_circle:': '🔵', + ':purple_circle:': '🟣', + ':brown_circle:': '🟤', + ':black_circle:': '⚫️', + ':white_circle:': '⚪️', + ':red_square:': '🟥', + ':orange_square:': '🟧', + ':yellow_square:': '🟨', + ':green_square:': '🟩', + ':blue_square:': '🟦', + ':purple_square:': '🟪', + ':brown_square:': '🟫', + ':black_large_square:': '⬛️', + ':white_large_square:': '⬜️', + ':black_medium_square:': '◼️', + ':white_medium_square:': '◻️', + ':black_medium_small_square:': '◾️', + ':white_medium_small_square:': '◽️', + ':black_small_square:': '▪️', + ':white_small_square:': '▫️', + ':large_orange_diamond:': '🔶', + ':large_blue_diamond:': '🔷', + ':small_orange_diamond:': '🔸', + ':small_blue_diamond:': '🔹', + ':small_red_triangle:': '🔺', + ':small_red_triangle_down:': '🔻', + ':diamond_shape_with_a_dot_inside:': '💠', + ':radio_button:': '🔘', + ':white_square_button:': '🔳', + ':black_square_button:': '🔲', + ':checkered_flag:': '🏁', + ':triangular_flag_on_post:': '🚩', + ':crossed_flags:': '🎌', + ':flag_black:': '🏴', + ':waving_black_flag:': '🏴', + ':black_flag:': '🏴', + ':flag_white:': '🏳️', + ':waving_white_flag:': '🏳️', + ':white_flag:': '🏳️', + ':rainbow_flag:': '🏳️‍🌈', + ':gay_pride_flag:': '🏳️‍🌈', + ':transgender_flag:': '🏳️‍⚧️', + ':pirate_flag:': '🏴‍☠️', + ':flag_ac:': '🇦🇨', + ':ac:': '🇦🇨', + ':flag_ad:': '🇦🇩', + ':ad:': '🇦🇩', + ':flag_ae:': '🇦🇪', + ':ae:': '🇦🇪', + ':flag_af:': '🇦🇫', + ':af:': '🇦🇫', + ':flag_ag:': '🇦🇬', + ':ag:': '🇦🇬', + ':flag_ai:': '🇦🇮', + ':ai:': '🇦🇮', + ':flag_al:': '🇦🇱', + ':al:': '🇦🇱', + ':flag_am:': '🇦🇲', + ':am:': '🇦🇲', + ':flag_ao:': '🇦🇴', + ':ao:': '🇦🇴', + ':flag_aq:': '🇦🇶', + ':aq:': '🇦🇶', + ':flag_ar:': '🇦🇷', + ':ar:': '🇦🇷', + ':flag_as:': '🇦🇸', + ':as:': '🇦🇸', + ':flag_at:': '🇦🇹', + ':at:': '🇦🇹', + ':flag_au:': '🇦🇺', + ':au:': '🇦🇺', + ':flag_aw:': '🇦🇼', + ':aw:': '🇦🇼', + ':flag_ax:': '🇦🇽', + ':ax:': '🇦🇽', + ':flag_az:': '🇦🇿', + ':az:': '🇦🇿', + ':flag_ba:': '🇧🇦', + ':ba:': '🇧🇦', + ':flag_bb:': '🇧🇧', + ':bb:': '🇧🇧', + ':flag_bd:': '🇧🇩', + ':bd:': '🇧🇩', + ':flag_be:': '🇧🇪', + ':be:': '🇧🇪', + ':flag_bf:': '🇧🇫', + ':bf:': '🇧🇫', + ':flag_bg:': '🇧🇬', + ':bg:': '🇧🇬', + ':flag_bh:': '🇧🇭', + ':bh:': '🇧🇭', + ':flag_bi:': '🇧🇮', + ':bi:': '🇧🇮', + ':flag_bj:': '🇧🇯', + ':bj:': '🇧🇯', + ':flag_bl:': '🇧🇱', + ':bl:': '🇧🇱', + ':flag_bm:': '🇧🇲', + ':bm:': '🇧🇲', + ':flag_bn:': '🇧🇳', + ':bn:': '🇧🇳', + ':flag_bo:': '🇧🇴', + ':bo:': '🇧🇴', + ':flag_bq:': '🇧🇶', + ':bq:': '🇧🇶', + ':flag_br:': '🇧🇷', + ':br:': '🇧🇷', + ':flag_bs:': '🇧🇸', + ':bs:': '🇧🇸', + ':flag_bt:': '🇧🇹', + ':bt:': '🇧🇹', + ':flag_bv:': '🇧🇻', + ':bv:': '🇧🇻', + ':flag_bw:': '🇧🇼', + ':bw:': '🇧🇼', + ':flag_by:': '🇧🇾', + ':by:': '🇧🇾', + ':flag_bz:': '🇧🇿', + ':bz:': '🇧🇿', + ':flag_ca:': '🇨🇦', + ':ca:': '🇨🇦', + ':flag_cc:': '🇨🇨', + ':cc:': '🇨🇨', + ':flag_cd:': '🇨🇩', + ':congo:': '🇨🇩', + ':flag_cf:': '🇨🇫', + ':cf:': '🇨🇫', + ':flag_cg:': '🇨🇬', + ':cg:': '🇨🇬', + ':flag_ch:': '🇨🇭', + ':ch:': '🇨🇭', + ':flag_ci:': '🇨🇮', + ':ci:': '🇨🇮', + ':flag_ck:': '🇨🇰', + ':ck:': '🇨🇰', + ':flag_cl:': '🇨🇱', + ':chile:': '🇨🇱', + ':flag_cm:': '🇨🇲', + ':cm:': '🇨🇲', + ':flag_cn:': '🇨🇳', + ':cn:': '🇨🇳', + ':flag_co:': '🇨🇴', + ':co:': '🇨🇴', + ':flag_cp:': '🇨🇵', + ':cp:': '🇨🇵', + ':flag_cq:': '🇨🇶', + ':sark:': '🇨🇶', + ':flag_cr:': '🇨🇷', + ':cr:': '🇨🇷', + ':flag_cu:': '🇨🇺', + ':cu:': '🇨🇺', + ':flag_cv:': '🇨🇻', + ':cv:': '🇨🇻', + ':flag_cw:': '🇨🇼', + ':cw:': '🇨🇼', + ':flag_cx:': '🇨🇽', + ':cx:': '🇨🇽', + ':flag_cy:': '🇨🇾', + ':cy:': '🇨🇾', + ':flag_cz:': '🇨🇿', + ':cz:': '🇨🇿', + ':flag_de:': '🇩🇪', + ':de:': '🇩🇪', + ':flag_dg:': '🇩🇬', + ':dg:': '🇩🇬', + ':flag_dj:': '🇩🇯', + ':dj:': '🇩🇯', + ':flag_dk:': '🇩🇰', + ':dk:': '🇩🇰', + ':flag_dm:': '🇩🇲', + ':dm:': '🇩🇲', + ':flag_do:': '🇩🇴', + ':do:': '🇩🇴', + ':flag_dz:': '🇩🇿', + ':dz:': '🇩🇿', + ':flag_ea:': '🇪🇦', + ':ea:': '🇪🇦', + ':flag_ec:': '🇪🇨', + ':ec:': '🇪🇨', + ':flag_ee:': '🇪🇪', + ':ee:': '🇪🇪', + ':flag_eg:': '🇪🇬', + ':eg:': '🇪🇬', + ':flag_eh:': '🇪🇭', + ':eh:': '🇪🇭', + ':flag_er:': '🇪🇷', + ':er:': '🇪🇷', + ':flag_es:': '🇪🇸', + ':es:': '🇪🇸', + ':flag_et:': '🇪🇹', + ':et:': '🇪🇹', + ':flag_eu:': '🇪🇺', + ':eu:': '🇪🇺', + ':flag_fi:': '🇫🇮', + ':fi:': '🇫🇮', + ':flag_fj:': '🇫🇯', + ':fj:': '🇫🇯', + ':flag_fk:': '🇫🇰', + ':fk:': '🇫🇰', + ':flag_fm:': '🇫🇲', + ':fm:': '🇫🇲', + ':flag_fo:': '🇫🇴', + ':fo:': '🇫🇴', + ':flag_fr:': '🇫🇷', + ':fr:': '🇫🇷', + ':flag_ga:': '🇬🇦', + ':ga:': '🇬🇦', + ':flag_gb:': '🇬🇧', + ':gb:': '🇬🇧', + ':flag_gd:': '🇬🇩', + ':gd:': '🇬🇩', + ':flag_ge:': '🇬🇪', + ':ge:': '🇬🇪', + ':flag_gf:': '🇬🇫', + ':gf:': '🇬🇫', + ':flag_gg:': '🇬🇬', + ':gg:': '🇬🇬', + ':flag_gh:': '🇬🇭', + ':gh:': '🇬🇭', + ':flag_gi:': '🇬🇮', + ':gi:': '🇬🇮', + ':flag_gl:': '🇬🇱', + ':gl:': '🇬🇱', + ':flag_gm:': '🇬🇲', + ':gm:': '🇬🇲', + ':flag_gn:': '🇬🇳', + ':gn:': '🇬🇳', + ':flag_gp:': '🇬🇵', + ':gp:': '🇬🇵', + ':flag_gq:': '🇬🇶', + ':gq:': '🇬🇶', + ':flag_gr:': '🇬🇷', + ':gr:': '🇬🇷', + ':flag_gs:': '🇬🇸', + ':gs:': '🇬🇸', + ':flag_gt:': '🇬🇹', + ':gt:': '🇬🇹', + ':flag_gu:': '🇬🇺', + ':gu:': '🇬🇺', + ':flag_gw:': '🇬🇼', + ':gw:': '🇬🇼', + ':flag_gy:': '🇬🇾', + ':gy:': '🇬🇾', + ':flag_hk:': '🇭🇰', + ':hk:': '🇭🇰', + ':flag_hm:': '🇭🇲', + ':hm:': '🇭🇲', + ':flag_hn:': '🇭🇳', + ':hn:': '🇭🇳', + ':flag_hr:': '🇭🇷', + ':hr:': '🇭🇷', + ':flag_ht:': '🇭🇹', + ':ht:': '🇭🇹', + ':flag_hu:': '🇭🇺', + ':hu:': '🇭🇺', + ':flag_ic:': '🇮🇨', + ':ic:': '🇮🇨', + ':flag_id:': '🇮🇩', + ':indonesia:': '🇮🇩', + ':flag_ie:': '🇮🇪', + ':ie:': '🇮🇪', + ':flag_il:': '🇮🇱', + ':il:': '🇮🇱', + ':flag_im:': '🇮🇲', + ':im:': '🇮🇲', + ':flag_in:': '🇮🇳', + ':in:': '🇮🇳', + ':flag_io:': '🇮🇴', + ':io:': '🇮🇴', + ':flag_iq:': '🇮🇶', + ':iq:': '🇮🇶', + ':flag_ir:': '🇮🇷', + ':ir:': '🇮🇷', + ':flag_is:': '🇮🇸', + ':is:': '🇮🇸', + ':flag_it:': '🇮🇹', + ':it:': '🇮🇹', + ':flag_je:': '🇯🇪', + ':je:': '🇯🇪', + ':flag_jm:': '🇯🇲', + ':jm:': '🇯🇲', + ':flag_jo:': '🇯🇴', + ':jo:': '🇯🇴', + ':flag_jp:': '🇯🇵', + ':jp:': '🇯🇵', + ':flag_ke:': '🇰🇪', + ':ke:': '🇰🇪', + ':flag_kg:': '🇰🇬', + ':kg:': '🇰🇬', + ':flag_kh:': '🇰🇭', + ':kh:': '🇰🇭', + ':flag_ki:': '🇰🇮', + ':ki:': '🇰🇮', + ':flag_km:': '🇰🇲', + ':km:': '🇰🇲', + ':flag_kn:': '🇰🇳', + ':kn:': '🇰🇳', + ':flag_kp:': '🇰🇵', + ':kp:': '🇰🇵', + ':flag_kr:': '🇰🇷', + ':kr:': '🇰🇷', + ':flag_kw:': '🇰🇼', + ':kw:': '🇰🇼', + ':flag_ky:': '🇰🇾', + ':ky:': '🇰🇾', + ':flag_kz:': '🇰🇿', + ':kz:': '🇰🇿', + ':flag_la:': '🇱🇦', + ':la:': '🇱🇦', + ':flag_lb:': '🇱🇧', + ':lb:': '🇱🇧', + ':flag_lc:': '🇱🇨', + ':lc:': '🇱🇨', + ':flag_li:': '🇱🇮', + ':li:': '🇱🇮', + ':flag_lk:': '🇱🇰', + ':lk:': '🇱🇰', + ':flag_lr:': '🇱🇷', + ':lr:': '🇱🇷', + ':flag_ls:': '🇱🇸', + ':ls:': '🇱🇸', + ':flag_lt:': '🇱🇹', + ':lt:': '🇱🇹', + ':flag_lu:': '🇱🇺', + ':lu:': '🇱🇺', + ':flag_lv:': '🇱🇻', + ':lv:': '🇱🇻', + ':flag_ly:': '🇱🇾', + ':ly:': '🇱🇾', + ':flag_ma:': '🇲🇦', + ':ma:': '🇲🇦', + ':flag_mc:': '🇲🇨', + ':mc:': '🇲🇨', + ':flag_md:': '🇲🇩', + ':md:': '🇲🇩', + ':flag_me:': '🇲🇪', + ':me:': '🇲🇪', + ':flag_mf:': '🇲🇫', + ':mf:': '🇲🇫', + ':flag_mg:': '🇲🇬', + ':mg:': '🇲🇬', + ':flag_mh:': '🇲🇭', + ':mh:': '🇲🇭', + ':flag_mk:': '🇲🇰', + ':mk:': '🇲🇰', + ':flag_ml:': '🇲🇱', + ':ml:': '🇲🇱', + ':flag_mm:': '🇲🇲', + ':mm:': '🇲🇲', + ':flag_mn:': '🇲🇳', + ':mn:': '🇲🇳', + ':flag_mo:': '🇲🇴', + ':mo:': '🇲🇴', + ':flag_mp:': '🇲🇵', + ':mp:': '🇲🇵', + ':flag_mq:': '🇲🇶', + ':mq:': '🇲🇶', + ':flag_mr:': '🇲🇷', + ':mr:': '🇲🇷', + ':flag_ms:': '🇲🇸', + ':ms:': '🇲🇸', + ':flag_mt:': '🇲🇹', + ':mt:': '🇲🇹', + ':flag_mu:': '🇲🇺', + ':mu:': '🇲🇺', + ':flag_mv:': '🇲🇻', + ':mv:': '🇲🇻', + ':flag_mw:': '🇲🇼', + ':mw:': '🇲🇼', + ':flag_mx:': '🇲🇽', + ':mx:': '🇲🇽', + ':flag_my:': '🇲🇾', + ':my:': '🇲🇾', + ':flag_mz:': '🇲🇿', + ':mz:': '🇲🇿', + ':flag_na:': '🇳🇦', + ':na:': '🇳🇦', + ':flag_nc:': '🇳🇨', + ':nc:': '🇳🇨', + ':flag_ne:': '🇳🇪', + ':ne:': '🇳🇪', + ':flag_nf:': '🇳🇫', + ':nf:': '🇳🇫', + ':flag_ng:': '🇳🇬', + ':nigeria:': '🇳🇬', + ':flag_ni:': '🇳🇮', + ':ni:': '🇳🇮', + ':flag_nl:': '🇳🇱', + ':nl:': '🇳🇱', + ':flag_no:': '🇳🇴', + ':no:': '🇳🇴', + ':flag_np:': '🇳🇵', + ':np:': '🇳🇵', + ':flag_nr:': '🇳🇷', + ':nr:': '🇳🇷', + ':flag_nu:': '🇳🇺', + ':nu:': '🇳🇺', + ':flag_nz:': '🇳🇿', + ':nz:': '🇳🇿', + ':flag_om:': '🇴🇲', + ':om:': '🇴🇲', + ':flag_pa:': '🇵🇦', + ':pa:': '🇵🇦', + ':flag_pe:': '🇵🇪', + ':pe:': '🇵🇪', + ':flag_pf:': '🇵🇫', + ':pf:': '🇵🇫', + ':flag_pg:': '🇵🇬', + ':pg:': '🇵🇬', + ':flag_ph:': '🇵🇭', + ':ph:': '🇵🇭', + ':flag_pk:': '🇵🇰', + ':pk:': '🇵🇰', + ':flag_pl:': '🇵🇱', + ':pl:': '🇵🇱', + ':flag_pm:': '🇵🇲', + ':pm:': '🇵🇲', + ':flag_pn:': '🇵🇳', + ':pn:': '🇵🇳', + ':flag_pr:': '🇵🇷', + ':pr:': '🇵🇷', + ':flag_ps:': '🇵🇸', + ':ps:': '🇵🇸', + ':flag_pt:': '🇵🇹', + ':pt:': '🇵🇹', + ':flag_pw:': '🇵🇼', + ':pw:': '🇵🇼', + ':flag_py:': '🇵🇾', + ':py:': '🇵🇾', + ':flag_qa:': '🇶🇦', + ':qa:': '🇶🇦', + ':flag_re:': '🇷🇪', + ':re:': '🇷🇪', + ':flag_ro:': '🇷🇴', + ':ro:': '🇷🇴', + ':flag_rs:': '🇷🇸', + ':rs:': '🇷🇸', + ':flag_ru:': '🇷🇺', + ':ru:': '🇷🇺', + ':flag_rw:': '🇷🇼', + ':rw:': '🇷🇼', + ':flag_sa:': '🇸🇦', + ':saudiarabia:': '🇸🇦', + ':saudi:': '🇸🇦', + ':flag_sb:': '🇸🇧', + ':sb:': '🇸🇧', + ':flag_sc:': '🇸🇨', + ':sc:': '🇸🇨', + ':flag_sd:': '🇸🇩', + ':sd:': '🇸🇩', + ':flag_se:': '🇸🇪', + ':se:': '🇸🇪', + ':flag_sg:': '🇸🇬', + ':sg:': '🇸🇬', + ':flag_sh:': '🇸🇭', + ':sh:': '🇸🇭', + ':flag_si:': '🇸🇮', + ':si:': '🇸🇮', + ':flag_sj:': '🇸🇯', + ':sj:': '🇸🇯', + ':flag_sk:': '🇸🇰', + ':sk:': '🇸🇰', + ':flag_sl:': '🇸🇱', + ':sl:': '🇸🇱', + ':flag_sm:': '🇸🇲', + ':sm:': '🇸🇲', + ':flag_sn:': '🇸🇳', + ':sn:': '🇸🇳', + ':flag_so:': '🇸🇴', + ':so:': '🇸🇴', + ':flag_sr:': '🇸🇷', + ':sr:': '🇸🇷', + ':flag_ss:': '🇸🇸', + ':ss:': '🇸🇸', + ':flag_st:': '🇸🇹', + ':st:': '🇸🇹', + ':flag_sv:': '🇸🇻', + ':sv:': '🇸🇻', + ':flag_sx:': '🇸🇽', + ':sx:': '🇸🇽', + ':flag_sy:': '🇸🇾', + ':sy:': '🇸🇾', + ':flag_sz:': '🇸🇿', + ':sz:': '🇸🇿', + ':flag_ta:': '🇹🇦', + ':ta:': '🇹🇦', + ':flag_tc:': '🇹🇨', + ':tc:': '🇹🇨', + ':flag_td:': '🇹🇩', + ':td:': '🇹🇩', + ':flag_tf:': '🇹🇫', + ':tf:': '🇹🇫', + ':flag_tg:': '🇹🇬', + ':tg:': '🇹🇬', + ':flag_th:': '🇹🇭', + ':th:': '🇹🇭', + ':flag_tj:': '🇹🇯', + ':tj:': '🇹🇯', + ':flag_tk:': '🇹🇰', + ':tk:': '🇹🇰', + ':flag_tl:': '🇹🇱', + ':tl:': '🇹🇱', + ':flag_tm:': '🇹🇲', + ':turkmenistan:': '🇹🇲', + ':flag_tn:': '🇹🇳', + ':tn:': '🇹🇳', + ':flag_to:': '🇹🇴', + ':to:': '🇹🇴', + ':flag_tr:': '🇹🇷', + ':tr:': '🇹🇷', + ':flag_tt:': '🇹🇹', + ':tt:': '🇹🇹', + ':flag_tv:': '🇹🇻', + ':tuvalu:': '🇹🇻', + ':flag_tw:': '🇹🇼', + ':tw:': '🇹🇼', + ':flag_tz:': '🇹🇿', + ':tz:': '🇹🇿', + ':flag_ua:': '🇺🇦', + ':ua:': '🇺🇦', + ':flag_ug:': '🇺🇬', + ':ug:': '🇺🇬', + ':flag_um:': '🇺🇲', + ':um:': '🇺🇲', + ':united_nations:': '🇺🇳', + ':flag_us:': '🇺🇸', + ':us:': '🇺🇸', + ':flag_uy:': '🇺🇾', + ':uy:': '🇺🇾', + ':flag_uz:': '🇺🇿', + ':uz:': '🇺🇿', + ':flag_va:': '🇻🇦', + ':va:': '🇻🇦', + ':flag_vc:': '🇻🇨', + ':vc:': '🇻🇨', + ':flag_ve:': '🇻🇪', + ':ve:': '🇻🇪', + ':flag_vg:': '🇻🇬', + ':vg:': '🇻🇬', + ':flag_vi:': '🇻🇮', + ':vi:': '🇻🇮', + ':flag_vn:': '🇻🇳', + ':vn:': '🇻🇳', + ':flag_vu:': '🇻🇺', + ':vu:': '🇻🇺', + ':flag_wf:': '🇼🇫', + ':wf:': '🇼🇫', + ':flag_ws:': '🇼🇸', + ':ws:': '🇼🇸', + ':flag_xk:': '🇽🇰', + ':xk:': '🇽🇰', + ':flag_ye:': '🇾🇪', + ':ye:': '🇾🇪', + ':flag_yt:': '🇾🇹', + ':yt:': '🇾🇹', + ':flag_za:': '🇿🇦', + ':za:': '🇿🇦', + ':flag_zm:': '🇿🇲', + ':zm:': '🇿🇲', + ':flag_zw:': '🇿🇼', + ':zw:': '🇿🇼', + ':england:': '🏴󠁧󠁢󠁥󠁮󠁧󠁿', + ':scotland:': '🏴󠁧󠁢󠁳󠁣󠁴󠁿', + ':wales:': '🏴󠁧󠁢󠁷󠁬󠁳󠁿' +}; + +// Alternate shortnames for an emoji, keyed by the name listed in `emojisByCategory`. +// The picker lists one name per emoji, so searching matches every alias but returns the listed name. +export const aliasesByEmojiName: { [key: string]: string[] } = { + '1234': ['input_numbers'], + grinning: ['grinning_face'], + laughing: ['satisfied', 'lol', 'squinting_face'], + rofl: ['rolling_on_the_floor_laughing'], + slight_smile: ['slightly_smiling_face'], + upside_down: ['upside_down_face'], + wink: ['winking_face'], + kissing: ['kissing_face'], + relaxed: ['smiling_face'], + money_mouth: ['money_mouth_face'], + hugging: ['hugging_face', 'hug'], + thinking: ['thinking_face', 'wtf'], + zipper_mouth: ['zipper_mouth_face'], + smirk: ['smirking_face', 'smirking'], + unamused: ['unamused_face'], + rolling_eyes: ['face_with_rolling_eyes'], + lying_face: ['liar', 'lying'], + relieved: ['relieved_face'], + pensive: ['pensive_face'], + sleepy: ['sleepy_face'], + drooling_face: ['drool', 'drooling'], + sleeping: ['sleeping_face'], + thermometer_face: ['face_with_thermometer'], + head_bandage: ['face_with_head_bandage'], + nauseated_face: ['sick', 'nauseated'], + sneezing_face: ['sneeze', 'sneezing'], + cowboy: ['face_with_cowboy_hat', 'cowboy_face'], + nerd: ['nerd_face'], + confused: ['confused_face'], + worried: ['worried_face'], + slight_frown: ['slightly_frowning_face'], + frowning2: ['white_frowning_face', 'frowning_face'], + hushed: ['hushed_face'], + flushed: ['flushed_face'], + fearful: ['fearful_face'], + cry: ['crying_face'], + weary: ['weary_face'], + rage: ['pouting_face', 'pout'], + angry: ['angry_face'], + skull: ['skeleton'], + skull_crossbones: ['skull_and_crossbones'], + poop: ['shit', 'hankey', 'poo', 'pile_of_poo'], + clown: ['clown_face'], + japanese_ogre: ['ogre'], + japanese_goblin: ['goblin'], + space_invader: ['alien_monster'], + robot: ['robot_face'], + smiley_cat: ['grinning_cat'], + scream_cat: ['weary_cat'], + crying_cat_face: ['crying_cat'], + heartpulse: ['growing_heart'], + heartbeat: ['beating_heart'], + heart_exclamation: ['heavy_heart_exclamation_mark_ornament'], + heart: ['red_heart'], + kiss: ['kiss_mark'], + boom: ['collision'], + dash: ['dashing_away'], + speech_left: ['left_speech_bubble'], + anger_right: ['right_anger_bubble'], + wave: ['waving_hand'], + raised_back_of_hand: ['back_of_hand'], + hand_splayed: ['raised_hand_with_fingers_splayed'], + vulcan: ['raised_hand_with_part_between_middle_and_ring_fingers', 'vulcan_salute'], + v: ['victory_hand', 'victory'], + fingers_crossed: ['hand_with_index_and_middle_finger_crossed'], + metal: ['sign_of_the_horns'], + call_me: ['call_me_hand'], + middle_finger: ['reversed_hand_with_middle_finger_extended'], + thumbsup: ['+1', 'thumbup', 'thumbs_up', 'yes'], + thumbsdown: ['-1', 'thumbdown', 'thumbs_down'], + fist: ['raised_fist'], + punch: ['oncoming_fist'], + left_facing_fist: ['left_fist'], + right_facing_fist: ['right_fist'], + raised_hands: ['raising_hands'], + handshake: ['shaking_hands'], + pray: ['folded_hands'], + nail_care: ['nail_polish'], + muscle: ['flexed_biceps', 'right_bicep'], + lips: ['mouth'], + adult: ['person'], + blond_haired_person: ['person_with_blond_hair', 'blond_haired'], + bearded_person: ['person_beard', 'person_bearded'], + man_red_haired: ['man_red_hair'], + older_adult: ['older_person'], + older_man: ['old_man'], + older_woman: ['grandma', 'old_woman'], + person_pouting: ['person_with_pouting_face', 'pouting'], + person_gesturing_no: ['no_good'], + person_gesturing_ok: ['ok_woman', 'all_good'], + person_tipping_hand: ['information_desk_person'], + person_raising_hand: ['raising_hand'], + person_bowing: ['bow'], + person_facepalming: ['face_palm', 'facepalm'], + person_shrugging: ['shrug'], + police_officer: ['cop'], + detective: ['spy', 'sleuth_or_spy'], + guard: ['guardsman'], + person_wearing_turban: ['man_with_turban'], + man_with_chinese_cap: ['man_with_gua_pi_mao', 'person_with_skullcap'], + pregnant_woman: ['expecting_woman'], + angel: ['baby_angel'], + santa: ['santa_claus'], + mrs_claus: ['mother_christmas'], + person_getting_massage: ['massage'], + person_getting_haircut: ['haircut'], + person_walking: ['walking'], + person_running: ['runner', 'running'], + dancer: ['woman_dancing'], + man_dancing: ['male_dancer'], + levitate: ['man_in_business_suit_levitating', 'levitating', 'person_in_suit_levitating'], + people_with_bunny_ears_partying: ['dancers'], + person_fencing: ['fencer', 'fencing'], + person_golfing: ['golfer', 'golfing'], + person_surfing: ['surfer', 'surfing'], + person_rowing_boat: ['rowboat'], + person_swimming: ['swimmer', 'swimming'], + person_bouncing_ball: ['basketball_player', 'person_with_ball'], + person_lifting_weights: ['lifter', 'weight_lifter', 'weight_lifting'], + person_biking: ['bicyclist', 'biking'], + person_mountain_biking: ['mountain_bicyclist', 'mountain_biking'], + person_doing_cartwheel: ['cartwheel', 'cartwheeling', 'person_cartwheel'], + people_wrestling: ['wrestlers', 'wrestling'], + person_playing_water_polo: ['water_polo'], + person_playing_handball: ['handball'], + person_juggling: ['juggling', 'juggler'], + sleeping_accommodation: ['person_in_bed'], + kiss_mm: ['couplekiss_mm', 'kiss_man_man'], + kiss_ww: ['couplekiss_ww'], + couple_mm: ['couple_with_heart_mm'], + couple_ww: ['couple_with_heart_ww'], + speaking_head: ['speaking_head_in_silhouette'], + dog: ['dog_face'], + fox: ['fox_face'], + cat: ['cat_face'], + lion_face: ['lion'], + tiger: ['tiger_face'], + horse: ['horse_face'], + unicorn: ['unicorn_face'], + cow: ['cow_face'], + pig: ['pig_face'], + sheep: ['ewe'], + rhino: ['rhinoceros'], + mouse: ['mouse_face'], + rabbit: ['rabbit_face'], + panda_face: ['panda'], + feet: ['paw_prints'], + dove: ['dove_of_peace'], + shell: ['spiral_shell'], + bee: ['honeybee'], + wilted_rose: ['wilted_flower'], + ear_of_rice: ['sheaf_of_rice'], + apple: ['red_apple'], + kiwi: ['kiwifruit', 'kiwi_fruit'], + corn: ['ear_of_corn'], + peanuts: ['shelled_peanut'], + french_bread: ['baguette_bread'], + cheese: ['cheese_wedge'], + fries: ['french_fries'], + hotdog: ['hot_dog'], + stuffed_flatbread: ['stuffed_pita'], + shallow_pan_of_food: ['paella'], + stew: ['pot_of_food'], + salad: ['green_salad'], + bento: ['bento_box'], + rice: ['cooked_rice'], + curry: ['curry_rice'], + ramen: ['steaming_bowl'], + birthday: ['birthday_cake'], + cake: ['shortcake'], + custard: ['pudding', 'flan'], + milk: ['glass_of_milk'], + coffee: ['hot_beverage'], + champagne: ['bottle_with_popping_cork'], + beer: ['beer_mug'], + champagne_glass: ['clinking_glass', 'clinking_glasses'], + tumbler_glass: ['whisky'], + fork_knife_plate: ['fork_and_knife_with_plate'], + knife: ['kitchen_knife'], + map: ['world_map'], + japan: ['map_of_japan', 'japan_map'], + mountain_snow: ['snow_capped_mountain'], + beach: ['beach_with_umbrella'], + island: ['desert_island'], + park: ['national_park'], + construction_site: ['building_construction'], + bricks: ['brick'], + homes: ['house_buildings', 'houses'], + house_abandoned: ['derelict_house_building', 'derelict_house'], + european_castle: ['castle'], + city_sunset: ['city_sunrise', 'sunset'], + hotsprings: ['hot_springs'], + barber: ['barber_pole'], + steam_locomotive: ['locomotive'], + bullettrain_front: ['bullet_train'], + train: ['tram_car'], + red_car: ['automobile', 'car'], + race_car: ['racing_car'], + motorcycle: ['racing_motorcycle'], + motor_scooter: ['motorbike'], + bike: ['bicycle'], + scooter: ['kick_scooter'], + busstop: ['bus_stop'], + railway_track: ['railroad_track'], + oil: ['oil_drum'], + fuelpump: ['fuel_pump'], + octagonal_sign: ['stop_sign'], + canoe: ['kayak'], + cruise_ship: ['passenger_ship'], + motorboat: ['motor_boat'], + airplane_small: ['small_airplane'], + bellhop: ['bellhop_bell'], + timer: ['timer_clock'], + clock: ['mantlepiece_clock'], + clock12: ['twelve_oclock'], + clock1230: ['twelve_thirty'], + clock1: ['one_oclock'], + clock130: ['one_thirty'], + clock2: ['two_oclock'], + clock230: ['two_thirty'], + clock3: ['three_oclock'], + clock330: ['three_thirty'], + clock4: ['four_oclock'], + clock430: ['four_thirty'], + clock5: ['five_oclock'], + clock530: ['five_thirty'], + clock6: ['six_oclock'], + clock630: ['six_thirty'], + clock7: ['seven_oclock'], + clock730: ['seven_thirty'], + clock8: ['eight_oclock'], + clock830: ['eight_thirty'], + clock9: ['nine_oclock'], + clock930: ['nine_thirty'], + clock10: ['ten_oclock'], + clock1030: ['ten_thirty'], + clock11: ['eleven_oclock'], + clock1130: ['eleven_thirty'], + new_moon_with_face: ['new_moon_face'], + sunny: ['sun'], + star2: ['glowing_star'], + stars: ['shooting_star'], + thunder_cloud_rain: ['thunder_cloud_and_rain', 'stormy'], + white_sun_small_cloud: ['white_sun_with_small_cloud', 'sun_behind_small_cloud'], + white_sun_cloud: ['white_sun_behind_cloud', 'cloudy', 'sun_behind_large_cloud'], + white_sun_rain_cloud: ['white_sun_behind_cloud_with_rain', 'sun_and_rain', 'sun_behind_rain_cloud'], + cloud_rain: ['cloud_with_rain', 'rainy'], + cloud_snow: ['cloud_with_snow', 'snowy'], + cloud_lightning: ['cloud_with_lightning', 'lightning'], + cloud_tornado: ['cloud_with_tornado', 'tornado'], + wind_blowing_face: ['wind_face'], + beach_umbrella: ['umbrella_on_ground'], + zap: ['high_voltage'], + fire: ['flame'], + ocean: ['water_wave'], + tada: ['party_popper', 'party'], + flags: ['carp_streamer'], + gift: ['wrapped_gift'], + tickets: ['admission_tickets'], + medal: ['sports_medal'], + first_place: ['first_place_medal', '1st'], + second_place: ['second_place_medal', '2nd'], + third_place: ['third_place_medal', '3rd'], + soccer: ['soccer_ball'], + cricket_game: ['cricket_bat_ball'], + hockey: ['ice_hockey'], + ping_pong: ['table_tennis'], + boxing_glove: ['boxing_gloves'], + martial_arts_uniform: ['karate_uniform'], + goal: ['goal_net'], + golf: ['flag_in_hole'], + fishing_pole_and_fish: ['fishing_pole'], + running_shirt_with_sash: ['running_shirt'], + ski: ['skis'], + dart: ['direct_hit', 'bullseye'], + gun: ['pistol'], + jigsaw: ['puzzle_piece'], + spades: ['spade_suit'], + hearts: ['heart_suit'], + diamonds: ['diamond_suit'], + clubs: ['club_suit'], + black_joker: ['joker'], + frame_photo: ['frame_with_picture', 'framed_picture'], + eyeglasses: ['glasses'], + shirt: ['t_shirt'], + pouch: ['clutch_bag'], + school_satchel: ['backpack'], + athletic_shoe: ['running_shoe', 'sneaker'], + womans_flat_shoe: ['flat_shoe'], + sandal: ['womans_sandal'], + boot: ['womans_boot'], + tophat: ['top_hat'], + helmet_with_cross: ['helmet_with_white_cross', 'rescue_worker_helmet'], + gem: ['gem_stone'], + mute: ['muted_speaker', 'no_sound'], + mega: ['megaphone'], + notes: ['musical_notes'], + microphone2: ['studio_microphone'], + headphones: ['headphone'], + drum: ['drum_with_drumsticks'], + fax: ['fax_machine'], + desktop: ['desktop_computer'], + mouse_three_button: ['three_button_mouse', 'computer_mouse'], + minidisc: ['computer_disk'], + cd: ['optical_disk'], + projector: ['film_projector'], + clapper: ['clapper_board'], + tv: ['television'], + vhs: ['videocassette'], + bulb: ['light_bulb'], + book: ['open_book'], + newspaper2: ['rolled_up_newspaper'], + moneybag: ['money_bag'], + yen: ['yen_banknote'], + euro: ['euro_banknote'], + 'e-mail': ['email', 'e_mail'], + ballot_box: ['ballot_box_with_ballot'], + pen_fountain: ['lower_left_fountain_pen', 'fountain_pen'], + pen_ballpoint: ['lower_left_ballpoint_pen', 'pen'], + paintbrush: ['lower_left_paintbrush'], + crayon: ['lower_left_crayon'], + pencil: ['memo'], + dividers: ['card_index_dividers'], + notepad_spiral: ['spiral_note_pad'], + calendar_spiral: ['spiral_calendar_pad'], + paperclips: ['linked_paperclips'], + card_box: ['card_file_box'], + lock: ['locked'], + unlock: ['unlocked'], + key2: ['old_key'], + hammer_pick: ['hammer_and_pick'], + tools: ['hammer_and_wrench'], + dagger: ['dagger_knife'], + bow_and_arrow: ['archery'], + compression: ['clamp'], + scales: ['balance_scale'], + couch: ['couch_and_lamp'], + squeeze_bottle: ['lotion_bottle'], + shopping_cart: ['shopping_trolley'], + smoking: ['cigarette'], + urn: ['funeral_urn'], + moyai: ['moai'], + mens: ['mens_room'], + womens: ['womens_room'], + wc: ['water_closet'], + no_entry_sign: ['prohibited'], + do_not_litter: ['no_littering'], + radioactive: ['radioactive_sign'], + biohazard: ['biohazard_sign'], + arrow_up: ['up_arrow'], + arrow_right: ['right_arrow'], + arrow_down: ['down_arrow'], + arrow_left: ['left_arrow'], + arrow_upper_left: ['up_left_arrow'], + arrow_up_down: ['up_down_arrow'], + back: ['back_arrow'], + end: ['end_arrow'], + on: ['on_arrow'], + soon: ['soon_arrow'], + top: ['top_arrow'], + place_of_worship: ['worship_symbol'], + atom: ['atom_symbol'], + cross: ['latin_cross'], + peace: ['peace_symbol'], + scorpius: ['scorpio'], + track_next: ['next_track'], + track_previous: ['previous_track'], + pause_button: ['double_vertical_bar', 'pause'], + eject: ['eject_symbol'], + signal_strength: ['antenna_bars'], + question: ['question_mark'], + 'fleur-de-lis': ['fleur_de_lis'], + heavy_check_mark: ['check_mark'], + x: ['cross_mark'], + tm: ['trade_mark'], + asterisk: ['keycap_asterisk'], + symbols: ['input_symbols'], + information_source: ['information', 'info'], + m: ['circled_m'], + flag_black: ['waving_black_flag', 'black_flag'], + flag_white: ['waving_white_flag', 'white_flag'], + rainbow_flag: ['gay_pride_flag'], + flag_ac: ['ac', 'ascension_island'], + flag_ad: ['ad', 'andorra'], + flag_ae: ['ae', 'united_arab_emirates'], + flag_af: ['af', 'afghanistan'], + flag_ag: ['ag', 'antigua_barbuda'], + flag_ai: ['ai', 'anguilla'], + flag_al: ['al', 'albania'], + flag_am: ['am', 'armenia'], + flag_ao: ['ao', 'angola'], + flag_aq: ['aq', 'antarctica'], + flag_ar: ['ar', 'argentina'], + flag_as: ['as', 'american_samoa'], + flag_at: ['at', 'austria'], + flag_au: ['au', 'australia'], + flag_aw: ['aw', 'aruba'], + flag_ax: ['ax', 'aland_islands'], + flag_az: ['az', 'azerbaijan'], + flag_ba: ['ba', 'bosnia_herzegovina'], + flag_bb: ['bb', 'barbados'], + flag_bd: ['bd', 'bangladesh'], + flag_be: ['be', 'belgium'], + flag_bf: ['bf', 'burkina_faso'], + flag_bg: ['bg', 'bulgaria'], + flag_bh: ['bh', 'bahrain'], + flag_bi: ['bi', 'burundi'], + flag_bj: ['bj', 'benin'], + flag_bl: ['bl', 'st_barthelemy'], + flag_bm: ['bm', 'bermuda'], + flag_bn: ['bn', 'brunei'], + flag_bo: ['bo', 'bolivia'], + flag_bq: ['bq', 'caribbean_netherlands'], + flag_br: ['br', 'brazil'], + flag_bs: ['bs', 'bahamas'], + flag_bt: ['bt', 'bhutan'], + flag_bv: ['bv', 'bouvet_island'], + flag_bw: ['bw', 'botswana'], + flag_by: ['by', 'belarus'], + flag_bz: ['bz', 'belize'], + flag_ca: ['ca', 'canada'], + flag_cc: ['cc', 'cocos_islands'], + flag_cd: ['congo', 'congo_kinshasa'], + flag_cf: ['cf', 'central_african_republic'], + flag_cg: ['cg', 'congo_brazzaville'], + flag_ch: ['ch', 'switzerland'], + flag_ci: ['ci', 'cote_divoire'], + flag_ck: ['ck', 'cook_islands'], + flag_cl: ['chile'], + flag_cm: ['cm', 'cameroon'], + flag_cn: ['cn', 'china'], + flag_co: ['co', 'colombia'], + flag_cp: ['cp', 'clipperton_island'], + flag_cq: ['sark'], + flag_cr: ['cr', 'costa_rica'], + flag_cu: ['cu', 'cuba'], + flag_cv: ['cv', 'cape_verde'], + flag_cw: ['cw', 'curacao'], + flag_cx: ['cx', 'christmas_island'], + flag_cy: ['cy', 'cyprus'], + flag_cz: ['cz', 'czech_republic', 'czechia'], + flag_de: ['de', 'germany'], + flag_dg: ['dg', 'diego_garcia'], + flag_dj: ['dj', 'djibouti'], + flag_dk: ['dk', 'denmark'], + flag_dm: ['dm', 'dominica'], + flag_do: ['do', 'dominican_republic'], + flag_dz: ['dz', 'algeria'], + flag_ea: ['ea', 'ceuta_melilla'], + flag_ec: ['ec', 'ecuador'], + flag_ee: ['ee', 'estonia'], + flag_eg: ['eg', 'egypt'], + flag_eh: ['eh', 'western_sahara'], + flag_er: ['er', 'eritrea'], + flag_es: ['es', 'spain'], + flag_et: ['et', 'ethiopia'], + flag_eu: ['eu', 'european_union'], + flag_fi: ['fi', 'finland'], + flag_fj: ['fj', 'fiji'], + flag_fk: ['fk', 'falkland_islands'], + flag_fm: ['fm', 'micronesia'], + flag_fo: ['fo', 'faroe_islands'], + flag_fr: ['fr', 'france'], + flag_ga: ['ga', 'gabon'], + flag_gb: ['gb', 'uk', 'united_kingdom'], + flag_gd: ['gd', 'grenada'], + flag_ge: ['ge', 'georgia'], + flag_gf: ['gf', 'french_guiana'], + flag_gg: ['gg', 'guernsey'], + flag_gh: ['gh', 'ghana'], + flag_gi: ['gi', 'gibraltar'], + flag_gl: ['gl', 'greenland'], + flag_gm: ['gm', 'gambia'], + flag_gn: ['gn', 'guinea'], + flag_gp: ['gp', 'guadeloupe'], + flag_gq: ['gq', 'equatorial_guinea'], + flag_gr: ['gr', 'greece'], + flag_gs: ['gs', 'south_georgia_south_sandwich_islands'], + flag_gt: ['gt', 'guatemala'], + flag_gu: ['gu', 'guam'], + flag_gw: ['gw', 'guinea_bissau'], + flag_gy: ['gy', 'guyana'], + flag_hk: ['hk', 'hong_kong'], + flag_hm: ['hm', 'heard_mcdonald_islands'], + flag_hn: ['hn', 'honduras'], + flag_hr: ['hr', 'croatia'], + flag_ht: ['ht', 'haiti'], + flag_hu: ['hu', 'hungary'], + flag_ic: ['ic', 'canary_islands'], + flag_id: ['indonesia'], + flag_ie: ['ie', 'ireland'], + flag_il: ['il', 'israel'], + flag_im: ['im', 'isle_of_man'], + flag_in: ['in', 'india'], + flag_io: ['io', 'british_indian_ocean_territory'], + flag_iq: ['iq', 'iraq'], + flag_ir: ['ir', 'iran'], + flag_is: ['is', 'iceland'], + flag_it: ['it', 'italy'], + flag_je: ['je', 'jersey'], + flag_jm: ['jm', 'jamaica'], + flag_jo: ['jo', 'jordan'], + flag_jp: ['jp'], + flag_ke: ['ke', 'kenya'], + flag_kg: ['kg', 'kyrgyzstan'], + flag_kh: ['kh', 'cambodia'], + flag_ki: ['ki', 'kiribati'], + flag_km: ['km', 'comoros'], + flag_kn: ['kn', 'st_kitts_nevis'], + flag_kp: ['kp', 'north_korea'], + flag_kr: ['kr', 'south_korea'], + flag_kw: ['kw', 'kuwait'], + flag_ky: ['ky', 'cayman_islands'], + flag_kz: ['kz', 'kazakhstan'], + flag_la: ['la', 'laos'], + flag_lb: ['lb', 'lebanon'], + flag_lc: ['lc', 'st_lucia'], + flag_li: ['li', 'liechtenstein'], + flag_lk: ['lk', 'sri_lanka'], + flag_lr: ['lr', 'liberia'], + flag_ls: ['ls', 'lesotho'], + flag_lt: ['lt', 'lithuania'], + flag_lu: ['lu', 'luxembourg'], + flag_lv: ['lv', 'latvia'], + flag_ly: ['ly', 'libya'], + flag_ma: ['ma', 'morocco'], + flag_mc: ['mc', 'monaco'], + flag_md: ['md', 'moldova'], + flag_me: ['me', 'montenegro'], + flag_mf: ['mf', 'st_martin'], + flag_mg: ['mg', 'madagascar'], + flag_mh: ['mh', 'marshall_islands'], + flag_mk: ['mk', 'macedonia'], + flag_ml: ['ml', 'mali'], + flag_mm: ['mm', 'burma', 'myanmar'], + flag_mn: ['mn', 'mongolia'], + flag_mo: ['mo', 'macao', 'macau'], + flag_mp: ['mp', 'northern_mariana_islands'], + flag_mq: ['mq', 'martinique'], + flag_mr: ['mr', 'mauritania'], + flag_ms: ['ms', 'montserrat'], + flag_mt: ['mt', 'malta'], + flag_mu: ['mu', 'mauritius'], + flag_mv: ['mv', 'maldives'], + flag_mw: ['mw', 'malawi'], + flag_mx: ['mx', 'mexico'], + flag_my: ['my', 'malaysia'], + flag_mz: ['mz', 'mozambique'], + flag_na: ['na', 'namibia'], + flag_nc: ['nc', 'new_caledonia'], + flag_ne: ['ne', 'niger'], + flag_nf: ['nf', 'norfolk_island'], + flag_ng: ['nigeria'], + flag_ni: ['ni', 'nicaragua'], + flag_nl: ['nl', 'netherlands'], + flag_no: ['no', 'norway'], + flag_np: ['np', 'nepal'], + flag_nr: ['nr', 'nauru'], + flag_nu: ['nu', 'niue'], + flag_nz: ['nz', 'new_zealand'], + flag_om: ['om', 'oman'], + flag_pa: ['pa', 'panama'], + flag_pe: ['pe', 'peru'], + flag_pf: ['pf', 'french_polynesia'], + flag_pg: ['pg', 'papua_new_guinea'], + flag_ph: ['ph', 'philippines'], + flag_pk: ['pk', 'pakistan'], + flag_pl: ['pl', 'poland'], + flag_pm: ['pm', 'st_pierre_miquelon'], + flag_pn: ['pn', 'pitcairn_islands'], + flag_pr: ['pr', 'puerto_rico'], + flag_ps: ['ps', 'palestinian_territories'], + flag_pt: ['pt', 'portugal'], + flag_pw: ['pw', 'palau'], + flag_py: ['py', 'paraguay'], + flag_qa: ['qa', 'qatar'], + flag_re: ['re', 'reunion'], + flag_ro: ['ro', 'romania'], + flag_rs: ['rs', 'serbia'], + flag_ru: ['ru', 'russia'], + flag_rw: ['rw', 'rwanda'], + flag_sa: ['saudiarabia', 'saudi', 'saudi_arabia'], + flag_sb: ['sb', 'solomon_islands'], + flag_sc: ['sc', 'seychelles'], + flag_sd: ['sd', 'sudan'], + flag_se: ['se', 'sweden'], + flag_sg: ['sg', 'singapore'], + flag_sh: ['sh', 'st_helena'], + flag_si: ['si', 'slovenia'], + flag_sj: ['sj', 'svalbard_jan_mayen'], + flag_sk: ['sk', 'slovakia'], + flag_sl: ['sl', 'sierra_leone'], + flag_sm: ['sm', 'san_marino'], + flag_sn: ['sn', 'senegal'], + flag_so: ['so', 'somalia'], + flag_sr: ['sr', 'suriname'], + flag_ss: ['ss', 'south_sudan'], + flag_st: ['st', 'sao_tome_principe'], + flag_sv: ['sv', 'el_salvador'], + flag_sx: ['sx', 'sint_maarten'], + flag_sy: ['sy', 'syria'], + flag_sz: ['sz', 'eswatini', 'swaziland'], + flag_ta: ['ta', 'tristan_da_cunha'], + flag_tc: ['tc', 'turks_caicos_islands'], + flag_td: ['td', 'chad'], + flag_tf: ['tf', 'french_southern_territories'], + flag_tg: ['tg', 'togo'], + flag_th: ['th', 'thailand'], + flag_tj: ['tj', 'tajikistan'], + flag_tk: ['tk', 'tokelau'], + flag_tl: ['tl', 'timor_leste'], + flag_tm: ['turkmenistan'], + flag_tn: ['tn', 'tunisia'], + flag_to: ['to', 'tonga'], + flag_tr: ['tr', 'turkey_tr'], + flag_tt: ['tt', 'trinidad_tobago'], + flag_tv: ['tuvalu'], + flag_tw: ['tw', 'taiwan'], + flag_tz: ['tz', 'tanzania'], + flag_ua: ['ua', 'ukraine'], + flag_ug: ['ug', 'uganda'], + flag_um: ['um', 'us_outlying_islands'], + flag_us: ['us', 'united_states', 'usa'], + flag_uy: ['uy', 'uruguay'], + flag_uz: ['uz', 'uzbekistan'], + flag_va: ['va', 'vatican_city'], + flag_vc: ['vc', 'st_vincent_grenadines'], + flag_ve: ['ve', 'venezuela'], + flag_vg: ['vg', 'british_virgin_islands'], + flag_vi: ['vi', 'us_virgin_islands'], + flag_vn: ['vn', 'vietnam'], + flag_vu: ['vu', 'vanuatu'], + flag_wf: ['wf', 'wallis_futuna'], + flag_ws: ['ws', 'samoa'], + flag_xk: ['xk', 'kosovo'], + flag_ye: ['ye', 'yemen'], + flag_yt: ['yt', 'mayotte'], + flag_za: ['za', 'south_africa'], + flag_zm: ['zm', 'zambia'], + flag_zw: ['zw', 'zimbabwe'], + person_with_veil: ['bride_with_veil'], + mobile_phone: ['iphone', 'android'], + blue_circle: ['large_blue_circle'], + a: ['a_blood'], + ab: ['ab_blood'], + imp: ['angry_imp'], + anguished: ['anguished_face'], + cold_sweat: ['anxious', 'anxious_face'], + leftwards_arrow_with_hook: ['arrow_left_hook'], + astonished: ['astonished_face'], + b: ['b_blood'], + adhesive_bandage: ['bandaid'], + restroom: ['bathroom'], + grin: ['beaming_face'], + bear: ['bear_face'], + '8ball': ['billiards'], + bird: ['bird_face'], + kissing_heart: ['blowing_a_kiss'], + bubble_tea: ['boba_drink'], + high_brightness: ['bright_button'], + face_with_symbols_over_mouth: ['censored', 'face_with_symbols_on_mouth'], + chart_with_downwards_trend: ['chart_decreasing'], + chart_with_upwards_trend: ['chart_increasing'], + white_check_mark: ['check_mark_button'], + chicken: ['chicken_face'], + clap: ['clapping_hands'], + person_climbing: ['climbing'], + arrows_clockwise: ['clockwise'], + cold_face: ['cold'], + confounded: ['confounded_face'], + video_game: ['controller'], + arrows_counterclockwise: ['counterclockwise'], + couplekiss: ['couple_kiss'], + couple_with_heart_woman_man: ['couple_with_heart_mw', 'couple_with_heart_wm'], + negative_squared_cross_mark: ['cross_mark_button'], + truck: ['delivery_truck'], + diamond_shape_with_a_dot_inside: ['diamond_with_a_dot'], + low_brightness: ['dim_button'], + disappointed: ['disappointed_face'], + mirror_ball: ['disco', 'disco_ball'], + disguised_face: ['disguised'], + heavy_division_sign: ['divide', 'division'], + face_with_spiral_eyes: ['dizzy_eyes'], + loop: ['double_curly_loop'], + bangbang: ['double_exclamation'], + dna: ['double_helix'], + arrow_down_small: ['down'], + sweat: ['downcast_face'], + earth_africa: ['earth_europe'], + interrobang: ['exclamation_question'], + face_exhaling: ['exhale', 'exhaling'], + expressionless: ['expressionless_face'], + face_with_open_eyes_and_hand_over_mouth: ['face_with_open_eyes_hand_over_mouth', 'gasp'], + open_mouth: ['face_with_open_mouth'], + stuck_out_tongue: ['face_with_tongue'], + family_adult_child: ['family_aa', 'family_ac'], + family_adult_adult_child: ['family_aac'], + family_adult_adult_child_child: ['family_aacc'], + family_adult_child_child: ['family_acc'], + family_man_boy: ['family_mb'], + family_man_boy_boy: ['family_mbb'], + family_man_girl: ['family_mg'], + family_man_girl_boy: ['family_mgb'], + family_man_girl_girl: ['family_mgg'], + family_man_woman_boy: ['family_mwb'], + family_woman_boy: ['family_wb'], + family_woman_boy_boy: ['family_wbb'], + family_woman_girl: ['family_wg'], + family_woman_girl_boy: ['family_wgb'], + family_woman_girl_girl: ['family_wgg'], + arrow_double_down: ['fast_down'], + rewind: ['fast_reverse'], + arrow_double_up: ['fast_up'], + female_sign: ['female'], + england: ['flag_gbeng'], + scotland: ['flag_gbsct'], + wales: ['flag_gbwls'], + united_nations: ['flag_un', 'un'], + folding_hand_fan: ['folding_fan'], + cooking: ['fried_egg'], + frog: ['frog_face'], + ginger_root: ['ginger'], + mortar_board: ['graduation_cap'], + grey_heart: ['gray_heart'], + grimacing: ['grimacing_face'], + smile_cat: ['grinning_cat_with_closed_eyes'], + smiley: ['grinning_face_with_big_eyes'], + smile: ['grinning_face_with_closed_eyes'], + sweat_smile: ['grinning_face_with_sweat'], + innocent: ['halo'], + hamster: ['hamster_face'], + face_with_hand_over_mouth: ['hand_over_mouth'], + wheelchair: ['handicapped'], + ear_with_hearing_aid: ['hearing_aid'], + cupid: ['heart_with_arrow'], + gift_heart: ['heart_with_ribbon'], + raised_hand: ['high_five'], + loud_sound: ['high_volume'], + hippopotamus: ['hippo'], + o: ['hollow_red_circle', 'red_o'], + partying_face: ['hooray', 'partying'], + hot_face: ['hot'], + ice_cube: ['ice'], + identification_card: ['id_card'], + face_in_clouds: ['in_clouds'], + accept: ['ja_acceptable'], + u7533: ['ja_application'], + ideograph_advantage: ['ja_bargain'], + congratulations: ['ja_congratulations'], + u5272: ['ja_discount'], + u7121: ['ja_free_of_charge'], + koko: ['ja_here'], + u6708: ['ja_monthly_amount'], + u6e80: ['ja_no_vacancy'], + u6709: ['ja_not_free_of_carge'], + u55b6: ['ja_open_for_business'], + u5408: ['ja_passing_grade'], + u7981: ['ja_prohibited'], + u6307: ['ja_reserved'], + secret: ['ja_secret'], + sa: ['ja_service_charge'], + u7a7a: ['ja_vacancy'], + pirate_flag: ['jolly_roger'], + beverage_box: ['juice_box'], + kiss_woman_man: ['kiss_mw', 'kiss_wm'], + kissing_closed_eyes: ['kissing_face_with_closed_eyes'], + kissing_smiling_eyes: ['kissing_face_with_smiling_eyes'], + person_kneeling: ['kneeling'], + dizzy_face: ['knocked_out'], + koala: ['koala_face'], + computer: ['laptop'], + ring_buoy: ['lifebuoy'], + put_litter_in_its_place: ['litter_bin'], + joy: ['lmao', 'tears_of_joy'], + closed_lock_with_key: ['locked_with_key'], + lock_with_ink_pen: ['locked_with_pen'], + sob: ['loudly_crying_face'], + speaker: ['low_volume', 'quiet_sound'], + male_sign: ['male'], + man_beard: ['man_bearded'], + 'blond-haired_man': ['man_blond_haired'], + man_getting_face_massage: ['man_getting_massage'], + man_in_manual_wheelchair_facing_right: ['man_in_manual_wheelchair_right'], + man_in_motorized_wheelchair_facing_right: ['man_in_motorized_wheelchair_right'], + man_kneeling_facing_right: ['man_kneeling_right'], + man_running_facing_right: ['man_running_right'], + man_walking_facing_right: ['man_walking_right'], + man_with_probing_cane: ['man_with_white_cane'], + man_with_white_cane_facing_right: ['man_with_white_cane_right'], + medical_symbol: ['medical'], + mask: ['medical_mask'], + sound: ['medium_volumne'], + melting_face: ['melt'], + heavy_minus_sign: ['minus'], + calling: ['mobile_phone_arrow'], + rice_scene: ['moon_ceremony'], + heavy_multiplication_x: ['multiplication', 'multiply'], + empty_nest: ['nest'], + neutral_face: ['neutral'], + underage: ['no_one_under_18'], + triumph: ['nose_steam'], + hash: ['number_sign'], + o2: ['o_blood'], + tangerine: ['orange'], + art: ['palette'], + palm_down_hand: ['palm_down'], + palm_up_hand: ['palm_up'], + pea_pod: ['pea'], + face_with_peeking_eye: ['peek'], + penguin: ['penguin_face'], + persevere: ['persevering_face'], + person_in_manual_wheelchair_facing_right: ['person_in_manual_wheelchair_right'], + person_in_motorized_wheelchair_facing_right: ['person_in_motorized_wheelchair_right'], + person_kneeling_facing_right: ['person_kneeling_right'], + person_running_facing_right: ['person_running_right'], + skier: ['person_skiing', 'skiing'], + snowboarder: ['person_snowboarding', 'snowboarding'], + bath: ['person_taking_bath'], + person_walking_facing_right: ['person_walking_right'], + person_with_probing_cane: ['person_with_white_cane'], + person_with_white_cane_facing_right: ['person_with_white_cane_right'], + pinched_fingers: ['pinch'], + arrow_forward: ['play'], + pleading_face: ['pleading'], + heavy_plus_sign: ['plus'], + index_pointing_at_the_viewer: ['point_forward'], + polar_bear: ['polar_bear_face'], + pouring_liquid: ['pour'], + face_with_raised_eyebrow: ['raised_eyebrow'], + record_button: ['record'], + recycle: ['recycling_symbol'], + izakaya_lantern: ['red_paper_lantern'], + arrow_backward: ['reverse'], + arrow_right_hook: ['rightwards_arrow_with_hook'], + person_with_crown: ['royalty'], + disappointed_relieved: ['sad_relieved_face'], + saluting_face: ['salute'], + satellite: ['satellite_antenna'], + ringed_planet: ['saturn'], + yum: ['savoring_food'], + scream: ['screaming_in_fear'], + shaking_face: ['shaking'], + twisted_rightwards_arrows: ['shuffle'], + shushing_face: ['shush'], + playground_slide: ['slide'], + heart_eyes_cat: ['smiling_cat_with_heart_eyes'], + blush: ['smiling_face_with_closed_eyes'], + heart_eyes: ['smiling_face_with_heart_eyes'], + sunglasses: ['smiling_face_with_sunglasses', 'sunglasses_cool', 'too_cool'], + icecream: ['soft_serve'], + whale: ['spouting_whale'], + person_standing: ['standing'], + stop_button: ['stop'], + partly_sunny: ['sun_behind_cloud'], + blue_car: ['suv'], + t_rex: ['t-rex', 'trex'], + joy_cat: ['tears_of_joy_cat'], + keycap_ten: ['ten'], + tired_face: ['tired'], + roll_of_paper: ['toilet_paper'], + wastebasket: ['trashcan'], + triangular_flag_on_post: ['triangular_flag'], + umbrella: ['umbrella_with_rain'], + up: ['up2'], + face_vomiting: ['vomiting'], + face_holding_back_tears: ['watery_eyes'], + probing_cane: ['white_cane'], + grey_exclamation: ['white_exclamation'], + grey_question: ['white_question'], + wolf: ['wolf_face'], + woman_beard: ['woman_bearded'], + 'blond-haired_woman': ['woman_blond_haired'], + woman_getting_face_massage: ['woman_getting_massage'], + woman_in_manual_wheelchair_facing_right: ['woman_in_manual_wheelchair_right'], + woman_in_motorized_wheelchair_facing_right: ['woman_in_motorized_wheelchair_right'], + woman_kneeling_facing_right: ['woman_kneeling_right'], + woman_running_facing_right: ['woman_running_right'], + woman_walking_facing_right: ['woman_walking_right'], + woman_with_probing_cane: ['woman_with_white_cane'], + woman_with_white_cane_facing_right: ['woman_with_white_cane_right'], + woozy_face: ['woozy'], + smirk_cat: ['wry_smile_cat'], + x_ray: ['x-ray', 'xray'], + yawning_face: ['yawn', 'yawning'], + zany_face: ['zany'] +}; diff --git a/app/lib/constants/emojis/emojis.ts b/app/lib/constants/emojis/emojis.ts index 19c992d1507..508dc8e7a80 100644 --- a/app/lib/constants/emojis/emojis.ts +++ b/app/lib/constants/emojis/emojis.ts @@ -1,2817 +1,6 @@ -export const emojisByCategory = { - people: [ - 'grinning', - 'grimacing', - 'grin', - 'joy', - 'smiley', - 'smile', - 'sweat_smile', - 'laughing', - 'innocent', - 'wink', - 'blush', - 'slight_smile', - 'upside_down', - 'relaxed', - 'yum', - 'relieved', - 'heart_eyes', - 'kissing_heart', - 'kissing', - 'kissing_smiling_eyes', - 'kissing_closed_eyes', - 'stuck_out_tongue_winking_eye', - 'stuck_out_tongue_closed_eyes', - 'stuck_out_tongue', - 'money_mouth', - 'nerd', - 'sunglasses', - 'hugging', - 'smirk', - 'no_mouth', - 'neutral_face', - 'expressionless', - 'unamused', - 'rolling_eyes', - 'thinking', - 'flushed', - 'disappointed', - 'worried', - 'angry', - 'rage', - 'pensive', - 'confused', - 'slight_frown', - 'frowning2', - 'persevere', - 'confounded', - 'tired_face', - 'weary', - 'triumph', - 'open_mouth', - 'scream', - 'fearful', - 'cold_sweat', - 'hushed', - 'frowning', - 'anguished', - 'cry', - 'disappointed_relieved', - 'sleepy', - 'sweat', - 'sob', - 'dizzy_face', - 'astonished', - 'zipper_mouth', - 'mask', - 'thermometer_face', - 'head_bandage', - 'sleeping', - 'zzz', - 'poop', - 'smiling_imp', - 'imp', - 'japanese_ogre', - 'japanese_goblin', - 'skull', - 'ghost', - 'alien', - 'robot', - 'smiley_cat', - 'smile_cat', - 'joy_cat', - 'heart_eyes_cat', - 'smirk_cat', - 'kissing_cat', - 'scream_cat', - 'crying_cat_face', - 'pouting_cat', - 'raised_hands', - 'clap', - 'wave', - 'thumbsup', - 'thumbsdown', - 'punch', - 'fist', - 'v', - 'ok_hand', - 'raised_hand', - 'open_hands', - 'muscle', - 'pray', - 'point_up', - 'point_up_2', - 'point_down', - 'point_left', - 'point_right', - 'middle_finger', - 'hand_splayed', - 'metal', - 'vulcan', - 'writing_hand', - 'nail_care', - 'lips', - 'tongue', - 'ear', - 'nose', - 'eye', - 'eyes', - 'bust_in_silhouette', - 'busts_in_silhouette', - 'speaking_head', - 'baby', - 'boy', - 'girl', - 'man', - 'woman', - 'person_with_blond_hair', - 'older_man', - 'older_woman', - 'man_with_gua_pi_mao', - 'man_with_turban', - 'cop', - 'construction_worker', - 'guardsman', - 'spy', - 'santa', - 'angel', - 'princess', - 'bride_with_veil', - 'walking', - 'runner', - 'dancer', - 'dancers', - 'couple', - 'two_men_holding_hands', - 'two_women_holding_hands', - 'bow', - 'information_desk_person', - 'no_good', - 'ok_woman', - 'raising_hand', - 'person_with_pouting_face', - 'person_frowning', - 'haircut', - 'massage', - 'couple_with_heart', - 'couple_ww', - 'couple_mm', - 'couplekiss', - 'kiss_ww', - 'kiss_mm', - 'family', - 'family_mwg', - 'family_mwgb', - 'family_mwbb', - 'family_mwgg', - 'family_wwb', - 'family_wwg', - 'family_wwgb', - 'family_wwbb', - 'family_wwgg', - 'family_mmb', - 'family_mmg', - 'family_mmgb', - 'family_mmbb', - 'family_mmgg', - 'womans_clothes', - 'shirt', - 'jeans', - 'necktie', - 'dress', - 'bikini', - 'kimono', - 'lipstick', - 'kiss', - 'footprints', - 'high_heel', - 'sandal', - 'boot', - 'mans_shoe', - 'athletic_shoe', - 'womans_hat', - 'tophat', - 'helmet_with_cross', - 'mortar_board', - 'crown', - 'school_satchel', - 'pouch', - 'purse', - 'handbag', - 'briefcase', - 'eyeglasses', - 'dark_sunglasses', - 'ring', - 'closed_umbrella', - 'cowboy', - 'clown', - 'nauseated_face', - 'rofl', - 'drooling_face', - 'lying_face', - 'sneezing_face', - 'prince', - 'man_in_tuxedo', - 'mrs_claus', - 'face_palm', - 'shrug', - 'selfie', - 'man_dancing', - 'call_me', - 'raised_back_of_hand', - 'left_facing_fist', - 'right_facing_fist', - 'handshake', - 'fingers_crossed', - 'pregnant_woman' - ], - nature: [ - 'dog', - 'cat', - 'mouse', - 'hamster', - 'rabbit', - 'bear', - 'panda_face', - 'koala', - 'tiger', - 'lion_face', - 'cow', - 'pig', - 'pig_nose', - 'frog', - 'octopus', - 'monkey_face', - 'see_no_evil', - 'hear_no_evil', - 'speak_no_evil', - 'monkey', - 'chicken', - 'penguin', - 'bird', - 'baby_chick', - 'hatching_chick', - 'hatched_chick', - 'wolf', - 'boar', - 'horse', - 'unicorn', - 'bee', - 'bug', - 'snail', - 'beetle', - 'ant', - 'spider', - 'scorpion', - 'crab', - 'snake', - 'turtle', - 'tropical_fish', - 'fish', - 'blowfish', - 'dolphin', - 'whale', - 'whale2', - 'crocodile', - 'leopard', - 'tiger2', - 'water_buffalo', - 'ox', - 'cow2', - 'dromedary_camel', - 'camel', - 'elephant', - 'goat', - 'ram', - 'sheep', - 'racehorse', - 'pig2', - 'rat', - 'mouse2', - 'rooster', - 'turkey', - 'dove', - 'dog2', - 'poodle', - 'cat2', - 'rabbit2', - 'chipmunk', - 'feet', - 'dragon', - 'dragon_face', - 'cactus', - 'christmas_tree', - 'evergreen_tree', - 'deciduous_tree', - 'palm_tree', - 'seedling', - 'herb', - 'shamrock', - 'four_leaf_clover', - 'bamboo', - 'tanabata_tree', - 'leaves', - 'fallen_leaf', - 'maple_leaf', - 'ear_of_rice', - 'hibiscus', - 'sunflower', - 'rose', - 'tulip', - 'blossom', - 'cherry_blossom', - 'bouquet', - 'mushroom', - 'chestnut', - 'jack_o_lantern', - 'shell', - 'spider_web', - 'earth_americas', - 'earth_africa', - 'earth_asia', - 'full_moon', - 'waning_gibbous_moon', - 'last_quarter_moon', - 'waning_crescent_moon', - 'new_moon', - 'waxing_crescent_moon', - 'first_quarter_moon', - 'waxing_gibbous_moon', - 'new_moon_with_face', - 'full_moon_with_face', - 'first_quarter_moon_with_face', - 'last_quarter_moon_with_face', - 'sun_with_face', - 'crescent_moon', - 'star', - 'star2', - 'dizzy', - 'sparkles', - 'comet', - 'sunny', - 'white_sun_small_cloud', - 'partly_sunny', - 'white_sun_cloud', - 'white_sun_rain_cloud', - 'cloud', - 'cloud_rain', - 'thunder_cloud_rain', - 'cloud_lightning', - 'zap', - 'fire', - 'boom', - 'snowflake', - 'cloud_snow', - 'snowman2', - 'snowman', - 'wind_blowing_face', - 'dash', - 'cloud_tornado', - 'fog', - 'umbrella2', - 'umbrella', - 'droplet', - 'sweat_drops', - 'ocean', - 'eagle', - 'duck', - 'bat', - 'shark', - 'owl', - 'fox', - 'butterfly', - 'deer', - 'gorilla', - 'lizard', - 'rhino', - 'wilted_rose', - 'shrimp', - 'squid' - ], - food: [ - 'green_apple', - 'apple', - 'pear', - 'tangerine', - 'lemon', - 'banana', - 'watermelon', - 'grapes', - 'strawberry', - 'melon', - 'cherries', - 'peach', - 'pineapple', - 'tomato', - 'eggplant', - 'hot_pepper', - 'corn', - 'sweet_potato', - 'honey_pot', - 'bread', - 'cheese', - 'poultry_leg', - 'meat_on_bone', - 'fried_shrimp', - 'cooking', - 'hamburger', - 'fries', - 'hotdog', - 'pizza', - 'spaghetti', - 'taco', - 'burrito', - 'ramen', - 'stew', - 'fish_cake', - 'sushi', - 'bento', - 'curry', - 'rice_ball', - 'rice', - 'rice_cracker', - 'oden', - 'dango', - 'shaved_ice', - 'ice_cream', - 'icecream', - 'cake', - 'birthday', - 'custard', - 'candy', - 'lollipop', - 'chocolate_bar', - 'popcorn', - 'doughnut', - 'cookie', - 'beer', - 'beers', - 'wine_glass', - 'cocktail', - 'tropical_drink', - 'champagne', - 'sake', - 'tea', - 'coffee', - 'baby_bottle', - 'fork_and_knife', - 'fork_knife_plate', - 'croissant', - 'avocado', - 'cucumber', - 'bacon', - 'potato', - 'carrot', - 'french_bread', - 'salad', - 'shallow_pan_of_food', - 'stuffed_flatbread', - 'champagne_glass', - 'tumbler_glass', - 'spoon', - 'egg', - 'milk', - 'peanuts', - 'kiwi', - 'pancakes' - ], - activity: [ - 'soccer', - 'basketball', - 'football', - 'baseball', - 'tennis', - 'volleyball', - 'rugby_football', - '8ball', - 'golf', - 'golfer', - 'ping_pong', - 'badminton', - 'hockey', - 'field_hockey', - 'cricket', - 'ski', - 'skier', - 'snowboarder', - 'ice_skate', - 'bow_and_arrow', - 'fishing_pole_and_fish', - 'rowboat', - 'swimmer', - 'surfer', - 'bath', - 'basketball_player', - 'lifter', - 'bicyclist', - 'mountain_bicyclist', - 'horse_racing', - 'levitate', - 'trophy', - 'running_shirt_with_sash', - 'medal', - 'military_medal', - 'reminder_ribbon', - 'rosette', - 'ticket', - 'tickets', - 'performing_arts', - 'art', - 'circus_tent', - 'microphone', - 'headphones', - 'musical_score', - 'musical_keyboard', - 'saxophone', - 'trumpet', - 'guitar', - 'violin', - 'clapper', - 'video_game', - 'space_invader', - 'dart', - 'game_die', - 'slot_machine', - 'bowling', - 'cartwheel', - 'juggling', - 'wrestlers', - 'boxing_glove', - 'martial_arts_uniform', - 'water_polo', - 'handball', - 'goal', - 'fencer', - 'first_place', - 'second_place', - 'third_place', - 'drum' - ], - travel: [ - 'red_car', - 'taxi', - 'blue_car', - 'bus', - 'trolleybus', - 'race_car', - 'police_car', - 'ambulance', - 'fire_engine', - 'minibus', - 'truck', - 'articulated_lorry', - 'tractor', - 'motorcycle', - 'bike', - 'rotating_light', - 'oncoming_police_car', - 'oncoming_bus', - 'oncoming_automobile', - 'oncoming_taxi', - 'aerial_tramway', - 'mountain_cableway', - 'suspension_railway', - 'railway_car', - 'train', - 'monorail', - 'bullettrain_side', - 'bullettrain_front', - 'light_rail', - 'mountain_railway', - 'steam_locomotive', - 'train2', - 'metro', - 'tram', - 'station', - 'helicopter', - 'airplane_small', - 'airplane', - 'airplane_departure', - 'airplane_arriving', - 'sailboat', - 'motorboat', - 'speedboat', - 'ferry', - 'cruise_ship', - 'rocket', - 'satellite_orbital', - 'seat', - 'anchor', - 'construction', - 'fuelpump', - 'busstop', - 'vertical_traffic_light', - 'traffic_light', - 'checkered_flag', - 'ship', - 'ferris_wheel', - 'roller_coaster', - 'carousel_horse', - 'construction_site', - 'foggy', - 'tokyo_tower', - 'factory', - 'fountain', - 'rice_scene', - 'mountain', - 'mountain_snow', - 'mount_fuji', - 'volcano', - 'japan', - 'camping', - 'tent', - 'park', - 'motorway', - 'railway_track', - 'sunrise', - 'sunrise_over_mountains', - 'desert', - 'beach', - 'island', - 'city_sunset', - 'city_dusk', - 'cityscape', - 'night_with_stars', - 'bridge_at_night', - 'milky_way', - 'stars', - 'sparkler', - 'fireworks', - 'rainbow', - 'homes', - 'european_castle', - 'japanese_castle', - 'stadium', - 'statue_of_liberty', - 'house', - 'house_with_garden', - 'house_abandoned', - 'office', - 'department_store', - 'post_office', - 'european_post_office', - 'hospital', - 'bank', - 'hotel', - 'convenience_store', - 'school', - 'love_hotel', - 'wedding', - 'classical_building', - 'church', - 'mosque', - 'synagogue', - 'kaaba', - 'shinto_shrine', - 'shopping_cart', - 'scooter', - 'motor_scooter', - 'canoe' - ], - objects: [ - 'watch', - 'iphone', - 'calling', - 'computer', - 'keyboard', - 'desktop', - 'printer', - 'mouse_three_button', - 'trackball', - 'joystick', - 'compression', - 'minidisc', - 'floppy_disk', - 'cd', - 'dvd', - 'vhs', - 'camera', - 'camera_with_flash', - 'video_camera', - 'movie_camera', - 'projector', - 'film_frames', - 'telephone_receiver', - 'telephone', - 'pager', - 'fax', - 'tv', - 'radio', - 'microphone2', - 'level_slider', - 'control_knobs', - 'stopwatch', - 'timer', - 'alarm_clock', - 'clock', - 'hourglass_flowing_sand', - 'hourglass', - 'satellite', - 'battery', - 'electric_plug', - 'bulb', - 'flashlight', - 'candle', - 'wastebasket', - 'oil', - 'money_with_wings', - 'dollar', - 'yen', - 'euro', - 'pound', - 'moneybag', - 'credit_card', - 'gem', - 'scales', - 'wrench', - 'hammer', - 'hammer_pick', - 'tools', - 'pick', - 'nut_and_bolt', - 'gear', - 'chains', - 'gun', - 'bomb', - 'knife', - 'dagger', - 'crossed_swords', - 'shield', - 'smoking', - 'skull_crossbones', - 'coffin', - 'urn', - 'amphora', - 'crystal_ball', - 'prayer_beads', - 'barber', - 'alembic', - 'telescope', - 'microscope', - 'hole', - 'pill', - 'syringe', - 'thermometer', - 'label', - 'bookmark', - 'toilet', - 'shower', - 'bathtub', - 'key', - 'key2', - 'couch', - 'sleeping_accommodation', - 'bed', - 'door', - 'bellhop', - 'frame_photo', - 'map', - 'beach_umbrella', - 'moyai', - 'shopping_bags', - 'balloon', - 'flags', - 'ribbon', - 'gift', - 'confetti_ball', - 'tada', - 'dolls', - 'wind_chime', - 'crossed_flags', - 'izakaya_lantern', - 'envelope', - 'envelope_with_arrow', - 'incoming_envelope', - 'e-mail', - 'love_letter', - 'postbox', - 'mailbox_closed', - 'mailbox', - 'mailbox_with_mail', - 'mailbox_with_no_mail', - 'package', - 'postal_horn', - 'inbox_tray', - 'outbox_tray', - 'scroll', - 'page_with_curl', - 'bookmark_tabs', - 'bar_chart', - 'chart_with_upwards_trend', - 'chart_with_downwards_trend', - 'page_facing_up', - 'date', - 'calendar', - 'calendar_spiral', - 'card_index', - 'card_box', - 'ballot_box', - 'file_cabinet', - 'clipboard', - 'notepad_spiral', - 'file_folder', - 'open_file_folder', - 'dividers', - 'newspaper2', - 'newspaper', - 'notebook', - 'closed_book', - 'green_book', - 'blue_book', - 'orange_book', - 'notebook_with_decorative_cover', - 'ledger', - 'books', - 'book', - 'link', - 'paperclip', - 'paperclips', - 'scissors', - 'triangular_ruler', - 'straight_ruler', - 'pushpin', - 'round_pushpin', - 'triangular_flag_on_post', - 'flag_white', - 'flag_black', - 'closed_lock_with_key', - 'lock', - 'unlock', - 'lock_with_ink_pen', - 'pen_ballpoint', - 'pen_fountain', - 'black_nib', - 'pencil', - 'pencil2', - 'crayon', - 'paintbrush', - 'mag', - 'mag_right' - ], - symbols: [ - '100', - '1234', - 'heart', - 'yellow_heart', - 'green_heart', - 'blue_heart', - 'purple_heart', - 'broken_heart', - 'heart_exclamation', - 'two_hearts', - 'revolving_hearts', - 'heartbeat', - 'heartpulse', - 'sparkling_heart', - 'cupid', - 'gift_heart', - 'heart_decoration', - 'peace', - 'cross', - 'star_and_crescent', - 'om_symbol', - 'wheel_of_dharma', - 'star_of_david', - 'six_pointed_star', - 'menorah', - 'yin_yang', - 'orthodox_cross', - 'place_of_worship', - 'ophiuchus', - 'aries', - 'taurus', - 'gemini', - 'cancer', - 'leo', - 'virgo', - 'libra', - 'scorpius', - 'sagittarius', - 'capricorn', - 'aquarius', - 'pisces', - 'id', - 'atom', - 'u7a7a', - 'u5272', - 'radioactive', - 'biohazard', - 'mobile_phone_off', - 'vibration_mode', - 'u6709', - 'u7121', - 'u7533', - 'u55b6', - 'u6708', - 'eight_pointed_black_star', - 'vs', - 'accept', - 'white_flower', - 'ideograph_advantage', - 'secret', - 'congratulations', - 'u5408', - 'u6e80', - 'u7981', - 'a', - 'b', - 'ab', - 'cl', - 'o2', - 'sos', - 'no_entry', - 'name_badge', - 'no_entry_sign', - 'x', - 'o', - 'anger', - 'hotsprings', - 'no_pedestrians', - 'do_not_litter', - 'no_bicycles', - 'non-potable_water', - 'underage', - 'no_mobile_phones', - 'exclamation', - 'grey_exclamation', - 'question', - 'grey_question', - 'bangbang', - 'interrobang', - 'low_brightness', - 'high_brightness', - 'trident', - 'fleur-de-lis', - 'part_alternation_mark', - 'warning', - 'children_crossing', - 'beginner', - 'recycle', - 'u6307', - 'chart', - 'sparkle', - 'eight_spoked_asterisk', - 'negative_squared_cross_mark', - 'white_check_mark', - 'diamond_shape_with_a_dot_inside', - 'cyclone', - 'loop', - 'globe_with_meridians', - 'm', - 'atm', - 'sa', - 'passport_control', - 'customs', - 'baggage_claim', - 'left_luggage', - 'wheelchair', - 'no_smoking', - 'wc', - 'parking', - 'potable_water', - 'mens', - 'womens', - 'baby_symbol', - 'restroom', - 'put_litter_in_its_place', - 'cinema', - 'signal_strength', - 'koko', - 'ng', - 'ok', - 'up', - 'cool', - 'new', - 'free', - 'zero', - 'one', - 'two', - 'three', - 'four', - 'five', - 'six', - 'seven', - 'eight', - 'nine', - 'keycap_ten', - 'arrow_forward', - 'pause_button', - 'play_pause', - 'stop_button', - 'record_button', - 'track_next', - 'track_previous', - 'fast_forward', - 'rewind', - 'twisted_rightwards_arrows', - 'repeat', - 'repeat_one', - 'arrow_backward', - 'arrow_up_small', - 'arrow_down_small', - 'arrow_double_up', - 'arrow_double_down', - 'arrow_right', - 'arrow_left', - 'arrow_up', - 'arrow_down', - 'arrow_upper_right', - 'arrow_lower_right', - 'arrow_lower_left', - 'arrow_upper_left', - 'arrow_up_down', - 'left_right_arrow', - 'arrows_counterclockwise', - 'arrow_right_hook', - 'leftwards_arrow_with_hook', - 'arrow_heading_up', - 'arrow_heading_down', - 'hash', - 'asterisk', - 'information_source', - 'abc', - 'abcd', - 'capital_abcd', - 'symbols', - 'musical_note', - 'notes', - 'wavy_dash', - 'curly_loop', - 'heavy_check_mark', - 'arrows_clockwise', - 'heavy_plus_sign', - 'heavy_minus_sign', - 'heavy_division_sign', - 'heavy_multiplication_x', - 'heavy_dollar_sign', - 'currency_exchange', - 'copyright', - 'registered', - 'tm', - 'end', - 'back', - 'on', - 'top', - 'soon', - 'ballot_box_with_check', - 'radio_button', - 'white_circle', - 'black_circle', - 'red_circle', - 'large_blue_circle', - 'small_orange_diamond', - 'small_blue_diamond', - 'large_orange_diamond', - 'large_blue_diamond', - 'small_red_triangle', - 'black_small_square', - 'white_small_square', - 'black_large_square', - 'white_large_square', - 'small_red_triangle_down', - 'black_medium_square', - 'white_medium_square', - 'black_medium_small_square', - 'white_medium_small_square', - 'black_square_button', - 'white_square_button', - 'speaker', - 'sound', - 'loud_sound', - 'mute', - 'mega', - 'loudspeaker', - 'bell', - 'no_bell', - 'black_joker', - 'mahjong', - 'spades', - 'clubs', - 'hearts', - 'diamonds', - 'flower_playing_cards', - 'thought_balloon', - 'anger_right', - 'speech_balloon', - 'clock1', - 'clock2', - 'clock3', - 'clock4', - 'clock5', - 'clock6', - 'clock7', - 'clock8', - 'clock9', - 'clock10', - 'clock11', - 'clock12', - 'clock130', - 'clock230', - 'clock330', - 'clock430', - 'clock530', - 'clock630', - 'clock730', - 'clock830', - 'clock930', - 'clock1030', - 'clock1130', - 'clock1230', - 'eye_in_speech_bubble', - 'speech_left', - 'eject', - 'black_heart', - 'octagonal_sign', - 'asterisk_symbol', - 'pound_symbol', - 'digit_nine', - 'digit_eight', - 'digit_seven', - 'digit_six', - 'digit_five', - 'digit_four', - 'digit_three', - 'digit_two', - 'digit_one', - 'digit_zero', - 'regional_indicator_z', - 'regional_indicator_y', - 'regional_indicator_x', - 'regional_indicator_w', - 'regional_indicator_v', - 'regional_indicator_u', - 'regional_indicator_t', - 'regional_indicator_s', - 'regional_indicator_r', - 'regional_indicator_q', - 'regional_indicator_p', - 'regional_indicator_o', - 'regional_indicator_n', - 'regional_indicator_m', - 'regional_indicator_l', - 'regional_indicator_k', - 'regional_indicator_j', - 'regional_indicator_i', - 'regional_indicator_h', - 'regional_indicator_g', - 'regional_indicator_f', - 'regional_indicator_e', - 'regional_indicator_d', - 'regional_indicator_c', - 'regional_indicator_b', - 'regional_indicator_a' - ], - flags: [ - 'flag_ac', - 'flag_af', - 'flag_al', - 'flag_dz', - 'flag_ad', - 'flag_ao', - 'flag_ai', - 'flag_ag', - 'flag_ar', - 'flag_am', - 'flag_aw', - 'flag_au', - 'flag_at', - 'flag_az', - 'flag_bs', - 'flag_bh', - 'flag_bd', - 'flag_bb', - 'flag_by', - 'flag_be', - 'flag_bz', - 'flag_bj', - 'flag_bm', - 'flag_bt', - 'flag_bo', - 'flag_ba', - 'flag_bw', - 'flag_br', - 'flag_bn', - 'flag_bg', - 'flag_bf', - 'flag_bi', - 'flag_cv', - 'flag_kh', - 'flag_cm', - 'flag_ca', - 'flag_ky', - 'flag_cf', - 'flag_td', - 'flag_cl', - 'flag_cn', - 'flag_co', - 'flag_km', - 'flag_cg', - 'flag_cd', - 'flag_cr', - 'flag_hr', - 'flag_cu', - 'flag_cy', - 'flag_cz', - 'flag_dk', - 'flag_dj', - 'flag_dm', - 'flag_do', - 'flag_ec', - 'flag_eg', - 'flag_sv', - 'flag_gq', - 'flag_er', - 'flag_ee', - 'flag_et', - 'flag_fo', - 'flag_fj', - 'flag_fi', - 'flag_fr', - 'flag_pf', - 'flag_ga', - 'flag_gm', - 'flag_ge', - 'flag_de', - 'flag_gh', - 'flag_gi', - 'flag_gr', - 'flag_gl', - 'flag_gd', - 'flag_gu', - 'flag_gt', - 'flag_gn', - 'flag_gw', - 'flag_gy', - 'flag_ht', - 'flag_hn', - 'flag_hk', - 'flag_hu', - 'flag_is', - 'flag_in', - 'flag_id', - 'flag_ir', - 'flag_iq', - 'flag_ie', - 'flag_il', - 'flag_it', - 'flag_ci', - 'flag_jm', - 'flag_jp', - 'flag_je', - 'flag_jo', - 'flag_kz', - 'flag_ke', - 'flag_ki', - 'flag_kw', - 'flag_kg', - 'flag_la', - 'flag_lv', - 'flag_lb', - 'flag_ls', - 'flag_lr', - 'flag_ly', - 'flag_li', - 'flag_lt', - 'flag_lu', - 'flag_mo', - 'flag_mk', - 'flag_mg', - 'flag_mw', - 'flag_my', - 'flag_mv', - 'flag_ml', - 'flag_mt', - 'flag_mh', - 'flag_mr', - 'flag_mu', - 'flag_mx', - 'flag_fm', - 'flag_md', - 'flag_mc', - 'flag_mn', - 'flag_me', - 'flag_ms', - 'flag_ma', - 'flag_mz', - 'flag_mm', - 'flag_na', - 'flag_nr', - 'flag_np', - 'flag_nl', - 'flag_nz', - 'flag_ni', - 'flag_ne', - 'flag_ng', - 'flag_nu', - 'flag_kp', - 'flag_no', - 'flag_om', - 'flag_pk', - 'flag_pw', - 'flag_ps', - 'flag_pa', - 'flag_pg', - 'flag_py', - 'flag_pe', - 'flag_ph', - 'flag_pl', - 'flag_pt', - 'flag_pr', - 'flag_qa', - 'flag_ro', - 'flag_ru', - 'flag_rw', - 'flag_sh', - 'flag_kn', - 'flag_lc', - 'flag_vc', - 'flag_ws', - 'flag_sm', - 'flag_st', - 'flag_sa', - 'flag_sn', - 'flag_rs', - 'flag_sc', - 'flag_sl', - 'flag_sg', - 'flag_sk', - 'flag_si', - 'flag_sb', - 'flag_so', - 'flag_za', - 'flag_kr', - 'flag_es', - 'flag_lk', - 'flag_sd', - 'flag_sr', - 'flag_sz', - 'flag_se', - 'flag_ch', - 'flag_sy', - 'flag_tw', - 'flag_tj', - 'flag_tz', - 'flag_th', - 'flag_tl', - 'flag_tg', - 'flag_to', - 'flag_tt', - 'flag_tn', - 'flag_tr', - 'flag_tm', - 'flag_tv', - 'flag_ug', - 'flag_ua', - 'flag_ae', - 'flag_gb', - 'flag_us', - 'flag_vi', - 'flag_uy', - 'flag_uz', - 'flag_vu', - 'flag_va', - 'flag_ve', - 'flag_vn', - 'flag_ye', - 'flag_zm', - 'flag_zw', - 'flag_ax', - 'flag_ta', - 'flag_io', - 'flag_cx', - 'flag_cc', - 'flag_gg', - 'flag_im', - 'flag_nf', - 'flag_pn', - 'flag_tk', - 'flag_bv', - 'flag_hm', - 'flag_sj', - 'flag_um', - 'flag_ic', - 'flag_cp', - 'flag_as', - 'flag_aq', - 'flag_vg', - 'flag_ck', - 'flag_cw', - 'flag_eu', - 'flag_mp', - 'flag_sx', - 'flag_ss', - 'flag_tc' - ] -}; +import { emojisByCategory } from './data'; -export const emojis = [ - 'grinning', - 'grimacing', - 'grin', - 'joy', - 'smiley', - 'smile', - 'sweat_smile', - 'laughing', - 'innocent', - 'wink', - 'blush', - 'slight_smile', - 'upside_down', - 'relaxed', - 'yum', - 'relieved', - 'heart_eyes', - 'kissing_heart', - 'kissing', - 'kissing_smiling_eyes', - 'kissing_closed_eyes', - 'stuck_out_tongue_winking_eye', - 'stuck_out_tongue_closed_eyes', - 'stuck_out_tongue', - 'money_mouth', - 'nerd', - 'sunglasses', - 'hugging', - 'smirk', - 'no_mouth', - 'neutral_face', - 'expressionless', - 'unamused', - 'rolling_eyes', - 'thinking', - 'flushed', - 'disappointed', - 'worried', - 'angry', - 'rage', - 'pensive', - 'confused', - 'slight_frown', - 'frowning2', - 'persevere', - 'confounded', - 'tired_face', - 'weary', - 'triumph', - 'open_mouth', - 'scream', - 'fearful', - 'cold_sweat', - 'hushed', - 'frowning', - 'anguished', - 'cry', - 'disappointed_relieved', - 'sleepy', - 'sweat', - 'sob', - 'dizzy_face', - 'astonished', - 'zipper_mouth', - 'mask', - 'thermometer_face', - 'head_bandage', - 'sleeping', - 'zzz', - 'poop', - 'smiling_imp', - 'imp', - 'japanese_ogre', - 'japanese_goblin', - 'skull', - 'ghost', - 'alien', - 'robot', - 'smiley_cat', - 'smile_cat', - 'joy_cat', - 'heart_eyes_cat', - 'smirk_cat', - 'kissing_cat', - 'scream_cat', - 'crying_cat_face', - 'pouting_cat', - 'raised_hands', - 'clap', - 'wave', - 'thumbsup', - 'thumbsdown', - 'punch', - 'fist', - 'v', - 'ok_hand', - 'raised_hand', - 'open_hands', - 'muscle', - 'pray', - 'point_up', - 'point_up_2', - 'point_down', - 'point_left', - 'point_right', - 'middle_finger', - 'hand_splayed', - 'metal', - 'vulcan', - 'writing_hand', - 'nail_care', - 'lips', - 'tongue', - 'ear', - 'nose', - 'eye', - 'eyes', - 'bust_in_silhouette', - 'busts_in_silhouette', - 'speaking_head', - 'baby', - 'boy', - 'girl', - 'man', - 'woman', - 'person_with_blond_hair', - 'older_man', - 'older_woman', - 'man_with_gua_pi_mao', - 'man_with_turban', - 'cop', - 'construction_worker', - 'guardsman', - 'spy', - 'santa', - 'angel', - 'princess', - 'bride_with_veil', - 'walking', - 'runner', - 'dancer', - 'dancers', - 'couple', - 'two_men_holding_hands', - 'two_women_holding_hands', - 'bow', - 'information_desk_person', - 'no_good', - 'ok_woman', - 'raising_hand', - 'person_with_pouting_face', - 'person_frowning', - 'haircut', - 'massage', - 'couple_with_heart', - 'couple_ww', - 'couple_mm', - 'couplekiss', - 'kiss_ww', - 'kiss_mm', - 'family', - 'family_mwg', - 'family_mwgb', - 'family_mwbb', - 'family_mwgg', - 'family_wwb', - 'family_wwg', - 'family_wwgb', - 'family_wwbb', - 'family_wwgg', - 'family_mmb', - 'family_mmg', - 'family_mmgb', - 'family_mmbb', - 'family_mmgg', - 'womans_clothes', - 'shirt', - 'jeans', - 'necktie', - 'dress', - 'bikini', - 'kimono', - 'lipstick', - 'kiss', - 'footprints', - 'high_heel', - 'sandal', - 'boot', - 'mans_shoe', - 'athletic_shoe', - 'womans_hat', - 'tophat', - 'helmet_with_cross', - 'mortar_board', - 'crown', - 'school_satchel', - 'pouch', - 'purse', - 'handbag', - 'briefcase', - 'eyeglasses', - 'dark_sunglasses', - 'ring', - 'closed_umbrella', - 'cowboy', - 'clown', - 'nauseated_face', - 'rofl', - 'drooling_face', - 'lying_face', - 'sneezing_face', - 'prince', - 'man_in_tuxedo', - 'mrs_claus', - 'face_palm', - 'shrug', - 'selfie', - 'man_dancing', - 'call_me', - 'raised_back_of_hand', - 'left_facing_fist', - 'right_facing_fist', - 'handshake', - 'fingers_crossed', - 'pregnant_woman', - 'dog', - 'cat', - 'mouse', - 'hamster', - 'rabbit', - 'bear', - 'panda_face', - 'koala', - 'tiger', - 'lion_face', - 'cow', - 'pig', - 'pig_nose', - 'frog', - 'octopus', - 'monkey_face', - 'see_no_evil', - 'hear_no_evil', - 'speak_no_evil', - 'monkey', - 'chicken', - 'penguin', - 'bird', - 'baby_chick', - 'hatching_chick', - 'hatched_chick', - 'wolf', - 'boar', - 'horse', - 'unicorn', - 'bee', - 'bug', - 'snail', - 'beetle', - 'ant', - 'spider', - 'scorpion', - 'crab', - 'snake', - 'turtle', - 'tropical_fish', - 'fish', - 'blowfish', - 'dolphin', - 'whale', - 'whale2', - 'crocodile', - 'leopard', - 'tiger2', - 'water_buffalo', - 'ox', - 'cow2', - 'dromedary_camel', - 'camel', - 'elephant', - 'goat', - 'ram', - 'sheep', - 'racehorse', - 'pig2', - 'rat', - 'mouse2', - 'rooster', - 'turkey', - 'dove', - 'dog2', - 'poodle', - 'cat2', - 'rabbit2', - 'chipmunk', - 'feet', - 'dragon', - 'dragon_face', - 'cactus', - 'christmas_tree', - 'evergreen_tree', - 'deciduous_tree', - 'palm_tree', - 'seedling', - 'herb', - 'shamrock', - 'four_leaf_clover', - 'bamboo', - 'tanabata_tree', - 'leaves', - 'fallen_leaf', - 'maple_leaf', - 'ear_of_rice', - 'hibiscus', - 'sunflower', - 'rose', - 'tulip', - 'blossom', - 'cherry_blossom', - 'bouquet', - 'mushroom', - 'chestnut', - 'jack_o_lantern', - 'shell', - 'spider_web', - 'earth_americas', - 'earth_africa', - 'earth_asia', - 'full_moon', - 'waning_gibbous_moon', - 'last_quarter_moon', - 'waning_crescent_moon', - 'new_moon', - 'waxing_crescent_moon', - 'first_quarter_moon', - 'waxing_gibbous_moon', - 'new_moon_with_face', - 'full_moon_with_face', - 'first_quarter_moon_with_face', - 'last_quarter_moon_with_face', - 'sun_with_face', - 'crescent_moon', - 'star', - 'star2', - 'dizzy', - 'sparkles', - 'comet', - 'sunny', - 'white_sun_small_cloud', - 'partly_sunny', - 'white_sun_cloud', - 'white_sun_rain_cloud', - 'cloud', - 'cloud_rain', - 'thunder_cloud_rain', - 'cloud_lightning', - 'zap', - 'fire', - 'boom', - 'snowflake', - 'cloud_snow', - 'snowman2', - 'snowman', - 'wind_blowing_face', - 'dash', - 'cloud_tornado', - 'fog', - 'umbrella2', - 'umbrella', - 'droplet', - 'sweat_drops', - 'ocean', - 'eagle', - 'duck', - 'bat', - 'shark', - 'owl', - 'fox', - 'butterfly', - 'deer', - 'gorilla', - 'lizard', - 'rhino', - 'wilted_rose', - 'shrimp', - 'squid', - 'green_apple', - 'apple', - 'pear', - 'tangerine', - 'lemon', - 'banana', - 'watermelon', - 'grapes', - 'strawberry', - 'melon', - 'cherries', - 'peach', - 'pineapple', - 'tomato', - 'eggplant', - 'hot_pepper', - 'corn', - 'sweet_potato', - 'honey_pot', - 'bread', - 'cheese', - 'poultry_leg', - 'meat_on_bone', - 'fried_shrimp', - 'cooking', - 'hamburger', - 'fries', - 'hotdog', - 'pizza', - 'spaghetti', - 'taco', - 'burrito', - 'ramen', - 'stew', - 'fish_cake', - 'sushi', - 'bento', - 'curry', - 'rice_ball', - 'rice', - 'rice_cracker', - 'oden', - 'dango', - 'shaved_ice', - 'ice_cream', - 'icecream', - 'cake', - 'birthday', - 'custard', - 'candy', - 'lollipop', - 'chocolate_bar', - 'popcorn', - 'doughnut', - 'cookie', - 'beer', - 'beers', - 'wine_glass', - 'cocktail', - 'tropical_drink', - 'champagne', - 'sake', - 'tea', - 'coffee', - 'baby_bottle', - 'fork_and_knife', - 'fork_knife_plate', - 'croissant', - 'avocado', - 'cucumber', - 'bacon', - 'potato', - 'carrot', - 'french_bread', - 'salad', - 'shallow_pan_of_food', - 'stuffed_flatbread', - 'champagne_glass', - 'tumbler_glass', - 'spoon', - 'egg', - 'milk', - 'peanuts', - 'kiwi', - 'pancakes', - 'soccer', - 'basketball', - 'football', - 'baseball', - 'tennis', - 'volleyball', - 'rugby_football', - '8ball', - 'golf', - 'golfer', - 'ping_pong', - 'badminton', - 'hockey', - 'field_hockey', - 'cricket', - 'ski', - 'skier', - 'snowboarder', - 'ice_skate', - 'bow_and_arrow', - 'fishing_pole_and_fish', - 'rowboat', - 'swimmer', - 'surfer', - 'bath', - 'basketball_player', - 'lifter', - 'bicyclist', - 'mountain_bicyclist', - 'horse_racing', - 'levitate', - 'trophy', - 'running_shirt_with_sash', - 'medal', - 'military_medal', - 'reminder_ribbon', - 'rosette', - 'ticket', - 'tickets', - 'performing_arts', - 'art', - 'circus_tent', - 'microphone', - 'headphones', - 'musical_score', - 'musical_keyboard', - 'saxophone', - 'trumpet', - 'guitar', - 'violin', - 'clapper', - 'video_game', - 'space_invader', - 'dart', - 'game_die', - 'slot_machine', - 'bowling', - 'cartwheel', - 'juggling', - 'wrestlers', - 'boxing_glove', - 'martial_arts_uniform', - 'water_polo', - 'handball', - 'goal', - 'fencer', - 'first_place', - 'second_place', - 'third_place', - 'drum', - 'red_car', - 'taxi', - 'blue_car', - 'bus', - 'trolleybus', - 'race_car', - 'police_car', - 'ambulance', - 'fire_engine', - 'minibus', - 'truck', - 'articulated_lorry', - 'tractor', - 'motorcycle', - 'bike', - 'rotating_light', - 'oncoming_police_car', - 'oncoming_bus', - 'oncoming_automobile', - 'oncoming_taxi', - 'aerial_tramway', - 'mountain_cableway', - 'suspension_railway', - 'railway_car', - 'train', - 'monorail', - 'bullettrain_side', - 'bullettrain_front', - 'light_rail', - 'mountain_railway', - 'steam_locomotive', - 'train2', - 'metro', - 'tram', - 'station', - 'helicopter', - 'airplane_small', - 'airplane', - 'airplane_departure', - 'airplane_arriving', - 'sailboat', - 'motorboat', - 'speedboat', - 'ferry', - 'cruise_ship', - 'rocket', - 'satellite_orbital', - 'seat', - 'anchor', - 'construction', - 'fuelpump', - 'busstop', - 'vertical_traffic_light', - 'traffic_light', - 'checkered_flag', - 'ship', - 'ferris_wheel', - 'roller_coaster', - 'carousel_horse', - 'construction_site', - 'foggy', - 'tokyo_tower', - 'factory', - 'fountain', - 'rice_scene', - 'mountain', - 'mountain_snow', - 'mount_fuji', - 'volcano', - 'japan', - 'camping', - 'tent', - 'park', - 'motorway', - 'railway_track', - 'sunrise', - 'sunrise_over_mountains', - 'desert', - 'beach', - 'island', - 'city_sunset', - 'city_dusk', - 'cityscape', - 'night_with_stars', - 'bridge_at_night', - 'milky_way', - 'stars', - 'sparkler', - 'fireworks', - 'rainbow', - 'homes', - 'european_castle', - 'japanese_castle', - 'stadium', - 'statue_of_liberty', - 'house', - 'house_with_garden', - 'house_abandoned', - 'office', - 'department_store', - 'post_office', - 'european_post_office', - 'hospital', - 'bank', - 'hotel', - 'convenience_store', - 'school', - 'love_hotel', - 'wedding', - 'classical_building', - 'church', - 'mosque', - 'synagogue', - 'kaaba', - 'shinto_shrine', - 'shopping_cart', - 'scooter', - 'motor_scooter', - 'canoe', - 'watch', - 'iphone', - 'calling', - 'computer', - 'keyboard', - 'desktop', - 'printer', - 'mouse_three_button', - 'trackball', - 'joystick', - 'compression', - 'minidisc', - 'floppy_disk', - 'cd', - 'dvd', - 'vhs', - 'camera', - 'camera_with_flash', - 'video_camera', - 'movie_camera', - 'projector', - 'film_frames', - 'telephone_receiver', - 'telephone', - 'pager', - 'fax', - 'tv', - 'radio', - 'microphone2', - 'level_slider', - 'control_knobs', - 'stopwatch', - 'timer', - 'alarm_clock', - 'clock', - 'hourglass_flowing_sand', - 'hourglass', - 'satellite', - 'battery', - 'electric_plug', - 'bulb', - 'flashlight', - 'candle', - 'wastebasket', - 'oil', - 'money_with_wings', - 'dollar', - 'yen', - 'euro', - 'pound', - 'moneybag', - 'credit_card', - 'gem', - 'scales', - 'wrench', - 'hammer', - 'hammer_pick', - 'tools', - 'pick', - 'nut_and_bolt', - 'gear', - 'chains', - 'gun', - 'bomb', - 'knife', - 'dagger', - 'crossed_swords', - 'shield', - 'smoking', - 'skull_crossbones', - 'coffin', - 'urn', - 'amphora', - 'crystal_ball', - 'prayer_beads', - 'barber', - 'alembic', - 'telescope', - 'microscope', - 'hole', - 'pill', - 'syringe', - 'thermometer', - 'label', - 'bookmark', - 'toilet', - 'shower', - 'bathtub', - 'key', - 'key2', - 'couch', - 'sleeping_accommodation', - 'bed', - 'door', - 'bellhop', - 'frame_photo', - 'map', - 'beach_umbrella', - 'moyai', - 'shopping_bags', - 'balloon', - 'flags', - 'ribbon', - 'gift', - 'confetti_ball', - 'tada', - 'dolls', - 'wind_chime', - 'crossed_flags', - 'izakaya_lantern', - 'envelope', - 'envelope_with_arrow', - 'incoming_envelope', - 'e-mail', - 'love_letter', - 'postbox', - 'mailbox_closed', - 'mailbox', - 'mailbox_with_mail', - 'mailbox_with_no_mail', - 'package', - 'postal_horn', - 'inbox_tray', - 'outbox_tray', - 'scroll', - 'page_with_curl', - 'bookmark_tabs', - 'bar_chart', - 'chart_with_upwards_trend', - 'chart_with_downwards_trend', - 'page_facing_up', - 'date', - 'calendar', - 'calendar_spiral', - 'card_index', - 'card_box', - 'ballot_box', - 'file_cabinet', - 'clipboard', - 'notepad_spiral', - 'file_folder', - 'open_file_folder', - 'dividers', - 'newspaper2', - 'newspaper', - 'notebook', - 'closed_book', - 'green_book', - 'blue_book', - 'orange_book', - 'notebook_with_decorative_cover', - 'ledger', - 'books', - 'book', - 'link', - 'paperclip', - 'paperclips', - 'scissors', - 'triangular_ruler', - 'straight_ruler', - 'pushpin', - 'round_pushpin', - 'triangular_flag_on_post', - 'flag_white', - 'flag_black', - 'closed_lock_with_key', - 'lock', - 'unlock', - 'lock_with_ink_pen', - 'pen_ballpoint', - 'pen_fountain', - 'black_nib', - 'pencil', - 'pencil2', - 'crayon', - 'paintbrush', - 'mag', - 'mag_right', - '100', - '1234', - 'heart', - 'yellow_heart', - 'green_heart', - 'blue_heart', - 'purple_heart', - 'broken_heart', - 'heart_exclamation', - 'two_hearts', - 'revolving_hearts', - 'heartbeat', - 'heartpulse', - 'sparkling_heart', - 'cupid', - 'gift_heart', - 'heart_decoration', - 'peace', - 'cross', - 'star_and_crescent', - 'om_symbol', - 'wheel_of_dharma', - 'star_of_david', - 'six_pointed_star', - 'menorah', - 'yin_yang', - 'orthodox_cross', - 'place_of_worship', - 'ophiuchus', - 'aries', - 'taurus', - 'gemini', - 'cancer', - 'leo', - 'virgo', - 'libra', - 'scorpius', - 'sagittarius', - 'capricorn', - 'aquarius', - 'pisces', - 'id', - 'atom', - 'u7a7a', - 'u5272', - 'radioactive', - 'biohazard', - 'mobile_phone_off', - 'vibration_mode', - 'u6709', - 'u7121', - 'u7533', - 'u55b6', - 'u6708', - 'eight_pointed_black_star', - 'vs', - 'accept', - 'white_flower', - 'ideograph_advantage', - 'secret', - 'congratulations', - 'u5408', - 'u6e80', - 'u7981', - 'a', - 'b', - 'ab', - 'cl', - 'o2', - 'sos', - 'no_entry', - 'name_badge', - 'no_entry_sign', - 'x', - 'o', - 'anger', - 'hotsprings', - 'no_pedestrians', - 'do_not_litter', - 'no_bicycles', - 'non-potable_water', - 'underage', - 'no_mobile_phones', - 'exclamation', - 'grey_exclamation', - 'question', - 'grey_question', - 'bangbang', - 'interrobang', - 'low_brightness', - 'high_brightness', - 'trident', - 'fleur-de-lis', - 'part_alternation_mark', - 'warning', - 'children_crossing', - 'beginner', - 'recycle', - 'u6307', - 'chart', - 'sparkle', - 'eight_spoked_asterisk', - 'negative_squared_cross_mark', - 'white_check_mark', - 'diamond_shape_with_a_dot_inside', - 'cyclone', - 'loop', - 'globe_with_meridians', - 'm', - 'atm', - 'sa', - 'passport_control', - 'customs', - 'baggage_claim', - 'left_luggage', - 'wheelchair', - 'no_smoking', - 'wc', - 'parking', - 'potable_water', - 'mens', - 'womens', - 'baby_symbol', - 'restroom', - 'put_litter_in_its_place', - 'cinema', - 'signal_strength', - 'koko', - 'ng', - 'ok', - 'up', - 'cool', - 'new', - 'free', - 'zero', - 'one', - 'two', - 'three', - 'four', - 'five', - 'six', - 'seven', - 'eight', - 'nine', - 'keycap_ten', - 'arrow_forward', - 'pause_button', - 'play_pause', - 'stop_button', - 'record_button', - 'track_next', - 'track_previous', - 'fast_forward', - 'rewind', - 'twisted_rightwards_arrows', - 'repeat', - 'repeat_one', - 'arrow_backward', - 'arrow_up_small', - 'arrow_down_small', - 'arrow_double_up', - 'arrow_double_down', - 'arrow_right', - 'arrow_left', - 'arrow_up', - 'arrow_down', - 'arrow_upper_right', - 'arrow_lower_right', - 'arrow_lower_left', - 'arrow_upper_left', - 'arrow_up_down', - 'left_right_arrow', - 'arrows_counterclockwise', - 'arrow_right_hook', - 'leftwards_arrow_with_hook', - 'arrow_heading_up', - 'arrow_heading_down', - 'hash', - 'asterisk', - 'information_source', - 'abc', - 'abcd', - 'capital_abcd', - 'symbols', - 'musical_note', - 'notes', - 'wavy_dash', - 'curly_loop', - 'heavy_check_mark', - 'arrows_clockwise', - 'heavy_plus_sign', - 'heavy_minus_sign', - 'heavy_division_sign', - 'heavy_multiplication_x', - 'heavy_dollar_sign', - 'currency_exchange', - 'copyright', - 'registered', - 'tm', - 'end', - 'back', - 'on', - 'top', - 'soon', - 'ballot_box_with_check', - 'radio_button', - 'white_circle', - 'black_circle', - 'red_circle', - 'large_blue_circle', - 'small_orange_diamond', - 'small_blue_diamond', - 'large_orange_diamond', - 'large_blue_diamond', - 'small_red_triangle', - 'black_small_square', - 'white_small_square', - 'black_large_square', - 'white_large_square', - 'small_red_triangle_down', - 'black_medium_square', - 'white_medium_square', - 'black_medium_small_square', - 'white_medium_small_square', - 'black_square_button', - 'white_square_button', - 'speaker', - 'sound', - 'loud_sound', - 'mute', - 'mega', - 'loudspeaker', - 'bell', - 'no_bell', - 'black_joker', - 'mahjong', - 'spades', - 'clubs', - 'hearts', - 'diamonds', - 'flower_playing_cards', - 'thought_balloon', - 'anger_right', - 'speech_balloon', - 'clock1', - 'clock2', - 'clock3', - 'clock4', - 'clock5', - 'clock6', - 'clock7', - 'clock8', - 'clock9', - 'clock10', - 'clock11', - 'clock12', - 'clock130', - 'clock230', - 'clock330', - 'clock430', - 'clock530', - 'clock630', - 'clock730', - 'clock830', - 'clock930', - 'clock1030', - 'clock1130', - 'clock1230', - 'eye_in_speech_bubble', - 'speech_left', - 'eject', - 'black_heart', - 'octagonal_sign', - 'asterisk_symbol', - 'pound_symbol', - 'digit_nine', - 'digit_eight', - 'digit_seven', - 'digit_six', - 'digit_five', - 'digit_four', - 'digit_three', - 'digit_two', - 'digit_one', - 'digit_zero', - 'regional_indicator_z', - 'regional_indicator_y', - 'regional_indicator_x', - 'regional_indicator_w', - 'regional_indicator_v', - 'regional_indicator_u', - 'regional_indicator_t', - 'regional_indicator_s', - 'regional_indicator_r', - 'regional_indicator_q', - 'regional_indicator_p', - 'regional_indicator_o', - 'regional_indicator_n', - 'regional_indicator_m', - 'regional_indicator_l', - 'regional_indicator_k', - 'regional_indicator_j', - 'regional_indicator_i', - 'regional_indicator_h', - 'regional_indicator_g', - 'regional_indicator_f', - 'regional_indicator_e', - 'regional_indicator_d', - 'regional_indicator_c', - 'regional_indicator_b', - 'regional_indicator_a', - 'flag_ac', - 'flag_af', - 'flag_al', - 'flag_dz', - 'flag_ad', - 'flag_ao', - 'flag_ai', - 'flag_ag', - 'flag_ar', - 'flag_am', - 'flag_aw', - 'flag_au', - 'flag_at', - 'flag_az', - 'flag_bs', - 'flag_bh', - 'flag_bd', - 'flag_bb', - 'flag_by', - 'flag_be', - 'flag_bz', - 'flag_bj', - 'flag_bm', - 'flag_bt', - 'flag_bo', - 'flag_ba', - 'flag_bw', - 'flag_br', - 'flag_bn', - 'flag_bg', - 'flag_bf', - 'flag_bi', - 'flag_cv', - 'flag_kh', - 'flag_cm', - 'flag_ca', - 'flag_ky', - 'flag_cf', - 'flag_td', - 'flag_cl', - 'flag_cn', - 'flag_co', - 'flag_km', - 'flag_cg', - 'flag_cd', - 'flag_cr', - 'flag_hr', - 'flag_cu', - 'flag_cy', - 'flag_cz', - 'flag_dk', - 'flag_dj', - 'flag_dm', - 'flag_do', - 'flag_ec', - 'flag_eg', - 'flag_sv', - 'flag_gq', - 'flag_er', - 'flag_ee', - 'flag_et', - 'flag_fk', - 'flag_fo', - 'flag_fj', - 'flag_fi', - 'flag_fr', - 'flag_pf', - 'flag_ga', - 'flag_gm', - 'flag_ge', - 'flag_de', - 'flag_gh', - 'flag_gi', - 'flag_gr', - 'flag_gl', - 'flag_gd', - 'flag_gu', - 'flag_gt', - 'flag_gn', - 'flag_gw', - 'flag_gy', - 'flag_ht', - 'flag_hn', - 'flag_hk', - 'flag_hu', - 'flag_is', - 'flag_in', - 'flag_id', - 'flag_ir', - 'flag_iq', - 'flag_ie', - 'flag_il', - 'flag_it', - 'flag_ci', - 'flag_jm', - 'flag_jp', - 'flag_je', - 'flag_jo', - 'flag_kz', - 'flag_ke', - 'flag_ki', - 'flag_xk', - 'flag_kw', - 'flag_kg', - 'flag_la', - 'flag_lv', - 'flag_lb', - 'flag_ls', - 'flag_lr', - 'flag_ly', - 'flag_li', - 'flag_lt', - 'flag_lu', - 'flag_mo', - 'flag_mk', - 'flag_mg', - 'flag_mw', - 'flag_my', - 'flag_mv', - 'flag_ml', - 'flag_mt', - 'flag_mh', - 'flag_mr', - 'flag_mu', - 'flag_mx', - 'flag_fm', - 'flag_md', - 'flag_mc', - 'flag_mn', - 'flag_me', - 'flag_ms', - 'flag_ma', - 'flag_mz', - 'flag_mm', - 'flag_na', - 'flag_nr', - 'flag_np', - 'flag_nl', - 'flag_nc', - 'flag_nz', - 'flag_ni', - 'flag_ne', - 'flag_ng', - 'flag_nu', - 'flag_kp', - 'flag_no', - 'flag_om', - 'flag_pk', - 'flag_pw', - 'flag_ps', - 'flag_pa', - 'flag_pg', - 'flag_py', - 'flag_pe', - 'flag_ph', - 'flag_pl', - 'flag_pt', - 'flag_pr', - 'flag_qa', - 'flag_ro', - 'flag_ru', - 'flag_rw', - 'flag_sh', - 'flag_kn', - 'flag_lc', - 'flag_vc', - 'flag_ws', - 'flag_sm', - 'flag_st', - 'flag_sa', - 'flag_sn', - 'flag_rs', - 'flag_sc', - 'flag_sl', - 'flag_sg', - 'flag_sk', - 'flag_si', - 'flag_sb', - 'flag_so', - 'flag_za', - 'flag_kr', - 'flag_es', - 'flag_lk', - 'flag_sd', - 'flag_sr', - 'flag_sz', - 'flag_se', - 'flag_ch', - 'flag_sy', - 'flag_tw', - 'flag_tj', - 'flag_tz', - 'flag_th', - 'flag_tl', - 'flag_tg', - 'flag_to', - 'flag_tt', - 'flag_tn', - 'flag_tr', - 'flag_tm', - 'flag_tv', - 'flag_ug', - 'flag_ua', - 'flag_ae', - 'flag_gb', - 'flag_us', - 'flag_vi', - 'flag_uy', - 'flag_uz', - 'flag_vu', - 'flag_va', - 'flag_ve', - 'flag_vn', - 'flag_wf', - 'flag_eh', - 'flag_ye', - 'flag_zm', - 'flag_zw', - 'flag_re', - 'flag_ax', - 'flag_ta', - 'flag_io', - 'flag_bq', - 'flag_cx', - 'flag_cc', - 'flag_gg', - 'flag_im', - 'flag_yt', - 'flag_nf', - 'flag_pn', - 'flag_bl', - 'flag_pm', - 'flag_gs', - 'flag_tk', - 'flag_bv', - 'flag_hm', - 'flag_sj', - 'flag_um', - 'flag_ic', - 'flag_ea', - 'flag_cp', - 'flag_dg', - 'flag_as', - 'flag_aq', - 'flag_vg', - 'flag_ck', - 'flag_cw', - 'flag_eu', - 'flag_gf', - 'flag_tf', - 'flag_gp', - 'flag_mq', - 'flag_mp', - 'flag_sx', - 'flag_ss', - 'flag_tc', - 'flag_mf' -]; +// Flat list of every emoji the picker lists, in category order. +export const emojis = Object.values(emojisByCategory).flat(); export const DEFAULT_EMOJIS = ['clap', 'thumbsup', 'heart_eyes', 'grinning', 'thinking', 'smiley']; diff --git a/app/lib/constants/emojis/index.ts b/app/lib/constants/emojis/index.ts deleted file mode 100644 index 3951c351046..00000000000 --- a/app/lib/constants/emojis/index.ts +++ /dev/null @@ -1,2 +0,0 @@ -export * from './emojis'; -export * from './categories'; diff --git a/app/lib/constants/emojis/legacyShortnames.json b/app/lib/constants/emojis/legacyShortnames.json new file mode 100644 index 00000000000..2a5835793df --- /dev/null +++ b/app/lib/constants/emojis/legacyShortnames.json @@ -0,0 +1,1142 @@ +{ + ":bride_with_veil_tone1:": "👰🏻", + ":bride_with_veil_tone2:": "👰🏼", + ":bride_with_veil_tone3:": "👰🏽", + ":bride_with_veil_tone4:": "👰🏾", + ":bride_with_veil_tone5:": "👰🏿", + ":bald:": "🦲", + ":bride_with_veil:": "👰", + ":curly_haired:": "🦱", + ":iphone:": "📱", + ":large_blue_circle:": "🔵", + ":red_haired:": "🦰", + ":tone1:": "🏻", + ":tone2:": "🏼", + ":tone3:": "🏽", + ":tone4:": "🏾", + ":tone5:": "🏿", + ":white_haired:": "🦳", + ":asterisk_symbol:": "*️", + ":digit_eight:": "8️", + ":digit_five:": "5️", + ":digit_four:": "4️", + ":digit_nine:": "9️", + ":digit_one:": "1️", + ":digit_seven:": "7️", + ":digit_six:": "6️", + ":digit_three:": "3️", + ":digit_two:": "2️", + ":digit_zero:": "0️", + ":pound_symbol:": "#️", + ":1st:": "🥇", + ":2nd:": "🥈", + ":3rd:": "🥉", + ":a_blood:": "🅰️", + ":ab_blood:": "🆎", + ":afghanistan:": "🇦🇫", + ":aland_islands:": "🇦🇽", + ":albania:": "🇦🇱", + ":algeria:": "🇩🇿", + ":all_good:": "🙆", + ":all_good_tone1:": "🙆🏻", + ":all_good_tone2:": "🙆🏼", + ":all_good_tone3:": "🙆🏽", + ":all_good_tone4:": "🙆🏾", + ":all_good_tone5:": "🙆🏿", + ":american_samoa:": "🇦🇸", + ":andorra:": "🇦🇩", + ":android:": "📱", + ":angola:": "🇦🇴", + ":angry_imp:": "👿", + ":anguilla:": "🇦🇮", + ":anguished_face:": "😧", + ":antarctica:": "🇦🇶", + ":antigua_barbuda:": "🇦🇬", + ":anxious:": "😰", + ":anxious_face:": "😰", + ":argentina:": "🇦🇷", + ":armenia:": "🇦🇲", + ":arrow_left_hook:": "↩️", + ":aruba:": "🇦🇼", + ":ascension_island:": "🇦🇨", + ":astonished_face:": "😲", + ":australia:": "🇦🇺", + ":austria:": "🇦🇹", + ":azerbaijan:": "🇦🇿", + ":b_blood:": "🅱️", + ":bahamas:": "🇧🇸", + ":bahrain:": "🇧🇭", + ":bald_tone1:": "🧑🏻‍🦲", + ":bald_tone2:": "🧑🏼‍🦲", + ":bald_tone3:": "🧑🏽‍🦲", + ":bald_tone4:": "🧑🏾‍🦲", + ":bald_tone5:": "🧑🏿‍🦲", + ":bandaid:": "🩹", + ":bangladesh:": "🇧🇩", + ":barbados:": "🇧🇧", + ":bathroom:": "🚻", + ":beaming_face:": "😁", + ":bear_face:": "🐻", + ":belarus:": "🇧🇾", + ":belgium:": "🇧🇪", + ":belize:": "🇧🇿", + ":benin:": "🇧🇯", + ":bermuda:": "🇧🇲", + ":bhutan:": "🇧🇹", + ":biking:": "🚴", + ":biking_tone1:": "🚴🏻", + ":biking_tone2:": "🚴🏼", + ":biking_tone3:": "🚴🏽", + ":biking_tone4:": "🚴🏾", + ":biking_tone5:": "🚴🏿", + ":billiards:": "🎱", + ":bird_face:": "🐦", + ":blond_haired:": "👱", + ":blond_haired_tone1:": "👱🏻", + ":blond_haired_tone2:": "👱🏼", + ":blond_haired_tone3:": "👱🏽", + ":blond_haired_tone4:": "👱🏾", + ":blond_haired_tone5:": "👱🏿", + ":blowing_a_kiss:": "😘", + ":boba_drink:": "🧋", + ":bolivia:": "🇧🇴", + ":bosnia_herzegovina:": "🇧🇦", + ":botswana:": "🇧🇼", + ":bouvet_island:": "🇧🇻", + ":brazil:": "🇧🇷", + ":bright_button:": "🔆", + ":british_indian_ocean_territory:": "🇮🇴", + ":british_virgin_islands:": "🇻🇬", + ":brunei:": "🇧🇳", + ":bulgaria:": "🇧🇬", + ":bullseye:": "🎯", + ":burkina_faso:": "🇧🇫", + ":burma:": "🇲🇲", + ":burundi:": "🇧🇮", + ":cambodia:": "🇰🇭", + ":cameroon:": "🇨🇲", + ":canada:": "🇨🇦", + ":canary_islands:": "🇮🇨", + ":cape_verde:": "🇨🇻", + ":car:": "🚗", + ":caribbean_netherlands:": "🇧🇶", + ":cartwheeling:": "🤸", + ":cartwheeling_tone1:": "🤸🏻", + ":cartwheeling_tone2:": "🤸🏼", + ":cartwheeling_tone3:": "🤸🏽", + ":cartwheeling_tone4:": "🤸🏾", + ":cartwheeling_tone5:": "🤸🏿", + ":cayman_islands:": "🇰🇾", + ":censored:": "🤬", + ":central_african_republic:": "🇨🇫", + ":ceuta_melilla:": "🇪🇦", + ":chad:": "🇹🇩", + ":chart_decreasing:": "📉", + ":chart_increasing:": "📈", + ":check_mark_button:": "✅", + ":chicken_face:": "🐔", + ":china:": "🇨🇳", + ":christmas_island:": "🇨🇽", + ":clapping_hands:": "👏", + ":clapping_hands_tone1:": "👏🏻", + ":clapping_hands_tone2:": "👏🏼", + ":clapping_hands_tone3:": "👏🏽", + ":clapping_hands_tone4:": "👏🏾", + ":clapping_hands_tone5:": "👏🏿", + ":climbing:": "🧗", + ":climbing_tone1:": "🧗🏻", + ":climbing_tone2:": "🧗🏼", + ":climbing_tone3:": "🧗🏽", + ":climbing_tone4:": "🧗🏾", + ":climbing_tone5:": "🧗🏿", + ":clinking_glasses:": "🥂", + ":clipperton_island:": "🇨🇵", + ":clockwise:": "🔃", + ":cloudy:": "🌥️", + ":cocos_islands:": "🇨🇨", + ":cold:": "🥶", + ":colombia:": "🇨🇴", + ":comoros:": "🇰🇲", + ":computer_mouse:": "🖱️", + ":confounded_face:": "😖", + ":congo_brazzaville:": "🇨🇬", + ":congo_kinshasa:": "🇨🇩", + ":controller:": "🎮", + ":cook_islands:": "🇨🇰", + ":costa_rica:": "🇨🇷", + ":cote_divoire:": "🇨🇮", + ":counterclockwise:": "🔄", + ":couple_kiss:": "💏", + ":couple_kiss_tone1:": "💏🏻", + ":couple_kiss_tone1-2:": "🧑🏻‍❤️‍💋‍🧑🏼", + ":couple_kiss_tone1-3:": "🧑🏻‍❤️‍💋‍🧑🏽", + ":couple_kiss_tone1-4:": "🧑🏻‍❤️‍💋‍🧑🏾", + ":couple_kiss_tone1-5:": "🧑🏻‍❤️‍💋‍🧑🏿", + ":couple_kiss_tone2:": "💏🏼", + ":couple_kiss_tone2-1:": "🧑🏼‍❤️‍💋‍🧑🏻", + ":couple_kiss_tone2-3:": "🧑🏼‍❤️‍💋‍🧑🏽", + ":couple_kiss_tone2-4:": "🧑🏼‍❤️‍💋‍🧑🏾", + ":couple_kiss_tone2-5:": "🧑🏼‍❤️‍💋‍🧑🏿", + ":couple_kiss_tone3:": "💏🏽", + ":couple_kiss_tone3-1:": "🧑🏽‍❤️‍💋‍🧑🏻", + ":couple_kiss_tone3-2:": "🧑🏽‍❤️‍💋‍🧑🏼", + ":couple_kiss_tone3-4:": "🧑🏽‍❤️‍💋‍🧑🏾", + ":couple_kiss_tone3-5:": "🧑🏽‍❤️‍💋‍🧑🏿", + ":couple_kiss_tone4:": "💏🏾", + ":couple_kiss_tone4-1:": "🧑🏾‍❤️‍💋‍🧑🏻", + ":couple_kiss_tone4-2:": "🧑🏾‍❤️‍💋‍🧑🏼", + ":couple_kiss_tone4-3:": "🧑🏾‍❤️‍💋‍🧑🏽", + ":couple_kiss_tone4-5:": "🧑🏾‍❤️‍💋‍🧑🏿", + ":couple_kiss_tone5:": "💏🏿", + ":couple_kiss_tone5-1:": "🧑🏿‍❤️‍💋‍🧑🏻", + ":couple_kiss_tone5-2:": "🧑🏿‍❤️‍💋‍🧑🏼", + ":couple_kiss_tone5-3:": "🧑🏿‍❤️‍💋‍🧑🏽", + ":couple_kiss_tone5-4:": "🧑🏿‍❤️‍💋‍🧑🏾", + ":couple_with_heart_mm_tone1:": "👨🏻‍❤️‍👨🏻", + ":couple_with_heart_mm_tone1-2:": "👨🏻‍❤️‍👨🏼", + ":couple_with_heart_mm_tone1-3:": "👨🏻‍❤️‍👨🏽", + ":couple_with_heart_mm_tone1-4:": "👨🏻‍❤️‍👨🏾", + ":couple_with_heart_mm_tone1-5:": "👨🏻‍❤️‍👨🏿", + ":couple_with_heart_mm_tone2:": "👨🏼‍❤️‍👨🏼", + ":couple_with_heart_mm_tone2-1:": "👨🏼‍❤️‍👨🏻", + ":couple_with_heart_mm_tone2-3:": "👨🏼‍❤️‍👨🏽", + ":couple_with_heart_mm_tone2-4:": "👨🏼‍❤️‍👨🏾", + ":couple_with_heart_mm_tone2-5:": "👨🏼‍❤️‍👨🏿", + ":couple_with_heart_mm_tone3:": "👨🏽‍❤️‍👨🏽", + ":couple_with_heart_mm_tone3-1:": "👨🏽‍❤️‍👨🏻", + ":couple_with_heart_mm_tone3-2:": "👨🏽‍❤️‍👨🏼", + ":couple_with_heart_mm_tone3-4:": "👨🏽‍❤️‍👨🏾", + ":couple_with_heart_mm_tone3-5:": "👨🏽‍❤️‍👨🏿", + ":couple_with_heart_mm_tone4:": "👨🏾‍❤️‍👨🏾", + ":couple_with_heart_mm_tone4-1:": "👨🏾‍❤️‍👨🏻", + ":couple_with_heart_mm_tone4-2:": "👨🏾‍❤️‍👨🏼", + ":couple_with_heart_mm_tone4-3:": "👨🏾‍❤️‍👨🏽", + ":couple_with_heart_mm_tone4-5:": "👨🏾‍❤️‍👨🏿", + ":couple_with_heart_mm_tone5:": "👨🏿‍❤️‍👨🏿", + ":couple_with_heart_mm_tone5-1:": "👨🏿‍❤️‍👨🏻", + ":couple_with_heart_mm_tone5-2:": "👨🏿‍❤️‍👨🏼", + ":couple_with_heart_mm_tone5-3:": "👨🏿‍❤️‍👨🏽", + ":couple_with_heart_mm_tone5-4:": "👨🏿‍❤️‍👨🏾", + ":couple_with_heart_mw:": "👩‍❤️‍👨", + ":couple_with_heart_mw_tone1:": "👩🏻‍❤️‍👨🏻", + ":couple_with_heart_mw_tone1-2:": "👩🏻‍❤️‍👨🏼", + ":couple_with_heart_mw_tone1-3:": "👩🏻‍❤️‍👨🏽", + ":couple_with_heart_mw_tone1-4:": "👩🏻‍❤️‍👨🏾", + ":couple_with_heart_mw_tone1-5:": "👩🏻‍❤️‍👨🏿", + ":couple_with_heart_mw_tone2:": "👩🏼‍❤️‍👨🏼", + ":couple_with_heart_mw_tone2-1:": "👩🏼‍❤️‍👨🏻", + ":couple_with_heart_mw_tone2-3:": "👩🏼‍❤️‍👨🏽", + ":couple_with_heart_mw_tone2-4:": "👩🏼‍❤️‍👨🏾", + ":couple_with_heart_mw_tone2-5:": "👩🏼‍❤️‍👨🏿", + ":couple_with_heart_mw_tone3:": "👩🏽‍❤️‍👨🏽", + ":couple_with_heart_mw_tone3-1:": "👩🏽‍❤️‍👨🏻", + ":couple_with_heart_mw_tone3-2:": "👩🏽‍❤️‍👨🏼", + ":couple_with_heart_mw_tone3-4:": "👩🏽‍❤️‍👨🏾", + ":couple_with_heart_mw_tone3-5:": "👩🏽‍❤️‍👨🏿", + ":couple_with_heart_mw_tone4:": "👩🏾‍❤️‍👨🏾", + ":couple_with_heart_mw_tone4-1:": "👩🏾‍❤️‍👨🏻", + ":couple_with_heart_mw_tone4-2:": "👩🏾‍❤️‍👨🏼", + ":couple_with_heart_mw_tone4-3:": "👩🏾‍❤️‍👨🏽", + ":couple_with_heart_mw_tone4-5:": "👩🏾‍❤️‍👨🏿", + ":couple_with_heart_mw_tone5:": "👩🏿‍❤️‍👨🏿", + ":couple_with_heart_mw_tone5-1:": "👩🏿‍❤️‍👨🏻", + ":couple_with_heart_mw_tone5-2:": "👩🏿‍❤️‍👨🏼", + ":couple_with_heart_mw_tone5-3:": "👩🏿‍❤️‍👨🏽", + ":couple_with_heart_mw_tone5-4:": "👩🏿‍❤️‍👨🏾", + ":couple_with_heart_wm:": "👩‍❤️‍👨", + ":couple_with_heart_wm_tone1:": "👩🏻‍❤️‍👨🏻", + ":couple_with_heart_wm_tone1-2:": "👩🏻‍❤️‍👨🏼", + ":couple_with_heart_wm_tone1-3:": "👩🏻‍❤️‍👨🏽", + ":couple_with_heart_wm_tone1-4:": "👩🏻‍❤️‍👨🏾", + ":couple_with_heart_wm_tone1-5:": "👩🏻‍❤️‍👨🏿", + ":couple_with_heart_wm_tone2:": "👩🏼‍❤️‍👨🏼", + ":couple_with_heart_wm_tone2-1:": "👩🏼‍❤️‍👨🏻", + ":couple_with_heart_wm_tone2-3:": "👩🏼‍❤️‍👨🏽", + ":couple_with_heart_wm_tone2-4:": "👩🏼‍❤️‍👨🏾", + ":couple_with_heart_wm_tone2-5:": "👩🏼‍❤️‍👨🏿", + ":couple_with_heart_wm_tone3:": "👩🏽‍❤️‍👨🏽", + ":couple_with_heart_wm_tone3-1:": "👩🏽‍❤️‍👨🏻", + ":couple_with_heart_wm_tone3-2:": "👩🏽‍❤️‍👨🏼", + ":couple_with_heart_wm_tone3-4:": "👩🏽‍❤️‍👨🏾", + ":couple_with_heart_wm_tone3-5:": "👩🏽‍❤️‍👨🏿", + ":couple_with_heart_wm_tone4:": "👩🏾‍❤️‍👨🏾", + ":couple_with_heart_wm_tone4-1:": "👩🏾‍❤️‍👨🏻", + ":couple_with_heart_wm_tone4-2:": "👩🏾‍❤️‍👨🏼", + ":couple_with_heart_wm_tone4-3:": "👩🏾‍❤️‍👨🏽", + ":couple_with_heart_wm_tone4-5:": "👩🏾‍❤️‍👨🏿", + ":couple_with_heart_wm_tone5:": "👩🏿‍❤️‍👨🏿", + ":couple_with_heart_wm_tone5-1:": "👩🏿‍❤️‍👨🏻", + ":couple_with_heart_wm_tone5-2:": "👩🏿‍❤️‍👨🏼", + ":couple_with_heart_wm_tone5-3:": "👩🏿‍❤️‍👨🏽", + ":couple_with_heart_wm_tone5-4:": "👩🏿‍❤️‍👨🏾", + ":couple_with_heart_ww_tone1:": "👩🏻‍❤️‍👩🏻", + ":couple_with_heart_ww_tone1-2:": "👩🏻‍❤️‍👩🏼", + ":couple_with_heart_ww_tone1-3:": "👩🏻‍❤️‍👩🏽", + ":couple_with_heart_ww_tone1-4:": "👩🏻‍❤️‍👩🏾", + ":couple_with_heart_ww_tone1-5:": "👩🏻‍❤️‍👩🏿", + ":couple_with_heart_ww_tone2:": "👩🏼‍❤️‍👩🏼", + ":couple_with_heart_ww_tone2-1:": "👩🏼‍❤️‍👩🏻", + ":couple_with_heart_ww_tone2-3:": "👩🏼‍❤️‍👩🏽", + ":couple_with_heart_ww_tone2-4:": "👩🏼‍❤️‍👩🏾", + ":couple_with_heart_ww_tone2-5:": "👩🏼‍❤️‍👩🏿", + ":couple_with_heart_ww_tone3:": "👩🏽‍❤️‍👩🏽", + ":couple_with_heart_ww_tone3-1:": "👩🏽‍❤️‍👩🏻", + ":couple_with_heart_ww_tone3-2:": "👩🏽‍❤️‍👩🏼", + ":couple_with_heart_ww_tone3-4:": "👩🏽‍❤️‍👩🏾", + ":couple_with_heart_ww_tone3-5:": "👩🏽‍❤️‍👩🏿", + ":couple_with_heart_ww_tone4:": "👩🏾‍❤️‍👩🏾", + ":couple_with_heart_ww_tone4-1:": "👩🏾‍❤️‍👩🏻", + ":couple_with_heart_ww_tone4-2:": "👩🏾‍❤️‍👩🏼", + ":couple_with_heart_ww_tone4-3:": "👩🏾‍❤️‍👩🏽", + ":couple_with_heart_ww_tone4-5:": "👩🏾‍❤️‍👩🏿", + ":couple_with_heart_ww_tone5:": "👩🏿‍❤️‍👩🏿", + ":couple_with_heart_ww_tone5-1:": "👩🏿‍❤️‍👩🏻", + ":couple_with_heart_ww_tone5-2:": "👩🏿‍❤️‍👩🏼", + ":couple_with_heart_ww_tone5-3:": "👩🏿‍❤️‍👩🏽", + ":couple_with_heart_ww_tone5-4:": "👩🏿‍❤️‍👩🏾", + ":cowboy_face:": "🤠", + ":croatia:": "🇭🇷", + ":cross_mark_button:": "❎", + ":cuba:": "🇨🇺", + ":curacao:": "🇨🇼", + ":curly_hair:": "🦱", + ":curly_haired_tone1:": "🧑🏻‍🦱", + ":curly_haired_tone2:": "🧑🏼‍🦱", + ":curly_haired_tone3:": "🧑🏽‍🦱", + ":curly_haired_tone4:": "🧑🏾‍🦱", + ":curly_haired_tone5:": "🧑🏿‍🦱", + ":cyprus:": "🇨🇾", + ":czech_republic:": "🇨🇿", + ":czechia:": "🇨🇿", + ":delivery_truck:": "🚚", + ":denmark:": "🇩🇰", + ":derelict_house:": "🏚️", + ":diamond_with_a_dot:": "💠", + ":diego_garcia:": "🇩🇬", + ":dim_button:": "🔅", + ":disappointed_face:": "😞", + ":disco:": "🪩", + ":disco_ball:": "🪩", + ":disguised:": "🥸", + ":divide:": "➗", + ":division:": "➗", + ":dizzy_eyes:": "😵‍💫", + ":djibouti:": "🇩🇯", + ":dominica:": "🇩🇲", + ":dominican_republic:": "🇩🇴", + ":double_curly_loop:": "➿", + ":double_exclamation:": "‼️", + ":double_helix:": "🧬", + ":down:": "🔽", + ":downcast_face:": "😓", + ":drooling:": "🤤", + ":earth_europe:": "🌍", + ":ecuador:": "🇪🇨", + ":egypt:": "🇪🇬", + ":el_salvador:": "🇸🇻", + ":equatorial_guinea:": "🇬🇶", + ":eritrea:": "🇪🇷", + ":estonia:": "🇪🇪", + ":eswatini:": "🇸🇿", + ":ethiopia:": "🇪🇹", + ":european_union:": "🇪🇺", + ":exclamation_question:": "⁉️", + ":exhale:": "😮‍💨", + ":exhaling:": "😮‍💨", + ":expressionless_face:": "😑", + ":face_with_open_eyes_hand_over_mouth:": "🫢", + ":face_with_open_mouth:": "😮", + ":face_with_symbols_on_mouth:": "🤬", + ":face_with_tongue:": "😛", + ":falkland_islands:": "🇫🇰", + ":family_aa:": "🧑‍🧒", + ":family_aac:": "🧑‍🧑‍🧒", + ":family_aacc:": "🧑‍🧑‍🧒‍🧒", + ":family_ac:": "🧑‍🧒", + ":family_acc:": "🧑‍🧒‍🧒", + ":family_mb:": "👨‍👦", + ":family_mbb:": "👨‍👦‍👦", + ":family_mg:": "👨‍👧", + ":family_mgb:": "👨‍👧‍👦", + ":family_mgg:": "👨‍👧‍👧", + ":family_mwb:": "👨‍👩‍👦", + ":family_wb:": "👩‍👦", + ":family_wbb:": "👩‍👦‍👦", + ":family_wg:": "👩‍👧", + ":family_wgb:": "👩‍👧‍👦", + ":family_wgg:": "👩‍👧‍👧", + ":faroe_islands:": "🇫🇴", + ":fast_down:": "⏬", + ":fast_reverse:": "⏪", + ":fast_up:": "⏫", + ":female:": "♀️", + ":fiji:": "🇫🇯", + ":finland:": "🇫🇮", + ":flag_gbeng:": "🏴󠁧󠁢󠁥󠁮󠁧󠁿", + ":flag_gbsct:": "🏴󠁧󠁢󠁳󠁣󠁴󠁿", + ":flag_gbwls:": "🏴󠁧󠁢󠁷󠁬󠁳󠁿", + ":flag_un:": "🇺🇳", + ":folded_hands_tone1:": "🙏🏻", + ":folded_hands_tone2:": "🙏🏼", + ":folded_hands_tone3:": "🙏🏽", + ":folded_hands_tone4:": "🙏🏾", + ":folded_hands_tone5:": "🙏🏿", + ":folding_fan:": "🪭", + ":framed_picture:": "🖼️", + ":france:": "🇫🇷", + ":french_guiana:": "🇬🇫", + ":french_polynesia:": "🇵🇫", + ":french_southern_territories:": "🇹🇫", + ":fried_egg:": "🍳", + ":frog_face:": "🐸", + ":gabon:": "🇬🇦", + ":gambia:": "🇬🇲", + ":gasp:": "🫢", + ":georgia:": "🇬🇪", + ":germany:": "🇩🇪", + ":ghana:": "🇬🇭", + ":gibraltar:": "🇬🇮", + ":ginger:": "🫚", + ":golfer_tone1:": "🏌🏻", + ":golfer_tone2:": "🏌🏼", + ":golfer_tone3:": "🏌🏽", + ":golfer_tone4:": "🏌🏾", + ":golfer_tone5:": "🏌🏿", + ":golfing:": "🏌️", + ":golfing_tone1:": "🏌🏻", + ":golfing_tone2:": "🏌🏼", + ":golfing_tone3:": "🏌🏽", + ":golfing_tone4:": "🏌🏾", + ":golfing_tone5:": "🏌🏿", + ":graduation_cap:": "🎓", + ":gray_heart:": "🩶", + ":greece:": "🇬🇷", + ":greenland:": "🇬🇱", + ":grenada:": "🇬🇩", + ":grimacing_face:": "😬", + ":grinning_cat_with_closed_eyes:": "😸", + ":grinning_face_with_big_eyes:": "😃", + ":grinning_face_with_closed_eyes:": "😄", + ":grinning_face_with_sweat:": "😅", + ":guadeloupe:": "🇬🇵", + ":guam:": "🇬🇺", + ":guatemala:": "🇬🇹", + ":guernsey:": "🇬🇬", + ":guinea:": "🇬🇳", + ":guinea_bissau:": "🇬🇼", + ":guyana:": "🇬🇾", + ":haiti:": "🇭🇹", + ":halo:": "😇", + ":hamster_face:": "🐹", + ":hand_over_mouth:": "🤭", + ":handicapped:": "♿", + ":heard_mcdonald_islands:": "🇭🇲", + ":hearing_aid:": "🦻", + ":hearing_aid_tone1:": "🦻🏻", + ":hearing_aid_tone2:": "🦻🏼", + ":hearing_aid_tone3:": "🦻🏽", + ":hearing_aid_tone4:": "🦻🏾", + ":hearing_aid_tone5:": "🦻🏿", + ":heart_with_arrow:": "💘", + ":heart_with_ribbon:": "💝", + ":high_five:": "✋", + ":high_five_tone1:": "✋🏻", + ":high_five_tone2:": "✋🏼", + ":high_five_tone3:": "✋🏽", + ":high_five_tone4:": "✋🏾", + ":high_five_tone5:": "✋🏿", + ":high_volume:": "🔊", + ":hippo:": "🦛", + ":hollow_red_circle:": "⭕", + ":honduras:": "🇭🇳", + ":hong_kong:": "🇭🇰", + ":hooray:": "🥳", + ":hot:": "🥵", + ":hug:": "🤗", + ":hungary:": "🇭🇺", + ":ice:": "🧊", + ":iceland:": "🇮🇸", + ":id_card:": "🪪", + ":in_clouds:": "😶‍🌫️", + ":india:": "🇮🇳", + ":info:": "ℹ️", + ":iran:": "🇮🇷", + ":iraq:": "🇮🇶", + ":ireland:": "🇮🇪", + ":isle_of_man:": "🇮🇲", + ":israel:": "🇮🇱", + ":italy:": "🇮🇹", + ":ja_acceptable:": "🉑", + ":ja_application:": "🈸", + ":ja_bargain:": "🉐", + ":ja_congratulations:": "㊗️", + ":ja_discount:": "🈹", + ":ja_free_of_charge:": "🈚", + ":ja_here:": "🈁", + ":ja_monthly_amount:": "🈷️", + ":ja_no_vacancy:": "🈵", + ":ja_not_free_of_carge:": "🈶", + ":ja_open_for_business:": "🈺", + ":ja_passing_grade:": "🈴", + ":ja_prohibited:": "🈲", + ":ja_reserved:": "🈯", + ":ja_secret:": "㊙️", + ":ja_service_charge:": "🈂️", + ":ja_vacancy:": "🈳", + ":jamaica:": "🇯🇲", + ":japan_map:": "🗾", + ":jersey:": "🇯🇪", + ":jolly_roger:": "🏴‍☠️", + ":jordan:": "🇯🇴", + ":juice_box:": "🧃", + ":kazakhstan:": "🇰🇿", + ":kenya:": "🇰🇪", + ":kiribati:": "🇰🇮", + ":kiss_mw:": "👩‍❤️‍💋‍👨", + ":kiss_mw_tone1:": "👩🏻‍❤️‍💋‍👨🏻", + ":kiss_mw_tone1-2:": "👩🏻‍❤️‍💋‍👨🏼", + ":kiss_mw_tone1-3:": "👩🏻‍❤️‍💋‍👨🏽", + ":kiss_mw_tone1-4:": "👩🏻‍❤️‍💋‍👨🏾", + ":kiss_mw_tone1-5:": "👩🏻‍❤️‍💋‍👨🏿", + ":kiss_mw_tone2:": "👩🏼‍❤️‍💋‍👨🏼", + ":kiss_mw_tone2-1:": "👩🏼‍❤️‍💋‍👨🏻", + ":kiss_mw_tone2-3:": "👩🏼‍❤️‍💋‍👨🏽", + ":kiss_mw_tone2-4:": "👩🏼‍❤️‍💋‍👨🏾", + ":kiss_mw_tone2-5:": "👩🏼‍❤️‍💋‍👨🏿", + ":kiss_mw_tone3:": "👩🏽‍❤️‍💋‍👨🏽", + ":kiss_mw_tone3-1:": "👩🏽‍❤️‍💋‍👨🏻", + ":kiss_mw_tone3-2:": "👩🏽‍❤️‍💋‍👨🏼", + ":kiss_mw_tone3-4:": "👩🏽‍❤️‍💋‍👨🏾", + ":kiss_mw_tone3-5:": "👩🏽‍❤️‍💋‍👨🏿", + ":kiss_mw_tone4:": "👩🏾‍❤️‍💋‍👨🏾", + ":kiss_mw_tone4-1:": "👩🏾‍❤️‍💋‍👨🏻", + ":kiss_mw_tone4-2:": "👩🏾‍❤️‍💋‍👨🏼", + ":kiss_mw_tone4-3:": "👩🏾‍❤️‍💋‍👨🏽", + ":kiss_mw_tone4-5:": "👩🏾‍❤️‍💋‍👨🏿", + ":kiss_mw_tone5:": "👩🏿‍❤️‍💋‍👨🏿", + ":kiss_mw_tone5-1:": "👩🏿‍❤️‍💋‍👨🏻", + ":kiss_mw_tone5-2:": "👩🏿‍❤️‍💋‍👨🏼", + ":kiss_mw_tone5-3:": "👩🏿‍❤️‍💋‍👨🏽", + ":kiss_mw_tone5-4:": "👩🏿‍❤️‍💋‍👨🏾", + ":kiss_wm:": "👩‍❤️‍💋‍👨", + ":kiss_wm_tone1:": "👩🏻‍❤️‍💋‍👨🏻", + ":kiss_wm_tone1-2:": "👩🏻‍❤️‍💋‍👨🏼", + ":kiss_wm_tone1-3:": "👩🏻‍❤️‍💋‍👨🏽", + ":kiss_wm_tone1-4:": "👩🏻‍❤️‍💋‍👨🏾", + ":kiss_wm_tone1-5:": "👩🏻‍❤️‍💋‍👨🏿", + ":kiss_wm_tone2:": "👩🏼‍❤️‍💋‍👨🏼", + ":kiss_wm_tone2-1:": "👩🏼‍❤️‍💋‍👨🏻", + ":kiss_wm_tone2-3:": "👩🏼‍❤️‍💋‍👨🏽", + ":kiss_wm_tone2-4:": "👩🏼‍❤️‍💋‍👨🏾", + ":kiss_wm_tone2-5:": "👩🏼‍❤️‍💋‍👨🏿", + ":kiss_wm_tone3:": "👩🏽‍❤️‍💋‍👨🏽", + ":kiss_wm_tone3-1:": "👩🏽‍❤️‍💋‍👨🏻", + ":kiss_wm_tone3-2:": "👩🏽‍❤️‍💋‍👨🏼", + ":kiss_wm_tone3-4:": "👩🏽‍❤️‍💋‍👨🏾", + ":kiss_wm_tone3-5:": "👩🏽‍❤️‍💋‍👨🏿", + ":kiss_wm_tone4:": "👩🏾‍❤️‍💋‍👨🏾", + ":kiss_wm_tone4-1:": "👩🏾‍❤️‍💋‍👨🏻", + ":kiss_wm_tone4-2:": "👩🏾‍❤️‍💋‍👨🏼", + ":kiss_wm_tone4-3:": "👩🏾‍❤️‍💋‍👨🏽", + ":kiss_wm_tone4-5:": "👩🏾‍❤️‍💋‍👨🏿", + ":kiss_wm_tone5:": "👩🏿‍❤️‍💋‍👨🏿", + ":kiss_wm_tone5-1:": "👩🏿‍❤️‍💋‍👨🏻", + ":kiss_wm_tone5-2:": "👩🏿‍❤️‍💋‍👨🏼", + ":kiss_wm_tone5-3:": "👩🏿‍❤️‍💋‍👨🏽", + ":kiss_wm_tone5-4:": "👩🏿‍❤️‍💋‍👨🏾", + ":kissing_face_with_closed_eyes:": "😚", + ":kissing_face_with_smiling_eyes:": "😙", + ":kneeling:": "🧎", + ":kneeling_tone1:": "🧎🏻", + ":kneeling_tone2:": "🧎🏼", + ":kneeling_tone3:": "🧎🏽", + ":kneeling_tone4:": "🧎🏾", + ":kneeling_tone5:": "🧎🏿", + ":knocked_out:": "😵", + ":koala_face:": "🐨", + ":kosovo:": "🇽🇰", + ":kuwait:": "🇰🇼", + ":kyrgyzstan:": "🇰🇬", + ":laos:": "🇱🇦", + ":laptop:": "💻", + ":latvia:": "🇱🇻", + ":lebanon:": "🇱🇧", + ":lesotho:": "🇱🇸", + ":levitating:": "🕴️", + ":levitating_tone1:": "🕴🏻", + ":levitating_tone2:": "🕴🏼", + ":levitating_tone3:": "🕴🏽", + ":levitating_tone4:": "🕴🏾", + ":levitating_tone5:": "🕴🏿", + ":liberia:": "🇱🇷", + ":libya:": "🇱🇾", + ":liechtenstein:": "🇱🇮", + ":lifebuoy:": "🛟", + ":lightning:": "🌩️", + ":lithuania:": "🇱🇹", + ":litter_bin:": "🚮", + ":lmao:": "😂", + ":locked_with_key:": "🔐", + ":locked_with_pen:": "🔏", + ":lol:": "😆", + ":loudly_crying_face:": "😭", + ":low_volume:": "🔈", + ":luxembourg:": "🇱🇺", + ":lying:": "🤥", + ":macao:": "🇲🇴", + ":macau:": "🇲🇴", + ":macedonia:": "🇲🇰", + ":madagascar:": "🇲🇬", + ":malawi:": "🇲🇼", + ":malaysia:": "🇲🇾", + ":maldives:": "🇲🇻", + ":male:": "♂️", + ":mali:": "🇲🇱", + ":malta:": "🇲🇹", + ":man_bearded:": "🧔‍♂️", + ":man_bearded_tone1:": "🧔🏻‍♂️", + ":man_bearded_tone2:": "🧔🏼‍♂️", + ":man_bearded_tone3:": "🧔🏽‍♂️", + ":man_bearded_tone4:": "🧔🏾‍♂️", + ":man_bearded_tone5:": "🧔🏿‍♂️", + ":man_blond_haired:": "👱‍♂️", + ":man_blond_haired_tone1:": "👱🏻‍♂️", + ":man_blond_haired_tone2:": "👱🏼‍♂️", + ":man_blond_haired_tone3:": "👱🏽‍♂️", + ":man_blond_haired_tone4:": "👱🏾‍♂️", + ":man_blond_haired_tone5:": "👱🏿‍♂️", + ":man_getting_massage:": "💆‍♂️", + ":man_getting_massage_tone1:": "💆🏻‍♂️", + ":man_getting_massage_tone2:": "💆🏼‍♂️", + ":man_getting_massage_tone3:": "💆🏽‍♂️", + ":man_getting_massage_tone4:": "💆🏾‍♂️", + ":man_getting_massage_tone5:": "💆🏿‍♂️", + ":man_in_manual_wheelchair_right:": "👨‍🦽‍➡️", + ":man_in_manual_wheelchair_right_tone1:": "👨🏻‍🦽‍➡️", + ":man_in_manual_wheelchair_right_tone2:": "👨🏼‍🦽‍➡️", + ":man_in_manual_wheelchair_right_tone3:": "👨🏽‍🦽‍➡️", + ":man_in_manual_wheelchair_right_tone4:": "👨🏾‍🦽‍➡️", + ":man_in_manual_wheelchair_right_tone5:": "👨🏿‍🦽‍➡️", + ":man_in_motorized_wheelchair_right:": "👨‍🦼‍➡️", + ":man_in_motorized_wheelchair_right_tone1:": "👨🏻‍🦼‍➡️", + ":man_in_motorized_wheelchair_right_tone2:": "👨🏼‍🦼‍➡️", + ":man_in_motorized_wheelchair_right_tone3:": "👨🏽‍🦼‍➡️", + ":man_in_motorized_wheelchair_right_tone4:": "👨🏾‍🦼‍➡️", + ":man_in_motorized_wheelchair_right_tone5:": "👨🏿‍🦼‍➡️", + ":man_kneeling_right:": "🧎‍♂️‍➡️", + ":man_kneeling_right_tone1:": "🧎🏻‍♂️‍➡️", + ":man_kneeling_right_tone2:": "🧎🏼‍♂️‍➡️", + ":man_kneeling_right_tone3:": "🧎🏽‍♂️‍➡️", + ":man_kneeling_right_tone4:": "🧎🏾‍♂️‍➡️", + ":man_kneeling_right_tone5:": "🧎🏿‍♂️‍➡️", + ":man_running_right:": "🏃‍♂️‍➡️", + ":man_running_right_tone1:": "🏃🏻‍♂️‍➡️", + ":man_running_right_tone2:": "🏃🏼‍♂️‍➡️", + ":man_running_right_tone3:": "🏃🏽‍♂️‍➡️", + ":man_running_right_tone4:": "🏃🏾‍♂️‍➡️", + ":man_running_right_tone5:": "🏃🏿‍♂️‍➡️", + ":man_walking_right:": "🚶‍♂️‍➡️", + ":man_walking_right_tone1:": "🚶🏻‍♂️‍➡️", + ":man_walking_right_tone2:": "🚶🏼‍♂️‍➡️", + ":man_walking_right_tone3:": "🚶🏽‍♂️‍➡️", + ":man_walking_right_tone4:": "🚶🏾‍♂️‍➡️", + ":man_walking_right_tone5:": "🚶🏿‍♂️‍➡️", + ":man_with_white_cane:": "👨‍🦯", + ":man_with_white_cane_right:": "👨‍🦯‍➡️", + ":man_with_white_cane_right_tone1:": "👨🏻‍🦯‍➡️", + ":man_with_white_cane_right_tone2:": "👨🏼‍🦯‍➡️", + ":man_with_white_cane_right_tone3:": "👨🏽‍🦯‍➡️", + ":man_with_white_cane_right_tone4:": "👨🏾‍🦯‍➡️", + ":man_with_white_cane_right_tone5:": "👨🏿‍🦯‍➡️", + ":man_with_white_cane_tone1:": "👨🏻‍🦯", + ":man_with_white_cane_tone2:": "👨🏼‍🦯", + ":man_with_white_cane_tone3:": "👨🏽‍🦯", + ":man_with_white_cane_tone4:": "👨🏾‍🦯", + ":man_with_white_cane_tone5:": "👨🏿‍🦯", + ":marshall_islands:": "🇲🇭", + ":martinique:": "🇲🇶", + ":mauritania:": "🇲🇷", + ":mauritius:": "🇲🇺", + ":mayotte:": "🇾🇹", + ":medical:": "⚕️", + ":medical_mask:": "😷", + ":medium_volumne:": "🔉", + ":melt:": "🫠", + ":mexico:": "🇲🇽", + ":micronesia:": "🇫🇲", + ":minus:": "➖", + ":mobile_phone_arrow:": "📲", + ":moldova:": "🇲🇩", + ":monaco:": "🇲🇨", + ":mongolia:": "🇲🇳", + ":montenegro:": "🇲🇪", + ":montserrat:": "🇲🇸", + ":moon_ceremony:": "🎑", + ":morocco:": "🇲🇦", + ":mountain_biking:": "🚵", + ":mountain_biking_tone1:": "🚵🏻", + ":mountain_biking_tone2:": "🚵🏼", + ":mountain_biking_tone3:": "🚵🏽", + ":mountain_biking_tone4:": "🚵🏾", + ":mountain_biking_tone5:": "🚵🏿", + ":mozambique:": "🇲🇿", + ":multiplication:": "✖️", + ":multiply:": "✖️", + ":myanmar:": "🇲🇲", + ":nail_polish_tone1:": "💅🏻", + ":nail_polish_tone2:": "💅🏼", + ":nail_polish_tone3:": "💅🏽", + ":nail_polish_tone4:": "💅🏾", + ":nail_polish_tone5:": "💅🏿", + ":namibia:": "🇳🇦", + ":nauru:": "🇳🇷", + ":nauseated:": "🤢", + ":nepal:": "🇳🇵", + ":nest:": "🪹", + ":netherlands:": "🇳🇱", + ":neutral:": "😐", + ":new_caledonia:": "🇳🇨", + ":new_zealand:": "🇳🇿", + ":nicaragua:": "🇳🇮", + ":niger:": "🇳🇪", + ":niue:": "🇳🇺", + ":no_hair:": "🦲", + ":no_one_under_18:": "🔞", + ":no_sound:": "🔇", + ":no_tone1:": "👎🏻", + ":no_tone2:": "👎🏼", + ":no_tone3:": "👎🏽", + ":no_tone4:": "👎🏾", + ":no_tone5:": "👎🏿", + ":norfolk_island:": "🇳🇫", + ":north_korea:": "🇰🇵", + ":northern_mariana_islands:": "🇲🇵", + ":norway:": "🇳🇴", + ":nose_steam:": "😤", + ":number_sign:": "#️⃣", + ":o_blood:": "🅾️", + ":oman:": "🇴🇲", + ":orange:": "🍊", + ":pakistan:": "🇵🇰", + ":palau:": "🇵🇼", + ":palestinian_territories:": "🇵🇸", + ":palette:": "🎨", + ":palm_down:": "🫳", + ":palm_down_tone1:": "🫳🏻", + ":palm_down_tone2:": "🫳🏼", + ":palm_down_tone3:": "🫳🏽", + ":palm_down_tone4:": "🫳🏾", + ":palm_down_tone5:": "🫳🏿", + ":palm_up:": "🫴", + ":palm_up_tone1:": "🫴🏻", + ":palm_up_tone2:": "🫴🏼", + ":palm_up_tone3:": "🫴🏽", + ":palm_up_tone4:": "🫴🏾", + ":palm_up_tone5:": "🫴🏿", + ":panama:": "🇵🇦", + ":papua_new_guinea:": "🇵🇬", + ":paraguay:": "🇵🇾", + ":party:": "🎉", + ":partying:": "🥳", + ":pause:": "⏸️", + ":pea:": "🫛", + ":peek:": "🫣", + ":penguin_face:": "🐧", + ":persevering_face:": "😣", + ":person_bearded:": "🧔", + ":person_bearded_tone1:": "🧔🏻", + ":person_bearded_tone2:": "🧔🏼", + ":person_bearded_tone3:": "🧔🏽", + ":person_bearded_tone4:": "🧔🏾", + ":person_bearded_tone5:": "🧔🏿", + ":person_cartwheel:": "🤸", + ":person_cartwheel_tone1:": "🤸🏻", + ":person_cartwheel_tone2:": "🤸🏼", + ":person_cartwheel_tone3:": "🤸🏽", + ":person_cartwheel_tone4:": "🤸🏾", + ":person_cartwheel_tone5:": "🤸🏿", + ":person_in_manual_wheelchair_right:": "🧑‍🦽‍➡️", + ":person_in_manual_wheelchair_right_tone1:": "🧑🏻‍🦽‍➡️", + ":person_in_manual_wheelchair_right_tone2:": "🧑🏼‍🦽‍➡️", + ":person_in_manual_wheelchair_right_tone3:": "🧑🏽‍🦽‍➡️", + ":person_in_manual_wheelchair_right_tone4:": "🧑🏾‍🦽‍➡️", + ":person_in_manual_wheelchair_right_tone5:": "🧑🏿‍🦽‍➡️", + ":person_in_motorized_wheelchair_right:": "🧑‍🦼‍➡️", + ":person_in_motorized_wheelchair_right_tone1:": "🧑🏻‍🦼‍➡️", + ":person_in_motorized_wheelchair_right_tone2:": "🧑🏼‍🦼‍➡️", + ":person_in_motorized_wheelchair_right_tone3:": "🧑🏽‍🦼‍➡️", + ":person_in_motorized_wheelchair_right_tone4:": "🧑🏾‍🦼‍➡️", + ":person_in_motorized_wheelchair_right_tone5:": "🧑🏿‍🦼‍➡️", + ":person_in_suit_levitating:": "🕴️", + ":person_in_suit_levitating_tone1:": "🕴🏻", + ":person_in_suit_levitating_tone2:": "🕴🏼", + ":person_in_suit_levitating_tone3:": "🕴🏽", + ":person_in_suit_levitating_tone4:": "🕴🏾", + ":person_in_suit_levitating_tone5:": "🕴🏿", + ":person_kneeling_right:": "🧎‍➡️", + ":person_kneeling_right_tone1:": "🧎🏻‍➡️", + ":person_kneeling_right_tone2:": "🧎🏼‍➡️", + ":person_kneeling_right_tone3:": "🧎🏽‍➡️", + ":person_kneeling_right_tone4:": "🧎🏾‍➡️", + ":person_kneeling_right_tone5:": "🧎🏿‍➡️", + ":person_running_right:": "🏃‍➡️", + ":person_running_right_tone1:": "🏃🏻‍➡️", + ":person_running_right_tone2:": "🏃🏼‍➡️", + ":person_running_right_tone3:": "🏃🏽‍➡️", + ":person_running_right_tone4:": "🏃🏾‍➡️", + ":person_running_right_tone5:": "🏃🏿‍➡️", + ":person_skiing:": "⛷️", + ":person_snowboarding:": "🏂", + ":person_snowboarding_tone1:": "🏂🏻", + ":person_snowboarding_tone2:": "🏂🏼", + ":person_snowboarding_tone3:": "🏂🏽", + ":person_snowboarding_tone4:": "🏂🏾", + ":person_snowboarding_tone5:": "🏂🏿", + ":person_taking_bath:": "🛀", + ":person_taking_bath_tone1:": "🛀🏻", + ":person_taking_bath_tone2:": "🛀🏼", + ":person_taking_bath_tone3:": "🛀🏽", + ":person_taking_bath_tone4:": "🛀🏾", + ":person_taking_bath_tone5:": "🛀🏿", + ":person_walking_right:": "🚶‍➡️", + ":person_walking_right_tone1:": "🚶🏻‍➡️", + ":person_walking_right_tone2:": "🚶🏼‍➡️", + ":person_walking_right_tone3:": "🚶🏽‍➡️", + ":person_walking_right_tone4:": "🚶🏾‍➡️", + ":person_walking_right_tone5:": "🚶🏿‍➡️", + ":person_with_skullcap:": "👲", + ":person_with_skullcap_tone1:": "👲🏻", + ":person_with_skullcap_tone2:": "👲🏼", + ":person_with_skullcap_tone3:": "👲🏽", + ":person_with_skullcap_tone4:": "👲🏾", + ":person_with_skullcap_tone5:": "👲🏿", + ":person_with_white_cane:": "🧑‍🦯", + ":person_with_white_cane_right:": "🧑‍🦯‍➡️", + ":person_with_white_cane_right_tone1:": "🧑🏻‍🦯‍➡️", + ":person_with_white_cane_right_tone2:": "🧑🏼‍🦯‍➡️", + ":person_with_white_cane_right_tone3:": "🧑🏽‍🦯‍➡️", + ":person_with_white_cane_right_tone4:": "🧑🏾‍🦯‍➡️", + ":person_with_white_cane_right_tone5:": "🧑🏿‍🦯‍➡️", + ":person_with_white_cane_tone1:": "🧑🏻‍🦯", + ":person_with_white_cane_tone2:": "🧑🏼‍🦯", + ":person_with_white_cane_tone3:": "🧑🏽‍🦯", + ":person_with_white_cane_tone4:": "🧑🏾‍🦯", + ":person_with_white_cane_tone5:": "🧑🏿‍🦯", + ":peru:": "🇵🇪", + ":philippines:": "🇵🇭", + ":pinch:": "🤌", + ":pinch_tone1:": "🤌🏻", + ":pinch_tone2:": "🤌🏼", + ":pinch_tone3:": "🤌🏽", + ":pinch_tone4:": "🤌🏾", + ":pinch_tone5:": "🤌🏿", + ":pitcairn_islands:": "🇵🇳", + ":play:": "▶️", + ":pleading:": "🥺", + ":plus:": "➕", + ":point_forward:": "🫵", + ":point_forward_tone1:": "🫵🏻", + ":point_forward_tone2:": "🫵🏼", + ":point_forward_tone3:": "🫵🏽", + ":point_forward_tone4:": "🫵🏾", + ":point_forward_tone5:": "🫵🏿", + ":poland:": "🇵🇱", + ":polar_bear_face:": "🐻‍❄️", + ":portugal:": "🇵🇹", + ":pour:": "🫗", + ":pout:": "😡", + ":pouting:": "🙎", + ":pouting_tone1:": "🙎🏻", + ":pouting_tone2:": "🙎🏼", + ":pouting_tone3:": "🙎🏽", + ":pouting_tone4:": "🙎🏾", + ":pouting_tone5:": "🙎🏿", + ":puerto_rico:": "🇵🇷", + ":qatar:": "🇶🇦", + ":quiet_sound:": "🔈", + ":rainy:": "🌧️", + ":raised_eyebrow:": "🤨", + ":record:": "⏺️", + ":recycling_symbol:": "♻️", + ":red_hair:": "🦰", + ":red_haired_tone1:": "🧑🏻‍🦰", + ":red_haired_tone2:": "🧑🏼‍🦰", + ":red_haired_tone3:": "🧑🏽‍🦰", + ":red_haired_tone4:": "🧑🏾‍🦰", + ":red_haired_tone5:": "🧑🏿‍🦰", + ":red_o:": "⭕", + ":red_paper_lantern:": "🏮", + ":rescue_worker_helmet:": "⛑️", + ":reunion:": "🇷🇪", + ":reverse:": "◀️", + ":right_bicep:": "💪", + ":right_bicep_tone1:": "💪🏻", + ":right_bicep_tone2:": "💪🏼", + ":right_bicep_tone3:": "💪🏽", + ":right_bicep_tone4:": "💪🏾", + ":right_bicep_tone5:": "💪🏿", + ":rightwards_arrow_with_hook:": "↪️", + ":romania:": "🇷🇴", + ":royalty:": "🫅", + ":royalty_tone1:": "🫅🏻", + ":royalty_tone2:": "🫅🏼", + ":royalty_tone3:": "🫅🏽", + ":royalty_tone4:": "🫅🏾", + ":royalty_tone5:": "🫅🏿", + ":running:": "🏃", + ":running_tone1:": "🏃🏻", + ":running_tone2:": "🏃🏼", + ":running_tone3:": "🏃🏽", + ":running_tone4:": "🏃🏾", + ":running_tone5:": "🏃🏿", + ":russia:": "🇷🇺", + ":rwanda:": "🇷🇼", + ":sad_relieved_face:": "😥", + ":salute:": "🫡", + ":samoa:": "🇼🇸", + ":san_marino:": "🇸🇲", + ":sao_tome_principe:": "🇸🇹", + ":satellite_antenna:": "📡", + ":saturn:": "🪐", + ":saudi_arabia:": "🇸🇦", + ":savoring_food:": "😋", + ":screaming_in_fear:": "😱", + ":senegal:": "🇸🇳", + ":serbia:": "🇷🇸", + ":seychelles:": "🇸🇨", + ":shaking:": "🫨", + ":shuffle:": "🔀", + ":shush:": "🤫", + ":sierra_leone:": "🇸🇱", + ":singapore:": "🇸🇬", + ":sint_maarten:": "🇸🇽", + ":skiing:": "⛷️", + ":slide:": "🛝", + ":slovakia:": "🇸🇰", + ":slovenia:": "🇸🇮", + ":smiling_cat_with_heart_eyes:": "😻", + ":smiling_face_with_closed_eyes:": "😊", + ":smiling_face_with_heart_eyes:": "😍", + ":smiling_face_with_sunglasses:": "😎", + ":smirking:": "😏", + ":sneaker:": "👟", + ":sneezing:": "🤧", + ":snowboarding:": "🏂", + ":snowboarding_tone1:": "🏂🏻", + ":snowboarding_tone2:": "🏂🏼", + ":snowboarding_tone3:": "🏂🏽", + ":snowboarding_tone4:": "🏂🏾", + ":snowboarding_tone5:": "🏂🏿", + ":snowy:": "🌨️", + ":soft_serve:": "🍦", + ":solomon_islands:": "🇸🇧", + ":somalia:": "🇸🇴", + ":south_africa:": "🇿🇦", + ":south_georgia_south_sandwich_islands:": "🇬🇸", + ":south_korea:": "🇰🇷", + ":south_sudan:": "🇸🇸", + ":spain:": "🇪🇸", + ":spouting_whale:": "🐳", + ":squinting_face:": "😆", + ":sri_lanka:": "🇱🇰", + ":st_barthelemy:": "🇧🇱", + ":st_helena:": "🇸🇭", + ":st_kitts_nevis:": "🇰🇳", + ":st_lucia:": "🇱🇨", + ":st_martin:": "🇲🇫", + ":st_pierre_miquelon:": "🇵🇲", + ":st_vincent_grenadines:": "🇻🇨", + ":standing:": "🧍", + ":standing_tone1:": "🧍🏻", + ":standing_tone2:": "🧍🏼", + ":standing_tone3:": "🧍🏽", + ":standing_tone4:": "🧍🏾", + ":standing_tone5:": "🧍🏿", + ":stop:": "⏹️", + ":stormy:": "⛈️", + ":sudan:": "🇸🇩", + ":sun_and_rain:": "🌦️", + ":sun_behind_cloud:": "⛅", + ":sun_behind_large_cloud:": "🌥️", + ":sun_behind_rain_cloud:": "🌦️", + ":sun_behind_small_cloud:": "🌤️", + ":sunglasses_cool:": "😎", + ":surfing:": "🏄", + ":surfing_tone1:": "🏄🏻", + ":surfing_tone2:": "🏄🏼", + ":surfing_tone3:": "🏄🏽", + ":surfing_tone4:": "🏄🏾", + ":surfing_tone5:": "🏄🏿", + ":suriname:": "🇸🇷", + ":suv:": "🚙", + ":svalbard_jan_mayen:": "🇸🇯", + ":swaziland:": "🇸🇿", + ":sweden:": "🇸🇪", + ":swimming:": "🏊", + ":swimming_tone1:": "🏊🏻", + ":swimming_tone2:": "🏊🏼", + ":swimming_tone3:": "🏊🏽", + ":swimming_tone4:": "🏊🏾", + ":swimming_tone5:": "🏊🏿", + ":switzerland:": "🇨🇭", + ":syria:": "🇸🇾", + ":t-rex:": "🦖", + ":taiwan:": "🇹🇼", + ":tajikistan:": "🇹🇯", + ":tanzania:": "🇹🇿", + ":tears_of_joy:": "😂", + ":tears_of_joy_cat:": "😹", + ":ten:": "🔟", + ":thailand:": "🇹🇭", + ":timor_leste:": "🇹🇱", + ":tired:": "😫", + ":togo:": "🇹🇬", + ":toilet_paper:": "🧻", + ":tokelau:": "🇹🇰", + ":tone_dark:": "🏿", + ":tone_light:": "🏻", + ":tone_medium:": "🏽", + ":tone_medium_dark:": "🏾", + ":tone_medium_light:": "🏼", + ":tonga:": "🇹🇴", + ":too_cool:": "😎", + ":trashcan:": "🗑️", + ":trex:": "🦖", + ":triangular_flag:": "🚩", + ":trinidad_tobago:": "🇹🇹", + ":tristan_da_cunha:": "🇹🇦", + ":tunisia:": "🇹🇳", + ":turkey_tr:": "🇹🇷", + ":turks_caicos_islands:": "🇹🇨", + ":uganda:": "🇺🇬", + ":uk:": "🇬🇧", + ":ukraine:": "🇺🇦", + ":umbrella_with_rain:": "☔", + ":un:": "🇺🇳", + ":united_arab_emirates:": "🇦🇪", + ":united_kingdom:": "🇬🇧", + ":united_states:": "🇺🇸", + ":up2:": "🆙", + ":uruguay:": "🇺🇾", + ":us_outlying_islands:": "🇺🇲", + ":us_virgin_islands:": "🇻🇮", + ":usa:": "🇺🇸", + ":uzbekistan:": "🇺🇿", + ":vanuatu:": "🇻🇺", + ":vatican_city:": "🇻🇦", + ":venezuela:": "🇻🇪", + ":victory:": "✌️", + ":victory_tone1:": "✌🏻", + ":victory_tone2:": "✌🏼", + ":victory_tone3:": "✌🏽", + ":victory_tone4:": "✌🏾", + ":victory_tone5:": "✌🏿", + ":vietnam:": "🇻🇳", + ":vomiting:": "🤮", + ":wallis_futuna:": "🇼🇫", + ":watery_eyes:": "🥹", + ":waving_hand_tone1:": "👋🏻", + ":waving_hand_tone2:": "👋🏼", + ":waving_hand_tone3:": "👋🏽", + ":waving_hand_tone4:": "👋🏾", + ":waving_hand_tone5:": "👋🏿", + ":weight_lifting:": "🏋️", + ":weight_lifting_tone1:": "🏋🏻", + ":weight_lifting_tone2:": "🏋🏼", + ":weight_lifting_tone3:": "🏋🏽", + ":weight_lifting_tone4:": "🏋🏾", + ":weight_lifting_tone5:": "🏋🏿", + ":western_sahara:": "🇪🇭", + ":white_cane:": "🦯", + ":white_exclamation:": "❕", + ":white_hair:": "🦳", + ":white_haired_tone1:": "🧑🏻‍🦳", + ":white_haired_tone2:": "🧑🏼‍🦳", + ":white_haired_tone3:": "🧑🏽‍🦳", + ":white_haired_tone4:": "🧑🏾‍🦳", + ":white_haired_tone5:": "🧑🏿‍🦳", + ":white_question:": "❔", + ":wolf_face:": "🐺", + ":woman_bearded:": "🧔‍♀️", + ":woman_bearded_tone1:": "🧔🏻‍♀️", + ":woman_bearded_tone2:": "🧔🏼‍♀️", + ":woman_bearded_tone3:": "🧔🏽‍♀️", + ":woman_bearded_tone4:": "🧔🏾‍♀️", + ":woman_bearded_tone5:": "🧔🏿‍♀️", + ":woman_blond_haired:": "👱‍♀️", + ":woman_blond_haired_tone1:": "👱🏻‍♀️", + ":woman_blond_haired_tone2:": "👱🏼‍♀️", + ":woman_blond_haired_tone3:": "👱🏽‍♀️", + ":woman_blond_haired_tone4:": "👱🏾‍♀️", + ":woman_blond_haired_tone5:": "👱🏿‍♀️", + ":woman_dancing_tone1:": "💃🏻", + ":woman_dancing_tone2:": "💃🏼", + ":woman_dancing_tone3:": "💃🏽", + ":woman_dancing_tone4:": "💃🏾", + ":woman_dancing_tone5:": "💃🏿", + ":woman_getting_massage:": "💆‍♀️", + ":woman_getting_massage_tone1:": "💆🏻‍♀️", + ":woman_getting_massage_tone2:": "💆🏼‍♀️", + ":woman_getting_massage_tone3:": "💆🏽‍♀️", + ":woman_getting_massage_tone4:": "💆🏾‍♀️", + ":woman_getting_massage_tone5:": "💆🏿‍♀️", + ":woman_in_manual_wheelchair_right:": "👩‍🦽‍➡️", + ":woman_in_manual_wheelchair_right_tone1:": "👩🏻‍🦽‍➡️", + ":woman_in_manual_wheelchair_right_tone2:": "👩🏼‍🦽‍➡️", + ":woman_in_manual_wheelchair_right_tone3:": "👩🏽‍🦽‍➡️", + ":woman_in_manual_wheelchair_right_tone4:": "👩🏾‍🦽‍➡️", + ":woman_in_manual_wheelchair_right_tone5:": "👩🏿‍🦽‍➡️", + ":woman_in_motorized_wheelchair_right:": "👩‍🦼‍➡️", + ":woman_in_motorized_wheelchair_right_tone1:": "👩🏻‍🦼‍➡️", + ":woman_in_motorized_wheelchair_right_tone2:": "👩🏼‍🦼‍➡️", + ":woman_in_motorized_wheelchair_right_tone3:": "👩🏽‍🦼‍➡️", + ":woman_in_motorized_wheelchair_right_tone4:": "👩🏾‍🦼‍➡️", + ":woman_in_motorized_wheelchair_right_tone5:": "👩🏿‍🦼‍➡️", + ":woman_kneeling_right:": "🧎‍♀️‍➡️", + ":woman_kneeling_right_tone1:": "🧎🏻‍♀️‍➡️", + ":woman_kneeling_right_tone2:": "🧎🏼‍♀️‍➡️", + ":woman_kneeling_right_tone3:": "🧎🏽‍♀️‍➡️", + ":woman_kneeling_right_tone4:": "🧎🏾‍♀️‍➡️", + ":woman_kneeling_right_tone5:": "🧎🏿‍♀️‍➡️", + ":woman_running_right:": "🏃‍♀️‍➡️", + ":woman_running_right_tone1:": "🏃🏻‍♀️‍➡️", + ":woman_running_right_tone2:": "🏃🏼‍♀️‍➡️", + ":woman_running_right_tone3:": "🏃🏽‍♀️‍➡️", + ":woman_running_right_tone4:": "🏃🏾‍♀️‍➡️", + ":woman_running_right_tone5:": "🏃🏿‍♀️‍➡️", + ":woman_walking_right:": "🚶‍♀️‍➡️", + ":woman_walking_right_tone1:": "🚶🏻‍♀️‍➡️", + ":woman_walking_right_tone2:": "🚶🏼‍♀️‍➡️", + ":woman_walking_right_tone3:": "🚶🏽‍♀️‍➡️", + ":woman_walking_right_tone4:": "🚶🏾‍♀️‍➡️", + ":woman_walking_right_tone5:": "🚶🏿‍♀️‍➡️", + ":woman_with_white_cane:": "👩‍🦯", + ":woman_with_white_cane_right:": "👩‍🦯‍➡️", + ":woman_with_white_cane_right_tone1:": "👩🏻‍🦯‍➡️", + ":woman_with_white_cane_right_tone2:": "👩🏼‍🦯‍➡️", + ":woman_with_white_cane_right_tone3:": "👩🏽‍🦯‍➡️", + ":woman_with_white_cane_right_tone4:": "👩🏾‍🦯‍➡️", + ":woman_with_white_cane_right_tone5:": "👩🏿‍🦯‍➡️", + ":woman_with_white_cane_tone1:": "👩🏻‍🦯", + ":woman_with_white_cane_tone2:": "👩🏼‍🦯", + ":woman_with_white_cane_tone3:": "👩🏽‍🦯", + ":woman_with_white_cane_tone4:": "👩🏾‍🦯", + ":woman_with_white_cane_tone5:": "👩🏿‍🦯", + ":woozy:": "🥴", + ":wry_smile_cat:": "😼", + ":wtf:": "🤔", + ":x-ray:": "🩻", + ":xray:": "🩻", + ":yawn:": "🥱", + ":yawning:": "🥱", + ":yemen:": "🇾🇪", + ":yes:": "👍", + ":yes_tone1:": "👍🏻", + ":yes_tone2:": "👍🏼", + ":yes_tone3:": "👍🏽", + ":yes_tone4:": "👍🏾", + ":yes_tone5:": "👍🏿", + ":zambia:": "🇿🇲", + ":zany:": "🤪", + ":zimbabwe:": "🇿🇼" +} diff --git a/app/lib/constants/emojis/legacyShortnamesMap.ts b/app/lib/constants/emojis/legacyShortnamesMap.ts new file mode 100644 index 00000000000..333ea6f7e5d --- /dev/null +++ b/app/lib/constants/emojis/legacyShortnamesMap.ts @@ -0,0 +1,6 @@ +import legacyShortnames from './legacyShortnames.json'; + +// Must NOT share a basename with legacyShortnames.json: Metro resolves .json before .ts, +// so an extensionless import of './legacyShortnames' loads the JSON and this named export +// comes back undefined at runtime (jest resolves .ts first and won't catch it). +export const legacyShortnameToUnicodeMap: { [key: string]: string } = legacyShortnames; diff --git a/app/lib/hooks/useShortnameToUnicode/emojis.ts b/app/lib/hooks/useShortnameToUnicode/emojis.ts deleted file mode 100644 index 4d899d04338..00000000000 --- a/app/lib/hooks/useShortnameToUnicode/emojis.ts +++ /dev/null @@ -1,4636 +0,0 @@ -/* eslint-disable quote-props */ -/* eslint-disable object-curly-newline */ -/* eslint-disable object-curly-spacing */ -/* eslint-disable comma-spacing */ -/* eslint-disable key-spacing */ -const emojis: { [key: string]: string } = { - ':england:': '🏴󠁧󠁢󠁥󠁮󠁧󠁿', - ':scotland:': '🏴󠁧󠁢󠁳󠁣󠁴󠁿', - ':wales:': '🏴󠁧󠁢󠁷󠁬󠁳󠁿', - ':men_holding_hands_medium_light_skin_tone_light_skin_tone:': '👨🏼‍🤝‍👨🏻', - ':men_holding_hands_tone2_tone1:': '👨🏼‍🤝‍👨🏻', - ':men_holding_hands_medium_skin_tone_light_skin_tone:': '👨🏽‍🤝‍👨🏻', - ':men_holding_hands_tone3_tone1:': '👨🏽‍🤝‍👨🏻', - ':men_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👨🏽‍🤝‍👨🏼', - ':men_holding_hands_tone3_tone2:': '👨🏽‍🤝‍👨🏼', - ':men_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👨🏾‍🤝‍👨🏻', - ':men_holding_hands_tone4_tone1:': '👨🏾‍🤝‍👨🏻', - ':men_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👨🏾‍🤝‍👨🏼', - ':men_holding_hands_tone4_tone2:': '👨🏾‍🤝‍👨🏼', - ':men_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👨🏾‍🤝‍👨🏽', - ':men_holding_hands_tone4_tone3:': '👨🏾‍🤝‍👨🏽', - ':men_holding_hands_dark_skin_tone_light_skin_tone:': '👨🏿‍🤝‍👨🏻', - ':men_holding_hands_tone5_tone1:': '👨🏿‍🤝‍👨🏻', - ':men_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👨🏿‍🤝‍👨🏼', - ':men_holding_hands_tone5_tone2:': '👨🏿‍🤝‍👨🏼', - ':men_holding_hands_dark_skin_tone_medium_skin_tone:': '👨🏿‍🤝‍👨🏽', - ':men_holding_hands_tone5_tone3:': '👨🏿‍🤝‍👨🏽', - ':men_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👨🏿‍🤝‍👨🏾', - ':men_holding_hands_tone5_tone4:': '👨🏿‍🤝‍👨🏾', - ':people_holding_hands_light_skin_tone:': '🧑🏻‍🤝‍🧑🏻', - ':people_holding_hands_tone1:': '🧑🏻‍🤝‍🧑🏻', - ':people_holding_hands_medium_light_skin_tone:': '🧑🏼‍🤝‍🧑🏼', - ':people_holding_hands_tone2:': '🧑🏼‍🤝‍🧑🏼', - ':people_holding_hands_medium_light_skin_tone_light_skin_tone:': '🧑🏼‍🤝‍🧑🏻', - ':people_holding_hands_tone2_tone1:': '🧑🏼‍🤝‍🧑🏻', - ':people_holding_hands_medium_skin_tone:': '🧑🏽‍🤝‍🧑🏽', - ':people_holding_hands_tone3:': '🧑🏽‍🤝‍🧑🏽', - ':people_holding_hands_medium_skin_tone_light_skin_tone:': '🧑🏽‍🤝‍🧑🏻', - ':people_holding_hands_tone3_tone1:': '🧑🏽‍🤝‍🧑🏻', - ':people_holding_hands_medium_skin_tone_medium_light_skin_tone:': '🧑🏽‍🤝‍🧑🏼', - ':people_holding_hands_tone3_tone2:': '🧑🏽‍🤝‍🧑🏼', - ':people_holding_hands_medium_dark_skin_tone:': '🧑🏾‍🤝‍🧑🏾', - ':people_holding_hands_tone4:': '🧑🏾‍🤝‍🧑🏾', - ':people_holding_hands_medium_dark_skin_tone_light_skin_tone:': '🧑🏾‍🤝‍🧑🏻', - ':people_holding_hands_tone4_tone1:': '🧑🏾‍🤝‍🧑🏻', - ':people_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '🧑🏾‍🤝‍🧑🏼', - ':people_holding_hands_tone4_tone2:': '🧑🏾‍🤝‍🧑🏼', - ':people_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '🧑🏾‍🤝‍🧑🏽', - ':people_holding_hands_tone4_tone3:': '🧑🏾‍🤝‍🧑🏽', - ':people_holding_hands_dark_skin_tone:': '🧑🏿‍🤝‍🧑🏿', - ':people_holding_hands_tone5:': '🧑🏿‍🤝‍🧑🏿', - ':people_holding_hands_dark_skin_tone_light_skin_tone:': '🧑🏿‍🤝‍🧑🏻', - ':people_holding_hands_tone5_tone1:': '🧑🏿‍🤝‍🧑🏻', - ':people_holding_hands_dark_skin_tone_medium_light_skin_tone:': '🧑🏿‍🤝‍🧑🏼', - ':people_holding_hands_tone5_tone2:': '🧑🏿‍🤝‍🧑🏼', - ':people_holding_hands_dark_skin_tone_medium_skin_tone:': '🧑🏿‍🤝‍🧑🏽', - ':people_holding_hands_tone5_tone3:': '🧑🏿‍🤝‍🧑🏽', - ':people_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '🧑🏿‍🤝‍🧑🏾', - ':people_holding_hands_tone5_tone4:': '🧑🏿‍🤝‍🧑🏾', - ':woman_and_man_holding_hands_light_skin_tone_medium_light_skin_tone:': '👩🏻‍🤝‍👨🏼', - ':woman_and_man_holding_hands_tone1_tone2:': '👩🏻‍🤝‍👨🏼', - ':woman_and_man_holding_hands_light_skin_tone_medium_skin_tone:': '👩🏻‍🤝‍👨🏽', - ':woman_and_man_holding_hands_tone1_tone3:': '👩🏻‍🤝‍👨🏽', - ':woman_and_man_holding_hands_light_skin_tone_medium_dark_skin_tone:': '👩🏻‍🤝‍👨🏾', - ':woman_and_man_holding_hands_tone1_tone4:': '👩🏻‍🤝‍👨🏾', - ':woman_and_man_holding_hands_light_skin_tone_dark_skin_tone:': '👩🏻‍🤝‍👨🏿', - ':woman_and_man_holding_hands_tone1_tone5:': '👩🏻‍🤝‍👨🏿', - ':woman_and_man_holding_hands_medium_light_skin_tone_light_skin_tone:': '👩🏼‍🤝‍👨🏻', - ':woman_and_man_holding_hands_tone2_tone1:': '👩🏼‍🤝‍👨🏻', - ':woman_and_man_holding_hands_medium_light_skin_tone_medium_skin_tone:': '👩🏼‍🤝‍👨🏽', - ':woman_and_man_holding_hands_tone2_tone3:': '👩🏼‍🤝‍👨🏽', - ':woman_and_man_holding_hands_medium_light_skin_tone_medium_dark_skin_tone:': '👩🏼‍🤝‍👨🏾', - ':woman_and_man_holding_hands_tone2_tone4:': '👩🏼‍🤝‍👨🏾', - ':woman_and_man_holding_hands_medium_light_skin_tone_dark_skin_tone:': '👩🏼‍🤝‍👨🏿', - ':woman_and_man_holding_hands_tone2_tone5:': '👩🏼‍🤝‍👨🏿', - ':woman_and_man_holding_hands_medium_skin_tone_light_skin_tone:': '👩🏽‍🤝‍👨🏻', - ':woman_and_man_holding_hands_tone3_tone1:': '👩🏽‍🤝‍👨🏻', - ':woman_and_man_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍🤝‍👨🏼', - ':woman_and_man_holding_hands_tone3_tone2:': '👩🏽‍🤝‍👨🏼', - ':woman_and_man_holding_hands_medium_skin_tone_medium_dark_skin_tone:': '👩🏽‍🤝‍👨🏾', - ':woman_and_man_holding_hands_tone3_tone4:': '👩🏽‍🤝‍👨🏾', - ':woman_and_man_holding_hands_medium_skin_tone_dark_skin_tone:': '👩🏽‍🤝‍👨🏿', - ':woman_and_man_holding_hands_tone3_tone5:': '👩🏽‍🤝‍👨🏿', - ':woman_and_man_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍🤝‍👨🏻', - ':woman_and_man_holding_hands_tone4_tone1:': '👩🏾‍🤝‍👨🏻', - ':woman_and_man_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍🤝‍👨🏼', - ':woman_and_man_holding_hands_tone4_tone2:': '👩🏾‍🤝‍👨🏼', - ':woman_and_man_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍🤝‍👨🏽', - ':woman_and_man_holding_hands_tone4_tone3:': '👩🏾‍🤝‍👨🏽', - ':woman_and_man_holding_hands_medium_dark_skin_tone_dark_skin_tone:': '👩🏾‍🤝‍👨🏿', - ':woman_and_man_holding_hands_tone4_tone5:': '👩🏾‍🤝‍👨🏿', - ':woman_and_man_holding_hands_dark_skin_tone_light_skin_tone:': '👩🏿‍🤝‍👨🏻', - ':woman_and_man_holding_hands_tone5_tone1:': '👩🏿‍🤝‍👨🏻', - ':woman_and_man_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍🤝‍👨🏼', - ':woman_and_man_holding_hands_tone5_tone2:': '👩🏿‍🤝‍👨🏼', - ':woman_and_man_holding_hands_dark_skin_tone_medium_skin_tone:': '👩🏿‍🤝‍👨🏽', - ':woman_and_man_holding_hands_tone5_tone3:': '👩🏿‍🤝‍👨🏽', - ':woman_and_man_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍🤝‍👨🏾', - ':woman_and_man_holding_hands_tone5_tone4:': '👩🏿‍🤝‍👨🏾', - ':women_holding_hands_medium_light_skin_tone_light_skin_tone:': '👩🏼‍🤝‍👩🏻', - ':women_holding_hands_tone2_tone1:': '👩🏼‍🤝‍👩🏻', - ':women_holding_hands_medium_skin_tone_light_skin_tone:': '👩🏽‍🤝‍👩🏻', - ':women_holding_hands_tone3_tone1:': '👩🏽‍🤝‍👩🏻', - ':women_holding_hands_medium_skin_tone_medium_light_skin_tone:': '👩🏽‍🤝‍👩🏼', - ':women_holding_hands_tone3_tone2:': '👩🏽‍🤝‍👩🏼', - ':women_holding_hands_medium_dark_skin_tone_light_skin_tone:': '👩🏾‍🤝‍👩🏻', - ':women_holding_hands_tone4_tone1:': '👩🏾‍🤝‍👩🏻', - ':women_holding_hands_medium_dark_skin_tone_medium_light_skin_tone:': '👩🏾‍🤝‍👩🏼', - ':women_holding_hands_tone4_tone2:': '👩🏾‍🤝‍👩🏼', - ':women_holding_hands_medium_dark_skin_tone_medium_skin_tone:': '👩🏾‍🤝‍👩🏽', - ':women_holding_hands_tone4_tone3:': '👩🏾‍🤝‍👩🏽', - ':women_holding_hands_dark_skin_tone_light_skin_tone:': '👩🏿‍🤝‍👩🏻', - ':women_holding_hands_tone5_tone1:': '👩🏿‍🤝‍👩🏻', - ':women_holding_hands_dark_skin_tone_medium_light_skin_tone:': '👩🏿‍🤝‍👩🏼', - ':women_holding_hands_tone5_tone2:': '👩🏿‍🤝‍👩🏼', - ':women_holding_hands_dark_skin_tone_medium_skin_tone:': '👩🏿‍🤝‍👩🏽', - ':women_holding_hands_tone5_tone3:': '👩🏿‍🤝‍👩🏽', - ':women_holding_hands_dark_skin_tone_medium_dark_skin_tone:': '👩🏿‍🤝‍👩🏾', - ':women_holding_hands_tone5_tone4:': '👩🏿‍🤝‍👩🏾', - ':family_mmbb:': '👨‍👨‍👦‍👦', - ':family_mmgb:': '👨‍👨‍👧‍👦', - ':family_mmgg:': '👨‍👨‍👧‍👧', - ':family_mwbb:': '👨‍👩‍👦‍👦', - ':family_mwgb:': '👨‍👩‍👧‍👦', - ':family_mwgg:': '👨‍👩‍👧‍👧', - ':family_wwbb:': '👩‍👩‍👦‍👦', - ':family_wwgb:': '👩‍👩‍👧‍👦', - ':family_wwgg:': '👩‍👩‍👧‍👧', - ':couplekiss_mm:': '👨‍❤️‍💋👨', - ':kiss_mm:': '👨‍❤️‍💋👨', - ':kiss_woman_man:': '👩‍❤️‍💋👨', - ':couplekiss_ww:': '👩‍❤️‍💋👩', - ':kiss_ww:': '👩‍❤️‍💋👩', - ':family_man_boy_boy:': '👨‍👦‍👦', - ':family_man_girl_boy:': '👨‍👧‍👦', - ':family_man_girl_girl:': '👨‍👧‍👧', - ':family_man_woman_boy:': '👨‍👩‍👦', - ':family_mmb:': '👨‍👨‍👦', - ':family_mmg:': '👨‍👨‍👧', - ':family_mwg:': '👨‍👩‍👧', - ':family_woman_boy_boy:': '👩‍👦‍👦', - ':family_woman_girl_boy:': '👩‍👧‍👦', - ':family_woman_girl_girl:': '👩‍👧‍👧', - ':family_wwb:': '👩‍👩‍👦', - ':family_wwg:': '👩‍👩‍👧', - ':man_artist_light_skin_tone:': '👨🏻‍🎨', - ':man_artist_tone1:': '👨🏻‍🎨', - ':man_artist_medium_light_skin_tone:': '👨🏼‍🎨', - ':man_artist_tone2:': '👨🏼‍🎨', - ':man_artist_medium_skin_tone:': '👨🏽‍🎨', - ':man_artist_tone3:': '👨🏽‍🎨', - ':man_artist_medium_dark_skin_tone:': '👨🏾‍🎨', - ':man_artist_tone4:': '👨🏾‍🎨', - ':man_artist_dark_skin_tone:': '👨🏿‍🎨', - ':man_artist_tone5:': '👨🏿‍🎨', - ':man_astronaut_light_skin_tone:': '👨🏻‍🚀', - ':man_astronaut_tone1:': '👨🏻‍🚀', - ':man_astronaut_medium_light_skin_tone:': '👨🏼‍🚀', - ':man_astronaut_tone2:': '👨🏼‍🚀', - ':man_astronaut_medium_skin_tone:': '👨🏽‍🚀', - ':man_astronaut_tone3:': '👨🏽‍🚀', - ':man_astronaut_medium_dark_skin_tone:': '👨🏾‍🚀', - ':man_astronaut_tone4:': '👨🏾‍🚀', - ':man_astronaut_dark_skin_tone:': '👨🏿‍🚀', - ':man_astronaut_tone5:': '👨🏿‍🚀', - ':man_bald_light_skin_tone:': '👨🏻‍🦲', - ':man_bald_tone1:': '👨🏻‍🦲', - ':man_bald_medium_light_skin_tone:': '👨🏼‍🦲', - ':man_bald_tone2:': '👨🏼‍🦲', - ':man_bald_medium_skin_tone:': '👨🏽‍🦲', - ':man_bald_tone3:': '👨🏽‍🦲', - ':man_bald_medium_dark_skin_tone:': '👨🏾‍🦲', - ':man_bald_tone4:': '👨🏾‍🦲', - ':man_bald_dark_skin_tone:': '👨🏿‍🦲', - ':man_bald_tone5:': '👨🏿‍🦲', - ':man_cook_light_skin_tone:': '👨🏻‍🍳', - ':man_cook_tone1:': '👨🏻‍🍳', - ':man_cook_medium_light_skin_tone:': '👨🏼‍🍳', - ':man_cook_tone2:': '👨🏼‍🍳', - ':man_cook_medium_skin_tone:': '👨🏽‍🍳', - ':man_cook_tone3:': '👨🏽‍🍳', - ':man_cook_medium_dark_skin_tone:': '👨🏾‍🍳', - ':man_cook_tone4:': '👨🏾‍🍳', - ':man_cook_dark_skin_tone:': '👨🏿‍🍳', - ':man_cook_tone5:': '👨🏿‍🍳', - ':man_curly_haired_light_skin_tone:': '👨🏻‍🦱', - ':man_curly_haired_tone1:': '👨🏻‍🦱', - ':man_curly_haired_medium_light_skin_tone:': '👨🏼‍🦱', - ':man_curly_haired_tone2:': '👨🏼‍🦱', - ':man_curly_haired_medium_skin_tone:': '👨🏽‍🦱', - ':man_curly_haired_tone3:': '👨🏽‍🦱', - ':man_curly_haired_medium_dark_skin_tone:': '👨🏾‍🦱', - ':man_curly_haired_tone4:': '👨🏾‍🦱', - ':man_curly_haired_dark_skin_tone:': '👨🏿‍🦱', - ':man_curly_haired_tone5:': '👨🏿‍🦱', - ':man_factory_worker_light_skin_tone:': '👨🏻‍🏭', - ':man_factory_worker_tone1:': '👨🏻‍🏭', - ':man_factory_worker_medium_light_skin_tone:': '👨🏼‍🏭', - ':man_factory_worker_tone2:': '👨🏼‍🏭', - ':man_factory_worker_medium_skin_tone:': '👨🏽‍🏭', - ':man_factory_worker_tone3:': '👨🏽‍🏭', - ':man_factory_worker_medium_dark_skin_tone:': '👨🏾‍🏭', - ':man_factory_worker_tone4:': '👨🏾‍🏭', - ':man_factory_worker_dark_skin_tone:': '👨🏿‍🏭', - ':man_factory_worker_tone5:': '👨🏿‍🏭', - ':man_farmer_light_skin_tone:': '👨🏻‍🌾', - ':man_farmer_tone1:': '👨🏻‍🌾', - ':man_farmer_medium_light_skin_tone:': '👨🏼‍🌾', - ':man_farmer_tone2:': '👨🏼‍🌾', - ':man_farmer_medium_skin_tone:': '👨🏽‍🌾', - ':man_farmer_tone3:': '👨🏽‍🌾', - ':man_farmer_medium_dark_skin_tone:': '👨🏾‍🌾', - ':man_farmer_tone4:': '👨🏾‍🌾', - ':man_farmer_dark_skin_tone:': '👨🏿‍🌾', - ':man_farmer_tone5:': '👨🏿‍🌾', - ':man_firefighter_light_skin_tone:': '👨🏻‍🚒', - ':man_firefighter_tone1:': '👨🏻‍🚒', - ':man_firefighter_medium_light_skin_tone:': '👨🏼‍🚒', - ':man_firefighter_tone2:': '👨🏼‍🚒', - ':man_firefighter_medium_skin_tone:': '👨🏽‍🚒', - ':man_firefighter_tone3:': '👨🏽‍🚒', - ':man_firefighter_medium_dark_skin_tone:': '👨🏾‍🚒', - ':man_firefighter_tone4:': '👨🏾‍🚒', - ':man_firefighter_dark_skin_tone:': '👨🏿‍🚒', - ':man_firefighter_tone5:': '👨🏿‍🚒', - ':man_in_manual_wheelchair_light_skin_tone:': '👨🏻‍🦽', - ':man_in_manual_wheelchair_tone1:': '👨🏻‍🦽', - ':man_in_manual_wheelchair_medium_light_skin_tone:': '👨🏼‍🦽', - ':man_in_manual_wheelchair_tone2:': '👨🏼‍🦽', - ':man_in_manual_wheelchair_medium_skin_tone:': '👨🏽‍🦽', - ':man_in_manual_wheelchair_tone3:': '👨🏽‍🦽', - ':man_in_manual_wheelchair_medium_dark_skin_tone:': '👨🏾‍🦽', - ':man_in_manual_wheelchair_tone4:': '👨🏾‍🦽', - ':man_in_manual_wheelchair_dark_skin_tone:': '👨🏿‍🦽', - ':man_in_manual_wheelchair_tone5:': '👨🏿‍🦽', - ':man_in_motorized_wheelchair_light_skin_tone:': '👨🏻‍🦼', - ':man_in_motorized_wheelchair_tone1:': '👨🏻‍🦼', - ':man_in_motorized_wheelchair_medium_light_skin_tone:': '👨🏼‍🦼', - ':man_in_motorized_wheelchair_tone2:': '👨🏼‍🦼', - ':man_in_motorized_wheelchair_medium_skin_tone:': '👨🏽‍🦼', - ':man_in_motorized_wheelchair_tone3:': '👨🏽‍🦼', - ':man_in_motorized_wheelchair_medium_dark_skin_tone:': '👨🏾‍🦼', - ':man_in_motorized_wheelchair_tone4:': '👨🏾‍🦼', - ':man_in_motorized_wheelchair_dark_skin_tone:': '👨🏿‍🦼', - ':man_in_motorized_wheelchair_tone5:': '👨🏿‍🦼', - ':man_mechanic_light_skin_tone:': '👨🏻‍🔧', - ':man_mechanic_tone1:': '👨🏻‍🔧', - ':man_mechanic_medium_light_skin_tone:': '👨🏼‍🔧', - ':man_mechanic_tone2:': '👨🏼‍🔧', - ':man_mechanic_medium_skin_tone:': '👨🏽‍🔧', - ':man_mechanic_tone3:': '👨🏽‍🔧', - ':man_mechanic_medium_dark_skin_tone:': '👨🏾‍🔧', - ':man_mechanic_tone4:': '👨🏾‍🔧', - ':man_mechanic_dark_skin_tone:': '👨🏿‍🔧', - ':man_mechanic_tone5:': '👨🏿‍🔧', - ':man_office_worker_light_skin_tone:': '👨🏻‍💼', - ':man_office_worker_tone1:': '👨🏻‍💼', - ':man_office_worker_medium_light_skin_tone:': '👨🏼‍💼', - ':man_office_worker_tone2:': '👨🏼‍💼', - ':man_office_worker_medium_skin_tone:': '👨🏽‍💼', - ':man_office_worker_tone3:': '👨🏽‍💼', - ':man_office_worker_medium_dark_skin_tone:': '👨🏾‍💼', - ':man_office_worker_tone4:': '👨🏾‍💼', - ':man_office_worker_dark_skin_tone:': '👨🏿‍💼', - ':man_office_worker_tone5:': '👨🏿‍💼', - ':man_red_haired_light_skin_tone:': '👨🏻‍🦰', - ':man_red_haired_tone1:': '👨🏻‍🦰', - ':man_red_haired_medium_light_skin_tone:': '👨🏼‍🦰', - ':man_red_haired_tone2:': '👨🏼‍🦰', - ':man_red_haired_medium_skin_tone:': '👨🏽‍🦰', - ':man_red_haired_tone3:': '👨🏽‍🦰', - ':man_red_haired_medium_dark_skin_tone:': '👨🏾‍🦰', - ':man_red_haired_tone4:': '👨🏾‍🦰', - ':man_red_haired_dark_skin_tone:': '👨🏿‍🦰', - ':man_red_haired_tone5:': '👨🏿‍🦰', - ':man_scientist_light_skin_tone:': '👨🏻‍🔬', - ':man_scientist_tone1:': '👨🏻‍🔬', - ':man_scientist_medium_light_skin_tone:': '👨🏼‍🔬', - ':man_scientist_tone2:': '👨🏼‍🔬', - ':man_scientist_medium_skin_tone:': '👨🏽‍🔬', - ':man_scientist_tone3:': '👨🏽‍🔬', - ':man_scientist_medium_dark_skin_tone:': '👨🏾‍🔬', - ':man_scientist_tone4:': '👨🏾‍🔬', - ':man_scientist_dark_skin_tone:': '👨🏿‍🔬', - ':man_scientist_tone5:': '👨🏿‍🔬', - ':man_singer_light_skin_tone:': '👨🏻‍🎤', - ':man_singer_tone1:': '👨🏻‍🎤', - ':man_singer_medium_light_skin_tone:': '👨🏼‍🎤', - ':man_singer_tone2:': '👨🏼‍🎤', - ':man_singer_medium_skin_tone:': '👨🏽‍🎤', - ':man_singer_tone3:': '👨🏽‍🎤', - ':man_singer_medium_dark_skin_tone:': '👨🏾‍🎤', - ':man_singer_tone4:': '👨🏾‍🎤', - ':man_singer_dark_skin_tone:': '👨🏿‍🎤', - ':man_singer_tone5:': '👨🏿‍🎤', - ':man_student_light_skin_tone:': '👨🏻‍🎓', - ':man_student_tone1:': '👨🏻‍🎓', - ':man_student_medium_light_skin_tone:': '👨🏼‍🎓', - ':man_student_tone2:': '👨🏼‍🎓', - ':man_student_medium_skin_tone:': '👨🏽‍🎓', - ':man_student_tone3:': '👨🏽‍🎓', - ':man_student_medium_dark_skin_tone:': '👨🏾‍🎓', - ':man_student_tone4:': '👨🏾‍🎓', - ':man_student_dark_skin_tone:': '👨🏿‍🎓', - ':man_student_tone5:': '👨🏿‍🎓', - ':man_teacher_light_skin_tone:': '👨🏻‍🏫', - ':man_teacher_tone1:': '👨🏻‍🏫', - ':man_teacher_medium_light_skin_tone:': '👨🏼‍🏫', - ':man_teacher_tone2:': '👨🏼‍🏫', - ':man_teacher_medium_skin_tone:': '👨🏽‍🏫', - ':man_teacher_tone3:': '👨🏽‍🏫', - ':man_teacher_medium_dark_skin_tone:': '👨🏾‍🏫', - ':man_teacher_tone4:': '👨🏾‍🏫', - ':man_teacher_dark_skin_tone:': '👨🏿‍🏫', - ':man_teacher_tone5:': '👨🏿‍🏫', - ':man_technologist_light_skin_tone:': '👨🏻‍💻', - ':man_technologist_tone1:': '👨🏻‍💻', - ':man_technologist_medium_light_skin_tone:': '👨🏼‍💻', - ':man_technologist_tone2:': '👨🏼‍💻', - ':man_technologist_medium_skin_tone:': '👨🏽‍💻', - ':man_technologist_tone3:': '👨🏽‍💻', - ':man_technologist_medium_dark_skin_tone:': '👨🏾‍💻', - ':man_technologist_tone4:': '👨🏾‍💻', - ':man_technologist_dark_skin_tone:': '👨🏿‍💻', - ':man_technologist_tone5:': '👨🏿‍💻', - ':man_white_haired_light_skin_tone:': '👨🏻‍🦳', - ':man_white_haired_tone1:': '👨🏻‍🦳', - ':man_white_haired_medium_light_skin_tone:': '👨🏼‍🦳', - ':man_white_haired_tone2:': '👨🏼‍🦳', - ':man_white_haired_medium_skin_tone:': '👨🏽‍🦳', - ':man_white_haired_tone3:': '👨🏽‍🦳', - ':man_white_haired_medium_dark_skin_tone:': '👨🏾‍🦳', - ':man_white_haired_tone4:': '👨🏾‍🦳', - ':man_white_haired_dark_skin_tone:': '👨🏿‍🦳', - ':man_white_haired_tone5:': '👨🏿‍🦳', - ':man_with_probing_cane_light_skin_tone:': '👨🏻‍🦯', - ':man_with_probing_cane_tone1:': '👨🏻‍🦯', - ':man_with_probing_cane_medium_light_skin_tone:': '👨🏼‍🦯', - ':man_with_probing_cane_tone2:': '👨🏼‍🦯', - ':man_with_probing_cane_medium_skin_tone:': '👨🏽‍🦯', - ':man_with_probing_cane_tone3:': '👨🏽‍🦯', - ':man_with_probing_cane_medium_dark_skin_tone:': '👨🏾‍🦯', - ':man_with_probing_cane_tone4:': '👨🏾‍🦯', - ':man_with_probing_cane_dark_skin_tone:': '👨🏿‍🦯', - ':man_with_probing_cane_tone5:': '👨🏿‍🦯', - ':people_holding_hands:': '🧑‍🤝‍🧑', - ':woman_artist_light_skin_tone:': '👩🏻‍🎨', - ':woman_artist_tone1:': '👩🏻‍🎨', - ':woman_artist_medium_light_skin_tone:': '👩🏼‍🎨', - ':woman_artist_tone2:': '👩🏼‍🎨', - ':woman_artist_medium_skin_tone:': '👩🏽‍🎨', - ':woman_artist_tone3:': '👩🏽‍🎨', - ':woman_artist_medium_dark_skin_tone:': '👩🏾‍🎨', - ':woman_artist_tone4:': '👩🏾‍🎨', - ':woman_artist_dark_skin_tone:': '👩🏿‍🎨', - ':woman_artist_tone5:': '👩🏿‍🎨', - ':woman_astronaut_light_skin_tone:': '👩🏻‍🚀', - ':woman_astronaut_tone1:': '👩🏻‍🚀', - ':woman_astronaut_medium_light_skin_tone:': '👩🏼‍🚀', - ':woman_astronaut_tone2:': '👩🏼‍🚀', - ':woman_astronaut_medium_skin_tone:': '👩🏽‍🚀', - ':woman_astronaut_tone3:': '👩🏽‍🚀', - ':woman_astronaut_medium_dark_skin_tone:': '👩🏾‍🚀', - ':woman_astronaut_tone4:': '👩🏾‍🚀', - ':woman_astronaut_dark_skin_tone:': '👩🏿‍🚀', - ':woman_astronaut_tone5:': '👩🏿‍🚀', - ':woman_bald_light_skin_tone:': '👩🏻‍🦲', - ':woman_bald_tone1:': '👩🏻‍🦲', - ':woman_bald_medium_light_skin_tone:': '👩🏼‍🦲', - ':woman_bald_tone2:': '👩🏼‍🦲', - ':woman_bald_medium_skin_tone:': '👩🏽‍🦲', - ':woman_bald_tone3:': '👩🏽‍🦲', - ':woman_bald_medium_dark_skin_tone:': '👩🏾‍🦲', - ':woman_bald_tone4:': '👩🏾‍🦲', - ':woman_bald_dark_skin_tone:': '👩🏿‍🦲', - ':woman_bald_tone5:': '👩🏿‍🦲', - ':woman_cook_light_skin_tone:': '👩🏻‍🍳', - ':woman_cook_tone1:': '👩🏻‍🍳', - ':woman_cook_medium_light_skin_tone:': '👩🏼‍🍳', - ':woman_cook_tone2:': '👩🏼‍🍳', - ':woman_cook_medium_skin_tone:': '👩🏽‍🍳', - ':woman_cook_tone3:': '👩🏽‍🍳', - ':woman_cook_medium_dark_skin_tone:': '👩🏾‍🍳', - ':woman_cook_tone4:': '👩🏾‍🍳', - ':woman_cook_dark_skin_tone:': '👩🏿‍🍳', - ':woman_cook_tone5:': '👩🏿‍🍳', - ':woman_curly_haired_light_skin_tone:': '👩🏻‍🦱', - ':woman_curly_haired_tone1:': '👩🏻‍🦱', - ':woman_curly_haired_medium_light_skin_tone:': '👩🏼‍🦱', - ':woman_curly_haired_tone2:': '👩🏼‍🦱', - ':woman_curly_haired_medium_skin_tone:': '👩🏽‍🦱', - ':woman_curly_haired_tone3:': '👩🏽‍🦱', - ':woman_curly_haired_medium_dark_skin_tone:': '👩🏾‍🦱', - ':woman_curly_haired_tone4:': '👩🏾‍🦱', - ':woman_curly_haired_dark_skin_tone:': '👩🏿‍🦱', - ':woman_curly_haired_tone5:': '👩🏿‍🦱', - ':woman_factory_worker_light_skin_tone:': '👩🏻‍🏭', - ':woman_factory_worker_tone1:': '👩🏻‍🏭', - ':woman_factory_worker_medium_light_skin_tone:': '👩🏼‍🏭', - ':woman_factory_worker_tone2:': '👩🏼‍🏭', - ':woman_factory_worker_medium_skin_tone:': '👩🏽‍🏭', - ':woman_factory_worker_tone3:': '👩🏽‍🏭', - ':woman_factory_worker_medium_dark_skin_tone:': '👩🏾‍🏭', - ':woman_factory_worker_tone4:': '👩🏾‍🏭', - ':woman_factory_worker_dark_skin_tone:': '👩🏿‍🏭', - ':woman_factory_worker_tone5:': '👩🏿‍🏭', - ':woman_farmer_light_skin_tone:': '👩🏻‍🌾', - ':woman_farmer_tone1:': '👩🏻‍🌾', - ':woman_farmer_medium_light_skin_tone:': '👩🏼‍🌾', - ':woman_farmer_tone2:': '👩🏼‍🌾', - ':woman_farmer_medium_skin_tone:': '👩🏽‍🌾', - ':woman_farmer_tone3:': '👩🏽‍🌾', - ':woman_farmer_medium_dark_skin_tone:': '👩🏾‍🌾', - ':woman_farmer_tone4:': '👩🏾‍🌾', - ':woman_farmer_dark_skin_tone:': '👩🏿‍🌾', - ':woman_farmer_tone5:': '👩🏿‍🌾', - ':woman_firefighter_light_skin_tone:': '👩🏻‍🚒', - ':woman_firefighter_tone1:': '👩🏻‍🚒', - ':woman_firefighter_medium_light_skin_tone:': '👩🏼‍🚒', - ':woman_firefighter_tone2:': '👩🏼‍🚒', - ':woman_firefighter_medium_skin_tone:': '👩🏽‍🚒', - ':woman_firefighter_tone3:': '👩🏽‍🚒', - ':woman_firefighter_medium_dark_skin_tone:': '👩🏾‍🚒', - ':woman_firefighter_tone4:': '👩🏾‍🚒', - ':woman_firefighter_dark_skin_tone:': '👩🏿‍🚒', - ':woman_firefighter_tone5:': '👩🏿‍🚒', - ':woman_in_manual_wheelchair_light_skin_tone:': '👩🏻‍🦽', - ':woman_in_manual_wheelchair_tone1:': '👩🏻‍🦽', - ':woman_in_manual_wheelchair_medium_light_skin_tone:': '👩🏼‍🦽', - ':woman_in_manual_wheelchair_tone2:': '👩🏼‍🦽', - ':woman_in_manual_wheelchair_medium_skin_tone:': '👩🏽‍🦽', - ':woman_in_manual_wheelchair_tone3:': '👩🏽‍🦽', - ':woman_in_manual_wheelchair_medium_dark_skin_tone:': '👩🏾‍🦽', - ':woman_in_manual_wheelchair_tone4:': '👩🏾‍🦽', - ':woman_in_manual_wheelchair_dark_skin_tone:': '👩🏿‍🦽', - ':woman_in_manual_wheelchair_tone5:': '👩🏿‍🦽', - ':woman_in_motorized_wheelchair_light_skin_tone:': '👩🏻‍🦼', - ':woman_in_motorized_wheelchair_tone1:': '👩🏻‍🦼', - ':woman_in_motorized_wheelchair_medium_light_skin_tone:': '👩🏼‍🦼', - ':woman_in_motorized_wheelchair_tone2:': '👩🏼‍🦼', - ':woman_in_motorized_wheelchair_medium_skin_tone:': '👩🏽‍🦼', - ':woman_in_motorized_wheelchair_tone3:': '👩🏽‍🦼', - ':woman_in_motorized_wheelchair_medium_dark_skin_tone:': '👩🏾‍🦼', - ':woman_in_motorized_wheelchair_tone4:': '👩🏾‍🦼', - ':woman_in_motorized_wheelchair_dark_skin_tone:': '👩🏿‍🦼', - ':woman_in_motorized_wheelchair_tone5:': '👩🏿‍🦼', - ':woman_mechanic_light_skin_tone:': '👩🏻‍🔧', - ':woman_mechanic_tone1:': '👩🏻‍🔧', - ':woman_mechanic_medium_light_skin_tone:': '👩🏼‍🔧', - ':woman_mechanic_tone2:': '👩🏼‍🔧', - ':woman_mechanic_medium_skin_tone:': '👩🏽‍🔧', - ':woman_mechanic_tone3:': '👩🏽‍🔧', - ':woman_mechanic_medium_dark_skin_tone:': '👩🏾‍🔧', - ':woman_mechanic_tone4:': '👩🏾‍🔧', - ':woman_mechanic_dark_skin_tone:': '👩🏿‍🔧', - ':woman_mechanic_tone5:': '👩🏿‍🔧', - ':woman_office_worker_light_skin_tone:': '👩🏻‍💼', - ':woman_office_worker_tone1:': '👩🏻‍💼', - ':woman_office_worker_medium_light_skin_tone:': '👩🏼‍💼', - ':woman_office_worker_tone2:': '👩🏼‍💼', - ':woman_office_worker_medium_skin_tone:': '👩🏽‍💼', - ':woman_office_worker_tone3:': '👩🏽‍💼', - ':woman_office_worker_medium_dark_skin_tone:': '👩🏾‍💼', - ':woman_office_worker_tone4:': '👩🏾‍💼', - ':woman_office_worker_dark_skin_tone:': '👩🏿‍💼', - ':woman_office_worker_tone5:': '👩🏿‍💼', - ':woman_red_haired_light_skin_tone:': '👩🏻‍🦰', - ':woman_red_haired_tone1:': '👩🏻‍🦰', - ':woman_red_haired_medium_light_skin_tone:': '👩🏼‍🦰', - ':woman_red_haired_tone2:': '👩🏼‍🦰', - ':woman_red_haired_medium_skin_tone:': '👩🏽‍🦰', - ':woman_red_haired_tone3:': '👩🏽‍🦰', - ':woman_red_haired_medium_dark_skin_tone:': '👩🏾‍🦰', - ':woman_red_haired_tone4:': '👩🏾‍🦰', - ':woman_red_haired_dark_skin_tone:': '👩🏿‍🦰', - ':woman_red_haired_tone5:': '👩🏿‍🦰', - ':woman_scientist_light_skin_tone:': '👩🏻‍🔬', - ':woman_scientist_tone1:': '👩🏻‍🔬', - ':woman_scientist_medium_light_skin_tone:': '👩🏼‍🔬', - ':woman_scientist_tone2:': '👩🏼‍🔬', - ':woman_scientist_medium_skin_tone:': '👩🏽‍🔬', - ':woman_scientist_tone3:': '👩🏽‍🔬', - ':woman_scientist_medium_dark_skin_tone:': '👩🏾‍🔬', - ':woman_scientist_tone4:': '👩🏾‍🔬', - ':woman_scientist_dark_skin_tone:': '👩🏿‍🔬', - ':woman_scientist_tone5:': '👩🏿‍🔬', - ':woman_singer_light_skin_tone:': '👩🏻‍🎤', - ':woman_singer_tone1:': '👩🏻‍🎤', - ':woman_singer_medium_light_skin_tone:': '👩🏼‍🎤', - ':woman_singer_tone2:': '👩🏼‍🎤', - ':woman_singer_medium_skin_tone:': '👩🏽‍🎤', - ':woman_singer_tone3:': '👩🏽‍🎤', - ':woman_singer_medium_dark_skin_tone:': '👩🏾‍🎤', - ':woman_singer_tone4:': '👩🏾‍🎤', - ':woman_singer_dark_skin_tone:': '👩🏿‍🎤', - ':woman_singer_tone5:': '👩🏿‍🎤', - ':woman_student_light_skin_tone:': '👩🏻‍🎓', - ':woman_student_tone1:': '👩🏻‍🎓', - ':woman_student_medium_light_skin_tone:': '👩🏼‍🎓', - ':woman_student_tone2:': '👩🏼‍🎓', - ':woman_student_medium_skin_tone:': '👩🏽‍🎓', - ':woman_student_tone3:': '👩🏽‍🎓', - ':woman_student_medium_dark_skin_tone:': '👩🏾‍🎓', - ':woman_student_tone4:': '👩🏾‍🎓', - ':woman_student_dark_skin_tone:': '👩🏿‍🎓', - ':woman_student_tone5:': '👩🏿‍🎓', - ':woman_teacher_light_skin_tone:': '👩🏻‍🏫', - ':woman_teacher_tone1:': '👩🏻‍🏫', - ':woman_teacher_medium_light_skin_tone:': '👩🏼‍🏫', - ':woman_teacher_tone2:': '👩🏼‍🏫', - ':woman_teacher_medium_skin_tone:': '👩🏽‍🏫', - ':woman_teacher_tone3:': '👩🏽‍🏫', - ':woman_teacher_medium_dark_skin_tone:': '👩🏾‍🏫', - ':woman_teacher_tone4:': '👩🏾‍🏫', - ':woman_teacher_dark_skin_tone:': '👩🏿‍🏫', - ':woman_teacher_tone5:': '👩🏿‍🏫', - ':woman_technologist_light_skin_tone:': '👩🏻‍💻', - ':woman_technologist_tone1:': '👩🏻‍💻', - ':woman_technologist_medium_light_skin_tone:': '👩🏼‍💻', - ':woman_technologist_tone2:': '👩🏼‍💻', - ':woman_technologist_medium_skin_tone:': '👩🏽‍💻', - ':woman_technologist_tone3:': '👩🏽‍💻', - ':woman_technologist_medium_dark_skin_tone:': '👩🏾‍💻', - ':woman_technologist_tone4:': '👩🏾‍💻', - ':woman_technologist_dark_skin_tone:': '👩🏿‍💻', - ':woman_technologist_tone5:': '👩🏿‍💻', - ':woman_white_haired_light_skin_tone:': '👩🏻‍🦳', - ':woman_white_haired_tone1:': '👩🏻‍🦳', - ':woman_white_haired_medium_light_skin_tone:': '👩🏼‍🦳', - ':woman_white_haired_tone2:': '👩🏼‍🦳', - ':woman_white_haired_medium_skin_tone:': '👩🏽‍🦳', - ':woman_white_haired_tone3:': '👩🏽‍🦳', - ':woman_white_haired_medium_dark_skin_tone:': '👩🏾‍🦳', - ':woman_white_haired_tone4:': '👩🏾‍🦳', - ':woman_white_haired_dark_skin_tone:': '👩🏿‍🦳', - ':woman_white_haired_tone5:': '👩🏿‍🦳', - ':woman_with_probing_cane_light_skin_tone:': '👩🏻‍🦯', - ':woman_with_probing_cane_tone1:': '👩🏻‍🦯', - ':woman_with_probing_cane_medium_light_skin_tone:': '👩🏼‍🦯', - ':woman_with_probing_cane_tone2:': '👩🏼‍🦯', - ':woman_with_probing_cane_medium_skin_tone:': '👩🏽‍🦯', - ':woman_with_probing_cane_tone3:': '👩🏽‍🦯', - ':woman_with_probing_cane_medium_dark_skin_tone:': '👩🏾‍🦯', - ':woman_with_probing_cane_tone4:': '👩🏾‍🦯', - ':woman_with_probing_cane_dark_skin_tone:': '👩🏿‍🦯', - ':woman_with_probing_cane_tone5:': '👩🏿‍🦯', - ':blond-haired_man_light_skin_tone:': '👱🏻‍♂️', - ':blond-haired_man_tone1:': '👱🏻‍♂️', - ':blond-haired_man_medium_light_skin_tone:': '👱🏼‍♂️', - ':blond-haired_man_tone2:': '👱🏼‍♂️', - ':blond-haired_man_medium_skin_tone:': '👱🏽‍♂️', - ':blond-haired_man_tone3:': '👱🏽‍♂️', - ':blond-haired_man_medium_dark_skin_tone:': '👱🏾‍♂️', - ':blond-haired_man_tone4:': '👱🏾‍♂️', - ':blond-haired_man_dark_skin_tone:': '👱🏿‍♂️', - ':blond-haired_man_tone5:': '👱🏿‍♂️', - ':blond-haired_woman_light_skin_tone:': '👱🏻‍♀️', - ':blond-haired_woman_tone1:': '👱🏻‍♀️', - ':blond-haired_woman_medium_light_skin_tone:': '👱🏼‍♀️', - ':blond-haired_woman_tone2:': '👱🏼‍♀️', - ':blond-haired_woman_medium_skin_tone:': '👱🏽‍♀️', - ':blond-haired_woman_tone3:': '👱🏽‍♀️', - ':blond-haired_woman_medium_dark_skin_tone:': '👱🏾‍♀️', - ':blond-haired_woman_tone4:': '👱🏾‍♀️', - ':blond-haired_woman_dark_skin_tone:': '👱🏿‍♀️', - ':blond-haired_woman_tone5:': '👱🏿‍♀️', - ':couple_with_heart_mm:': '👨‍❤️‍👨', - ':couple_mm:': '👨‍❤️‍👨', - ':couple_with_heart_woman_man:': '👩‍❤️‍👨', - ':couple_with_heart_ww:': '👩‍❤️‍👩', - ':couple_ww:': '👩‍❤️‍👩', - ':deaf_man_light_skin_tone:': '🧏🏻‍♂️', - ':deaf_man_tone1:': '🧏🏻‍♂️', - ':deaf_man_medium_light_skin_tone:': '🧏🏼‍♂️', - ':deaf_man_tone2:': '🧏🏼‍♂️', - ':deaf_man_medium_skin_tone:': '🧏🏽‍♂️', - ':deaf_man_tone3:': '🧏🏽‍♂️', - ':deaf_man_medium_dark_skin_tone:': '🧏🏾‍♂️', - ':deaf_man_tone4:': '🧏🏾‍♂️', - ':deaf_man_dark_skin_tone:': '🧏🏿‍♂️', - ':deaf_man_tone5:': '🧏🏿‍♂️', - ':deaf_woman_light_skin_tone:': '🧏🏻‍♀️', - ':deaf_woman_tone1:': '🧏🏻‍♀️', - ':deaf_woman_medium_light_skin_tone:': '🧏🏼‍♀️', - ':deaf_woman_tone2:': '🧏🏼‍♀️', - ':deaf_woman_medium_skin_tone:': '🧏🏽‍♀️', - ':deaf_woman_tone3:': '🧏🏽‍♀️', - ':deaf_woman_medium_dark_skin_tone:': '🧏🏾‍♀️', - ':deaf_woman_tone4:': '🧏🏾‍♀️', - ':deaf_woman_dark_skin_tone:': '🧏🏿‍♀️', - ':deaf_woman_tone5:': '🧏🏿‍♀️', - ':man_biking_light_skin_tone:': '🚴🏻‍♂️', - ':man_biking_tone1:': '🚴🏻‍♂️', - ':man_biking_medium_light_skin_tone:': '🚴🏼‍♂️', - ':man_biking_tone2:': '🚴🏼‍♂️', - ':man_biking_medium_skin_tone:': '🚴🏽‍♂️', - ':man_biking_tone3:': '🚴🏽‍♂️', - ':man_biking_medium_dark_skin_tone:': '🚴🏾‍♂️', - ':man_biking_tone4:': '🚴🏾‍♂️', - ':man_biking_dark_skin_tone:': '🚴🏿‍♂️', - ':man_biking_tone5:': '🚴🏿‍♂️', - ':man_bowing_light_skin_tone:': '🙇🏻‍♂️', - ':man_bowing_tone1:': '🙇🏻‍♂️', - ':man_bowing_medium_light_skin_tone:': '🙇🏼‍♂️', - ':man_bowing_tone2:': '🙇🏼‍♂️', - ':man_bowing_medium_skin_tone:': '🙇🏽‍♂️', - ':man_bowing_tone3:': '🙇🏽‍♂️', - ':man_bowing_medium_dark_skin_tone:': '🙇🏾‍♂️', - ':man_bowing_tone4:': '🙇🏾‍♂️', - ':man_bowing_dark_skin_tone:': '🙇🏿‍♂️', - ':man_bowing_tone5:': '🙇🏿‍♂️', - ':man_cartwheeling_light_skin_tone:': '🤸🏻‍♂️', - ':man_cartwheeling_tone1:': '🤸🏻‍♂️', - ':man_cartwheeling_medium_light_skin_tone:': '🤸🏼‍♂️', - ':man_cartwheeling_tone2:': '🤸🏼‍♂️', - ':man_cartwheeling_medium_skin_tone:': '🤸🏽‍♂️', - ':man_cartwheeling_tone3:': '🤸🏽‍♂️', - ':man_cartwheeling_medium_dark_skin_tone:': '🤸🏾‍♂️', - ':man_cartwheeling_tone4:': '🤸🏾‍♂️', - ':man_cartwheeling_dark_skin_tone:': '🤸🏿‍♂️', - ':man_cartwheeling_tone5:': '🤸🏿‍♂️', - ':man_climbing_light_skin_tone:': '🧗🏻‍♂️', - ':man_climbing_tone1:': '🧗🏻‍♂️', - ':man_climbing_medium_light_skin_tone:': '🧗🏼‍♂️', - ':man_climbing_tone2:': '🧗🏼‍♂️', - ':man_climbing_medium_skin_tone:': '🧗🏽‍♂️', - ':man_climbing_tone3:': '🧗🏽‍♂️', - ':man_climbing_medium_dark_skin_tone:': '🧗🏾‍♂️', - ':man_climbing_tone4:': '🧗🏾‍♂️', - ':man_climbing_dark_skin_tone:': '🧗🏿‍♂️', - ':man_climbing_tone5:': '🧗🏿‍♂️', - ':man_construction_worker_light_skin_tone:': '👷🏻‍♂️', - ':man_construction_worker_tone1:': '👷🏻‍♂️', - ':man_construction_worker_medium_light_skin_tone:': '👷🏼‍♂️', - ':man_construction_worker_tone2:': '👷🏼‍♂️', - ':man_construction_worker_medium_skin_tone:': '👷🏽‍♂️', - ':man_construction_worker_tone3:': '👷🏽‍♂️', - ':man_construction_worker_medium_dark_skin_tone:': '👷🏾‍♂️', - ':man_construction_worker_tone4:': '👷🏾‍♂️', - ':man_construction_worker_dark_skin_tone:': '👷🏿‍♂️', - ':man_construction_worker_tone5:': '👷🏿‍♂️', - ':man_detective_light_skin_tone:': '🕵️🏻‍♂️', - ':man_detective_tone1:': '🕵️🏻‍♂️', - ':man_detective_medium_light_skin_tone:': '🕵️🏼‍♂️', - ':man_detective_tone2:': '🕵️🏼‍♂️', - ':man_detective_medium_skin_tone:': '🕵️🏽‍♂️', - ':man_detective_tone3:': '🕵️🏽‍♂️', - ':man_detective_medium_dark_skin_tone:': '🕵️🏾‍♂️', - ':man_detective_tone4:': '🕵️🏾‍♂️', - ':man_detective_dark_skin_tone:': '🕵️🏿‍♂️', - ':man_detective_tone5:': '🕵️🏿‍♂️', - ':man_elf_light_skin_tone:': '🧝🏻‍♂️', - ':man_elf_tone1:': '🧝🏻‍♂️', - ':man_elf_medium_light_skin_tone:': '🧝🏼‍♂️', - ':man_elf_tone2:': '🧝🏼‍♂️', - ':man_elf_medium_skin_tone:': '🧝🏽‍♂️', - ':man_elf_tone3:': '🧝🏽‍♂️', - ':man_elf_medium_dark_skin_tone:': '🧝🏾‍♂️', - ':man_elf_tone4:': '🧝🏾‍♂️', - ':man_elf_dark_skin_tone:': '🧝🏿‍♂️', - ':man_elf_tone5:': '🧝🏿‍♂️', - ':man_facepalming_light_skin_tone:': '🤦🏻‍♂️', - ':man_facepalming_tone1:': '🤦🏻‍♂️', - ':man_facepalming_medium_light_skin_tone:': '🤦🏼‍♂️', - ':man_facepalming_tone2:': '🤦🏼‍♂️', - ':man_facepalming_medium_skin_tone:': '🤦🏽‍♂️', - ':man_facepalming_tone3:': '🤦🏽‍♂️', - ':man_facepalming_medium_dark_skin_tone:': '🤦🏾‍♂️', - ':man_facepalming_tone4:': '🤦🏾‍♂️', - ':man_facepalming_dark_skin_tone:': '🤦🏿‍♂️', - ':man_facepalming_tone5:': '🤦🏿‍♂️', - ':man_fairy_light_skin_tone:': '🧚🏻‍♂️', - ':man_fairy_tone1:': '🧚🏻‍♂️', - ':man_fairy_medium_light_skin_tone:': '🧚🏼‍♂️', - ':man_fairy_tone2:': '🧚🏼‍♂️', - ':man_fairy_medium_skin_tone:': '🧚🏽‍♂️', - ':man_fairy_tone3:': '🧚🏽‍♂️', - ':man_fairy_medium_dark_skin_tone:': '🧚🏾‍♂️', - ':man_fairy_tone4:': '🧚🏾‍♂️', - ':man_fairy_dark_skin_tone:': '🧚🏿‍♂️', - ':man_fairy_tone5:': '🧚🏿‍♂️', - ':man_frowning_light_skin_tone:': '🙍🏻‍♂️', - ':man_frowning_tone1:': '🙍🏻‍♂️', - ':man_frowning_medium_light_skin_tone:': '🙍🏼‍♂️', - ':man_frowning_tone2:': '🙍🏼‍♂️', - ':man_frowning_medium_skin_tone:': '🙍🏽‍♂️', - ':man_frowning_tone3:': '🙍🏽‍♂️', - ':man_frowning_medium_dark_skin_tone:': '🙍🏾‍♂️', - ':man_frowning_tone4:': '🙍🏾‍♂️', - ':man_frowning_dark_skin_tone:': '🙍🏿‍♂️', - ':man_frowning_tone5:': '🙍🏿‍♂️', - ':man_gesturing_no_light_skin_tone:': '🙅🏻‍♂️', - ':man_gesturing_no_tone1:': '🙅🏻‍♂️', - ':man_gesturing_no_medium_light_skin_tone:': '🙅🏼‍♂️', - ':man_gesturing_no_tone2:': '🙅🏼‍♂️', - ':man_gesturing_no_medium_skin_tone:': '🙅🏽‍♂️', - ':man_gesturing_no_tone3:': '🙅🏽‍♂️', - ':man_gesturing_no_medium_dark_skin_tone:': '🙅🏾‍♂️', - ':man_gesturing_no_tone4:': '🙅🏾‍♂️', - ':man_gesturing_no_dark_skin_tone:': '🙅🏿‍♂️', - ':man_gesturing_no_tone5:': '🙅🏿‍♂️', - ':man_gesturing_ok_light_skin_tone:': '🙆🏻‍♂️', - ':man_gesturing_ok_tone1:': '🙆🏻‍♂️', - ':man_gesturing_ok_medium_light_skin_tone:': '🙆🏼‍♂️', - ':man_gesturing_ok_tone2:': '🙆🏼‍♂️', - ':man_gesturing_ok_medium_skin_tone:': '🙆🏽‍♂️', - ':man_gesturing_ok_tone3:': '🙆🏽‍♂️', - ':man_gesturing_ok_medium_dark_skin_tone:': '🙆🏾‍♂️', - ':man_gesturing_ok_tone4:': '🙆🏾‍♂️', - ':man_gesturing_ok_dark_skin_tone:': '🙆🏿‍♂️', - ':man_gesturing_ok_tone5:': '🙆🏿‍♂️', - ':man_getting_face_massage_light_skin_tone:': '💆🏻‍♂️', - ':man_getting_face_massage_tone1:': '💆🏻‍♂️', - ':man_getting_face_massage_medium_light_skin_tone:': '💆🏼‍♂️', - ':man_getting_face_massage_tone2:': '💆🏼‍♂️', - ':man_getting_face_massage_medium_skin_tone:': '💆🏽‍♂️', - ':man_getting_face_massage_tone3:': '💆🏽‍♂️', - ':man_getting_face_massage_medium_dark_skin_tone:': '💆🏾‍♂️', - ':man_getting_face_massage_tone4:': '💆🏾‍♂️', - ':man_getting_face_massage_dark_skin_tone:': '💆🏿‍♂️', - ':man_getting_face_massage_tone5:': '💆🏿‍♂️', - ':man_getting_haircut_light_skin_tone:': '💇🏻‍♂️', - ':man_getting_haircut_tone1:': '💇🏻‍♂️', - ':man_getting_haircut_medium_light_skin_tone:': '💇🏼‍♂️', - ':man_getting_haircut_tone2:': '💇🏼‍♂️', - ':man_getting_haircut_medium_skin_tone:': '💇🏽‍♂️', - ':man_getting_haircut_tone3:': '💇🏽‍♂️', - ':man_getting_haircut_medium_dark_skin_tone:': '💇🏾‍♂️', - ':man_getting_haircut_tone4:': '💇🏾‍♂️', - ':man_getting_haircut_dark_skin_tone:': '💇🏿‍♂️', - ':man_getting_haircut_tone5:': '💇🏿‍♂️', - ':man_golfing_light_skin_tone:': '🏌️🏻‍♂️', - ':man_golfing_tone1:': '🏌️🏻‍♂️', - ':man_golfing_medium_light_skin_tone:': '🏌️🏼‍♂️', - ':man_golfing_tone2:': '🏌️🏼‍♂️', - ':man_golfing_medium_skin_tone:': '🏌️🏽‍♂️', - ':man_golfing_tone3:': '🏌️🏽‍♂️', - ':man_golfing_medium_dark_skin_tone:': '🏌️🏾‍♂️', - ':man_golfing_tone4:': '🏌️🏾‍♂️', - ':man_golfing_dark_skin_tone:': '🏌️🏿‍♂️', - ':man_golfing_tone5:': '🏌️🏿‍♂️', - ':man_guard_light_skin_tone:': '💂🏻‍♂️', - ':man_guard_tone1:': '💂🏻‍♂️', - ':man_guard_medium_light_skin_tone:': '💂🏼‍♂️', - ':man_guard_tone2:': '💂🏼‍♂️', - ':man_guard_medium_skin_tone:': '💂🏽‍♂️', - ':man_guard_tone3:': '💂🏽‍♂️', - ':man_guard_medium_dark_skin_tone:': '💂🏾‍♂️', - ':man_guard_tone4:': '💂🏾‍♂️', - ':man_guard_dark_skin_tone:': '💂🏿‍♂️', - ':man_guard_tone5:': '💂🏿‍♂️', - ':man_health_worker_light_skin_tone:': '👨🏻‍⚕️', - ':man_health_worker_tone1:': '👨🏻‍⚕️', - ':man_health_worker_medium_light_skin_tone:': '👨🏼‍⚕️', - ':man_health_worker_tone2:': '👨🏼‍⚕️', - ':man_health_worker_medium_skin_tone:': '👨🏽‍⚕️', - ':man_health_worker_tone3:': '👨🏽‍⚕️', - ':man_health_worker_medium_dark_skin_tone:': '👨🏾‍⚕️', - ':man_health_worker_tone4:': '👨🏾‍⚕️', - ':man_health_worker_dark_skin_tone:': '👨🏿‍⚕️', - ':man_health_worker_tone5:': '👨🏿‍⚕️', - ':man_in_lotus_position_light_skin_tone:': '🧘🏻‍♂️', - ':man_in_lotus_position_tone1:': '🧘🏻‍♂️', - ':man_in_lotus_position_medium_light_skin_tone:': '🧘🏼‍♂️', - ':man_in_lotus_position_tone2:': '🧘🏼‍♂️', - ':man_in_lotus_position_medium_skin_tone:': '🧘🏽‍♂️', - ':man_in_lotus_position_tone3:': '🧘🏽‍♂️', - ':man_in_lotus_position_medium_dark_skin_tone:': '🧘🏾‍♂️', - ':man_in_lotus_position_tone4:': '🧘🏾‍♂️', - ':man_in_lotus_position_dark_skin_tone:': '🧘🏿‍♂️', - ':man_in_lotus_position_tone5:': '🧘🏿‍♂️', - ':man_in_steamy_room_light_skin_tone:': '🧖🏻‍♂️', - ':man_in_steamy_room_tone1:': '🧖🏻‍♂️', - ':man_in_steamy_room_medium_light_skin_tone:': '🧖🏼‍♂️', - ':man_in_steamy_room_tone2:': '🧖🏼‍♂️', - ':man_in_steamy_room_medium_skin_tone:': '🧖🏽‍♂️', - ':man_in_steamy_room_tone3:': '🧖🏽‍♂️', - ':man_in_steamy_room_medium_dark_skin_tone:': '🧖🏾‍♂️', - ':man_in_steamy_room_tone4:': '🧖🏾‍♂️', - ':man_in_steamy_room_dark_skin_tone:': '🧖🏿‍♂️', - ':man_in_steamy_room_tone5:': '🧖🏿‍♂️', - ':man_judge_light_skin_tone:': '👨🏻‍⚖️', - ':man_judge_tone1:': '👨🏻‍⚖️', - ':man_judge_medium_light_skin_tone:': '👨🏼‍⚖️', - ':man_judge_tone2:': '👨🏼‍⚖️', - ':man_judge_medium_skin_tone:': '👨🏽‍⚖️', - ':man_judge_tone3:': '👨🏽‍⚖️', - ':man_judge_medium_dark_skin_tone:': '👨🏾‍⚖️', - ':man_judge_tone4:': '👨🏾‍⚖️', - ':man_judge_dark_skin_tone:': '👨🏿‍⚖️', - ':man_judge_tone5:': '👨🏿‍⚖️', - ':man_juggling_light_skin_tone:': '🤹🏻‍♂️', - ':man_juggling_tone1:': '🤹🏻‍♂️', - ':man_juggling_medium_light_skin_tone:': '🤹🏼‍♂️', - ':man_juggling_tone2:': '🤹🏼‍♂️', - ':man_juggling_medium_skin_tone:': '🤹🏽‍♂️', - ':man_juggling_tone3:': '🤹🏽‍♂️', - ':man_juggling_medium_dark_skin_tone:': '🤹🏾‍♂️', - ':man_juggling_tone4:': '🤹🏾‍♂️', - ':man_juggling_dark_skin_tone:': '🤹🏿‍♂️', - ':man_juggling_tone5:': '🤹🏿‍♂️', - ':man_kneeling_light_skin_tone:': '🧎🏻‍♂️', - ':man_kneeling_tone1:': '🧎🏻‍♂️', - ':man_kneeling_medium_light_skin_tone:': '🧎🏼‍♂️', - ':man_kneeling_tone2:': '🧎🏼‍♂️', - ':man_kneeling_medium_skin_tone:': '🧎🏽‍♂️', - ':man_kneeling_tone3:': '🧎🏽‍♂️', - ':man_kneeling_medium_dark_skin_tone:': '🧎🏾‍♂️', - ':man_kneeling_tone4:': '🧎🏾‍♂️', - ':man_kneeling_dark_skin_tone:': '🧎🏿‍♂️', - ':man_kneeling_tone5:': '🧎🏿‍♂️', - ':man_lifting_weights_light_skin_tone:': '🏋️🏻‍♂️', - ':man_lifting_weights_tone1:': '🏋️🏻‍♂️', - ':man_lifting_weights_medium_light_skin_tone:': '🏋️🏼‍♂️', - ':man_lifting_weights_tone2:': '🏋️🏼‍♂️', - ':man_lifting_weights_medium_skin_tone:': '🏋️🏽‍♂️', - ':man_lifting_weights_tone3:': '🏋️🏽‍♂️', - ':man_lifting_weights_medium_dark_skin_tone:': '🏋️🏾‍♂️', - ':man_lifting_weights_tone4:': '🏋️🏾‍♂️', - ':man_lifting_weights_dark_skin_tone:': '🏋️🏿‍♂️', - ':man_lifting_weights_tone5:': '🏋️🏿‍♂️', - ':man_mage_light_skin_tone:': '🧙🏻‍♂️', - ':man_mage_tone1:': '🧙🏻‍♂️', - ':man_mage_medium_light_skin_tone:': '🧙🏼‍♂️', - ':man_mage_tone2:': '🧙🏼‍♂️', - ':man_mage_medium_skin_tone:': '🧙🏽‍♂️', - ':man_mage_tone3:': '🧙🏽‍♂️', - ':man_mage_medium_dark_skin_tone:': '🧙🏾‍♂️', - ':man_mage_tone4:': '🧙🏾‍♂️', - ':man_mage_dark_skin_tone:': '🧙🏿‍♂️', - ':man_mage_tone5:': '🧙🏿‍♂️', - ':man_mountain_biking_light_skin_tone:': '🚵🏻‍♂️', - ':man_mountain_biking_tone1:': '🚵🏻‍♂️', - ':man_mountain_biking_medium_light_skin_tone:': '🚵🏼‍♂️', - ':man_mountain_biking_tone2:': '🚵🏼‍♂️', - ':man_mountain_biking_medium_skin_tone:': '🚵🏽‍♂️', - ':man_mountain_biking_tone3:': '🚵🏽‍♂️', - ':man_mountain_biking_medium_dark_skin_tone:': '🚵🏾‍♂️', - ':man_mountain_biking_tone4:': '🚵🏾‍♂️', - ':man_mountain_biking_dark_skin_tone:': '🚵🏿‍♂️', - ':man_mountain_biking_tone5:': '🚵🏿‍♂️', - ':man_pilot_light_skin_tone:': '👨🏻‍✈️', - ':man_pilot_tone1:': '👨🏻‍✈️', - ':man_pilot_medium_light_skin_tone:': '👨🏼‍✈️', - ':man_pilot_tone2:': '👨🏼‍✈️', - ':man_pilot_medium_skin_tone:': '👨🏽‍✈️', - ':man_pilot_tone3:': '👨🏽‍✈️', - ':man_pilot_medium_dark_skin_tone:': '👨🏾‍✈️', - ':man_pilot_tone4:': '👨🏾‍✈️', - ':man_pilot_dark_skin_tone:': '👨🏿‍✈️', - ':man_pilot_tone5:': '👨🏿‍✈️', - ':man_playing_handball_light_skin_tone:': '🤾🏻‍♂️', - ':man_playing_handball_tone1:': '🤾🏻‍♂️', - ':man_playing_handball_medium_light_skin_tone:': '🤾🏼‍♂️', - ':man_playing_handball_tone2:': '🤾🏼‍♂️', - ':man_playing_handball_medium_skin_tone:': '🤾🏽‍♂️', - ':man_playing_handball_tone3:': '🤾🏽‍♂️', - ':man_playing_handball_medium_dark_skin_tone:': '🤾🏾‍♂️', - ':man_playing_handball_tone4:': '🤾🏾‍♂️', - ':man_playing_handball_dark_skin_tone:': '🤾🏿‍♂️', - ':man_playing_handball_tone5:': '🤾🏿‍♂️', - ':man_playing_water_polo_light_skin_tone:': '🤽🏻‍♂️', - ':man_playing_water_polo_tone1:': '🤽🏻‍♂️', - ':man_playing_water_polo_medium_light_skin_tone:': '🤽🏼‍♂️', - ':man_playing_water_polo_tone2:': '🤽🏼‍♂️', - ':man_playing_water_polo_medium_skin_tone:': '🤽🏽‍♂️', - ':man_playing_water_polo_tone3:': '🤽🏽‍♂️', - ':man_playing_water_polo_medium_dark_skin_tone:': '🤽🏾‍♂️', - ':man_playing_water_polo_tone4:': '🤽🏾‍♂️', - ':man_playing_water_polo_dark_skin_tone:': '🤽🏿‍♂️', - ':man_playing_water_polo_tone5:': '🤽🏿‍♂️', - ':man_police_officer_light_skin_tone:': '👮🏻‍♂️', - ':man_police_officer_tone1:': '👮🏻‍♂️', - ':man_police_officer_medium_light_skin_tone:': '👮🏼‍♂️', - ':man_police_officer_tone2:': '👮🏼‍♂️', - ':man_police_officer_medium_skin_tone:': '👮🏽‍♂️', - ':man_police_officer_tone3:': '👮🏽‍♂️', - ':man_police_officer_medium_dark_skin_tone:': '👮🏾‍♂️', - ':man_police_officer_tone4:': '👮🏾‍♂️', - ':man_police_officer_dark_skin_tone:': '👮🏿‍♂️', - ':man_police_officer_tone5:': '👮🏿‍♂️', - ':man_pouting_light_skin_tone:': '🙎🏻‍♂️', - ':man_pouting_tone1:': '🙎🏻‍♂️', - ':man_pouting_medium_light_skin_tone:': '🙎🏼‍♂️', - ':man_pouting_tone2:': '🙎🏼‍♂️', - ':man_pouting_medium_skin_tone:': '🙎🏽‍♂️', - ':man_pouting_tone3:': '🙎🏽‍♂️', - ':man_pouting_medium_dark_skin_tone:': '🙎🏾‍♂️', - ':man_pouting_tone4:': '🙎🏾‍♂️', - ':man_pouting_dark_skin_tone:': '🙎🏿‍♂️', - ':man_pouting_tone5:': '🙎🏿‍♂️', - ':man_raising_hand_light_skin_tone:': '🙋🏻‍♂️', - ':man_raising_hand_tone1:': '🙋🏻‍♂️', - ':man_raising_hand_medium_light_skin_tone:': '🙋🏼‍♂️', - ':man_raising_hand_tone2:': '🙋🏼‍♂️', - ':man_raising_hand_medium_skin_tone:': '🙋🏽‍♂️', - ':man_raising_hand_tone3:': '🙋🏽‍♂️', - ':man_raising_hand_medium_dark_skin_tone:': '🙋🏾‍♂️', - ':man_raising_hand_tone4:': '🙋🏾‍♂️', - ':man_raising_hand_dark_skin_tone:': '🙋🏿‍♂️', - ':man_raising_hand_tone5:': '🙋🏿‍♂️', - ':man_rowing_boat_light_skin_tone:': '🚣🏻‍♂️', - ':man_rowing_boat_tone1:': '🚣🏻‍♂️', - ':man_rowing_boat_medium_light_skin_tone:': '🚣🏼‍♂️', - ':man_rowing_boat_tone2:': '🚣🏼‍♂️', - ':man_rowing_boat_medium_skin_tone:': '🚣🏽‍♂️', - ':man_rowing_boat_tone3:': '🚣🏽‍♂️', - ':man_rowing_boat_medium_dark_skin_tone:': '🚣🏾‍♂️', - ':man_rowing_boat_tone4:': '🚣🏾‍♂️', - ':man_rowing_boat_dark_skin_tone:': '🚣🏿‍♂️', - ':man_rowing_boat_tone5:': '🚣🏿‍♂️', - ':man_running_light_skin_tone:': '🏃🏻‍♂️', - ':man_running_tone1:': '🏃🏻‍♂️', - ':man_running_medium_light_skin_tone:': '🏃🏼‍♂️', - ':man_running_tone2:': '🏃🏼‍♂️', - ':man_running_medium_skin_tone:': '🏃🏽‍♂️', - ':man_running_tone3:': '🏃🏽‍♂️', - ':man_running_medium_dark_skin_tone:': '🏃🏾‍♂️', - ':man_running_tone4:': '🏃🏾‍♂️', - ':man_running_dark_skin_tone:': '🏃🏿‍♂️', - ':man_running_tone5:': '🏃🏿‍♂️', - ':man_shrugging_light_skin_tone:': '🤷🏻‍♂️', - ':man_shrugging_tone1:': '🤷🏻‍♂️', - ':man_shrugging_medium_light_skin_tone:': '🤷🏼‍♂️', - ':man_shrugging_tone2:': '🤷🏼‍♂️', - ':man_shrugging_medium_skin_tone:': '🤷🏽‍♂️', - ':man_shrugging_tone3:': '🤷🏽‍♂️', - ':man_shrugging_medium_dark_skin_tone:': '🤷🏾‍♂️', - ':man_shrugging_tone4:': '🤷🏾‍♂️', - ':man_shrugging_dark_skin_tone:': '🤷🏿‍♂️', - ':man_shrugging_tone5:': '🤷🏿‍♂️', - ':man_standing_light_skin_tone:': '🧍🏻‍♂️', - ':man_standing_tone1:': '🧍🏻‍♂️', - ':man_standing_medium_light_skin_tone:': '🧍🏼‍♂️', - ':man_standing_tone2:': '🧍🏼‍♂️', - ':man_standing_medium_skin_tone:': '🧍🏽‍♂️', - ':man_standing_tone3:': '🧍🏽‍♂️', - ':man_standing_medium_dark_skin_tone:': '🧍🏾‍♂️', - ':man_standing_tone4:': '🧍🏾‍♂️', - ':man_standing_dark_skin_tone:': '🧍🏿‍♂️', - ':man_standing_tone5:': '🧍🏿‍♂️', - ':man_superhero_light_skin_tone:': '🦸🏻‍♂️', - ':man_superhero_tone1:': '🦸🏻‍♂️', - ':man_superhero_medium_light_skin_tone:': '🦸🏼‍♂️', - ':man_superhero_tone2:': '🦸🏼‍♂️', - ':man_superhero_medium_skin_tone:': '🦸🏽‍♂️', - ':man_superhero_tone3:': '🦸🏽‍♂️', - ':man_superhero_medium_dark_skin_tone:': '🦸🏾‍♂️', - ':man_superhero_tone4:': '🦸🏾‍♂️', - ':man_superhero_dark_skin_tone:': '🦸🏿‍♂️', - ':man_superhero_tone5:': '🦸🏿‍♂️', - ':man_supervillain_light_skin_tone:': '🦹🏻‍♂️', - ':man_supervillain_tone1:': '🦹🏻‍♂️', - ':man_supervillain_medium_light_skin_tone:': '🦹🏼‍♂️', - ':man_supervillain_tone2:': '🦹🏼‍♂️', - ':man_supervillain_medium_skin_tone:': '🦹🏽‍♂️', - ':man_supervillain_tone3:': '🦹🏽‍♂️', - ':man_supervillain_medium_dark_skin_tone:': '🦹🏾‍♂️', - ':man_supervillain_tone4:': '🦹🏾‍♂️', - ':man_supervillain_dark_skin_tone:': '🦹🏿‍♂️', - ':man_supervillain_tone5:': '🦹🏿‍♂️', - ':man_surfing_light_skin_tone:': '🏄🏻‍♂️', - ':man_surfing_tone1:': '🏄🏻‍♂️', - ':man_surfing_medium_light_skin_tone:': '🏄🏼‍♂️', - ':man_surfing_tone2:': '🏄🏼‍♂️', - ':man_surfing_medium_skin_tone:': '🏄🏽‍♂️', - ':man_surfing_tone3:': '🏄🏽‍♂️', - ':man_surfing_medium_dark_skin_tone:': '🏄🏾‍♂️', - ':man_surfing_tone4:': '🏄🏾‍♂️', - ':man_surfing_dark_skin_tone:': '🏄🏿‍♂️', - ':man_surfing_tone5:': '🏄🏿‍♂️', - ':man_swimming_light_skin_tone:': '🏊🏻‍♂️', - ':man_swimming_tone1:': '🏊🏻‍♂️', - ':man_swimming_medium_light_skin_tone:': '🏊🏼‍♂️', - ':man_swimming_tone2:': '🏊🏼‍♂️', - ':man_swimming_medium_skin_tone:': '🏊🏽‍♂️', - ':man_swimming_tone3:': '🏊🏽‍♂️', - ':man_swimming_medium_dark_skin_tone:': '🏊🏾‍♂️', - ':man_swimming_tone4:': '🏊🏾‍♂️', - ':man_swimming_dark_skin_tone:': '🏊🏿‍♂️', - ':man_swimming_tone5:': '🏊🏿‍♂️', - ':man_tipping_hand_light_skin_tone:': '💁🏻‍♂️', - ':man_tipping_hand_tone1:': '💁🏻‍♂️', - ':man_tipping_hand_medium_light_skin_tone:': '💁🏼‍♂️', - ':man_tipping_hand_tone2:': '💁🏼‍♂️', - ':man_tipping_hand_medium_skin_tone:': '💁🏽‍♂️', - ':man_tipping_hand_tone3:': '💁🏽‍♂️', - ':man_tipping_hand_medium_dark_skin_tone:': '💁🏾‍♂️', - ':man_tipping_hand_tone4:': '💁🏾‍♂️', - ':man_tipping_hand_dark_skin_tone:': '💁🏿‍♂️', - ':man_tipping_hand_tone5:': '💁🏿‍♂️', - ':man_vampire_light_skin_tone:': '🧛🏻‍♂️', - ':man_vampire_tone1:': '🧛🏻‍♂️', - ':man_vampire_medium_light_skin_tone:': '🧛🏼‍♂️', - ':man_vampire_tone2:': '🧛🏼‍♂️', - ':man_vampire_medium_skin_tone:': '🧛🏽‍♂️', - ':man_vampire_tone3:': '🧛🏽‍♂️', - ':man_vampire_medium_dark_skin_tone:': '🧛🏾‍♂️', - ':man_vampire_tone4:': '🧛🏾‍♂️', - ':man_vampire_dark_skin_tone:': '🧛🏿‍♂️', - ':man_vampire_tone5:': '🧛🏿‍♂️', - ':man_walking_light_skin_tone:': '🚶🏻‍♂️', - ':man_walking_tone1:': '🚶🏻‍♂️', - ':man_walking_medium_light_skin_tone:': '🚶🏼‍♂️', - ':man_walking_tone2:': '🚶🏼‍♂️', - ':man_walking_medium_skin_tone:': '🚶🏽‍♂️', - ':man_walking_tone3:': '🚶🏽‍♂️', - ':man_walking_medium_dark_skin_tone:': '🚶🏾‍♂️', - ':man_walking_tone4:': '🚶🏾‍♂️', - ':man_walking_dark_skin_tone:': '🚶🏿‍♂️', - ':man_walking_tone5:': '🚶🏿‍♂️', - ':man_wearing_turban_light_skin_tone:': '👳🏻‍♂️', - ':man_wearing_turban_tone1:': '👳🏻‍♂️', - ':man_wearing_turban_medium_light_skin_tone:': '👳🏼‍♂️', - ':man_wearing_turban_tone2:': '👳🏼‍♂️', - ':man_wearing_turban_medium_skin_tone:': '👳🏽‍♂️', - ':man_wearing_turban_tone3:': '👳🏽‍♂️', - ':man_wearing_turban_medium_dark_skin_tone:': '👳🏾‍♂️', - ':man_wearing_turban_tone4:': '👳🏾‍♂️', - ':man_wearing_turban_dark_skin_tone:': '👳🏿‍♂️', - ':man_wearing_turban_tone5:': '👳🏿‍♂️', - ':mermaid_light_skin_tone:': '🧜🏻‍♀️', - ':mermaid_tone1:': '🧜🏻‍♀️', - ':mermaid_medium_light_skin_tone:': '🧜🏼‍♀️', - ':mermaid_tone2:': '🧜🏼‍♀️', - ':mermaid_medium_skin_tone:': '🧜🏽‍♀️', - ':mermaid_tone3:': '🧜🏽‍♀️', - ':mermaid_medium_dark_skin_tone:': '🧜🏾‍♀️', - ':mermaid_tone4:': '🧜🏾‍♀️', - ':mermaid_dark_skin_tone:': '🧜🏿‍♀️', - ':mermaid_tone5:': '🧜🏿‍♀️', - ':merman_light_skin_tone:': '🧜🏻‍♂️', - ':merman_tone1:': '🧜🏻‍♂️', - ':merman_medium_light_skin_tone:': '🧜🏼‍♂️', - ':merman_tone2:': '🧜🏼‍♂️', - ':merman_medium_skin_tone:': '🧜🏽‍♂️', - ':merman_tone3:': '🧜🏽‍♂️', - ':merman_medium_dark_skin_tone:': '🧜🏾‍♂️', - ':merman_tone4:': '🧜🏾‍♂️', - ':merman_dark_skin_tone:': '🧜🏿‍♂️', - ':merman_tone5:': '🧜🏿‍♂️', - ':woman_biking_light_skin_tone:': '🚴🏻‍♀️', - ':woman_biking_tone1:': '🚴🏻‍♀️', - ':woman_biking_medium_light_skin_tone:': '🚴🏼‍♀️', - ':woman_biking_tone2:': '🚴🏼‍♀️', - ':woman_biking_medium_skin_tone:': '🚴🏽‍♀️', - ':woman_biking_tone3:': '🚴🏽‍♀️', - ':woman_biking_medium_dark_skin_tone:': '🚴🏾‍♀️', - ':woman_biking_tone4:': '🚴🏾‍♀️', - ':woman_biking_dark_skin_tone:': '🚴🏿‍♀️', - ':woman_biking_tone5:': '🚴🏿‍♀️', - ':woman_bowing_light_skin_tone:': '🙇🏻‍♀️', - ':woman_bowing_tone1:': '🙇🏻‍♀️', - ':woman_bowing_medium_light_skin_tone:': '🙇🏼‍♀️', - ':woman_bowing_tone2:': '🙇🏼‍♀️', - ':woman_bowing_medium_skin_tone:': '🙇🏽‍♀️', - ':woman_bowing_tone3:': '🙇🏽‍♀️', - ':woman_bowing_medium_dark_skin_tone:': '🙇🏾‍♀️', - ':woman_bowing_tone4:': '🙇🏾‍♀️', - ':woman_bowing_dark_skin_tone:': '🙇🏿‍♀️', - ':woman_bowing_tone5:': '🙇🏿‍♀️', - ':woman_cartwheeling_light_skin_tone:': '🤸🏻‍♀️', - ':woman_cartwheeling_tone1:': '🤸🏻‍♀️', - ':woman_cartwheeling_medium_light_skin_tone:': '🤸🏼‍♀️', - ':woman_cartwheeling_tone2:': '🤸🏼‍♀️', - ':woman_cartwheeling_medium_skin_tone:': '🤸🏽‍♀️', - ':woman_cartwheeling_tone3:': '🤸🏽‍♀️', - ':woman_cartwheeling_medium_dark_skin_tone:': '🤸🏾‍♀️', - ':woman_cartwheeling_tone4:': '🤸🏾‍♀️', - ':woman_cartwheeling_dark_skin_tone:': '🤸🏿‍♀️', - ':woman_cartwheeling_tone5:': '🤸🏿‍♀️', - ':woman_climbing_light_skin_tone:': '🧗🏻‍♀️', - ':woman_climbing_tone1:': '🧗🏻‍♀️', - ':woman_climbing_medium_light_skin_tone:': '🧗🏼‍♀️', - ':woman_climbing_tone2:': '🧗🏼‍♀️', - ':woman_climbing_medium_skin_tone:': '🧗🏽‍♀️', - ':woman_climbing_tone3:': '🧗🏽‍♀️', - ':woman_climbing_medium_dark_skin_tone:': '🧗🏾‍♀️', - ':woman_climbing_tone4:': '🧗🏾‍♀️', - ':woman_climbing_dark_skin_tone:': '🧗🏿‍♀️', - ':woman_climbing_tone5:': '🧗🏿‍♀️', - ':woman_construction_worker_light_skin_tone:': '👷🏻‍♀️', - ':woman_construction_worker_tone1:': '👷🏻‍♀️', - ':woman_construction_worker_medium_light_skin_tone:': '👷🏼‍♀️', - ':woman_construction_worker_tone2:': '👷🏼‍♀️', - ':woman_construction_worker_medium_skin_tone:': '👷🏽‍♀️', - ':woman_construction_worker_tone3:': '👷🏽‍♀️', - ':woman_construction_worker_medium_dark_skin_tone:': '👷🏾‍♀️', - ':woman_construction_worker_tone4:': '👷🏾‍♀️', - ':woman_construction_worker_dark_skin_tone:': '👷🏿‍♀️', - ':woman_construction_worker_tone5:': '👷🏿‍♀️', - ':woman_detective_light_skin_tone:': '🕵️🏻‍♀️', - ':woman_detective_tone1:': '🕵️🏻‍♀️', - ':woman_detective_medium_light_skin_tone:': '🕵️🏼‍♀️', - ':woman_detective_tone2:': '🕵️🏼‍♀️', - ':woman_detective_medium_skin_tone:': '🕵️🏽‍♀️', - ':woman_detective_tone3:': '🕵️🏽‍♀️', - ':woman_detective_medium_dark_skin_tone:': '🕵️🏾‍♀️', - ':woman_detective_tone4:': '🕵️🏾‍♀️', - ':woman_detective_dark_skin_tone:': '🕵️🏿‍♀️', - ':woman_detective_tone5:': '🕵️🏿‍♀️', - ':woman_elf_light_skin_tone:': '🧝🏻‍♀️', - ':woman_elf_tone1:': '🧝🏻‍♀️', - ':woman_elf_medium_light_skin_tone:': '🧝🏼‍♀️', - ':woman_elf_tone2:': '🧝🏼‍♀️', - ':woman_elf_medium_skin_tone:': '🧝🏽‍♀️', - ':woman_elf_tone3:': '🧝🏽‍♀️', - ':woman_elf_medium_dark_skin_tone:': '🧝🏾‍♀️', - ':woman_elf_tone4:': '🧝🏾‍♀️', - ':woman_elf_dark_skin_tone:': '🧝🏿‍♀️', - ':woman_elf_tone5:': '🧝🏿‍♀️', - ':woman_facepalming_light_skin_tone:': '🤦🏻‍♀️', - ':woman_facepalming_tone1:': '🤦🏻‍♀️', - ':woman_facepalming_medium_light_skin_tone:': '🤦🏼‍♀️', - ':woman_facepalming_tone2:': '🤦🏼‍♀️', - ':woman_facepalming_medium_skin_tone:': '🤦🏽‍♀️', - ':woman_facepalming_tone3:': '🤦🏽‍♀️', - ':woman_facepalming_medium_dark_skin_tone:': '🤦🏾‍♀️', - ':woman_facepalming_tone4:': '🤦🏾‍♀️', - ':woman_facepalming_dark_skin_tone:': '🤦🏿‍♀️', - ':woman_facepalming_tone5:': '🤦🏿‍♀️', - ':woman_fairy_light_skin_tone:': '🧚🏻‍♀️', - ':woman_fairy_tone1:': '🧚🏻‍♀️', - ':woman_fairy_medium_light_skin_tone:': '🧚🏼‍♀️', - ':woman_fairy_tone2:': '🧚🏼‍♀️', - ':woman_fairy_medium_skin_tone:': '🧚🏽‍♀️', - ':woman_fairy_tone3:': '🧚🏽‍♀️', - ':woman_fairy_medium_dark_skin_tone:': '🧚🏾‍♀️', - ':woman_fairy_tone4:': '🧚🏾‍♀️', - ':woman_fairy_dark_skin_tone:': '🧚🏿‍♀️', - ':woman_fairy_tone5:': '🧚🏿‍♀️', - ':woman_frowning_light_skin_tone:': '🙍🏻‍♀️', - ':woman_frowning_tone1:': '🙍🏻‍♀️', - ':woman_frowning_medium_light_skin_tone:': '🙍🏼‍♀️', - ':woman_frowning_tone2:': '🙍🏼‍♀️', - ':woman_frowning_medium_skin_tone:': '🙍🏽‍♀️', - ':woman_frowning_tone3:': '🙍🏽‍♀️', - ':woman_frowning_medium_dark_skin_tone:': '🙍🏾‍♀️', - ':woman_frowning_tone4:': '🙍🏾‍♀️', - ':woman_frowning_dark_skin_tone:': '🙍🏿‍♀️', - ':woman_frowning_tone5:': '🙍🏿‍♀️', - ':woman_gesturing_no_light_skin_tone:': '🙅🏻‍♀️', - ':woman_gesturing_no_tone1:': '🙅🏻‍♀️', - ':woman_gesturing_no_medium_light_skin_tone:': '🙅🏼‍♀️', - ':woman_gesturing_no_tone2:': '🙅🏼‍♀️', - ':woman_gesturing_no_medium_skin_tone:': '🙅🏽‍♀️', - ':woman_gesturing_no_tone3:': '🙅🏽‍♀️', - ':woman_gesturing_no_medium_dark_skin_tone:': '🙅🏾‍♀️', - ':woman_gesturing_no_tone4:': '🙅🏾‍♀️', - ':woman_gesturing_no_dark_skin_tone:': '🙅🏿‍♀️', - ':woman_gesturing_no_tone5:': '🙅🏿‍♀️', - ':woman_gesturing_ok_light_skin_tone:': '🙆🏻‍♀️', - ':woman_gesturing_ok_tone1:': '🙆🏻‍♀️', - ':woman_gesturing_ok_medium_light_skin_tone:': '🙆🏼‍♀️', - ':woman_gesturing_ok_tone2:': '🙆🏼‍♀️', - ':woman_gesturing_ok_medium_skin_tone:': '🙆🏽‍♀️', - ':woman_gesturing_ok_tone3:': '🙆🏽‍♀️', - ':woman_gesturing_ok_medium_dark_skin_tone:': '🙆🏾‍♀️', - ':woman_gesturing_ok_tone4:': '🙆🏾‍♀️', - ':woman_gesturing_ok_dark_skin_tone:': '🙆🏿‍♀️', - ':woman_gesturing_ok_tone5:': '🙆🏿‍♀️', - ':woman_getting_face_massage_light_skin_tone:': '💆🏻‍♀️', - ':woman_getting_face_massage_tone1:': '💆🏻‍♀️', - ':woman_getting_face_massage_medium_light_skin_tone:': '💆🏼‍♀️', - ':woman_getting_face_massage_tone2:': '💆🏼‍♀️', - ':woman_getting_face_massage_medium_skin_tone:': '💆🏽‍♀️', - ':woman_getting_face_massage_tone3:': '💆🏽‍♀️', - ':woman_getting_face_massage_medium_dark_skin_tone:': '💆🏾‍♀️', - ':woman_getting_face_massage_tone4:': '💆🏾‍♀️', - ':woman_getting_face_massage_dark_skin_tone:': '💆🏿‍♀️', - ':woman_getting_face_massage_tone5:': '💆🏿‍♀️', - ':woman_getting_haircut_light_skin_tone:': '💇🏻‍♀️', - ':woman_getting_haircut_tone1:': '💇🏻‍♀️', - ':woman_getting_haircut_medium_light_skin_tone:': '💇🏼‍♀️', - ':woman_getting_haircut_tone2:': '💇🏼‍♀️', - ':woman_getting_haircut_medium_skin_tone:': '💇🏽‍♀️', - ':woman_getting_haircut_tone3:': '💇🏽‍♀️', - ':woman_getting_haircut_medium_dark_skin_tone:': '💇🏾‍♀️', - ':woman_getting_haircut_tone4:': '💇🏾‍♀️', - ':woman_getting_haircut_dark_skin_tone:': '💇🏿‍♀️', - ':woman_getting_haircut_tone5:': '💇🏿‍♀️', - ':woman_golfing_light_skin_tone:': '🏌️🏻‍♀️', - ':woman_golfing_tone1:': '🏌️🏻‍♀️', - ':woman_golfing_medium_light_skin_tone:': '🏌️🏼‍♀️', - ':woman_golfing_tone2:': '🏌️🏼‍♀️', - ':woman_golfing_medium_skin_tone:': '🏌️🏽‍♀️', - ':woman_golfing_tone3:': '🏌️🏽‍♀️', - ':woman_golfing_medium_dark_skin_tone:': '🏌️🏾‍♀️', - ':woman_golfing_tone4:': '🏌️🏾‍♀️', - ':woman_golfing_dark_skin_tone:': '🏌️🏿‍♀️', - ':woman_golfing_tone5:': '🏌️🏿‍♀️', - ':woman_guard_light_skin_tone:': '💂🏻‍♀️', - ':woman_guard_tone1:': '💂🏻‍♀️', - ':woman_guard_medium_light_skin_tone:': '💂🏼‍♀️', - ':woman_guard_tone2:': '💂🏼‍♀️', - ':woman_guard_medium_skin_tone:': '💂🏽‍♀️', - ':woman_guard_tone3:': '💂🏽‍♀️', - ':woman_guard_medium_dark_skin_tone:': '💂🏾‍♀️', - ':woman_guard_tone4:': '💂🏾‍♀️', - ':woman_guard_dark_skin_tone:': '💂🏿‍♀️', - ':woman_guard_tone5:': '💂🏿‍♀️', - ':woman_health_worker_light_skin_tone:': '👩🏻‍⚕️', - ':woman_health_worker_tone1:': '👩🏻‍⚕️', - ':woman_health_worker_medium_light_skin_tone:': '👩🏼‍⚕️', - ':woman_health_worker_tone2:': '👩🏼‍⚕️', - ':woman_health_worker_medium_skin_tone:': '👩🏽‍⚕️', - ':woman_health_worker_tone3:': '👩🏽‍⚕️', - ':woman_health_worker_medium_dark_skin_tone:': '👩🏾‍⚕️', - ':woman_health_worker_tone4:': '👩🏾‍⚕️', - ':woman_health_worker_dark_skin_tone:': '👩🏿‍⚕️', - ':woman_health_worker_tone5:': '👩🏿‍⚕️', - ':woman_in_lotus_position_light_skin_tone:': '🧘🏻‍♀️', - ':woman_in_lotus_position_tone1:': '🧘🏻‍♀️', - ':woman_in_lotus_position_medium_light_skin_tone:': '🧘🏼‍♀️', - ':woman_in_lotus_position_tone2:': '🧘🏼‍♀️', - ':woman_in_lotus_position_medium_skin_tone:': '🧘🏽‍♀️', - ':woman_in_lotus_position_tone3:': '🧘🏽‍♀️', - ':woman_in_lotus_position_medium_dark_skin_tone:': '🧘🏾‍♀️', - ':woman_in_lotus_position_tone4:': '🧘🏾‍♀️', - ':woman_in_lotus_position_dark_skin_tone:': '🧘🏿‍♀️', - ':woman_in_lotus_position_tone5:': '🧘🏿‍♀️', - ':woman_in_steamy_room_light_skin_tone:': '🧖🏻‍♀️', - ':woman_in_steamy_room_tone1:': '🧖🏻‍♀️', - ':woman_in_steamy_room_medium_light_skin_tone:': '🧖🏼‍♀️', - ':woman_in_steamy_room_tone2:': '🧖🏼‍♀️', - ':woman_in_steamy_room_medium_skin_tone:': '🧖🏽‍♀️', - ':woman_in_steamy_room_tone3:': '🧖🏽‍♀️', - ':woman_in_steamy_room_medium_dark_skin_tone:': '🧖🏾‍♀️', - ':woman_in_steamy_room_tone4:': '🧖🏾‍♀️', - ':woman_in_steamy_room_dark_skin_tone:': '🧖🏿‍♀️', - ':woman_in_steamy_room_tone5:': '🧖🏿‍♀️', - ':woman_judge_light_skin_tone:': '👩🏻‍⚖️', - ':woman_judge_tone1:': '👩🏻‍⚖️', - ':woman_judge_medium_light_skin_tone:': '👩🏼‍⚖️', - ':woman_judge_tone2:': '👩🏼‍⚖️', - ':woman_judge_medium_skin_tone:': '👩🏽‍⚖️', - ':woman_judge_tone3:': '👩🏽‍⚖️', - ':woman_judge_medium_dark_skin_tone:': '👩🏾‍⚖️', - ':woman_judge_tone4:': '👩🏾‍⚖️', - ':woman_judge_dark_skin_tone:': '👩🏿‍⚖️', - ':woman_judge_tone5:': '👩🏿‍⚖️', - ':woman_juggling_light_skin_tone:': '🤹🏻‍♀️', - ':woman_juggling_tone1:': '🤹🏻‍♀️', - ':woman_juggling_medium_light_skin_tone:': '🤹🏼‍♀️', - ':woman_juggling_tone2:': '🤹🏼‍♀️', - ':woman_juggling_medium_skin_tone:': '🤹🏽‍♀️', - ':woman_juggling_tone3:': '🤹🏽‍♀️', - ':woman_juggling_medium_dark_skin_tone:': '🤹🏾‍♀️', - ':woman_juggling_tone4:': '🤹🏾‍♀️', - ':woman_juggling_dark_skin_tone:': '🤹🏿‍♀️', - ':woman_juggling_tone5:': '🤹🏿‍♀️', - ':woman_kneeling_light_skin_tone:': '🧎🏻‍♀️', - ':woman_kneeling_tone1:': '🧎🏻‍♀️', - ':woman_kneeling_medium_light_skin_tone:': '🧎🏼‍♀️', - ':woman_kneeling_tone2:': '🧎🏼‍♀️', - ':woman_kneeling_medium_skin_tone:': '🧎🏽‍♀️', - ':woman_kneeling_tone3:': '🧎🏽‍♀️', - ':woman_kneeling_medium_dark_skin_tone:': '🧎🏾‍♀️', - ':woman_kneeling_tone4:': '🧎🏾‍♀️', - ':woman_kneeling_dark_skin_tone:': '🧎🏿‍♀️', - ':woman_kneeling_tone5:': '🧎🏿‍♀️', - ':woman_lifting_weights_light_skin_tone:': '🏋️🏻‍♀️', - ':woman_lifting_weights_tone1:': '🏋️🏻‍♀️', - ':woman_lifting_weights_medium_light_skin_tone:': '🏋️🏼‍♀️', - ':woman_lifting_weights_tone2:': '🏋️🏼‍♀️', - ':woman_lifting_weights_medium_skin_tone:': '🏋️🏽‍♀️', - ':woman_lifting_weights_tone3:': '🏋️🏽‍♀️', - ':woman_lifting_weights_medium_dark_skin_tone:': '🏋️🏾‍♀️', - ':woman_lifting_weights_tone4:': '🏋️🏾‍♀️', - ':woman_lifting_weights_dark_skin_tone:': '🏋️🏿‍♀️', - ':woman_lifting_weights_tone5:': '🏋️🏿‍♀️', - ':woman_mage_light_skin_tone:': '🧙🏻‍♀️', - ':woman_mage_tone1:': '🧙🏻‍♀️', - ':woman_mage_medium_light_skin_tone:': '🧙🏼‍♀️', - ':woman_mage_tone2:': '🧙🏼‍♀️', - ':woman_mage_medium_skin_tone:': '🧙🏽‍♀️', - ':woman_mage_tone3:': '🧙🏽‍♀️', - ':woman_mage_medium_dark_skin_tone:': '🧙🏾‍♀️', - ':woman_mage_tone4:': '🧙🏾‍♀️', - ':woman_mage_dark_skin_tone:': '🧙🏿‍♀️', - ':woman_mage_tone5:': '🧙🏿‍♀️', - ':woman_mountain_biking_light_skin_tone:': '🚵🏻‍♀️', - ':woman_mountain_biking_tone1:': '🚵🏻‍♀️', - ':woman_mountain_biking_medium_light_skin_tone:': '🚵🏼‍♀️', - ':woman_mountain_biking_tone2:': '🚵🏼‍♀️', - ':woman_mountain_biking_medium_skin_tone:': '🚵🏽‍♀️', - ':woman_mountain_biking_tone3:': '🚵🏽‍♀️', - ':woman_mountain_biking_medium_dark_skin_tone:': '🚵🏾‍♀️', - ':woman_mountain_biking_tone4:': '🚵🏾‍♀️', - ':woman_mountain_biking_dark_skin_tone:': '🚵🏿‍♀️', - ':woman_mountain_biking_tone5:': '🚵🏿‍♀️', - ':woman_pilot_light_skin_tone:': '👩🏻‍✈️', - ':woman_pilot_tone1:': '👩🏻‍✈️', - ':woman_pilot_medium_light_skin_tone:': '👩🏼‍✈️', - ':woman_pilot_tone2:': '👩🏼‍✈️', - ':woman_pilot_medium_skin_tone:': '👩🏽‍✈️', - ':woman_pilot_tone3:': '👩🏽‍✈️', - ':woman_pilot_medium_dark_skin_tone:': '👩🏾‍✈️', - ':woman_pilot_tone4:': '👩🏾‍✈️', - ':woman_pilot_dark_skin_tone:': '👩🏿‍✈️', - ':woman_pilot_tone5:': '👩🏿‍✈️', - ':woman_playing_handball_light_skin_tone:': '🤾🏻‍♀️', - ':woman_playing_handball_tone1:': '🤾🏻‍♀️', - ':woman_playing_handball_medium_light_skin_tone:': '🤾🏼‍♀️', - ':woman_playing_handball_tone2:': '🤾🏼‍♀️', - ':woman_playing_handball_medium_skin_tone:': '🤾🏽‍♀️', - ':woman_playing_handball_tone3:': '🤾🏽‍♀️', - ':woman_playing_handball_medium_dark_skin_tone:': '🤾🏾‍♀️', - ':woman_playing_handball_tone4:': '🤾🏾‍♀️', - ':woman_playing_handball_dark_skin_tone:': '🤾🏿‍♀️', - ':woman_playing_handball_tone5:': '🤾🏿‍♀️', - ':woman_playing_water_polo_light_skin_tone:': '🤽🏻‍♀️', - ':woman_playing_water_polo_tone1:': '🤽🏻‍♀️', - ':woman_playing_water_polo_medium_light_skin_tone:': '🤽🏼‍♀️', - ':woman_playing_water_polo_tone2:': '🤽🏼‍♀️', - ':woman_playing_water_polo_medium_skin_tone:': '🤽🏽‍♀️', - ':woman_playing_water_polo_tone3:': '🤽🏽‍♀️', - ':woman_playing_water_polo_medium_dark_skin_tone:': '🤽🏾‍♀️', - ':woman_playing_water_polo_tone4:': '🤽🏾‍♀️', - ':woman_playing_water_polo_dark_skin_tone:': '🤽🏿‍♀️', - ':woman_playing_water_polo_tone5:': '🤽🏿‍♀️', - ':woman_police_officer_light_skin_tone:': '👮🏻‍♀️', - ':woman_police_officer_tone1:': '👮🏻‍♀️', - ':woman_police_officer_medium_light_skin_tone:': '👮🏼‍♀️', - ':woman_police_officer_tone2:': '👮🏼‍♀️', - ':woman_police_officer_medium_skin_tone:': '👮🏽‍♀️', - ':woman_police_officer_tone3:': '👮🏽‍♀️', - ':woman_police_officer_medium_dark_skin_tone:': '👮🏾‍♀️', - ':woman_police_officer_tone4:': '👮🏾‍♀️', - ':woman_police_officer_dark_skin_tone:': '👮🏿‍♀️', - ':woman_police_officer_tone5:': '👮🏿‍♀️', - ':woman_pouting_light_skin_tone:': '🙎🏻‍♀️', - ':woman_pouting_tone1:': '🙎🏻‍♀️', - ':woman_pouting_medium_light_skin_tone:': '🙎🏼‍♀️', - ':woman_pouting_tone2:': '🙎🏼‍♀️', - ':woman_pouting_medium_skin_tone:': '🙎🏽‍♀️', - ':woman_pouting_tone3:': '🙎🏽‍♀️', - ':woman_pouting_medium_dark_skin_tone:': '🙎🏾‍♀️', - ':woman_pouting_tone4:': '🙎🏾‍♀️', - ':woman_pouting_dark_skin_tone:': '🙎🏿‍♀️', - ':woman_pouting_tone5:': '🙎🏿‍♀️', - ':woman_raising_hand_light_skin_tone:': '🙋🏻‍♀️', - ':woman_raising_hand_tone1:': '🙋🏻‍♀️', - ':woman_raising_hand_medium_light_skin_tone:': '🙋🏼‍♀️', - ':woman_raising_hand_tone2:': '🙋🏼‍♀️', - ':woman_raising_hand_medium_skin_tone:': '🙋🏽‍♀️', - ':woman_raising_hand_tone3:': '🙋🏽‍♀️', - ':woman_raising_hand_medium_dark_skin_tone:': '🙋🏾‍♀️', - ':woman_raising_hand_tone4:': '🙋🏾‍♀️', - ':woman_raising_hand_dark_skin_tone:': '🙋🏿‍♀️', - ':woman_raising_hand_tone5:': '🙋🏿‍♀️', - ':woman_rowing_boat_light_skin_tone:': '🚣🏻‍♀️', - ':woman_rowing_boat_tone1:': '🚣🏻‍♀️', - ':woman_rowing_boat_medium_light_skin_tone:': '🚣🏼‍♀️', - ':woman_rowing_boat_tone2:': '🚣🏼‍♀️', - ':woman_rowing_boat_medium_skin_tone:': '🚣🏽‍♀️', - ':woman_rowing_boat_tone3:': '🚣🏽‍♀️', - ':woman_rowing_boat_medium_dark_skin_tone:': '🚣🏾‍♀️', - ':woman_rowing_boat_tone4:': '🚣🏾‍♀️', - ':woman_rowing_boat_dark_skin_tone:': '🚣🏿‍♀️', - ':woman_rowing_boat_tone5:': '🚣🏿‍♀️', - ':woman_running_light_skin_tone:': '🏃🏻‍♀️', - ':woman_running_tone1:': '🏃🏻‍♀️', - ':woman_running_medium_light_skin_tone:': '🏃🏼‍♀️', - ':woman_running_tone2:': '🏃🏼‍♀️', - ':woman_running_medium_skin_tone:': '🏃🏽‍♀️', - ':woman_running_tone3:': '🏃🏽‍♀️', - ':woman_running_medium_dark_skin_tone:': '🏃🏾‍♀️', - ':woman_running_tone4:': '🏃🏾‍♀️', - ':woman_running_dark_skin_tone:': '🏃🏿‍♀️', - ':woman_running_tone5:': '🏃🏿‍♀️', - ':woman_shrugging_light_skin_tone:': '🤷🏻‍♀️', - ':woman_shrugging_tone1:': '🤷🏻‍♀️', - ':woman_shrugging_medium_light_skin_tone:': '🤷🏼‍♀️', - ':woman_shrugging_tone2:': '🤷🏼‍♀️', - ':woman_shrugging_medium_skin_tone:': '🤷🏽‍♀️', - ':woman_shrugging_tone3:': '🤷🏽‍♀️', - ':woman_shrugging_medium_dark_skin_tone:': '🤷🏾‍♀️', - ':woman_shrugging_tone4:': '🤷🏾‍♀️', - ':woman_shrugging_dark_skin_tone:': '🤷🏿‍♀️', - ':woman_shrugging_tone5:': '🤷🏿‍♀️', - ':woman_standing_light_skin_tone:': '🧍🏻‍♀️', - ':woman_standing_tone1:': '🧍🏻‍♀️', - ':woman_standing_medium_light_skin_tone:': '🧍🏼‍♀️', - ':woman_standing_tone2:': '🧍🏼‍♀️', - ':woman_standing_medium_skin_tone:': '🧍🏽‍♀️', - ':woman_standing_tone3:': '🧍🏽‍♀️', - ':woman_standing_medium_dark_skin_tone:': '🧍🏾‍♀️', - ':woman_standing_tone4:': '🧍🏾‍♀️', - ':woman_standing_dark_skin_tone:': '🧍🏿‍♀️', - ':woman_standing_tone5:': '🧍🏿‍♀️', - ':woman_superhero_light_skin_tone:': '🦸🏻‍♀️', - ':woman_superhero_tone1:': '🦸🏻‍♀️', - ':woman_superhero_medium_light_skin_tone:': '🦸🏼‍♀️', - ':woman_superhero_tone2:': '🦸🏼‍♀️', - ':woman_superhero_medium_skin_tone:': '🦸🏽‍♀️', - ':woman_superhero_tone3:': '🦸🏽‍♀️', - ':woman_superhero_medium_dark_skin_tone:': '🦸🏾‍♀️', - ':woman_superhero_tone4:': '🦸🏾‍♀️', - ':woman_superhero_dark_skin_tone:': '🦸🏿‍♀️', - ':woman_superhero_tone5:': '🦸🏿‍♀️', - ':woman_supervillain_light_skin_tone:': '🦹🏻‍♀️', - ':woman_supervillain_tone1:': '🦹🏻‍♀️', - ':woman_supervillain_medium_light_skin_tone:': '🦹🏼‍♀️', - ':woman_supervillain_tone2:': '🦹🏼‍♀️', - ':woman_supervillain_medium_skin_tone:': '🦹🏽‍♀️', - ':woman_supervillain_tone3:': '🦹🏽‍♀️', - ':woman_supervillain_medium_dark_skin_tone:': '🦹🏾‍♀️', - ':woman_supervillain_tone4:': '🦹🏾‍♀️', - ':woman_supervillain_dark_skin_tone:': '🦹🏿‍♀️', - ':woman_supervillain_tone5:': '🦹🏿‍♀️', - ':woman_surfing_light_skin_tone:': '🏄🏻‍♀️', - ':woman_surfing_tone1:': '🏄🏻‍♀️', - ':woman_surfing_medium_light_skin_tone:': '🏄🏼‍♀️', - ':woman_surfing_tone2:': '🏄🏼‍♀️', - ':woman_surfing_medium_skin_tone:': '🏄🏽‍♀️', - ':woman_surfing_tone3:': '🏄🏽‍♀️', - ':woman_surfing_medium_dark_skin_tone:': '🏄🏾‍♀️', - ':woman_surfing_tone4:': '🏄🏾‍♀️', - ':woman_surfing_dark_skin_tone:': '🏄🏿‍♀️', - ':woman_surfing_tone5:': '🏄🏿‍♀️', - ':woman_swimming_light_skin_tone:': '🏊🏻‍♀️', - ':woman_swimming_tone1:': '🏊🏻‍♀️', - ':woman_swimming_medium_light_skin_tone:': '🏊🏼‍♀️', - ':woman_swimming_tone2:': '🏊🏼‍♀️', - ':woman_swimming_medium_skin_tone:': '🏊🏽‍♀️', - ':woman_swimming_tone3:': '🏊🏽‍♀️', - ':woman_swimming_medium_dark_skin_tone:': '🏊🏾‍♀️', - ':woman_swimming_tone4:': '🏊🏾‍♀️', - ':woman_swimming_dark_skin_tone:': '🏊🏿‍♀️', - ':woman_swimming_tone5:': '🏊🏿‍♀️', - ':woman_tipping_hand_light_skin_tone:': '💁🏻‍♀️', - ':woman_tipping_hand_tone1:': '💁🏻‍♀️', - ':woman_tipping_hand_medium_light_skin_tone:': '💁🏼‍♀️', - ':woman_tipping_hand_tone2:': '💁🏼‍♀️', - ':woman_tipping_hand_medium_skin_tone:': '💁🏽‍♀️', - ':woman_tipping_hand_tone3:': '💁🏽‍♀️', - ':woman_tipping_hand_medium_dark_skin_tone:': '💁🏾‍♀️', - ':woman_tipping_hand_tone4:': '💁🏾‍♀️', - ':woman_tipping_hand_dark_skin_tone:': '💁🏿‍♀️', - ':woman_tipping_hand_tone5:': '💁🏿‍♀️', - ':woman_vampire_light_skin_tone:': '🧛🏻‍♀️', - ':woman_vampire_tone1:': '🧛🏻‍♀️', - ':woman_vampire_medium_light_skin_tone:': '🧛🏼‍♀️', - ':woman_vampire_tone2:': '🧛🏼‍♀️', - ':woman_vampire_medium_skin_tone:': '🧛🏽‍♀️', - ':woman_vampire_tone3:': '🧛🏽‍♀️', - ':woman_vampire_medium_dark_skin_tone:': '🧛🏾‍♀️', - ':woman_vampire_tone4:': '🧛🏾‍♀️', - ':woman_vampire_dark_skin_tone:': '🧛🏿‍♀️', - ':woman_vampire_tone5:': '🧛🏿‍♀️', - ':woman_walking_light_skin_tone:': '🚶🏻‍♀️', - ':woman_walking_tone1:': '🚶🏻‍♀️', - ':woman_walking_medium_light_skin_tone:': '🚶🏼‍♀️', - ':woman_walking_tone2:': '🚶🏼‍♀️', - ':woman_walking_medium_skin_tone:': '🚶🏽‍♀️', - ':woman_walking_tone3:': '🚶🏽‍♀️', - ':woman_walking_medium_dark_skin_tone:': '🚶🏾‍♀️', - ':woman_walking_tone4:': '🚶🏾‍♀️', - ':woman_walking_dark_skin_tone:': '🚶🏿‍♀️', - ':woman_walking_tone5:': '🚶🏿‍♀️', - ':woman_wearing_turban_light_skin_tone:': '👳🏻‍♀️', - ':woman_wearing_turban_tone1:': '👳🏻‍♀️', - ':woman_wearing_turban_medium_light_skin_tone:': '👳🏼‍♀️', - ':woman_wearing_turban_tone2:': '👳🏼‍♀️', - ':woman_wearing_turban_medium_skin_tone:': '👳🏽‍♀️', - ':woman_wearing_turban_tone3:': '👳🏽‍♀️', - ':woman_wearing_turban_medium_dark_skin_tone:': '👳🏾‍♀️', - ':woman_wearing_turban_tone4:': '👳🏾‍♀️', - ':woman_wearing_turban_dark_skin_tone:': '👳🏿‍♀️', - ':woman_wearing_turban_tone5:': '👳🏿‍♀️', - ':man_bouncing_ball_light_skin_tone:': '⛹️🏻‍♂️', - ':man_bouncing_ball_tone1:': '⛹️🏻‍♂️', - ':man_bouncing_ball_medium_light_skin_tone:': '⛹️🏼‍♂️', - ':man_bouncing_ball_tone2:': '⛹️🏼‍♂️', - ':man_bouncing_ball_medium_skin_tone:': '⛹️🏽‍♂️', - ':man_bouncing_ball_tone3:': '⛹️🏽‍♂️', - ':man_bouncing_ball_medium_dark_skin_tone:': '⛹️🏾‍♂️', - ':man_bouncing_ball_tone4:': '⛹️🏾‍♂️', - ':man_bouncing_ball_dark_skin_tone:': '⛹️🏿‍♂️', - ':man_bouncing_ball_tone5:': '⛹️🏿‍♂️', - ':woman_bouncing_ball_light_skin_tone:': '⛹️🏻‍♀️', - ':woman_bouncing_ball_tone1:': '⛹️🏻‍♀️', - ':woman_bouncing_ball_medium_light_skin_tone:': '⛹️🏼‍♀️', - ':woman_bouncing_ball_tone2:': '⛹️🏼‍♀️', - ':woman_bouncing_ball_medium_skin_tone:': '⛹️🏽‍♀️', - ':woman_bouncing_ball_tone3:': '⛹️🏽‍♀️', - ':woman_bouncing_ball_medium_dark_skin_tone:': '⛹️🏾‍♀️', - ':woman_bouncing_ball_tone4:': '⛹️🏾‍♀️', - ':woman_bouncing_ball_dark_skin_tone:': '⛹️🏿‍♀️', - ':woman_bouncing_ball_tone5:': '⛹️🏿‍♀️', - ':adult_light_skin_tone:': '🧑🏻', - ':adult_tone1:': '🧑🏻', - ':adult_medium_light_skin_tone:': '🧑🏼', - ':adult_tone2:': '🧑🏼', - ':adult_medium_skin_tone:': '🧑🏽', - ':adult_tone3:': '🧑🏽', - ':adult_medium_dark_skin_tone:': '🧑🏾', - ':adult_tone4:': '🧑🏾', - ':adult_dark_skin_tone:': '🧑🏿', - ':adult_tone5:': '🧑🏿', - ':angel_tone1:': '👼🏻', - ':angel_tone2:': '👼🏼', - ':angel_tone3:': '👼🏽', - ':angel_tone4:': '👼🏾', - ':angel_tone5:': '👼🏿', - ':baby_tone1:': '👶🏻', - ':baby_tone2:': '👶🏼', - ':baby_tone3:': '👶🏽', - ':baby_tone4:': '👶🏾', - ':baby_tone5:': '👶🏿', - ':bath_tone1:': '🛀🏻', - ':bath_tone2:': '🛀🏼', - ':bath_tone3:': '🛀🏽', - ':bath_tone4:': '🛀🏾', - ':bath_tone5:': '🛀🏿', - ':bearded_person_light_skin_tone:': '🧔🏻', - ':bearded_person_tone1:': '🧔🏻', - ':bearded_person_medium_light_skin_tone:': '🧔🏼', - ':bearded_person_tone2:': '🧔🏼', - ':bearded_person_medium_skin_tone:': '🧔🏽', - ':bearded_person_tone3:': '🧔🏽', - ':bearded_person_medium_dark_skin_tone:': '🧔🏾', - ':bearded_person_tone4:': '🧔🏾', - ':bearded_person_dark_skin_tone:': '🧔🏿', - ':bearded_person_tone5:': '🧔🏿', - ':person_with_blond_hair_tone1:': '👱🏻', - ':blond_haired_person_tone1:': '👱🏻', - ':person_with_blond_hair_tone2:': '👱🏼', - ':blond_haired_person_tone2:': '👱🏼', - ':person_with_blond_hair_tone3:': '👱🏽', - ':blond_haired_person_tone3:': '👱🏽', - ':person_with_blond_hair_tone4:': '👱🏾', - ':blond_haired_person_tone4:': '👱🏾', - ':person_with_blond_hair_tone5:': '👱🏿', - ':blond_haired_person_tone5:': '👱🏿', - ':boy_tone1:': '👦🏻', - ':boy_tone2:': '👦🏼', - ':boy_tone3:': '👦🏽', - ':boy_tone4:': '👦🏾', - ':boy_tone5:': '👦🏿', - ':breast_feeding_light_skin_tone:': '🤱🏻', - ':breast_feeding_tone1:': '🤱🏻', - ':breast_feeding_medium_light_skin_tone:': '🤱🏼', - ':breast_feeding_tone2:': '🤱🏼', - ':breast_feeding_medium_skin_tone:': '🤱🏽', - ':breast_feeding_tone3:': '🤱🏽', - ':breast_feeding_medium_dark_skin_tone:': '🤱🏾', - ':breast_feeding_tone4:': '🤱🏾', - ':breast_feeding_dark_skin_tone:': '🤱🏿', - ':breast_feeding_tone5:': '🤱🏿', - ':bride_with_veil_tone1:': '👰🏻', - ':bride_with_veil_tone2:': '👰🏼', - ':bride_with_veil_tone3:': '👰🏽', - ':bride_with_veil_tone4:': '👰🏾', - ':bride_with_veil_tone5:': '👰🏿', - ':call_me_hand_tone1:': '🤙🏻', - ':call_me_tone1:': '🤙🏻', - ':call_me_hand_tone2:': '🤙🏼', - ':call_me_tone2:': '🤙🏼', - ':call_me_hand_tone3:': '🤙🏽', - ':call_me_tone3:': '🤙🏽', - ':call_me_hand_tone4:': '🤙🏾', - ':call_me_tone4:': '🤙🏾', - ':call_me_hand_tone5:': '🤙🏿', - ':call_me_tone5:': '🤙🏿', - ':child_light_skin_tone:': '🧒🏻', - ':child_tone1:': '🧒🏻', - ':child_medium_light_skin_tone:': '🧒🏼', - ':child_tone2:': '🧒🏼', - ':child_medium_skin_tone:': '🧒🏽', - ':child_tone3:': '🧒🏽', - ':child_medium_dark_skin_tone:': '🧒🏾', - ':child_tone4:': '🧒🏾', - ':child_dark_skin_tone:': '🧒🏿', - ':child_tone5:': '🧒🏿', - ':clap_tone1:': '👏🏻', - ':clap_tone2:': '👏🏼', - ':clap_tone3:': '👏🏽', - ':clap_tone4:': '👏🏾', - ':clap_tone5:': '👏🏿', - ':construction_worker_tone1:': '👷🏻', - ':construction_worker_tone2:': '👷🏼', - ':construction_worker_tone3:': '👷🏽', - ':construction_worker_tone4:': '👷🏾', - ':construction_worker_tone5:': '👷🏿', - ':dancer_tone1:': '💃🏻', - ':dancer_tone2:': '💃🏼', - ':dancer_tone3:': '💃🏽', - ':dancer_tone4:': '💃🏾', - ':dancer_tone5:': '💃🏿', - ':deaf_person_light_skin_tone:': '🧏🏻', - ':deaf_person_tone1:': '🧏🏻', - ':deaf_person_medium_light_skin_tone:': '🧏🏼', - ':deaf_person_tone2:': '🧏🏼', - ':deaf_person_medium_skin_tone:': '🧏🏽', - ':deaf_person_tone3:': '🧏🏽', - ':deaf_person_medium_dark_skin_tone:': '🧏🏾', - ':deaf_person_tone4:': '🧏🏾', - ':deaf_person_dark_skin_tone:': '🧏🏿', - ':deaf_person_tone5:': '🧏🏿', - ':spy_tone1:': '🕵️🏻', - ':sleuth_or_spy_tone1:': '🕵️🏻', - ':detective_tone1:': '🕵️🏻', - ':spy_tone2:': '🕵️🏼', - ':sleuth_or_spy_tone2:': '🕵️🏼', - ':detective_tone2:': '🕵️🏼', - ':spy_tone3:': '🕵️🏽', - ':sleuth_or_spy_tone3:': '🕵️🏽', - ':detective_tone3:': '🕵️🏽', - ':spy_tone4:': '🕵️🏾', - ':sleuth_or_spy_tone4:': '🕵️🏾', - ':detective_tone4:': '🕵️🏾', - ':spy_tone5:': '🕵️🏿', - ':sleuth_or_spy_tone5:': '🕵️🏿', - ':detective_tone5:': '🕵️🏿', - ':ear_tone1:': '👂🏻', - ':ear_tone2:': '👂🏼', - ':ear_tone3:': '👂🏽', - ':ear_tone4:': '👂🏾', - ':ear_tone5:': '👂🏿', - ':ear_with_hearing_aid_light_skin_tone:': '🦻🏻', - ':ear_with_hearing_aid_tone1:': '🦻🏻', - ':ear_with_hearing_aid_medium_light_skin_tone:': '🦻🏼', - ':ear_with_hearing_aid_tone2:': '🦻🏼', - ':ear_with_hearing_aid_medium_skin_tone:': '🦻🏽', - ':ear_with_hearing_aid_tone3:': '🦻🏽', - ':ear_with_hearing_aid_medium_dark_skin_tone:': '🦻🏾', - ':ear_with_hearing_aid_tone4:': '🦻🏾', - ':ear_with_hearing_aid_dark_skin_tone:': '🦻🏿', - ':ear_with_hearing_aid_tone5:': '🦻🏿', - ':elf_light_skin_tone:': '🧝🏻', - ':elf_tone1:': '🧝🏻', - ':elf_medium_light_skin_tone:': '🧝🏼', - ':elf_tone2:': '🧝🏼', - ':elf_medium_skin_tone:': '🧝🏽', - ':elf_tone3:': '🧝🏽', - ':elf_medium_dark_skin_tone:': '🧝🏾', - ':elf_tone4:': '🧝🏾', - ':elf_dark_skin_tone:': '🧝🏿', - ':elf_tone5:': '🧝🏿', - ':eye_in_speech_bubble:': '👁️‍🗨️', - ':fairy_light_skin_tone:': '🧚🏻', - ':fairy_tone1:': '🧚🏻', - ':fairy_medium_light_skin_tone:': '🧚🏼', - ':fairy_tone2:': '🧚🏼', - ':fairy_medium_skin_tone:': '🧚🏽', - ':fairy_tone3:': '🧚🏽', - ':fairy_medium_dark_skin_tone:': '🧚🏾', - ':fairy_tone4:': '🧚🏾', - ':fairy_dark_skin_tone:': '🧚🏿', - ':fairy_tone5:': '🧚🏿', - ':family_man_boy:': '👨‍👦', - ':family_man_girl:': '👨‍👧', - ':family_woman_boy:': '👩‍👦', - ':family_woman_girl:': '👩‍👧', - ':hand_with_index_and_middle_fingers_crossed_tone1:': '🤞🏻', - ':fingers_crossed_tone1:': '🤞🏻', - ':hand_with_index_and_middle_fingers_crossed_tone2:': '🤞🏼', - ':fingers_crossed_tone2:': '🤞🏼', - ':hand_with_index_and_middle_fingers_crossed_tone3:': '🤞🏽', - ':fingers_crossed_tone3:': '🤞🏽', - ':hand_with_index_and_middle_fingers_crossed_tone4:': '🤞🏾', - ':fingers_crossed_tone4:': '🤞🏾', - ':hand_with_index_and_middle_fingers_crossed_tone5:': '🤞🏿', - ':fingers_crossed_tone5:': '🤞🏿', - ':ac:': '🇦🇨', - ':flag_ac:': '🇦🇨', - ':ad:': '🇦🇩', - ':flag_ad:': '🇦🇩', - ':ae:': '🇦🇪', - ':flag_ae:': '🇦🇪', - ':af:': '🇦🇫', - ':flag_af:': '🇦🇫', - ':ag:': '🇦🇬', - ':flag_ag:': '🇦🇬', - ':ai:': '🇦🇮', - ':flag_ai:': '🇦🇮', - ':al:': '🇦🇱', - ':flag_al:': '🇦🇱', - ':am:': '🇦🇲', - ':flag_am:': '🇦🇲', - ':ao:': '🇦🇴', - ':flag_ao:': '🇦🇴', - ':aq:': '🇦🇶', - ':flag_aq:': '🇦🇶', - ':ar:': '🇦🇷', - ':flag_ar:': '🇦🇷', - ':as:': '🇦🇸', - ':flag_as:': '🇦🇸', - ':at:': '🇦🇹', - ':flag_at:': '🇦🇹', - ':au:': '🇦🇺', - ':flag_au:': '🇦🇺', - ':aw:': '🇦🇼', - ':flag_aw:': '🇦🇼', - ':ax:': '🇦🇽', - ':flag_ax:': '🇦🇽', - ':az:': '🇦🇿', - ':flag_az:': '🇦🇿', - ':ba:': '🇧🇦', - ':flag_ba:': '🇧🇦', - ':bb:': '🇧🇧', - ':flag_bb:': '🇧🇧', - ':bd:': '🇧🇩', - ':flag_bd:': '🇧🇩', - ':be:': '🇧🇪', - ':flag_be:': '🇧🇪', - ':bf:': '🇧🇫', - ':flag_bf:': '🇧🇫', - ':bg:': '🇧🇬', - ':flag_bg:': '🇧🇬', - ':bh:': '🇧🇭', - ':flag_bh:': '🇧🇭', - ':bi:': '🇧🇮', - ':flag_bi:': '🇧🇮', - ':bj:': '🇧🇯', - ':flag_bj:': '🇧🇯', - ':bm:': '🇧🇲', - ':flag_bm:': '🇧🇲', - ':bn:': '🇧🇳', - ':flag_bn:': '🇧🇳', - ':bo:': '🇧🇴', - ':flag_bo:': '🇧🇴', - ':br:': '🇧🇷', - ':flag_br:': '🇧🇷', - ':bs:': '🇧🇸', - ':flag_bs:': '🇧🇸', - ':bt:': '🇧🇹', - ':flag_bt:': '🇧🇹', - ':bv:': '🇧🇻', - ':flag_bv:': '🇧🇻', - ':bw:': '🇧🇼', - ':flag_bw:': '🇧🇼', - ':by:': '🇧🇾', - ':flag_by:': '🇧🇾', - ':bz:': '🇧🇿', - ':flag_bz:': '🇧🇿', - ':ca:': '🇨🇦', - ':flag_ca:': '🇨🇦', - ':cc:': '🇨🇨', - ':flag_cc:': '🇨🇨', - ':congo:': '🇨🇩', - ':flag_cd:': '🇨🇩', - ':cf:': '🇨🇫', - ':flag_cf:': '🇨🇫', - ':cg:': '🇨🇬', - ':flag_cg:': '🇨🇬', - ':ch:': '🇨🇭', - ':flag_ch:': '🇨🇭', - ':ci:': '🇨🇮', - ':flag_ci:': '🇨🇮', - ':ck:': '🇨🇰', - ':flag_ck:': '🇨🇰', - ':chile:': '🇨🇱', - ':flag_cl:': '🇨🇱', - ':cm:': '🇨🇲', - ':flag_cm:': '🇨🇲', - ':cn:': '🇨🇳', - ':flag_cn:': '🇨🇳', - ':co:': '🇨🇴', - ':flag_co:': '🇨🇴', - ':cp:': '🇨🇵', - ':flag_cp:': '🇨🇵', - ':cr:': '🇨🇷', - ':flag_cr:': '🇨🇷', - ':cu:': '🇨🇺', - ':flag_cu:': '🇨🇺', - ':cv:': '🇨🇻', - ':flag_cv:': '🇨🇻', - ':cw:': '🇨🇼', - ':flag_cw:': '🇨🇼', - ':cx:': '🇨🇽', - ':flag_cx:': '🇨🇽', - ':cy:': '🇨🇾', - ':flag_cy:': '🇨🇾', - ':cz:': '🇨🇿', - ':flag_cz:': '🇨🇿', - ':de:': '🇩🇪', - ':flag_de:': '🇩🇪', - ':dj:': '🇩🇯', - ':flag_dj:': '🇩🇯', - ':dk:': '🇩🇰', - ':flag_dk:': '🇩🇰', - ':dm:': '🇩🇲', - ':flag_dm:': '🇩🇲', - ':do:': '🇩🇴', - ':flag_do:': '🇩🇴', - ':dz:': '🇩🇿', - ':flag_dz:': '🇩🇿', - ':ec:': '🇪🇨', - ':flag_ec:': '🇪🇨', - ':ee:': '🇪🇪', - ':flag_ee:': '🇪🇪', - ':eg:': '🇪🇬', - ':flag_eg:': '🇪🇬', - ':er:': '🇪🇷', - ':flag_er:': '🇪🇷', - ':es:': '🇪🇸', - ':flag_es:': '🇪🇸', - ':et:': '🇪🇹', - ':flag_et:': '🇪🇹', - ':eu:': '🇪🇺', - ':flag_eu:': '🇪🇺', - ':fi:': '🇫🇮', - ':flag_fi:': '🇫🇮', - ':fj:': '🇫🇯', - ':flag_fj:': '🇫🇯', - ':fm:': '🇫🇲', - ':flag_fm:': '🇫🇲', - ':fo:': '🇫🇴', - ':flag_fo:': '🇫🇴', - ':fr:': '🇫🇷', - ':flag_fr:': '🇫🇷', - ':ga:': '🇬🇦', - ':flag_ga:': '🇬🇦', - ':gb:': '🇬🇧', - ':flag_gb:': '🇬🇧', - ':gd:': '🇬🇩', - ':flag_gd:': '🇬🇩', - ':ge:': '🇬🇪', - ':flag_ge:': '🇬🇪', - ':gg:': '🇬🇬', - ':flag_gg:': '🇬🇬', - ':gh:': '🇬🇭', - ':flag_gh:': '🇬🇭', - ':gi:': '🇬🇮', - ':flag_gi:': '🇬🇮', - ':gl:': '🇬🇱', - ':flag_gl:': '🇬🇱', - ':gm:': '🇬🇲', - ':flag_gm:': '🇬🇲', - ':gn:': '🇬🇳', - ':flag_gn:': '🇬🇳', - ':gq:': '🇬🇶', - ':flag_gq:': '🇬🇶', - ':gr:': '🇬🇷', - ':flag_gr:': '🇬🇷', - ':gt:': '🇬🇹', - ':flag_gt:': '🇬🇹', - ':gu:': '🇬🇺', - ':flag_gu:': '🇬🇺', - ':gw:': '🇬🇼', - ':flag_gw:': '🇬🇼', - ':gy:': '🇬🇾', - ':flag_gy:': '🇬🇾', - ':hk:': '🇭🇰', - ':flag_hk:': '🇭🇰', - ':hm:': '🇭🇲', - ':flag_hm:': '🇭🇲', - ':hn:': '🇭🇳', - ':flag_hn:': '🇭🇳', - ':hr:': '🇭🇷', - ':flag_hr:': '🇭🇷', - ':ht:': '🇭🇹', - ':flag_ht:': '🇭🇹', - ':hu:': '🇭🇺', - ':flag_hu:': '🇭🇺', - ':ic:': '🇮🇨', - ':flag_ic:': '🇮🇨', - ':indonesia:': '🇮🇩', - ':flag_id:': '🇮🇩', - ':ie:': '🇮🇪', - ':flag_ie:': '🇮🇪', - ':il:': '🇮🇱', - ':flag_il:': '🇮🇱', - ':im:': '🇮🇲', - ':flag_im:': '🇮🇲', - ':in:': '🇮🇳', - ':flag_in:': '🇮🇳', - ':io:': '🇮🇴', - ':flag_io:': '🇮🇴', - ':iq:': '🇮🇶', - ':flag_iq:': '🇮🇶', - ':ir:': '🇮🇷', - ':flag_ir:': '🇮🇷', - ':is:': '🇮🇸', - ':flag_is:': '🇮🇸', - ':it:': '🇮🇹', - ':flag_it:': '🇮🇹', - ':je:': '🇯🇪', - ':flag_je:': '🇯🇪', - ':jm:': '🇯🇲', - ':flag_jm:': '🇯🇲', - ':jo:': '🇯🇴', - ':flag_jo:': '🇯🇴', - ':jp:': '🇯🇵', - ':flag_jp:': '🇯🇵', - ':ke:': '🇰🇪', - ':flag_ke:': '🇰🇪', - ':kg:': '🇰🇬', - ':flag_kg:': '🇰🇬', - ':kh:': '🇰🇭', - ':flag_kh:': '🇰🇭', - ':ki:': '🇰🇮', - ':flag_ki:': '🇰🇮', - ':km:': '🇰🇲', - ':flag_km:': '🇰🇲', - ':kn:': '🇰🇳', - ':flag_kn:': '🇰🇳', - ':kp:': '🇰🇵', - ':flag_kp:': '🇰🇵', - ':kr:': '🇰🇷', - ':flag_kr:': '🇰🇷', - ':kw:': '🇰🇼', - ':flag_kw:': '🇰🇼', - ':ky:': '🇰🇾', - ':flag_ky:': '🇰🇾', - ':kz:': '🇰🇿', - ':flag_kz:': '🇰🇿', - ':la:': '🇱🇦', - ':flag_la:': '🇱🇦', - ':lb:': '🇱🇧', - ':flag_lb:': '🇱🇧', - ':lc:': '🇱🇨', - ':flag_lc:': '🇱🇨', - ':li:': '🇱🇮', - ':flag_li:': '🇱🇮', - ':lk:': '🇱🇰', - ':flag_lk:': '🇱🇰', - ':lr:': '🇱🇷', - ':flag_lr:': '🇱🇷', - ':ls:': '🇱🇸', - ':flag_ls:': '🇱🇸', - ':lt:': '🇱🇹', - ':flag_lt:': '🇱🇹', - ':lu:': '🇱🇺', - ':flag_lu:': '🇱🇺', - ':lv:': '🇱🇻', - ':flag_lv:': '🇱🇻', - ':ly:': '🇱🇾', - ':flag_ly:': '🇱🇾', - ':ma:': '🇲🇦', - ':flag_ma:': '🇲🇦', - ':mc:': '🇲🇨', - ':flag_mc:': '🇲🇨', - ':md:': '🇲🇩', - ':flag_md:': '🇲🇩', - ':me:': '🇲🇪', - ':flag_me:': '🇲🇪', - ':mg:': '🇲🇬', - ':flag_mg:': '🇲🇬', - ':mh:': '🇲🇭', - ':flag_mh:': '🇲🇭', - ':mk:': '🇲🇰', - ':flag_mk:': '🇲🇰', - ':ml:': '🇲🇱', - ':flag_ml:': '🇲🇱', - ':mm:': '🇲🇲', - ':flag_mm:': '🇲🇲', - ':mn:': '🇲🇳', - ':flag_mn:': '🇲🇳', - ':mo:': '🇲🇴', - ':flag_mo:': '🇲🇴', - ':mp:': '🇲🇵', - ':flag_mp:': '🇲🇵', - ':mr:': '🇲🇷', - ':flag_mr:': '🇲🇷', - ':ms:': '🇲🇸', - ':flag_ms:': '🇲🇸', - ':mt:': '🇲🇹', - ':flag_mt:': '🇲🇹', - ':mu:': '🇲🇺', - ':flag_mu:': '🇲🇺', - ':mv:': '🇲🇻', - ':flag_mv:': '🇲🇻', - ':mw:': '🇲🇼', - ':flag_mw:': '🇲🇼', - ':mx:': '🇲🇽', - ':flag_mx:': '🇲🇽', - ':my:': '🇲🇾', - ':flag_my:': '🇲🇾', - ':mz:': '🇲🇿', - ':flag_mz:': '🇲🇿', - ':na:': '🇳🇦', - ':flag_na:': '🇳🇦', - ':ne:': '🇳🇪', - ':flag_ne:': '🇳🇪', - ':nf:': '🇳🇫', - ':flag_nf:': '🇳🇫', - ':nigeria:': '🇳🇬', - ':flag_ng:': '🇳🇬', - ':ni:': '🇳🇮', - ':flag_ni:': '🇳🇮', - ':nl:': '🇳🇱', - ':flag_nl:': '🇳🇱', - ':no:': '🇳🇴', - ':flag_no:': '🇳🇴', - ':np:': '🇳🇵', - ':flag_np:': '🇳🇵', - ':nr:': '🇳🇷', - ':flag_nr:': '🇳🇷', - ':nu:': '🇳🇺', - ':flag_nu:': '🇳🇺', - ':nz:': '🇳🇿', - ':flag_nz:': '🇳🇿', - ':om:': '🇴🇲', - ':flag_om:': '🇴🇲', - ':pa:': '🇵🇦', - ':flag_pa:': '🇵🇦', - ':pe:': '🇵🇪', - ':flag_pe:': '🇵🇪', - ':pf:': '🇵🇫', - ':flag_pf:': '🇵🇫', - ':pg:': '🇵🇬', - ':flag_pg:': '🇵🇬', - ':ph:': '🇵🇭', - ':flag_ph:': '🇵🇭', - ':pk:': '🇵🇰', - ':flag_pk:': '🇵🇰', - ':pl:': '🇵🇱', - ':flag_pl:': '🇵🇱', - ':pn:': '🇵🇳', - ':flag_pn:': '🇵🇳', - ':pr:': '🇵🇷', - ':flag_pr:': '🇵🇷', - ':ps:': '🇵🇸', - ':flag_ps:': '🇵🇸', - ':pt:': '🇵🇹', - ':flag_pt:': '🇵🇹', - ':pw:': '🇵🇼', - ':flag_pw:': '🇵🇼', - ':py:': '🇵🇾', - ':flag_py:': '🇵🇾', - ':qa:': '🇶🇦', - ':flag_qa:': '🇶🇦', - ':ro:': '🇷🇴', - ':flag_ro:': '🇷🇴', - ':rs:': '🇷🇸', - ':flag_rs:': '🇷🇸', - ':ru:': '🇷🇺', - ':flag_ru:': '🇷🇺', - ':rw:': '🇷🇼', - ':flag_rw:': '🇷🇼', - ':saudiarabia:': '🇸🇦', - ':saudi:': '🇸🇦', - ':flag_sa:': '🇸🇦', - ':sb:': '🇸🇧', - ':flag_sb:': '🇸🇧', - ':sc:': '🇸🇨', - ':flag_sc:': '🇸🇨', - ':sd:': '🇸🇩', - ':flag_sd:': '🇸🇩', - ':se:': '🇸🇪', - ':flag_se:': '🇸🇪', - ':sg:': '🇸🇬', - ':flag_sg:': '🇸🇬', - ':sh:': '🇸🇭', - ':flag_sh:': '🇸🇭', - ':si:': '🇸🇮', - ':flag_si:': '🇸🇮', - ':sj:': '🇸🇯', - ':flag_sj:': '🇸🇯', - ':sk:': '🇸🇰', - ':flag_sk:': '🇸🇰', - ':sl:': '🇸🇱', - ':flag_sl:': '🇸🇱', - ':sm:': '🇸🇲', - ':flag_sm:': '🇸🇲', - ':sn:': '🇸🇳', - ':flag_sn:': '🇸🇳', - ':so:': '🇸🇴', - ':flag_so:': '🇸🇴', - ':sr:': '🇸🇷', - ':flag_sr:': '🇸🇷', - ':ss:': '🇸🇸', - ':flag_ss:': '🇸🇸', - ':st:': '🇸🇹', - ':flag_st:': '🇸🇹', - ':sv:': '🇸🇻', - ':flag_sv:': '🇸🇻', - ':sx:': '🇸🇽', - ':flag_sx:': '🇸🇽', - ':sy:': '🇸🇾', - ':flag_sy:': '🇸🇾', - ':sz:': '🇸🇿', - ':flag_sz:': '🇸🇿', - ':ta:': '🇹🇦', - ':flag_ta:': '🇹🇦', - ':tc:': '🇹🇨', - ':flag_tc:': '🇹🇨', - ':td:': '🇹🇩', - ':flag_td:': '🇹🇩', - ':tg:': '🇹🇬', - ':flag_tg:': '🇹🇬', - ':th:': '🇹🇭', - ':flag_th:': '🇹🇭', - ':tj:': '🇹🇯', - ':flag_tj:': '🇹🇯', - ':tk:': '🇹🇰', - ':flag_tk:': '🇹🇰', - ':tl:': '🇹🇱', - ':flag_tl:': '🇹🇱', - ':turkmenistan:': '🇹🇲', - ':flag_tm:': '🇹🇲', - ':tn:': '🇹🇳', - ':flag_tn:': '🇹🇳', - ':to:': '🇹🇴', - ':flag_to:': '🇹🇴', - ':tr:': '🇹🇷', - ':flag_tr:': '🇹🇷', - ':tt:': '🇹🇹', - ':flag_tt:': '🇹🇹', - ':tuvalu:': '🇹🇻', - ':flag_tv:': '🇹🇻', - ':tw:': '🇹🇼', - ':flag_tw:': '🇹🇼', - ':tz:': '🇹🇿', - ':flag_tz:': '🇹🇿', - ':ua:': '🇺🇦', - ':flag_ua:': '🇺🇦', - ':ug:': '🇺🇬', - ':flag_ug:': '🇺🇬', - ':um:': '🇺🇲', - ':flag_um:': '🇺🇲', - ':us:': '🇺🇸', - ':flag_us:': '🇺🇸', - ':uy:': '🇺🇾', - ':flag_uy:': '🇺🇾', - ':uz:': '🇺🇿', - ':flag_uz:': '🇺🇿', - ':va:': '🇻🇦', - ':flag_va:': '🇻🇦', - ':vc:': '🇻🇨', - ':flag_vc:': '🇻🇨', - ':ve:': '🇻🇪', - ':flag_ve:': '🇻🇪', - ':vg:': '🇻🇬', - ':flag_vg:': '🇻🇬', - ':vi:': '🇻🇮', - ':flag_vi:': '🇻🇮', - ':vn:': '🇻🇳', - ':flag_vn:': '🇻🇳', - ':vu:': '🇻🇺', - ':flag_vu:': '🇻🇺', - ':ws:': '🇼🇸', - ':flag_ws:': '🇼🇸', - ':ye:': '🇾🇪', - ':flag_ye:': '🇾🇪', - ':za:': '🇿🇦', - ':flag_za:': '🇿🇦', - ':zm:': '🇿🇲', - ':flag_zm:': '🇿🇲', - ':zw:': '🇿🇼', - ':flag_zw:': '🇿🇼', - ':foot_light_skin_tone:': '🦶🏻', - ':foot_tone1:': '🦶🏻', - ':foot_medium_light_skin_tone:': '🦶🏼', - ':foot_tone2:': '🦶🏼', - ':foot_medium_skin_tone:': '🦶🏽', - ':foot_tone3:': '🦶🏽', - ':foot_medium_dark_skin_tone:': '🦶🏾', - ':foot_tone4:': '🦶🏾', - ':foot_dark_skin_tone:': '🦶🏿', - ':foot_tone5:': '🦶🏿', - ':girl_tone1:': '👧🏻', - ':girl_tone2:': '👧🏼', - ':girl_tone3:': '👧🏽', - ':girl_tone4:': '👧🏾', - ':girl_tone5:': '👧🏿', - ':guardsman_tone1:': '💂🏻', - ':guard_tone1:': '💂🏻', - ':guardsman_tone2:': '💂🏼', - ':guard_tone2:': '💂🏼', - ':guardsman_tone3:': '💂🏽', - ':guard_tone3:': '💂🏽', - ':guardsman_tone4:': '💂🏾', - ':guard_tone4:': '💂🏾', - ':guardsman_tone5:': '💂🏿', - ':guard_tone5:': '💂🏿', - ':raised_hand_with_fingers_splayed_tone1:': '🖐️🏻', - ':hand_splayed_tone1:': '🖐️🏻', - ':raised_hand_with_fingers_splayed_tone2:': '🖐️🏼', - ':hand_splayed_tone2:': '🖐️🏼', - ':raised_hand_with_fingers_splayed_tone3:': '🖐️🏽', - ':hand_splayed_tone3:': '🖐️🏽', - ':raised_hand_with_fingers_splayed_tone4:': '🖐️🏾', - ':hand_splayed_tone4:': '🖐️🏾', - ':raised_hand_with_fingers_splayed_tone5:': '🖐️🏿', - ':hand_splayed_tone5:': '🖐️🏿', - ':horse_racing_tone1:': '🏇🏻', - ':horse_racing_tone2:': '🏇🏼', - ':horse_racing_tone3:': '🏇🏽', - ':horse_racing_tone4:': '🏇🏾', - ':horse_racing_tone5:': '🏇🏿', - ':left_fist_tone1:': '🤛🏻', - ':left_facing_fist_tone1:': '🤛🏻', - ':left_fist_tone2:': '🤛🏼', - ':left_facing_fist_tone2:': '🤛🏼', - ':left_fist_tone3:': '🤛🏽', - ':left_facing_fist_tone3:': '🤛🏽', - ':left_fist_tone4:': '🤛🏾', - ':left_facing_fist_tone4:': '🤛🏾', - ':left_fist_tone5:': '🤛🏿', - ':left_facing_fist_tone5:': '🤛🏿', - ':leg_light_skin_tone:': '🦵🏻', - ':leg_tone1:': '🦵🏻', - ':leg_medium_light_skin_tone:': '🦵🏼', - ':leg_tone2:': '🦵🏼', - ':leg_medium_skin_tone:': '🦵🏽', - ':leg_tone3:': '🦵🏽', - ':leg_medium_dark_skin_tone:': '🦵🏾', - ':leg_tone4:': '🦵🏾', - ':leg_dark_skin_tone:': '🦵🏿', - ':leg_tone5:': '🦵🏿', - ':man_in_business_suit_levitating_tone1:': '🕴️🏻', - ':man_in_business_suit_levitating_light_skin_tone:': '🕴️🏻', - ':levitate_tone1:': '🕴️🏻', - ':man_in_business_suit_levitating_tone2:': '🕴️🏼', - ':man_in_business_suit_levitating_medium_light_skin_tone:': '🕴️🏼', - ':levitate_tone2:': '🕴️🏼', - ':man_in_business_suit_levitating_tone3:': '🕴️🏽', - ':man_in_business_suit_levitating_medium_skin_tone:': '🕴️🏽', - ':levitate_tone3:': '🕴️🏽', - ':man_in_business_suit_levitating_tone4:': '🕴️🏾', - ':man_in_business_suit_levitating_medium_dark_skin_tone:': '🕴️🏾', - ':levitate_tone4:': '🕴️🏾', - ':man_in_business_suit_levitating_tone5:': '🕴️🏿', - ':man_in_business_suit_levitating_dark_skin_tone:': '🕴️🏿', - ':levitate_tone5:': '🕴️🏿', - ':love_you_gesture_light_skin_tone:': '🤟🏻', - ':love_you_gesture_tone1:': '🤟🏻', - ':love_you_gesture_medium_light_skin_tone:': '🤟🏼', - ':love_you_gesture_tone2:': '🤟🏼', - ':love_you_gesture_medium_skin_tone:': '🤟🏽', - ':love_you_gesture_tone3:': '🤟🏽', - ':love_you_gesture_medium_dark_skin_tone:': '🤟🏾', - ':love_you_gesture_tone4:': '🤟🏾', - ':love_you_gesture_dark_skin_tone:': '🤟🏿', - ':love_you_gesture_tone5:': '🤟🏿', - ':mage_light_skin_tone:': '🧙🏻', - ':mage_tone1:': '🧙🏻', - ':mage_medium_light_skin_tone:': '🧙🏼', - ':mage_tone2:': '🧙🏼', - ':mage_medium_skin_tone:': '🧙🏽', - ':mage_tone3:': '🧙🏽', - ':mage_medium_dark_skin_tone:': '🧙🏾', - ':mage_tone4:': '🧙🏾', - ':mage_dark_skin_tone:': '🧙🏿', - ':mage_tone5:': '🧙🏿', - ':man_artist:': '👨‍🎨', - ':man_astronaut:': '👨‍🚀', - ':man_bald:': '👨‍🦲', - ':man_cook:': '👨‍🍳', - ':man_curly_haired:': '👨‍🦱', - ':male_dancer_tone1:': '🕺🏻', - ':man_dancing_tone1:': '🕺🏻', - ':male_dancer_tone2:': '🕺🏼', - ':man_dancing_tone2:': '🕺🏼', - ':male_dancer_tone3:': '🕺🏽', - ':man_dancing_tone3:': '🕺🏽', - ':male_dancer_tone4:': '🕺🏾', - ':man_dancing_tone4:': '🕺🏾', - ':male_dancer_tone5:': '🕺🏿', - ':man_dancing_tone5:': '🕺🏿', - ':man_factory_worker:': '👨‍🏭', - ':man_farmer:': '👨‍🌾', - ':man_firefighter:': '👨‍🚒', - ':man_in_manual_wheelchair:': '👨‍🦽', - ':man_in_motorized_wheelchair:': '👨‍🦼', - ':tuxedo_tone1:': '🤵🏻', - ':man_in_tuxedo_tone1:': '🤵🏻', - ':tuxedo_tone2:': '🤵🏼', - ':man_in_tuxedo_tone2:': '🤵🏼', - ':tuxedo_tone3:': '🤵🏽', - ':man_in_tuxedo_tone3:': '🤵🏽', - ':tuxedo_tone4:': '🤵🏾', - ':man_in_tuxedo_tone4:': '🤵🏾', - ':tuxedo_tone5:': '🤵🏿', - ':man_in_tuxedo_tone5:': '🤵🏿', - ':man_mechanic:': '👨‍🔧', - ':man_office_worker:': '👨‍💼', - ':man_red_haired:': '👨‍🦰', - ':man_scientist:': '👨‍🔬', - ':man_singer:': '👨‍🎤', - ':man_student:': '👨‍🎓', - ':man_teacher:': '👨‍🏫', - ':man_technologist:': '👨‍💻', - ':man_tone1:': '👨🏻', - ':man_tone2:': '👨🏼', - ':man_tone3:': '👨🏽', - ':man_tone4:': '👨🏾', - ':man_tone5:': '👨🏿', - ':man_white_haired:': '👨‍🦳', - ':man_with_gua_pi_mao_tone1:': '👲🏻', - ':man_with_chinese_cap_tone1:': '👲🏻', - ':man_with_gua_pi_mao_tone2:': '👲🏼', - ':man_with_chinese_cap_tone2:': '👲🏼', - ':man_with_gua_pi_mao_tone3:': '👲🏽', - ':man_with_chinese_cap_tone3:': '👲🏽', - ':man_with_gua_pi_mao_tone4:': '👲🏾', - ':man_with_chinese_cap_tone4:': '👲🏾', - ':man_with_gua_pi_mao_tone5:': '👲🏿', - ':man_with_chinese_cap_tone5:': '👲🏿', - ':man_with_probing_cane:': '👨‍🦯', - ':men_holding_hands_light_skin_tone:': '👬🏻', - ':men_holding_hands_tone1:': '👬🏻', - ':men_holding_hands_medium_light_skin_tone:': '👬🏼', - ':men_holding_hands_tone2:': '👬🏼', - ':men_holding_hands_medium_skin_tone:': '👬🏽', - ':men_holding_hands_tone3:': '👬🏽', - ':men_holding_hands_medium_dark_skin_tone:': '👬🏾', - ':men_holding_hands_tone4:': '👬🏾', - ':men_holding_hands_dark_skin_tone:': '👬🏿', - ':men_holding_hands_tone5:': '👬🏿', - ':merperson_light_skin_tone:': '🧜🏻', - ':merperson_tone1:': '🧜🏻', - ':merperson_medium_light_skin_tone:': '🧜🏼', - ':merperson_tone2:': '🧜🏼', - ':merperson_medium_skin_tone:': '🧜🏽', - ':merperson_tone3:': '🧜🏽', - ':merperson_medium_dark_skin_tone:': '🧜🏾', - ':merperson_tone4:': '🧜🏾', - ':merperson_dark_skin_tone:': '🧜🏿', - ':merperson_tone5:': '🧜🏿', - ':sign_of_the_horns_tone1:': '🤘🏻', - ':metal_tone1:': '🤘🏻', - ':sign_of_the_horns_tone2:': '🤘🏼', - ':metal_tone2:': '🤘🏼', - ':sign_of_the_horns_tone3:': '🤘🏽', - ':metal_tone3:': '🤘🏽', - ':sign_of_the_horns_tone4:': '🤘🏾', - ':metal_tone4:': '🤘🏾', - ':sign_of_the_horns_tone5:': '🤘🏿', - ':metal_tone5:': '🤘🏿', - ':reversed_hand_with_middle_finger_extended_tone1:': '🖕🏻', - ':middle_finger_tone1:': '🖕🏻', - ':reversed_hand_with_middle_finger_extended_tone2:': '🖕🏼', - ':middle_finger_tone2:': '🖕🏼', - ':reversed_hand_with_middle_finger_extended_tone3:': '🖕🏽', - ':middle_finger_tone3:': '🖕🏽', - ':reversed_hand_with_middle_finger_extended_tone4:': '🖕🏾', - ':middle_finger_tone4:': '🖕🏾', - ':reversed_hand_with_middle_finger_extended_tone5:': '🖕🏿', - ':middle_finger_tone5:': '🖕🏿', - ':mother_christmas_tone1:': '🤶🏻', - ':mrs_claus_tone1:': '🤶🏻', - ':mother_christmas_tone2:': '🤶🏼', - ':mrs_claus_tone2:': '🤶🏼', - ':mother_christmas_tone3:': '🤶🏽', - ':mrs_claus_tone3:': '🤶🏽', - ':mother_christmas_tone4:': '🤶🏾', - ':mrs_claus_tone4:': '🤶🏾', - ':mother_christmas_tone5:': '🤶🏿', - ':mrs_claus_tone5:': '🤶🏿', - ':muscle_tone1:': '💪🏻', - ':muscle_tone2:': '💪🏼', - ':muscle_tone3:': '💪🏽', - ':muscle_tone4:': '💪🏾', - ':muscle_tone5:': '💪🏿', - ':nail_care_tone1:': '💅🏻', - ':nail_care_tone2:': '💅🏼', - ':nail_care_tone3:': '💅🏽', - ':nail_care_tone4:': '💅🏾', - ':nail_care_tone5:': '💅🏿', - ':nose_tone1:': '👃🏻', - ':nose_tone2:': '👃🏼', - ':nose_tone3:': '👃🏽', - ':nose_tone4:': '👃🏾', - ':nose_tone5:': '👃🏿', - ':ok_hand_tone1:': '👌🏻', - ':ok_hand_tone2:': '👌🏼', - ':ok_hand_tone3:': '👌🏽', - ':ok_hand_tone4:': '👌🏾', - ':ok_hand_tone5:': '👌🏿', - ':older_adult_light_skin_tone:': '🧓🏻', - ':older_adult_tone1:': '🧓🏻', - ':older_adult_medium_light_skin_tone:': '🧓🏼', - ':older_adult_tone2:': '🧓🏼', - ':older_adult_medium_skin_tone:': '🧓🏽', - ':older_adult_tone3:': '🧓🏽', - ':older_adult_medium_dark_skin_tone:': '🧓🏾', - ':older_adult_tone4:': '🧓🏾', - ':older_adult_dark_skin_tone:': '🧓🏿', - ':older_adult_tone5:': '🧓🏿', - ':older_man_tone1:': '👴🏻', - ':older_man_tone2:': '👴🏼', - ':older_man_tone3:': '👴🏽', - ':older_man_tone4:': '👴🏾', - ':older_man_tone5:': '👴🏿', - ':grandma_tone1:': '👵🏻', - ':older_woman_tone1:': '👵🏻', - ':grandma_tone2:': '👵🏼', - ':older_woman_tone2:': '👵🏼', - ':grandma_tone3:': '👵🏽', - ':older_woman_tone3:': '👵🏽', - ':grandma_tone4:': '👵🏾', - ':older_woman_tone4:': '👵🏾', - ':grandma_tone5:': '👵🏿', - ':older_woman_tone5:': '👵🏿', - ':open_hands_tone1:': '👐🏻', - ':open_hands_tone2:': '👐🏼', - ':open_hands_tone3:': '👐🏽', - ':open_hands_tone4:': '👐🏾', - ':open_hands_tone5:': '👐🏿', - ':palms_up_together_light_skin_tone:': '🤲🏻', - ':palms_up_together_tone1:': '🤲🏻', - ':palms_up_together_medium_light_skin_tone:': '🤲🏼', - ':palms_up_together_tone2:': '🤲🏼', - ':palms_up_together_medium_skin_tone:': '🤲🏽', - ':palms_up_together_tone3:': '🤲🏽', - ':palms_up_together_medium_dark_skin_tone:': '🤲🏾', - ':palms_up_together_tone4:': '🤲🏾', - ':palms_up_together_dark_skin_tone:': '🤲🏿', - ':palms_up_together_tone5:': '🤲🏿', - ':bicyclist_tone1:': '🚴🏻', - ':person_biking_tone1:': '🚴🏻', - ':bicyclist_tone2:': '🚴🏼', - ':person_biking_tone2:': '🚴🏼', - ':bicyclist_tone3:': '🚴🏽', - ':person_biking_tone3:': '🚴🏽', - ':bicyclist_tone4:': '🚴🏾', - ':person_biking_tone4:': '🚴🏾', - ':bicyclist_tone5:': '🚴🏿', - ':person_biking_tone5:': '🚴🏿', - ':bow_tone1:': '🙇🏻', - ':person_bowing_tone1:': '🙇🏻', - ':bow_tone2:': '🙇🏼', - ':person_bowing_tone2:': '🙇🏼', - ':bow_tone3:': '🙇🏽', - ':person_bowing_tone3:': '🙇🏽', - ':bow_tone4:': '🙇🏾', - ':person_bowing_tone4:': '🙇🏾', - ':bow_tone5:': '🙇🏿', - ':person_bowing_tone5:': '🙇🏿', - ':person_climbing_light_skin_tone:': '🧗🏻', - ':person_climbing_tone1:': '🧗🏻', - ':person_climbing_medium_light_skin_tone:': '🧗🏼', - ':person_climbing_tone2:': '🧗🏼', - ':person_climbing_medium_skin_tone:': '🧗🏽', - ':person_climbing_tone3:': '🧗🏽', - ':person_climbing_medium_dark_skin_tone:': '🧗🏾', - ':person_climbing_tone4:': '🧗🏾', - ':person_climbing_dark_skin_tone:': '🧗🏿', - ':person_climbing_tone5:': '🧗🏿', - ':cartwheel_tone1:': '🤸🏻', - ':person_doing_cartwheel_tone1:': '🤸🏻', - ':cartwheel_tone2:': '🤸🏼', - ':person_doing_cartwheel_tone2:': '🤸🏼', - ':cartwheel_tone3:': '🤸🏽', - ':person_doing_cartwheel_tone3:': '🤸🏽', - ':cartwheel_tone4:': '🤸🏾', - ':person_doing_cartwheel_tone4:': '🤸🏾', - ':cartwheel_tone5:': '🤸🏿', - ':person_doing_cartwheel_tone5:': '🤸🏿', - ':face_palm_tone1:': '🤦🏻', - ':facepalm_tone1:': '🤦🏻', - ':person_facepalming_tone1:': '🤦🏻', - ':face_palm_tone2:': '🤦🏼', - ':facepalm_tone2:': '🤦🏼', - ':person_facepalming_tone2:': '🤦🏼', - ':face_palm_tone3:': '🤦🏽', - ':facepalm_tone3:': '🤦🏽', - ':person_facepalming_tone3:': '🤦🏽', - ':face_palm_tone4:': '🤦🏾', - ':facepalm_tone4:': '🤦🏾', - ':person_facepalming_tone4:': '🤦🏾', - ':face_palm_tone5:': '🤦🏿', - ':facepalm_tone5:': '🤦🏿', - ':person_facepalming_tone5:': '🤦🏿', - ':person_frowning_tone1:': '🙍🏻', - ':person_frowning_tone2:': '🙍🏼', - ':person_frowning_tone3:': '🙍🏽', - ':person_frowning_tone4:': '🙍🏾', - ':person_frowning_tone5:': '🙍🏿', - ':no_good_tone1:': '🙅🏻', - ':person_gesturing_no_tone1:': '🙅🏻', - ':no_good_tone2:': '🙅🏼', - ':person_gesturing_no_tone2:': '🙅🏼', - ':no_good_tone3:': '🙅🏽', - ':person_gesturing_no_tone3:': '🙅🏽', - ':no_good_tone4:': '🙅🏾', - ':person_gesturing_no_tone4:': '🙅🏾', - ':no_good_tone5:': '🙅🏿', - ':person_gesturing_no_tone5:': '🙅🏿', - ':ok_woman_tone1:': '🙆🏻', - ':person_gesturing_ok_tone1:': '🙆🏻', - ':ok_woman_tone2:': '🙆🏼', - ':person_gesturing_ok_tone2:': '🙆🏼', - ':ok_woman_tone3:': '🙆🏽', - ':person_gesturing_ok_tone3:': '🙆🏽', - ':ok_woman_tone4:': '🙆🏾', - ':person_gesturing_ok_tone4:': '🙆🏾', - ':ok_woman_tone5:': '🙆🏿', - ':person_gesturing_ok_tone5:': '🙆🏿', - ':haircut_tone1:': '💇🏻', - ':person_getting_haircut_tone1:': '💇🏻', - ':haircut_tone2:': '💇🏼', - ':person_getting_haircut_tone2:': '💇🏼', - ':haircut_tone3:': '💇🏽', - ':person_getting_haircut_tone3:': '💇🏽', - ':haircut_tone4:': '💇🏾', - ':person_getting_haircut_tone4:': '💇🏾', - ':haircut_tone5:': '💇🏿', - ':person_getting_haircut_tone5:': '💇🏿', - ':massage_tone1:': '💆🏻', - ':person_getting_massage_tone1:': '💆🏻', - ':massage_tone2:': '💆🏼', - ':person_getting_massage_tone2:': '💆🏼', - ':massage_tone3:': '💆🏽', - ':person_getting_massage_tone3:': '💆🏽', - ':massage_tone4:': '💆🏾', - ':person_getting_massage_tone4:': '💆🏾', - ':massage_tone5:': '💆🏿', - ':person_getting_massage_tone5:': '💆🏿', - ':person_golfing_light_skin_tone:': '🏌️🏻', - ':person_golfing_tone1:': '🏌️🏻', - ':person_golfing_medium_light_skin_tone:': '🏌️🏼', - ':person_golfing_tone2:': '🏌️🏼', - ':person_golfing_medium_skin_tone:': '🏌️🏽', - ':person_golfing_tone3:': '🏌️🏽', - ':person_golfing_medium_dark_skin_tone:': '🏌️🏾', - ':person_golfing_tone4:': '🏌️🏾', - ':person_golfing_dark_skin_tone:': '🏌️🏿', - ':person_golfing_tone5:': '🏌️🏿', - ':person_in_bed_light_skin_tone:': '🛌🏻', - ':person_in_bed_tone1:': '🛌🏻', - ':person_in_bed_medium_light_skin_tone:': '🛌🏼', - ':person_in_bed_tone2:': '🛌🏼', - ':person_in_bed_medium_skin_tone:': '🛌🏽', - ':person_in_bed_tone3:': '🛌🏽', - ':person_in_bed_medium_dark_skin_tone:': '🛌🏾', - ':person_in_bed_tone4:': '🛌🏾', - ':person_in_bed_dark_skin_tone:': '🛌🏿', - ':person_in_bed_tone5:': '🛌🏿', - ':person_in_lotus_position_light_skin_tone:': '🧘🏻', - ':person_in_lotus_position_tone1:': '🧘🏻', - ':person_in_lotus_position_medium_light_skin_tone:': '🧘🏼', - ':person_in_lotus_position_tone2:': '🧘🏼', - ':person_in_lotus_position_medium_skin_tone:': '🧘🏽', - ':person_in_lotus_position_tone3:': '🧘🏽', - ':person_in_lotus_position_medium_dark_skin_tone:': '🧘🏾', - ':person_in_lotus_position_tone4:': '🧘🏾', - ':person_in_lotus_position_dark_skin_tone:': '🧘🏿', - ':person_in_lotus_position_tone5:': '🧘🏿', - ':person_in_steamy_room_light_skin_tone:': '🧖🏻', - ':person_in_steamy_room_tone1:': '🧖🏻', - ':person_in_steamy_room_medium_light_skin_tone:': '🧖🏼', - ':person_in_steamy_room_tone2:': '🧖🏼', - ':person_in_steamy_room_medium_skin_tone:': '🧖🏽', - ':person_in_steamy_room_tone3:': '🧖🏽', - ':person_in_steamy_room_medium_dark_skin_tone:': '🧖🏾', - ':person_in_steamy_room_tone4:': '🧖🏾', - ':person_in_steamy_room_dark_skin_tone:': '🧖🏿', - ':person_in_steamy_room_tone5:': '🧖🏿', - ':juggling_tone1:': '🤹🏻', - ':juggler_tone1:': '🤹🏻', - ':person_juggling_tone1:': '🤹🏻', - ':juggling_tone2:': '🤹🏼', - ':juggler_tone2:': '🤹🏼', - ':person_juggling_tone2:': '🤹🏼', - ':juggling_tone3:': '🤹🏽', - ':juggler_tone3:': '🤹🏽', - ':person_juggling_tone3:': '🤹🏽', - ':juggling_tone4:': '🤹🏾', - ':juggler_tone4:': '🤹🏾', - ':person_juggling_tone4:': '🤹🏾', - ':juggling_tone5:': '🤹🏿', - ':juggler_tone5:': '🤹🏿', - ':person_juggling_tone5:': '🤹🏿', - ':person_kneeling_light_skin_tone:': '🧎🏻', - ':person_kneeling_tone1:': '🧎🏻', - ':person_kneeling_medium_light_skin_tone:': '🧎🏼', - ':person_kneeling_tone2:': '🧎🏼', - ':person_kneeling_medium_skin_tone:': '🧎🏽', - ':person_kneeling_tone3:': '🧎🏽', - ':person_kneeling_medium_dark_skin_tone:': '🧎🏾', - ':person_kneeling_tone4:': '🧎🏾', - ':person_kneeling_dark_skin_tone:': '🧎🏿', - ':person_kneeling_tone5:': '🧎🏿', - ':lifter_tone1:': '🏋️🏻', - ':weight_lifter_tone1:': '🏋️🏻', - ':person_lifting_weights_tone1:': '🏋️🏻', - ':lifter_tone2:': '🏋️🏼', - ':weight_lifter_tone2:': '🏋️🏼', - ':person_lifting_weights_tone2:': '🏋️🏼', - ':lifter_tone3:': '🏋️🏽', - ':weight_lifter_tone3:': '🏋️🏽', - ':person_lifting_weights_tone3:': '🏋️🏽', - ':lifter_tone4:': '🏋️🏾', - ':weight_lifter_tone4:': '🏋️🏾', - ':person_lifting_weights_tone4:': '🏋️🏾', - ':lifter_tone5:': '🏋️🏿', - ':weight_lifter_tone5:': '🏋️🏿', - ':person_lifting_weights_tone5:': '🏋️🏿', - ':mountain_bicyclist_tone1:': '🚵🏻', - ':person_mountain_biking_tone1:': '🚵🏻', - ':mountain_bicyclist_tone2:': '🚵🏼', - ':person_mountain_biking_tone2:': '🚵🏼', - ':mountain_bicyclist_tone3:': '🚵🏽', - ':person_mountain_biking_tone3:': '🚵🏽', - ':mountain_bicyclist_tone4:': '🚵🏾', - ':person_mountain_biking_tone4:': '🚵🏾', - ':mountain_bicyclist_tone5:': '🚵🏿', - ':person_mountain_biking_tone5:': '🚵🏿', - ':handball_tone1:': '🤾🏻', - ':person_playing_handball_tone1:': '🤾🏻', - ':handball_tone2:': '🤾🏼', - ':person_playing_handball_tone2:': '🤾🏼', - ':handball_tone3:': '🤾🏽', - ':person_playing_handball_tone3:': '🤾🏽', - ':handball_tone4:': '🤾🏾', - ':person_playing_handball_tone4:': '🤾🏾', - ':handball_tone5:': '🤾🏿', - ':person_playing_handball_tone5:': '🤾🏿', - ':water_polo_tone1:': '🤽🏻', - ':person_playing_water_polo_tone1:': '🤽🏻', - ':water_polo_tone2:': '🤽🏼', - ':person_playing_water_polo_tone2:': '🤽🏼', - ':water_polo_tone3:': '🤽🏽', - ':person_playing_water_polo_tone3:': '🤽🏽', - ':water_polo_tone4:': '🤽🏾', - ':person_playing_water_polo_tone4:': '🤽🏾', - ':water_polo_tone5:': '🤽🏿', - ':person_playing_water_polo_tone5:': '🤽🏿', - ':person_with_pouting_face_tone1:': '🙎🏻', - ':person_pouting_tone1:': '🙎🏻', - ':person_with_pouting_face_tone2:': '🙎🏼', - ':person_pouting_tone2:': '🙎🏼', - ':person_with_pouting_face_tone3:': '🙎🏽', - ':person_pouting_tone3:': '🙎🏽', - ':person_with_pouting_face_tone4:': '🙎🏾', - ':person_pouting_tone4:': '🙎🏾', - ':person_with_pouting_face_tone5:': '🙎🏿', - ':person_pouting_tone5:': '🙎🏿', - ':raising_hand_tone1:': '🙋🏻', - ':person_raising_hand_tone1:': '🙋🏻', - ':raising_hand_tone2:': '🙋🏼', - ':person_raising_hand_tone2:': '🙋🏼', - ':raising_hand_tone3:': '🙋🏽', - ':person_raising_hand_tone3:': '🙋🏽', - ':raising_hand_tone4:': '🙋🏾', - ':person_raising_hand_tone4:': '🙋🏾', - ':raising_hand_tone5:': '🙋🏿', - ':person_raising_hand_tone5:': '🙋🏿', - ':rowboat_tone1:': '🚣🏻', - ':person_rowing_boat_tone1:': '🚣🏻', - ':rowboat_tone2:': '🚣🏼', - ':person_rowing_boat_tone2:': '🚣🏼', - ':rowboat_tone3:': '🚣🏽', - ':person_rowing_boat_tone3:': '🚣🏽', - ':rowboat_tone4:': '🚣🏾', - ':person_rowing_boat_tone4:': '🚣🏾', - ':rowboat_tone5:': '🚣🏿', - ':person_rowing_boat_tone5:': '🚣🏿', - ':runner_tone1:': '🏃🏻', - ':person_running_tone1:': '🏃🏻', - ':runner_tone2:': '🏃🏼', - ':person_running_tone2:': '🏃🏼', - ':runner_tone3:': '🏃🏽', - ':person_running_tone3:': '🏃🏽', - ':runner_tone4:': '🏃🏾', - ':person_running_tone4:': '🏃🏾', - ':runner_tone5:': '🏃🏿', - ':person_running_tone5:': '🏃🏿', - ':shrug_tone1:': '🤷🏻', - ':person_shrugging_tone1:': '🤷🏻', - ':shrug_tone2:': '🤷🏼', - ':person_shrugging_tone2:': '🤷🏼', - ':shrug_tone3:': '🤷🏽', - ':person_shrugging_tone3:': '🤷🏽', - ':shrug_tone4:': '🤷🏾', - ':person_shrugging_tone4:': '🤷🏾', - ':shrug_tone5:': '🤷🏿', - ':person_shrugging_tone5:': '🤷🏿', - ':person_standing_light_skin_tone:': '🧍🏻', - ':person_standing_tone1:': '🧍🏻', - ':person_standing_medium_light_skin_tone:': '🧍🏼', - ':person_standing_tone2:': '🧍🏼', - ':person_standing_medium_skin_tone:': '🧍🏽', - ':person_standing_tone3:': '🧍🏽', - ':person_standing_medium_dark_skin_tone:': '🧍🏾', - ':person_standing_tone4:': '🧍🏾', - ':person_standing_dark_skin_tone:': '🧍🏿', - ':person_standing_tone5:': '🧍🏿', - ':surfer_tone1:': '🏄🏻', - ':person_surfing_tone1:': '🏄🏻', - ':surfer_tone2:': '🏄🏼', - ':person_surfing_tone2:': '🏄🏼', - ':surfer_tone3:': '🏄🏽', - ':person_surfing_tone3:': '🏄🏽', - ':surfer_tone4:': '🏄🏾', - ':person_surfing_tone4:': '🏄🏾', - ':surfer_tone5:': '🏄🏿', - ':person_surfing_tone5:': '🏄🏿', - ':swimmer_tone1:': '🏊🏻', - ':person_swimming_tone1:': '🏊🏻', - ':swimmer_tone2:': '🏊🏼', - ':person_swimming_tone2:': '🏊🏼', - ':swimmer_tone3:': '🏊🏽', - ':person_swimming_tone3:': '🏊🏽', - ':swimmer_tone4:': '🏊🏾', - ':person_swimming_tone4:': '🏊🏾', - ':swimmer_tone5:': '🏊🏿', - ':person_swimming_tone5:': '🏊🏿', - ':information_desk_person_tone1:': '💁🏻', - ':person_tipping_hand_tone1:': '💁🏻', - ':information_desk_person_tone2:': '💁🏼', - ':person_tipping_hand_tone2:': '💁🏼', - ':information_desk_person_tone3:': '💁🏽', - ':person_tipping_hand_tone3:': '💁🏽', - ':information_desk_person_tone4:': '💁🏾', - ':person_tipping_hand_tone4:': '💁🏾', - ':information_desk_person_tone5:': '💁🏿', - ':person_tipping_hand_tone5:': '💁🏿', - ':walking_tone1:': '🚶🏻', - ':person_walking_tone1:': '🚶🏻', - ':walking_tone2:': '🚶🏼', - ':person_walking_tone2:': '🚶🏼', - ':walking_tone3:': '🚶🏽', - ':person_walking_tone3:': '🚶🏽', - ':walking_tone4:': '🚶🏾', - ':person_walking_tone4:': '🚶🏾', - ':walking_tone5:': '🚶🏿', - ':person_walking_tone5:': '🚶🏿', - ':man_with_turban_tone1:': '👳🏻', - ':person_wearing_turban_tone1:': '👳🏻', - ':man_with_turban_tone2:': '👳🏼', - ':person_wearing_turban_tone2:': '👳🏼', - ':man_with_turban_tone3:': '👳🏽', - ':person_wearing_turban_tone3:': '👳🏽', - ':man_with_turban_tone4:': '👳🏾', - ':person_wearing_turban_tone4:': '👳🏾', - ':man_with_turban_tone5:': '👳🏿', - ':person_wearing_turban_tone5:': '👳🏿', - ':pinching_hand_light_skin_tone:': '🤏🏻', - ':pinching_hand_tone1:': '🤏🏻', - ':pinching_hand_medium_light_skin_tone:': '🤏🏼', - ':pinching_hand_tone2:': '🤏🏼', - ':pinching_hand_medium_skin_tone:': '🤏🏽', - ':pinching_hand_tone3:': '🤏🏽', - ':pinching_hand_medium_dark_skin_tone:': '🤏🏾', - ':pinching_hand_tone4:': '🤏🏾', - ':pinching_hand_dark_skin_tone:': '🤏🏿', - ':pinching_hand_tone5:': '🤏🏿', - ':point_down_tone1:': '👇🏻', - ':point_down_tone2:': '👇🏼', - ':point_down_tone3:': '👇🏽', - ':point_down_tone4:': '👇🏾', - ':point_down_tone5:': '👇🏿', - ':point_left_tone1:': '👈🏻', - ':point_left_tone2:': '👈🏼', - ':point_left_tone3:': '👈🏽', - ':point_left_tone4:': '👈🏾', - ':point_left_tone5:': '👈🏿', - ':point_right_tone1:': '👉🏻', - ':point_right_tone2:': '👉🏼', - ':point_right_tone3:': '👉🏽', - ':point_right_tone4:': '👉🏾', - ':point_right_tone5:': '👉🏿', - ':point_up_2_tone1:': '👆🏻', - ':point_up_2_tone2:': '👆🏼', - ':point_up_2_tone3:': '👆🏽', - ':point_up_2_tone4:': '👆🏾', - ':point_up_2_tone5:': '👆🏿', - ':cop_tone1:': '👮🏻', - ':police_officer_tone1:': '👮🏻', - ':cop_tone2:': '👮🏼', - ':police_officer_tone2:': '👮🏼', - ':cop_tone3:': '👮🏽', - ':police_officer_tone3:': '👮🏽', - ':cop_tone4:': '👮🏾', - ':police_officer_tone4:': '👮🏾', - ':cop_tone5:': '👮🏿', - ':police_officer_tone5:': '👮🏿', - ':pray_tone1:': '🙏🏻', - ':pray_tone2:': '🙏🏼', - ':pray_tone3:': '🙏🏽', - ':pray_tone4:': '🙏🏾', - ':pray_tone5:': '🙏🏿', - ':expecting_woman_tone1:': '🤰🏻', - ':pregnant_woman_tone1:': '🤰🏻', - ':expecting_woman_tone2:': '🤰🏼', - ':pregnant_woman_tone2:': '🤰🏼', - ':expecting_woman_tone3:': '🤰🏽', - ':pregnant_woman_tone3:': '🤰🏽', - ':expecting_woman_tone4:': '🤰🏾', - ':pregnant_woman_tone4:': '🤰🏾', - ':expecting_woman_tone5:': '🤰🏿', - ':pregnant_woman_tone5:': '🤰🏿', - ':prince_tone1:': '🤴🏻', - ':prince_tone2:': '🤴🏼', - ':prince_tone3:': '🤴🏽', - ':prince_tone4:': '🤴🏾', - ':prince_tone5:': '🤴🏿', - ':princess_tone1:': '👸🏻', - ':princess_tone2:': '👸🏼', - ':princess_tone3:': '👸🏽', - ':princess_tone4:': '👸🏾', - ':princess_tone5:': '👸🏿', - ':punch_tone1:': '👊🏻', - ':punch_tone2:': '👊🏼', - ':punch_tone3:': '👊🏽', - ':punch_tone4:': '👊🏾', - ':punch_tone5:': '👊🏿', - ':gay_pride_flag:': '🏳️‍🌈', - ':rainbow_flag:': '🏳️‍🌈', - ':back_of_hand_tone1:': '🤚🏻', - ':raised_back_of_hand_tone1:': '🤚🏻', - ':back_of_hand_tone2:': '🤚🏼', - ':raised_back_of_hand_tone2:': '🤚🏼', - ':back_of_hand_tone3:': '🤚🏽', - ':raised_back_of_hand_tone3:': '🤚🏽', - ':back_of_hand_tone4:': '🤚🏾', - ':raised_back_of_hand_tone4:': '🤚🏾', - ':back_of_hand_tone5:': '🤚🏿', - ':raised_back_of_hand_tone5:': '🤚🏿', - ':raised_hands_tone1:': '🙌🏻', - ':raised_hands_tone2:': '🙌🏼', - ':raised_hands_tone3:': '🙌🏽', - ':raised_hands_tone4:': '🙌🏾', - ':raised_hands_tone5:': '🙌🏿', - ':right_fist_tone1:': '🤜🏻', - ':right_facing_fist_tone1:': '🤜🏻', - ':right_fist_tone2:': '🤜🏼', - ':right_facing_fist_tone2:': '🤜🏼', - ':right_fist_tone3:': '🤜🏽', - ':right_facing_fist_tone3:': '🤜🏽', - ':right_fist_tone4:': '🤜🏾', - ':right_facing_fist_tone4:': '🤜🏾', - ':right_fist_tone5:': '🤜🏿', - ':right_facing_fist_tone5:': '🤜🏿', - ':santa_tone1:': '🎅🏻', - ':santa_tone2:': '🎅🏼', - ':santa_tone3:': '🎅🏽', - ':santa_tone4:': '🎅🏾', - ':santa_tone5:': '🎅🏿', - ':selfie_tone1:': '🤳🏻', - ':selfie_tone2:': '🤳🏼', - ':selfie_tone3:': '🤳🏽', - ':selfie_tone4:': '🤳🏾', - ':selfie_tone5:': '🤳🏿', - ':service_dog:': '🐕‍🦺', - ':snowboarder_light_skin_tone:': '🏂🏻', - ':snowboarder_tone1:': '🏂🏻', - ':snowboarder_medium_light_skin_tone:': '🏂🏼', - ':snowboarder_tone2:': '🏂🏼', - ':snowboarder_medium_skin_tone:': '🏂🏽', - ':snowboarder_tone3:': '🏂🏽', - ':snowboarder_medium_dark_skin_tone:': '🏂🏾', - ':snowboarder_tone4:': '🏂🏾', - ':snowboarder_dark_skin_tone:': '🏂🏿', - ':snowboarder_tone5:': '🏂🏿', - ':superhero_light_skin_tone:': '🦸🏻', - ':superhero_tone1:': '🦸🏻', - ':superhero_medium_light_skin_tone:': '🦸🏼', - ':superhero_tone2:': '🦸🏼', - ':superhero_medium_skin_tone:': '🦸🏽', - ':superhero_tone3:': '🦸🏽', - ':superhero_medium_dark_skin_tone:': '🦸🏾', - ':superhero_tone4:': '🦸🏾', - ':superhero_dark_skin_tone:': '🦸🏿', - ':superhero_tone5:': '🦸🏿', - ':supervillain_light_skin_tone:': '🦹🏻', - ':supervillain_tone1:': '🦹🏻', - ':supervillain_medium_light_skin_tone:': '🦹🏼', - ':supervillain_tone2:': '🦹🏼', - ':supervillain_medium_skin_tone:': '🦹🏽', - ':supervillain_tone3:': '🦹🏽', - ':supervillain_medium_dark_skin_tone:': '🦹🏾', - ':supervillain_tone4:': '🦹🏾', - ':supervillain_dark_skin_tone:': '🦹🏿', - ':supervillain_tone5:': '🦹🏿', - ':-1_tone1:': '👎🏻', - ':thumbdown_tone1:': '👎🏻', - ':thumbsdown_tone1:': '👎🏻', - ':-1_tone2:': '👎🏼', - ':thumbdown_tone2:': '👎🏼', - ':thumbsdown_tone2:': '👎🏼', - ':-1_tone3:': '👎🏽', - ':thumbdown_tone3:': '👎🏽', - ':thumbsdown_tone3:': '👎🏽', - ':-1_tone4:': '👎🏾', - ':thumbdown_tone4:': '👎🏾', - ':thumbsdown_tone4:': '👎🏾', - ':-1_tone5:': '👎🏿', - ':thumbdown_tone5:': '👎🏿', - ':thumbsdown_tone5:': '👎🏿', - ':+1_tone1:': '👍🏻', - ':thumbup_tone1:': '👍🏻', - ':thumbsup_tone1:': '👍🏻', - ':+1_tone2:': '👍🏼', - ':thumbup_tone2:': '👍🏼', - ':thumbsup_tone2:': '👍🏼', - ':+1_tone3:': '👍🏽', - ':thumbup_tone3:': '👍🏽', - ':thumbsup_tone3:': '👍🏽', - ':+1_tone4:': '👍🏾', - ':thumbup_tone4:': '👍🏾', - ':thumbsup_tone4:': '👍🏾', - ':+1_tone5:': '👍🏿', - ':thumbup_tone5:': '👍🏿', - ':thumbsup_tone5:': '👍🏿', - ':united_nations:': '🇺🇳', - ':vampire_light_skin_tone:': '🧛🏻', - ':vampire_tone1:': '🧛🏻', - ':vampire_medium_light_skin_tone:': '🧛🏼', - ':vampire_tone2:': '🧛🏼', - ':vampire_medium_skin_tone:': '🧛🏽', - ':vampire_tone3:': '🧛🏽', - ':vampire_medium_dark_skin_tone:': '🧛🏾', - ':vampire_tone4:': '🧛🏾', - ':vampire_dark_skin_tone:': '🧛🏿', - ':vampire_tone5:': '🧛🏿', - ':raised_hand_with_part_between_middle_and_ring_fingers_tone1:': '🖖🏻', - ':vulcan_tone1:': '🖖🏻', - ':raised_hand_with_part_between_middle_and_ring_fingers_tone2:': '🖖🏼', - ':vulcan_tone2:': '🖖🏼', - ':raised_hand_with_part_between_middle_and_ring_fingers_tone3:': '🖖🏽', - ':vulcan_tone3:': '🖖🏽', - ':raised_hand_with_part_between_middle_and_ring_fingers_tone4:': '🖖🏾', - ':vulcan_tone4:': '🖖🏾', - ':raised_hand_with_part_between_middle_and_ring_fingers_tone5:': '🖖🏿', - ':vulcan_tone5:': '🖖🏿', - ':wave_tone1:': '👋🏻', - ':wave_tone2:': '👋🏼', - ':wave_tone3:': '👋🏽', - ':wave_tone4:': '👋🏾', - ':wave_tone5:': '👋🏿', - ':woman_and_man_holding_hands_light_skin_tone:': '👫🏻', - ':woman_and_man_holding_hands_tone1:': '👫🏻', - ':woman_and_man_holding_hands_medium_light_skin_tone:': '👫🏼', - ':woman_and_man_holding_hands_tone2:': '👫🏼', - ':woman_and_man_holding_hands_medium_skin_tone:': '👫🏽', - ':woman_and_man_holding_hands_tone3:': '👫🏽', - ':woman_and_man_holding_hands_medium_dark_skin_tone:': '👫🏾', - ':woman_and_man_holding_hands_tone4:': '👫🏾', - ':woman_and_man_holding_hands_dark_skin_tone:': '👫🏿', - ':woman_and_man_holding_hands_tone5:': '👫🏿', - ':woman_artist:': '👩‍🎨', - ':woman_astronaut:': '👩‍🚀', - ':woman_bald:': '👩‍🦲', - ':woman_cook:': '👩‍🍳', - ':woman_curly_haired:': '👩‍🦱', - ':woman_factory_worker:': '👩‍🏭', - ':woman_farmer:': '👩‍🌾', - ':woman_firefighter:': '👩‍🚒', - ':woman_in_manual_wheelchair:': '👩‍🦽', - ':woman_in_motorized_wheelchair:': '👩‍🦼', - ':woman_mechanic:': '👩‍🔧', - ':woman_office_worker:': '👩‍💼', - ':woman_red_haired:': '👩‍🦰', - ':woman_scientist:': '👩‍🔬', - ':woman_singer:': '👩‍🎤', - ':woman_student:': '👩‍🎓', - ':woman_teacher:': '👩‍🏫', - ':woman_technologist:': '👩‍💻', - ':woman_tone1:': '👩🏻', - ':woman_tone2:': '👩🏼', - ':woman_tone3:': '👩🏽', - ':woman_tone4:': '👩🏾', - ':woman_tone5:': '👩🏿', - ':woman_white_haired:': '👩‍🦳', - ':woman_with_headscarf_light_skin_tone:': '🧕🏻', - ':woman_with_headscarf_tone1:': '🧕🏻', - ':woman_with_headscarf_medium_light_skin_tone:': '🧕🏼', - ':woman_with_headscarf_tone2:': '🧕🏼', - ':woman_with_headscarf_medium_skin_tone:': '🧕🏽', - ':woman_with_headscarf_tone3:': '🧕🏽', - ':woman_with_headscarf_medium_dark_skin_tone:': '🧕🏾', - ':woman_with_headscarf_tone4:': '🧕🏾', - ':woman_with_headscarf_dark_skin_tone:': '🧕🏿', - ':woman_with_headscarf_tone5:': '🧕🏿', - ':woman_with_probing_cane:': '👩‍🦯', - ':women_holding_hands_light_skin_tone:': '👭🏻', - ':women_holding_hands_tone1:': '👭🏻', - ':women_holding_hands_medium_light_skin_tone:': '👭🏼', - ':women_holding_hands_tone2:': '👭🏼', - ':women_holding_hands_medium_skin_tone:': '👭🏽', - ':women_holding_hands_tone3:': '👭🏽', - ':women_holding_hands_medium_dark_skin_tone:': '👭🏾', - ':women_holding_hands_tone4:': '👭🏾', - ':women_holding_hands_dark_skin_tone:': '👭🏿', - ':women_holding_hands_tone5:': '👭🏿', - ':blond-haired_man:': '👱‍♂️', - ':blond-haired_woman:': '👱‍♀️', - ':deaf_man:': '🧏‍♂️', - ':deaf_woman:': '🧏‍♀️', - ':fist_tone1:': '✊🏻', - ':fist_tone2:': '✊🏼', - ':fist_tone3:': '✊🏽', - ':fist_tone4:': '✊🏾', - ':fist_tone5:': '✊🏿', - ':man_biking:': '🚴‍♂️', - ':man_bowing:': '🙇‍♂️', - ':man_cartwheeling:': '🤸‍♂️', - ':man_climbing:': '🧗‍♂️', - ':man_construction_worker:': '👷‍♂️', - ':man_detective:': '🕵️‍♂️', - ':man_elf:': '🧝‍♂️', - ':man_facepalming:': '🤦‍♂️', - ':man_fairy:': '🧚‍♂️', - ':man_frowning:': '🙍‍♂️', - ':man_genie:': '🧞‍♂️', - ':man_gesturing_no:': '🙅‍♂️', - ':man_gesturing_ok:': '🙆‍♂️', - ':man_getting_face_massage:': '💆‍♂️', - ':man_getting_haircut:': '💇‍♂️', - ':man_golfing:': '🏌️‍♂️', - ':man_guard:': '💂‍♂️', - ':man_health_worker:': '👨‍⚕️', - ':man_in_lotus_position:': '🧘‍♂️', - ':man_in_steamy_room:': '🧖‍♂️', - ':man_judge:': '👨‍⚖️', - ':man_juggling:': '🤹‍♂️', - ':man_kneeling:': '🧎‍♂️', - ':man_lifting_weights:': '🏋️‍♂️', - ':man_mage:': '🧙‍♂️', - ':man_mountain_biking:': '🚵‍♂️', - ':man_pilot:': '👨‍✈️', - ':man_playing_handball:': '🤾‍♂️', - ':man_playing_water_polo:': '🤽‍♂️', - ':man_police_officer:': '👮‍♂️', - ':man_pouting:': '🙎‍♂️', - ':man_raising_hand:': '🙋‍♂️', - ':man_rowing_boat:': '🚣‍♂️', - ':man_running:': '🏃‍♂️', - ':man_shrugging:': '🤷‍♂️', - ':man_standing:': '🧍‍♂️', - ':man_superhero:': '🦸‍♂️', - ':man_supervillain:': '🦹‍♂️', - ':man_surfing:': '🏄‍♂️', - ':man_swimming:': '🏊‍♂️', - ':man_tipping_hand:': '💁‍♂️', - ':man_vampire:': '🧛‍♂️', - ':man_walking:': '🚶‍♂️', - ':man_wearing_turban:': '👳‍♂️', - ':man_zombie:': '🧟‍♂️', - ':men_with_bunny_ears_partying:': '👯‍♂️', - ':men_wrestling:': '🤼♂️', - ':mermaid:': '🧜‍♀️', - ':merman:': '🧜‍♂️', - ':basketball_player_tone1:': '⛹️🏻', - ':person_with_ball_tone1:': '⛹️🏻', - ':person_bouncing_ball_tone1:': '⛹️🏻', - ':basketball_player_tone2:': '⛹️🏼', - ':person_with_ball_tone2:': '⛹️🏼', - ':person_bouncing_ball_tone2:': '⛹️🏼', - ':basketball_player_tone3:': '⛹️🏽', - ':person_with_ball_tone3:': '⛹️🏽', - ':person_bouncing_ball_tone3:': '⛹️🏽', - ':basketball_player_tone4:': '⛹️🏾', - ':person_with_ball_tone4:': '⛹️🏾', - ':person_bouncing_ball_tone4:': '⛹️🏾', - ':basketball_player_tone5:': '⛹️🏿', - ':person_with_ball_tone5:': '⛹️🏿', - ':person_bouncing_ball_tone5:': '⛹️🏿', - ':pirate_flag:': '🏴‍☠️', - ':point_up_tone1:': '☝️🏻', - ':point_up_tone2:': '☝️🏼', - ':point_up_tone3:': '☝️🏽', - ':point_up_tone4:': '☝️🏾', - ':point_up_tone5:': '☝️🏿', - ':raised_hand_tone1:': '✋🏻', - ':raised_hand_tone2:': '✋🏼', - ':raised_hand_tone3:': '✋🏽', - ':raised_hand_tone4:': '✋🏾', - ':raised_hand_tone5:': '✋🏿', - ':v_tone1:': '✌️🏻', - ':v_tone2:': '✌️🏼', - ':v_tone3:': '✌️🏽', - ':v_tone4:': '✌️🏾', - ':v_tone5:': '✌️🏿', - ':woman_biking:': '🚴‍♀️', - ':woman_bowing:': '🙇‍♀️', - ':woman_cartwheeling:': '🤸‍♀️', - ':woman_climbing:': '🧗‍♀️', - ':woman_construction_worker:': '👷‍♀️', - ':woman_detective:': '🕵️‍♀️', - ':woman_elf:': '🧝‍♀️', - ':woman_facepalming:': '🤦‍♀️', - ':woman_fairy:': '🧚‍♀️', - ':woman_frowning:': '🙍‍♀️', - ':woman_genie:': '🧞‍♀️', - ':woman_gesturing_no:': '🙅‍♀️', - ':woman_gesturing_ok:': '🙆‍♀️', - ':woman_getting_face_massage:': '💆‍♀️', - ':woman_getting_haircut:': '💇‍♀️', - ':woman_golfing:': '🏌️‍♀️', - ':woman_guard:': '💂‍♀️', - ':woman_health_worker:': '👩‍⚕️', - ':woman_in_lotus_position:': '🧘‍♀️', - ':woman_in_steamy_room:': '🧖‍♀️', - ':woman_judge:': '👩‍⚖️', - ':woman_juggling:': '🤹‍♀️', - ':woman_kneeling:': '🧎‍♀️', - ':woman_lifting_weights:': '🏋️‍♀️', - ':woman_mage:': '🧙‍♀️', - ':woman_mountain_biking:': '🚵‍♀️', - ':woman_pilot:': '👩‍✈️', - ':woman_playing_handball:': '🤾‍♀️', - ':woman_playing_water_polo:': '🤽‍♀️', - ':woman_police_officer:': '👮‍♀️', - ':woman_pouting:': '🙎‍♀️', - ':woman_raising_hand:': '🙋‍♀️', - ':woman_rowing_boat:': '🚣‍♀️', - ':woman_running:': '🏃‍♀️', - ':woman_shrugging:': '🤷‍♀️', - ':woman_standing:': '🧍‍♀️', - ':woman_superhero:': '🦸‍♀️', - ':woman_supervillain:': '🦹‍♀️', - ':woman_surfing:': '🏄‍♀️', - ':woman_swimming:': '🏊‍♀️', - ':woman_tipping_hand:': '💁‍♀️', - ':woman_vampire:': '🧛‍♀️', - ':woman_walking:': '🚶‍♀️', - ':woman_wearing_turban:': '👳‍♀️', - ':woman_zombie:': '🧟‍♀️', - ':women_with_bunny_ears_partying:': '👯‍♀️', - ':women_wrestling:': '🤼♀️', - ':writing_hand_tone1:': '✍️🏻', - ':writing_hand_tone2:': '✍️🏼', - ':writing_hand_tone3:': '✍️🏽', - ':writing_hand_tone4:': '✍️🏾', - ':writing_hand_tone5:': '✍️🏿', - ':keycap_asterisk:': '*️⃣', - ':asterisk:': '*️⃣', - ':eight:': '8️⃣', - ':five:': '5️⃣', - ':four:': '4️⃣', - ':hash:': '#️⃣', - ':man_bouncing_ball:': '⛹️‍♂️', - ':nine:': '9️⃣', - ':one:': '1️⃣', - ':seven:': '7️⃣', - ':six:': '6️⃣', - ':three:': '3️⃣', - ':two:': '2️⃣', - ':woman_bouncing_ball:': '⛹️‍♀️', - ':zero:': '0️⃣', - ':100:': '💯', - ':1234:': '🔢', - ':8ball:': '🎱', - ':a:': '🅰️', - ':ab:': '🆎', - ':abacus:': '🧮', - ':abc:': '🔤', - ':abcd:': '🔡', - ':accept:': '🉑', - ':adhesive_bandage:': '🩹', - ':adult:': '🧑', - ':aerial_tramway:': '🚡', - ':airplane_arriving:': '🛬', - ':airplane_departure:': '🛫', - ':small_airplane:': '🛩️', - ':airplane_small:': '🛩️', - ':alien:': '👽', - ':ambulance:': '🚑', - ':amphora:': '🏺', - ':angel:': '👼', - ':anger:': '💢', - ':right_anger_bubble:': '🗯️', - ':anger_right:': '🗯️', - ':angry:': '😠', - ':anguished:': '😧', - ':ant:': '🐜', - ':apple:': '🍎', - ':arrow_down_small:': '🔽', - ':arrow_up_small:': '🔼', - ':arrows_clockwise:': '🔃', - ':arrows_counterclockwise:': '🔄', - ':art:': '🎨', - ':articulated_lorry:': '🚛', - ':astonished:': '😲', - ':athletic_shoe:': '👟', - ':atm:': '🏧', - ':auto_rickshaw:': '🛺', - ':avocado:': '🥑', - ':axe:': '🪓', - ':b:': '🅱️', - ':baby:': '👶', - ':baby_bottle:': '🍼', - ':baby_chick:': '🐤', - ':baby_symbol:': '🚼', - ':back:': '🔙', - ':bacon:': '🥓', - ':badger:': '🦡', - ':badminton:': '🏸', - ':bagel:': '🥯', - ':baggage_claim:': '🛄', - ':bald:': '🦲', - ':ballet_shoes:': '🩰', - ':balloon:': '🎈', - ':ballot_box_with_ballot:': '🗳️', - ':ballot_box:': '🗳️', - ':bamboo:': '🎍', - ':banana:': '🍌', - ':banjo:': '🪕', - ':bank:': '🏦', - ':bar_chart:': '📊', - ':barber:': '💈', - ':basket:': '🧺', - ':basketball:': '🏀', - ':bat:': '🦇', - ':bath:': '🛀', - ':bathtub:': '🛁', - ':battery:': '🔋', - ':beach_with_umbrella:': '🏖️', - ':beach:': '🏖️', - ':bear:': '🐻', - ':bearded_person:': '🧔', - ':bed:': '🛏️', - ':bee:': '🐝', - ':beer:': '🍺', - ':beers:': '🍻', - ':beetle:': '🐞', - ':beginner:': '🔰', - ':bell:': '🔔', - ':bellhop_bell:': '🛎️', - ':bellhop:': '🛎️', - ':bento:': '🍱', - ':beverage_box:': '🧃', - ':bike:': '🚲', - ':bikini:': '👙', - ':billed_cap:': '🧢', - ':bird:': '🐦', - ':birthday:': '🎂', - ':black_heart:': '🖤', - ':black_joker:': '🃏', - ':black_square_button:': '🔲', - ':person_with_blond_hair:': '👱', - ':blond_haired_person:': '👱', - ':blossom:': '🌼', - ':blowfish:': '🐡', - ':blue_book:': '📘', - ':blue_car:': '🚙', - ':blue_circle:': '🔵', - ':blue_heart:': '💙', - ':blue_square:': '🟦', - ':blush:': '😊', - ':boar:': '🐗', - ':bomb:': '💣', - ':bone:': '🦴', - ':book:': '📖', - ':bookmark:': '🔖', - ':bookmark_tabs:': '📑', - ':books:': '📚', - ':boom:': '💥', - ':boot:': '👢', - ':bouquet:': '💐', - ':archery:': '🏹', - ':bow_and_arrow:': '🏹', - ':bowl_with_spoon:': '🥣', - ':bowling:': '🎳', - ':boxing_gloves:': '🥊', - ':boxing_glove:': '🥊', - ':boy:': '👦', - ':brain:': '🧠', - ':bread:': '🍞', - ':breast_feeding:': '🤱', - ':bricks:': '🧱', - ':bride_with_veil:': '👰', - ':bridge_at_night:': '🌉', - ':briefcase:': '💼', - ':briefs:': '🩲', - ':broccoli:': '🥦', - ':broken_heart:': '💔', - ':broom:': '🧹', - ':brown_circle:': '🟤', - ':brown_heart:': '🤎', - ':brown_square:': '🟫', - ':bug:': '🐛', - ':bulb:': '💡', - ':bullettrain_front:': '🚅', - ':bullettrain_side:': '🚄', - ':burrito:': '🌯', - ':bus:': '🚌', - ':busstop:': '🚏', - ':bust_in_silhouette:': '👤', - ':busts_in_silhouette:': '👥', - ':butter:': '🧈', - ':butterfly:': '🦋', - ':cactus:': '🌵', - ':cake:': '🍰', - ':calendar:': '📆', - ':spiral_calendar_pad:': '🗓️', - ':calendar_spiral:': '🗓️', - ':call_me_hand:': '🤙', - ':call_me:': '🤙', - ':calling:': '📲', - ':camel:': '🐫', - ':camera:': '📷', - ':camera_with_flash:': '📸', - ':camping:': '🏕️', - ':candle:': '🕯️', - ':candy:': '🍬', - ':canned_food:': '🥫', - ':kayak:': '🛶', - ':canoe:': '🛶', - ':capital_abcd:': '🔠', - ':card_file_box:': '🗃️', - ':card_box:': '🗃️', - ':card_index:': '📇', - ':carousel_horse:': '🎠', - ':carrot:': '🥕', - ':cat2:': '🐈', - ':cat:': '🐱', - ':cd:': '💿', - ':chair:': '🪑', - ':bottle_with_popping_cork:': '🍾', - ':champagne:': '🍾', - ':clinking_glass:': '🥂', - ':champagne_glass:': '🥂', - ':chart:': '💹', - ':chart_with_downwards_trend:': '📉', - ':chart_with_upwards_trend:': '📈', - ':checkered_flag:': '🏁', - ':cheese_wedge:': '🧀', - ':cheese:': '🧀', - ':cherries:': '🍒', - ':cherry_blossom:': '🌸', - ':chestnut:': '🌰', - ':chicken:': '🐔', - ':child:': '🧒', - ':children_crossing:': '🚸', - ':chipmunk:': '🐿️', - ':chocolate_bar:': '🍫', - ':chopsticks:': '🥢', - ':christmas_tree:': '🎄', - ':cinema:': '🎦', - ':circus_tent:': '🎪', - ':city_dusk:': '🌆', - ':city_sunrise:': '🌇', - ':city_sunset:': '🌇', - ':cityscape:': '🏙️', - ':cl:': '🆑', - ':clap:': '👏', - ':clapper:': '🎬', - ':classical_building:': '🏛️', - ':clipboard:': '📋', - ':clock1030:': '🕥', - ':clock10:': '🕙', - ':clock1130:': '🕦', - ':clock11:': '🕚', - ':clock1230:': '🕧', - ':clock12:': '🕛', - ':clock130:': '🕜', - ':clock1:': '🕐', - ':clock230:': '🕝', - ':clock2:': '🕑', - ':clock330:': '🕞', - ':clock3:': '🕒', - ':clock430:': '🕟', - ':clock4:': '🕓', - ':clock530:': '🕠', - ':clock5:': '🕔', - ':clock630:': '🕡', - ':clock6:': '🕕', - ':clock730:': '🕢', - ':clock7:': '🕖', - ':clock830:': '🕣', - ':clock8:': '🕗', - ':clock930:': '🕤', - ':clock9:': '🕘', - ':mantlepiece_clock:': '🕰️', - ':clock:': '🕰️', - ':closed_book:': '📕', - ':closed_lock_with_key:': '🔐', - ':closed_umbrella:': '🌂', - ':cloud_with_lightning:': '🌩️', - ':cloud_lightning:': '🌩️', - ':cloud_with_rain:': '🌧️', - ':cloud_rain:': '🌧️', - ':cloud_with_snow:': '🌨️', - ':cloud_snow:': '🌨️', - ':cloud_with_tornado:': '🌪️', - ':cloud_tornado:': '🌪️', - ':clown_face:': '🤡', - ':clown:': '🤡', - ':coat:': '🧥', - ':cocktail:': '🍸', - ':coconut:': '🥥', - ':cold_face:': '🥶', - ':cold_sweat:': '😰', - ':compass:': '🧭', - ':compression:': '🗜️', - ':computer:': '💻', - ':confetti_ball:': '🎊', - ':confounded:': '😖', - ':confused:': '😕', - ':construction:': '🚧', - ':building_construction:': '🏗️', - ':construction_site:': '🏗️', - ':construction_worker:': '👷', - ':control_knobs:': '🎛️', - ':convenience_store:': '🏪', - ':cookie:': '🍪', - ':cooking:': '🍳', - ':cool:': '🆒', - ':corn:': '🌽', - ':couch_and_lamp:': '🛋️', - ':couch:': '🛋️', - ':couple:': '👫', - ':couple_with_heart:': '💑', - ':couplekiss:': '💏', - ':cow2:': '🐄', - ':cow:': '🐮', - ':face_with_cowboy_hat:': '🤠', - ':cowboy:': '🤠', - ':crab:': '🦀', - ':lower_left_crayon:': '🖍️', - ':crayon:': '🖍️', - ':credit_card:': '💳', - ':crescent_moon:': '🌙', - ':cricket:': '🦗', - ':cricket_bat_ball:': '🏏', - ':cricket_game:': '🏏', - ':crocodile:': '🐊', - ':croissant:': '🥐', - ':crossed_flags:': '🎌', - ':crown:': '👑', - ':passenger_ship:': '🛳️', - ':cruise_ship:': '🛳️', - ':cry:': '😢', - ':crying_cat_face:': '😿', - ':crystal_ball:': '🔮', - ':cucumber:': '🥒', - ':cup_with_straw:': '🥤', - ':cupcake:': '🧁', - ':cupid:': '💘', - ':curling_stone:': '🥌', - ':curly_haired:': '🦱', - ':currency_exchange:': '💱', - ':curry:': '🍛', - ':pudding:': '🍮', - ':flan:': '🍮', - ':custard:': '🍮', - ':customs:': '🛃', - ':cut_of_meat:': '🥩', - ':cyclone:': '🌀', - ':dagger_knife:': '🗡️', - ':dagger:': '🗡️', - ':dancer:': '💃', - ':dango:': '🍡', - ':dark_sunglasses:': '🕶️', - ':dart:': '🎯', - ':dash:': '💨', - ':date:': '📅', - ':deaf_person:': '🧏', - ':deciduous_tree:': '🌳', - ':deer:': '🦌', - ':department_store:': '🏬', - ':desert:': '🏜️', - ':desktop_computer:': '🖥️', - ':desktop:': '🖥️', - ':spy:': '🕵️', - ':sleuth_or_spy:': '🕵️', - ':detective:': '🕵️', - ':diamond_shape_with_a_dot_inside:': '💠', - ':disappointed:': '😞', - ':disappointed_relieved:': '😥', - ':card_index_dividers:': '🗂️', - ':dividers:': '🗂️', - ':diving_mask:': '🤿', - ':diya_lamp:': '🪔', - ':dizzy:': '💫', - ':dizzy_face:': '😵', - ':dna:': '🧬', - ':do_not_litter:': '🚯', - ':dog2:': '🐕', - ':dog:': '🐶', - ':dollar:': '💵', - ':dolls:': '🎎', - ':dolphin:': '🐬', - ':door:': '🚪', - ':doughnut:': '🍩', - ':dove_of_peace:': '🕊️', - ':dove:': '🕊️', - ':dragon:': '🐉', - ':dragon_face:': '🐲', - ':dress:': '👗', - ':dromedary_camel:': '🐪', - ':drool:': '🤤', - ':drooling_face:': '🤤', - ':drop_of_blood:': '🩸', - ':droplet:': '💧', - ':drum_with_drumsticks:': '🥁', - ':drum:': '🥁', - ':duck:': '🦆', - ':dumpling:': '🥟', - ':dvd:': '📀', - ':email:': '📧', - ':e-mail:': '📧', - ':eagle:': '🦅', - ':ear:': '👂', - ':ear_of_rice:': '🌾', - ':ear_with_hearing_aid:': '🦻', - ':earth_africa:': '🌍', - ':earth_americas:': '🌎', - ':earth_asia:': '🌏', - ':egg:': '🥚', - ':eggplant:': '🍆', - ':electric_plug:': '🔌', - ':elephant:': '🐘', - ':elf:': '🧝', - ':end:': '🔚', - ':envelope_with_arrow:': '📩', - ':euro:': '💶', - ':european_castle:': '🏰', - ':european_post_office:': '🏤', - ':evergreen_tree:': '🌲', - ':exploding_head:': '🤯', - ':expressionless:': '😑', - ':eye:': '👁️', - ':eyeglasses:': '👓', - ':eyes:': '👀', - ':face_vomiting:': '🤮', - ':face_with_hand_over_mouth:': '🤭', - ':face_with_monocle:': '🧐', - ':face_with_raised_eyebrow:': '🤨', - ':face_with_symbols_over_mouth:': '🤬', - ':factory:': '🏭', - ':fairy:': '🧚', - ':falafel:': '🧆', - ':fallen_leaf:': '🍂', - ':family:': '👪', - ':fax:': '📠', - ':fearful:': '😨', - ':paw_prints:': '🐾', - ':feet:': '🐾', - ':ferris_wheel:': '🎡', - ':field_hockey:': '🏑', - ':file_cabinet:': '🗄️', - ':file_folder:': '📁', - ':film_frames:': '🎞️', - ':hand_with_index_and_middle_finger_crossed:': '🤞', - ':fingers_crossed:': '🤞', - ':flame:': '🔥', - ':fire:': '🔥', - ':fire_engine:': '🚒', - ':fire_extinguisher:': '🧯', - ':firecracker:': '🧨', - ':fireworks:': '🎆', - ':first_place_medal:': '🥇', - ':first_place:': '🥇', - ':first_quarter_moon:': '🌓', - ':first_quarter_moon_with_face:': '🌛', - ':fish:': '🐟', - ':fish_cake:': '🍥', - ':fishing_pole_and_fish:': '🎣', - ':waving_black_flag:': '🏴', - ':flag_black:': '🏴', - ':waving_white_flag:': '🏳️', - ':flag_white:': '🏳️', - ':flags:': '🎏', - ':flamingo:': '🦩', - ':flashlight:': '🔦', - ':floppy_disk:': '💾', - ':flower_playing_cards:': '🎴', - ':flushed:': '😳', - ':flying_disc:': '🥏', - ':flying_saucer:': '🛸', - ':fog:': '🌫️', - ':foggy:': '🌁', - ':foot:': '🦶', - ':football:': '🏈', - ':footprints:': '👣', - ':fork_and_knife:': '🍴', - ':fork_and_knife_with_plate:': '🍽️', - ':fork_knife_plate:': '🍽️', - ':fortune_cookie:': '🥠', - ':four_leaf_clover:': '🍀', - ':fox_face:': '🦊', - ':fox:': '🦊', - ':frame_with_picture:': '🖼️', - ':frame_photo:': '🖼️', - ':free:': '🆓', - ':baguette_bread:': '🥖', - ':french_bread:': '🥖', - ':fried_shrimp:': '🍤', - ':fries:': '🍟', - ':frog:': '🐸', - ':frowning:': '😦', - ':full_moon:': '🌕', - ':full_moon_with_face:': '🌝', - ':game_die:': '🎲', - ':garlic:': '🧄', - ':gem:': '💎', - ':genie:': '🧞', - ':ghost:': '👻', - ':gift:': '🎁', - ':gift_heart:': '💝', - ':giraffe:': '🦒', - ':girl:': '👧', - ':globe_with_meridians:': '🌐', - ':gloves:': '🧤', - ':goal_net:': '🥅', - ':goal:': '🥅', - ':goat:': '🐐', - ':goggles:': '🥽', - ':gorilla:': '🦍', - ':grapes:': '🍇', - ':green_apple:': '🍏', - ':green_book:': '📗', - ':green_circle:': '🟢', - ':green_heart:': '💚', - ':green_square:': '🟩', - ':grimacing:': '😬', - ':grin:': '😁', - ':grinning:': '😀', - ':guardsman:': '💂', - ':guard:': '💂', - ':guide_dog:': '🦮', - ':guitar:': '🎸', - ':gun:': '🔫', - ':hamburger:': '🍔', - ':hammer:': '🔨', - ':hamster:': '🐹', - ':raised_hand_with_fingers_splayed:': '🖐️', - ':hand_splayed:': '🖐️', - ':handbag:': '👜', - ':shaking_hands:': '🤝', - ':handshake:': '🤝', - ':hatched_chick:': '🐥', - ':hatching_chick:': '🐣', - ':face_with_head_bandage:': '🤕', - ':head_bandage:': '🤕', - ':headphones:': '🎧', - ':hear_no_evil:': '🙉', - ':heart_decoration:': '💟', - ':heart_eyes:': '😍', - ':heart_eyes_cat:': '😻', - ':heartbeat:': '💓', - ':heartpulse:': '💗', - ':heavy_dollar_sign:': '💲', - ':hedgehog:': '🦔', - ':helicopter:': '🚁', - ':herb:': '🌿', - ':hibiscus:': '🌺', - ':high_brightness:': '🔆', - ':high_heel:': '👠', - ':hiking_boot:': '🥾', - ':hindu_temple:': '🛕', - ':hippopotamus:': '🦛', - ':hockey:': '🏒', - ':hole:': '🕳️', - ':house_buildings:': '🏘️', - ':homes:': '🏘️', - ':honey_pot:': '🍯', - ':horse:': '🐴', - ':horse_racing:': '🏇', - ':hospital:': '🏥', - ':hot_face:': '🥵', - ':hot_pepper:': '🌶️', - ':hot_dog:': '🌭', - ':hotdog:': '🌭', - ':hotel:': '🏨', - ':house:': '🏠', - ':derelict_house_building:': '🏚️', - ':house_abandoned:': '🏚️', - ':house_with_garden:': '🏡', - ':hugging_face:': '🤗', - ':hugging:': '🤗', - ':hushed:': '😯', - ':ice_cream:': '🍨', - ':ice_cube:': '🧊', - ':icecream:': '🍦', - ':id:': '🆔', - ':ideograph_advantage:': '🉐', - ':imp:': '👿', - ':inbox_tray:': '📥', - ':incoming_envelope:': '📨', - ':innocent:': '😇', - ':iphone:': '📱', - ':desert_island:': '🏝️', - ':island:': '🏝️', - ':izakaya_lantern:': '🏮', - ':jack_o_lantern:': '🎃', - ':japan:': '🗾', - ':japanese_castle:': '🏯', - ':japanese_goblin:': '👺', - ':japanese_ogre:': '👹', - ':jeans:': '👖', - ':jigsaw:': '🧩', - ':joy:': '😂', - ':joy_cat:': '😹', - ':joystick:': '🕹️', - ':kaaba:': '🕋', - ':kangaroo:': '🦘', - ':old_key:': '🗝️', - ':key2:': '🗝️', - ':key:': '🔑', - ':keycap_ten:': '🔟', - ':kimono:': '👘', - ':kiss:': '💋', - ':kissing:': '😗', - ':kissing_cat:': '😽', - ':kissing_closed_eyes:': '😚', - ':kissing_heart:': '😘', - ':kissing_smiling_eyes:': '😙', - ':kite:': '🪁', - ':kiwifruit:': '🥝', - ':kiwi:': '🥝', - ':knife:': '🔪', - ':koala:': '🐨', - ':koko:': '🈁', - ':lab_coat:': '🥼', - ':label:': '🏷️', - ':lacrosse:': '🥍', - ':large_blue_diamond:': '🔷', - ':large_orange_diamond:': '🔶', - ':large_blue_circle:': '🔵', - ':last_quarter_moon:': '🌗', - ':last_quarter_moon_with_face:': '🌜', - ':satisfied:': '😆', - ':laughing:': '😆', - ':leafy_green:': '🥬', - ':leaves:': '🍃', - ':ledger:': '📒', - ':left_fist:': '🤛', - ':left_facing_fist:': '🤛', - ':left_luggage:': '🛅', - ':leg:': '🦵', - ':lemon:': '🍋', - ':leopard:': '🐆', - ':level_slider:': '🎚️', - ':man_in_business_suit_levitating:': '🕴️', - ':levitate:': '🕴️', - ':light_rail:': '🚈', - ':link:': '🔗', - ':lion:': '🦁', - ':lion_face:': '🦁', - ':lips:': '👄', - ':lipstick:': '💄', - ':lizard:': '🦎', - ':llama:': '🦙', - ':lobster:': '🦞', - ':lock:': '🔒', - ':lock_with_ink_pen:': '🔏', - ':lollipop:': '🍭', - ':loud_sound:': '🔊', - ':loudspeaker:': '📢', - ':love_hotel:': '🏩', - ':love_letter:': '💌', - ':love_you_gesture:': '🤟', - ':low_brightness:': '🔅', - ':luggage:': '🧳', - ':liar:': '🤥', - ':lying_face:': '🤥', - ':mag:': '🔍', - ':mag_right:': '🔎', - ':mage:': '🧙', - ':magnet:': '🧲', - ':mahjong:': '🀄', - ':mailbox:': '📫', - ':mailbox_closed:': '📪', - ':mailbox_with_mail:': '📬', - ':mailbox_with_no_mail:': '📭', - ':man:': '👨', - ':male_dancer:': '🕺', - ':man_dancing:': '🕺', - ':man_in_tuxedo:': '🤵', - ':man_with_gua_pi_mao:': '👲', - ':man_with_chinese_cap:': '👲', - ':mango:': '🥭', - ':mans_shoe:': '👞', - ':manual_wheelchair:': '🦽', - ':world_map:': '🗺️', - ':map:': '🗺️', - ':maple_leaf:': '🍁', - ':karate_uniform:': '🥋', - ':martial_arts_uniform:': '🥋', - ':mask:': '😷', - ':mate:': '🧉', - ':meat_on_bone:': '🍖', - ':mechanical_arm:': '🦾', - ':mechanical_leg:': '🦿', - ':sports_medal:': '🏅', - ':medal:': '🏅', - ':mega:': '📣', - ':melon:': '🍈', - ':menorah:': '🕎', - ':mens:': '🚹', - ':merperson:': '🧜', - ':sign_of_the_horns:': '🤘', - ':metal:': '🤘', - ':metro:': '🚇', - ':microbe:': '🦠', - ':studio_microphone:': '🎙️', - ':microphone2:': '🎙️', - ':microphone:': '🎤', - ':microscope:': '🔬', - ':reversed_hand_with_middle_finger_extended:': '🖕', - ':middle_finger:': '🖕', - ':military_medal:': '🎖️', - ':glass_of_milk:': '🥛', - ':milk:': '🥛', - ':milky_way:': '🌌', - ':minibus:': '🚐', - ':minidisc:': '💽', - ':mobile_phone_off:': '📴', - ':money_mouth_face:': '🤑', - ':money_mouth:': '🤑', - ':money_with_wings:': '💸', - ':moneybag:': '💰', - ':monkey:': '🐒', - ':monkey_face:': '🐵', - ':monorail:': '🚝', - ':moon_cake:': '🥮', - ':mortar_board:': '🎓', - ':mosque:': '🕌', - ':mosquito:': '🦟', - ':motorbike:': '🛵', - ':motor_scooter:': '🛵', - ':motorboat:': '🛥️', - ':racing_motorcycle:': '🏍️', - ':motorcycle:': '🏍️', - ':motorized_wheelchair:': '🦼', - ':motorway:': '🛣️', - ':mount_fuji:': '🗻', - ':mountain_cableway:': '🚠', - ':mountain_railway:': '🚞', - ':snow_capped_mountain:': '🏔️', - ':mountain_snow:': '🏔️', - ':mouse2:': '🐁', - ':mouse:': '🐭', - ':three_button_mouse:': '🖱️', - ':mouse_three_button:': '🖱️', - ':movie_camera:': '🎥', - ':moyai:': '🗿', - ':mother_christmas:': '🤶', - ':mrs_claus:': '🤶', - ':muscle:': '💪', - ':mushroom:': '🍄', - ':musical_keyboard:': '🎹', - ':musical_note:': '🎵', - ':musical_score:': '🎼', - ':mute:': '🔇', - ':nail_care:': '💅', - ':name_badge:': '📛', - ':sick:': '🤢', - ':nauseated_face:': '🤢', - ':nazar_amulet:': '🧿', - ':necktie:': '👔', - ':nerd_face:': '🤓', - ':nerd:': '🤓', - ':neutral_face:': '😐', - ':new:': '🆕', - ':new_moon:': '🌑', - ':new_moon_with_face:': '🌚', - ':rolled_up_newspaper:': '🗞️', - ':newspaper2:': '🗞️', - ':newspaper:': '📰', - ':ng:': '🆖', - ':night_with_stars:': '🌃', - ':no_bell:': '🔕', - ':no_bicycles:': '🚳', - ':no_entry_sign:': '🚫', - ':no_mobile_phones:': '📵', - ':no_mouth:': '😶', - ':no_pedestrians:': '🚷', - ':no_smoking:': '🚭', - ':non-potable_water:': '🚱', - ':nose:': '👃', - ':notebook:': '📓', - ':notebook_with_decorative_cover:': '📔', - ':spiral_note_pad:': '🗒️', - ':notepad_spiral:': '🗒️', - ':notes:': '🎶', - ':nut_and_bolt:': '🔩', - ':o2:': '🅾️', - ':ocean:': '🌊', - ':stop_sign:': '🛑', - ':octagonal_sign:': '🛑', - ':octopus:': '🐙', - ':oden:': '🍢', - ':office:': '🏢', - ':oil_drum:': '🛢️', - ':oil:': '🛢️', - ':ok:': '🆗', - ':ok_hand:': '👌', - ':older_adult:': '🧓', - ':older_man:': '👴', - ':grandma:': '👵', - ':older_woman:': '👵', - ':om_symbol:': '🕉️', - ':on:': '🔛', - ':oncoming_automobile:': '🚘', - ':oncoming_bus:': '🚍', - ':oncoming_police_car:': '🚔', - ':oncoming_taxi:': '🚖', - ':one_piece_swimsuit:': '🩱', - ':onion:': '🧅', - ':open_file_folder:': '📂', - ':open_hands:': '👐', - ':open_mouth:': '😮', - ':orange_book:': '📙', - ':orange_circle:': '🟠', - ':orange_heart:': '🧡', - ':orange_square:': '🟧', - ':orangutan:': '🦧', - ':otter:': '🦦', - ':outbox_tray:': '📤', - ':owl:': '🦉', - ':ox:': '🐂', - ':oyster:': '🦪', - ':package:': '📦', - ':page_facing_up:': '📄', - ':page_with_curl:': '📃', - ':pager:': '📟', - ':lower_left_paintbrush:': '🖌️', - ':paintbrush:': '🖌️', - ':palm_tree:': '🌴', - ':palms_up_together:': '🤲', - ':pancakes:': '🥞', - ':panda_face:': '🐼', - ':paperclip:': '📎', - ':linked_paperclips:': '🖇️', - ':paperclips:': '🖇️', - ':parachute:': '🪂', - ':national_park:': '🏞️', - ':park:': '🏞️', - ':parking:': '🅿️', - ':parrot:': '🦜', - ':partying_face:': '🥳', - ':passport_control:': '🛂', - ':peach:': '🍑', - ':peacock:': '🦚', - ':shelled_peanut:': '🥜', - ':peanuts:': '🥜', - ':pear:': '🍐', - ':lower_left_ballpoint_pen:': '🖊️', - ':pen_ballpoint:': '🖊️', - ':lower_left_fountain_pen:': '🖋️', - ':pen_fountain:': '🖋️', - ':memo:': '📝', - ':pencil:': '📝', - ':penguin:': '🐧', - ':pensive:': '😔', - ':dancers:': '👯', - ':people_with_bunny_ears_partying:': '👯', - ':wrestlers:': '🤼', - ':wrestling:': '🤼', - ':people_wrestling:': '🤼', - ':performing_arts:': '🎭', - ':persevere:': '😣', - ':bicyclist:': '🚴', - ':person_biking:': '🚴', - ':bow:': '🙇', - ':person_bowing:': '🙇', - ':person_climbing:': '🧗', - ':cartwheel:': '🤸', - ':person_doing_cartwheel:': '🤸', - ':face_palm:': '🤦', - ':facepalm:': '🤦', - ':person_facepalming:': '🤦', - ':fencer:': '🤺', - ':fencing:': '🤺', - ':person_fencing:': '🤺', - ':person_frowning:': '🙍', - ':no_good:': '🙅', - ':person_gesturing_no:': '🙅', - ':ok_woman:': '🙆', - ':person_gesturing_ok:': '🙆', - ':haircut:': '💇', - ':person_getting_haircut:': '💇', - ':massage:': '💆', - ':person_getting_massage:': '💆', - ':golfer:': '🏌️', - ':person_golfing:': '🏌️', - ':person_in_lotus_position:': '🧘', - ':person_in_steamy_room:': '🧖', - ':juggling:': '🤹', - ':juggler:': '🤹', - ':person_juggling:': '🤹', - ':person_kneeling:': '🧎', - ':lifter:': '🏋️', - ':weight_lifter:': '🏋️', - ':person_lifting_weights:': '🏋️', - ':mountain_bicyclist:': '🚵', - ':person_mountain_biking:': '🚵', - ':handball:': '🤾', - ':person_playing_handball:': '🤾', - ':water_polo:': '🤽', - ':person_playing_water_polo:': '🤽', - ':person_with_pouting_face:': '🙎', - ':person_pouting:': '🙎', - ':raising_hand:': '🙋', - ':person_raising_hand:': '🙋', - ':rowboat:': '🚣', - ':person_rowing_boat:': '🚣', - ':runner:': '🏃', - ':person_running:': '🏃', - ':shrug:': '🤷', - ':person_shrugging:': '🤷', - ':person_standing:': '🧍', - ':surfer:': '🏄', - ':person_surfing:': '🏄', - ':swimmer:': '🏊', - ':person_swimming:': '🏊', - ':information_desk_person:': '💁', - ':person_tipping_hand:': '💁', - ':walking:': '🚶', - ':person_walking:': '🚶', - ':man_with_turban:': '👳', - ':person_wearing_turban:': '👳', - ':petri_dish:': '🧫', - ':pie:': '🥧', - ':pig2:': '🐖', - ':pig:': '🐷', - ':pig_nose:': '🐽', - ':pill:': '💊', - ':pinching_hand:': '🤏', - ':pineapple:': '🍍', - ':table_tennis:': '🏓', - ':ping_pong:': '🏓', - ':pizza:': '🍕', - ':worship_symbol:': '🛐', - ':place_of_worship:': '🛐', - ':pleading_face:': '🥺', - ':point_down:': '👇', - ':point_left:': '👈', - ':point_right:': '👉', - ':point_up_2:': '👆', - ':police_car:': '🚓', - ':cop:': '👮', - ':police_officer:': '👮', - ':poodle:': '🐩', - ':shit:': '💩', - ':hankey:': '💩', - ':poo:': '💩', - ':poop:': '💩', - ':popcorn:': '🍿', - ':post_office:': '🏣', - ':postal_horn:': '📯', - ':postbox:': '📮', - ':potable_water:': '🚰', - ':potato:': '🥔', - ':pouch:': '👝', - ':poultry_leg:': '🍗', - ':pound:': '💷', - ':pouting_cat:': '😾', - ':pray:': '🙏', - ':prayer_beads:': '📿', - ':expecting_woman:': '🤰', - ':pregnant_woman:': '🤰', - ':pretzel:': '🥨', - ':prince:': '🤴', - ':princess:': '👸', - ':printer:': '🖨️', - ':probing_cane:': '🦯', - ':film_projector:': '📽️', - ':projector:': '📽️', - ':punch:': '👊', - ':purple_circle:': '🟣', - ':purple_heart:': '💜', - ':purple_square:': '🟪', - ':purse:': '👛', - ':pushpin:': '📌', - ':put_litter_in_its_place:': '🚮', - ':rabbit2:': '🐇', - ':rabbit:': '🐰', - ':raccoon:': '🦝', - ':racing_car:': '🏎️', - ':race_car:': '🏎️', - ':racehorse:': '🐎', - ':radio:': '📻', - ':radio_button:': '🔘', - ':rage:': '😡', - ':railway_car:': '🚃', - ':railroad_track:': '🛤️', - ':railway_track:': '🛤️', - ':rainbow:': '🌈', - ':back_of_hand:': '🤚', - ':raised_back_of_hand:': '🤚', - ':raised_hands:': '🙌', - ':ram:': '🐏', - ':ramen:': '🍜', - ':rat:': '🐀', - ':razor:': '🪒', - ':receipt:': '🧾', - ':red_car:': '🚗', - ':red_circle:': '🔴', - ':red_envelope:': '🧧', - ':red_haired:': '🦰', - ':red_square:': '🟥', - ':regional_indicator_a:': '🇦', - ':regional_indicator_b:': '🇧', - ':regional_indicator_c:': '🇨', - ':regional_indicator_d:': '🇩', - ':regional_indicator_e:': '🇪', - ':regional_indicator_f:': '🇫', - ':regional_indicator_g:': '🇬', - ':regional_indicator_h:': '🇭', - ':regional_indicator_i:': '🇮', - ':regional_indicator_j:': '🇯', - ':regional_indicator_k:': '🇰', - ':regional_indicator_l:': '🇱', - ':regional_indicator_m:': '🇲', - ':regional_indicator_n:': '🇳', - ':regional_indicator_o:': '🇴', - ':regional_indicator_p:': '🇵', - ':regional_indicator_q:': '🇶', - ':regional_indicator_r:': '🇷', - ':regional_indicator_s:': '🇸', - ':regional_indicator_t:': '🇹', - ':regional_indicator_u:': '🇺', - ':regional_indicator_v:': '🇻', - ':regional_indicator_w:': '🇼', - ':regional_indicator_x:': '🇽', - ':regional_indicator_y:': '🇾', - ':regional_indicator_z:': '🇿', - ':relieved:': '😌', - ':reminder_ribbon:': '🎗️', - ':repeat:': '🔁', - ':repeat_one:': '🔂', - ':restroom:': '🚻', - ':revolving_hearts:': '💞', - ':rhinoceros:': '🦏', - ':rhino:': '🦏', - ':ribbon:': '🎀', - ':rice:': '🍚', - ':rice_ball:': '🍙', - ':rice_cracker:': '🍘', - ':rice_scene:': '🎑', - ':right_fist:': '🤜', - ':right_facing_fist:': '🤜', - ':ring:': '💍', - ':ringed_planet:': '🪐', - ':robot_face:': '🤖', - ':robot:': '🤖', - ':rocket:': '🚀', - ':rolling_on_the_floor_laughing:': '🤣', - ':rofl:': '🤣', - ':roll_of_paper:': '🧻', - ':roller_coaster:': '🎢', - ':face_with_rolling_eyes:': '🙄', - ':rolling_eyes:': '🙄', - ':rooster:': '🐓', - ':rose:': '🌹', - ':rosette:': '🏵️', - ':rotating_light:': '🚨', - ':round_pushpin:': '📍', - ':rugby_football:': '🏉', - ':running_shirt_with_sash:': '🎽', - ':sa:': '🈂️', - ':safety_pin:': '🧷', - ':safety_vest:': '🦺', - ':sake:': '🍶', - ':green_salad:': '🥗', - ':salad:': '🥗', - ':salt:': '🧂', - ':sandal:': '👡', - ':sandwich:': '🥪', - ':santa:': '🎅', - ':sari:': '🥻', - ':satellite:': '📡', - ':satellite_orbital:': '🛰️', - ':sauropod:': '🦕', - ':saxophone:': '🎷', - ':scarf:': '🧣', - ':school:': '🏫', - ':school_satchel:': '🎒', - ':scooter:': '🛴', - ':scorpion:': '🦂', - ':scream:': '😱', - ':scream_cat:': '🙀', - ':scroll:': '📜', - ':seat:': '💺', - ':second_place_medal:': '🥈', - ':second_place:': '🥈', - ':see_no_evil:': '🙈', - ':seedling:': '🌱', - ':selfie:': '🤳', - ':paella:': '🥘', - ':shallow_pan_of_food:': '🥘', - ':shark:': '🦈', - ':shaved_ice:': '🍧', - ':sheep:': '🐑', - ':shell:': '🐚', - ':shield:': '🛡️', - ':ship:': '🚢', - ':shirt:': '👕', - ':shopping_bags:': '🛍️', - ':shopping_trolley:': '🛒', - ':shopping_cart:': '🛒', - ':shorts:': '🩳', - ':shower:': '🚿', - ':shrimp:': '🦐', - ':shushing_face:': '🤫', - ':signal_strength:': '📶', - ':six_pointed_star:': '🔯', - ':skateboard:': '🛹', - ':ski:': '🎿', - ':skeleton:': '💀', - ':skull:': '💀', - ':skunk:': '🦨', - ':sled:': '🛷', - ':sleeping:': '😴', - ':sleeping_accommodation:': '🛌', - ':sleepy:': '😪', - ':slightly_frowning_face:': '🙁', - ':slight_frown:': '🙁', - ':slightly_smiling_face:': '🙂', - ':slight_smile:': '🙂', - ':slot_machine:': '🎰', - ':sloth:': '🦥', - ':small_blue_diamond:': '🔹', - ':small_orange_diamond:': '🔸', - ':small_red_triangle:': '🔺', - ':small_red_triangle_down:': '🔻', - ':smile:': '😄', - ':smile_cat:': '😸', - ':smiley:': '😃', - ':smiley_cat:': '😺', - ':smiling_face_with_3_hearts:': '🥰', - ':smiling_imp:': '😈', - ':smirk:': '😏', - ':smirk_cat:': '😼', - ':smoking:': '🚬', - ':snail:': '🐌', - ':snake:': '🐍', - ':sneeze:': '🤧', - ':sneezing_face:': '🤧', - ':snowboarder:': '🏂', - ':soap:': '🧼', - ':sob:': '😭', - ':socks:': '🧦', - ':softball:': '🥎', - ':soon:': '🔜', - ':sos:': '🆘', - ':sound:': '🔉', - ':space_invader:': '👾', - ':spaghetti:': '🍝', - ':sparkler:': '🎇', - ':sparkling_heart:': '💖', - ':speak_no_evil:': '🙊', - ':speaker:': '🔈', - ':speaking_head_in_silhouette:': '🗣️', - ':speaking_head:': '🗣️', - ':speech_balloon:': '💬', - ':left_speech_bubble:': '🗨️', - ':speech_left:': '🗨️', - ':speedboat:': '🚤', - ':spider:': '🕷️', - ':spider_web:': '🕸️', - ':sponge:': '🧽', - ':spoon:': '🥄', - ':squeeze_bottle:': '🧴', - ':squid:': '🦑', - ':stadium:': '🏟️', - ':star2:': '🌟', - ':star_struck:': '🤩', - ':stars:': '🌠', - ':station:': '🚉', - ':statue_of_liberty:': '🗽', - ':steam_locomotive:': '🚂', - ':stethoscope:': '🩺', - ':stew:': '🍲', - ':straight_ruler:': '📏', - ':strawberry:': '🍓', - ':stuck_out_tongue:': '😛', - ':stuck_out_tongue_closed_eyes:': '😝', - ':stuck_out_tongue_winking_eye:': '😜', - ':stuffed_pita:': '🥙', - ':stuffed_flatbread:': '🥙', - ':sun_with_face:': '🌞', - ':sunflower:': '🌻', - ':sunglasses:': '😎', - ':sunrise:': '🌅', - ':sunrise_over_mountains:': '🌄', - ':superhero:': '🦸', - ':supervillain:': '🦹', - ':sushi:': '🍣', - ':suspension_railway:': '🚟', - ':swan:': '🦢', - ':sweat:': '😓', - ':sweat_drops:': '💦', - ':sweat_smile:': '😅', - ':sweet_potato:': '🍠', - ':symbols:': '🔣', - ':synagogue:': '🕍', - ':syringe:': '💉', - ':t_rex:': '🦖', - ':taco:': '🌮', - ':tada:': '🎉', - ':takeout_box:': '🥡', - ':tanabata_tree:': '🎋', - ':tangerine:': '🍊', - ':taxi:': '🚕', - ':tea:': '🍵', - ':teddy_bear:': '🧸', - ':telephone_receiver:': '📞', - ':telescope:': '🔭', - ':tennis:': '🎾', - ':test_tube:': '🧪', - ':thermometer:': '🌡️', - ':face_with_thermometer:': '🤒', - ':thermometer_face:': '🤒', - ':thinking_face:': '🤔', - ':thinking:': '🤔', - ':third_place_medal:': '🥉', - ':third_place:': '🥉', - ':thought_balloon:': '💭', - ':thread:': '🧵', - ':-1:': '👎', - ':thumbdown:': '👎', - ':thumbsdown:': '👎', - ':+1:': '👍', - ':thumbup:': '👍', - ':thumbsup:': '👍', - ':ticket:': '🎫', - ':admission_tickets:': '🎟️', - ':tickets:': '🎟️', - ':tiger2:': '🐅', - ':tiger:': '🐯', - ':tired_face:': '😫', - ':toilet:': '🚽', - ':tokyo_tower:': '🗼', - ':tomato:': '🍅', - ':tone1:': '🏻', - ':tone2:': '🏼', - ':tone3:': '🏽', - ':tone4:': '🏾', - ':tone5:': '🏿', - ':tongue:': '👅', - ':toolbox:': '🧰', - ':hammer_and_wrench:': '🛠️', - ':tools:': '🛠️', - ':tooth:': '🦷', - ':top:': '🔝', - ':tophat:': '🎩', - ':trackball:': '🖲️', - ':tractor:': '🚜', - ':traffic_light:': '🚥', - ':train2:': '🚆', - ':train:': '🚋', - ':tram:': '🚊', - ':triangular_flag_on_post:': '🚩', - ':triangular_ruler:': '📐', - ':trident:': '🔱', - ':triumph:': '😤', - ':trolleybus:': '🚎', - ':trophy:': '🏆', - ':tropical_drink:': '🍹', - ':tropical_fish:': '🐠', - ':truck:': '🚚', - ':trumpet:': '🎺', - ':tulip:': '🌷', - ':whisky:': '🥃', - ':tumbler_glass:': '🥃', - ':turkey:': '🦃', - ':turtle:': '🐢', - ':tv:': '📺', - ':twisted_rightwards_arrows:': '🔀', - ':two_hearts:': '💕', - ':two_men_holding_hands:': '👬', - ':two_women_holding_hands:': '👭', - ':u5272:': '🈹', - ':u5408:': '🈴', - ':u55b6:': '🈺', - ':u6307:': '🈯', - ':u6708:': '🈷️', - ':u6709:': '🈶', - ':u6e80:': '🈵', - ':u7121:': '🈚', - ':u7533:': '🈸', - ':u7981:': '🈲', - ':u7a7a:': '🈳', - ':unamused:': '😒', - ':underage:': '🔞', - ':unicorn_face:': '🦄', - ':unicorn:': '🦄', - ':unlock:': '🔓', - ':up:': '🆙', - ':upside_down_face:': '🙃', - ':upside_down:': '🙃', - ':vampire:': '🧛', - ':vertical_traffic_light:': '🚦', - ':vhs:': '📼', - ':vibration_mode:': '📳', - ':video_camera:': '📹', - ':video_game:': '🎮', - ':violin:': '🎻', - ':volcano:': '🌋', - ':volleyball:': '🏐', - ':vs:': '🆚', - ':raised_hand_with_part_between_middle_and_ring_fingers:': '🖖', - ':vulcan:': '🖖', - ':waffle:': '🧇', - ':waning_crescent_moon:': '🌘', - ':waning_gibbous_moon:': '🌖', - ':wastebasket:': '🗑️', - ':water_buffalo:': '🐃', - ':watermelon:': '🍉', - ':wave:': '👋', - ':waxing_crescent_moon:': '🌒', - ':waxing_gibbous_moon:': '🌔', - ':wc:': '🚾', - ':weary:': '😩', - ':wedding:': '💒', - ':whale2:': '🐋', - ':whale:': '🐳', - ':white_flower:': '💮', - ':white_haired:': '🦳', - ':white_heart:': '🤍', - ':white_square_button:': '🔳', - ':white_sun_behind_cloud:': '🌥️', - ':white_sun_cloud:': '🌥️', - ':white_sun_behind_cloud_with_rain:': '🌦️', - ':white_sun_rain_cloud:': '🌦️', - ':white_sun_with_small_cloud:': '🌤️', - ':white_sun_small_cloud:': '🌤️', - ':wilted_flower:': '🥀', - ':wilted_rose:': '🥀', - ':wind_blowing_face:': '🌬️', - ':wind_chime:': '🎐', - ':wine_glass:': '🍷', - ':wink:': '😉', - ':wolf:': '🐺', - ':woman:': '👩', - ':woman_with_headscarf:': '🧕', - ':womans_clothes:': '👚', - ':womans_flat_shoe:': '🥿', - ':womans_hat:': '👒', - ':womens:': '🚺', - ':woozy_face:': '🥴', - ':worried:': '😟', - ':wrench:': '🔧', - ':yarn:': '🧶', - ':yawning_face:': '🥱', - ':yellow_circle:': '🟡', - ':yellow_heart:': '💛', - ':yellow_square:': '🟨', - ':yen:': '💴', - ':yo_yo:': '🪀', - ':yum:': '😋', - ':zany_face:': '🤪', - ':zebra:': '🦓', - ':zipper_mouth_face:': '🤐', - ':zipper_mouth:': '🤐', - ':zombie:': '🧟', - ':zzz:': '💤', - ':airplane:': '✈️', - ':alarm_clock:': '⏰', - ':alembic:': '⚗️', - ':anchor:': '⚓', - ':aquarius:': '♒', - ':aries:': '♈', - ':arrow_backward:': '◀️', - ':arrow_double_down:': '⏬', - ':arrow_double_up:': '⏫', - ':arrow_down:': '⬇️', - ':arrow_forward:': '▶️', - ':arrow_heading_down:': '⤵️', - ':arrow_heading_up:': '⤴️', - ':arrow_left:': '⬅️', - ':arrow_lower_left:': '↙️', - ':arrow_lower_right:': '↘️', - ':arrow_right:': '➡️', - ':arrow_right_hook:': '↪️', - ':arrow_up:': '⬆️', - ':arrow_up_down:': '↕️', - ':arrow_upper_left:': '↖️', - ':arrow_upper_right:': '↗️', - ':asterisk_symbol:': '*️', - ':atom_symbol:': '⚛️', - ':atom:': '⚛️', - ':ballot_box_with_check:': '☑️', - ':bangbang:': '‼️', - ':baseball:': '⚾', - ':umbrella_on_ground:': '⛱️', - ':beach_umbrella:': '⛱️', - ':biohazard_sign:': '☣️', - ':biohazard:': '☣️', - ':black_circle:': '⚫', - ':black_large_square:': '⬛', - ':black_medium_small_square:': '◾', - ':black_medium_square:': '◼️', - ':black_nib:': '✒️', - ':black_small_square:': '▪️', - ':cancer:': '♋', - ':capricorn:': '♑', - ':chains:': '⛓️', - ':chess_pawn:': '♟️', - ':church:': '⛪', - ':cloud:': '☁️', - ':clubs:': '♣️', - ':coffee:': '☕', - ':coffin:': '⚰️', - ':comet:': '☄️', - ':congratulations:': '㊗️', - ':copyright:': '©️', - ':latin_cross:': '✝️', - ':cross:': '✝️', - ':crossed_swords:': '⚔️', - ':curly_loop:': '➰', - ':diamonds:': '♦️', - ':digit_eight:': '8️', - ':digit_five:': '5️', - ':digit_four:': '4️', - ':digit_nine:': '9️', - ':digit_one:': '1️', - ':digit_seven:': '7️', - ':digit_six:': '6️', - ':digit_three:': '3️', - ':digit_two:': '2️', - ':digit_zero:': '0️', - ':eight_pointed_black_star:': '✴️', - ':eight_spoked_asterisk:': '✳️', - ':eject_symbol:': '⏏️', - ':eject:': '⏏️', - ':envelope:': '✉️', - ':exclamation:': '❗', - ':fast_forward:': '⏩', - ':female_sign:': '♀️', - ':ferry:': '⛴️', - ':fist:': '✊', - ':fleur-de-lis:': '⚜️', - ':fountain:': '⛲', - ':white_frowning_face:': '☹️', - ':frowning2:': '☹️', - ':fuelpump:': '⛽', - ':gear:': '⚙️', - ':gemini:': '♊', - ':golf:': '⛳', - ':grey_exclamation:': '❕', - ':grey_question:': '❔', - ':hammer_and_pick:': '⚒️', - ':hammer_pick:': '⚒️', - ':heart:': '❤️', - ':heavy_heart_exclamation_mark_ornament:': '❣️', - ':heart_exclamation:': '❣️', - ':hearts:': '♥️', - ':heavy_check_mark:': '✔️', - ':heavy_division_sign:': '➗', - ':heavy_minus_sign:': '➖', - ':heavy_multiplication_x:': '✖️', - ':heavy_plus_sign:': '➕', - ':helmet_with_white_cross:': '⛑️', - ':helmet_with_cross:': '⛑️', - ':hotsprings:': '♨️', - ':hourglass:': '⌛', - ':hourglass_flowing_sand:': '⏳', - ':ice_skate:': '⛸️', - ':infinity:': '♾️', - ':information_source:': 'ℹ️', - ':interrobang:': '⁉️', - ':keyboard:': '⌨️', - ':left_right_arrow:': '↔️', - ':leftwards_arrow_with_hook:': '↩️', - ':leo:': '♌', - ':libra:': '♎', - ':loop:': '➿', - ':m:': 'Ⓜ️', - ':male_sign:': '♂️', - ':medical_symbol:': '⚕️', - ':mountain:': '⛰️', - ':negative_squared_cross_mark:': '❎', - ':no_entry:': '⛔', - ':o:': '⭕', - ':ophiuchus:': '⛎', - ':orthodox_cross:': '☦️', - ':part_alternation_mark:': '〽️', - ':partly_sunny:': '⛅', - ':double_vertical_bar:': '⏸️', - ':pause_button:': '⏸️', - ':peace_symbol:': '☮️', - ':peace:': '☮️', - ':pencil2:': '✏️', - ':basketball_player:': '⛹️', - ':person_with_ball:': '⛹️', - ':person_bouncing_ball:': '⛹️', - ':pick:': '⛏️', - ':pisces:': '♓', - ':play_pause:': '⏯️', - ':point_up:': '☝️', - ':pound_symbol:': '#️', - ':question:': '❓', - ':radioactive_sign:': '☢️', - ':radioactive:': '☢️', - ':raised_hand:': '✋', - ':record_button:': '⏺️', - ':recycle:': '♻️', - ':registered:': '®️', - ':relaxed:': '☺️', - ':rewind:': '⏪', - ':sagittarius:': '♐', - ':sailboat:': '⛵', - ':scales:': '⚖️', - ':scissors:': '✂️', - ':scorpius:': '♏', - ':secret:': '㊙️', - ':shamrock:': '☘️', - ':shinto_shrine:': '⛩️', - ':skier:': '⛷️', - ':skull_and_crossbones:': '☠️', - ':skull_crossbones:': '☠️', - ':snowflake:': '❄️', - ':snowman2:': '☃️', - ':snowman:': '⛄', - ':soccer:': '⚽', - ':spades:': '♠️', - ':sparkle:': '❇️', - ':sparkles:': '✨', - ':star:': '⭐', - ':star_and_crescent:': '☪️', - ':star_of_david:': '✡️', - ':stop_button:': '⏹️', - ':stopwatch:': '⏱️', - ':sunny:': '☀️', - ':taurus:': '♉', - ':telephone:': '☎️', - ':tent:': '⛺', - ':thunder_cloud_and_rain:': '⛈️', - ':thunder_cloud_rain:': '⛈️', - ':timer_clock:': '⏲️', - ':timer:': '⏲️', - ':tm:': '™️', - ':next_track:': '⏭️', - ':track_next:': '⏭️', - ':previous_track:': '⏮️', - ':track_previous:': '⏮️', - ':umbrella2:': '☂️', - ':umbrella:': '☔', - ':funeral_urn:': '⚱️', - ':urn:': '⚱️', - ':v:': '✌️', - ':virgo:': '♍', - ':warning:': '⚠️', - ':watch:': '⌚', - ':wavy_dash:': '〰️', - ':wheel_of_dharma:': '☸️', - ':wheelchair:': '♿', - ':white_check_mark:': '✅', - ':white_circle:': '⚪', - ':white_large_square:': '⬜', - ':white_medium_small_square:': '◽', - ':white_medium_square:': '◻️', - ':white_small_square:': '▫️', - ':writing_hand:': '✍️', - ':x:': '❌', - ':yin_yang:': '☯️', - ':zap:': '⚡' -}; -export default emojis; diff --git a/app/lib/hooks/useShortnameToUnicode/index.tsx b/app/lib/hooks/useShortnameToUnicode/index.tsx index c6118456c89..b0bdb3e8611 100644 --- a/app/lib/hooks/useShortnameToUnicode/index.tsx +++ b/app/lib/hooks/useShortnameToUnicode/index.tsx @@ -1,10 +1,12 @@ -import emojis from './emojis'; import ascii, { asciiRegexp } from './ascii'; import { useAppSelector } from '../useAppSelector'; import { getUserSelector } from '../../../selectors/login'; +import { shortnameToUnicodeMap } from '../../constants/emojis/data'; +import { legacyShortnameToUnicodeMap } from '../../constants/emojis/legacyShortnamesMap'; const shortnamePattern = new RegExp(/:[-+_a-z0-9]+:/, 'gi'); -const replaceShortNameWithUnicode = (shortname: string) => emojis[shortname] || shortname; +const replaceShortNameWithUnicode = (shortname: string) => + shortnameToUnicodeMap[shortname] || legacyShortnameToUnicodeMap[shortname] || shortname; const regAscii = new RegExp(`((\\s|^)${asciiRegexp}(?=\\s|$|[!,.?]))`, 'gi'); const unescapeHTML = (string: string) => { diff --git a/app/lib/hooks/useShortnameToUnicode/useShortnameToUnicode.test.ts b/app/lib/hooks/useShortnameToUnicode/useShortnameToUnicode.test.ts index a1492a2eaa4..191fa91524b 100644 --- a/app/lib/hooks/useShortnameToUnicode/useShortnameToUnicode.test.ts +++ b/app/lib/hooks/useShortnameToUnicode/useShortnameToUnicode.test.ts @@ -37,6 +37,11 @@ test('render several emojis', () => { expect(unicodeEmoji).toBe('🐶🐱🍔🍦🚀'); }); +test('render alias shortnames', () => { + const unicodeEmoji = renderShortnameToUnicode(':water_wave::thumbs_up::red_heart:'); + expect(unicodeEmoji).toBe('🌊👍\uFE0F❤\uFE0F'); +}); + test('render unknown emoji', () => { const unicodeEmoji = renderShortnameToUnicode(':unknown:'); expect(unicodeEmoji).toBe(':unknown:'); diff --git a/app/lib/methods/emojis.test.ts b/app/lib/methods/emojis.test.ts index 63e6030bb71..681f02bcac3 100644 --- a/app/lib/methods/emojis.test.ts +++ b/app/lib/methods/emojis.test.ts @@ -1,8 +1,8 @@ import database from '../database'; -import { DEFAULT_EMOJIS } from '../constants/emojis'; +import { DEFAULT_EMOJIS } from '../constants/emojis/emojis'; import migrations from '../database/model/migrations'; import appSchema from '../database/schema/app'; -import { addFrequentlyUsed, getFrequentlyUsedEmojis } from './emojis'; +import { addFrequentlyUsed, getFrequentlyUsedEmojis, searchEmojis } from './emojis'; jest.mock('../database', () => ({ __esModule: true, @@ -116,6 +116,42 @@ describe('getFrequentlyUsedEmojis', () => { }); }); +describe('searchEmojis', () => { + it('matches the listed shortname', async () => { + await expect(searchEmojis('ocean')).resolves.toContain('ocean'); + }); + + it('matches an alias and returns the listed shortname instead of the alias', async () => { + const result = await searchEmojis('water_wave'); + + expect(result).toContain('ocean'); + expect(result).not.toContain('water_wave'); + }); + + it('matches case insensitively, so the picker finds an emoji typed in caps', async () => { + await expect(searchEmojis('WATER_WAVE')).resolves.toContain('ocean'); + }); + + it('ranks the exact shortname first, so a short keyword is not buried by longer names', async () => { + // The composer's autocomplete only shows the first few, so rank is what makes `fire` reachable. + await expect(searchEmojis('fire')).resolves.toHaveProperty('0', 'fire'); + await expect(searchEmojis('heart')).resolves.toHaveProperty('0', 'heart'); + await expect(searchEmojis('ok')).resolves.toHaveProperty('0', 'ok'); + }); + + it('ranks an exact alias above a name that merely contains the keyword', async () => { + const result = await searchEmojis('cop'); + + expect(result.indexOf('police_officer')).toBeLessThan(result.indexOf('helicopter')); + }); + + it('returns only custom emojis when no shortname matches', async () => { + mockFetch.mockResolvedValue([{ name: 'rocketchat', extension: 'png' }]); + + await expect(searchEmojis('notanemoji')).resolves.toEqual([{ name: 'rocketchat', extension: 'png' }]); + }); +}); + describe('frequently_used_emojis migration', () => { it('bumps the schema to v29 with a matching migration', () => { expect(appSchema.version).toBe(29); diff --git a/app/lib/methods/emojis.ts b/app/lib/methods/emojis.ts index 63f4d885a9c..60f00dec9e0 100644 --- a/app/lib/methods/emojis.ts +++ b/app/lib/methods/emojis.ts @@ -4,10 +4,38 @@ import database from '../database'; import { type ICustomEmoji, type IEmoji, type TFrequentlyUsedEmojiModel } from '../../definitions'; import log from './helpers/log'; import { sanitizeLikeString } from '../database/utils'; -import { DEFAULT_EMOJIS, emojis } from '../constants/emojis'; +import { aliasesByEmojiName } from '../constants/emojis/data'; +import { DEFAULT_EMOJIS, emojis } from '../constants/emojis/emojis'; const FREQUENTLY_USED_TABLE = 'frequently_used_emojis'; +// Lower sorts first. An exact match on any name the emoji answers to beats a partial one, so +// `:fire` still offers `fire` now that ~2,000 names and their aliases are searched. +const NO_MATCH = 6; +const rankAgainst = (name: string, term: string): number => { + if (name === term) return 0; + const aliases = aliasesByEmojiName[name] ?? []; + if (aliases.some(alias => alias === term)) return 1; + if (name.startsWith(term)) return 2; + if (aliases.some(alias => alias.startsWith(term))) return 3; + if (name.includes(term)) return 4; + if (aliases.some(alias => alias.includes(term))) return 5; + return NO_MATCH; +}; + +export const searchEmojiNames = (keyword: string): string[] => { + const term = keyword.toLowerCase(); + const matches: { name: string; rank: number }[] = []; + emojis.forEach(name => { + const rank = rankAgainst(name, term); + if (rank !== NO_MATCH) { + matches.push({ name, rank }); + } + }); + // Array#sort is stable, so the picker's own order survives within a rank. + return matches.sort((a, b) => a.rank - b.rank).map(match => match.name); +}; + // Looked up by content, never used as the record id: emoji content / custom names can be // non-ASCII and corrupt across the native SQLite bridge when used as WatermelonDB ids. const getEmojiContent = (emoji: IEmoji) => (typeof emoji === 'string' ? emoji : emoji.name); @@ -85,6 +113,6 @@ export const searchEmojis = async (keyword: string): Promise => { name: emoji?.name, extension: emoji?.extension })); - const filteredEmojis = emojis.filter(emoji => emoji.indexOf(keyword) !== -1); + const filteredEmojis = searchEmojiNames(keyword); return [...customEmojis, ...filteredEmojis]; }; diff --git a/docs/emojis.md b/docs/emojis.md new file mode 100644 index 00000000000..d34ed1ce3ab --- /dev/null +++ b/docs/emojis.md @@ -0,0 +1,130 @@ +# Emojis + +The emoji dataset is generated from [emojibase](https://emojibase.dev), the same source the +web client uses ([Rocket.Chat#39411](https://github.com/RocketChat/Rocket.Chat/pull/39411)), so +both clients agree on shortnames, aliases and picker categories. + +Shortname, Listed Name, Alias, Legacy Shortname and Pinned Shortname are defined in +[CONTEXT.md](../CONTEXT.md#emojis); this page says how each one is produced. + +## Generating + +```sh +pnpm generate-emoji-data +``` + +Reads the `emojibase-data` devDependency and writes `app/lib/constants/emojis/data.ts`, which +exports: + +| Export | Contents | +| ----------------------- | -------------------------------------------------------------------------------- | +| `emojisByCategory` | The names the picker lists, per category tab | +| `shortnameToUnicodeMap` | Every generated `:shortname:` → unicode, aliases and skin tone variants included | +| `aliasesByEmojiName` | Alternate names for an emoji, keyed by the name listed in `emojisByCategory` | + +`shortnameToUnicodeMap` is not the whole resolvable set. `useShortnameToUnicode` reads it first and +falls back to [legacy shortnames](#legacy-shortnames), which a test keeps out of the generated map, +so a name resolving is never the same question as a name being in `data.ts`. + +The output is committed, like `mappedIcons.js` (see [icons](./icons.md)). Nothing in the build or +release runs the script — bumping the emoji set means bumping `emojibase-data` in `package.json`, +re-running the script, reviewing the diff and committing it. `emojibase-data` is dev-only and +never reaches the bundle; the generated file does, exactly as a hand-written one would. + +Do not edit `data.ts` by hand — the two datasets drifting apart is what this replaced. + +Shortname resolution matches web: + +- One name per emoji is listed, taken from joypixels shortcodes, falling back to emojibase. +- The remaining shortcodes become aliases, so search matches them but returns the listed name. The + picker and the composer's `:` autocomplete both search through `searchEmojiNames` in + `app/lib/methods/emojis.ts`, so the same names match in both. What they show differs: the picker + scrolls the whole result, the composer shows the first four. That is why `searchEmojiNames` ranks + exact matches — on the name or an alias — above partial ones, and a test pins `:fire` to `fire`. +- The 26 regional indicator letters are generated but not listed: they are the building blocks of + flags, not emojis to pick. They resolve from `data.ts` like anything else. +- Emojibase's component group — skin tones, hair styles, and the 12 keycap components + (`:digit_zero:`–`:digit_nine:`, `:asterisk_symbol:`, `:pound_symbol:`) — is dropped before + anything is added, so those names are absent from `data.ts` entirely. The keycaps still resolve, + but only through [legacy shortnames](#legacy-shortnames), which is what stored reactions need. +- Between them that is 38 names the pre-emojibase picker listed which no longer turn up in search at + all. A further 36 names it listed are still searchable, just as aliases of the name joypixels + picked instead — `cop` returns `police_officer`, `shrug` returns `person_shrugging`. 74 of the old + 1,388 listings are gone; only these 38 left search with them. +- Skin tone variants resolve but are not listed or searchable, since the picker has no tone + selector. Remove that exclusion in the generator if one is ever added. + +## Variation selectors + +Regenerating moved 333 values by a variation selector (`U+FE0F`) only, in both directions, and both +are emojibase emitting the fully-qualified sequence: + +- 158 gained one, on bases that already default to emoji presentation — `:alien:` is `1F47D FE0F` + where the old map had `1F47D`. The glyph is the same, the string is not: anything matching emoji + text literally, or counting code units, sees the extra codepoint. `Markdown.test.tsx.snap` was + regenerated for that, `testID` and `accessibilityLabel` values included, so a selector written + against one of those has to use the fully-qualified sequence. It also broke the emoji keyboard's + backspace, which read a fixed two-code-unit window and so deleted only the invisible selector — + `lastGlyphLength` in `app/containers/MessageComposer/helpers` measures the whole sequence now. +- 175 lost one, in every case immediately before a skin tone modifier — `:man_detective_tone1:` is + `1F575 1F3FB 200D 2642 FE0F` where the old map had `1F575 FE0F 1F3FB 200D 2642 FE0F`. The modifier + already forces emoji presentation, so the selector in front of it was ill-formed (UTS #51). + +Only seven values changed glyph, all repairs of a missing joiner, and each is asserted in +`JOINER_REPAIRS`, a fixture in `data.test.ts` — not a [pin](#pinned-shortnames), which is a +generation-time override. Nothing resolvable was dropped. Do not "restore" the old selectors — a test +guards against reintroducing the ill-formed ones. + +## Legacy shortnames + +`app/lib/constants/emojis/legacyShortnames.json` is **hand-maintained**, not generated. It holds +shortnames older clients resolved that `data.ts` does not carry — `:iphone:`, `:bride_with_veil:` +and around a thousand others, mostly the emojione-era tone naming, plus the 12 keycap components +the generator skips. `legacyShortnamesMap.ts` re-exports it typed for the app (named differently because Metro resolves `.json` before `.ts`, so an extensionless import of a same-named module would load the JSON); the generator requires +the same JSON. + +Most entries are there because emojibase dropped the name; the keycaps are there because the +generator drops emojibase's component group. Either way removing one stops the name resolving, so +the distinction only matters when reading the script's "back in emojibase and can be removed" +warning — it compares against the generated map, so it never names a keycap. + +They matter because reactions and the frequently used emojis table store _shortnames_: drop a name +and every stored reaction using it renders as literal `:shortname:` text. So entries are only +removed once nothing can still hold them. + +`useShortnameToUnicode` falls back to this map, and the generator folds these names into +`aliasesByEmojiName` so they stay searchable. If emojibase starts listing one again, the script +prints it as removable. + +## Pinned shortnames + +`scripts/pinned-shortnames.js` is **hand-maintained**, and build-time only — the generator applies it +over the emojibase value, so the pin lands in `data.ts` and nothing reverse-maps at runtime. It +exists because the generated map is read first: `useShortnameToUnicode` falls back to +`legacyShortnames.json`, so a hand-maintained map can add a name but never hold one. + +Pins hold a shortname at the glyph a previous release resolved, for the cases where upstream +reassigns a name to a different emoji — `:beetle:` (🐞 upstream became `:lady_beetle:` when Unicode 13 +gave the beetle its own glyph) and `:man_in_tuxedo:` with its tone variants (🤵 upstream became +`:person_in_tuxedo:`). Without a pin those reactions and frequently used entries change glyph under +users who already picked them. + +Only names an older client could have stored belong here — the pre-emojibase map had +`:man_in_tuxedo_tone1:`, so that is pinned, and never had `:man_in_tuxedo_light_skin_tone:`, so that +one takes the upstream value. + +The cost is that mobile disagrees with web on a pinned name, and that the displaced glyph can lose +its only shortname: 🪲 and 🤵‍♂️ are unreachable today, and appear in the picker as a second 🐞 and a +second 🤵. The script prints that, along with pins that now match emojibase and can be removed, and +pins whose name emojibase dropped entirely — those belong in `legacyShortnames.json` instead. + +## Invariants + +`app/lib/constants/emojis/data.test.ts` guards the ones that broke before: every listed emoji +resolves, no emoji is listed twice, aliases are keyed by a listed name and resolve to the same +glyph as that name, no category is empty, no legacy shortname shadows a current one, every pin +still holds at the glyph `PINNED_GLYPHS` spells out, every joiner repair still has the value this +branch decided on, no value puts a variation selector before a skin tone modifier, and every +unlisted component still resolves — from either map, since the keycaps only resolve from the +legacy one. Run it after regenerating — a bump that moves a glyph should fail there and be +answered with a pin or an updated fixture, not a silent diff. diff --git a/package.json b/package.json index df3c049663d..595d415ca32 100644 --- a/package.json +++ b/package.json @@ -17,6 +17,7 @@ "snyk-protect": "snyk protect", "postinstall": "patch-package", "build-icon-set": "node scripts/build-icon-set.js", + "generate-emoji-data": "node scripts/generate-emoji-data.js", "organize-translations": "node scripts/organize-translations.js", "e2e:start": "RUNNING_E2E_TESTS=true react-native start", "e2e:changed": "bash .github/scripts/e2e-changed.sh", @@ -194,6 +195,7 @@ "babel-plugin-react-compiler": "1.0.0", "babel-plugin-transform-remove-console": "^6.9.4", "babel-preset-expo": "~54.0.9", + "emojibase-data": "17.0.0", "eslint-plugin-react-native": "~5.0.0", "fast-glob": "3.3.3", "identity-obj-proxy": "^3.0.0", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 6d411acadbb..e46ec009250 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -469,6 +469,9 @@ importers: babel-preset-expo: specifier: ~54.0.9 version: 54.0.9(@babel/core@7.25.9)(@babel/runtime@7.25.9)(expo@54.0.30(@babel/core@7.25.9)(react-native-webview@13.16.1(react-native@0.81.5(@babel/core@7.25.9)(@react-native-community/cli@20.0.0(typescript@7.0.2))(@react-native/metro-config@0.81.5(@babel/core@7.25.9))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-native@0.81.5(@babel/core@7.25.9)(@react-native-community/cli@20.0.0(typescript@7.0.2))(@react-native/metro-config@0.81.5(@babel/core@7.25.9))(@types/react@19.1.17)(react@19.1.0))(react@19.1.0))(react-refresh@0.14.2) + emojibase-data: + specifier: 17.0.0 + version: 17.0.0(emojibase@17.0.0) eslint-plugin-react-native: specifier: ~5.0.0 version: 5.0.0(eslint@8.57.1) @@ -4169,6 +4172,15 @@ packages: emoji-regex@9.2.2: resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} + emojibase-data@17.0.0: + resolution: {integrity: sha512-Yvgb5AWoHViHV/gq1qr5ZAarcBip+B27/ZLRsUJkbgAEaLlZ/fof9g882LTpmEpyhBNEC0m2SEmItljHsTygjA==} + peerDependencies: + emojibase: '*' + + emojibase@17.0.0: + resolution: {integrity: sha512-bXdpf4HPY3p41zK5swVKZdC/VynsMZ4LoLxdYDE+GucqkFwzcM1GVc4ODfYAlwoKaf2U2oNNUoOO78N96ovpBA==} + engines: {node: '>=18.12.0'} + encodeurl@1.0.2: resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} engines: {node: '>= 0.8'} @@ -12109,6 +12121,12 @@ snapshots: emoji-regex@9.2.2: {} + emojibase-data@17.0.0(emojibase@17.0.0): + dependencies: + emojibase: 17.0.0 + + emojibase@17.0.0: {} + encodeurl@1.0.2: {} encodeurl@2.0.0: {} diff --git a/scripts/generate-emoji-data.js b/scripts/generate-emoji-data.js new file mode 100644 index 00000000000..ff459fe9605 --- /dev/null +++ b/scripts/generate-emoji-data.js @@ -0,0 +1,227 @@ +const fs = require('fs'); +const path = require('path'); +const { execFileSync } = require('child_process'); + +const data = require('emojibase-data/en/data.json'); +const emojibaseShortcodes = require('emojibase-data/en/shortcodes/emojibase.json'); +const joypixelsShortcodes = require('emojibase-data/en/shortcodes/joypixels.json'); +const pinnedShortnames = require('./pinned-shortnames'); +const legacyShortnames = require('../app/lib/constants/emojis/legacyShortnames.json'); + +const OUTPUT = path.join(__dirname, '..', 'app', 'lib', 'constants', 'emojis', 'data.ts'); + +const groupToCategory = { + 0: 'people', + 1: 'people', + 3: 'nature', + 4: 'food', + 5: 'travel', + 6: 'activity', + 7: 'objects', + 8: 'symbols', + 9: 'flags' +}; + +const CATEGORIES = ['people', 'nature', 'food', 'activity', 'travel', 'objects', 'symbols', 'flags']; + +const bare = unicode => unicode.replace(/️/g, ''); + +const isRegionalIndicator = hexcode => { + if (hexcode.includes('-')) { + return false; + } + const cp = parseInt(hexcode, 16); + return cp >= 0x1f1e6 && cp <= 0x1f1ff; +}; + +const getShortcodes = hexcode => { + const entry = joypixelsShortcodes[hexcode] ?? emojibaseShortcodes[hexcode]; + if (!entry) { + return []; + } + return Array.isArray(entry) ? entry : [entry]; +}; + +const build = () => { + const emojisByCategory = Object.fromEntries(CATEGORIES.map(key => [key, []])); + const shortnameToUnicode = {}; + const aliasesByName = {}; + + const add = (shortname, unicode) => { + const key = `:${shortname}:`; + if (!(key in shortnameToUnicode)) { + shortnameToUnicode[key] = unicode; + } + }; + + data.forEach(emoji => { + if (emoji.group === 2) { + return; + } + + const isRegional = isRegionalIndicator(emoji.hexcode); + const category = groupToCategory[emoji.group] ?? (isRegional ? 'flags' : undefined); + if (!category) { + return; + } + + const codes = getShortcodes(emoji.hexcode); + if (codes.length === 0) { + return; + } + + const [name, ...aliases] = codes; + + add(name, emoji.emoji); + aliases.forEach(alias => add(alias, emoji.emoji)); + if (aliases.length) { + aliasesByName[name] = aliases; + } + + if (!emoji.tone && !isRegional) { + emojisByCategory[category].push(name); + } + + (emoji.skins ?? []).forEach(skin => { + if (!skin.tone) { + return; + } + const tones = Array.isArray(skin.tone) ? skin.tone : [skin.tone]; + getShortcodes(skin.hexcode).forEach(code => add(code, skin.emoji)); + add(`${name}_tone${tones.join('-')}`, skin.emoji); + }); + }); + + return { emojisByCategory, shortnameToUnicode, aliasesByName }; +}; + +const applyPins = shortnameToUnicode => { + const applied = []; + const stale = []; + const gone = []; + const displaced = []; + + Object.keys(pinnedShortnames).forEach(shortname => { + const upstream = shortnameToUnicode[shortname]; + if (!upstream) { + gone.push(shortname); + return; + } + if (bare(upstream) === bare(pinnedShortnames[shortname])) { + stale.push(shortname); + return; + } + shortnameToUnicode[shortname] = pinnedShortnames[shortname]; + applied.push(shortname); + displaced.push(upstream); + }); + + const resolvable = new Set(Object.keys(shortnameToUnicode).map(key => bare(shortnameToUnicode[key]))); + const orphaned = displaced.filter(unicode => !resolvable.has(bare(unicode))); + + return { applied, stale, gone, orphaned }; +}; + +const header = filename => + `// Generated by scripts/generate-emoji-data.js — do not edit by hand.\n// Run \`pnpm generate-emoji-data\` after bumping the emojibase-data dependency.\n// See docs/emojis.md.\n/* eslint-disable */\n${filename}`; + +const stringifyList = (name, list, indent = '\t') => + `${name}: [\n${list.map(item => `${indent}\t'${item}'`).join(',\n')}\n${indent}]`; + +const writeData = ({ emojisByCategory, shortnameToUnicode, aliasesByName }) => { + const categories = CATEGORIES.map(key => `\t${stringifyList(key, emojisByCategory[key])}`).join(',\n'); + + const map = Object.keys(shortnameToUnicode) + .map(key => `\t'${key}': '${shortnameToUnicode[key]}'`) + .join(',\n'); + + const aliases = Object.keys(aliasesByName) + .map(name => `\t${stringifyList(`'${name}'`, aliasesByName[name])}`) + .join(',\n'); + + const contents = header(` +export const emojisByCategory = { +${categories} +}; + +// Every generated shortname, aliases and skin tone variants included. Not everything the app can +// resolve: useShortnameToUnicode falls back to legacyShortnames.json, which is kept out of this map. +// Values come from emojibase, except the ones held back by scripts/pinned-shortnames.js. +export const shortnameToUnicodeMap: { [key: string]: string } = { +${map} +}; + +// Alternate shortnames for an emoji, keyed by the name listed in \`emojisByCategory\`. +// The picker lists one name per emoji, so searching matches every alias but returns the listed name. +export const aliasesByEmojiName: { [key: string]: string[] } = { +${aliases} +}; +`); + + fs.writeFileSync(OUTPUT, contents, 'utf8'); + + execFileSync('pnpm', ['exec', 'oxfmt', OUTPUT], { stdio: 'ignore' }); +}; + +const foldLegacyIntoAliases = ({ emojisByCategory, shortnameToUnicode, aliasesByName }, legacy) => { + const nameByUnicode = {}; + CATEGORIES.forEach(category => + emojisByCategory[category].forEach(name => { + const unicode = shortnameToUnicode[`:${name}:`]; + if (unicode && !(bare(unicode) in nameByUnicode)) { + nameByUnicode[bare(unicode)] = name; + } + }) + ); + + let folded = 0; + Object.keys(legacy).forEach(shortname => { + const name = nameByUnicode[bare(legacy[shortname])]; + const alias = shortname.slice(1, -1); + if (!name || alias === name) { + return; + } + if (!aliasesByName[name]) { + aliasesByName[name] = []; + } + if (!aliasesByName[name].includes(alias)) { + aliasesByName[name].push(alias); + folded += 1; + } + }); + + return folded; +}; + +const emojiData = build(); +const pins = applyPins(emojiData.shortnameToUnicode); +const folded = foldLegacyIntoAliases(emojiData, legacyShortnames); + +writeData(emojiData); + +const total = CATEGORIES.reduce((acc, key) => acc + emojiData.emojisByCategory[key].length, 0); +console.log(`🚀 Emoji data generated: ${total} emojis, ${Object.keys(emojiData.shortnameToUnicode).length} shortnames.`); +console.log(`ℹ️ ${Object.keys(legacyShortnames).length} legacy shortnames read, ${folded} kept searchable as aliases.`); + +console.log(`📌 ${pins.applied.length} shortnames pinned to the glyph a previous release resolved.`); + +const stale = Object.keys(legacyShortnames).filter(key => key in emojiData.shortnameToUnicode); +if (stale.length) { + console.log( + `⚠️ ${stale.length} entries in legacyShortnames.json are back in emojibase and can be removed: ${stale.join(', ')}` + ); +} + +if (pins.stale.length) { + console.log(`⚠️ ${pins.stale.length} pins now match emojibase and can be removed: ${pins.stale.join(', ')}`); +} + +if (pins.gone.length) { + console.log( + `⚠️ ${pins.gone.length} pins no longer resolve — emojibase dropped the name, so it belongs in legacyShortnames.json: ${pins.gone.join(', ')}` + ); +} + +if (pins.orphaned.length) { + console.log(`⚠️ a pin took the last shortname of ${pins.orphaned.join(' ')} — nothing resolves to it any more.`); +} diff --git a/scripts/pinned-shortnames.js b/scripts/pinned-shortnames.js new file mode 100644 index 00000000000..2752b2d0b82 --- /dev/null +++ b/scripts/pinned-shortnames.js @@ -0,0 +1,9 @@ +module.exports = { + ':beetle:': '🐞', + ':man_in_tuxedo:': '🤵', + ':man_in_tuxedo_tone1:': '🤵🏻', + ':man_in_tuxedo_tone2:': '🤵🏼', + ':man_in_tuxedo_tone3:': '🤵🏽', + ':man_in_tuxedo_tone4:': '🤵🏾', + ':man_in_tuxedo_tone5:': '🤵🏿' +};