diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 00000000..4746f643 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,37 @@ +kind: pipeline +type: docker +name: Deploy + +steps: +- name: submodules + image: alpine/git + commands: + - git submodule update --init --recursive + +- name: Build + depends_on: + - submodules + image: node:12 + commands: + - yarn + - yarn build + when: + event: + - push + +- name: Execute deploy script + depends_on: + - Build + image: ubuntu:latest + environment: + SSH_KEY: + from_secret: SSH_KEY + commands: + - apt update && apt install -y wget dos2unix openssh-client rsync + - wget https://f.ruina.exposed/add-froth-key.sh && dos2unix ./add-froth-key.sh && chmod +x add-froth-key.sh && bash ./add-froth-key.sh + - wget https://f.ruina.exposed/pleroma-fe-build-froth.sh && dos2unix ./pleroma-fe-build-froth.sh && chmod +x pleroma-fe-build-froth.sh && bash ./pleroma-fe-build-froth.sh + when: + event: + - push + branch: + - froth \ No newline at end of file diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..1c1c8723 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,9 @@ +[submodule "instance/pleroma-mods/pleroma-mod-syntax"] + path = instance/pleroma-mods/pleroma-mod-syntax + url = https://git.pleroma.social/absturztaube/pleroma-mod-syntax.git +[submodule "instance/pleroma-mods/pleroma-mod-math"] + path = instance/pleroma-mods/pleroma-mod-math + url = https://git.pleroma.social/absturztaube/pleroma-mod-math +[submodule "instance/pleroma-mods/pleroma-mod-imgsearch"] + path = instance/pleroma-mods/pleroma-mod-imgsearch + url = https://gitlab.com/SamTherapy/pleroma-mod-imgsearch diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 00000000..93c43251 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +v12.22.12 diff --git a/instance/favicon.png b/instance/favicon.png new file mode 100644 index 00000000..e9ead3fd Binary files /dev/null and b/instance/favicon.png differ diff --git a/instance/panel.html b/instance/panel.html new file mode 100644 index 00000000..d89125ab --- /dev/null +++ b/instance/panel.html @@ -0,0 +1,43 @@ +
+

+ Welcome to the Froth Zone! +
+ + Bloat FE + + | + + Masto FE + + | + + Pleroma FE + + | + + Treebird FE + +
+
+ + Fchan + + | + + Funkwhale + + | + + Misskey + + | + + PeerTube + +
+
+ + Everything else I host + +

+
diff --git a/instance/pleroma-mod-config.json b/instance/pleroma-mod-config.json new file mode 100644 index 00000000..7e01c824 --- /dev/null +++ b/instance/pleroma-mod-config.json @@ -0,0 +1,7 @@ +{ + "modDirectory": "/instance/pleroma-mods/", + "mods": [ + "math", + "syntax" + ] +} diff --git a/instance/pleroma-mod-loader.js b/instance/pleroma-mod-loader.js new file mode 100644 index 00000000..3ed4c05a --- /dev/null +++ b/instance/pleroma-mod-loader.js @@ -0,0 +1,477 @@ +class PleromaModLoader { + constructor () { + this.config = { + "modDirectory": "/instance/pleroma-mods/", + "mods": [] + }; + this.loadConfig(); + this.loadedMods = {}; + this.classes = {}; + } + + loadMods () { + this.config.mods.forEach((mod) => { + this.loadMod(mod); + }); + } + + loadMod (modName) { + return PleromaModLoader.includeScript( + this.config.modDirectory + "pleroma-mod-" + modName + "/mod.js" + ).then(() => { + this.loadedMods[modName] = new this.classes[PleromaModLoader.getClassName(modName)](); + }); + } + + loadConfig () { + window.fetch("/instance/pleroma-mod-config.json").then((response) => { + return response.json(); + }).then((json) => { + Object.keys(json).forEach((key) => { + this.config[key] = json[key]; + }); + this.loadMods(); + }).catch((error) => { + console.error("can't load loader config"); + console.error(error); + }); + } + + registerClass (className, object) { + this.classes[className] = object; + } + + waitUntilReady () { + const postPanel = document.querySelector(".status-container"); + const loginPanel = document.querySelector(".login-form"); + if (postPanel || loginPanel) { + Object.keys(this.loadedMods).forEach((modName) => { + const settings = document.querySelector(".settings-modal div[label]:first-child"); + if (settings) { + if (!settings.querySelector(".mod-settings")) { + this.appendModSettings(settings); + } + } + + const mod = this.loadedMods[modName]; + if (mod.isEnabled) { + mod.ready(); + } + }); + + this.createObserver(); + } else { + console.warn("not ready, trying again in 1s"); + window.setTimeout(() => { this.waitUntilReady(); }, 1000); + } + } + + createCheckbox (label, mod) { + const labelElement = document.createElement("label"); + labelElement.classList.add("checkbox"); + + const input = document.createElement("input"); + input.setAttribute("type", "checkbox"); + input.checked = mod.isEnabled; + input.addEventListener("change", (event) => { + if (event.target.checked) { + mod.enable(); + } else { + mod.disable(); + } + }); + labelElement.appendChild(input); + + const fakeCheckbox = document.createElement("i"); + fakeCheckbox.classList.add("checkbox-indicator"); + labelElement.appendChild(fakeCheckbox); + + const text = document.createElement("span"); + text.classList.add("label"); + text.innerText = label; + labelElement.appendChild(text); + + return labelElement; + } + + appendModSettings (element) { + const container = document.createElement("div"); + container.classList.add("setting-item"); + container.classList.add("mod-settings"); + + const title = document.createElement("h2"); + title.innerText = "Pleroma Mods"; + container.appendChild(title); + + const optionList = document.createElement("ul"); + optionList.classList.add("setting-list"); + + Object.keys(this.loadedMods).sort().forEach((modName) => { + const li = document.createElement("li"); + + const enable = this.createCheckbox("enable " + modName, this.loadedMods[modName]); + li.appendChild(enable); + + const ulConfig = document.createElement("ul"); + ulConfig.classList.add("setting-list"); + + Object.keys(this.loadedMods[modName].config).forEach((key) => { + if (key === "includes" || key === "filter") { + return; + } + + this.loadedMods[modName].onSettingInit(key, ulConfig, document.createElement("li")); + }); + + li.appendChild(ulConfig); + + optionList.appendChild(li); + }); + + container.appendChild(optionList); + + element.appendChild(container); + } + + createObserver () { + this.containers = { + main: document.querySelector(".main"), + notifications: document.querySelector(".notifications"), + userPanel: document.querySelector(".user-panel"), + settingsModal: document.querySelector(".settings-modal") + }; + + const observerConfig = { + subtree: true, + childList: true + }; + + this.observer = new MutationObserver((mutations, observer) => { + const modal = document.querySelector(".settings-modal div[label]:first-child"); + if (modal && !modal.querySelector(".mod-settings")) { + this.appendModSettings(modal); + } + + Object.values(this.loadedMods).forEach((mod) => { + if (mod.isEnabled) { + mutations.forEach((mutation) => { + mod.mutate(mutation, observer); + }); + } + }); + }); + + this.observer.observe(this.containers.main, observerConfig); + if (this.containers.notifications) { + this.observer.observe(this.containers.notifications, observerConfig); + } + if (this.containers.userPanel) { + this.observer.observe(this.containers.userPanel, observerConfig); + } + if (this.containers.settingsModal) { + this.observer.observe(this.containers.settingsModal, observerConfig); + } + } + + static registerMod (mod) { + window.__pleromaModLoader.registerClass(mod.name, mod); + } + + static includeScript (src) { + console.log("include " + src); + return new Promise((resolve) => { + const script = document.createElement("script"); + script.setAttribute("src", src); + script.setAttribute("type", "text/javascript"); + script.onload = () => { + resolve(); + }; + document.querySelector("body").appendChild(script); + }); + } + + static includeCss (src) { + console.log("include " + src); + return new Promise((resolve) => { + const link = document.createElement("link"); + link.setAttribute("href", src); + link.setAttribute("rel", "stylesheet"); + link.setAttribute("type", "text/css"); + link.onload = () => { + resolve(); + }; + document.querySelector("head").appendChild(link); + }); + } + + static excludeScript (src) { + return new Promise((resolve) => { + const script = document.querySelector("script[src=\"" + src + "\"]"); + if (script) { + script.remove(); + } + resolve(); + }); + } + + static excludeCss (src) { + return new Promise((resolve) => { + const link = document.querySelector("link[href=\"" + src + "\"]"); + if (link) { + link.remove(); + } + resolve(); + }); + } + + static getVueScope (element) { + if (!element) { + return null; + } + if (element.__vue__) { + console.warn("old vue version, please update pleroma-fe"); + return element.__vue__; + } + if (element._vnode) { + return element._vnode; + } + if (element.__vnode) { + return element.__vnode; + } + if (element.parentNode) { + return PleromaModLoader.getVueScope(element.parentNode); + } + return null; + } + + static getVueComponent (element) { + if (!element) { + return null; + } + if (element.__vnode && element.__vnode.component) { + return element.__vnode.component; + } + if (element.__vueParentComponent) { + return element.__vueParentComponent.ctx; + } + if (element.__vueComponent__) { + return element.__vueComponent__; + } + if (element.parentNode) { + return PleromaModLoader.getVueComponent(element.parentNode); + } + return null; + } + + static getRootVueScope () { + return PleromaModLoader.getVueScope(document.querySelector("#app")); + } + + static getToken () { + return PleromaModLoader.getRootVueScope().appContext.provides.store.getters.getUserToken(); + } + + static getModDir () { + return window.__pleromaModLoader.config.modDirectory; + } + + static getClassName (name) { + let className = "PleromaMod"; + name.split("-").forEach((namePart) => { + className += namePart.substring(0, 1).toUpperCase(); + className += namePart.substring(1); + }); + return className; + } + + static api (method, path, params) { + return new Promise((resolve, reject) => { + const token = PleromaModLoader.getToken(); + const xhr = new XMLHttpRequest(); + xhr.responseType = "json"; + xhr.open(method, path); + xhr.setRequestHeader("Content-Type", "application/json"); + xhr.setRequestHeader("Authorization", "Bearer " + token); + xhr.onreadstatechange = () => { + if (xhr.readyState === 4) { + if (xhr.status !== 200) { + reject(new Error({ + status: xhr.status, + response: xhr.response, + xhr: xhr + })); + } + } + }; + xhr.onload = () => { + resolve(xhr.response); + }; + xhr.send(JSON.stringify(params)); + }); + } +} + +class PleromaMod { // eslint-disable-line no-unused-vars + constructor (name) { + this.name = name; + this.config = {}; + this.isRunning = false; + } + + get isEnabled () { + return localStorage.getItem("pleroma_mod_" + this.name + "_enabled") !== "false" || true; + } + + getClassName () { + return PleromaModLoader.getClassName(this.name); + } + + getModDir () { + return PleromaModLoader.getModDir() + this.name + "/"; + } + + ready () { + this.onReady(); + this.run(); + } + + destroy () { + this.isRunning = false; + if (this.config.includes) { + const styles = this.config.includes.css || []; + const scripts = this.config.includes.js || []; + + Promise.all(styles.map((style) => { + return this.excludeCss(style); + }).concat(scripts.map((script) => { + return this.excludeScript(script); + }))).then(() => { + this.onDestroy(); + }); + + return; + } + + this.onDestroy(); + } + + run () { + if (this.config.includes) { + const styles = this.config.includes.css || []; + const scripts = this.config.includes.js || []; + + Promise.all(styles.map((style) => { + return this.includeCss(style); + }).concat(scripts.map((script) => { + return this.includeScript(script); + })).concat([ + this.loadConfig(), + this.onCreate() + ])).then(() => { + this.isRunning = true; + this.onRun(); + }); + + return; + } + + this.isRunning = true; + this.onRun(); + } + + mutate (mutation, observer) { + if (this.isRunning) { + this.onMutation(mutation, observer); + } + } + + saveConfig () { + const storedConfig = {}; + Object.keys(this.config).filter((key) => { + return key !== "includes" && key !== "filter"; + }).forEach((key) => { + storedConfig[key] = this.config[key]; + }); + localStorage.setItem(this.name + "_config", JSON.stringify(storedConfig)); + } + + mergeConfig (newConfig) { + Object.keys(newConfig).forEach((key) => { + this.config[key] = JSON.parse(JSON.stringify(newConfig[key])); + }); + } + + loadConfig () { + return new Promise((resolve) => { + // TODO: use structuredClone when its more supported + this.defaultConfig = JSON.parse(JSON.stringify(this.config)); + + const storedConfig = JSON.parse(localStorage.getItem(this.name + "_config")); + + this.onConfigLoad().then((json) => { + this.mergeConfig(json); + if (storedConfig) { + this.mergeConfig(storedConfig); + } + this.saveConfig(); + resolve(); + }); + }); + } + + onReady () {} + onCreate () { + return new Promise((resolve) => { + resolve(); + }); + } + onDestroy () {} + onRun () {} + onMutation (mutation, observer) {} + onConfigLoad () { + return new Promise((resolve) => { + resolve({}); + }); + } + onSettingInit (key, ul, li) {} + + includeCss (src) { + return PleromaModLoader.includeCss(PleromaModLoader.getModDir() + this.name + "/" + src); + } + + includeScript (src) { + return PleromaModLoader.includeScript(PleromaModLoader.getModDir() + this.name + "/" + src); + } + + excludeCss (src) { + return PleromaModLoader.excludeCss(PleromaModLoader.getModDir() + this.name + "/" + src); + } + + excludeScript (src) { + return PleromaModLoader.excludeScript(PleromaModLoader.getModDir() + this.name + "/" + src); + } + + fetchJson (src) { + console.log("loading " + src); + return window.fetch(PleromaModLoader.getModDir() + this.name + "/" + src).then((response) => { + return response.json(); + }); + } + + api (method, path, params) { + return PleromaModLoader.api(method, path, params); + } + + enable () { + this.ready(); + localStorage.setItem("pleroma_mod_" + this.name + "_enabled", true); + } + + disable () { + this.destroy(); + localStorage.setItem("pleroma_mod_" + this.name + "_enabled", false); + } +} + +window.__pleromaModLoader = new PleromaModLoader(); +window.__pleromaModLoader.waitUntilReady(); diff --git a/instance/pleroma-mods/pleroma-mod-imgsearch b/instance/pleroma-mods/pleroma-mod-imgsearch new file mode 160000 index 00000000..cfd4dd64 --- /dev/null +++ b/instance/pleroma-mods/pleroma-mod-imgsearch @@ -0,0 +1 @@ +Subproject commit cfd4dd6404d2df6e07e646aff5ff1d606ed48228 diff --git a/instance/pleroma-mods/pleroma-mod-math b/instance/pleroma-mods/pleroma-mod-math new file mode 160000 index 00000000..5d7ac570 --- /dev/null +++ b/instance/pleroma-mods/pleroma-mod-math @@ -0,0 +1 @@ +Subproject commit 5d7ac570770bd7f1d5cba1279c444b53626add3c diff --git a/instance/pleroma-mods/pleroma-mod-syntax b/instance/pleroma-mods/pleroma-mod-syntax new file mode 160000 index 00000000..440dd5dc --- /dev/null +++ b/instance/pleroma-mods/pleroma-mod-syntax @@ -0,0 +1 @@ +Subproject commit 440dd5dcb4c97d58726a2a52abbe9c54a8b2f3fb diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index 2a89886d..d70d881a 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -227,21 +227,6 @@ - - - -
diff --git a/src/components/react_button/react_button.js b/src/components/react_button/react_button.js index ce82c90d..71142540 100644 --- a/src/components/react_button/react_button.js +++ b/src/components/react_button/react_button.js @@ -1,3 +1,4 @@ +import Checkbox from '../checkbox/checkbox.vue' import Popover from '../popover/popover.vue' import { library } from '@fortawesome/fontawesome-svg-core' import { faSmileBeam } from '@fortawesome/free-regular-svg-icons' @@ -8,21 +9,26 @@ const ReactButton = { props: ['status'], data () { return { - filterWord: '' + filterWord: '', + keepReactOpen: false } }, components: { - Popover + Popover, + Checkbox }, methods: { - addReaction (event, emoji, close) { + addReaction (event, emoji, close, keepReactOpen) { const existingReaction = this.status.emoji_reactions.find(r => r.name === emoji) if (existingReaction && existingReaction.me) { this.$store.dispatch('unreactWithEmoji', { id: this.status.id, emoji }) } else { this.$store.dispatch('reactWithEmoji', { id: this.status.id, emoji }) } - close() + this.keepReactOpen = keepReactOpen + if (!keepReactOpen) { + close() + } }, focusInput () { this.$nextTick(() => { @@ -34,11 +40,23 @@ const ReactButton = { computed: { commonEmojis () { return [ - { displayText: 'thumbsup', replacement: '๐Ÿ‘' }, - { displayText: 'angry', replacement: '๐Ÿ˜ ' }, - { displayText: 'eyes', replacement: '๐Ÿ‘€' }, - { displayText: 'joy', replacement: '๐Ÿ˜‚' }, - { displayText: 'fire', replacement: '๐Ÿ”ฅ' } + { displayText: 'lying', replacement: '๐Ÿคฅ' }, + { displayText: 'thinking', replacement: '๐Ÿค”' }, + { displayText: 'zany', replacement: '๐Ÿคช' }, + { displayText: 'cartwheeling', replacement: '๐Ÿคธโ€โ™‚๏ธ' }, + { displayText: 'pills', replacement: '๐Ÿ’Š' }, + { displayText: 'writing', replacement: 'โœ๏ธ' }, + { displayText: 'pencil', replacement: 'โœ๏ธ' }, + { displayText: 'chart_up', replacement: '๐Ÿ“ˆ' }, + { displayText: 'chart_down', replacement: '๐Ÿ“‰' }, + { displayText: 'question', replacement: 'โ”' }, + { displayText: 'x', replacement: 'โŒ' }, + { displayText: 'orangutan', replacement: '๐Ÿฆง' }, + { displayText: 'owl', replacement: '๐Ÿฆ‰' }, + { displayText: 'bottle', replacement: '๐Ÿผ' }, + { displayText: 'crayon', replacement: '๐Ÿ–๏ธ' }, + { displayText: 'wrench', replacement: '๐Ÿ”ง' }, + { displayText: 'blackula', replacement: '๐Ÿง›๐Ÿฟ' } ] }, emojis () { diff --git a/src/components/react_button/react_button.vue b/src/components/react_button/react_button.vue index c69c315b..c23a1ab5 100644 --- a/src/components/react_button/react_button.vue +++ b/src/components/react_button/react_button.vue @@ -16,13 +16,18 @@ :placeholder="$t('emoji.search_emoji')" >
+
+ + {{ $t('emoji.keep_open') }} + +
{{ emoji.replacement }} @@ -32,7 +37,7 @@ :key="key" class="emoji-button" :title="emoji.displayText" - @click="addReaction($event, emoji.replacement, close)" + @click="addReaction($event, emoji.replacement, close, keepReactOpen)" > {{ emoji.replacement }} @@ -124,6 +129,15 @@ color: var(--text, $fallback--text); } } + .keep-open, + .too-many-emoji { + padding: 7px; + line-height: normal; + } + .keep-open-label { + padding: 0 7px; + display: flex; + } } diff --git a/src/components/rich_content/rich_content.jsx b/src/components/rich_content/rich_content.jsx index 41e287e4..d83bd155 100644 --- a/src/components/rich_content/rich_content.jsx +++ b/src/components/rich_content/rich_content.jsx @@ -307,8 +307,8 @@ export const preProcessPerLine = (html, greentext) => { greentext && // Only handle p's and divs. Don't want to affect blockquotes, code etc item.level.every(l => greentextHandle.has(l)) && - // Only if line begins with '>' or '<' - (string.includes('>') || string.includes('<')) + // Only if line begins with '>', '<', or '^' + (string.includes('>') || string.includes('<') || string.includes('^')) ) { const cleanedString = string.replace(/<[^>]+?>/gi, '') // remove all tags .replace(/@\w+/gi, '') // remove mentions (even failed ones) @@ -317,6 +317,8 @@ export const preProcessPerLine = (html, greentext) => { return `${string}` } else if (cleanedString.startsWith('<')) { return `${string}` + } else if (cleanedString.startsWith('^')) { + return `${string}` } } diff --git a/src/components/settings_modal/tabs/general_tab.vue b/src/components/settings_modal/tabs/general_tab.vue index a29c4a73..ac257e46 100644 --- a/src/components/settings_modal/tabs/general_tab.vue +++ b/src/components/settings_modal/tabs/general_tab.vue @@ -11,19 +11,14 @@ {{ $t('settings.hide_isp') }} -
  • - - {{ $t('settings.show_third_column') }} - -
  • {{ $t('settings.right_sidebar') }}
  • -
  • - - {{ $t('settings.hide_wallpaper') }} +
  • + + {{ $t('settings.show_third_column') }}
  • @@ -36,9 +31,10 @@ {{ $t('settings.compact_user_panel') }}
  • -
  • - - {{ $t('settings.hide_shoutbox') }} + +
  • + + {{ $t('settings.hide_wallpaper') }}
  • @@ -110,8 +106,10 @@
  • - - {{ $t('settings.swap_reacts') }} + + {{ $t('settings.showTimelines') }}
  • @@ -327,6 +325,11 @@ {{ $t('settings.show_yous') }} +
  • + + {{ $t('settings.swap_reacts') }} + +
  • diff --git a/src/components/settings_modal/tabs/version_tab.js b/src/components/settings_modal/tabs/version_tab.js index 06f055ec..6758dc89 100644 --- a/src/components/settings_modal/tabs/version_tab.js +++ b/src/components/settings_modal/tabs/version_tab.js @@ -1,7 +1,7 @@ import { extractCommit } from 'src/services/version/version.service' -const pleromaFeCommitUrl = 'https://git.pleroma.social/absturztaube/pleroma-fe/commit/' -const pleromaBeCommitUrl = 'https://git.pleroma.social/absturztaube/pleroma/commit/' +const pleromaFeCommitUrl = 'https://git.froth.zone/Sam/pleroma-fe/commit/' +const pleromaBeCommitUrl = 'https://git.froth.zone/Sam/pleroma/commit/' const VersionTab = { data () { diff --git a/src/components/status/status.scss b/src/components/status/status.scss index 5ed43e0d..63f3aa5e 100644 --- a/src/components/status/status.scss +++ b/src/components/status/status.scss @@ -346,6 +346,7 @@ .reply-form { padding-top: 0; padding-bottom: 0; + display: initial; } .reply-body { diff --git a/src/i18n/en.json b/src/i18n/en.json index f8336e5c..35f66800 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -33,7 +33,7 @@ "staff": "Staff" }, "shoutbox": { - "title": "Shoutbox" + "title": "Frothbox" }, "domain_mute_card": { "mute": "Mute", @@ -80,17 +80,8 @@ "close": "Close", "peek": "Peek", "role": { - "admin": "Admin", - "moderator": "Moderator" - }, - "flash_content": "Click to show Flash content using Ruffle (Experimental, may not work).", - "flash_security": "Note that this can be potentially dangerous since Flash content is still arbitrary code.", - "flash_fail": "Failed to load flash content, see console for details.", - "scope_in_timeline": { - "direct": "Direct", - "private": "Followers-only", - "public": "Public", - "unlisted": "Unlisted" + "admin": "Janny Queen", + "moderator": "Janny" } }, "image_cropper": { @@ -211,11 +202,11 @@ "text/bbcode": "BBCode" }, "content_warning": "Subject (optional)", - "default": "Just landed in L.A.", + "default": "Garbage Inserted", "direct_warning_to_all": "This post will be visible to all the mentioned users.", "direct_warning_to_first_only": "This post will only be visible to the mentioned users at the beginning of the message.", - "posting": "Posting", - "post": "Post", + "posting": "Expeling", + "post": "Expel", "preview": "Preview", "preview_empty": "Empty", "empty_status_error": "Can't post an empty status with no files", @@ -343,6 +334,7 @@ "domain_mutes": "Domains", "avatar_size_instruction": "The recommended minimum size for avatar images is 150x150 pixels.", "pad_emoji": "Pad emoji with spaces when adding from picker", + "swap_reacts": "Swap Reactions with Favorite Button", "emoji_reactions_on_timeline": "Show emoji reactions on timeline", "export_theme": "Save preset", "filtering": "Filtering", @@ -366,7 +358,10 @@ "hide_all_muted_posts": "Hide muted posts", "max_thumbnails": "Maximum amount of thumbnails per post (empty = no limit)", "hide_isp": "Hide instance-specific panel", - "hide_shoutbox": "Hide instance shoutbox", + "show_third_column": "Move Notifications to a seperate column", + "hide_shoutbox": "Hide instance frothbox", + "compact_nav_panel": "Compact navigation panel", + "compact_user_panel": "Compact user panel", "right_sidebar": "Show sidebar on the right side", "always_show_post_button": "Always show floating New Post button", "hide_wallpaper": "Hide instance wallpaper", @@ -385,6 +380,7 @@ "instance_default": "(default: {value})", "instance_default_simple": "(default)", "interface": "Interface", + "fullscreenView": "Fullscreen view", "interfaceLanguage": "Interface language", "invalid_theme_imported": "The selected file is not a supported Pleroma theme. No changes to your theme were made.", "limited_availability": "Unavailable in your browser", @@ -481,6 +477,7 @@ "subject_line_noop": "Do not copy", "conversation_display": "Conversation display style", "conversation_display_tree": "Tree-style", + "conversation_display_simple_tree": "Simplified tree-style", "tree_advanced": "Allow more flexible navigation in tree view", "tree_fade_ancestors": "Display ancestors of the current status in faint text", "conversation_display_linear": "Linear-style", @@ -519,6 +516,9 @@ "mention_link_bolden_you": "Highlight mention of you when you are mentioned", "fun": "Fun", "greentext": "Meme arrows", + "conversation_view": "Conversation View", + "mentions": "Mentions", + "showTimelines": "Expand timeline options by default", "show_yous": "Show (You)s", "notifications": "Notifications", "notification_setting_filters": "Filters", @@ -667,7 +667,7 @@ "button": "Button", "text": "A bunch of more {0} and {1}", "mono": "content", - "input": "Just landed in L.A.", + "input": "Put post here.", "faint_link": "helpful manual", "fine_print": "Read our {0} to learn nothing useful!", "header_faint": "This is fine", diff --git a/static/emoji.json b/static/emoji.json index 12b91b3f..b231c50c 100644 --- a/static/emoji.json +++ b/static/emoji.json @@ -1,1431 +1,3652 @@ { - "100": "๐Ÿ’ฏ", - "1234": "๐Ÿ”ข", - "1st_place_medal": "๐Ÿฅ‡", - "2nd_place_medal": "๐Ÿฅˆ", - "3rd_place_medal": "๐Ÿฅ‰", - "8ball": "๐ŸŽฑ", - "a_button_blood_type": "๐Ÿ…ฐ", - "ab": "๐Ÿ†Ž", + "1st place medal": "๐Ÿฅ‡", + "2nd place medal": "๐Ÿฅˆ", + "3rd place medal": "๐Ÿฅ‰", + "A button (blood type)": "๐Ÿ…ฐ๏ธ", + "AB button (blood type)": "๐Ÿ†Ž", + "ATM sign": "๐Ÿง", + "Aquarius": "โ™’", + "Aries": "โ™ˆ", + "B button (blood type)": "๐Ÿ…ฑ๏ธ", + "BACK arrow": "๐Ÿ”™", + "CL button": "๐Ÿ†‘", + "COOL button": "๐Ÿ†’", + "Cancer": "โ™‹", + "Capricorn": "โ™‘", + "Christmas tree": "๐ŸŽ„", + "END arrow": "๐Ÿ”š", + "FREE button": "๐Ÿ†“", + "Gemini": "โ™Š", + "ID button": "๐Ÿ†”", + "Japanese castle": "๐Ÿฏ", + "Japanese dolls": "๐ŸŽŽ", + "Japanese post office": "๐Ÿฃ", + "Japanese symbol for beginner": "๐Ÿ”ฐ", + "Japanese โ€œacceptableโ€ button": "๐Ÿ‰‘", + "Japanese โ€œapplicationโ€ button": "๐Ÿˆธ", + "Japanese โ€œbargainโ€ button": "๐Ÿ‰", + "Japanese โ€œcongratulationsโ€ button": "ใŠ—๏ธ", + "Japanese โ€œdiscountโ€ button": "๐Ÿˆน", + "Japanese โ€œfree of chargeโ€ button": "๐Ÿˆš", + "Japanese โ€œhereโ€ button": "๐Ÿˆ", + "Japanese โ€œmonthly amountโ€ button": "๐Ÿˆท๏ธ", + "Japanese โ€œno vacancyโ€ button": "๐Ÿˆต", + "Japanese โ€œnot free of chargeโ€ button": "๐Ÿˆถ", + "Japanese โ€œopen for businessโ€ button": "๐Ÿˆบ", + "Japanese โ€œpassing gradeโ€ button": "๐Ÿˆด", + "Japanese โ€œprohibitedโ€ button": "๐Ÿˆฒ", + "Japanese โ€œreservedโ€ button": "๐Ÿˆฏ", + "Japanese โ€œsecretโ€ button": "ใŠ™๏ธ", + "Japanese โ€œservice chargeโ€ button": "๐Ÿˆ‚๏ธ", + "Japanese โ€œvacancyโ€ button": "๐Ÿˆณ", + "Leo": "โ™Œ", + "Libra": "โ™Ž", + "Mrs. Claus": "๐Ÿคถ", + "Mrs. Claus dark skin tone": "๐Ÿคถ๐Ÿฟ", + "Mrs. Claus light skin tone": "๐Ÿคถ๐Ÿป", + "Mrs. Claus medium dark skin tone": "๐Ÿคถ๐Ÿพ", + "Mrs. Claus medium light skin tone": "๐Ÿคถ๐Ÿผ", + "Mrs. Claus medium skin tone": "๐Ÿคถ๐Ÿฝ", + "NEW button": "๐Ÿ†•", + "NG button": "๐Ÿ†–", + "O button (blood type)": "๐Ÿ…พ๏ธ", + "OK button": "๐Ÿ†—", + "OK hand": "๐Ÿ‘Œ", + "OK hand dark skin tone": "๐Ÿ‘Œ๐Ÿฟ", + "OK hand light skin tone": "๐Ÿ‘Œ๐Ÿป", + "OK hand medium dark skin tone": "๐Ÿ‘Œ๐Ÿพ", + "OK hand medium light skin tone": "๐Ÿ‘Œ๐Ÿผ", + "OK hand medium skin tone": "๐Ÿ‘Œ๐Ÿฝ", + "ON! arrow": "๐Ÿ”›", + "Ophiuchus": "โ›Ž", + "P button": "๐Ÿ…ฟ๏ธ", + "Pisces": "โ™“", + "SOON arrow": "๐Ÿ”œ", + "SOS button": "๐Ÿ†˜", + "Sagittarius": "โ™", + "Santa Claus": "๐ŸŽ…", + "Santa Claus dark skin tone": "๐ŸŽ…๐Ÿฟ", + "Santa Claus light skin tone": "๐ŸŽ…๐Ÿป", + "Santa Claus medium dark skin tone": "๐ŸŽ…๐Ÿพ", + "Santa Claus medium light skin tone": "๐ŸŽ…๐Ÿผ", + "Santa Claus medium skin tone": "๐ŸŽ…๐Ÿฝ", + "Scorpio": "โ™", + "Statue of Liberty": "๐Ÿ—ฝ", + "T Rex": "๐Ÿฆ–", + "TOP arrow": "๐Ÿ”", + "Taurus": "โ™‰", + "Tokyo tower": "๐Ÿ—ผ", + "UP! button": "๐Ÿ†™", + "VS button": "๐Ÿ†š", + "Virgo": "โ™", "abacus": "๐Ÿงฎ", - "abc": "๐Ÿ”ค", - "abcd": "๐Ÿ”ก", - "accept": "๐Ÿ‰‘", - "adhesive_bandage": "๐Ÿฉน", - "admission_tickets": "๐ŸŽŸ", - "adult": "๐Ÿง‘", - "aerial_tramway": "๐Ÿšก", - "airplane": "โœˆ", - "airplane_arriving": "๐Ÿ›ฌ", - "airplane_departure": "๐Ÿ›ซ", - "alarm_clock": "โฐ", + "accordion": "๐Ÿช—", + "adhesive bandage": "๐Ÿฉน", + "admission tickets": "๐ŸŽŸ๏ธ", + "aerial tramway": "๐Ÿšก", + "airplane": "โœˆ๏ธ", + "airplane arrival": "๐Ÿ›ฌ", + "airplane departure": "๐Ÿ›ซ", + "alarm clock": "โฐ", "alembic": "โš—๏ธ", "alien": "๐Ÿ‘ฝ", + "alien monster": "๐Ÿ‘พ", "ambulance": "๐Ÿš‘", + "american football": "๐Ÿˆ", "amphora": "๐Ÿบ", + "anatomical heart": "๐Ÿซ€", "anchor": "โš“", - "angel": "๐Ÿ‘ผ", - "anger": "๐Ÿ’ข", - "anger_right": "๐Ÿ—ฏ", - "angry": "๐Ÿ˜ ", - "anguished": "๐Ÿ˜ง", + "anger symbol": "๐Ÿ’ข", + "angry face": "๐Ÿ˜ ", + "angry face with horns": "๐Ÿ‘ฟ", + "anguished face": "๐Ÿ˜ง", "ant": "๐Ÿœ", - "apple": "๐ŸŽ", - "aquarius": "โ™’", - "aries": "โ™ˆ", - "arrow_backward": "โ—€๏ธ", - "arrow_double_down": "โฌ", - "arrow_double_up": "โซ", - "arrow_down": "โฌ‡๏ธ", - "arrow_down_small": "๐Ÿ”ฝ", - "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_up_small": "๐Ÿ”ผ", - "arrow_upper_left": "โ†–", - "arrow_upper_right": "โ†—๏ธ", - "arrows_clockwise": "๐Ÿ”ƒ", - "arrows_counterclockwise": "๐Ÿ”„", - "art": "๐ŸŽจ", - "articulated_lorry": "๐Ÿš›", - "artist_palette": "๐ŸŽจ", - "asterisk": "*โƒฃ", - "astonished": "๐Ÿ˜ฒ", - "athletic_shoe": "๐Ÿ‘Ÿ", - "atm": "๐Ÿง", - "atom": "โš›", - "atom_symbol": "โš›๏ธ", - "auto_rickshaw": "๐Ÿ›บ", + "antenna bars": "๐Ÿ“ถ", + "anxious face with sweat": "๐Ÿ˜ฐ", + "articulated lorry": "๐Ÿš›", + "artist": "๐Ÿง‘โ€๐ŸŽจ", + "artist dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐ŸŽจ", + "artist light skin tone": "๐Ÿง‘๐Ÿปโ€๐ŸŽจ", + "artist medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐ŸŽจ", + "artist medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐ŸŽจ", + "artist medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐ŸŽจ", + "artist palette": "๐ŸŽจ", + "astonished face": "๐Ÿ˜ฒ", + "astronaut": "๐Ÿง‘โ€๐Ÿš€", + "astronaut dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿš€", + "astronaut light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿš€", + "astronaut medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿš€", + "astronaut medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿš€", + "astronaut medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿš€", + "atom symbol": "โš›๏ธ", + "auto rickshaw": "๐Ÿ›บ", "automobile": "๐Ÿš—", "avocado": "๐Ÿฅ‘", "axe": "๐Ÿช“", - "b_button_blood_type": "๐Ÿ…ฑ", "baby": "๐Ÿ‘ถ", - "baby_bottle": "๐Ÿผ", - "baby_chick": "๐Ÿค", - "baby_symbol": "๐Ÿšผ", - "back": "๐Ÿ”™", + "baby angel": "๐Ÿ‘ผ", + "baby angel dark skin tone": "๐Ÿ‘ผ๐Ÿฟ", + "baby angel light skin tone": "๐Ÿ‘ผ๐Ÿป", + "baby angel medium dark skin tone": "๐Ÿ‘ผ๐Ÿพ", + "baby angel medium light skin tone": "๐Ÿ‘ผ๐Ÿผ", + "baby angel medium skin tone": "๐Ÿ‘ผ๐Ÿฝ", + "baby bottle": "๐Ÿผ", + "baby chick": "๐Ÿค", + "baby dark skin tone": "๐Ÿ‘ถ๐Ÿฟ", + "baby light skin tone": "๐Ÿ‘ถ๐Ÿป", + "baby medium dark skin tone": "๐Ÿ‘ถ๐Ÿพ", + "baby medium light skin tone": "๐Ÿ‘ถ๐Ÿผ", + "baby medium skin tone": "๐Ÿ‘ถ๐Ÿฝ", + "baby symbol": "๐Ÿšผ", + "backhand index pointing down": "๐Ÿ‘‡", + "backhand index pointing down dark skin tone": "๐Ÿ‘‡๐Ÿฟ", + "backhand index pointing down light skin tone": "๐Ÿ‘‡๐Ÿป", + "backhand index pointing down medium dark skin tone": "๐Ÿ‘‡๐Ÿพ", + "backhand index pointing down medium light skin tone": "๐Ÿ‘‡๐Ÿผ", + "backhand index pointing down medium skin tone": "๐Ÿ‘‡๐Ÿฝ", + "backhand index pointing left": "๐Ÿ‘ˆ", + "backhand index pointing left dark skin tone": "๐Ÿ‘ˆ๐Ÿฟ", + "backhand index pointing left light skin tone": "๐Ÿ‘ˆ๐Ÿป", + "backhand index pointing left medium dark skin tone": "๐Ÿ‘ˆ๐Ÿพ", + "backhand index pointing left medium light skin tone": "๐Ÿ‘ˆ๐Ÿผ", + "backhand index pointing left medium skin tone": "๐Ÿ‘ˆ๐Ÿฝ", + "backhand index pointing right": "๐Ÿ‘‰", + "backhand index pointing right dark skin tone": "๐Ÿ‘‰๐Ÿฟ", + "backhand index pointing right light skin tone": "๐Ÿ‘‰๐Ÿป", + "backhand index pointing right medium dark skin tone": "๐Ÿ‘‰๐Ÿพ", + "backhand index pointing right medium light skin tone": "๐Ÿ‘‰๐Ÿผ", + "backhand index pointing right medium skin tone": "๐Ÿ‘‰๐Ÿฝ", + "backhand index pointing up": "๐Ÿ‘†", + "backhand index pointing up dark skin tone": "๐Ÿ‘†๐Ÿฟ", + "backhand index pointing up light skin tone": "๐Ÿ‘†๐Ÿป", + "backhand index pointing up medium dark skin tone": "๐Ÿ‘†๐Ÿพ", + "backhand index pointing up medium light skin tone": "๐Ÿ‘†๐Ÿผ", + "backhand index pointing up medium skin tone": "๐Ÿ‘†๐Ÿฝ", + "backpack": "๐ŸŽ’", "bacon": "๐Ÿฅ“", "badger": "๐Ÿฆก", "badminton": "๐Ÿธ", "bagel": "๐Ÿฅฏ", - "baggage_claim": "๐Ÿ›„", - "baguette_bread": "๐Ÿฅ–", - "balance_scale": "โš–๏ธ", - "bald": "๐Ÿฆฒ", - "ballet_shoes": "๐Ÿฉฐ", + "baggage claim": "๐Ÿ›„", + "baguette bread": "๐Ÿฅ–", + "balance scale": "โš–๏ธ", + "ballet shoes": "๐Ÿฉฐ", "balloon": "๐ŸŽˆ", - "ballot_box": "๐Ÿ—ณ", - "ballot_box_with_check": "โ˜‘๏ธ", - "bamboo": "๐ŸŽ", + "ballot box with ballot": "๐Ÿ—ณ๏ธ", "banana": "๐ŸŒ", - "bangbang": "โ€ผ๏ธ", "banjo": "๐Ÿช•", "bank": "๐Ÿฆ", - "bar_chart": "๐Ÿ“Š", - "barber": "๐Ÿ’ˆ", + "bar chart": "๐Ÿ“Š", + "barber pole": "๐Ÿ’ˆ", "baseball": "โšพ", "basket": "๐Ÿงบ", "basketball": "๐Ÿ€", - "basketballer": "โ›น", "bat": "๐Ÿฆ‡", - "bath": "๐Ÿ›€", "bathtub": "๐Ÿ›", "battery": "๐Ÿ”‹", - "beach_umbrella": "โ›ฑ", - "beach_with_umbrella": "๐Ÿ–", + "beach with umbrella": "๐Ÿ–๏ธ", + "beaming face with smiling eyes": "๐Ÿ˜", + "beans": "๐Ÿซ˜", "bear": "๐Ÿป", - "beard": "๐Ÿง”", - "bearded_person": "๐Ÿง”", - "bed": "๐Ÿ›", - "bee": "๐Ÿ", - "beer": "๐Ÿบ", - "beers": "๐Ÿป", - "beetle": "๐Ÿž", - "beginner": "๐Ÿ”ฐ", + "beating heart": "๐Ÿ’“", + "beaver": "๐Ÿฆซ", + "bed": "๐Ÿ›๏ธ", + "beer mug": "๐Ÿบ", + "beetle": "๐Ÿชฒ", "bell": "๐Ÿ””", - "bellhop_bell": "๐Ÿ›Ž", - "bento": "๐Ÿฑ", - "beverage_box": "๐Ÿงƒ", - "bicyclist": "๐Ÿšด", - "bike": "๐Ÿšฒ", + "bell pepper": "๐Ÿซ‘", + "bell with slash": "๐Ÿ”•", + "bellhop bell": "๐Ÿ›Ž๏ธ", + "bento box": "๐Ÿฑ", + "beverage box": "๐Ÿงƒ", + "bicycle": "๐Ÿšฒ", "bikini": "๐Ÿ‘™", - "billed_cap": "๐Ÿงข", + "billed cap": "๐Ÿงข", "biohazard": "โ˜ฃ๏ธ", "bird": "๐Ÿฆ", - "birthday": "๐ŸŽ‚", - "black_circle": "โšซ", - "black_heart": "๐Ÿ–ค", - "black_joker": "๐Ÿƒ", - "black_large_square": "โฌ›", - "black_medium_small_square": "โ—พ", - "black_medium_square": "โ—ผ", - "black_nib": "โœ’๏ธ", - "black_small_square": "โ–ช", - "black_square_button": "๐Ÿ”ฒ", - "blond_haired_person": "๐Ÿ‘ฑ", + "birthday cake": "๐ŸŽ‚", + "bison": "๐Ÿฆฌ", + "biting lip": "๐Ÿซฆ", + "black cat": "๐Ÿˆโ€โฌ›", + "black circle": "โšซ", + "black flag": "๐Ÿด", + "black heart": "๐Ÿ–ค", + "black large square": "โฌ›", + "black medium small square": "โ—พ", + "black medium square": "โ—ผ๏ธ", + "black nib": "โœ’๏ธ", + "black small square": "โ–ช๏ธ", + "black square button": "๐Ÿ”ฒ", "blossom": "๐ŸŒผ", "blowfish": "๐Ÿก", - "blue_book": "๐Ÿ“˜", - "blue_car": "๐Ÿš™", - "blue_circle": "๐Ÿ”ต", - "blue_heart": "๐Ÿ’™", - "blue_square": "๐ŸŸฆ", - "blush": "๐Ÿ˜Š", + "blue book": "๐Ÿ“˜", + "blue circle": "๐Ÿ”ต", + "blue heart": "๐Ÿ’™", + "blue square": "๐ŸŸฆ", + "blueberries": "๐Ÿซ", "boar": "๐Ÿ—", "bomb": "๐Ÿ’ฃ", "bone": "๐Ÿฆด", - "book": "๐Ÿ“–", "bookmark": "๐Ÿ”–", - "bookmark_tabs": "๐Ÿ“‘", + "bookmark tabs": "๐Ÿ“‘", "books": "๐Ÿ“š", - "boom": "๐Ÿ’ฅ", - "boot": "๐Ÿ‘ข", + "boomerang": "๐Ÿชƒ", + "bottle with popping cork": "๐Ÿพ", "bouquet": "๐Ÿ’", - "bow": "๐Ÿ™‡", - "bow_and_arrow": "๐Ÿน", - "bowl_with_spoon": "๐Ÿฅฃ", + "bow and arrow": "๐Ÿน", + "bowl with spoon": "๐Ÿฅฃ", "bowling": "๐ŸŽณ", - "boxing_glove": "๐ŸฅŠ", + "boxing glove": "๐ŸฅŠ", "boy": "๐Ÿ‘ฆ", + "boy dark skin tone": "๐Ÿ‘ฆ๐Ÿฟ", + "boy light skin tone": "๐Ÿ‘ฆ๐Ÿป", + "boy medium dark skin tone": "๐Ÿ‘ฆ๐Ÿพ", + "boy medium light skin tone": "๐Ÿ‘ฆ๐Ÿผ", + "boy medium skin tone": "๐Ÿ‘ฆ๐Ÿฝ", "brain": "๐Ÿง ", "bread": "๐Ÿž", - "breast_feeding": "๐Ÿคฑ", - "breastfeeding": "๐Ÿคฑ", + "breast feeding": "๐Ÿคฑ", + "breast feeding dark skin tone": "๐Ÿคฑ๐Ÿฟ", + "breast feeding light skin tone": "๐Ÿคฑ๐Ÿป", + "breast feeding medium dark skin tone": "๐Ÿคฑ๐Ÿพ", + "breast feeding medium light skin tone": "๐Ÿคฑ๐Ÿผ", + "breast feeding medium skin tone": "๐Ÿคฑ๐Ÿฝ", "brick": "๐Ÿงฑ", - "bride_with_veil": "๐Ÿ‘ฐ", - "bridge_at_night": "๐ŸŒ‰", + "bridge at night": "๐ŸŒ‰", "briefcase": "๐Ÿ’ผ", "briefs": "๐Ÿฉฒ", + "bright button": "๐Ÿ”†", "broccoli": "๐Ÿฅฆ", - "broken_heart": "๐Ÿ’”", + "broken heart": "๐Ÿ’”", "broom": "๐Ÿงน", - "brown_circle": "๐ŸŸค", - "brown_heart": "๐ŸคŽ", + "brown circle": "๐ŸŸค", + "brown heart": "๐ŸคŽ", + "brown square": "๐ŸŸซ", + "bubble tea": "๐Ÿง‹", + "bubbles": "๐Ÿซง", + "bucket": "๐Ÿชฃ", "bug": "๐Ÿ›", - "building_construction": "๐Ÿ—", - "bulb": "๐Ÿ’ก", - "bullettrain_front": "๐Ÿš…", - "bullettrain_side": "๐Ÿš„", + "building construction": "๐Ÿ—๏ธ", + "bullet train": "๐Ÿš…", + "bullseye": "๐ŸŽฏ", "burrito": "๐ŸŒฏ", "bus": "๐ŸšŒ", - "busstop": "๐Ÿš", - "bust_in_silhouette": "๐Ÿ‘ค", - "busts_in_silhouette": "๐Ÿ‘ฅ", + "bus stop": "๐Ÿš", + "bust in silhouette": "๐Ÿ‘ค", + "busts in silhouette": "๐Ÿ‘ฅ", "butter": "๐Ÿงˆ", "butterfly": "๐Ÿฆ‹", "cactus": "๐ŸŒต", - "cake": "๐Ÿฐ", - "calendar": "๐Ÿ“†", - "call_me": "๐Ÿค™", - "call_me_hand": "๐Ÿค™", - "calling": "๐Ÿ“ฒ", - "camel": "๐Ÿซ", + "calendar": "๐Ÿ“…", + "call me hand": "๐Ÿค™", + "call me hand dark skin tone": "๐Ÿค™๐Ÿฟ", + "call me hand light skin tone": "๐Ÿค™๐Ÿป", + "call me hand medium dark skin tone": "๐Ÿค™๐Ÿพ", + "call me hand medium light skin tone": "๐Ÿค™๐Ÿผ", + "call me hand medium skin tone": "๐Ÿค™๐Ÿฝ", + "camel": "๐Ÿช", "camera": "๐Ÿ“ท", - "camera_with_flash": "๐Ÿ“ธ", - "camping": "๐Ÿ•", - "cancer": "โ™‹", - "candle": "๐Ÿ•ฏ", + "camera with flash": "๐Ÿ“ธ", + "camping": "๐Ÿ•๏ธ", + "candle": "๐Ÿ•ฏ๏ธ", "candy": "๐Ÿฌ", - "canned_food": "๐Ÿฅซ", + "canned food": "๐Ÿฅซ", "canoe": "๐Ÿ›ถ", - "capital_abcd": "๐Ÿ” ", - "capricorn": "โ™‘", - "card_file_box": "๐Ÿ—ƒ", - "card_index": "๐Ÿ“‡", - "card_index_dividers": "๐Ÿ—‚", - "carousel_horse": "๐ŸŽ ", + "card file box": "๐Ÿ—ƒ๏ธ", + "card index": "๐Ÿ“‡", + "card index dividers": "๐Ÿ—‚๏ธ", + "carousel horse": "๐ŸŽ ", + "carp streamer": "๐ŸŽ", + "carpentry saw": "๐Ÿชš", "carrot": "๐Ÿฅ•", - "cat": "๐Ÿฑ", - "cat2": "๐Ÿˆ", - "cd": "๐Ÿ’ฟ", + "castle": "๐Ÿฐ", + "cat": "๐Ÿˆ", + "cat face": "๐Ÿฑ", + "cat with tears of joy": "๐Ÿ˜น", + "cat with wry smile": "๐Ÿ˜ผ", "chains": "โ›“๏ธ", "chair": "๐Ÿช‘", - "champagne": "๐Ÿพ", - "champagne_glass": "๐Ÿฅ‚", - "chart": "๐Ÿ’น", - "chart_with_downwards_trend": "๐Ÿ“‰", - "chart_with_upwards_trend": "๐Ÿ“ˆ", - "check_box_with_check": "โ˜‘", - "check_mark": "โœ”", - "checkered_flag": "๐Ÿ", - "cheese": "๐Ÿง€", - "cheese_wedge": "๐Ÿง€", + "chart decreasing": "๐Ÿ“‰", + "chart increasing": "๐Ÿ“ˆ", + "chart increasing with yen": "๐Ÿ’น", + "check box with check": "โ˜‘๏ธ", + "check mark": "โœ”๏ธ", + "check mark button": "โœ…", + "cheese wedge": "๐Ÿง€", + "chequered flag": "๐Ÿ", "cherries": "๐Ÿ’", - "cherry_blossom": "๐ŸŒธ", - "chess_pawn": "โ™Ÿ", + "cherry blossom": "๐ŸŒธ", + "chess pawn": "โ™Ÿ๏ธ", "chestnut": "๐ŸŒฐ", "chicken": "๐Ÿ”", "child": "๐Ÿง’", - "children_crossing": "๐Ÿšธ", - "chipmunk": "๐Ÿฟ", - "chocolate_bar": "๐Ÿซ", + "child dark skin tone": "๐Ÿง’๐Ÿฟ", + "child light skin tone": "๐Ÿง’๐Ÿป", + "child medium dark skin tone": "๐Ÿง’๐Ÿพ", + "child medium light skin tone": "๐Ÿง’๐Ÿผ", + "child medium skin tone": "๐Ÿง’๐Ÿฝ", + "children crossing": "๐Ÿšธ", + "chipmunk": "๐Ÿฟ๏ธ", + "chocolate bar": "๐Ÿซ", "chopsticks": "๐Ÿฅข", - "christmas_tree": "๐ŸŽ„", "church": "โ›ช", + "cigarette": "๐Ÿšฌ", "cinema": "๐ŸŽฆ", - "circled_m": "โ“‚", - "circus_tent": "๐ŸŽช", - "city_dusk": "๐ŸŒ†", - "city_sunset": "๐ŸŒ‡", - "cityscape": "๐Ÿ™", - "cityscape_at_dusk": "๐ŸŒ†", - "cl": "๐Ÿ†‘", - "clap": "๐Ÿ‘", - "clapper": "๐ŸŽฌ", - "classical_building": "๐Ÿ›", - "clinking_glasses": "๐Ÿฅ‚", + "circled M": "โ“‚๏ธ", + "circus tent": "๐ŸŽช", + "cityscape": "๐Ÿ™๏ธ", + "cityscape at dusk": "๐ŸŒ†", + "clamp": "๐Ÿ—œ๏ธ", + "clapper board": "๐ŸŽฌ", + "clapping hands": "๐Ÿ‘", + "clapping hands dark skin tone": "๐Ÿ‘๐Ÿฟ", + "clapping hands light skin tone": "๐Ÿ‘๐Ÿป", + "clapping hands medium dark skin tone": "๐Ÿ‘๐Ÿพ", + "clapping hands medium light skin tone": "๐Ÿ‘๐Ÿผ", + "clapping hands medium skin tone": "๐Ÿ‘๐Ÿฝ", + "classical building": "๐Ÿ›๏ธ", + "clinking beer mugs": "๐Ÿป", + "clinking glasses": "๐Ÿฅ‚", "clipboard": "๐Ÿ“‹", - "clock1": "๐Ÿ•", - "clock10": "๐Ÿ•™", - "clock1030": "๐Ÿ•ฅ", - "clock11": "๐Ÿ•š", - "clock1130": "๐Ÿ•ฆ", - "clock12": "๐Ÿ•›", - "clock1230": "๐Ÿ•ง", - "clock130": "๐Ÿ•œ", - "clock2": "๐Ÿ•‘", - "clock230": "๐Ÿ•", - "clock3": "๐Ÿ•’", - "clock330": "๐Ÿ•ž", - "clock4": "๐Ÿ•“", - "clock430": "๐Ÿ•Ÿ", - "clock5": "๐Ÿ•”", - "clock530": "๐Ÿ• ", - "clock6": "๐Ÿ••", - "clock630": "๐Ÿ•ก", - "clock7": "๐Ÿ•–", - "clock730": "๐Ÿ•ข", - "clock8": "๐Ÿ•—", - "clock830": "๐Ÿ•ฃ", - "clock9": "๐Ÿ•˜", - "clock930": "๐Ÿ•ค", - "closed_book": "๐Ÿ“•", - "closed_lock_with_key": "๐Ÿ”", - "closed_umbrella": "๐ŸŒ‚", + "clockwise vertical arrows": "๐Ÿ”ƒ", + "closed book": "๐Ÿ“•", + "closed mailbox with lowered flag": "๐Ÿ“ช", + "closed mailbox with raised flag": "๐Ÿ“ซ", + "closed umbrella": "๐ŸŒ‚", "cloud": "โ˜๏ธ", - "cloud_with_lightning": "๐ŸŒฉ", - "cloud_with_lightning_and_rain": "โ›ˆ๏ธ", - "cloud_with_rain": "๐ŸŒง", - "cloud_with_snow": "๐ŸŒจ", - "clown": "๐Ÿคก", - "clown_face": "๐Ÿคก", - "club_suit": "โ™ฃ๏ธ", - "clubs": "โ™ฃ", + "cloud with lightning": "๐ŸŒฉ๏ธ", + "cloud with lightning and rain": "โ›ˆ๏ธ", + "cloud with rain": "๐ŸŒง๏ธ", + "cloud with snow": "๐ŸŒจ๏ธ", + "clown face": "๐Ÿคก", + "club suit": "โ™ฃ๏ธ", + "clutch bag": "๐Ÿ‘", "coat": "๐Ÿงฅ", - "cocktail": "๐Ÿธ", + "cockroach": "๐Ÿชณ", + "cocktail glass": "๐Ÿธ", "coconut": "๐Ÿฅฅ", - "coffee": "โ˜•", "coffin": "โšฐ๏ธ", - "cold_face": "๐Ÿฅถ", - "cold_sweat": "๐Ÿ˜ฐ", + "coin": "๐Ÿช™", + "cold face": "๐Ÿฅถ", + "collision": "๐Ÿ’ฅ", "comet": "โ˜„๏ธ", "compass": "๐Ÿงญ", - "compression": "๐Ÿ—œ", - "computer": "๐Ÿ’ป", - "computer_mouse": "๐Ÿ–ฑ", - "confetti_ball": "๐ŸŽŠ", - "confounded": "๐Ÿ˜–", - "confused": "๐Ÿ˜•", - "congratulations": "ใŠ—", + "computer disk": "๐Ÿ’ฝ", + "computer mouse": "๐Ÿ–ฑ๏ธ", + "confetti ball": "๐ŸŽŠ", + "confounded face": "๐Ÿ˜–", + "confused face": "๐Ÿ˜•", "construction": "๐Ÿšง", - "construction_worker": "๐Ÿ‘ท", - "control_knobs": "๐ŸŽ›", - "convenience_store": "๐Ÿช", + "construction worker": "๐Ÿ‘ท", + "construction worker dark skin tone": "๐Ÿ‘ท๐Ÿฟ", + "construction worker light skin tone": "๐Ÿ‘ท๐Ÿป", + "construction worker medium dark skin tone": "๐Ÿ‘ท๐Ÿพ", + "construction worker medium light skin tone": "๐Ÿ‘ท๐Ÿผ", + "construction worker medium skin tone": "๐Ÿ‘ท๐Ÿฝ", + "control knobs": "๐ŸŽ›๏ธ", + "convenience store": "๐Ÿช", + "cook": "๐Ÿง‘โ€๐Ÿณ", + "cook dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿณ", + "cook light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿณ", + "cook medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿณ", + "cook medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿณ", + "cook medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿณ", + "cooked rice": "๐Ÿš", "cookie": "๐Ÿช", "cooking": "๐Ÿณ", - "cool": "๐Ÿ†’", - "cop": "๐Ÿ‘ฎ", - "copyright": "ยฉ", - "corn": "๐ŸŒฝ", - "couch_and_lamp": "๐Ÿ›‹", - "couple": "๐Ÿ‘ซ", - "couple_with_heart": "๐Ÿ’‘", - "couplekiss": "๐Ÿ’", - "cow": "๐Ÿฎ", - "cow2": "๐Ÿ„", - "cowboy": "๐Ÿค ", - "cowboy_hat_face": "๐Ÿค ", + "copyright": "ยฉ๏ธ", + "coral": "๐Ÿชธ", + "couch and lamp": "๐Ÿ›‹๏ธ", + "counterclockwise arrows button": "๐Ÿ”„", + "couple with heart": "๐Ÿ’‘", + "couple with heart dark skin tone": "๐Ÿ’‘๐Ÿฟ", + "couple with heart light skin tone": "๐Ÿ’‘๐Ÿป", + "couple with heart man man": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ", + "couple with heart man man dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart man man dark skin tone light skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart man man dark skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart man man dark skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart man man dark skin tone medium skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart man man light skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart man man light skin tone dark skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart man man light skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart man man light skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart man man light skin tone medium skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart man man medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart man man medium dark skin tone dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart man man medium dark skin tone light skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart man man medium dark skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart man man medium dark skin tone medium skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart man man medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart man man medium light skin tone dark skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart man man medium light skin tone light skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart man man medium light skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart man man medium light skin tone medium skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart man man medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart man man medium skin tone dark skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart man man medium skin tone light skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart man man medium skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart man man medium skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart medium dark skin tone": "๐Ÿ’‘๐Ÿพ", + "couple with heart medium light skin tone": "๐Ÿ’‘๐Ÿผ", + "couple with heart medium skin tone": "๐Ÿ’‘๐Ÿฝ", + "couple with heart person person dark skin tone light skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "couple with heart person person dark skin tone medium dark skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "couple with heart person person dark skin tone medium light skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "couple with heart person person dark skin tone medium skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "couple with heart person person light skin tone dark skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "couple with heart person person light skin tone medium dark skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "couple with heart person person light skin tone medium light skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "couple with heart person person light skin tone medium skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "couple with heart person person medium dark skin tone dark skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "couple with heart person person medium dark skin tone light skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "couple with heart person person medium dark skin tone medium light skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "couple with heart person person medium dark skin tone medium skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "couple with heart person person medium light skin tone dark skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "couple with heart person person medium light skin tone light skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "couple with heart person person medium light skin tone medium dark skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "couple with heart person person medium light skin tone medium skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "couple with heart person person medium skin tone dark skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "couple with heart person person medium skin tone light skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "couple with heart person person medium skin tone medium dark skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "couple with heart person person medium skin tone medium light skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "couple with heart woman man": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ", + "couple with heart woman man dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart woman man dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart woman man dark skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart woman man dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart woman man dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart woman man light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart woman man light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart woman man light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart woman man light skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart woman man light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart woman man medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart woman man medium dark skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart woman man medium dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart woman man medium dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart woman man medium dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart woman man medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart woman man medium light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart woman man medium light skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart woman man medium light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart woman man medium light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart woman man medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "couple with heart woman man medium skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "couple with heart woman man medium skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "couple with heart woman man medium skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "couple with heart woman man medium skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "couple with heart woman woman": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", + "couple with heart woman woman dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "couple with heart woman woman dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "couple with heart woman woman dark skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "couple with heart woman woman dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "couple with heart woman woman dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "couple with heart woman woman light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "couple with heart woman woman light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "couple with heart woman woman light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "couple with heart woman woman light skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "couple with heart woman woman light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "couple with heart woman woman medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "couple with heart woman woman medium dark skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "couple with heart woman woman medium dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "couple with heart woman woman medium dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "couple with heart woman woman medium dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "couple with heart woman woman medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "couple with heart woman woman medium light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "couple with heart woman woman medium light skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "couple with heart woman woman medium light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "couple with heart woman woman medium light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "couple with heart woman woman medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "couple with heart woman woman medium skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "couple with heart woman woman medium skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "couple with heart woman woman medium skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "couple with heart woman woman medium skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "cow": "๐Ÿ„", + "cow face": "๐Ÿฎ", + "cowboy hat face": "๐Ÿค ", "crab": "๐Ÿฆ€", - "crayon": "๐Ÿ–", - "crazy_face": "๐Ÿคช", - "credit_card": "๐Ÿ’ณ", - "crescent_moon": "๐ŸŒ™", + "crayon": "๐Ÿ–๏ธ", + "credit card": "๐Ÿ’ณ", + "crescent moon": "๐ŸŒ™", "cricket": "๐Ÿฆ—", - "cricket_game": "๐Ÿ", + "cricket game": "๐Ÿ", "crocodile": "๐ŸŠ", "croissant": "๐Ÿฅ", - "cross": "โœ๏ธ", - "crossed_fingers": "๐Ÿคž", - "crossed_flags": "๐ŸŽŒ", - "crossed_swords": "โš”๏ธ", + "cross mark": "โŒ", + "cross mark button": "โŽ", + "crossed fingers": "๐Ÿคž", + "crossed fingers dark skin tone": "๐Ÿคž๐Ÿฟ", + "crossed fingers light skin tone": "๐Ÿคž๐Ÿป", + "crossed fingers medium dark skin tone": "๐Ÿคž๐Ÿพ", + "crossed fingers medium light skin tone": "๐Ÿคž๐Ÿผ", + "crossed fingers medium skin tone": "๐Ÿคž๐Ÿฝ", + "crossed flags": "๐ŸŽŒ", + "crossed swords": "โš”๏ธ", "crown": "๐Ÿ‘‘", - "cry": "๐Ÿ˜ข", - "crying_cat_face": "๐Ÿ˜ฟ", - "crystal_ball": "๐Ÿ”ฎ", + "crutch": "๐Ÿฉผ", + "crying cat": "๐Ÿ˜ฟ", + "crying face": "๐Ÿ˜ข", + "crystal ball": "๐Ÿ”ฎ", "cucumber": "๐Ÿฅ’", - "cup_with_straw": "๐Ÿฅค", + "cup with straw": "๐Ÿฅค", "cupcake": "๐Ÿง", - "cupid": "๐Ÿ’˜", - "curling_stone": "๐ŸฅŒ", - "curly_hair": "๐Ÿฆฑ", - "curly_loop": "โžฐ", - "currency_exchange": "๐Ÿ’ฑ", - "curry": "๐Ÿ›", + "curling stone": "๐ŸฅŒ", + "curly loop": "โžฐ", + "currency exchange": "๐Ÿ’ฑ", + "curry rice": "๐Ÿ›", "custard": "๐Ÿฎ", "customs": "๐Ÿ›ƒ", - "cut_of_meat": "๐Ÿฅฉ", + "cut of meat": "๐Ÿฅฉ", "cyclone": "๐ŸŒ€", - "dagger": "๐Ÿ—ก", - "dancer": "๐Ÿ’ƒ", - "dancers": "๐Ÿ‘ฏ", + "dagger": "๐Ÿ—ก๏ธ", "dango": "๐Ÿก", - "dark_skin_tone": "๐Ÿฟ", - "dark_sunglasses": "๐Ÿ•ถ", - "dart": "๐ŸŽฏ", - "dash": "๐Ÿ’จ", - "date": "๐Ÿ“…", - "deaf_person": "๐Ÿง", - "deciduous_tree": "๐ŸŒณ", + "dashing away": "๐Ÿ’จ", + "deaf man": "๐Ÿงโ€โ™‚๏ธ", + "deaf man dark skin tone": "๐Ÿง๐Ÿฟโ€โ™‚๏ธ", + "deaf man light skin tone": "๐Ÿง๐Ÿปโ€โ™‚๏ธ", + "deaf man medium dark skin tone": "๐Ÿง๐Ÿพโ€โ™‚๏ธ", + "deaf man medium light skin tone": "๐Ÿง๐Ÿผโ€โ™‚๏ธ", + "deaf man medium skin tone": "๐Ÿง๐Ÿฝโ€โ™‚๏ธ", + "deaf person": "๐Ÿง", + "deaf person dark skin tone": "๐Ÿง๐Ÿฟ", + "deaf person light skin tone": "๐Ÿง๐Ÿป", + "deaf person medium dark skin tone": "๐Ÿง๐Ÿพ", + "deaf person medium light skin tone": "๐Ÿง๐Ÿผ", + "deaf person medium skin tone": "๐Ÿง๐Ÿฝ", + "deaf woman": "๐Ÿงโ€โ™€๏ธ", + "deaf woman dark skin tone": "๐Ÿง๐Ÿฟโ€โ™€๏ธ", + "deaf woman light skin tone": "๐Ÿง๐Ÿปโ€โ™€๏ธ", + "deaf woman medium dark skin tone": "๐Ÿง๐Ÿพโ€โ™€๏ธ", + "deaf woman medium light skin tone": "๐Ÿง๐Ÿผโ€โ™€๏ธ", + "deaf woman medium skin tone": "๐Ÿง๐Ÿฝโ€โ™€๏ธ", + "deciduous tree": "๐ŸŒณ", "deer": "๐ŸฆŒ", - "department_store": "๐Ÿฌ", - "derelict_house": "๐Ÿš", - "desert": "๐Ÿœ", - "desert_island": "๐Ÿ", - "desktop_computer": "๐Ÿ–ฅ", - "detective": "๐Ÿ•ต", - "diamond_shape_with_a_dot_inside": "๐Ÿ’ ", - "diamond_suit": "โ™ฆ๏ธ", - "diamonds": "โ™ฆ", - "disappointed": "๐Ÿ˜ž", - "disappointed_relieved": "๐Ÿ˜ฅ", - "diving_mask": "๐Ÿคฟ", - "diya_lamp": "๐Ÿช”", + "delivery truck": "๐Ÿšš", + "department store": "๐Ÿฌ", + "derelict house": "๐Ÿš๏ธ", + "desert": "๐Ÿœ๏ธ", + "desert island": "๐Ÿ๏ธ", + "desktop computer": "๐Ÿ–ฅ๏ธ", + "detective": "๐Ÿ•ต๏ธ", + "detective dark skin tone": "๐Ÿ•ต๐Ÿฟ", + "detective light skin tone": "๐Ÿ•ต๐Ÿป", + "detective medium dark skin tone": "๐Ÿ•ต๐Ÿพ", + "detective medium light skin tone": "๐Ÿ•ต๐Ÿผ", + "detective medium skin tone": "๐Ÿ•ต๐Ÿฝ", + "diamond suit": "โ™ฆ๏ธ", + "diamond with a dot": "๐Ÿ’ ", + "dim button": "๐Ÿ”…", + "disappointed face": "๐Ÿ˜ž", + "disguised face": "๐Ÿฅธ", + "divide": "โž—", + "diving mask": "๐Ÿคฟ", + "diya lamp": "๐Ÿช”", "dizzy": "๐Ÿ’ซ", - "dizzy_face": "๐Ÿ˜ต", "dna": "๐Ÿงฌ", - "do_not_litter": "๐Ÿšฏ", - "dog": "๐Ÿถ", - "dog2": "๐Ÿ•", - "dollar": "๐Ÿ’ต", - "dolls": "๐ŸŽŽ", + "dodo": "๐Ÿฆค", + "dog": "๐Ÿ•", + "dog face": "๐Ÿถ", + "dollar banknote": "๐Ÿ’ต", "dolphin": "๐Ÿฌ", "door": "๐Ÿšช", - "double_exclamation_mark": "โ€ผ", + "dotted line face": "๐Ÿซฅ", + "dotted six pointed star": "๐Ÿ”ฏ", + "double curly loop": "โžฟ", + "double exclamation mark": "โ€ผ๏ธ", "doughnut": "๐Ÿฉ", - "dove": "๐Ÿ•Š", - "down_arrow": "โฌ‡", - "downleft_arrow": "โ†™", - "downright_arrow": "โ†˜", + "dove": "๐Ÿ•Š๏ธ", + "down arrow": "โฌ‡๏ธ", + "down left arrow": "โ†™๏ธ", + "down right arrow": "โ†˜๏ธ", + "downcast face with sweat": "๐Ÿ˜“", + "downwards button": "๐Ÿ”ฝ", "dragon": "๐Ÿ‰", - "dragon_face": "๐Ÿฒ", + "dragon face": "๐Ÿฒ", "dress": "๐Ÿ‘—", - "dromedary_camel": "๐Ÿช", - "drooling_face": "๐Ÿคค", - "drop_of_blood": "๐Ÿฉธ", + "drooling face": "๐Ÿคค", + "drop of blood": "๐Ÿฉธ", "droplet": "๐Ÿ’ง", "drum": "๐Ÿฅ", "duck": "๐Ÿฆ†", "dumpling": "๐ŸฅŸ", "dvd": "๐Ÿ“€", - "e-mail": "๐Ÿ“ง", + "e mail": "๐Ÿ“ง", "eagle": "๐Ÿฆ…", "ear": "๐Ÿ‘‚", - "ear_of_rice": "๐ŸŒพ", - "ear_with_hearing_aid": "๐Ÿฆป", - "earth_africa": "๐ŸŒ", - "earth_americas": "๐ŸŒŽ", - "earth_asia": "๐ŸŒ", + "ear dark skin tone": "๐Ÿ‘‚๐Ÿฟ", + "ear light skin tone": "๐Ÿ‘‚๐Ÿป", + "ear medium dark skin tone": "๐Ÿ‘‚๐Ÿพ", + "ear medium light skin tone": "๐Ÿ‘‚๐Ÿผ", + "ear medium skin tone": "๐Ÿ‘‚๐Ÿฝ", + "ear of corn": "๐ŸŒฝ", + "ear with hearing aid": "๐Ÿฆป", + "ear with hearing aid dark skin tone": "๐Ÿฆป๐Ÿฟ", + "ear with hearing aid light skin tone": "๐Ÿฆป๐Ÿป", + "ear with hearing aid medium dark skin tone": "๐Ÿฆป๐Ÿพ", + "ear with hearing aid medium light skin tone": "๐Ÿฆป๐Ÿผ", + "ear with hearing aid medium skin tone": "๐Ÿฆป๐Ÿฝ", "egg": "๐Ÿฅš", "eggplant": "๐Ÿ†", - "eight": "8โƒฃ", - "eight_pointed_black_star": "โœด๏ธ", - "eight_spoked_asterisk": "โœณ๏ธ", - "eightpointed_star": "โœด", - "eightspoked_asterisk": "โœณ", - "eject_button": "โ", - "electric_plug": "๐Ÿ”Œ", + "eight oโ€™clock": "๐Ÿ•—", + "eight pointed star": "โœด๏ธ", + "eight spoked asterisk": "โœณ๏ธ", + "eight thirty": "๐Ÿ•ฃ", + "eject button": "โ๏ธ", + "electric plug": "๐Ÿ”Œ", "elephant": "๐Ÿ˜", + "elevator": "๐Ÿ›—", + "eleven oโ€™clock": "๐Ÿ•š", + "eleven thirty": "๐Ÿ•ฆ", "elf": "๐Ÿง", - "end": "๐Ÿ”š", - "envelope": "โœ‰", - "envelope_with_arrow": "๐Ÿ“ฉ", - "euro": "๐Ÿ’ถ", - "european_castle": "๐Ÿฐ", - "european_post_office": "๐Ÿค", - "evergreen_tree": "๐ŸŒฒ", - "exclamation": "โ—", - "exclamation_question_mark": "โ‰", - "exploding_head": "๐Ÿคฏ", - "expressionless": "๐Ÿ˜‘", - "eye": "๐Ÿ‘", - "eyeglasses": "๐Ÿ‘“", + "elf dark skin tone": "๐Ÿง๐Ÿฟ", + "elf light skin tone": "๐Ÿง๐Ÿป", + "elf medium dark skin tone": "๐Ÿง๐Ÿพ", + "elf medium light skin tone": "๐Ÿง๐Ÿผ", + "elf medium skin tone": "๐Ÿง๐Ÿฝ", + "empty nest": "๐Ÿชน", + "envelope": "โœ‰๏ธ", + "envelope with arrow": "๐Ÿ“ฉ", + "euro banknote": "๐Ÿ’ถ", + "evergreen tree": "๐ŸŒฒ", + "ewe": "๐Ÿ‘", + "exclamation question mark": "โ‰๏ธ", + "exploding head": "๐Ÿคฏ", + "expressionless face": "๐Ÿ˜‘", + "eye": "๐Ÿ‘๏ธ", + "eye in speech bubble": "๐Ÿ‘๏ธโ€๐Ÿ—จ๏ธ", "eyes": "๐Ÿ‘€", - "face_vomiting": "๐Ÿคฎ", - "face_with_hand_over_mouth": "๐Ÿคญ", - "face_with_headbandage": "๐Ÿค•", - "face_with_monocle": "๐Ÿง", - "face_with_raised_eyebrow": "๐Ÿคจ", - "face_with_symbols_on_mouth": "๐Ÿคฌ", - "face_with_symbols_over_mouth": "๐Ÿคฌ", - "face_with_thermometer": "๐Ÿค’", + "face blowing a kiss": "๐Ÿ˜˜", + "face exhaling": "๐Ÿ˜ฎโ€๐Ÿ’จ", + "face holding back tears": "๐Ÿฅน", + "face in clouds": "๐Ÿ˜ถโ€๐ŸŒซ๏ธ", + "face savoring food": "๐Ÿ˜‹", + "face screaming in fear": "๐Ÿ˜ฑ", + "face vomiting": "๐Ÿคฎ", + "face with crossed out eyes": "๐Ÿ˜ต", + "face with diagonal mouth": "๐Ÿซค", + "face with hand over mouth": "๐Ÿคญ", + "face with head bandage": "๐Ÿค•", + "face with medical mask": "๐Ÿ˜ท", + "face with monocle": "๐Ÿง", + "face with open eyes and hand over mouth": "๐Ÿซข", + "face with open mouth": "๐Ÿ˜ฎ", + "face with peeking eye": "๐Ÿซฃ", + "face with raised eyebrow": "๐Ÿคจ", + "face with rolling eyes": "๐Ÿ™„", + "face with spiral eyes": "๐Ÿ˜ตโ€๐Ÿ’ซ", + "face with steam from nose": "๐Ÿ˜ค", + "face with symbols on mouth": "๐Ÿคฌ", + "face with tears of joy": "๐Ÿ˜‚", + "face with thermometer": "๐Ÿค’", + "face with tongue": "๐Ÿ˜›", + "face without mouth": "๐Ÿ˜ถ", "factory": "๐Ÿญ", + "factory worker": "๐Ÿง‘โ€๐Ÿญ", + "factory worker dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿญ", + "factory worker light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿญ", + "factory worker medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿญ", + "factory worker medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿญ", + "factory worker medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿญ", "fairy": "๐Ÿงš", + "fairy dark skin tone": "๐Ÿงš๐Ÿฟ", + "fairy light skin tone": "๐Ÿงš๐Ÿป", + "fairy medium dark skin tone": "๐Ÿงš๐Ÿพ", + "fairy medium light skin tone": "๐Ÿงš๐Ÿผ", + "fairy medium skin tone": "๐Ÿงš๐Ÿฝ", "falafel": "๐Ÿง†", - "fallen_leaf": "๐Ÿ‚", + "fallen leaf": "๐Ÿ‚", "family": "๐Ÿ‘ช", - "fast_forward": "โฉ", - "fax": "๐Ÿ“ ", - "fearful": "๐Ÿ˜จ", - "feet": "๐Ÿพ", - "female_sign": "โ™€", - "ferris_wheel": "๐ŸŽก", + "family man boy": "๐Ÿ‘จโ€๐Ÿ‘ฆ", + "family man boy boy": "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "family man girl": "๐Ÿ‘จโ€๐Ÿ‘ง", + "family man girl boy": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "family man girl girl": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "family man man boy": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ", + "family man man boy boy": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "family man man girl": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง", + "family man man girl boy": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "family man man girl girl": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "family man woman boy": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "family man woman boy boy": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "family man woman girl": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", + "family man woman girl boy": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "family man woman girl girl": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "family woman boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "family woman boy boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "family woman girl": "๐Ÿ‘ฉโ€๐Ÿ‘ง", + "family woman girl boy": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "family woman girl girl": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "family woman woman boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "family woman woman boy boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "family woman woman girl": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", + "family woman woman girl boy": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "family woman woman girl girl": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "farmer": "๐Ÿง‘โ€๐ŸŒพ", + "farmer dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐ŸŒพ", + "farmer light skin tone": "๐Ÿง‘๐Ÿปโ€๐ŸŒพ", + "farmer medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐ŸŒพ", + "farmer medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐ŸŒพ", + "farmer medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐ŸŒพ", + "fast down button": "โฌ", + "fast forward button": "โฉ", + "fast reverse button": "โช", + "fast up button": "โซ", + "fax machine": "๐Ÿ“ ", + "fearful face": "๐Ÿ˜จ", + "feather": "๐Ÿชถ", + "female sign": "โ™€๏ธ", + "ferris wheel": "๐ŸŽก", "ferry": "โ›ด๏ธ", - "field_hockey": "๐Ÿ‘", - "file_cabinet": "๐Ÿ—„", - "file_folder": "๐Ÿ“", - "film_frames": "๐ŸŽž", - "film_projector": "๐Ÿ“ฝ", - "fingers_crossed": "๐Ÿคž", + "field hockey": "๐Ÿ‘", + "file cabinet": "๐Ÿ—„๏ธ", + "file folder": "๐Ÿ“", + "film frames": "๐ŸŽž๏ธ", + "film projector": "๐Ÿ“ฝ๏ธ", "fire": "๐Ÿ”ฅ", - "fire_engine": "๐Ÿš’", - "fire_extinguisher": "๐Ÿงฏ", + "fire engine": "๐Ÿš’", + "fire extinguisher": "๐Ÿงฏ", "firecracker": "๐Ÿงจ", + "firefighter": "๐Ÿง‘โ€๐Ÿš’", + "firefighter dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿš’", + "firefighter light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿš’", + "firefighter medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿš’", + "firefighter medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿš’", + "firefighter medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿš’", "fireworks": "๐ŸŽ†", - "first_place": "๐Ÿฅ‡", - "first_quarter_moon": "๐ŸŒ“", - "first_quarter_moon_with_face": "๐ŸŒ›", + "first quarter moon": "๐ŸŒ“", + "first quarter moon face": "๐ŸŒ›", "fish": "๐ŸŸ", - "fish_cake": "๐Ÿฅ", - "fishing_pole_and_fish": "๐ŸŽฃ", - "fist": "โœŠ", - "five": "5โƒฃ", - "flag_black": "๐Ÿด", - "flag_white": "๐Ÿณ", - "flags": "๐ŸŽ", + "fish cake with swirl": "๐Ÿฅ", + "fishing pole": "๐ŸŽฃ", + "five oโ€™clock": "๐Ÿ•”", + "five thirty": "๐Ÿ• ", + "flag Afghanistan": "๐Ÿ‡ฆ๐Ÿ‡ซ", + "flag Albania": "๐Ÿ‡ฆ๐Ÿ‡ฑ", + "flag Algeria": "๐Ÿ‡ฉ๐Ÿ‡ฟ", + "flag American Samoa": "๐Ÿ‡ฆ๐Ÿ‡ธ", + "flag Andorra": "๐Ÿ‡ฆ๐Ÿ‡ฉ", + "flag Angola": "๐Ÿ‡ฆ๐Ÿ‡ด", + "flag Anguilla": "๐Ÿ‡ฆ๐Ÿ‡ฎ", + "flag Antarctica": "๐Ÿ‡ฆ๐Ÿ‡ถ", + "flag Antigua & Barbuda": "๐Ÿ‡ฆ๐Ÿ‡ฌ", + "flag Argentina": "๐Ÿ‡ฆ๐Ÿ‡ท", + "flag Armenia": "๐Ÿ‡ฆ๐Ÿ‡ฒ", + "flag Aruba": "๐Ÿ‡ฆ๐Ÿ‡ผ", + "flag Ascension Island": "๐Ÿ‡ฆ๐Ÿ‡จ", + "flag Australia": "๐Ÿ‡ฆ๐Ÿ‡บ", + "flag Austria": "๐Ÿ‡ฆ๐Ÿ‡น", + "flag Azerbaijan": "๐Ÿ‡ฆ๐Ÿ‡ฟ", + "flag Bahamas": "๐Ÿ‡ง๐Ÿ‡ธ", + "flag Bahrain": "๐Ÿ‡ง๐Ÿ‡ญ", + "flag Bangladesh": "๐Ÿ‡ง๐Ÿ‡ฉ", + "flag Barbados": "๐Ÿ‡ง๐Ÿ‡ง", + "flag Belarus": "๐Ÿ‡ง๐Ÿ‡พ", + "flag Belgium": "๐Ÿ‡ง๐Ÿ‡ช", + "flag Belize": "๐Ÿ‡ง๐Ÿ‡ฟ", + "flag Benin": "๐Ÿ‡ง๐Ÿ‡ฏ", + "flag Bermuda": "๐Ÿ‡ง๐Ÿ‡ฒ", + "flag Bhutan": "๐Ÿ‡ง๐Ÿ‡น", + "flag Bolivia": "๐Ÿ‡ง๐Ÿ‡ด", + "flag Bosnia & Herzegovina": "๐Ÿ‡ง๐Ÿ‡ฆ", + "flag Botswana": "๐Ÿ‡ง๐Ÿ‡ผ", + "flag Bouvet Island": "๐Ÿ‡ง๐Ÿ‡ป", + "flag Brazil": "๐Ÿ‡ง๐Ÿ‡ท", + "flag British Indian Ocean Territory": "๐Ÿ‡ฎ๐Ÿ‡ด", + "flag British Virgin Islands": "๐Ÿ‡ป๐Ÿ‡ฌ", + "flag Brunei": "๐Ÿ‡ง๐Ÿ‡ณ", + "flag Bulgaria": "๐Ÿ‡ง๐Ÿ‡ฌ", + "flag Burkina Faso": "๐Ÿ‡ง๐Ÿ‡ซ", + "flag Burundi": "๐Ÿ‡ง๐Ÿ‡ฎ", + "flag Cambodia": "๐Ÿ‡ฐ๐Ÿ‡ญ", + "flag Cameroon": "๐Ÿ‡จ๐Ÿ‡ฒ", + "flag Canada": "๐Ÿ‡จ๐Ÿ‡ฆ", + "flag Canary Islands": "๐Ÿ‡ฎ๐Ÿ‡จ", + "flag Cape Verde": "๐Ÿ‡จ๐Ÿ‡ป", + "flag Caribbean Netherlands": "๐Ÿ‡ง๐Ÿ‡ถ", + "flag Cayman Islands": "๐Ÿ‡ฐ๐Ÿ‡พ", + "flag Central African Republic": "๐Ÿ‡จ๐Ÿ‡ซ", + "flag Ceuta & Melilla": "๐Ÿ‡ช๐Ÿ‡ฆ", + "flag Chad": "๐Ÿ‡น๐Ÿ‡ฉ", + "flag Chile": "๐Ÿ‡จ๐Ÿ‡ฑ", + "flag China": "๐Ÿ‡จ๐Ÿ‡ณ", + "flag Christmas Island": "๐Ÿ‡จ๐Ÿ‡ฝ", + "flag Clipperton Island": "๐Ÿ‡จ๐Ÿ‡ต", + "flag Cocos (Keeling) Islands": "๐Ÿ‡จ๐Ÿ‡จ", + "flag Colombia": "๐Ÿ‡จ๐Ÿ‡ด", + "flag Comoros": "๐Ÿ‡ฐ๐Ÿ‡ฒ", + "flag Congo Brazzaville": "๐Ÿ‡จ๐Ÿ‡ฌ", + "flag Congo Kinshasa": "๐Ÿ‡จ๐Ÿ‡ฉ", + "flag Cook Islands": "๐Ÿ‡จ๐Ÿ‡ฐ", + "flag Costa Rica": "๐Ÿ‡จ๐Ÿ‡ท", + "flag Croatia": "๐Ÿ‡ญ๐Ÿ‡ท", + "flag Cuba": "๐Ÿ‡จ๐Ÿ‡บ", + "flag Curaรงao": "๐Ÿ‡จ๐Ÿ‡ผ", + "flag Cyprus": "๐Ÿ‡จ๐Ÿ‡พ", + "flag Czechia": "๐Ÿ‡จ๐Ÿ‡ฟ", + "flag Cรดte dโ€™Ivoire": "๐Ÿ‡จ๐Ÿ‡ฎ", + "flag Denmark": "๐Ÿ‡ฉ๐Ÿ‡ฐ", + "flag Diego Garcia": "๐Ÿ‡ฉ๐Ÿ‡ฌ", + "flag Djibouti": "๐Ÿ‡ฉ๐Ÿ‡ฏ", + "flag Dominica": "๐Ÿ‡ฉ๐Ÿ‡ฒ", + "flag Dominican Republic": "๐Ÿ‡ฉ๐Ÿ‡ด", + "flag Ecuador": "๐Ÿ‡ช๐Ÿ‡จ", + "flag Egypt": "๐Ÿ‡ช๐Ÿ‡ฌ", + "flag El Salvador": "๐Ÿ‡ธ๐Ÿ‡ป", + "flag England": "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ", + "flag Equatorial Guinea": "๐Ÿ‡ฌ๐Ÿ‡ถ", + "flag Eritrea": "๐Ÿ‡ช๐Ÿ‡ท", + "flag Estonia": "๐Ÿ‡ช๐Ÿ‡ช", + "flag Eswatini": "๐Ÿ‡ธ๐Ÿ‡ฟ", + "flag Ethiopia": "๐Ÿ‡ช๐Ÿ‡น", + "flag European Union": "๐Ÿ‡ช๐Ÿ‡บ", + "flag Falkland Islands": "๐Ÿ‡ซ๐Ÿ‡ฐ", + "flag Faroe Islands": "๐Ÿ‡ซ๐Ÿ‡ด", + "flag Fiji": "๐Ÿ‡ซ๐Ÿ‡ฏ", + "flag Finland": "๐Ÿ‡ซ๐Ÿ‡ฎ", + "flag France": "๐Ÿ‡ซ๐Ÿ‡ท", + "flag French Guiana": "๐Ÿ‡ฌ๐Ÿ‡ซ", + "flag French Polynesia": "๐Ÿ‡ต๐Ÿ‡ซ", + "flag French Southern Territories": "๐Ÿ‡น๐Ÿ‡ซ", + "flag Gabon": "๐Ÿ‡ฌ๐Ÿ‡ฆ", + "flag Gambia": "๐Ÿ‡ฌ๐Ÿ‡ฒ", + "flag Georgia": "๐Ÿ‡ฌ๐Ÿ‡ช", + "flag Germany": "๐Ÿ‡ฉ๐Ÿ‡ช", + "flag Ghana": "๐Ÿ‡ฌ๐Ÿ‡ญ", + "flag Gibraltar": "๐Ÿ‡ฌ๐Ÿ‡ฎ", + "flag Greece": "๐Ÿ‡ฌ๐Ÿ‡ท", + "flag Greenland": "๐Ÿ‡ฌ๐Ÿ‡ฑ", + "flag Grenada": "๐Ÿ‡ฌ๐Ÿ‡ฉ", + "flag Guadeloupe": "๐Ÿ‡ฌ๐Ÿ‡ต", + "flag Guam": "๐Ÿ‡ฌ๐Ÿ‡บ", + "flag Guatemala": "๐Ÿ‡ฌ๐Ÿ‡น", + "flag Guernsey": "๐Ÿ‡ฌ๐Ÿ‡ฌ", + "flag Guinea": "๐Ÿ‡ฌ๐Ÿ‡ณ", + "flag Guinea Bissau": "๐Ÿ‡ฌ๐Ÿ‡ผ", + "flag Guyana": "๐Ÿ‡ฌ๐Ÿ‡พ", + "flag Haiti": "๐Ÿ‡ญ๐Ÿ‡น", + "flag Heard & McDonald Islands": "๐Ÿ‡ญ๐Ÿ‡ฒ", + "flag Honduras": "๐Ÿ‡ญ๐Ÿ‡ณ", + "flag Hong Kong SAR China": "๐Ÿ‡ญ๐Ÿ‡ฐ", + "flag Hungary": "๐Ÿ‡ญ๐Ÿ‡บ", + "flag Iceland": "๐Ÿ‡ฎ๐Ÿ‡ธ", + "flag India": "๐Ÿ‡ฎ๐Ÿ‡ณ", + "flag Indonesia": "๐Ÿ‡ฎ๐Ÿ‡ฉ", + "flag Iran": "๐Ÿ‡ฎ๐Ÿ‡ท", + "flag Iraq": "๐Ÿ‡ฎ๐Ÿ‡ถ", + "flag Ireland": "๐Ÿ‡ฎ๐Ÿ‡ช", + "flag Isle of Man": "๐Ÿ‡ฎ๐Ÿ‡ฒ", + "flag Israel": "๐Ÿ‡ฎ๐Ÿ‡ฑ", + "flag Italy": "๐Ÿ‡ฎ๐Ÿ‡น", + "flag Jamaica": "๐Ÿ‡ฏ๐Ÿ‡ฒ", + "flag Japan": "๐Ÿ‡ฏ๐Ÿ‡ต", + "flag Jersey": "๐Ÿ‡ฏ๐Ÿ‡ช", + "flag Jordan": "๐Ÿ‡ฏ๐Ÿ‡ด", + "flag Kazakhstan": "๐Ÿ‡ฐ๐Ÿ‡ฟ", + "flag Kenya": "๐Ÿ‡ฐ๐Ÿ‡ช", + "flag Kiribati": "๐Ÿ‡ฐ๐Ÿ‡ฎ", + "flag Kosovo": "๐Ÿ‡ฝ๐Ÿ‡ฐ", + "flag Kuwait": "๐Ÿ‡ฐ๐Ÿ‡ผ", + "flag Kyrgyzstan": "๐Ÿ‡ฐ๐Ÿ‡ฌ", + "flag Laos": "๐Ÿ‡ฑ๐Ÿ‡ฆ", + "flag Latvia": "๐Ÿ‡ฑ๐Ÿ‡ป", + "flag Lebanon": "๐Ÿ‡ฑ๐Ÿ‡ง", + "flag Lesotho": "๐Ÿ‡ฑ๐Ÿ‡ธ", + "flag Liberia": "๐Ÿ‡ฑ๐Ÿ‡ท", + "flag Libya": "๐Ÿ‡ฑ๐Ÿ‡พ", + "flag Liechtenstein": "๐Ÿ‡ฑ๐Ÿ‡ฎ", + "flag Lithuania": "๐Ÿ‡ฑ๐Ÿ‡น", + "flag Luxembourg": "๐Ÿ‡ฑ๐Ÿ‡บ", + "flag Macao SAR China": "๐Ÿ‡ฒ๐Ÿ‡ด", + "flag Madagascar": "๐Ÿ‡ฒ๐Ÿ‡ฌ", + "flag Malawi": "๐Ÿ‡ฒ๐Ÿ‡ผ", + "flag Malaysia": "๐Ÿ‡ฒ๐Ÿ‡พ", + "flag Maldives": "๐Ÿ‡ฒ๐Ÿ‡ป", + "flag Mali": "๐Ÿ‡ฒ๐Ÿ‡ฑ", + "flag Malta": "๐Ÿ‡ฒ๐Ÿ‡น", + "flag Marshall Islands": "๐Ÿ‡ฒ๐Ÿ‡ญ", + "flag Martinique": "๐Ÿ‡ฒ๐Ÿ‡ถ", + "flag Mauritania": "๐Ÿ‡ฒ๐Ÿ‡ท", + "flag Mauritius": "๐Ÿ‡ฒ๐Ÿ‡บ", + "flag Mayotte": "๐Ÿ‡พ๐Ÿ‡น", + "flag Mexico": "๐Ÿ‡ฒ๐Ÿ‡ฝ", + "flag Micronesia": "๐Ÿ‡ซ๐Ÿ‡ฒ", + "flag Moldova": "๐Ÿ‡ฒ๐Ÿ‡ฉ", + "flag Monaco": "๐Ÿ‡ฒ๐Ÿ‡จ", + "flag Mongolia": "๐Ÿ‡ฒ๐Ÿ‡ณ", + "flag Montenegro": "๐Ÿ‡ฒ๐Ÿ‡ช", + "flag Montserrat": "๐Ÿ‡ฒ๐Ÿ‡ธ", + "flag Morocco": "๐Ÿ‡ฒ๐Ÿ‡ฆ", + "flag Mozambique": "๐Ÿ‡ฒ๐Ÿ‡ฟ", + "flag Myanmar (Burma)": "๐Ÿ‡ฒ๐Ÿ‡ฒ", + "flag Namibia": "๐Ÿ‡ณ๐Ÿ‡ฆ", + "flag Nauru": "๐Ÿ‡ณ๐Ÿ‡ท", + "flag Nepal": "๐Ÿ‡ณ๐Ÿ‡ต", + "flag Netherlands": "๐Ÿ‡ณ๐Ÿ‡ฑ", + "flag New Caledonia": "๐Ÿ‡ณ๐Ÿ‡จ", + "flag New Zealand": "๐Ÿ‡ณ๐Ÿ‡ฟ", + "flag Nicaragua": "๐Ÿ‡ณ๐Ÿ‡ฎ", + "flag Niger": "๐Ÿ‡ณ๐Ÿ‡ช", + "flag Nigeria": "๐Ÿ‡ณ๐Ÿ‡ฌ", + "flag Niue": "๐Ÿ‡ณ๐Ÿ‡บ", + "flag Norfolk Island": "๐Ÿ‡ณ๐Ÿ‡ซ", + "flag North Korea": "๐Ÿ‡ฐ๐Ÿ‡ต", + "flag North Macedonia": "๐Ÿ‡ฒ๐Ÿ‡ฐ", + "flag Northern Mariana Islands": "๐Ÿ‡ฒ๐Ÿ‡ต", + "flag Norway": "๐Ÿ‡ณ๐Ÿ‡ด", + "flag Oman": "๐Ÿ‡ด๐Ÿ‡ฒ", + "flag Pakistan": "๐Ÿ‡ต๐Ÿ‡ฐ", + "flag Palau": "๐Ÿ‡ต๐Ÿ‡ผ", + "flag Palestinian Territories": "๐Ÿ‡ต๐Ÿ‡ธ", + "flag Panama": "๐Ÿ‡ต๐Ÿ‡ฆ", + "flag Papua New Guinea": "๐Ÿ‡ต๐Ÿ‡ฌ", + "flag Paraguay": "๐Ÿ‡ต๐Ÿ‡พ", + "flag Peru": "๐Ÿ‡ต๐Ÿ‡ช", + "flag Philippines": "๐Ÿ‡ต๐Ÿ‡ญ", + "flag Pitcairn Islands": "๐Ÿ‡ต๐Ÿ‡ณ", + "flag Poland": "๐Ÿ‡ต๐Ÿ‡ฑ", + "flag Portugal": "๐Ÿ‡ต๐Ÿ‡น", + "flag Puerto Rico": "๐Ÿ‡ต๐Ÿ‡ท", + "flag Qatar": "๐Ÿ‡ถ๐Ÿ‡ฆ", + "flag Romania": "๐Ÿ‡ท๐Ÿ‡ด", + "flag Russia": "๐Ÿ‡ท๐Ÿ‡บ", + "flag Rwanda": "๐Ÿ‡ท๐Ÿ‡ผ", + "flag Rรฉunion": "๐Ÿ‡ท๐Ÿ‡ช", + "flag Samoa": "๐Ÿ‡ผ๐Ÿ‡ธ", + "flag San Marino": "๐Ÿ‡ธ๐Ÿ‡ฒ", + "flag Saudi Arabia": "๐Ÿ‡ธ๐Ÿ‡ฆ", + "flag Scotland": "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", + "flag Senegal": "๐Ÿ‡ธ๐Ÿ‡ณ", + "flag Serbia": "๐Ÿ‡ท๐Ÿ‡ธ", + "flag Seychelles": "๐Ÿ‡ธ๐Ÿ‡จ", + "flag Sierra Leone": "๐Ÿ‡ธ๐Ÿ‡ฑ", + "flag Singapore": "๐Ÿ‡ธ๐Ÿ‡ฌ", + "flag Sint Maarten": "๐Ÿ‡ธ๐Ÿ‡ฝ", + "flag Slovakia": "๐Ÿ‡ธ๐Ÿ‡ฐ", + "flag Slovenia": "๐Ÿ‡ธ๐Ÿ‡ฎ", + "flag Solomon Islands": "๐Ÿ‡ธ๐Ÿ‡ง", + "flag Somalia": "๐Ÿ‡ธ๐Ÿ‡ด", + "flag South Africa": "๐Ÿ‡ฟ๐Ÿ‡ฆ", + "flag South Georgia & South Sandwich Islands": "๐Ÿ‡ฌ๐Ÿ‡ธ", + "flag South Korea": "๐Ÿ‡ฐ๐Ÿ‡ท", + "flag South Sudan": "๐Ÿ‡ธ๐Ÿ‡ธ", + "flag Spain": "๐Ÿ‡ช๐Ÿ‡ธ", + "flag Sri Lanka": "๐Ÿ‡ฑ๐Ÿ‡ฐ", + "flag St. Barthรฉlemy": "๐Ÿ‡ง๐Ÿ‡ฑ", + "flag St. Helena": "๐Ÿ‡ธ๐Ÿ‡ญ", + "flag St. Kitts & Nevis": "๐Ÿ‡ฐ๐Ÿ‡ณ", + "flag St. Lucia": "๐Ÿ‡ฑ๐Ÿ‡จ", + "flag St. Martin": "๐Ÿ‡ฒ๐Ÿ‡ซ", + "flag St. Pierre & Miquelon": "๐Ÿ‡ต๐Ÿ‡ฒ", + "flag St. Vincent & Grenadines": "๐Ÿ‡ป๐Ÿ‡จ", + "flag Sudan": "๐Ÿ‡ธ๐Ÿ‡ฉ", + "flag Suriname": "๐Ÿ‡ธ๐Ÿ‡ท", + "flag Svalbard & Jan Mayen": "๐Ÿ‡ธ๐Ÿ‡ฏ", + "flag Sweden": "๐Ÿ‡ธ๐Ÿ‡ช", + "flag Switzerland": "๐Ÿ‡จ๐Ÿ‡ญ", + "flag Syria": "๐Ÿ‡ธ๐Ÿ‡พ", + "flag Sรฃo Tomรฉ & Prรญncipe": "๐Ÿ‡ธ๐Ÿ‡น", + "flag Taiwan": "๐Ÿ‡น๐Ÿ‡ผ", + "flag Tajikistan": "๐Ÿ‡น๐Ÿ‡ฏ", + "flag Tanzania": "๐Ÿ‡น๐Ÿ‡ฟ", + "flag Thailand": "๐Ÿ‡น๐Ÿ‡ญ", + "flag Timor Leste": "๐Ÿ‡น๐Ÿ‡ฑ", + "flag Togo": "๐Ÿ‡น๐Ÿ‡ฌ", + "flag Tokelau": "๐Ÿ‡น๐Ÿ‡ฐ", + "flag Tonga": "๐Ÿ‡น๐Ÿ‡ด", + "flag Trinidad & Tobago": "๐Ÿ‡น๐Ÿ‡น", + "flag Tristan da Cunha": "๐Ÿ‡น๐Ÿ‡ฆ", + "flag Tunisia": "๐Ÿ‡น๐Ÿ‡ณ", + "flag Turkey": "๐Ÿ‡น๐Ÿ‡ท", + "flag Turkmenistan": "๐Ÿ‡น๐Ÿ‡ฒ", + "flag Turks & Caicos Islands": "๐Ÿ‡น๐Ÿ‡จ", + "flag Tuvalu": "๐Ÿ‡น๐Ÿ‡ป", + "flag U.S. Outlying Islands": "๐Ÿ‡บ๐Ÿ‡ฒ", + "flag U.S. Virgin Islands": "๐Ÿ‡ป๐Ÿ‡ฎ", + "flag Uganda": "๐Ÿ‡บ๐Ÿ‡ฌ", + "flag Ukraine": "๐Ÿ‡บ๐Ÿ‡ฆ", + "flag United Arab Emirates": "๐Ÿ‡ฆ๐Ÿ‡ช", + "flag United Kingdom": "๐Ÿ‡ฌ๐Ÿ‡ง", + "flag United Nations": "๐Ÿ‡บ๐Ÿ‡ณ", + "flag United States": "๐Ÿ‡บ๐Ÿ‡ธ", + "flag Uruguay": "๐Ÿ‡บ๐Ÿ‡พ", + "flag Uzbekistan": "๐Ÿ‡บ๐Ÿ‡ฟ", + "flag Vanuatu": "๐Ÿ‡ป๐Ÿ‡บ", + "flag Vatican City": "๐Ÿ‡ป๐Ÿ‡ฆ", + "flag Venezuela": "๐Ÿ‡ป๐Ÿ‡ช", + "flag Vietnam": "๐Ÿ‡ป๐Ÿ‡ณ", + "flag Wales": "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ", + "flag Wallis & Futuna": "๐Ÿ‡ผ๐Ÿ‡ซ", + "flag Western Sahara": "๐Ÿ‡ช๐Ÿ‡ญ", + "flag Yemen": "๐Ÿ‡พ๐Ÿ‡ช", + "flag Zambia": "๐Ÿ‡ฟ๐Ÿ‡ฒ", + "flag Zimbabwe": "๐Ÿ‡ฟ๐Ÿ‡ผ", + "flag in hole": "โ›ณ", + "flag ร…land Islands": "๐Ÿ‡ฆ๐Ÿ‡ฝ", "flamingo": "๐Ÿฆฉ", "flashlight": "๐Ÿ”ฆ", - "flat_shoe": "๐Ÿฅฟ", - "fleur-de-lis": "โšœ", - "fleurde-lis": "โšœ๏ธ", - "floppy_disk": "๐Ÿ’พ", - "flower_playing_cards": "๐ŸŽด", - "flushed": "๐Ÿ˜ณ", - "flying_disc": "๐Ÿฅ", - "flying_saucer": "๐Ÿ›ธ", - "fog": "๐ŸŒซ", + "flat shoe": "๐Ÿฅฟ", + "flatbread": "๐Ÿซ“", + "fleur de lis": "โšœ๏ธ", + "flexed biceps": "๐Ÿ’ช", + "flexed biceps dark skin tone": "๐Ÿ’ช๐Ÿฟ", + "flexed biceps light skin tone": "๐Ÿ’ช๐Ÿป", + "flexed biceps medium dark skin tone": "๐Ÿ’ช๐Ÿพ", + "flexed biceps medium light skin tone": "๐Ÿ’ช๐Ÿผ", + "flexed biceps medium skin tone": "๐Ÿ’ช๐Ÿฝ", + "floppy disk": "๐Ÿ’พ", + "flower playing cards": "๐ŸŽด", + "flushed face": "๐Ÿ˜ณ", + "fly": "๐Ÿชฐ", + "flying disc": "๐Ÿฅ", + "flying saucer": "๐Ÿ›ธ", + "fog": "๐ŸŒซ๏ธ", "foggy": "๐ŸŒ", + "folded hands": "๐Ÿ™", + "folded hands dark skin tone": "๐Ÿ™๐Ÿฟ", + "folded hands light skin tone": "๐Ÿ™๐Ÿป", + "folded hands medium dark skin tone": "๐Ÿ™๐Ÿพ", + "folded hands medium light skin tone": "๐Ÿ™๐Ÿผ", + "folded hands medium skin tone": "๐Ÿ™๐Ÿฝ", + "fondue": "๐Ÿซ•", "foot": "๐Ÿฆถ", - "football": "๐Ÿˆ", + "foot dark skin tone": "๐Ÿฆถ๐Ÿฟ", + "foot light skin tone": "๐Ÿฆถ๐Ÿป", + "foot medium dark skin tone": "๐Ÿฆถ๐Ÿพ", + "foot medium light skin tone": "๐Ÿฆถ๐Ÿผ", + "foot medium skin tone": "๐Ÿฆถ๐Ÿฝ", "footprints": "๐Ÿ‘ฃ", - "fork_and_knife": "๐Ÿด", - "fork_and_knife_with_plate": "๐Ÿฝ", - "fortune_cookie": "๐Ÿฅ ", + "fork and knife": "๐Ÿด", + "fork and knife with plate": "๐Ÿฝ๏ธ", + "fortune cookie": "๐Ÿฅ ", "fountain": "โ›ฒ", - "fountain_pen": "๐Ÿ–‹", - "four": "4โƒฃ", - "four_leaf_clover": "๐Ÿ€", + "fountain pen": "๐Ÿ–‹๏ธ", + "four leaf clover": "๐Ÿ€", + "four oโ€™clock": "๐Ÿ•“", + "four thirty": "๐Ÿ•Ÿ", "fox": "๐ŸฆŠ", - "framed_picture": "๐Ÿ–ผ", - "free": "๐Ÿ†“", - "french_bread": "๐Ÿฅ–", - "fried_shrimp": "๐Ÿค", - "fries": "๐ŸŸ", + "framed picture": "๐Ÿ–ผ๏ธ", + "french fries": "๐ŸŸ", + "fried shrimp": "๐Ÿค", "frog": "๐Ÿธ", - "frowning": "๐Ÿ˜ฆ", - "frowning_face": "โ˜น๏ธ", - "fuelpump": "โ›ฝ", - "full_moon": "๐ŸŒ•", - "full_moon_with_face": "๐ŸŒ", - "funeral_urn": "โšฑ๏ธ", - "game_die": "๐ŸŽฒ", + "front facing baby chick": "๐Ÿฅ", + "frowning face": "โ˜น๏ธ", + "frowning face with open mouth": "๐Ÿ˜ฆ", + "fuel pump": "โ›ฝ", + "full moon": "๐ŸŒ•", + "full moon face": "๐ŸŒ", + "funeral urn": "โšฑ๏ธ", + "game die": "๐ŸŽฒ", "garlic": "๐Ÿง„", "gear": "โš™๏ธ", - "gem": "๐Ÿ’Ž", - "gemini": "โ™Š", + "gem stone": "๐Ÿ’Ž", "genie": "๐Ÿงž", "ghost": "๐Ÿ‘ป", - "gift": "๐ŸŽ", - "gift_heart": "๐Ÿ’", "giraffe": "๐Ÿฆ’", "girl": "๐Ÿ‘ง", - "glass_of_milk": "๐Ÿฅ›", - "globe_with_meridians": "๐ŸŒ", + "girl dark skin tone": "๐Ÿ‘ง๐Ÿฟ", + "girl light skin tone": "๐Ÿ‘ง๐Ÿป", + "girl medium dark skin tone": "๐Ÿ‘ง๐Ÿพ", + "girl medium light skin tone": "๐Ÿ‘ง๐Ÿผ", + "girl medium skin tone": "๐Ÿ‘ง๐Ÿฝ", + "glass of milk": "๐Ÿฅ›", + "glasses": "๐Ÿ‘“", + "globe showing Americas": "๐ŸŒŽ", + "globe showing Asia Australia": "๐ŸŒ", + "globe showing Europe Africa": "๐ŸŒ", + "globe with meridians": "๐ŸŒ", "gloves": "๐Ÿงค", - "goal": "๐Ÿฅ…", - "goal_net": "๐Ÿฅ…", + "glowing star": "๐ŸŒŸ", + "goal net": "๐Ÿฅ…", "goat": "๐Ÿ", + "goblin": "๐Ÿ‘บ", "goggles": "๐Ÿฅฝ", - "golf": "โ›ณ", - "golfer": "๐ŸŒ", "gorilla": "๐Ÿฆ", + "graduation cap": "๐ŸŽ“", "grapes": "๐Ÿ‡", - "green_apple": "๐Ÿ", - "green_book": "๐Ÿ“—", - "green_circle": "๐ŸŸข", - "green_heart": "๐Ÿ’š", - "green_salad": "๐Ÿฅ—", - "green_square": "๐ŸŸฉ", - "grey_exclamation": "โ•", - "grey_question": "โ”", - "grimacing": "๐Ÿ˜ฌ", - "grin": "๐Ÿ˜", - "grinning": "๐Ÿ˜€", + "green apple": "๐Ÿ", + "green book": "๐Ÿ“—", + "green circle": "๐ŸŸข", + "green heart": "๐Ÿ’š", + "green salad": "๐Ÿฅ—", + "green square": "๐ŸŸฉ", + "grimacing face": "๐Ÿ˜ฌ", + "grinning cat": "๐Ÿ˜บ", + "grinning cat with smiling eyes": "๐Ÿ˜ธ", + "grinning face": "๐Ÿ˜€", + "grinning face with big eyes": "๐Ÿ˜ƒ", + "grinning face with smiling eyes": "๐Ÿ˜„", + "grinning face with sweat": "๐Ÿ˜…", + "grinning squinting face": "๐Ÿ˜†", + "growing heart": "๐Ÿ’—", "guard": "๐Ÿ’‚", - "guardsman": "๐Ÿ’‚", - "guide_dog": "๐Ÿฆฎ", + "guard dark skin tone": "๐Ÿ’‚๐Ÿฟ", + "guard light skin tone": "๐Ÿ’‚๐Ÿป", + "guard medium dark skin tone": "๐Ÿ’‚๐Ÿพ", + "guard medium light skin tone": "๐Ÿ’‚๐Ÿผ", + "guard medium skin tone": "๐Ÿ’‚๐Ÿฝ", + "guide dog": "๐Ÿฆฎ", "guitar": "๐ŸŽธ", - "gun": "๐Ÿ”ซ", - "haircut": "๐Ÿ’‡", "hamburger": "๐Ÿ”", "hammer": "๐Ÿ”จ", - "hammer_and_pick": "โš’๏ธ", - "hammer_and_wrench": "๐Ÿ› ", + "hammer and pick": "โš’๏ธ", + "hammer and wrench": "๐Ÿ› ๏ธ", + "hamsa": "๐Ÿชฌ", "hamster": "๐Ÿน", - "hand_with_fingers_splayed": "๐Ÿ–", + "hand with fingers splayed": "๐Ÿ–๏ธ", + "hand with fingers splayed dark skin tone": "๐Ÿ–๐Ÿฟ", + "hand with fingers splayed light skin tone": "๐Ÿ–๐Ÿป", + "hand with fingers splayed medium dark skin tone": "๐Ÿ–๐Ÿพ", + "hand with fingers splayed medium light skin tone": "๐Ÿ–๐Ÿผ", + "hand with fingers splayed medium skin tone": "๐Ÿ–๐Ÿฝ", + "hand with index finger and thumb crossed": "๐Ÿซฐ", + "hand with index finger and thumb crossed dark skin tone": "๐Ÿซฐ๐Ÿฟ", + "hand with index finger and thumb crossed light skin tone": "๐Ÿซฐ๐Ÿป", + "hand with index finger and thumb crossed medium dark skin tone": "๐Ÿซฐ๐Ÿพ", + "hand with index finger and thumb crossed medium light skin tone": "๐Ÿซฐ๐Ÿผ", + "hand with index finger and thumb crossed medium skin tone": "๐Ÿซฐ๐Ÿฝ", "handbag": "๐Ÿ‘œ", "handshake": "๐Ÿค", - "hash": "#โƒฃ", - "hatched_chick": "๐Ÿฅ", - "hatching_chick": "๐Ÿฃ", - "head_bandage": "๐Ÿค•", - "headphones": "๐ŸŽง", - "hear_no_evil": "๐Ÿ™‰", - "heart": "โค๏ธ", - "heart_decoration": "๐Ÿ’Ÿ", - "heart_exclamation": "โฃ", - "heart_eyes": "๐Ÿ˜", - "heart_eyes_cat": "๐Ÿ˜ป", - "heart_suit": "โ™ฅ๏ธ", - "heartbeat": "๐Ÿ’“", - "heartpulse": "๐Ÿ’—", - "hearts": "โ™ฅ", - "heavy_check_mark": "โœ”๏ธ", - "heavy_division_sign": "โž—", - "heavy_dollar_sign": "๐Ÿ’ฒ", - "heavy_minus_sign": "โž–", - "heavy_multiplication_x": "โœ–๏ธ", - "heavy_plus_sign": "โž•", + "handshake dark skin tone": "๐Ÿค๐Ÿฟ", + "handshake dark skin tone light skin tone": "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿป", + "handshake dark skin tone medium dark skin tone": "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿพ", + "handshake dark skin tone medium light skin tone": "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿผ", + "handshake dark skin tone medium skin tone": "๐Ÿซฑ๐Ÿฟโ€๐Ÿซฒ๐Ÿฝ", + "handshake light skin tone": "๐Ÿค๐Ÿป", + "handshake light skin tone dark skin tone": "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฟ", + "handshake light skin tone medium dark skin tone": "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿพ", + "handshake light skin tone medium light skin tone": "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿผ", + "handshake light skin tone medium skin tone": "๐Ÿซฑ๐Ÿปโ€๐Ÿซฒ๐Ÿฝ", + "handshake medium dark skin tone": "๐Ÿค๐Ÿพ", + "handshake medium dark skin tone dark skin tone": "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฟ", + "handshake medium dark skin tone light skin tone": "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿป", + "handshake medium dark skin tone medium light skin tone": "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿผ", + "handshake medium dark skin tone medium skin tone": "๐Ÿซฑ๐Ÿพโ€๐Ÿซฒ๐Ÿฝ", + "handshake medium light skin tone": "๐Ÿค๐Ÿผ", + "handshake medium light skin tone dark skin tone": "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฟ", + "handshake medium light skin tone light skin tone": "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿป", + "handshake medium light skin tone medium dark skin tone": "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿพ", + "handshake medium light skin tone medium skin tone": "๐Ÿซฑ๐Ÿผโ€๐Ÿซฒ๐Ÿฝ", + "handshake medium skin tone": "๐Ÿค๐Ÿฝ", + "handshake medium skin tone dark skin tone": "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿฟ", + "handshake medium skin tone light skin tone": "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿป", + "handshake medium skin tone medium dark skin tone": "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿพ", + "handshake medium skin tone medium light skin tone": "๐Ÿซฑ๐Ÿฝโ€๐Ÿซฒ๐Ÿผ", + "hatching chick": "๐Ÿฃ", + "headphone": "๐ŸŽง", + "headstone": "๐Ÿชฆ", + "health worker": "๐Ÿง‘โ€โš•๏ธ", + "health worker dark skin tone": "๐Ÿง‘๐Ÿฟโ€โš•๏ธ", + "health worker light skin tone": "๐Ÿง‘๐Ÿปโ€โš•๏ธ", + "health worker medium dark skin tone": "๐Ÿง‘๐Ÿพโ€โš•๏ธ", + "health worker medium light skin tone": "๐Ÿง‘๐Ÿผโ€โš•๏ธ", + "health worker medium skin tone": "๐Ÿง‘๐Ÿฝโ€โš•๏ธ", + "hear no evil monkey": "๐Ÿ™‰", + "heart decoration": "๐Ÿ’Ÿ", + "heart exclamation": "โฃ๏ธ", + "heart hands": "๐Ÿซถ", + "heart hands dark skin tone": "๐Ÿซถ๐Ÿฟ", + "heart hands light skin tone": "๐Ÿซถ๐Ÿป", + "heart hands medium dark skin tone": "๐Ÿซถ๐Ÿพ", + "heart hands medium light skin tone": "๐Ÿซถ๐Ÿผ", + "heart hands medium skin tone": "๐Ÿซถ๐Ÿฝ", + "heart on fire": "โค๏ธโ€๐Ÿ”ฅ", + "heart suit": "โ™ฅ๏ธ", + "heart with arrow": "๐Ÿ’˜", + "heart with ribbon": "๐Ÿ’", + "heavy dollar sign": "๐Ÿ’ฒ", + "heavy equals sign": "๐ŸŸฐ", "hedgehog": "๐Ÿฆ”", "helicopter": "๐Ÿš", "herb": "๐ŸŒฟ", "hibiscus": "๐ŸŒบ", - "high_brightness": "๐Ÿ”†", - "high_heel": "๐Ÿ‘ ", - "hiking_boot": "๐Ÿฅพ", - "hindu_temple": "๐Ÿ›•", + "high heeled shoe": "๐Ÿ‘ ", + "high speed train": "๐Ÿš„", + "high voltage": "โšก", + "hiking boot": "๐Ÿฅพ", + "hindu temple": "๐Ÿ›•", "hippopotamus": "๐Ÿฆ›", - "hockey": "๐Ÿ’", - "hole": "๐Ÿ•ณ", - "honey_pot": "๐Ÿฏ", - "horse": "๐Ÿด", - "horse_racing": "๐Ÿ‡", + "hole": "๐Ÿ•ณ๏ธ", + "hollow red circle": "โญ•", + "honey pot": "๐Ÿฏ", + "honeybee": "๐Ÿ", + "hook": "๐Ÿช", + "horizontal traffic light": "๐Ÿšฅ", + "horse": "๐ŸŽ", + "horse face": "๐Ÿด", + "horse racing": "๐Ÿ‡", + "horse racing dark skin tone": "๐Ÿ‡๐Ÿฟ", + "horse racing light skin tone": "๐Ÿ‡๐Ÿป", + "horse racing medium dark skin tone": "๐Ÿ‡๐Ÿพ", + "horse racing medium light skin tone": "๐Ÿ‡๐Ÿผ", + "horse racing medium skin tone": "๐Ÿ‡๐Ÿฝ", "hospital": "๐Ÿฅ", - "hot_face": "๐Ÿฅต", - "hot_pepper": "๐ŸŒถ", - "hot_springs": "โ™จ", - "hotdog": "๐ŸŒญ", + "hot beverage": "โ˜•", + "hot dog": "๐ŸŒญ", + "hot face": "๐Ÿฅต", + "hot pepper": "๐ŸŒถ๏ธ", + "hot springs": "โ™จ๏ธ", "hotel": "๐Ÿจ", - "hotsprings": "โ™จ๏ธ", - "hourglass": "โŒ›", - "hourglass_flowing_sand": "โณ", + "hourglass done": "โŒ›", + "hourglass not done": "โณ", "house": "๐Ÿ ", - "house_with_garden": "๐Ÿก", - "houses": "๐Ÿ˜", - "hugging": "๐Ÿค—", - "hundred_points": "๐Ÿ’ฏ", - "hushed": "๐Ÿ˜ฏ", + "house with garden": "๐Ÿก", + "houses": "๐Ÿ˜๏ธ", + "hundred points": "๐Ÿ’ฏ", + "hushed face": "๐Ÿ˜ฏ", + "hut": "๐Ÿ›–", "ice": "๐ŸงŠ", - "ice_cream": "๐Ÿจ", - "ice_hockey": "๐Ÿ’", - "ice_skate": "โ›ธ๏ธ", - "icecream": "๐Ÿฆ", - "id": "๐Ÿ†”", - "ideograph_advantage": "๐Ÿ‰", - "imp": "๐Ÿ‘ฟ", - "inbox_tray": "๐Ÿ“ฅ", - "incoming_envelope": "๐Ÿ“จ", - "index_pointing_up": "โ˜", - "infinity": "โ™พ", + "ice cream": "๐Ÿจ", + "ice hockey": "๐Ÿ’", + "ice skate": "โ›ธ๏ธ", + "identification card": "๐Ÿชช", + "inbox tray": "๐Ÿ“ฅ", + "incoming envelope": "๐Ÿ“จ", + "index pointing at the viewer": "๐Ÿซต", + "index pointing at the viewer dark skin tone": "๐Ÿซต๐Ÿฟ", + "index pointing at the viewer light skin tone": "๐Ÿซต๐Ÿป", + "index pointing at the viewer medium dark skin tone": "๐Ÿซต๐Ÿพ", + "index pointing at the viewer medium light skin tone": "๐Ÿซต๐Ÿผ", + "index pointing at the viewer medium skin tone": "๐Ÿซต๐Ÿฝ", + "index pointing up": "โ˜๏ธ", + "index pointing up dark skin tone": "โ˜๐Ÿฟ", + "index pointing up light skin tone": "โ˜๐Ÿป", + "index pointing up medium dark skin tone": "โ˜๐Ÿพ", + "index pointing up medium light skin tone": "โ˜๐Ÿผ", + "index pointing up medium skin tone": "โ˜๐Ÿฝ", + "infinity": "โ™พ๏ธ", "information": "โ„น๏ธ", - "information_desk_person": "๐Ÿ’", - "information_source": "โ„น", - "innocent": "๐Ÿ˜‡", - "input_numbers": "๐Ÿ”ข", - "interrobang": "โ‰๏ธ", - "iphone": "๐Ÿ“ฑ", - "izakaya_lantern": "๐Ÿฎ", - "jack_o_lantern": "๐ŸŽƒ", - "japan": "๐Ÿ—พ", - "japanese_castle": "๐Ÿฏ", - "japanese_congratulations_button": "ใŠ—๏ธ", - "japanese_free_of_charge_button": "๐Ÿˆš", - "japanese_goblin": "๐Ÿ‘บ", - "japanese_ogre": "๐Ÿ‘น", - "japanese_reserved_button": "๐Ÿˆฏ", - "japanese_secret_button": "ใŠ™๏ธ", - "japanese_service_charge_button": "๐Ÿˆ‚", + "input latin letters": "๐Ÿ”ค", + "input latin lowercase": "๐Ÿ”ก", + "input latin uppercase": "๐Ÿ” ", + "input numbers": "๐Ÿ”ข", + "input symbols": "๐Ÿ”ฃ", + "jack o lantern": "๐ŸŽƒ", + "jar": "๐Ÿซ™", "jeans": "๐Ÿ‘–", - "joy": "๐Ÿ˜‚", - "joy_cat": "๐Ÿ˜น", - "joystick": "๐Ÿ•น", + "joker": "๐Ÿƒ", + "joystick": "๐Ÿ•น๏ธ", + "judge": "๐Ÿง‘โ€โš–๏ธ", + "judge dark skin tone": "๐Ÿง‘๐Ÿฟโ€โš–๏ธ", + "judge light skin tone": "๐Ÿง‘๐Ÿปโ€โš–๏ธ", + "judge medium dark skin tone": "๐Ÿง‘๐Ÿพโ€โš–๏ธ", + "judge medium light skin tone": "๐Ÿง‘๐Ÿผโ€โš–๏ธ", + "judge medium skin tone": "๐Ÿง‘๐Ÿฝโ€โš–๏ธ", "kaaba": "๐Ÿ•‹", "kangaroo": "๐Ÿฆ˜", "key": "๐Ÿ”‘", "keyboard": "โŒจ๏ธ", - "keycap_ten": "๐Ÿ”Ÿ", - "kick_scooter": "๐Ÿ›ด", + "keycap #": "#๏ธโƒฃ", + "keycap *": "*๏ธโƒฃ", + "keycap 0": "0๏ธโƒฃ", + "keycap 1": "1๏ธโƒฃ", + "keycap 10": "๐Ÿ”Ÿ", + "keycap 2": "2๏ธโƒฃ", + "keycap 3": "3๏ธโƒฃ", + "keycap 4": "4๏ธโƒฃ", + "keycap 5": "5๏ธโƒฃ", + "keycap 6": "6๏ธโƒฃ", + "keycap 7": "7๏ธโƒฃ", + "keycap 8": "8๏ธโƒฃ", + "keycap 9": "9๏ธโƒฃ", + "kick scooter": "๐Ÿ›ด", "kimono": "๐Ÿ‘˜", - "kiss": "๐Ÿ’‹", - "kissing": "๐Ÿ˜—", - "kissing_cat": "๐Ÿ˜ฝ", - "kissing_closed_eyes": "๐Ÿ˜š", - "kissing_heart": "๐Ÿ˜˜", - "kissing_smiling_eyes": "๐Ÿ˜™", - "kitchen_knife": "๐Ÿ”ช", + "kiss": "๐Ÿ’", + "kiss dark skin tone": "๐Ÿ’๐Ÿฟ", + "kiss light skin tone": "๐Ÿ’๐Ÿป", + "kiss man man": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", + "kiss man man dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss man man dark skin tone light skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss man man dark skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss man man dark skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss man man dark skin tone medium skin tone": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss man man light skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss man man light skin tone dark skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss man man light skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss man man light skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss man man light skin tone medium skin tone": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss man man medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss man man medium dark skin tone dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss man man medium dark skin tone light skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss man man medium dark skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss man man medium dark skin tone medium skin tone": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss man man medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss man man medium light skin tone dark skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss man man medium light skin tone light skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss man man medium light skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss man man medium light skin tone medium skin tone": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss man man medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss man man medium skin tone dark skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss man man medium skin tone light skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss man man medium skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss man man medium skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss mark": "๐Ÿ’‹", + "kiss medium dark skin tone": "๐Ÿ’๐Ÿพ", + "kiss medium light skin tone": "๐Ÿ’๐Ÿผ", + "kiss medium skin tone": "๐Ÿ’๐Ÿฝ", + "kiss person person dark skin tone light skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "kiss person person dark skin tone medium dark skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "kiss person person dark skin tone medium light skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "kiss person person dark skin tone medium skin tone": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "kiss person person light skin tone dark skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "kiss person person light skin tone medium dark skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "kiss person person light skin tone medium light skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "kiss person person light skin tone medium skin tone": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "kiss person person medium dark skin tone dark skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "kiss person person medium dark skin tone light skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "kiss person person medium dark skin tone medium light skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "kiss person person medium dark skin tone medium skin tone": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "kiss person person medium light skin tone dark skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "kiss person person medium light skin tone light skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "kiss person person medium light skin tone medium dark skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "kiss person person medium light skin tone medium skin tone": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "kiss person person medium skin tone dark skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "kiss person person medium skin tone light skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "kiss person person medium skin tone medium dark skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "kiss person person medium skin tone medium light skin tone": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "kiss woman man": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", + "kiss woman man dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss woman man dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss woman man dark skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss woman man dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss woman man dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss woman man light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss woman man light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss woman man light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss woman man light skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss woman man light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss woman man medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss woman man medium dark skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss woman man medium dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss woman man medium dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss woman man medium dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss woman man medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss woman man medium light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss woman man medium light skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss woman man medium light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss woman man medium light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss woman man medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "kiss woman man medium skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "kiss woman man medium skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "kiss woman man medium skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "kiss woman man medium skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "kiss woman woman": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ", + "kiss woman woman dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "kiss woman woman dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "kiss woman woman dark skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "kiss woman woman dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "kiss woman woman dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "kiss woman woman light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "kiss woman woman light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "kiss woman woman light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "kiss woman woman light skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "kiss woman woman light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "kiss woman woman medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "kiss woman woman medium dark skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "kiss woman woman medium dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "kiss woman woman medium dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "kiss woman woman medium dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "kiss woman woman medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "kiss woman woman medium light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "kiss woman woman medium light skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "kiss woman woman medium light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "kiss woman woman medium light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "kiss woman woman medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "kiss woman woman medium skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "kiss woman woman medium skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "kiss woman woman medium skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "kiss woman woman medium skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "kissing cat": "๐Ÿ˜ฝ", + "kissing face": "๐Ÿ˜—", + "kissing face with closed eyes": "๐Ÿ˜š", + "kissing face with smiling eyes": "๐Ÿ˜™", + "kitchen knife": "๐Ÿ”ช", "kite": "๐Ÿช", - "kiwi": "๐Ÿฅ", - "kiwi_fruit": "๐Ÿฅ", - "knife": "๐Ÿ”ช", + "kiwi fruit": "๐Ÿฅ", + "knot": "๐Ÿชข", "koala": "๐Ÿจ", - "koko": "๐Ÿˆ", - "lab_coat": "๐Ÿฅผ", - "label": "๐Ÿท", + "lab coat": "๐Ÿฅผ", + "label": "๐Ÿท๏ธ", "lacrosse": "๐Ÿฅ", - "large_blue_diamond": "๐Ÿ”ท", - "large_orange_diamond": "๐Ÿ”ถ", - "last_quarter_moon": "๐ŸŒ—", - "last_quarter_moon_with_face": "๐ŸŒœ", - "last_track_button": "โฎ๏ธ", - "latin_cross": "โœ", - "laughing": "๐Ÿ˜†", - "leafy_green": "๐Ÿฅฌ", - "leaves": "๐Ÿƒ", + "ladder": "๐Ÿชœ", + "lady beetle": "๐Ÿž", + "laptop": "๐Ÿ’ป", + "large blue diamond": "๐Ÿ”ท", + "large orange diamond": "๐Ÿ”ถ", + "last quarter moon": "๐ŸŒ—", + "last quarter moon face": "๐ŸŒœ", + "last track button": "โฎ๏ธ", + "latin cross": "โœ๏ธ", + "leaf fluttering in wind": "๐Ÿƒ", + "leafy green": "๐Ÿฅฌ", "ledger": "๐Ÿ“’", - "left_arrow": "โฌ…", - "left_arrow_curving_right": "โ†ช", - "left_facing_fist": "๐Ÿค›", - "left_luggage": "๐Ÿ›…", - "left_right_arrow": "โ†”", - "leftfacing_fist": "๐Ÿค›", - "leftright_arrow": "โ†”๏ธ", - "leftwards_arrow_with_hook": "โ†ฉ๏ธ", + "left arrow": "โฌ…๏ธ", + "left arrow curving right": "โ†ช๏ธ", + "left facing fist": "๐Ÿค›", + "left facing fist dark skin tone": "๐Ÿค›๐Ÿฟ", + "left facing fist light skin tone": "๐Ÿค›๐Ÿป", + "left facing fist medium dark skin tone": "๐Ÿค›๐Ÿพ", + "left facing fist medium light skin tone": "๐Ÿค›๐Ÿผ", + "left facing fist medium skin tone": "๐Ÿค›๐Ÿฝ", + "left luggage": "๐Ÿ›…", + "left right arrow": "โ†”๏ธ", + "left speech bubble": "๐Ÿ—จ๏ธ", + "leftwards hand": "๐Ÿซฒ", + "leftwards hand dark skin tone": "๐Ÿซฒ๐Ÿฟ", + "leftwards hand light skin tone": "๐Ÿซฒ๐Ÿป", + "leftwards hand medium dark skin tone": "๐Ÿซฒ๐Ÿพ", + "leftwards hand medium light skin tone": "๐Ÿซฒ๐Ÿผ", + "leftwards hand medium skin tone": "๐Ÿซฒ๐Ÿฝ", "leg": "๐Ÿฆต", + "leg dark skin tone": "๐Ÿฆต๐Ÿฟ", + "leg light skin tone": "๐Ÿฆต๐Ÿป", + "leg medium dark skin tone": "๐Ÿฆต๐Ÿพ", + "leg medium light skin tone": "๐Ÿฆต๐Ÿผ", + "leg medium skin tone": "๐Ÿฆต๐Ÿฝ", "lemon": "๐Ÿ‹", - "leo": "โ™Œ", "leopard": "๐Ÿ†", - "level_slider": "๐ŸŽš", - "libra": "โ™Ž", - "light_rail": "๐Ÿšˆ", - "light_skin_tone": "๐Ÿป", + "level slider": "๐ŸŽš๏ธ", + "light bulb": "๐Ÿ’ก", + "light rail": "๐Ÿšˆ", "link": "๐Ÿ”—", - "linked_paperclips": "๐Ÿ–‡", - "lion_face": "๐Ÿฆ", - "lips": "๐Ÿ‘„", + "linked paperclips": "๐Ÿ–‡๏ธ", + "lion": "๐Ÿฆ", "lipstick": "๐Ÿ’„", + "litter in bin sign": "๐Ÿšฎ", "lizard": "๐ŸฆŽ", "llama": "๐Ÿฆ™", "lobster": "๐Ÿฆž", - "lock": "๐Ÿ”’", - "lock_with_ink_pen": "๐Ÿ”", + "locked": "๐Ÿ”’", + "locked with key": "๐Ÿ”", + "locked with pen": "๐Ÿ”", + "locomotive": "๐Ÿš‚", "lollipop": "๐Ÿญ", - "loop": "โžฟ", - "lotion_bottle": "๐Ÿงด", - "loud_sound": "๐Ÿ”Š", + "long drum": "๐Ÿช˜", + "lotion bottle": "๐Ÿงด", + "lotus": "๐Ÿชท", + "loudly crying face": "๐Ÿ˜ญ", "loudspeaker": "๐Ÿ“ข", - "love_hotel": "๐Ÿฉ", - "love_letter": "๐Ÿ’Œ", - "love_you_gesture": "๐ŸคŸ", - "loveyou_gesture": "๐ŸคŸ", - "low_brightness": "๐Ÿ”…", + "love hotel": "๐Ÿฉ", + "love letter": "๐Ÿ’Œ", + "love you gesture": "๐ŸคŸ", + "love you gesture dark skin tone": "๐ŸคŸ๐Ÿฟ", + "love you gesture light skin tone": "๐ŸคŸ๐Ÿป", + "love you gesture medium dark skin tone": "๐ŸคŸ๐Ÿพ", + "love you gesture medium light skin tone": "๐ŸคŸ๐Ÿผ", + "love you gesture medium skin tone": "๐ŸคŸ๐Ÿฝ", + "low battery": "๐Ÿชซ", "luggage": "๐Ÿงณ", - "lying_face": "๐Ÿคฅ", - "m": "โ“‚๏ธ", - "mag": "๐Ÿ”", - "mag_right": "๐Ÿ”Ž", + "lungs": "๐Ÿซ", + "lying face": "๐Ÿคฅ", "mage": "๐Ÿง™", + "mage dark skin tone": "๐Ÿง™๐Ÿฟ", + "mage light skin tone": "๐Ÿง™๐Ÿป", + "mage medium dark skin tone": "๐Ÿง™๐Ÿพ", + "mage medium light skin tone": "๐Ÿง™๐Ÿผ", + "mage medium skin tone": "๐Ÿง™๐Ÿฝ", + "magic wand": "๐Ÿช„", "magnet": "๐Ÿงฒ", - "mahjong": "๐Ÿ€„", - "mailbox": "๐Ÿ“ซ", - "mailbox_closed": "๐Ÿ“ช", - "mailbox_with_mail": "๐Ÿ“ฌ", - "mailbox_with_no_mail": "๐Ÿ“ญ", - "male_sign": "โ™‚", + "magnifying glass tilted left": "๐Ÿ”", + "magnifying glass tilted right": "๐Ÿ”Ž", + "mahjong red dragon": "๐Ÿ€„", + "male sign": "โ™‚๏ธ", + "mammoth": "๐Ÿฆฃ", "man": "๐Ÿ‘จ", - "man_dancing": "๐Ÿ•บ", - "man_in_suit": "๐Ÿ•ด", - "man_in_tuxedo": "๐Ÿคต", - "man_with_chinese_cap": "๐Ÿ‘ฒ", - "man_with_gua_pi_mao": "๐Ÿ‘ฒ", - "man_with_turban": "๐Ÿ‘ณ", + "man artist": "๐Ÿ‘จโ€๐ŸŽจ", + "man artist dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽจ", + "man artist light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐ŸŽจ", + "man artist medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐ŸŽจ", + "man artist medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐ŸŽจ", + "man artist medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽจ", + "man astronaut": "๐Ÿ‘จโ€๐Ÿš€", + "man astronaut dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿš€", + "man astronaut light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿš€", + "man astronaut medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿš€", + "man astronaut medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿš€", + "man astronaut medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿš€", + "man bald": "๐Ÿ‘จโ€๐Ÿฆฒ", + "man beard": "๐Ÿง”โ€โ™‚๏ธ", + "man biking": "๐Ÿšดโ€โ™‚๏ธ", + "man biking dark skin tone": "๐Ÿšด๐Ÿฟโ€โ™‚๏ธ", + "man biking light skin tone": "๐Ÿšด๐Ÿปโ€โ™‚๏ธ", + "man biking medium dark skin tone": "๐Ÿšด๐Ÿพโ€โ™‚๏ธ", + "man biking medium light skin tone": "๐Ÿšด๐Ÿผโ€โ™‚๏ธ", + "man biking medium skin tone": "๐Ÿšด๐Ÿฝโ€โ™‚๏ธ", + "man blond hair": "๐Ÿ‘ฑโ€โ™‚๏ธ", + "man bouncing ball": "โ›น๏ธโ€โ™‚๏ธ", + "man bouncing ball dark skin tone": "โ›น๐Ÿฟโ€โ™‚๏ธ", + "man bouncing ball light skin tone": "โ›น๐Ÿปโ€โ™‚๏ธ", + "man bouncing ball medium dark skin tone": "โ›น๐Ÿพโ€โ™‚๏ธ", + "man bouncing ball medium light skin tone": "โ›น๐Ÿผโ€โ™‚๏ธ", + "man bouncing ball medium skin tone": "โ›น๐Ÿฝโ€โ™‚๏ธ", + "man bowing": "๐Ÿ™‡โ€โ™‚๏ธ", + "man bowing dark skin tone": "๐Ÿ™‡๐Ÿฟโ€โ™‚๏ธ", + "man bowing light skin tone": "๐Ÿ™‡๐Ÿปโ€โ™‚๏ธ", + "man bowing medium dark skin tone": "๐Ÿ™‡๐Ÿพโ€โ™‚๏ธ", + "man bowing medium light skin tone": "๐Ÿ™‡๐Ÿผโ€โ™‚๏ธ", + "man bowing medium skin tone": "๐Ÿ™‡๐Ÿฝโ€โ™‚๏ธ", + "man cartwheeling": "๐Ÿคธโ€โ™‚๏ธ", + "man cartwheeling dark skin tone": "๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ", + "man cartwheeling light skin tone": "๐Ÿคธ๐Ÿปโ€โ™‚๏ธ", + "man cartwheeling medium dark skin tone": "๐Ÿคธ๐Ÿพโ€โ™‚๏ธ", + "man cartwheeling medium light skin tone": "๐Ÿคธ๐Ÿผโ€โ™‚๏ธ", + "man cartwheeling medium skin tone": "๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ", + "man climbing": "๐Ÿง—โ€โ™‚๏ธ", + "man climbing dark skin tone": "๐Ÿง—๐Ÿฟโ€โ™‚๏ธ", + "man climbing light skin tone": "๐Ÿง—๐Ÿปโ€โ™‚๏ธ", + "man climbing medium dark skin tone": "๐Ÿง—๐Ÿพโ€โ™‚๏ธ", + "man climbing medium light skin tone": "๐Ÿง—๐Ÿผโ€โ™‚๏ธ", + "man climbing medium skin tone": "๐Ÿง—๐Ÿฝโ€โ™‚๏ธ", + "man construction worker": "๐Ÿ‘ทโ€โ™‚๏ธ", + "man construction worker dark skin tone": "๐Ÿ‘ท๐Ÿฟโ€โ™‚๏ธ", + "man construction worker light skin tone": "๐Ÿ‘ท๐Ÿปโ€โ™‚๏ธ", + "man construction worker medium dark skin tone": "๐Ÿ‘ท๐Ÿพโ€โ™‚๏ธ", + "man construction worker medium light skin tone": "๐Ÿ‘ท๐Ÿผโ€โ™‚๏ธ", + "man construction worker medium skin tone": "๐Ÿ‘ท๐Ÿฝโ€โ™‚๏ธ", + "man cook": "๐Ÿ‘จโ€๐Ÿณ", + "man cook dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿณ", + "man cook light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿณ", + "man cook medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿณ", + "man cook medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿณ", + "man cook medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿณ", + "man curly hair": "๐Ÿ‘จโ€๐Ÿฆฑ", + "man dancing": "๐Ÿ•บ", + "man dancing dark skin tone": "๐Ÿ•บ๐Ÿฟ", + "man dancing light skin tone": "๐Ÿ•บ๐Ÿป", + "man dancing medium dark skin tone": "๐Ÿ•บ๐Ÿพ", + "man dancing medium light skin tone": "๐Ÿ•บ๐Ÿผ", + "man dancing medium skin tone": "๐Ÿ•บ๐Ÿฝ", + "man dark skin tone": "๐Ÿ‘จ๐Ÿฟ", + "man dark skin tone bald": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฒ", + "man dark skin tone beard": "๐Ÿง”๐Ÿฟโ€โ™‚๏ธ", + "man dark skin tone blond hair": "๐Ÿ‘ฑ๐Ÿฟโ€โ™‚๏ธ", + "man dark skin tone curly hair": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฑ", + "man dark skin tone red hair": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฐ", + "man dark skin tone white hair": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆณ", + "man detective": "๐Ÿ•ต๏ธโ€โ™‚๏ธ", + "man detective dark skin tone": "๐Ÿ•ต๐Ÿฟโ€โ™‚๏ธ", + "man detective light skin tone": "๐Ÿ•ต๐Ÿปโ€โ™‚๏ธ", + "man detective medium dark skin tone": "๐Ÿ•ต๐Ÿพโ€โ™‚๏ธ", + "man detective medium light skin tone": "๐Ÿ•ต๐Ÿผโ€โ™‚๏ธ", + "man detective medium skin tone": "๐Ÿ•ต๐Ÿฝโ€โ™‚๏ธ", + "man elf": "๐Ÿงโ€โ™‚๏ธ", + "man elf dark skin tone": "๐Ÿง๐Ÿฟโ€โ™‚๏ธ", + "man elf light skin tone": "๐Ÿง๐Ÿปโ€โ™‚๏ธ", + "man elf medium dark skin tone": "๐Ÿง๐Ÿพโ€โ™‚๏ธ", + "man elf medium light skin tone": "๐Ÿง๐Ÿผโ€โ™‚๏ธ", + "man elf medium skin tone": "๐Ÿง๐Ÿฝโ€โ™‚๏ธ", + "man facepalming": "๐Ÿคฆโ€โ™‚๏ธ", + "man facepalming dark skin tone": "๐Ÿคฆ๐Ÿฟโ€โ™‚๏ธ", + "man facepalming light skin tone": "๐Ÿคฆ๐Ÿปโ€โ™‚๏ธ", + "man facepalming medium dark skin tone": "๐Ÿคฆ๐Ÿพโ€โ™‚๏ธ", + "man facepalming medium light skin tone": "๐Ÿคฆ๐Ÿผโ€โ™‚๏ธ", + "man facepalming medium skin tone": "๐Ÿคฆ๐Ÿฝโ€โ™‚๏ธ", + "man factory worker": "๐Ÿ‘จโ€๐Ÿญ", + "man factory worker dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿญ", + "man factory worker light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿญ", + "man factory worker medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿญ", + "man factory worker medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿญ", + "man factory worker medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿญ", + "man fairy": "๐Ÿงšโ€โ™‚๏ธ", + "man fairy dark skin tone": "๐Ÿงš๐Ÿฟโ€โ™‚๏ธ", + "man fairy light skin tone": "๐Ÿงš๐Ÿปโ€โ™‚๏ธ", + "man fairy medium dark skin tone": "๐Ÿงš๐Ÿพโ€โ™‚๏ธ", + "man fairy medium light skin tone": "๐Ÿงš๐Ÿผโ€โ™‚๏ธ", + "man fairy medium skin tone": "๐Ÿงš๐Ÿฝโ€โ™‚๏ธ", + "man farmer": "๐Ÿ‘จโ€๐ŸŒพ", + "man farmer dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐ŸŒพ", + "man farmer light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐ŸŒพ", + "man farmer medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐ŸŒพ", + "man farmer medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐ŸŒพ", + "man farmer medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐ŸŒพ", + "man feeding baby": "๐Ÿ‘จโ€๐Ÿผ", + "man feeding baby dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿผ", + "man feeding baby light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿผ", + "man feeding baby medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿผ", + "man feeding baby medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿผ", + "man feeding baby medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿผ", + "man firefighter": "๐Ÿ‘จโ€๐Ÿš’", + "man firefighter dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿš’", + "man firefighter light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿš’", + "man firefighter medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿš’", + "man firefighter medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿš’", + "man firefighter medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿš’", + "man frowning": "๐Ÿ™โ€โ™‚๏ธ", + "man frowning dark skin tone": "๐Ÿ™๐Ÿฟโ€โ™‚๏ธ", + "man frowning light skin tone": "๐Ÿ™๐Ÿปโ€โ™‚๏ธ", + "man frowning medium dark skin tone": "๐Ÿ™๐Ÿพโ€โ™‚๏ธ", + "man frowning medium light skin tone": "๐Ÿ™๐Ÿผโ€โ™‚๏ธ", + "man frowning medium skin tone": "๐Ÿ™๐Ÿฝโ€โ™‚๏ธ", + "man genie": "๐Ÿงžโ€โ™‚๏ธ", + "man gesturing NO": "๐Ÿ™…โ€โ™‚๏ธ", + "man gesturing NO dark skin tone": "๐Ÿ™…๐Ÿฟโ€โ™‚๏ธ", + "man gesturing NO light skin tone": "๐Ÿ™…๐Ÿปโ€โ™‚๏ธ", + "man gesturing NO medium dark skin tone": "๐Ÿ™…๐Ÿพโ€โ™‚๏ธ", + "man gesturing NO medium light skin tone": "๐Ÿ™…๐Ÿผโ€โ™‚๏ธ", + "man gesturing NO medium skin tone": "๐Ÿ™…๐Ÿฝโ€โ™‚๏ธ", + "man gesturing OK": "๐Ÿ™†โ€โ™‚๏ธ", + "man gesturing OK dark skin tone": "๐Ÿ™†๐Ÿฟโ€โ™‚๏ธ", + "man gesturing OK light skin tone": "๐Ÿ™†๐Ÿปโ€โ™‚๏ธ", + "man gesturing OK medium dark skin tone": "๐Ÿ™†๐Ÿพโ€โ™‚๏ธ", + "man gesturing OK medium light skin tone": "๐Ÿ™†๐Ÿผโ€โ™‚๏ธ", + "man gesturing OK medium skin tone": "๐Ÿ™†๐Ÿฝโ€โ™‚๏ธ", + "man getting haircut": "๐Ÿ’‡โ€โ™‚๏ธ", + "man getting haircut dark skin tone": "๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ", + "man getting haircut light skin tone": "๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ", + "man getting haircut medium dark skin tone": "๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ", + "man getting haircut medium light skin tone": "๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ", + "man getting haircut medium skin tone": "๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ", + "man getting massage": "๐Ÿ’†โ€โ™‚๏ธ", + "man getting massage dark skin tone": "๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ", + "man getting massage light skin tone": "๐Ÿ’†๐Ÿปโ€โ™‚๏ธ", + "man getting massage medium dark skin tone": "๐Ÿ’†๐Ÿพโ€โ™‚๏ธ", + "man getting massage medium light skin tone": "๐Ÿ’†๐Ÿผโ€โ™‚๏ธ", + "man getting massage medium skin tone": "๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ", + "man golfing": "๐ŸŒ๏ธโ€โ™‚๏ธ", + "man golfing dark skin tone": "๐ŸŒ๐Ÿฟโ€โ™‚๏ธ", + "man golfing light skin tone": "๐ŸŒ๐Ÿปโ€โ™‚๏ธ", + "man golfing medium dark skin tone": "๐ŸŒ๐Ÿพโ€โ™‚๏ธ", + "man golfing medium light skin tone": "๐ŸŒ๐Ÿผโ€โ™‚๏ธ", + "man golfing medium skin tone": "๐ŸŒ๐Ÿฝโ€โ™‚๏ธ", + "man guard": "๐Ÿ’‚โ€โ™‚๏ธ", + "man guard dark skin tone": "๐Ÿ’‚๐Ÿฟโ€โ™‚๏ธ", + "man guard light skin tone": "๐Ÿ’‚๐Ÿปโ€โ™‚๏ธ", + "man guard medium dark skin tone": "๐Ÿ’‚๐Ÿพโ€โ™‚๏ธ", + "man guard medium light skin tone": "๐Ÿ’‚๐Ÿผโ€โ™‚๏ธ", + "man guard medium skin tone": "๐Ÿ’‚๐Ÿฝโ€โ™‚๏ธ", + "man health worker": "๐Ÿ‘จโ€โš•๏ธ", + "man health worker dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โš•๏ธ", + "man health worker light skin tone": "๐Ÿ‘จ๐Ÿปโ€โš•๏ธ", + "man health worker medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โš•๏ธ", + "man health worker medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€โš•๏ธ", + "man health worker medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€โš•๏ธ", + "man in lotus position": "๐Ÿง˜โ€โ™‚๏ธ", + "man in lotus position dark skin tone": "๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ", + "man in lotus position light skin tone": "๐Ÿง˜๐Ÿปโ€โ™‚๏ธ", + "man in lotus position medium dark skin tone": "๐Ÿง˜๐Ÿพโ€โ™‚๏ธ", + "man in lotus position medium light skin tone": "๐Ÿง˜๐Ÿผโ€โ™‚๏ธ", + "man in lotus position medium skin tone": "๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ", + "man in manual wheelchair": "๐Ÿ‘จโ€๐Ÿฆฝ", + "man in manual wheelchair dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ", + "man in manual wheelchair light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ", + "man in manual wheelchair medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ", + "man in manual wheelchair medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ", + "man in manual wheelchair medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ", + "man in motorized wheelchair": "๐Ÿ‘จโ€๐Ÿฆผ", + "man in motorized wheelchair dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ", + "man in motorized wheelchair light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ", + "man in motorized wheelchair medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ", + "man in motorized wheelchair medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ", + "man in motorized wheelchair medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ", + "man in steamy room": "๐Ÿง–โ€โ™‚๏ธ", + "man in steamy room dark skin tone": "๐Ÿง–๐Ÿฟโ€โ™‚๏ธ", + "man in steamy room light skin tone": "๐Ÿง–๐Ÿปโ€โ™‚๏ธ", + "man in steamy room medium dark skin tone": "๐Ÿง–๐Ÿพโ€โ™‚๏ธ", + "man in steamy room medium light skin tone": "๐Ÿง–๐Ÿผโ€โ™‚๏ธ", + "man in steamy room medium skin tone": "๐Ÿง–๐Ÿฝโ€โ™‚๏ธ", + "man in tuxedo": "๐Ÿคตโ€โ™‚๏ธ", + "man in tuxedo dark skin tone": "๐Ÿคต๐Ÿฟโ€โ™‚๏ธ", + "man in tuxedo light skin tone": "๐Ÿคต๐Ÿปโ€โ™‚๏ธ", + "man in tuxedo medium dark skin tone": "๐Ÿคต๐Ÿพโ€โ™‚๏ธ", + "man in tuxedo medium light skin tone": "๐Ÿคต๐Ÿผโ€โ™‚๏ธ", + "man in tuxedo medium skin tone": "๐Ÿคต๐Ÿฝโ€โ™‚๏ธ", + "man judge": "๐Ÿ‘จโ€โš–๏ธ", + "man judge dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โš–๏ธ", + "man judge light skin tone": "๐Ÿ‘จ๐Ÿปโ€โš–๏ธ", + "man judge medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โš–๏ธ", + "man judge medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€โš–๏ธ", + "man judge medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€โš–๏ธ", + "man juggling": "๐Ÿคนโ€โ™‚๏ธ", + "man juggling dark skin tone": "๐Ÿคน๐Ÿฟโ€โ™‚๏ธ", + "man juggling light skin tone": "๐Ÿคน๐Ÿปโ€โ™‚๏ธ", + "man juggling medium dark skin tone": "๐Ÿคน๐Ÿพโ€โ™‚๏ธ", + "man juggling medium light skin tone": "๐Ÿคน๐Ÿผโ€โ™‚๏ธ", + "man juggling medium skin tone": "๐Ÿคน๐Ÿฝโ€โ™‚๏ธ", + "man kneeling": "๐ŸงŽโ€โ™‚๏ธ", + "man kneeling dark skin tone": "๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ", + "man kneeling light skin tone": "๐ŸงŽ๐Ÿปโ€โ™‚๏ธ", + "man kneeling medium dark skin tone": "๐ŸงŽ๐Ÿพโ€โ™‚๏ธ", + "man kneeling medium light skin tone": "๐ŸงŽ๐Ÿผโ€โ™‚๏ธ", + "man kneeling medium skin tone": "๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ", + "man lifting weights": "๐Ÿ‹๏ธโ€โ™‚๏ธ", + "man lifting weights dark skin tone": "๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ", + "man lifting weights light skin tone": "๐Ÿ‹๐Ÿปโ€โ™‚๏ธ", + "man lifting weights medium dark skin tone": "๐Ÿ‹๐Ÿพโ€โ™‚๏ธ", + "man lifting weights medium light skin tone": "๐Ÿ‹๐Ÿผโ€โ™‚๏ธ", + "man lifting weights medium skin tone": "๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ", + "man light skin tone": "๐Ÿ‘จ๐Ÿป", + "man light skin tone bald": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฒ", + "man light skin tone beard": "๐Ÿง”๐Ÿปโ€โ™‚๏ธ", + "man light skin tone blond hair": "๐Ÿ‘ฑ๐Ÿปโ€โ™‚๏ธ", + "man light skin tone curly hair": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฑ", + "man light skin tone red hair": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฐ", + "man light skin tone white hair": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆณ", + "man mage": "๐Ÿง™โ€โ™‚๏ธ", + "man mage dark skin tone": "๐Ÿง™๐Ÿฟโ€โ™‚๏ธ", + "man mage light skin tone": "๐Ÿง™๐Ÿปโ€โ™‚๏ธ", + "man mage medium dark skin tone": "๐Ÿง™๐Ÿพโ€โ™‚๏ธ", + "man mage medium light skin tone": "๐Ÿง™๐Ÿผโ€โ™‚๏ธ", + "man mage medium skin tone": "๐Ÿง™๐Ÿฝโ€โ™‚๏ธ", + "man mechanic": "๐Ÿ‘จโ€๐Ÿ”ง", + "man mechanic dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ง", + "man mechanic light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ง", + "man mechanic medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ง", + "man mechanic medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ง", + "man mechanic medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ง", + "man medium dark skin tone": "๐Ÿ‘จ๐Ÿพ", + "man medium dark skin tone bald": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฒ", + "man medium dark skin tone beard": "๐Ÿง”๐Ÿพโ€โ™‚๏ธ", + "man medium dark skin tone blond hair": "๐Ÿ‘ฑ๐Ÿพโ€โ™‚๏ธ", + "man medium dark skin tone curly hair": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฑ", + "man medium dark skin tone red hair": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฐ", + "man medium dark skin tone white hair": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆณ", + "man medium light skin tone": "๐Ÿ‘จ๐Ÿผ", + "man medium light skin tone bald": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฒ", + "man medium light skin tone beard": "๐Ÿง”๐Ÿผโ€โ™‚๏ธ", + "man medium light skin tone blond hair": "๐Ÿ‘ฑ๐Ÿผโ€โ™‚๏ธ", + "man medium light skin tone curly hair": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฑ", + "man medium light skin tone red hair": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฐ", + "man medium light skin tone white hair": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆณ", + "man medium skin tone": "๐Ÿ‘จ๐Ÿฝ", + "man medium skin tone bald": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฒ", + "man medium skin tone beard": "๐Ÿง”๐Ÿฝโ€โ™‚๏ธ", + "man medium skin tone blond hair": "๐Ÿ‘ฑ๐Ÿฝโ€โ™‚๏ธ", + "man medium skin tone curly hair": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฑ", + "man medium skin tone red hair": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฐ", + "man medium skin tone white hair": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆณ", + "man mountain biking": "๐Ÿšตโ€โ™‚๏ธ", + "man mountain biking dark skin tone": "๐Ÿšต๐Ÿฟโ€โ™‚๏ธ", + "man mountain biking light skin tone": "๐Ÿšต๐Ÿปโ€โ™‚๏ธ", + "man mountain biking medium dark skin tone": "๐Ÿšต๐Ÿพโ€โ™‚๏ธ", + "man mountain biking medium light skin tone": "๐Ÿšต๐Ÿผโ€โ™‚๏ธ", + "man mountain biking medium skin tone": "๐Ÿšต๐Ÿฝโ€โ™‚๏ธ", + "man office worker": "๐Ÿ‘จโ€๐Ÿ’ผ", + "man office worker dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ผ", + "man office worker light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ผ", + "man office worker medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ผ", + "man office worker medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ผ", + "man office worker medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ผ", + "man pilot": "๐Ÿ‘จโ€โœˆ๏ธ", + "man pilot dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€โœˆ๏ธ", + "man pilot light skin tone": "๐Ÿ‘จ๐Ÿปโ€โœˆ๏ธ", + "man pilot medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€โœˆ๏ธ", + "man pilot medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€โœˆ๏ธ", + "man pilot medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€โœˆ๏ธ", + "man playing handball": "๐Ÿคพโ€โ™‚๏ธ", + "man playing handball dark skin tone": "๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ", + "man playing handball light skin tone": "๐Ÿคพ๐Ÿปโ€โ™‚๏ธ", + "man playing handball medium dark skin tone": "๐Ÿคพ๐Ÿพโ€โ™‚๏ธ", + "man playing handball medium light skin tone": "๐Ÿคพ๐Ÿผโ€โ™‚๏ธ", + "man playing handball medium skin tone": "๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ", + "man playing water polo": "๐Ÿคฝโ€โ™‚๏ธ", + "man playing water polo dark skin tone": "๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ", + "man playing water polo light skin tone": "๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ", + "man playing water polo medium dark skin tone": "๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ", + "man playing water polo medium light skin tone": "๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ", + "man playing water polo medium skin tone": "๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ", + "man police officer": "๐Ÿ‘ฎโ€โ™‚๏ธ", + "man police officer dark skin tone": "๐Ÿ‘ฎ๐Ÿฟโ€โ™‚๏ธ", + "man police officer light skin tone": "๐Ÿ‘ฎ๐Ÿปโ€โ™‚๏ธ", + "man police officer medium dark skin tone": "๐Ÿ‘ฎ๐Ÿพโ€โ™‚๏ธ", + "man police officer medium light skin tone": "๐Ÿ‘ฎ๐Ÿผโ€โ™‚๏ธ", + "man police officer medium skin tone": "๐Ÿ‘ฎ๐Ÿฝโ€โ™‚๏ธ", + "man pouting": "๐Ÿ™Žโ€โ™‚๏ธ", + "man pouting dark skin tone": "๐Ÿ™Ž๐Ÿฟโ€โ™‚๏ธ", + "man pouting light skin tone": "๐Ÿ™Ž๐Ÿปโ€โ™‚๏ธ", + "man pouting medium dark skin tone": "๐Ÿ™Ž๐Ÿพโ€โ™‚๏ธ", + "man pouting medium light skin tone": "๐Ÿ™Ž๐Ÿผโ€โ™‚๏ธ", + "man pouting medium skin tone": "๐Ÿ™Ž๐Ÿฝโ€โ™‚๏ธ", + "man raising hand": "๐Ÿ™‹โ€โ™‚๏ธ", + "man raising hand dark skin tone": "๐Ÿ™‹๐Ÿฟโ€โ™‚๏ธ", + "man raising hand light skin tone": "๐Ÿ™‹๐Ÿปโ€โ™‚๏ธ", + "man raising hand medium dark skin tone": "๐Ÿ™‹๐Ÿพโ€โ™‚๏ธ", + "man raising hand medium light skin tone": "๐Ÿ™‹๐Ÿผโ€โ™‚๏ธ", + "man raising hand medium skin tone": "๐Ÿ™‹๐Ÿฝโ€โ™‚๏ธ", + "man red hair": "๐Ÿ‘จโ€๐Ÿฆฐ", + "man rowing boat": "๐Ÿšฃโ€โ™‚๏ธ", + "man rowing boat dark skin tone": "๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ", + "man rowing boat light skin tone": "๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ", + "man rowing boat medium dark skin tone": "๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ", + "man rowing boat medium light skin tone": "๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ", + "man rowing boat medium skin tone": "๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ", + "man running": "๐Ÿƒโ€โ™‚๏ธ", + "man running dark skin tone": "๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ", + "man running light skin tone": "๐Ÿƒ๐Ÿปโ€โ™‚๏ธ", + "man running medium dark skin tone": "๐Ÿƒ๐Ÿพโ€โ™‚๏ธ", + "man running medium light skin tone": "๐Ÿƒ๐Ÿผโ€โ™‚๏ธ", + "man running medium skin tone": "๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ", + "man scientist": "๐Ÿ‘จโ€๐Ÿ”ฌ", + "man scientist dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ”ฌ", + "man scientist light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿ”ฌ", + "man scientist medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿ”ฌ", + "man scientist medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿ”ฌ", + "man scientist medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ”ฌ", + "man shrugging": "๐Ÿคทโ€โ™‚๏ธ", + "man shrugging dark skin tone": "๐Ÿคท๐Ÿฟโ€โ™‚๏ธ", + "man shrugging light skin tone": "๐Ÿคท๐Ÿปโ€โ™‚๏ธ", + "man shrugging medium dark skin tone": "๐Ÿคท๐Ÿพโ€โ™‚๏ธ", + "man shrugging medium light skin tone": "๐Ÿคท๐Ÿผโ€โ™‚๏ธ", + "man shrugging medium skin tone": "๐Ÿคท๐Ÿฝโ€โ™‚๏ธ", + "man singer": "๐Ÿ‘จโ€๐ŸŽค", + "man singer dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽค", + "man singer light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐ŸŽค", + "man singer medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐ŸŽค", + "man singer medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐ŸŽค", + "man singer medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽค", + "man standing": "๐Ÿงโ€โ™‚๏ธ", + "man standing dark skin tone": "๐Ÿง๐Ÿฟโ€โ™‚๏ธ", + "man standing light skin tone": "๐Ÿง๐Ÿปโ€โ™‚๏ธ", + "man standing medium dark skin tone": "๐Ÿง๐Ÿพโ€โ™‚๏ธ", + "man standing medium light skin tone": "๐Ÿง๐Ÿผโ€โ™‚๏ธ", + "man standing medium skin tone": "๐Ÿง๐Ÿฝโ€โ™‚๏ธ", + "man student": "๐Ÿ‘จโ€๐ŸŽ“", + "man student dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐ŸŽ“", + "man student light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐ŸŽ“", + "man student medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐ŸŽ“", + "man student medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐ŸŽ“", + "man student medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐ŸŽ“", + "man superhero": "๐Ÿฆธโ€โ™‚๏ธ", + "man superhero dark skin tone": "๐Ÿฆธ๐Ÿฟโ€โ™‚๏ธ", + "man superhero light skin tone": "๐Ÿฆธ๐Ÿปโ€โ™‚๏ธ", + "man superhero medium dark skin tone": "๐Ÿฆธ๐Ÿพโ€โ™‚๏ธ", + "man superhero medium light skin tone": "๐Ÿฆธ๐Ÿผโ€โ™‚๏ธ", + "man superhero medium skin tone": "๐Ÿฆธ๐Ÿฝโ€โ™‚๏ธ", + "man supervillain": "๐Ÿฆนโ€โ™‚๏ธ", + "man supervillain dark skin tone": "๐Ÿฆน๐Ÿฟโ€โ™‚๏ธ", + "man supervillain light skin tone": "๐Ÿฆน๐Ÿปโ€โ™‚๏ธ", + "man supervillain medium dark skin tone": "๐Ÿฆน๐Ÿพโ€โ™‚๏ธ", + "man supervillain medium light skin tone": "๐Ÿฆน๐Ÿผโ€โ™‚๏ธ", + "man supervillain medium skin tone": "๐Ÿฆน๐Ÿฝโ€โ™‚๏ธ", + "man surfing": "๐Ÿ„โ€โ™‚๏ธ", + "man surfing dark skin tone": "๐Ÿ„๐Ÿฟโ€โ™‚๏ธ", + "man surfing light skin tone": "๐Ÿ„๐Ÿปโ€โ™‚๏ธ", + "man surfing medium dark skin tone": "๐Ÿ„๐Ÿพโ€โ™‚๏ธ", + "man surfing medium light skin tone": "๐Ÿ„๐Ÿผโ€โ™‚๏ธ", + "man surfing medium skin tone": "๐Ÿ„๐Ÿฝโ€โ™‚๏ธ", + "man swimming": "๐ŸŠโ€โ™‚๏ธ", + "man swimming dark skin tone": "๐ŸŠ๐Ÿฟโ€โ™‚๏ธ", + "man swimming light skin tone": "๐ŸŠ๐Ÿปโ€โ™‚๏ธ", + "man swimming medium dark skin tone": "๐ŸŠ๐Ÿพโ€โ™‚๏ธ", + "man swimming medium light skin tone": "๐ŸŠ๐Ÿผโ€โ™‚๏ธ", + "man swimming medium skin tone": "๐ŸŠ๐Ÿฝโ€โ™‚๏ธ", + "man teacher": "๐Ÿ‘จโ€๐Ÿซ", + "man teacher dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿซ", + "man teacher light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿซ", + "man teacher medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿซ", + "man teacher medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿซ", + "man teacher medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿซ", + "man technologist": "๐Ÿ‘จโ€๐Ÿ’ป", + "man technologist dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿ’ป", + "man technologist light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿ’ป", + "man technologist medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿ’ป", + "man technologist medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿ’ป", + "man technologist medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿ’ป", + "man tipping hand": "๐Ÿ’โ€โ™‚๏ธ", + "man tipping hand dark skin tone": "๐Ÿ’๐Ÿฟโ€โ™‚๏ธ", + "man tipping hand light skin tone": "๐Ÿ’๐Ÿปโ€โ™‚๏ธ", + "man tipping hand medium dark skin tone": "๐Ÿ’๐Ÿพโ€โ™‚๏ธ", + "man tipping hand medium light skin tone": "๐Ÿ’๐Ÿผโ€โ™‚๏ธ", + "man tipping hand medium skin tone": "๐Ÿ’๐Ÿฝโ€โ™‚๏ธ", + "man vampire": "๐Ÿง›โ€โ™‚๏ธ", + "man vampire dark skin tone": "๐Ÿง›๐Ÿฟโ€โ™‚๏ธ", + "man vampire light skin tone": "๐Ÿง›๐Ÿปโ€โ™‚๏ธ", + "man vampire medium dark skin tone": "๐Ÿง›๐Ÿพโ€โ™‚๏ธ", + "man vampire medium light skin tone": "๐Ÿง›๐Ÿผโ€โ™‚๏ธ", + "man vampire medium skin tone": "๐Ÿง›๐Ÿฝโ€โ™‚๏ธ", + "man walking": "๐Ÿšถโ€โ™‚๏ธ", + "man walking dark skin tone": "๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ", + "man walking light skin tone": "๐Ÿšถ๐Ÿปโ€โ™‚๏ธ", + "man walking medium dark skin tone": "๐Ÿšถ๐Ÿพโ€โ™‚๏ธ", + "man walking medium light skin tone": "๐Ÿšถ๐Ÿผโ€โ™‚๏ธ", + "man walking medium skin tone": "๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ", + "man wearing turban": "๐Ÿ‘ณโ€โ™‚๏ธ", + "man wearing turban dark skin tone": "๐Ÿ‘ณ๐Ÿฟโ€โ™‚๏ธ", + "man wearing turban light skin tone": "๐Ÿ‘ณ๐Ÿปโ€โ™‚๏ธ", + "man wearing turban medium dark skin tone": "๐Ÿ‘ณ๐Ÿพโ€โ™‚๏ธ", + "man wearing turban medium light skin tone": "๐Ÿ‘ณ๐Ÿผโ€โ™‚๏ธ", + "man wearing turban medium skin tone": "๐Ÿ‘ณ๐Ÿฝโ€โ™‚๏ธ", + "man white hair": "๐Ÿ‘จโ€๐Ÿฆณ", + "man with veil": "๐Ÿ‘ฐโ€โ™‚๏ธ", + "man with veil dark skin tone": "๐Ÿ‘ฐ๐Ÿฟโ€โ™‚๏ธ", + "man with veil light skin tone": "๐Ÿ‘ฐ๐Ÿปโ€โ™‚๏ธ", + "man with veil medium dark skin tone": "๐Ÿ‘ฐ๐Ÿพโ€โ™‚๏ธ", + "man with veil medium light skin tone": "๐Ÿ‘ฐ๐Ÿผโ€โ™‚๏ธ", + "man with veil medium skin tone": "๐Ÿ‘ฐ๐Ÿฝโ€โ™‚๏ธ", + "man with white cane": "๐Ÿ‘จโ€๐Ÿฆฏ", + "man with white cane dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ", + "man with white cane light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ", + "man with white cane medium dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ", + "man with white cane medium light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ", + "man with white cane medium skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ", + "man zombie": "๐ŸงŸโ€โ™‚๏ธ", "mango": "๐Ÿฅญ", - "mans_shoe": "๐Ÿ‘ž", - "mantelpiece_clock": "๐Ÿ•ฐ", - "manual_wheelchair": "๐Ÿฆฝ", - "maple_leaf": "๐Ÿ", - "martial_arts_uniform": "๐Ÿฅ‹", - "mask": "๐Ÿ˜ท", - "massage": "๐Ÿ’†", + "mantelpiece clock": "๐Ÿ•ฐ๏ธ", + "manual wheelchair": "๐Ÿฆฝ", + "manโ€™s shoe": "๐Ÿ‘ž", + "map of Japan": "๐Ÿ—พ", + "maple leaf": "๐Ÿ", + "martial arts uniform": "๐Ÿฅ‹", "mate": "๐Ÿง‰", - "meat_on_bone": "๐Ÿ–", - "mechanical_arm": "๐Ÿฆพ", - "mechanical_leg": "๐Ÿฆฟ", - "medal": "๐Ÿ…", - "medical_symbol": "โš•", - "medium_skin_tone": "๐Ÿฝ", - "mediumdark_skin_tone": "๐Ÿพ", - "mediumlight_skin_tone": "๐Ÿผ", - "mega": "๐Ÿ“ฃ", + "meat on bone": "๐Ÿ–", + "mechanic": "๐Ÿง‘โ€๐Ÿ”ง", + "mechanic dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿ”ง", + "mechanic light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿ”ง", + "mechanic medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿ”ง", + "mechanic medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿ”ง", + "mechanic medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿ”ง", + "mechanical arm": "๐Ÿฆพ", + "mechanical leg": "๐Ÿฆฟ", + "medical symbol": "โš•๏ธ", + "megaphone": "๐Ÿ“ฃ", "melon": "๐Ÿˆ", + "melting face": "๐Ÿซ ", "memo": "๐Ÿ“", + "men holding hands": "๐Ÿ‘ฌ", + "men holding hands dark skin tone": "๐Ÿ‘ฌ๐Ÿฟ", + "men holding hands dark skin tone light skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "men holding hands dark skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "men holding hands dark skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "men holding hands dark skin tone medium skin tone": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "men holding hands light skin tone": "๐Ÿ‘ฌ๐Ÿป", + "men holding hands light skin tone dark skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "men holding hands light skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "men holding hands light skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "men holding hands light skin tone medium skin tone": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "men holding hands medium dark skin tone": "๐Ÿ‘ฌ๐Ÿพ", + "men holding hands medium dark skin tone dark skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "men holding hands medium dark skin tone light skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "men holding hands medium dark skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "men holding hands medium dark skin tone medium skin tone": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "men holding hands medium light skin tone": "๐Ÿ‘ฌ๐Ÿผ", + "men holding hands medium light skin tone dark skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "men holding hands medium light skin tone light skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "men holding hands medium light skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "men holding hands medium light skin tone medium skin tone": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "men holding hands medium skin tone": "๐Ÿ‘ฌ๐Ÿฝ", + "men holding hands medium skin tone dark skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "men holding hands medium skin tone light skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "men holding hands medium skin tone medium dark skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "men holding hands medium skin tone medium light skin tone": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "men with bunny ears": "๐Ÿ‘ฏโ€โ™‚๏ธ", + "men wrestling": "๐Ÿคผโ€โ™‚๏ธ", + "mending heart": "โค๏ธโ€๐Ÿฉน", "menorah": "๐Ÿ•Ž", - "mens": "๐Ÿšน", + "menโ€™s room": "๐Ÿšน", + "mermaid": "๐Ÿงœโ€โ™€๏ธ", + "mermaid dark skin tone": "๐Ÿงœ๐Ÿฟโ€โ™€๏ธ", + "mermaid light skin tone": "๐Ÿงœ๐Ÿปโ€โ™€๏ธ", + "mermaid medium dark skin tone": "๐Ÿงœ๐Ÿพโ€โ™€๏ธ", + "mermaid medium light skin tone": "๐Ÿงœ๐Ÿผโ€โ™€๏ธ", + "mermaid medium skin tone": "๐Ÿงœ๐Ÿฝโ€โ™€๏ธ", + "merman": "๐Ÿงœโ€โ™‚๏ธ", + "merman dark skin tone": "๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ", + "merman light skin tone": "๐Ÿงœ๐Ÿปโ€โ™‚๏ธ", + "merman medium dark skin tone": "๐Ÿงœ๐Ÿพโ€โ™‚๏ธ", + "merman medium light skin tone": "๐Ÿงœ๐Ÿผโ€โ™‚๏ธ", + "merman medium skin tone": "๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ", "merperson": "๐Ÿงœ", - "metal": "๐Ÿค˜", + "merperson dark skin tone": "๐Ÿงœ๐Ÿฟ", + "merperson light skin tone": "๐Ÿงœ๐Ÿป", + "merperson medium dark skin tone": "๐Ÿงœ๐Ÿพ", + "merperson medium light skin tone": "๐Ÿงœ๐Ÿผ", + "merperson medium skin tone": "๐Ÿงœ๐Ÿฝ", "metro": "๐Ÿš‡", "microbe": "๐Ÿฆ ", "microphone": "๐ŸŽค", "microscope": "๐Ÿ”ฌ", - "middle_finger": "๐Ÿ–•", - "military_medal": "๐ŸŽ–", - "milk": "๐Ÿฅ›", - "milky_way": "๐ŸŒŒ", + "middle finger": "๐Ÿ–•", + "middle finger dark skin tone": "๐Ÿ–•๐Ÿฟ", + "middle finger light skin tone": "๐Ÿ–•๐Ÿป", + "middle finger medium dark skin tone": "๐Ÿ–•๐Ÿพ", + "middle finger medium light skin tone": "๐Ÿ–•๐Ÿผ", + "middle finger medium skin tone": "๐Ÿ–•๐Ÿฝ", + "military helmet": "๐Ÿช–", + "military medal": "๐ŸŽ–๏ธ", + "milky way": "๐ŸŒŒ", "minibus": "๐Ÿš", - "minidisc": "๐Ÿ’ฝ", - "mobile_phone_off": "๐Ÿ“ด", - "money_mouth": "๐Ÿค‘", - "money_with_wings": "๐Ÿ’ธ", - "moneybag": "๐Ÿ’ฐ", - "moneymouth_face": "๐Ÿค‘", + "minus": "โž–", + "mirror": "๐Ÿชž", + "mirror ball": "๐Ÿชฉ", + "moai": "๐Ÿ—ฟ", + "mobile phone": "๐Ÿ“ฑ", + "mobile phone off": "๐Ÿ“ด", + "mobile phone with arrow": "๐Ÿ“ฒ", + "money bag": "๐Ÿ’ฐ", + "money mouth face": "๐Ÿค‘", + "money with wings": "๐Ÿ’ธ", "monkey": "๐Ÿ’", - "monkey_face": "๐Ÿต", + "monkey face": "๐Ÿต", "monorail": "๐Ÿš", - "moon_cake": "๐Ÿฅฎ", - "mortar_board": "๐ŸŽ“", + "moon cake": "๐Ÿฅฎ", + "moon viewing ceremony": "๐ŸŽ‘", "mosque": "๐Ÿ•Œ", "mosquito": "๐ŸฆŸ", - "motor_boat": "๐Ÿ›ฅ", - "motor_scooter": "๐Ÿ›ต", - "motorcycle": "๐Ÿ", - "motorized_wheelchair": "๐Ÿฆผ", - "motorway": "๐Ÿ›ฃ", - "mount_fuji": "๐Ÿ—ป", + "motor boat": "๐Ÿ›ฅ๏ธ", + "motor scooter": "๐Ÿ›ต", + "motorcycle": "๐Ÿ๏ธ", + "motorized wheelchair": "๐Ÿฆผ", + "motorway": "๐Ÿ›ฃ๏ธ", + "mount fuji": "๐Ÿ—ป", "mountain": "โ›ฐ๏ธ", - "mountain_bicyclist": "๐Ÿšต", - "mountain_cableway": "๐Ÿš ", - "mountain_railway": "๐Ÿšž", - "mouse": "๐Ÿญ", - "mouse2": "๐Ÿ", - "movie_camera": "๐ŸŽฅ", - "moyai": "๐Ÿ—ฟ", - "mrs_claus": "๐Ÿคถ", - "multiplication_sign": "โœ–", - "muscle": "๐Ÿ’ช", + "mountain cableway": "๐Ÿš ", + "mountain railway": "๐Ÿšž", + "mouse": "๐Ÿ", + "mouse face": "๐Ÿญ", + "mouse trap": "๐Ÿชค", + "mouth": "๐Ÿ‘„", + "movie camera": "๐ŸŽฅ", + "multiply": "โœ–๏ธ", "mushroom": "๐Ÿ„", - "musical_keyboard": "๐ŸŽน", - "musical_note": "๐ŸŽต", - "musical_score": "๐ŸŽผ", - "mute": "๐Ÿ”‡", - "nail_care": "๐Ÿ’…", - "name_badge": "๐Ÿ“›", - "national_park": "๐Ÿž", - "nauseated_face": "๐Ÿคข", - "nazar_amulet": "๐Ÿงฟ", + "musical keyboard": "๐ŸŽน", + "musical note": "๐ŸŽต", + "musical notes": "๐ŸŽถ", + "musical score": "๐ŸŽผ", + "muted speaker": "๐Ÿ”‡", + "mx claus": "๐Ÿง‘โ€๐ŸŽ„", + "mx claus dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐ŸŽ„", + "mx claus light skin tone": "๐Ÿง‘๐Ÿปโ€๐ŸŽ„", + "mx claus medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐ŸŽ„", + "mx claus medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐ŸŽ„", + "mx claus medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐ŸŽ„", + "nail polish": "๐Ÿ’…", + "nail polish dark skin tone": "๐Ÿ’…๐Ÿฟ", + "nail polish light skin tone": "๐Ÿ’…๐Ÿป", + "nail polish medium dark skin tone": "๐Ÿ’…๐Ÿพ", + "nail polish medium light skin tone": "๐Ÿ’…๐Ÿผ", + "nail polish medium skin tone": "๐Ÿ’…๐Ÿฝ", + "name badge": "๐Ÿ“›", + "national park": "๐Ÿž๏ธ", + "nauseated face": "๐Ÿคข", + "nazar amulet": "๐Ÿงฟ", "necktie": "๐Ÿ‘”", - "negative_squared_cross_mark": "โŽ", - "nerd": "๐Ÿค“", - "neutral_face": "๐Ÿ˜", - "new": "๐Ÿ†•", - "new_moon": "๐ŸŒ‘", - "new_moon_with_face": "๐ŸŒš", + "nerd face": "๐Ÿค“", + "nest with eggs": "๐Ÿชบ", + "nesting dolls": "๐Ÿช†", + "neutral face": "๐Ÿ˜", + "new moon": "๐ŸŒ‘", + "new moon face": "๐ŸŒš", "newspaper": "๐Ÿ“ฐ", - "next_track_button": "โญ๏ธ", - "ng": "๐Ÿ†–", - "night_with_stars": "๐ŸŒƒ", - "nine": "9โƒฃ", - "no_bell": "๐Ÿ”•", - "no_bicycles": "๐Ÿšณ", - "no_entry": "โ›”", - "no_entry_sign": "๐Ÿšซ", - "no_good": "๐Ÿ™…", - "no_mobile_phones": "๐Ÿ“ต", - "no_mouth": "๐Ÿ˜ถ", - "no_pedestrians": "๐Ÿšท", - "no_smoking": "๐Ÿšญ", - "non-potable_water": "๐Ÿšฑ", + "next track button": "โญ๏ธ", + "night with stars": "๐ŸŒƒ", + "nine oโ€™clock": "๐Ÿ•˜", + "nine thirty": "๐Ÿ•ค", + "ninja": "๐Ÿฅท", + "ninja dark skin tone": "๐Ÿฅท๐Ÿฟ", + "ninja light skin tone": "๐Ÿฅท๐Ÿป", + "ninja medium dark skin tone": "๐Ÿฅท๐Ÿพ", + "ninja medium light skin tone": "๐Ÿฅท๐Ÿผ", + "ninja medium skin tone": "๐Ÿฅท๐Ÿฝ", + "no bicycles": "๐Ÿšณ", + "no entry": "โ›”", + "no littering": "๐Ÿšฏ", + "no mobile phones": "๐Ÿ“ต", + "no one under eighteen": "๐Ÿ”ž", + "no pedestrians": "๐Ÿšท", + "no smoking": "๐Ÿšญ", + "non potable water": "๐Ÿšฑ", "nose": "๐Ÿ‘ƒ", + "nose dark skin tone": "๐Ÿ‘ƒ๐Ÿฟ", + "nose light skin tone": "๐Ÿ‘ƒ๐Ÿป", + "nose medium dark skin tone": "๐Ÿ‘ƒ๐Ÿพ", + "nose medium light skin tone": "๐Ÿ‘ƒ๐Ÿผ", + "nose medium skin tone": "๐Ÿ‘ƒ๐Ÿฝ", "notebook": "๐Ÿ““", - "notebook_with_decorative_cover": "๐Ÿ“”", - "notes": "๐ŸŽถ", - "nut_and_bolt": "๐Ÿ”ฉ", - "o": "โญ•", - "o_button_blood_type": "๐Ÿ…พ", - "ocean": "๐ŸŒŠ", - "octagonal_sign": "๐Ÿ›‘", + "notebook with decorative cover": "๐Ÿ“”", + "nut and bolt": "๐Ÿ”ฉ", "octopus": "๐Ÿ™", "oden": "๐Ÿข", - "office": "๐Ÿข", - "oil_drum": "๐Ÿ›ข", - "ok": "๐Ÿ†—", - "ok_hand": "๐Ÿ‘Œ", - "ok_woman": "๐Ÿ™†", - "old_key": "๐Ÿ—", - "older_adult": "๐Ÿง“", - "older_man": "๐Ÿ‘ด", - "older_person": "๐Ÿง“", - "older_woman": "๐Ÿ‘ต", - "om_symbol": "๐Ÿ•‰", - "on": "๐Ÿ”›", - "oncoming_automobile": "๐Ÿš˜", - "oncoming_bus": "๐Ÿš", - "oncoming_fist": "๐Ÿ‘Š", - "oncoming_police_car": "๐Ÿš”", - "oncoming_taxi": "๐Ÿš–", - "one": "1โƒฃ", - "onepiece_swimsuit": "๐Ÿฉฑ", + "office building": "๐Ÿข", + "office worker": "๐Ÿง‘โ€๐Ÿ’ผ", + "office worker dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿ’ผ", + "office worker light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿ’ผ", + "office worker medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿ’ผ", + "office worker medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿ’ผ", + "office worker medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿ’ผ", + "ogre": "๐Ÿ‘น", + "oil drum": "๐Ÿ›ข๏ธ", + "old key": "๐Ÿ—๏ธ", + "old man": "๐Ÿ‘ด", + "old man dark skin tone": "๐Ÿ‘ด๐Ÿฟ", + "old man light skin tone": "๐Ÿ‘ด๐Ÿป", + "old man medium dark skin tone": "๐Ÿ‘ด๐Ÿพ", + "old man medium light skin tone": "๐Ÿ‘ด๐Ÿผ", + "old man medium skin tone": "๐Ÿ‘ด๐Ÿฝ", + "old woman": "๐Ÿ‘ต", + "old woman dark skin tone": "๐Ÿ‘ต๐Ÿฟ", + "old woman light skin tone": "๐Ÿ‘ต๐Ÿป", + "old woman medium dark skin tone": "๐Ÿ‘ต๐Ÿพ", + "old woman medium light skin tone": "๐Ÿ‘ต๐Ÿผ", + "old woman medium skin tone": "๐Ÿ‘ต๐Ÿฝ", + "older person": "๐Ÿง“", + "older person dark skin tone": "๐Ÿง“๐Ÿฟ", + "older person light skin tone": "๐Ÿง“๐Ÿป", + "older person medium dark skin tone": "๐Ÿง“๐Ÿพ", + "older person medium light skin tone": "๐Ÿง“๐Ÿผ", + "older person medium skin tone": "๐Ÿง“๐Ÿฝ", + "olive": "๐Ÿซ’", + "om": "๐Ÿ•‰๏ธ", + "oncoming automobile": "๐Ÿš˜", + "oncoming bus": "๐Ÿš", + "oncoming fist": "๐Ÿ‘Š", + "oncoming fist dark skin tone": "๐Ÿ‘Š๐Ÿฟ", + "oncoming fist light skin tone": "๐Ÿ‘Š๐Ÿป", + "oncoming fist medium dark skin tone": "๐Ÿ‘Š๐Ÿพ", + "oncoming fist medium light skin tone": "๐Ÿ‘Š๐Ÿผ", + "oncoming fist medium skin tone": "๐Ÿ‘Š๐Ÿฝ", + "oncoming police car": "๐Ÿš”", + "oncoming taxi": "๐Ÿš–", + "one oโ€™clock": "๐Ÿ•", + "one piece swimsuit": "๐Ÿฉฑ", + "one thirty": "๐Ÿ•œ", "onion": "๐Ÿง…", - "open_file_folder": "๐Ÿ“‚", - "open_hands": "๐Ÿ‘", - "open_mouth": "๐Ÿ˜ฎ", - "ophiuchus": "โ›Ž", - "orange_book": "๐Ÿ“™", - "orange_circle": "๐ŸŸ ", - "orange_heart": "๐Ÿงก", - "orange_square": "๐ŸŸง", + "open book": "๐Ÿ“–", + "open file folder": "๐Ÿ“‚", + "open hands": "๐Ÿ‘", + "open hands dark skin tone": "๐Ÿ‘๐Ÿฟ", + "open hands light skin tone": "๐Ÿ‘๐Ÿป", + "open hands medium dark skin tone": "๐Ÿ‘๐Ÿพ", + "open hands medium light skin tone": "๐Ÿ‘๐Ÿผ", + "open hands medium skin tone": "๐Ÿ‘๐Ÿฝ", + "open mailbox with lowered flag": "๐Ÿ“ญ", + "open mailbox with raised flag": "๐Ÿ“ฌ", + "optical disk": "๐Ÿ’ฟ", + "orange book": "๐Ÿ“™", + "orange circle": "๐ŸŸ ", + "orange heart": "๐Ÿงก", + "orange square": "๐ŸŸง", "orangutan": "๐Ÿฆง", - "orthodox_cross": "โ˜ฆ๏ธ", + "orthodox cross": "โ˜ฆ๏ธ", "otter": "๐Ÿฆฆ", - "outbox_tray": "๐Ÿ“ค", + "outbox tray": "๐Ÿ“ค", "owl": "๐Ÿฆ‰", "ox": "๐Ÿ‚", "oyster": "๐Ÿฆช", - "p_button": "๐Ÿ…ฟ", "package": "๐Ÿ“ฆ", - "page_facing_up": "๐Ÿ“„", - "page_with_curl": "๐Ÿ“ƒ", + "page facing up": "๐Ÿ“„", + "page with curl": "๐Ÿ“ƒ", "pager": "๐Ÿ“Ÿ", - "paintbrush": "๐Ÿ–Œ", - "palm_tree": "๐ŸŒด", - "palms_up_together": "๐Ÿคฒ", + "paintbrush": "๐Ÿ–Œ๏ธ", + "palm down hand": "๐Ÿซณ", + "palm down hand dark skin tone": "๐Ÿซณ๐Ÿฟ", + "palm down hand light skin tone": "๐Ÿซณ๐Ÿป", + "palm down hand medium dark skin tone": "๐Ÿซณ๐Ÿพ", + "palm down hand medium light skin tone": "๐Ÿซณ๐Ÿผ", + "palm down hand medium skin tone": "๐Ÿซณ๐Ÿฝ", + "palm tree": "๐ŸŒด", + "palm up hand": "๐Ÿซด", + "palm up hand dark skin tone": "๐Ÿซด๐Ÿฟ", + "palm up hand light skin tone": "๐Ÿซด๐Ÿป", + "palm up hand medium dark skin tone": "๐Ÿซด๐Ÿพ", + "palm up hand medium light skin tone": "๐Ÿซด๐Ÿผ", + "palm up hand medium skin tone": "๐Ÿซด๐Ÿฝ", + "palms up together": "๐Ÿคฒ", + "palms up together dark skin tone": "๐Ÿคฒ๐Ÿฟ", + "palms up together light skin tone": "๐Ÿคฒ๐Ÿป", + "palms up together medium dark skin tone": "๐Ÿคฒ๐Ÿพ", + "palms up together medium light skin tone": "๐Ÿคฒ๐Ÿผ", + "palms up together medium skin tone": "๐Ÿคฒ๐Ÿฝ", "pancakes": "๐Ÿฅž", - "panda_face": "๐Ÿผ", + "panda": "๐Ÿผ", "paperclip": "๐Ÿ“Ž", "parachute": "๐Ÿช‚", "parrot": "๐Ÿฆœ", - "part_alternation_mark": "ใ€ฝ", - "partly_sunny": "โ›…", - "partying_face": "๐Ÿฅณ", - "passenger_ship": "๐Ÿ›ณ", - "passport_control": "๐Ÿ›‚", - "pause_button": "โธ๏ธ", - "peace": "โ˜ฎ", - "peace_symbol": "โ˜ฎ๏ธ", + "part alternation mark": "ใ€ฝ๏ธ", + "party popper": "๐ŸŽ‰", + "partying face": "๐Ÿฅณ", + "passenger ship": "๐Ÿ›ณ๏ธ", + "passport control": "๐Ÿ›‚", + "pause button": "โธ๏ธ", + "paw prints": "๐Ÿพ", + "peace symbol": "โ˜ฎ๏ธ", "peach": "๐Ÿ‘", "peacock": "๐Ÿฆš", "peanuts": "๐Ÿฅœ", "pear": "๐Ÿ", - "pen": "๐Ÿ–Š", - "pencil": "๐Ÿ“", - "pencil2": "โœ", + "pen": "๐Ÿ–Š๏ธ", + "pencil": "โœ๏ธ", "penguin": "๐Ÿง", - "pensive": "๐Ÿ˜”", - "people_with_bunny_ears_partying": "๐Ÿ‘ฏ", - "people_wrestling": "๐Ÿคผ", - "performing_arts": "๐ŸŽญ", - "persevere": "๐Ÿ˜ฃ", + "pensive face": "๐Ÿ˜”", + "people holding hands": "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘", + "people holding hands dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "people holding hands dark skin tone light skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "people holding hands dark skin tone medium dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "people holding hands dark skin tone medium light skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "people holding hands dark skin tone medium skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "people holding hands light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "people holding hands light skin tone dark skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "people holding hands light skin tone medium dark skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "people holding hands light skin tone medium light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "people holding hands light skin tone medium skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "people holding hands medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "people holding hands medium dark skin tone dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "people holding hands medium dark skin tone light skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "people holding hands medium dark skin tone medium light skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "people holding hands medium dark skin tone medium skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "people holding hands medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "people holding hands medium light skin tone dark skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "people holding hands medium light skin tone light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "people holding hands medium light skin tone medium dark skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "people holding hands medium light skin tone medium skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "people holding hands medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "people holding hands medium skin tone dark skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "people holding hands medium skin tone light skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "people holding hands medium skin tone medium dark skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "people holding hands medium skin tone medium light skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "people hugging": "๐Ÿซ‚", + "people with bunny ears": "๐Ÿ‘ฏ", + "people wrestling": "๐Ÿคผ", + "performing arts": "๐ŸŽญ", + "persevering face": "๐Ÿ˜ฃ", "person": "๐Ÿง‘", - "person_biking": "๐Ÿšด", - "person_bouncing_ball": "โ›น๏ธ", - "person_bowing": "๐Ÿ™‡", - "person_cartwheeling": "๐Ÿคธ", - "person_climbing": "๐Ÿง—", - "person_doing_cartwheel": "๐Ÿคธ", - "person_facepalming": "๐Ÿคฆ", - "person_fencing": "๐Ÿคบ", - "person_frowning": "๐Ÿ™", - "person_gesturing_no": "๐Ÿ™…", - "person_gesturing_ok": "๐Ÿ™†", - "person_getting_haircut": "๐Ÿ’‡", - "person_getting_massage": "๐Ÿ’†", - "person_in_lotus_position": "๐Ÿง˜", - "person_in_steamy_room": "๐Ÿง–", - "person_juggling": "๐Ÿคน", - "person_kneeling": "๐ŸงŽ", - "person_mountain_biking": "๐Ÿšต", - "person_playing_handball": "๐Ÿคพ", - "person_playing_water_polo": "๐Ÿคฝ", - "person_pouting": "๐Ÿ™Ž", - "person_raising_hand": "๐Ÿ™‹", - "person_rowing_boat": "๐Ÿšฃ", - "person_running": "๐Ÿƒ", - "person_shrugging": "๐Ÿคท", - "person_standing": "๐Ÿง", - "person_surfing": "๐Ÿ„", - "person_swimming": "๐ŸŠ", - "person_tipping_hand": "๐Ÿ’", - "person_walking": "๐Ÿšถ", - "person_wearing_turban": "๐Ÿ‘ณ", - "person_with_blond_hair": "๐Ÿ‘ฑ", - "person_with_pouting_face": "๐Ÿ™Ž", - "petri_dish": "๐Ÿงซ", + "person bald": "๐Ÿง‘โ€๐Ÿฆฒ", + "person beard": "๐Ÿง”", + "person biking": "๐Ÿšด", + "person biking dark skin tone": "๐Ÿšด๐Ÿฟ", + "person biking light skin tone": "๐Ÿšด๐Ÿป", + "person biking medium dark skin tone": "๐Ÿšด๐Ÿพ", + "person biking medium light skin tone": "๐Ÿšด๐Ÿผ", + "person biking medium skin tone": "๐Ÿšด๐Ÿฝ", + "person blond hair": "๐Ÿ‘ฑ", + "person bouncing ball": "โ›น๏ธ", + "person bouncing ball dark skin tone": "โ›น๐Ÿฟ", + "person bouncing ball light skin tone": "โ›น๐Ÿป", + "person bouncing ball medium dark skin tone": "โ›น๐Ÿพ", + "person bouncing ball medium light skin tone": "โ›น๐Ÿผ", + "person bouncing ball medium skin tone": "โ›น๐Ÿฝ", + "person bowing": "๐Ÿ™‡", + "person bowing dark skin tone": "๐Ÿ™‡๐Ÿฟ", + "person bowing light skin tone": "๐Ÿ™‡๐Ÿป", + "person bowing medium dark skin tone": "๐Ÿ™‡๐Ÿพ", + "person bowing medium light skin tone": "๐Ÿ™‡๐Ÿผ", + "person bowing medium skin tone": "๐Ÿ™‡๐Ÿฝ", + "person cartwheeling": "๐Ÿคธ", + "person cartwheeling dark skin tone": "๐Ÿคธ๐Ÿฟ", + "person cartwheeling light skin tone": "๐Ÿคธ๐Ÿป", + "person cartwheeling medium dark skin tone": "๐Ÿคธ๐Ÿพ", + "person cartwheeling medium light skin tone": "๐Ÿคธ๐Ÿผ", + "person cartwheeling medium skin tone": "๐Ÿคธ๐Ÿฝ", + "person climbing": "๐Ÿง—", + "person climbing dark skin tone": "๐Ÿง—๐Ÿฟ", + "person climbing light skin tone": "๐Ÿง—๐Ÿป", + "person climbing medium dark skin tone": "๐Ÿง—๐Ÿพ", + "person climbing medium light skin tone": "๐Ÿง—๐Ÿผ", + "person climbing medium skin tone": "๐Ÿง—๐Ÿฝ", + "person curly hair": "๐Ÿง‘โ€๐Ÿฆฑ", + "person dark skin tone": "๐Ÿง‘๐Ÿฟ", + "person dark skin tone bald": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฒ", + "person dark skin tone beard": "๐Ÿง”๐Ÿฟ", + "person dark skin tone blond hair": "๐Ÿ‘ฑ๐Ÿฟ", + "person dark skin tone curly hair": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฑ", + "person dark skin tone red hair": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฐ", + "person dark skin tone white hair": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆณ", + "person facepalming": "๐Ÿคฆ", + "person facepalming dark skin tone": "๐Ÿคฆ๐Ÿฟ", + "person facepalming light skin tone": "๐Ÿคฆ๐Ÿป", + "person facepalming medium dark skin tone": "๐Ÿคฆ๐Ÿพ", + "person facepalming medium light skin tone": "๐Ÿคฆ๐Ÿผ", + "person facepalming medium skin tone": "๐Ÿคฆ๐Ÿฝ", + "person feeding baby": "๐Ÿง‘โ€๐Ÿผ", + "person feeding baby dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿผ", + "person feeding baby light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿผ", + "person feeding baby medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿผ", + "person feeding baby medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿผ", + "person feeding baby medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿผ", + "person fencing": "๐Ÿคบ", + "person frowning": "๐Ÿ™", + "person frowning dark skin tone": "๐Ÿ™๐Ÿฟ", + "person frowning light skin tone": "๐Ÿ™๐Ÿป", + "person frowning medium dark skin tone": "๐Ÿ™๐Ÿพ", + "person frowning medium light skin tone": "๐Ÿ™๐Ÿผ", + "person frowning medium skin tone": "๐Ÿ™๐Ÿฝ", + "person gesturing NO": "๐Ÿ™…", + "person gesturing NO dark skin tone": "๐Ÿ™…๐Ÿฟ", + "person gesturing NO light skin tone": "๐Ÿ™…๐Ÿป", + "person gesturing NO medium dark skin tone": "๐Ÿ™…๐Ÿพ", + "person gesturing NO medium light skin tone": "๐Ÿ™…๐Ÿผ", + "person gesturing NO medium skin tone": "๐Ÿ™…๐Ÿฝ", + "person gesturing OK": "๐Ÿ™†", + "person gesturing OK dark skin tone": "๐Ÿ™†๐Ÿฟ", + "person gesturing OK light skin tone": "๐Ÿ™†๐Ÿป", + "person gesturing OK medium dark skin tone": "๐Ÿ™†๐Ÿพ", + "person gesturing OK medium light skin tone": "๐Ÿ™†๐Ÿผ", + "person gesturing OK medium skin tone": "๐Ÿ™†๐Ÿฝ", + "person getting haircut": "๐Ÿ’‡", + "person getting haircut dark skin tone": "๐Ÿ’‡๐Ÿฟ", + "person getting haircut light skin tone": "๐Ÿ’‡๐Ÿป", + "person getting haircut medium dark skin tone": "๐Ÿ’‡๐Ÿพ", + "person getting haircut medium light skin tone": "๐Ÿ’‡๐Ÿผ", + "person getting haircut medium skin tone": "๐Ÿ’‡๐Ÿฝ", + "person getting massage": "๐Ÿ’†", + "person getting massage dark skin tone": "๐Ÿ’†๐Ÿฟ", + "person getting massage light skin tone": "๐Ÿ’†๐Ÿป", + "person getting massage medium dark skin tone": "๐Ÿ’†๐Ÿพ", + "person getting massage medium light skin tone": "๐Ÿ’†๐Ÿผ", + "person getting massage medium skin tone": "๐Ÿ’†๐Ÿฝ", + "person golfing": "๐ŸŒ๏ธ", + "person golfing dark skin tone": "๐ŸŒ๐Ÿฟ", + "person golfing light skin tone": "๐ŸŒ๐Ÿป", + "person golfing medium dark skin tone": "๐ŸŒ๐Ÿพ", + "person golfing medium light skin tone": "๐ŸŒ๐Ÿผ", + "person golfing medium skin tone": "๐ŸŒ๐Ÿฝ", + "person in bed": "๐Ÿ›Œ", + "person in bed dark skin tone": "๐Ÿ›Œ๐Ÿฟ", + "person in bed light skin tone": "๐Ÿ›Œ๐Ÿป", + "person in bed medium dark skin tone": "๐Ÿ›Œ๐Ÿพ", + "person in bed medium light skin tone": "๐Ÿ›Œ๐Ÿผ", + "person in bed medium skin tone": "๐Ÿ›Œ๐Ÿฝ", + "person in lotus position": "๐Ÿง˜", + "person in lotus position dark skin tone": "๐Ÿง˜๐Ÿฟ", + "person in lotus position light skin tone": "๐Ÿง˜๐Ÿป", + "person in lotus position medium dark skin tone": "๐Ÿง˜๐Ÿพ", + "person in lotus position medium light skin tone": "๐Ÿง˜๐Ÿผ", + "person in lotus position medium skin tone": "๐Ÿง˜๐Ÿฝ", + "person in manual wheelchair": "๐Ÿง‘โ€๐Ÿฆฝ", + "person in manual wheelchair dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ", + "person in manual wheelchair light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ", + "person in manual wheelchair medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ", + "person in manual wheelchair medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ", + "person in manual wheelchair medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ", + "person in motorized wheelchair": "๐Ÿง‘โ€๐Ÿฆผ", + "person in motorized wheelchair dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ", + "person in motorized wheelchair light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿฆผ", + "person in motorized wheelchair medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿฆผ", + "person in motorized wheelchair medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿฆผ", + "person in motorized wheelchair medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ", + "person in steamy room": "๐Ÿง–", + "person in steamy room dark skin tone": "๐Ÿง–๐Ÿฟ", + "person in steamy room light skin tone": "๐Ÿง–๐Ÿป", + "person in steamy room medium dark skin tone": "๐Ÿง–๐Ÿพ", + "person in steamy room medium light skin tone": "๐Ÿง–๐Ÿผ", + "person in steamy room medium skin tone": "๐Ÿง–๐Ÿฝ", + "person in suit levitating": "๐Ÿ•ด๏ธ", + "person in suit levitating dark skin tone": "๐Ÿ•ด๐Ÿฟ", + "person in suit levitating light skin tone": "๐Ÿ•ด๐Ÿป", + "person in suit levitating medium dark skin tone": "๐Ÿ•ด๐Ÿพ", + "person in suit levitating medium light skin tone": "๐Ÿ•ด๐Ÿผ", + "person in suit levitating medium skin tone": "๐Ÿ•ด๐Ÿฝ", + "person in tuxedo": "๐Ÿคต", + "person in tuxedo dark skin tone": "๐Ÿคต๐Ÿฟ", + "person in tuxedo light skin tone": "๐Ÿคต๐Ÿป", + "person in tuxedo medium dark skin tone": "๐Ÿคต๐Ÿพ", + "person in tuxedo medium light skin tone": "๐Ÿคต๐Ÿผ", + "person in tuxedo medium skin tone": "๐Ÿคต๐Ÿฝ", + "person juggling": "๐Ÿคน", + "person juggling dark skin tone": "๐Ÿคน๐Ÿฟ", + "person juggling light skin tone": "๐Ÿคน๐Ÿป", + "person juggling medium dark skin tone": "๐Ÿคน๐Ÿพ", + "person juggling medium light skin tone": "๐Ÿคน๐Ÿผ", + "person juggling medium skin tone": "๐Ÿคน๐Ÿฝ", + "person kneeling": "๐ŸงŽ", + "person kneeling dark skin tone": "๐ŸงŽ๐Ÿฟ", + "person kneeling light skin tone": "๐ŸงŽ๐Ÿป", + "person kneeling medium dark skin tone": "๐ŸงŽ๐Ÿพ", + "person kneeling medium light skin tone": "๐ŸงŽ๐Ÿผ", + "person kneeling medium skin tone": "๐ŸงŽ๐Ÿฝ", + "person lifting weights": "๐Ÿ‹๏ธ", + "person lifting weights dark skin tone": "๐Ÿ‹๐Ÿฟ", + "person lifting weights light skin tone": "๐Ÿ‹๐Ÿป", + "person lifting weights medium dark skin tone": "๐Ÿ‹๐Ÿพ", + "person lifting weights medium light skin tone": "๐Ÿ‹๐Ÿผ", + "person lifting weights medium skin tone": "๐Ÿ‹๐Ÿฝ", + "person light skin tone": "๐Ÿง‘๐Ÿป", + "person light skin tone bald": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฒ", + "person light skin tone beard": "๐Ÿง”๐Ÿป", + "person light skin tone blond hair": "๐Ÿ‘ฑ๐Ÿป", + "person light skin tone curly hair": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฑ", + "person light skin tone red hair": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฐ", + "person light skin tone white hair": "๐Ÿง‘๐Ÿปโ€๐Ÿฆณ", + "person medium dark skin tone": "๐Ÿง‘๐Ÿพ", + "person medium dark skin tone bald": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฒ", + "person medium dark skin tone beard": "๐Ÿง”๐Ÿพ", + "person medium dark skin tone blond hair": "๐Ÿ‘ฑ๐Ÿพ", + "person medium dark skin tone curly hair": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฑ", + "person medium dark skin tone red hair": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฐ", + "person medium dark skin tone white hair": "๐Ÿง‘๐Ÿพโ€๐Ÿฆณ", + "person medium light skin tone": "๐Ÿง‘๐Ÿผ", + "person medium light skin tone bald": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฒ", + "person medium light skin tone beard": "๐Ÿง”๐Ÿผ", + "person medium light skin tone blond hair": "๐Ÿ‘ฑ๐Ÿผ", + "person medium light skin tone curly hair": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฑ", + "person medium light skin tone red hair": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฐ", + "person medium light skin tone white hair": "๐Ÿง‘๐Ÿผโ€๐Ÿฆณ", + "person medium skin tone": "๐Ÿง‘๐Ÿฝ", + "person medium skin tone bald": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฒ", + "person medium skin tone beard": "๐Ÿง”๐Ÿฝ", + "person medium skin tone blond hair": "๐Ÿ‘ฑ๐Ÿฝ", + "person medium skin tone curly hair": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฑ", + "person medium skin tone red hair": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฐ", + "person medium skin tone white hair": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆณ", + "person mountain biking": "๐Ÿšต", + "person mountain biking dark skin tone": "๐Ÿšต๐Ÿฟ", + "person mountain biking light skin tone": "๐Ÿšต๐Ÿป", + "person mountain biking medium dark skin tone": "๐Ÿšต๐Ÿพ", + "person mountain biking medium light skin tone": "๐Ÿšต๐Ÿผ", + "person mountain biking medium skin tone": "๐Ÿšต๐Ÿฝ", + "person playing handball": "๐Ÿคพ", + "person playing handball dark skin tone": "๐Ÿคพ๐Ÿฟ", + "person playing handball light skin tone": "๐Ÿคพ๐Ÿป", + "person playing handball medium dark skin tone": "๐Ÿคพ๐Ÿพ", + "person playing handball medium light skin tone": "๐Ÿคพ๐Ÿผ", + "person playing handball medium skin tone": "๐Ÿคพ๐Ÿฝ", + "person playing water polo": "๐Ÿคฝ", + "person playing water polo dark skin tone": "๐Ÿคฝ๐Ÿฟ", + "person playing water polo light skin tone": "๐Ÿคฝ๐Ÿป", + "person playing water polo medium dark skin tone": "๐Ÿคฝ๐Ÿพ", + "person playing water polo medium light skin tone": "๐Ÿคฝ๐Ÿผ", + "person playing water polo medium skin tone": "๐Ÿคฝ๐Ÿฝ", + "person pouting": "๐Ÿ™Ž", + "person pouting dark skin tone": "๐Ÿ™Ž๐Ÿฟ", + "person pouting light skin tone": "๐Ÿ™Ž๐Ÿป", + "person pouting medium dark skin tone": "๐Ÿ™Ž๐Ÿพ", + "person pouting medium light skin tone": "๐Ÿ™Ž๐Ÿผ", + "person pouting medium skin tone": "๐Ÿ™Ž๐Ÿฝ", + "person raising hand": "๐Ÿ™‹", + "person raising hand dark skin tone": "๐Ÿ™‹๐Ÿฟ", + "person raising hand light skin tone": "๐Ÿ™‹๐Ÿป", + "person raising hand medium dark skin tone": "๐Ÿ™‹๐Ÿพ", + "person raising hand medium light skin tone": "๐Ÿ™‹๐Ÿผ", + "person raising hand medium skin tone": "๐Ÿ™‹๐Ÿฝ", + "person red hair": "๐Ÿง‘โ€๐Ÿฆฐ", + "person rowing boat": "๐Ÿšฃ", + "person rowing boat dark skin tone": "๐Ÿšฃ๐Ÿฟ", + "person rowing boat light skin tone": "๐Ÿšฃ๐Ÿป", + "person rowing boat medium dark skin tone": "๐Ÿšฃ๐Ÿพ", + "person rowing boat medium light skin tone": "๐Ÿšฃ๐Ÿผ", + "person rowing boat medium skin tone": "๐Ÿšฃ๐Ÿฝ", + "person running": "๐Ÿƒ", + "person running dark skin tone": "๐Ÿƒ๐Ÿฟ", + "person running light skin tone": "๐Ÿƒ๐Ÿป", + "person running medium dark skin tone": "๐Ÿƒ๐Ÿพ", + "person running medium light skin tone": "๐Ÿƒ๐Ÿผ", + "person running medium skin tone": "๐Ÿƒ๐Ÿฝ", + "person shrugging": "๐Ÿคท", + "person shrugging dark skin tone": "๐Ÿคท๐Ÿฟ", + "person shrugging light skin tone": "๐Ÿคท๐Ÿป", + "person shrugging medium dark skin tone": "๐Ÿคท๐Ÿพ", + "person shrugging medium light skin tone": "๐Ÿคท๐Ÿผ", + "person shrugging medium skin tone": "๐Ÿคท๐Ÿฝ", + "person standing": "๐Ÿง", + "person standing dark skin tone": "๐Ÿง๐Ÿฟ", + "person standing light skin tone": "๐Ÿง๐Ÿป", + "person standing medium dark skin tone": "๐Ÿง๐Ÿพ", + "person standing medium light skin tone": "๐Ÿง๐Ÿผ", + "person standing medium skin tone": "๐Ÿง๐Ÿฝ", + "person surfing": "๐Ÿ„", + "person surfing dark skin tone": "๐Ÿ„๐Ÿฟ", + "person surfing light skin tone": "๐Ÿ„๐Ÿป", + "person surfing medium dark skin tone": "๐Ÿ„๐Ÿพ", + "person surfing medium light skin tone": "๐Ÿ„๐Ÿผ", + "person surfing medium skin tone": "๐Ÿ„๐Ÿฝ", + "person swimming": "๐ŸŠ", + "person swimming dark skin tone": "๐ŸŠ๐Ÿฟ", + "person swimming light skin tone": "๐ŸŠ๐Ÿป", + "person swimming medium dark skin tone": "๐ŸŠ๐Ÿพ", + "person swimming medium light skin tone": "๐ŸŠ๐Ÿผ", + "person swimming medium skin tone": "๐ŸŠ๐Ÿฝ", + "person taking bath": "๐Ÿ›€", + "person taking bath dark skin tone": "๐Ÿ›€๐Ÿฟ", + "person taking bath light skin tone": "๐Ÿ›€๐Ÿป", + "person taking bath medium dark skin tone": "๐Ÿ›€๐Ÿพ", + "person taking bath medium light skin tone": "๐Ÿ›€๐Ÿผ", + "person taking bath medium skin tone": "๐Ÿ›€๐Ÿฝ", + "person tipping hand": "๐Ÿ’", + "person tipping hand dark skin tone": "๐Ÿ’๐Ÿฟ", + "person tipping hand light skin tone": "๐Ÿ’๐Ÿป", + "person tipping hand medium dark skin tone": "๐Ÿ’๐Ÿพ", + "person tipping hand medium light skin tone": "๐Ÿ’๐Ÿผ", + "person tipping hand medium skin tone": "๐Ÿ’๐Ÿฝ", + "person walking": "๐Ÿšถ", + "person walking dark skin tone": "๐Ÿšถ๐Ÿฟ", + "person walking light skin tone": "๐Ÿšถ๐Ÿป", + "person walking medium dark skin tone": "๐Ÿšถ๐Ÿพ", + "person walking medium light skin tone": "๐Ÿšถ๐Ÿผ", + "person walking medium skin tone": "๐Ÿšถ๐Ÿฝ", + "person wearing turban": "๐Ÿ‘ณ", + "person wearing turban dark skin tone": "๐Ÿ‘ณ๐Ÿฟ", + "person wearing turban light skin tone": "๐Ÿ‘ณ๐Ÿป", + "person wearing turban medium dark skin tone": "๐Ÿ‘ณ๐Ÿพ", + "person wearing turban medium light skin tone": "๐Ÿ‘ณ๐Ÿผ", + "person wearing turban medium skin tone": "๐Ÿ‘ณ๐Ÿฝ", + "person white hair": "๐Ÿง‘โ€๐Ÿฆณ", + "person with crown": "๐Ÿซ…", + "person with crown dark skin tone": "๐Ÿซ…๐Ÿฟ", + "person with crown light skin tone": "๐Ÿซ…๐Ÿป", + "person with crown medium dark skin tone": "๐Ÿซ…๐Ÿพ", + "person with crown medium light skin tone": "๐Ÿซ…๐Ÿผ", + "person with crown medium skin tone": "๐Ÿซ…๐Ÿฝ", + "person with skullcap": "๐Ÿ‘ฒ", + "person with skullcap dark skin tone": "๐Ÿ‘ฒ๐Ÿฟ", + "person with skullcap light skin tone": "๐Ÿ‘ฒ๐Ÿป", + "person with skullcap medium dark skin tone": "๐Ÿ‘ฒ๐Ÿพ", + "person with skullcap medium light skin tone": "๐Ÿ‘ฒ๐Ÿผ", + "person with skullcap medium skin tone": "๐Ÿ‘ฒ๐Ÿฝ", + "person with veil": "๐Ÿ‘ฐ", + "person with veil dark skin tone": "๐Ÿ‘ฐ๐Ÿฟ", + "person with veil light skin tone": "๐Ÿ‘ฐ๐Ÿป", + "person with veil medium dark skin tone": "๐Ÿ‘ฐ๐Ÿพ", + "person with veil medium light skin tone": "๐Ÿ‘ฐ๐Ÿผ", + "person with veil medium skin tone": "๐Ÿ‘ฐ๐Ÿฝ", + "person with white cane": "๐Ÿง‘โ€๐Ÿฆฏ", + "person with white cane dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ", + "person with white cane light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ", + "person with white cane medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ", + "person with white cane medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ", + "person with white cane medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ", + "petri dish": "๐Ÿงซ", "pick": "โ›๏ธ", + "pickup truck": "๐Ÿ›ป", "pie": "๐Ÿฅง", - "pig": "๐Ÿท", - "pig2": "๐Ÿ–", - "pig_nose": "๐Ÿฝ", + "pig": "๐Ÿ–", + "pig face": "๐Ÿท", + "pig nose": "๐Ÿฝ", + "pile of poo": "๐Ÿ’ฉ", "pill": "๐Ÿ’Š", - "pinching_hand": "๐Ÿค", + "pilot": "๐Ÿง‘โ€โœˆ๏ธ", + "pilot dark skin tone": "๐Ÿง‘๐Ÿฟโ€โœˆ๏ธ", + "pilot light skin tone": "๐Ÿง‘๐Ÿปโ€โœˆ๏ธ", + "pilot medium dark skin tone": "๐Ÿง‘๐Ÿพโ€โœˆ๏ธ", + "pilot medium light skin tone": "๐Ÿง‘๐Ÿผโ€โœˆ๏ธ", + "pilot medium skin tone": "๐Ÿง‘๐Ÿฝโ€โœˆ๏ธ", + "pinched fingers": "๐ŸคŒ", + "pinched fingers dark skin tone": "๐ŸคŒ๐Ÿฟ", + "pinched fingers light skin tone": "๐ŸคŒ๐Ÿป", + "pinched fingers medium dark skin tone": "๐ŸคŒ๐Ÿพ", + "pinched fingers medium light skin tone": "๐ŸคŒ๐Ÿผ", + "pinched fingers medium skin tone": "๐ŸคŒ๐Ÿฝ", + "pinching hand": "๐Ÿค", + "pinching hand dark skin tone": "๐Ÿค๐Ÿฟ", + "pinching hand light skin tone": "๐Ÿค๐Ÿป", + "pinching hand medium dark skin tone": "๐Ÿค๐Ÿพ", + "pinching hand medium light skin tone": "๐Ÿค๐Ÿผ", + "pinching hand medium skin tone": "๐Ÿค๐Ÿฝ", + "pine decoration": "๐ŸŽ", "pineapple": "๐Ÿ", - "ping_pong": "๐Ÿ“", - "pisces": "โ™“", + "ping pong": "๐Ÿ“", + "pirate flag": "๐Ÿดโ€โ˜ ๏ธ", "pizza": "๐Ÿ•", - "place_of_worship": "๐Ÿ›", - "play_button": "โ–ถ", - "play_or_pause_button": "โฏ๏ธ", - "play_pause": "โฏ", - "pleading_face": "๐Ÿฅบ", - "point_down": "๐Ÿ‘‡", - "point_left": "๐Ÿ‘ˆ", - "point_right": "๐Ÿ‘‰", - "point_up": "โ˜๏ธ", - "point_up_2": "๐Ÿ‘†", - "police_car": "๐Ÿš“", - "police_officer": "๐Ÿ‘ฎ", + "piรฑata": "๐Ÿช…", + "placard": "๐Ÿชง", + "place of worship": "๐Ÿ›", + "play button": "โ–ถ๏ธ", + "play or pause button": "โฏ๏ธ", + "playground slide": "๐Ÿ›", + "pleading face": "๐Ÿฅบ", + "plunger": "๐Ÿช ", + "plus": "โž•", + "polar bear": "๐Ÿปโ€โ„๏ธ", + "police car": "๐Ÿš“", + "police car light": "๐Ÿšจ", + "police officer": "๐Ÿ‘ฎ", + "police officer dark skin tone": "๐Ÿ‘ฎ๐Ÿฟ", + "police officer light skin tone": "๐Ÿ‘ฎ๐Ÿป", + "police officer medium dark skin tone": "๐Ÿ‘ฎ๐Ÿพ", + "police officer medium light skin tone": "๐Ÿ‘ฎ๐Ÿผ", + "police officer medium skin tone": "๐Ÿ‘ฎ๐Ÿฝ", "poodle": "๐Ÿฉ", - "poop": "๐Ÿ’ฉ", + "pool 8 ball": "๐ŸŽฑ", "popcorn": "๐Ÿฟ", - "post_office": "๐Ÿฃ", - "postal_horn": "๐Ÿ“ฏ", + "post office": "๐Ÿค", + "postal horn": "๐Ÿ“ฏ", "postbox": "๐Ÿ“ฎ", - "potable_water": "๐Ÿšฐ", + "pot of food": "๐Ÿฒ", + "potable water": "๐Ÿšฐ", "potato": "๐Ÿฅ”", - "pouch": "๐Ÿ‘", - "poultry_leg": "๐Ÿ—", - "pound": "๐Ÿ’ท", - "pouting_cat": "๐Ÿ˜พ", - "pray": "๐Ÿ™", - "prayer_beads": "๐Ÿ“ฟ", - "pregnant_woman": "๐Ÿคฐ", + "potted plant": "๐Ÿชด", + "poultry leg": "๐Ÿ—", + "pound banknote": "๐Ÿ’ท", + "pouring liquid": "๐Ÿซ—", + "pouting cat": "๐Ÿ˜พ", + "pouting face": "๐Ÿ˜ก", + "prayer beads": "๐Ÿ“ฟ", + "pregnant man": "๐Ÿซƒ", + "pregnant man dark skin tone": "๐Ÿซƒ๐Ÿฟ", + "pregnant man light skin tone": "๐Ÿซƒ๐Ÿป", + "pregnant man medium dark skin tone": "๐Ÿซƒ๐Ÿพ", + "pregnant man medium light skin tone": "๐Ÿซƒ๐Ÿผ", + "pregnant man medium skin tone": "๐Ÿซƒ๐Ÿฝ", + "pregnant person": "๐Ÿซ„", + "pregnant person dark skin tone": "๐Ÿซ„๐Ÿฟ", + "pregnant person light skin tone": "๐Ÿซ„๐Ÿป", + "pregnant person medium dark skin tone": "๐Ÿซ„๐Ÿพ", + "pregnant person medium light skin tone": "๐Ÿซ„๐Ÿผ", + "pregnant person medium skin tone": "๐Ÿซ„๐Ÿฝ", + "pregnant woman": "๐Ÿคฐ", + "pregnant woman dark skin tone": "๐Ÿคฐ๐Ÿฟ", + "pregnant woman light skin tone": "๐Ÿคฐ๐Ÿป", + "pregnant woman medium dark skin tone": "๐Ÿคฐ๐Ÿพ", + "pregnant woman medium light skin tone": "๐Ÿคฐ๐Ÿผ", + "pregnant woman medium skin tone": "๐Ÿคฐ๐Ÿฝ", "pretzel": "๐Ÿฅจ", "prince": "๐Ÿคด", + "prince dark skin tone": "๐Ÿคด๐Ÿฟ", + "prince light skin tone": "๐Ÿคด๐Ÿป", + "prince medium dark skin tone": "๐Ÿคด๐Ÿพ", + "prince medium light skin tone": "๐Ÿคด๐Ÿผ", + "prince medium skin tone": "๐Ÿคด๐Ÿฝ", "princess": "๐Ÿ‘ธ", - "printer": "๐Ÿ–จ", - "probing_cane": "๐Ÿฆฏ", - "punch": "๐Ÿ‘Š", - "purple_circle": "๐ŸŸฃ", - "purple_heart": "๐Ÿ’œ", + "princess dark skin tone": "๐Ÿ‘ธ๐Ÿฟ", + "princess light skin tone": "๐Ÿ‘ธ๐Ÿป", + "princess medium dark skin tone": "๐Ÿ‘ธ๐Ÿพ", + "princess medium light skin tone": "๐Ÿ‘ธ๐Ÿผ", + "princess medium skin tone": "๐Ÿ‘ธ๐Ÿฝ", + "printer": "๐Ÿ–จ๏ธ", + "prohibited": "๐Ÿšซ", + "purple circle": "๐ŸŸฃ", + "purple heart": "๐Ÿ’œ", + "purple square": "๐ŸŸช", "purse": "๐Ÿ‘›", "pushpin": "๐Ÿ“Œ", - "put_litter_in_its_place": "๐Ÿšฎ", - "puzzle_piece": "๐Ÿงฉ", - "question": "โ“", - "rabbit": "๐Ÿฐ", - "rabbit2": "๐Ÿ‡", + "puzzle piece": "๐Ÿงฉ", + "rabbit": "๐Ÿ‡", + "rabbit face": "๐Ÿฐ", "raccoon": "๐Ÿฆ", - "racehorse": "๐ŸŽ", - "racing_car": "๐ŸŽ", + "racing car": "๐ŸŽ๏ธ", "radio": "๐Ÿ“ป", - "radio_button": "๐Ÿ”˜", + "radio button": "๐Ÿ”˜", "radioactive": "โ˜ข๏ธ", - "rage": "๐Ÿ˜ก", - "railway_car": "๐Ÿšƒ", - "railway_track": "๐Ÿ›ค", + "railway car": "๐Ÿšƒ", + "railway track": "๐Ÿ›ค๏ธ", "rainbow": "๐ŸŒˆ", - "raised_back_of_hand": "๐Ÿคš", - "raised_hand": "โœ‹", - "raised_hands": "๐Ÿ™Œ", - "raising_hand": "๐Ÿ™‹", + "rainbow flag": "๐Ÿณ๏ธโ€๐ŸŒˆ", + "raised back of hand": "๐Ÿคš", + "raised back of hand dark skin tone": "๐Ÿคš๐Ÿฟ", + "raised back of hand light skin tone": "๐Ÿคš๐Ÿป", + "raised back of hand medium dark skin tone": "๐Ÿคš๐Ÿพ", + "raised back of hand medium light skin tone": "๐Ÿคš๐Ÿผ", + "raised back of hand medium skin tone": "๐Ÿคš๐Ÿฝ", + "raised fist": "โœŠ", + "raised fist dark skin tone": "โœŠ๐Ÿฟ", + "raised fist light skin tone": "โœŠ๐Ÿป", + "raised fist medium dark skin tone": "โœŠ๐Ÿพ", + "raised fist medium light skin tone": "โœŠ๐Ÿผ", + "raised fist medium skin tone": "โœŠ๐Ÿฝ", + "raised hand": "โœ‹", + "raised hand dark skin tone": "โœ‹๐Ÿฟ", + "raised hand light skin tone": "โœ‹๐Ÿป", + "raised hand medium dark skin tone": "โœ‹๐Ÿพ", + "raised hand medium light skin tone": "โœ‹๐Ÿผ", + "raised hand medium skin tone": "โœ‹๐Ÿฝ", + "raising hands": "๐Ÿ™Œ", + "raising hands dark skin tone": "๐Ÿ™Œ๐Ÿฟ", + "raising hands light skin tone": "๐Ÿ™Œ๐Ÿป", + "raising hands medium dark skin tone": "๐Ÿ™Œ๐Ÿพ", + "raising hands medium light skin tone": "๐Ÿ™Œ๐Ÿผ", + "raising hands medium skin tone": "๐Ÿ™Œ๐Ÿฝ", "ram": "๐Ÿ", - "ramen": "๐Ÿœ", "rat": "๐Ÿ€", "razor": "๐Ÿช’", "receipt": "๐Ÿงพ", - "record_button": "โบ๏ธ", - "recycle": "โ™ป", - "recycling_symbol": "โ™ป๏ธ", - "red_car": "๐Ÿš—", - "red_circle": "๐Ÿ”ด", - "red_envelope": "๐Ÿงง", - "red_hair": "๐Ÿฆฐ", - "red_heart": "โค", - "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": "๐Ÿ‡ฟ", - "registered": "ยฎ", - "relieved": "๐Ÿ˜Œ", - "reminder_ribbon": "๐ŸŽ—", - "repeat": "๐Ÿ”", - "repeat_one": "๐Ÿ”‚", - "rescue_workerโ€™s_helmet": "โ›‘๏ธ", + "record button": "โบ๏ธ", + "recycling symbol": "โ™ป๏ธ", + "red apple": "๐ŸŽ", + "red circle": "๐Ÿ”ด", + "red envelope": "๐Ÿงง", + "red exclamation mark": "โ—", + "red heart": "โค๏ธ", + "red paper lantern": "๐Ÿฎ", + "red question mark": "โ“", + "red square": "๐ŸŸฅ", + "red triangle pointed down": "๐Ÿ”ป", + "red triangle pointed up": "๐Ÿ”บ", + "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": "๐Ÿ‡ฟ", + "registered": "ยฎ๏ธ", + "relieved face": "๐Ÿ˜Œ", + "reminder ribbon": "๐ŸŽ—๏ธ", + "repeat button": "๐Ÿ”", + "repeat single button": "๐Ÿ”‚", + "rescue workerโ€™s helmet": "โ›‘๏ธ", "restroom": "๐Ÿšป", - "reverse_button": "โ—€", - "revolving_hearts": "๐Ÿ’ž", - "rewind": "โช", - "rhino": "๐Ÿฆ", + "reverse button": "โ—€๏ธ", + "revolving hearts": "๐Ÿ’ž", "rhinoceros": "๐Ÿฆ", "ribbon": "๐ŸŽ€", - "rice": "๐Ÿš", - "rice_ball": "๐Ÿ™", - "rice_cracker": "๐Ÿ˜", - "rice_scene": "๐ŸŽ‘", - "right_arrow": "โžก๏ธ", - "right_arrow_curving_down": "โคต", - "right_arrow_curving_left": "โ†ฉ", - "right_arrow_curving_up": "โคด", - "right_facing_fist": "๐Ÿคœ", - "rightfacing_fist": "๐Ÿคœ", + "rice ball": "๐Ÿ™", + "rice cracker": "๐Ÿ˜", + "right anger bubble": "๐Ÿ—ฏ๏ธ", + "right arrow": "โžก๏ธ", + "right arrow curving down": "โคต๏ธ", + "right arrow curving left": "โ†ฉ๏ธ", + "right arrow curving up": "โคด๏ธ", + "right facing fist": "๐Ÿคœ", + "right facing fist dark skin tone": "๐Ÿคœ๐Ÿฟ", + "right facing fist light skin tone": "๐Ÿคœ๐Ÿป", + "right facing fist medium dark skin tone": "๐Ÿคœ๐Ÿพ", + "right facing fist medium light skin tone": "๐Ÿคœ๐Ÿผ", + "right facing fist medium skin tone": "๐Ÿคœ๐Ÿฝ", + "rightwards hand": "๐Ÿซฑ", + "rightwards hand dark skin tone": "๐Ÿซฑ๐Ÿฟ", + "rightwards hand light skin tone": "๐Ÿซฑ๐Ÿป", + "rightwards hand medium dark skin tone": "๐Ÿซฑ๐Ÿพ", + "rightwards hand medium light skin tone": "๐Ÿซฑ๐Ÿผ", + "rightwards hand medium skin tone": "๐Ÿซฑ๐Ÿฝ", "ring": "๐Ÿ’", - "ringed_planet": "๐Ÿช", + "ring buoy": "๐Ÿ›Ÿ", + "ringed planet": "๐Ÿช", + "roasted sweet potato": "๐Ÿ ", "robot": "๐Ÿค–", + "rock": "๐Ÿชจ", "rocket": "๐Ÿš€", - "rofl": "๐Ÿคฃ", - "roll_of_paper": "๐Ÿงป", - "rolledup_newspaper": "๐Ÿ—ž", - "roller_coaster": "๐ŸŽข", - "rolling_eyes": "๐Ÿ™„", - "rolling_on_the_floor_laughing": "๐Ÿคฃ", + "roll of paper": "๐Ÿงป", + "rolled up newspaper": "๐Ÿ—ž๏ธ", + "roller coaster": "๐ŸŽข", + "roller skate": "๐Ÿ›ผ", + "rolling on the floor laughing": "๐Ÿคฃ", "rooster": "๐Ÿ“", "rose": "๐ŸŒน", - "rosette": "๐Ÿต", - "rotating_light": "๐Ÿšจ", - "round_pushpin": "๐Ÿ“", - "rowboat": "๐Ÿšฃ", - "rugby_football": "๐Ÿ‰", - "runner": "๐Ÿƒ", - "running_shirt_with_sash": "๐ŸŽฝ", - "safety_pin": "๐Ÿงท", - "safety_vest": "๐Ÿฆบ", - "sagittarius": "โ™", + "rosette": "๐Ÿต๏ธ", + "round pushpin": "๐Ÿ“", + "rugby football": "๐Ÿ‰", + "running shirt": "๐ŸŽฝ", + "running shoe": "๐Ÿ‘Ÿ", + "sad but relieved face": "๐Ÿ˜ฅ", + "safety pin": "๐Ÿงท", + "safety vest": "๐Ÿฆบ", "sailboat": "โ›ต", "sake": "๐Ÿถ", - "salad": "๐Ÿฅ—", "salt": "๐Ÿง‚", - "sandal": "๐Ÿ‘ก", + "saluting face": "๐Ÿซก", "sandwich": "๐Ÿฅช", - "santa": "๐ŸŽ…", "sari": "๐Ÿฅป", - "satellite": "๐Ÿ“ก", + "satellite": "๐Ÿ›ฐ๏ธ", + "satellite antenna": "๐Ÿ“ก", "sauropod": "๐Ÿฆ•", "saxophone": "๐ŸŽท", - "scales": "โš–", "scarf": "๐Ÿงฃ", "school": "๐Ÿซ", - "school_satchel": "๐ŸŽ’", - "scissors": "โœ‚", - "scooter": "๐Ÿ›ด", + "scientist": "๐Ÿง‘โ€๐Ÿ”ฌ", + "scientist dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿ”ฌ", + "scientist light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿ”ฌ", + "scientist medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿ”ฌ", + "scientist medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿ”ฌ", + "scientist medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿ”ฌ", + "scissors": "โœ‚๏ธ", "scorpion": "๐Ÿฆ‚", - "scorpius": "โ™", - "scream": "๐Ÿ˜ฑ", - "scream_cat": "๐Ÿ™€", + "screwdriver": "๐Ÿช›", "scroll": "๐Ÿ“œ", + "seal": "๐Ÿฆญ", "seat": "๐Ÿ’บ", - "second_place": "๐Ÿฅˆ", - "secret": "ใŠ™", - "see_no_evil": "๐Ÿ™ˆ", + "see no evil monkey": "๐Ÿ™ˆ", "seedling": "๐ŸŒฑ", "selfie": "๐Ÿคณ", - "seven": "7โƒฃ", - "shallow_pan_of_food": "๐Ÿฅ˜", + "selfie dark skin tone": "๐Ÿคณ๐Ÿฟ", + "selfie light skin tone": "๐Ÿคณ๐Ÿป", + "selfie medium dark skin tone": "๐Ÿคณ๐Ÿพ", + "selfie medium light skin tone": "๐Ÿคณ๐Ÿผ", + "selfie medium skin tone": "๐Ÿคณ๐Ÿฝ", + "service dog": "๐Ÿ•โ€๐Ÿฆบ", + "seven oโ€™clock": "๐Ÿ•–", + "seven thirty": "๐Ÿ•ข", + "sewing needle": "๐Ÿชก", + "shallow pan of food": "๐Ÿฅ˜", "shamrock": "โ˜˜๏ธ", "shark": "๐Ÿฆˆ", - "shaved_ice": "๐Ÿง", - "sheep": "๐Ÿ‘", - "shell": "๐Ÿš", - "shield": "๐Ÿ›ก", - "shinto_shrine": "โ›ฉ๏ธ", + "shaved ice": "๐Ÿง", + "sheaf of rice": "๐ŸŒพ", + "shield": "๐Ÿ›ก๏ธ", + "shinto shrine": "โ›ฉ๏ธ", "ship": "๐Ÿšข", - "shirt": "๐Ÿ‘•", - "shopping_bags": "๐Ÿ›", - "shopping_cart": "๐Ÿ›’", + "shooting star": "๐ŸŒ ", + "shopping bags": "๐Ÿ›๏ธ", + "shopping cart": "๐Ÿ›’", + "shortcake": "๐Ÿฐ", "shorts": "๐Ÿฉณ", "shower": "๐Ÿšฟ", "shrimp": "๐Ÿฆ", - "shushing_face": "๐Ÿคซ", - "sign_of_the_horns": "๐Ÿค˜", - "signal_strength": "๐Ÿ“ถ", - "six": "6โƒฃ", - "six_pointed_star": "๐Ÿ”ฏ", + "shuffle tracks button": "๐Ÿ”€", + "shushing face": "๐Ÿคซ", + "sign of the horns": "๐Ÿค˜", + "sign of the horns dark skin tone": "๐Ÿค˜๐Ÿฟ", + "sign of the horns light skin tone": "๐Ÿค˜๐Ÿป", + "sign of the horns medium dark skin tone": "๐Ÿค˜๐Ÿพ", + "sign of the horns medium light skin tone": "๐Ÿค˜๐Ÿผ", + "sign of the horns medium skin tone": "๐Ÿค˜๐Ÿฝ", + "singer": "๐Ÿง‘โ€๐ŸŽค", + "singer dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐ŸŽค", + "singer light skin tone": "๐Ÿง‘๐Ÿปโ€๐ŸŽค", + "singer medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐ŸŽค", + "singer medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐ŸŽค", + "singer medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐ŸŽค", + "six oโ€™clock": "๐Ÿ••", + "six thirty": "๐Ÿ•ก", "skateboard": "๐Ÿ›น", - "ski": "๐ŸŽฟ", "skier": "โ›ท๏ธ", + "skis": "๐ŸŽฟ", "skull": "๐Ÿ’€", - "skull_and_crossbones": "โ˜ ๏ธ", - "skull_crossbones": "โ˜ ", + "skull and crossbones": "โ˜ ๏ธ", "skunk": "๐Ÿฆจ", "sled": "๐Ÿ›ท", - "sleeping": "๐Ÿ˜ด", - "sleeping_accommodation": "๐Ÿ›Œ", - "sleepy": "๐Ÿ˜ช", - "slight_frown": "๐Ÿ™", - "slight_smile": "๐Ÿ™‚", - "slightly_frowning_face": "๐Ÿ™", - "slot_machine": "๐ŸŽฐ", + "sleeping face": "๐Ÿ˜ด", + "sleepy face": "๐Ÿ˜ช", + "slightly frowning face": "๐Ÿ™", + "slightly smiling face": "๐Ÿ™‚", + "slot machine": "๐ŸŽฐ", "sloth": "๐Ÿฆฅ", - "small_airplane": "๐Ÿ›ฉ", - "small_blue_diamond": "๐Ÿ”น", - "small_orange_diamond": "๐Ÿ”ธ", - "small_red_triangle": "๐Ÿ”บ", - "small_red_triangle_down": "๐Ÿ”ป", - "smile": "๐Ÿ˜„", - "smile_cat": "๐Ÿ˜ธ", - "smiley": "๐Ÿ˜ƒ", - "smiley_cat": "๐Ÿ˜บ", - "smiling": "โ˜บ๏ธ", - "smiling_face": "โ˜บ", - "smiling_face_with_hearts": "๐Ÿฅฐ", - "smiling_imp": "๐Ÿ˜ˆ", - "smirk": "๐Ÿ˜", - "smirk_cat": "๐Ÿ˜ผ", - "smoking": "๐Ÿšฌ", + "small airplane": "๐Ÿ›ฉ๏ธ", + "small blue diamond": "๐Ÿ”น", + "small orange diamond": "๐Ÿ”ธ", + "smiling cat with heart eyes": "๐Ÿ˜ป", + "smiling face": "โ˜บ๏ธ", + "smiling face with halo": "๐Ÿ˜‡", + "smiling face with heart eyes": "๐Ÿ˜", + "smiling face with hearts": "๐Ÿฅฐ", + "smiling face with horns": "๐Ÿ˜ˆ", + "smiling face with open hands": "๐Ÿค—", + "smiling face with smiling eyes": "๐Ÿ˜Š", + "smiling face with sunglasses": "๐Ÿ˜Ž", + "smiling face with tear": "๐Ÿฅฒ", + "smirking face": "๐Ÿ˜", "snail": "๐ŸŒ", "snake": "๐Ÿ", - "sneezing_face": "๐Ÿคง", + "sneezing face": "๐Ÿคง", + "snow capped mountain": "๐Ÿ”๏ธ", "snowboarder": "๐Ÿ‚", - "snowcapped_mountain": "๐Ÿ”", - "snowflake": "โ„", - "snowman": "โ›„", + "snowboarder dark skin tone": "๐Ÿ‚๐Ÿฟ", + "snowboarder light skin tone": "๐Ÿ‚๐Ÿป", + "snowboarder medium dark skin tone": "๐Ÿ‚๐Ÿพ", + "snowboarder medium light skin tone": "๐Ÿ‚๐Ÿผ", + "snowboarder medium skin tone": "๐Ÿ‚๐Ÿฝ", + "snowflake": "โ„๏ธ", + "snowman": "โ˜ƒ๏ธ", + "snowman without snow": "โ›„", "soap": "๐Ÿงผ", - "sob": "๐Ÿ˜ญ", - "soccer": "โšฝ", + "soccer ball": "โšฝ", "socks": "๐Ÿงฆ", + "soft ice cream": "๐Ÿฆ", "softball": "๐ŸฅŽ", - "soon": "๐Ÿ”œ", - "sos": "๐Ÿ†˜", - "sound": "๐Ÿ”‰", - "space_invader": "๐Ÿ‘พ", - "spade_suit": "โ™ ๏ธ", - "spades": "โ™ ", + "spade suit": "โ™ ๏ธ", "spaghetti": "๐Ÿ", - "sparkle": "โ‡", + "sparkle": "โ‡๏ธ", "sparkler": "๐ŸŽ‡", "sparkles": "โœจ", - "sparkling_heart": "๐Ÿ’–", - "speak_no_evil": "๐Ÿ™Š", - "speaker": "๐Ÿ”ˆ", - "speaking_head": "๐Ÿ—ฃ", - "speech_balloon": "๐Ÿ’ฌ", - "speech_left": "๐Ÿ—จ", + "sparkling heart": "๐Ÿ’–", + "speak no evil monkey": "๐Ÿ™Š", + "speaker high volume": "๐Ÿ”Š", + "speaker low volume": "๐Ÿ”ˆ", + "speaker medium volume": "๐Ÿ”‰", + "speaking head": "๐Ÿ—ฃ๏ธ", + "speech balloon": "๐Ÿ’ฌ", "speedboat": "๐Ÿšค", - "spider": "๐Ÿ•ท", - "spider_web": "๐Ÿ•ธ", - "spiral_calendar": "๐Ÿ—“", - "spiral_notepad": "๐Ÿ—’", + "spider": "๐Ÿ•ท๏ธ", + "spider web": "๐Ÿ•ธ๏ธ", + "spiral calendar": "๐Ÿ—“๏ธ", + "spiral notepad": "๐Ÿ—’๏ธ", + "spiral shell": "๐Ÿš", "sponge": "๐Ÿงฝ", "spoon": "๐Ÿฅ„", + "sport utility vehicle": "๐Ÿš™", + "sports medal": "๐Ÿ…", + "spouting whale": "๐Ÿณ", "squid": "๐Ÿฆ‘", - "stadium": "๐ŸŸ", + "squinting face with tongue": "๐Ÿ˜", + "stadium": "๐ŸŸ๏ธ", "star": "โญ", - "star2": "๐ŸŒŸ", - "star_and_crescent": "โ˜ช๏ธ", - "star_of_david": "โœก", - "star_struck": "๐Ÿคฉ", - "stars": "๐ŸŒ ", - "starstruck": "๐Ÿคฉ", + "star and crescent": "โ˜ช๏ธ", + "star of David": "โœก๏ธ", + "star struck": "๐Ÿคฉ", "station": "๐Ÿš‰", - "statue_of_liberty": "๐Ÿ—ฝ", - "steam_locomotive": "๐Ÿš‚", + "steaming bowl": "๐Ÿœ", "stethoscope": "๐Ÿฉบ", - "stew": "๐Ÿฒ", - "stop_button": "โน๏ธ", + "stop button": "โน๏ธ", + "stop sign": "๐Ÿ›‘", "stopwatch": "โฑ๏ธ", - "straight_ruler": "๐Ÿ“", + "straight ruler": "๐Ÿ“", "strawberry": "๐Ÿ“", - "stuck_out_tongue": "๐Ÿ˜›", - "stuck_out_tongue_closed_eyes": "๐Ÿ˜", - "stuck_out_tongue_winking_eye": "๐Ÿ˜œ", - "studio_microphone": "๐ŸŽ™", - "stuffed_flatbread": "๐Ÿฅ™", - "sun": "โ˜€", - "sun_behind_large_cloud": "๐ŸŒฅ", - "sun_behind_rain_cloud": "๐ŸŒฆ", - "sun_behind_small_cloud": "๐ŸŒค", - "sun_with_face": "๐ŸŒž", + "student": "๐Ÿง‘โ€๐ŸŽ“", + "student dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐ŸŽ“", + "student light skin tone": "๐Ÿง‘๐Ÿปโ€๐ŸŽ“", + "student medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐ŸŽ“", + "student medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐ŸŽ“", + "student medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐ŸŽ“", + "studio microphone": "๐ŸŽ™๏ธ", + "stuffed flatbread": "๐Ÿฅ™", + "sun": "โ˜€๏ธ", + "sun behind cloud": "โ›…", + "sun behind large cloud": "๐ŸŒฅ๏ธ", + "sun behind rain cloud": "๐ŸŒฆ๏ธ", + "sun behind small cloud": "๐ŸŒค๏ธ", + "sun with face": "๐ŸŒž", "sunflower": "๐ŸŒป", - "sunglasses": "๐Ÿ˜Ž", - "sunny": "โ˜€๏ธ", + "sunglasses": "๐Ÿ•ถ๏ธ", "sunrise": "๐ŸŒ…", - "sunrise_over_mountains": "๐ŸŒ„", + "sunrise over mountains": "๐ŸŒ„", + "sunset": "๐ŸŒ‡", "superhero": "๐Ÿฆธ", + "superhero dark skin tone": "๐Ÿฆธ๐Ÿฟ", + "superhero light skin tone": "๐Ÿฆธ๐Ÿป", + "superhero medium dark skin tone": "๐Ÿฆธ๐Ÿพ", + "superhero medium light skin tone": "๐Ÿฆธ๐Ÿผ", + "superhero medium skin tone": "๐Ÿฆธ๐Ÿฝ", "supervillain": "๐Ÿฆน", - "surfer": "๐Ÿ„", + "supervillain dark skin tone": "๐Ÿฆน๐Ÿฟ", + "supervillain light skin tone": "๐Ÿฆน๐Ÿป", + "supervillain medium dark skin tone": "๐Ÿฆน๐Ÿพ", + "supervillain medium light skin tone": "๐Ÿฆน๐Ÿผ", + "supervillain medium skin tone": "๐Ÿฆน๐Ÿฝ", "sushi": "๐Ÿฃ", - "suspension_railway": "๐ŸšŸ", + "suspension railway": "๐ŸšŸ", "swan": "๐Ÿฆข", - "sweat": "๐Ÿ˜“", - "sweat_drops": "๐Ÿ’ฆ", - "sweat_smile": "๐Ÿ˜…", - "sweet_potato": "๐Ÿ ", - "swimmer": "๐ŸŠ", - "symbols": "๐Ÿ”ฃ", + "sweat droplets": "๐Ÿ’ฆ", "synagogue": "๐Ÿ•", "syringe": "๐Ÿ’‰", - "t_rex": "๐Ÿฆ–", + "t shirt": "๐Ÿ‘•", "taco": "๐ŸŒฎ", - "tada": "๐ŸŽ‰", - "takeout_box": "๐Ÿฅก", - "tanabata_tree": "๐ŸŽ‹", + "takeout box": "๐Ÿฅก", + "tamale": "๐Ÿซ”", + "tanabata tree": "๐ŸŽ‹", "tangerine": "๐ŸŠ", - "taurus": "โ™‰", "taxi": "๐Ÿš•", - "tea": "๐Ÿต", - "teddy_bear": "๐Ÿงธ", - "telephone": "โ˜Ž", - "telephone_receiver": "๐Ÿ“ž", + "teacher": "๐Ÿง‘โ€๐Ÿซ", + "teacher dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿซ", + "teacher light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿซ", + "teacher medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿซ", + "teacher medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿซ", + "teacher medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿซ", + "teacup without handle": "๐Ÿต", + "teapot": "๐Ÿซ–", + "tear off calendar": "๐Ÿ“†", + "technologist": "๐Ÿง‘โ€๐Ÿ’ป", + "technologist dark skin tone": "๐Ÿง‘๐Ÿฟโ€๐Ÿ’ป", + "technologist light skin tone": "๐Ÿง‘๐Ÿปโ€๐Ÿ’ป", + "technologist medium dark skin tone": "๐Ÿง‘๐Ÿพโ€๐Ÿ’ป", + "technologist medium light skin tone": "๐Ÿง‘๐Ÿผโ€๐Ÿ’ป", + "technologist medium skin tone": "๐Ÿง‘๐Ÿฝโ€๐Ÿ’ป", + "teddy bear": "๐Ÿงธ", + "telephone": "โ˜Ž๏ธ", + "telephone receiver": "๐Ÿ“ž", "telescope": "๐Ÿ”ญ", + "television": "๐Ÿ“บ", + "ten oโ€™clock": "๐Ÿ•™", + "ten thirty": "๐Ÿ•ฅ", "tennis": "๐ŸŽพ", "tent": "โ›บ", - "test_tube": "๐Ÿงช", - "thermometer": "๐ŸŒก", - "thermometer_face": "๐Ÿค’", - "thinking": "๐Ÿค”", - "third_place": "๐Ÿฅ‰", - "thought_balloon": "๐Ÿ’ญ", + "test tube": "๐Ÿงช", + "thermometer": "๐ŸŒก๏ธ", + "thinking face": "๐Ÿค”", + "thong sandal": "๐Ÿฉด", + "thought balloon": "๐Ÿ’ญ", "thread": "๐Ÿงต", - "three": "3โƒฃ", - "thumbsdown": "๐Ÿ‘Ž", - "thumbsup": "๐Ÿ‘", + "three oโ€™clock": "๐Ÿ•’", + "three thirty": "๐Ÿ•ž", + "thumbs down": "๐Ÿ‘Ž", + "thumbs down dark skin tone": "๐Ÿ‘Ž๐Ÿฟ", + "thumbs down light skin tone": "๐Ÿ‘Ž๐Ÿป", + "thumbs down medium dark skin tone": "๐Ÿ‘Ž๐Ÿพ", + "thumbs down medium light skin tone": "๐Ÿ‘Ž๐Ÿผ", + "thumbs down medium skin tone": "๐Ÿ‘Ž๐Ÿฝ", + "thumbs up": "๐Ÿ‘", + "thumbs up dark skin tone": "๐Ÿ‘๐Ÿฟ", + "thumbs up light skin tone": "๐Ÿ‘๐Ÿป", + "thumbs up medium dark skin tone": "๐Ÿ‘๐Ÿพ", + "thumbs up medium light skin tone": "๐Ÿ‘๐Ÿผ", + "thumbs up medium skin tone": "๐Ÿ‘๐Ÿฝ", "ticket": "๐ŸŽซ", - "tiger": "๐Ÿฏ", - "tiger2": "๐Ÿ…", - "timer_clock": "โฒ๏ธ", - "tired_face": "๐Ÿ˜ซ", - "tm": "โ„ข", + "tiger": "๐Ÿ…", + "tiger face": "๐Ÿฏ", + "timer clock": "โฒ๏ธ", + "tired face": "๐Ÿ˜ซ", "toilet": "๐Ÿšฝ", - "tokyo_tower": "๐Ÿ—ผ", "tomato": "๐Ÿ…", - "tone1": "๐Ÿป", - "tone2": "๐Ÿผ", - "tone3": "๐Ÿฝ", - "tone4": "๐Ÿพ", - "tone5": "๐Ÿฟ", "tongue": "๐Ÿ‘…", "toolbox": "๐Ÿงฐ", "tooth": "๐Ÿฆท", - "top": "๐Ÿ”", - "tophat": "๐ŸŽฉ", - "tornado": "๐ŸŒช", - "track_next": "โญ", - "track_previous": "โฎ", - "trackball": "๐Ÿ–ฒ", + "toothbrush": "๐Ÿชฅ", + "top hat": "๐ŸŽฉ", + "tornado": "๐ŸŒช๏ธ", + "trackball": "๐Ÿ–ฒ๏ธ", "tractor": "๐Ÿšœ", - "trade_mark": "โ„ข๏ธ", - "traffic_light": "๐Ÿšฅ", - "train": "๐Ÿš‹", - "train2": "๐Ÿš†", + "trade mark": "โ„ข๏ธ", + "train": "๐Ÿš†", "tram": "๐ŸšŠ", - "trex": "๐Ÿฆ–", - "triangular_flag_on_post": "๐Ÿšฉ", - "triangular_ruler": "๐Ÿ“", - "trident": "๐Ÿ”ฑ", - "triumph": "๐Ÿ˜ค", + "tram car": "๐Ÿš‹", + "transgender flag": "๐Ÿณ๏ธโ€โšง๏ธ", + "transgender symbol": "โšง๏ธ", + "triangular flag": "๐Ÿšฉ", + "triangular ruler": "๐Ÿ“", + "trident emblem": "๐Ÿ”ฑ", + "troll": "๐ŸงŒ", "trolleybus": "๐ŸšŽ", "trophy": "๐Ÿ†", - "tropical_drink": "๐Ÿน", - "tropical_fish": "๐Ÿ ", - "truck": "๐Ÿšš", + "tropical drink": "๐Ÿน", + "tropical fish": "๐Ÿ ", "trumpet": "๐ŸŽบ", "tulip": "๐ŸŒท", - "tumbler_glass": "๐Ÿฅƒ", + "tumbler glass": "๐Ÿฅƒ", "turkey": "๐Ÿฆƒ", "turtle": "๐Ÿข", - "tv": "๐Ÿ“บ", - "twisted_rightwards_arrows": "๐Ÿ”€", - "two": "2โƒฃ", - "two_hearts": "๐Ÿ’•", - "two_men_holding_hands": "๐Ÿ‘ฌ", - "two_women_holding_hands": "๐Ÿ‘ญ", - "u5272": "๐Ÿˆน", - "u5408": "๐Ÿˆด", - "u55b6": "๐Ÿˆบ", - "u6307": "๐Ÿˆฏ", - "u6708": "๐Ÿˆท", - "u6709": "๐Ÿˆถ", - "u6e80": "๐Ÿˆต", - "u7121": "๐Ÿˆš", - "u7533": "๐Ÿˆธ", - "u7981": "๐Ÿˆฒ", - "u7a7a": "๐Ÿˆณ", - "umbrella": "โ˜”", - "umbrella_on_ground": "โ›ฑ๏ธ", - "unamused": "๐Ÿ˜’", - "underage": "๐Ÿ”ž", + "twelve oโ€™clock": "๐Ÿ•›", + "twelve thirty": "๐Ÿ•ง", + "two hearts": "๐Ÿ’•", + "two hump camel": "๐Ÿซ", + "two oโ€™clock": "๐Ÿ•‘", + "two thirty": "๐Ÿ•", + "umbrella": "โ˜‚๏ธ", + "umbrella on ground": "โ›ฑ๏ธ", + "umbrella with rain drops": "โ˜”", + "unamused face": "๐Ÿ˜’", "unicorn": "๐Ÿฆ„", - "unlock": "๐Ÿ”“", - "up": "๐Ÿ†™", - "up_arrow": "โฌ†", - "updown_arrow": "โ†•๏ธ", - "upleft_arrow": "โ†–๏ธ", - "upright_arrow": "โ†—", - "upside_down": "๐Ÿ™ƒ", - "v": "โœŒ๏ธ", + "unlocked": "๐Ÿ”“", + "up arrow": "โฌ†๏ธ", + "up down arrow": "โ†•๏ธ", + "up left arrow": "โ†–๏ธ", + "up right arrow": "โ†—๏ธ", + "upside down face": "๐Ÿ™ƒ", + "upwards button": "๐Ÿ”ผ", "vampire": "๐Ÿง›", - "vertical_traffic_light": "๐Ÿšฆ", - "vhs": "๐Ÿ“ผ", - "vibration_mode": "๐Ÿ“ณ", - "victory_hand": "โœŒ", - "video_camera": "๐Ÿ“น", - "video_game": "๐ŸŽฎ", + "vampire dark skin tone": "๐Ÿง›๐Ÿฟ", + "vampire light skin tone": "๐Ÿง›๐Ÿป", + "vampire medium dark skin tone": "๐Ÿง›๐Ÿพ", + "vampire medium light skin tone": "๐Ÿง›๐Ÿผ", + "vampire medium skin tone": "๐Ÿง›๐Ÿฝ", + "vertical traffic light": "๐Ÿšฆ", + "vibration mode": "๐Ÿ“ณ", + "victory hand": "โœŒ๏ธ", + "victory hand dark skin tone": "โœŒ๐Ÿฟ", + "victory hand light skin tone": "โœŒ๐Ÿป", + "victory hand medium dark skin tone": "โœŒ๐Ÿพ", + "victory hand medium light skin tone": "โœŒ๐Ÿผ", + "victory hand medium skin tone": "โœŒ๐Ÿฝ", + "video camera": "๐Ÿ“น", + "video game": "๐ŸŽฎ", + "videocassette": "๐Ÿ“ผ", "violin": "๐ŸŽป", - "virgo": "โ™", "volcano": "๐ŸŒ‹", "volleyball": "๐Ÿ", - "vs": "๐Ÿ†š", - "vulcan": "๐Ÿ––", - "vulcan_salute": "๐Ÿ––", + "vulcan salute": "๐Ÿ––", + "vulcan salute dark skin tone": "๐Ÿ––๐Ÿฟ", + "vulcan salute light skin tone": "๐Ÿ––๐Ÿป", + "vulcan salute medium dark skin tone": "๐Ÿ––๐Ÿพ", + "vulcan salute medium light skin tone": "๐Ÿ––๐Ÿผ", + "vulcan salute medium skin tone": "๐Ÿ––๐Ÿฝ", "waffle": "๐Ÿง‡", - "walking": "๐Ÿšถ", - "waning_crescent_moon": "๐ŸŒ˜", - "waning_gibbous_moon": "๐ŸŒ–", - "warning": "โš ", - "wastebasket": "๐Ÿ—‘", + "waning crescent moon": "๐ŸŒ˜", + "waning gibbous moon": "๐ŸŒ–", + "warning": "โš ๏ธ", + "wastebasket": "๐Ÿ—‘๏ธ", "watch": "โŒš", - "water_buffalo": "๐Ÿƒ", + "water buffalo": "๐Ÿƒ", + "water closet": "๐Ÿšพ", + "water pistol": "๐Ÿ”ซ", + "water wave": "๐ŸŒŠ", "watermelon": "๐Ÿ‰", - "wave": "๐Ÿ‘‹", - "wavy_dash": "ใ€ฐ๏ธ", - "waxing_crescent_moon": "๐ŸŒ’", - "waxing_gibbous_moon": "๐ŸŒ”", - "wc": "๐Ÿšพ", - "weary": "๐Ÿ˜ฉ", + "waving hand": "๐Ÿ‘‹", + "waving hand dark skin tone": "๐Ÿ‘‹๐Ÿฟ", + "waving hand light skin tone": "๐Ÿ‘‹๐Ÿป", + "waving hand medium dark skin tone": "๐Ÿ‘‹๐Ÿพ", + "waving hand medium light skin tone": "๐Ÿ‘‹๐Ÿผ", + "waving hand medium skin tone": "๐Ÿ‘‹๐Ÿฝ", + "wavy dash": "ใ€ฐ๏ธ", + "waxing crescent moon": "๐ŸŒ’", + "waxing gibbous moon": "๐ŸŒ”", + "weary cat": "๐Ÿ™€", + "weary face": "๐Ÿ˜ฉ", "wedding": "๐Ÿ’’", - "weightlifter": "๐Ÿ‹", - "whale": "๐Ÿณ", - "whale2": "๐Ÿ‹", - "wheel_of_dharma": "โ˜ธ๏ธ", - "wheelchair": "โ™ฟ", - "white_check_mark": "โœ…", - "white_circle": "โšช", - "white_flower": "๐Ÿ’ฎ", - "white_hair": "๐Ÿฆณ", - "white_heart": "๐Ÿค", - "white_large_square": "โฌœ", - "white_medium_small_square": "โ—ฝ", - "white_medium_square": "โ—ป๏ธ", - "white_small_square": "โ–ซ๏ธ", - "white_square_button": "๐Ÿ”ณ", - "wilted_flower": "๐Ÿฅ€", - "wilted_rose": "๐Ÿฅ€", - "wind_blowing_face": "๐ŸŒฌ", - "wind_chime": "๐ŸŽ", - "wine_glass": "๐Ÿท", - "wink": "๐Ÿ˜‰", + "whale": "๐Ÿ‹", + "wheel": "๐Ÿ›ž", + "wheel of dharma": "โ˜ธ๏ธ", + "wheelchair symbol": "โ™ฟ", + "white cane": "๐Ÿฆฏ", + "white circle": "โšช", + "white exclamation mark": "โ•", + "white flag": "๐Ÿณ๏ธ", + "white flower": "๐Ÿ’ฎ", + "white heart": "๐Ÿค", + "white large square": "โฌœ", + "white medium small square": "โ—ฝ", + "white medium square": "โ—ป๏ธ", + "white question mark": "โ”", + "white small square": "โ–ซ๏ธ", + "white square button": "๐Ÿ”ณ", + "wilted flower": "๐Ÿฅ€", + "wind chime": "๐ŸŽ", + "wind face": "๐ŸŒฌ๏ธ", + "window": "๐ŸชŸ", + "wine glass": "๐Ÿท", + "winking face": "๐Ÿ˜‰", + "winking face with tongue": "๐Ÿ˜œ", "wolf": "๐Ÿบ", "woman": "๐Ÿ‘ฉ", - "woman_with_headscarf": "๐Ÿง•", - "womans_clothes": "๐Ÿ‘š", - "womans_hat": "๐Ÿ‘’", - "womens": "๐Ÿšบ", - "woozy_face": "๐Ÿฅด", - "world_map": "๐Ÿ—บ", - "worried": "๐Ÿ˜Ÿ", + "woman and man holding hands": "๐Ÿ‘ซ", + "woman and man holding hands dark skin tone": "๐Ÿ‘ซ๐Ÿฟ", + "woman and man holding hands dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "woman and man holding hands dark skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "woman and man holding hands dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "woman and man holding hands dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "woman and man holding hands light skin tone": "๐Ÿ‘ซ๐Ÿป", + "woman and man holding hands light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "woman and man holding hands light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "woman and man holding hands light skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "woman and man holding hands light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "woman and man holding hands medium dark skin tone": "๐Ÿ‘ซ๐Ÿพ", + "woman and man holding hands medium dark skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "woman and man holding hands medium dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "woman and man holding hands medium dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "woman and man holding hands medium dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "woman and man holding hands medium light skin tone": "๐Ÿ‘ซ๐Ÿผ", + "woman and man holding hands medium light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "woman and man holding hands medium light skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "woman and man holding hands medium light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "woman and man holding hands medium light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "woman and man holding hands medium skin tone": "๐Ÿ‘ซ๐Ÿฝ", + "woman and man holding hands medium skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "woman and man holding hands medium skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "woman and man holding hands medium skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "woman and man holding hands medium skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "woman artist": "๐Ÿ‘ฉโ€๐ŸŽจ", + "woman artist dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽจ", + "woman artist light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽจ", + "woman artist medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽจ", + "woman artist medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽจ", + "woman artist medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽจ", + "woman astronaut": "๐Ÿ‘ฉโ€๐Ÿš€", + "woman astronaut dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš€", + "woman astronaut light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš€", + "woman astronaut medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš€", + "woman astronaut medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš€", + "woman astronaut medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš€", + "woman bald": "๐Ÿ‘ฉโ€๐Ÿฆฒ", + "woman beard": "๐Ÿง”โ€โ™€๏ธ", + "woman biking": "๐Ÿšดโ€โ™€๏ธ", + "woman biking dark skin tone": "๐Ÿšด๐Ÿฟโ€โ™€๏ธ", + "woman biking light skin tone": "๐Ÿšด๐Ÿปโ€โ™€๏ธ", + "woman biking medium dark skin tone": "๐Ÿšด๐Ÿพโ€โ™€๏ธ", + "woman biking medium light skin tone": "๐Ÿšด๐Ÿผโ€โ™€๏ธ", + "woman biking medium skin tone": "๐Ÿšด๐Ÿฝโ€โ™€๏ธ", + "woman blond hair": "๐Ÿ‘ฑโ€โ™€๏ธ", + "woman bouncing ball": "โ›น๏ธโ€โ™€๏ธ", + "woman bouncing ball dark skin tone": "โ›น๐Ÿฟโ€โ™€๏ธ", + "woman bouncing ball light skin tone": "โ›น๐Ÿปโ€โ™€๏ธ", + "woman bouncing ball medium dark skin tone": "โ›น๐Ÿพโ€โ™€๏ธ", + "woman bouncing ball medium light skin tone": "โ›น๐Ÿผโ€โ™€๏ธ", + "woman bouncing ball medium skin tone": "โ›น๐Ÿฝโ€โ™€๏ธ", + "woman bowing": "๐Ÿ™‡โ€โ™€๏ธ", + "woman bowing dark skin tone": "๐Ÿ™‡๐Ÿฟโ€โ™€๏ธ", + "woman bowing light skin tone": "๐Ÿ™‡๐Ÿปโ€โ™€๏ธ", + "woman bowing medium dark skin tone": "๐Ÿ™‡๐Ÿพโ€โ™€๏ธ", + "woman bowing medium light skin tone": "๐Ÿ™‡๐Ÿผโ€โ™€๏ธ", + "woman bowing medium skin tone": "๐Ÿ™‡๐Ÿฝโ€โ™€๏ธ", + "woman cartwheeling": "๐Ÿคธโ€โ™€๏ธ", + "woman cartwheeling dark skin tone": "๐Ÿคธ๐Ÿฟโ€โ™€๏ธ", + "woman cartwheeling light skin tone": "๐Ÿคธ๐Ÿปโ€โ™€๏ธ", + "woman cartwheeling medium dark skin tone": "๐Ÿคธ๐Ÿพโ€โ™€๏ธ", + "woman cartwheeling medium light skin tone": "๐Ÿคธ๐Ÿผโ€โ™€๏ธ", + "woman cartwheeling medium skin tone": "๐Ÿคธ๐Ÿฝโ€โ™€๏ธ", + "woman climbing": "๐Ÿง—โ€โ™€๏ธ", + "woman climbing dark skin tone": "๐Ÿง—๐Ÿฟโ€โ™€๏ธ", + "woman climbing light skin tone": "๐Ÿง—๐Ÿปโ€โ™€๏ธ", + "woman climbing medium dark skin tone": "๐Ÿง—๐Ÿพโ€โ™€๏ธ", + "woman climbing medium light skin tone": "๐Ÿง—๐Ÿผโ€โ™€๏ธ", + "woman climbing medium skin tone": "๐Ÿง—๐Ÿฝโ€โ™€๏ธ", + "woman construction worker": "๐Ÿ‘ทโ€โ™€๏ธ", + "woman construction worker dark skin tone": "๐Ÿ‘ท๐Ÿฟโ€โ™€๏ธ", + "woman construction worker light skin tone": "๐Ÿ‘ท๐Ÿปโ€โ™€๏ธ", + "woman construction worker medium dark skin tone": "๐Ÿ‘ท๐Ÿพโ€โ™€๏ธ", + "woman construction worker medium light skin tone": "๐Ÿ‘ท๐Ÿผโ€โ™€๏ธ", + "woman construction worker medium skin tone": "๐Ÿ‘ท๐Ÿฝโ€โ™€๏ธ", + "woman cook": "๐Ÿ‘ฉโ€๐Ÿณ", + "woman cook dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿณ", + "woman cook light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿณ", + "woman cook medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿณ", + "woman cook medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿณ", + "woman cook medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿณ", + "woman curly hair": "๐Ÿ‘ฉโ€๐Ÿฆฑ", + "woman dancing": "๐Ÿ’ƒ", + "woman dancing dark skin tone": "๐Ÿ’ƒ๐Ÿฟ", + "woman dancing light skin tone": "๐Ÿ’ƒ๐Ÿป", + "woman dancing medium dark skin tone": "๐Ÿ’ƒ๐Ÿพ", + "woman dancing medium light skin tone": "๐Ÿ’ƒ๐Ÿผ", + "woman dancing medium skin tone": "๐Ÿ’ƒ๐Ÿฝ", + "woman dark skin tone": "๐Ÿ‘ฉ๐Ÿฟ", + "woman dark skin tone bald": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฒ", + "woman dark skin tone beard": "๐Ÿง”๐Ÿฟโ€โ™€๏ธ", + "woman dark skin tone blond hair": "๐Ÿ‘ฑ๐Ÿฟโ€โ™€๏ธ", + "woman dark skin tone curly hair": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฑ", + "woman dark skin tone red hair": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฐ", + "woman dark skin tone white hair": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆณ", + "woman detective": "๐Ÿ•ต๏ธโ€โ™€๏ธ", + "woman detective dark skin tone": "๐Ÿ•ต๐Ÿฟโ€โ™€๏ธ", + "woman detective light skin tone": "๐Ÿ•ต๐Ÿปโ€โ™€๏ธ", + "woman detective medium dark skin tone": "๐Ÿ•ต๐Ÿพโ€โ™€๏ธ", + "woman detective medium light skin tone": "๐Ÿ•ต๐Ÿผโ€โ™€๏ธ", + "woman detective medium skin tone": "๐Ÿ•ต๐Ÿฝโ€โ™€๏ธ", + "woman elf": "๐Ÿงโ€โ™€๏ธ", + "woman elf dark skin tone": "๐Ÿง๐Ÿฟโ€โ™€๏ธ", + "woman elf light skin tone": "๐Ÿง๐Ÿปโ€โ™€๏ธ", + "woman elf medium dark skin tone": "๐Ÿง๐Ÿพโ€โ™€๏ธ", + "woman elf medium light skin tone": "๐Ÿง๐Ÿผโ€โ™€๏ธ", + "woman elf medium skin tone": "๐Ÿง๐Ÿฝโ€โ™€๏ธ", + "woman facepalming": "๐Ÿคฆโ€โ™€๏ธ", + "woman facepalming dark skin tone": "๐Ÿคฆ๐Ÿฟโ€โ™€๏ธ", + "woman facepalming light skin tone": "๐Ÿคฆ๐Ÿปโ€โ™€๏ธ", + "woman facepalming medium dark skin tone": "๐Ÿคฆ๐Ÿพโ€โ™€๏ธ", + "woman facepalming medium light skin tone": "๐Ÿคฆ๐Ÿผโ€โ™€๏ธ", + "woman facepalming medium skin tone": "๐Ÿคฆ๐Ÿฝโ€โ™€๏ธ", + "woman factory worker": "๐Ÿ‘ฉโ€๐Ÿญ", + "woman factory worker dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿญ", + "woman factory worker light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿญ", + "woman factory worker medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿญ", + "woman factory worker medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿญ", + "woman factory worker medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿญ", + "woman fairy": "๐Ÿงšโ€โ™€๏ธ", + "woman fairy dark skin tone": "๐Ÿงš๐Ÿฟโ€โ™€๏ธ", + "woman fairy light skin tone": "๐Ÿงš๐Ÿปโ€โ™€๏ธ", + "woman fairy medium dark skin tone": "๐Ÿงš๐Ÿพโ€โ™€๏ธ", + "woman fairy medium light skin tone": "๐Ÿงš๐Ÿผโ€โ™€๏ธ", + "woman fairy medium skin tone": "๐Ÿงš๐Ÿฝโ€โ™€๏ธ", + "woman farmer": "๐Ÿ‘ฉโ€๐ŸŒพ", + "woman farmer dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŒพ", + "woman farmer light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŒพ", + "woman farmer medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŒพ", + "woman farmer medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŒพ", + "woman farmer medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŒพ", + "woman feeding baby": "๐Ÿ‘ฉโ€๐Ÿผ", + "woman feeding baby dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿผ", + "woman feeding baby light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿผ", + "woman feeding baby medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿผ", + "woman feeding baby medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿผ", + "woman feeding baby medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿผ", + "woman firefighter": "๐Ÿ‘ฉโ€๐Ÿš’", + "woman firefighter dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿš’", + "woman firefighter light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿš’", + "woman firefighter medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿš’", + "woman firefighter medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿš’", + "woman firefighter medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿš’", + "woman frowning": "๐Ÿ™โ€โ™€๏ธ", + "woman frowning dark skin tone": "๐Ÿ™๐Ÿฟโ€โ™€๏ธ", + "woman frowning light skin tone": "๐Ÿ™๐Ÿปโ€โ™€๏ธ", + "woman frowning medium dark skin tone": "๐Ÿ™๐Ÿพโ€โ™€๏ธ", + "woman frowning medium light skin tone": "๐Ÿ™๐Ÿผโ€โ™€๏ธ", + "woman frowning medium skin tone": "๐Ÿ™๐Ÿฝโ€โ™€๏ธ", + "woman genie": "๐Ÿงžโ€โ™€๏ธ", + "woman gesturing NO": "๐Ÿ™…โ€โ™€๏ธ", + "woman gesturing NO dark skin tone": "๐Ÿ™…๐Ÿฟโ€โ™€๏ธ", + "woman gesturing NO light skin tone": "๐Ÿ™…๐Ÿปโ€โ™€๏ธ", + "woman gesturing NO medium dark skin tone": "๐Ÿ™…๐Ÿพโ€โ™€๏ธ", + "woman gesturing NO medium light skin tone": "๐Ÿ™…๐Ÿผโ€โ™€๏ธ", + "woman gesturing NO medium skin tone": "๐Ÿ™…๐Ÿฝโ€โ™€๏ธ", + "woman gesturing OK": "๐Ÿ™†โ€โ™€๏ธ", + "woman gesturing OK dark skin tone": "๐Ÿ™†๐Ÿฟโ€โ™€๏ธ", + "woman gesturing OK light skin tone": "๐Ÿ™†๐Ÿปโ€โ™€๏ธ", + "woman gesturing OK medium dark skin tone": "๐Ÿ™†๐Ÿพโ€โ™€๏ธ", + "woman gesturing OK medium light skin tone": "๐Ÿ™†๐Ÿผโ€โ™€๏ธ", + "woman gesturing OK medium skin tone": "๐Ÿ™†๐Ÿฝโ€โ™€๏ธ", + "woman getting haircut": "๐Ÿ’‡โ€โ™€๏ธ", + "woman getting haircut dark skin tone": "๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ", + "woman getting haircut light skin tone": "๐Ÿ’‡๐Ÿปโ€โ™€๏ธ", + "woman getting haircut medium dark skin tone": "๐Ÿ’‡๐Ÿพโ€โ™€๏ธ", + "woman getting haircut medium light skin tone": "๐Ÿ’‡๐Ÿผโ€โ™€๏ธ", + "woman getting haircut medium skin tone": "๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ", + "woman getting massage": "๐Ÿ’†โ€โ™€๏ธ", + "woman getting massage dark skin tone": "๐Ÿ’†๐Ÿฟโ€โ™€๏ธ", + "woman getting massage light skin tone": "๐Ÿ’†๐Ÿปโ€โ™€๏ธ", + "woman getting massage medium dark skin tone": "๐Ÿ’†๐Ÿพโ€โ™€๏ธ", + "woman getting massage medium light skin tone": "๐Ÿ’†๐Ÿผโ€โ™€๏ธ", + "woman getting massage medium skin tone": "๐Ÿ’†๐Ÿฝโ€โ™€๏ธ", + "woman golfing": "๐ŸŒ๏ธโ€โ™€๏ธ", + "woman golfing dark skin tone": "๐ŸŒ๐Ÿฟโ€โ™€๏ธ", + "woman golfing light skin tone": "๐ŸŒ๐Ÿปโ€โ™€๏ธ", + "woman golfing medium dark skin tone": "๐ŸŒ๐Ÿพโ€โ™€๏ธ", + "woman golfing medium light skin tone": "๐ŸŒ๐Ÿผโ€โ™€๏ธ", + "woman golfing medium skin tone": "๐ŸŒ๐Ÿฝโ€โ™€๏ธ", + "woman guard": "๐Ÿ’‚โ€โ™€๏ธ", + "woman guard dark skin tone": "๐Ÿ’‚๐Ÿฟโ€โ™€๏ธ", + "woman guard light skin tone": "๐Ÿ’‚๐Ÿปโ€โ™€๏ธ", + "woman guard medium dark skin tone": "๐Ÿ’‚๐Ÿพโ€โ™€๏ธ", + "woman guard medium light skin tone": "๐Ÿ’‚๐Ÿผโ€โ™€๏ธ", + "woman guard medium skin tone": "๐Ÿ’‚๐Ÿฝโ€โ™€๏ธ", + "woman health worker": "๐Ÿ‘ฉโ€โš•๏ธ", + "woman health worker dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โš•๏ธ", + "woman health worker light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โš•๏ธ", + "woman health worker medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โš•๏ธ", + "woman health worker medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โš•๏ธ", + "woman health worker medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โš•๏ธ", + "woman in lotus position": "๐Ÿง˜โ€โ™€๏ธ", + "woman in lotus position dark skin tone": "๐Ÿง˜๐Ÿฟโ€โ™€๏ธ", + "woman in lotus position light skin tone": "๐Ÿง˜๐Ÿปโ€โ™€๏ธ", + "woman in lotus position medium dark skin tone": "๐Ÿง˜๐Ÿพโ€โ™€๏ธ", + "woman in lotus position medium light skin tone": "๐Ÿง˜๐Ÿผโ€โ™€๏ธ", + "woman in lotus position medium skin tone": "๐Ÿง˜๐Ÿฝโ€โ™€๏ธ", + "woman in manual wheelchair": "๐Ÿ‘ฉโ€๐Ÿฆฝ", + "woman in manual wheelchair dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ", + "woman in manual wheelchair light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ", + "woman in manual wheelchair medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ", + "woman in manual wheelchair medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ", + "woman in manual wheelchair medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ", + "woman in motorized wheelchair": "๐Ÿ‘ฉโ€๐Ÿฆผ", + "woman in motorized wheelchair dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ", + "woman in motorized wheelchair light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ", + "woman in motorized wheelchair medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ", + "woman in motorized wheelchair medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ", + "woman in motorized wheelchair medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ", + "woman in steamy room": "๐Ÿง–โ€โ™€๏ธ", + "woman in steamy room dark skin tone": "๐Ÿง–๐Ÿฟโ€โ™€๏ธ", + "woman in steamy room light skin tone": "๐Ÿง–๐Ÿปโ€โ™€๏ธ", + "woman in steamy room medium dark skin tone": "๐Ÿง–๐Ÿพโ€โ™€๏ธ", + "woman in steamy room medium light skin tone": "๐Ÿง–๐Ÿผโ€โ™€๏ธ", + "woman in steamy room medium skin tone": "๐Ÿง–๐Ÿฝโ€โ™€๏ธ", + "woman in tuxedo": "๐Ÿคตโ€โ™€๏ธ", + "woman in tuxedo dark skin tone": "๐Ÿคต๐Ÿฟโ€โ™€๏ธ", + "woman in tuxedo light skin tone": "๐Ÿคต๐Ÿปโ€โ™€๏ธ", + "woman in tuxedo medium dark skin tone": "๐Ÿคต๐Ÿพโ€โ™€๏ธ", + "woman in tuxedo medium light skin tone": "๐Ÿคต๐Ÿผโ€โ™€๏ธ", + "woman in tuxedo medium skin tone": "๐Ÿคต๐Ÿฝโ€โ™€๏ธ", + "woman judge": "๐Ÿ‘ฉโ€โš–๏ธ", + "woman judge dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โš–๏ธ", + "woman judge light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โš–๏ธ", + "woman judge medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โš–๏ธ", + "woman judge medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โš–๏ธ", + "woman judge medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โš–๏ธ", + "woman juggling": "๐Ÿคนโ€โ™€๏ธ", + "woman juggling dark skin tone": "๐Ÿคน๐Ÿฟโ€โ™€๏ธ", + "woman juggling light skin tone": "๐Ÿคน๐Ÿปโ€โ™€๏ธ", + "woman juggling medium dark skin tone": "๐Ÿคน๐Ÿพโ€โ™€๏ธ", + "woman juggling medium light skin tone": "๐Ÿคน๐Ÿผโ€โ™€๏ธ", + "woman juggling medium skin tone": "๐Ÿคน๐Ÿฝโ€โ™€๏ธ", + "woman kneeling": "๐ŸงŽโ€โ™€๏ธ", + "woman kneeling dark skin tone": "๐ŸงŽ๐Ÿฟโ€โ™€๏ธ", + "woman kneeling light skin tone": "๐ŸงŽ๐Ÿปโ€โ™€๏ธ", + "woman kneeling medium dark skin tone": "๐ŸงŽ๐Ÿพโ€โ™€๏ธ", + "woman kneeling medium light skin tone": "๐ŸงŽ๐Ÿผโ€โ™€๏ธ", + "woman kneeling medium skin tone": "๐ŸงŽ๐Ÿฝโ€โ™€๏ธ", + "woman lifting weights": "๐Ÿ‹๏ธโ€โ™€๏ธ", + "woman lifting weights dark skin tone": "๐Ÿ‹๐Ÿฟโ€โ™€๏ธ", + "woman lifting weights light skin tone": "๐Ÿ‹๐Ÿปโ€โ™€๏ธ", + "woman lifting weights medium dark skin tone": "๐Ÿ‹๐Ÿพโ€โ™€๏ธ", + "woman lifting weights medium light skin tone": "๐Ÿ‹๐Ÿผโ€โ™€๏ธ", + "woman lifting weights medium skin tone": "๐Ÿ‹๐Ÿฝโ€โ™€๏ธ", + "woman light skin tone": "๐Ÿ‘ฉ๐Ÿป", + "woman light skin tone bald": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฒ", + "woman light skin tone beard": "๐Ÿง”๐Ÿปโ€โ™€๏ธ", + "woman light skin tone blond hair": "๐Ÿ‘ฑ๐Ÿปโ€โ™€๏ธ", + "woman light skin tone curly hair": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฑ", + "woman light skin tone red hair": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฐ", + "woman light skin tone white hair": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆณ", + "woman mage": "๐Ÿง™โ€โ™€๏ธ", + "woman mage dark skin tone": "๐Ÿง™๐Ÿฟโ€โ™€๏ธ", + "woman mage light skin tone": "๐Ÿง™๐Ÿปโ€โ™€๏ธ", + "woman mage medium dark skin tone": "๐Ÿง™๐Ÿพโ€โ™€๏ธ", + "woman mage medium light skin tone": "๐Ÿง™๐Ÿผโ€โ™€๏ธ", + "woman mage medium skin tone": "๐Ÿง™๐Ÿฝโ€โ™€๏ธ", + "woman mechanic": "๐Ÿ‘ฉโ€๐Ÿ”ง", + "woman mechanic dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ง", + "woman mechanic light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ง", + "woman mechanic medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ง", + "woman mechanic medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ง", + "woman mechanic medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ง", + "woman medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพ", + "woman medium dark skin tone bald": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฒ", + "woman medium dark skin tone beard": "๐Ÿง”๐Ÿพโ€โ™€๏ธ", + "woman medium dark skin tone blond hair": "๐Ÿ‘ฑ๐Ÿพโ€โ™€๏ธ", + "woman medium dark skin tone curly hair": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฑ", + "woman medium dark skin tone red hair": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฐ", + "woman medium dark skin tone white hair": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆณ", + "woman medium light skin tone": "๐Ÿ‘ฉ๐Ÿผ", + "woman medium light skin tone bald": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฒ", + "woman medium light skin tone beard": "๐Ÿง”๐Ÿผโ€โ™€๏ธ", + "woman medium light skin tone blond hair": "๐Ÿ‘ฑ๐Ÿผโ€โ™€๏ธ", + "woman medium light skin tone curly hair": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฑ", + "woman medium light skin tone red hair": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฐ", + "woman medium light skin tone white hair": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆณ", + "woman medium skin tone": "๐Ÿ‘ฉ๐Ÿฝ", + "woman medium skin tone bald": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฒ", + "woman medium skin tone beard": "๐Ÿง”๐Ÿฝโ€โ™€๏ธ", + "woman medium skin tone blond hair": "๐Ÿ‘ฑ๐Ÿฝโ€โ™€๏ธ", + "woman medium skin tone curly hair": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฑ", + "woman medium skin tone red hair": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฐ", + "woman medium skin tone white hair": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆณ", + "woman mountain biking": "๐Ÿšตโ€โ™€๏ธ", + "woman mountain biking dark skin tone": "๐Ÿšต๐Ÿฟโ€โ™€๏ธ", + "woman mountain biking light skin tone": "๐Ÿšต๐Ÿปโ€โ™€๏ธ", + "woman mountain biking medium dark skin tone": "๐Ÿšต๐Ÿพโ€โ™€๏ธ", + "woman mountain biking medium light skin tone": "๐Ÿšต๐Ÿผโ€โ™€๏ธ", + "woman mountain biking medium skin tone": "๐Ÿšต๐Ÿฝโ€โ™€๏ธ", + "woman office worker": "๐Ÿ‘ฉโ€๐Ÿ’ผ", + "woman office worker dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ผ", + "woman office worker light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ผ", + "woman office worker medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ผ", + "woman office worker medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ผ", + "woman office worker medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ผ", + "woman pilot": "๐Ÿ‘ฉโ€โœˆ๏ธ", + "woman pilot dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€โœˆ๏ธ", + "woman pilot light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€โœˆ๏ธ", + "woman pilot medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€โœˆ๏ธ", + "woman pilot medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€โœˆ๏ธ", + "woman pilot medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€โœˆ๏ธ", + "woman playing handball": "๐Ÿคพโ€โ™€๏ธ", + "woman playing handball dark skin tone": "๐Ÿคพ๐Ÿฟโ€โ™€๏ธ", + "woman playing handball light skin tone": "๐Ÿคพ๐Ÿปโ€โ™€๏ธ", + "woman playing handball medium dark skin tone": "๐Ÿคพ๐Ÿพโ€โ™€๏ธ", + "woman playing handball medium light skin tone": "๐Ÿคพ๐Ÿผโ€โ™€๏ธ", + "woman playing handball medium skin tone": "๐Ÿคพ๐Ÿฝโ€โ™€๏ธ", + "woman playing water polo": "๐Ÿคฝโ€โ™€๏ธ", + "woman playing water polo dark skin tone": "๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ", + "woman playing water polo light skin tone": "๐Ÿคฝ๐Ÿปโ€โ™€๏ธ", + "woman playing water polo medium dark skin tone": "๐Ÿคฝ๐Ÿพโ€โ™€๏ธ", + "woman playing water polo medium light skin tone": "๐Ÿคฝ๐Ÿผโ€โ™€๏ธ", + "woman playing water polo medium skin tone": "๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ", + "woman police officer": "๐Ÿ‘ฎโ€โ™€๏ธ", + "woman police officer dark skin tone": "๐Ÿ‘ฎ๐Ÿฟโ€โ™€๏ธ", + "woman police officer light skin tone": "๐Ÿ‘ฎ๐Ÿปโ€โ™€๏ธ", + "woman police officer medium dark skin tone": "๐Ÿ‘ฎ๐Ÿพโ€โ™€๏ธ", + "woman police officer medium light skin tone": "๐Ÿ‘ฎ๐Ÿผโ€โ™€๏ธ", + "woman police officer medium skin tone": "๐Ÿ‘ฎ๐Ÿฝโ€โ™€๏ธ", + "woman pouting": "๐Ÿ™Žโ€โ™€๏ธ", + "woman pouting dark skin tone": "๐Ÿ™Ž๐Ÿฟโ€โ™€๏ธ", + "woman pouting light skin tone": "๐Ÿ™Ž๐Ÿปโ€โ™€๏ธ", + "woman pouting medium dark skin tone": "๐Ÿ™Ž๐Ÿพโ€โ™€๏ธ", + "woman pouting medium light skin tone": "๐Ÿ™Ž๐Ÿผโ€โ™€๏ธ", + "woman pouting medium skin tone": "๐Ÿ™Ž๐Ÿฝโ€โ™€๏ธ", + "woman raising hand": "๐Ÿ™‹โ€โ™€๏ธ", + "woman raising hand dark skin tone": "๐Ÿ™‹๐Ÿฟโ€โ™€๏ธ", + "woman raising hand light skin tone": "๐Ÿ™‹๐Ÿปโ€โ™€๏ธ", + "woman raising hand medium dark skin tone": "๐Ÿ™‹๐Ÿพโ€โ™€๏ธ", + "woman raising hand medium light skin tone": "๐Ÿ™‹๐Ÿผโ€โ™€๏ธ", + "woman raising hand medium skin tone": "๐Ÿ™‹๐Ÿฝโ€โ™€๏ธ", + "woman red hair": "๐Ÿ‘ฉโ€๐Ÿฆฐ", + "woman rowing boat": "๐Ÿšฃโ€โ™€๏ธ", + "woman rowing boat dark skin tone": "๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ", + "woman rowing boat light skin tone": "๐Ÿšฃ๐Ÿปโ€โ™€๏ธ", + "woman rowing boat medium dark skin tone": "๐Ÿšฃ๐Ÿพโ€โ™€๏ธ", + "woman rowing boat medium light skin tone": "๐Ÿšฃ๐Ÿผโ€โ™€๏ธ", + "woman rowing boat medium skin tone": "๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ", + "woman running": "๐Ÿƒโ€โ™€๏ธ", + "woman running dark skin tone": "๐Ÿƒ๐Ÿฟโ€โ™€๏ธ", + "woman running light skin tone": "๐Ÿƒ๐Ÿปโ€โ™€๏ธ", + "woman running medium dark skin tone": "๐Ÿƒ๐Ÿพโ€โ™€๏ธ", + "woman running medium light skin tone": "๐Ÿƒ๐Ÿผโ€โ™€๏ธ", + "woman running medium skin tone": "๐Ÿƒ๐Ÿฝโ€โ™€๏ธ", + "woman scientist": "๐Ÿ‘ฉโ€๐Ÿ”ฌ", + "woman scientist dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ”ฌ", + "woman scientist light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ”ฌ", + "woman scientist medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ”ฌ", + "woman scientist medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ”ฌ", + "woman scientist medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ”ฌ", + "woman shrugging": "๐Ÿคทโ€โ™€๏ธ", + "woman shrugging dark skin tone": "๐Ÿคท๐Ÿฟโ€โ™€๏ธ", + "woman shrugging light skin tone": "๐Ÿคท๐Ÿปโ€โ™€๏ธ", + "woman shrugging medium dark skin tone": "๐Ÿคท๐Ÿพโ€โ™€๏ธ", + "woman shrugging medium light skin tone": "๐Ÿคท๐Ÿผโ€โ™€๏ธ", + "woman shrugging medium skin tone": "๐Ÿคท๐Ÿฝโ€โ™€๏ธ", + "woman singer": "๐Ÿ‘ฉโ€๐ŸŽค", + "woman singer dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽค", + "woman singer light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽค", + "woman singer medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽค", + "woman singer medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽค", + "woman singer medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽค", + "woman standing": "๐Ÿงโ€โ™€๏ธ", + "woman standing dark skin tone": "๐Ÿง๐Ÿฟโ€โ™€๏ธ", + "woman standing light skin tone": "๐Ÿง๐Ÿปโ€โ™€๏ธ", + "woman standing medium dark skin tone": "๐Ÿง๐Ÿพโ€โ™€๏ธ", + "woman standing medium light skin tone": "๐Ÿง๐Ÿผโ€โ™€๏ธ", + "woman standing medium skin tone": "๐Ÿง๐Ÿฝโ€โ™€๏ธ", + "woman student": "๐Ÿ‘ฉโ€๐ŸŽ“", + "woman student dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐ŸŽ“", + "woman student light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐ŸŽ“", + "woman student medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐ŸŽ“", + "woman student medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐ŸŽ“", + "woman student medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐ŸŽ“", + "woman superhero": "๐Ÿฆธโ€โ™€๏ธ", + "woman superhero dark skin tone": "๐Ÿฆธ๐Ÿฟโ€โ™€๏ธ", + "woman superhero light skin tone": "๐Ÿฆธ๐Ÿปโ€โ™€๏ธ", + "woman superhero medium dark skin tone": "๐Ÿฆธ๐Ÿพโ€โ™€๏ธ", + "woman superhero medium light skin tone": "๐Ÿฆธ๐Ÿผโ€โ™€๏ธ", + "woman superhero medium skin tone": "๐Ÿฆธ๐Ÿฝโ€โ™€๏ธ", + "woman supervillain": "๐Ÿฆนโ€โ™€๏ธ", + "woman supervillain dark skin tone": "๐Ÿฆน๐Ÿฟโ€โ™€๏ธ", + "woman supervillain light skin tone": "๐Ÿฆน๐Ÿปโ€โ™€๏ธ", + "woman supervillain medium dark skin tone": "๐Ÿฆน๐Ÿพโ€โ™€๏ธ", + "woman supervillain medium light skin tone": "๐Ÿฆน๐Ÿผโ€โ™€๏ธ", + "woman supervillain medium skin tone": "๐Ÿฆน๐Ÿฝโ€โ™€๏ธ", + "woman surfing": "๐Ÿ„โ€โ™€๏ธ", + "woman surfing dark skin tone": "๐Ÿ„๐Ÿฟโ€โ™€๏ธ", + "woman surfing light skin tone": "๐Ÿ„๐Ÿปโ€โ™€๏ธ", + "woman surfing medium dark skin tone": "๐Ÿ„๐Ÿพโ€โ™€๏ธ", + "woman surfing medium light skin tone": "๐Ÿ„๐Ÿผโ€โ™€๏ธ", + "woman surfing medium skin tone": "๐Ÿ„๐Ÿฝโ€โ™€๏ธ", + "woman swimming": "๐ŸŠโ€โ™€๏ธ", + "woman swimming dark skin tone": "๐ŸŠ๐Ÿฟโ€โ™€๏ธ", + "woman swimming light skin tone": "๐ŸŠ๐Ÿปโ€โ™€๏ธ", + "woman swimming medium dark skin tone": "๐ŸŠ๐Ÿพโ€โ™€๏ธ", + "woman swimming medium light skin tone": "๐ŸŠ๐Ÿผโ€โ™€๏ธ", + "woman swimming medium skin tone": "๐ŸŠ๐Ÿฝโ€โ™€๏ธ", + "woman teacher": "๐Ÿ‘ฉโ€๐Ÿซ", + "woman teacher dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿซ", + "woman teacher light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿซ", + "woman teacher medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿซ", + "woman teacher medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿซ", + "woman teacher medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿซ", + "woman technologist": "๐Ÿ‘ฉโ€๐Ÿ’ป", + "woman technologist dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿ’ป", + "woman technologist light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿ’ป", + "woman technologist medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿ’ป", + "woman technologist medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿ’ป", + "woman technologist medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿ’ป", + "woman tipping hand": "๐Ÿ’โ€โ™€๏ธ", + "woman tipping hand dark skin tone": "๐Ÿ’๐Ÿฟโ€โ™€๏ธ", + "woman tipping hand light skin tone": "๐Ÿ’๐Ÿปโ€โ™€๏ธ", + "woman tipping hand medium dark skin tone": "๐Ÿ’๐Ÿพโ€โ™€๏ธ", + "woman tipping hand medium light skin tone": "๐Ÿ’๐Ÿผโ€โ™€๏ธ", + "woman tipping hand medium skin tone": "๐Ÿ’๐Ÿฝโ€โ™€๏ธ", + "woman vampire": "๐Ÿง›โ€โ™€๏ธ", + "woman vampire dark skin tone": "๐Ÿง›๐Ÿฟโ€โ™€๏ธ", + "woman vampire light skin tone": "๐Ÿง›๐Ÿปโ€โ™€๏ธ", + "woman vampire medium dark skin tone": "๐Ÿง›๐Ÿพโ€โ™€๏ธ", + "woman vampire medium light skin tone": "๐Ÿง›๐Ÿผโ€โ™€๏ธ", + "woman vampire medium skin tone": "๐Ÿง›๐Ÿฝโ€โ™€๏ธ", + "woman walking": "๐Ÿšถโ€โ™€๏ธ", + "woman walking dark skin tone": "๐Ÿšถ๐Ÿฟโ€โ™€๏ธ", + "woman walking light skin tone": "๐Ÿšถ๐Ÿปโ€โ™€๏ธ", + "woman walking medium dark skin tone": "๐Ÿšถ๐Ÿพโ€โ™€๏ธ", + "woman walking medium light skin tone": "๐Ÿšถ๐Ÿผโ€โ™€๏ธ", + "woman walking medium skin tone": "๐Ÿšถ๐Ÿฝโ€โ™€๏ธ", + "woman wearing turban": "๐Ÿ‘ณโ€โ™€๏ธ", + "woman wearing turban dark skin tone": "๐Ÿ‘ณ๐Ÿฟโ€โ™€๏ธ", + "woman wearing turban light skin tone": "๐Ÿ‘ณ๐Ÿปโ€โ™€๏ธ", + "woman wearing turban medium dark skin tone": "๐Ÿ‘ณ๐Ÿพโ€โ™€๏ธ", + "woman wearing turban medium light skin tone": "๐Ÿ‘ณ๐Ÿผโ€โ™€๏ธ", + "woman wearing turban medium skin tone": "๐Ÿ‘ณ๐Ÿฝโ€โ™€๏ธ", + "woman white hair": "๐Ÿ‘ฉโ€๐Ÿฆณ", + "woman with headscarf": "๐Ÿง•", + "woman with headscarf dark skin tone": "๐Ÿง•๐Ÿฟ", + "woman with headscarf light skin tone": "๐Ÿง•๐Ÿป", + "woman with headscarf medium dark skin tone": "๐Ÿง•๐Ÿพ", + "woman with headscarf medium light skin tone": "๐Ÿง•๐Ÿผ", + "woman with headscarf medium skin tone": "๐Ÿง•๐Ÿฝ", + "woman with veil": "๐Ÿ‘ฐโ€โ™€๏ธ", + "woman with veil dark skin tone": "๐Ÿ‘ฐ๐Ÿฟโ€โ™€๏ธ", + "woman with veil light skin tone": "๐Ÿ‘ฐ๐Ÿปโ€โ™€๏ธ", + "woman with veil medium dark skin tone": "๐Ÿ‘ฐ๐Ÿพโ€โ™€๏ธ", + "woman with veil medium light skin tone": "๐Ÿ‘ฐ๐Ÿผโ€โ™€๏ธ", + "woman with veil medium skin tone": "๐Ÿ‘ฐ๐Ÿฝโ€โ™€๏ธ", + "woman with white cane": "๐Ÿ‘ฉโ€๐Ÿฆฏ", + "woman with white cane dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ", + "woman with white cane light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ", + "woman with white cane medium dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ", + "woman with white cane medium light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ", + "woman with white cane medium skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ", + "woman zombie": "๐ŸงŸโ€โ™€๏ธ", + "womanโ€™s boot": "๐Ÿ‘ข", + "womanโ€™s clothes": "๐Ÿ‘š", + "womanโ€™s hat": "๐Ÿ‘’", + "womanโ€™s sandal": "๐Ÿ‘ก", + "women holding hands": "๐Ÿ‘ญ", + "women holding hands dark skin tone": "๐Ÿ‘ญ๐Ÿฟ", + "women holding hands dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "women holding hands dark skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "women holding hands dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "women holding hands dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "women holding hands light skin tone": "๐Ÿ‘ญ๐Ÿป", + "women holding hands light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "women holding hands light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "women holding hands light skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "women holding hands light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "women holding hands medium dark skin tone": "๐Ÿ‘ญ๐Ÿพ", + "women holding hands medium dark skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "women holding hands medium dark skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "women holding hands medium dark skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "women holding hands medium dark skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "women holding hands medium light skin tone": "๐Ÿ‘ญ๐Ÿผ", + "women holding hands medium light skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "women holding hands medium light skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "women holding hands medium light skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "women holding hands medium light skin tone medium skin tone": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "women holding hands medium skin tone": "๐Ÿ‘ญ๐Ÿฝ", + "women holding hands medium skin tone dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "women holding hands medium skin tone light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "women holding hands medium skin tone medium dark skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "women holding hands medium skin tone medium light skin tone": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "women with bunny ears": "๐Ÿ‘ฏโ€โ™€๏ธ", + "women wrestling": "๐Ÿคผโ€โ™€๏ธ", + "womenโ€™s room": "๐Ÿšบ", + "wood": "๐Ÿชต", + "woozy face": "๐Ÿฅด", + "world map": "๐Ÿ—บ๏ธ", + "worm": "๐Ÿชฑ", + "worried face": "๐Ÿ˜Ÿ", + "wrapped gift": "๐ŸŽ", "wrench": "๐Ÿ”ง", - "writing_hand": "โœ๏ธ", - "x": "โŒ", + "writing hand": "โœ๏ธ", + "writing hand dark skin tone": "โœ๐Ÿฟ", + "writing hand light skin tone": "โœ๐Ÿป", + "writing hand medium dark skin tone": "โœ๐Ÿพ", + "writing hand medium light skin tone": "โœ๐Ÿผ", + "writing hand medium skin tone": "โœ๐Ÿฝ", + "x ray": "๐Ÿฉป", "yarn": "๐Ÿงถ", - "yawning_face": "๐Ÿฅฑ", - "yellow_circle": "๐ŸŸก", - "yellow_heart": "๐Ÿ’›", - "yellow_square": "๐ŸŸจ", - "yen": "๐Ÿ’ด", - "yin_yang": "โ˜ฏ๏ธ", - "yoyo": "๐Ÿช€", - "yum": "๐Ÿ˜‹", - "zany_face": "๐Ÿคช", - "zap": "โšก", + "yawning face": "๐Ÿฅฑ", + "yellow circle": "๐ŸŸก", + "yellow heart": "๐Ÿ’›", + "yellow square": "๐ŸŸจ", + "yen banknote": "๐Ÿ’ด", + "yin yang": "โ˜ฏ๏ธ", + "yo yo": "๐Ÿช€", + "zany face": "๐Ÿคช", "zebra": "๐Ÿฆ“", - "zero": "0โƒฃ", - "zipper_mouth": "๐Ÿค", + "zipper mouth face": "๐Ÿค", "zombie": "๐ŸงŸ", "zzz": "๐Ÿ’ค" -} \ No newline at end of file +} diff --git a/static/styles.json b/static/styles.json index 23f57c65..c112dab4 100644 --- a/static/styles.json +++ b/static/styles.json @@ -13,5 +13,18 @@ "breezy-dark": "/static/themes/breezy-dark.json", "breezy-light": "/static/themes/breezy-light.json", "mammal": "/static/themes/mammal.json", - "paper": "/static/themes/paper.json" + "paper": "/static/themes/paper.json", + "gnutan":"/static/themes/gnutan.json", + "chestnut": "/static/themes/chestnut.json", + "divoom": "/static/themes/divoom.json", + "electric-poles": "/static/themes/electric-poles.json", + "evening-city": "/static/themes/evening-city.json", + "galaxy-splash": "/static/themes/galaxy-splash.json", + "midnight-wizardry": "/static/themes/midnight-wizardry.json", + "mojave": "/static/themes/mojave.json", + "simply-dark": "/static/themes/simply-dark.json", + "blue-cum": "/static/themes/blue-cum.json", + "sleepy-green": "/static/themes/sleepy-green.json", + "desu-dark": "/static/themes/desu-dark.json", + "froth-noire":"/static/themes/froth-noire.json" } diff --git a/static/terms-of-service.html b/static/terms-of-service.html index 2b7bf769..03619d7e 100644 --- a/static/terms-of-service.html +++ b/static/terms-of-service.html @@ -1,9 +1,17 @@ -

    Terms of Service

    +

    Welcome to the Froth Zone!

    -

    This is the default placeholder ToS. You should copy it over to your static folder and edit it to fit the needs of your instance.

    +

    + You need a valid email to sign up.
    You will be sent an validation email. +

    +
    If I know who you are I might make an exception to that.
    -

    To do so, place a file at "/instance/static/static/terms-of-service.html" in your - Pleroma install containing the real ToS for your instance.

    -

    See the Pleroma documentation for more information.

    -
    - +

    Actual Terms

    +
      +
    1. Do not post anything that is illegal in the US.
    2. +
    3. Do not post anything NSFW without tagging it.
    4. +
    5. Do not post only NSFW. Go somewhere else for that.
    6. +
    7. No block evasion.
    8. +
    9. No doxing.
    10. +
    11. No spamming or shilling. Go back to Twitter.
    12. +
    13. Do not imitate being someone without their permission.
    14. +
    diff --git a/static/themes/blue-cum.json b/static/themes/blue-cum.json new file mode 100644 index 00000000..de931bcf --- /dev/null +++ b/static/themes/blue-cum.json @@ -0,0 +1,382 @@ +{ + "name": "Blue Cum (@grumbulon)", + "_pleroma_theme_version": 2, + "theme": { + "themeEngineVersion": 3, + "shadows": { + "panel": [ + { + "color": "#5f8785", + "x": "0", + "y": "0", + "blur": "0", + "spread": "1", + "alpha": "0.3" + } + ], + "topBar": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#000000", + "alpha": 0.6 + } + ], + "popup": [ + { + "x": 2, + "y": 2, + "blur": 3, + "spread": 0, + "color": "#000000", + "alpha": 0.5 + } + ], + "avatar": [ + { + "color": "#000000", + "x": "1", + "y": 1, + "blur": "7", + "spread": "-17", + "alpha": 0.7 + } + ], + "avatarStatus": [], + "panelHeader": [], + "button": [ + { + "x": 0, + "y": 0, + "blur": 2, + "spread": 0, + "color": "#000000", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + } + ], + "buttonHover": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#e5e9f0", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + } + ], + "buttonPressed": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#e5e9f0", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + } + ], + "input": [ + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": 0, + "blur": 2, + "inset": true, + "spread": 0, + "color": "#000000", + "alpha": 1 + } + ] + }, + "colors": { + "underlay": "#000000", + "bg": "#031c2d", + "fg": "#031c2d", + "cRed": "#77767b", + "cGreen": "#7fc6a4", + "cOrange": "#f5dd90", + "cBlue": "#77767b", + "accent": "#f5dd90", + "link": "#f5dd90", + "text": "#e5e9f0", + "chatBg": "#031c2d", + "chatMessageIncomingBg": "#031c2d", + "chatMessageOutgoingBg": "#052b45", + "chatMessageOutgoingBorder": "#06314f", + "chatMessageOutgoingLink": "#f5dd90", + "chatMessageOutgoingText": "#e5e9f0", + "border": "#042237", + "chatMessageIncomingBorder": "#052841", + "chatMessageIncomingLink": "#f5dd90", + "chatMessageIncomingText": "#e5e9f0", + "badgeNotification": "#f0be75", + "badgeNotificationText": "#000000", + "alertNeutral": "#e5e9f0", + "alertNeutralText": "#0f131a", + "alertPopupNeutral": "#e5e9f0", + "alertPopupNeutralText": "#0f131a", + "alertSuccess": "#7fc6a4", + "alertSuccessText": "#e5e9f0", + "alertPopupSuccess": "#7fc6a4", + "alertPopupSuccessText": "#0f131a", + "alertWarning": "#f5dd90", + "alertWarningText": "#ffffff", + "alertPopupWarning": "#f5dd90", + "alertPopupWarningText": "#000000", + "alertError": "#d24e5a", + "alertErrorText": "#e5e9f0", + "alertPopupError": "#d24e5a", + "alertPopupErrorText": "#ffffff", + "panel": "#031c2d", + "panelText": "#e5e9f0", + "alertNeutralPanelText": "#0f131a", + "alertSuccessPanelText": "#e5e9f0", + "alertWarningPanelText": "#ffffff", + "alertErrorPanelText": "#e5e9f0", + "fgText": "#e5e9f0", + "topBar": "#031c2d", + "topBarText": "#e5e9f0", + "input": "#031c2d", + "inputTopbarText": "#e5e9f0", + "inputPanelText": "#e5e9f0", + "inputText": "#e5e9f0", + "btn": "#031c2d", + "btnText": "#e5e9f0", + "btnTopBarText": "#e5e9f0", + "btnDisabled": "#031c2d", + "btnDisabledTopBarText": "#3c505e", + "btnPanelText": "#e5e9f0", + "btnDisabledPanelText": "#3c505e", + "btnDisabledText": "#3c505e", + "btnToggled": "#0a578d", + "btnToggledTopBarText": "#e5e9f0", + "btnToggledPanelText": "#e5e9f0", + "btnToggledText": "#e5e9f0", + "btnPressed": "#031c2d", + "btnPressedTopBarText": "#e5e9f0", + "btnPressedTopBar": "#031c2d", + "btnPressedPanelText": "#e5e9f0", + "btnPressedPanel": "#031c2d", + "btnPressedText": "#e5e9f0", + "tabActiveText": "#e5e9f0", + "tabText": "#e5e9f0", + "tab": "#031c2d", + "fgLink": "#f5dd90", + "topBarLink": "#f5dd90", + "panelLink": "#f5dd90", + "panelFaint": "#e5e9f0", + "icon": "#74838f", + "poll": "#646a55", + "pollText": "#e5e9f0", + "postCyantext": "#85848a", + "postGreentext": "#7fc6a4", + "postLink": "#f5dd90", + "lightText": "#ffffff", + "popover": "#031c2d", + "selectedMenuPopover": "#052b45", + "highlight": "#052b45", + "highlightText": "#e5e9f0", + "selectedMenu": "#052b45", + "selectedMenuText": "#e5e9f0", + "selectedMenuPopoverIcon": "#758a9b", + "highlightLink": "#f5dd90", + "selectedMenuLink": "#f5dd90", + "selectedMenuPopoverLink": "#f5dd90", + "selectedMenuPopoverText": "#e5e9f0", + "faintLink": "#f5dd90", + "highlightFaintLink": "#f5dd90", + "selectedMenuFaintLink": "#f5dd90", + "selectedMenuPopoverFaintLink": "#f5dd90", + "faint": "#e5e9f0", + "highlightFaintText": "#e5e9f0", + "selectedMenuFaintText": "#e5e9f0", + "selectedMenuPopoverFaintText": "#e5e9f0", + "highlightLightText": "#ffffff", + "selectedMenuLightText": "#ffffff", + "selectedMenuPopoverLightText": "#ffffff", + "selectedMenuIcon": "#758a9b", + "selectedPost": "#052b45", + "selectedPostText": "#e5e9f0", + "selectedPostIcon": "#758a9b", + "selectedPostLink": "#f5dd90", + "selectedPostFaintLink": "#f5dd90", + "highlightPostLink": "#f5dd90", + "selectedPostPostLink": "#f5dd90", + "selectedPostLightText": "#ffffff", + "selectedPostFaintText": "#e5e9f0", + "popoverText": "#e5e9f0", + "popoverIcon": "#74838f", + "popoverLink": "#f5dd90", + "postFaintLink": "#f5dd90", + "popoverPostFaintLink": "#f5dd90", + "popoverFaintLink": "#f5dd90", + "popoverFaintText": "#e5e9f0", + "popoverPostLink": "#f5dd90", + "popoverLightText": "#ffffff", + "highlightIcon": "#758a9b", + "highlightPostFaintLink": "#f5dd90", + "profileTint": "#031c2d", + "profileBg": "#010f1a", + "wallpaper": "#031624" + }, + "opacity": { + "underlay": 0.15, + "bg": 1, + "border": 1, + "alert": 0.5, + "alertPopup": 0.95, + "panel": 1, + "input": 0.5, + "btn": 1, + "faint": 0.5, + "popover": 1, + "profileTint": 0.5 + }, + "radii": { + "btn": "0", + "input": "2", + "checkbox": "0", + "panel": "17", + "avatar": "7", + "avatarAlt": "2", + "tooltip": 2, + "attachment": "3", + "chatMessage": "17" + }, + "fonts": { + "interface": { + "family": "sans-serif" + }, + "input": { + "family": "inherit" + }, + "post": { + "family": "inherit" + }, + "postCode": { + "family": "monospace" + } + } + }, + "source": { + "themeEngineVersion": 3, + "fonts": {}, + "shadows": { + "avatar": [ + { + "x": "1", + "y": 1, + "blur": "7", + "spread": "-17", + "color": "#000000", + "alpha": 0.7 + } + ], + "panel": [ + { + "x": "0", + "y": "0", + "blur": "0", + "spread": "1", + "color": "#5f8785", + "alpha": "0.3" + } + ] + }, + "opacity": {}, + "colors": { + "bg": "#031C2D", + "fg": "#031C2D", + "text": "#e5e9f0", + "link": "#F5DD90", + "cBlue": "#77767b", + "cRed": "#77767b", + "cGreen": "#7FC6A4", + "cOrange": "#F5DD90", + "alertError": "#d24e5a", + "badgeNotification": "#f0be75" + }, + "radii": { + "btn": "0", + "input": "2", + "checkbox": "0", + "panel": "17", + "avatar": "7", + "avatarAlt": "2", + "tooltip": 2, + "attachment": "3" + } + } +} \ No newline at end of file diff --git a/static/themes/chestnut.json b/static/themes/chestnut.json new file mode 100644 index 00000000..a74e1edc --- /dev/null +++ b/static/themes/chestnut.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":1,"y":1,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"topBar":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":8,"spread":0,"color":"#000000","alpha":0.7}],"avatarStatus":[],"panelHeader":[],"button":[{"x":0,"y":0,"blur":2,"spread":0,"color":"#000000","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonHover":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#eee7e3","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonPressed":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#eee7e3","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true}],"input":[{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":0,"blur":2,"inset":true,"spread":0,"color":"#000000","alpha":1}]},"colors":{"underlay":"#000000","bg":"#6f574c","fg":"#655953","cRed":"#d31014","cOrange":"#ffa500","cGreen":"#0095ff","cBlue":"#0fa00f","accent":"#992600","link":"#eabca4","text":"#eee7e3","chatBg":"#6f574c","chatMessageIncomingBg":"#6f574c","chatMessageOutgoingBg":"#7f6357","chatMessageOutgoingBorder":"#85685b","chatMessageOutgoingLink":"#5b2d16","chatMessageOutgoingText":"#eee7e3","border":"#6b5e58","chatMessageIncomingBorder":"#71635d","chatMessageIncomingLink":"#5b2d16","chatMessageIncomingText":"#eee7e3","badgeNotification":"#d31014","badgeNotificationText":"#ffffff","alertNeutral":"#eee7e3","alertNeutralText":"#1d1611","alertPopupNeutral":"#eee7e3","alertPopupNeutralText":"#1d1611","alertWarning":"#ffa500","alertWarningText":"#1d1611","alertPopupWarning":"#ffa500","alertPopupWarningText":"#1d1611","alertError":"#d31014","alertErrorText":"#ffffff","alertPopupError":"#d31014","alertPopupErrorText":"#ffffff","panel":"#655953","panelText":"#e9e9fb","alertNeutralPanelText":"#050517","alertWarningPanelText":"#050517","alertErrorPanelText":"#e9e9fb","fgText":"#eee7e3","topBar":"#655953","topBarText":"#eee7e3","input":"#655953","inputTopbarText":"#eee7e3","inputPanelText":"#e9e9fb","inputText":"#eee7e3","btn":"#655953","btnText":"#eee7e3","btnTopBarText":"#eee7e3","btnDisabled":"#6d584e","btnDisabledTopBarText":"#8d7c74","btnPanelText":"#eee7e3","btnDisabledPanelText":"#8d7c74","btnDisabledText":"#8d7c74","btnToggled":"#9a8c85","btnToggledTopBarText":"#ffffff","btnToggledPanelText":"#1d1611","btnToggledText":"#1d1611","btnPressed":"#655953","btnPressedTopBarText":"#eee7e3","btnPressedTopBar":"#655953","btnPressedPanelText":"#eee7e3","btnPressedPanel":"#655953","btnPressedText":"#eee7e3","tabActiveText":"#1d1611","tabText":"#eee7e3","tab":"#655953","fgLink":"#5b2d16","topBarLink":"#eabda5","panelLink":"#eabda5","panelFaint":"#eee7e3","icon":"#af9f98","poll":"#80442e","pollText":"#eee7e3","postGreentext":"#9aaad0","postLink":"#ebdfdb","lightText":"#000000","popover":"#6f574c","selectedMenuPopover":"#7f6357","highlight":"#7f6357","highlightText":"#ffffff","selectedMenu":"#7f6357","selectedMenuText":"#ffffff","selectedMenuPopoverIcon":"#bfb1ab","highlightLink":"#5b2d16","selectedMenuLink":"#eabda5","selectedMenuPopoverLink":"#5b2e16","selectedMenuPopoverText":"#000000","faintLink":"#eabca4","highlightFaintLink":"#5b2d16","selectedMenuFaintLink":"#eabda5","selectedMenuPopoverFaintLink":"#5b2e16","faint":"#eee7e3","highlightFaintText":"#ffffff","selectedMenuFaintText":"#ffffff","selectedMenuPopoverFaintText":"#000000","highlightLightText":"#ffffff","selectedMenuLightText":"#ffffff","selectedMenuPopoverLightText":"#000000","selectedMenuIcon":"#bfb1ab","selectedPost":"#7f6357","selectedPostText":"#ffffff","selected \ No newline at end of file diff --git a/static/themes/desu-dark.json b/static/themes/desu-dark.json new file mode 100644 index 00000000..072f0128 --- /dev/null +++ b/static/themes/desu-dark.json @@ -0,0 +1,478 @@ +{ + "name": "Desu Dark (@neko)", + "_pleroma_theme_version": 2, + "theme": { + "themeEngineVersion": 3, + "shadows": { + "panel": [ + { + "color": "#0a1707", + "x": 0, + "y": "0", + "blur": "5", + "spread": "2", + "inset": false, + "alpha": "0.4" + } + ], + "topBar": [ + { + "color": "#000000", + "x": 0, + "y": "1", + "blur": 4, + "spread": 0, + "alpha": "0.4" + }, + { + "color": "#000000", + "x": 0, + "y": "2", + "blur": "7", + "spread": 0, + "inset": false, + "alpha": "0.3" + } + ], + "popup": [ + { + "x": 2, + "y": 2, + "blur": 3, + "spread": 0, + "color": "#000000", + "alpha": 0.5 + } + ], + "avatar": [ + { + "color": "#000000", + "x": 0, + "y": 1, + "blur": "6", + "spread": "0", + "alpha": "0.8", + "inset": false + } + ], + "avatarStatus": [], + "panelHeader": [ + { + "color": "#ffffff", + "x": 0, + "y": "-2", + "blur": "0", + "spread": "0", + "inset": true, + "alpha": "0.15" + } + ], + "button": [ + { + "color": "#ffffff", + "x": 0, + "y": "1", + "blur": "0", + "spread": "0", + "inset": true, + "alpha": "0.2" + }, + { + "color": "#253817", + "x": 0, + "y": "20", + "blur": "20", + "spread": "-14", + "inset": true, + "alpha": "0.7" + } + ], + "buttonHover": [ + { + "color": "#5a873a", + "x": 0, + "y": 0, + "blur": "0", + "spread": "2", + "inset": false, + "alpha": "0.5" + }, + { + "color": "#253817", + "x": 0, + "y": "20", + "blur": "20", + "spread": "-14", + "inset": true, + "alpha": "0.7" + } + ], + "buttonPressed": [ + { + "color": "#ffffff", + "x": 0, + "y": 0, + "blur": 0, + "spread": "2", + "inset": false, + "alpha": "0.6" + }, + { + "color": "#ffffff", + "x": 0, + "y": "0", + "blur": "11", + "spread": "1", + "inset": true, + "alpha": "0.3" + } + ], + "input": [ + { + "color": "#1b501e", + "x": 0, + "y": 0, + "blur": 0, + "spread": "1", + "inset": true, + "alpha": 1 + } + ] + }, + "colors": { + "underlay": "#0f2d0c", + "bg": "#0e1907", + "fg": "#051402", + "cRed": "#d31014", + "cGreen": "#5dc94a", + "cOrange": "#ffc459", + "cBlue": "#81beea", + "accent": "#89d68c", + "link": "#79a988", + "text": "#dfe0e2", + "chatBg": "#0e1907", + "chatMessageIncomingBg": "#0e1907", + "chatMessageOutgoingBg": "#1a2d0d", + "chatMessageOutgoingBorder": "#1e350f", + "chatMessageOutgoingLink": "#79a988", + "chatMessageOutgoingText": "#dfe0e2", + "border": "#092204", + "chatMessageIncomingBorder": "#0b2c05", + "chatMessageIncomingLink": "#79a988", + "chatMessageIncomingText": "#dfe0e2", + "badgeNotification": "#e15932", + "badgeNotificationText": "#ffffff", + "alertNeutral": "#dfe0e2", + "alertNeutralText": "#ffffff", + "alertPopupNeutral": "#dfe0e2", + "alertPopupNeutralText": "#000000", + "alertSuccess": "#5dc94a", + "alertSuccessText": "#ffffff", + "alertPopupSuccess": "#5dc94a", + "alertPopupSuccessText": "#000000", + "alertWarning": "#ffc459", + "alertWarningText": "#ffffff", + "alertPopupWarning": "#ffc459", + "alertPopupWarningText": "#000000", + "alertError": "#d31014", + "alertErrorText": "#ffffff", + "alertPopupError": "#d31014", + "alertPopupErrorText": "#ffffff", + "panel": "#051402", + "panelText": "#dfe0e2", + "alertNeutralPanelText": "#ffffff", + "alertSuccessPanelText": "#dfe0e2", + "alertWarningPanelText": "#ffffff", + "alertErrorPanelText": "#dfe0e2", + "fgText": "#dfe0e2", + "topBar": "#051402", + "topBarText": "#c5c7cb", + "input": "#051402", + "inputTopbarText": "#c5c7cb", + "inputPanelText": "#dfe0e2", + "inputText": "#dfe0e2", + "btn": "#213913", + "btnText": "#dfe0e2", + "btnTopBarText": "#dfe0e2", + "btnDisabled": "#13210a", + "btnDisabledTopBarText": "#465140", + "btnPanelText": "#dfe0e2", + "btnDisabledPanelText": "#465140", + "btnDisabledText": "#465140", + "btnToggled": "#3ba940", + "btnToggledTopBarText": "#1e1e21", + "btnToggledPanelText": "#1e1e21", + "btnToggledText": "#1e1e21", + "btnPressed": "#213913", + "btnPressedTopBarText": "#dfe0e2", + "btnPressedTopBar": "#213913", + "btnPressedPanelText": "#dfe0e2", + "btnPressedPanel": "#213913", + "btnPressedText": "#dfe0e2", + "tabActiveText": "#dfe0e2", + "tabText": "#dfe0e2", + "tab": "#213913", + "fgLink": "#40da83", + "topBarLink": "#c5c7cb", + "panelLink": "#40da83", + "panelFaint": "#dfe0e2", + "icon": "#777d75", + "poll": "#40653d", + "pollText": "#dfe0e2", + "postCyantext": "#81beea", + "postGreentext": "#2cdb30", + "postLink": "#79a988", + "lightText": "#ffffff", + "popover": "#0e1907", + "selectedMenuPopover": "#1a2d0d", + "highlight": "#1a2d0d", + "highlightText": "#dfe0e2", + "selectedMenu": "#1a2d0d", + "selectedMenuText": "#dfe0e2", + "selectedMenuPopoverIcon": "#7d8778", + "highlightLink": "#79a988", + "selectedMenuLink": "#79a988", + "selectedMenuPopoverLink": "#79a988", + "selectedMenuPopoverText": "#dfe0e2", + "faintLink": "#79a988", + "highlightFaintLink": "#79a988", + "selectedMenuFaintLink": "#79a988", + "selectedMenuPopoverFaintLink": "#79a988", + "faint": "#dfe0e2", + "highlightFaintText": "#dfe0e2", + "selectedMenuFaintText": "#dfe0e2", + "selectedMenuPopoverFaintText": "#dfe0e2", + "highlightLightText": "#ffffff", + "selectedMenuLightText": "#ffffff", + "selectedMenuPopoverLightText": "#ffffff", + "selectedMenuIcon": "#7d8778", + "selectedPost": "#1e2a15", + "selectedPostText": "#dfe0e2", + "selectedPostIcon": "#7f857c", + "selectedPostLink": "#79a988", + "selectedPostFaintLink": "#79a988", + "highlightPostLink": "#79a988", + "selectedPostPostLink": "#79a988", + "selectedPostLightText": "#ffffff", + "selectedPostFaintText": "#dfe0e2", + "popoverText": "#dfe0e2", + "popoverIcon": "#777d75", + "popoverLink": "#79a988", + "postFaintLink": "#79a988", + "popoverPostFaintLink": "#79a988", + "popoverFaintLink": "#79a988", + "popoverFaintText": "#dfe0e2", + "popoverPostLink": "#79a988", + "popoverLightText": "#ffffff", + "highlightIcon": "#7d8778", + "highlightPostFaintLink": "#79a988", + "profileTint": "#0e1907", + "profileBg": "#070e04", + "wallpaper": "#151c09" + }, + "opacity": { + "underlay": 0.35, + "bg": 1, + "border": 1, + "alert": 0.5, + "alertPopup": 0.95, + "panel": 1, + "input": 0.5, + "btn": 1, + "faint": 0.5, + "popover": 1, + "profileTint": 0.5 + }, + "radii": { + "btn": "0", + "input": "0", + "checkbox": "0", + "panel": "0", + "avatar": "3", + "avatarAlt": "3", + "tooltip": "10", + "attachment": "0", + "chatMessage": "0" + }, + "fonts": { + "interface": { + "family": "sans-serif" + }, + "input": { + "family": "inherit" + }, + "post": { + "family": "inherit" + }, + "postCode": { + "family": "monospace" + } + } + }, + "source": { + "themeEngineVersion": 3, + "fonts": {}, + "shadows": { + "buttonHover": [ + { + "x": 0, + "y": 0, + "blur": "0", + "spread": "2", + "inset": false, + "color": "#5a873a", + "alpha": "0.5" + }, + { + "x": 0, + "y": "20", + "blur": "20", + "spread": "-14", + "inset": true, + "color": "#253817", + "alpha": "0.7" + } + ], + "buttonPressed": [ + { + "x": 0, + "y": 0, + "blur": 0, + "spread": "2", + "inset": false, + "color": "#ffffff", + "alpha": "0.6" + }, + { + "x": 0, + "y": "0", + "blur": "11", + "spread": "1", + "inset": true, + "color": "#ffffff", + "alpha": "0.3" + } + ], + "panelHeader": [ + { + "x": 0, + "y": "-2", + "blur": "0", + "spread": "0", + "inset": true, + "color": "#ffffff", + "alpha": "0.15" + } + ], + "panel": [ + { + "x": 0, + "y": "0", + "blur": "5", + "spread": "2", + "inset": false, + "color": "#0a1707", + "alpha": "0.4" + } + ], + "button": [ + { + "x": 0, + "y": "1", + "blur": "0", + "spread": "0", + "inset": true, + "color": "#ffffff", + "alpha": "0.2" + }, + { + "x": 0, + "y": "20", + "blur": "20", + "spread": "-14", + "inset": true, + "color": "#253817", + "alpha": "0.7" + } + ], + "topBar": [ + { + "x": 0, + "y": "1", + "blur": 4, + "spread": 0, + "color": "#000000", + "alpha": "0.4" + }, + { + "x": 0, + "y": "2", + "blur": "7", + "spread": 0, + "inset": false, + "color": "#000000", + "alpha": "0.3" + } + ], + "avatar": [ + { + "x": 0, + "y": 1, + "blur": "6", + "spread": "0", + "color": "#000000", + "alpha": "0.8", + "inset": false + } + ], + "input": [ + { + "x": 0, + "y": 0, + "blur": 0, + "spread": "1", + "inset": true, + "color": "#1b501e", + "alpha": 1 + } + ] + }, + "opacity": { + "underlay": "0.35" + }, + "colors": { + "bg": "#0e1907", + "wallpaper": "#151c09", + "fg": "#051402", + "text": "#dfe0e2", + "underlay": "#0f2d0c", + "link": "#79a988", + "accent": "#89d68c", + "cBlue": "#81beea", + "cRed": "#d31014", + "cGreen": "#5dc94a", + "cOrange": "#ffc459", + "selectedPost": "#1e2a15", + "postGreentext": "#2cdb30", + "border": "--fg,3", + "fgLink": "#40da83", + "topBarText": "--text,-9.75", + "topBarLink": "--topBarText", + "btn": "#213913", + "btnToggled": "--accent,-24.2", + "alertErrorText": "--text,21.2", + "badgeNotification": "#e15932", + "badgeNotificationText": "#ffffff" + }, + "radii": { + "btn": "0", + "input": "0", + "checkbox": "0", + "panel": "0", + "avatar": "3", + "avatarAlt": "3", + "tooltip": "10", + "attachment": "0" + } + } +} \ No newline at end of file diff --git a/static/themes/divoom.json b/static/themes/divoom.json new file mode 100644 index 00000000..757124bd --- /dev/null +++ b/static/themes/divoom.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":"5","y":"5","blur":"5","spread":"6","color":"#000000","alpha":"0.5"}],"topBar":[{"x":"0","y":"0","blur":4,"spread":"1","color":"#f6b831","alpha":"0.4"}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":8,"spread":0,"color":"#000000","alpha":0.7}],"avatarStatus":[{"x":0,"y":0,"blur":"6","spread":"4","inset":false,"color":"#f6b831","alpha":"0.2"}],"panelHeader":[{"x":"0","y":"0","blur":"9","spread":"0","inset":false,"color":"#f7be48","alpha":"0.6"}],"button":[{"x":"5","y":"9","blur":"9","spread":"0","color":"#000000","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonHover":[{"x":"4","y":"3","blur":"12","spread":"3","color":"#f0f000","alpha":"0.5"}],"buttonPressed":[{"x":0,"y":"0","blur":"3","spread":"2","inset":false,"color":"#ffff00","alpha":1}],"input":[]},"colors":{"underlay":"#000000","bg":"#271210","fg":"#ff9428","cRed":"#efebeb","cOrange":"#d3ac08","cGreen":"#1f9f18","cBlue":"#30a1cd","accent":"#d16029","link":"#ec8b41","text":"#29dc1b","chatBg":"#271210","chatMessageIncomingBg":"#271210","chatMessageOutgoingBg":"#3a1b18","chatMessageOutgoingBorder":"#411e1b","chatMessageOutgoingLink":"#ec8b41","chatMessageOutgoingText":"#29dc1b","border":"#000000","chatMessageIncomingBorder":"#060606","chatMessageIncomingLink":"#ec8b41","chatMessageIncomingText":"#29dc1b","badgeNotification":"#dc7e5f","badgeNotificationText":"#000000","alertNeutral":"#29dc1b","alertNeutralText":"#ffffff","alertPopupNeutral":"#29dc1b","alertPopupNeutralText":"#000000","alertWarning":"#d3ac08","alertWarningText":"#ffffff","alertPopupWarning":"#d3ac08","alertPopupWarningText":"#000000","alertError":"#efebeb","alertErrorText":"#000000","alertPopupError":"#efebeb","alertPopupErrorText":"#000000","panel":"#ff8000","panelText":"#00ff00","alertNeutralPanelText":"#ffffff","alertWarningPanelText":"#000000","alertErrorPanelText":"#000000","fgText":"#008040","topBar":"#6f0000","topBarText":"#f3e853","input":"#150a05","inputTopbarText":"#f3e853","inputPanelText":"#00ff00","inputText":"#29dc1b","btn":"#863c23","btnText":"#fff780","btnTopBarText":"#ffff00","btnDisabled":"#3f1d15","btnDisabledTopBarText":"#6f5610","btnPanelText":"#ffff00","btnDisabledPanelText":"#6f5610","btnDisabledText":"#6f5430","btnToggled":"#ce6542","btnToggledTopBarText":"#ffff00","btnToggledPanelText":"#ffffff","btnToggledText":"#ffffff","btnPressed":"#a55a40","btnPressedTopBarText":"#ffff00","btnPressedTopBar":"#a55a40","btnPressedPanelText":"#ffff00","btnPressedPanel":"#a55a40","btnPressedText":"#fff780","tabActiveText":"#29dc1b","tabText":"#f7c164","tab":"#863c23","fgLink":"#f3c853","topBarLink":"#00ff00","panelLink":"#31ffff","panelFaint":"#7fffc0","icon":"#e87721","poll":"#6b321a","pollText":"#29dc1b","postGreentext":"#43f8e6","postLink":"#f3e853","lightText":"#79ee70","popover":"#800000","selectedMenuPopover":"#9a0000","highlight":"#3a1b18","highlightText":"#29dc1b","selectedMenu":"#ff8080","selectedMenuText":"#ffff00","selectedMenuPopoverIcon":"#cd8000","highlightLink":"#ec8b41","selectedMenuLink":"#be5d13","selectedMenuPopoverLink":"#ec8b41","selectedMenuPopoverText":"#ffffff","faintLink":"#d28346","highlightFaintLink":"#d28346","selectedMenuFaintLink":"#b96a2d","selectedMenuPopoverFaintLink":"#d38346","faint":"#95814b","highlightFaintText":"#b4a06a","selectedMenuFaintText":"#ffffff","selectedMenuPopoverFaintText":"#000000","highlightLightText":"#79ee70","selectedMenuLightText":"#ffffff","selectedMenuPopoverLightText":"#000000","selectedMenuIcon":"#ffc040","selectedPost":"#3a1b18","selectedPostText":"#00ff00","selectedPostIcon":"#1d8d0c","selectedPostLink":"#2fbbff","selectedPostFaintLink":"#d28346","highlightPostLink":"#f3e853","selectedPostPostLink":"#f3e853","selectedPostLightText":"#79ee70","selectedPostFaintText":"#b4a06a","popoverText":"#00ee00","popoverIcon":"#407700","popoverLink":"#ffff00","postFaintLink":"#f3e853 \ No newline at end of file diff --git a/static/themes/electric-poles.json b/static/themes/electric-poles.json new file mode 100644 index 00000000..8cf9a7f3 --- /dev/null +++ b/static/themes/electric-poles.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":1,"y":1,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"topBar":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":8,"spread":0,"color":"#000000","alpha":0.7}],"avatarStatus":[],"panelHeader":[],"button":[{"x":0,"y":0,"blur":"0","spread":"1","color":"#00FFFF","alpha":"0.75","inset":true},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonHover":[{"x":0,"y":0,"blur":"0","spread":"1","color":"#00ffff","alpha":1,"inset":true},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonPressed":[{"x":0,"y":0,"blur":"2","spread":"1","color":"#00ffff","alpha":"1","inset":true},{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true}],"input":[{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":0,"blur":2,"inset":true,"spread":0,"color":"#000000","alpha":1}]},"colors":{"underlay":"#000000","bg":"#102457","fg":"#1a1a1a","cRed":"#ffb0aa","cOrange":"#ffffaa","cGreen":"#5fad47","cBlue":"#21a1de","accent":"#ffb0ab","link":"#ffb0ab","text":"#d7d7d7","chatBg":"#102457","chatMessageIncomingBg":"#102457","chatMessageOutgoingBg":"#102457","chatMessageOutgoingBorder":"#102457","chatMessageOutgoingLink":"#ffb0ab","chatMessageOutgoingText":"#d7d7d7","border":"#102457","chatMessageIncomingBorder":"#122860","chatMessageIncomingLink":"#ffbbae","chatMessageIncomingText":"#d7d7d7","badgeNotification":"#ffbbaa","badgeNotificationText":"#000000","alertNeutral":"#d7d7d7","alertNeutralText":"#282828","alertPopupNeutral":"#d7d7d7","alertPopupNeutralText":"#282828","alertWarning":"#20a1de","alertWarningText":"#ffffff","alertPopupWarning":"#20a1de","alertPopupWarningText":"#000000","alertError":"#ffbcbb","alertErrorText":"#000000","alertPopupError":"#ffbcbb","alertPopupErrorText":"#000000","panel":"#102457","panelText":"#d7d7d7","alertNeutralPanelText":"#000000","alertWarningPanelText":"#ffffff","alertErrorPanelText":"#000000","fgText":"#b7faef","topBar":"#102457","topBarText":"#ffcaee","input":"#104690","inputTopbarText":"#ffcaee","inputPanelText":"#d7d7d7","inputText":"#ffcade","btn":"#102457","btnText":"#ffbeae","btnTopBarText":"#ffccdd","btnDisabled":"#102457","btnDisabledTopBarText":"#4c4e79","btnPanelText":"#ffbeaa","btnDisabledPanelText":"#4c4b6c","btnDisabledText":"#4c4b6d","btnToggled":"#2048ae","btnToggledTopBarText":"#ffccdd","btnToggledPanelText":"#ffbeaa","btnToggledText":"#ffbeae","btnPressed":"#103470","btnPressedTopBarText":"#f36ed6","btnPressedTopBar":"#103470","btnPressedPanelText":"#e58bb8","btnPressedPanel":"#103470","btnPressedText":"#e58bb8","tabActiveText":"#d7d7d7","tabText":"#e58bb8","tab":"#102457","fgLink":"#3ef9ed","topBarLink":"#fbd0f6","panelLink":"#ffbbde","panelFaint":"#b7faef","icon":"#747e97","poll":"#705c79","pollText":"#ffffff","postGreentext":"#5ade47","postLink":"#ffb0ab","lightText":"#ffffff","popover":"#102457","selectedMenuPopover":"#142d6d","highlight":"#142d6d","highlightText":"#d7d7d7","selectedMenu":"#142d6d","selectedMenuText":"#d7d7d7","selectedMenuPopoverIcon":"#7682a2","highlightLink":"#ffb0ab","selectedMenuLink":"#ffbbce","selectedMenuPopoverLink":"#440013","selectedMenuPopoverText":"#282828","faintLink":"#ffbea1","highlightFaintLink":"#ffbea1","selectedMenuFaintLink":"#ffbea1","selectedMenuPopoverFaintLink":"#5f1e00","faint":"#d7d7d7","highlightFaintText":"#d7d7d7","selectedMenuFaintText":"#d7d7d7","selectedMenuPopoverFaintText":"#282828","highlightLightText":"#ffffff","selectedMenuLightText":"#ffffff","selectedMenuPopoverLightText":"#000000","selectedMenuIcon":"#7682a2","sele \ No newline at end of file diff --git a/static/themes/evening-city.json b/static/themes/evening-city.json new file mode 100644 index 00000000..fd84a1e0 --- /dev/null +++ b/static/themes/evening-city.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":"1","y":"2","blur":"6","spread":0,"color":"#000000","alpha":0.6}],"topBar":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":8,"spread":0,"color":"#000000","alpha":0.7}],"avatarStatus":[],"panelHeader":[{"x":0,"y":"40","blur":"40","spread":"-40","inset":true,"color":"#ffffff","alpha":"0.1"}],"button":[{"x":0,"y":"0","blur":"0","spread":"1","color":"#ffffff","alpha":"0.15","inset":true},{"x":"1","y":"1","blur":"1","spread":0,"color":"#000000","alpha":"0.3","inset":false}],"buttonHover":[{"x":0,"y":"0","blur":0,"spread":"1","color":"#accfe8","alpha":1,"inset":true},{"x":"1","y":"1","blur":"1","spread":0,"color":"#000000","alpha":"0.3","inset":false}],"buttonPressed":[{"x":0,"y":0,"blur":"0","spread":"50","color":"#b9b9ba","alpha":0.5,"inset":true},{"x":0,"y":"0","blur":0,"spread":"1","color":"#ffffff","alpha":0.2,"inset":true},{"x":"1","y":"1","blur":0,"spread":0,"color":"#000000","alpha":"0.3","inset":false}],"input":[{"x":0,"y":"0","blur":0,"spread":"1","color":"#FFFFFF","alpha":"0.2","inset":true}]},"colors":{"underlay":"#000000","bg":"#0b0b0b","fg":"#182230","cRed":"#d31014","cOrange":"#ffa500","cGreen":"#0fa00f","cBlue":"#0095ff","accent":"#accfe8","link":"#accfe8","text":"#b9b9ba","chatBg":"#0b0b0b","chatMessageIncomingBg":"#0b0b0b","chatMessageOutgoingBg":"#181818","chatMessageOutgoingBorder":"#1d1d1d","chatMessageOutgoingLink":"#accfe8","chatMessageOutgoingText":"#b9b9ba","border":"#4c545b","chatMessageIncomingBorder":"#515a61","chatMessageIncomingLink":"#accfe8","chatMessageIncomingText":"#b9b9ba","badgeNotification":"#d31014","badgeNotificationText":"#ffffff","alertNeutral":"#b9b9ba","alertNeutralText":"#ffffff","alertPopupNeutral":"#b9b9ba","alertPopupNeutralText":"#000000","alertWarning":"#ffa500","alertWarningText":"#ffffff","alertPopupWarning":"#ffa500","alertPopupWarningText":"#000000","alertError":"#d31014","alertErrorText":"#b9b9ba","alertPopupError":"#d31014","alertPopupErrorText":"#ffffff","panel":"#31363b","panelText":"#b9b9ba","alertNeutralPanelText":"#ffffff","alertWarningPanelText":"#ffffff","alertErrorPanelText":"#b9b9ba","fgText":"#b9b9ba","topBar":"#313131","topBarText":"#b9b9ba","input":"#0b0b0b","inputTopbarText":"#b9b9ba","inputPanelText":"#b9b9ba","inputText":"#b9b9ba","btn":"#0b0b0b","btnText":"#b9b9ba","btnTopBarText":"#b9b9ba","btnDisabled":"#0b0b0b","btnDisabledTopBarText":"#373737","btnPanelText":"#b9b9ba","btnDisabledPanelText":"#373737","btnDisabledText":"#373737","btnToggled":"#3e3e3e","btnToggledTopBarText":"#b9b9ba","btnToggledPanelText":"#b9b9ba","btnToggledText":"#b9b9ba","btnPressed":"#0b0b0b","btnPressedTopBarText":"#b9b9ba","btnPressedTopBar":"#0b0b0b","btnPressedPanelText":"#b9b9ba","btnPressedPanel":"#0b0b0b","btnPressedText":"#b9b9ba","tabActiveText":"#b9b9ba","tabText":"#b9b9ba","tab":"#0b0b0b","fgLink":"#accfe8","topBarLink":"#eff0f1","panelLink":"#accfe8","panelFaint":"#b9b9ba","icon":"#626263","poll":"#4c5a64","pollText":"#ffffff","postGreentext":"#0fa00f","postLink":"#accfe8","lightText":"#ededed","popover":"#0b0b0b","selectedMenuPopover":"#181818","highlight":"#181818","highlightText":"#b9b9ba","selectedMenu":"#181818","selectedMenuText":"#b9b9ba","selectedMenuPopoverIcon":"#696969","highlightLink":"#accfe8","selectedMenuLink":"#accfe8","selectedMenuPopoverLink":"#accfe8","selectedMenuPopoverText":"#b9b9ba","faintLink":"#accfe8","highlightFaintLink":"#accfe8","selectedMenuFaintLink":"#accfe8","selectedMenuPopoverFaintLink":"#accfe8","faint":"#b9b9ba","highlightFaintText":"#b9b9ba","selectedMenuFaintText":"#b9b9ba","selectedMenuPopoverFaintText":"#b9b9ba","highlightLightText":"#ededed","selectedMenuLightText":"#ededed","selectedMenuPopoverLightText":"#ededed","selectedMenuIcon":"#696969","selectedPost":"#181818","selectedPostText":"#b9b9ba","selectedPostIcon":"#696969","selectedPostLink":"#accfe8","selectedPostFaintLink":"#accfe8","highlightPostLink":"#accfe8","select \ No newline at end of file diff --git a/static/themes/froth-noire.json b/static/themes/froth-noire.json new file mode 100644 index 00000000..2c74e0a8 --- /dev/null +++ b/static/themes/froth-noire.json @@ -0,0 +1,356 @@ +{ + "name": "Froth Noire (@sam)", + "_pleroma_theme_version": 2, + "theme": { + "themeEngineVersion": 3, + "shadows": { + "panel": [ + { + "x": 1, + "y": 1, + "blur": 4, + "spread": 0, + "color": "#000000", + "alpha": 0.6 + } + ], + "topBar": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#000000", + "alpha": 0.6 + } + ], + "popup": [ + { + "x": 2, + "y": 2, + "blur": 3, + "spread": 0, + "color": "#000000", + "alpha": 0.5 + } + ], + "avatar": [ + { + "x": 0, + "y": 1, + "blur": 8, + "spread": 0, + "color": "#000000", + "alpha": 0.7 + } + ], + "avatarStatus": [], + "panelHeader": [], + "button": [ + { + "x": 0, + "y": 0, + "blur": 2, + "spread": 0, + "color": "#000000", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + } + ], + "buttonHover": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#ffffff", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + } + ], + "buttonPressed": [ + { + "x": 0, + "y": 0, + "blur": 4, + "spread": 0, + "color": "#ffffff", + "alpha": 1 + }, + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + } + ], + "input": [ + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": 0, + "blur": 2, + "inset": true, + "spread": 0, + "color": "#000000", + "alpha": 1 + } + ] + }, + "colors": { + "underlay": "#000000", + "bg": "#000000", + "fg": "#0a0a0a", + "cRed": "#ea3000", + "cGreen": "#12984f", + "cOrange": "#ffff0b", + "cBlue": "#c0c0c0", + "accent": "#bcbcbc", + "link": "#a0a0a0", + "text": "#ffffff", + "chatBg": "#000000", + "chatMessageIncomingBg": "#000000", + "chatMessageOutgoingBg": "#0d0d0d", + "chatMessageOutgoingBorder": "#121212", + "chatMessageOutgoingLink": "#a0a0a0", + "chatMessageOutgoingText": "#ffffff", + "border": "#101010", + "chatMessageIncomingBorder": "#151515", + "chatMessageIncomingLink": "#a0a0a0", + "chatMessageIncomingText": "#ffffff", + "badgeNotification": "#c23000", + "badgeNotificationText": "#ffffff", + "alertNeutral": "#ffffff", + "alertNeutralText": "#000000", + "alertPopupNeutral": "#ffffff", + "alertPopupNeutralText": "#000000", + "alertSuccess": "#12984f", + "alertSuccessText": "#ffffff", + "alertPopupSuccess": "#12984f", + "alertPopupSuccessText": "#000000", + "alertWarning": "#ffff0b", + "alertWarningText": "#000000", + "alertPopupWarning": "#ffff0b", + "alertPopupWarningText": "#000000", + "alertError": "#ea3000", + "alertErrorText": "#ffffff", + "alertPopupError": "#ea3000", + "alertPopupErrorText": "#ffffff", + "panel": "#0a0a0a", + "panelText": "#ffffff", + "alertNeutralPanelText": "#000000", + "alertSuccessPanelText": "#ffffff", + "alertWarningPanelText": "#000000", + "alertErrorPanelText": "#ffffff", + "fgText": "#ffffff", + "topBar": "#0a0a0a", + "topBarText": "#ffffff", + "input": "#0a0a0a", + "inputTopbarText": "#ffffff", + "inputPanelText": "#ffffff", + "inputText": "#ffffff", + "btn": "#0a0a0a", + "btnText": "#ffffff", + "btnTopBarText": "#ffffff", + "btnDisabled": "#030303", + "btnDisabledTopBarText": "#424242", + "btnPanelText": "#ffffff", + "btnDisabledPanelText": "#424242", + "btnDisabledText": "#424242", + "btnToggled": "#3d3d3d", + "btnToggledTopBarText": "#ffffff", + "btnToggledPanelText": "#ffffff", + "btnToggledText": "#ffffff", + "btnPressed": "#0a0a0a", + "btnPressedTopBarText": "#ffffff", + "btnPressedTopBar": "#0a0a0a", + "btnPressedPanelText": "#ffffff", + "btnPressedPanel": "#0a0a0a", + "btnPressedText": "#ffffff", + "tabActiveText": "#ffffff", + "tabText": "#ffffff", + "tab": "#0a0a0a", + "fgLink": "#c0c0c0", + "topBarLink": "#c0c0c0", + "panelLink": "#c0c0c0", + "panelFaint": "#ffffff", + "icon": "#808080", + "poll": "#4c4c4c", + "pollText": "#ffffff", + "postCyantext": "#c0c0c0", + "postGreentext": "#12984f", + "postLink": "#a0a0a0", + "lightText": "#ffffff", + "popover": "#000000", + "selectedMenuPopover": "#0d0d0d", + "highlight": "#0d0d0d", + "highlightText": "#ffffff", + "selectedMenu": "#0d0d0d", + "selectedMenuText": "#ffffff", + "selectedMenuPopoverIcon": "#868686", + "highlightLink": "#a0a0a0", + "selectedMenuLink": "#a0a0a0", + "selectedMenuPopoverLink": "#a0a0a0", + "selectedMenuPopoverText": "#ffffff", + "faintLink": "#a0a0a0", + "highlightFaintLink": "#a0a0a0", + "selectedMenuFaintLink": "#a0a0a0", + "selectedMenuPopoverFaintLink": "#a0a0a0", + "faint": "#ffffff", + "highlightFaintText": "#ffffff", + "selectedMenuFaintText": "#ffffff", + "selectedMenuPopoverFaintText": "#ffffff", + "highlightLightText": "#ffffff", + "selectedMenuLightText": "#ffffff", + "selectedMenuPopoverLightText": "#ffffff", + "selectedMenuIcon": "#868686", + "selectedPost": "#0d0d0d", + "selectedPostText": "#ffffff", + "selectedPostIcon": "#868686", + "selectedPostLink": "#a0a0a0", + "selectedPostFaintLink": "#a0a0a0", + "highlightPostLink": "#a0a0a0", + "selectedPostPostLink": "#a0a0a0", + "selectedPostLightText": "#ffffff", + "selectedPostFaintText": "#ffffff", + "popoverText": "#ffffff", + "popoverIcon": "#808080", + "popoverLink": "#a0a0a0", + "postFaintLink": "#a0a0a0", + "popoverPostFaintLink": "#a0a0a0", + "popoverFaintLink": "#a0a0a0", + "popoverFaintText": "#ffffff", + "popoverPostLink": "#a0a0a0", + "popoverLightText": "#ffffff", + "highlightIcon": "#868686", + "highlightPostFaintLink": "#a0a0a0", + "profileTint": "#000000", + "profileBg": "#000000", + "wallpaper": "#000000" + }, + "opacity": { + "underlay": 0, + "bg": 0.95, + "border": 1, + "alert": 0.5, + "alertPopup": 0.95, + "panel": 1, + "input": 0.5, + "btn": 1, + "faint": 0.5, + "popover": 1, + "profileTint": 0.5 + }, + "radii": { + "btn": 4, + "input": 4, + "checkbox": 2, + "panel": 10, + "avatar": 5, + "avatarAlt": 50, + "tooltip": 2, + "attachment": 5 + }, + "fonts": { + "interface": { + "family": "sans-serif" + }, + "input": { + "family": "inherit" + }, + "post": { + "family": "inherit" + }, + "postCode": { + "family": "monospace" + } + } + }, + "source": { + "themeEngineVersion": 3, + "fonts": {}, + "shadows": {}, + "opacity": { + "bg": "0.95", + "underlay": "0.0" + }, + "colors": { + "bg": "#000000", + "fg": "#0A0A0A", + "text": "#ffffff", + "underlay": "#000000", + "link": "#A0A0A0", + "accent": "#bcbcbc", + "cBlue": "#c0c0c0", + "cRed": "#EA3000", + "cGreen": "#12984f", + "cOrange": "#ffff0b", + "fgLink": "#c0c0c0", + "badgeNotification": "#C23000" + }, + "radii": {} + } +} \ No newline at end of file diff --git a/static/themes/galaxy-splash.json b/static/themes/galaxy-splash.json new file mode 100644 index 00000000..8ae5e28d --- /dev/null +++ b/static/themes/galaxy-splash.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":"5","y":"5","blur":"5","spread":"6","color":"#000000","alpha":"0.5"}],"topBar":[{"x":"0","y":"0","blur":4,"spread":"1","color":"#f6b831","alpha":"0.4"}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":"10","spread":"-13","color":"#ffffff","alpha":0.7}],"avatarStatus":[{"x":0,"y":0,"blur":"6","spread":"4","inset":false,"color":"#f6b831","alpha":"0.2"}],"panelHeader":[{"x":"11","y":"0","blur":"16","spread":"-16","inset":false,"color":"#f7be48","alpha":"0.6"}],"button":[{"x":"5","y":"9","blur":"0","spread":"-12","color":"#000000","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonHover":[{"x":"4","y":"3","blur":"12","spread":"3","color":"#d8d8d8","alpha":"0.5"}],"buttonPressed":[{"x":0,"y":"0","blur":"3","spread":"2","inset":false,"color":"#dadada","alpha":1}],"input":[]},"colors":{"underlay":"#000000","bg":"#450000","fg":"#d22d2a","cRed":"#ff8e00","cOrange":"#00ff07","cGreen":"#d3fc00","cBlue":"#30a1cd","accent":"#d52562","link":"#01ffe7","text":"#d5d5d5","chatBg":"#450000","chatMessageIncomingBg":"#450000","chatMessageOutgoingBg":"#5f0000","chatMessageOutgoingBorder":"#690000","chatMessageOutgoingLink":"#01ffe7","chatMessageOutgoingText":"#d5d5d5","border":"#000000","chatMessageIncomingBorder":"#060606","chatMessageIncomingLink":"#01ffe7","chatMessageIncomingText":"#d5d5d5","badgeNotification":"#dc7e5f","badgeNotificationText":"#000000","alertNeutral":"#d5d5d5","alertNeutralText":"#000000","alertPopupNeutral":"#d5d5d5","alertPopupNeutralText":"#000000","alertWarning":"#00ff07","alertWarningText":"#ffffff","alertPopupWarning":"#00ff07","alertPopupWarningText":"#000000","alertError":"#ff8e00","alertErrorText":"#ffffff","alertPopupError":"#ff8e00","alertPopupErrorText":"#000000","panel":"#4e4e4e","panelText":"#d9d6d6","alertNeutralPanelText":"#000000","alertWarningPanelText":"#ffffff","alertErrorPanelText":"#ffffff","fgText":"#008040","topBar":"#6f0000","topBarText":"#d6d6d6","input":"#150a05","inputTopbarText":"#d6d6d6","inputPanelText":"#d9d6d6","inputText":"#d5d5d5","btn":"#8b2213","btnText":"#d7d7d7","btnTopBarText":"#d8d8d8","btnDisabled":"#570905","btnDisabledTopBarText":"#773d3a","btnPanelText":"#d8d8d8","btnDisabledPanelText":"#773d3a","btnDisabledText":"#773d3a","btnToggled":"#e13b24","btnToggledTopBarText":"#d8d8d8","btnToggledPanelText":"#ffffff","btnToggledText":"#ffffff","btnPressed":"#a55a40","btnPressedTopBarText":"#d8d8d8","btnPressedTopBar":"#a55a40","btnPressedPanelText":"#d8d8d8","btnPressedPanel":"#a55a40","btnPressedText":"#d7d7d7","tabActiveText":"#d5d5d5","tabText":"#d5d5d5","tab":"#863c23","fgLink":"#f353c9","topBarLink":"#ffe9e8","panelLink":"#31ffff","panelFaint":"#7fffc0","icon":"#e87721","poll":"#7f0f28","pollText":"#d5d5d5","postGreentext":"#efff00","postLink":"#00fffc","lightText":"#ffffff","popover":"#800000","selectedMenuPopover":"#9a0000","highlight":"#5f0000","highlightText":"#d5d5d5","selectedMenu":"#d52b52","selectedMenuText":"#cdff00","selectedMenuPopoverIcon":"#b48000","highlightLink":"#01ffe7","selectedMenuLink":"#01ffe7","selectedMenuPopoverLink":"#00fee7","selectedMenuPopoverText":"#ffffff","faintLink":"#d28346","highlightFaintLink":"#d28346","selectedMenuFaintLink":"#b96a2d","selectedMenuPopoverFaintLink":"#d38346","faint":"#95814b","highlightFaintText":"#b4a06a","selectedMenuFaintText":"#ffffff","selectedMenuPopoverFaintText":"#000000","highlightLightText":"#ffffff","selectedMenuLightText":"#ffffff","selectedMenuPopoverLightText":"#000000","selectedMenuIcon":"#d19529","selectedPost":"#5f0000","selectedPostText":"#d5d5d5","selectedPostIcon":"#9a6b6b","selectedPostLink":"#2fbbff","selectedPostFaintLink":"#d28346","highlightPostLink":"#00fffc","selectedPostPostLink":"#00fffc","selectedPostLightText":"#ffffff","selectedPostFaintText":"#b4a06a","popoverText":"#ffffff","popoverIcon":"#c08080","popoverLink":"#d6d6d6","postFaintL \ No newline at end of file diff --git a/static/themes/gnutan.json b/static/themes/gnutan.json new file mode 100644 index 00000000..767a8735 --- /dev/null +++ b/static/themes/gnutan.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":1,"y":1,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"topBar":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":8,"spread":0,"color":"#000000","alpha":0.7}],"avatarStatus":[],"panelHeader":[],"button":[{"x":0,"y":0,"blur":2,"spread":0,"color":"#000000","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonHover":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#ffffff","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonPressed":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#ffffff","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true}],"input":[{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":0,"blur":2,"inset":true,"spread":0,"color":"#000000","alpha":1}]},"colors":{"underlay":"#000000","bg":"#101010","fg":"#161616","cRed":"#ff3d77","cOrange":"#fab81e","cGreen":"#17bf63","cBlue":"#1b95e0","accent":"#0084b8","link":"#0084b8","text":"#ffffff","chatBg":"#101010","chatMessageIncomingBg":"#101010","chatMessageOutgoingBg":"#1d1d1d","chatMessageOutgoingBorder":"#222222","chatMessageOutgoingLink":"#47cbff","chatMessageOutgoingText":"#ffffff","border":"#1c1c1c","chatMessageIncomingBorder":"#212121","chatMessageIncomingLink":"#0084b8","chatMessageIncomingText":"#ffffff","badgeNotification":"#ff3d77","badgeNotificationText":"#ffffff","alertNeutral":"#ffffff","alertNeutralText":"#000000","alertPopupNeutral":"#ffffff","alertPopupNeutralText":"#000000","alertWarning":"#fab81e","alertWarningText":"#ffffff","alertPopupWarning":"#fab81e","alertPopupWarningText":"#000000","alertError":"#ff3d77","alertErrorText":"#ffffff","alertPopupError":"#ff3d77","alertPopupErrorText":"#000000","panel":"#161616","panelText":"#ffffff","alertNeutralPanelText":"#000000","alertWarningPanelText":"#ffffff","alertErrorPanelText":"#ffffff","fgText":"#ffffff","topBar":"#161616","topBarText":"#ffffff","input":"#161616","inputTopbarText":"#ffffff","inputPanelText":"#ffffff","inputText":"#ffffff","btn":"#161616","btnText":"#ffffff","btnTopBarText":"#ffffff","btnDisabled":"#121212","btnDisabledTopBarText":"#4d4d4d","btnPanelText":"#ffffff","btnDisabledPanelText":"#4d4d4d","btnDisabledText":"#4d4d4d","btnToggled":"#494949","btnToggledTopBarText":"#ffffff","btnToggledPanelText":"#ffffff","btnToggledText":"#ffffff","btnPressed":"#161616","btnPressedTopBarText":"#ffffff","btnPressedTopBar":"#161616","btnPressedPanelText":"#ffffff","btnPressedPanel":"#161616","btnPressedText":"#ffffff","tabActiveText":"#ffffff","tabText":"#ffffff","tab":"#161616","fgLink":"#47cbff","topBarLink":"#47cbff","panelLink":"#47cbff","panelFaint":"#ffffff","icon":"#888888","poll":"#0a3f54","pollText":"#ffffff","postGreentext":"#17bf63","postLink":"#0084b8","lightText":"#ffffff","popover":"#101010","selectedMenuPopover":"#1d1d1d","highlight":"#1d1d1d","highlightText":"#ffffff","selectedMenu":"#1d1d1d","selectedMenuText":"#ffffff","selectedMenuPopoverIcon":"#8e8e8e","highlightLink":"#47cbff","selectedMenuLink":"#47cbff","selectedMenuPopoverLink":"#47cbff","selectedMenuPopoverText":"#ffffff","faintLink":"#0084b8","highlightFaintLink":"#47cbff","selectedMenuFaintLink":"#47cbff","selectedMenuPopoverFaintLink":"#47cbff","faint":"#ffffff","highlightFaintText":"#ffffff","selectedMenuFaintText":"#ffffff","selectedMenuPopoverFaintText":"#ffffff","highlightLightText":"#ffffff","selectedMenuLightText":"#ffffff","selectedMenuPopoverLightText":"#ffffff","selectedMenuIcon":"#8e8e8e","selectedPost":"#1d1d1d","selectedPostText":"#ffffff","selected \ No newline at end of file diff --git a/static/themes/midnight-wizardry.json b/static/themes/midnight-wizardry.json new file mode 100644 index 00000000..59659023 --- /dev/null +++ b/static/themes/midnight-wizardry.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"theme":{"themeEngineVersion":3,"shadows":{"panel":[{"x":1,"y":1,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"topBar":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#000000","alpha":0.6}],"popup":[{"x":2,"y":2,"blur":3,"spread":0,"color":"#000000","alpha":0.5}],"avatar":[{"x":0,"y":1,"blur":8,"spread":0,"color":"#000000","alpha":0.7}],"avatarStatus":[],"panelHeader":[],"button":[{"x":0,"y":0,"blur":2,"spread":0,"color":"#000000","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonHover":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#ddffff","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}],"buttonPressed":[{"x":0,"y":0,"blur":4,"spread":0,"color":"#ddffff","alpha":1},{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true}],"input":[{"x":0,"y":1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":0.2,"inset":true},{"x":0,"y":0,"blur":2,"inset":true,"spread":0,"color":"#000000","alpha":1}]},"colors":{"underlay":"#000000","bg":"#280055","fg":"#c9f1ff","cRed":"#f08fff","cOrange":"#ffd05d","cGreen":"#5bff90","cBlue":"#beeaff","accent":"#f9cdff","link":"#ffaaff","text":"#ddffff","chatBg":"#280055","chatMessageIncomingBg":"#280055","chatMessageOutgoingBg":"#34006f","chatMessageOutgoingBorder":"#390079","chatMessageOutgoingLink":"#ffaaff","chatMessageOutgoingText":"#ddffff","border":"#d4f4ff","chatMessageIncomingBorder":"#def7ff","chatMessageIncomingLink":"#ffaaff","chatMessageIncomingText":"#ddffff","badgeNotification":"#800be1","badgeNotificationText":"#fed9ff","alertNeutral":"#ddffff","alertNeutralText":"#002223","alertPopupNeutral":"#ddffff","alertPopupNeutralText":"#002223","alertWarning":"#ffc1c1","alertWarningText":"#ffffff","alertPopupWarning":"#ffc1c1","alertPopupWarningText":"#000000","alertError":"#ac1be8","alertErrorText":"#dcf5ff","alertPopupError":"#ac1be8","alertPopupErrorText":"#dcf5ff","panel":"#091833","panelText":"#c1ffe8","alertNeutralPanelText":"#000000","alertWarningPanelText":"#ffffff","alertErrorPanelText":"#c1ffe8","fgText":"#c9f2ff","topBar":"#6600a3","topBarText":"#ff6c60","input":"#133e7c","inputTopbarText":"#ffffff","inputPanelText":"#c1ffe8","inputText":"#d7d7d5","btn":"#133e7c","btnText":"#a7f3f7","btnTopBarText":"#a7f3f7","btnDisabled":"#23105f","btnDisabledTopBarText":"#444985","btnPanelText":"#a7f3f7","btnDisabledPanelText":"#444985","btnDisabledText":"#444985","btnToggled":"#216ad5","btnToggledTopBarText":"#ffffff","btnToggledPanelText":"#ffffff","btnToggledText":"#ffffff","btnPressed":"#133e7c","btnPressedTopBarText":"#a7f3f7","btnPressedTopBar":"#133e7c","btnPressedPanelText":"#a7f3f7","btnPressedPanel":"#133e7c","btnPressedText":"#a7f3f7","tabActiveText":"#ddffff","tabText":"#a7f3f7","tab":"#133e7c","fgLink":"#edf9ff","topBarLink":"#edf9ff","panelLink":"#edf9ff","panelFaint":"#c9f2ff","icon":"#8380aa","poll":"#7c5299","pollText":"#ddffff","postGreentext":"#5bff90","postLink":"#ffaaff","lightText":"#ffffff","popover":"#280055","selectedMenuPopover":"#34006f","highlight":"#34006f","highlightText":"#ddffff","selectedMenu":"#34006f","selectedMenuText":"#ddffff","selectedMenuPopoverIcon":"#8980b7","highlightLink":"#ffaaff","selectedMenuLink":"#ffaaff","selectedMenuPopoverLink":"#ffaaff","selectedMenuPopoverText":"#ddffff","faintLink":"#ffaaff","highlightFaintLink":"#ffaaff","selectedMenuFaintLink":"#ffaaff","selectedMenuPopoverFaintLink":"#ffaaff","faint":"#ddffff","highlightFaintText":"#ddffff","selectedMenuFaintText":"#ddffff","selectedMenuPopoverFaintText":"#ddffff","highlightLightText":"#ffffff","selectedMenuLightText":"#ffffff","selectedMenuPopoverLightText":"#ffffff","selectedMenuIcon":"#8980b7","selectedPost":"#34006f","selectedPostText":"#ddffff","selected \ No newline at end of file diff --git a/static/themes/mojave.json b/static/themes/mojave.json new file mode 100644 index 00000000..50b2906c --- /dev/null +++ b/static/themes/mojave.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"name":"Mojave (@hellpie)","theme":{"fonts":{"postCode":{"family":"Menlo,sans-serif"},"interface":{"family":"SF Pro Display,sans-serif"},"input":{"family":"SF Pro Text,sans-serif"},"post":{"family":"SF Pro Text,sans-serif"}},"shadows":{"panelHeader":[{"x":0,"y":"-0.5","blur":0,"spread":0,"inset":true,"color":"#000000","alpha":"1"},{"x":0,"y":"-1","blur":0,"spread":0,"inset":true,"color":"#2B2B2B","alpha":"1"},{"x":0,"y":"0.5","blur":0,"spread":0,"inset":true,"color":"#FFFFFF","alpha":"0.1"},{"x":0,"y":"50","blur":"50","spread":"0","inset":true,"color":"#4B4B4B","alpha":"1"}],"topBar":[{"x":0,"y":"-0.5","blur":0,"spread":0,"inset":true,"color":"#000000","alpha":"1"},{"x":0,"y":"-1","blur":0,"spread":0,"inset":true,"color":"#2B2B2B","alpha":"1"},{"x":0,"y":"0.5","blur":0,"spread":0,"inset":true,"color":"#FFFFFF","alpha":"0.1"}],"panel":[{"x":0,"y":0,"blur":0,"spread":"1","inset":true,"color":"#FFFFFF","alpha":"0.15"},{"x":0,"y":0,"blur":0,"spread":"0.5","inset":true,"color":"#000000","alpha":"0.65"},{"x":0,"y":"2.5","blur":"5","spread":"0","inset":false,"color":"#000000","alpha":"0.3"},{"x":0,"y":"5","blur":"8.5","spread":"0","inset":false,"color":"#000000","alpha":"0.4"}],"popup":[{"x":"0","y":"0","blur":"0","spread":"1","color":"#FFFFFF","alpha":"0.15","inset":true},{"x":"0","y":"0","blur":"0","spread":"1","color":"#000000","alpha":"0.5","inset":true},{"x":2,"y":2,"blur":"10.5","spread":0,"color":"#000000","alpha":"0.25"}],"input":[{"x":0,"y":0,"blur":0,"spread":"0.5","inset":true,"color":"#FFFFFF","alpha":"0.05"},{"x":0,"y":"0.5","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.05"},{"x":0,"y":"-1","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.08"},{"x":0,"y":"-0.5","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.09"},{"x":0,"y":"1.5","blur":"1.5","spread":"0","inset":true,"color":"#000000","alpha":"0.10"}],"button":[{"x":0,"y":0,"blur":0,"spread":"0.5","inset":true,"color":"#000000","alpha":"0.35"},{"x":0,"y":"1","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.04"},{"x":0,"y":"0.5","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.16"},{"x":0,"y":"0.5","blur":"1.5","spread":"0","inset":false,"color":"#000000","alpha":"0.20"}],"buttonHover":[{"x":0,"y":0,"blur":0,"spread":"0.5","inset":true,"color":"#000000","alpha":"0.35"},{"x":0,"y":"1","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.04"},{"x":0,"y":"0.5","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.16"},{"x":0,"y":"0.5","blur":"1.5","spread":"0","inset":false,"color":"#000000","alpha":"0.20"},{"x":0,"y":"0","blur":"0","spread":"1000","inset":true,"color":"#FFFFFF","alpha":"0.2"}],"buttonPressed":[{"x":0,"y":0,"blur":0,"spread":"0.5","inset":true,"color":"#000000","alpha":"0.35"},{"x":0,"y":"1","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.04"},{"x":0,"y":"0.5","blur":0,"spread":"0","inset":true,"color":"#FFFFFF","alpha":"0.16"},{"x":0,"y":"0.5","blur":"1.5","spread":"0","inset":false,"color":"#000000","alpha":"0.20"},{"x":0,"y":"30","blur":"30","spread":"0","inset":true,"color":"#1768E5","alpha":"0.67"},{"x":0,"y":"0","blur":"0","spread":"1000","inset":true,"color":"#145CCC","alpha":"0.67"}],"avatarStatus":[{"x":0,"y":"1","blur":"2","spread":0,"inset":false,"color":"#000000","alpha":"0.4"}],"avatar":[{"x":0,"y":1,"blur":"2","spread":0,"color":"#000000","alpha":"0.4"}]},"opacity":{"btn":"0.22","input":"0.05","faint":"0.55"},"colors":{"bg":"#2c2c2c","text":"#FAFAFA","link":"#419cff","fg":"#5a5a5a","fgText":"#FAFAFA","fgLink":"#419cff","panel":"#3D3D3D","panelLink":"#FAFAFA","input":"#FFFFFF","inputText":"#FFFFFF","topBar":"#323639","topBarLink":"#FAFAFA","btn":"#FFFFFF","btnText":"#FFFFFF","alertError":"#ff655f","faint":"#FFFFFF","border":"#000000","cRed":"#ff453a","cBlue":"#0a84ff","cGreen":"#32d74b","cOrange":"#ff9f0a"},"radii":{"btn":"4","input":"4","checkbox":"3","panel":"4","avatar":"4","tooltip":"2","attachment":"4"}}} \ No newline at end of file diff --git a/static/themes/simply-dark.json b/static/themes/simply-dark.json new file mode 100644 index 00000000..04719052 --- /dev/null +++ b/static/themes/simply-dark.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"name":"Simply Dark (@pie)","theme":{"fonts":{"interface":{"family":"\"Roboto\", \"Droid Sans\", \"Open Sans\",Arial, Helvetica, sans-serif"},"postCode":{"family":"Menlo, Consolas, Monaco, monospace"}},"shadows":{"button":[{"x":0,"y":0,"blur":"0","spread":0,"color":"#000000","alpha":"0"},{"x":0,"y":1,"blur":0,"spread":0,"color":"#FFFFFF","alpha":"0","inset":true},{"x":0,"y":-1,"blur":0,"spread":0,"color":"#000000","alpha":0.2,"inset":true}]},"opacity":{},"colors":{"bg":"#0F0F0F","text":"#DBDCDD","link":"#FFFFFF","fg":"#191919","cRed":"#DE544E","cBlue":"#768AD4","cGreen":"#64B285","cOrange":"#EFA941"},"radii":{"btn":"0","input":"0","checkbox":"0","panel":"0","avatar":"0","avatarAlt":"0","tooltip":"0","attachment":"0"}}} \ No newline at end of file diff --git a/static/themes/sleepy-green.json b/static/themes/sleepy-green.json new file mode 100644 index 00000000..85d28384 --- /dev/null +++ b/static/themes/sleepy-green.json @@ -0,0 +1,372 @@ +{ + "name": "Sleepy Green (@khan)", + "_pleroma_theme_version": 2, + "theme": { + "themeEngineVersion": 3, + "shadows": { + "panel": [], + "topBar": [], + "popup": [ + { + "color": "#35313b", + "x": "0", + "y": "0", + "blur": "0", + "spread": "1024", + "alpha": "1", + "inset": true + }, + { + "color": "#000000", + "x": "0", + "y": "0", + "blur": "8", + "spread": "0", + "inset": false, + "alpha": "1" + } + ], + "avatar": [ + { + "x": 0, + "y": 1, + "blur": 8, + "spread": 0, + "color": "#000000", + "alpha": 0.7 + } + ], + "avatarStatus": [], + "panelHeader": [], + "button": [ + { + "color": "#26232a", + "x": 0, + "y": 0, + "blur": "6", + "spread": "0", + "alpha": 1, + "inset": false + } + ], + "buttonHover": [ + { + "color": "#34812b", + "x": "0", + "y": "0", + "blur": "0", + "spread": "1024", + "alpha": "1", + "inset": true + } + ], + "buttonPressed": [ + { + "color": "#34812b", + "x": "0", + "y": "0", + "blur": "0", + "spread": 1024, + "alpha": "1", + "inset": true + } + ], + "input": [ + { + "x": 0, + "y": 1, + "blur": 0, + "spread": 0, + "color": "#000000", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": -1, + "blur": 0, + "spread": 0, + "color": "#FFFFFF", + "alpha": 0.2, + "inset": true + }, + { + "x": 0, + "y": 0, + "blur": 2, + "inset": true, + "spread": 0, + "color": "#000000", + "alpha": 1 + } + ] + }, + "colors": { + "underlay": "#000000", + "bg": "#423d4a", + "fg": "#1d1d1d", + "cRed": "#da4453", + "cGreen": "#47bd38", + "cOrange": "#f5b800", + "cBlue": "#3c8fdd", + "accent": "#34812b", + "link": "#47bd38", + "text": "#eff0f1", + "chatBg": "#423d4a", + "chatMessageIncomingBg": "#4e4857", + "chatMessageOutgoingBg": "#5b5465", + "chatMessageOutgoingBorder": "#60596b", + "chatMessageOutgoingLink": "#51c842", + "chatMessageOutgoingText": "#eff0f1", + "border": "#232323", + "chatMessageIncomingBorder": "#282828", + "chatMessageIncomingLink": "#51c842", + "chatMessageIncomingText": "#eff0f1", + "badgeNotification": "#da4453", + "badgeNotificationText": "#ffffff", + "alertNeutral": "#eff0f1", + "alertNeutralText": "#0f0f11", + "alertPopupNeutral": "#eff0f1", + "alertPopupNeutralText": "#0f0f11", + "alertSuccess": "#47bd38", + "alertSuccessText": "#ffffff", + "alertPopupSuccess": "#47bd38", + "alertPopupSuccessText": "#000000", + "alertWarning": "#f5b800", + "alertWarningText": "#0f0f11", + "alertPopupWarning": "#f5b800", + "alertPopupWarningText": "#0f0f11", + "alertError": "#da4453", + "alertErrorText": "#eff0f1", + "alertPopupError": "#da4453", + "alertPopupErrorText": "#ffffff", + "panel": "#35313b", + "panelText": "#eff0f1", + "alertNeutralPanelText": "#0f0f11", + "alertSuccessPanelText": "#eff0f1", + "alertWarningPanelText": "#ffffff", + "alertErrorPanelText": "#eff0f1", + "fgText": "#eff0f1", + "topBar": "#1d1d1d", + "topBarText": "#eff0f1", + "input": "#322f38", + "inputTopbarText": "#eff0f1", + "inputPanelText": "#eff0f1", + "inputText": "#eff0f1", + "btn": "#423d4a", + "btnText": "#eff0f1", + "btnTopBarText": "#eff0f1", + "btnDisabled": "#423d4a", + "btnDisabledTopBarText": "#6e6a74", + "btnPanelText": "#eff0f1", + "btnDisabledPanelText": "#6e6a74", + "btnDisabledText": "#6e6a74", + "btnToggled": "#746c82", + "btnToggledTopBarText": "#ffffff", + "btnToggledPanelText": "#ffffff", + "btnToggledText": "#ffffff", + "btnPressed": "#34812b", + "btnPressedTopBarText": "#ffffff", + "btnPressedTopBar": "#34812b", + "btnPressedPanelText": "#ffffff", + "btnPressedPanel": "#34812b", + "btnPressedText": "#ffffff", + "tabActiveText": "#eff0f1", + "tabText": "#eff0f1", + "tab": "#423d4a", + "fgLink": "#47bd38", + "topBarLink": "#eff0f1", + "panelLink": "#47bd38", + "panelFaint": "#eff0f1", + "icon": "#99979e", + "poll": "#3d593e", + "pollText": "#eff0f1", + "postGreentext": "#47bd38", + "postLink": "#51c842", + "lightText": "#ffffff", + "popover": "#35313b", + "selectedMenuPopover": "#34812b", + "highlight": "#4f4958", + "highlightText": "#eff0f1", + "selectedMenu": "#34812b", + "selectedMenuText": "#ffffff", + "selectedMenuPopoverIcon": "#9ac095", + "highlightLink": "#51c842", + "selectedMenuLink": "#47bd38", + "selectedMenuPopoverLink": "#51c842", + "selectedMenuPopoverText": "#ffffff", + "faintLink": "#47bd38", + "highlightFaintLink": "#51c842", + "selectedMenuFaintLink": "#47bd38", + "selectedMenuPopoverFaintLink": "#51c842", + "faint": "#eff0f1", + "highlightFaintText": "#eff0f1", + "selectedMenuFaintText": "#ffffff", + "selectedMenuPopoverFaintText": "#ffffff", + "highlightLightText": "#ffffff", + "selectedMenuLightText": "#ffffff", + "selectedMenuPopoverLightText": "#ffffff", + "selectedMenuIcon": "#9ac095", + "selectedPost": "#4f4958", + "selectedPostText": "#eff0f1", + "selectedPostIcon": "#9f9da5", + "selectedPostLink": "#47bd38", + "selectedPostFaintLink": "#47bd38", + "highlightPostLink": "#47bd38", + "selectedPostPostLink": "#51c842", + "selectedPostLightText": "#ffffff", + "selectedPostFaintText": "#eff0f1", + "popoverText": "#eff0f1", + "popoverIcon": "#929196", + "popoverLink": "#47bd38", + "postFaintLink": "#51c842", + "popoverPostFaintLink": "#51c842", + "popoverFaintLink": "#47bd38", + "popoverFaintText": "#eff0f1", + "popoverPostLink": "#51c842", + "popoverLightText": "#ffffff", + "highlightIcon": "#9f9da5", + "highlightPostFaintLink": "#47bd38", + "profileTint": "#423d4a", + "profileBg": "#22222b", + "wallpaper": "#3d3945" + }, + "opacity": { + "underlay": 0.15, + "bg": 1, + "border": 0, + "alert": 0.5, + "alertPopup": 0.95, + "panel": 1, + "input": 0.5, + "btn": 1, + "faint": 0.5, + "popover": 1, + "profileTint": 0.5 + }, + "radii": { + "btn": "5", + "input": "5", + "checkbox": "5", + "panel": "0", + "avatar": "0", + "avatarAlt": "5", + "tooltip": "5", + "attachment": 5, + "chatMessage": "5" + }, + "fonts": { + "interface": { + "family": "sans-serif" + }, + "input": { + "family": "inherit" + }, + "post": { + "family": "inherit" + }, + "postCode": { + "family": "monospace" + } + } + }, + "source": { + "themeEngineVersion": 3, + "fonts": {}, + "shadows": { + "buttonHover": [ + { + "x": "0", + "y": "0", + "blur": "0", + "spread": "1024", + "color": "#34812b", + "alpha": "1", + "inset": true + } + ], + "buttonPressed": [ + { + "x": "0", + "y": "0", + "blur": "0", + "spread": 1024, + "color": "#34812b", + "alpha": "1", + "inset": true + } + ], + "panel": [], + "panelHeader": [], + "topBar": [], + "button": [ + { + "x": 0, + "y": 0, + "blur": "6", + "spread": "0", + "color": "#26232a", + "alpha": 1, + "inset": false + } + ], + "popup": [ + { + "x": "0", + "y": "0", + "blur": "0", + "spread": "1024", + "color": "#35313b", + "alpha": "1", + "inset": true + }, + { + "x": "0", + "y": "0", + "blur": "8", + "spread": "0", + "inset": false, + "color": "#000000", + "alpha": "1" + } + ] + }, + "opacity": { + "underlay": "0.15", + "border": "0" + }, + "colors": { + "bg": "#423d4a", + "fg": "#1d1d1d", + "text": "#eff0f1", + "underlay": "#000000", + "link": "#47bd38", + "accent": "#34812b", + "cBlue": "#3c8fdd", + "cRed": "#da4453", + "cGreen": "#47bd38", + "cOrange": "#f5b800", + "popover": "#35313b", + "selectedMenu": "--accent", + "selectedMenuPopover": "--accent", + "postGreentext": "#47bd38", + "panel": "#35313b", + "topBarLink": "--topBarText", + "btn": "--bg", + "btnPressed": "--accent", + "input": "--bg,-6.47", + "chatMessageIncomingBg": "#4e4857" + }, + "radii": { + "btn": "5", + "input": "5", + "checkbox": "5", + "panel": "0", + "avatar": "0", + "avatarAlt": "5", + "tooltip": "5", + "attachment": 5, + "chatMessage": "5" + } + } +} \ No newline at end of file diff --git a/static/themes/wavemaster.json b/static/themes/wavemaster.json new file mode 100644 index 00000000..b0963aad --- /dev/null +++ b/static/themes/wavemaster.json @@ -0,0 +1 @@ +{"_pleroma_theme_version":2,"name":"Wavemaster (@lanodan)","theme":{"fonts":{},"shadows":{"button":[{"x":0,"y":0,"blur":"0","spread":"1","inset":true,"color":"#242422","alpha":1},{"x":"1","y":"1","blur":"1","spread":"0","inset":true,"color":"#242422","alpha":"0.3"}],"buttonHover":[{"x":0,"y":0,"blur":"0","spread":"1","inset":true,"color":"#d2738a","alpha":1},{"x":"1","y":"1","blur":"1","spread":"0","inset":true,"color":"#000000","alpha":"0.3"}],"buttonPressed":[{"x":0,"y":0,"blur":0,"spread":"50","inset":true,"color":"#242422","alpha":1},{"x":"1","y":"1","blur":0,"spread":"0","inset":true,"color":"#000000","alpha":"0.3"},{"x":0,"y":0,"blur":0,"spread":"1","inset":true,"color":"#ffffff","alpha":1}],"input":[],"topBar":[{"x":0,"y":0,"blur":"20","spread":"5","color":"#204a87","alpha":0.6}]},"opacity":{"bg":"0.85","btn":"0"},"colors":{"bg":"#0d0114","text":"#b5b3aa","link":"#65cfed","fg":"#0f0403","cRed":"#f82604","cBlue":"#96cbfe","cGreen":"#a8ff60","cOrange":"#ffffb6"},"radii":{}}} \ No newline at end of file