diff --git a/autotests/texthandlertest.cpp b/autotests/texthandlertest.cpp index 523b72f55..a1c2e76cd 100644 --- a/autotests/texthandlertest.cpp +++ b/autotests/texthandlertest.cpp @@ -11,7 +11,6 @@ #include #include "enums/messagecomponenttype.h" -#include "models/customemojimodel.h" #include "neochatconnection.h" #include "testutils.h" @@ -77,7 +76,6 @@ void TextHandlerTest::initTestCase() QJsonObject{{"body"_ls, "Test custom emoji"_ls}, {"url"_ls, "mxc://example.org/test"_ls}, {"usage"_ls, QJsonArray{"emoticon"_ls}}}}}}}); - CustomEmojiModel::instance().setConnection(static_cast(connection)); room = new TestUtils::TestRoom(connection, QStringLiteral("#myroom:kde.org"), QLatin1String("test-texthandler-sync.json")); } diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 58ac2a468..80c38cd70 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -10,12 +10,6 @@ endif() add_library(neochat STATIC controller.cpp controller.h - models/emojimodel.cpp - models/emojimodel.h - emojitones.cpp - emojitones.h - models/customemojimodel.cpp - models/customemojimodel.h clipboard.cpp clipboard.h models/messageeventmodel.cpp @@ -26,8 +20,6 @@ add_library(neochat STATIC models/roomlistmodel.h models/sortfilterspacelistmodel.cpp models/sortfilterspacelistmodel.h - models/accountemoticonmodel.cpp - models/accountemoticonmodel.h spacehierarchycache.cpp spacehierarchycache.h roommanager.cpp @@ -50,8 +42,6 @@ add_library(neochat STATIC models/userdirectorylistmodel.h models/pushrulemodel.cpp models/pushrulemodel.h - models/emoticonfiltermodel.cpp - models/emoticonfiltermodel.h notificationsmanager.cpp notificationsmanager.h models/sortfilterroomlistmodel.cpp @@ -101,10 +91,6 @@ add_library(neochat STATIC texthandler.h logger.cpp logger.h - models/stickermodel.cpp - models/stickermodel.h - models/imagepacksmodel.cpp - models/imagepacksmodel.h events/imagepackevent.cpp events/imagepackevent.h events/joinrulesevent.cpp @@ -194,6 +180,32 @@ add_library(neochat STATIC models/threadmodel.h enums/messagetype.h messagecomponent.h + imagecontentmanager.h + imagecontentmanager.cpp + models/imagecontentmodel.cpp + models/imagecontentmodel.h + models/emojipacksmodel.cpp + models/emojipacksmodel.h + models/accountimagepackmodel.cpp + models/accountimagepackmodel.h + models/historyimagepackmodel.cpp + models/historyimagepackmodel.h + models/imagepacksproxymodel.cpp + models/imagepacksproxymodel.h + models/imagepacksmodel.cpp + models/imagepacksmodel.h + models/recentimagecontentmodel.h + models/recentimagecontentmodel.cpp + models/recentimagecontentproxymodel.h + models/recentimagecontentproxymodel.cpp + models/allimagecontentmodel.h + models/allimagecontentmodel.cpp + models/roomimagepacksmodel.h + models/roomimagepacksmodel.cpp + models/imagepackroomsmodel.h + models/imagepackroomsmodel.cpp + models/imagecontentfiltermodel.h + models/imagecontentfiltermodel.cpp ) set_source_files_properties(qml/OsmLocationPlugin.qml PROPERTIES @@ -282,6 +294,9 @@ ecm_add_qml_module(neochat URI org.kde.neochat GENERATE_PLUGIN_SOURCE qml/ConfirmLeaveDialog.qml qml/CodeMaximizeComponent.qml qml/EditStateDialog.qml + qml/EmojiPickerTypeHeader.qml + qml/EmojiPickerPackHeader.qml + qml/QuickReaction.qml qml/ConsentDialog.qml qml/AskDirectChatConfirmation.qml qml/HoverLinkIndicator.qml @@ -298,6 +313,12 @@ ecm_add_qml_module(neochat URI org.kde.neochat GENERATE_PLUGIN_SOURCE org.kde.neochat.chatbar ) +qt_add_resources(neochat "emoji" + PREFIX "/" + FILES + data/emojis.json +) + add_subdirectory(settings) add_subdirectory(timeline) add_subdirectory(devtools) diff --git a/src/chatbar/ChatBar.qml b/src/chatbar/ChatBar.qml index e75ba10e0..908d93603 100644 --- a/src/chatbar/ChatBar.qml +++ b/src/chatbar/ChatBar.qml @@ -519,7 +519,6 @@ QQC2.Control { y: -implicitHeight modal: false - includeCustom: true closeOnChosen: false currentRoom: root.currentRoom diff --git a/src/chatbar/EmojiDelegate.qml b/src/chatbar/EmojiDelegate.qml index a38c1b4a2..9acde3677 100644 --- a/src/chatbar/EmojiDelegate.qml +++ b/src/chatbar/EmojiDelegate.qml @@ -5,59 +5,30 @@ import QtQuick import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami -QQC2.ItemDelegate { +QQC2.Button { id: root - property string name - property string emoji + required property string toolTip property bool showTones: false - property bool isImage: false - QQC2.ToolTip.text: root.name - QQC2.ToolTip.visible: hovered && root.name !== "" + QQC2.ToolTip.text: toolTip + QQC2.ToolTip.visible: hovered QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay - leftInset: Kirigami.Units.smallSpacing - topInset: Kirigami.Units.smallSpacing - rightInset: Kirigami.Units.smallSpacing - bottomInset: Kirigami.Units.smallSpacing - contentItem: Item { - Kirigami.Heading { - anchors.fill: parent - visible: !root.emoji.startsWith("mxc") && !root.isImage - text: root.emoji - horizontalAlignment: Text.AlignHCenter - verticalAlignment: Text.AlignVCenter - font.family: "emoji" + flat: true - Kirigami.Icon { - width: Kirigami.Units.gridUnit * 0.5 - height: Kirigami.Units.gridUnit * 0.5 - source: "arrow-down-symbolic" - anchors.bottom: parent.bottom - anchors.right: parent.right - visible: root.showTones - } - } - Image { - anchors.fill: parent - visible: root.emoji.startsWith("mxc") || root.isImage - source: visible ? root.emoji : "" - fillMode: Image.PreserveAspectFit - sourceSize.width: width - sourceSize.height: height - } - } + contentItem: Kirigami.Heading { + text: root.text + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter - background: Rectangle { - color: root.checked ? Kirigami.Theme.highlightColor : Kirigami.Theme.backgroundColor - radius: Kirigami.Units.cornerRadius - - Rectangle { - radius: Kirigami.Units.cornerRadius - anchors.fill: parent - color: Kirigami.Theme.highlightColor - opacity: root.hovered && !root.pressed ? 0.2 : 0 + Kirigami.Icon { + width: Kirigami.Units.gridUnit * 0.5 + height: Kirigami.Units.gridUnit * 0.5 + source: "arrow-down-symbolic" + anchors.bottom: parent.bottom + anchors.right: parent.right + visible: root.showTones } } } diff --git a/src/chatbar/EmojiDialog.qml b/src/chatbar/EmojiDialog.qml index 15fae795b..cb2002de4 100644 --- a/src/chatbar/EmojiDialog.qml +++ b/src/chatbar/EmojiDialog.qml @@ -16,9 +16,7 @@ QQC2.Popup { */ property NeoChatRoom currentRoom - property bool includeCustom: false property bool closeOnChosen: true - property bool showQuickReaction: false signal chosen(string emoji) @@ -64,15 +62,15 @@ QQC2.Popup { padding: 2 implicitHeight: Kirigami.Units.gridUnit * 20 + 2 * padding - width: Math.min(contentItem.categoryIconSize * 11 + 2 * padding, applicationWindow().width) + width: Math.min(contentItem.implicitWidth + 2 * padding, applicationWindow().width) + contentItem: EmojiPicker { id: emojiPicker height: 400 currentRoom: root.currentRoom - includeCustom: root.includeCustom - showQuickReaction: root.showQuickReaction onChosen: emoji => { root.chosen(emoji); + ImageContentManager.emojiUsed(emoji) if (root.closeOnChosen) { root.close(); } diff --git a/src/chatbar/EmojiGrid.qml b/src/chatbar/EmojiGrid.qml index f2224d72b..6ffd36f1f 100644 --- a/src/chatbar/EmojiGrid.qml +++ b/src/chatbar/EmojiGrid.qml @@ -1,20 +1,17 @@ -// SPDX-FileCopyrightText: 2022 Tobias Fella +// SPDX-FileCopyrightText: 2024 Tobias Fella // SPDX-License-Identifier: GPL-2.0-or-later import QtQuick import QtQuick.Controls as QQC2 import org.kde.kirigami as Kirigami + import org.kde.neochat +import org.kde.textaddons.emoticons QQC2.ScrollView { id: root - property alias model: emojis.model - property alias count: emojis.count - required property int targetIconSize - readonly property int emojisPerRow: emojis.width / targetIconSize - required property bool withCustom - readonly property var searchCategory: withCustom ? EmojiModel.Search : EmojiModel.SearchNoCustom + readonly property int emojisPerRow: emojis.width / Kirigami.Units.iconSizes.large required property QtObject header property bool stickers: false @@ -25,6 +22,8 @@ QQC2.ScrollView { emojis.forceActiveFocus(); } + width: Kirigami.Units.gridUnit * 24 + GridView { id: emojis @@ -41,7 +40,9 @@ QQC2.ScrollView { onModelChanged: currentIndex = -1 cellWidth: emojis.width / root.emojisPerRow - cellHeight: root.targetIconSize + cellHeight: Kirigami.Units.iconSizes.large + + model: EmojiModelManager.emojiModel KeyNavigation.up: root.header @@ -49,50 +50,49 @@ QQC2.ScrollView { delegate: EmojiDelegate { id: emojiDelegate - checked: emojis.currentIndex === model.index - emoji: !!modelData ? modelData.unicode : model.url - name: !!modelData ? modelData.shortName : model.body + + required property string unicode + required property string identifier + required property int index + + text: emojiDelegate.unicode + toolTip: emojiDelegate.identifier + checked: emojis.currentIndex === emojiDelegate.index width: emojis.cellWidth height: emojis.cellHeight - isImage: root.stickers Keys.onEnterPressed: clicked() Keys.onReturnPressed: clicked() - onClicked: { - if (root.stickers) { - root.stickerChosen(model.index); - } - root.chosen(modelData.isCustom ? modelData.shortName : modelData.unicode); - EmojiModel.emojiUsed(modelData); - } - Keys.onSpacePressed: pressAndHold() - onPressAndHold: { - if (EmojiModel.tones(modelData.shortName).length === 0) { - return; - } - let tones = tonesPopupComponent.createObject(emojiDelegate, { - shortName: modelData.shortName, - unicode: modelData.unicode, - categoryIconSize: root.targetIconSize - }); - tones.open(); - tones.forceActiveFocus(); - } - showTones: !!modelData && EmojiModel.tones(modelData.shortName).length > 0 + // onClicked: { + // if (root.stickers) { + // root.stickerChosen(model.index); + // } + // root.chosen(modelData.isCustom ? modelData.shortName : modelData.unicode); + // EmojiModel.emojiUsed(modelData); + // } + // Keys.onSpacePressed: pressAndHold() + // onPressAndHold: { + // if (!showTones) { + // return; + // } + // let tones = Qt.createComponent("org.kde.neochat", "EmojiTonesPicker").createObject(emojiDelegate, { + // shortName: modelData.shortName, + // unicode: modelData.unicode, + // categoryIconSize: root.targetIconSize, + // onChosen: root.chosen(emoji => root.chosen(emoji)) + // }); + // tones.open(); + // tones.forceActiveFocus(); + // } + // showTones: model.hasTones } Kirigami.PlaceholderMessage { anchors.centerIn: parent icon.name: root.stickers ? "stickers" : "preferences-desktop-emoticons" - text: root.stickers ? i18n("No stickers") : i18n("No emojis") + text: root.stickers ? i18nc("@info", "No stickers") : i18nc("@info", "No emojis") visible: emojis.count === 0 } } - Component { - id: tonesPopupComponent - EmojiTonesPicker { - onChosen: root.chosen(emoji) - } - } } diff --git a/src/chatbar/EmojiPicker.qml b/src/chatbar/EmojiPicker.qml index 7e4adab29..18cd1cd40 100644 --- a/src/chatbar/EmojiPicker.qml +++ b/src/chatbar/EmojiPicker.qml @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2022 Tobias Fella +// SPDX-FileCopyrightText: 2022-2023 Tobias Fella // SPDX-License-Identifier: GPL-2.0-or-later import QtQuick @@ -6,6 +6,7 @@ import QtQuick.Controls as QQC2 import QtQuick.Layouts import org.kde.kirigami as Kirigami import org.kde.neochat +import org.kde.textaddons.emoticons ColumnLayout { id: root @@ -13,87 +14,29 @@ ColumnLayout { /** * @brief The current room that user is viewing. */ - property NeoChatRoom currentRoom - - property bool includeCustom: false - property bool showQuickReaction: false - - readonly property var currentEmojiModel: { - if (includeCustom) { - EmojiModel.categoriesWithCustom; - } else { - EmojiModel.categories; - } - } - - readonly property int categoryIconSize: Math.round(Kirigami.Units.gridUnit * 2.5) - readonly property var currentCategory: currentEmojiModel[categories.currentIndex].category - readonly property alias categoryCount: categories.count - property int selectedType: 0 + required property NeoChatRoom currentRoom signal chosen(string emoji) + spacing: 0 + onActiveFocusChanged: if (activeFocus) { searchField.forceActiveFocus(); } - spacing: 0 + EmojiPickerTypeHeader { + id: emoticonPickerTypeHeader - Kirigami.NavigationTabBar { - id: types Layout.fillWidth: true - Kirigami.Theme.colorSet: Kirigami.Theme.View - - background: null - actions: [ - Kirigami.Action { - id: emojis - icon.name: "smiley" - text: i18n("Emojis") - checked: true - onTriggered: root.selectedType = 0 - }, - Kirigami.Action { - id: stickers - icon.name: "stickers" - text: i18n("Stickers") - onTriggered: root.selectedType = 1 - } - ] + onSelectedTypeChanged: emoticonPickerCategoryHeader.currentIndex = 0 } - QQC2.ScrollView { + EmojiPickerPackHeader { + id: emoticonPickerCategoryHeader + Layout.fillWidth: true - Layout.preferredHeight: root.categoryIconSize + QQC2.ScrollBar.horizontal.height - QQC2.ScrollBar.horizontal.height: QQC2.ScrollBar.horizontal.visible ? QQC2.ScrollBar.horizontal.implicitHeight : 0 - visible: categories.count !== 0 - ListView { - id: categories - clip: true - focus: true - orientation: ListView.Horizontal - - Keys.onReturnPressed: if (emojiGrid.count > 0) { - emojiGrid.focus = true; - } - Keys.onEnterPressed: if (emojiGrid.count > 0) { - emojiGrid.focus = true; - } - - KeyNavigation.down: emojiGrid.count > 0 ? emojiGrid : categories - KeyNavigation.tab: emojiGrid.count > 0 ? emojiGrid : categories - - keyNavigationEnabled: true - keyNavigationWraps: true - Keys.forwardTo: searchField - interactive: width !== contentWidth - - model: root.selectedType === 0 ? root.currentEmojiModel : stickerPackModel - Component.onCompleted: categories.forceActiveFocus() - - delegate: root.selectedType === 0 ? emojiDelegate : stickerDelegate - } + model: UnicodeEmoticonManager.categories } Kirigami.Separator { @@ -105,119 +48,34 @@ ColumnLayout { id: searchField Layout.margins: Kirigami.Units.smallSpacing Layout.fillWidth: true - visible: selectedType === 0 - /** - * The focus is manged by the parent and we don't want to use the standard - * shortcut as it could block other SearchFields from using it. - */ focusSequence: "" } EmojiGrid { id: emojiGrid - targetIconSize: root.currentCategory === EmojiModel.Custom ? Kirigami.Units.gridUnit * 3 : root.categoryIconSize // Custom emojis are bigger - model: root.selectedType === 1 ? emoticonFilterModel : searchField.text.length === 0 ? EmojiModel.emojis(root.currentCategory) : (root.includeCustom ? EmojiModel.filterModel(searchField.text, false) : EmojiModel.filterModelNoCustom(searchField.text, false)) + Layout.fillWidth: true Layout.fillHeight: true - withCustom: root.includeCustom onChosen: unicode => root.chosen(unicode) - header: categories + header: emoticonPickerCategoryHeader Keys.forwardTo: searchField - stickers: root.selectedType === 1 + stickers: emoticonPickerTypeHeader.selectedType === EmojiPickerTypeHeader.EmoticonType.Sticker onStickerChosen: stickerModel.postSticker(emoticonFilterModel.mapToSource(emoticonFilterModel.index(index, 0)).row) } Kirigami.Separator { - visible: showQuickReaction Layout.fillWidth: true Layout.preferredHeight: 1 } - QQC2.ScrollView { - visible: showQuickReaction + QuickReaction { + id: quickReaction + onChosen: root.chosen(text) Layout.fillWidth: true - Layout.preferredHeight: root.categoryIconSize + QQC2.ScrollBar.horizontal.height - QQC2.ScrollBar.horizontal.height: QQC2.ScrollBar.horizontal.visible ? QQC2.ScrollBar.horizontal.implicitHeight : 0 - - ListView { - id: quickReactions - Layout.fillWidth: true - - model: ["๐Ÿ‘", "๐Ÿ‘Ž", "๐Ÿ˜„", "๐ŸŽ‰", "๐Ÿ˜•", "โค", "๐Ÿš€", "๐Ÿ‘€"] - - delegate: EmojiDelegate { - emoji: modelData - - height: root.categoryIconSize - width: height - - onClicked: root.chosen(modelData) - } - - orientation: Qt.Horizontal - } - } - - ImagePacksModel { - id: stickerPackModel - room: root.currentRoom - showStickers: true - showEmoticons: false - } - - StickerModel { - id: stickerModel - model: stickerPackModel - packIndex: 0 - room: root.currentRoom - } - - EmoticonFilterModel { - id: emoticonFilterModel - sourceModel: stickerModel - showStickers: true - } - - Component { - id: emojiDelegate - Kirigami.NavigationTabButton { - width: root.categoryIconSize - height: width - checked: categories.currentIndex === model.index - text: modelData ? modelData.emoji : "" - QQC2.ToolTip.text: modelData ? modelData.name : "" - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay - QQC2.ToolTip.visible: hovered - onClicked: { - categories.currentIndex = index; - categories.focus = true; - } - } - } - - Component { - id: stickerDelegate - Kirigami.NavigationTabButton { - width: root.categoryIconSize - height: width - checked: stickerModel.packIndex === model.index - padding: Kirigami.Units.largeSpacing - - contentItem: Image { - source: model.avatarUrl - fillMode: Image.PreserveAspectFit - sourceSize.width: width - sourceSize.height: height - } - QQC2.ToolTip.text: model.name - QQC2.ToolTip.delay: Kirigami.Units.toolTipDelay - QQC2.ToolTip.visible: hovered && !!model.name - onClicked: stickerModel.packIndex = model.index - } } function clearSearchField() { - searchField.text = ""; + searchField.text = "" } } diff --git a/src/chatbar/EmojiTonesPicker.qml b/src/chatbar/EmojiTonesPicker.qml index 73784cea9..2a7c7d499 100644 --- a/src/chatbar/EmojiTonesPicker.qml +++ b/src/chatbar/EmojiTonesPicker.qml @@ -1,4 +1,4 @@ -// SPDX-FileCopyrightText: 2022 Tobias Fella +// SPDX-FileCopyrightText: 2024 Tobias Fella // SPDX-License-Identifier: GPL-2.0-or-later import QtQuick @@ -54,8 +54,8 @@ QQC2.Popup { delegate: EmojiDelegate { id: emojiDelegate checked: tonesList.currentIndex === model.index - emoji: modelData.unicode - name: modelData.shortName + text: modelData.unicode + toolTip: modelData.shortName width: root.categoryIconSize height: width diff --git a/src/data/emojis.json b/src/data/emojis.json new file mode 100644 index 000000000..8033fe36c --- /dev/null +++ b/src/data/emojis.json @@ -0,0 +1,55269 @@ +[ + { + "label": "regional indicator A", + "hexcode": "1F1E6", + "emoji": "๐Ÿ‡ฆ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator B", + "hexcode": "1F1E7", + "emoji": "๐Ÿ‡ง", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator C", + "hexcode": "1F1E8", + "emoji": "๐Ÿ‡จ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator D", + "hexcode": "1F1E9", + "emoji": "๐Ÿ‡ฉ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator E", + "hexcode": "1F1EA", + "emoji": "๐Ÿ‡ช", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator F", + "hexcode": "1F1EB", + "emoji": "๐Ÿ‡ซ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator G", + "hexcode": "1F1EC", + "emoji": "๐Ÿ‡ฌ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator H", + "hexcode": "1F1ED", + "emoji": "๐Ÿ‡ญ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator I", + "hexcode": "1F1EE", + "emoji": "๐Ÿ‡ฎ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator J", + "hexcode": "1F1EF", + "emoji": "๐Ÿ‡ฏ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator K", + "hexcode": "1F1F0", + "emoji": "๐Ÿ‡ฐ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator L", + "hexcode": "1F1F1", + "emoji": "๐Ÿ‡ฑ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator M", + "hexcode": "1F1F2", + "emoji": "๐Ÿ‡ฒ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator N", + "hexcode": "1F1F3", + "emoji": "๐Ÿ‡ณ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator O", + "hexcode": "1F1F4", + "emoji": "๐Ÿ‡ด", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator P", + "hexcode": "1F1F5", + "emoji": "๐Ÿ‡ต", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator Q", + "hexcode": "1F1F6", + "emoji": "๐Ÿ‡ถ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator R", + "hexcode": "1F1F7", + "emoji": "๐Ÿ‡ท", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator S", + "hexcode": "1F1F8", + "emoji": "๐Ÿ‡ธ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator T", + "hexcode": "1F1F9", + "emoji": "๐Ÿ‡น", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator U", + "hexcode": "1F1FA", + "emoji": "๐Ÿ‡บ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator V", + "hexcode": "1F1FB", + "emoji": "๐Ÿ‡ป", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator W", + "hexcode": "1F1FC", + "emoji": "๐Ÿ‡ผ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator X", + "hexcode": "1F1FD", + "emoji": "๐Ÿ‡ฝ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator Y", + "hexcode": "1F1FE", + "emoji": "๐Ÿ‡พ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "regional indicator Z", + "hexcode": "1F1FF", + "emoji": "๐Ÿ‡ฟ", + "text": "", + "type": 1, + "version": 0 + }, + { + "label": "grinning face", + "hexcode": "1F600", + "tags": [ + "face", + "grin" + ], + "emoji": "๐Ÿ˜€", + "text": "", + "type": 1, + "order": 1, + "group": 0, + "subgroup": 0, + "version": 1 + }, + { + "label": "grinning face with big eyes", + "hexcode": "1F603", + "tags": [ + "face", + "mouth", + "open", + "smile" + ], + "emoji": "๐Ÿ˜ƒ", + "text": "", + "type": 1, + "order": 2, + "group": 0, + "subgroup": 0, + "version": 0.6 + }, + { + "label": "grinning face with smiling eyes", + "hexcode": "1F604", + "tags": [ + "eye", + "face", + "mouth", + "open", + "smile" + ], + "emoji": "๐Ÿ˜„", + "text": "", + "type": 1, + "order": 3, + "group": 0, + "subgroup": 0, + "version": 0.6, + "emoticon": ":D" + }, + { + "label": "beaming face with smiling eyes", + "hexcode": "1F601", + "tags": [ + "eye", + "face", + "grin", + "smile" + ], + "emoji": "๐Ÿ˜", + "text": "", + "type": 1, + "order": 4, + "group": 0, + "subgroup": 0, + "version": 0.6 + }, + { + "label": "grinning squinting face", + "hexcode": "1F606", + "tags": [ + "face", + "laugh", + "mouth", + "satisfied", + "smile" + ], + "emoji": "๐Ÿ˜†", + "text": "", + "type": 1, + "order": 5, + "group": 0, + "subgroup": 0, + "version": 0.6, + "emoticon": [ + "xD", + "XD" + ] + }, + { + "label": "grinning face with sweat", + "hexcode": "1F605", + "tags": [ + "cold", + "face", + "open", + "smile", + "sweat" + ], + "emoji": "๐Ÿ˜…", + "text": "", + "type": 1, + "order": 6, + "group": 0, + "subgroup": 0, + "version": 0.6 + }, + { + "label": "rolling on the floor laughing", + "hexcode": "1F923", + "tags": [ + "face", + "floor", + "laugh", + "rofl", + "rolling", + "rotfl" + ], + "emoji": "๐Ÿคฃ", + "text": "", + "type": 1, + "order": 7, + "group": 0, + "subgroup": 0, + "version": 3, + "emoticon": ":'D" + }, + { + "label": "face with tears of joy", + "hexcode": "1F602", + "tags": [ + "face", + "joy", + "laugh", + "tear" + ], + "emoji": "๐Ÿ˜‚", + "text": "", + "type": 1, + "order": 8, + "group": 0, + "subgroup": 0, + "version": 0.6, + "emoticon": ":')" + }, + { + "label": "slightly smiling face", + "hexcode": "1F642", + "tags": [ + "face", + "smile" + ], + "emoji": "๐Ÿ™‚", + "text": "", + "type": 1, + "order": 9, + "group": 0, + "subgroup": 0, + "version": 1, + "emoticon": ":)" + }, + { + "label": "upside-down face", + "hexcode": "1F643", + "tags": [ + "face", + "upside-down" + ], + "emoji": "๐Ÿ™ƒ", + "text": "", + "type": 1, + "order": 10, + "group": 0, + "subgroup": 0, + "version": 1 + }, + { + "label": "melting face", + "hexcode": "1FAE0", + "tags": [ + "disappear", + "dissolve", + "liquid", + "melt" + ], + "emoji": "๐Ÿซ ", + "text": "", + "type": 1, + "order": 11, + "group": 0, + "subgroup": 0, + "version": 14 + }, + { + "label": "winking face", + "hexcode": "1F609", + "tags": [ + "face", + "wink" + ], + "emoji": "๐Ÿ˜‰", + "text": "", + "type": 1, + "order": 12, + "group": 0, + "subgroup": 0, + "version": 0.6, + "emoticon": ";)" + }, + { + "label": "smiling face with smiling eyes", + "hexcode": "1F60A", + "tags": [ + "blush", + "eye", + "face", + "smile" + ], + "emoji": "๐Ÿ˜Š", + "text": "", + "type": 1, + "order": 13, + "group": 0, + "subgroup": 0, + "version": 0.6, + "emoticon": ":>" + }, + { + "label": "smiling face with halo", + "hexcode": "1F607", + "tags": [ + "angel", + "face", + "fantasy", + "halo", + "innocent" + ], + "emoji": "๐Ÿ˜‡", + "text": "", + "type": 1, + "order": 14, + "group": 0, + "subgroup": 0, + "version": 1, + "emoticon": [ + "o:)", + "O:)" + ] + }, + { + "label": "smiling face with hearts", + "hexcode": "1F970", + "tags": [ + "adore", + "crush", + "hearts", + "in love" + ], + "emoji": "๐Ÿฅฐ", + "text": "", + "type": 1, + "order": 15, + "group": 0, + "subgroup": 1, + "version": 11 + }, + { + "label": "smiling face with heart-eyes", + "hexcode": "1F60D", + "tags": [ + "eye", + "face", + "love", + "smile" + ], + "emoji": "๐Ÿ˜", + "text": "", + "type": 1, + "order": 16, + "group": 0, + "subgroup": 1, + "version": 0.6 + }, + { + "label": "star-struck", + "hexcode": "1F929", + "tags": [ + "eyes", + "face", + "grinning", + "star" + ], + "emoji": "๐Ÿคฉ", + "text": "", + "type": 1, + "order": 17, + "group": 0, + "subgroup": 1, + "version": 5 + }, + { + "label": "face blowing a kiss", + "hexcode": "1F618", + "tags": [ + "face", + "kiss" + ], + "emoji": "๐Ÿ˜˜", + "text": "", + "type": 1, + "order": 18, + "group": 0, + "subgroup": 1, + "version": 0.6, + "emoticon": [ + ":x", + ":X" + ] + }, + { + "label": "kissing face", + "hexcode": "1F617", + "tags": [ + "face", + "kiss" + ], + "emoji": "๐Ÿ˜—", + "text": "", + "type": 1, + "order": 19, + "group": 0, + "subgroup": 1, + "version": 1 + }, + { + "label": "smiling face", + "hexcode": "263A", + "tags": [ + "face", + "outlined", + "relaxed", + "smile" + ], + "emoji": "โ˜บ๏ธ", + "text": "โ˜บ๏ธŽ", + "type": 0, + "order": 21, + "group": 0, + "subgroup": 1, + "version": 0.6 + }, + { + "label": "kissing face with closed eyes", + "hexcode": "1F61A", + "tags": [ + "closed", + "eye", + "face", + "kiss" + ], + "emoji": "๐Ÿ˜š", + "text": "", + "type": 1, + "order": 22, + "group": 0, + "subgroup": 1, + "version": 0.6, + "emoticon": ":*" + }, + { + "label": "kissing face with smiling eyes", + "hexcode": "1F619", + "tags": [ + "eye", + "face", + "kiss", + "smile" + ], + "emoji": "๐Ÿ˜™", + "text": "", + "type": 1, + "order": 23, + "group": 0, + "subgroup": 1, + "version": 1 + }, + { + "label": "smiling face with tear", + "hexcode": "1F972", + "tags": [ + "grateful", + "proud", + "relieved", + "smiling", + "tear", + "touched" + ], + "emoji": "๐Ÿฅฒ", + "text": "", + "type": 1, + "order": 24, + "group": 0, + "subgroup": 1, + "version": 13 + }, + { + "label": "face savoring food", + "hexcode": "1F60B", + "tags": [ + "delicious", + "face", + "savouring", + "smile", + "yum" + ], + "emoji": "๐Ÿ˜‹", + "text": "", + "type": 1, + "order": 25, + "group": 0, + "subgroup": 2, + "version": 0.6 + }, + { + "label": "face with tongue", + "hexcode": "1F61B", + "tags": [ + "face", + "tongue" + ], + "emoji": "๐Ÿ˜›", + "text": "", + "type": 1, + "order": 26, + "group": 0, + "subgroup": 2, + "version": 1, + "emoticon": [ + ":p", + ":P" + ] + }, + { + "label": "winking face with tongue", + "hexcode": "1F61C", + "tags": [ + "eye", + "face", + "joke", + "tongue", + "wink" + ], + "emoji": "๐Ÿ˜œ", + "text": "", + "type": 1, + "order": 27, + "group": 0, + "subgroup": 2, + "version": 0.6, + "emoticon": [ + ";p", + ";P" + ] + }, + { + "label": "zany face", + "hexcode": "1F92A", + "tags": [ + "eye", + "goofy", + "large", + "small" + ], + "emoji": "๐Ÿคช", + "text": "", + "type": 1, + "order": 28, + "group": 0, + "subgroup": 2, + "version": 5 + }, + { + "label": "squinting face with tongue", + "hexcode": "1F61D", + "tags": [ + "eye", + "face", + "horrible", + "taste", + "tongue" + ], + "emoji": "๐Ÿ˜", + "text": "", + "type": 1, + "order": 29, + "group": 0, + "subgroup": 2, + "version": 0.6, + "emoticon": [ + "xp", + "xP", + "XP" + ] + }, + { + "label": "money-mouth face", + "hexcode": "1F911", + "tags": [ + "face", + "money", + "mouth" + ], + "emoji": "๐Ÿค‘", + "text": "", + "type": 1, + "order": 30, + "group": 0, + "subgroup": 2, + "version": 1 + }, + { + "label": "smiling face with open hands", + "hexcode": "1F917", + "tags": [ + "face", + "hug", + "hugging", + "open hands", + "smiling face" + ], + "emoji": "๐Ÿค—", + "text": "", + "type": 1, + "order": 31, + "group": 0, + "subgroup": 3, + "version": 1 + }, + { + "label": "face with hand over mouth", + "hexcode": "1F92D", + "tags": [ + "whoops" + ], + "emoji": "๐Ÿคญ", + "text": "", + "type": 1, + "order": 32, + "group": 0, + "subgroup": 3, + "version": 5 + }, + { + "label": "face with open eyes and hand over mouth", + "hexcode": "1FAE2", + "tags": [ + "amazement", + "awe", + "disbelief", + "embarrass", + "scared", + "surprise" + ], + "emoji": "๐Ÿซข", + "text": "", + "type": 1, + "order": 33, + "group": 0, + "subgroup": 3, + "version": 14 + }, + { + "label": "face with peeking eye", + "hexcode": "1FAE3", + "tags": [ + "captivated", + "peep", + "stare" + ], + "emoji": "๐Ÿซฃ", + "text": "", + "type": 1, + "order": 34, + "group": 0, + "subgroup": 3, + "version": 14 + }, + { + "label": "shushing face", + "hexcode": "1F92B", + "tags": [ + "quiet", + "shush" + ], + "emoji": "๐Ÿคซ", + "text": "", + "type": 1, + "order": 35, + "group": 0, + "subgroup": 3, + "version": 5 + }, + { + "label": "thinking face", + "hexcode": "1F914", + "tags": [ + "face", + "thinking" + ], + "emoji": "๐Ÿค”", + "text": "", + "type": 1, + "order": 36, + "group": 0, + "subgroup": 3, + "version": 1, + "emoticon": [ + ":l", + ":L" + ] + }, + { + "label": "saluting face", + "hexcode": "1FAE1", + "tags": [ + "ok", + "salute", + "sunny", + "troops", + "yes" + ], + "emoji": "๐Ÿซก", + "text": "", + "type": 1, + "order": 37, + "group": 0, + "subgroup": 3, + "version": 14 + }, + { + "label": "zipper-mouth face", + "hexcode": "1F910", + "tags": [ + "face", + "mouth", + "zip", + "zipper" + ], + "emoji": "๐Ÿค", + "text": "", + "type": 1, + "order": 38, + "group": 0, + "subgroup": 4, + "version": 1, + "emoticon": [ + ":z", + ":Z" + ] + }, + { + "label": "face with raised eyebrow", + "hexcode": "1F928", + "tags": [ + "distrust", + "skeptic" + ], + "emoji": "๐Ÿคจ", + "text": "", + "type": 1, + "order": 39, + "group": 0, + "subgroup": 4, + "version": 5 + }, + { + "label": "neutral face", + "hexcode": "1F610", + "tags": [ + "deadpan", + "face", + "meh", + "neutral" + ], + "emoji": "๐Ÿ˜๏ธ", + "text": "๐Ÿ˜๏ธŽ", + "type": 1, + "order": 40, + "group": 0, + "subgroup": 4, + "version": 0.7, + "emoticon": ":|" + }, + { + "label": "expressionless face", + "hexcode": "1F611", + "tags": [ + "expressionless", + "face", + "inexpressive", + "meh", + "unexpressive" + ], + "emoji": "๐Ÿ˜‘", + "text": "", + "type": 1, + "order": 41, + "group": 0, + "subgroup": 4, + "version": 1 + }, + { + "label": "face without mouth", + "hexcode": "1F636", + "tags": [ + "face", + "mouth", + "quiet", + "silent" + ], + "emoji": "๐Ÿ˜ถ", + "text": "", + "type": 1, + "order": 42, + "group": 0, + "subgroup": 4, + "version": 1, + "emoticon": ":#" + }, + { + "label": "dotted line face", + "hexcode": "1FAE5", + "tags": [ + "depressed", + "disappear", + "hide", + "introvert", + "invisible" + ], + "emoji": "๐Ÿซฅ", + "text": "", + "type": 1, + "order": 43, + "group": 0, + "subgroup": 4, + "version": 14 + }, + { + "label": "face in clouds", + "hexcode": "1F636-200D-1F32B-FE0F", + "tags": [ + "absentminded", + "face in the fog", + "head in clouds" + ], + "emoji": "๐Ÿ˜ถโ€๐ŸŒซ๏ธ", + "text": "", + "type": 1, + "order": 44, + "group": 0, + "subgroup": 4, + "version": 13.1 + }, + { + "label": "smirking face", + "hexcode": "1F60F", + "tags": [ + "face", + "smirk" + ], + "emoji": "๐Ÿ˜", + "text": "", + "type": 1, + "order": 46, + "group": 0, + "subgroup": 4, + "version": 0.6, + "emoticon": ":j" + }, + { + "label": "unamused face", + "hexcode": "1F612", + "tags": [ + "face", + "unamused", + "unhappy" + ], + "emoji": "๐Ÿ˜’", + "text": "", + "type": 1, + "order": 47, + "group": 0, + "subgroup": 4, + "version": 0.6, + "emoticon": ":?" + }, + { + "label": "face with rolling eyes", + "hexcode": "1F644", + "tags": [ + "eyeroll", + "eyes", + "face", + "rolling" + ], + "emoji": "๐Ÿ™„", + "text": "", + "type": 1, + "order": 48, + "group": 0, + "subgroup": 4, + "version": 1 + }, + { + "label": "grimacing face", + "hexcode": "1F62C", + "tags": [ + "face", + "grimace" + ], + "emoji": "๐Ÿ˜ฌ", + "text": "", + "type": 1, + "order": 49, + "group": 0, + "subgroup": 4, + "version": 1, + "emoticon": "8D" + }, + { + "label": "face exhaling", + "hexcode": "1F62E-200D-1F4A8", + "tags": [ + "exhale", + "gasp", + "groan", + "relief", + "whisper", + "whistle" + ], + "emoji": "๐Ÿ˜ฎโ€๐Ÿ’จ", + "text": "", + "type": 1, + "order": 50, + "group": 0, + "subgroup": 4, + "version": 13.1 + }, + { + "label": "lying face", + "hexcode": "1F925", + "tags": [ + "face", + "lie", + "pinocchio" + ], + "emoji": "๐Ÿคฅ", + "text": "", + "type": 1, + "order": 51, + "group": 0, + "subgroup": 4, + "version": 3 + }, + { + "label": "shaking face", + "hexcode": "1FAE8", + "tags": [ + "earthquake", + "face", + "shaking", + "shock", + "vibrate" + ], + "emoji": "๐Ÿซจ", + "text": "", + "type": 1, + "order": 52, + "group": 0, + "subgroup": 4, + "version": 15 + }, + { + "label": "head shaking horizontally", + "hexcode": "1F642-200D-2194-FE0F", + "tags": [ + "no", + "shake" + ], + "emoji": "๐Ÿ™‚โ€โ†”๏ธ", + "text": "", + "type": 1, + "order": 53, + "group": 0, + "subgroup": 4, + "version": 15.1 + }, + { + "label": "head shaking vertically", + "hexcode": "1F642-200D-2195-FE0F", + "tags": [ + "nod", + "yes" + ], + "emoji": "๐Ÿ™‚โ€โ†•๏ธ", + "text": "", + "type": 1, + "order": 55, + "group": 0, + "subgroup": 4, + "version": 15.1 + }, + { + "label": "relieved face", + "hexcode": "1F60C", + "tags": [ + "face", + "relieved" + ], + "emoji": "๐Ÿ˜Œ", + "text": "", + "type": 1, + "order": 57, + "group": 0, + "subgroup": 5, + "version": 0.6 + }, + { + "label": "pensive face", + "hexcode": "1F614", + "tags": [ + "dejected", + "face", + "pensive" + ], + "emoji": "๐Ÿ˜”", + "text": "", + "type": 1, + "order": 58, + "group": 0, + "subgroup": 5, + "version": 0.6 + }, + { + "label": "sleepy face", + "hexcode": "1F62A", + "tags": [ + "face", + "good night", + "sleep" + ], + "emoji": "๐Ÿ˜ช", + "text": "", + "type": 1, + "order": 59, + "group": 0, + "subgroup": 5, + "version": 0.6 + }, + { + "label": "drooling face", + "hexcode": "1F924", + "tags": [ + "drooling", + "face" + ], + "emoji": "๐Ÿคค", + "text": "", + "type": 1, + "order": 60, + "group": 0, + "subgroup": 5, + "version": 3 + }, + { + "label": "sleeping face", + "hexcode": "1F634", + "tags": [ + "face", + "good night", + "sleep", + "zzz" + ], + "emoji": "๐Ÿ˜ด", + "text": "", + "type": 1, + "order": 61, + "group": 0, + "subgroup": 5, + "version": 1 + }, + { + "label": "face with medical mask", + "hexcode": "1F637", + "tags": [ + "cold", + "doctor", + "face", + "mask", + "sick" + ], + "emoji": "๐Ÿ˜ท", + "text": "", + "type": 1, + "order": 62, + "group": 0, + "subgroup": 6, + "version": 0.6 + }, + { + "label": "face with thermometer", + "hexcode": "1F912", + "tags": [ + "face", + "ill", + "sick", + "thermometer" + ], + "emoji": "๐Ÿค’", + "text": "", + "type": 1, + "order": 63, + "group": 0, + "subgroup": 6, + "version": 1 + }, + { + "label": "face with head-bandage", + "hexcode": "1F915", + "tags": [ + "bandage", + "face", + "hurt", + "injury" + ], + "emoji": "๐Ÿค•", + "text": "", + "type": 1, + "order": 64, + "group": 0, + "subgroup": 6, + "version": 1 + }, + { + "label": "nauseated face", + "hexcode": "1F922", + "tags": [ + "face", + "nauseated", + "vomit" + ], + "emoji": "๐Ÿคข", + "text": "", + "type": 1, + "order": 65, + "group": 0, + "subgroup": 6, + "version": 3, + "emoticon": "%(" + }, + { + "label": "face vomiting", + "hexcode": "1F92E", + "tags": [ + "puke", + "sick", + "vomit" + ], + "emoji": "๐Ÿคฎ", + "text": "", + "type": 1, + "order": 66, + "group": 0, + "subgroup": 6, + "version": 5 + }, + { + "label": "sneezing face", + "hexcode": "1F927", + "tags": [ + "face", + "gesundheit", + "sneeze" + ], + "emoji": "๐Ÿคง", + "text": "", + "type": 1, + "order": 67, + "group": 0, + "subgroup": 6, + "version": 3 + }, + { + "label": "hot face", + "hexcode": "1F975", + "tags": [ + "feverish", + "heat stroke", + "hot", + "red-faced", + "sweating" + ], + "emoji": "๐Ÿฅต", + "text": "", + "type": 1, + "order": 68, + "group": 0, + "subgroup": 6, + "version": 11 + }, + { + "label": "cold face", + "hexcode": "1F976", + "tags": [ + "blue-faced", + "cold", + "freezing", + "frostbite", + "icicles" + ], + "emoji": "๐Ÿฅถ", + "text": "", + "type": 1, + "order": 69, + "group": 0, + "subgroup": 6, + "version": 11 + }, + { + "label": "woozy face", + "hexcode": "1F974", + "tags": [ + "dizzy", + "intoxicated", + "tipsy", + "uneven eyes", + "wavy mouth" + ], + "emoji": "๐Ÿฅด", + "text": "", + "type": 1, + "order": 70, + "group": 0, + "subgroup": 6, + "version": 11, + "emoticon": ":&" + }, + { + "label": "face with crossed-out eyes", + "hexcode": "1F635", + "tags": [ + "crossed-out eyes", + "dead", + "face", + "knocked out" + ], + "emoji": "๐Ÿ˜ต", + "text": "", + "type": 1, + "order": 71, + "group": 0, + "subgroup": 6, + "version": 0.6, + "emoticon": [ + "xo", + "XO" + ] + }, + { + "label": "face with spiral eyes", + "hexcode": "1F635-200D-1F4AB", + "tags": [ + "dizzy", + "hypnotized", + "spiral", + "trouble", + "whoa" + ], + "emoji": "๐Ÿ˜ตโ€๐Ÿ’ซ", + "text": "", + "type": 1, + "order": 72, + "group": 0, + "subgroup": 6, + "version": 13.1 + }, + { + "label": "exploding head", + "hexcode": "1F92F", + "tags": [ + "mind blown", + "shocked" + ], + "emoji": "๐Ÿคฏ", + "text": "", + "type": 1, + "order": 73, + "group": 0, + "subgroup": 6, + "version": 5 + }, + { + "label": "cowboy hat face", + "hexcode": "1F920", + "tags": [ + "cowboy", + "cowgirl", + "face", + "hat" + ], + "emoji": "๐Ÿค ", + "text": "", + "type": 1, + "order": 74, + "group": 0, + "subgroup": 7, + "version": 3 + }, + { + "label": "partying face", + "hexcode": "1F973", + "tags": [ + "celebration", + "hat", + "horn", + "party" + ], + "emoji": "๐Ÿฅณ", + "text": "", + "type": 1, + "order": 75, + "group": 0, + "subgroup": 7, + "version": 11 + }, + { + "label": "disguised face", + "hexcode": "1F978", + "tags": [ + "disguise", + "face", + "glasses", + "incognito", + "nose" + ], + "emoji": "๐Ÿฅธ", + "text": "", + "type": 1, + "order": 76, + "group": 0, + "subgroup": 7, + "version": 13 + }, + { + "label": "smiling face with sunglasses", + "hexcode": "1F60E", + "tags": [ + "bright", + "cool", + "face", + "sun", + "sunglasses" + ], + "emoji": "๐Ÿ˜Ž", + "text": "", + "type": 1, + "order": 77, + "group": 0, + "subgroup": 8, + "version": 1, + "emoticon": "8)" + }, + { + "label": "nerd face", + "hexcode": "1F913", + "tags": [ + "face", + "geek", + "nerd" + ], + "emoji": "๐Ÿค“", + "text": "", + "type": 1, + "order": 78, + "group": 0, + "subgroup": 8, + "version": 1, + "emoticon": ":B" + }, + { + "label": "face with monocle", + "hexcode": "1F9D0", + "tags": [ + "face", + "monocle", + "stuffy" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 79, + "group": 0, + "subgroup": 8, + "version": 5 + }, + { + "label": "confused face", + "hexcode": "1F615", + "tags": [ + "confused", + "face", + "meh" + ], + "emoji": "๐Ÿ˜•", + "text": "", + "type": 1, + "order": 80, + "group": 0, + "subgroup": 9, + "version": 1, + "emoticon": ":/" + }, + { + "label": "face with diagonal mouth", + "hexcode": "1FAE4", + "tags": [ + "disappointed", + "meh", + "skeptical", + "unsure" + ], + "emoji": "๐Ÿซค", + "text": "", + "type": 1, + "order": 81, + "group": 0, + "subgroup": 9, + "version": 14 + }, + { + "label": "worried face", + "hexcode": "1F61F", + "tags": [ + "face", + "worried" + ], + "emoji": "๐Ÿ˜Ÿ", + "text": "", + "type": 1, + "order": 82, + "group": 0, + "subgroup": 9, + "version": 1 + }, + { + "label": "slightly frowning face", + "hexcode": "1F641", + "tags": [ + "face", + "frown" + ], + "emoji": "๐Ÿ™", + "text": "", + "type": 1, + "order": 83, + "group": 0, + "subgroup": 9, + "version": 1 + }, + { + "label": "frowning face", + "hexcode": "2639", + "tags": [ + "face", + "frown" + ], + "emoji": "โ˜น๏ธ", + "text": "โ˜น๏ธŽ", + "type": 0, + "order": 85, + "group": 0, + "subgroup": 9, + "version": 0.7, + "emoticon": ":(" + }, + { + "label": "face with open mouth", + "hexcode": "1F62E", + "tags": [ + "face", + "mouth", + "open", + "sympathy" + ], + "emoji": "๐Ÿ˜ฎ", + "text": "", + "type": 1, + "order": 86, + "group": 0, + "subgroup": 9, + "version": 1 + }, + { + "label": "hushed face", + "hexcode": "1F62F", + "tags": [ + "face", + "hushed", + "stunned", + "surprised" + ], + "emoji": "๐Ÿ˜ฏ", + "text": "", + "type": 1, + "order": 87, + "group": 0, + "subgroup": 9, + "version": 1 + }, + { + "label": "astonished face", + "hexcode": "1F632", + "tags": [ + "astonished", + "face", + "shocked", + "totally" + ], + "emoji": "๐Ÿ˜ฒ", + "text": "", + "type": 1, + "order": 88, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": [ + ":o", + ":O" + ] + }, + { + "label": "flushed face", + "hexcode": "1F633", + "tags": [ + "dazed", + "face", + "flushed" + ], + "emoji": "๐Ÿ˜ณ", + "text": "", + "type": 1, + "order": 89, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": ":$" + }, + { + "label": "pleading face", + "hexcode": "1F97A", + "tags": [ + "begging", + "mercy", + "puppy eyes" + ], + "emoji": "๐Ÿฅบ", + "text": "", + "type": 1, + "order": 90, + "group": 0, + "subgroup": 9, + "version": 11 + }, + { + "label": "face holding back tears", + "hexcode": "1F979", + "tags": [ + "angry", + "cry", + "proud", + "resist", + "sad" + ], + "emoji": "๐Ÿฅน", + "text": "", + "type": 1, + "order": 91, + "group": 0, + "subgroup": 9, + "version": 14 + }, + { + "label": "frowning face with open mouth", + "hexcode": "1F626", + "tags": [ + "face", + "frown", + "mouth", + "open" + ], + "emoji": "๐Ÿ˜ฆ", + "text": "", + "type": 1, + "order": 92, + "group": 0, + "subgroup": 9, + "version": 1 + }, + { + "label": "anguished face", + "hexcode": "1F627", + "tags": [ + "anguished", + "face" + ], + "emoji": "๐Ÿ˜ง", + "text": "", + "type": 1, + "order": 93, + "group": 0, + "subgroup": 9, + "version": 1, + "emoticon": [ + ":s", + ":S" + ] + }, + { + "label": "fearful face", + "hexcode": "1F628", + "tags": [ + "face", + "fear", + "fearful", + "scared" + ], + "emoji": "๐Ÿ˜จ", + "text": "", + "type": 1, + "order": 94, + "group": 0, + "subgroup": 9, + "version": 0.6 + }, + { + "label": "anxious face with sweat", + "hexcode": "1F630", + "tags": [ + "blue", + "cold", + "face", + "rushed", + "sweat" + ], + "emoji": "๐Ÿ˜ฐ", + "text": "", + "type": 1, + "order": 95, + "group": 0, + "subgroup": 9, + "version": 0.6 + }, + { + "label": "sad but relieved face", + "hexcode": "1F625", + "tags": [ + "disappointed", + "face", + "relieved", + "whew" + ], + "emoji": "๐Ÿ˜ฅ", + "text": "", + "type": 1, + "order": 96, + "group": 0, + "subgroup": 9, + "version": 0.6 + }, + { + "label": "crying face", + "hexcode": "1F622", + "tags": [ + "cry", + "face", + "sad", + "tear" + ], + "emoji": "๐Ÿ˜ข", + "text": "", + "type": 1, + "order": 97, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": ":'(" + }, + { + "label": "loudly crying face", + "hexcode": "1F62D", + "tags": [ + "cry", + "face", + "sad", + "sob", + "tear" + ], + "emoji": "๐Ÿ˜ญ", + "text": "", + "type": 1, + "order": 98, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": ":'o" + }, + { + "label": "face screaming in fear", + "hexcode": "1F631", + "tags": [ + "face", + "fear", + "munch", + "scared", + "scream" + ], + "emoji": "๐Ÿ˜ฑ", + "text": "", + "type": 1, + "order": 99, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": "Dx" + }, + { + "label": "confounded face", + "hexcode": "1F616", + "tags": [ + "confounded", + "face" + ], + "emoji": "๐Ÿ˜–", + "text": "", + "type": 1, + "order": 100, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": [ + "x(", + "X(" + ] + }, + { + "label": "persevering face", + "hexcode": "1F623", + "tags": [ + "face", + "persevere" + ], + "emoji": "๐Ÿ˜ฃ", + "text": "", + "type": 1, + "order": 101, + "group": 0, + "subgroup": 9, + "version": 0.6 + }, + { + "label": "disappointed face", + "hexcode": "1F61E", + "tags": [ + "disappointed", + "face" + ], + "emoji": "๐Ÿ˜ž", + "text": "", + "type": 1, + "order": 102, + "group": 0, + "subgroup": 9, + "version": 0.6 + }, + { + "label": "downcast face with sweat", + "hexcode": "1F613", + "tags": [ + "cold", + "face", + "sweat" + ], + "emoji": "๐Ÿ˜“", + "text": "", + "type": 1, + "order": 103, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": ":<" + }, + { + "label": "weary face", + "hexcode": "1F629", + "tags": [ + "face", + "tired", + "weary" + ], + "emoji": "๐Ÿ˜ฉ", + "text": "", + "type": 1, + "order": 104, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": "D:" + }, + { + "label": "tired face", + "hexcode": "1F62B", + "tags": [ + "face", + "tired" + ], + "emoji": "๐Ÿ˜ซ", + "text": "", + "type": 1, + "order": 105, + "group": 0, + "subgroup": 9, + "version": 0.6, + "emoticon": [ + ":c", + ":C" + ] + }, + { + "label": "yawning face", + "hexcode": "1F971", + "tags": [ + "bored", + "tired", + "yawn" + ], + "emoji": "๐Ÿฅฑ", + "text": "", + "type": 1, + "order": 106, + "group": 0, + "subgroup": 9, + "version": 12 + }, + { + "label": "face with steam from nose", + "hexcode": "1F624", + "tags": [ + "face", + "triumph", + "won" + ], + "emoji": "๐Ÿ˜ค", + "text": "", + "type": 1, + "order": 107, + "group": 0, + "subgroup": 10, + "version": 0.6 + }, + { + "label": "enraged face", + "hexcode": "1F621", + "tags": [ + "angry", + "enraged", + "face", + "mad", + "pouting", + "rage", + "red" + ], + "emoji": "๐Ÿ˜ก", + "text": "", + "type": 1, + "order": 108, + "group": 0, + "subgroup": 10, + "version": 0.6, + "emoticon": ">:/" + }, + { + "label": "angry face", + "hexcode": "1F620", + "tags": [ + "anger", + "angry", + "face", + "mad" + ], + "emoji": "๐Ÿ˜ ", + "text": "", + "type": 1, + "order": 109, + "group": 0, + "subgroup": 10, + "version": 0.6 + }, + { + "label": "face with symbols on mouth", + "hexcode": "1F92C", + "tags": [ + "swearing" + ], + "emoji": "๐Ÿคฌ", + "text": "", + "type": 1, + "order": 110, + "group": 0, + "subgroup": 10, + "version": 5, + "emoticon": ":@" + }, + { + "label": "smiling face with horns", + "hexcode": "1F608", + "tags": [ + "face", + "fairy tale", + "fantasy", + "horns", + "smile" + ], + "emoji": "๐Ÿ˜ˆ", + "text": "", + "type": 1, + "order": 111, + "group": 0, + "subgroup": 10, + "version": 1, + "emoticon": ">:)" + }, + { + "label": "angry face with horns", + "hexcode": "1F47F", + "tags": [ + "demon", + "devil", + "face", + "fantasy", + "imp" + ], + "emoji": "๐Ÿ‘ฟ", + "text": "", + "type": 1, + "order": 112, + "group": 0, + "subgroup": 10, + "version": 0.6, + "emoticon": ">:(" + }, + { + "label": "skull", + "hexcode": "1F480", + "tags": [ + "death", + "face", + "fairy tale", + "monster" + ], + "emoji": "๐Ÿ’€", + "text": "", + "type": 1, + "order": 113, + "group": 0, + "subgroup": 10, + "version": 0.6 + }, + { + "label": "skull and crossbones", + "hexcode": "2620", + "tags": [ + "crossbones", + "death", + "face", + "monster", + "skull" + ], + "emoji": "โ˜ ๏ธ", + "text": "โ˜ ๏ธŽ", + "type": 0, + "order": 115, + "group": 0, + "subgroup": 10, + "version": 1 + }, + { + "label": "pile of poo", + "hexcode": "1F4A9", + "tags": [ + "dung", + "face", + "monster", + "poo", + "poop" + ], + "emoji": "๐Ÿ’ฉ", + "text": "", + "type": 1, + "order": 116, + "group": 0, + "subgroup": 11, + "version": 0.6 + }, + { + "label": "clown face", + "hexcode": "1F921", + "tags": [ + "clown", + "face" + ], + "emoji": "๐Ÿคก", + "text": "", + "type": 1, + "order": 117, + "group": 0, + "subgroup": 11, + "version": 3 + }, + { + "label": "ogre", + "hexcode": "1F479", + "tags": [ + "creature", + "face", + "fairy tale", + "fantasy", + "monster" + ], + "emoji": "๐Ÿ‘น", + "text": "", + "type": 1, + "order": 118, + "group": 0, + "subgroup": 11, + "version": 0.6, + "emoticon": ">0)" + }, + { + "label": "goblin", + "hexcode": "1F47A", + "tags": [ + "creature", + "face", + "fairy tale", + "fantasy", + "monster" + ], + "emoji": "๐Ÿ‘บ", + "text": "", + "type": 1, + "order": 119, + "group": 0, + "subgroup": 11, + "version": 0.6 + }, + { + "label": "ghost", + "hexcode": "1F47B", + "tags": [ + "creature", + "face", + "fairy tale", + "fantasy", + "monster" + ], + "emoji": "๐Ÿ‘ป", + "text": "", + "type": 1, + "order": 120, + "group": 0, + "subgroup": 11, + "version": 0.6 + }, + { + "label": "alien", + "hexcode": "1F47D", + "tags": [ + "creature", + "extraterrestrial", + "face", + "fantasy", + "ufo" + ], + "emoji": "๐Ÿ‘ฝ๏ธ", + "text": "๐Ÿ‘ฝ๏ธŽ", + "type": 1, + "order": 121, + "group": 0, + "subgroup": 11, + "version": 0.6 + }, + { + "label": "alien monster", + "hexcode": "1F47E", + "tags": [ + "alien", + "creature", + "extraterrestrial", + "face", + "monster", + "ufo" + ], + "emoji": "๐Ÿ‘พ", + "text": "", + "type": 1, + "order": 122, + "group": 0, + "subgroup": 11, + "version": 0.6 + }, + { + "label": "robot", + "hexcode": "1F916", + "tags": [ + "face", + "monster" + ], + "emoji": "๐Ÿค–", + "text": "", + "type": 1, + "order": 123, + "group": 0, + "subgroup": 11, + "version": 1 + }, + { + "label": "grinning cat", + "hexcode": "1F63A", + "tags": [ + "cat", + "face", + "grinning", + "mouth", + "open", + "smile" + ], + "emoji": "๐Ÿ˜บ", + "text": "", + "type": 1, + "order": 124, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "grinning cat with smiling eyes", + "hexcode": "1F638", + "tags": [ + "cat", + "eye", + "face", + "grin", + "smile" + ], + "emoji": "๐Ÿ˜ธ", + "text": "", + "type": 1, + "order": 125, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "cat with tears of joy", + "hexcode": "1F639", + "tags": [ + "cat", + "face", + "joy", + "tear" + ], + "emoji": "๐Ÿ˜น", + "text": "", + "type": 1, + "order": 126, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "smiling cat with heart-eyes", + "hexcode": "1F63B", + "tags": [ + "cat", + "eye", + "face", + "heart", + "love", + "smile" + ], + "emoji": "๐Ÿ˜ป", + "text": "", + "type": 1, + "order": 127, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "cat with wry smile", + "hexcode": "1F63C", + "tags": [ + "cat", + "face", + "ironic", + "smile", + "wry" + ], + "emoji": "๐Ÿ˜ผ", + "text": "", + "type": 1, + "order": 128, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "kissing cat", + "hexcode": "1F63D", + "tags": [ + "cat", + "eye", + "face", + "kiss" + ], + "emoji": "๐Ÿ˜ฝ", + "text": "", + "type": 1, + "order": 129, + "group": 0, + "subgroup": 12, + "version": 0.6, + "emoticon": ":3" + }, + { + "label": "weary cat", + "hexcode": "1F640", + "tags": [ + "cat", + "face", + "oh", + "surprised", + "weary" + ], + "emoji": "๐Ÿ™€", + "text": "", + "type": 1, + "order": 130, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "crying cat", + "hexcode": "1F63F", + "tags": [ + "cat", + "cry", + "face", + "sad", + "tear" + ], + "emoji": "๐Ÿ˜ฟ", + "text": "", + "type": 1, + "order": 131, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "pouting cat", + "hexcode": "1F63E", + "tags": [ + "cat", + "face", + "pouting" + ], + "emoji": "๐Ÿ˜พ", + "text": "", + "type": 1, + "order": 132, + "group": 0, + "subgroup": 12, + "version": 0.6 + }, + { + "label": "see-no-evil monkey", + "hexcode": "1F648", + "tags": [ + "evil", + "face", + "forbidden", + "monkey", + "see" + ], + "emoji": "๐Ÿ™ˆ", + "text": "", + "type": 1, + "order": 133, + "group": 0, + "subgroup": 13, + "version": 0.6 + }, + { + "label": "hear-no-evil monkey", + "hexcode": "1F649", + "tags": [ + "evil", + "face", + "forbidden", + "hear", + "monkey" + ], + "emoji": "๐Ÿ™‰", + "text": "", + "type": 1, + "order": 134, + "group": 0, + "subgroup": 13, + "version": 0.6 + }, + { + "label": "speak-no-evil monkey", + "hexcode": "1F64A", + "tags": [ + "evil", + "face", + "forbidden", + "monkey", + "speak" + ], + "emoji": "๐Ÿ™Š", + "text": "", + "type": 1, + "order": 135, + "group": 0, + "subgroup": 13, + "version": 0.6 + }, + { + "label": "love letter", + "hexcode": "1F48C", + "tags": [ + "heart", + "letter", + "love", + "mail" + ], + "emoji": "๐Ÿ’Œ", + "text": "", + "type": 1, + "order": 136, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "heart with arrow", + "hexcode": "1F498", + "tags": [ + "arrow", + "cupid" + ], + "emoji": "๐Ÿ’˜", + "text": "", + "type": 1, + "order": 137, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "heart with ribbon", + "hexcode": "1F49D", + "tags": [ + "ribbon", + "valentine" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 138, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "sparkling heart", + "hexcode": "1F496", + "tags": [ + "excited", + "sparkle" + ], + "emoji": "๐Ÿ’–", + "text": "", + "type": 1, + "order": 139, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "growing heart", + "hexcode": "1F497", + "tags": [ + "excited", + "growing", + "nervous", + "pulse" + ], + "emoji": "๐Ÿ’—", + "text": "", + "type": 1, + "order": 140, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "beating heart", + "hexcode": "1F493", + "tags": [ + "beating", + "heartbeat", + "pulsating" + ], + "emoji": "๐Ÿ’“", + "text": "", + "type": 1, + "order": 141, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "revolving hearts", + "hexcode": "1F49E", + "tags": [ + "revolving" + ], + "emoji": "๐Ÿ’ž", + "text": "", + "type": 1, + "order": 142, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "two hearts", + "hexcode": "1F495", + "tags": [ + "love" + ], + "emoji": "๐Ÿ’•", + "text": "", + "type": 1, + "order": 143, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "heart decoration", + "hexcode": "1F49F", + "tags": [ + "heart" + ], + "emoji": "๐Ÿ’Ÿ", + "text": "", + "type": 1, + "order": 144, + "group": 0, + "subgroup": 14, + "version": 0.6 + }, + { + "label": "heart exclamation", + "hexcode": "2763", + "tags": [ + "exclamation", + "mark", + "punctuation" + ], + "emoji": "โฃ๏ธ", + "text": "โฃ๏ธŽ", + "type": 0, + "order": 146, + "group": 0, + "subgroup": 14, + "version": 1 + }, + { + "label": "broken heart", + "hexcode": "1F494", + "tags": [ + "break", + "broken" + ], + "emoji": "๐Ÿ’”", + "text": "", + "type": 1, + "order": 147, + "group": 0, + "subgroup": 14, + "version": 0.6, + "emoticon": "", + "skins": [ + { + "label": "man mage: light skin tone", + "hexcode": "1F9D9-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง™๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1735, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man mage: medium-light skin tone", + "hexcode": "1F9D9-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง™๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1737, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man mage: medium skin tone", + "hexcode": "1F9D9-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง™๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1739, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man mage: medium-dark skin tone", + "hexcode": "1F9D9-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง™๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1741, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man mage: dark skin tone", + "hexcode": "1F9D9-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง™๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1743, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman mage", + "hexcode": "1F9D9-200D-2640-FE0F", + "tags": [ + "sorceress", + "witch" + ], + "emoji": "๐Ÿง™โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1745, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman mage: light skin tone", + "hexcode": "1F9D9-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง™๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1747, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman mage: medium-light skin tone", + "hexcode": "1F9D9-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง™๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1749, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman mage: medium skin tone", + "hexcode": "1F9D9-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง™๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1751, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman mage: medium-dark skin tone", + "hexcode": "1F9D9-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง™๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1753, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman mage: dark skin tone", + "hexcode": "1F9D9-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง™๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1755, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "fairy", + "hexcode": "1F9DA", + "tags": [ + "oberon", + "puck", + "titania" + ], + "emoji": "๐Ÿงš", + "text": "", + "type": 1, + "order": 1757, + "group": 1, + "subgroup": 26, + "version": 5, + "skins": [ + { + "label": "fairy: light skin tone", + "hexcode": "1F9DA-1F3FB", + "emoji": "๐Ÿงš๐Ÿป", + "text": "", + "type": 1, + "order": 1758, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 1 + }, + { + "label": "fairy: medium-light skin tone", + "hexcode": "1F9DA-1F3FC", + "emoji": "๐Ÿงš๐Ÿผ", + "text": "", + "type": 1, + "order": 1759, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 2 + }, + { + "label": "fairy: medium skin tone", + "hexcode": "1F9DA-1F3FD", + "emoji": "๐Ÿงš๐Ÿฝ", + "text": "", + "type": 1, + "order": 1760, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 3 + }, + { + "label": "fairy: medium-dark skin tone", + "hexcode": "1F9DA-1F3FE", + "emoji": "๐Ÿงš๐Ÿพ", + "text": "", + "type": 1, + "order": 1761, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 4 + }, + { + "label": "fairy: dark skin tone", + "hexcode": "1F9DA-1F3FF", + "emoji": "๐Ÿงš๐Ÿฟ", + "text": "", + "type": 1, + "order": 1762, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "man fairy", + "hexcode": "1F9DA-200D-2642-FE0F", + "tags": [ + "oberon", + "puck" + ], + "emoji": "๐Ÿงšโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1763, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "man fairy: light skin tone", + "hexcode": "1F9DA-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿงš๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1765, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man fairy: medium-light skin tone", + "hexcode": "1F9DA-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿงš๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1767, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man fairy: medium skin tone", + "hexcode": "1F9DA-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿงš๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1769, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man fairy: medium-dark skin tone", + "hexcode": "1F9DA-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿงš๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1771, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man fairy: dark skin tone", + "hexcode": "1F9DA-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿงš๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1773, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman fairy", + "hexcode": "1F9DA-200D-2640-FE0F", + "tags": [ + "titania" + ], + "emoji": "๐Ÿงšโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1775, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman fairy: light skin tone", + "hexcode": "1F9DA-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿงš๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1777, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman fairy: medium-light skin tone", + "hexcode": "1F9DA-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿงš๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1779, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman fairy: medium skin tone", + "hexcode": "1F9DA-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿงš๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1781, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman fairy: medium-dark skin tone", + "hexcode": "1F9DA-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿงš๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1783, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman fairy: dark skin tone", + "hexcode": "1F9DA-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿงš๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1785, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "vampire", + "hexcode": "1F9DB", + "tags": [ + "dracula", + "undead" + ], + "emoji": "๐Ÿง›", + "text": "", + "type": 1, + "order": 1787, + "group": 1, + "subgroup": 26, + "version": 5, + "emoticon": ":E", + "skins": [ + { + "label": "vampire: light skin tone", + "hexcode": "1F9DB-1F3FB", + "emoji": "๐Ÿง›๐Ÿป", + "text": "", + "type": 1, + "order": 1788, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 1 + }, + { + "label": "vampire: medium-light skin tone", + "hexcode": "1F9DB-1F3FC", + "emoji": "๐Ÿง›๐Ÿผ", + "text": "", + "type": 1, + "order": 1789, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 2 + }, + { + "label": "vampire: medium skin tone", + "hexcode": "1F9DB-1F3FD", + "emoji": "๐Ÿง›๐Ÿฝ", + "text": "", + "type": 1, + "order": 1790, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 3 + }, + { + "label": "vampire: medium-dark skin tone", + "hexcode": "1F9DB-1F3FE", + "emoji": "๐Ÿง›๐Ÿพ", + "text": "", + "type": 1, + "order": 1791, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 4 + }, + { + "label": "vampire: dark skin tone", + "hexcode": "1F9DB-1F3FF", + "emoji": "๐Ÿง›๐Ÿฟ", + "text": "", + "type": 1, + "order": 1792, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "man vampire", + "hexcode": "1F9DB-200D-2642-FE0F", + "tags": [ + "dracula", + "undead" + ], + "emoji": "๐Ÿง›โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1793, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "man vampire: light skin tone", + "hexcode": "1F9DB-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง›๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1795, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man vampire: medium-light skin tone", + "hexcode": "1F9DB-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง›๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1797, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man vampire: medium skin tone", + "hexcode": "1F9DB-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง›๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1799, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man vampire: medium-dark skin tone", + "hexcode": "1F9DB-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง›๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1801, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man vampire: dark skin tone", + "hexcode": "1F9DB-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง›๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1803, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman vampire", + "hexcode": "1F9DB-200D-2640-FE0F", + "tags": [ + "undead" + ], + "emoji": "๐Ÿง›โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1805, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman vampire: light skin tone", + "hexcode": "1F9DB-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง›๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1807, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman vampire: medium-light skin tone", + "hexcode": "1F9DB-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง›๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1809, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman vampire: medium skin tone", + "hexcode": "1F9DB-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง›๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1811, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman vampire: medium-dark skin tone", + "hexcode": "1F9DB-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง›๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1813, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman vampire: dark skin tone", + "hexcode": "1F9DB-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง›๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1815, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "merperson", + "hexcode": "1F9DC", + "tags": [ + "mermaid", + "merman", + "merwoman" + ], + "emoji": "๐Ÿงœ", + "text": "", + "type": 1, + "order": 1817, + "group": 1, + "subgroup": 26, + "version": 5, + "skins": [ + { + "label": "merperson: light skin tone", + "hexcode": "1F9DC-1F3FB", + "emoji": "๐Ÿงœ๐Ÿป", + "text": "", + "type": 1, + "order": 1818, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 1 + }, + { + "label": "merperson: medium-light skin tone", + "hexcode": "1F9DC-1F3FC", + "emoji": "๐Ÿงœ๐Ÿผ", + "text": "", + "type": 1, + "order": 1819, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 2 + }, + { + "label": "merperson: medium skin tone", + "hexcode": "1F9DC-1F3FD", + "emoji": "๐Ÿงœ๐Ÿฝ", + "text": "", + "type": 1, + "order": 1820, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 3 + }, + { + "label": "merperson: medium-dark skin tone", + "hexcode": "1F9DC-1F3FE", + "emoji": "๐Ÿงœ๐Ÿพ", + "text": "", + "type": 1, + "order": 1821, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 4 + }, + { + "label": "merperson: dark skin tone", + "hexcode": "1F9DC-1F3FF", + "emoji": "๐Ÿงœ๐Ÿฟ", + "text": "", + "type": 1, + "order": 1822, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "merman", + "hexcode": "1F9DC-200D-2642-FE0F", + "tags": [ + "triton" + ], + "emoji": "๐Ÿงœโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1823, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "merman: light skin tone", + "hexcode": "1F9DC-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿงœ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1825, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "merman: medium-light skin tone", + "hexcode": "1F9DC-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿงœ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1827, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "merman: medium skin tone", + "hexcode": "1F9DC-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿงœ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1829, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "merman: medium-dark skin tone", + "hexcode": "1F9DC-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿงœ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1831, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "merman: dark skin tone", + "hexcode": "1F9DC-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿงœ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1833, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "mermaid", + "hexcode": "1F9DC-200D-2640-FE0F", + "tags": [ + "merwoman" + ], + "emoji": "๐Ÿงœโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1835, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "mermaid: light skin tone", + "hexcode": "1F9DC-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿงœ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1837, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "mermaid: medium-light skin tone", + "hexcode": "1F9DC-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿงœ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1839, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "mermaid: medium skin tone", + "hexcode": "1F9DC-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿงœ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1841, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "mermaid: medium-dark skin tone", + "hexcode": "1F9DC-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿงœ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1843, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "mermaid: dark skin tone", + "hexcode": "1F9DC-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿงœ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1845, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "elf", + "hexcode": "1F9DD", + "tags": [ + "magical" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 1847, + "group": 1, + "subgroup": 26, + "version": 5, + "skins": [ + { + "label": "elf: light skin tone", + "hexcode": "1F9DD-1F3FB", + "emoji": "๐Ÿง๐Ÿป", + "text": "", + "type": 1, + "order": 1848, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 1 + }, + { + "label": "elf: medium-light skin tone", + "hexcode": "1F9DD-1F3FC", + "emoji": "๐Ÿง๐Ÿผ", + "text": "", + "type": 1, + "order": 1849, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 2 + }, + { + "label": "elf: medium skin tone", + "hexcode": "1F9DD-1F3FD", + "emoji": "๐Ÿง๐Ÿฝ", + "text": "", + "type": 1, + "order": 1850, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 3 + }, + { + "label": "elf: medium-dark skin tone", + "hexcode": "1F9DD-1F3FE", + "emoji": "๐Ÿง๐Ÿพ", + "text": "", + "type": 1, + "order": 1851, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 4 + }, + { + "label": "elf: dark skin tone", + "hexcode": "1F9DD-1F3FF", + "emoji": "๐Ÿง๐Ÿฟ", + "text": "", + "type": 1, + "order": 1852, + "group": 1, + "subgroup": 26, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "man elf", + "hexcode": "1F9DD-200D-2642-FE0F", + "tags": [ + "magical" + ], + "emoji": "๐Ÿงโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1853, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "man elf: light skin tone", + "hexcode": "1F9DD-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1855, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man elf: medium-light skin tone", + "hexcode": "1F9DD-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1857, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man elf: medium skin tone", + "hexcode": "1F9DD-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1859, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man elf: medium-dark skin tone", + "hexcode": "1F9DD-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1861, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man elf: dark skin tone", + "hexcode": "1F9DD-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1863, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman elf", + "hexcode": "1F9DD-200D-2640-FE0F", + "tags": [ + "magical" + ], + "emoji": "๐Ÿงโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1865, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman elf: light skin tone", + "hexcode": "1F9DD-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1867, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman elf: medium-light skin tone", + "hexcode": "1F9DD-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1869, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman elf: medium skin tone", + "hexcode": "1F9DD-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1871, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman elf: medium-dark skin tone", + "hexcode": "1F9DD-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1873, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman elf: dark skin tone", + "hexcode": "1F9DD-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1875, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "genie", + "hexcode": "1F9DE", + "tags": [ + "djinn" + ], + "emoji": "๐Ÿงž", + "text": "", + "type": 1, + "order": 1877, + "group": 1, + "subgroup": 26, + "version": 5 + }, + { + "label": "man genie", + "hexcode": "1F9DE-200D-2642-FE0F", + "tags": [ + "djinn" + ], + "emoji": "๐Ÿงžโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1878, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1 + }, + { + "label": "woman genie", + "hexcode": "1F9DE-200D-2640-FE0F", + "tags": [ + "djinn" + ], + "emoji": "๐Ÿงžโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1880, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0 + }, + { + "label": "zombie", + "hexcode": "1F9DF", + "tags": [ + "undead", + "walking dead" + ], + "emoji": "๐ŸงŸ", + "text": "", + "type": 1, + "order": 1882, + "group": 1, + "subgroup": 26, + "version": 5, + "emoticon": "8#" + }, + { + "label": "man zombie", + "hexcode": "1F9DF-200D-2642-FE0F", + "tags": [ + "undead", + "walking dead" + ], + "emoji": "๐ŸงŸโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1883, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 1 + }, + { + "label": "woman zombie", + "hexcode": "1F9DF-200D-2640-FE0F", + "tags": [ + "undead", + "walking dead" + ], + "emoji": "๐ŸงŸโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1885, + "group": 1, + "subgroup": 26, + "version": 5, + "gender": 0 + }, + { + "label": "troll", + "hexcode": "1F9CC", + "tags": [ + "fairy tale", + "fantasy", + "monster" + ], + "emoji": "๐ŸงŒ", + "text": "", + "type": 1, + "order": 1887, + "group": 1, + "subgroup": 26, + "version": 14 + }, + { + "label": "person getting massage", + "hexcode": "1F486", + "tags": [ + "face", + "massage", + "salon" + ], + "emoji": "๐Ÿ’†", + "text": "", + "type": 1, + "order": 1888, + "group": 1, + "subgroup": 27, + "version": 0.6, + "skins": [ + { + "label": "person getting massage: light skin tone", + "hexcode": "1F486-1F3FB", + "emoji": "๐Ÿ’†๐Ÿป", + "text": "", + "type": 1, + "order": 1889, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 1 + }, + { + "label": "person getting massage: medium-light skin tone", + "hexcode": "1F486-1F3FC", + "emoji": "๐Ÿ’†๐Ÿผ", + "text": "", + "type": 1, + "order": 1890, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 2 + }, + { + "label": "person getting massage: medium skin tone", + "hexcode": "1F486-1F3FD", + "emoji": "๐Ÿ’†๐Ÿฝ", + "text": "", + "type": 1, + "order": 1891, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 3 + }, + { + "label": "person getting massage: medium-dark skin tone", + "hexcode": "1F486-1F3FE", + "emoji": "๐Ÿ’†๐Ÿพ", + "text": "", + "type": 1, + "order": 1892, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 4 + }, + { + "label": "person getting massage: dark skin tone", + "hexcode": "1F486-1F3FF", + "emoji": "๐Ÿ’†๐Ÿฟ", + "text": "", + "type": 1, + "order": 1893, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man getting massage", + "hexcode": "1F486-200D-2642-FE0F", + "tags": [ + "face", + "man", + "massage" + ], + "emoji": "๐Ÿ’†โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1894, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man getting massage: light skin tone", + "hexcode": "1F486-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿ’†๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1896, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man getting massage: medium-light skin tone", + "hexcode": "1F486-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿ’†๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1898, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man getting massage: medium skin tone", + "hexcode": "1F486-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿ’†๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1900, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man getting massage: medium-dark skin tone", + "hexcode": "1F486-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿ’†๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1902, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man getting massage: dark skin tone", + "hexcode": "1F486-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿ’†๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1904, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman getting massage", + "hexcode": "1F486-200D-2640-FE0F", + "tags": [ + "face", + "massage", + "woman" + ], + "emoji": "๐Ÿ’†โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1906, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman getting massage: light skin tone", + "hexcode": "1F486-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿ’†๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1908, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman getting massage: medium-light skin tone", + "hexcode": "1F486-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿ’†๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1910, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman getting massage: medium skin tone", + "hexcode": "1F486-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿ’†๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1912, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman getting massage: medium-dark skin tone", + "hexcode": "1F486-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿ’†๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1914, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman getting massage: dark skin tone", + "hexcode": "1F486-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿ’†๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1916, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person getting haircut", + "hexcode": "1F487", + "tags": [ + "barber", + "beauty", + "haircut", + "parlor" + ], + "emoji": "๐Ÿ’‡", + "text": "", + "type": 1, + "order": 1918, + "group": 1, + "subgroup": 27, + "version": 0.6, + "skins": [ + { + "label": "person getting haircut: light skin tone", + "hexcode": "1F487-1F3FB", + "emoji": "๐Ÿ’‡๐Ÿป", + "text": "", + "type": 1, + "order": 1919, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 1 + }, + { + "label": "person getting haircut: medium-light skin tone", + "hexcode": "1F487-1F3FC", + "emoji": "๐Ÿ’‡๐Ÿผ", + "text": "", + "type": 1, + "order": 1920, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 2 + }, + { + "label": "person getting haircut: medium skin tone", + "hexcode": "1F487-1F3FD", + "emoji": "๐Ÿ’‡๐Ÿฝ", + "text": "", + "type": 1, + "order": 1921, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 3 + }, + { + "label": "person getting haircut: medium-dark skin tone", + "hexcode": "1F487-1F3FE", + "emoji": "๐Ÿ’‡๐Ÿพ", + "text": "", + "type": 1, + "order": 1922, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 4 + }, + { + "label": "person getting haircut: dark skin tone", + "hexcode": "1F487-1F3FF", + "emoji": "๐Ÿ’‡๐Ÿฟ", + "text": "", + "type": 1, + "order": 1923, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man getting haircut", + "hexcode": "1F487-200D-2642-FE0F", + "tags": [ + "haircut", + "man" + ], + "emoji": "๐Ÿ’‡โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1924, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man getting haircut: light skin tone", + "hexcode": "1F487-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿ’‡๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1926, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man getting haircut: medium-light skin tone", + "hexcode": "1F487-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿ’‡๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1928, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man getting haircut: medium skin tone", + "hexcode": "1F487-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿ’‡๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1930, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man getting haircut: medium-dark skin tone", + "hexcode": "1F487-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿ’‡๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1932, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man getting haircut: dark skin tone", + "hexcode": "1F487-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿ’‡๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1934, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman getting haircut", + "hexcode": "1F487-200D-2640-FE0F", + "tags": [ + "haircut", + "woman" + ], + "emoji": "๐Ÿ’‡โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1936, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman getting haircut: light skin tone", + "hexcode": "1F487-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿ’‡๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1938, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman getting haircut: medium-light skin tone", + "hexcode": "1F487-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿ’‡๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1940, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman getting haircut: medium skin tone", + "hexcode": "1F487-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿ’‡๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1942, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman getting haircut: medium-dark skin tone", + "hexcode": "1F487-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿ’‡๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1944, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman getting haircut: dark skin tone", + "hexcode": "1F487-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿ’‡๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1946, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person walking", + "hexcode": "1F6B6", + "tags": [ + "hike", + "walk", + "walking" + ], + "emoji": "๐Ÿšถ", + "text": "", + "type": 1, + "order": 1948, + "group": 1, + "subgroup": 27, + "version": 0.6, + "skins": [ + { + "label": "person walking: light skin tone", + "hexcode": "1F6B6-1F3FB", + "emoji": "๐Ÿšถ๐Ÿป", + "text": "", + "type": 1, + "order": 1949, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 1 + }, + { + "label": "person walking: medium-light skin tone", + "hexcode": "1F6B6-1F3FC", + "emoji": "๐Ÿšถ๐Ÿผ", + "text": "", + "type": 1, + "order": 1950, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 2 + }, + { + "label": "person walking: medium skin tone", + "hexcode": "1F6B6-1F3FD", + "emoji": "๐Ÿšถ๐Ÿฝ", + "text": "", + "type": 1, + "order": 1951, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 3 + }, + { + "label": "person walking: medium-dark skin tone", + "hexcode": "1F6B6-1F3FE", + "emoji": "๐Ÿšถ๐Ÿพ", + "text": "", + "type": 1, + "order": 1952, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 4 + }, + { + "label": "person walking: dark skin tone", + "hexcode": "1F6B6-1F3FF", + "emoji": "๐Ÿšถ๐Ÿฟ", + "text": "", + "type": 1, + "order": 1953, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man walking", + "hexcode": "1F6B6-200D-2642-FE0F", + "tags": [ + "hike", + "man", + "walk" + ], + "emoji": "๐Ÿšถโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1954, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man walking: light skin tone", + "hexcode": "1F6B6-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿšถ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1956, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man walking: medium-light skin tone", + "hexcode": "1F6B6-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿšถ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1958, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man walking: medium skin tone", + "hexcode": "1F6B6-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿšถ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1960, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man walking: medium-dark skin tone", + "hexcode": "1F6B6-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿšถ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1962, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man walking: dark skin tone", + "hexcode": "1F6B6-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿšถ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 1964, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman walking", + "hexcode": "1F6B6-200D-2640-FE0F", + "tags": [ + "hike", + "walk", + "woman" + ], + "emoji": "๐Ÿšถโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1966, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman walking: light skin tone", + "hexcode": "1F6B6-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿšถ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1968, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman walking: medium-light skin tone", + "hexcode": "1F6B6-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿšถ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1970, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman walking: medium skin tone", + "hexcode": "1F6B6-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿšถ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1972, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman walking: medium-dark skin tone", + "hexcode": "1F6B6-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿšถ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1974, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman walking: dark skin tone", + "hexcode": "1F6B6-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿšถ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 1976, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person walking facing right", + "hexcode": "1F6B6-200D-27A1-FE0F", + "tags": [ + "hike", + "person walking", + "walk", + "walking" + ], + "emoji": "๐Ÿšถโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1978, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "person walking facing right", + "hexcode": "1F6B6-1F3FB-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿปโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1980, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "person walking facing right", + "hexcode": "1F6B6-1F3FC-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1982, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "person walking facing right", + "hexcode": "1F6B6-1F3FD-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1984, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "person walking facing right", + "hexcode": "1F6B6-1F3FE-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿพโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1986, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "person walking facing right", + "hexcode": "1F6B6-1F3FF-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿฟโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1988, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "woman walking facing right", + "hexcode": "1F6B6-200D-2640-FE0F-200D-27A1-FE0F", + "tags": [ + "hike", + "walk", + "woman", + "woman walking" + ], + "emoji": "๐Ÿšถโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1990, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "skins": [ + { + "label": "woman walking facing right", + "hexcode": "1F6B6-1F3FB-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1994, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 1 + }, + { + "label": "woman walking facing right", + "hexcode": "1F6B6-1F3FC-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 1998, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 2 + }, + { + "label": "woman walking facing right", + "hexcode": "1F6B6-1F3FD-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2002, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 3 + }, + { + "label": "woman walking facing right", + "hexcode": "1F6B6-1F3FE-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2006, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 4 + }, + { + "label": "woman walking facing right", + "hexcode": "1F6B6-1F3FF-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2010, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "man walking facing right", + "hexcode": "1F6B6-200D-2642-FE0F-200D-27A1-FE0F", + "tags": [ + "hike", + "man", + "man walking", + "walk" + ], + "emoji": "๐Ÿšถโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2014, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "skins": [ + { + "label": "man walking facing right", + "hexcode": "1F6B6-1F3FB-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2018, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 1 + }, + { + "label": "man walking facing right", + "hexcode": "1F6B6-1F3FC-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2022, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 2 + }, + { + "label": "man walking facing right", + "hexcode": "1F6B6-1F3FD-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2026, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 3 + }, + { + "label": "man walking facing right", + "hexcode": "1F6B6-1F3FE-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2030, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 4 + }, + { + "label": "man walking facing right", + "hexcode": "1F6B6-1F3FF-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿšถ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2034, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "person standing", + "hexcode": "1F9CD", + "tags": [ + "stand", + "standing" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 2038, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "person standing: light skin tone", + "hexcode": "1F9CD-1F3FB", + "emoji": "๐Ÿง๐Ÿป", + "text": "", + "type": 1, + "order": 2039, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "person standing: medium-light skin tone", + "hexcode": "1F9CD-1F3FC", + "emoji": "๐Ÿง๐Ÿผ", + "text": "", + "type": 1, + "order": 2040, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "person standing: medium skin tone", + "hexcode": "1F9CD-1F3FD", + "emoji": "๐Ÿง๐Ÿฝ", + "text": "", + "type": 1, + "order": 2041, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "person standing: medium-dark skin tone", + "hexcode": "1F9CD-1F3FE", + "emoji": "๐Ÿง๐Ÿพ", + "text": "", + "type": 1, + "order": 2042, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "person standing: dark skin tone", + "hexcode": "1F9CD-1F3FF", + "emoji": "๐Ÿง๐Ÿฟ", + "text": "", + "type": 1, + "order": 2043, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "man standing", + "hexcode": "1F9CD-200D-2642-FE0F", + "tags": [ + "man", + "standing" + ], + "emoji": "๐Ÿงโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2044, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "skins": [ + { + "label": "man standing: light skin tone", + "hexcode": "1F9CD-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2046, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 1 + }, + { + "label": "man standing: medium-light skin tone", + "hexcode": "1F9CD-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2048, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 2 + }, + { + "label": "man standing: medium skin tone", + "hexcode": "1F9CD-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2050, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 3 + }, + { + "label": "man standing: medium-dark skin tone", + "hexcode": "1F9CD-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2052, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 4 + }, + { + "label": "man standing: dark skin tone", + "hexcode": "1F9CD-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2054, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman standing", + "hexcode": "1F9CD-200D-2640-FE0F", + "tags": [ + "standing", + "woman" + ], + "emoji": "๐Ÿงโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2056, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "skins": [ + { + "label": "woman standing: light skin tone", + "hexcode": "1F9CD-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2058, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 1 + }, + { + "label": "woman standing: medium-light skin tone", + "hexcode": "1F9CD-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2060, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 2 + }, + { + "label": "woman standing: medium skin tone", + "hexcode": "1F9CD-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2062, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 3 + }, + { + "label": "woman standing: medium-dark skin tone", + "hexcode": "1F9CD-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2064, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 4 + }, + { + "label": "woman standing: dark skin tone", + "hexcode": "1F9CD-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2066, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person kneeling", + "hexcode": "1F9CE", + "tags": [ + "kneel", + "kneeling" + ], + "emoji": "๐ŸงŽ", + "text": "", + "type": 1, + "order": 2068, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "person kneeling: light skin tone", + "hexcode": "1F9CE-1F3FB", + "emoji": "๐ŸงŽ๐Ÿป", + "text": "", + "type": 1, + "order": 2069, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "person kneeling: medium-light skin tone", + "hexcode": "1F9CE-1F3FC", + "emoji": "๐ŸงŽ๐Ÿผ", + "text": "", + "type": 1, + "order": 2070, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "person kneeling: medium skin tone", + "hexcode": "1F9CE-1F3FD", + "emoji": "๐ŸงŽ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2071, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "person kneeling: medium-dark skin tone", + "hexcode": "1F9CE-1F3FE", + "emoji": "๐ŸงŽ๐Ÿพ", + "text": "", + "type": 1, + "order": 2072, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "person kneeling: dark skin tone", + "hexcode": "1F9CE-1F3FF", + "emoji": "๐ŸงŽ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2073, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "man kneeling", + "hexcode": "1F9CE-200D-2642-FE0F", + "tags": [ + "kneeling", + "man" + ], + "emoji": "๐ŸงŽโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2074, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "skins": [ + { + "label": "man kneeling: light skin tone", + "hexcode": "1F9CE-1F3FB-200D-2642-FE0F", + "emoji": "๐ŸงŽ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2076, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 1 + }, + { + "label": "man kneeling: medium-light skin tone", + "hexcode": "1F9CE-1F3FC-200D-2642-FE0F", + "emoji": "๐ŸงŽ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2078, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 2 + }, + { + "label": "man kneeling: medium skin tone", + "hexcode": "1F9CE-1F3FD-200D-2642-FE0F", + "emoji": "๐ŸงŽ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2080, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 3 + }, + { + "label": "man kneeling: medium-dark skin tone", + "hexcode": "1F9CE-1F3FE-200D-2642-FE0F", + "emoji": "๐ŸงŽ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2082, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 4 + }, + { + "label": "man kneeling: dark skin tone", + "hexcode": "1F9CE-1F3FF-200D-2642-FE0F", + "emoji": "๐ŸงŽ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2084, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman kneeling", + "hexcode": "1F9CE-200D-2640-FE0F", + "tags": [ + "kneeling", + "woman" + ], + "emoji": "๐ŸงŽโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2086, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "skins": [ + { + "label": "woman kneeling: light skin tone", + "hexcode": "1F9CE-1F3FB-200D-2640-FE0F", + "emoji": "๐ŸงŽ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2088, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 1 + }, + { + "label": "woman kneeling: medium-light skin tone", + "hexcode": "1F9CE-1F3FC-200D-2640-FE0F", + "emoji": "๐ŸงŽ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2090, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 2 + }, + { + "label": "woman kneeling: medium skin tone", + "hexcode": "1F9CE-1F3FD-200D-2640-FE0F", + "emoji": "๐ŸงŽ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2092, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 3 + }, + { + "label": "woman kneeling: medium-dark skin tone", + "hexcode": "1F9CE-1F3FE-200D-2640-FE0F", + "emoji": "๐ŸงŽ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2094, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 4 + }, + { + "label": "woman kneeling: dark skin tone", + "hexcode": "1F9CE-1F3FF-200D-2640-FE0F", + "emoji": "๐ŸงŽ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2096, + "group": 1, + "subgroup": 27, + "version": 12, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person kneeling facing right", + "hexcode": "1F9CE-200D-27A1-FE0F", + "tags": [ + "kneel", + "kneeling", + "person kneeling" + ], + "emoji": "๐ŸงŽโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2098, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "person kneeling facing right", + "hexcode": "1F9CE-1F3FB-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿปโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2100, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "person kneeling facing right", + "hexcode": "1F9CE-1F3FC-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2102, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "person kneeling facing right", + "hexcode": "1F9CE-1F3FD-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2104, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "person kneeling facing right", + "hexcode": "1F9CE-1F3FE-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿพโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2106, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "person kneeling facing right", + "hexcode": "1F9CE-1F3FF-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿฟโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2108, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "woman kneeling facing right", + "hexcode": "1F9CE-200D-2640-FE0F-200D-27A1-FE0F", + "tags": [ + "kneeling", + "woman" + ], + "emoji": "๐ŸงŽโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2110, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "skins": [ + { + "label": "woman kneeling facing right", + "hexcode": "1F9CE-1F3FB-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2114, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 1 + }, + { + "label": "woman kneeling facing right", + "hexcode": "1F9CE-1F3FC-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2118, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 2 + }, + { + "label": "woman kneeling facing right", + "hexcode": "1F9CE-1F3FD-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2122, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 3 + }, + { + "label": "woman kneeling facing right", + "hexcode": "1F9CE-1F3FE-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2126, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 4 + }, + { + "label": "woman kneeling facing right", + "hexcode": "1F9CE-1F3FF-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2130, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "man kneeling facing right", + "hexcode": "1F9CE-200D-2642-FE0F-200D-27A1-FE0F", + "tags": [ + "kneeling", + "man" + ], + "emoji": "๐ŸงŽโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2134, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "skins": [ + { + "label": "man kneeling facing right", + "hexcode": "1F9CE-1F3FB-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2138, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 1 + }, + { + "label": "man kneeling facing right", + "hexcode": "1F9CE-1F3FC-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2142, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 2 + }, + { + "label": "man kneeling facing right", + "hexcode": "1F9CE-1F3FD-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2146, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 3 + }, + { + "label": "man kneeling facing right", + "hexcode": "1F9CE-1F3FE-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2150, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 4 + }, + { + "label": "man kneeling facing right", + "hexcode": "1F9CE-1F3FF-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐ŸงŽ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2154, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "person with white cane", + "hexcode": "1F9D1-200D-1F9AF", + "tags": [ + "accessibility", + "blind" + ], + "emoji": "๐Ÿง‘โ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2158, + "group": 1, + "subgroup": 27, + "version": 12.1, + "skins": [ + { + "label": "person with white cane: light skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F9AF", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2159, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 1 + }, + { + "label": "person with white cane: medium-light skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F9AF", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2160, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 2 + }, + { + "label": "person with white cane: medium skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F9AF", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2161, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 3 + }, + { + "label": "person with white cane: medium-dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F9AF", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2162, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 4 + }, + { + "label": "person with white cane: dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F9AF", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2163, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 5 + } + ] + }, + { + "label": "person with white cane facing right", + "hexcode": "1F9D1-200D-1F9AF-200D-27A1-FE0F", + "tags": [ + "accessibility", + "blind", + "person with white cane" + ], + "emoji": "๐Ÿง‘โ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2164, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "person with white cane facing right", + "hexcode": "1F9D1-1F3FB-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2166, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "person with white cane facing right", + "hexcode": "1F9D1-1F3FC-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2168, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "person with white cane facing right", + "hexcode": "1F9D1-1F3FD-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2170, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "person with white cane facing right", + "hexcode": "1F9D1-1F3FE-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2172, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "person with white cane facing right", + "hexcode": "1F9D1-1F3FF-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2174, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "man with white cane", + "hexcode": "1F468-200D-1F9AF", + "tags": [ + "accessibility", + "blind", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2176, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "man with white cane: light skin tone", + "hexcode": "1F468-1F3FB-200D-1F9AF", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2177, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "man with white cane: medium-light skin tone", + "hexcode": "1F468-1F3FC-200D-1F9AF", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2178, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "man with white cane: medium skin tone", + "hexcode": "1F468-1F3FD-200D-1F9AF", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2179, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "man with white cane: medium-dark skin tone", + "hexcode": "1F468-1F3FE-200D-1F9AF", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2180, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "man with white cane: dark skin tone", + "hexcode": "1F468-1F3FF-200D-1F9AF", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2181, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "man with white cane facing right", + "hexcode": "1F468-200D-1F9AF-200D-27A1-FE0F", + "tags": [ + "accessibility", + "blind", + "man", + "man with white cane" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2182, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "man with white cane facing right", + "hexcode": "1F468-1F3FB-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2184, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "man with white cane facing right", + "hexcode": "1F468-1F3FC-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2186, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "man with white cane facing right", + "hexcode": "1F468-1F3FD-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2188, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "man with white cane facing right", + "hexcode": "1F468-1F3FE-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2190, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "man with white cane facing right", + "hexcode": "1F468-1F3FF-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2192, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "woman with white cane", + "hexcode": "1F469-200D-1F9AF", + "tags": [ + "accessibility", + "blind", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2194, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "woman with white cane: light skin tone", + "hexcode": "1F469-1F3FB-200D-1F9AF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2195, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "woman with white cane: medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-1F9AF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2196, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "woman with white cane: medium skin tone", + "hexcode": "1F469-1F3FD-200D-1F9AF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2197, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "woman with white cane: medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-1F9AF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2198, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "woman with white cane: dark skin tone", + "hexcode": "1F469-1F3FF-200D-1F9AF", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 2199, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "woman with white cane facing right", + "hexcode": "1F469-200D-1F9AF-200D-27A1-FE0F", + "tags": [ + "accessibility", + "blind", + "woman", + "woman with white cane" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2200, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "woman with white cane facing right", + "hexcode": "1F469-1F3FB-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2202, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "woman with white cane facing right", + "hexcode": "1F469-1F3FC-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2204, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "woman with white cane facing right", + "hexcode": "1F469-1F3FD-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2206, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "woman with white cane facing right", + "hexcode": "1F469-1F3FE-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2208, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "woman with white cane facing right", + "hexcode": "1F469-1F3FF-200D-1F9AF-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฏโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2210, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "person in motorized wheelchair", + "hexcode": "1F9D1-200D-1F9BC", + "tags": [ + "accessibility", + "wheelchair" + ], + "emoji": "๐Ÿง‘โ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2212, + "group": 1, + "subgroup": 27, + "version": 12.1, + "skins": [ + { + "label": "person in motorized wheelchair: light skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F9BC", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2213, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 1 + }, + { + "label": "person in motorized wheelchair: medium-light skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F9BC", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2214, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 2 + }, + { + "label": "person in motorized wheelchair: medium skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F9BC", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2215, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 3 + }, + { + "label": "person in motorized wheelchair: medium-dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F9BC", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2216, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 4 + }, + { + "label": "person in motorized wheelchair: dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F9BC", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2217, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 5 + } + ] + }, + { + "label": "person in motorized wheelchair facing right", + "hexcode": "1F9D1-200D-1F9BC-200D-27A1-FE0F", + "tags": [ + "accessibility", + "person in motorized wheelchair", + "wheelchair" + ], + "emoji": "๐Ÿง‘โ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2218, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "person in motorized wheelchair facing right", + "hexcode": "1F9D1-1F3FB-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2220, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "person in motorized wheelchair facing right", + "hexcode": "1F9D1-1F3FC-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2222, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "person in motorized wheelchair facing right", + "hexcode": "1F9D1-1F3FD-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2224, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "person in motorized wheelchair facing right", + "hexcode": "1F9D1-1F3FE-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2226, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "person in motorized wheelchair facing right", + "hexcode": "1F9D1-1F3FF-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2228, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "man in motorized wheelchair", + "hexcode": "1F468-200D-1F9BC", + "tags": [ + "accessibility", + "man", + "wheelchair" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2230, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "man in motorized wheelchair: light skin tone", + "hexcode": "1F468-1F3FB-200D-1F9BC", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2231, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "man in motorized wheelchair: medium-light skin tone", + "hexcode": "1F468-1F3FC-200D-1F9BC", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2232, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "man in motorized wheelchair: medium skin tone", + "hexcode": "1F468-1F3FD-200D-1F9BC", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2233, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "man in motorized wheelchair: medium-dark skin tone", + "hexcode": "1F468-1F3FE-200D-1F9BC", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2234, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "man in motorized wheelchair: dark skin tone", + "hexcode": "1F468-1F3FF-200D-1F9BC", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2235, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "man in motorized wheelchair facing right", + "hexcode": "1F468-200D-1F9BC-200D-27A1-FE0F", + "tags": [ + "accessibility", + "man", + "man in motorized wheelchair", + "wheelchair" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2236, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "man in motorized wheelchair facing right", + "hexcode": "1F468-1F3FB-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2238, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "man in motorized wheelchair facing right", + "hexcode": "1F468-1F3FC-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2240, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "man in motorized wheelchair facing right", + "hexcode": "1F468-1F3FD-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2242, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "man in motorized wheelchair facing right", + "hexcode": "1F468-1F3FE-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2244, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "man in motorized wheelchair facing right", + "hexcode": "1F468-1F3FF-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2246, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "woman in motorized wheelchair", + "hexcode": "1F469-200D-1F9BC", + "tags": [ + "accessibility", + "wheelchair", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2248, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "woman in motorized wheelchair: light skin tone", + "hexcode": "1F469-1F3FB-200D-1F9BC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2249, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "woman in motorized wheelchair: medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-1F9BC", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2250, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "woman in motorized wheelchair: medium skin tone", + "hexcode": "1F469-1F3FD-200D-1F9BC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2251, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "woman in motorized wheelchair: medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-1F9BC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2252, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "woman in motorized wheelchair: dark skin tone", + "hexcode": "1F469-1F3FF-200D-1F9BC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผ", + "text": "", + "type": 1, + "order": 2253, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "woman in motorized wheelchair facing right", + "hexcode": "1F469-200D-1F9BC-200D-27A1-FE0F", + "tags": [ + "accessibility", + "wheelchair", + "woman", + "woman in motorized wheelchair" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2254, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "woman in motorized wheelchair facing right", + "hexcode": "1F469-1F3FB-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2256, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "woman in motorized wheelchair facing right", + "hexcode": "1F469-1F3FC-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2258, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "woman in motorized wheelchair facing right", + "hexcode": "1F469-1F3FD-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2260, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "woman in motorized wheelchair facing right", + "hexcode": "1F469-1F3FE-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2262, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "woman in motorized wheelchair facing right", + "hexcode": "1F469-1F3FF-200D-1F9BC-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2264, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "person in manual wheelchair", + "hexcode": "1F9D1-200D-1F9BD", + "tags": [ + "accessibility", + "wheelchair" + ], + "emoji": "๐Ÿง‘โ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2266, + "group": 1, + "subgroup": 27, + "version": 12.1, + "skins": [ + { + "label": "person in manual wheelchair: light skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F9BD", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2267, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 1 + }, + { + "label": "person in manual wheelchair: medium-light skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F9BD", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2268, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 2 + }, + { + "label": "person in manual wheelchair: medium skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F9BD", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2269, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 3 + }, + { + "label": "person in manual wheelchair: medium-dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F9BD", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2270, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 4 + }, + { + "label": "person in manual wheelchair: dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F9BD", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2271, + "group": 1, + "subgroup": 27, + "version": 12.1, + "tone": 5 + } + ] + }, + { + "label": "person in manual wheelchair facing right", + "hexcode": "1F9D1-200D-1F9BD-200D-27A1-FE0F", + "tags": [ + "accessibility", + "person in manual wheelchair", + "wheelchair" + ], + "emoji": "๐Ÿง‘โ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2272, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "person in manual wheelchair facing right", + "hexcode": "1F9D1-1F3FB-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2274, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "person in manual wheelchair facing right", + "hexcode": "1F9D1-1F3FC-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2276, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "person in manual wheelchair facing right", + "hexcode": "1F9D1-1F3FD-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2278, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "person in manual wheelchair facing right", + "hexcode": "1F9D1-1F3FE-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2280, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "person in manual wheelchair facing right", + "hexcode": "1F9D1-1F3FF-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2282, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "man in manual wheelchair", + "hexcode": "1F468-200D-1F9BD", + "tags": [ + "accessibility", + "man", + "wheelchair" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2284, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "man in manual wheelchair: light skin tone", + "hexcode": "1F468-1F3FB-200D-1F9BD", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2285, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "man in manual wheelchair: medium-light skin tone", + "hexcode": "1F468-1F3FC-200D-1F9BD", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2286, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "man in manual wheelchair: medium skin tone", + "hexcode": "1F468-1F3FD-200D-1F9BD", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2287, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "man in manual wheelchair: medium-dark skin tone", + "hexcode": "1F468-1F3FE-200D-1F9BD", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2288, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "man in manual wheelchair: dark skin tone", + "hexcode": "1F468-1F3FF-200D-1F9BD", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2289, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "man in manual wheelchair facing right", + "hexcode": "1F468-200D-1F9BD-200D-27A1-FE0F", + "tags": [ + "accessibility", + "man", + "man in manual wheelchair", + "wheelchair" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2290, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "man in manual wheelchair facing right", + "hexcode": "1F468-1F3FB-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2292, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "man in manual wheelchair facing right", + "hexcode": "1F468-1F3FC-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2294, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "man in manual wheelchair facing right", + "hexcode": "1F468-1F3FD-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2296, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "man in manual wheelchair facing right", + "hexcode": "1F468-1F3FE-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2298, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "man in manual wheelchair facing right", + "hexcode": "1F468-1F3FF-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2300, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "woman in manual wheelchair", + "hexcode": "1F469-200D-1F9BD", + "tags": [ + "accessibility", + "wheelchair", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2302, + "group": 1, + "subgroup": 27, + "version": 12, + "skins": [ + { + "label": "woman in manual wheelchair: light skin tone", + "hexcode": "1F469-1F3FB-200D-1F9BD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2303, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 1 + }, + { + "label": "woman in manual wheelchair: medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-1F9BD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2304, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 2 + }, + { + "label": "woman in manual wheelchair: medium skin tone", + "hexcode": "1F469-1F3FD-200D-1F9BD", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2305, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 3 + }, + { + "label": "woman in manual wheelchair: medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-1F9BD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2306, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 4 + }, + { + "label": "woman in manual wheelchair: dark skin tone", + "hexcode": "1F469-1F3FF-200D-1F9BD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 2307, + "group": 1, + "subgroup": 27, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "woman in manual wheelchair facing right", + "hexcode": "1F469-200D-1F9BD-200D-27A1-FE0F", + "tags": [ + "accessibility", + "wheelchair", + "woman", + "woman in manual wheelchair" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2308, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "woman in manual wheelchair facing right", + "hexcode": "1F469-1F3FB-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2310, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "woman in manual wheelchair facing right", + "hexcode": "1F469-1F3FC-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2312, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "woman in manual wheelchair facing right", + "hexcode": "1F469-1F3FD-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2314, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "woman in manual wheelchair facing right", + "hexcode": "1F469-1F3FE-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2316, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "woman in manual wheelchair facing right", + "hexcode": "1F469-1F3FF-200D-1F9BD-200D-27A1-FE0F", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿฆฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2318, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "person running", + "hexcode": "1F3C3", + "tags": [ + "marathon", + "running" + ], + "emoji": "๐Ÿƒ", + "text": "", + "type": 1, + "order": 2320, + "group": 1, + "subgroup": 27, + "version": 0.6, + "skins": [ + { + "label": "person running: light skin tone", + "hexcode": "1F3C3-1F3FB", + "emoji": "๐Ÿƒ๐Ÿป", + "text": "", + "type": 1, + "order": 2321, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 1 + }, + { + "label": "person running: medium-light skin tone", + "hexcode": "1F3C3-1F3FC", + "emoji": "๐Ÿƒ๐Ÿผ", + "text": "", + "type": 1, + "order": 2322, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 2 + }, + { + "label": "person running: medium skin tone", + "hexcode": "1F3C3-1F3FD", + "emoji": "๐Ÿƒ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2323, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 3 + }, + { + "label": "person running: medium-dark skin tone", + "hexcode": "1F3C3-1F3FE", + "emoji": "๐Ÿƒ๐Ÿพ", + "text": "", + "type": 1, + "order": 2324, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 4 + }, + { + "label": "person running: dark skin tone", + "hexcode": "1F3C3-1F3FF", + "emoji": "๐Ÿƒ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2325, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man running", + "hexcode": "1F3C3-200D-2642-FE0F", + "tags": [ + "man", + "marathon", + "racing", + "running" + ], + "emoji": "๐Ÿƒโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2326, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man running: light skin tone", + "hexcode": "1F3C3-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿƒ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2328, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man running: medium-light skin tone", + "hexcode": "1F3C3-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿƒ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2330, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man running: medium skin tone", + "hexcode": "1F3C3-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿƒ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2332, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man running: medium-dark skin tone", + "hexcode": "1F3C3-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿƒ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2334, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man running: dark skin tone", + "hexcode": "1F3C3-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿƒ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2336, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman running", + "hexcode": "1F3C3-200D-2640-FE0F", + "tags": [ + "marathon", + "racing", + "running", + "woman" + ], + "emoji": "๐Ÿƒโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2338, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman running: light skin tone", + "hexcode": "1F3C3-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿƒ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2340, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman running: medium-light skin tone", + "hexcode": "1F3C3-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿƒ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2342, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman running: medium skin tone", + "hexcode": "1F3C3-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿƒ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2344, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman running: medium-dark skin tone", + "hexcode": "1F3C3-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿƒ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2346, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman running: dark skin tone", + "hexcode": "1F3C3-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿƒ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2348, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person running facing right", + "hexcode": "1F3C3-200D-27A1-FE0F", + "tags": [ + "marathon", + "person running", + "running" + ], + "emoji": "๐Ÿƒโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2350, + "group": 1, + "subgroup": 27, + "version": 15.1, + "skins": [ + { + "label": "person running facing right", + "hexcode": "1F3C3-1F3FB-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿปโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2352, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 1 + }, + { + "label": "person running facing right", + "hexcode": "1F3C3-1F3FC-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿผโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2354, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 2 + }, + { + "label": "person running facing right", + "hexcode": "1F3C3-1F3FD-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿฝโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2356, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 3 + }, + { + "label": "person running facing right", + "hexcode": "1F3C3-1F3FE-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿพโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2358, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 4 + }, + { + "label": "person running facing right", + "hexcode": "1F3C3-1F3FF-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿฟโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2360, + "group": 1, + "subgroup": 27, + "version": 15.1, + "tone": 5 + } + ] + }, + { + "label": "woman running facing right", + "hexcode": "1F3C3-200D-2640-FE0F-200D-27A1-FE0F", + "tags": [ + "marathon", + "racing", + "running", + "woman" + ], + "emoji": "๐Ÿƒโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2362, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "skins": [ + { + "label": "woman running facing right", + "hexcode": "1F3C3-1F3FB-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿปโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2366, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 1 + }, + { + "label": "woman running facing right", + "hexcode": "1F3C3-1F3FC-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿผโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2370, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 2 + }, + { + "label": "woman running facing right", + "hexcode": "1F3C3-1F3FD-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿฝโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2374, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 3 + }, + { + "label": "woman running facing right", + "hexcode": "1F3C3-1F3FE-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿพโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2378, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 4 + }, + { + "label": "woman running facing right", + "hexcode": "1F3C3-1F3FF-200D-2640-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿฟโ€โ™€๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2382, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "man running facing right", + "hexcode": "1F3C3-200D-2642-FE0F-200D-27A1-FE0F", + "tags": [ + "man", + "marathon", + "racing", + "running" + ], + "emoji": "๐Ÿƒโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2386, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "skins": [ + { + "label": "man running facing right", + "hexcode": "1F3C3-1F3FB-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿปโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2390, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 1 + }, + { + "label": "man running facing right", + "hexcode": "1F3C3-1F3FC-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿผโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2394, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 2 + }, + { + "label": "man running facing right", + "hexcode": "1F3C3-1F3FD-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿฝโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2398, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 3 + }, + { + "label": "man running facing right", + "hexcode": "1F3C3-1F3FE-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿพโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2402, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 4 + }, + { + "label": "man running facing right", + "hexcode": "1F3C3-1F3FF-200D-2642-FE0F-200D-27A1-FE0F", + "emoji": "๐Ÿƒ๐Ÿฟโ€โ™‚๏ธโ€โžก๏ธ", + "text": "", + "type": 1, + "order": 2406, + "group": 1, + "subgroup": 27, + "version": 15.1, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman dancing", + "hexcode": "1F483", + "tags": [ + "dance", + "dancing", + "woman" + ], + "emoji": "๐Ÿ’ƒ", + "text": "", + "type": 1, + "order": 2410, + "group": 1, + "subgroup": 27, + "version": 0.6, + "skins": [ + { + "label": "woman dancing: light skin tone", + "hexcode": "1F483-1F3FB", + "emoji": "๐Ÿ’ƒ๐Ÿป", + "text": "", + "type": 1, + "order": 2411, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 1 + }, + { + "label": "woman dancing: medium-light skin tone", + "hexcode": "1F483-1F3FC", + "emoji": "๐Ÿ’ƒ๐Ÿผ", + "text": "", + "type": 1, + "order": 2412, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 2 + }, + { + "label": "woman dancing: medium skin tone", + "hexcode": "1F483-1F3FD", + "emoji": "๐Ÿ’ƒ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2413, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 3 + }, + { + "label": "woman dancing: medium-dark skin tone", + "hexcode": "1F483-1F3FE", + "emoji": "๐Ÿ’ƒ๐Ÿพ", + "text": "", + "type": 1, + "order": 2414, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 4 + }, + { + "label": "woman dancing: dark skin tone", + "hexcode": "1F483-1F3FF", + "emoji": "๐Ÿ’ƒ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2415, + "group": 1, + "subgroup": 27, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man dancing", + "hexcode": "1F57A", + "tags": [ + "dance", + "dancing", + "man" + ], + "emoji": "๐Ÿ•บ", + "text": "", + "type": 1, + "order": 2416, + "group": 1, + "subgroup": 27, + "version": 3, + "skins": [ + { + "label": "man dancing: light skin tone", + "hexcode": "1F57A-1F3FB", + "emoji": "๐Ÿ•บ๐Ÿป", + "text": "", + "type": 1, + "order": 2417, + "group": 1, + "subgroup": 27, + "version": 3, + "tone": 1 + }, + { + "label": "man dancing: medium-light skin tone", + "hexcode": "1F57A-1F3FC", + "emoji": "๐Ÿ•บ๐Ÿผ", + "text": "", + "type": 1, + "order": 2418, + "group": 1, + "subgroup": 27, + "version": 3, + "tone": 2 + }, + { + "label": "man dancing: medium skin tone", + "hexcode": "1F57A-1F3FD", + "emoji": "๐Ÿ•บ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2419, + "group": 1, + "subgroup": 27, + "version": 3, + "tone": 3 + }, + { + "label": "man dancing: medium-dark skin tone", + "hexcode": "1F57A-1F3FE", + "emoji": "๐Ÿ•บ๐Ÿพ", + "text": "", + "type": 1, + "order": 2420, + "group": 1, + "subgroup": 27, + "version": 3, + "tone": 4 + }, + { + "label": "man dancing: dark skin tone", + "hexcode": "1F57A-1F3FF", + "emoji": "๐Ÿ•บ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2421, + "group": 1, + "subgroup": 27, + "version": 3, + "tone": 5 + } + ] + }, + { + "label": "person in suit levitating", + "hexcode": "1F574", + "tags": [ + "business", + "person", + "suit" + ], + "emoji": "๐Ÿ•ด๏ธ", + "text": "๐Ÿ•ด๏ธŽ", + "type": 0, + "order": 2423, + "group": 1, + "subgroup": 27, + "version": 0.7, + "skins": [ + { + "label": "person in suit levitating: light skin tone", + "hexcode": "1F574-1F3FB", + "emoji": "๐Ÿ•ด๐Ÿป", + "text": "", + "type": 1, + "order": 2424, + "group": 1, + "subgroup": 27, + "version": 4, + "tone": 1 + }, + { + "label": "person in suit levitating: medium-light skin tone", + "hexcode": "1F574-1F3FC", + "emoji": "๐Ÿ•ด๐Ÿผ", + "text": "", + "type": 1, + "order": 2425, + "group": 1, + "subgroup": 27, + "version": 4, + "tone": 2 + }, + { + "label": "person in suit levitating: medium skin tone", + "hexcode": "1F574-1F3FD", + "emoji": "๐Ÿ•ด๐Ÿฝ", + "text": "", + "type": 1, + "order": 2426, + "group": 1, + "subgroup": 27, + "version": 4, + "tone": 3 + }, + { + "label": "person in suit levitating: medium-dark skin tone", + "hexcode": "1F574-1F3FE", + "emoji": "๐Ÿ•ด๐Ÿพ", + "text": "", + "type": 1, + "order": 2427, + "group": 1, + "subgroup": 27, + "version": 4, + "tone": 4 + }, + { + "label": "person in suit levitating: dark skin tone", + "hexcode": "1F574-1F3FF", + "emoji": "๐Ÿ•ด๐Ÿฟ", + "text": "", + "type": 1, + "order": 2428, + "group": 1, + "subgroup": 27, + "version": 4, + "tone": 5 + } + ] + }, + { + "label": "people with bunny ears", + "hexcode": "1F46F", + "tags": [ + "bunny ear", + "dancer", + "partying" + ], + "emoji": "๐Ÿ‘ฏ", + "text": "", + "type": 1, + "order": 2429, + "group": 1, + "subgroup": 27, + "version": 0.6 + }, + { + "label": "men with bunny ears", + "hexcode": "1F46F-200D-2642-FE0F", + "tags": [ + "bunny ear", + "dancer", + "men", + "partying" + ], + "emoji": "๐Ÿ‘ฏโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2430, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 1 + }, + { + "label": "women with bunny ears", + "hexcode": "1F46F-200D-2640-FE0F", + "tags": [ + "bunny ear", + "dancer", + "partying", + "women" + ], + "emoji": "๐Ÿ‘ฏโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2432, + "group": 1, + "subgroup": 27, + "version": 4, + "gender": 0 + }, + { + "label": "person in steamy room", + "hexcode": "1F9D6", + "tags": [ + "sauna", + "steam room" + ], + "emoji": "๐Ÿง–", + "text": "", + "type": 1, + "order": 2434, + "group": 1, + "subgroup": 27, + "version": 5, + "skins": [ + { + "label": "person in steamy room: light skin tone", + "hexcode": "1F9D6-1F3FB", + "emoji": "๐Ÿง–๐Ÿป", + "text": "", + "type": 1, + "order": 2435, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 1 + }, + { + "label": "person in steamy room: medium-light skin tone", + "hexcode": "1F9D6-1F3FC", + "emoji": "๐Ÿง–๐Ÿผ", + "text": "", + "type": 1, + "order": 2436, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 2 + }, + { + "label": "person in steamy room: medium skin tone", + "hexcode": "1F9D6-1F3FD", + "emoji": "๐Ÿง–๐Ÿฝ", + "text": "", + "type": 1, + "order": 2437, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 3 + }, + { + "label": "person in steamy room: medium-dark skin tone", + "hexcode": "1F9D6-1F3FE", + "emoji": "๐Ÿง–๐Ÿพ", + "text": "", + "type": 1, + "order": 2438, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 4 + }, + { + "label": "person in steamy room: dark skin tone", + "hexcode": "1F9D6-1F3FF", + "emoji": "๐Ÿง–๐Ÿฟ", + "text": "", + "type": 1, + "order": 2439, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "man in steamy room", + "hexcode": "1F9D6-200D-2642-FE0F", + "tags": [ + "sauna", + "steam room" + ], + "emoji": "๐Ÿง–โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2440, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "man in steamy room: light skin tone", + "hexcode": "1F9D6-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง–๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2442, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man in steamy room: medium-light skin tone", + "hexcode": "1F9D6-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง–๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2444, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man in steamy room: medium skin tone", + "hexcode": "1F9D6-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง–๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2446, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man in steamy room: medium-dark skin tone", + "hexcode": "1F9D6-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง–๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2448, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man in steamy room: dark skin tone", + "hexcode": "1F9D6-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง–๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2450, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman in steamy room", + "hexcode": "1F9D6-200D-2640-FE0F", + "tags": [ + "sauna", + "steam room" + ], + "emoji": "๐Ÿง–โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2452, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman in steamy room: light skin tone", + "hexcode": "1F9D6-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง–๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2454, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman in steamy room: medium-light skin tone", + "hexcode": "1F9D6-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง–๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2456, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman in steamy room: medium skin tone", + "hexcode": "1F9D6-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง–๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2458, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman in steamy room: medium-dark skin tone", + "hexcode": "1F9D6-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง–๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2460, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman in steamy room: dark skin tone", + "hexcode": "1F9D6-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง–๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2462, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person climbing", + "hexcode": "1F9D7", + "tags": [ + "climber" + ], + "emoji": "๐Ÿง—", + "text": "", + "type": 1, + "order": 2464, + "group": 1, + "subgroup": 27, + "version": 5, + "skins": [ + { + "label": "person climbing: light skin tone", + "hexcode": "1F9D7-1F3FB", + "emoji": "๐Ÿง—๐Ÿป", + "text": "", + "type": 1, + "order": 2465, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 1 + }, + { + "label": "person climbing: medium-light skin tone", + "hexcode": "1F9D7-1F3FC", + "emoji": "๐Ÿง—๐Ÿผ", + "text": "", + "type": 1, + "order": 2466, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 2 + }, + { + "label": "person climbing: medium skin tone", + "hexcode": "1F9D7-1F3FD", + "emoji": "๐Ÿง—๐Ÿฝ", + "text": "", + "type": 1, + "order": 2467, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 3 + }, + { + "label": "person climbing: medium-dark skin tone", + "hexcode": "1F9D7-1F3FE", + "emoji": "๐Ÿง—๐Ÿพ", + "text": "", + "type": 1, + "order": 2468, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 4 + }, + { + "label": "person climbing: dark skin tone", + "hexcode": "1F9D7-1F3FF", + "emoji": "๐Ÿง—๐Ÿฟ", + "text": "", + "type": 1, + "order": 2469, + "group": 1, + "subgroup": 27, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "man climbing", + "hexcode": "1F9D7-200D-2642-FE0F", + "tags": [ + "climber" + ], + "emoji": "๐Ÿง—โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2470, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "man climbing: light skin tone", + "hexcode": "1F9D7-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง—๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2472, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man climbing: medium-light skin tone", + "hexcode": "1F9D7-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง—๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2474, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man climbing: medium skin tone", + "hexcode": "1F9D7-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง—๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2476, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man climbing: medium-dark skin tone", + "hexcode": "1F9D7-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง—๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2478, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man climbing: dark skin tone", + "hexcode": "1F9D7-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง—๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2480, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman climbing", + "hexcode": "1F9D7-200D-2640-FE0F", + "tags": [ + "climber" + ], + "emoji": "๐Ÿง—โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2482, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman climbing: light skin tone", + "hexcode": "1F9D7-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง—๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2484, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman climbing: medium-light skin tone", + "hexcode": "1F9D7-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง—๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2486, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman climbing: medium skin tone", + "hexcode": "1F9D7-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง—๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2488, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman climbing: medium-dark skin tone", + "hexcode": "1F9D7-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง—๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2490, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman climbing: dark skin tone", + "hexcode": "1F9D7-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง—๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2492, + "group": 1, + "subgroup": 27, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person fencing", + "hexcode": "1F93A", + "tags": [ + "fencer", + "fencing", + "sword" + ], + "emoji": "๐Ÿคบ", + "text": "", + "type": 1, + "order": 2494, + "group": 1, + "subgroup": 28, + "version": 3 + }, + { + "label": "horse racing", + "hexcode": "1F3C7", + "tags": [ + "horse", + "jockey", + "racehorse", + "racing" + ], + "emoji": "๐Ÿ‡", + "text": "", + "type": 1, + "order": 2495, + "group": 1, + "subgroup": 28, + "version": 1, + "skins": [ + { + "label": "horse racing: light skin tone", + "hexcode": "1F3C7-1F3FB", + "emoji": "๐Ÿ‡๐Ÿป", + "text": "", + "type": 1, + "order": 2496, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "horse racing: medium-light skin tone", + "hexcode": "1F3C7-1F3FC", + "emoji": "๐Ÿ‡๐Ÿผ", + "text": "", + "type": 1, + "order": 2497, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "horse racing: medium skin tone", + "hexcode": "1F3C7-1F3FD", + "emoji": "๐Ÿ‡๐Ÿฝ", + "text": "", + "type": 1, + "order": 2498, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "horse racing: medium-dark skin tone", + "hexcode": "1F3C7-1F3FE", + "emoji": "๐Ÿ‡๐Ÿพ", + "text": "", + "type": 1, + "order": 2499, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "horse racing: dark skin tone", + "hexcode": "1F3C7-1F3FF", + "emoji": "๐Ÿ‡๐Ÿฟ", + "text": "", + "type": 1, + "order": 2500, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "skier", + "hexcode": "26F7", + "tags": [ + "ski", + "snow" + ], + "emoji": "โ›ท๏ธ", + "text": "โ›ท๏ธŽ", + "type": 0, + "order": 2502, + "group": 1, + "subgroup": 28, + "version": 0.7 + }, + { + "label": "snowboarder", + "hexcode": "1F3C2", + "tags": [ + "ski", + "snow", + "snowboard" + ], + "emoji": "๐Ÿ‚๏ธ", + "text": "๐Ÿ‚๏ธŽ", + "type": 1, + "order": 2503, + "group": 1, + "subgroup": 28, + "version": 0.6, + "skins": [ + { + "label": "snowboarder: light skin tone", + "hexcode": "1F3C2-1F3FB", + "emoji": "๐Ÿ‚๐Ÿป", + "text": "", + "type": 1, + "order": 2504, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "snowboarder: medium-light skin tone", + "hexcode": "1F3C2-1F3FC", + "emoji": "๐Ÿ‚๐Ÿผ", + "text": "", + "type": 1, + "order": 2505, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "snowboarder: medium skin tone", + "hexcode": "1F3C2-1F3FD", + "emoji": "๐Ÿ‚๐Ÿฝ", + "text": "", + "type": 1, + "order": 2506, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "snowboarder: medium-dark skin tone", + "hexcode": "1F3C2-1F3FE", + "emoji": "๐Ÿ‚๐Ÿพ", + "text": "", + "type": 1, + "order": 2507, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "snowboarder: dark skin tone", + "hexcode": "1F3C2-1F3FF", + "emoji": "๐Ÿ‚๐Ÿฟ", + "text": "", + "type": 1, + "order": 2508, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "person golfing", + "hexcode": "1F3CC", + "tags": [ + "ball", + "golf" + ], + "emoji": "๐ŸŒ๏ธ", + "text": "๐ŸŒ๏ธŽ", + "type": 0, + "order": 2510, + "group": 1, + "subgroup": 28, + "version": 0.7, + "skins": [ + { + "label": "person golfing: light skin tone", + "hexcode": "1F3CC-1F3FB", + "emoji": "๐ŸŒ๐Ÿป", + "text": "", + "type": 1, + "order": 2511, + "group": 1, + "subgroup": 28, + "version": 4, + "tone": 1 + }, + { + "label": "person golfing: medium-light skin tone", + "hexcode": "1F3CC-1F3FC", + "emoji": "๐ŸŒ๐Ÿผ", + "text": "", + "type": 1, + "order": 2512, + "group": 1, + "subgroup": 28, + "version": 4, + "tone": 2 + }, + { + "label": "person golfing: medium skin tone", + "hexcode": "1F3CC-1F3FD", + "emoji": "๐ŸŒ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2513, + "group": 1, + "subgroup": 28, + "version": 4, + "tone": 3 + }, + { + "label": "person golfing: medium-dark skin tone", + "hexcode": "1F3CC-1F3FE", + "emoji": "๐ŸŒ๐Ÿพ", + "text": "", + "type": 1, + "order": 2514, + "group": 1, + "subgroup": 28, + "version": 4, + "tone": 4 + }, + { + "label": "person golfing: dark skin tone", + "hexcode": "1F3CC-1F3FF", + "emoji": "๐ŸŒ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2515, + "group": 1, + "subgroup": 28, + "version": 4, + "tone": 5 + } + ] + }, + { + "label": "man golfing", + "hexcode": "1F3CC-FE0F-200D-2642-FE0F", + "tags": [ + "golf", + "man" + ], + "emoji": "๐ŸŒ๏ธโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2516, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man golfing: light skin tone", + "hexcode": "1F3CC-1F3FB-200D-2642-FE0F", + "emoji": "๐ŸŒ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2520, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man golfing: medium-light skin tone", + "hexcode": "1F3CC-1F3FC-200D-2642-FE0F", + "emoji": "๐ŸŒ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2522, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man golfing: medium skin tone", + "hexcode": "1F3CC-1F3FD-200D-2642-FE0F", + "emoji": "๐ŸŒ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2524, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man golfing: medium-dark skin tone", + "hexcode": "1F3CC-1F3FE-200D-2642-FE0F", + "emoji": "๐ŸŒ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2526, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man golfing: dark skin tone", + "hexcode": "1F3CC-1F3FF-200D-2642-FE0F", + "emoji": "๐ŸŒ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2528, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman golfing", + "hexcode": "1F3CC-FE0F-200D-2640-FE0F", + "tags": [ + "golf", + "woman" + ], + "emoji": "๐ŸŒ๏ธโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2530, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman golfing: light skin tone", + "hexcode": "1F3CC-1F3FB-200D-2640-FE0F", + "emoji": "๐ŸŒ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2534, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman golfing: medium-light skin tone", + "hexcode": "1F3CC-1F3FC-200D-2640-FE0F", + "emoji": "๐ŸŒ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2536, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman golfing: medium skin tone", + "hexcode": "1F3CC-1F3FD-200D-2640-FE0F", + "emoji": "๐ŸŒ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2538, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman golfing: medium-dark skin tone", + "hexcode": "1F3CC-1F3FE-200D-2640-FE0F", + "emoji": "๐ŸŒ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2540, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman golfing: dark skin tone", + "hexcode": "1F3CC-1F3FF-200D-2640-FE0F", + "emoji": "๐ŸŒ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2542, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person surfing", + "hexcode": "1F3C4", + "tags": [ + "surfing" + ], + "emoji": "๐Ÿ„๏ธ", + "text": "๐Ÿ„๏ธŽ", + "type": 1, + "order": 2544, + "group": 1, + "subgroup": 28, + "version": 0.6, + "skins": [ + { + "label": "person surfing: light skin tone", + "hexcode": "1F3C4-1F3FB", + "emoji": "๐Ÿ„๐Ÿป", + "text": "", + "type": 1, + "order": 2545, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "person surfing: medium-light skin tone", + "hexcode": "1F3C4-1F3FC", + "emoji": "๐Ÿ„๐Ÿผ", + "text": "", + "type": 1, + "order": 2546, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "person surfing: medium skin tone", + "hexcode": "1F3C4-1F3FD", + "emoji": "๐Ÿ„๐Ÿฝ", + "text": "", + "type": 1, + "order": 2547, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "person surfing: medium-dark skin tone", + "hexcode": "1F3C4-1F3FE", + "emoji": "๐Ÿ„๐Ÿพ", + "text": "", + "type": 1, + "order": 2548, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "person surfing: dark skin tone", + "hexcode": "1F3C4-1F3FF", + "emoji": "๐Ÿ„๐Ÿฟ", + "text": "", + "type": 1, + "order": 2549, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man surfing", + "hexcode": "1F3C4-200D-2642-FE0F", + "tags": [ + "man", + "surfing" + ], + "emoji": "๐Ÿ„โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2550, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man surfing: light skin tone", + "hexcode": "1F3C4-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿ„๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2552, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man surfing: medium-light skin tone", + "hexcode": "1F3C4-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿ„๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2554, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man surfing: medium skin tone", + "hexcode": "1F3C4-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿ„๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2556, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man surfing: medium-dark skin tone", + "hexcode": "1F3C4-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿ„๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2558, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man surfing: dark skin tone", + "hexcode": "1F3C4-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿ„๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2560, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman surfing", + "hexcode": "1F3C4-200D-2640-FE0F", + "tags": [ + "surfing", + "woman" + ], + "emoji": "๐Ÿ„โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2562, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman surfing: light skin tone", + "hexcode": "1F3C4-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿ„๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2564, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman surfing: medium-light skin tone", + "hexcode": "1F3C4-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿ„๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2566, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman surfing: medium skin tone", + "hexcode": "1F3C4-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿ„๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2568, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman surfing: medium-dark skin tone", + "hexcode": "1F3C4-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿ„๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2570, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman surfing: dark skin tone", + "hexcode": "1F3C4-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿ„๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2572, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person rowing boat", + "hexcode": "1F6A3", + "tags": [ + "boat", + "rowboat" + ], + "emoji": "๐Ÿšฃ", + "text": "", + "type": 1, + "order": 2574, + "group": 1, + "subgroup": 28, + "version": 1, + "skins": [ + { + "label": "person rowing boat: light skin tone", + "hexcode": "1F6A3-1F3FB", + "emoji": "๐Ÿšฃ๐Ÿป", + "text": "", + "type": 1, + "order": 2575, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "person rowing boat: medium-light skin tone", + "hexcode": "1F6A3-1F3FC", + "emoji": "๐Ÿšฃ๐Ÿผ", + "text": "", + "type": 1, + "order": 2576, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "person rowing boat: medium skin tone", + "hexcode": "1F6A3-1F3FD", + "emoji": "๐Ÿšฃ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2577, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "person rowing boat: medium-dark skin tone", + "hexcode": "1F6A3-1F3FE", + "emoji": "๐Ÿšฃ๐Ÿพ", + "text": "", + "type": 1, + "order": 2578, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "person rowing boat: dark skin tone", + "hexcode": "1F6A3-1F3FF", + "emoji": "๐Ÿšฃ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2579, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man rowing boat", + "hexcode": "1F6A3-200D-2642-FE0F", + "tags": [ + "boat", + "man", + "rowboat" + ], + "emoji": "๐Ÿšฃโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2580, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man rowing boat: light skin tone", + "hexcode": "1F6A3-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿšฃ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2582, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man rowing boat: medium-light skin tone", + "hexcode": "1F6A3-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿšฃ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2584, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man rowing boat: medium skin tone", + "hexcode": "1F6A3-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿšฃ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2586, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man rowing boat: medium-dark skin tone", + "hexcode": "1F6A3-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿšฃ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2588, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man rowing boat: dark skin tone", + "hexcode": "1F6A3-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿšฃ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2590, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman rowing boat", + "hexcode": "1F6A3-200D-2640-FE0F", + "tags": [ + "boat", + "rowboat", + "woman" + ], + "emoji": "๐Ÿšฃโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2592, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman rowing boat: light skin tone", + "hexcode": "1F6A3-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿšฃ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2594, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman rowing boat: medium-light skin tone", + "hexcode": "1F6A3-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿšฃ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2596, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman rowing boat: medium skin tone", + "hexcode": "1F6A3-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿšฃ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2598, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman rowing boat: medium-dark skin tone", + "hexcode": "1F6A3-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿšฃ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2600, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman rowing boat: dark skin tone", + "hexcode": "1F6A3-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿšฃ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2602, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person swimming", + "hexcode": "1F3CA", + "tags": [ + "swim" + ], + "emoji": "๐ŸŠ๏ธ", + "text": "๐ŸŠ๏ธŽ", + "type": 1, + "order": 2604, + "group": 1, + "subgroup": 28, + "version": 0.6, + "skins": [ + { + "label": "person swimming: light skin tone", + "hexcode": "1F3CA-1F3FB", + "emoji": "๐ŸŠ๐Ÿป", + "text": "", + "type": 1, + "order": 2605, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "person swimming: medium-light skin tone", + "hexcode": "1F3CA-1F3FC", + "emoji": "๐ŸŠ๐Ÿผ", + "text": "", + "type": 1, + "order": 2606, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "person swimming: medium skin tone", + "hexcode": "1F3CA-1F3FD", + "emoji": "๐ŸŠ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2607, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "person swimming: medium-dark skin tone", + "hexcode": "1F3CA-1F3FE", + "emoji": "๐ŸŠ๐Ÿพ", + "text": "", + "type": 1, + "order": 2608, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "person swimming: dark skin tone", + "hexcode": "1F3CA-1F3FF", + "emoji": "๐ŸŠ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2609, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man swimming", + "hexcode": "1F3CA-200D-2642-FE0F", + "tags": [ + "man", + "swim" + ], + "emoji": "๐ŸŠโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2610, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man swimming: light skin tone", + "hexcode": "1F3CA-1F3FB-200D-2642-FE0F", + "emoji": "๐ŸŠ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2612, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man swimming: medium-light skin tone", + "hexcode": "1F3CA-1F3FC-200D-2642-FE0F", + "emoji": "๐ŸŠ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2614, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man swimming: medium skin tone", + "hexcode": "1F3CA-1F3FD-200D-2642-FE0F", + "emoji": "๐ŸŠ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2616, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man swimming: medium-dark skin tone", + "hexcode": "1F3CA-1F3FE-200D-2642-FE0F", + "emoji": "๐ŸŠ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2618, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man swimming: dark skin tone", + "hexcode": "1F3CA-1F3FF-200D-2642-FE0F", + "emoji": "๐ŸŠ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2620, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman swimming", + "hexcode": "1F3CA-200D-2640-FE0F", + "tags": [ + "swim", + "woman" + ], + "emoji": "๐ŸŠโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2622, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman swimming: light skin tone", + "hexcode": "1F3CA-1F3FB-200D-2640-FE0F", + "emoji": "๐ŸŠ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2624, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman swimming: medium-light skin tone", + "hexcode": "1F3CA-1F3FC-200D-2640-FE0F", + "emoji": "๐ŸŠ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2626, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman swimming: medium skin tone", + "hexcode": "1F3CA-1F3FD-200D-2640-FE0F", + "emoji": "๐ŸŠ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2628, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman swimming: medium-dark skin tone", + "hexcode": "1F3CA-1F3FE-200D-2640-FE0F", + "emoji": "๐ŸŠ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2630, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman swimming: dark skin tone", + "hexcode": "1F3CA-1F3FF-200D-2640-FE0F", + "emoji": "๐ŸŠ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2632, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person bouncing ball", + "hexcode": "26F9", + "tags": [ + "ball" + ], + "emoji": "โ›น๏ธ", + "text": "โ›น๏ธŽ", + "type": 0, + "order": 2635, + "group": 1, + "subgroup": 28, + "version": 0.7, + "skins": [ + { + "label": "person bouncing ball: light skin tone", + "hexcode": "26F9-1F3FB", + "emoji": "โ›น๐Ÿป", + "text": "", + "type": 1, + "order": 2636, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 1 + }, + { + "label": "person bouncing ball: medium-light skin tone", + "hexcode": "26F9-1F3FC", + "emoji": "โ›น๐Ÿผ", + "text": "", + "type": 1, + "order": 2637, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 2 + }, + { + "label": "person bouncing ball: medium skin tone", + "hexcode": "26F9-1F3FD", + "emoji": "โ›น๐Ÿฝ", + "text": "", + "type": 1, + "order": 2638, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 3 + }, + { + "label": "person bouncing ball: medium-dark skin tone", + "hexcode": "26F9-1F3FE", + "emoji": "โ›น๐Ÿพ", + "text": "", + "type": 1, + "order": 2639, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 4 + }, + { + "label": "person bouncing ball: dark skin tone", + "hexcode": "26F9-1F3FF", + "emoji": "โ›น๐Ÿฟ", + "text": "", + "type": 1, + "order": 2640, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 5 + } + ] + }, + { + "label": "man bouncing ball", + "hexcode": "26F9-FE0F-200D-2642-FE0F", + "tags": [ + "ball", + "man" + ], + "emoji": "โ›น๏ธโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2641, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man bouncing ball: light skin tone", + "hexcode": "26F9-1F3FB-200D-2642-FE0F", + "emoji": "โ›น๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2645, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man bouncing ball: medium-light skin tone", + "hexcode": "26F9-1F3FC-200D-2642-FE0F", + "emoji": "โ›น๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2647, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man bouncing ball: medium skin tone", + "hexcode": "26F9-1F3FD-200D-2642-FE0F", + "emoji": "โ›น๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2649, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man bouncing ball: medium-dark skin tone", + "hexcode": "26F9-1F3FE-200D-2642-FE0F", + "emoji": "โ›น๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2651, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man bouncing ball: dark skin tone", + "hexcode": "26F9-1F3FF-200D-2642-FE0F", + "emoji": "โ›น๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2653, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman bouncing ball", + "hexcode": "26F9-FE0F-200D-2640-FE0F", + "tags": [ + "ball", + "woman" + ], + "emoji": "โ›น๏ธโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2655, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman bouncing ball: light skin tone", + "hexcode": "26F9-1F3FB-200D-2640-FE0F", + "emoji": "โ›น๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2659, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman bouncing ball: medium-light skin tone", + "hexcode": "26F9-1F3FC-200D-2640-FE0F", + "emoji": "โ›น๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2661, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman bouncing ball: medium skin tone", + "hexcode": "26F9-1F3FD-200D-2640-FE0F", + "emoji": "โ›น๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2663, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman bouncing ball: medium-dark skin tone", + "hexcode": "26F9-1F3FE-200D-2640-FE0F", + "emoji": "โ›น๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2665, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman bouncing ball: dark skin tone", + "hexcode": "26F9-1F3FF-200D-2640-FE0F", + "emoji": "โ›น๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2667, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person lifting weights", + "hexcode": "1F3CB", + "tags": [ + "lifter", + "weight" + ], + "emoji": "๐Ÿ‹๏ธ", + "text": "๐Ÿ‹๏ธŽ", + "type": 0, + "order": 2670, + "group": 1, + "subgroup": 28, + "version": 0.7, + "skins": [ + { + "label": "person lifting weights: light skin tone", + "hexcode": "1F3CB-1F3FB", + "emoji": "๐Ÿ‹๐Ÿป", + "text": "", + "type": 1, + "order": 2671, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 1 + }, + { + "label": "person lifting weights: medium-light skin tone", + "hexcode": "1F3CB-1F3FC", + "emoji": "๐Ÿ‹๐Ÿผ", + "text": "", + "type": 1, + "order": 2672, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 2 + }, + { + "label": "person lifting weights: medium skin tone", + "hexcode": "1F3CB-1F3FD", + "emoji": "๐Ÿ‹๐Ÿฝ", + "text": "", + "type": 1, + "order": 2673, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 3 + }, + { + "label": "person lifting weights: medium-dark skin tone", + "hexcode": "1F3CB-1F3FE", + "emoji": "๐Ÿ‹๐Ÿพ", + "text": "", + "type": 1, + "order": 2674, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 4 + }, + { + "label": "person lifting weights: dark skin tone", + "hexcode": "1F3CB-1F3FF", + "emoji": "๐Ÿ‹๐Ÿฟ", + "text": "", + "type": 1, + "order": 2675, + "group": 1, + "subgroup": 28, + "version": 2, + "tone": 5 + } + ] + }, + { + "label": "man lifting weights", + "hexcode": "1F3CB-FE0F-200D-2642-FE0F", + "tags": [ + "man", + "weight lifter" + ], + "emoji": "๐Ÿ‹๏ธโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2676, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man lifting weights: light skin tone", + "hexcode": "1F3CB-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿ‹๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2680, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man lifting weights: medium-light skin tone", + "hexcode": "1F3CB-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿ‹๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2682, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man lifting weights: medium skin tone", + "hexcode": "1F3CB-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿ‹๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2684, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man lifting weights: medium-dark skin tone", + "hexcode": "1F3CB-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿ‹๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2686, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man lifting weights: dark skin tone", + "hexcode": "1F3CB-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿ‹๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2688, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman lifting weights", + "hexcode": "1F3CB-FE0F-200D-2640-FE0F", + "tags": [ + "weight lifter", + "woman" + ], + "emoji": "๐Ÿ‹๏ธโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2690, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman lifting weights: light skin tone", + "hexcode": "1F3CB-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿ‹๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2694, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman lifting weights: medium-light skin tone", + "hexcode": "1F3CB-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿ‹๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2696, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman lifting weights: medium skin tone", + "hexcode": "1F3CB-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿ‹๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2698, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman lifting weights: medium-dark skin tone", + "hexcode": "1F3CB-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿ‹๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2700, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman lifting weights: dark skin tone", + "hexcode": "1F3CB-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿ‹๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2702, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person biking", + "hexcode": "1F6B4", + "tags": [ + "bicycle", + "biking", + "cyclist" + ], + "emoji": "๐Ÿšด", + "text": "", + "type": 1, + "order": 2704, + "group": 1, + "subgroup": 28, + "version": 1, + "skins": [ + { + "label": "person biking: light skin tone", + "hexcode": "1F6B4-1F3FB", + "emoji": "๐Ÿšด๐Ÿป", + "text": "", + "type": 1, + "order": 2705, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "person biking: medium-light skin tone", + "hexcode": "1F6B4-1F3FC", + "emoji": "๐Ÿšด๐Ÿผ", + "text": "", + "type": 1, + "order": 2706, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "person biking: medium skin tone", + "hexcode": "1F6B4-1F3FD", + "emoji": "๐Ÿšด๐Ÿฝ", + "text": "", + "type": 1, + "order": 2707, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "person biking: medium-dark skin tone", + "hexcode": "1F6B4-1F3FE", + "emoji": "๐Ÿšด๐Ÿพ", + "text": "", + "type": 1, + "order": 2708, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "person biking: dark skin tone", + "hexcode": "1F6B4-1F3FF", + "emoji": "๐Ÿšด๐Ÿฟ", + "text": "", + "type": 1, + "order": 2709, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man biking", + "hexcode": "1F6B4-200D-2642-FE0F", + "tags": [ + "bicycle", + "biking", + "cyclist", + "man" + ], + "emoji": "๐Ÿšดโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2710, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man biking: light skin tone", + "hexcode": "1F6B4-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿšด๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2712, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man biking: medium-light skin tone", + "hexcode": "1F6B4-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿšด๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2714, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man biking: medium skin tone", + "hexcode": "1F6B4-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿšด๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2716, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man biking: medium-dark skin tone", + "hexcode": "1F6B4-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿšด๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2718, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man biking: dark skin tone", + "hexcode": "1F6B4-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿšด๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2720, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman biking", + "hexcode": "1F6B4-200D-2640-FE0F", + "tags": [ + "bicycle", + "biking", + "cyclist", + "woman" + ], + "emoji": "๐Ÿšดโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2722, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman biking: light skin tone", + "hexcode": "1F6B4-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿšด๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2724, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman biking: medium-light skin tone", + "hexcode": "1F6B4-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿšด๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2726, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman biking: medium skin tone", + "hexcode": "1F6B4-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿšด๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2728, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman biking: medium-dark skin tone", + "hexcode": "1F6B4-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿšด๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2730, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman biking: dark skin tone", + "hexcode": "1F6B4-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿšด๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2732, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person mountain biking", + "hexcode": "1F6B5", + "tags": [ + "bicycle", + "bicyclist", + "bike", + "cyclist", + "mountain" + ], + "emoji": "๐Ÿšต", + "text": "", + "type": 1, + "order": 2734, + "group": 1, + "subgroup": 28, + "version": 1, + "skins": [ + { + "label": "person mountain biking: light skin tone", + "hexcode": "1F6B5-1F3FB", + "emoji": "๐Ÿšต๐Ÿป", + "text": "", + "type": 1, + "order": 2735, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 1 + }, + { + "label": "person mountain biking: medium-light skin tone", + "hexcode": "1F6B5-1F3FC", + "emoji": "๐Ÿšต๐Ÿผ", + "text": "", + "type": 1, + "order": 2736, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 2 + }, + { + "label": "person mountain biking: medium skin tone", + "hexcode": "1F6B5-1F3FD", + "emoji": "๐Ÿšต๐Ÿฝ", + "text": "", + "type": 1, + "order": 2737, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 3 + }, + { + "label": "person mountain biking: medium-dark skin tone", + "hexcode": "1F6B5-1F3FE", + "emoji": "๐Ÿšต๐Ÿพ", + "text": "", + "type": 1, + "order": 2738, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 4 + }, + { + "label": "person mountain biking: dark skin tone", + "hexcode": "1F6B5-1F3FF", + "emoji": "๐Ÿšต๐Ÿฟ", + "text": "", + "type": 1, + "order": 2739, + "group": 1, + "subgroup": 28, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "man mountain biking", + "hexcode": "1F6B5-200D-2642-FE0F", + "tags": [ + "bicycle", + "bike", + "cyclist", + "man", + "mountain" + ], + "emoji": "๐Ÿšตโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2740, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man mountain biking: light skin tone", + "hexcode": "1F6B5-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿšต๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2742, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man mountain biking: medium-light skin tone", + "hexcode": "1F6B5-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿšต๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2744, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man mountain biking: medium skin tone", + "hexcode": "1F6B5-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿšต๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2746, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man mountain biking: medium-dark skin tone", + "hexcode": "1F6B5-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿšต๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2748, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man mountain biking: dark skin tone", + "hexcode": "1F6B5-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿšต๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2750, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman mountain biking", + "hexcode": "1F6B5-200D-2640-FE0F", + "tags": [ + "bicycle", + "bike", + "biking", + "cyclist", + "mountain", + "woman" + ], + "emoji": "๐Ÿšตโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2752, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman mountain biking: light skin tone", + "hexcode": "1F6B5-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿšต๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2754, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman mountain biking: medium-light skin tone", + "hexcode": "1F6B5-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿšต๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2756, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman mountain biking: medium skin tone", + "hexcode": "1F6B5-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿšต๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2758, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman mountain biking: medium-dark skin tone", + "hexcode": "1F6B5-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿšต๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2760, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman mountain biking: dark skin tone", + "hexcode": "1F6B5-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿšต๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2762, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person cartwheeling", + "hexcode": "1F938", + "tags": [ + "cartwheel", + "gymnastics" + ], + "emoji": "๐Ÿคธ", + "text": "", + "type": 1, + "order": 2764, + "group": 1, + "subgroup": 28, + "version": 3, + "skins": [ + { + "label": "person cartwheeling: light skin tone", + "hexcode": "1F938-1F3FB", + "emoji": "๐Ÿคธ๐Ÿป", + "text": "", + "type": 1, + "order": 2765, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 1 + }, + { + "label": "person cartwheeling: medium-light skin tone", + "hexcode": "1F938-1F3FC", + "emoji": "๐Ÿคธ๐Ÿผ", + "text": "", + "type": 1, + "order": 2766, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 2 + }, + { + "label": "person cartwheeling: medium skin tone", + "hexcode": "1F938-1F3FD", + "emoji": "๐Ÿคธ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2767, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 3 + }, + { + "label": "person cartwheeling: medium-dark skin tone", + "hexcode": "1F938-1F3FE", + "emoji": "๐Ÿคธ๐Ÿพ", + "text": "", + "type": 1, + "order": 2768, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 4 + }, + { + "label": "person cartwheeling: dark skin tone", + "hexcode": "1F938-1F3FF", + "emoji": "๐Ÿคธ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2769, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 5 + } + ] + }, + { + "label": "man cartwheeling", + "hexcode": "1F938-200D-2642-FE0F", + "tags": [ + "cartwheel", + "gymnastics", + "man" + ], + "emoji": "๐Ÿคธโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2770, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man cartwheeling: light skin tone", + "hexcode": "1F938-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿคธ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2772, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man cartwheeling: medium-light skin tone", + "hexcode": "1F938-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿคธ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2774, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man cartwheeling: medium skin tone", + "hexcode": "1F938-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿคธ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2776, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man cartwheeling: medium-dark skin tone", + "hexcode": "1F938-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿคธ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2778, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man cartwheeling: dark skin tone", + "hexcode": "1F938-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿคธ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2780, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman cartwheeling", + "hexcode": "1F938-200D-2640-FE0F", + "tags": [ + "cartwheel", + "gymnastics", + "woman" + ], + "emoji": "๐Ÿคธโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2782, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman cartwheeling: light skin tone", + "hexcode": "1F938-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿคธ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2784, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman cartwheeling: medium-light skin tone", + "hexcode": "1F938-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿคธ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2786, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman cartwheeling: medium skin tone", + "hexcode": "1F938-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿคธ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2788, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman cartwheeling: medium-dark skin tone", + "hexcode": "1F938-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿคธ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2790, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman cartwheeling: dark skin tone", + "hexcode": "1F938-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿคธ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2792, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "people wrestling", + "hexcode": "1F93C", + "tags": [ + "wrestle", + "wrestler" + ], + "emoji": "๐Ÿคผ", + "text": "", + "type": 1, + "order": 2794, + "group": 1, + "subgroup": 28, + "version": 3 + }, + { + "label": "men wrestling", + "hexcode": "1F93C-200D-2642-FE0F", + "tags": [ + "men", + "wrestle" + ], + "emoji": "๐Ÿคผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2795, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1 + }, + { + "label": "women wrestling", + "hexcode": "1F93C-200D-2640-FE0F", + "tags": [ + "women", + "wrestle" + ], + "emoji": "๐Ÿคผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2797, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0 + }, + { + "label": "person playing water polo", + "hexcode": "1F93D", + "tags": [ + "polo", + "water" + ], + "emoji": "๐Ÿคฝ", + "text": "", + "type": 1, + "order": 2799, + "group": 1, + "subgroup": 28, + "version": 3, + "skins": [ + { + "label": "person playing water polo: light skin tone", + "hexcode": "1F93D-1F3FB", + "emoji": "๐Ÿคฝ๐Ÿป", + "text": "", + "type": 1, + "order": 2800, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 1 + }, + { + "label": "person playing water polo: medium-light skin tone", + "hexcode": "1F93D-1F3FC", + "emoji": "๐Ÿคฝ๐Ÿผ", + "text": "", + "type": 1, + "order": 2801, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 2 + }, + { + "label": "person playing water polo: medium skin tone", + "hexcode": "1F93D-1F3FD", + "emoji": "๐Ÿคฝ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2802, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 3 + }, + { + "label": "person playing water polo: medium-dark skin tone", + "hexcode": "1F93D-1F3FE", + "emoji": "๐Ÿคฝ๐Ÿพ", + "text": "", + "type": 1, + "order": 2803, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 4 + }, + { + "label": "person playing water polo: dark skin tone", + "hexcode": "1F93D-1F3FF", + "emoji": "๐Ÿคฝ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2804, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 5 + } + ] + }, + { + "label": "man playing water polo", + "hexcode": "1F93D-200D-2642-FE0F", + "tags": [ + "man", + "water polo" + ], + "emoji": "๐Ÿคฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2805, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man playing water polo: light skin tone", + "hexcode": "1F93D-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿคฝ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2807, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man playing water polo: medium-light skin tone", + "hexcode": "1F93D-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿคฝ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2809, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man playing water polo: medium skin tone", + "hexcode": "1F93D-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿคฝ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2811, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man playing water polo: medium-dark skin tone", + "hexcode": "1F93D-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿคฝ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2813, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man playing water polo: dark skin tone", + "hexcode": "1F93D-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿคฝ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2815, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman playing water polo", + "hexcode": "1F93D-200D-2640-FE0F", + "tags": [ + "water polo", + "woman" + ], + "emoji": "๐Ÿคฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2817, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman playing water polo: light skin tone", + "hexcode": "1F93D-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿคฝ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2819, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman playing water polo: medium-light skin tone", + "hexcode": "1F93D-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿคฝ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2821, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman playing water polo: medium skin tone", + "hexcode": "1F93D-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿคฝ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2823, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman playing water polo: medium-dark skin tone", + "hexcode": "1F93D-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿคฝ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2825, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman playing water polo: dark skin tone", + "hexcode": "1F93D-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿคฝ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2827, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person playing handball", + "hexcode": "1F93E", + "tags": [ + "ball", + "handball" + ], + "emoji": "๐Ÿคพ", + "text": "", + "type": 1, + "order": 2829, + "group": 1, + "subgroup": 28, + "version": 3, + "skins": [ + { + "label": "person playing handball: light skin tone", + "hexcode": "1F93E-1F3FB", + "emoji": "๐Ÿคพ๐Ÿป", + "text": "", + "type": 1, + "order": 2830, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 1 + }, + { + "label": "person playing handball: medium-light skin tone", + "hexcode": "1F93E-1F3FC", + "emoji": "๐Ÿคพ๐Ÿผ", + "text": "", + "type": 1, + "order": 2831, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 2 + }, + { + "label": "person playing handball: medium skin tone", + "hexcode": "1F93E-1F3FD", + "emoji": "๐Ÿคพ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2832, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 3 + }, + { + "label": "person playing handball: medium-dark skin tone", + "hexcode": "1F93E-1F3FE", + "emoji": "๐Ÿคพ๐Ÿพ", + "text": "", + "type": 1, + "order": 2833, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 4 + }, + { + "label": "person playing handball: dark skin tone", + "hexcode": "1F93E-1F3FF", + "emoji": "๐Ÿคพ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2834, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 5 + } + ] + }, + { + "label": "man playing handball", + "hexcode": "1F93E-200D-2642-FE0F", + "tags": [ + "handball", + "man" + ], + "emoji": "๐Ÿคพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2835, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man playing handball: light skin tone", + "hexcode": "1F93E-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿคพ๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2837, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man playing handball: medium-light skin tone", + "hexcode": "1F93E-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿคพ๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2839, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man playing handball: medium skin tone", + "hexcode": "1F93E-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿคพ๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2841, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man playing handball: medium-dark skin tone", + "hexcode": "1F93E-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿคพ๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2843, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man playing handball: dark skin tone", + "hexcode": "1F93E-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿคพ๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2845, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman playing handball", + "hexcode": "1F93E-200D-2640-FE0F", + "tags": [ + "handball", + "woman" + ], + "emoji": "๐Ÿคพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2847, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman playing handball: light skin tone", + "hexcode": "1F93E-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿคพ๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2849, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman playing handball: medium-light skin tone", + "hexcode": "1F93E-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿคพ๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2851, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman playing handball: medium skin tone", + "hexcode": "1F93E-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿคพ๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2853, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman playing handball: medium-dark skin tone", + "hexcode": "1F93E-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿคพ๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2855, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman playing handball: dark skin tone", + "hexcode": "1F93E-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿคพ๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2857, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person juggling", + "hexcode": "1F939", + "tags": [ + "balance", + "juggle", + "multitask", + "skill" + ], + "emoji": "๐Ÿคน", + "text": "", + "type": 1, + "order": 2859, + "group": 1, + "subgroup": 28, + "version": 3, + "skins": [ + { + "label": "person juggling: light skin tone", + "hexcode": "1F939-1F3FB", + "emoji": "๐Ÿคน๐Ÿป", + "text": "", + "type": 1, + "order": 2860, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 1 + }, + { + "label": "person juggling: medium-light skin tone", + "hexcode": "1F939-1F3FC", + "emoji": "๐Ÿคน๐Ÿผ", + "text": "", + "type": 1, + "order": 2861, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 2 + }, + { + "label": "person juggling: medium skin tone", + "hexcode": "1F939-1F3FD", + "emoji": "๐Ÿคน๐Ÿฝ", + "text": "", + "type": 1, + "order": 2862, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 3 + }, + { + "label": "person juggling: medium-dark skin tone", + "hexcode": "1F939-1F3FE", + "emoji": "๐Ÿคน๐Ÿพ", + "text": "", + "type": 1, + "order": 2863, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 4 + }, + { + "label": "person juggling: dark skin tone", + "hexcode": "1F939-1F3FF", + "emoji": "๐Ÿคน๐Ÿฟ", + "text": "", + "type": 1, + "order": 2864, + "group": 1, + "subgroup": 28, + "version": 3, + "tone": 5 + } + ] + }, + { + "label": "man juggling", + "hexcode": "1F939-200D-2642-FE0F", + "tags": [ + "juggling", + "man", + "multitask" + ], + "emoji": "๐Ÿคนโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2865, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "skins": [ + { + "label": "man juggling: light skin tone", + "hexcode": "1F939-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿคน๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2867, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 1 + }, + { + "label": "man juggling: medium-light skin tone", + "hexcode": "1F939-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿคน๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2869, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 2 + }, + { + "label": "man juggling: medium skin tone", + "hexcode": "1F939-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿคน๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2871, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 3 + }, + { + "label": "man juggling: medium-dark skin tone", + "hexcode": "1F939-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿคน๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2873, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 4 + }, + { + "label": "man juggling: dark skin tone", + "hexcode": "1F939-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿคน๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2875, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman juggling", + "hexcode": "1F939-200D-2640-FE0F", + "tags": [ + "juggling", + "multitask", + "woman" + ], + "emoji": "๐Ÿคนโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2877, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "skins": [ + { + "label": "woman juggling: light skin tone", + "hexcode": "1F939-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿคน๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2879, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 1 + }, + { + "label": "woman juggling: medium-light skin tone", + "hexcode": "1F939-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿคน๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2881, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 2 + }, + { + "label": "woman juggling: medium skin tone", + "hexcode": "1F939-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿคน๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2883, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 3 + }, + { + "label": "woman juggling: medium-dark skin tone", + "hexcode": "1F939-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿคน๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2885, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 4 + }, + { + "label": "woman juggling: dark skin tone", + "hexcode": "1F939-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿคน๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2887, + "group": 1, + "subgroup": 28, + "version": 4, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person in lotus position", + "hexcode": "1F9D8", + "tags": [ + "meditation", + "yoga" + ], + "emoji": "๐Ÿง˜", + "text": "", + "type": 1, + "order": 2889, + "group": 1, + "subgroup": 29, + "version": 5, + "skins": [ + { + "label": "person in lotus position: light skin tone", + "hexcode": "1F9D8-1F3FB", + "emoji": "๐Ÿง˜๐Ÿป", + "text": "", + "type": 1, + "order": 2890, + "group": 1, + "subgroup": 29, + "version": 5, + "tone": 1 + }, + { + "label": "person in lotus position: medium-light skin tone", + "hexcode": "1F9D8-1F3FC", + "emoji": "๐Ÿง˜๐Ÿผ", + "text": "", + "type": 1, + "order": 2891, + "group": 1, + "subgroup": 29, + "version": 5, + "tone": 2 + }, + { + "label": "person in lotus position: medium skin tone", + "hexcode": "1F9D8-1F3FD", + "emoji": "๐Ÿง˜๐Ÿฝ", + "text": "", + "type": 1, + "order": 2892, + "group": 1, + "subgroup": 29, + "version": 5, + "tone": 3 + }, + { + "label": "person in lotus position: medium-dark skin tone", + "hexcode": "1F9D8-1F3FE", + "emoji": "๐Ÿง˜๐Ÿพ", + "text": "", + "type": 1, + "order": 2893, + "group": 1, + "subgroup": 29, + "version": 5, + "tone": 4 + }, + { + "label": "person in lotus position: dark skin tone", + "hexcode": "1F9D8-1F3FF", + "emoji": "๐Ÿง˜๐Ÿฟ", + "text": "", + "type": 1, + "order": 2894, + "group": 1, + "subgroup": 29, + "version": 5, + "tone": 5 + } + ] + }, + { + "label": "man in lotus position", + "hexcode": "1F9D8-200D-2642-FE0F", + "tags": [ + "meditation", + "yoga" + ], + "emoji": "๐Ÿง˜โ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2895, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 1, + "skins": [ + { + "label": "man in lotus position: light skin tone", + "hexcode": "1F9D8-1F3FB-200D-2642-FE0F", + "emoji": "๐Ÿง˜๐Ÿปโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2897, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 1, + "tone": 1 + }, + { + "label": "man in lotus position: medium-light skin tone", + "hexcode": "1F9D8-1F3FC-200D-2642-FE0F", + "emoji": "๐Ÿง˜๐Ÿผโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2899, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 1, + "tone": 2 + }, + { + "label": "man in lotus position: medium skin tone", + "hexcode": "1F9D8-1F3FD-200D-2642-FE0F", + "emoji": "๐Ÿง˜๐Ÿฝโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2901, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 1, + "tone": 3 + }, + { + "label": "man in lotus position: medium-dark skin tone", + "hexcode": "1F9D8-1F3FE-200D-2642-FE0F", + "emoji": "๐Ÿง˜๐Ÿพโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2903, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 1, + "tone": 4 + }, + { + "label": "man in lotus position: dark skin tone", + "hexcode": "1F9D8-1F3FF-200D-2642-FE0F", + "emoji": "๐Ÿง˜๐Ÿฟโ€โ™‚๏ธ", + "text": "", + "type": 1, + "order": 2905, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 1, + "tone": 5 + } + ] + }, + { + "label": "woman in lotus position", + "hexcode": "1F9D8-200D-2640-FE0F", + "tags": [ + "meditation", + "yoga" + ], + "emoji": "๐Ÿง˜โ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2907, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 0, + "skins": [ + { + "label": "woman in lotus position: light skin tone", + "hexcode": "1F9D8-1F3FB-200D-2640-FE0F", + "emoji": "๐Ÿง˜๐Ÿปโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2909, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 0, + "tone": 1 + }, + { + "label": "woman in lotus position: medium-light skin tone", + "hexcode": "1F9D8-1F3FC-200D-2640-FE0F", + "emoji": "๐Ÿง˜๐Ÿผโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2911, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 0, + "tone": 2 + }, + { + "label": "woman in lotus position: medium skin tone", + "hexcode": "1F9D8-1F3FD-200D-2640-FE0F", + "emoji": "๐Ÿง˜๐Ÿฝโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2913, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 0, + "tone": 3 + }, + { + "label": "woman in lotus position: medium-dark skin tone", + "hexcode": "1F9D8-1F3FE-200D-2640-FE0F", + "emoji": "๐Ÿง˜๐Ÿพโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2915, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 0, + "tone": 4 + }, + { + "label": "woman in lotus position: dark skin tone", + "hexcode": "1F9D8-1F3FF-200D-2640-FE0F", + "emoji": "๐Ÿง˜๐Ÿฟโ€โ™€๏ธ", + "text": "", + "type": 1, + "order": 2917, + "group": 1, + "subgroup": 29, + "version": 5, + "gender": 0, + "tone": 5 + } + ] + }, + { + "label": "person taking bath", + "hexcode": "1F6C0", + "tags": [ + "bath", + "bathtub" + ], + "emoji": "๐Ÿ›€", + "text": "", + "type": 1, + "order": 2919, + "group": 1, + "subgroup": 29, + "version": 0.6, + "skins": [ + { + "label": "person taking bath: light skin tone", + "hexcode": "1F6C0-1F3FB", + "emoji": "๐Ÿ›€๐Ÿป", + "text": "", + "type": 1, + "order": 2920, + "group": 1, + "subgroup": 29, + "version": 1, + "tone": 1 + }, + { + "label": "person taking bath: medium-light skin tone", + "hexcode": "1F6C0-1F3FC", + "emoji": "๐Ÿ›€๐Ÿผ", + "text": "", + "type": 1, + "order": 2921, + "group": 1, + "subgroup": 29, + "version": 1, + "tone": 2 + }, + { + "label": "person taking bath: medium skin tone", + "hexcode": "1F6C0-1F3FD", + "emoji": "๐Ÿ›€๐Ÿฝ", + "text": "", + "type": 1, + "order": 2922, + "group": 1, + "subgroup": 29, + "version": 1, + "tone": 3 + }, + { + "label": "person taking bath: medium-dark skin tone", + "hexcode": "1F6C0-1F3FE", + "emoji": "๐Ÿ›€๐Ÿพ", + "text": "", + "type": 1, + "order": 2923, + "group": 1, + "subgroup": 29, + "version": 1, + "tone": 4 + }, + { + "label": "person taking bath: dark skin tone", + "hexcode": "1F6C0-1F3FF", + "emoji": "๐Ÿ›€๐Ÿฟ", + "text": "", + "type": 1, + "order": 2924, + "group": 1, + "subgroup": 29, + "version": 1, + "tone": 5 + } + ] + }, + { + "label": "person in bed", + "hexcode": "1F6CC", + "tags": [ + "good night", + "hotel", + "sleep" + ], + "emoji": "๐Ÿ›Œ", + "text": "", + "type": 1, + "order": 2925, + "group": 1, + "subgroup": 29, + "version": 1, + "skins": [ + { + "label": "person in bed: light skin tone", + "hexcode": "1F6CC-1F3FB", + "emoji": "๐Ÿ›Œ๐Ÿป", + "text": "", + "type": 1, + "order": 2926, + "group": 1, + "subgroup": 29, + "version": 4, + "tone": 1 + }, + { + "label": "person in bed: medium-light skin tone", + "hexcode": "1F6CC-1F3FC", + "emoji": "๐Ÿ›Œ๐Ÿผ", + "text": "", + "type": 1, + "order": 2927, + "group": 1, + "subgroup": 29, + "version": 4, + "tone": 2 + }, + { + "label": "person in bed: medium skin tone", + "hexcode": "1F6CC-1F3FD", + "emoji": "๐Ÿ›Œ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2928, + "group": 1, + "subgroup": 29, + "version": 4, + "tone": 3 + }, + { + "label": "person in bed: medium-dark skin tone", + "hexcode": "1F6CC-1F3FE", + "emoji": "๐Ÿ›Œ๐Ÿพ", + "text": "", + "type": 1, + "order": 2929, + "group": 1, + "subgroup": 29, + "version": 4, + "tone": 4 + }, + { + "label": "person in bed: dark skin tone", + "hexcode": "1F6CC-1F3FF", + "emoji": "๐Ÿ›Œ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2930, + "group": 1, + "subgroup": 29, + "version": 4, + "tone": 5 + } + ] + }, + { + "label": "people holding hands", + "hexcode": "1F9D1-200D-1F91D-200D-1F9D1", + "tags": [ + "couple", + "hand", + "hold", + "holding hands", + "person" + ], + "emoji": "๐Ÿง‘โ€๐Ÿคโ€๐Ÿง‘", + "text": "", + "type": 1, + "order": 2931, + "group": 1, + "subgroup": 30, + "version": 12, + "skins": [ + { + "label": "people holding hands: light skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 2932, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 1 + }, + { + "label": "people holding hands: light skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 2933, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "people holding hands: light skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 2934, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "people holding hands: light skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 2935, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "people holding hands: light skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FB-200D-1F91D-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿปโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 2936, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "people holding hands: medium-light skin tone, light skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 2937, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 1 + ] + }, + { + "label": "people holding hands: medium-light skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 2938, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 2 + }, + { + "label": "people holding hands: medium-light skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 2939, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "people holding hands: medium-light skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 2940, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "people holding hands: medium-light skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FC-200D-1F91D-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿผโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 2941, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "people holding hands: medium skin tone, light skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 2942, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 1 + ] + }, + { + "label": "people holding hands: medium skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 2943, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 2 + ] + }, + { + "label": "people holding hands: medium skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 2944, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 3 + }, + { + "label": "people holding hands: medium skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 2945, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "people holding hands: medium skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FD-200D-1F91D-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿฝโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 2946, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "people holding hands: medium-dark skin tone, light skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 2947, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 1 + ] + }, + { + "label": "people holding hands: medium-dark skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 2948, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 2 + ] + }, + { + "label": "people holding hands: medium-dark skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 2949, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 3 + ] + }, + { + "label": "people holding hands: medium-dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 2950, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 4 + }, + { + "label": "people holding hands: medium-dark skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-1F91D-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿพโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 2951, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "people holding hands: dark skin tone, light skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 2952, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 1 + ] + }, + { + "label": "people holding hands: dark skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 2953, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 2 + ] + }, + { + "label": "people holding hands: dark skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 2954, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 3 + ] + }, + { + "label": "people holding hands: dark skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 2955, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 4 + ] + }, + { + "label": "people holding hands: dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-1F91D-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿฟโ€๐Ÿคโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 2956, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 5 + } + ] + }, + { + "label": "women holding hands", + "hexcode": "1F46D", + "tags": [ + "couple", + "hand", + "holding hands", + "women" + ], + "emoji": "๐Ÿ‘ญ", + "text": "", + "type": 1, + "order": 2957, + "group": 1, + "subgroup": 30, + "version": 1, + "skins": [ + { + "label": "women holding hands: light skin tone", + "hexcode": "1F46D-1F3FB", + "emoji": "๐Ÿ‘ญ๐Ÿป", + "text": "", + "type": 1, + "order": 2958, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 1 + }, + { + "label": "women holding hands: medium-light skin tone", + "hexcode": "1F46D-1F3FC", + "emoji": "๐Ÿ‘ญ๐Ÿผ", + "text": "", + "type": 1, + "order": 2964, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 2 + }, + { + "label": "women holding hands: medium skin tone", + "hexcode": "1F46D-1F3FD", + "emoji": "๐Ÿ‘ญ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2970, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 3 + }, + { + "label": "women holding hands: medium-dark skin tone", + "hexcode": "1F46D-1F3FE", + "emoji": "๐Ÿ‘ญ๐Ÿพ", + "text": "", + "type": 1, + "order": 2976, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 4 + }, + { + "label": "women holding hands: dark skin tone", + "hexcode": "1F46D-1F3FF", + "emoji": "๐Ÿ‘ญ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2982, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 5 + }, + { + "label": "women holding hands: light skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 2959, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "women holding hands: light skin tone, medium skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2960, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "women holding hands: light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 2961, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "women holding hands: light skin tone, dark skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2962, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "women holding hands: medium-light skin tone, light skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 2963, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 1 + ] + }, + { + "label": "women holding hands: medium-light skin tone, medium skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2965, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "women holding hands: medium-light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 2966, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "women holding hands: medium-light skin tone, dark skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2967, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "women holding hands: medium skin tone, light skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 2968, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 1 + ] + }, + { + "label": "women holding hands: medium skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 2969, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 2 + ] + }, + { + "label": "women holding hands: medium skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 2971, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "women holding hands: medium skin tone, dark skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2972, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "women holding hands: medium-dark skin tone, light skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 2973, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 1 + ] + }, + { + "label": "women holding hands: medium-dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 2974, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 2 + ] + }, + { + "label": "women holding hands: medium-dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2975, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 3 + ] + }, + { + "label": "women holding hands: medium-dark skin tone, dark skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2977, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "women holding hands: dark skin tone, light skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 2978, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 1 + ] + }, + { + "label": "women holding hands: dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 2979, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 2 + ] + }, + { + "label": "women holding hands: dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2980, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 3 + ] + }, + { + "label": "women holding hands: dark skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 2981, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 4 + ] + } + ] + }, + { + "label": "woman and man holding hands", + "hexcode": "1F46B", + "tags": [ + "couple", + "hand", + "hold", + "holding hands", + "man", + "woman" + ], + "emoji": "๐Ÿ‘ซ", + "text": "", + "type": 1, + "order": 2983, + "group": 1, + "subgroup": 30, + "version": 0.6, + "skins": [ + { + "label": "woman and man holding hands: light skin tone", + "hexcode": "1F46B-1F3FB", + "emoji": "๐Ÿ‘ซ๐Ÿป", + "text": "", + "type": 1, + "order": 2984, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 1 + }, + { + "label": "woman and man holding hands: medium-light skin tone", + "hexcode": "1F46B-1F3FC", + "emoji": "๐Ÿ‘ซ๐Ÿผ", + "text": "", + "type": 1, + "order": 2990, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 2 + }, + { + "label": "woman and man holding hands: medium skin tone", + "hexcode": "1F46B-1F3FD", + "emoji": "๐Ÿ‘ซ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2996, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 3 + }, + { + "label": "woman and man holding hands: medium-dark skin tone", + "hexcode": "1F46B-1F3FE", + "emoji": "๐Ÿ‘ซ๐Ÿพ", + "text": "", + "type": 1, + "order": 3002, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 4 + }, + { + "label": "woman and man holding hands: dark skin tone", + "hexcode": "1F46B-1F3FF", + "emoji": "๐Ÿ‘ซ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3008, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 5 + }, + { + "label": "woman and man holding hands: light skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 2985, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 1, + 2 + ] + }, + { + "label": "woman and man holding hands: light skin tone, medium skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2986, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 1, + 3 + ] + }, + { + "label": "woman and man holding hands: light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 2987, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 1, + 4 + ] + }, + { + "label": "woman and man holding hands: light skin tone, dark skin tone", + "hexcode": "1F469-1F3FB-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2988, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 1, + 5 + ] + }, + { + "label": "woman and man holding hands: medium-light skin tone, light skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 2989, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 1 + ] + }, + { + "label": "woman and man holding hands: medium-light skin tone, medium skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 2991, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 3 + ] + }, + { + "label": "woman and man holding hands: medium-light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 2992, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 4 + ] + }, + { + "label": "woman and man holding hands: medium-light skin tone, dark skin tone", + "hexcode": "1F469-1F3FC-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2993, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 5 + ] + }, + { + "label": "woman and man holding hands: medium skin tone, light skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 2994, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 1 + ] + }, + { + "label": "woman and man holding hands: medium skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 2995, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 2 + ] + }, + { + "label": "woman and man holding hands: medium skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 2997, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 4 + ] + }, + { + "label": "woman and man holding hands: medium skin tone, dark skin tone", + "hexcode": "1F469-1F3FD-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 2998, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 5 + ] + }, + { + "label": "woman and man holding hands: medium-dark skin tone, light skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 2999, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 1 + ] + }, + { + "label": "woman and man holding hands: medium-dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3000, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 2 + ] + }, + { + "label": "woman and man holding hands: medium-dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3001, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 3 + ] + }, + { + "label": "woman and man holding hands: medium-dark skin tone, dark skin tone", + "hexcode": "1F469-1F3FE-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3003, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 5 + ] + }, + { + "label": "woman and man holding hands: dark skin tone, light skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3004, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 1 + ] + }, + { + "label": "woman and man holding hands: dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3005, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 2 + ] + }, + { + "label": "woman and man holding hands: dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3006, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 3 + ] + }, + { + "label": "woman and man holding hands: dark skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FF-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3007, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 4 + ] + } + ] + }, + { + "label": "men holding hands", + "hexcode": "1F46C", + "tags": [ + "couple", + "gemini", + "holding hands", + "man", + "men", + "twins", + "zodiac" + ], + "emoji": "๐Ÿ‘ฌ", + "text": "", + "type": 1, + "order": 3009, + "group": 1, + "subgroup": 30, + "version": 1, + "skins": [ + { + "label": "men holding hands: light skin tone", + "hexcode": "1F46C-1F3FB", + "emoji": "๐Ÿ‘ฌ๐Ÿป", + "text": "", + "type": 1, + "order": 3010, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 1 + }, + { + "label": "men holding hands: medium-light skin tone", + "hexcode": "1F46C-1F3FC", + "emoji": "๐Ÿ‘ฌ๐Ÿผ", + "text": "", + "type": 1, + "order": 3016, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 2 + }, + { + "label": "men holding hands: medium skin tone", + "hexcode": "1F46C-1F3FD", + "emoji": "๐Ÿ‘ฌ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3022, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 3 + }, + { + "label": "men holding hands: medium-dark skin tone", + "hexcode": "1F46C-1F3FE", + "emoji": "๐Ÿ‘ฌ๐Ÿพ", + "text": "", + "type": 1, + "order": 3028, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 4 + }, + { + "label": "men holding hands: dark skin tone", + "hexcode": "1F46C-1F3FF", + "emoji": "๐Ÿ‘ฌ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3034, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": 5 + }, + { + "label": "men holding hands: light skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3011, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "men holding hands: light skin tone, medium skin tone", + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3012, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "men holding hands: light skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3013, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "men holding hands: light skin tone, dark skin tone", + "hexcode": "1F468-1F3FB-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿปโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3014, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "men holding hands: medium-light skin tone, light skin tone", + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3015, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 2, + 1 + ] + }, + { + "label": "men holding hands: medium-light skin tone, medium skin tone", + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3017, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "men holding hands: medium-light skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3018, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "men holding hands: medium-light skin tone, dark skin tone", + "hexcode": "1F468-1F3FC-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿผโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3019, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "men holding hands: medium skin tone, light skin tone", + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3020, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 1 + ] + }, + { + "label": "men holding hands: medium skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3021, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 3, + 2 + ] + }, + { + "label": "men holding hands: medium skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3023, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "men holding hands: medium skin tone, dark skin tone", + "hexcode": "1F468-1F3FD-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3024, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "men holding hands: medium-dark skin tone, light skin tone", + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3025, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 1 + ] + }, + { + "label": "men holding hands: medium-dark skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3026, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 2 + ] + }, + { + "label": "men holding hands: medium-dark skin tone, medium skin tone", + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3027, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 4, + 3 + ] + }, + { + "label": "men holding hands: medium-dark skin tone, dark skin tone", + "hexcode": "1F468-1F3FE-200D-1F91D-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿพโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3029, + "group": 1, + "subgroup": 30, + "version": 12.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "men holding hands: dark skin tone, light skin tone", + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3030, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 1 + ] + }, + { + "label": "men holding hands: dark skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3031, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 2 + ] + }, + { + "label": "men holding hands: dark skin tone, medium skin tone", + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3032, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 3 + ] + }, + { + "label": "men holding hands: dark skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FF-200D-1F91D-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€๐Ÿคโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3033, + "group": 1, + "subgroup": 30, + "version": 12, + "tone": [ + 5, + 4 + ] + } + ] + }, + { + "label": "kiss", + "hexcode": "1F48F", + "tags": [ + "couple" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 3035, + "group": 1, + "subgroup": 30, + "version": 0.6, + "skins": [ + { + "label": "kiss: light skin tone", + "hexcode": "1F48F-1F3FB", + "emoji": "๐Ÿ’๐Ÿป", + "text": "", + "type": 1, + "order": 3036, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "kiss: medium-light skin tone", + "hexcode": "1F48F-1F3FC", + "emoji": "๐Ÿ’๐Ÿผ", + "text": "", + "type": 1, + "order": 3037, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "kiss: medium skin tone", + "hexcode": "1F48F-1F3FD", + "emoji": "๐Ÿ’๐Ÿฝ", + "text": "", + "type": 1, + "order": 3038, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "kiss: medium-dark skin tone", + "hexcode": "1F48F-1F3FE", + "emoji": "๐Ÿ’๐Ÿพ", + "text": "", + "type": 1, + "order": 3039, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "kiss: dark skin tone", + "hexcode": "1F48F-1F3FF", + "emoji": "๐Ÿ’๐Ÿฟ", + "text": "", + "type": 1, + "order": 3040, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + }, + { + "label": "kiss: person, person, light skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3041, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "kiss: person, person, light skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3043, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "kiss: person, person, light skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3045, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "kiss: person, person, light skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3047, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "kiss: person, person, medium-light skin tone, light skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3049, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "kiss: person, person, medium-light skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3051, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "kiss: person, person, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3053, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "kiss: person, person, medium-light skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3055, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "kiss: person, person, medium skin tone, light skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3057, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "kiss: person, person, medium skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3059, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "kiss: person, person, medium skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3061, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "kiss: person, person, medium skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3063, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "kiss: person, person, medium-dark skin tone, light skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3065, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "kiss: person, person, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3067, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "kiss: person, person, medium-dark skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3069, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "kiss: person, person, medium-dark skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3071, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "kiss: person, person, dark skin tone, light skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3073, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "kiss: person, person, dark skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3075, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "kiss: person, person, dark skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3077, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "kiss: person, person, dark skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3079, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + } + ] + }, + { + "label": "kiss: woman, man", + "hexcode": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", + "tags": [ + "couple", + "kiss", + "man", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", + "text": "", + "type": 1, + "order": 3081, + "group": 1, + "subgroup": 30, + "version": 2, + "skins": [ + { + "label": "kiss: woman, man, light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3083, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "kiss: woman, man, light skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3085, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "kiss: woman, man, light skin tone, medium skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3087, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "kiss: woman, man, light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3089, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "kiss: woman, man, light skin tone, dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3091, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "kiss: woman, man, medium-light skin tone, light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3093, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "kiss: woman, man, medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3095, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "kiss: woman, man, medium-light skin tone, medium skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3097, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "kiss: woman, man, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3099, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "kiss: woman, man, medium-light skin tone, dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3101, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "kiss: woman, man, medium skin tone, light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3103, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "kiss: woman, man, medium skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3105, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "kiss: woman, man, medium skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3107, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "kiss: woman, man, medium skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3109, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "kiss: woman, man, medium skin tone, dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3111, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "kiss: woman, man, medium-dark skin tone, light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3113, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "kiss: woman, man, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3115, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "kiss: woman, man, medium-dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3117, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "kiss: woman, man, medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3119, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "kiss: woman, man, medium-dark skin tone, dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3121, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "kiss: woman, man, dark skin tone, light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3123, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "kiss: woman, man, dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3125, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "kiss: woman, man, dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3127, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "kiss: woman, man, dark skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3129, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + }, + { + "label": "kiss: woman, man, dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3131, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + } + ] + }, + { + "label": "kiss: man, man", + "hexcode": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", + "tags": [ + "couple", + "kiss", + "man" + ], + "emoji": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ", + "text": "", + "type": 1, + "order": 3133, + "group": 1, + "subgroup": 30, + "version": 2, + "skins": [ + { + "label": "kiss: man, man, light skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3135, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "kiss: man, man, light skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3137, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "kiss: man, man, light skin tone, medium skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3139, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "kiss: man, man, light skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3141, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "kiss: man, man, light skin tone, dark skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3143, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "kiss: man, man, medium-light skin tone, light skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3145, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "kiss: man, man, medium-light skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3147, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "kiss: man, man, medium-light skin tone, medium skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3149, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "kiss: man, man, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3151, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "kiss: man, man, medium-light skin tone, dark skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3153, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "kiss: man, man, medium skin tone, light skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3155, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "kiss: man, man, medium skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3157, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "kiss: man, man, medium skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3159, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "kiss: man, man, medium skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3161, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "kiss: man, man, medium skin tone, dark skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3163, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "kiss: man, man, medium-dark skin tone, light skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3165, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "kiss: man, man, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3167, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "kiss: man, man, medium-dark skin tone, medium skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3169, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "kiss: man, man, medium-dark skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3171, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "kiss: man, man, medium-dark skin tone, dark skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3173, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "kiss: man, man, dark skin tone, light skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3175, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "kiss: man, man, dark skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3177, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "kiss: man, man, dark skin tone, medium skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3179, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "kiss: man, man, dark skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3181, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + }, + { + "label": "kiss: man, man, dark skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3183, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + } + ] + }, + { + "label": "kiss: woman, woman", + "hexcode": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", + "tags": [ + "couple", + "kiss", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ", + "text": "", + "type": 1, + "order": 3185, + "group": 1, + "subgroup": 30, + "version": 2, + "skins": [ + { + "label": "kiss: woman, woman, light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3187, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "kiss: woman, woman, light skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3189, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "kiss: woman, woman, light skin tone, medium skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3191, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "kiss: woman, woman, light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3193, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "kiss: woman, woman, light skin tone, dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3195, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "kiss: woman, woman, medium-light skin tone, light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3197, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "kiss: woman, woman, medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3199, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "kiss: woman, woman, medium-light skin tone, medium skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3201, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "kiss: woman, woman, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3203, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "kiss: woman, woman, medium-light skin tone, dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3205, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "kiss: woman, woman, medium skin tone, light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3207, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "kiss: woman, woman, medium skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3209, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "kiss: woman, woman, medium skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3211, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "kiss: woman, woman, medium skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3213, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "kiss: woman, woman, medium skin tone, dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3215, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "kiss: woman, woman, medium-dark skin tone, light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3217, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "kiss: woman, woman, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3219, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "kiss: woman, woman, medium-dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3221, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "kiss: woman, woman, medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3223, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "kiss: woman, woman, medium-dark skin tone, dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3225, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "kiss: woman, woman, dark skin tone, light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3227, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "kiss: woman, woman, dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3229, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "kiss: woman, woman, dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3231, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "kiss: woman, woman, dark skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3233, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + }, + { + "label": "kiss: woman, woman, dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F48B-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ’‹โ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3235, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + } + ] + }, + { + "label": "couple with heart", + "hexcode": "1F491", + "tags": [ + "couple", + "love" + ], + "emoji": "๐Ÿ’‘", + "text": "", + "type": 1, + "order": 3237, + "group": 1, + "subgroup": 30, + "version": 0.6, + "skins": [ + { + "label": "couple with heart: light skin tone", + "hexcode": "1F491-1F3FB", + "emoji": "๐Ÿ’‘๐Ÿป", + "text": "", + "type": 1, + "order": 3238, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "couple with heart: medium-light skin tone", + "hexcode": "1F491-1F3FC", + "emoji": "๐Ÿ’‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3239, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "couple with heart: medium skin tone", + "hexcode": "1F491-1F3FD", + "emoji": "๐Ÿ’‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3240, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "couple with heart: medium-dark skin tone", + "hexcode": "1F491-1F3FE", + "emoji": "๐Ÿ’‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3241, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "couple with heart: dark skin tone", + "hexcode": "1F491-1F3FF", + "emoji": "๐Ÿ’‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3242, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + }, + { + "label": "couple with heart: person, person, light skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3243, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "couple with heart: person, person, light skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3245, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "couple with heart: person, person, light skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3247, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "couple with heart: person, person, light skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FB-200D-2764-FE0F-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿปโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3249, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "couple with heart: person, person, medium-light skin tone, light skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3251, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "couple with heart: person, person, medium-light skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3253, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "couple with heart: person, person, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3255, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "couple with heart: person, person, medium-light skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FC-200D-2764-FE0F-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿผโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3257, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "couple with heart: person, person, medium skin tone, light skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3259, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "couple with heart: person, person, medium skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3261, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "couple with heart: person, person, medium skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3263, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "couple with heart: person, person, medium skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FD-200D-2764-FE0F-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿฝโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3265, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "couple with heart: person, person, medium-dark skin tone, light skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3267, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "couple with heart: person, person, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3269, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "couple with heart: person, person, medium-dark skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3271, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "couple with heart: person, person, medium-dark skin tone, dark skin tone", + "hexcode": "1F9D1-1F3FE-200D-2764-FE0F-200D-1F9D1-1F3FF", + "emoji": "๐Ÿง‘๐Ÿพโ€โค๏ธโ€๐Ÿง‘๐Ÿฟ", + "text": "", + "type": 1, + "order": 3273, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "couple with heart: person, person, dark skin tone, light skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FB", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿป", + "text": "", + "type": 1, + "order": 3275, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "couple with heart: person, person, dark skin tone, medium-light skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FC", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿผ", + "text": "", + "type": 1, + "order": 3277, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "couple with heart: person, person, dark skin tone, medium skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FD", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿฝ", + "text": "", + "type": 1, + "order": 3279, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "couple with heart: person, person, dark skin tone, medium-dark skin tone", + "hexcode": "1F9D1-1F3FF-200D-2764-FE0F-200D-1F9D1-1F3FE", + "emoji": "๐Ÿง‘๐Ÿฟโ€โค๏ธโ€๐Ÿง‘๐Ÿพ", + "text": "", + "type": 1, + "order": 3281, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + } + ] + }, + { + "label": "couple with heart: woman, man", + "hexcode": "1F469-200D-2764-FE0F-200D-1F468", + "tags": [ + "couple", + "couple with heart", + "love", + "man", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘จ", + "text": "", + "type": 1, + "order": 3283, + "group": 1, + "subgroup": 30, + "version": 2, + "skins": [ + { + "label": "couple with heart: woman, man, light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3285, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "couple with heart: woman, man, light skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3287, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "couple with heart: woman, man, light skin tone, medium skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3289, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "couple with heart: woman, man, light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3291, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "couple with heart: woman, man, light skin tone, dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3293, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "couple with heart: woman, man, medium-light skin tone, light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3295, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "couple with heart: woman, man, medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3297, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "couple with heart: woman, man, medium-light skin tone, medium skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3299, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "couple with heart: woman, man, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3301, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "couple with heart: woman, man, medium-light skin tone, dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3303, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "couple with heart: woman, man, medium skin tone, light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3305, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "couple with heart: woman, man, medium skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3307, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "couple with heart: woman, man, medium skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3309, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "couple with heart: woman, man, medium skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3311, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "couple with heart: woman, man, medium skin tone, dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3313, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "couple with heart: woman, man, medium-dark skin tone, light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3315, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "couple with heart: woman, man, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3317, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "couple with heart: woman, man, medium-dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3319, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "couple with heart: woman, man, medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3321, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "couple with heart: woman, man, medium-dark skin tone, dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3323, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "couple with heart: woman, man, dark skin tone, light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3325, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "couple with heart: woman, man, dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3327, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "couple with heart: woman, man, dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3329, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "couple with heart: woman, man, dark skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3331, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + }, + { + "label": "couple with heart: woman, man, dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3333, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + } + ] + }, + { + "label": "couple with heart: man, man", + "hexcode": "1F468-200D-2764-FE0F-200D-1F468", + "tags": [ + "couple", + "couple with heart", + "love", + "man" + ], + "emoji": "๐Ÿ‘จโ€โค๏ธโ€๐Ÿ‘จ", + "text": "", + "type": 1, + "order": 3335, + "group": 1, + "subgroup": 30, + "version": 2, + "skins": [ + { + "label": "couple with heart: man, man, light skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3337, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "couple with heart: man, man, light skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3339, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "couple with heart: man, man, light skin tone, medium skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3341, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "couple with heart: man, man, light skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3343, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "couple with heart: man, man, light skin tone, dark skin tone", + "hexcode": "1F468-1F3FB-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿปโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3345, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "couple with heart: man, man, medium-light skin tone, light skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3347, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "couple with heart: man, man, medium-light skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3349, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "couple with heart: man, man, medium-light skin tone, medium skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3351, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "couple with heart: man, man, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3353, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "couple with heart: man, man, medium-light skin tone, dark skin tone", + "hexcode": "1F468-1F3FC-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿผโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3355, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "couple with heart: man, man, medium skin tone, light skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3357, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "couple with heart: man, man, medium skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3359, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "couple with heart: man, man, medium skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3361, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "couple with heart: man, man, medium skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3363, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "couple with heart: man, man, medium skin tone, dark skin tone", + "hexcode": "1F468-1F3FD-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3365, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "couple with heart: man, man, medium-dark skin tone, light skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3367, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "couple with heart: man, man, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3369, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "couple with heart: man, man, medium-dark skin tone, medium skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3371, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "couple with heart: man, man, medium-dark skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3373, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "couple with heart: man, man, medium-dark skin tone, dark skin tone", + "hexcode": "1F468-1F3FE-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿพโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3375, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "couple with heart: man, man, dark skin tone, light skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FB", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿป", + "text": "", + "type": 1, + "order": 3377, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "couple with heart: man, man, dark skin tone, medium-light skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FC", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿผ", + "text": "", + "type": 1, + "order": 3379, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "couple with heart: man, man, dark skin tone, medium skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FD", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3381, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "couple with heart: man, man, dark skin tone, medium-dark skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FE", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿพ", + "text": "", + "type": 1, + "order": 3383, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + }, + { + "label": "couple with heart: man, man, dark skin tone", + "hexcode": "1F468-1F3FF-200D-2764-FE0F-200D-1F468-1F3FF", + "emoji": "๐Ÿ‘จ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘จ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3385, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + } + ] + }, + { + "label": "couple with heart: woman, woman", + "hexcode": "1F469-200D-2764-FE0F-200D-1F469", + "tags": [ + "couple", + "couple with heart", + "love", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€โค๏ธโ€๐Ÿ‘ฉ", + "text": "", + "type": 1, + "order": 3387, + "group": 1, + "subgroup": 30, + "version": 2, + "skins": [ + { + "label": "couple with heart: woman, woman, light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3389, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 1 + }, + { + "label": "couple with heart: woman, woman, light skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3391, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 2 + ] + }, + { + "label": "couple with heart: woman, woman, light skin tone, medium skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3393, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 3 + ] + }, + { + "label": "couple with heart: woman, woman, light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3395, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 4 + ] + }, + { + "label": "couple with heart: woman, woman, light skin tone, dark skin tone", + "hexcode": "1F469-1F3FB-200D-2764-FE0F-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿปโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3397, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 1, + 5 + ] + }, + { + "label": "couple with heart: woman, woman, medium-light skin tone, light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3399, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 1 + ] + }, + { + "label": "couple with heart: woman, woman, medium-light skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3401, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 2 + }, + { + "label": "couple with heart: woman, woman, medium-light skin tone, medium skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3403, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 3 + ] + }, + { + "label": "couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3405, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 4 + ] + }, + { + "label": "couple with heart: woman, woman, medium-light skin tone, dark skin tone", + "hexcode": "1F469-1F3FC-200D-2764-FE0F-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿผโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3407, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 2, + 5 + ] + }, + { + "label": "couple with heart: woman, woman, medium skin tone, light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3409, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 1 + ] + }, + { + "label": "couple with heart: woman, woman, medium skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3411, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 2 + ] + }, + { + "label": "couple with heart: woman, woman, medium skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3413, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 3 + }, + { + "label": "couple with heart: woman, woman, medium skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3415, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 4 + ] + }, + { + "label": "couple with heart: woman, woman, medium skin tone, dark skin tone", + "hexcode": "1F469-1F3FD-200D-2764-FE0F-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฝโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3417, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 3, + 5 + ] + }, + { + "label": "couple with heart: woman, woman, medium-dark skin tone, light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3419, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 1 + ] + }, + { + "label": "couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3421, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 2 + ] + }, + { + "label": "couple with heart: woman, woman, medium-dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3423, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 3 + ] + }, + { + "label": "couple with heart: woman, woman, medium-dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3425, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 4 + }, + { + "label": "couple with heart: woman, woman, medium-dark skin tone, dark skin tone", + "hexcode": "1F469-1F3FE-200D-2764-FE0F-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿพโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3427, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 4, + 5 + ] + }, + { + "label": "couple with heart: woman, woman, dark skin tone, light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FB", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿป", + "text": "", + "type": 1, + "order": 3429, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 1 + ] + }, + { + "label": "couple with heart: woman, woman, dark skin tone, medium-light skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FC", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿผ", + "text": "", + "type": 1, + "order": 3431, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 2 + ] + }, + { + "label": "couple with heart: woman, woman, dark skin tone, medium skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FD", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฝ", + "text": "", + "type": 1, + "order": 3433, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 3 + ] + }, + { + "label": "couple with heart: woman, woman, dark skin tone, medium-dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FE", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿพ", + "text": "", + "type": 1, + "order": 3435, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": [ + 5, + 4 + ] + }, + { + "label": "couple with heart: woman, woman, dark skin tone", + "hexcode": "1F469-1F3FF-200D-2764-FE0F-200D-1F469-1F3FF", + "emoji": "๐Ÿ‘ฉ๐Ÿฟโ€โค๏ธโ€๐Ÿ‘ฉ๐Ÿฟ", + "text": "", + "type": 1, + "order": 3437, + "group": 1, + "subgroup": 30, + "version": 13.1, + "tone": 5 + } + ] + }, + { + "label": "family: man, woman, boy", + "hexcode": "1F468-200D-1F469-200D-1F466", + "tags": [ + "boy", + "family", + "man", + "woman" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3439, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, woman, girl", + "hexcode": "1F468-200D-1F469-200D-1F467", + "tags": [ + "family", + "girl", + "man", + "woman" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3440, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, woman, girl, boy", + "hexcode": "1F468-200D-1F469-200D-1F467-200D-1F466", + "tags": [ + "boy", + "family", + "girl", + "man", + "woman" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3441, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, woman, boy, boy", + "hexcode": "1F468-200D-1F469-200D-1F466-200D-1F466", + "tags": [ + "boy", + "family", + "man", + "woman" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3442, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, woman, girl, girl", + "hexcode": "1F468-200D-1F469-200D-1F467-200D-1F467", + "tags": [ + "family", + "girl", + "man", + "woman" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3443, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, man, boy", + "hexcode": "1F468-200D-1F468-200D-1F466", + "tags": [ + "boy", + "family", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3444, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, man, girl", + "hexcode": "1F468-200D-1F468-200D-1F467", + "tags": [ + "family", + "girl", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3445, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, man, girl, boy", + "hexcode": "1F468-200D-1F468-200D-1F467-200D-1F466", + "tags": [ + "boy", + "family", + "girl", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3446, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, man, boy, boy", + "hexcode": "1F468-200D-1F468-200D-1F466-200D-1F466", + "tags": [ + "boy", + "family", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3447, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, man, girl, girl", + "hexcode": "1F468-200D-1F468-200D-1F467-200D-1F467", + "tags": [ + "family", + "girl", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3448, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: woman, woman, boy", + "hexcode": "1F469-200D-1F469-200D-1F466", + "tags": [ + "boy", + "family", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3449, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: woman, woman, girl", + "hexcode": "1F469-200D-1F469-200D-1F467", + "tags": [ + "family", + "girl", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3450, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: woman, woman, girl, boy", + "hexcode": "1F469-200D-1F469-200D-1F467-200D-1F466", + "tags": [ + "boy", + "family", + "girl", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3451, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: woman, woman, boy, boy", + "hexcode": "1F469-200D-1F469-200D-1F466-200D-1F466", + "tags": [ + "boy", + "family", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3452, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: woman, woman, girl, girl", + "hexcode": "1F469-200D-1F469-200D-1F467-200D-1F467", + "tags": [ + "family", + "girl", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3453, + "group": 1, + "subgroup": 30, + "version": 2 + }, + { + "label": "family: man, boy", + "hexcode": "1F468-200D-1F466", + "tags": [ + "boy", + "family", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3454, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: man, boy, boy", + "hexcode": "1F468-200D-1F466-200D-1F466", + "tags": [ + "boy", + "family", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3455, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: man, girl", + "hexcode": "1F468-200D-1F467", + "tags": [ + "family", + "girl", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3456, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: man, girl, boy", + "hexcode": "1F468-200D-1F467-200D-1F466", + "tags": [ + "boy", + "family", + "girl", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3457, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: man, girl, girl", + "hexcode": "1F468-200D-1F467-200D-1F467", + "tags": [ + "family", + "girl", + "man" + ], + "emoji": "๐Ÿ‘จโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3458, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: woman, boy", + "hexcode": "1F469-200D-1F466", + "tags": [ + "boy", + "family", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3459, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: woman, boy, boy", + "hexcode": "1F469-200D-1F466-200D-1F466", + "tags": [ + "boy", + "family", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ฆโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3460, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: woman, girl", + "hexcode": "1F469-200D-1F467", + "tags": [ + "family", + "girl", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3461, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: woman, girl, boy", + "hexcode": "1F469-200D-1F467-200D-1F466", + "tags": [ + "boy", + "family", + "girl", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ", + "text": "", + "type": 1, + "order": 3462, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "family: woman, girl, girl", + "hexcode": "1F469-200D-1F467-200D-1F467", + "tags": [ + "family", + "girl", + "woman" + ], + "emoji": "๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ง", + "text": "", + "type": 1, + "order": 3463, + "group": 1, + "subgroup": 30, + "version": 4 + }, + { + "label": "speaking head", + "hexcode": "1F5E3", + "tags": [ + "face", + "head", + "silhouette", + "speak", + "speaking" + ], + "emoji": "๐Ÿ—ฃ๏ธ", + "text": "๐Ÿ—ฃ๏ธŽ", + "type": 0, + "order": 3465, + "group": 1, + "subgroup": 31, + "version": 0.7 + }, + { + "label": "bust in silhouette", + "hexcode": "1F464", + "tags": [ + "bust", + "silhouette" + ], + "emoji": "๐Ÿ‘ค", + "text": "", + "type": 1, + "order": 3466, + "group": 1, + "subgroup": 31, + "version": 0.6 + }, + { + "label": "busts in silhouette", + "hexcode": "1F465", + "tags": [ + "bust", + "silhouette" + ], + "emoji": "๐Ÿ‘ฅ", + "text": "", + "type": 1, + "order": 3467, + "group": 1, + "subgroup": 31, + "version": 1 + }, + { + "label": "people hugging", + "hexcode": "1FAC2", + "tags": [ + "goodbye", + "hello", + "hug", + "thanks" + ], + "emoji": "๐Ÿซ‚", + "text": "", + "type": 1, + "order": 3468, + "group": 1, + "subgroup": 31, + "version": 13 + }, + { + "label": "family", + "hexcode": "1F46A", + "tags": [ + "family" + ], + "emoji": "๐Ÿ‘ช๏ธ", + "text": "๐Ÿ‘ช๏ธŽ", + "type": 1, + "order": 3469, + "group": 1, + "subgroup": 31, + "version": 0.6 + }, + { + "label": "family: adult, adult, child", + "hexcode": "1F9D1-200D-1F9D1-200D-1F9D2", + "tags": [ + "family: adult, adult, child" + ], + "emoji": "๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’", + "text": "", + "type": 1, + "order": 3470, + "group": 1, + "subgroup": 31, + "version": 15.1 + }, + { + "label": "family: adult, adult, child, child", + "hexcode": "1F9D1-200D-1F9D1-200D-1F9D2-200D-1F9D2", + "tags": [ + "family: adult, adult, child, child" + ], + "emoji": "๐Ÿง‘โ€๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’", + "text": "", + "type": 1, + "order": 3471, + "group": 1, + "subgroup": 31, + "version": 15.1 + }, + { + "label": "family: adult, child", + "hexcode": "1F9D1-200D-1F9D2", + "tags": [ + "family: adult, child" + ], + "emoji": "๐Ÿง‘โ€๐Ÿง’", + "text": "", + "type": 1, + "order": 3472, + "group": 1, + "subgroup": 31, + "version": 15.1 + }, + { + "label": "family: adult, child, child", + "hexcode": "1F9D1-200D-1F9D2-200D-1F9D2", + "tags": [ + "family: adult, child, child" + ], + "emoji": "๐Ÿง‘โ€๐Ÿง’โ€๐Ÿง’", + "text": "", + "type": 1, + "order": 3473, + "group": 1, + "subgroup": 31, + "version": 15.1 + }, + { + "label": "footprints", + "hexcode": "1F463", + "tags": [ + "clothing", + "footprint", + "print" + ], + "emoji": "๐Ÿ‘ฃ", + "text": "", + "type": 1, + "order": 3474, + "group": 1, + "subgroup": 31, + "version": 0.6 + }, + { + "label": "light skin tone", + "hexcode": "1F3FB", + "tags": [ + "skin tone", + "type 1โ€“2" + ], + "emoji": "๐Ÿป", + "text": "", + "type": 1, + "order": 3475, + "group": 2, + "subgroup": 32, + "version": 1 + }, + { + "label": "medium-light skin tone", + "hexcode": "1F3FC", + "tags": [ + "skin tone", + "type 3" + ], + "emoji": "๐Ÿผ", + "text": "", + "type": 1, + "order": 3476, + "group": 2, + "subgroup": 32, + "version": 1 + }, + { + "label": "medium skin tone", + "hexcode": "1F3FD", + "tags": [ + "skin tone", + "type 4" + ], + "emoji": "๐Ÿฝ", + "text": "", + "type": 1, + "order": 3477, + "group": 2, + "subgroup": 32, + "version": 1 + }, + { + "label": "medium-dark skin tone", + "hexcode": "1F3FE", + "tags": [ + "skin tone", + "type 5" + ], + "emoji": "๐Ÿพ", + "text": "", + "type": 1, + "order": 3478, + "group": 2, + "subgroup": 32, + "version": 1 + }, + { + "label": "dark skin tone", + "hexcode": "1F3FF", + "tags": [ + "skin tone", + "type 6" + ], + "emoji": "๐Ÿฟ", + "text": "", + "type": 1, + "order": 3479, + "group": 2, + "subgroup": 32, + "version": 1 + }, + { + "label": "red hair", + "hexcode": "1F9B0", + "tags": [ + "ginger", + "redhead" + ], + "emoji": "๐Ÿฆฐ", + "text": "", + "type": 1, + "order": 3480, + "group": 2, + "subgroup": 33, + "version": 11 + }, + { + "label": "curly hair", + "hexcode": "1F9B1", + "tags": [ + "afro", + "curly", + "ringlets" + ], + "emoji": "๐Ÿฆฑ", + "text": "", + "type": 1, + "order": 3481, + "group": 2, + "subgroup": 33, + "version": 11 + }, + { + "label": "white hair", + "hexcode": "1F9B3", + "tags": [ + "gray", + "hair", + "old", + "white" + ], + "emoji": "๐Ÿฆณ", + "text": "", + "type": 1, + "order": 3482, + "group": 2, + "subgroup": 33, + "version": 11 + }, + { + "label": "bald", + "hexcode": "1F9B2", + "tags": [ + "chemotherapy", + "hairless", + "no hair", + "shaven" + ], + "emoji": "๐Ÿฆฒ", + "text": "", + "type": 1, + "order": 3483, + "group": 2, + "subgroup": 33, + "version": 11 + }, + { + "label": "monkey face", + "hexcode": "1F435", + "tags": [ + "face", + "monkey" + ], + "emoji": "๐Ÿต", + "text": "", + "type": 1, + "order": 3484, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "monkey", + "hexcode": "1F412", + "tags": [ + "monkey" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 3485, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "gorilla", + "hexcode": "1F98D", + "tags": [ + "gorilla" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3486, + "group": 3, + "subgroup": 34, + "version": 3 + }, + { + "label": "orangutan", + "hexcode": "1F9A7", + "tags": [ + "ape" + ], + "emoji": "๐Ÿฆง", + "text": "", + "type": 1, + "order": 3487, + "group": 3, + "subgroup": 34, + "version": 12 + }, + { + "label": "dog face", + "hexcode": "1F436", + "tags": [ + "dog", + "face", + "pet" + ], + "emoji": "๐Ÿถ", + "text": "", + "type": 1, + "order": 3488, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "dog", + "hexcode": "1F415", + "tags": [ + "pet" + ], + "emoji": "๐Ÿ•๏ธ", + "text": "๐Ÿ•๏ธŽ", + "type": 1, + "order": 3489, + "group": 3, + "subgroup": 34, + "version": 0.7 + }, + { + "label": "guide dog", + "hexcode": "1F9AE", + "tags": [ + "accessibility", + "blind", + "guide" + ], + "emoji": "๐Ÿฆฎ", + "text": "", + "type": 1, + "order": 3490, + "group": 3, + "subgroup": 34, + "version": 12 + }, + { + "label": "service dog", + "hexcode": "1F415-200D-1F9BA", + "tags": [ + "accessibility", + "assistance", + "dog", + "service" + ], + "emoji": "๐Ÿ•โ€๐Ÿฆบ", + "text": "", + "type": 1, + "order": 3491, + "group": 3, + "subgroup": 34, + "version": 12 + }, + { + "label": "poodle", + "hexcode": "1F429", + "tags": [ + "dog" + ], + "emoji": "๐Ÿฉ", + "text": "", + "type": 1, + "order": 3492, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "wolf", + "hexcode": "1F43A", + "tags": [ + "face" + ], + "emoji": "๐Ÿบ", + "text": "", + "type": 1, + "order": 3493, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "fox", + "hexcode": "1F98A", + "tags": [ + "face" + ], + "emoji": "๐ŸฆŠ", + "text": "", + "type": 1, + "order": 3494, + "group": 3, + "subgroup": 34, + "version": 3 + }, + { + "label": "raccoon", + "hexcode": "1F99D", + "tags": [ + "curious", + "sly" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3495, + "group": 3, + "subgroup": 34, + "version": 11 + }, + { + "label": "cat face", + "hexcode": "1F431", + "tags": [ + "cat", + "face", + "pet" + ], + "emoji": "๐Ÿฑ", + "text": "", + "type": 1, + "order": 3496, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "cat", + "hexcode": "1F408", + "tags": [ + "pet" + ], + "emoji": "๐Ÿˆ๏ธ", + "text": "๐Ÿˆ๏ธŽ", + "type": 1, + "order": 3497, + "group": 3, + "subgroup": 34, + "version": 0.7 + }, + { + "label": "black cat", + "hexcode": "1F408-200D-2B1B", + "tags": [ + "black", + "cat", + "unlucky" + ], + "emoji": "๐Ÿˆโ€โฌ›", + "text": "", + "type": 1, + "order": 3498, + "group": 3, + "subgroup": 34, + "version": 13 + }, + { + "label": "lion", + "hexcode": "1F981", + "tags": [ + "face", + "leo", + "zodiac" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3499, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "tiger face", + "hexcode": "1F42F", + "tags": [ + "face", + "tiger" + ], + "emoji": "๐Ÿฏ", + "text": "", + "type": 1, + "order": 3500, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "tiger", + "hexcode": "1F405", + "tags": [ + "tiger" + ], + "emoji": "๐Ÿ…", + "text": "", + "type": 1, + "order": 3501, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "leopard", + "hexcode": "1F406", + "tags": [ + "leopard" + ], + "emoji": "๐Ÿ†", + "text": "", + "type": 1, + "order": 3502, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "horse face", + "hexcode": "1F434", + "tags": [ + "face", + "horse" + ], + "emoji": "๐Ÿด", + "text": "", + "type": 1, + "order": 3503, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "moose", + "hexcode": "1FACE", + "tags": [ + "animal", + "antlers", + "elk", + "mammal" + ], + "emoji": "๐ŸซŽ", + "text": "", + "type": 1, + "order": 3504, + "group": 3, + "subgroup": 34, + "version": 15 + }, + { + "label": "donkey", + "hexcode": "1FACF", + "tags": [ + "animal", + "ass", + "burro", + "mammal", + "mule", + "stubborn" + ], + "emoji": "๐Ÿซ", + "text": "", + "type": 1, + "order": 3505, + "group": 3, + "subgroup": 34, + "version": 15 + }, + { + "label": "horse", + "hexcode": "1F40E", + "tags": [ + "equestrian", + "racehorse", + "racing" + ], + "emoji": "๐ŸŽ", + "text": "", + "type": 1, + "order": 3506, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "unicorn", + "hexcode": "1F984", + "tags": [ + "face" + ], + "emoji": "๐Ÿฆ„", + "text": "", + "type": 1, + "order": 3507, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "zebra", + "hexcode": "1F993", + "tags": [ + "stripe" + ], + "emoji": "๐Ÿฆ“", + "text": "", + "type": 1, + "order": 3508, + "group": 3, + "subgroup": 34, + "version": 5 + }, + { + "label": "deer", + "hexcode": "1F98C", + "tags": [ + "deer" + ], + "emoji": "๐ŸฆŒ", + "text": "", + "type": 1, + "order": 3509, + "group": 3, + "subgroup": 34, + "version": 3 + }, + { + "label": "bison", + "hexcode": "1F9AC", + "tags": [ + "buffalo", + "herd", + "wisent" + ], + "emoji": "๐Ÿฆฌ", + "text": "", + "type": 1, + "order": 3510, + "group": 3, + "subgroup": 34, + "version": 13 + }, + { + "label": "cow face", + "hexcode": "1F42E", + "tags": [ + "cow", + "face" + ], + "emoji": "๐Ÿฎ", + "text": "", + "type": 1, + "order": 3511, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "ox", + "hexcode": "1F402", + "tags": [ + "bull", + "taurus", + "zodiac" + ], + "emoji": "๐Ÿ‚", + "text": "", + "type": 1, + "order": 3512, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "water buffalo", + "hexcode": "1F403", + "tags": [ + "buffalo", + "water" + ], + "emoji": "๐Ÿƒ", + "text": "", + "type": 1, + "order": 3513, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "cow", + "hexcode": "1F404", + "tags": [ + "cow" + ], + "emoji": "๐Ÿ„", + "text": "", + "type": 1, + "order": 3514, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "pig face", + "hexcode": "1F437", + "tags": [ + "face", + "pig" + ], + "emoji": "๐Ÿท", + "text": "", + "type": 1, + "order": 3515, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "pig", + "hexcode": "1F416", + "tags": [ + "sow" + ], + "emoji": "๐Ÿ–", + "text": "", + "type": 1, + "order": 3516, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "boar", + "hexcode": "1F417", + "tags": [ + "pig" + ], + "emoji": "๐Ÿ—", + "text": "", + "type": 1, + "order": 3517, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "pig nose", + "hexcode": "1F43D", + "tags": [ + "face", + "nose", + "pig" + ], + "emoji": "๐Ÿฝ", + "text": "", + "type": 1, + "order": 3518, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "ram", + "hexcode": "1F40F", + "tags": [ + "aries", + "male", + "sheep", + "zodiac" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3519, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "ewe", + "hexcode": "1F411", + "tags": [ + "female", + "sheep" + ], + "emoji": "๐Ÿ‘", + "text": "", + "type": 1, + "order": 3520, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "goat", + "hexcode": "1F410", + "tags": [ + "capricorn", + "zodiac" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3521, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "camel", + "hexcode": "1F42A", + "tags": [ + "dromedary", + "hump" + ], + "emoji": "๐Ÿช", + "text": "", + "type": 1, + "order": 3522, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "two-hump camel", + "hexcode": "1F42B", + "tags": [ + "bactrian", + "camel", + "hump" + ], + "emoji": "๐Ÿซ", + "text": "", + "type": 1, + "order": 3523, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "llama", + "hexcode": "1F999", + "tags": [ + "alpaca", + "guanaco", + "vicuรฑa", + "wool" + ], + "emoji": "๐Ÿฆ™", + "text": "", + "type": 1, + "order": 3524, + "group": 3, + "subgroup": 34, + "version": 11 + }, + { + "label": "giraffe", + "hexcode": "1F992", + "tags": [ + "spots" + ], + "emoji": "๐Ÿฆ’", + "text": "", + "type": 1, + "order": 3525, + "group": 3, + "subgroup": 34, + "version": 5 + }, + { + "label": "elephant", + "hexcode": "1F418", + "tags": [ + "elephant" + ], + "emoji": "๐Ÿ˜", + "text": "", + "type": 1, + "order": 3526, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "mammoth", + "hexcode": "1F9A3", + "tags": [ + "extinction", + "large", + "tusk", + "woolly" + ], + "emoji": "๐Ÿฆฃ", + "text": "", + "type": 1, + "order": 3527, + "group": 3, + "subgroup": 34, + "version": 13 + }, + { + "label": "rhinoceros", + "hexcode": "1F98F", + "tags": [ + "rhinoceros" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3528, + "group": 3, + "subgroup": 34, + "version": 3 + }, + { + "label": "hippopotamus", + "hexcode": "1F99B", + "tags": [ + "hippo" + ], + "emoji": "๐Ÿฆ›", + "text": "", + "type": 1, + "order": 3529, + "group": 3, + "subgroup": 34, + "version": 11 + }, + { + "label": "mouse face", + "hexcode": "1F42D", + "tags": [ + "face", + "mouse" + ], + "emoji": "๐Ÿญ", + "text": "", + "type": 1, + "order": 3530, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "mouse", + "hexcode": "1F401", + "tags": [ + "mouse" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3531, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "rat", + "hexcode": "1F400", + "tags": [ + "rat" + ], + "emoji": "๐Ÿ€", + "text": "", + "type": 1, + "order": 3532, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "hamster", + "hexcode": "1F439", + "tags": [ + "face", + "pet" + ], + "emoji": "๐Ÿน", + "text": "", + "type": 1, + "order": 3533, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "rabbit face", + "hexcode": "1F430", + "tags": [ + "bunny", + "face", + "pet", + "rabbit" + ], + "emoji": "๐Ÿฐ", + "text": "", + "type": 1, + "order": 3534, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "rabbit", + "hexcode": "1F407", + "tags": [ + "bunny", + "pet" + ], + "emoji": "๐Ÿ‡", + "text": "", + "type": 1, + "order": 3535, + "group": 3, + "subgroup": 34, + "version": 1 + }, + { + "label": "chipmunk", + "hexcode": "1F43F", + "tags": [ + "squirrel" + ], + "emoji": "๐Ÿฟ๏ธ", + "text": "๐Ÿฟ๏ธŽ", + "type": 0, + "order": 3537, + "group": 3, + "subgroup": 34, + "version": 0.7 + }, + { + "label": "beaver", + "hexcode": "1F9AB", + "tags": [ + "dam" + ], + "emoji": "๐Ÿฆซ", + "text": "", + "type": 1, + "order": 3538, + "group": 3, + "subgroup": 34, + "version": 13 + }, + { + "label": "hedgehog", + "hexcode": "1F994", + "tags": [ + "spiny" + ], + "emoji": "๐Ÿฆ”", + "text": "", + "type": 1, + "order": 3539, + "group": 3, + "subgroup": 34, + "version": 5 + }, + { + "label": "bat", + "hexcode": "1F987", + "tags": [ + "vampire" + ], + "emoji": "๐Ÿฆ‡", + "text": "", + "type": 1, + "order": 3540, + "group": 3, + "subgroup": 34, + "version": 3 + }, + { + "label": "bear", + "hexcode": "1F43B", + "tags": [ + "face" + ], + "emoji": "๐Ÿป", + "text": "", + "type": 1, + "order": 3541, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "polar bear", + "hexcode": "1F43B-200D-2744-FE0F", + "tags": [ + "arctic", + "bear", + "white" + ], + "emoji": "๐Ÿปโ€โ„๏ธ", + "text": "", + "type": 1, + "order": 3542, + "group": 3, + "subgroup": 34, + "version": 13 + }, + { + "label": "koala", + "hexcode": "1F428", + "tags": [ + "face", + "marsupial" + ], + "emoji": "๐Ÿจ", + "text": "", + "type": 1, + "order": 3544, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "panda", + "hexcode": "1F43C", + "tags": [ + "face" + ], + "emoji": "๐Ÿผ", + "text": "", + "type": 1, + "order": 3545, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "sloth", + "hexcode": "1F9A5", + "tags": [ + "lazy", + "slow" + ], + "emoji": "๐Ÿฆฅ", + "text": "", + "type": 1, + "order": 3546, + "group": 3, + "subgroup": 34, + "version": 12 + }, + { + "label": "otter", + "hexcode": "1F9A6", + "tags": [ + "fishing", + "playful" + ], + "emoji": "๐Ÿฆฆ", + "text": "", + "type": 1, + "order": 3547, + "group": 3, + "subgroup": 34, + "version": 12 + }, + { + "label": "skunk", + "hexcode": "1F9A8", + "tags": [ + "stink" + ], + "emoji": "๐Ÿฆจ", + "text": "", + "type": 1, + "order": 3548, + "group": 3, + "subgroup": 34, + "version": 12 + }, + { + "label": "kangaroo", + "hexcode": "1F998", + "tags": [ + "joey", + "jump", + "marsupial" + ], + "emoji": "๐Ÿฆ˜", + "text": "", + "type": 1, + "order": 3549, + "group": 3, + "subgroup": 34, + "version": 11 + }, + { + "label": "badger", + "hexcode": "1F9A1", + "tags": [ + "honey badger", + "pester" + ], + "emoji": "๐Ÿฆก", + "text": "", + "type": 1, + "order": 3550, + "group": 3, + "subgroup": 34, + "version": 11 + }, + { + "label": "paw prints", + "hexcode": "1F43E", + "tags": [ + "feet", + "paw", + "print" + ], + "emoji": "๐Ÿพ", + "text": "", + "type": 1, + "order": 3551, + "group": 3, + "subgroup": 34, + "version": 0.6 + }, + { + "label": "turkey", + "hexcode": "1F983", + "tags": [ + "bird" + ], + "emoji": "๐Ÿฆƒ", + "text": "", + "type": 1, + "order": 3552, + "group": 3, + "subgroup": 35, + "version": 1 + }, + { + "label": "chicken", + "hexcode": "1F414", + "tags": [ + "bird" + ], + "emoji": "๐Ÿ”", + "text": "", + "type": 1, + "order": 3553, + "group": 3, + "subgroup": 35, + "version": 0.6 + }, + { + "label": "rooster", + "hexcode": "1F413", + "tags": [ + "bird" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 3554, + "group": 3, + "subgroup": 35, + "version": 1 + }, + { + "label": "hatching chick", + "hexcode": "1F423", + "tags": [ + "baby", + "bird", + "chick", + "hatching" + ], + "emoji": "๐Ÿฃ", + "text": "", + "type": 1, + "order": 3555, + "group": 3, + "subgroup": 35, + "version": 0.6 + }, + { + "label": "baby chick", + "hexcode": "1F424", + "tags": [ + "baby", + "bird", + "chick" + ], + "emoji": "๐Ÿค", + "text": "", + "type": 1, + "order": 3556, + "group": 3, + "subgroup": 35, + "version": 0.6 + }, + { + "label": "front-facing baby chick", + "hexcode": "1F425", + "tags": [ + "baby", + "bird", + "chick" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 3557, + "group": 3, + "subgroup": 35, + "version": 0.6 + }, + { + "label": "bird", + "hexcode": "1F426", + "tags": [ + "bird" + ], + "emoji": "๐Ÿฆ๏ธ", + "text": "๐Ÿฆ๏ธŽ", + "type": 1, + "order": 3558, + "group": 3, + "subgroup": 35, + "version": 0.6 + }, + { + "label": "penguin", + "hexcode": "1F427", + "tags": [ + "bird" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 3559, + "group": 3, + "subgroup": 35, + "version": 0.6 + }, + { + "label": "dove", + "hexcode": "1F54A", + "tags": [ + "bird", + "fly", + "peace" + ], + "emoji": "๐Ÿ•Š๏ธ", + "text": "๐Ÿ•Š๏ธŽ", + "type": 0, + "order": 3561, + "group": 3, + "subgroup": 35, + "version": 0.7 + }, + { + "label": "eagle", + "hexcode": "1F985", + "tags": [ + "bird" + ], + "emoji": "๐Ÿฆ…", + "text": "", + "type": 1, + "order": 3562, + "group": 3, + "subgroup": 35, + "version": 3 + }, + { + "label": "duck", + "hexcode": "1F986", + "tags": [ + "bird" + ], + "emoji": "๐Ÿฆ†", + "text": "", + "type": 1, + "order": 3563, + "group": 3, + "subgroup": 35, + "version": 3 + }, + { + "label": "swan", + "hexcode": "1F9A2", + "tags": [ + "bird", + "cygnet", + "ugly duckling" + ], + "emoji": "๐Ÿฆข", + "text": "", + "type": 1, + "order": 3564, + "group": 3, + "subgroup": 35, + "version": 11 + }, + { + "label": "owl", + "hexcode": "1F989", + "tags": [ + "bird", + "wise" + ], + "emoji": "๐Ÿฆ‰", + "text": "", + "type": 1, + "order": 3565, + "group": 3, + "subgroup": 35, + "version": 3 + }, + { + "label": "dodo", + "hexcode": "1F9A4", + "tags": [ + "extinction", + "large", + "mauritius" + ], + "emoji": "๐Ÿฆค", + "text": "", + "type": 1, + "order": 3566, + "group": 3, + "subgroup": 35, + "version": 13 + }, + { + "label": "feather", + "hexcode": "1FAB6", + "tags": [ + "bird", + "flight", + "light", + "plumage" + ], + "emoji": "๐Ÿชถ", + "text": "", + "type": 1, + "order": 3567, + "group": 3, + "subgroup": 35, + "version": 13 + }, + { + "label": "flamingo", + "hexcode": "1F9A9", + "tags": [ + "flamboyant", + "tropical" + ], + "emoji": "๐Ÿฆฉ", + "text": "", + "type": 1, + "order": 3568, + "group": 3, + "subgroup": 35, + "version": 12 + }, + { + "label": "peacock", + "hexcode": "1F99A", + "tags": [ + "bird", + "ostentatious", + "peahen", + "proud" + ], + "emoji": "๐Ÿฆš", + "text": "", + "type": 1, + "order": 3569, + "group": 3, + "subgroup": 35, + "version": 11 + }, + { + "label": "parrot", + "hexcode": "1F99C", + "tags": [ + "bird", + "pirate", + "talk" + ], + "emoji": "๐Ÿฆœ", + "text": "", + "type": 1, + "order": 3570, + "group": 3, + "subgroup": 35, + "version": 11 + }, + { + "label": "wing", + "hexcode": "1FABD", + "tags": [ + "angelic", + "aviation", + "bird", + "flying", + "mythology" + ], + "emoji": "๐Ÿชฝ", + "text": "", + "type": 1, + "order": 3571, + "group": 3, + "subgroup": 35, + "version": 15 + }, + { + "label": "black bird", + "hexcode": "1F426-200D-2B1B", + "tags": [ + "bird", + "black", + "crow", + "raven", + "rook" + ], + "emoji": "๐Ÿฆโ€โฌ›", + "text": "", + "type": 1, + "order": 3572, + "group": 3, + "subgroup": 35, + "version": 15 + }, + { + "label": "goose", + "hexcode": "1FABF", + "tags": [ + "bird", + "fowl", + "honk", + "silly" + ], + "emoji": "๐Ÿชฟ", + "text": "", + "type": 1, + "order": 3573, + "group": 3, + "subgroup": 35, + "version": 15 + }, + { + "label": "phoenix", + "hexcode": "1F426-200D-1F525", + "tags": [ + "fantasy", + "firebird", + "rebirth", + "reincarnation" + ], + "emoji": "๐Ÿฆโ€๐Ÿ”ฅ", + "text": "", + "type": 1, + "order": 3574, + "group": 3, + "subgroup": 35, + "version": 15.1 + }, + { + "label": "frog", + "hexcode": "1F438", + "tags": [ + "face" + ], + "emoji": "๐Ÿธ", + "text": "", + "type": 1, + "order": 3575, + "group": 3, + "subgroup": 36, + "version": 0.6 + }, + { + "label": "crocodile", + "hexcode": "1F40A", + "tags": [ + "crocodile" + ], + "emoji": "๐ŸŠ", + "text": "", + "type": 1, + "order": 3576, + "group": 3, + "subgroup": 37, + "version": 1 + }, + { + "label": "turtle", + "hexcode": "1F422", + "tags": [ + "terrapin", + "tortoise" + ], + "emoji": "๐Ÿข", + "text": "", + "type": 1, + "order": 3577, + "group": 3, + "subgroup": 37, + "version": 0.6 + }, + { + "label": "lizard", + "hexcode": "1F98E", + "tags": [ + "reptile" + ], + "emoji": "๐ŸฆŽ", + "text": "", + "type": 1, + "order": 3578, + "group": 3, + "subgroup": 37, + "version": 3 + }, + { + "label": "snake", + "hexcode": "1F40D", + "tags": [ + "bearer", + "ophiuchus", + "serpent", + "zodiac" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3579, + "group": 3, + "subgroup": 37, + "version": 0.6 + }, + { + "label": "dragon face", + "hexcode": "1F432", + "tags": [ + "dragon", + "face", + "fairy tale" + ], + "emoji": "๐Ÿฒ", + "text": "", + "type": 1, + "order": 3580, + "group": 3, + "subgroup": 37, + "version": 0.6 + }, + { + "label": "dragon", + "hexcode": "1F409", + "tags": [ + "fairy tale" + ], + "emoji": "๐Ÿ‰", + "text": "", + "type": 1, + "order": 3581, + "group": 3, + "subgroup": 37, + "version": 1 + }, + { + "label": "sauropod", + "hexcode": "1F995", + "tags": [ + "brachiosaurus", + "brontosaurus", + "diplodocus" + ], + "emoji": "๐Ÿฆ•", + "text": "", + "type": 1, + "order": 3582, + "group": 3, + "subgroup": 37, + "version": 5 + }, + { + "label": "T-Rex", + "hexcode": "1F996", + "tags": [ + "t-rex", + "tyrannosaurus rex" + ], + "emoji": "๐Ÿฆ–", + "text": "", + "type": 1, + "order": 3583, + "group": 3, + "subgroup": 37, + "version": 5 + }, + { + "label": "spouting whale", + "hexcode": "1F433", + "tags": [ + "face", + "spouting", + "whale" + ], + "emoji": "๐Ÿณ", + "text": "", + "type": 1, + "order": 3584, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "whale", + "hexcode": "1F40B", + "tags": [ + "whale" + ], + "emoji": "๐Ÿ‹", + "text": "", + "type": 1, + "order": 3585, + "group": 3, + "subgroup": 38, + "version": 1 + }, + { + "label": "dolphin", + "hexcode": "1F42C", + "tags": [ + "flipper" + ], + "emoji": "๐Ÿฌ", + "text": "", + "type": 1, + "order": 3586, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "seal", + "hexcode": "1F9AD", + "tags": [ + "sea lion" + ], + "emoji": "๐Ÿฆญ", + "text": "", + "type": 1, + "order": 3587, + "group": 3, + "subgroup": 38, + "version": 13 + }, + { + "label": "fish", + "hexcode": "1F41F", + "tags": [ + "pisces", + "zodiac" + ], + "emoji": "๐ŸŸ๏ธ", + "text": "๐ŸŸ๏ธŽ", + "type": 1, + "order": 3588, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "tropical fish", + "hexcode": "1F420", + "tags": [ + "fish", + "tropical" + ], + "emoji": "๐Ÿ ", + "text": "", + "type": 1, + "order": 3589, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "blowfish", + "hexcode": "1F421", + "tags": [ + "fish" + ], + "emoji": "๐Ÿก", + "text": "", + "type": 1, + "order": 3590, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "shark", + "hexcode": "1F988", + "tags": [ + "fish" + ], + "emoji": "๐Ÿฆˆ", + "text": "", + "type": 1, + "order": 3591, + "group": 3, + "subgroup": 38, + "version": 3 + }, + { + "label": "octopus", + "hexcode": "1F419", + "tags": [ + "octopus" + ], + "emoji": "๐Ÿ™", + "text": "", + "type": 1, + "order": 3592, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "spiral shell", + "hexcode": "1F41A", + "tags": [ + "shell", + "spiral" + ], + "emoji": "๐Ÿš", + "text": "", + "type": 1, + "order": 3593, + "group": 3, + "subgroup": 38, + "version": 0.6 + }, + { + "label": "coral", + "hexcode": "1FAB8", + "tags": [ + "ocean", + "reef" + ], + "emoji": "๐Ÿชธ", + "text": "", + "type": 1, + "order": 3594, + "group": 3, + "subgroup": 38, + "version": 14 + }, + { + "label": "jellyfish", + "hexcode": "1FABC", + "tags": [ + "burn", + "invertebrate", + "jelly", + "marine", + "ouch", + "stinger" + ], + "emoji": "๐Ÿชผ", + "text": "", + "type": 1, + "order": 3595, + "group": 3, + "subgroup": 38, + "version": 15 + }, + { + "label": "snail", + "hexcode": "1F40C", + "tags": [ + "snail" + ], + "emoji": "๐ŸŒ", + "text": "", + "type": 1, + "order": 3596, + "group": 3, + "subgroup": 39, + "version": 0.6 + }, + { + "label": "butterfly", + "hexcode": "1F98B", + "tags": [ + "insect", + "pretty" + ], + "emoji": "๐Ÿฆ‹", + "text": "", + "type": 1, + "order": 3597, + "group": 3, + "subgroup": 39, + "version": 3 + }, + { + "label": "bug", + "hexcode": "1F41B", + "tags": [ + "insect" + ], + "emoji": "๐Ÿ›", + "text": "", + "type": 1, + "order": 3598, + "group": 3, + "subgroup": 39, + "version": 0.6 + }, + { + "label": "ant", + "hexcode": "1F41C", + "tags": [ + "insect" + ], + "emoji": "๐Ÿœ", + "text": "", + "type": 1, + "order": 3599, + "group": 3, + "subgroup": 39, + "version": 0.6 + }, + { + "label": "honeybee", + "hexcode": "1F41D", + "tags": [ + "bee", + "insect" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3600, + "group": 3, + "subgroup": 39, + "version": 0.6 + }, + { + "label": "beetle", + "hexcode": "1FAB2", + "tags": [ + "bug", + "insect" + ], + "emoji": "๐Ÿชฒ", + "text": "", + "type": 1, + "order": 3601, + "group": 3, + "subgroup": 39, + "version": 13 + }, + { + "label": "lady beetle", + "hexcode": "1F41E", + "tags": [ + "beetle", + "insect", + "ladybird", + "ladybug" + ], + "emoji": "๐Ÿž", + "text": "", + "type": 1, + "order": 3602, + "group": 3, + "subgroup": 39, + "version": 0.6 + }, + { + "label": "cricket", + "hexcode": "1F997", + "tags": [ + "grasshopper" + ], + "emoji": "๐Ÿฆ—", + "text": "", + "type": 1, + "order": 3603, + "group": 3, + "subgroup": 39, + "version": 5 + }, + { + "label": "cockroach", + "hexcode": "1FAB3", + "tags": [ + "insect", + "pest", + "roach" + ], + "emoji": "๐Ÿชณ", + "text": "", + "type": 1, + "order": 3604, + "group": 3, + "subgroup": 39, + "version": 13 + }, + { + "label": "spider", + "hexcode": "1F577", + "tags": [ + "insect" + ], + "emoji": "๐Ÿ•ท๏ธ", + "text": "๐Ÿ•ท๏ธŽ", + "type": 0, + "order": 3606, + "group": 3, + "subgroup": 39, + "version": 0.7 + }, + { + "label": "spider web", + "hexcode": "1F578", + "tags": [ + "spider", + "web" + ], + "emoji": "๐Ÿ•ธ๏ธ", + "text": "๐Ÿ•ธ๏ธŽ", + "type": 0, + "order": 3608, + "group": 3, + "subgroup": 39, + "version": 0.7 + }, + { + "label": "scorpion", + "hexcode": "1F982", + "tags": [ + "scorpio", + "zodiac" + ], + "emoji": "๐Ÿฆ‚", + "text": "", + "type": 1, + "order": 3609, + "group": 3, + "subgroup": 39, + "version": 1 + }, + { + "label": "mosquito", + "hexcode": "1F99F", + "tags": [ + "disease", + "fever", + "malaria", + "pest", + "virus" + ], + "emoji": "๐ŸฆŸ", + "text": "", + "type": 1, + "order": 3610, + "group": 3, + "subgroup": 39, + "version": 11 + }, + { + "label": "fly", + "hexcode": "1FAB0", + "tags": [ + "disease", + "maggot", + "pest", + "rotting" + ], + "emoji": "๐Ÿชฐ", + "text": "", + "type": 1, + "order": 3611, + "group": 3, + "subgroup": 39, + "version": 13 + }, + { + "label": "worm", + "hexcode": "1FAB1", + "tags": [ + "annelid", + "earthworm", + "parasite" + ], + "emoji": "๐Ÿชฑ", + "text": "", + "type": 1, + "order": 3612, + "group": 3, + "subgroup": 39, + "version": 13 + }, + { + "label": "microbe", + "hexcode": "1F9A0", + "tags": [ + "amoeba", + "bacteria", + "virus" + ], + "emoji": "๐Ÿฆ ", + "text": "", + "type": 1, + "order": 3613, + "group": 3, + "subgroup": 39, + "version": 11 + }, + { + "label": "bouquet", + "hexcode": "1F490", + "tags": [ + "flower" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 3614, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "cherry blossom", + "hexcode": "1F338", + "tags": [ + "blossom", + "cherry", + "flower" + ], + "emoji": "๐ŸŒธ", + "text": "", + "type": 1, + "order": 3615, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "white flower", + "hexcode": "1F4AE", + "tags": [ + "flower" + ], + "emoji": "๐Ÿ’ฎ", + "text": "", + "type": 1, + "order": 3616, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "lotus", + "hexcode": "1FAB7", + "tags": [ + "buddhism", + "flower", + "hinduism", + "purity" + ], + "emoji": "๐Ÿชท", + "text": "", + "type": 1, + "order": 3617, + "group": 3, + "subgroup": 40, + "version": 14 + }, + { + "label": "rosette", + "hexcode": "1F3F5", + "tags": [ + "plant" + ], + "emoji": "๐Ÿต๏ธ", + "text": "๐Ÿต๏ธŽ", + "type": 0, + "order": 3619, + "group": 3, + "subgroup": 40, + "version": 0.7 + }, + { + "label": "rose", + "hexcode": "1F339", + "tags": [ + "flower" + ], + "emoji": "๐ŸŒน", + "text": "", + "type": 1, + "order": 3620, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "wilted flower", + "hexcode": "1F940", + "tags": [ + "flower", + "wilted" + ], + "emoji": "๐Ÿฅ€", + "text": "", + "type": 1, + "order": 3621, + "group": 3, + "subgroup": 40, + "version": 3 + }, + { + "label": "hibiscus", + "hexcode": "1F33A", + "tags": [ + "flower" + ], + "emoji": "๐ŸŒบ", + "text": "", + "type": 1, + "order": 3622, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "sunflower", + "hexcode": "1F33B", + "tags": [ + "flower", + "sun" + ], + "emoji": "๐ŸŒป", + "text": "", + "type": 1, + "order": 3623, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "blossom", + "hexcode": "1F33C", + "tags": [ + "flower" + ], + "emoji": "๐ŸŒผ", + "text": "", + "type": 1, + "order": 3624, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "tulip", + "hexcode": "1F337", + "tags": [ + "flower" + ], + "emoji": "๐ŸŒท", + "text": "", + "type": 1, + "order": 3625, + "group": 3, + "subgroup": 40, + "version": 0.6 + }, + { + "label": "hyacinth", + "hexcode": "1FABB", + "tags": [ + "bluebonnet", + "flower", + "lavender", + "lupine", + "snapdragon" + ], + "emoji": "๐Ÿชป", + "text": "", + "type": 1, + "order": 3626, + "group": 3, + "subgroup": 40, + "version": 15 + }, + { + "label": "seedling", + "hexcode": "1F331", + "tags": [ + "young" + ], + "emoji": "๐ŸŒฑ", + "text": "", + "type": 1, + "order": 3627, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "potted plant", + "hexcode": "1FAB4", + "tags": [ + "boring", + "grow", + "house", + "nurturing", + "plant", + "useless" + ], + "emoji": "๐Ÿชด", + "text": "", + "type": 1, + "order": 3628, + "group": 3, + "subgroup": 41, + "version": 13 + }, + { + "label": "evergreen tree", + "hexcode": "1F332", + "tags": [ + "tree" + ], + "emoji": "๐ŸŒฒ", + "text": "", + "type": 1, + "order": 3629, + "group": 3, + "subgroup": 41, + "version": 1 + }, + { + "label": "deciduous tree", + "hexcode": "1F333", + "tags": [ + "deciduous", + "shedding", + "tree" + ], + "emoji": "๐ŸŒณ", + "text": "", + "type": 1, + "order": 3630, + "group": 3, + "subgroup": 41, + "version": 1 + }, + { + "label": "palm tree", + "hexcode": "1F334", + "tags": [ + "palm", + "tree" + ], + "emoji": "๐ŸŒด", + "text": "", + "type": 1, + "order": 3631, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "cactus", + "hexcode": "1F335", + "tags": [ + "plant" + ], + "emoji": "๐ŸŒต", + "text": "", + "type": 1, + "order": 3632, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "sheaf of rice", + "hexcode": "1F33E", + "tags": [ + "ear", + "grain", + "rice" + ], + "emoji": "๐ŸŒพ", + "text": "", + "type": 1, + "order": 3633, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "herb", + "hexcode": "1F33F", + "tags": [ + "leaf" + ], + "emoji": "๐ŸŒฟ", + "text": "", + "type": 1, + "order": 3634, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "shamrock", + "hexcode": "2618", + "tags": [ + "plant" + ], + "emoji": "โ˜˜๏ธ", + "text": "โ˜˜๏ธŽ", + "type": 0, + "order": 3636, + "group": 3, + "subgroup": 41, + "version": 1 + }, + { + "label": "four leaf clover", + "hexcode": "1F340", + "tags": [ + "4", + "clover", + "four", + "four-leaf clover", + "leaf" + ], + "emoji": "๐Ÿ€", + "text": "", + "type": 1, + "order": 3637, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "maple leaf", + "hexcode": "1F341", + "tags": [ + "falling", + "leaf", + "maple" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3638, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "fallen leaf", + "hexcode": "1F342", + "tags": [ + "falling", + "leaf" + ], + "emoji": "๐Ÿ‚", + "text": "", + "type": 1, + "order": 3639, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "leaf fluttering in wind", + "hexcode": "1F343", + "tags": [ + "blow", + "flutter", + "leaf", + "wind" + ], + "emoji": "๐Ÿƒ", + "text": "", + "type": 1, + "order": 3640, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "empty nest", + "hexcode": "1FAB9", + "tags": [ + "nesting" + ], + "emoji": "๐Ÿชน", + "text": "", + "type": 1, + "order": 3641, + "group": 3, + "subgroup": 41, + "version": 14 + }, + { + "label": "nest with eggs", + "hexcode": "1FABA", + "tags": [ + "nesting" + ], + "emoji": "๐Ÿชบ", + "text": "", + "type": 1, + "order": 3642, + "group": 3, + "subgroup": 41, + "version": 14 + }, + { + "label": "mushroom", + "hexcode": "1F344", + "tags": [ + "toadstool" + ], + "emoji": "๐Ÿ„", + "text": "", + "type": 1, + "order": 3643, + "group": 3, + "subgroup": 41, + "version": 0.6 + }, + { + "label": "grapes", + "hexcode": "1F347", + "tags": [ + "fruit", + "grape" + ], + "emoji": "๐Ÿ‡", + "text": "", + "type": 1, + "order": 3644, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "melon", + "hexcode": "1F348", + "tags": [ + "fruit" + ], + "emoji": "๐Ÿˆ", + "text": "", + "type": 1, + "order": 3645, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "watermelon", + "hexcode": "1F349", + "tags": [ + "fruit" + ], + "emoji": "๐Ÿ‰", + "text": "", + "type": 1, + "order": 3646, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "tangerine", + "hexcode": "1F34A", + "tags": [ + "fruit", + "orange" + ], + "emoji": "๐ŸŠ", + "text": "", + "type": 1, + "order": 3647, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "lemon", + "hexcode": "1F34B", + "tags": [ + "citrus", + "fruit" + ], + "emoji": "๐Ÿ‹", + "text": "", + "type": 1, + "order": 3648, + "group": 4, + "subgroup": 42, + "version": 1 + }, + { + "label": "lime", + "hexcode": "1F34B-200D-1F7E9", + "tags": [ + "citrus", + "fruit", + "tropical" + ], + "emoji": "๐Ÿ‹โ€๐ŸŸฉ", + "text": "", + "type": 1, + "order": 3649, + "group": 4, + "subgroup": 42, + "version": 15.1 + }, + { + "label": "banana", + "hexcode": "1F34C", + "tags": [ + "fruit" + ], + "emoji": "๐ŸŒ", + "text": "", + "type": 1, + "order": 3650, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "pineapple", + "hexcode": "1F34D", + "tags": [ + "fruit" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3651, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "mango", + "hexcode": "1F96D", + "tags": [ + "fruit", + "tropical" + ], + "emoji": "๐Ÿฅญ", + "text": "", + "type": 1, + "order": 3652, + "group": 4, + "subgroup": 42, + "version": 11 + }, + { + "label": "red apple", + "hexcode": "1F34E", + "tags": [ + "apple", + "fruit", + "red" + ], + "emoji": "๐ŸŽ", + "text": "", + "type": 1, + "order": 3653, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "green apple", + "hexcode": "1F34F", + "tags": [ + "apple", + "fruit", + "green" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3654, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "pear", + "hexcode": "1F350", + "tags": [ + "fruit" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3655, + "group": 4, + "subgroup": 42, + "version": 1 + }, + { + "label": "peach", + "hexcode": "1F351", + "tags": [ + "fruit" + ], + "emoji": "๐Ÿ‘", + "text": "", + "type": 1, + "order": 3656, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "cherries", + "hexcode": "1F352", + "tags": [ + "berries", + "cherry", + "fruit", + "red" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 3657, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "strawberry", + "hexcode": "1F353", + "tags": [ + "berry", + "fruit" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 3658, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "blueberries", + "hexcode": "1FAD0", + "tags": [ + "berry", + "bilberry", + "blue", + "blueberry" + ], + "emoji": "๐Ÿซ", + "text": "", + "type": 1, + "order": 3659, + "group": 4, + "subgroup": 42, + "version": 13 + }, + { + "label": "kiwi fruit", + "hexcode": "1F95D", + "tags": [ + "food", + "fruit", + "kiwi" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 3660, + "group": 4, + "subgroup": 42, + "version": 3 + }, + { + "label": "tomato", + "hexcode": "1F345", + "tags": [ + "fruit", + "vegetable" + ], + "emoji": "๐Ÿ…", + "text": "", + "type": 1, + "order": 3661, + "group": 4, + "subgroup": 42, + "version": 0.6 + }, + { + "label": "olive", + "hexcode": "1FAD2", + "tags": [ + "food" + ], + "emoji": "๐Ÿซ’", + "text": "", + "type": 1, + "order": 3662, + "group": 4, + "subgroup": 42, + "version": 13 + }, + { + "label": "coconut", + "hexcode": "1F965", + "tags": [ + "palm", + "piรฑa colada" + ], + "emoji": "๐Ÿฅฅ", + "text": "", + "type": 1, + "order": 3663, + "group": 4, + "subgroup": 42, + "version": 5 + }, + { + "label": "avocado", + "hexcode": "1F951", + "tags": [ + "food", + "fruit" + ], + "emoji": "๐Ÿฅ‘", + "text": "", + "type": 1, + "order": 3664, + "group": 4, + "subgroup": 43, + "version": 3 + }, + { + "label": "eggplant", + "hexcode": "1F346", + "tags": [ + "aubergine", + "vegetable" + ], + "emoji": "๐Ÿ†", + "text": "", + "type": 1, + "order": 3665, + "group": 4, + "subgroup": 43, + "version": 0.6 + }, + { + "label": "potato", + "hexcode": "1F954", + "tags": [ + "food", + "vegetable" + ], + "emoji": "๐Ÿฅ”", + "text": "", + "type": 1, + "order": 3666, + "group": 4, + "subgroup": 43, + "version": 3 + }, + { + "label": "carrot", + "hexcode": "1F955", + "tags": [ + "food", + "vegetable" + ], + "emoji": "๐Ÿฅ•", + "text": "", + "type": 1, + "order": 3667, + "group": 4, + "subgroup": 43, + "version": 3 + }, + { + "label": "ear of corn", + "hexcode": "1F33D", + "tags": [ + "corn", + "ear", + "maize", + "maze" + ], + "emoji": "๐ŸŒฝ", + "text": "", + "type": 1, + "order": 3668, + "group": 4, + "subgroup": 43, + "version": 0.6 + }, + { + "label": "hot pepper", + "hexcode": "1F336", + "tags": [ + "hot", + "pepper" + ], + "emoji": "๐ŸŒถ๏ธ", + "text": "๐ŸŒถ๏ธŽ", + "type": 0, + "order": 3670, + "group": 4, + "subgroup": 43, + "version": 0.7 + }, + { + "label": "bell pepper", + "hexcode": "1FAD1", + "tags": [ + "capsicum", + "pepper", + "vegetable" + ], + "emoji": "๐Ÿซ‘", + "text": "", + "type": 1, + "order": 3671, + "group": 4, + "subgroup": 43, + "version": 13 + }, + { + "label": "cucumber", + "hexcode": "1F952", + "tags": [ + "food", + "pickle", + "vegetable" + ], + "emoji": "๐Ÿฅ’", + "text": "", + "type": 1, + "order": 3672, + "group": 4, + "subgroup": 43, + "version": 3 + }, + { + "label": "leafy green", + "hexcode": "1F96C", + "tags": [ + "bok choy", + "cabbage", + "kale", + "lettuce" + ], + "emoji": "๐Ÿฅฌ", + "text": "", + "type": 1, + "order": 3673, + "group": 4, + "subgroup": 43, + "version": 11 + }, + { + "label": "broccoli", + "hexcode": "1F966", + "tags": [ + "wild cabbage" + ], + "emoji": "๐Ÿฅฆ", + "text": "", + "type": 1, + "order": 3674, + "group": 4, + "subgroup": 43, + "version": 5 + }, + { + "label": "garlic", + "hexcode": "1F9C4", + "tags": [ + "flavoring" + ], + "emoji": "๐Ÿง„", + "text": "", + "type": 1, + "order": 3675, + "group": 4, + "subgroup": 43, + "version": 12 + }, + { + "label": "onion", + "hexcode": "1F9C5", + "tags": [ + "flavoring" + ], + "emoji": "๐Ÿง…", + "text": "", + "type": 1, + "order": 3676, + "group": 4, + "subgroup": 43, + "version": 12 + }, + { + "label": "peanuts", + "hexcode": "1F95C", + "tags": [ + "food", + "nut", + "peanut", + "vegetable" + ], + "emoji": "๐Ÿฅœ", + "text": "", + "type": 1, + "order": 3677, + "group": 4, + "subgroup": 43, + "version": 3 + }, + { + "label": "beans", + "hexcode": "1FAD8", + "tags": [ + "food", + "kidney", + "legume" + ], + "emoji": "๐Ÿซ˜", + "text": "", + "type": 1, + "order": 3678, + "group": 4, + "subgroup": 43, + "version": 14 + }, + { + "label": "chestnut", + "hexcode": "1F330", + "tags": [ + "plant" + ], + "emoji": "๐ŸŒฐ", + "text": "", + "type": 1, + "order": 3679, + "group": 4, + "subgroup": 43, + "version": 0.6 + }, + { + "label": "ginger root", + "hexcode": "1FADA", + "tags": [ + "beer", + "root", + "spice" + ], + "emoji": "๐Ÿซš", + "text": "", + "type": 1, + "order": 3680, + "group": 4, + "subgroup": 43, + "version": 15 + }, + { + "label": "pea pod", + "hexcode": "1FADB", + "tags": [ + "beans", + "edamame", + "legume", + "pea", + "pod", + "vegetable" + ], + "emoji": "๐Ÿซ›", + "text": "", + "type": 1, + "order": 3681, + "group": 4, + "subgroup": 43, + "version": 15 + }, + { + "label": "brown mushroom", + "hexcode": "1F344-200D-1F7EB", + "tags": [ + "food", + "fungus", + "nature", + "vegetable" + ], + "emoji": "๐Ÿ„โ€๐ŸŸซ", + "text": "", + "type": 1, + "order": 3682, + "group": 4, + "subgroup": 43, + "version": 15.1 + }, + { + "label": "bread", + "hexcode": "1F35E", + "tags": [ + "loaf" + ], + "emoji": "๐Ÿž", + "text": "", + "type": 1, + "order": 3683, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "croissant", + "hexcode": "1F950", + "tags": [ + "bread", + "breakfast", + "food", + "french", + "roll" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 3684, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "baguette bread", + "hexcode": "1F956", + "tags": [ + "baguette", + "bread", + "food", + "french" + ], + "emoji": "๐Ÿฅ–", + "text": "", + "type": 1, + "order": 3685, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "flatbread", + "hexcode": "1FAD3", + "tags": [ + "arepa", + "lavash", + "naan", + "pita" + ], + "emoji": "๐Ÿซ“", + "text": "", + "type": 1, + "order": 3686, + "group": 4, + "subgroup": 44, + "version": 13 + }, + { + "label": "pretzel", + "hexcode": "1F968", + "tags": [ + "twisted" + ], + "emoji": "๐Ÿฅจ", + "text": "", + "type": 1, + "order": 3687, + "group": 4, + "subgroup": 44, + "version": 5 + }, + { + "label": "bagel", + "hexcode": "1F96F", + "tags": [ + "bakery", + "breakfast", + "schmear" + ], + "emoji": "๐Ÿฅฏ", + "text": "", + "type": 1, + "order": 3688, + "group": 4, + "subgroup": 44, + "version": 11 + }, + { + "label": "pancakes", + "hexcode": "1F95E", + "tags": [ + "breakfast", + "crรชpe", + "food", + "hotcake", + "pancake" + ], + "emoji": "๐Ÿฅž", + "text": "", + "type": 1, + "order": 3689, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "waffle", + "hexcode": "1F9C7", + "tags": [ + "breakfast", + "indecisive", + "iron" + ], + "emoji": "๐Ÿง‡", + "text": "", + "type": 1, + "order": 3690, + "group": 4, + "subgroup": 44, + "version": 12 + }, + { + "label": "cheese wedge", + "hexcode": "1F9C0", + "tags": [ + "cheese" + ], + "emoji": "๐Ÿง€", + "text": "", + "type": 1, + "order": 3691, + "group": 4, + "subgroup": 44, + "version": 1 + }, + { + "label": "meat on bone", + "hexcode": "1F356", + "tags": [ + "bone", + "meat" + ], + "emoji": "๐Ÿ–", + "text": "", + "type": 1, + "order": 3692, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "poultry leg", + "hexcode": "1F357", + "tags": [ + "bone", + "chicken", + "drumstick", + "leg", + "poultry" + ], + "emoji": "๐Ÿ—", + "text": "", + "type": 1, + "order": 3693, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "cut of meat", + "hexcode": "1F969", + "tags": [ + "chop", + "lambchop", + "porkchop", + "steak" + ], + "emoji": "๐Ÿฅฉ", + "text": "", + "type": 1, + "order": 3694, + "group": 4, + "subgroup": 44, + "version": 5 + }, + { + "label": "bacon", + "hexcode": "1F953", + "tags": [ + "breakfast", + "food", + "meat" + ], + "emoji": "๐Ÿฅ“", + "text": "", + "type": 1, + "order": 3695, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "hamburger", + "hexcode": "1F354", + "tags": [ + "burger" + ], + "emoji": "๐Ÿ”", + "text": "", + "type": 1, + "order": 3696, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "french fries", + "hexcode": "1F35F", + "tags": [ + "french", + "fries" + ], + "emoji": "๐ŸŸ", + "text": "", + "type": 1, + "order": 3697, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "pizza", + "hexcode": "1F355", + "tags": [ + "cheese", + "slice" + ], + "emoji": "๐Ÿ•", + "text": "", + "type": 1, + "order": 3698, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "hot dog", + "hexcode": "1F32D", + "tags": [ + "frankfurter", + "hotdog", + "sausage" + ], + "emoji": "๐ŸŒญ", + "text": "", + "type": 1, + "order": 3699, + "group": 4, + "subgroup": 44, + "version": 1 + }, + { + "label": "sandwich", + "hexcode": "1F96A", + "tags": [ + "bread" + ], + "emoji": "๐Ÿฅช", + "text": "", + "type": 1, + "order": 3700, + "group": 4, + "subgroup": 44, + "version": 5 + }, + { + "label": "taco", + "hexcode": "1F32E", + "tags": [ + "mexican" + ], + "emoji": "๐ŸŒฎ", + "text": "", + "type": 1, + "order": 3701, + "group": 4, + "subgroup": 44, + "version": 1 + }, + { + "label": "burrito", + "hexcode": "1F32F", + "tags": [ + "mexican", + "wrap" + ], + "emoji": "๐ŸŒฏ", + "text": "", + "type": 1, + "order": 3702, + "group": 4, + "subgroup": 44, + "version": 1 + }, + { + "label": "tamale", + "hexcode": "1FAD4", + "tags": [ + "mexican", + "wrapped" + ], + "emoji": "๐Ÿซ”", + "text": "", + "type": 1, + "order": 3703, + "group": 4, + "subgroup": 44, + "version": 13 + }, + { + "label": "stuffed flatbread", + "hexcode": "1F959", + "tags": [ + "falafel", + "flatbread", + "food", + "gyro", + "kebab", + "stuffed" + ], + "emoji": "๐Ÿฅ™", + "text": "", + "type": 1, + "order": 3704, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "falafel", + "hexcode": "1F9C6", + "tags": [ + "chickpea", + "meatball" + ], + "emoji": "๐Ÿง†", + "text": "", + "type": 1, + "order": 3705, + "group": 4, + "subgroup": 44, + "version": 12 + }, + { + "label": "egg", + "hexcode": "1F95A", + "tags": [ + "breakfast", + "food" + ], + "emoji": "๐Ÿฅš", + "text": "", + "type": 1, + "order": 3706, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "cooking", + "hexcode": "1F373", + "tags": [ + "breakfast", + "egg", + "frying", + "pan" + ], + "emoji": "๐Ÿณ", + "text": "", + "type": 1, + "order": 3707, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "shallow pan of food", + "hexcode": "1F958", + "tags": [ + "casserole", + "food", + "paella", + "pan", + "shallow" + ], + "emoji": "๐Ÿฅ˜", + "text": "", + "type": 1, + "order": 3708, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "pot of food", + "hexcode": "1F372", + "tags": [ + "pot", + "stew" + ], + "emoji": "๐Ÿฒ", + "text": "", + "type": 1, + "order": 3709, + "group": 4, + "subgroup": 44, + "version": 0.6 + }, + { + "label": "fondue", + "hexcode": "1FAD5", + "tags": [ + "cheese", + "chocolate", + "melted", + "pot", + "swiss" + ], + "emoji": "๐Ÿซ•", + "text": "", + "type": 1, + "order": 3710, + "group": 4, + "subgroup": 44, + "version": 13 + }, + { + "label": "bowl with spoon", + "hexcode": "1F963", + "tags": [ + "breakfast", + "cereal", + "congee" + ], + "emoji": "๐Ÿฅฃ", + "text": "", + "type": 1, + "order": 3711, + "group": 4, + "subgroup": 44, + "version": 5 + }, + { + "label": "green salad", + "hexcode": "1F957", + "tags": [ + "food", + "green", + "salad" + ], + "emoji": "๐Ÿฅ—", + "text": "", + "type": 1, + "order": 3712, + "group": 4, + "subgroup": 44, + "version": 3 + }, + { + "label": "popcorn", + "hexcode": "1F37F", + "tags": [ + "popcorn" + ], + "emoji": "๐Ÿฟ", + "text": "", + "type": 1, + "order": 3713, + "group": 4, + "subgroup": 44, + "version": 1 + }, + { + "label": "butter", + "hexcode": "1F9C8", + "tags": [ + "dairy" + ], + "emoji": "๐Ÿงˆ", + "text": "", + "type": 1, + "order": 3714, + "group": 4, + "subgroup": 44, + "version": 12 + }, + { + "label": "salt", + "hexcode": "1F9C2", + "tags": [ + "condiment", + "shaker" + ], + "emoji": "๐Ÿง‚", + "text": "", + "type": 1, + "order": 3715, + "group": 4, + "subgroup": 44, + "version": 11 + }, + { + "label": "canned food", + "hexcode": "1F96B", + "tags": [ + "can" + ], + "emoji": "๐Ÿฅซ", + "text": "", + "type": 1, + "order": 3716, + "group": 4, + "subgroup": 44, + "version": 5 + }, + { + "label": "bento box", + "hexcode": "1F371", + "tags": [ + "bento", + "box" + ], + "emoji": "๐Ÿฑ", + "text": "", + "type": 1, + "order": 3717, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "rice cracker", + "hexcode": "1F358", + "tags": [ + "cracker", + "rice" + ], + "emoji": "๐Ÿ˜", + "text": "", + "type": 1, + "order": 3718, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "rice ball", + "hexcode": "1F359", + "tags": [ + "ball", + "japanese", + "rice" + ], + "emoji": "๐Ÿ™", + "text": "", + "type": 1, + "order": 3719, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "cooked rice", + "hexcode": "1F35A", + "tags": [ + "cooked", + "rice" + ], + "emoji": "๐Ÿš", + "text": "", + "type": 1, + "order": 3720, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "curry rice", + "hexcode": "1F35B", + "tags": [ + "curry", + "rice" + ], + "emoji": "๐Ÿ›", + "text": "", + "type": 1, + "order": 3721, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "steaming bowl", + "hexcode": "1F35C", + "tags": [ + "bowl", + "noodle", + "ramen", + "steaming" + ], + "emoji": "๐Ÿœ", + "text": "", + "type": 1, + "order": 3722, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "spaghetti", + "hexcode": "1F35D", + "tags": [ + "pasta" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 3723, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "roasted sweet potato", + "hexcode": "1F360", + "tags": [ + "potato", + "roasted", + "sweet" + ], + "emoji": "๐Ÿ ", + "text": "", + "type": 1, + "order": 3724, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "oden", + "hexcode": "1F362", + "tags": [ + "kebab", + "seafood", + "skewer", + "stick" + ], + "emoji": "๐Ÿข", + "text": "", + "type": 1, + "order": 3725, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "sushi", + "hexcode": "1F363", + "tags": [ + "sushi" + ], + "emoji": "๐Ÿฃ", + "text": "", + "type": 1, + "order": 3726, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "fried shrimp", + "hexcode": "1F364", + "tags": [ + "fried", + "prawn", + "shrimp", + "tempura" + ], + "emoji": "๐Ÿค", + "text": "", + "type": 1, + "order": 3727, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "fish cake with swirl", + "hexcode": "1F365", + "tags": [ + "cake", + "fish", + "pastry", + "swirl" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 3728, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "moon cake", + "hexcode": "1F96E", + "tags": [ + "autumn", + "festival", + "yuรจbวng" + ], + "emoji": "๐Ÿฅฎ", + "text": "", + "type": 1, + "order": 3729, + "group": 4, + "subgroup": 45, + "version": 11 + }, + { + "label": "dango", + "hexcode": "1F361", + "tags": [ + "dessert", + "japanese", + "skewer", + "stick", + "sweet" + ], + "emoji": "๐Ÿก", + "text": "", + "type": 1, + "order": 3730, + "group": 4, + "subgroup": 45, + "version": 0.6 + }, + { + "label": "dumpling", + "hexcode": "1F95F", + "tags": [ + "empanada", + "gyลza", + "jiaozi", + "pierogi", + "potsticker" + ], + "emoji": "๐ŸฅŸ", + "text": "", + "type": 1, + "order": 3731, + "group": 4, + "subgroup": 45, + "version": 5 + }, + { + "label": "fortune cookie", + "hexcode": "1F960", + "tags": [ + "prophecy" + ], + "emoji": "๐Ÿฅ ", + "text": "", + "type": 1, + "order": 3732, + "group": 4, + "subgroup": 45, + "version": 5 + }, + { + "label": "takeout box", + "hexcode": "1F961", + "tags": [ + "oyster pail" + ], + "emoji": "๐Ÿฅก", + "text": "", + "type": 1, + "order": 3733, + "group": 4, + "subgroup": 45, + "version": 5 + }, + { + "label": "crab", + "hexcode": "1F980", + "tags": [ + "cancer", + "zodiac" + ], + "emoji": "๐Ÿฆ€", + "text": "", + "type": 1, + "order": 3734, + "group": 4, + "subgroup": 46, + "version": 1 + }, + { + "label": "lobster", + "hexcode": "1F99E", + "tags": [ + "bisque", + "claws", + "seafood" + ], + "emoji": "๐Ÿฆž", + "text": "", + "type": 1, + "order": 3735, + "group": 4, + "subgroup": 46, + "version": 11 + }, + { + "label": "shrimp", + "hexcode": "1F990", + "tags": [ + "food", + "shellfish", + "small" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3736, + "group": 4, + "subgroup": 46, + "version": 3 + }, + { + "label": "squid", + "hexcode": "1F991", + "tags": [ + "food", + "molusc" + ], + "emoji": "๐Ÿฆ‘", + "text": "", + "type": 1, + "order": 3737, + "group": 4, + "subgroup": 46, + "version": 3 + }, + { + "label": "oyster", + "hexcode": "1F9AA", + "tags": [ + "diving", + "pearl" + ], + "emoji": "๐Ÿฆช", + "text": "", + "type": 1, + "order": 3738, + "group": 4, + "subgroup": 46, + "version": 12 + }, + { + "label": "soft ice cream", + "hexcode": "1F366", + "tags": [ + "cream", + "dessert", + "ice", + "icecream", + "soft", + "sweet" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3739, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "shaved ice", + "hexcode": "1F367", + "tags": [ + "dessert", + "ice", + "shaved", + "sweet" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 3740, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "ice cream", + "hexcode": "1F368", + "tags": [ + "cream", + "dessert", + "ice", + "sweet" + ], + "emoji": "๐Ÿจ", + "text": "", + "type": 1, + "order": 3741, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "doughnut", + "hexcode": "1F369", + "tags": [ + "breakfast", + "dessert", + "donut", + "sweet" + ], + "emoji": "๐Ÿฉ", + "text": "", + "type": 1, + "order": 3742, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "cookie", + "hexcode": "1F36A", + "tags": [ + "dessert", + "sweet" + ], + "emoji": "๐Ÿช", + "text": "", + "type": 1, + "order": 3743, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "birthday cake", + "hexcode": "1F382", + "tags": [ + "birthday", + "cake", + "celebration", + "dessert", + "pastry", + "sweet" + ], + "emoji": "๐ŸŽ‚", + "text": "", + "type": 1, + "order": 3744, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "shortcake", + "hexcode": "1F370", + "tags": [ + "cake", + "dessert", + "pastry", + "slice", + "sweet" + ], + "emoji": "๐Ÿฐ", + "text": "", + "type": 1, + "order": 3745, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "cupcake", + "hexcode": "1F9C1", + "tags": [ + "bakery", + "sweet" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 3746, + "group": 4, + "subgroup": 47, + "version": 11 + }, + { + "label": "pie", + "hexcode": "1F967", + "tags": [ + "filling", + "pastry" + ], + "emoji": "๐Ÿฅง", + "text": "", + "type": 1, + "order": 3747, + "group": 4, + "subgroup": 47, + "version": 5 + }, + { + "label": "chocolate bar", + "hexcode": "1F36B", + "tags": [ + "bar", + "chocolate", + "dessert", + "sweet" + ], + "emoji": "๐Ÿซ", + "text": "", + "type": 1, + "order": 3748, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "candy", + "hexcode": "1F36C", + "tags": [ + "dessert", + "sweet" + ], + "emoji": "๐Ÿฌ", + "text": "", + "type": 1, + "order": 3749, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "lollipop", + "hexcode": "1F36D", + "tags": [ + "candy", + "dessert", + "sweet" + ], + "emoji": "๐Ÿญ", + "text": "", + "type": 1, + "order": 3750, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "custard", + "hexcode": "1F36E", + "tags": [ + "dessert", + "pudding", + "sweet" + ], + "emoji": "๐Ÿฎ", + "text": "", + "type": 1, + "order": 3751, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "honey pot", + "hexcode": "1F36F", + "tags": [ + "honey", + "honeypot", + "pot", + "sweet" + ], + "emoji": "๐Ÿฏ", + "text": "", + "type": 1, + "order": 3752, + "group": 4, + "subgroup": 47, + "version": 0.6 + }, + { + "label": "baby bottle", + "hexcode": "1F37C", + "tags": [ + "baby", + "bottle", + "drink", + "milk" + ], + "emoji": "๐Ÿผ", + "text": "", + "type": 1, + "order": 3753, + "group": 4, + "subgroup": 48, + "version": 1 + }, + { + "label": "glass of milk", + "hexcode": "1F95B", + "tags": [ + "drink", + "glass", + "milk" + ], + "emoji": "๐Ÿฅ›", + "text": "", + "type": 1, + "order": 3754, + "group": 4, + "subgroup": 48, + "version": 3 + }, + { + "label": "hot beverage", + "hexcode": "2615", + "tags": [ + "beverage", + "coffee", + "drink", + "hot", + "steaming", + "tea" + ], + "emoji": "โ˜•๏ธ", + "text": "โ˜•๏ธŽ", + "type": 1, + "order": 3755, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "teapot", + "hexcode": "1FAD6", + "tags": [ + "drink", + "pot", + "tea" + ], + "emoji": "๐Ÿซ–", + "text": "", + "type": 1, + "order": 3756, + "group": 4, + "subgroup": 48, + "version": 13 + }, + { + "label": "teacup without handle", + "hexcode": "1F375", + "tags": [ + "beverage", + "cup", + "drink", + "tea", + "teacup" + ], + "emoji": "๐Ÿต", + "text": "", + "type": 1, + "order": 3757, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "sake", + "hexcode": "1F376", + "tags": [ + "bar", + "beverage", + "bottle", + "cup", + "drink" + ], + "emoji": "๐Ÿถ", + "text": "", + "type": 1, + "order": 3758, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "bottle with popping cork", + "hexcode": "1F37E", + "tags": [ + "bar", + "bottle", + "cork", + "drink", + "popping" + ], + "emoji": "๐Ÿพ", + "text": "", + "type": 1, + "order": 3759, + "group": 4, + "subgroup": 48, + "version": 1 + }, + { + "label": "wine glass", + "hexcode": "1F377", + "tags": [ + "bar", + "beverage", + "drink", + "glass", + "wine" + ], + "emoji": "๐Ÿท", + "text": "", + "type": 1, + "order": 3760, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "cocktail glass", + "hexcode": "1F378", + "tags": [ + "bar", + "cocktail", + "drink", + "glass" + ], + "emoji": "๐Ÿธ๏ธ", + "text": "๐Ÿธ๏ธŽ", + "type": 1, + "order": 3761, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "tropical drink", + "hexcode": "1F379", + "tags": [ + "bar", + "drink", + "tropical" + ], + "emoji": "๐Ÿน", + "text": "", + "type": 1, + "order": 3762, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "beer mug", + "hexcode": "1F37A", + "tags": [ + "bar", + "beer", + "drink", + "mug" + ], + "emoji": "๐Ÿบ", + "text": "", + "type": 1, + "order": 3763, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "clinking beer mugs", + "hexcode": "1F37B", + "tags": [ + "bar", + "beer", + "clink", + "drink", + "mug" + ], + "emoji": "๐Ÿป", + "text": "", + "type": 1, + "order": 3764, + "group": 4, + "subgroup": 48, + "version": 0.6 + }, + { + "label": "clinking glasses", + "hexcode": "1F942", + "tags": [ + "celebrate", + "clink", + "drink", + "glass" + ], + "emoji": "๐Ÿฅ‚", + "text": "", + "type": 1, + "order": 3765, + "group": 4, + "subgroup": 48, + "version": 3 + }, + { + "label": "tumbler glass", + "hexcode": "1F943", + "tags": [ + "glass", + "liquor", + "shot", + "tumbler", + "whisky" + ], + "emoji": "๐Ÿฅƒ", + "text": "", + "type": 1, + "order": 3766, + "group": 4, + "subgroup": 48, + "version": 3 + }, + { + "label": "pouring liquid", + "hexcode": "1FAD7", + "tags": [ + "drink", + "empty", + "glass", + "spill" + ], + "emoji": "๐Ÿซ—", + "text": "", + "type": 1, + "order": 3767, + "group": 4, + "subgroup": 48, + "version": 14 + }, + { + "label": "cup with straw", + "hexcode": "1F964", + "tags": [ + "juice", + "soda" + ], + "emoji": "๐Ÿฅค", + "text": "", + "type": 1, + "order": 3768, + "group": 4, + "subgroup": 48, + "version": 5 + }, + { + "label": "bubble tea", + "hexcode": "1F9CB", + "tags": [ + "bubble", + "milk", + "pearl", + "tea" + ], + "emoji": "๐Ÿง‹", + "text": "", + "type": 1, + "order": 3769, + "group": 4, + "subgroup": 48, + "version": 13 + }, + { + "label": "beverage box", + "hexcode": "1F9C3", + "tags": [ + "beverage", + "box", + "juice", + "straw", + "sweet" + ], + "emoji": "๐Ÿงƒ", + "text": "", + "type": 1, + "order": 3770, + "group": 4, + "subgroup": 48, + "version": 12 + }, + { + "label": "mate", + "hexcode": "1F9C9", + "tags": [ + "drink" + ], + "emoji": "๐Ÿง‰", + "text": "", + "type": 1, + "order": 3771, + "group": 4, + "subgroup": 48, + "version": 12 + }, + { + "label": "ice", + "hexcode": "1F9CA", + "tags": [ + "cold", + "ice cube", + "iceberg" + ], + "emoji": "๐ŸงŠ", + "text": "", + "type": 1, + "order": 3772, + "group": 4, + "subgroup": 48, + "version": 12 + }, + { + "label": "chopsticks", + "hexcode": "1F962", + "tags": [ + "hashi" + ], + "emoji": "๐Ÿฅข", + "text": "", + "type": 1, + "order": 3773, + "group": 4, + "subgroup": 49, + "version": 5 + }, + { + "label": "fork and knife with plate", + "hexcode": "1F37D", + "tags": [ + "cooking", + "fork", + "knife", + "plate" + ], + "emoji": "๐Ÿฝ๏ธ", + "text": "๐Ÿฝ๏ธŽ", + "type": 0, + "order": 3775, + "group": 4, + "subgroup": 49, + "version": 0.7 + }, + { + "label": "fork and knife", + "hexcode": "1F374", + "tags": [ + "cooking", + "cutlery", + "fork", + "knife" + ], + "emoji": "๐Ÿด", + "text": "", + "type": 1, + "order": 3776, + "group": 4, + "subgroup": 49, + "version": 0.6 + }, + { + "label": "spoon", + "hexcode": "1F944", + "tags": [ + "tableware" + ], + "emoji": "๐Ÿฅ„", + "text": "", + "type": 1, + "order": 3777, + "group": 4, + "subgroup": 49, + "version": 3 + }, + { + "label": "kitchen knife", + "hexcode": "1F52A", + "tags": [ + "cooking", + "hocho", + "knife", + "tool", + "weapon" + ], + "emoji": "๐Ÿ”ช", + "text": "", + "type": 1, + "order": 3778, + "group": 4, + "subgroup": 49, + "version": 0.6 + }, + { + "label": "jar", + "hexcode": "1FAD9", + "tags": [ + "condiment", + "container", + "empty", + "sauce", + "store" + ], + "emoji": "๐Ÿซ™", + "text": "", + "type": 1, + "order": 3779, + "group": 4, + "subgroup": 49, + "version": 14 + }, + { + "label": "amphora", + "hexcode": "1F3FA", + "tags": [ + "aquarius", + "cooking", + "drink", + "jug", + "zodiac" + ], + "emoji": "๐Ÿบ", + "text": "", + "type": 1, + "order": 3780, + "group": 4, + "subgroup": 49, + "version": 1 + }, + { + "label": "globe showing Europe-Africa", + "hexcode": "1F30D", + "tags": [ + "africa", + "earth", + "europe", + "globe", + "globe showing europe-africa", + "world" + ], + "emoji": "๐ŸŒ๏ธ", + "text": "๐ŸŒ๏ธŽ", + "type": 1, + "order": 3781, + "group": 5, + "subgroup": 50, + "version": 0.7 + }, + { + "label": "globe showing Americas", + "hexcode": "1F30E", + "tags": [ + "americas", + "earth", + "globe", + "globe showing americas", + "world" + ], + "emoji": "๐ŸŒŽ๏ธ", + "text": "๐ŸŒŽ๏ธŽ", + "type": 1, + "order": 3782, + "group": 5, + "subgroup": 50, + "version": 0.7 + }, + { + "label": "globe showing Asia-Australia", + "hexcode": "1F30F", + "tags": [ + "asia", + "australia", + "earth", + "globe", + "globe showing asia-australia", + "world" + ], + "emoji": "๐ŸŒ๏ธ", + "text": "๐ŸŒ๏ธŽ", + "type": 1, + "order": 3783, + "group": 5, + "subgroup": 50, + "version": 0.6 + }, + { + "label": "globe with meridians", + "hexcode": "1F310", + "tags": [ + "earth", + "globe", + "meridians", + "world" + ], + "emoji": "๐ŸŒ", + "text": "", + "type": 1, + "order": 3784, + "group": 5, + "subgroup": 50, + "version": 1 + }, + { + "label": "world map", + "hexcode": "1F5FA", + "tags": [ + "map", + "world" + ], + "emoji": "๐Ÿ—บ๏ธ", + "text": "๐Ÿ—บ๏ธŽ", + "type": 0, + "order": 3786, + "group": 5, + "subgroup": 50, + "version": 0.7 + }, + { + "label": "map of Japan", + "hexcode": "1F5FE", + "tags": [ + "japan", + "map", + "map of japan" + ], + "emoji": "๐Ÿ—พ", + "text": "", + "type": 1, + "order": 3787, + "group": 5, + "subgroup": 50, + "version": 0.6 + }, + { + "label": "compass", + "hexcode": "1F9ED", + "tags": [ + "magnetic", + "navigation", + "orienteering" + ], + "emoji": "๐Ÿงญ", + "text": "", + "type": 1, + "order": 3788, + "group": 5, + "subgroup": 50, + "version": 11 + }, + { + "label": "snow-capped mountain", + "hexcode": "1F3D4", + "tags": [ + "cold", + "mountain", + "snow" + ], + "emoji": "๐Ÿ”๏ธ", + "text": "๐Ÿ”๏ธŽ", + "type": 0, + "order": 3790, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "mountain", + "hexcode": "26F0", + "tags": [ + "mountain" + ], + "emoji": "โ›ฐ๏ธ", + "text": "โ›ฐ๏ธŽ", + "type": 0, + "order": 3792, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "volcano", + "hexcode": "1F30B", + "tags": [ + "eruption", + "mountain" + ], + "emoji": "๐ŸŒ‹", + "text": "", + "type": 1, + "order": 3793, + "group": 5, + "subgroup": 51, + "version": 0.6 + }, + { + "label": "mount fuji", + "hexcode": "1F5FB", + "tags": [ + "fuji", + "mountain" + ], + "emoji": "๐Ÿ—ป", + "text": "", + "type": 1, + "order": 3794, + "group": 5, + "subgroup": 51, + "version": 0.6 + }, + { + "label": "camping", + "hexcode": "1F3D5", + "tags": [ + "camping" + ], + "emoji": "๐Ÿ•๏ธ", + "text": "๐Ÿ•๏ธŽ", + "type": 0, + "order": 3796, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "beach with umbrella", + "hexcode": "1F3D6", + "tags": [ + "beach", + "umbrella" + ], + "emoji": "๐Ÿ–๏ธ", + "text": "๐Ÿ–๏ธŽ", + "type": 0, + "order": 3798, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "desert", + "hexcode": "1F3DC", + "tags": [ + "desert" + ], + "emoji": "๐Ÿœ๏ธ", + "text": "๐Ÿœ๏ธŽ", + "type": 0, + "order": 3800, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "desert island", + "hexcode": "1F3DD", + "tags": [ + "desert", + "island" + ], + "emoji": "๐Ÿ๏ธ", + "text": "๐Ÿ๏ธŽ", + "type": 0, + "order": 3802, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "national park", + "hexcode": "1F3DE", + "tags": [ + "park" + ], + "emoji": "๐Ÿž๏ธ", + "text": "๐Ÿž๏ธŽ", + "type": 0, + "order": 3804, + "group": 5, + "subgroup": 51, + "version": 0.7 + }, + { + "label": "stadium", + "hexcode": "1F3DF", + "tags": [ + "stadium" + ], + "emoji": "๐ŸŸ๏ธ", + "text": "๐ŸŸ๏ธŽ", + "type": 0, + "order": 3806, + "group": 5, + "subgroup": 52, + "version": 0.7 + }, + { + "label": "classical building", + "hexcode": "1F3DB", + "tags": [ + "classical" + ], + "emoji": "๐Ÿ›๏ธ", + "text": "๐Ÿ›๏ธŽ", + "type": 0, + "order": 3808, + "group": 5, + "subgroup": 52, + "version": 0.7 + }, + { + "label": "building construction", + "hexcode": "1F3D7", + "tags": [ + "construction" + ], + "emoji": "๐Ÿ—๏ธ", + "text": "๐Ÿ—๏ธŽ", + "type": 0, + "order": 3810, + "group": 5, + "subgroup": 52, + "version": 0.7 + }, + { + "label": "brick", + "hexcode": "1F9F1", + "tags": [ + "bricks", + "clay", + "mortar", + "wall" + ], + "emoji": "๐Ÿงฑ", + "text": "", + "type": 1, + "order": 3811, + "group": 5, + "subgroup": 52, + "version": 11 + }, + { + "label": "rock", + "hexcode": "1FAA8", + "tags": [ + "boulder", + "heavy", + "solid", + "stone" + ], + "emoji": "๐Ÿชจ", + "text": "", + "type": 1, + "order": 3812, + "group": 5, + "subgroup": 52, + "version": 13 + }, + { + "label": "wood", + "hexcode": "1FAB5", + "tags": [ + "log", + "lumber", + "timber" + ], + "emoji": "๐Ÿชต", + "text": "", + "type": 1, + "order": 3813, + "group": 5, + "subgroup": 52, + "version": 13 + }, + { + "label": "hut", + "hexcode": "1F6D6", + "tags": [ + "house", + "roundhouse", + "yurt" + ], + "emoji": "๐Ÿ›–", + "text": "", + "type": 1, + "order": 3814, + "group": 5, + "subgroup": 52, + "version": 13 + }, + { + "label": "houses", + "hexcode": "1F3D8", + "tags": [ + "houses" + ], + "emoji": "๐Ÿ˜๏ธ", + "text": "๐Ÿ˜๏ธŽ", + "type": 0, + "order": 3816, + "group": 5, + "subgroup": 52, + "version": 0.7 + }, + { + "label": "derelict house", + "hexcode": "1F3DA", + "tags": [ + "derelict", + "house" + ], + "emoji": "๐Ÿš๏ธ", + "text": "๐Ÿš๏ธŽ", + "type": 0, + "order": 3818, + "group": 5, + "subgroup": 52, + "version": 0.7 + }, + { + "label": "house", + "hexcode": "1F3E0", + "tags": [ + "home" + ], + "emoji": "๐Ÿ ๏ธ", + "text": "๐Ÿ ๏ธŽ", + "type": 1, + "order": 3819, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "house with garden", + "hexcode": "1F3E1", + "tags": [ + "garden", + "home", + "house" + ], + "emoji": "๐Ÿก", + "text": "", + "type": 1, + "order": 3820, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "office building", + "hexcode": "1F3E2", + "tags": [ + "building" + ], + "emoji": "๐Ÿข", + "text": "", + "type": 1, + "order": 3821, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "Japanese post office", + "hexcode": "1F3E3", + "tags": [ + "japanese", + "japanese post office", + "post" + ], + "emoji": "๐Ÿฃ", + "text": "", + "type": 1, + "order": 3822, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "post office", + "hexcode": "1F3E4", + "tags": [ + "european", + "post" + ], + "emoji": "๐Ÿค", + "text": "", + "type": 1, + "order": 3823, + "group": 5, + "subgroup": 52, + "version": 1 + }, + { + "label": "hospital", + "hexcode": "1F3E5", + "tags": [ + "doctor", + "medicine" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 3824, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "bank", + "hexcode": "1F3E6", + "tags": [ + "building" + ], + "emoji": "๐Ÿฆ", + "text": "", + "type": 1, + "order": 3825, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "hotel", + "hexcode": "1F3E8", + "tags": [ + "building" + ], + "emoji": "๐Ÿจ", + "text": "", + "type": 1, + "order": 3826, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "love hotel", + "hexcode": "1F3E9", + "tags": [ + "hotel", + "love" + ], + "emoji": "๐Ÿฉ", + "text": "", + "type": 1, + "order": 3827, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "convenience store", + "hexcode": "1F3EA", + "tags": [ + "convenience", + "store" + ], + "emoji": "๐Ÿช", + "text": "", + "type": 1, + "order": 3828, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "school", + "hexcode": "1F3EB", + "tags": [ + "building" + ], + "emoji": "๐Ÿซ", + "text": "", + "type": 1, + "order": 3829, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "department store", + "hexcode": "1F3EC", + "tags": [ + "department", + "store" + ], + "emoji": "๐Ÿฌ", + "text": "", + "type": 1, + "order": 3830, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "factory", + "hexcode": "1F3ED", + "tags": [ + "building" + ], + "emoji": "๐Ÿญ๏ธ", + "text": "๐Ÿญ๏ธŽ", + "type": 1, + "order": 3831, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "Japanese castle", + "hexcode": "1F3EF", + "tags": [ + "castle", + "japanese" + ], + "emoji": "๐Ÿฏ", + "text": "", + "type": 1, + "order": 3832, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "castle", + "hexcode": "1F3F0", + "tags": [ + "european" + ], + "emoji": "๐Ÿฐ", + "text": "", + "type": 1, + "order": 3833, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "wedding", + "hexcode": "1F492", + "tags": [ + "chapel", + "romance" + ], + "emoji": "๐Ÿ’’", + "text": "", + "type": 1, + "order": 3834, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "Tokyo tower", + "hexcode": "1F5FC", + "tags": [ + "tokyo", + "tower" + ], + "emoji": "๐Ÿ—ผ", + "text": "", + "type": 1, + "order": 3835, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "Statue of Liberty", + "hexcode": "1F5FD", + "tags": [ + "liberty", + "statue", + "statue of liberty" + ], + "emoji": "๐Ÿ—ฝ", + "text": "", + "type": 1, + "order": 3836, + "group": 5, + "subgroup": 52, + "version": 0.6 + }, + { + "label": "church", + "hexcode": "26EA", + "tags": [ + "christian", + "cross", + "religion" + ], + "emoji": "โ›ช๏ธ", + "text": "โ›ช๏ธŽ", + "type": 1, + "order": 3837, + "group": 5, + "subgroup": 53, + "version": 0.6 + }, + { + "label": "mosque", + "hexcode": "1F54C", + "tags": [ + "islam", + "muslim", + "religion" + ], + "emoji": "๐Ÿ•Œ", + "text": "", + "type": 1, + "order": 3838, + "group": 5, + "subgroup": 53, + "version": 1 + }, + { + "label": "hindu temple", + "hexcode": "1F6D5", + "tags": [ + "hindu", + "temple" + ], + "emoji": "๐Ÿ›•", + "text": "", + "type": 1, + "order": 3839, + "group": 5, + "subgroup": 53, + "version": 12 + }, + { + "label": "synagogue", + "hexcode": "1F54D", + "tags": [ + "jew", + "jewish", + "religion", + "temple" + ], + "emoji": "๐Ÿ•", + "text": "", + "type": 1, + "order": 3840, + "group": 5, + "subgroup": 53, + "version": 1 + }, + { + "label": "shinto shrine", + "hexcode": "26E9", + "tags": [ + "religion", + "shinto", + "shrine" + ], + "emoji": "โ›ฉ๏ธ", + "text": "โ›ฉ๏ธŽ", + "type": 0, + "order": 3842, + "group": 5, + "subgroup": 53, + "version": 0.7 + }, + { + "label": "kaaba", + "hexcode": "1F54B", + "tags": [ + "islam", + "muslim", + "religion" + ], + "emoji": "๐Ÿ•‹", + "text": "", + "type": 1, + "order": 3843, + "group": 5, + "subgroup": 53, + "version": 1 + }, + { + "label": "fountain", + "hexcode": "26F2", + "tags": [ + "fountain" + ], + "emoji": "โ›ฒ๏ธ", + "text": "โ›ฒ๏ธŽ", + "type": 1, + "order": 3844, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "tent", + "hexcode": "26FA", + "tags": [ + "camping" + ], + "emoji": "โ›บ๏ธ", + "text": "โ›บ๏ธŽ", + "type": 1, + "order": 3845, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "foggy", + "hexcode": "1F301", + "tags": [ + "fog" + ], + "emoji": "๐ŸŒ", + "text": "", + "type": 1, + "order": 3846, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "night with stars", + "hexcode": "1F303", + "tags": [ + "night", + "star" + ], + "emoji": "๐ŸŒƒ", + "text": "", + "type": 1, + "order": 3847, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "cityscape", + "hexcode": "1F3D9", + "tags": [ + "city" + ], + "emoji": "๐Ÿ™๏ธ", + "text": "๐Ÿ™๏ธŽ", + "type": 0, + "order": 3849, + "group": 5, + "subgroup": 54, + "version": 0.7 + }, + { + "label": "sunrise over mountains", + "hexcode": "1F304", + "tags": [ + "morning", + "mountain", + "sun", + "sunrise" + ], + "emoji": "๐ŸŒ„", + "text": "", + "type": 1, + "order": 3850, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "sunrise", + "hexcode": "1F305", + "tags": [ + "morning", + "sun" + ], + "emoji": "๐ŸŒ…", + "text": "", + "type": 1, + "order": 3851, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "cityscape at dusk", + "hexcode": "1F306", + "tags": [ + "city", + "dusk", + "evening", + "landscape", + "sunset" + ], + "emoji": "๐ŸŒ†", + "text": "", + "type": 1, + "order": 3852, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "sunset", + "hexcode": "1F307", + "tags": [ + "dusk", + "sun" + ], + "emoji": "๐ŸŒ‡", + "text": "", + "type": 1, + "order": 3853, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "bridge at night", + "hexcode": "1F309", + "tags": [ + "bridge", + "night" + ], + "emoji": "๐ŸŒ‰", + "text": "", + "type": 1, + "order": 3854, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "hot springs", + "hexcode": "2668", + "tags": [ + "hot", + "hotsprings", + "springs", + "steaming" + ], + "emoji": "โ™จ๏ธ", + "text": "โ™จ๏ธŽ", + "type": 0, + "order": 3856, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "carousel horse", + "hexcode": "1F3A0", + "tags": [ + "carousel", + "horse" + ], + "emoji": "๐ŸŽ ", + "text": "", + "type": 1, + "order": 3857, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "playground slide", + "hexcode": "1F6DD", + "tags": [ + "amusement park", + "play", + "theme park" + ], + "emoji": "๐Ÿ›", + "text": "", + "type": 1, + "order": 3858, + "group": 5, + "subgroup": 54, + "version": 14 + }, + { + "label": "ferris wheel", + "hexcode": "1F3A1", + "tags": [ + "amusement park", + "ferris", + "theme park", + "wheel" + ], + "emoji": "๐ŸŽก", + "text": "", + "type": 1, + "order": 3859, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "roller coaster", + "hexcode": "1F3A2", + "tags": [ + "amusement park", + "coaster", + "roller", + "theme park" + ], + "emoji": "๐ŸŽข", + "text": "", + "type": 1, + "order": 3860, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "barber pole", + "hexcode": "1F488", + "tags": [ + "barber", + "haircut", + "pole" + ], + "emoji": "๐Ÿ’ˆ", + "text": "", + "type": 1, + "order": 3861, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "circus tent", + "hexcode": "1F3AA", + "tags": [ + "circus", + "tent" + ], + "emoji": "๐ŸŽช", + "text": "", + "type": 1, + "order": 3862, + "group": 5, + "subgroup": 54, + "version": 0.6 + }, + { + "label": "locomotive", + "hexcode": "1F682", + "tags": [ + "engine", + "railway", + "steam", + "train" + ], + "emoji": "๐Ÿš‚", + "text": "", + "type": 1, + "order": 3863, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "railway car", + "hexcode": "1F683", + "tags": [ + "car", + "electric", + "railway", + "train", + "tram", + "trolleybus" + ], + "emoji": "๐Ÿšƒ", + "text": "", + "type": 1, + "order": 3864, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "high-speed train", + "hexcode": "1F684", + "tags": [ + "railway", + "shinkansen", + "speed", + "train" + ], + "emoji": "๐Ÿš„", + "text": "", + "type": 1, + "order": 3865, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "bullet train", + "hexcode": "1F685", + "tags": [ + "bullet", + "railway", + "shinkansen", + "speed", + "train" + ], + "emoji": "๐Ÿš…", + "text": "", + "type": 1, + "order": 3866, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "train", + "hexcode": "1F686", + "tags": [ + "railway" + ], + "emoji": "๐Ÿš†", + "text": "", + "type": 1, + "order": 3867, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "metro", + "hexcode": "1F687", + "tags": [ + "subway" + ], + "emoji": "๐Ÿš‡๏ธ", + "text": "๐Ÿš‡๏ธŽ", + "type": 1, + "order": 3868, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "light rail", + "hexcode": "1F688", + "tags": [ + "railway" + ], + "emoji": "๐Ÿšˆ", + "text": "", + "type": 1, + "order": 3869, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "station", + "hexcode": "1F689", + "tags": [ + "railway", + "train" + ], + "emoji": "๐Ÿš‰", + "text": "", + "type": 1, + "order": 3870, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "tram", + "hexcode": "1F68A", + "tags": [ + "trolleybus" + ], + "emoji": "๐ŸšŠ", + "text": "", + "type": 1, + "order": 3871, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "monorail", + "hexcode": "1F69D", + "tags": [ + "vehicle" + ], + "emoji": "๐Ÿš", + "text": "", + "type": 1, + "order": 3872, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "mountain railway", + "hexcode": "1F69E", + "tags": [ + "car", + "mountain", + "railway" + ], + "emoji": "๐Ÿšž", + "text": "", + "type": 1, + "order": 3873, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "tram car", + "hexcode": "1F68B", + "tags": [ + "car", + "tram", + "trolleybus" + ], + "emoji": "๐Ÿš‹", + "text": "", + "type": 1, + "order": 3874, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "bus", + "hexcode": "1F68C", + "tags": [ + "vehicle" + ], + "emoji": "๐ŸšŒ", + "text": "", + "type": 1, + "order": 3875, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "oncoming bus", + "hexcode": "1F68D", + "tags": [ + "bus", + "oncoming" + ], + "emoji": "๐Ÿš๏ธ", + "text": "๐Ÿš๏ธŽ", + "type": 1, + "order": 3876, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "trolleybus", + "hexcode": "1F68E", + "tags": [ + "bus", + "tram", + "trolley" + ], + "emoji": "๐ŸšŽ", + "text": "", + "type": 1, + "order": 3877, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "minibus", + "hexcode": "1F690", + "tags": [ + "bus" + ], + "emoji": "๐Ÿš", + "text": "", + "type": 1, + "order": 3878, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "ambulance", + "hexcode": "1F691", + "tags": [ + "vehicle" + ], + "emoji": "๐Ÿš‘๏ธ", + "text": "๐Ÿš‘๏ธŽ", + "type": 1, + "order": 3879, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "fire engine", + "hexcode": "1F692", + "tags": [ + "engine", + "fire", + "truck" + ], + "emoji": "๐Ÿš’", + "text": "", + "type": 1, + "order": 3880, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "police car", + "hexcode": "1F693", + "tags": [ + "car", + "patrol", + "police" + ], + "emoji": "๐Ÿš“", + "text": "", + "type": 1, + "order": 3881, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "oncoming police car", + "hexcode": "1F694", + "tags": [ + "car", + "oncoming", + "police" + ], + "emoji": "๐Ÿš”๏ธ", + "text": "๐Ÿš”๏ธŽ", + "type": 1, + "order": 3882, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "taxi", + "hexcode": "1F695", + "tags": [ + "vehicle" + ], + "emoji": "๐Ÿš•", + "text": "", + "type": 1, + "order": 3883, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "oncoming taxi", + "hexcode": "1F696", + "tags": [ + "oncoming", + "taxi" + ], + "emoji": "๐Ÿš–", + "text": "", + "type": 1, + "order": 3884, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "automobile", + "hexcode": "1F697", + "tags": [ + "car" + ], + "emoji": "๐Ÿš—", + "text": "", + "type": 1, + "order": 3885, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "oncoming automobile", + "hexcode": "1F698", + "tags": [ + "automobile", + "car", + "oncoming" + ], + "emoji": "๐Ÿš˜๏ธ", + "text": "๐Ÿš˜๏ธŽ", + "type": 1, + "order": 3886, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "sport utility vehicle", + "hexcode": "1F699", + "tags": [ + "recreational", + "sport utility" + ], + "emoji": "๐Ÿš™", + "text": "", + "type": 1, + "order": 3887, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "pickup truck", + "hexcode": "1F6FB", + "tags": [ + "pick-up", + "pickup", + "truck" + ], + "emoji": "๐Ÿ›ป", + "text": "", + "type": 1, + "order": 3888, + "group": 5, + "subgroup": 55, + "version": 13 + }, + { + "label": "delivery truck", + "hexcode": "1F69A", + "tags": [ + "delivery", + "truck" + ], + "emoji": "๐Ÿšš", + "text": "", + "type": 1, + "order": 3889, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "articulated lorry", + "hexcode": "1F69B", + "tags": [ + "lorry", + "semi", + "truck" + ], + "emoji": "๐Ÿš›", + "text": "", + "type": 1, + "order": 3890, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "tractor", + "hexcode": "1F69C", + "tags": [ + "vehicle" + ], + "emoji": "๐Ÿšœ", + "text": "", + "type": 1, + "order": 3891, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "racing car", + "hexcode": "1F3CE", + "tags": [ + "car", + "racing" + ], + "emoji": "๐ŸŽ๏ธ", + "text": "๐ŸŽ๏ธŽ", + "type": 0, + "order": 3893, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "motorcycle", + "hexcode": "1F3CD", + "tags": [ + "racing" + ], + "emoji": "๐Ÿ๏ธ", + "text": "๐Ÿ๏ธŽ", + "type": 0, + "order": 3895, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "motor scooter", + "hexcode": "1F6F5", + "tags": [ + "motor", + "scooter" + ], + "emoji": "๐Ÿ›ต", + "text": "", + "type": 1, + "order": 3896, + "group": 5, + "subgroup": 55, + "version": 3 + }, + { + "label": "manual wheelchair", + "hexcode": "1F9BD", + "tags": [ + "accessibility" + ], + "emoji": "๐Ÿฆฝ", + "text": "", + "type": 1, + "order": 3897, + "group": 5, + "subgroup": 55, + "version": 12 + }, + { + "label": "motorized wheelchair", + "hexcode": "1F9BC", + "tags": [ + "accessibility" + ], + "emoji": "๐Ÿฆผ", + "text": "", + "type": 1, + "order": 3898, + "group": 5, + "subgroup": 55, + "version": 12 + }, + { + "label": "auto rickshaw", + "hexcode": "1F6FA", + "tags": [ + "tuk tuk" + ], + "emoji": "๐Ÿ›บ", + "text": "", + "type": 1, + "order": 3899, + "group": 5, + "subgroup": 55, + "version": 12 + }, + { + "label": "bicycle", + "hexcode": "1F6B2", + "tags": [ + "bike" + ], + "emoji": "๐Ÿšฒ๏ธ", + "text": "๐Ÿšฒ๏ธŽ", + "type": 1, + "order": 3900, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "kick scooter", + "hexcode": "1F6F4", + "tags": [ + "kick", + "scooter" + ], + "emoji": "๐Ÿ›ด", + "text": "", + "type": 1, + "order": 3901, + "group": 5, + "subgroup": 55, + "version": 3 + }, + { + "label": "skateboard", + "hexcode": "1F6F9", + "tags": [ + "board" + ], + "emoji": "๐Ÿ›น", + "text": "", + "type": 1, + "order": 3902, + "group": 5, + "subgroup": 55, + "version": 11 + }, + { + "label": "roller skate", + "hexcode": "1F6FC", + "tags": [ + "roller", + "skate" + ], + "emoji": "๐Ÿ›ผ", + "text": "", + "type": 1, + "order": 3903, + "group": 5, + "subgroup": 55, + "version": 13 + }, + { + "label": "bus stop", + "hexcode": "1F68F", + "tags": [ + "bus", + "stop" + ], + "emoji": "๐Ÿš", + "text": "", + "type": 1, + "order": 3904, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "motorway", + "hexcode": "1F6E3", + "tags": [ + "highway", + "road" + ], + "emoji": "๐Ÿ›ฃ๏ธ", + "text": "๐Ÿ›ฃ๏ธŽ", + "type": 0, + "order": 3906, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "railway track", + "hexcode": "1F6E4", + "tags": [ + "railway", + "train" + ], + "emoji": "๐Ÿ›ค๏ธ", + "text": "๐Ÿ›ค๏ธŽ", + "type": 0, + "order": 3908, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "oil drum", + "hexcode": "1F6E2", + "tags": [ + "drum", + "oil" + ], + "emoji": "๐Ÿ›ข๏ธ", + "text": "๐Ÿ›ข๏ธŽ", + "type": 0, + "order": 3910, + "group": 5, + "subgroup": 55, + "version": 0.7 + }, + { + "label": "fuel pump", + "hexcode": "26FD", + "tags": [ + "diesel", + "fuel", + "fuelpump", + "gas", + "pump", + "station" + ], + "emoji": "โ›ฝ๏ธ", + "text": "โ›ฝ๏ธŽ", + "type": 1, + "order": 3911, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "wheel", + "hexcode": "1F6DE", + "tags": [ + "circle", + "tire", + "turn" + ], + "emoji": "๐Ÿ›ž", + "text": "", + "type": 1, + "order": 3912, + "group": 5, + "subgroup": 55, + "version": 14 + }, + { + "label": "police car light", + "hexcode": "1F6A8", + "tags": [ + "beacon", + "car", + "light", + "police", + "revolving" + ], + "emoji": "๐Ÿšจ", + "text": "", + "type": 1, + "order": 3913, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "horizontal traffic light", + "hexcode": "1F6A5", + "tags": [ + "light", + "signal", + "traffic" + ], + "emoji": "๐Ÿšฅ", + "text": "", + "type": 1, + "order": 3914, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "vertical traffic light", + "hexcode": "1F6A6", + "tags": [ + "light", + "signal", + "traffic" + ], + "emoji": "๐Ÿšฆ", + "text": "", + "type": 1, + "order": 3915, + "group": 5, + "subgroup": 55, + "version": 1 + }, + { + "label": "stop sign", + "hexcode": "1F6D1", + "tags": [ + "octagonal", + "sign", + "stop" + ], + "emoji": "๐Ÿ›‘", + "text": "", + "type": 1, + "order": 3916, + "group": 5, + "subgroup": 55, + "version": 3 + }, + { + "label": "construction", + "hexcode": "1F6A7", + "tags": [ + "barrier" + ], + "emoji": "๐Ÿšง", + "text": "", + "type": 1, + "order": 3917, + "group": 5, + "subgroup": 55, + "version": 0.6 + }, + { + "label": "anchor", + "hexcode": "2693", + "tags": [ + "ship", + "tool" + ], + "emoji": "โš“๏ธ", + "text": "โš“๏ธŽ", + "type": 1, + "order": 3918, + "group": 5, + "subgroup": 56, + "version": 0.6 + }, + { + "label": "ring buoy", + "hexcode": "1F6DF", + "tags": [ + "float", + "life preserver", + "life saver", + "rescue", + "safety" + ], + "emoji": "๐Ÿ›Ÿ", + "text": "", + "type": 1, + "order": 3919, + "group": 5, + "subgroup": 56, + "version": 14 + }, + { + "label": "sailboat", + "hexcode": "26F5", + "tags": [ + "boat", + "resort", + "sea", + "yacht" + ], + "emoji": "โ›ต๏ธ", + "text": "โ›ต๏ธŽ", + "type": 1, + "order": 3920, + "group": 5, + "subgroup": 56, + "version": 0.6 + }, + { + "label": "canoe", + "hexcode": "1F6F6", + "tags": [ + "boat" + ], + "emoji": "๐Ÿ›ถ", + "text": "", + "type": 1, + "order": 3921, + "group": 5, + "subgroup": 56, + "version": 3 + }, + { + "label": "speedboat", + "hexcode": "1F6A4", + "tags": [ + "boat" + ], + "emoji": "๐Ÿšค", + "text": "", + "type": 1, + "order": 3922, + "group": 5, + "subgroup": 56, + "version": 0.6 + }, + { + "label": "passenger ship", + "hexcode": "1F6F3", + "tags": [ + "passenger", + "ship" + ], + "emoji": "๐Ÿ›ณ๏ธ", + "text": "๐Ÿ›ณ๏ธŽ", + "type": 0, + "order": 3924, + "group": 5, + "subgroup": 56, + "version": 0.7 + }, + { + "label": "ferry", + "hexcode": "26F4", + "tags": [ + "boat", + "passenger" + ], + "emoji": "โ›ด๏ธ", + "text": "โ›ด๏ธŽ", + "type": 0, + "order": 3926, + "group": 5, + "subgroup": 56, + "version": 0.7 + }, + { + "label": "motor boat", + "hexcode": "1F6E5", + "tags": [ + "boat", + "motorboat" + ], + "emoji": "๐Ÿ›ฅ๏ธ", + "text": "๐Ÿ›ฅ๏ธŽ", + "type": 0, + "order": 3928, + "group": 5, + "subgroup": 56, + "version": 0.7 + }, + { + "label": "ship", + "hexcode": "1F6A2", + "tags": [ + "boat", + "passenger" + ], + "emoji": "๐Ÿšข", + "text": "", + "type": 1, + "order": 3929, + "group": 5, + "subgroup": 56, + "version": 0.6 + }, + { + "label": "airplane", + "hexcode": "2708", + "tags": [ + "aeroplane" + ], + "emoji": "โœˆ๏ธ", + "text": "โœˆ๏ธŽ", + "type": 0, + "order": 3931, + "group": 5, + "subgroup": 57, + "version": 0.6 + }, + { + "label": "small airplane", + "hexcode": "1F6E9", + "tags": [ + "aeroplane", + "airplane" + ], + "emoji": "๐Ÿ›ฉ๏ธ", + "text": "๐Ÿ›ฉ๏ธŽ", + "type": 0, + "order": 3933, + "group": 5, + "subgroup": 57, + "version": 0.7 + }, + { + "label": "airplane departure", + "hexcode": "1F6EB", + "tags": [ + "aeroplane", + "airplane", + "check-in", + "departure", + "departures" + ], + "emoji": "๐Ÿ›ซ", + "text": "", + "type": 1, + "order": 3934, + "group": 5, + "subgroup": 57, + "version": 1 + }, + { + "label": "airplane arrival", + "hexcode": "1F6EC", + "tags": [ + "aeroplane", + "airplane", + "arrivals", + "arriving", + "landing" + ], + "emoji": "๐Ÿ›ฌ", + "text": "", + "type": 1, + "order": 3935, + "group": 5, + "subgroup": 57, + "version": 1 + }, + { + "label": "parachute", + "hexcode": "1FA82", + "tags": [ + "hang-glide", + "parasail", + "skydive" + ], + "emoji": "๐Ÿช‚", + "text": "", + "type": 1, + "order": 3936, + "group": 5, + "subgroup": 57, + "version": 12 + }, + { + "label": "seat", + "hexcode": "1F4BA", + "tags": [ + "chair" + ], + "emoji": "๐Ÿ’บ", + "text": "", + "type": 1, + "order": 3937, + "group": 5, + "subgroup": 57, + "version": 0.6 + }, + { + "label": "helicopter", + "hexcode": "1F681", + "tags": [ + "vehicle" + ], + "emoji": "๐Ÿš", + "text": "", + "type": 1, + "order": 3938, + "group": 5, + "subgroup": 57, + "version": 1 + }, + { + "label": "suspension railway", + "hexcode": "1F69F", + "tags": [ + "railway", + "suspension" + ], + "emoji": "๐ŸšŸ", + "text": "", + "type": 1, + "order": 3939, + "group": 5, + "subgroup": 57, + "version": 1 + }, + { + "label": "mountain cableway", + "hexcode": "1F6A0", + "tags": [ + "cable", + "gondola", + "mountain" + ], + "emoji": "๐Ÿš ", + "text": "", + "type": 1, + "order": 3940, + "group": 5, + "subgroup": 57, + "version": 1 + }, + { + "label": "aerial tramway", + "hexcode": "1F6A1", + "tags": [ + "aerial", + "cable", + "car", + "gondola", + "tramway" + ], + "emoji": "๐Ÿšก", + "text": "", + "type": 1, + "order": 3941, + "group": 5, + "subgroup": 57, + "version": 1 + }, + { + "label": "satellite", + "hexcode": "1F6F0", + "tags": [ + "space" + ], + "emoji": "๐Ÿ›ฐ๏ธ", + "text": "๐Ÿ›ฐ๏ธŽ", + "type": 0, + "order": 3943, + "group": 5, + "subgroup": 57, + "version": 0.7 + }, + { + "label": "rocket", + "hexcode": "1F680", + "tags": [ + "space" + ], + "emoji": "๐Ÿš€", + "text": "", + "type": 1, + "order": 3944, + "group": 5, + "subgroup": 57, + "version": 0.6 + }, + { + "label": "flying saucer", + "hexcode": "1F6F8", + "tags": [ + "ufo" + ], + "emoji": "๐Ÿ›ธ", + "text": "", + "type": 1, + "order": 3945, + "group": 5, + "subgroup": 57, + "version": 5 + }, + { + "label": "bellhop bell", + "hexcode": "1F6CE", + "tags": [ + "bell", + "bellhop", + "hotel" + ], + "emoji": "๐Ÿ›Ž๏ธ", + "text": "๐Ÿ›Ž๏ธŽ", + "type": 0, + "order": 3947, + "group": 5, + "subgroup": 58, + "version": 0.7 + }, + { + "label": "luggage", + "hexcode": "1F9F3", + "tags": [ + "packing", + "travel" + ], + "emoji": "๐Ÿงณ", + "text": "", + "type": 1, + "order": 3948, + "group": 5, + "subgroup": 58, + "version": 11 + }, + { + "label": "hourglass done", + "hexcode": "231B", + "tags": [ + "sand", + "timer" + ], + "emoji": "โŒ›๏ธ", + "text": "โŒ›๏ธŽ", + "type": 1, + "order": 3949, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "hourglass not done", + "hexcode": "23F3", + "tags": [ + "hourglass", + "sand", + "timer" + ], + "emoji": "โณ๏ธ", + "text": "โณ๏ธŽ", + "type": 1, + "order": 3950, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "watch", + "hexcode": "231A", + "tags": [ + "clock" + ], + "emoji": "โŒš๏ธ", + "text": "โŒš๏ธŽ", + "type": 1, + "order": 3951, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "alarm clock", + "hexcode": "23F0", + "tags": [ + "alarm", + "clock" + ], + "emoji": "โฐ๏ธ", + "text": "โฐ๏ธŽ", + "type": 1, + "order": 3952, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "stopwatch", + "hexcode": "23F1", + "tags": [ + "clock" + ], + "emoji": "โฑ๏ธ", + "text": "โฑ๏ธŽ", + "type": 0, + "order": 3954, + "group": 5, + "subgroup": 59, + "version": 1 + }, + { + "label": "timer clock", + "hexcode": "23F2", + "tags": [ + "clock", + "timer" + ], + "emoji": "โฒ๏ธ", + "text": "โฒ๏ธŽ", + "type": 0, + "order": 3956, + "group": 5, + "subgroup": 59, + "version": 1 + }, + { + "label": "mantelpiece clock", + "hexcode": "1F570", + "tags": [ + "clock" + ], + "emoji": "๐Ÿ•ฐ๏ธ", + "text": "๐Ÿ•ฐ๏ธŽ", + "type": 0, + "order": 3958, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "twelve oโ€™clock", + "hexcode": "1F55B", + "tags": [ + "00", + "12", + "12:00", + "clock", + "oโ€™clock", + "twelve" + ], + "emoji": "๐Ÿ•›๏ธ", + "text": "๐Ÿ•›๏ธŽ", + "type": 1, + "order": 3959, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "twelve-thirty", + "hexcode": "1F567", + "tags": [ + "12", + "12:30", + "clock", + "thirty", + "twelve" + ], + "emoji": "๐Ÿ•ง๏ธ", + "text": "๐Ÿ•ง๏ธŽ", + "type": 1, + "order": 3960, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "one oโ€™clock", + "hexcode": "1F550", + "tags": [ + "00", + "1", + "1:00", + "clock", + "one", + "oโ€™clock" + ], + "emoji": "๐Ÿ•๏ธ", + "text": "๐Ÿ•๏ธŽ", + "type": 1, + "order": 3961, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "one-thirty", + "hexcode": "1F55C", + "tags": [ + "1", + "1:30", + "clock", + "one", + "thirty" + ], + "emoji": "๐Ÿ•œ๏ธ", + "text": "๐Ÿ•œ๏ธŽ", + "type": 1, + "order": 3962, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "two oโ€™clock", + "hexcode": "1F551", + "tags": [ + "00", + "2", + "2:00", + "clock", + "oโ€™clock", + "two" + ], + "emoji": "๐Ÿ•‘๏ธ", + "text": "๐Ÿ•‘๏ธŽ", + "type": 1, + "order": 3963, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "two-thirty", + "hexcode": "1F55D", + "tags": [ + "2", + "2:30", + "clock", + "thirty", + "two" + ], + "emoji": "๐Ÿ•๏ธ", + "text": "๐Ÿ•๏ธŽ", + "type": 1, + "order": 3964, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "three oโ€™clock", + "hexcode": "1F552", + "tags": [ + "00", + "3", + "3:00", + "clock", + "oโ€™clock", + "three" + ], + "emoji": "๐Ÿ•’๏ธ", + "text": "๐Ÿ•’๏ธŽ", + "type": 1, + "order": 3965, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "three-thirty", + "hexcode": "1F55E", + "tags": [ + "3", + "3:30", + "clock", + "thirty", + "three" + ], + "emoji": "๐Ÿ•ž๏ธ", + "text": "๐Ÿ•ž๏ธŽ", + "type": 1, + "order": 3966, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "four oโ€™clock", + "hexcode": "1F553", + "tags": [ + "00", + "4", + "4:00", + "clock", + "four", + "oโ€™clock" + ], + "emoji": "๐Ÿ•“๏ธ", + "text": "๐Ÿ•“๏ธŽ", + "type": 1, + "order": 3967, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "four-thirty", + "hexcode": "1F55F", + "tags": [ + "4", + "4:30", + "clock", + "four", + "thirty" + ], + "emoji": "๐Ÿ•Ÿ๏ธ", + "text": "๐Ÿ•Ÿ๏ธŽ", + "type": 1, + "order": 3968, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "five oโ€™clock", + "hexcode": "1F554", + "tags": [ + "00", + "5", + "5:00", + "clock", + "five", + "oโ€™clock" + ], + "emoji": "๐Ÿ•”๏ธ", + "text": "๐Ÿ•”๏ธŽ", + "type": 1, + "order": 3969, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "five-thirty", + "hexcode": "1F560", + "tags": [ + "5", + "5:30", + "clock", + "five", + "thirty" + ], + "emoji": "๐Ÿ• ๏ธ", + "text": "๐Ÿ• ๏ธŽ", + "type": 1, + "order": 3970, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "six oโ€™clock", + "hexcode": "1F555", + "tags": [ + "00", + "6", + "6:00", + "clock", + "oโ€™clock", + "six" + ], + "emoji": "๐Ÿ••๏ธ", + "text": "๐Ÿ••๏ธŽ", + "type": 1, + "order": 3971, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "six-thirty", + "hexcode": "1F561", + "tags": [ + "6", + "6:30", + "clock", + "six", + "thirty" + ], + "emoji": "๐Ÿ•ก๏ธ", + "text": "๐Ÿ•ก๏ธŽ", + "type": 1, + "order": 3972, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "seven oโ€™clock", + "hexcode": "1F556", + "tags": [ + "00", + "7", + "7:00", + "clock", + "oโ€™clock", + "seven" + ], + "emoji": "๐Ÿ•–๏ธ", + "text": "๐Ÿ•–๏ธŽ", + "type": 1, + "order": 3973, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "seven-thirty", + "hexcode": "1F562", + "tags": [ + "7", + "7:30", + "clock", + "seven", + "thirty" + ], + "emoji": "๐Ÿ•ข๏ธ", + "text": "๐Ÿ•ข๏ธŽ", + "type": 1, + "order": 3974, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "eight oโ€™clock", + "hexcode": "1F557", + "tags": [ + "00", + "8", + "8:00", + "clock", + "eight", + "oโ€™clock" + ], + "emoji": "๐Ÿ•—๏ธ", + "text": "๐Ÿ•—๏ธŽ", + "type": 1, + "order": 3975, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "eight-thirty", + "hexcode": "1F563", + "tags": [ + "8", + "8:30", + "clock", + "eight", + "thirty" + ], + "emoji": "๐Ÿ•ฃ๏ธ", + "text": "๐Ÿ•ฃ๏ธŽ", + "type": 1, + "order": 3976, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "nine oโ€™clock", + "hexcode": "1F558", + "tags": [ + "00", + "9", + "9:00", + "clock", + "nine", + "oโ€™clock" + ], + "emoji": "๐Ÿ•˜๏ธ", + "text": "๐Ÿ•˜๏ธŽ", + "type": 1, + "order": 3977, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "nine-thirty", + "hexcode": "1F564", + "tags": [ + "9", + "9:30", + "clock", + "nine", + "thirty" + ], + "emoji": "๐Ÿ•ค๏ธ", + "text": "๐Ÿ•ค๏ธŽ", + "type": 1, + "order": 3978, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "ten oโ€™clock", + "hexcode": "1F559", + "tags": [ + "00", + "10", + "10:00", + "clock", + "oโ€™clock", + "ten" + ], + "emoji": "๐Ÿ•™๏ธ", + "text": "๐Ÿ•™๏ธŽ", + "type": 1, + "order": 3979, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "ten-thirty", + "hexcode": "1F565", + "tags": [ + "10", + "10:30", + "clock", + "ten", + "thirty" + ], + "emoji": "๐Ÿ•ฅ๏ธ", + "text": "๐Ÿ•ฅ๏ธŽ", + "type": 1, + "order": 3980, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "eleven oโ€™clock", + "hexcode": "1F55A", + "tags": [ + "00", + "11", + "11:00", + "clock", + "eleven", + "oโ€™clock" + ], + "emoji": "๐Ÿ•š๏ธ", + "text": "๐Ÿ•š๏ธŽ", + "type": 1, + "order": 3981, + "group": 5, + "subgroup": 59, + "version": 0.6 + }, + { + "label": "eleven-thirty", + "hexcode": "1F566", + "tags": [ + "11", + "11:30", + "clock", + "eleven", + "thirty" + ], + "emoji": "๐Ÿ•ฆ๏ธ", + "text": "๐Ÿ•ฆ๏ธŽ", + "type": 1, + "order": 3982, + "group": 5, + "subgroup": 59, + "version": 0.7 + }, + { + "label": "new moon", + "hexcode": "1F311", + "tags": [ + "dark", + "moon" + ], + "emoji": "๐ŸŒ‘", + "text": "", + "type": 1, + "order": 3983, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "waxing crescent moon", + "hexcode": "1F312", + "tags": [ + "crescent", + "moon", + "waxing" + ], + "emoji": "๐ŸŒ’", + "text": "", + "type": 1, + "order": 3984, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "first quarter moon", + "hexcode": "1F313", + "tags": [ + "moon", + "quarter" + ], + "emoji": "๐ŸŒ“", + "text": "", + "type": 1, + "order": 3985, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "waxing gibbous moon", + "hexcode": "1F314", + "tags": [ + "gibbous", + "moon", + "waxing" + ], + "emoji": "๐ŸŒ”", + "text": "", + "type": 1, + "order": 3986, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "full moon", + "hexcode": "1F315", + "tags": [ + "full", + "moon" + ], + "emoji": "๐ŸŒ•๏ธ", + "text": "๐ŸŒ•๏ธŽ", + "type": 1, + "order": 3987, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "waning gibbous moon", + "hexcode": "1F316", + "tags": [ + "gibbous", + "moon", + "waning" + ], + "emoji": "๐ŸŒ–", + "text": "", + "type": 1, + "order": 3988, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "last quarter moon", + "hexcode": "1F317", + "tags": [ + "moon", + "quarter" + ], + "emoji": "๐ŸŒ—", + "text": "", + "type": 1, + "order": 3989, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "waning crescent moon", + "hexcode": "1F318", + "tags": [ + "crescent", + "moon", + "waning" + ], + "emoji": "๐ŸŒ˜", + "text": "", + "type": 1, + "order": 3990, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "crescent moon", + "hexcode": "1F319", + "tags": [ + "crescent", + "moon" + ], + "emoji": "๐ŸŒ™", + "text": "", + "type": 1, + "order": 3991, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "new moon face", + "hexcode": "1F31A", + "tags": [ + "face", + "moon" + ], + "emoji": "๐ŸŒš", + "text": "", + "type": 1, + "order": 3992, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "first quarter moon face", + "hexcode": "1F31B", + "tags": [ + "face", + "moon", + "quarter" + ], + "emoji": "๐ŸŒ›", + "text": "", + "type": 1, + "order": 3993, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "last quarter moon face", + "hexcode": "1F31C", + "tags": [ + "face", + "moon", + "quarter" + ], + "emoji": "๐ŸŒœ๏ธ", + "text": "๐ŸŒœ๏ธŽ", + "type": 1, + "order": 3994, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "thermometer", + "hexcode": "1F321", + "tags": [ + "weather" + ], + "emoji": "๐ŸŒก๏ธ", + "text": "๐ŸŒก๏ธŽ", + "type": 0, + "order": 3996, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "sun", + "hexcode": "2600", + "tags": [ + "bright", + "rays", + "sunny" + ], + "emoji": "โ˜€๏ธ", + "text": "โ˜€๏ธŽ", + "type": 0, + "order": 3998, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "full moon face", + "hexcode": "1F31D", + "tags": [ + "bright", + "face", + "full", + "moon" + ], + "emoji": "๐ŸŒ", + "text": "", + "type": 1, + "order": 3999, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "sun with face", + "hexcode": "1F31E", + "tags": [ + "bright", + "face", + "sun" + ], + "emoji": "๐ŸŒž", + "text": "", + "type": 1, + "order": 4000, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "ringed planet", + "hexcode": "1FA90", + "tags": [ + "saturn", + "saturnine" + ], + "emoji": "๐Ÿช", + "text": "", + "type": 1, + "order": 4001, + "group": 5, + "subgroup": 60, + "version": 12 + }, + { + "label": "star", + "hexcode": "2B50", + "tags": [ + "star" + ], + "emoji": "โญ๏ธ", + "text": "โญ๏ธŽ", + "type": 1, + "order": 4002, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "glowing star", + "hexcode": "1F31F", + "tags": [ + "glittery", + "glow", + "shining", + "sparkle", + "star" + ], + "emoji": "๐ŸŒŸ", + "text": "", + "type": 1, + "order": 4003, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "shooting star", + "hexcode": "1F320", + "tags": [ + "falling", + "shooting", + "star" + ], + "emoji": "๐ŸŒ ", + "text": "", + "type": 1, + "order": 4004, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "milky way", + "hexcode": "1F30C", + "tags": [ + "space" + ], + "emoji": "๐ŸŒŒ", + "text": "", + "type": 1, + "order": 4005, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "cloud", + "hexcode": "2601", + "tags": [ + "weather" + ], + "emoji": "โ˜๏ธ", + "text": "โ˜๏ธŽ", + "type": 0, + "order": 4007, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "sun behind cloud", + "hexcode": "26C5", + "tags": [ + "cloud", + "sun" + ], + "emoji": "โ›…๏ธ", + "text": "โ›…๏ธŽ", + "type": 1, + "order": 4008, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "cloud with lightning and rain", + "hexcode": "26C8", + "tags": [ + "cloud", + "rain", + "thunder" + ], + "emoji": "โ›ˆ๏ธ", + "text": "โ›ˆ๏ธŽ", + "type": 0, + "order": 4010, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "sun behind small cloud", + "hexcode": "1F324", + "tags": [ + "cloud", + "sun" + ], + "emoji": "๐ŸŒค๏ธ", + "text": "๐ŸŒค๏ธŽ", + "type": 0, + "order": 4012, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "sun behind large cloud", + "hexcode": "1F325", + "tags": [ + "cloud", + "sun" + ], + "emoji": "๐ŸŒฅ๏ธ", + "text": "๐ŸŒฅ๏ธŽ", + "type": 0, + "order": 4014, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "sun behind rain cloud", + "hexcode": "1F326", + "tags": [ + "cloud", + "rain", + "sun" + ], + "emoji": "๐ŸŒฆ๏ธ", + "text": "๐ŸŒฆ๏ธŽ", + "type": 0, + "order": 4016, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "cloud with rain", + "hexcode": "1F327", + "tags": [ + "cloud", + "rain" + ], + "emoji": "๐ŸŒง๏ธ", + "text": "๐ŸŒง๏ธŽ", + "type": 0, + "order": 4018, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "cloud with snow", + "hexcode": "1F328", + "tags": [ + "cloud", + "cold", + "snow" + ], + "emoji": "๐ŸŒจ๏ธ", + "text": "๐ŸŒจ๏ธŽ", + "type": 0, + "order": 4020, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "cloud with lightning", + "hexcode": "1F329", + "tags": [ + "cloud", + "lightning" + ], + "emoji": "๐ŸŒฉ๏ธ", + "text": "๐ŸŒฉ๏ธŽ", + "type": 0, + "order": 4022, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "tornado", + "hexcode": "1F32A", + "tags": [ + "cloud", + "whirlwind" + ], + "emoji": "๐ŸŒช๏ธ", + "text": "๐ŸŒช๏ธŽ", + "type": 0, + "order": 4024, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "fog", + "hexcode": "1F32B", + "tags": [ + "cloud" + ], + "emoji": "๐ŸŒซ๏ธ", + "text": "๐ŸŒซ๏ธŽ", + "type": 0, + "order": 4026, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "wind face", + "hexcode": "1F32C", + "tags": [ + "blow", + "cloud", + "face", + "wind" + ], + "emoji": "๐ŸŒฌ๏ธ", + "text": "๐ŸŒฌ๏ธŽ", + "type": 0, + "order": 4028, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "cyclone", + "hexcode": "1F300", + "tags": [ + "dizzy", + "hurricane", + "twister", + "typhoon" + ], + "emoji": "๐ŸŒ€", + "text": "", + "type": 1, + "order": 4029, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "rainbow", + "hexcode": "1F308", + "tags": [ + "rain" + ], + "emoji": "๐ŸŒˆ", + "text": "", + "type": 1, + "order": 4030, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "closed umbrella", + "hexcode": "1F302", + "tags": [ + "clothing", + "rain", + "umbrella" + ], + "emoji": "๐ŸŒ‚", + "text": "", + "type": 1, + "order": 4031, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "umbrella", + "hexcode": "2602", + "tags": [ + "clothing", + "rain" + ], + "emoji": "โ˜‚๏ธ", + "text": "โ˜‚๏ธŽ", + "type": 0, + "order": 4033, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "umbrella with rain drops", + "hexcode": "2614", + "tags": [ + "clothing", + "drop", + "rain", + "umbrella" + ], + "emoji": "โ˜”๏ธ", + "text": "โ˜”๏ธŽ", + "type": 1, + "order": 4034, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "umbrella on ground", + "hexcode": "26F1", + "tags": [ + "rain", + "sun", + "umbrella" + ], + "emoji": "โ›ฑ๏ธ", + "text": "โ›ฑ๏ธŽ", + "type": 0, + "order": 4036, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "high voltage", + "hexcode": "26A1", + "tags": [ + "danger", + "electric", + "lightning", + "voltage", + "zap" + ], + "emoji": "โšก๏ธ", + "text": "โšก๏ธŽ", + "type": 1, + "order": 4037, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "snowflake", + "hexcode": "2744", + "tags": [ + "cold", + "snow" + ], + "emoji": "โ„๏ธ", + "text": "โ„๏ธŽ", + "type": 0, + "order": 4039, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "snowman", + "hexcode": "2603", + "tags": [ + "cold", + "snow" + ], + "emoji": "โ˜ƒ๏ธ", + "text": "โ˜ƒ๏ธŽ", + "type": 0, + "order": 4041, + "group": 5, + "subgroup": 60, + "version": 0.7 + }, + { + "label": "snowman without snow", + "hexcode": "26C4", + "tags": [ + "cold", + "snow", + "snowman" + ], + "emoji": "โ›„๏ธ", + "text": "โ›„๏ธŽ", + "type": 1, + "order": 4042, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "comet", + "hexcode": "2604", + "tags": [ + "space" + ], + "emoji": "โ˜„๏ธ", + "text": "โ˜„๏ธŽ", + "type": 0, + "order": 4044, + "group": 5, + "subgroup": 60, + "version": 1 + }, + { + "label": "fire", + "hexcode": "1F525", + "tags": [ + "flame", + "tool" + ], + "emoji": "๐Ÿ”ฅ", + "text": "", + "type": 1, + "order": 4045, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "droplet", + "hexcode": "1F4A7", + "tags": [ + "cold", + "comic", + "drop", + "sweat" + ], + "emoji": "๐Ÿ’ง", + "text": "", + "type": 1, + "order": 4046, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "water wave", + "hexcode": "1F30A", + "tags": [ + "ocean", + "water", + "wave" + ], + "emoji": "๐ŸŒŠ", + "text": "", + "type": 1, + "order": 4047, + "group": 5, + "subgroup": 60, + "version": 0.6 + }, + { + "label": "jack-o-lantern", + "hexcode": "1F383", + "tags": [ + "celebration", + "halloween", + "jack", + "lantern" + ], + "emoji": "๐ŸŽƒ", + "text": "", + "type": 1, + "order": 4048, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "Christmas tree", + "hexcode": "1F384", + "tags": [ + "celebration", + "christmas", + "tree" + ], + "emoji": "๐ŸŽ„", + "text": "", + "type": 1, + "order": 4049, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "fireworks", + "hexcode": "1F386", + "tags": [ + "celebration" + ], + "emoji": "๐ŸŽ†", + "text": "", + "type": 1, + "order": 4050, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "sparkler", + "hexcode": "1F387", + "tags": [ + "celebration", + "fireworks", + "sparkle" + ], + "emoji": "๐ŸŽ‡", + "text": "", + "type": 1, + "order": 4051, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "firecracker", + "hexcode": "1F9E8", + "tags": [ + "dynamite", + "explosive", + "fireworks" + ], + "emoji": "๐Ÿงจ", + "text": "", + "type": 1, + "order": 4052, + "group": 6, + "subgroup": 61, + "version": 11 + }, + { + "label": "sparkles", + "hexcode": "2728", + "tags": [ + "*", + "sparkle", + "star" + ], + "emoji": "โœจ๏ธ", + "text": "โœจ๏ธŽ", + "type": 1, + "order": 4053, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "balloon", + "hexcode": "1F388", + "tags": [ + "celebration" + ], + "emoji": "๐ŸŽˆ", + "text": "", + "type": 1, + "order": 4054, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "party popper", + "hexcode": "1F389", + "tags": [ + "celebration", + "party", + "popper", + "tada" + ], + "emoji": "๐ŸŽ‰", + "text": "", + "type": 1, + "order": 4055, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "confetti ball", + "hexcode": "1F38A", + "tags": [ + "ball", + "celebration", + "confetti" + ], + "emoji": "๐ŸŽŠ", + "text": "", + "type": 1, + "order": 4056, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "tanabata tree", + "hexcode": "1F38B", + "tags": [ + "banner", + "celebration", + "japanese", + "tree" + ], + "emoji": "๐ŸŽ‹", + "text": "", + "type": 1, + "order": 4057, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "pine decoration", + "hexcode": "1F38D", + "tags": [ + "bamboo", + "celebration", + "japanese", + "pine" + ], + "emoji": "๐ŸŽ", + "text": "", + "type": 1, + "order": 4058, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "Japanese dolls", + "hexcode": "1F38E", + "tags": [ + "celebration", + "doll", + "festival", + "japanese", + "japanese dolls" + ], + "emoji": "๐ŸŽŽ", + "text": "", + "type": 1, + "order": 4059, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "carp streamer", + "hexcode": "1F38F", + "tags": [ + "carp", + "celebration", + "streamer" + ], + "emoji": "๐ŸŽ", + "text": "", + "type": 1, + "order": 4060, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "wind chime", + "hexcode": "1F390", + "tags": [ + "bell", + "celebration", + "chime", + "wind" + ], + "emoji": "๐ŸŽ", + "text": "", + "type": 1, + "order": 4061, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "moon viewing ceremony", + "hexcode": "1F391", + "tags": [ + "celebration", + "ceremony", + "moon" + ], + "emoji": "๐ŸŽ‘", + "text": "", + "type": 1, + "order": 4062, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "red envelope", + "hexcode": "1F9E7", + "tags": [ + "gift", + "good luck", + "hรณngbฤo", + "lai see", + "money" + ], + "emoji": "๐Ÿงง", + "text": "", + "type": 1, + "order": 4063, + "group": 6, + "subgroup": 61, + "version": 11 + }, + { + "label": "ribbon", + "hexcode": "1F380", + "tags": [ + "celebration" + ], + "emoji": "๐ŸŽ€", + "text": "", + "type": 1, + "order": 4064, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "wrapped gift", + "hexcode": "1F381", + "tags": [ + "box", + "celebration", + "gift", + "present", + "wrapped" + ], + "emoji": "๐ŸŽ", + "text": "", + "type": 1, + "order": 4065, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "reminder ribbon", + "hexcode": "1F397", + "tags": [ + "celebration", + "reminder", + "ribbon" + ], + "emoji": "๐ŸŽ—๏ธ", + "text": "๐ŸŽ—๏ธŽ", + "type": 0, + "order": 4067, + "group": 6, + "subgroup": 61, + "version": 0.7 + }, + { + "label": "admission tickets", + "hexcode": "1F39F", + "tags": [ + "admission", + "ticket" + ], + "emoji": "๐ŸŽŸ๏ธ", + "text": "๐ŸŽŸ๏ธŽ", + "type": 0, + "order": 4069, + "group": 6, + "subgroup": 61, + "version": 0.7 + }, + { + "label": "ticket", + "hexcode": "1F3AB", + "tags": [ + "admission" + ], + "emoji": "๐ŸŽซ", + "text": "", + "type": 1, + "order": 4070, + "group": 6, + "subgroup": 61, + "version": 0.6 + }, + { + "label": "military medal", + "hexcode": "1F396", + "tags": [ + "celebration", + "medal", + "military" + ], + "emoji": "๐ŸŽ–๏ธ", + "text": "๐ŸŽ–๏ธŽ", + "type": 0, + "order": 4072, + "group": 6, + "subgroup": 62, + "version": 0.7 + }, + { + "label": "trophy", + "hexcode": "1F3C6", + "tags": [ + "prize" + ], + "emoji": "๐Ÿ†๏ธ", + "text": "๐Ÿ†๏ธŽ", + "type": 1, + "order": 4073, + "group": 6, + "subgroup": 62, + "version": 0.6 + }, + { + "label": "sports medal", + "hexcode": "1F3C5", + "tags": [ + "medal" + ], + "emoji": "๐Ÿ…", + "text": "", + "type": 1, + "order": 4074, + "group": 6, + "subgroup": 62, + "version": 1 + }, + { + "label": "1st place medal", + "hexcode": "1F947", + "tags": [ + "first", + "gold", + "medal" + ], + "emoji": "๐Ÿฅ‡", + "text": "", + "type": 1, + "order": 4075, + "group": 6, + "subgroup": 62, + "version": 3 + }, + { + "label": "2nd place medal", + "hexcode": "1F948", + "tags": [ + "medal", + "second", + "silver" + ], + "emoji": "๐Ÿฅˆ", + "text": "", + "type": 1, + "order": 4076, + "group": 6, + "subgroup": 62, + "version": 3 + }, + { + "label": "3rd place medal", + "hexcode": "1F949", + "tags": [ + "bronze", + "medal", + "third" + ], + "emoji": "๐Ÿฅ‰", + "text": "", + "type": 1, + "order": 4077, + "group": 6, + "subgroup": 62, + "version": 3 + }, + { + "label": "soccer ball", + "hexcode": "26BD", + "tags": [ + "ball", + "football", + "soccer" + ], + "emoji": "โšฝ๏ธ", + "text": "โšฝ๏ธŽ", + "type": 1, + "order": 4078, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "baseball", + "hexcode": "26BE", + "tags": [ + "ball" + ], + "emoji": "โšพ๏ธ", + "text": "โšพ๏ธŽ", + "type": 1, + "order": 4079, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "softball", + "hexcode": "1F94E", + "tags": [ + "ball", + "glove", + "underarm" + ], + "emoji": "๐ŸฅŽ", + "text": "", + "type": 1, + "order": 4080, + "group": 6, + "subgroup": 63, + "version": 11 + }, + { + "label": "basketball", + "hexcode": "1F3C0", + "tags": [ + "ball", + "hoop" + ], + "emoji": "๐Ÿ€", + "text": "", + "type": 1, + "order": 4081, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "volleyball", + "hexcode": "1F3D0", + "tags": [ + "ball", + "game" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 4082, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "american football", + "hexcode": "1F3C8", + "tags": [ + "american", + "ball", + "football" + ], + "emoji": "๐Ÿˆ", + "text": "", + "type": 1, + "order": 4083, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "rugby football", + "hexcode": "1F3C9", + "tags": [ + "ball", + "football", + "rugby" + ], + "emoji": "๐Ÿ‰", + "text": "", + "type": 1, + "order": 4084, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "tennis", + "hexcode": "1F3BE", + "tags": [ + "ball", + "racquet" + ], + "emoji": "๐ŸŽพ", + "text": "", + "type": 1, + "order": 4085, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "flying disc", + "hexcode": "1F94F", + "tags": [ + "ultimate" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 4086, + "group": 6, + "subgroup": 63, + "version": 11 + }, + { + "label": "bowling", + "hexcode": "1F3B3", + "tags": [ + "ball", + "game" + ], + "emoji": "๐ŸŽณ", + "text": "", + "type": 1, + "order": 4087, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "cricket game", + "hexcode": "1F3CF", + "tags": [ + "ball", + "bat", + "game" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 4088, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "field hockey", + "hexcode": "1F3D1", + "tags": [ + "ball", + "field", + "game", + "hockey", + "stick" + ], + "emoji": "๐Ÿ‘", + "text": "", + "type": 1, + "order": 4089, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "ice hockey", + "hexcode": "1F3D2", + "tags": [ + "game", + "hockey", + "ice", + "puck", + "stick" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 4090, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "lacrosse", + "hexcode": "1F94D", + "tags": [ + "ball", + "goal", + "stick" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 4091, + "group": 6, + "subgroup": 63, + "version": 11 + }, + { + "label": "ping pong", + "hexcode": "1F3D3", + "tags": [ + "ball", + "bat", + "game", + "paddle", + "table tennis" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 4092, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "badminton", + "hexcode": "1F3F8", + "tags": [ + "birdie", + "game", + "racquet", + "shuttlecock" + ], + "emoji": "๐Ÿธ", + "text": "", + "type": 1, + "order": 4093, + "group": 6, + "subgroup": 63, + "version": 1 + }, + { + "label": "boxing glove", + "hexcode": "1F94A", + "tags": [ + "boxing", + "glove" + ], + "emoji": "๐ŸฅŠ", + "text": "", + "type": 1, + "order": 4094, + "group": 6, + "subgroup": 63, + "version": 3 + }, + { + "label": "martial arts uniform", + "hexcode": "1F94B", + "tags": [ + "judo", + "karate", + "martial arts", + "taekwondo", + "uniform" + ], + "emoji": "๐Ÿฅ‹", + "text": "", + "type": 1, + "order": 4095, + "group": 6, + "subgroup": 63, + "version": 3 + }, + { + "label": "goal net", + "hexcode": "1F945", + "tags": [ + "goal", + "net" + ], + "emoji": "๐Ÿฅ…", + "text": "", + "type": 1, + "order": 4096, + "group": 6, + "subgroup": 63, + "version": 3 + }, + { + "label": "flag in hole", + "hexcode": "26F3", + "tags": [ + "golf", + "hole" + ], + "emoji": "โ›ณ๏ธ", + "text": "โ›ณ๏ธŽ", + "type": 1, + "order": 4097, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "ice skate", + "hexcode": "26F8", + "tags": [ + "ice", + "skate" + ], + "emoji": "โ›ธ๏ธ", + "text": "โ›ธ๏ธŽ", + "type": 0, + "order": 4099, + "group": 6, + "subgroup": 63, + "version": 0.7 + }, + { + "label": "fishing pole", + "hexcode": "1F3A3", + "tags": [ + "fish", + "pole" + ], + "emoji": "๐ŸŽฃ", + "text": "", + "type": 1, + "order": 4100, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "diving mask", + "hexcode": "1F93F", + "tags": [ + "diving", + "scuba", + "snorkeling" + ], + "emoji": "๐Ÿคฟ", + "text": "", + "type": 1, + "order": 4101, + "group": 6, + "subgroup": 63, + "version": 12 + }, + { + "label": "running shirt", + "hexcode": "1F3BD", + "tags": [ + "athletics", + "running", + "sash", + "shirt" + ], + "emoji": "๐ŸŽฝ", + "text": "", + "type": 1, + "order": 4102, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "skis", + "hexcode": "1F3BF", + "tags": [ + "ski", + "snow" + ], + "emoji": "๐ŸŽฟ", + "text": "", + "type": 1, + "order": 4103, + "group": 6, + "subgroup": 63, + "version": 0.6 + }, + { + "label": "sled", + "hexcode": "1F6F7", + "tags": [ + "sledge", + "sleigh" + ], + "emoji": "๐Ÿ›ท", + "text": "", + "type": 1, + "order": 4104, + "group": 6, + "subgroup": 63, + "version": 5 + }, + { + "label": "curling stone", + "hexcode": "1F94C", + "tags": [ + "game", + "rock" + ], + "emoji": "๐ŸฅŒ", + "text": "", + "type": 1, + "order": 4105, + "group": 6, + "subgroup": 63, + "version": 5 + }, + { + "label": "bullseye", + "hexcode": "1F3AF", + "tags": [ + "dart", + "direct hit", + "game", + "hit", + "target" + ], + "emoji": "๐ŸŽฏ", + "text": "", + "type": 1, + "order": 4106, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "yo-yo", + "hexcode": "1FA80", + "tags": [ + "fluctuate", + "toy" + ], + "emoji": "๐Ÿช€", + "text": "", + "type": 1, + "order": 4107, + "group": 6, + "subgroup": 64, + "version": 12 + }, + { + "label": "kite", + "hexcode": "1FA81", + "tags": [ + "fly", + "soar" + ], + "emoji": "๐Ÿช", + "text": "", + "type": 1, + "order": 4108, + "group": 6, + "subgroup": 64, + "version": 12 + }, + { + "label": "water pistol", + "hexcode": "1F52B", + "tags": [ + "gun", + "handgun", + "pistol", + "revolver", + "tool", + "water", + "weapon" + ], + "emoji": "๐Ÿ”ซ", + "text": "", + "type": 1, + "order": 4109, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "pool 8 ball", + "hexcode": "1F3B1", + "tags": [ + "8", + "ball", + "billiard", + "eight", + "game" + ], + "emoji": "๐ŸŽฑ", + "text": "", + "type": 1, + "order": 4110, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "crystal ball", + "hexcode": "1F52E", + "tags": [ + "ball", + "crystal", + "fairy tale", + "fantasy", + "fortune", + "tool" + ], + "emoji": "๐Ÿ”ฎ", + "text": "", + "type": 1, + "order": 4111, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "magic wand", + "hexcode": "1FA84", + "tags": [ + "magic", + "witch", + "wizard" + ], + "emoji": "๐Ÿช„", + "text": "", + "type": 1, + "order": 4112, + "group": 6, + "subgroup": 64, + "version": 13 + }, + { + "label": "video game", + "hexcode": "1F3AE", + "tags": [ + "controller", + "game" + ], + "emoji": "๐ŸŽฎ๏ธ", + "text": "๐ŸŽฎ๏ธŽ", + "type": 1, + "order": 4113, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "joystick", + "hexcode": "1F579", + "tags": [ + "game", + "video game" + ], + "emoji": "๐Ÿ•น๏ธ", + "text": "๐Ÿ•น๏ธŽ", + "type": 0, + "order": 4115, + "group": 6, + "subgroup": 64, + "version": 0.7 + }, + { + "label": "slot machine", + "hexcode": "1F3B0", + "tags": [ + "game", + "slot" + ], + "emoji": "๐ŸŽฐ", + "text": "", + "type": 1, + "order": 4116, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "game die", + "hexcode": "1F3B2", + "tags": [ + "dice", + "die", + "game" + ], + "emoji": "๐ŸŽฒ", + "text": "", + "type": 1, + "order": 4117, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "puzzle piece", + "hexcode": "1F9E9", + "tags": [ + "clue", + "interlocking", + "jigsaw", + "piece", + "puzzle" + ], + "emoji": "๐Ÿงฉ", + "text": "", + "type": 1, + "order": 4118, + "group": 6, + "subgroup": 64, + "version": 11 + }, + { + "label": "teddy bear", + "hexcode": "1F9F8", + "tags": [ + "plaything", + "plush", + "stuffed", + "toy" + ], + "emoji": "๐Ÿงธ", + "text": "", + "type": 1, + "order": 4119, + "group": 6, + "subgroup": 64, + "version": 11 + }, + { + "label": "piรฑata", + "hexcode": "1FA85", + "tags": [ + "celebration", + "party" + ], + "emoji": "๐Ÿช…", + "text": "", + "type": 1, + "order": 4120, + "group": 6, + "subgroup": 64, + "version": 13 + }, + { + "label": "mirror ball", + "hexcode": "1FAA9", + "tags": [ + "dance", + "disco", + "glitter", + "party" + ], + "emoji": "๐Ÿชฉ", + "text": "", + "type": 1, + "order": 4121, + "group": 6, + "subgroup": 64, + "version": 14 + }, + { + "label": "nesting dolls", + "hexcode": "1FA86", + "tags": [ + "doll", + "nesting", + "russia" + ], + "emoji": "๐Ÿช†", + "text": "", + "type": 1, + "order": 4122, + "group": 6, + "subgroup": 64, + "version": 13 + }, + { + "label": "spade suit", + "hexcode": "2660", + "tags": [ + "card", + "game" + ], + "emoji": "โ™ ๏ธ", + "text": "โ™ ๏ธŽ", + "type": 0, + "order": 4124, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "heart suit", + "hexcode": "2665", + "tags": [ + "card", + "game" + ], + "emoji": "โ™ฅ๏ธ", + "text": "โ™ฅ๏ธŽ", + "type": 0, + "order": 4126, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "diamond suit", + "hexcode": "2666", + "tags": [ + "card", + "game" + ], + "emoji": "โ™ฆ๏ธ", + "text": "โ™ฆ๏ธŽ", + "type": 0, + "order": 4128, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "club suit", + "hexcode": "2663", + "tags": [ + "card", + "game" + ], + "emoji": "โ™ฃ๏ธ", + "text": "โ™ฃ๏ธŽ", + "type": 0, + "order": 4130, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "chess pawn", + "hexcode": "265F", + "tags": [ + "chess", + "dupe", + "expendable" + ], + "emoji": "โ™Ÿ๏ธ", + "text": "โ™Ÿ๏ธŽ", + "type": 0, + "order": 4132, + "group": 6, + "subgroup": 64, + "version": 11 + }, + { + "label": "joker", + "hexcode": "1F0CF", + "tags": [ + "card", + "game", + "wildcard" + ], + "emoji": "๐Ÿƒ", + "text": "", + "type": 1, + "order": 4133, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "mahjong red dragon", + "hexcode": "1F004", + "tags": [ + "game", + "mahjong", + "red" + ], + "emoji": "๐Ÿ€„๏ธ", + "text": "๐Ÿ€„๏ธŽ", + "type": 1, + "order": 4134, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "flower playing cards", + "hexcode": "1F3B4", + "tags": [ + "card", + "flower", + "game", + "japanese", + "playing" + ], + "emoji": "๐ŸŽด", + "text": "", + "type": 1, + "order": 4135, + "group": 6, + "subgroup": 64, + "version": 0.6 + }, + { + "label": "performing arts", + "hexcode": "1F3AD", + "tags": [ + "art", + "mask", + "performing", + "theater", + "theatre" + ], + "emoji": "๐ŸŽญ๏ธ", + "text": "๐ŸŽญ๏ธŽ", + "type": 1, + "order": 4136, + "group": 6, + "subgroup": 65, + "version": 0.6 + }, + { + "label": "framed picture", + "hexcode": "1F5BC", + "tags": [ + "art", + "frame", + "museum", + "painting", + "picture" + ], + "emoji": "๐Ÿ–ผ๏ธ", + "text": "๐Ÿ–ผ๏ธŽ", + "type": 0, + "order": 4138, + "group": 6, + "subgroup": 65, + "version": 0.7 + }, + { + "label": "artist palette", + "hexcode": "1F3A8", + "tags": [ + "art", + "museum", + "painting", + "palette" + ], + "emoji": "๐ŸŽจ", + "text": "", + "type": 1, + "order": 4139, + "group": 6, + "subgroup": 65, + "version": 0.6 + }, + { + "label": "thread", + "hexcode": "1F9F5", + "tags": [ + "needle", + "sewing", + "spool", + "string" + ], + "emoji": "๐Ÿงต", + "text": "", + "type": 1, + "order": 4140, + "group": 6, + "subgroup": 65, + "version": 11 + }, + { + "label": "sewing needle", + "hexcode": "1FAA1", + "tags": [ + "embroidery", + "needle", + "sewing", + "stitches", + "sutures", + "tailoring" + ], + "emoji": "๐Ÿชก", + "text": "", + "type": 1, + "order": 4141, + "group": 6, + "subgroup": 65, + "version": 13 + }, + { + "label": "yarn", + "hexcode": "1F9F6", + "tags": [ + "ball", + "crochet", + "knit" + ], + "emoji": "๐Ÿงถ", + "text": "", + "type": 1, + "order": 4142, + "group": 6, + "subgroup": 65, + "version": 11 + }, + { + "label": "knot", + "hexcode": "1FAA2", + "tags": [ + "rope", + "tangled", + "tie", + "twine", + "twist" + ], + "emoji": "๐Ÿชข", + "text": "", + "type": 1, + "order": 4143, + "group": 6, + "subgroup": 65, + "version": 13 + }, + { + "label": "glasses", + "hexcode": "1F453", + "tags": [ + "clothing", + "eye", + "eyeglasses", + "eyewear" + ], + "emoji": "๐Ÿ‘“๏ธ", + "text": "๐Ÿ‘“๏ธŽ", + "type": 1, + "order": 4144, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "sunglasses", + "hexcode": "1F576", + "tags": [ + "dark", + "eye", + "eyewear", + "glasses" + ], + "emoji": "๐Ÿ•ถ๏ธ", + "text": "๐Ÿ•ถ๏ธŽ", + "type": 0, + "order": 4146, + "group": 7, + "subgroup": 66, + "version": 0.7 + }, + { + "label": "goggles", + "hexcode": "1F97D", + "tags": [ + "eye protection", + "swimming", + "welding" + ], + "emoji": "๐Ÿฅฝ", + "text": "", + "type": 1, + "order": 4147, + "group": 7, + "subgroup": 66, + "version": 11 + }, + { + "label": "lab coat", + "hexcode": "1F97C", + "tags": [ + "doctor", + "experiment", + "scientist" + ], + "emoji": "๐Ÿฅผ", + "text": "", + "type": 1, + "order": 4148, + "group": 7, + "subgroup": 66, + "version": 11 + }, + { + "label": "safety vest", + "hexcode": "1F9BA", + "tags": [ + "emergency", + "safety", + "vest" + ], + "emoji": "๐Ÿฆบ", + "text": "", + "type": 1, + "order": 4149, + "group": 7, + "subgroup": 66, + "version": 12 + }, + { + "label": "necktie", + "hexcode": "1F454", + "tags": [ + "clothing", + "tie" + ], + "emoji": "๐Ÿ‘”", + "text": "", + "type": 1, + "order": 4150, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "t-shirt", + "hexcode": "1F455", + "tags": [ + "clothing", + "shirt", + "tshirt" + ], + "emoji": "๐Ÿ‘•", + "text": "", + "type": 1, + "order": 4151, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "jeans", + "hexcode": "1F456", + "tags": [ + "clothing", + "pants", + "trousers" + ], + "emoji": "๐Ÿ‘–", + "text": "", + "type": 1, + "order": 4152, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "scarf", + "hexcode": "1F9E3", + "tags": [ + "neck" + ], + "emoji": "๐Ÿงฃ", + "text": "", + "type": 1, + "order": 4153, + "group": 7, + "subgroup": 66, + "version": 5 + }, + { + "label": "gloves", + "hexcode": "1F9E4", + "tags": [ + "hand" + ], + "emoji": "๐Ÿงค", + "text": "", + "type": 1, + "order": 4154, + "group": 7, + "subgroup": 66, + "version": 5 + }, + { + "label": "coat", + "hexcode": "1F9E5", + "tags": [ + "jacket" + ], + "emoji": "๐Ÿงฅ", + "text": "", + "type": 1, + "order": 4155, + "group": 7, + "subgroup": 66, + "version": 5 + }, + { + "label": "socks", + "hexcode": "1F9E6", + "tags": [ + "stocking" + ], + "emoji": "๐Ÿงฆ", + "text": "", + "type": 1, + "order": 4156, + "group": 7, + "subgroup": 66, + "version": 5 + }, + { + "label": "dress", + "hexcode": "1F457", + "tags": [ + "clothing" + ], + "emoji": "๐Ÿ‘—", + "text": "", + "type": 1, + "order": 4157, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "kimono", + "hexcode": "1F458", + "tags": [ + "clothing" + ], + "emoji": "๐Ÿ‘˜", + "text": "", + "type": 1, + "order": 4158, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "sari", + "hexcode": "1F97B", + "tags": [ + "clothing", + "dress" + ], + "emoji": "๐Ÿฅป", + "text": "", + "type": 1, + "order": 4159, + "group": 7, + "subgroup": 66, + "version": 12 + }, + { + "label": "one-piece swimsuit", + "hexcode": "1FA71", + "tags": [ + "bathing suit" + ], + "emoji": "๐Ÿฉฑ", + "text": "", + "type": 1, + "order": 4160, + "group": 7, + "subgroup": 66, + "version": 12 + }, + { + "label": "briefs", + "hexcode": "1FA72", + "tags": [ + "bathing suit", + "one-piece", + "swimsuit", + "underwear" + ], + "emoji": "๐Ÿฉฒ", + "text": "", + "type": 1, + "order": 4161, + "group": 7, + "subgroup": 66, + "version": 12 + }, + { + "label": "shorts", + "hexcode": "1FA73", + "tags": [ + "bathing suit", + "pants", + "underwear" + ], + "emoji": "๐Ÿฉณ", + "text": "", + "type": 1, + "order": 4162, + "group": 7, + "subgroup": 66, + "version": 12 + }, + { + "label": "bikini", + "hexcode": "1F459", + "tags": [ + "clothing", + "swim" + ], + "emoji": "๐Ÿ‘™", + "text": "", + "type": 1, + "order": 4163, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "womanโ€™s clothes", + "hexcode": "1F45A", + "tags": [ + "clothing", + "woman" + ], + "emoji": "๐Ÿ‘š", + "text": "", + "type": 1, + "order": 4164, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "folding hand fan", + "hexcode": "1FAAD", + "tags": [ + "cooling", + "dance", + "fan", + "flutter", + "hot", + "shy" + ], + "emoji": "๐Ÿชญ", + "text": "", + "type": 1, + "order": 4165, + "group": 7, + "subgroup": 66, + "version": 15 + }, + { + "label": "purse", + "hexcode": "1F45B", + "tags": [ + "clothing", + "coin" + ], + "emoji": "๐Ÿ‘›", + "text": "", + "type": 1, + "order": 4166, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "handbag", + "hexcode": "1F45C", + "tags": [ + "bag", + "clothing", + "purse" + ], + "emoji": "๐Ÿ‘œ", + "text": "", + "type": 1, + "order": 4167, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "clutch bag", + "hexcode": "1F45D", + "tags": [ + "bag", + "clothing", + "pouch" + ], + "emoji": "๐Ÿ‘", + "text": "", + "type": 1, + "order": 4168, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "shopping bags", + "hexcode": "1F6CD", + "tags": [ + "bag", + "hotel", + "shopping" + ], + "emoji": "๐Ÿ›๏ธ", + "text": "๐Ÿ›๏ธŽ", + "type": 0, + "order": 4170, + "group": 7, + "subgroup": 66, + "version": 0.7 + }, + { + "label": "backpack", + "hexcode": "1F392", + "tags": [ + "bag", + "rucksack", + "satchel", + "school" + ], + "emoji": "๐ŸŽ’", + "text": "", + "type": 1, + "order": 4171, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "thong sandal", + "hexcode": "1FA74", + "tags": [ + "beach sandals", + "sandals", + "thong sandals", + "thongs", + "zลri" + ], + "emoji": "๐Ÿฉด", + "text": "", + "type": 1, + "order": 4172, + "group": 7, + "subgroup": 66, + "version": 13 + }, + { + "label": "manโ€™s shoe", + "hexcode": "1F45E", + "tags": [ + "clothing", + "man", + "shoe" + ], + "emoji": "๐Ÿ‘ž", + "text": "", + "type": 1, + "order": 4173, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "running shoe", + "hexcode": "1F45F", + "tags": [ + "athletic", + "clothing", + "shoe", + "sneaker" + ], + "emoji": "๐Ÿ‘Ÿ", + "text": "", + "type": 1, + "order": 4174, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "hiking boot", + "hexcode": "1F97E", + "tags": [ + "backpacking", + "boot", + "camping", + "hiking" + ], + "emoji": "๐Ÿฅพ", + "text": "", + "type": 1, + "order": 4175, + "group": 7, + "subgroup": 66, + "version": 11 + }, + { + "label": "flat shoe", + "hexcode": "1F97F", + "tags": [ + "ballet flat", + "slip-on", + "slipper" + ], + "emoji": "๐Ÿฅฟ", + "text": "", + "type": 1, + "order": 4176, + "group": 7, + "subgroup": 66, + "version": 11 + }, + { + "label": "high-heeled shoe", + "hexcode": "1F460", + "tags": [ + "clothing", + "heel", + "shoe", + "woman" + ], + "emoji": "๐Ÿ‘ ", + "text": "", + "type": 1, + "order": 4177, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "womanโ€™s sandal", + "hexcode": "1F461", + "tags": [ + "clothing", + "sandal", + "shoe", + "woman" + ], + "emoji": "๐Ÿ‘ก", + "text": "", + "type": 1, + "order": 4178, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "ballet shoes", + "hexcode": "1FA70", + "tags": [ + "ballet", + "dance" + ], + "emoji": "๐Ÿฉฐ", + "text": "", + "type": 1, + "order": 4179, + "group": 7, + "subgroup": 66, + "version": 12 + }, + { + "label": "womanโ€™s boot", + "hexcode": "1F462", + "tags": [ + "boot", + "clothing", + "shoe", + "woman" + ], + "emoji": "๐Ÿ‘ข", + "text": "", + "type": 1, + "order": 4180, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "hair pick", + "hexcode": "1FAAE", + "tags": [ + "afro", + "comb", + "hair", + "pick" + ], + "emoji": "๐Ÿชฎ", + "text": "", + "type": 1, + "order": 4181, + "group": 7, + "subgroup": 66, + "version": 15 + }, + { + "label": "crown", + "hexcode": "1F451", + "tags": [ + "clothing", + "king", + "queen" + ], + "emoji": "๐Ÿ‘‘", + "text": "", + "type": 1, + "order": 4182, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "womanโ€™s hat", + "hexcode": "1F452", + "tags": [ + "clothing", + "hat", + "woman" + ], + "emoji": "๐Ÿ‘’", + "text": "", + "type": 1, + "order": 4183, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "top hat", + "hexcode": "1F3A9", + "tags": [ + "clothing", + "hat", + "top", + "tophat" + ], + "emoji": "๐ŸŽฉ", + "text": "", + "type": 1, + "order": 4184, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "graduation cap", + "hexcode": "1F393", + "tags": [ + "cap", + "celebration", + "clothing", + "graduation", + "hat" + ], + "emoji": "๐ŸŽ“๏ธ", + "text": "๐ŸŽ“๏ธŽ", + "type": 1, + "order": 4185, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "billed cap", + "hexcode": "1F9E2", + "tags": [ + "baseball cap" + ], + "emoji": "๐Ÿงข", + "text": "", + "type": 1, + "order": 4186, + "group": 7, + "subgroup": 66, + "version": 5 + }, + { + "label": "military helmet", + "hexcode": "1FA96", + "tags": [ + "army", + "helmet", + "military", + "soldier", + "warrior" + ], + "emoji": "๐Ÿช–", + "text": "", + "type": 1, + "order": 4187, + "group": 7, + "subgroup": 66, + "version": 13 + }, + { + "label": "rescue workerโ€™s helmet", + "hexcode": "26D1", + "tags": [ + "aid", + "cross", + "face", + "hat", + "helmet" + ], + "emoji": "โ›‘๏ธ", + "text": "โ›‘๏ธŽ", + "type": 0, + "order": 4189, + "group": 7, + "subgroup": 66, + "version": 0.7 + }, + { + "label": "prayer beads", + "hexcode": "1F4FF", + "tags": [ + "beads", + "clothing", + "necklace", + "prayer", + "religion" + ], + "emoji": "๐Ÿ“ฟ", + "text": "", + "type": 1, + "order": 4190, + "group": 7, + "subgroup": 66, + "version": 1 + }, + { + "label": "lipstick", + "hexcode": "1F484", + "tags": [ + "cosmetics", + "makeup" + ], + "emoji": "๐Ÿ’„", + "text": "", + "type": 1, + "order": 4191, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "ring", + "hexcode": "1F48D", + "tags": [ + "diamond" + ], + "emoji": "๐Ÿ’", + "text": "", + "type": 1, + "order": 4192, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "gem stone", + "hexcode": "1F48E", + "tags": [ + "diamond", + "gem", + "jewel" + ], + "emoji": "๐Ÿ’Ž", + "text": "", + "type": 1, + "order": 4193, + "group": 7, + "subgroup": 66, + "version": 0.6 + }, + { + "label": "muted speaker", + "hexcode": "1F507", + "tags": [ + "mute", + "quiet", + "silent", + "speaker" + ], + "emoji": "๐Ÿ”‡", + "text": "", + "type": 1, + "order": 4194, + "group": 7, + "subgroup": 67, + "version": 1 + }, + { + "label": "speaker low volume", + "hexcode": "1F508", + "tags": [ + "soft" + ], + "emoji": "๐Ÿ”ˆ๏ธ", + "text": "๐Ÿ”ˆ๏ธŽ", + "type": 1, + "order": 4195, + "group": 7, + "subgroup": 67, + "version": 0.7 + }, + { + "label": "speaker medium volume", + "hexcode": "1F509", + "tags": [ + "medium" + ], + "emoji": "๐Ÿ”‰", + "text": "", + "type": 1, + "order": 4196, + "group": 7, + "subgroup": 67, + "version": 1 + }, + { + "label": "speaker high volume", + "hexcode": "1F50A", + "tags": [ + "loud" + ], + "emoji": "๐Ÿ”Š", + "text": "", + "type": 1, + "order": 4197, + "group": 7, + "subgroup": 67, + "version": 0.6 + }, + { + "label": "loudspeaker", + "hexcode": "1F4E2", + "tags": [ + "loud", + "public address" + ], + "emoji": "๐Ÿ“ข", + "text": "", + "type": 1, + "order": 4198, + "group": 7, + "subgroup": 67, + "version": 0.6 + }, + { + "label": "megaphone", + "hexcode": "1F4E3", + "tags": [ + "cheering" + ], + "emoji": "๐Ÿ“ฃ", + "text": "", + "type": 1, + "order": 4199, + "group": 7, + "subgroup": 67, + "version": 0.6 + }, + { + "label": "postal horn", + "hexcode": "1F4EF", + "tags": [ + "horn", + "post", + "postal" + ], + "emoji": "๐Ÿ“ฏ", + "text": "", + "type": 1, + "order": 4200, + "group": 7, + "subgroup": 67, + "version": 1 + }, + { + "label": "bell", + "hexcode": "1F514", + "tags": [ + "bell" + ], + "emoji": "๐Ÿ””", + "text": "", + "type": 1, + "order": 4201, + "group": 7, + "subgroup": 67, + "version": 0.6 + }, + { + "label": "bell with slash", + "hexcode": "1F515", + "tags": [ + "bell", + "forbidden", + "mute", + "quiet", + "silent" + ], + "emoji": "๐Ÿ”•", + "text": "", + "type": 1, + "order": 4202, + "group": 7, + "subgroup": 67, + "version": 1 + }, + { + "label": "musical score", + "hexcode": "1F3BC", + "tags": [ + "music", + "score" + ], + "emoji": "๐ŸŽผ", + "text": "", + "type": 1, + "order": 4203, + "group": 7, + "subgroup": 68, + "version": 0.6 + }, + { + "label": "musical note", + "hexcode": "1F3B5", + "tags": [ + "music", + "note" + ], + "emoji": "๐ŸŽต", + "text": "", + "type": 1, + "order": 4204, + "group": 7, + "subgroup": 68, + "version": 0.6 + }, + { + "label": "musical notes", + "hexcode": "1F3B6", + "tags": [ + "music", + "note", + "notes" + ], + "emoji": "๐ŸŽถ", + "text": "", + "type": 1, + "order": 4205, + "group": 7, + "subgroup": 68, + "version": 0.6 + }, + { + "label": "studio microphone", + "hexcode": "1F399", + "tags": [ + "mic", + "microphone", + "music", + "studio" + ], + "emoji": "๐ŸŽ™๏ธ", + "text": "๐ŸŽ™๏ธŽ", + "type": 0, + "order": 4207, + "group": 7, + "subgroup": 68, + "version": 0.7 + }, + { + "label": "level slider", + "hexcode": "1F39A", + "tags": [ + "level", + "music", + "slider" + ], + "emoji": "๐ŸŽš๏ธ", + "text": "๐ŸŽš๏ธŽ", + "type": 0, + "order": 4209, + "group": 7, + "subgroup": 68, + "version": 0.7 + }, + { + "label": "control knobs", + "hexcode": "1F39B", + "tags": [ + "control", + "knobs", + "music" + ], + "emoji": "๐ŸŽ›๏ธ", + "text": "๐ŸŽ›๏ธŽ", + "type": 0, + "order": 4211, + "group": 7, + "subgroup": 68, + "version": 0.7 + }, + { + "label": "microphone", + "hexcode": "1F3A4", + "tags": [ + "karaoke", + "mic" + ], + "emoji": "๐ŸŽค", + "text": "", + "type": 1, + "order": 4212, + "group": 7, + "subgroup": 68, + "version": 0.6 + }, + { + "label": "headphone", + "hexcode": "1F3A7", + "tags": [ + "earbud" + ], + "emoji": "๐ŸŽง๏ธ", + "text": "๐ŸŽง๏ธŽ", + "type": 1, + "order": 4213, + "group": 7, + "subgroup": 68, + "version": 0.6 + }, + { + "label": "radio", + "hexcode": "1F4FB", + "tags": [ + "video" + ], + "emoji": "๐Ÿ“ป๏ธ", + "text": "๐Ÿ“ป๏ธŽ", + "type": 1, + "order": 4214, + "group": 7, + "subgroup": 68, + "version": 0.6 + }, + { + "label": "saxophone", + "hexcode": "1F3B7", + "tags": [ + "instrument", + "music", + "sax" + ], + "emoji": "๐ŸŽท", + "text": "", + "type": 1, + "order": 4215, + "group": 7, + "subgroup": 69, + "version": 0.6 + }, + { + "label": "accordion", + "hexcode": "1FA97", + "tags": [ + "concertina", + "squeeze box" + ], + "emoji": "๐Ÿช—", + "text": "", + "type": 1, + "order": 4216, + "group": 7, + "subgroup": 69, + "version": 13 + }, + { + "label": "guitar", + "hexcode": "1F3B8", + "tags": [ + "instrument", + "music" + ], + "emoji": "๐ŸŽธ", + "text": "", + "type": 1, + "order": 4217, + "group": 7, + "subgroup": 69, + "version": 0.6 + }, + { + "label": "musical keyboard", + "hexcode": "1F3B9", + "tags": [ + "instrument", + "keyboard", + "music", + "piano" + ], + "emoji": "๐ŸŽน", + "text": "", + "type": 1, + "order": 4218, + "group": 7, + "subgroup": 69, + "version": 0.6 + }, + { + "label": "trumpet", + "hexcode": "1F3BA", + "tags": [ + "instrument", + "music" + ], + "emoji": "๐ŸŽบ", + "text": "", + "type": 1, + "order": 4219, + "group": 7, + "subgroup": 69, + "version": 0.6 + }, + { + "label": "violin", + "hexcode": "1F3BB", + "tags": [ + "instrument", + "music" + ], + "emoji": "๐ŸŽป", + "text": "", + "type": 1, + "order": 4220, + "group": 7, + "subgroup": 69, + "version": 0.6 + }, + { + "label": "banjo", + "hexcode": "1FA95", + "tags": [ + "music", + "stringed" + ], + "emoji": "๐Ÿช•", + "text": "", + "type": 1, + "order": 4221, + "group": 7, + "subgroup": 69, + "version": 12 + }, + { + "label": "drum", + "hexcode": "1F941", + "tags": [ + "drumsticks", + "music" + ], + "emoji": "๐Ÿฅ", + "text": "", + "type": 1, + "order": 4222, + "group": 7, + "subgroup": 69, + "version": 3 + }, + { + "label": "long drum", + "hexcode": "1FA98", + "tags": [ + "beat", + "conga", + "drum", + "rhythm" + ], + "emoji": "๐Ÿช˜", + "text": "", + "type": 1, + "order": 4223, + "group": 7, + "subgroup": 69, + "version": 13 + }, + { + "label": "maracas", + "hexcode": "1FA87", + "tags": [ + "instrument", + "music", + "percussion", + "rattle", + "shake" + ], + "emoji": "๐Ÿช‡", + "text": "", + "type": 1, + "order": 4224, + "group": 7, + "subgroup": 69, + "version": 15 + }, + { + "label": "flute", + "hexcode": "1FA88", + "tags": [ + "fife", + "music", + "pipe", + "recorder", + "woodwind" + ], + "emoji": "๐Ÿชˆ", + "text": "", + "type": 1, + "order": 4225, + "group": 7, + "subgroup": 69, + "version": 15 + }, + { + "label": "mobile phone", + "hexcode": "1F4F1", + "tags": [ + "cell", + "mobile", + "phone", + "telephone" + ], + "emoji": "๐Ÿ“ฑ", + "text": "", + "type": 1, + "order": 4226, + "group": 7, + "subgroup": 70, + "version": 0.6 + }, + { + "label": "mobile phone with arrow", + "hexcode": "1F4F2", + "tags": [ + "arrow", + "cell", + "mobile", + "phone", + "receive" + ], + "emoji": "๐Ÿ“ฒ", + "text": "", + "type": 1, + "order": 4227, + "group": 7, + "subgroup": 70, + "version": 0.6 + }, + { + "label": "telephone", + "hexcode": "260E", + "tags": [ + "phone" + ], + "emoji": "โ˜Ž๏ธ", + "text": "โ˜Ž๏ธŽ", + "type": 0, + "order": 4229, + "group": 7, + "subgroup": 70, + "version": 0.6 + }, + { + "label": "telephone receiver", + "hexcode": "1F4DE", + "tags": [ + "phone", + "receiver", + "telephone" + ], + "emoji": "๐Ÿ“ž", + "text": "", + "type": 1, + "order": 4230, + "group": 7, + "subgroup": 70, + "version": 0.6 + }, + { + "label": "pager", + "hexcode": "1F4DF", + "tags": [ + "pager" + ], + "emoji": "๐Ÿ“Ÿ๏ธ", + "text": "๐Ÿ“Ÿ๏ธŽ", + "type": 1, + "order": 4231, + "group": 7, + "subgroup": 70, + "version": 0.6 + }, + { + "label": "fax machine", + "hexcode": "1F4E0", + "tags": [ + "fax" + ], + "emoji": "๐Ÿ“ ", + "text": "", + "type": 1, + "order": 4232, + "group": 7, + "subgroup": 70, + "version": 0.6 + }, + { + "label": "battery", + "hexcode": "1F50B", + "tags": [ + "battery" + ], + "emoji": "๐Ÿ”‹", + "text": "", + "type": 1, + "order": 4233, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "low battery", + "hexcode": "1FAAB", + "tags": [ + "electronic", + "low energy" + ], + "emoji": "๐Ÿชซ", + "text": "", + "type": 1, + "order": 4234, + "group": 7, + "subgroup": 71, + "version": 14 + }, + { + "label": "electric plug", + "hexcode": "1F50C", + "tags": [ + "electric", + "electricity", + "plug" + ], + "emoji": "๐Ÿ”Œ", + "text": "", + "type": 1, + "order": 4235, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "laptop", + "hexcode": "1F4BB", + "tags": [ + "computer", + "pc", + "personal" + ], + "emoji": "๐Ÿ’ป๏ธ", + "text": "๐Ÿ’ป๏ธŽ", + "type": 1, + "order": 4236, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "desktop computer", + "hexcode": "1F5A5", + "tags": [ + "computer", + "desktop" + ], + "emoji": "๐Ÿ–ฅ๏ธ", + "text": "๐Ÿ–ฅ๏ธŽ", + "type": 0, + "order": 4238, + "group": 7, + "subgroup": 71, + "version": 0.7 + }, + { + "label": "printer", + "hexcode": "1F5A8", + "tags": [ + "computer" + ], + "emoji": "๐Ÿ–จ๏ธ", + "text": "๐Ÿ–จ๏ธŽ", + "type": 0, + "order": 4240, + "group": 7, + "subgroup": 71, + "version": 0.7 + }, + { + "label": "keyboard", + "hexcode": "2328", + "tags": [ + "computer" + ], + "emoji": "โŒจ๏ธ", + "text": "โŒจ๏ธŽ", + "type": 0, + "order": 4242, + "group": 7, + "subgroup": 71, + "version": 1 + }, + { + "label": "computer mouse", + "hexcode": "1F5B1", + "tags": [ + "computer" + ], + "emoji": "๐Ÿ–ฑ๏ธ", + "text": "๐Ÿ–ฑ๏ธŽ", + "type": 0, + "order": 4244, + "group": 7, + "subgroup": 71, + "version": 0.7 + }, + { + "label": "trackball", + "hexcode": "1F5B2", + "tags": [ + "computer" + ], + "emoji": "๐Ÿ–ฒ๏ธ", + "text": "๐Ÿ–ฒ๏ธŽ", + "type": 0, + "order": 4246, + "group": 7, + "subgroup": 71, + "version": 0.7 + }, + { + "label": "computer disk", + "hexcode": "1F4BD", + "tags": [ + "computer", + "disk", + "minidisk", + "optical" + ], + "emoji": "๐Ÿ’ฝ", + "text": "", + "type": 1, + "order": 4247, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "floppy disk", + "hexcode": "1F4BE", + "tags": [ + "computer", + "disk", + "floppy" + ], + "emoji": "๐Ÿ’พ", + "text": "", + "type": 1, + "order": 4248, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "optical disk", + "hexcode": "1F4BF", + "tags": [ + "cd", + "computer", + "disk", + "optical" + ], + "emoji": "๐Ÿ’ฟ๏ธ", + "text": "๐Ÿ’ฟ๏ธŽ", + "type": 1, + "order": 4249, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "dvd", + "hexcode": "1F4C0", + "tags": [ + "blu-ray", + "computer", + "disk", + "optical" + ], + "emoji": "๐Ÿ“€", + "text": "", + "type": 1, + "order": 4250, + "group": 7, + "subgroup": 71, + "version": 0.6 + }, + { + "label": "abacus", + "hexcode": "1F9EE", + "tags": [ + "calculation" + ], + "emoji": "๐Ÿงฎ", + "text": "", + "type": 1, + "order": 4251, + "group": 7, + "subgroup": 71, + "version": 11 + }, + { + "label": "movie camera", + "hexcode": "1F3A5", + "tags": [ + "camera", + "cinema", + "movie" + ], + "emoji": "๐ŸŽฅ", + "text": "", + "type": 1, + "order": 4252, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "film frames", + "hexcode": "1F39E", + "tags": [ + "cinema", + "film", + "frames", + "movie" + ], + "emoji": "๐ŸŽž๏ธ", + "text": "๐ŸŽž๏ธŽ", + "type": 0, + "order": 4254, + "group": 7, + "subgroup": 72, + "version": 0.7 + }, + { + "label": "film projector", + "hexcode": "1F4FD", + "tags": [ + "cinema", + "film", + "movie", + "projector", + "video" + ], + "emoji": "๐Ÿ“ฝ๏ธ", + "text": "๐Ÿ“ฝ๏ธŽ", + "type": 0, + "order": 4256, + "group": 7, + "subgroup": 72, + "version": 0.7 + }, + { + "label": "clapper board", + "hexcode": "1F3AC", + "tags": [ + "clapper", + "movie" + ], + "emoji": "๐ŸŽฌ๏ธ", + "text": "๐ŸŽฌ๏ธŽ", + "type": 1, + "order": 4257, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "television", + "hexcode": "1F4FA", + "tags": [ + "tv", + "video" + ], + "emoji": "๐Ÿ“บ๏ธ", + "text": "๐Ÿ“บ๏ธŽ", + "type": 1, + "order": 4258, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "camera", + "hexcode": "1F4F7", + "tags": [ + "video" + ], + "emoji": "๐Ÿ“ท๏ธ", + "text": "๐Ÿ“ท๏ธŽ", + "type": 1, + "order": 4259, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "camera with flash", + "hexcode": "1F4F8", + "tags": [ + "camera", + "flash", + "video" + ], + "emoji": "๐Ÿ“ธ", + "text": "", + "type": 1, + "order": 4260, + "group": 7, + "subgroup": 72, + "version": 1 + }, + { + "label": "video camera", + "hexcode": "1F4F9", + "tags": [ + "camera", + "video" + ], + "emoji": "๐Ÿ“น๏ธ", + "text": "๐Ÿ“น๏ธŽ", + "type": 1, + "order": 4261, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "videocassette", + "hexcode": "1F4FC", + "tags": [ + "tape", + "vhs", + "video" + ], + "emoji": "๐Ÿ“ผ", + "text": "", + "type": 1, + "order": 4262, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "magnifying glass tilted left", + "hexcode": "1F50D", + "tags": [ + "glass", + "magnifying", + "search", + "tool" + ], + "emoji": "๐Ÿ”๏ธ", + "text": "๐Ÿ”๏ธŽ", + "type": 1, + "order": 4263, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "magnifying glass tilted right", + "hexcode": "1F50E", + "tags": [ + "glass", + "magnifying", + "search", + "tool" + ], + "emoji": "๐Ÿ”Ž", + "text": "", + "type": 1, + "order": 4264, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "candle", + "hexcode": "1F56F", + "tags": [ + "light" + ], + "emoji": "๐Ÿ•ฏ๏ธ", + "text": "๐Ÿ•ฏ๏ธŽ", + "type": 0, + "order": 4266, + "group": 7, + "subgroup": 72, + "version": 0.7 + }, + { + "label": "light bulb", + "hexcode": "1F4A1", + "tags": [ + "bulb", + "comic", + "electric", + "idea", + "light" + ], + "emoji": "๐Ÿ’ก", + "text": "", + "type": 1, + "order": 4267, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "flashlight", + "hexcode": "1F526", + "tags": [ + "electric", + "light", + "tool", + "torch" + ], + "emoji": "๐Ÿ”ฆ", + "text": "", + "type": 1, + "order": 4268, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "red paper lantern", + "hexcode": "1F3EE", + "tags": [ + "bar", + "lantern", + "light", + "red" + ], + "emoji": "๐Ÿฎ", + "text": "", + "type": 1, + "order": 4269, + "group": 7, + "subgroup": 72, + "version": 0.6 + }, + { + "label": "diya lamp", + "hexcode": "1FA94", + "tags": [ + "diya", + "lamp", + "oil" + ], + "emoji": "๐Ÿช”", + "text": "", + "type": 1, + "order": 4270, + "group": 7, + "subgroup": 72, + "version": 12 + }, + { + "label": "notebook with decorative cover", + "hexcode": "1F4D4", + "tags": [ + "book", + "cover", + "decorated", + "notebook" + ], + "emoji": "๐Ÿ“”", + "text": "", + "type": 1, + "order": 4271, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "closed book", + "hexcode": "1F4D5", + "tags": [ + "book", + "closed" + ], + "emoji": "๐Ÿ“•", + "text": "", + "type": 1, + "order": 4272, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "open book", + "hexcode": "1F4D6", + "tags": [ + "book", + "open" + ], + "emoji": "๐Ÿ“–", + "text": "", + "type": 1, + "order": 4273, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "green book", + "hexcode": "1F4D7", + "tags": [ + "book", + "green" + ], + "emoji": "๐Ÿ“—", + "text": "", + "type": 1, + "order": 4274, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "blue book", + "hexcode": "1F4D8", + "tags": [ + "blue", + "book" + ], + "emoji": "๐Ÿ“˜", + "text": "", + "type": 1, + "order": 4275, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "orange book", + "hexcode": "1F4D9", + "tags": [ + "book", + "orange" + ], + "emoji": "๐Ÿ“™", + "text": "", + "type": 1, + "order": 4276, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "books", + "hexcode": "1F4DA", + "tags": [ + "book" + ], + "emoji": "๐Ÿ“š๏ธ", + "text": "๐Ÿ“š๏ธŽ", + "type": 1, + "order": 4277, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "notebook", + "hexcode": "1F4D3", + "tags": [ + "notebook" + ], + "emoji": "๐Ÿ““", + "text": "", + "type": 1, + "order": 4278, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "ledger", + "hexcode": "1F4D2", + "tags": [ + "notebook" + ], + "emoji": "๐Ÿ“’", + "text": "", + "type": 1, + "order": 4279, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "page with curl", + "hexcode": "1F4C3", + "tags": [ + "curl", + "document", + "page" + ], + "emoji": "๐Ÿ“ƒ", + "text": "", + "type": 1, + "order": 4280, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "scroll", + "hexcode": "1F4DC", + "tags": [ + "paper" + ], + "emoji": "๐Ÿ“œ", + "text": "", + "type": 1, + "order": 4281, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "page facing up", + "hexcode": "1F4C4", + "tags": [ + "document", + "page" + ], + "emoji": "๐Ÿ“„", + "text": "", + "type": 1, + "order": 4282, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "newspaper", + "hexcode": "1F4F0", + "tags": [ + "news", + "paper" + ], + "emoji": "๐Ÿ“ฐ", + "text": "", + "type": 1, + "order": 4283, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "rolled-up newspaper", + "hexcode": "1F5DE", + "tags": [ + "news", + "newspaper", + "paper", + "rolled" + ], + "emoji": "๐Ÿ—ž๏ธ", + "text": "๐Ÿ—ž๏ธŽ", + "type": 0, + "order": 4285, + "group": 7, + "subgroup": 73, + "version": 0.7 + }, + { + "label": "bookmark tabs", + "hexcode": "1F4D1", + "tags": [ + "bookmark", + "mark", + "marker", + "tabs" + ], + "emoji": "๐Ÿ“‘", + "text": "", + "type": 1, + "order": 4286, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "bookmark", + "hexcode": "1F516", + "tags": [ + "mark" + ], + "emoji": "๐Ÿ”–", + "text": "", + "type": 1, + "order": 4287, + "group": 7, + "subgroup": 73, + "version": 0.6 + }, + { + "label": "label", + "hexcode": "1F3F7", + "tags": [ + "label" + ], + "emoji": "๐Ÿท๏ธ", + "text": "๐Ÿท๏ธŽ", + "type": 0, + "order": 4289, + "group": 7, + "subgroup": 73, + "version": 0.7 + }, + { + "label": "money bag", + "hexcode": "1F4B0", + "tags": [ + "bag", + "dollar", + "money", + "moneybag" + ], + "emoji": "๐Ÿ’ฐ๏ธ", + "text": "๐Ÿ’ฐ๏ธŽ", + "type": 1, + "order": 4290, + "group": 7, + "subgroup": 74, + "version": 0.6 + }, + { + "label": "coin", + "hexcode": "1FA99", + "tags": [ + "gold", + "metal", + "money", + "silver", + "treasure" + ], + "emoji": "๐Ÿช™", + "text": "", + "type": 1, + "order": 4291, + "group": 7, + "subgroup": 74, + "version": 13 + }, + { + "label": "yen banknote", + "hexcode": "1F4B4", + "tags": [ + "banknote", + "bill", + "currency", + "money", + "note", + "yen" + ], + "emoji": "๐Ÿ’ด", + "text": "", + "type": 1, + "order": 4292, + "group": 7, + "subgroup": 74, + "version": 0.6 + }, + { + "label": "dollar banknote", + "hexcode": "1F4B5", + "tags": [ + "banknote", + "bill", + "currency", + "dollar", + "money", + "note" + ], + "emoji": "๐Ÿ’ต", + "text": "", + "type": 1, + "order": 4293, + "group": 7, + "subgroup": 74, + "version": 0.6 + }, + { + "label": "euro banknote", + "hexcode": "1F4B6", + "tags": [ + "banknote", + "bill", + "currency", + "euro", + "money", + "note" + ], + "emoji": "๐Ÿ’ถ", + "text": "", + "type": 1, + "order": 4294, + "group": 7, + "subgroup": 74, + "version": 1 + }, + { + "label": "pound banknote", + "hexcode": "1F4B7", + "tags": [ + "banknote", + "bill", + "currency", + "money", + "note", + "pound" + ], + "emoji": "๐Ÿ’ท", + "text": "", + "type": 1, + "order": 4295, + "group": 7, + "subgroup": 74, + "version": 1 + }, + { + "label": "money with wings", + "hexcode": "1F4B8", + "tags": [ + "banknote", + "bill", + "fly", + "money", + "wings" + ], + "emoji": "๐Ÿ’ธ", + "text": "", + "type": 1, + "order": 4296, + "group": 7, + "subgroup": 74, + "version": 0.6 + }, + { + "label": "credit card", + "hexcode": "1F4B3", + "tags": [ + "card", + "credit", + "money" + ], + "emoji": "๐Ÿ’ณ๏ธ", + "text": "๐Ÿ’ณ๏ธŽ", + "type": 1, + "order": 4297, + "group": 7, + "subgroup": 74, + "version": 0.6 + }, + { + "label": "receipt", + "hexcode": "1F9FE", + "tags": [ + "accounting", + "bookkeeping", + "evidence", + "proof" + ], + "emoji": "๐Ÿงพ", + "text": "", + "type": 1, + "order": 4298, + "group": 7, + "subgroup": 74, + "version": 11 + }, + { + "label": "chart increasing with yen", + "hexcode": "1F4B9", + "tags": [ + "chart", + "graph", + "growth", + "money", + "yen" + ], + "emoji": "๐Ÿ’น", + "text": "", + "type": 1, + "order": 4299, + "group": 7, + "subgroup": 74, + "version": 0.6 + }, + { + "label": "envelope", + "hexcode": "2709", + "tags": [ + "email", + "letter" + ], + "emoji": "โœ‰๏ธ", + "text": "โœ‰๏ธŽ", + "type": 0, + "order": 4301, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "e-mail", + "hexcode": "1F4E7", + "tags": [ + "email", + "letter", + "mail" + ], + "emoji": "๐Ÿ“ง", + "text": "", + "type": 1, + "order": 4302, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "incoming envelope", + "hexcode": "1F4E8", + "tags": [ + "e-mail", + "email", + "envelope", + "incoming", + "letter", + "receive" + ], + "emoji": "๐Ÿ“จ", + "text": "", + "type": 1, + "order": 4303, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "envelope with arrow", + "hexcode": "1F4E9", + "tags": [ + "arrow", + "e-mail", + "email", + "envelope", + "outgoing" + ], + "emoji": "๐Ÿ“ฉ", + "text": "", + "type": 1, + "order": 4304, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "outbox tray", + "hexcode": "1F4E4", + "tags": [ + "box", + "letter", + "mail", + "outbox", + "sent", + "tray" + ], + "emoji": "๐Ÿ“ค๏ธ", + "text": "๐Ÿ“ค๏ธŽ", + "type": 1, + "order": 4305, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "inbox tray", + "hexcode": "1F4E5", + "tags": [ + "box", + "inbox", + "letter", + "mail", + "receive", + "tray" + ], + "emoji": "๐Ÿ“ฅ๏ธ", + "text": "๐Ÿ“ฅ๏ธŽ", + "type": 1, + "order": 4306, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "package", + "hexcode": "1F4E6", + "tags": [ + "box", + "parcel" + ], + "emoji": "๐Ÿ“ฆ๏ธ", + "text": "๐Ÿ“ฆ๏ธŽ", + "type": 1, + "order": 4307, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "closed mailbox with raised flag", + "hexcode": "1F4EB", + "tags": [ + "closed", + "mail", + "mailbox", + "postbox" + ], + "emoji": "๐Ÿ“ซ๏ธ", + "text": "๐Ÿ“ซ๏ธŽ", + "type": 1, + "order": 4308, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "closed mailbox with lowered flag", + "hexcode": "1F4EA", + "tags": [ + "closed", + "lowered", + "mail", + "mailbox", + "postbox" + ], + "emoji": "๐Ÿ“ช๏ธ", + "text": "๐Ÿ“ช๏ธŽ", + "type": 1, + "order": 4309, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "open mailbox with raised flag", + "hexcode": "1F4EC", + "tags": [ + "mail", + "mailbox", + "open", + "postbox" + ], + "emoji": "๐Ÿ“ฌ๏ธ", + "text": "๐Ÿ“ฌ๏ธŽ", + "type": 1, + "order": 4310, + "group": 7, + "subgroup": 75, + "version": 0.7 + }, + { + "label": "open mailbox with lowered flag", + "hexcode": "1F4ED", + "tags": [ + "lowered", + "mail", + "mailbox", + "open", + "postbox" + ], + "emoji": "๐Ÿ“ญ๏ธ", + "text": "๐Ÿ“ญ๏ธŽ", + "type": 1, + "order": 4311, + "group": 7, + "subgroup": 75, + "version": 0.7 + }, + { + "label": "postbox", + "hexcode": "1F4EE", + "tags": [ + "mail", + "mailbox" + ], + "emoji": "๐Ÿ“ฎ", + "text": "", + "type": 1, + "order": 4312, + "group": 7, + "subgroup": 75, + "version": 0.6 + }, + { + "label": "ballot box with ballot", + "hexcode": "1F5F3", + "tags": [ + "ballot", + "box" + ], + "emoji": "๐Ÿ—ณ๏ธ", + "text": "๐Ÿ—ณ๏ธŽ", + "type": 0, + "order": 4314, + "group": 7, + "subgroup": 75, + "version": 0.7 + }, + { + "label": "pencil", + "hexcode": "270F", + "tags": [ + "pencil" + ], + "emoji": "โœ๏ธ", + "text": "โœ๏ธŽ", + "type": 0, + "order": 4316, + "group": 7, + "subgroup": 76, + "version": 0.6 + }, + { + "label": "black nib", + "hexcode": "2712", + "tags": [ + "nib", + "pen" + ], + "emoji": "โœ’๏ธ", + "text": "โœ’๏ธŽ", + "type": 0, + "order": 4318, + "group": 7, + "subgroup": 76, + "version": 0.6 + }, + { + "label": "fountain pen", + "hexcode": "1F58B", + "tags": [ + "fountain", + "pen" + ], + "emoji": "๐Ÿ–‹๏ธ", + "text": "๐Ÿ–‹๏ธŽ", + "type": 0, + "order": 4320, + "group": 7, + "subgroup": 76, + "version": 0.7 + }, + { + "label": "pen", + "hexcode": "1F58A", + "tags": [ + "ballpoint" + ], + "emoji": "๐Ÿ–Š๏ธ", + "text": "๐Ÿ–Š๏ธŽ", + "type": 0, + "order": 4322, + "group": 7, + "subgroup": 76, + "version": 0.7 + }, + { + "label": "paintbrush", + "hexcode": "1F58C", + "tags": [ + "painting" + ], + "emoji": "๐Ÿ–Œ๏ธ", + "text": "๐Ÿ–Œ๏ธŽ", + "type": 0, + "order": 4324, + "group": 7, + "subgroup": 76, + "version": 0.7 + }, + { + "label": "crayon", + "hexcode": "1F58D", + "tags": [ + "crayon" + ], + "emoji": "๐Ÿ–๏ธ", + "text": "๐Ÿ–๏ธŽ", + "type": 0, + "order": 4326, + "group": 7, + "subgroup": 76, + "version": 0.7 + }, + { + "label": "memo", + "hexcode": "1F4DD", + "tags": [ + "pencil" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 4327, + "group": 7, + "subgroup": 76, + "version": 0.6 + }, + { + "label": "briefcase", + "hexcode": "1F4BC", + "tags": [ + "briefcase" + ], + "emoji": "๐Ÿ’ผ", + "text": "", + "type": 1, + "order": 4328, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "file folder", + "hexcode": "1F4C1", + "tags": [ + "file", + "folder" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 4329, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "open file folder", + "hexcode": "1F4C2", + "tags": [ + "file", + "folder", + "open" + ], + "emoji": "๐Ÿ“‚", + "text": "", + "type": 1, + "order": 4330, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "card index dividers", + "hexcode": "1F5C2", + "tags": [ + "card", + "dividers", + "index" + ], + "emoji": "๐Ÿ—‚๏ธ", + "text": "๐Ÿ—‚๏ธŽ", + "type": 0, + "order": 4332, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "calendar", + "hexcode": "1F4C5", + "tags": [ + "date" + ], + "emoji": "๐Ÿ“…", + "text": "", + "type": 1, + "order": 4333, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "tear-off calendar", + "hexcode": "1F4C6", + "tags": [ + "calendar" + ], + "emoji": "๐Ÿ“†", + "text": "", + "type": 1, + "order": 4334, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "spiral notepad", + "hexcode": "1F5D2", + "tags": [ + "note", + "pad", + "spiral" + ], + "emoji": "๐Ÿ—’๏ธ", + "text": "๐Ÿ—’๏ธŽ", + "type": 0, + "order": 4336, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "spiral calendar", + "hexcode": "1F5D3", + "tags": [ + "calendar", + "pad", + "spiral" + ], + "emoji": "๐Ÿ—“๏ธ", + "text": "๐Ÿ—“๏ธŽ", + "type": 0, + "order": 4338, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "card index", + "hexcode": "1F4C7", + "tags": [ + "card", + "index", + "rolodex" + ], + "emoji": "๐Ÿ“‡", + "text": "", + "type": 1, + "order": 4339, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "chart increasing", + "hexcode": "1F4C8", + "tags": [ + "chart", + "graph", + "growth", + "trend", + "upward" + ], + "emoji": "๐Ÿ“ˆ", + "text": "", + "type": 1, + "order": 4340, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "chart decreasing", + "hexcode": "1F4C9", + "tags": [ + "chart", + "down", + "graph", + "trend" + ], + "emoji": "๐Ÿ“‰", + "text": "", + "type": 1, + "order": 4341, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "bar chart", + "hexcode": "1F4CA", + "tags": [ + "bar", + "chart", + "graph" + ], + "emoji": "๐Ÿ“Š", + "text": "", + "type": 1, + "order": 4342, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "clipboard", + "hexcode": "1F4CB", + "tags": [ + "clipboard" + ], + "emoji": "๐Ÿ“‹๏ธ", + "text": "๐Ÿ“‹๏ธŽ", + "type": 1, + "order": 4343, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "pushpin", + "hexcode": "1F4CC", + "tags": [ + "pin" + ], + "emoji": "๐Ÿ“Œ", + "text": "", + "type": 1, + "order": 4344, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "round pushpin", + "hexcode": "1F4CD", + "tags": [ + "pin", + "pushpin" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 4345, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "paperclip", + "hexcode": "1F4CE", + "tags": [ + "paperclip" + ], + "emoji": "๐Ÿ“Ž", + "text": "", + "type": 1, + "order": 4346, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "linked paperclips", + "hexcode": "1F587", + "tags": [ + "link", + "paperclip" + ], + "emoji": "๐Ÿ–‡๏ธ", + "text": "๐Ÿ–‡๏ธŽ", + "type": 0, + "order": 4348, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "straight ruler", + "hexcode": "1F4CF", + "tags": [ + "ruler", + "straight edge" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 4349, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "triangular ruler", + "hexcode": "1F4D0", + "tags": [ + "ruler", + "set", + "triangle" + ], + "emoji": "๐Ÿ“", + "text": "", + "type": 1, + "order": 4350, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "scissors", + "hexcode": "2702", + "tags": [ + "cutting", + "tool" + ], + "emoji": "โœ‚๏ธ", + "text": "โœ‚๏ธŽ", + "type": 0, + "order": 4352, + "group": 7, + "subgroup": 77, + "version": 0.6 + }, + { + "label": "card file box", + "hexcode": "1F5C3", + "tags": [ + "box", + "card", + "file" + ], + "emoji": "๐Ÿ—ƒ๏ธ", + "text": "๐Ÿ—ƒ๏ธŽ", + "type": 0, + "order": 4354, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "file cabinet", + "hexcode": "1F5C4", + "tags": [ + "cabinet", + "file", + "filing" + ], + "emoji": "๐Ÿ—„๏ธ", + "text": "๐Ÿ—„๏ธŽ", + "type": 0, + "order": 4356, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "wastebasket", + "hexcode": "1F5D1", + "tags": [ + "wastebasket" + ], + "emoji": "๐Ÿ—‘๏ธ", + "text": "๐Ÿ—‘๏ธŽ", + "type": 0, + "order": 4358, + "group": 7, + "subgroup": 77, + "version": 0.7 + }, + { + "label": "locked", + "hexcode": "1F512", + "tags": [ + "closed" + ], + "emoji": "๐Ÿ”’๏ธ", + "text": "๐Ÿ”’๏ธŽ", + "type": 1, + "order": 4359, + "group": 7, + "subgroup": 78, + "version": 0.6 + }, + { + "label": "unlocked", + "hexcode": "1F513", + "tags": [ + "lock", + "open", + "unlock" + ], + "emoji": "๐Ÿ”“๏ธ", + "text": "๐Ÿ”“๏ธŽ", + "type": 1, + "order": 4360, + "group": 7, + "subgroup": 78, + "version": 0.6 + }, + { + "label": "locked with pen", + "hexcode": "1F50F", + "tags": [ + "ink", + "lock", + "nib", + "pen", + "privacy" + ], + "emoji": "๐Ÿ”", + "text": "", + "type": 1, + "order": 4361, + "group": 7, + "subgroup": 78, + "version": 0.6 + }, + { + "label": "locked with key", + "hexcode": "1F510", + "tags": [ + "closed", + "key", + "lock", + "secure" + ], + "emoji": "๐Ÿ”", + "text": "", + "type": 1, + "order": 4362, + "group": 7, + "subgroup": 78, + "version": 0.6 + }, + { + "label": "key", + "hexcode": "1F511", + "tags": [ + "lock", + "password" + ], + "emoji": "๐Ÿ”‘", + "text": "", + "type": 1, + "order": 4363, + "group": 7, + "subgroup": 78, + "version": 0.6 + }, + { + "label": "old key", + "hexcode": "1F5DD", + "tags": [ + "clue", + "key", + "lock", + "old" + ], + "emoji": "๐Ÿ—๏ธ", + "text": "๐Ÿ—๏ธŽ", + "type": 0, + "order": 4365, + "group": 7, + "subgroup": 78, + "version": 0.7 + }, + { + "label": "hammer", + "hexcode": "1F528", + "tags": [ + "tool" + ], + "emoji": "๐Ÿ”จ", + "text": "", + "type": 1, + "order": 4366, + "group": 7, + "subgroup": 79, + "version": 0.6 + }, + { + "label": "axe", + "hexcode": "1FA93", + "tags": [ + "chop", + "hatchet", + "split", + "wood" + ], + "emoji": "๐Ÿช“", + "text": "", + "type": 1, + "order": 4367, + "group": 7, + "subgroup": 79, + "version": 12 + }, + { + "label": "pick", + "hexcode": "26CF", + "tags": [ + "mining", + "tool" + ], + "emoji": "โ›๏ธ", + "text": "โ›๏ธŽ", + "type": 0, + "order": 4369, + "group": 7, + "subgroup": 79, + "version": 0.7 + }, + { + "label": "hammer and pick", + "hexcode": "2692", + "tags": [ + "hammer", + "pick", + "tool" + ], + "emoji": "โš’๏ธ", + "text": "โš’๏ธŽ", + "type": 0, + "order": 4371, + "group": 7, + "subgroup": 79, + "version": 1 + }, + { + "label": "hammer and wrench", + "hexcode": "1F6E0", + "tags": [ + "hammer", + "spanner", + "tool", + "wrench" + ], + "emoji": "๐Ÿ› ๏ธ", + "text": "๐Ÿ› ๏ธŽ", + "type": 0, + "order": 4373, + "group": 7, + "subgroup": 79, + "version": 0.7 + }, + { + "label": "dagger", + "hexcode": "1F5E1", + "tags": [ + "knife", + "weapon" + ], + "emoji": "๐Ÿ—ก๏ธ", + "text": "๐Ÿ—ก๏ธŽ", + "type": 0, + "order": 4375, + "group": 7, + "subgroup": 79, + "version": 0.7 + }, + { + "label": "crossed swords", + "hexcode": "2694", + "tags": [ + "crossed", + "swords", + "weapon" + ], + "emoji": "โš”๏ธ", + "text": "โš”๏ธŽ", + "type": 0, + "order": 4377, + "group": 7, + "subgroup": 79, + "version": 1 + }, + { + "label": "bomb", + "hexcode": "1F4A3", + "tags": [ + "comic" + ], + "emoji": "๐Ÿ’ฃ๏ธ", + "text": "๐Ÿ’ฃ๏ธŽ", + "type": 1, + "order": 4378, + "group": 7, + "subgroup": 79, + "version": 0.6 + }, + { + "label": "boomerang", + "hexcode": "1FA83", + "tags": [ + "rebound", + "repercussion" + ], + "emoji": "๐Ÿชƒ", + "text": "", + "type": 1, + "order": 4379, + "group": 7, + "subgroup": 79, + "version": 13 + }, + { + "label": "bow and arrow", + "hexcode": "1F3F9", + "tags": [ + "archer", + "arrow", + "bow", + "sagittarius", + "zodiac" + ], + "emoji": "๐Ÿน", + "text": "", + "type": 1, + "order": 4380, + "group": 7, + "subgroup": 79, + "version": 1 + }, + { + "label": "shield", + "hexcode": "1F6E1", + "tags": [ + "weapon" + ], + "emoji": "๐Ÿ›ก๏ธ", + "text": "๐Ÿ›ก๏ธŽ", + "type": 0, + "order": 4382, + "group": 7, + "subgroup": 79, + "version": 0.7 + }, + { + "label": "carpentry saw", + "hexcode": "1FA9A", + "tags": [ + "carpenter", + "lumber", + "saw", + "tool" + ], + "emoji": "๐Ÿชš", + "text": "", + "type": 1, + "order": 4383, + "group": 7, + "subgroup": 79, + "version": 13 + }, + { + "label": "wrench", + "hexcode": "1F527", + "tags": [ + "spanner", + "tool" + ], + "emoji": "๐Ÿ”ง", + "text": "", + "type": 1, + "order": 4384, + "group": 7, + "subgroup": 79, + "version": 0.6 + }, + { + "label": "screwdriver", + "hexcode": "1FA9B", + "tags": [ + "screw", + "tool" + ], + "emoji": "๐Ÿช›", + "text": "", + "type": 1, + "order": 4385, + "group": 7, + "subgroup": 79, + "version": 13 + }, + { + "label": "nut and bolt", + "hexcode": "1F529", + "tags": [ + "bolt", + "nut", + "tool" + ], + "emoji": "๐Ÿ”ฉ", + "text": "", + "type": 1, + "order": 4386, + "group": 7, + "subgroup": 79, + "version": 0.6 + }, + { + "label": "gear", + "hexcode": "2699", + "tags": [ + "cog", + "cogwheel", + "tool" + ], + "emoji": "โš™๏ธ", + "text": "โš™๏ธŽ", + "type": 0, + "order": 4388, + "group": 7, + "subgroup": 79, + "version": 1 + }, + { + "label": "clamp", + "hexcode": "1F5DC", + "tags": [ + "compress", + "tool", + "vice" + ], + "emoji": "๐Ÿ—œ๏ธ", + "text": "๐Ÿ—œ๏ธŽ", + "type": 0, + "order": 4390, + "group": 7, + "subgroup": 79, + "version": 0.7 + }, + { + "label": "balance scale", + "hexcode": "2696", + "tags": [ + "balance", + "justice", + "libra", + "scale", + "zodiac" + ], + "emoji": "โš–๏ธ", + "text": "โš–๏ธŽ", + "type": 0, + "order": 4392, + "group": 7, + "subgroup": 79, + "version": 1 + }, + { + "label": "white cane", + "hexcode": "1F9AF", + "tags": [ + "accessibility", + "blind" + ], + "emoji": "๐Ÿฆฏ", + "text": "", + "type": 1, + "order": 4393, + "group": 7, + "subgroup": 79, + "version": 12 + }, + { + "label": "link", + "hexcode": "1F517", + "tags": [ + "link" + ], + "emoji": "๐Ÿ”—", + "text": "", + "type": 1, + "order": 4394, + "group": 7, + "subgroup": 79, + "version": 0.6 + }, + { + "label": "broken chain", + "hexcode": "26D3-FE0F-200D-1F4A5", + "tags": [ + "break", + "breaking", + "chain", + "cuffs", + "freedom" + ], + "emoji": "โ›“๏ธโ€๐Ÿ’ฅ", + "text": "", + "type": 1, + "order": 4395, + "group": 7, + "subgroup": 79, + "version": 15.1 + }, + { + "label": "chains", + "hexcode": "26D3", + "tags": [ + "chain" + ], + "emoji": "โ›“๏ธ", + "text": "โ›“๏ธŽ", + "type": 0, + "order": 4398, + "group": 7, + "subgroup": 79, + "version": 0.7 + }, + { + "label": "hook", + "hexcode": "1FA9D", + "tags": [ + "catch", + "crook", + "curve", + "ensnare", + "selling point" + ], + "emoji": "๐Ÿช", + "text": "", + "type": 1, + "order": 4399, + "group": 7, + "subgroup": 79, + "version": 13 + }, + { + "label": "toolbox", + "hexcode": "1F9F0", + "tags": [ + "chest", + "mechanic", + "tool" + ], + "emoji": "๐Ÿงฐ", + "text": "", + "type": 1, + "order": 4400, + "group": 7, + "subgroup": 79, + "version": 11 + }, + { + "label": "magnet", + "hexcode": "1F9F2", + "tags": [ + "attraction", + "horseshoe", + "magnetic" + ], + "emoji": "๐Ÿงฒ", + "text": "", + "type": 1, + "order": 4401, + "group": 7, + "subgroup": 79, + "version": 11 + }, + { + "label": "ladder", + "hexcode": "1FA9C", + "tags": [ + "climb", + "rung", + "step" + ], + "emoji": "๐Ÿชœ", + "text": "", + "type": 1, + "order": 4402, + "group": 7, + "subgroup": 79, + "version": 13 + }, + { + "label": "alembic", + "hexcode": "2697", + "tags": [ + "chemistry", + "tool" + ], + "emoji": "โš—๏ธ", + "text": "โš—๏ธŽ", + "type": 0, + "order": 4404, + "group": 7, + "subgroup": 80, + "version": 1 + }, + { + "label": "test tube", + "hexcode": "1F9EA", + "tags": [ + "chemist", + "chemistry", + "experiment", + "lab", + "science" + ], + "emoji": "๐Ÿงช", + "text": "", + "type": 1, + "order": 4405, + "group": 7, + "subgroup": 80, + "version": 11 + }, + { + "label": "petri dish", + "hexcode": "1F9EB", + "tags": [ + "bacteria", + "biologist", + "biology", + "culture", + "lab" + ], + "emoji": "๐Ÿงซ", + "text": "", + "type": 1, + "order": 4406, + "group": 7, + "subgroup": 80, + "version": 11 + }, + { + "label": "dna", + "hexcode": "1F9EC", + "tags": [ + "biologist", + "evolution", + "gene", + "genetics", + "life" + ], + "emoji": "๐Ÿงฌ", + "text": "", + "type": 1, + "order": 4407, + "group": 7, + "subgroup": 80, + "version": 11 + }, + { + "label": "microscope", + "hexcode": "1F52C", + "tags": [ + "science", + "tool" + ], + "emoji": "๐Ÿ”ฌ", + "text": "", + "type": 1, + "order": 4408, + "group": 7, + "subgroup": 80, + "version": 1 + }, + { + "label": "telescope", + "hexcode": "1F52D", + "tags": [ + "science", + "tool" + ], + "emoji": "๐Ÿ”ญ", + "text": "", + "type": 1, + "order": 4409, + "group": 7, + "subgroup": 80, + "version": 1 + }, + { + "label": "satellite antenna", + "hexcode": "1F4E1", + "tags": [ + "antenna", + "dish", + "satellite" + ], + "emoji": "๐Ÿ“ก", + "text": "", + "type": 1, + "order": 4410, + "group": 7, + "subgroup": 80, + "version": 0.6 + }, + { + "label": "syringe", + "hexcode": "1F489", + "tags": [ + "medicine", + "needle", + "shot", + "sick" + ], + "emoji": "๐Ÿ’‰", + "text": "", + "type": 1, + "order": 4411, + "group": 7, + "subgroup": 81, + "version": 0.6 + }, + { + "label": "drop of blood", + "hexcode": "1FA78", + "tags": [ + "bleed", + "blood donation", + "injury", + "medicine", + "menstruation" + ], + "emoji": "๐Ÿฉธ", + "text": "", + "type": 1, + "order": 4412, + "group": 7, + "subgroup": 81, + "version": 12 + }, + { + "label": "pill", + "hexcode": "1F48A", + "tags": [ + "doctor", + "medicine", + "sick" + ], + "emoji": "๐Ÿ’Š", + "text": "", + "type": 1, + "order": 4413, + "group": 7, + "subgroup": 81, + "version": 0.6 + }, + { + "label": "adhesive bandage", + "hexcode": "1FA79", + "tags": [ + "bandage" + ], + "emoji": "๐Ÿฉน", + "text": "", + "type": 1, + "order": 4414, + "group": 7, + "subgroup": 81, + "version": 12 + }, + { + "label": "crutch", + "hexcode": "1FA7C", + "tags": [ + "cane", + "disability", + "hurt", + "mobility aid", + "stick" + ], + "emoji": "๐Ÿฉผ", + "text": "", + "type": 1, + "order": 4415, + "group": 7, + "subgroup": 81, + "version": 14 + }, + { + "label": "stethoscope", + "hexcode": "1FA7A", + "tags": [ + "doctor", + "heart", + "medicine" + ], + "emoji": "๐Ÿฉบ", + "text": "", + "type": 1, + "order": 4416, + "group": 7, + "subgroup": 81, + "version": 12 + }, + { + "label": "x-ray", + "hexcode": "1FA7B", + "tags": [ + "bones", + "doctor", + "medical", + "skeleton" + ], + "emoji": "๐Ÿฉป", + "text": "", + "type": 1, + "order": 4417, + "group": 7, + "subgroup": 81, + "version": 14 + }, + { + "label": "door", + "hexcode": "1F6AA", + "tags": [ + "door" + ], + "emoji": "๐Ÿšช", + "text": "", + "type": 1, + "order": 4418, + "group": 7, + "subgroup": 82, + "version": 0.6 + }, + { + "label": "elevator", + "hexcode": "1F6D7", + "tags": [ + "accessibility", + "hoist", + "lift" + ], + "emoji": "๐Ÿ›—", + "text": "", + "type": 1, + "order": 4419, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "mirror", + "hexcode": "1FA9E", + "tags": [ + "reflection", + "reflector", + "speculum" + ], + "emoji": "๐Ÿชž", + "text": "", + "type": 1, + "order": 4420, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "window", + "hexcode": "1FA9F", + "tags": [ + "frame", + "fresh air", + "opening", + "transparent", + "view" + ], + "emoji": "๐ŸชŸ", + "text": "", + "type": 1, + "order": 4421, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "bed", + "hexcode": "1F6CF", + "tags": [ + "hotel", + "sleep" + ], + "emoji": "๐Ÿ›๏ธ", + "text": "๐Ÿ›๏ธŽ", + "type": 0, + "order": 4423, + "group": 7, + "subgroup": 82, + "version": 0.7 + }, + { + "label": "couch and lamp", + "hexcode": "1F6CB", + "tags": [ + "couch", + "hotel", + "lamp" + ], + "emoji": "๐Ÿ›‹๏ธ", + "text": "๐Ÿ›‹๏ธŽ", + "type": 0, + "order": 4425, + "group": 7, + "subgroup": 82, + "version": 0.7 + }, + { + "label": "chair", + "hexcode": "1FA91", + "tags": [ + "seat", + "sit" + ], + "emoji": "๐Ÿช‘", + "text": "", + "type": 1, + "order": 4426, + "group": 7, + "subgroup": 82, + "version": 12 + }, + { + "label": "toilet", + "hexcode": "1F6BD", + "tags": [ + "toilet" + ], + "emoji": "๐Ÿšฝ", + "text": "", + "type": 1, + "order": 4427, + "group": 7, + "subgroup": 82, + "version": 0.6 + }, + { + "label": "plunger", + "hexcode": "1FAA0", + "tags": [ + "force cup", + "plumber", + "suction", + "toilet" + ], + "emoji": "๐Ÿช ", + "text": "", + "type": 1, + "order": 4428, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "shower", + "hexcode": "1F6BF", + "tags": [ + "water" + ], + "emoji": "๐Ÿšฟ", + "text": "", + "type": 1, + "order": 4429, + "group": 7, + "subgroup": 82, + "version": 1 + }, + { + "label": "bathtub", + "hexcode": "1F6C1", + "tags": [ + "bath" + ], + "emoji": "๐Ÿ›", + "text": "", + "type": 1, + "order": 4430, + "group": 7, + "subgroup": 82, + "version": 1 + }, + { + "label": "mouse trap", + "hexcode": "1FAA4", + "tags": [ + "bait", + "mousetrap", + "snare", + "trap" + ], + "emoji": "๐Ÿชค", + "text": "", + "type": 1, + "order": 4431, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "razor", + "hexcode": "1FA92", + "tags": [ + "sharp", + "shave" + ], + "emoji": "๐Ÿช’", + "text": "", + "type": 1, + "order": 4432, + "group": 7, + "subgroup": 82, + "version": 12 + }, + { + "label": "lotion bottle", + "hexcode": "1F9F4", + "tags": [ + "lotion", + "moisturizer", + "shampoo", + "sunscreen" + ], + "emoji": "๐Ÿงด", + "text": "", + "type": 1, + "order": 4433, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "safety pin", + "hexcode": "1F9F7", + "tags": [ + "diaper", + "punk rock" + ], + "emoji": "๐Ÿงท", + "text": "", + "type": 1, + "order": 4434, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "broom", + "hexcode": "1F9F9", + "tags": [ + "cleaning", + "sweeping", + "witch" + ], + "emoji": "๐Ÿงน", + "text": "", + "type": 1, + "order": 4435, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "basket", + "hexcode": "1F9FA", + "tags": [ + "farming", + "laundry", + "picnic" + ], + "emoji": "๐Ÿงบ", + "text": "", + "type": 1, + "order": 4436, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "roll of paper", + "hexcode": "1F9FB", + "tags": [ + "paper towels", + "toilet paper" + ], + "emoji": "๐Ÿงป", + "text": "", + "type": 1, + "order": 4437, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "bucket", + "hexcode": "1FAA3", + "tags": [ + "cask", + "pail", + "vat" + ], + "emoji": "๐Ÿชฃ", + "text": "", + "type": 1, + "order": 4438, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "soap", + "hexcode": "1F9FC", + "tags": [ + "bar", + "bathing", + "cleaning", + "lather", + "soapdish" + ], + "emoji": "๐Ÿงผ", + "text": "", + "type": 1, + "order": 4439, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "bubbles", + "hexcode": "1FAE7", + "tags": [ + "burp", + "clean", + "soap", + "underwater" + ], + "emoji": "๐Ÿซง", + "text": "", + "type": 1, + "order": 4440, + "group": 7, + "subgroup": 82, + "version": 14 + }, + { + "label": "toothbrush", + "hexcode": "1FAA5", + "tags": [ + "bathroom", + "brush", + "clean", + "dental", + "hygiene", + "teeth" + ], + "emoji": "๐Ÿชฅ", + "text": "", + "type": 1, + "order": 4441, + "group": 7, + "subgroup": 82, + "version": 13 + }, + { + "label": "sponge", + "hexcode": "1F9FD", + "tags": [ + "absorbing", + "cleaning", + "porous" + ], + "emoji": "๐Ÿงฝ", + "text": "", + "type": 1, + "order": 4442, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "fire extinguisher", + "hexcode": "1F9EF", + "tags": [ + "extinguish", + "fire", + "quench" + ], + "emoji": "๐Ÿงฏ", + "text": "", + "type": 1, + "order": 4443, + "group": 7, + "subgroup": 82, + "version": 11 + }, + { + "label": "shopping cart", + "hexcode": "1F6D2", + "tags": [ + "cart", + "shopping", + "trolley" + ], + "emoji": "๐Ÿ›’", + "text": "", + "type": 1, + "order": 4444, + "group": 7, + "subgroup": 82, + "version": 3 + }, + { + "label": "cigarette", + "hexcode": "1F6AC", + "tags": [ + "smoking" + ], + "emoji": "๐Ÿšฌ", + "text": "", + "type": 1, + "order": 4445, + "group": 7, + "subgroup": 83, + "version": 0.6 + }, + { + "label": "coffin", + "hexcode": "26B0", + "tags": [ + "death" + ], + "emoji": "โšฐ๏ธ", + "text": "โšฐ๏ธŽ", + "type": 0, + "order": 4447, + "group": 7, + "subgroup": 83, + "version": 1 + }, + { + "label": "headstone", + "hexcode": "1FAA6", + "tags": [ + "cemetery", + "grave", + "graveyard", + "tombstone" + ], + "emoji": "๐Ÿชฆ", + "text": "", + "type": 1, + "order": 4448, + "group": 7, + "subgroup": 83, + "version": 13 + }, + { + "label": "funeral urn", + "hexcode": "26B1", + "tags": [ + "ashes", + "death", + "funeral", + "urn" + ], + "emoji": "โšฑ๏ธ", + "text": "โšฑ๏ธŽ", + "type": 0, + "order": 4450, + "group": 7, + "subgroup": 83, + "version": 1 + }, + { + "label": "nazar amulet", + "hexcode": "1F9FF", + "tags": [ + "bead", + "charm", + "evil-eye", + "nazar", + "talisman" + ], + "emoji": "๐Ÿงฟ", + "text": "", + "type": 1, + "order": 4451, + "group": 7, + "subgroup": 83, + "version": 11 + }, + { + "label": "hamsa", + "hexcode": "1FAAC", + "tags": [ + "amulet", + "fatima", + "hand", + "mary", + "miriam", + "protection" + ], + "emoji": "๐Ÿชฌ", + "text": "", + "type": 1, + "order": 4452, + "group": 7, + "subgroup": 83, + "version": 14 + }, + { + "label": "moai", + "hexcode": "1F5FF", + "tags": [ + "face", + "moyai", + "statue" + ], + "emoji": "๐Ÿ—ฟ", + "text": "", + "type": 1, + "order": 4453, + "group": 7, + "subgroup": 83, + "version": 0.6 + }, + { + "label": "placard", + "hexcode": "1FAA7", + "tags": [ + "demonstration", + "picket", + "protest", + "sign" + ], + "emoji": "๐Ÿชง", + "text": "", + "type": 1, + "order": 4454, + "group": 7, + "subgroup": 83, + "version": 13 + }, + { + "label": "identification card", + "hexcode": "1FAAA", + "tags": [ + "credentials", + "id", + "license", + "security" + ], + "emoji": "๐Ÿชช", + "text": "", + "type": 1, + "order": 4455, + "group": 7, + "subgroup": 83, + "version": 14 + }, + { + "label": "ATM sign", + "hexcode": "1F3E7", + "tags": [ + "atm", + "atm sign", + "automated", + "bank", + "teller" + ], + "emoji": "๐Ÿง", + "text": "", + "type": 1, + "order": 4456, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "litter in bin sign", + "hexcode": "1F6AE", + "tags": [ + "litter", + "litter bin" + ], + "emoji": "๐Ÿšฎ", + "text": "", + "type": 1, + "order": 4457, + "group": 8, + "subgroup": 84, + "version": 1 + }, + { + "label": "potable water", + "hexcode": "1F6B0", + "tags": [ + "drinking", + "potable", + "water" + ], + "emoji": "๐Ÿšฐ", + "text": "", + "type": 1, + "order": 4458, + "group": 8, + "subgroup": 84, + "version": 1 + }, + { + "label": "wheelchair symbol", + "hexcode": "267F", + "tags": [ + "access" + ], + "emoji": "โ™ฟ๏ธ", + "text": "โ™ฟ๏ธŽ", + "type": 1, + "order": 4459, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "menโ€™s room", + "hexcode": "1F6B9", + "tags": [ + "bathroom", + "lavatory", + "man", + "restroom", + "toilet", + "wc" + ], + "emoji": "๐Ÿšน๏ธ", + "text": "๐Ÿšน๏ธŽ", + "type": 1, + "order": 4460, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "womenโ€™s room", + "hexcode": "1F6BA", + "tags": [ + "bathroom", + "lavatory", + "restroom", + "toilet", + "wc", + "woman" + ], + "emoji": "๐Ÿšบ๏ธ", + "text": "๐Ÿšบ๏ธŽ", + "type": 1, + "order": 4461, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "restroom", + "hexcode": "1F6BB", + "tags": [ + "bathroom", + "lavatory", + "toilet", + "wc" + ], + "emoji": "๐Ÿšป", + "text": "", + "type": 1, + "order": 4462, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "baby symbol", + "hexcode": "1F6BC", + "tags": [ + "baby", + "changing" + ], + "emoji": "๐Ÿšผ๏ธ", + "text": "๐Ÿšผ๏ธŽ", + "type": 1, + "order": 4463, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "water closet", + "hexcode": "1F6BE", + "tags": [ + "bathroom", + "closet", + "lavatory", + "restroom", + "toilet", + "water", + "wc" + ], + "emoji": "๐Ÿšพ", + "text": "", + "type": 1, + "order": 4464, + "group": 8, + "subgroup": 84, + "version": 0.6 + }, + { + "label": "passport control", + "hexcode": "1F6C2", + "tags": [ + "control", + "passport" + ], + "emoji": "๐Ÿ›‚", + "text": "", + "type": 1, + "order": 4465, + "group": 8, + "subgroup": 84, + "version": 1 + }, + { + "label": "customs", + "hexcode": "1F6C3", + "tags": [ + "customs" + ], + "emoji": "๐Ÿ›ƒ", + "text": "", + "type": 1, + "order": 4466, + "group": 8, + "subgroup": 84, + "version": 1 + }, + { + "label": "baggage claim", + "hexcode": "1F6C4", + "tags": [ + "baggage", + "claim" + ], + "emoji": "๐Ÿ›„", + "text": "", + "type": 1, + "order": 4467, + "group": 8, + "subgroup": 84, + "version": 1 + }, + { + "label": "left luggage", + "hexcode": "1F6C5", + "tags": [ + "baggage", + "locker", + "luggage" + ], + "emoji": "๐Ÿ›…", + "text": "", + "type": 1, + "order": 4468, + "group": 8, + "subgroup": 84, + "version": 1 + }, + { + "label": "warning", + "hexcode": "26A0", + "tags": [ + "warning" + ], + "emoji": "โš ๏ธ", + "text": "โš ๏ธŽ", + "type": 0, + "order": 4470, + "group": 8, + "subgroup": 85, + "version": 0.6 + }, + { + "label": "children crossing", + "hexcode": "1F6B8", + "tags": [ + "child", + "crossing", + "pedestrian", + "traffic" + ], + "emoji": "๐Ÿšธ", + "text": "", + "type": 1, + "order": 4471, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "no entry", + "hexcode": "26D4", + "tags": [ + "entry", + "forbidden", + "no", + "not", + "prohibited", + "traffic" + ], + "emoji": "โ›”๏ธ", + "text": "โ›”๏ธŽ", + "type": 1, + "order": 4472, + "group": 8, + "subgroup": 85, + "version": 0.6 + }, + { + "label": "prohibited", + "hexcode": "1F6AB", + "tags": [ + "entry", + "forbidden", + "no", + "not" + ], + "emoji": "๐Ÿšซ", + "text": "", + "type": 1, + "order": 4473, + "group": 8, + "subgroup": 85, + "version": 0.6 + }, + { + "label": "no bicycles", + "hexcode": "1F6B3", + "tags": [ + "bicycle", + "bike", + "forbidden", + "no", + "prohibited" + ], + "emoji": "๐Ÿšณ", + "text": "", + "type": 1, + "order": 4474, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "no smoking", + "hexcode": "1F6AD", + "tags": [ + "forbidden", + "no", + "not", + "prohibited", + "smoking" + ], + "emoji": "๐Ÿšญ๏ธ", + "text": "๐Ÿšญ๏ธŽ", + "type": 1, + "order": 4475, + "group": 8, + "subgroup": 85, + "version": 0.6 + }, + { + "label": "no littering", + "hexcode": "1F6AF", + "tags": [ + "forbidden", + "litter", + "no", + "not", + "prohibited" + ], + "emoji": "๐Ÿšฏ", + "text": "", + "type": 1, + "order": 4476, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "non-potable water", + "hexcode": "1F6B1", + "tags": [ + "non-drinking", + "non-potable", + "water" + ], + "emoji": "๐Ÿšฑ", + "text": "", + "type": 1, + "order": 4477, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "no pedestrians", + "hexcode": "1F6B7", + "tags": [ + "forbidden", + "no", + "not", + "pedestrian", + "prohibited" + ], + "emoji": "๐Ÿšท", + "text": "", + "type": 1, + "order": 4478, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "no mobile phones", + "hexcode": "1F4F5", + "tags": [ + "cell", + "forbidden", + "mobile", + "no", + "phone" + ], + "emoji": "๐Ÿ“ต", + "text": "", + "type": 1, + "order": 4479, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "no one under eighteen", + "hexcode": "1F51E", + "tags": [ + "18", + "age restriction", + "eighteen", + "prohibited", + "underage" + ], + "emoji": "๐Ÿ”ž", + "text": "", + "type": 1, + "order": 4480, + "group": 8, + "subgroup": 85, + "version": 0.6 + }, + { + "label": "radioactive", + "hexcode": "2622", + "tags": [ + "sign" + ], + "emoji": "โ˜ข๏ธ", + "text": "โ˜ข๏ธŽ", + "type": 0, + "order": 4482, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "biohazard", + "hexcode": "2623", + "tags": [ + "sign" + ], + "emoji": "โ˜ฃ๏ธ", + "text": "โ˜ฃ๏ธŽ", + "type": 0, + "order": 4484, + "group": 8, + "subgroup": 85, + "version": 1 + }, + { + "label": "up arrow", + "hexcode": "2B06", + "tags": [ + "arrow", + "cardinal", + "direction", + "north" + ], + "emoji": "โฌ†๏ธ", + "text": "โฌ†๏ธŽ", + "type": 0, + "order": 4486, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "up-right arrow", + "hexcode": "2197", + "tags": [ + "arrow", + "direction", + "intercardinal", + "northeast" + ], + "emoji": "โ†—๏ธ", + "text": "โ†—๏ธŽ", + "type": 0, + "order": 4488, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "right arrow", + "hexcode": "27A1", + "tags": [ + "arrow", + "cardinal", + "direction", + "east" + ], + "emoji": "โžก๏ธ", + "text": "โžก๏ธŽ", + "type": 0, + "order": 4490, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "down-right arrow", + "hexcode": "2198", + "tags": [ + "arrow", + "direction", + "intercardinal", + "southeast" + ], + "emoji": "โ†˜๏ธ", + "text": "โ†˜๏ธŽ", + "type": 0, + "order": 4492, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "down arrow", + "hexcode": "2B07", + "tags": [ + "arrow", + "cardinal", + "direction", + "down", + "south" + ], + "emoji": "โฌ‡๏ธ", + "text": "โฌ‡๏ธŽ", + "type": 0, + "order": 4494, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "down-left arrow", + "hexcode": "2199", + "tags": [ + "arrow", + "direction", + "intercardinal", + "southwest" + ], + "emoji": "โ†™๏ธ", + "text": "โ†™๏ธŽ", + "type": 0, + "order": 4496, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "left arrow", + "hexcode": "2B05", + "tags": [ + "arrow", + "cardinal", + "direction", + "west" + ], + "emoji": "โฌ…๏ธ", + "text": "โฌ…๏ธŽ", + "type": 0, + "order": 4498, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "up-left arrow", + "hexcode": "2196", + "tags": [ + "arrow", + "direction", + "intercardinal", + "northwest" + ], + "emoji": "โ†–๏ธ", + "text": "โ†–๏ธŽ", + "type": 0, + "order": 4500, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "up-down arrow", + "hexcode": "2195", + "tags": [ + "arrow" + ], + "emoji": "โ†•๏ธ", + "text": "โ†•๏ธŽ", + "type": 0, + "order": 4502, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "left-right arrow", + "hexcode": "2194", + "tags": [ + "arrow" + ], + "emoji": "โ†”๏ธ", + "text": "โ†”๏ธŽ", + "type": 0, + "order": 4504, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "right arrow curving left", + "hexcode": "21A9", + "tags": [ + "arrow" + ], + "emoji": "โ†ฉ๏ธ", + "text": "โ†ฉ๏ธŽ", + "type": 0, + "order": 4506, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "left arrow curving right", + "hexcode": "21AA", + "tags": [ + "arrow" + ], + "emoji": "โ†ช๏ธ", + "text": "โ†ช๏ธŽ", + "type": 0, + "order": 4508, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "right arrow curving up", + "hexcode": "2934", + "tags": [ + "arrow" + ], + "emoji": "โคด๏ธ", + "text": "โคด๏ธŽ", + "type": 0, + "order": 4510, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "right arrow curving down", + "hexcode": "2935", + "tags": [ + "arrow", + "down" + ], + "emoji": "โคต๏ธ", + "text": "โคต๏ธŽ", + "type": 0, + "order": 4512, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "clockwise vertical arrows", + "hexcode": "1F503", + "tags": [ + "arrow", + "clockwise", + "reload" + ], + "emoji": "๐Ÿ”ƒ", + "text": "", + "type": 1, + "order": 4513, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "counterclockwise arrows button", + "hexcode": "1F504", + "tags": [ + "anticlockwise", + "arrow", + "counterclockwise", + "withershins" + ], + "emoji": "๐Ÿ”„", + "text": "", + "type": 1, + "order": 4514, + "group": 8, + "subgroup": 86, + "version": 1 + }, + { + "label": "BACK arrow", + "hexcode": "1F519", + "tags": [ + "arrow", + "back" + ], + "emoji": "๐Ÿ”™", + "text": "", + "type": 1, + "order": 4515, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "END arrow", + "hexcode": "1F51A", + "tags": [ + "arrow", + "end" + ], + "emoji": "๐Ÿ”š", + "text": "", + "type": 1, + "order": 4516, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "ON! arrow", + "hexcode": "1F51B", + "tags": [ + "arrow", + "mark", + "on", + "on!" + ], + "emoji": "๐Ÿ”›", + "text": "", + "type": 1, + "order": 4517, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "SOON arrow", + "hexcode": "1F51C", + "tags": [ + "arrow", + "soon" + ], + "emoji": "๐Ÿ”œ", + "text": "", + "type": 1, + "order": 4518, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "TOP arrow", + "hexcode": "1F51D", + "tags": [ + "arrow", + "top", + "up" + ], + "emoji": "๐Ÿ”", + "text": "", + "type": 1, + "order": 4519, + "group": 8, + "subgroup": 86, + "version": 0.6 + }, + { + "label": "place of worship", + "hexcode": "1F6D0", + "tags": [ + "religion", + "worship" + ], + "emoji": "๐Ÿ›", + "text": "", + "type": 1, + "order": 4520, + "group": 8, + "subgroup": 87, + "version": 1 + }, + { + "label": "atom symbol", + "hexcode": "269B", + "tags": [ + "atheist", + "atom" + ], + "emoji": "โš›๏ธ", + "text": "โš›๏ธŽ", + "type": 0, + "order": 4522, + "group": 8, + "subgroup": 87, + "version": 1 + }, + { + "label": "om", + "hexcode": "1F549", + "tags": [ + "hindu", + "religion" + ], + "emoji": "๐Ÿ•‰๏ธ", + "text": "๐Ÿ•‰๏ธŽ", + "type": 0, + "order": 4524, + "group": 8, + "subgroup": 87, + "version": 0.7 + }, + { + "label": "star of David", + "hexcode": "2721", + "tags": [ + "david", + "jew", + "jewish", + "religion", + "star", + "star of david" + ], + "emoji": "โœก๏ธ", + "text": "โœก๏ธŽ", + "type": 0, + "order": 4526, + "group": 8, + "subgroup": 87, + "version": 0.7 + }, + { + "label": "wheel of dharma", + "hexcode": "2638", + "tags": [ + "buddhist", + "dharma", + "religion", + "wheel" + ], + "emoji": "โ˜ธ๏ธ", + "text": "โ˜ธ๏ธŽ", + "type": 0, + "order": 4528, + "group": 8, + "subgroup": 87, + "version": 0.7 + }, + { + "label": "yin yang", + "hexcode": "262F", + "tags": [ + "religion", + "tao", + "taoist", + "yang", + "yin" + ], + "emoji": "โ˜ฏ๏ธ", + "text": "โ˜ฏ๏ธŽ", + "type": 0, + "order": 4530, + "group": 8, + "subgroup": 87, + "version": 0.7 + }, + { + "label": "latin cross", + "hexcode": "271D", + "tags": [ + "christian", + "cross", + "religion" + ], + "emoji": "โœ๏ธ", + "text": "โœ๏ธŽ", + "type": 0, + "order": 4532, + "group": 8, + "subgroup": 87, + "version": 0.7 + }, + { + "label": "orthodox cross", + "hexcode": "2626", + "tags": [ + "christian", + "cross", + "religion" + ], + "emoji": "โ˜ฆ๏ธ", + "text": "โ˜ฆ๏ธŽ", + "type": 0, + "order": 4534, + "group": 8, + "subgroup": 87, + "version": 1 + }, + { + "label": "star and crescent", + "hexcode": "262A", + "tags": [ + "islam", + "muslim", + "religion" + ], + "emoji": "โ˜ช๏ธ", + "text": "โ˜ช๏ธŽ", + "type": 0, + "order": 4536, + "group": 8, + "subgroup": 87, + "version": 0.7 + }, + { + "label": "peace symbol", + "hexcode": "262E", + "tags": [ + "peace" + ], + "emoji": "โ˜ฎ๏ธ", + "text": "โ˜ฎ๏ธŽ", + "type": 0, + "order": 4538, + "group": 8, + "subgroup": 87, + "version": 1 + }, + { + "label": "menorah", + "hexcode": "1F54E", + "tags": [ + "candelabrum", + "candlestick", + "religion" + ], + "emoji": "๐Ÿ•Ž", + "text": "", + "type": 1, + "order": 4539, + "group": 8, + "subgroup": 87, + "version": 1 + }, + { + "label": "dotted six-pointed star", + "hexcode": "1F52F", + "tags": [ + "fortune", + "star" + ], + "emoji": "๐Ÿ”ฏ", + "text": "", + "type": 1, + "order": 4540, + "group": 8, + "subgroup": 87, + "version": 0.6 + }, + { + "label": "khanda", + "hexcode": "1FAAF", + "tags": [ + "religion", + "sikh" + ], + "emoji": "๐Ÿชฏ", + "text": "", + "type": 1, + "order": 4541, + "group": 8, + "subgroup": 87, + "version": 15 + }, + { + "label": "Aries", + "hexcode": "2648", + "tags": [ + "aries", + "ram", + "zodiac" + ], + "emoji": "โ™ˆ๏ธ", + "text": "โ™ˆ๏ธŽ", + "type": 1, + "order": 4542, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Taurus", + "hexcode": "2649", + "tags": [ + "bull", + "ox", + "taurus", + "zodiac" + ], + "emoji": "โ™‰๏ธ", + "text": "โ™‰๏ธŽ", + "type": 1, + "order": 4543, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Gemini", + "hexcode": "264A", + "tags": [ + "gemini", + "twins", + "zodiac" + ], + "emoji": "โ™Š๏ธ", + "text": "โ™Š๏ธŽ", + "type": 1, + "order": 4544, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Cancer", + "hexcode": "264B", + "tags": [ + "cancer", + "crab", + "zodiac" + ], + "emoji": "โ™‹๏ธ", + "text": "โ™‹๏ธŽ", + "type": 1, + "order": 4545, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Leo", + "hexcode": "264C", + "tags": [ + "leo", + "lion", + "zodiac" + ], + "emoji": "โ™Œ๏ธ", + "text": "โ™Œ๏ธŽ", + "type": 1, + "order": 4546, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Virgo", + "hexcode": "264D", + "tags": [ + "virgo", + "zodiac" + ], + "emoji": "โ™๏ธ", + "text": "โ™๏ธŽ", + "type": 1, + "order": 4547, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Libra", + "hexcode": "264E", + "tags": [ + "balance", + "justice", + "libra", + "scales", + "zodiac" + ], + "emoji": "โ™Ž๏ธ", + "text": "โ™Ž๏ธŽ", + "type": 1, + "order": 4548, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Scorpio", + "hexcode": "264F", + "tags": [ + "scorpio", + "scorpion", + "scorpius", + "zodiac" + ], + "emoji": "โ™๏ธ", + "text": "โ™๏ธŽ", + "type": 1, + "order": 4549, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Sagittarius", + "hexcode": "2650", + "tags": [ + "archer", + "sagittarius", + "zodiac" + ], + "emoji": "โ™๏ธ", + "text": "โ™๏ธŽ", + "type": 1, + "order": 4550, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Capricorn", + "hexcode": "2651", + "tags": [ + "capricorn", + "goat", + "zodiac" + ], + "emoji": "โ™‘๏ธ", + "text": "โ™‘๏ธŽ", + "type": 1, + "order": 4551, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Aquarius", + "hexcode": "2652", + "tags": [ + "aquarius", + "bearer", + "water", + "zodiac" + ], + "emoji": "โ™’๏ธ", + "text": "โ™’๏ธŽ", + "type": 1, + "order": 4552, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Pisces", + "hexcode": "2653", + "tags": [ + "fish", + "pisces", + "zodiac" + ], + "emoji": "โ™“๏ธ", + "text": "โ™“๏ธŽ", + "type": 1, + "order": 4553, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "Ophiuchus", + "hexcode": "26CE", + "tags": [ + "bearer", + "ophiuchus", + "serpent", + "snake", + "zodiac" + ], + "emoji": "โ›Ž๏ธ", + "text": "โ›Ž๏ธŽ", + "type": 1, + "order": 4554, + "group": 8, + "subgroup": 88, + "version": 0.6 + }, + { + "label": "shuffle tracks button", + "hexcode": "1F500", + "tags": [ + "arrow", + "crossed" + ], + "emoji": "๐Ÿ”€", + "text": "", + "type": 1, + "order": 4555, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "repeat button", + "hexcode": "1F501", + "tags": [ + "arrow", + "clockwise", + "repeat" + ], + "emoji": "๐Ÿ”", + "text": "", + "type": 1, + "order": 4556, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "repeat single button", + "hexcode": "1F502", + "tags": [ + "arrow", + "clockwise", + "once" + ], + "emoji": "๐Ÿ”‚", + "text": "", + "type": 1, + "order": 4557, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "play button", + "hexcode": "25B6", + "tags": [ + "arrow", + "play", + "right", + "triangle" + ], + "emoji": "โ–ถ๏ธ", + "text": "โ–ถ๏ธŽ", + "type": 0, + "order": 4559, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "fast-forward button", + "hexcode": "23E9", + "tags": [ + "arrow", + "double", + "fast", + "forward" + ], + "emoji": "โฉ๏ธ", + "text": "โฉ๏ธŽ", + "type": 1, + "order": 4560, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "next track button", + "hexcode": "23ED", + "tags": [ + "arrow", + "next scene", + "next track", + "triangle" + ], + "emoji": "โญ๏ธ", + "text": "โญ๏ธŽ", + "type": 0, + "order": 4562, + "group": 8, + "subgroup": 89, + "version": 0.7 + }, + { + "label": "play or pause button", + "hexcode": "23EF", + "tags": [ + "arrow", + "pause", + "play", + "right", + "triangle" + ], + "emoji": "โฏ๏ธ", + "text": "โฏ๏ธŽ", + "type": 0, + "order": 4564, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "reverse button", + "hexcode": "25C0", + "tags": [ + "arrow", + "left", + "reverse", + "triangle" + ], + "emoji": "โ—€๏ธ", + "text": "โ—€๏ธŽ", + "type": 0, + "order": 4566, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "fast reverse button", + "hexcode": "23EA", + "tags": [ + "arrow", + "double", + "rewind" + ], + "emoji": "โช๏ธ", + "text": "โช๏ธŽ", + "type": 1, + "order": 4567, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "last track button", + "hexcode": "23EE", + "tags": [ + "arrow", + "previous scene", + "previous track", + "triangle" + ], + "emoji": "โฎ๏ธ", + "text": "โฎ๏ธŽ", + "type": 0, + "order": 4569, + "group": 8, + "subgroup": 89, + "version": 0.7 + }, + { + "label": "upwards button", + "hexcode": "1F53C", + "tags": [ + "arrow", + "button" + ], + "emoji": "๐Ÿ”ผ", + "text": "", + "type": 1, + "order": 4570, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "fast up button", + "hexcode": "23EB", + "tags": [ + "arrow", + "double" + ], + "emoji": "โซ๏ธ", + "text": "โซ๏ธŽ", + "type": 1, + "order": 4571, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "downwards button", + "hexcode": "1F53D", + "tags": [ + "arrow", + "button", + "down" + ], + "emoji": "๐Ÿ”ฝ", + "text": "", + "type": 1, + "order": 4572, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "fast down button", + "hexcode": "23EC", + "tags": [ + "arrow", + "double", + "down" + ], + "emoji": "โฌ๏ธ", + "text": "โฌ๏ธŽ", + "type": 1, + "order": 4573, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "pause button", + "hexcode": "23F8", + "tags": [ + "bar", + "double", + "pause", + "vertical" + ], + "emoji": "โธ๏ธ", + "text": "โธ๏ธŽ", + "type": 0, + "order": 4575, + "group": 8, + "subgroup": 89, + "version": 0.7 + }, + { + "label": "stop button", + "hexcode": "23F9", + "tags": [ + "square", + "stop" + ], + "emoji": "โน๏ธ", + "text": "โน๏ธŽ", + "type": 0, + "order": 4577, + "group": 8, + "subgroup": 89, + "version": 0.7 + }, + { + "label": "record button", + "hexcode": "23FA", + "tags": [ + "circle", + "record" + ], + "emoji": "โบ๏ธ", + "text": "โบ๏ธŽ", + "type": 0, + "order": 4579, + "group": 8, + "subgroup": 89, + "version": 0.7 + }, + { + "label": "eject button", + "hexcode": "23CF", + "tags": [ + "eject" + ], + "emoji": "โ๏ธ", + "text": "โ๏ธŽ", + "type": 0, + "order": 4581, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "cinema", + "hexcode": "1F3A6", + "tags": [ + "camera", + "film", + "movie" + ], + "emoji": "๐ŸŽฆ", + "text": "", + "type": 1, + "order": 4582, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "dim button", + "hexcode": "1F505", + "tags": [ + "brightness", + "dim", + "low" + ], + "emoji": "๐Ÿ”…", + "text": "", + "type": 1, + "order": 4583, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "bright button", + "hexcode": "1F506", + "tags": [ + "bright", + "brightness" + ], + "emoji": "๐Ÿ”†", + "text": "", + "type": 1, + "order": 4584, + "group": 8, + "subgroup": 89, + "version": 1 + }, + { + "label": "antenna bars", + "hexcode": "1F4F6", + "tags": [ + "antenna", + "bar", + "cell", + "mobile", + "phone" + ], + "emoji": "๐Ÿ“ถ", + "text": "", + "type": 1, + "order": 4585, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "wireless", + "hexcode": "1F6DC", + "tags": [ + "computer", + "internet", + "network", + "wi-fi", + "wifi" + ], + "emoji": "๐Ÿ›œ", + "text": "", + "type": 1, + "order": 4586, + "group": 8, + "subgroup": 89, + "version": 15 + }, + { + "label": "vibration mode", + "hexcode": "1F4F3", + "tags": [ + "cell", + "mobile", + "mode", + "phone", + "telephone", + "vibration" + ], + "emoji": "๐Ÿ“ณ", + "text": "", + "type": 1, + "order": 4587, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "mobile phone off", + "hexcode": "1F4F4", + "tags": [ + "cell", + "mobile", + "off", + "phone", + "telephone" + ], + "emoji": "๐Ÿ“ด", + "text": "", + "type": 1, + "order": 4588, + "group": 8, + "subgroup": 89, + "version": 0.6 + }, + { + "label": "female sign", + "hexcode": "2640", + "tags": [ + "woman" + ], + "emoji": "โ™€๏ธ", + "text": "โ™€๏ธŽ", + "type": 0, + "order": 4590, + "group": 8, + "subgroup": 90, + "version": 4 + }, + { + "label": "male sign", + "hexcode": "2642", + "tags": [ + "man" + ], + "emoji": "โ™‚๏ธ", + "text": "โ™‚๏ธŽ", + "type": 0, + "order": 4592, + "group": 8, + "subgroup": 90, + "version": 4 + }, + { + "label": "transgender symbol", + "hexcode": "26A7", + "tags": [ + "transgender" + ], + "emoji": "โšง๏ธ", + "text": "โšง๏ธŽ", + "type": 0, + "order": 4594, + "group": 8, + "subgroup": 90, + "version": 13 + }, + { + "label": "multiply", + "hexcode": "2716", + "tags": [ + "cancel", + "multiplication", + "sign", + "x", + "ร—" + ], + "emoji": "โœ–๏ธ", + "text": "โœ–๏ธŽ", + "type": 0, + "order": 4596, + "group": 8, + "subgroup": 91, + "version": 0.6 + }, + { + "label": "plus", + "hexcode": "2795", + "tags": [ + "+", + "math", + "sign" + ], + "emoji": "โž•๏ธ", + "text": "โž•๏ธŽ", + "type": 1, + "order": 4597, + "group": 8, + "subgroup": 91, + "version": 0.6 + }, + { + "label": "minus", + "hexcode": "2796", + "tags": [ + "-", + "math", + "sign", + "โˆ’" + ], + "emoji": "โž–๏ธ", + "text": "โž–๏ธŽ", + "type": 1, + "order": 4598, + "group": 8, + "subgroup": 91, + "version": 0.6 + }, + { + "label": "divide", + "hexcode": "2797", + "tags": [ + "division", + "math", + "sign", + "รท" + ], + "emoji": "โž—๏ธ", + "text": "โž—๏ธŽ", + "type": 1, + "order": 4599, + "group": 8, + "subgroup": 91, + "version": 0.6 + }, + { + "label": "heavy equals sign", + "hexcode": "1F7F0", + "tags": [ + "equality", + "math" + ], + "emoji": "๐ŸŸฐ", + "text": "", + "type": 1, + "order": 4600, + "group": 8, + "subgroup": 91, + "version": 14 + }, + { + "label": "infinity", + "hexcode": "267E", + "tags": [ + "forever", + "unbounded", + "universal" + ], + "emoji": "โ™พ๏ธ", + "text": "โ™พ๏ธŽ", + "type": 0, + "order": 4602, + "group": 8, + "subgroup": 91, + "version": 11 + }, + { + "label": "double exclamation mark", + "hexcode": "203C", + "tags": [ + "!", + "!!", + "bangbang", + "exclamation", + "mark" + ], + "emoji": "โ€ผ๏ธ", + "text": "โ€ผ๏ธŽ", + "type": 0, + "order": 4604, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "exclamation question mark", + "hexcode": "2049", + "tags": [ + "!", + "!?", + "?", + "exclamation", + "interrobang", + "mark", + "punctuation", + "question" + ], + "emoji": "โ‰๏ธ", + "text": "โ‰๏ธŽ", + "type": 0, + "order": 4606, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "red question mark", + "hexcode": "2753", + "tags": [ + "?", + "mark", + "punctuation", + "question" + ], + "emoji": "โ“๏ธ", + "text": "โ“๏ธŽ", + "type": 1, + "order": 4607, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "white question mark", + "hexcode": "2754", + "tags": [ + "?", + "mark", + "outlined", + "punctuation", + "question" + ], + "emoji": "โ”๏ธ", + "text": "โ”๏ธŽ", + "type": 1, + "order": 4608, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "white exclamation mark", + "hexcode": "2755", + "tags": [ + "!", + "exclamation", + "mark", + "outlined", + "punctuation" + ], + "emoji": "โ•๏ธ", + "text": "โ•๏ธŽ", + "type": 1, + "order": 4609, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "red exclamation mark", + "hexcode": "2757", + "tags": [ + "!", + "exclamation", + "mark", + "punctuation" + ], + "emoji": "โ—๏ธ", + "text": "โ—๏ธŽ", + "type": 1, + "order": 4610, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "wavy dash", + "hexcode": "3030", + "tags": [ + "dash", + "punctuation", + "wavy" + ], + "emoji": "ใ€ฐ๏ธ", + "text": "ใ€ฐ๏ธŽ", + "type": 0, + "order": 4612, + "group": 8, + "subgroup": 92, + "version": 0.6 + }, + { + "label": "currency exchange", + "hexcode": "1F4B1", + "tags": [ + "bank", + "currency", + "exchange", + "money" + ], + "emoji": "๐Ÿ’ฑ", + "text": "", + "type": 1, + "order": 4613, + "group": 8, + "subgroup": 93, + "version": 0.6 + }, + { + "label": "heavy dollar sign", + "hexcode": "1F4B2", + "tags": [ + "currency", + "dollar", + "money" + ], + "emoji": "๐Ÿ’ฒ", + "text": "", + "type": 1, + "order": 4614, + "group": 8, + "subgroup": 93, + "version": 0.6 + }, + { + "label": "medical symbol", + "hexcode": "2695", + "tags": [ + "aesculapius", + "medicine", + "staff" + ], + "emoji": "โš•๏ธ", + "text": "โš•๏ธŽ", + "type": 0, + "order": 4616, + "group": 8, + "subgroup": 94, + "version": 4 + }, + { + "label": "recycling symbol", + "hexcode": "267B", + "tags": [ + "recycle" + ], + "emoji": "โ™ป๏ธ", + "text": "โ™ป๏ธŽ", + "type": 0, + "order": 4618, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "fleur-de-lis", + "hexcode": "269C", + "tags": [ + "fleur-de-lis" + ], + "emoji": "โšœ๏ธ", + "text": "โšœ๏ธŽ", + "type": 0, + "order": 4620, + "group": 8, + "subgroup": 94, + "version": 1 + }, + { + "label": "trident emblem", + "hexcode": "1F531", + "tags": [ + "anchor", + "emblem", + "ship", + "tool", + "trident" + ], + "emoji": "๐Ÿ”ฑ", + "text": "", + "type": 1, + "order": 4621, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "name badge", + "hexcode": "1F4DB", + "tags": [ + "badge", + "name" + ], + "emoji": "๐Ÿ“›", + "text": "", + "type": 1, + "order": 4622, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "Japanese symbol for beginner", + "hexcode": "1F530", + "tags": [ + "beginner", + "chevron", + "japanese", + "japanese symbol for beginner", + "leaf" + ], + "emoji": "๐Ÿ”ฐ", + "text": "", + "type": 1, + "order": 4623, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "hollow red circle", + "hexcode": "2B55", + "tags": [ + "circle", + "large", + "o", + "red" + ], + "emoji": "โญ•๏ธ", + "text": "โญ•๏ธŽ", + "type": 1, + "order": 4624, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "check mark button", + "hexcode": "2705", + "tags": [ + "button", + "check", + "mark", + "โœ“" + ], + "emoji": "โœ…๏ธ", + "text": "โœ…๏ธŽ", + "type": 1, + "order": 4625, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "check box with check", + "hexcode": "2611", + "tags": [ + "box", + "check", + "โœ“" + ], + "emoji": "โ˜‘๏ธ", + "text": "โ˜‘๏ธŽ", + "type": 0, + "order": 4627, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "check mark", + "hexcode": "2714", + "tags": [ + "check", + "mark", + "โœ“" + ], + "emoji": "โœ”๏ธ", + "text": "โœ”๏ธŽ", + "type": 0, + "order": 4629, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "cross mark", + "hexcode": "274C", + "tags": [ + "cancel", + "cross", + "mark", + "multiplication", + "multiply", + "x", + "ร—" + ], + "emoji": "โŒ๏ธ", + "text": "โŒ๏ธŽ", + "type": 1, + "order": 4630, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "cross mark button", + "hexcode": "274E", + "tags": [ + "mark", + "square", + "x", + "ร—" + ], + "emoji": "โŽ๏ธ", + "text": "โŽ๏ธŽ", + "type": 1, + "order": 4631, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "curly loop", + "hexcode": "27B0", + "tags": [ + "curl", + "loop" + ], + "emoji": "โžฐ๏ธ", + "text": "โžฐ๏ธŽ", + "type": 1, + "order": 4632, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "double curly loop", + "hexcode": "27BF", + "tags": [ + "curl", + "double", + "loop" + ], + "emoji": "โžฟ๏ธ", + "text": "โžฟ๏ธŽ", + "type": 1, + "order": 4633, + "group": 8, + "subgroup": 94, + "version": 1 + }, + { + "label": "part alternation mark", + "hexcode": "303D", + "tags": [ + "mark", + "part" + ], + "emoji": "ใ€ฝ๏ธ", + "text": "ใ€ฝ๏ธŽ", + "type": 0, + "order": 4635, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "eight-spoked asterisk", + "hexcode": "2733", + "tags": [ + "*", + "asterisk" + ], + "emoji": "โœณ๏ธ", + "text": "โœณ๏ธŽ", + "type": 0, + "order": 4637, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "eight-pointed star", + "hexcode": "2734", + "tags": [ + "*", + "star" + ], + "emoji": "โœด๏ธ", + "text": "โœด๏ธŽ", + "type": 0, + "order": 4639, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "sparkle", + "hexcode": "2747", + "tags": [ + "*" + ], + "emoji": "โ‡๏ธ", + "text": "โ‡๏ธŽ", + "type": 0, + "order": 4641, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "copyright", + "hexcode": "00A9", + "tags": [ + "c" + ], + "emoji": "ยฉ๏ธ", + "text": "ยฉ๏ธŽ", + "type": 0, + "order": 4643, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "registered", + "hexcode": "00AE", + "tags": [ + "r" + ], + "emoji": "ยฎ๏ธ", + "text": "ยฎ๏ธŽ", + "type": 0, + "order": 4645, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "trade mark", + "hexcode": "2122", + "tags": [ + "mark", + "tm", + "trademark" + ], + "emoji": "โ„ข๏ธ", + "text": "โ„ข๏ธŽ", + "type": 0, + "order": 4647, + "group": 8, + "subgroup": 94, + "version": 0.6 + }, + { + "label": "keycap: #", + "hexcode": "0023-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "#๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4648, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: *", + "hexcode": "002A-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "*๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4650, + "group": 8, + "subgroup": 95, + "version": 2 + }, + { + "label": "keycap: 0", + "hexcode": "0030-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "0๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4652, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 1", + "hexcode": "0031-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "1๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4654, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 2", + "hexcode": "0032-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "2๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4656, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 3", + "hexcode": "0033-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "3๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4658, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 4", + "hexcode": "0034-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "4๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4660, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 5", + "hexcode": "0035-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "5๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4662, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 6", + "hexcode": "0036-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "6๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4664, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 7", + "hexcode": "0037-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "7๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4666, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 8", + "hexcode": "0038-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "8๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4668, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 9", + "hexcode": "0039-FE0F-20E3", + "tags": [ + "keycap" + ], + "emoji": "9๏ธโƒฃ", + "text": "", + "type": 1, + "order": 4670, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "keycap: 10", + "hexcode": "1F51F", + "tags": [ + "keycap" + ], + "emoji": "๐Ÿ”Ÿ", + "text": "", + "type": 1, + "order": 4672, + "group": 8, + "subgroup": 95, + "version": 0.6 + }, + { + "label": "input latin uppercase", + "hexcode": "1F520", + "tags": [ + "abcd", + "input", + "latin", + "letters", + "uppercase" + ], + "emoji": "๐Ÿ” ", + "text": "", + "type": 1, + "order": 4673, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "input latin lowercase", + "hexcode": "1F521", + "tags": [ + "abcd", + "input", + "latin", + "letters", + "lowercase" + ], + "emoji": "๐Ÿ”ก", + "text": "", + "type": 1, + "order": 4674, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "input numbers", + "hexcode": "1F522", + "tags": [ + "1234", + "input", + "numbers" + ], + "emoji": "๐Ÿ”ข", + "text": "", + "type": 1, + "order": 4675, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "input symbols", + "hexcode": "1F523", + "tags": [ + "input", + "ใ€’โ™ช&%" + ], + "emoji": "๐Ÿ”ฃ", + "text": "", + "type": 1, + "order": 4676, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "input latin letters", + "hexcode": "1F524", + "tags": [ + "abc", + "alphabet", + "input", + "latin", + "letters" + ], + "emoji": "๐Ÿ”ค", + "text": "", + "type": 1, + "order": 4677, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "A button (blood type)", + "hexcode": "1F170", + "tags": [ + "a", + "a button (blood type)", + "blood type" + ], + "emoji": "๐Ÿ…ฐ๏ธ", + "text": "๐Ÿ…ฐ๏ธŽ", + "type": 0, + "order": 4679, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "AB button (blood type)", + "hexcode": "1F18E", + "tags": [ + "ab", + "ab button (blood type)", + "blood type" + ], + "emoji": "๐Ÿ†Ž", + "text": "", + "type": 1, + "order": 4680, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "B button (blood type)", + "hexcode": "1F171", + "tags": [ + "b", + "b button (blood type)", + "blood type" + ], + "emoji": "๐Ÿ…ฑ๏ธ", + "text": "๐Ÿ…ฑ๏ธŽ", + "type": 0, + "order": 4682, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "CL button", + "hexcode": "1F191", + "tags": [ + "cl", + "cl button" + ], + "emoji": "๐Ÿ†‘", + "text": "", + "type": 1, + "order": 4683, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "COOL button", + "hexcode": "1F192", + "tags": [ + "cool", + "cool button" + ], + "emoji": "๐Ÿ†’", + "text": "", + "type": 1, + "order": 4684, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "FREE button", + "hexcode": "1F193", + "tags": [ + "free", + "free button" + ], + "emoji": "๐Ÿ†“", + "text": "", + "type": 1, + "order": 4685, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "information", + "hexcode": "2139", + "tags": [ + "i" + ], + "emoji": "โ„น๏ธ", + "text": "โ„น๏ธŽ", + "type": 0, + "order": 4687, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "ID button", + "hexcode": "1F194", + "tags": [ + "id", + "id button", + "identity" + ], + "emoji": "๐Ÿ†”", + "text": "", + "type": 1, + "order": 4688, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "circled M", + "hexcode": "24C2", + "tags": [ + "circle", + "circled m", + "m" + ], + "emoji": "โ“‚๏ธ", + "text": "โ“‚๏ธŽ", + "type": 0, + "order": 4690, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "NEW button", + "hexcode": "1F195", + "tags": [ + "new", + "new button" + ], + "emoji": "๐Ÿ†•", + "text": "", + "type": 1, + "order": 4691, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "NG button", + "hexcode": "1F196", + "tags": [ + "ng", + "ng button" + ], + "emoji": "๐Ÿ†–", + "text": "", + "type": 1, + "order": 4692, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "O button (blood type)", + "hexcode": "1F17E", + "tags": [ + "blood type", + "o", + "o button (blood type)" + ], + "emoji": "๐Ÿ…พ๏ธ", + "text": "๐Ÿ…พ๏ธŽ", + "type": 0, + "order": 4694, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "OK button", + "hexcode": "1F197", + "tags": [ + "ok", + "ok button" + ], + "emoji": "๐Ÿ†—", + "text": "", + "type": 1, + "order": 4695, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "P button", + "hexcode": "1F17F", + "tags": [ + "p", + "p button", + "parking" + ], + "emoji": "๐Ÿ…ฟ๏ธ", + "text": "๐Ÿ…ฟ๏ธŽ", + "type": 0, + "order": 4697, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "SOS button", + "hexcode": "1F198", + "tags": [ + "help", + "sos", + "sos button" + ], + "emoji": "๐Ÿ†˜", + "text": "", + "type": 1, + "order": 4698, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "UP! button", + "hexcode": "1F199", + "tags": [ + "mark", + "up", + "up!", + "up! button" + ], + "emoji": "๐Ÿ†™", + "text": "", + "type": 1, + "order": 4699, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "VS button", + "hexcode": "1F19A", + "tags": [ + "versus", + "vs", + "vs button" + ], + "emoji": "๐Ÿ†š", + "text": "", + "type": 1, + "order": 4700, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œhereโ€ button", + "hexcode": "1F201", + "tags": [ + "japanese", + "japanese โ€œhereโ€ button", + "katakana", + "โ€œhereโ€", + "ใ‚ณใ‚ณ" + ], + "emoji": "๐Ÿˆ", + "text": "", + "type": 1, + "order": 4701, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œservice chargeโ€ button", + "hexcode": "1F202", + "tags": [ + "japanese", + "japanese โ€œservice chargeโ€ button", + "katakana", + "โ€œservice chargeโ€", + "ใ‚ต" + ], + "emoji": "๐Ÿˆ‚๏ธ", + "text": "๐Ÿˆ‚๏ธŽ", + "type": 0, + "order": 4703, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œmonthly amountโ€ button", + "hexcode": "1F237", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œmonthly amountโ€ button", + "โ€œmonthly amountโ€", + "ๆœˆ" + ], + "emoji": "๐Ÿˆท๏ธ", + "text": "๐Ÿˆท๏ธŽ", + "type": 0, + "order": 4705, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œnot free of chargeโ€ button", + "hexcode": "1F236", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œnot free of chargeโ€ button", + "โ€œnot free of chargeโ€", + "ๆœ‰" + ], + "emoji": "๐Ÿˆถ", + "text": "", + "type": 1, + "order": 4706, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œreservedโ€ button", + "hexcode": "1F22F", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œreservedโ€ button", + "โ€œreservedโ€", + "ๆŒ‡" + ], + "emoji": "๐Ÿˆฏ๏ธ", + "text": "๐Ÿˆฏ๏ธŽ", + "type": 1, + "order": 4707, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œbargainโ€ button", + "hexcode": "1F250", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œbargainโ€ button", + "โ€œbargainโ€", + "ๅพ—" + ], + "emoji": "๐Ÿ‰", + "text": "", + "type": 1, + "order": 4708, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œdiscountโ€ button", + "hexcode": "1F239", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œdiscountโ€ button", + "โ€œdiscountโ€", + "ๅ‰ฒ" + ], + "emoji": "๐Ÿˆน", + "text": "", + "type": 1, + "order": 4709, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œfree of chargeโ€ button", + "hexcode": "1F21A", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œfree of chargeโ€ button", + "โ€œfree of chargeโ€", + "็„ก" + ], + "emoji": "๐Ÿˆš๏ธ", + "text": "๐Ÿˆš๏ธŽ", + "type": 1, + "order": 4710, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œprohibitedโ€ button", + "hexcode": "1F232", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œprohibitedโ€ button", + "โ€œprohibitedโ€", + "็ฆ" + ], + "emoji": "๐Ÿˆฒ", + "text": "", + "type": 1, + "order": 4711, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œacceptableโ€ button", + "hexcode": "1F251", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œacceptableโ€ button", + "โ€œacceptableโ€", + "ๅฏ" + ], + "emoji": "๐Ÿ‰‘", + "text": "", + "type": 1, + "order": 4712, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œapplicationโ€ button", + "hexcode": "1F238", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œapplicationโ€ button", + "โ€œapplicationโ€", + "็”ณ" + ], + "emoji": "๐Ÿˆธ", + "text": "", + "type": 1, + "order": 4713, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œpassing gradeโ€ button", + "hexcode": "1F234", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œpassing gradeโ€ button", + "โ€œpassing gradeโ€", + "ๅˆ" + ], + "emoji": "๐Ÿˆด", + "text": "", + "type": 1, + "order": 4714, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œvacancyโ€ button", + "hexcode": "1F233", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œvacancyโ€ button", + "โ€œvacancyโ€", + "็ฉบ" + ], + "emoji": "๐Ÿˆณ", + "text": "", + "type": 1, + "order": 4715, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œcongratulationsโ€ button", + "hexcode": "3297", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œcongratulationsโ€ button", + "โ€œcongratulationsโ€", + "็ฅ" + ], + "emoji": "ใŠ—๏ธ", + "text": "ใŠ—๏ธŽ", + "type": 0, + "order": 4717, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œsecretโ€ button", + "hexcode": "3299", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œsecretโ€ button", + "โ€œsecretโ€", + "็ง˜" + ], + "emoji": "ใŠ™๏ธ", + "text": "ใŠ™๏ธŽ", + "type": 0, + "order": 4719, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œopen for businessโ€ button", + "hexcode": "1F23A", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œopen for businessโ€ button", + "โ€œopen for businessโ€", + "ๅ–ถ" + ], + "emoji": "๐Ÿˆบ", + "text": "", + "type": 1, + "order": 4720, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "Japanese โ€œno vacancyโ€ button", + "hexcode": "1F235", + "tags": [ + "ideograph", + "japanese", + "japanese โ€œno vacancyโ€ button", + "โ€œno vacancyโ€", + "ๆบ€" + ], + "emoji": "๐Ÿˆต", + "text": "", + "type": 1, + "order": 4721, + "group": 8, + "subgroup": 96, + "version": 0.6 + }, + { + "label": "red circle", + "hexcode": "1F534", + "tags": [ + "circle", + "geometric", + "red" + ], + "emoji": "๐Ÿ”ด", + "text": "", + "type": 1, + "order": 4722, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "orange circle", + "hexcode": "1F7E0", + "tags": [ + "circle", + "orange" + ], + "emoji": "๐ŸŸ ", + "text": "", + "type": 1, + "order": 4723, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "yellow circle", + "hexcode": "1F7E1", + "tags": [ + "circle", + "yellow" + ], + "emoji": "๐ŸŸก", + "text": "", + "type": 1, + "order": 4724, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "green circle", + "hexcode": "1F7E2", + "tags": [ + "circle", + "green" + ], + "emoji": "๐ŸŸข", + "text": "", + "type": 1, + "order": 4725, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "blue circle", + "hexcode": "1F535", + "tags": [ + "blue", + "circle", + "geometric" + ], + "emoji": "๐Ÿ”ต", + "text": "", + "type": 1, + "order": 4726, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "purple circle", + "hexcode": "1F7E3", + "tags": [ + "circle", + "purple" + ], + "emoji": "๐ŸŸฃ", + "text": "", + "type": 1, + "order": 4727, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "brown circle", + "hexcode": "1F7E4", + "tags": [ + "brown", + "circle" + ], + "emoji": "๐ŸŸค", + "text": "", + "type": 1, + "order": 4728, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "black circle", + "hexcode": "26AB", + "tags": [ + "circle", + "geometric" + ], + "emoji": "โšซ๏ธ", + "text": "โšซ๏ธŽ", + "type": 1, + "order": 4729, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "white circle", + "hexcode": "26AA", + "tags": [ + "circle", + "geometric" + ], + "emoji": "โšช๏ธ", + "text": "โšช๏ธŽ", + "type": 1, + "order": 4730, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "red square", + "hexcode": "1F7E5", + "tags": [ + "red", + "square" + ], + "emoji": "๐ŸŸฅ", + "text": "", + "type": 1, + "order": 4731, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "orange square", + "hexcode": "1F7E7", + "tags": [ + "orange", + "square" + ], + "emoji": "๐ŸŸง", + "text": "", + "type": 1, + "order": 4732, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "yellow square", + "hexcode": "1F7E8", + "tags": [ + "square", + "yellow" + ], + "emoji": "๐ŸŸจ", + "text": "", + "type": 1, + "order": 4733, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "green square", + "hexcode": "1F7E9", + "tags": [ + "green", + "square" + ], + "emoji": "๐ŸŸฉ", + "text": "", + "type": 1, + "order": 4734, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "blue square", + "hexcode": "1F7E6", + "tags": [ + "blue", + "square" + ], + "emoji": "๐ŸŸฆ", + "text": "", + "type": 1, + "order": 4735, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "purple square", + "hexcode": "1F7EA", + "tags": [ + "purple", + "square" + ], + "emoji": "๐ŸŸช", + "text": "", + "type": 1, + "order": 4736, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "brown square", + "hexcode": "1F7EB", + "tags": [ + "brown", + "square" + ], + "emoji": "๐ŸŸซ", + "text": "", + "type": 1, + "order": 4737, + "group": 8, + "subgroup": 97, + "version": 12 + }, + { + "label": "black large square", + "hexcode": "2B1B", + "tags": [ + "geometric", + "square" + ], + "emoji": "โฌ›๏ธ", + "text": "โฌ›๏ธŽ", + "type": 1, + "order": 4738, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "white large square", + "hexcode": "2B1C", + "tags": [ + "geometric", + "square" + ], + "emoji": "โฌœ๏ธ", + "text": "โฌœ๏ธŽ", + "type": 1, + "order": 4739, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "black medium square", + "hexcode": "25FC", + "tags": [ + "geometric", + "square" + ], + "emoji": "โ—ผ๏ธ", + "text": "โ—ผ๏ธŽ", + "type": 0, + "order": 4741, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "white medium square", + "hexcode": "25FB", + "tags": [ + "geometric", + "square" + ], + "emoji": "โ—ป๏ธ", + "text": "โ—ป๏ธŽ", + "type": 0, + "order": 4743, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "black medium-small square", + "hexcode": "25FE", + "tags": [ + "geometric", + "square" + ], + "emoji": "โ—พ๏ธ", + "text": "โ—พ๏ธŽ", + "type": 1, + "order": 4744, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "white medium-small square", + "hexcode": "25FD", + "tags": [ + "geometric", + "square" + ], + "emoji": "โ—ฝ๏ธ", + "text": "โ—ฝ๏ธŽ", + "type": 1, + "order": 4745, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "black small square", + "hexcode": "25AA", + "tags": [ + "geometric", + "square" + ], + "emoji": "โ–ช๏ธ", + "text": "โ–ช๏ธŽ", + "type": 0, + "order": 4747, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "white small square", + "hexcode": "25AB", + "tags": [ + "geometric", + "square" + ], + "emoji": "โ–ซ๏ธ", + "text": "โ–ซ๏ธŽ", + "type": 0, + "order": 4749, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "large orange diamond", + "hexcode": "1F536", + "tags": [ + "diamond", + "geometric", + "orange" + ], + "emoji": "๐Ÿ”ถ", + "text": "", + "type": 1, + "order": 4750, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "large blue diamond", + "hexcode": "1F537", + "tags": [ + "blue", + "diamond", + "geometric" + ], + "emoji": "๐Ÿ”ท", + "text": "", + "type": 1, + "order": 4751, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "small orange diamond", + "hexcode": "1F538", + "tags": [ + "diamond", + "geometric", + "orange" + ], + "emoji": "๐Ÿ”ธ", + "text": "", + "type": 1, + "order": 4752, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "small blue diamond", + "hexcode": "1F539", + "tags": [ + "blue", + "diamond", + "geometric" + ], + "emoji": "๐Ÿ”น", + "text": "", + "type": 1, + "order": 4753, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "red triangle pointed up", + "hexcode": "1F53A", + "tags": [ + "geometric", + "red" + ], + "emoji": "๐Ÿ”บ", + "text": "", + "type": 1, + "order": 4754, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "red triangle pointed down", + "hexcode": "1F53B", + "tags": [ + "down", + "geometric", + "red" + ], + "emoji": "๐Ÿ”ป", + "text": "", + "type": 1, + "order": 4755, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "diamond with a dot", + "hexcode": "1F4A0", + "tags": [ + "comic", + "diamond", + "geometric", + "inside" + ], + "emoji": "๐Ÿ’ ", + "text": "", + "type": 1, + "order": 4756, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "radio button", + "hexcode": "1F518", + "tags": [ + "button", + "geometric", + "radio" + ], + "emoji": "๐Ÿ”˜", + "text": "", + "type": 1, + "order": 4757, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "white square button", + "hexcode": "1F533", + "tags": [ + "button", + "geometric", + "outlined", + "square" + ], + "emoji": "๐Ÿ”ณ", + "text": "", + "type": 1, + "order": 4758, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "black square button", + "hexcode": "1F532", + "tags": [ + "button", + "geometric", + "square" + ], + "emoji": "๐Ÿ”ฒ", + "text": "", + "type": 1, + "order": 4759, + "group": 8, + "subgroup": 97, + "version": 0.6 + }, + { + "label": "chequered flag", + "hexcode": "1F3C1", + "tags": [ + "checkered", + "chequered", + "racing" + ], + "emoji": "๐Ÿ", + "text": "", + "type": 1, + "order": 4760, + "group": 9, + "subgroup": 98, + "version": 0.6 + }, + { + "label": "triangular flag", + "hexcode": "1F6A9", + "tags": [ + "post" + ], + "emoji": "๐Ÿšฉ", + "text": "", + "type": 1, + "order": 4761, + "group": 9, + "subgroup": 98, + "version": 0.6 + }, + { + "label": "crossed flags", + "hexcode": "1F38C", + "tags": [ + "celebration", + "cross", + "crossed", + "japanese" + ], + "emoji": "๐ŸŽŒ", + "text": "", + "type": 1, + "order": 4762, + "group": 9, + "subgroup": 98, + "version": 0.6 + }, + { + "label": "black flag", + "hexcode": "1F3F4", + "tags": [ + "waving" + ], + "emoji": "๐Ÿด", + "text": "", + "type": 1, + "order": 4763, + "group": 9, + "subgroup": 98, + "version": 1 + }, + { + "label": "white flag", + "hexcode": "1F3F3", + "tags": [ + "waving" + ], + "emoji": "๐Ÿณ๏ธ", + "text": "๐Ÿณ๏ธŽ", + "type": 0, + "order": 4765, + "group": 9, + "subgroup": 98, + "version": 0.7 + }, + { + "label": "rainbow flag", + "hexcode": "1F3F3-FE0F-200D-1F308", + "tags": [ + "pride", + "rainbow" + ], + "emoji": "๐Ÿณ๏ธโ€๐ŸŒˆ", + "text": "", + "type": 1, + "order": 4766, + "group": 9, + "subgroup": 98, + "version": 4 + }, + { + "label": "transgender flag", + "hexcode": "1F3F3-FE0F-200D-26A7-FE0F", + "tags": [ + "flag", + "light blue", + "pink", + "transgender", + "white" + ], + "emoji": "๐Ÿณ๏ธโ€โšง๏ธ", + "text": "", + "type": 1, + "order": 4768, + "group": 9, + "subgroup": 98, + "version": 13 + }, + { + "label": "pirate flag", + "hexcode": "1F3F4-200D-2620-FE0F", + "tags": [ + "jolly roger", + "pirate", + "plunder", + "treasure" + ], + "emoji": "๐Ÿดโ€โ˜ ๏ธ", + "text": "", + "type": 1, + "order": 4772, + "group": 9, + "subgroup": 98, + "version": 11 + }, + { + "label": "flag: Ascension Island", + "hexcode": "1F1E6-1F1E8", + "tags": [ + "AC", + "flag", + "flag: ascension island" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4774, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Andorra", + "hexcode": "1F1E6-1F1E9", + "tags": [ + "AD", + "flag", + "flag: andorra" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4775, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: United Arab Emirates", + "hexcode": "1F1E6-1F1EA", + "tags": [ + "AE", + "flag", + "flag: united arab emirates" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4776, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Afghanistan", + "hexcode": "1F1E6-1F1EB", + "tags": [ + "AF", + "flag", + "flag: afghanistan" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4777, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Antigua & Barbuda", + "hexcode": "1F1E6-1F1EC", + "tags": [ + "AG", + "flag", + "flag: antigua & barbuda" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4778, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Anguilla", + "hexcode": "1F1E6-1F1EE", + "tags": [ + "AI", + "flag", + "flag: anguilla" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4779, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Albania", + "hexcode": "1F1E6-1F1F1", + "tags": [ + "AL", + "flag", + "flag: albania" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4780, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Armenia", + "hexcode": "1F1E6-1F1F2", + "tags": [ + "AM", + "flag", + "flag: armenia" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4781, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Angola", + "hexcode": "1F1E6-1F1F4", + "tags": [ + "AO", + "flag", + "flag: angola" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4782, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Antarctica", + "hexcode": "1F1E6-1F1F6", + "tags": [ + "AQ", + "flag", + "flag: antarctica" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ถ", + "text": "", + "type": 1, + "order": 4783, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Argentina", + "hexcode": "1F1E6-1F1F7", + "tags": [ + "AR", + "flag", + "flag: argentina" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4784, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: American Samoa", + "hexcode": "1F1E6-1F1F8", + "tags": [ + "AS", + "flag", + "flag: american samoa" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4785, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Austria", + "hexcode": "1F1E6-1F1F9", + "tags": [ + "AT", + "flag", + "flag: austria" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4786, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Australia", + "hexcode": "1F1E6-1F1FA", + "tags": [ + "AU", + "flag", + "flag: australia" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4787, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Aruba", + "hexcode": "1F1E6-1F1FC", + "tags": [ + "AW", + "flag", + "flag: aruba" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4788, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: ร…land Islands", + "hexcode": "1F1E6-1F1FD", + "tags": [ + "AX", + "flag", + "flag: รฅland islands" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฝ", + "text": "", + "type": 1, + "order": 4789, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Azerbaijan", + "hexcode": "1F1E6-1F1FF", + "tags": [ + "AZ", + "flag", + "flag: azerbaijan" + ], + "emoji": "๐Ÿ‡ฆ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4790, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bosnia & Herzegovina", + "hexcode": "1F1E7-1F1E6", + "tags": [ + "BA", + "flag", + "flag: bosnia & herzegovina" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4791, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Barbados", + "hexcode": "1F1E7-1F1E7", + "tags": [ + "BB", + "flag", + "flag: barbados" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ง", + "text": "", + "type": 1, + "order": 4792, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bangladesh", + "hexcode": "1F1E7-1F1E9", + "tags": [ + "BD", + "flag", + "flag: bangladesh" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4793, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Belgium", + "hexcode": "1F1E7-1F1EA", + "tags": [ + "BE", + "flag", + "flag: belgium" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4794, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Burkina Faso", + "hexcode": "1F1E7-1F1EB", + "tags": [ + "BF", + "flag", + "flag: burkina faso" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4795, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bulgaria", + "hexcode": "1F1E7-1F1EC", + "tags": [ + "BG", + "flag", + "flag: bulgaria" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4796, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bahrain", + "hexcode": "1F1E7-1F1ED", + "tags": [ + "BH", + "flag", + "flag: bahrain" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4797, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Burundi", + "hexcode": "1F1E7-1F1EE", + "tags": [ + "BI", + "flag", + "flag: burundi" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4798, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Benin", + "hexcode": "1F1E7-1F1EF", + "tags": [ + "BJ", + "flag", + "flag: benin" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฏ", + "text": "", + "type": 1, + "order": 4799, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Barthรฉlemy", + "hexcode": "1F1E7-1F1F1", + "tags": [ + "BL", + "flag", + "flag: st. barthรฉlemy" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4800, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bermuda", + "hexcode": "1F1E7-1F1F2", + "tags": [ + "BM", + "flag", + "flag: bermuda" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4801, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Brunei", + "hexcode": "1F1E7-1F1F3", + "tags": [ + "BN", + "flag", + "flag: brunei" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4802, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bolivia", + "hexcode": "1F1E7-1F1F4", + "tags": [ + "BO", + "flag", + "flag: bolivia" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4803, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Caribbean Netherlands", + "hexcode": "1F1E7-1F1F6", + "tags": [ + "BQ", + "flag", + "flag: caribbean netherlands" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ถ", + "text": "", + "type": 1, + "order": 4804, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Brazil", + "hexcode": "1F1E7-1F1F7", + "tags": [ + "BR", + "flag", + "flag: brazil" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4805, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bahamas", + "hexcode": "1F1E7-1F1F8", + "tags": [ + "BS", + "flag", + "flag: bahamas" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4806, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bhutan", + "hexcode": "1F1E7-1F1F9", + "tags": [ + "BT", + "flag", + "flag: bhutan" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4807, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Bouvet Island", + "hexcode": "1F1E7-1F1FB", + "tags": [ + "BV", + "flag", + "flag: bouvet island" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ป", + "text": "", + "type": 1, + "order": 4808, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Botswana", + "hexcode": "1F1E7-1F1FC", + "tags": [ + "BW", + "flag", + "flag: botswana" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4809, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Belarus", + "hexcode": "1F1E7-1F1FE", + "tags": [ + "BY", + "flag", + "flag: belarus" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4810, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Belize", + "hexcode": "1F1E7-1F1FF", + "tags": [ + "BZ", + "flag", + "flag: belize" + ], + "emoji": "๐Ÿ‡ง๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4811, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Canada", + "hexcode": "1F1E8-1F1E6", + "tags": [ + "CA", + "flag", + "flag: canada" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4812, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cocos (Keeling) Islands", + "hexcode": "1F1E8-1F1E8", + "tags": [ + "CC", + "flag", + "flag: cocos (keeling) islands" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4813, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Congo - Kinshasa", + "hexcode": "1F1E8-1F1E9", + "tags": [ + "CD", + "flag", + "flag: congo - kinshasa" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4814, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Central African Republic", + "hexcode": "1F1E8-1F1EB", + "tags": [ + "CF", + "flag", + "flag: central african republic" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4815, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Congo - Brazzaville", + "hexcode": "1F1E8-1F1EC", + "tags": [ + "CG", + "flag", + "flag: congo - brazzaville" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4816, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Switzerland", + "hexcode": "1F1E8-1F1ED", + "tags": [ + "CH", + "flag", + "flag: switzerland" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4817, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cรดte dโ€™Ivoire", + "hexcode": "1F1E8-1F1EE", + "tags": [ + "CI", + "flag", + "flag: cรดte dโ€™ivoire" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4818, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cook Islands", + "hexcode": "1F1E8-1F1F0", + "tags": [ + "CK", + "flag", + "flag: cook islands" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4819, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Chile", + "hexcode": "1F1E8-1F1F1", + "tags": [ + "CL", + "flag", + "flag: chile" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4820, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cameroon", + "hexcode": "1F1E8-1F1F2", + "tags": [ + "CM", + "flag", + "flag: cameroon" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4821, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: China", + "hexcode": "1F1E8-1F1F3", + "tags": [ + "CN", + "flag", + "flag: china" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4822, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Colombia", + "hexcode": "1F1E8-1F1F4", + "tags": [ + "CO", + "flag", + "flag: colombia" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4823, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Clipperton Island", + "hexcode": "1F1E8-1F1F5", + "tags": [ + "CP", + "flag", + "flag: clipperton island" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ต", + "text": "", + "type": 1, + "order": 4824, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Costa Rica", + "hexcode": "1F1E8-1F1F7", + "tags": [ + "CR", + "flag", + "flag: costa rica" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4825, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cuba", + "hexcode": "1F1E8-1F1FA", + "tags": [ + "CU", + "flag", + "flag: cuba" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4826, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cape Verde", + "hexcode": "1F1E8-1F1FB", + "tags": [ + "CV", + "flag", + "flag: cape verde" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ป", + "text": "", + "type": 1, + "order": 4827, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Curaรงao", + "hexcode": "1F1E8-1F1FC", + "tags": [ + "CW", + "flag", + "flag: curaรงao" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4828, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Christmas Island", + "hexcode": "1F1E8-1F1FD", + "tags": [ + "CX", + "flag", + "flag: christmas island" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฝ", + "text": "", + "type": 1, + "order": 4829, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cyprus", + "hexcode": "1F1E8-1F1FE", + "tags": [ + "CY", + "flag", + "flag: cyprus" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4830, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Czechia", + "hexcode": "1F1E8-1F1FF", + "tags": [ + "CZ", + "flag", + "flag: czechia" + ], + "emoji": "๐Ÿ‡จ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4831, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Germany", + "hexcode": "1F1E9-1F1EA", + "tags": [ + "DE", + "flag", + "flag: germany" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4832, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Diego Garcia", + "hexcode": "1F1E9-1F1EC", + "tags": [ + "DG", + "flag", + "flag: diego garcia" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4833, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Djibouti", + "hexcode": "1F1E9-1F1EF", + "tags": [ + "DJ", + "flag", + "flag: djibouti" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฏ", + "text": "", + "type": 1, + "order": 4834, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Denmark", + "hexcode": "1F1E9-1F1F0", + "tags": [ + "DK", + "flag", + "flag: denmark" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4835, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Dominica", + "hexcode": "1F1E9-1F1F2", + "tags": [ + "DM", + "flag", + "flag: dominica" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4836, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Dominican Republic", + "hexcode": "1F1E9-1F1F4", + "tags": [ + "DO", + "flag", + "flag: dominican republic" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4837, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Algeria", + "hexcode": "1F1E9-1F1FF", + "tags": [ + "DZ", + "flag", + "flag: algeria" + ], + "emoji": "๐Ÿ‡ฉ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4838, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Ceuta & Melilla", + "hexcode": "1F1EA-1F1E6", + "tags": [ + "EA", + "flag", + "flag: ceuta & melilla" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4839, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Ecuador", + "hexcode": "1F1EA-1F1E8", + "tags": [ + "EC", + "flag", + "flag: ecuador" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4840, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Estonia", + "hexcode": "1F1EA-1F1EA", + "tags": [ + "EE", + "flag", + "flag: estonia" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4841, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Egypt", + "hexcode": "1F1EA-1F1EC", + "tags": [ + "EG", + "flag", + "flag: egypt" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4842, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Western Sahara", + "hexcode": "1F1EA-1F1ED", + "tags": [ + "EH", + "flag", + "flag: western sahara" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4843, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Eritrea", + "hexcode": "1F1EA-1F1F7", + "tags": [ + "ER", + "flag", + "flag: eritrea" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4844, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Spain", + "hexcode": "1F1EA-1F1F8", + "tags": [ + "ES", + "flag", + "flag: spain" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4845, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Ethiopia", + "hexcode": "1F1EA-1F1F9", + "tags": [ + "ET", + "flag", + "flag: ethiopia" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4846, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: European Union", + "hexcode": "1F1EA-1F1FA", + "tags": [ + "EU", + "flag", + "flag: european union" + ], + "emoji": "๐Ÿ‡ช๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4847, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Finland", + "hexcode": "1F1EB-1F1EE", + "tags": [ + "FI", + "flag", + "flag: finland" + ], + "emoji": "๐Ÿ‡ซ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4848, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Fiji", + "hexcode": "1F1EB-1F1EF", + "tags": [ + "FJ", + "flag", + "flag: fiji" + ], + "emoji": "๐Ÿ‡ซ๐Ÿ‡ฏ", + "text": "", + "type": 1, + "order": 4849, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Falkland Islands", + "hexcode": "1F1EB-1F1F0", + "tags": [ + "FK", + "flag", + "flag: falkland islands" + ], + "emoji": "๐Ÿ‡ซ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4850, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Micronesia", + "hexcode": "1F1EB-1F1F2", + "tags": [ + "FM", + "flag", + "flag: micronesia" + ], + "emoji": "๐Ÿ‡ซ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4851, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Faroe Islands", + "hexcode": "1F1EB-1F1F4", + "tags": [ + "FO", + "flag", + "flag: faroe islands" + ], + "emoji": "๐Ÿ‡ซ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4852, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: France", + "hexcode": "1F1EB-1F1F7", + "tags": [ + "FR", + "flag", + "flag: france" + ], + "emoji": "๐Ÿ‡ซ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4853, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Gabon", + "hexcode": "1F1EC-1F1E6", + "tags": [ + "GA", + "flag", + "flag: gabon" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4854, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: United Kingdom", + "hexcode": "1F1EC-1F1E7", + "tags": [ + "GB", + "flag", + "flag: united kingdom" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ง", + "text": "", + "type": 1, + "order": 4855, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Grenada", + "hexcode": "1F1EC-1F1E9", + "tags": [ + "GD", + "flag", + "flag: grenada" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4856, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Georgia", + "hexcode": "1F1EC-1F1EA", + "tags": [ + "GE", + "flag", + "flag: georgia" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4857, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: French Guiana", + "hexcode": "1F1EC-1F1EB", + "tags": [ + "GF", + "flag", + "flag: french guiana" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4858, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guernsey", + "hexcode": "1F1EC-1F1EC", + "tags": [ + "GG", + "flag", + "flag: guernsey" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4859, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Ghana", + "hexcode": "1F1EC-1F1ED", + "tags": [ + "GH", + "flag", + "flag: ghana" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4860, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Gibraltar", + "hexcode": "1F1EC-1F1EE", + "tags": [ + "GI", + "flag", + "flag: gibraltar" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4861, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Greenland", + "hexcode": "1F1EC-1F1F1", + "tags": [ + "GL", + "flag", + "flag: greenland" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4862, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Gambia", + "hexcode": "1F1EC-1F1F2", + "tags": [ + "GM", + "flag", + "flag: gambia" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4863, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guinea", + "hexcode": "1F1EC-1F1F3", + "tags": [ + "GN", + "flag", + "flag: guinea" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4864, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guadeloupe", + "hexcode": "1F1EC-1F1F5", + "tags": [ + "GP", + "flag", + "flag: guadeloupe" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ต", + "text": "", + "type": 1, + "order": 4865, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Equatorial Guinea", + "hexcode": "1F1EC-1F1F6", + "tags": [ + "GQ", + "flag", + "flag: equatorial guinea" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ถ", + "text": "", + "type": 1, + "order": 4866, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Greece", + "hexcode": "1F1EC-1F1F7", + "tags": [ + "GR", + "flag", + "flag: greece" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4867, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: South Georgia & South Sandwich Islands", + "hexcode": "1F1EC-1F1F8", + "tags": [ + "GS", + "flag", + "flag: south georgia & south sandwich islands" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4868, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guatemala", + "hexcode": "1F1EC-1F1F9", + "tags": [ + "GT", + "flag", + "flag: guatemala" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4869, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guam", + "hexcode": "1F1EC-1F1FA", + "tags": [ + "GU", + "flag", + "flag: guam" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4870, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guinea-Bissau", + "hexcode": "1F1EC-1F1FC", + "tags": [ + "GW", + "flag", + "flag: guinea-bissau" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4871, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Guyana", + "hexcode": "1F1EC-1F1FE", + "tags": [ + "GY", + "flag", + "flag: guyana" + ], + "emoji": "๐Ÿ‡ฌ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4872, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Hong Kong SAR China", + "hexcode": "1F1ED-1F1F0", + "tags": [ + "HK", + "flag", + "flag: hong kong sar china" + ], + "emoji": "๐Ÿ‡ญ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4873, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Heard & McDonald Islands", + "hexcode": "1F1ED-1F1F2", + "tags": [ + "HM", + "flag", + "flag: heard & mcdonald islands" + ], + "emoji": "๐Ÿ‡ญ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4874, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Honduras", + "hexcode": "1F1ED-1F1F3", + "tags": [ + "HN", + "flag", + "flag: honduras" + ], + "emoji": "๐Ÿ‡ญ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4875, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Croatia", + "hexcode": "1F1ED-1F1F7", + "tags": [ + "HR", + "flag", + "flag: croatia" + ], + "emoji": "๐Ÿ‡ญ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4876, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Haiti", + "hexcode": "1F1ED-1F1F9", + "tags": [ + "HT", + "flag", + "flag: haiti" + ], + "emoji": "๐Ÿ‡ญ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4877, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Hungary", + "hexcode": "1F1ED-1F1FA", + "tags": [ + "HU", + "flag", + "flag: hungary" + ], + "emoji": "๐Ÿ‡ญ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4878, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Canary Islands", + "hexcode": "1F1EE-1F1E8", + "tags": [ + "IC", + "flag", + "flag: canary islands" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4879, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Indonesia", + "hexcode": "1F1EE-1F1E9", + "tags": [ + "ID", + "flag", + "flag: indonesia" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4880, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Ireland", + "hexcode": "1F1EE-1F1EA", + "tags": [ + "IE", + "flag", + "flag: ireland" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4881, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Israel", + "hexcode": "1F1EE-1F1F1", + "tags": [ + "IL", + "flag", + "flag: israel" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4882, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Isle of Man", + "hexcode": "1F1EE-1F1F2", + "tags": [ + "IM", + "flag", + "flag: isle of man" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4883, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: India", + "hexcode": "1F1EE-1F1F3", + "tags": [ + "IN", + "flag", + "flag: india" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4884, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: British Indian Ocean Territory", + "hexcode": "1F1EE-1F1F4", + "tags": [ + "IO", + "flag", + "flag: british indian ocean territory" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4885, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Iraq", + "hexcode": "1F1EE-1F1F6", + "tags": [ + "IQ", + "flag", + "flag: iraq" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ถ", + "text": "", + "type": 1, + "order": 4886, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Iran", + "hexcode": "1F1EE-1F1F7", + "tags": [ + "IR", + "flag", + "flag: iran" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4887, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Iceland", + "hexcode": "1F1EE-1F1F8", + "tags": [ + "IS", + "flag", + "flag: iceland" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4888, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Italy", + "hexcode": "1F1EE-1F1F9", + "tags": [ + "IT", + "flag", + "flag: italy" + ], + "emoji": "๐Ÿ‡ฎ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4889, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Jersey", + "hexcode": "1F1EF-1F1EA", + "tags": [ + "JE", + "flag", + "flag: jersey" + ], + "emoji": "๐Ÿ‡ฏ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4890, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Jamaica", + "hexcode": "1F1EF-1F1F2", + "tags": [ + "JM", + "flag", + "flag: jamaica" + ], + "emoji": "๐Ÿ‡ฏ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4891, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Jordan", + "hexcode": "1F1EF-1F1F4", + "tags": [ + "JO", + "flag", + "flag: jordan" + ], + "emoji": "๐Ÿ‡ฏ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4892, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Japan", + "hexcode": "1F1EF-1F1F5", + "tags": [ + "JP", + "flag", + "flag: japan" + ], + "emoji": "๐Ÿ‡ฏ๐Ÿ‡ต", + "text": "", + "type": 1, + "order": 4893, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Kenya", + "hexcode": "1F1F0-1F1EA", + "tags": [ + "KE", + "flag", + "flag: kenya" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4894, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Kyrgyzstan", + "hexcode": "1F1F0-1F1EC", + "tags": [ + "KG", + "flag", + "flag: kyrgyzstan" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4895, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cambodia", + "hexcode": "1F1F0-1F1ED", + "tags": [ + "KH", + "flag", + "flag: cambodia" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4896, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Kiribati", + "hexcode": "1F1F0-1F1EE", + "tags": [ + "KI", + "flag", + "flag: kiribati" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4897, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Comoros", + "hexcode": "1F1F0-1F1F2", + "tags": [ + "KM", + "flag", + "flag: comoros" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4898, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Kitts & Nevis", + "hexcode": "1F1F0-1F1F3", + "tags": [ + "KN", + "flag", + "flag: st. kitts & nevis" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4899, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: North Korea", + "hexcode": "1F1F0-1F1F5", + "tags": [ + "KP", + "flag", + "flag: north korea" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ต", + "text": "", + "type": 1, + "order": 4900, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: South Korea", + "hexcode": "1F1F0-1F1F7", + "tags": [ + "KR", + "flag", + "flag: south korea" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4901, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Kuwait", + "hexcode": "1F1F0-1F1FC", + "tags": [ + "KW", + "flag", + "flag: kuwait" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4902, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Cayman Islands", + "hexcode": "1F1F0-1F1FE", + "tags": [ + "KY", + "flag", + "flag: cayman islands" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4903, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Kazakhstan", + "hexcode": "1F1F0-1F1FF", + "tags": [ + "KZ", + "flag", + "flag: kazakhstan" + ], + "emoji": "๐Ÿ‡ฐ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4904, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Laos", + "hexcode": "1F1F1-1F1E6", + "tags": [ + "LA", + "flag", + "flag: laos" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4905, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Lebanon", + "hexcode": "1F1F1-1F1E7", + "tags": [ + "LB", + "flag", + "flag: lebanon" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ง", + "text": "", + "type": 1, + "order": 4906, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Lucia", + "hexcode": "1F1F1-1F1E8", + "tags": [ + "LC", + "flag", + "flag: st. lucia" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4907, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Liechtenstein", + "hexcode": "1F1F1-1F1EE", + "tags": [ + "LI", + "flag", + "flag: liechtenstein" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4908, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Sri Lanka", + "hexcode": "1F1F1-1F1F0", + "tags": [ + "LK", + "flag", + "flag: sri lanka" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4909, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Liberia", + "hexcode": "1F1F1-1F1F7", + "tags": [ + "LR", + "flag", + "flag: liberia" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4910, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Lesotho", + "hexcode": "1F1F1-1F1F8", + "tags": [ + "LS", + "flag", + "flag: lesotho" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4911, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Lithuania", + "hexcode": "1F1F1-1F1F9", + "tags": [ + "LT", + "flag", + "flag: lithuania" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4912, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Luxembourg", + "hexcode": "1F1F1-1F1FA", + "tags": [ + "LU", + "flag", + "flag: luxembourg" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4913, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Latvia", + "hexcode": "1F1F1-1F1FB", + "tags": [ + "LV", + "flag", + "flag: latvia" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡ป", + "text": "", + "type": 1, + "order": 4914, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Libya", + "hexcode": "1F1F1-1F1FE", + "tags": [ + "LY", + "flag", + "flag: libya" + ], + "emoji": "๐Ÿ‡ฑ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4915, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Morocco", + "hexcode": "1F1F2-1F1E6", + "tags": [ + "MA", + "flag", + "flag: morocco" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4916, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Monaco", + "hexcode": "1F1F2-1F1E8", + "tags": [ + "MC", + "flag", + "flag: monaco" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4917, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Moldova", + "hexcode": "1F1F2-1F1E9", + "tags": [ + "MD", + "flag", + "flag: moldova" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4918, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Montenegro", + "hexcode": "1F1F2-1F1EA", + "tags": [ + "ME", + "flag", + "flag: montenegro" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4919, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Martin", + "hexcode": "1F1F2-1F1EB", + "tags": [ + "MF", + "flag", + "flag: st. martin" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4920, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Madagascar", + "hexcode": "1F1F2-1F1EC", + "tags": [ + "MG", + "flag", + "flag: madagascar" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4921, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Marshall Islands", + "hexcode": "1F1F2-1F1ED", + "tags": [ + "MH", + "flag", + "flag: marshall islands" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4922, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: North Macedonia", + "hexcode": "1F1F2-1F1F0", + "tags": [ + "MK", + "flag", + "flag: north macedonia" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4923, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mali", + "hexcode": "1F1F2-1F1F1", + "tags": [ + "ML", + "flag", + "flag: mali" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4924, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Myanmar (Burma)", + "hexcode": "1F1F2-1F1F2", + "tags": [ + "MM", + "flag", + "flag: myanmar (burma)" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4925, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mongolia", + "hexcode": "1F1F2-1F1F3", + "tags": [ + "MN", + "flag", + "flag: mongolia" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4926, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Macao SAR China", + "hexcode": "1F1F2-1F1F4", + "tags": [ + "MO", + "flag", + "flag: macao sar china" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4927, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Northern Mariana Islands", + "hexcode": "1F1F2-1F1F5", + "tags": [ + "MP", + "flag", + "flag: northern mariana islands" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ต", + "text": "", + "type": 1, + "order": 4928, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Martinique", + "hexcode": "1F1F2-1F1F6", + "tags": [ + "MQ", + "flag", + "flag: martinique" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ถ", + "text": "", + "type": 1, + "order": 4929, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mauritania", + "hexcode": "1F1F2-1F1F7", + "tags": [ + "MR", + "flag", + "flag: mauritania" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4930, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Montserrat", + "hexcode": "1F1F2-1F1F8", + "tags": [ + "MS", + "flag", + "flag: montserrat" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4931, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Malta", + "hexcode": "1F1F2-1F1F9", + "tags": [ + "MT", + "flag", + "flag: malta" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4932, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mauritius", + "hexcode": "1F1F2-1F1FA", + "tags": [ + "MU", + "flag", + "flag: mauritius" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4933, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Maldives", + "hexcode": "1F1F2-1F1FB", + "tags": [ + "MV", + "flag", + "flag: maldives" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ป", + "text": "", + "type": 1, + "order": 4934, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Malawi", + "hexcode": "1F1F2-1F1FC", + "tags": [ + "MW", + "flag", + "flag: malawi" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4935, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mexico", + "hexcode": "1F1F2-1F1FD", + "tags": [ + "MX", + "flag", + "flag: mexico" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฝ", + "text": "", + "type": 1, + "order": 4936, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Malaysia", + "hexcode": "1F1F2-1F1FE", + "tags": [ + "MY", + "flag", + "flag: malaysia" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4937, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mozambique", + "hexcode": "1F1F2-1F1FF", + "tags": [ + "MZ", + "flag", + "flag: mozambique" + ], + "emoji": "๐Ÿ‡ฒ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4938, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Namibia", + "hexcode": "1F1F3-1F1E6", + "tags": [ + "NA", + "flag", + "flag: namibia" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4939, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: New Caledonia", + "hexcode": "1F1F3-1F1E8", + "tags": [ + "NC", + "flag", + "flag: new caledonia" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4940, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Niger", + "hexcode": "1F1F3-1F1EA", + "tags": [ + "NE", + "flag", + "flag: niger" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4941, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Norfolk Island", + "hexcode": "1F1F3-1F1EB", + "tags": [ + "NF", + "flag", + "flag: norfolk island" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4942, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Nigeria", + "hexcode": "1F1F3-1F1EC", + "tags": [ + "NG", + "flag", + "flag: nigeria" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4943, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Nicaragua", + "hexcode": "1F1F3-1F1EE", + "tags": [ + "NI", + "flag", + "flag: nicaragua" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4944, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Netherlands", + "hexcode": "1F1F3-1F1F1", + "tags": [ + "NL", + "flag", + "flag: netherlands" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4945, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Norway", + "hexcode": "1F1F3-1F1F4", + "tags": [ + "NO", + "flag", + "flag: norway" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4946, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Nepal", + "hexcode": "1F1F3-1F1F5", + "tags": [ + "NP", + "flag", + "flag: nepal" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ต", + "text": "", + "type": 1, + "order": 4947, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Nauru", + "hexcode": "1F1F3-1F1F7", + "tags": [ + "NR", + "flag", + "flag: nauru" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4948, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Niue", + "hexcode": "1F1F3-1F1FA", + "tags": [ + "NU", + "flag", + "flag: niue" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4949, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: New Zealand", + "hexcode": "1F1F3-1F1FF", + "tags": [ + "NZ", + "flag", + "flag: new zealand" + ], + "emoji": "๐Ÿ‡ณ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4950, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Oman", + "hexcode": "1F1F4-1F1F2", + "tags": [ + "OM", + "flag", + "flag: oman" + ], + "emoji": "๐Ÿ‡ด๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4951, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Panama", + "hexcode": "1F1F5-1F1E6", + "tags": [ + "PA", + "flag", + "flag: panama" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4952, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Peru", + "hexcode": "1F1F5-1F1EA", + "tags": [ + "PE", + "flag", + "flag: peru" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4953, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: French Polynesia", + "hexcode": "1F1F5-1F1EB", + "tags": [ + "PF", + "flag", + "flag: french polynesia" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4954, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Papua New Guinea", + "hexcode": "1F1F5-1F1EC", + "tags": [ + "PG", + "flag", + "flag: papua new guinea" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4955, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Philippines", + "hexcode": "1F1F5-1F1ED", + "tags": [ + "PH", + "flag", + "flag: philippines" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4956, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Pakistan", + "hexcode": "1F1F5-1F1F0", + "tags": [ + "PK", + "flag", + "flag: pakistan" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4957, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Poland", + "hexcode": "1F1F5-1F1F1", + "tags": [ + "PL", + "flag", + "flag: poland" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4958, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Pierre & Miquelon", + "hexcode": "1F1F5-1F1F2", + "tags": [ + "PM", + "flag", + "flag: st. pierre & miquelon" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4959, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Pitcairn Islands", + "hexcode": "1F1F5-1F1F3", + "tags": [ + "PN", + "flag", + "flag: pitcairn islands" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4960, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Puerto Rico", + "hexcode": "1F1F5-1F1F7", + "tags": [ + "PR", + "flag", + "flag: puerto rico" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4961, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Palestinian Territories", + "hexcode": "1F1F5-1F1F8", + "tags": [ + "PS", + "flag", + "flag: palestinian territories" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4962, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Portugal", + "hexcode": "1F1F5-1F1F9", + "tags": [ + "PT", + "flag", + "flag: portugal" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4963, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Palau", + "hexcode": "1F1F5-1F1FC", + "tags": [ + "PW", + "flag", + "flag: palau" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4964, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Paraguay", + "hexcode": "1F1F5-1F1FE", + "tags": [ + "PY", + "flag", + "flag: paraguay" + ], + "emoji": "๐Ÿ‡ต๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4965, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Qatar", + "hexcode": "1F1F6-1F1E6", + "tags": [ + "QA", + "flag", + "flag: qatar" + ], + "emoji": "๐Ÿ‡ถ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4966, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Rรฉunion", + "hexcode": "1F1F7-1F1EA", + "tags": [ + "RE", + "flag", + "flag: rรฉunion" + ], + "emoji": "๐Ÿ‡ท๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4967, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Romania", + "hexcode": "1F1F7-1F1F4", + "tags": [ + "RO", + "flag", + "flag: romania" + ], + "emoji": "๐Ÿ‡ท๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4968, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Serbia", + "hexcode": "1F1F7-1F1F8", + "tags": [ + "RS", + "flag", + "flag: serbia" + ], + "emoji": "๐Ÿ‡ท๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4969, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Russia", + "hexcode": "1F1F7-1F1FA", + "tags": [ + "RU", + "flag", + "flag: russia" + ], + "emoji": "๐Ÿ‡ท๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 4970, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Rwanda", + "hexcode": "1F1F7-1F1FC", + "tags": [ + "RW", + "flag", + "flag: rwanda" + ], + "emoji": "๐Ÿ‡ท๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 4971, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Saudi Arabia", + "hexcode": "1F1F8-1F1E6", + "tags": [ + "SA", + "flag", + "flag: saudi arabia" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4972, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Solomon Islands", + "hexcode": "1F1F8-1F1E7", + "tags": [ + "SB", + "flag", + "flag: solomon islands" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ง", + "text": "", + "type": 1, + "order": 4973, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Seychelles", + "hexcode": "1F1F8-1F1E8", + "tags": [ + "SC", + "flag", + "flag: seychelles" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4974, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Sudan", + "hexcode": "1F1F8-1F1E9", + "tags": [ + "SD", + "flag", + "flag: sudan" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4975, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Sweden", + "hexcode": "1F1F8-1F1EA", + "tags": [ + "SE", + "flag", + "flag: sweden" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 4976, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Singapore", + "hexcode": "1F1F8-1F1EC", + "tags": [ + "SG", + "flag", + "flag: singapore" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4977, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Helena", + "hexcode": "1F1F8-1F1ED", + "tags": [ + "SH", + "flag", + "flag: st. helena" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4978, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Slovenia", + "hexcode": "1F1F8-1F1EE", + "tags": [ + "SI", + "flag", + "flag: slovenia" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 4979, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Svalbard & Jan Mayen", + "hexcode": "1F1F8-1F1EF", + "tags": [ + "SJ", + "flag", + "flag: svalbard & jan mayen" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฏ", + "text": "", + "type": 1, + "order": 4980, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Slovakia", + "hexcode": "1F1F8-1F1F0", + "tags": [ + "SK", + "flag", + "flag: slovakia" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 4981, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Sierra Leone", + "hexcode": "1F1F8-1F1F1", + "tags": [ + "SL", + "flag", + "flag: sierra leone" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 4982, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: San Marino", + "hexcode": "1F1F8-1F1F2", + "tags": [ + "SM", + "flag", + "flag: san marino" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 4983, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Senegal", + "hexcode": "1F1F8-1F1F3", + "tags": [ + "SN", + "flag", + "flag: senegal" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 4984, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Somalia", + "hexcode": "1F1F8-1F1F4", + "tags": [ + "SO", + "flag", + "flag: somalia" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 4985, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Suriname", + "hexcode": "1F1F8-1F1F7", + "tags": [ + "SR", + "flag", + "flag: suriname" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 4986, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: South Sudan", + "hexcode": "1F1F8-1F1F8", + "tags": [ + "SS", + "flag", + "flag: south sudan" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 4987, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Sรฃo Tomรฉ & Prรญncipe", + "hexcode": "1F1F8-1F1F9", + "tags": [ + "ST", + "flag", + "flag: sรฃo tomรฉ & prรญncipe" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 4988, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: El Salvador", + "hexcode": "1F1F8-1F1FB", + "tags": [ + "SV", + "flag", + "flag: el salvador" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ป", + "text": "", + "type": 1, + "order": 4989, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Sint Maarten", + "hexcode": "1F1F8-1F1FD", + "tags": [ + "SX", + "flag", + "flag: sint maarten" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฝ", + "text": "", + "type": 1, + "order": 4990, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Syria", + "hexcode": "1F1F8-1F1FE", + "tags": [ + "SY", + "flag", + "flag: syria" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 4991, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Eswatini", + "hexcode": "1F1F8-1F1FF", + "tags": [ + "SZ", + "flag", + "flag: eswatini" + ], + "emoji": "๐Ÿ‡ธ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 4992, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tristan da Cunha", + "hexcode": "1F1F9-1F1E6", + "tags": [ + "TA", + "flag", + "flag: tristan da cunha" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 4993, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Turks & Caicos Islands", + "hexcode": "1F1F9-1F1E8", + "tags": [ + "TC", + "flag", + "flag: turks & caicos islands" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 4994, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Chad", + "hexcode": "1F1F9-1F1E9", + "tags": [ + "TD", + "flag", + "flag: chad" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฉ", + "text": "", + "type": 1, + "order": 4995, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: French Southern Territories", + "hexcode": "1F1F9-1F1EB", + "tags": [ + "TF", + "flag", + "flag: french southern territories" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 4996, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Togo", + "hexcode": "1F1F9-1F1EC", + "tags": [ + "TG", + "flag", + "flag: togo" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 4997, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Thailand", + "hexcode": "1F1F9-1F1ED", + "tags": [ + "TH", + "flag", + "flag: thailand" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ญ", + "text": "", + "type": 1, + "order": 4998, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tajikistan", + "hexcode": "1F1F9-1F1EF", + "tags": [ + "TJ", + "flag", + "flag: tajikistan" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฏ", + "text": "", + "type": 1, + "order": 4999, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tokelau", + "hexcode": "1F1F9-1F1F0", + "tags": [ + "TK", + "flag", + "flag: tokelau" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 5000, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Timor-Leste", + "hexcode": "1F1F9-1F1F1", + "tags": [ + "TL", + "flag", + "flag: timor-leste" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฑ", + "text": "", + "type": 1, + "order": 5001, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Turkmenistan", + "hexcode": "1F1F9-1F1F2", + "tags": [ + "TM", + "flag", + "flag: turkmenistan" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 5002, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tunisia", + "hexcode": "1F1F9-1F1F3", + "tags": [ + "TN", + "flag", + "flag: tunisia" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 5003, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tonga", + "hexcode": "1F1F9-1F1F4", + "tags": [ + "TO", + "flag", + "flag: tonga" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ด", + "text": "", + "type": 1, + "order": 5004, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tรผrkiye", + "hexcode": "1F1F9-1F1F7", + "tags": [ + "TR", + "flag", + "flag: tรผrkiye" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ท", + "text": "", + "type": 1, + "order": 5005, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Trinidad & Tobago", + "hexcode": "1F1F9-1F1F9", + "tags": [ + "TT", + "flag", + "flag: trinidad & tobago" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡น", + "text": "", + "type": 1, + "order": 5006, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tuvalu", + "hexcode": "1F1F9-1F1FB", + "tags": [ + "TV", + "flag", + "flag: tuvalu" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ป", + "text": "", + "type": 1, + "order": 5007, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Taiwan", + "hexcode": "1F1F9-1F1FC", + "tags": [ + "TW", + "flag", + "flag: taiwan" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 5008, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Tanzania", + "hexcode": "1F1F9-1F1FF", + "tags": [ + "TZ", + "flag", + "flag: tanzania" + ], + "emoji": "๐Ÿ‡น๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 5009, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Ukraine", + "hexcode": "1F1FA-1F1E6", + "tags": [ + "UA", + "flag", + "flag: ukraine" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 5010, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Uganda", + "hexcode": "1F1FA-1F1EC", + "tags": [ + "UG", + "flag", + "flag: uganda" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 5011, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: U.S. Outlying Islands", + "hexcode": "1F1FA-1F1F2", + "tags": [ + "UM", + "flag", + "flag: u.s. outlying islands" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 5012, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: United Nations", + "hexcode": "1F1FA-1F1F3", + "tags": [ + "UN", + "flag", + "flag: united nations" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 5013, + "group": 9, + "subgroup": 99, + "version": 4 + }, + { + "label": "flag: United States", + "hexcode": "1F1FA-1F1F8", + "tags": [ + "US", + "flag", + "flag: united states" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 5014, + "group": 9, + "subgroup": 99, + "version": 0.6 + }, + { + "label": "flag: Uruguay", + "hexcode": "1F1FA-1F1FE", + "tags": [ + "UY", + "flag", + "flag: uruguay" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡พ", + "text": "", + "type": 1, + "order": 5015, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Uzbekistan", + "hexcode": "1F1FA-1F1FF", + "tags": [ + "UZ", + "flag", + "flag: uzbekistan" + ], + "emoji": "๐Ÿ‡บ๐Ÿ‡ฟ", + "text": "", + "type": 1, + "order": 5016, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Vatican City", + "hexcode": "1F1FB-1F1E6", + "tags": [ + "VA", + "flag", + "flag: vatican city" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 5017, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: St. Vincent & Grenadines", + "hexcode": "1F1FB-1F1E8", + "tags": [ + "VC", + "flag", + "flag: st. vincent & grenadines" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡จ", + "text": "", + "type": 1, + "order": 5018, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Venezuela", + "hexcode": "1F1FB-1F1EA", + "tags": [ + "VE", + "flag", + "flag: venezuela" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 5019, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: British Virgin Islands", + "hexcode": "1F1FB-1F1EC", + "tags": [ + "VG", + "flag", + "flag: british virgin islands" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡ฌ", + "text": "", + "type": 1, + "order": 5020, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: U.S. Virgin Islands", + "hexcode": "1F1FB-1F1EE", + "tags": [ + "VI", + "flag", + "flag: u.s. virgin islands" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡ฎ", + "text": "", + "type": 1, + "order": 5021, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Vietnam", + "hexcode": "1F1FB-1F1F3", + "tags": [ + "VN", + "flag", + "flag: vietnam" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡ณ", + "text": "", + "type": 1, + "order": 5022, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Vanuatu", + "hexcode": "1F1FB-1F1FA", + "tags": [ + "VU", + "flag", + "flag: vanuatu" + ], + "emoji": "๐Ÿ‡ป๐Ÿ‡บ", + "text": "", + "type": 1, + "order": 5023, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Wallis & Futuna", + "hexcode": "1F1FC-1F1EB", + "tags": [ + "WF", + "flag", + "flag: wallis & futuna" + ], + "emoji": "๐Ÿ‡ผ๐Ÿ‡ซ", + "text": "", + "type": 1, + "order": 5024, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Samoa", + "hexcode": "1F1FC-1F1F8", + "tags": [ + "WS", + "flag", + "flag: samoa" + ], + "emoji": "๐Ÿ‡ผ๐Ÿ‡ธ", + "text": "", + "type": 1, + "order": 5025, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Kosovo", + "hexcode": "1F1FD-1F1F0", + "tags": [ + "XK", + "flag", + "flag: kosovo" + ], + "emoji": "๐Ÿ‡ฝ๐Ÿ‡ฐ", + "text": "", + "type": 1, + "order": 5026, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Yemen", + "hexcode": "1F1FE-1F1EA", + "tags": [ + "YE", + "flag", + "flag: yemen" + ], + "emoji": "๐Ÿ‡พ๐Ÿ‡ช", + "text": "", + "type": 1, + "order": 5027, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Mayotte", + "hexcode": "1F1FE-1F1F9", + "tags": [ + "YT", + "flag", + "flag: mayotte" + ], + "emoji": "๐Ÿ‡พ๐Ÿ‡น", + "text": "", + "type": 1, + "order": 5028, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: South Africa", + "hexcode": "1F1FF-1F1E6", + "tags": [ + "ZA", + "flag", + "flag: south africa" + ], + "emoji": "๐Ÿ‡ฟ๐Ÿ‡ฆ", + "text": "", + "type": 1, + "order": 5029, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Zambia", + "hexcode": "1F1FF-1F1F2", + "tags": [ + "ZM", + "flag", + "flag: zambia" + ], + "emoji": "๐Ÿ‡ฟ๐Ÿ‡ฒ", + "text": "", + "type": 1, + "order": 5030, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: Zimbabwe", + "hexcode": "1F1FF-1F1FC", + "tags": [ + "ZW", + "flag", + "flag: zimbabwe" + ], + "emoji": "๐Ÿ‡ฟ๐Ÿ‡ผ", + "text": "", + "type": 1, + "order": 5031, + "group": 9, + "subgroup": 99, + "version": 2 + }, + { + "label": "flag: England", + "hexcode": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", + "tags": [ + "flag", + "flag: england", + "gbeng" + ], + "emoji": "๐Ÿด๓ ง๓ ข๓ ฅ๓ ฎ๓ ง๓ ฟ", + "text": "", + "type": 1, + "order": 5032, + "group": 9, + "subgroup": 100, + "version": 5 + }, + { + "label": "flag: Scotland", + "hexcode": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", + "tags": [ + "flag", + "flag: scotland", + "gbsct" + ], + "emoji": "๐Ÿด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", + "text": "", + "type": 1, + "order": 5033, + "group": 9, + "subgroup": 100, + "version": 5 + }, + { + "label": "flag: Wales", + "hexcode": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", + "tags": [ + "flag", + "flag: wales", + "gbwls" + ], + "emoji": "๐Ÿด๓ ง๓ ข๓ ท๓ ฌ๓ ณ๓ ฟ", + "text": "", + "type": 1, + "order": 5034, + "group": 9, + "subgroup": 100, + "version": 5 + } +] \ No newline at end of file diff --git a/src/data/emojis.json.license b/src/data/emojis.json.license new file mode 100644 index 000000000..4bdf2a8c9 --- /dev/null +++ b/src/data/emojis.json.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: 2024 Emojibase +SPDX-License-Identifier: MIT diff --git a/src/emojis.h b/src/emojis.h deleted file mode 100644 index d130fbf38..000000000 --- a/src/emojis.h +++ /dev/null @@ -1,1857 +0,0 @@ -// SPDX-FileCopyrightText: None -// SPDX-License-Identifier: LGPL-2.0-or-later -// This file is auto-generated. All changes will be lost. See tools/update-emojis.py -// clang-format off -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F600"), QStringLiteral("grinning"), QStringLiteral("grinning face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F603"), QStringLiteral("smiley"), QStringLiteral("grinning face with big eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F604"), QStringLiteral("smile"), QStringLiteral("grinning face with smiling eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F601"), QStringLiteral("grin"), QStringLiteral("beaming face with smiling eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F606"), QStringLiteral("laughing"), QStringLiteral("grinning squinting face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F605"), QStringLiteral("sweat_smile"), QStringLiteral("grinning face with sweat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F923"), QStringLiteral("rofl"), QStringLiteral("rolling on the floor laughing")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F602"), QStringLiteral("joy"), QStringLiteral("face with tears of joy")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F642"), QStringLiteral("slight_smile"), QStringLiteral("slightly smiling face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F643"), QStringLiteral("upside_down"), QStringLiteral("upside-down face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE0"), QStringLiteral("melting face"), QStringLiteral("melting face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F609"), QStringLiteral("wink"), QStringLiteral("winking face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F60A"), QStringLiteral("blush"), QStringLiteral("smiling face with smiling eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F607"), QStringLiteral("innocent"), QStringLiteral("smiling face with halo")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F970"), QStringLiteral("smiling_face_with_3_hearts"), QStringLiteral("smiling face with hearts")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F60D"), QStringLiteral("heart_eyes"), QStringLiteral("smiling face with heart-eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F929"), QStringLiteral("star_struck"), QStringLiteral("star-struck")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F618"), QStringLiteral("kissing_heart"), QStringLiteral("face blowing a kiss")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F617"), QStringLiteral("kissing"), QStringLiteral("kissing face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000263A\U0000FE0F"), QStringLiteral("smiling face"), QStringLiteral("smiling face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F61A"), QStringLiteral("kissing_closed_eyes"), QStringLiteral("kissing face with closed eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F619"), QStringLiteral("kissing_smiling_eyes"), QStringLiteral("kissing face with smiling eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F972"), QStringLiteral("smiling face with tear"), QStringLiteral("smiling face with tear")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F60B"), QStringLiteral("yum"), QStringLiteral("face savoring food")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F61B"), QStringLiteral("stuck_out_tongue"), QStringLiteral("face with tongue")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F61C"), QStringLiteral("stuck_out_tongue_winking_eye"), QStringLiteral("winking face with tongue")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F92A"), QStringLiteral("zany_face"), QStringLiteral("zany face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F61D"), QStringLiteral("stuck_out_tongue_closed_eyes"), QStringLiteral("squinting face with tongue")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F911"), QStringLiteral("money_mouth"), QStringLiteral("money-mouth face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F917"), QStringLiteral("hugging"), QStringLiteral("smiling face with open hands")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F92D"), QStringLiteral("face_with_hand_over_mouth"), QStringLiteral("face with hand over mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE2"), QStringLiteral("face with open eyes and hand over mouth"), QStringLiteral("face with open eyes and hand over mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE3"), QStringLiteral("face with peeking eye"), QStringLiteral("face with peeking eye")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F92B"), QStringLiteral("shushing_face"), QStringLiteral("shushing face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F914"), QStringLiteral("thinking"), QStringLiteral("thinking face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE1"), QStringLiteral("saluting face"), QStringLiteral("saluting face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F910"), QStringLiteral("zipper_mouth"), QStringLiteral("zipper-mouth face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F928"), QStringLiteral("face_with_raised_eyebrow"), QStringLiteral("face with raised eyebrow")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F610"), QStringLiteral("neutral_face"), QStringLiteral("neutral face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F611"), QStringLiteral("expressionless"), QStringLiteral("expressionless face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F636"), QStringLiteral("no_mouth"), QStringLiteral("face without mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE5"), QStringLiteral("dotted line face"), QStringLiteral("dotted line face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F636\U0000200D\U0001F32B\U0000FE0F"), QStringLiteral("face in clouds"), QStringLiteral("face in clouds")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F60F"), QStringLiteral("smirk"), QStringLiteral("smirking face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F612"), QStringLiteral("unamused"), QStringLiteral("unamused face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F644"), QStringLiteral("rolling_eyes"), QStringLiteral("face with rolling eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62C"), QStringLiteral("grimacing"), QStringLiteral("grimacing face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62E\U0000200D\U0001F4A8"), QStringLiteral("face exhaling"), QStringLiteral("face exhaling")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F925"), QStringLiteral("lying_face"), QStringLiteral("lying face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F60C"), QStringLiteral("relieved"), QStringLiteral("relieved face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F614"), QStringLiteral("pensive"), QStringLiteral("pensive face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62A"), QStringLiteral("sleepy"), QStringLiteral("sleepy face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F924"), QStringLiteral("drooling_face"), QStringLiteral("drooling face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F634"), QStringLiteral("sleeping"), QStringLiteral("sleeping face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F637"), QStringLiteral("mask"), QStringLiteral("face with medical mask")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F912"), QStringLiteral("thermometer_face"), QStringLiteral("face with thermometer")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F915"), QStringLiteral("head_bandage"), QStringLiteral("face with head-bandage")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F922"), QStringLiteral("nauseated_face"), QStringLiteral("nauseated face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F92E"), QStringLiteral("face_vomiting"), QStringLiteral("face vomiting")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F927"), QStringLiteral("sneezing_face"), QStringLiteral("sneezing face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F975"), QStringLiteral("hot_face"), QStringLiteral("hot face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F976"), QStringLiteral("cold_face"), QStringLiteral("cold face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F974"), QStringLiteral("woozy_face"), QStringLiteral("woozy face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F635"), QStringLiteral("dizzy_face"), QStringLiteral("face with crossed-out eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F635\U0000200D\U0001F4AB"), QStringLiteral("face with spiral eyes"), QStringLiteral("face with spiral eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F92F"), QStringLiteral("exploding_head"), QStringLiteral("exploding head")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F920"), QStringLiteral("cowboy"), QStringLiteral("cowboy hat face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F973"), QStringLiteral("partying_face"), QStringLiteral("partying face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F978"), QStringLiteral("disguised face"), QStringLiteral("disguised face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F60E"), QStringLiteral("sunglasses"), QStringLiteral("smiling face with sunglasses")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F913"), QStringLiteral("nerd"), QStringLiteral("nerd face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D0"), QStringLiteral("face_with_monocle"), QStringLiteral("face with monocle")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F615"), QStringLiteral("confused"), QStringLiteral("confused face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE4"), QStringLiteral("face with diagonal mouth"), QStringLiteral("face with diagonal mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F61F"), QStringLiteral("worried"), QStringLiteral("worried face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F641"), QStringLiteral("slight_frown"), QStringLiteral("slightly frowning face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002639\U0000FE0F"), QStringLiteral("frowning face"), QStringLiteral("frowning face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62E"), QStringLiteral("open_mouth"), QStringLiteral("face with open mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62F"), QStringLiteral("hushed"), QStringLiteral("hushed face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F632"), QStringLiteral("astonished"), QStringLiteral("astonished face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F633"), QStringLiteral("flushed"), QStringLiteral("flushed face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F97A"), QStringLiteral("pleading_face"), QStringLiteral("pleading face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F979"), QStringLiteral("face holding back tears"), QStringLiteral("face holding back tears")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F626"), QStringLiteral("frowning"), QStringLiteral("frowning face with open mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F627"), QStringLiteral("anguished"), QStringLiteral("anguished face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F628"), QStringLiteral("fearful"), QStringLiteral("fearful face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F630"), QStringLiteral("cold_sweat"), QStringLiteral("anxious face with sweat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F625"), QStringLiteral("disappointed_relieved"), QStringLiteral("sad but relieved face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F622"), QStringLiteral("cry"), QStringLiteral("crying face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62D"), QStringLiteral("sob"), QStringLiteral("loudly crying face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F631"), QStringLiteral("scream"), QStringLiteral("face screaming in fear")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F616"), QStringLiteral("confounded"), QStringLiteral("confounded face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F623"), QStringLiteral("persevere"), QStringLiteral("persevering face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F61E"), QStringLiteral("disappointed"), QStringLiteral("disappointed face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F613"), QStringLiteral("sweat"), QStringLiteral("downcast face with sweat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F629"), QStringLiteral("weary"), QStringLiteral("weary face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F62B"), QStringLiteral("tired_face"), QStringLiteral("tired face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F971"), QStringLiteral("yawning face"), QStringLiteral("yawning face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F624"), QStringLiteral("triumph"), QStringLiteral("face with steam from nose")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F621"), QStringLiteral("rage"), QStringLiteral("pouting face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F620"), QStringLiteral("angry"), QStringLiteral("angry face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F92C"), QStringLiteral("face_with_symbols_over_mouth"), QStringLiteral("face with symbols on mouth")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F608"), QStringLiteral("smiling_imp"), QStringLiteral("smiling face with horns")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47F"), QStringLiteral("imp"), QStringLiteral("angry face with horns")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F480"), QStringLiteral("skull"), QStringLiteral("skull")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002620\U0000FE0F"), QStringLiteral("skull and crossbones"), QStringLiteral("skull and crossbones")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A9"), QStringLiteral("poop"), QStringLiteral("pile of poo")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F921"), QStringLiteral("clown"), QStringLiteral("clown face")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F479"), QStringLiteral("japanese_ogre"), QStringLiteral("ogre")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47A"), QStringLiteral("japanese_goblin"), QStringLiteral("goblin")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47B"), QStringLiteral("ghost"), QStringLiteral("ghost")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47D"), QStringLiteral("alien"), QStringLiteral("alien")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47E"), QStringLiteral("space_invader"), QStringLiteral("alien monster")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F916"), QStringLiteral("robot"), QStringLiteral("robot")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F63A"), QStringLiteral("smiley_cat"), QStringLiteral("grinning cat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F638"), QStringLiteral("smile_cat"), QStringLiteral("grinning cat with smiling eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F639"), QStringLiteral("joy_cat"), QStringLiteral("cat with tears of joy")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F63B"), QStringLiteral("heart_eyes_cat"), QStringLiteral("smiling cat with heart-eyes")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F63C"), QStringLiteral("smirk_cat"), QStringLiteral("cat with wry smile")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F63D"), QStringLiteral("kissing_cat"), QStringLiteral("kissing cat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F640"), QStringLiteral("scream_cat"), QStringLiteral("weary cat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F63F"), QStringLiteral("crying_cat_face"), QStringLiteral("crying cat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F63E"), QStringLiteral("pouting_cat"), QStringLiteral("pouting cat")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F648"), QStringLiteral("see_no_evil"), QStringLiteral("see-no-evil monkey")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F649"), QStringLiteral("hear_no_evil"), QStringLiteral("hear-no-evil monkey")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64A"), QStringLiteral("speak_no_evil"), QStringLiteral("speak-no-evil monkey")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48B"), QStringLiteral("kiss"), QStringLiteral("kiss mark")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48C"), QStringLiteral("love_letter"), QStringLiteral("love letter")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F498"), QStringLiteral("cupid"), QStringLiteral("heart with arrow")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F49D"), QStringLiteral("gift_heart"), QStringLiteral("heart with ribbon")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F496"), QStringLiteral("sparkling_heart"), QStringLiteral("sparkling heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F497"), QStringLiteral("heartpulse"), QStringLiteral("growing heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F493"), QStringLiteral("heartbeat"), QStringLiteral("beating heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F49E"), QStringLiteral("revolving_hearts"), QStringLiteral("revolving hearts")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F495"), QStringLiteral("two_hearts"), QStringLiteral("two hearts")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F49F"), QStringLiteral("heart_decoration"), QStringLiteral("heart decoration")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002763\U0000FE0F"), QStringLiteral("heart exclamation"), QStringLiteral("heart exclamation")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F494"), QStringLiteral("broken_heart"), QStringLiteral("broken heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002764\U0000FE0F\U0000200D\U0001F525"), QStringLiteral("heart on fire"), QStringLiteral("heart on fire")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002764\U0000FE0F\U0000200D\U0001FA79"), QStringLiteral("mending heart"), QStringLiteral("mending heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002764\U0000FE0F"), QStringLiteral("red heart"), QStringLiteral("red heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E1"), QStringLiteral("orange_heart"), QStringLiteral("orange heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F49B"), QStringLiteral("yellow_heart"), QStringLiteral("yellow heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F49A"), QStringLiteral("green_heart"), QStringLiteral("green heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F499"), QStringLiteral("blue_heart"), QStringLiteral("blue heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F49C"), QStringLiteral("purple_heart"), QStringLiteral("purple heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90E"), QStringLiteral("brown heart"), QStringLiteral("brown heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5A4"), QStringLiteral("black_heart"), QStringLiteral("black heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90D"), QStringLiteral("white heart"), QStringLiteral("white heart")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AF"), QStringLiteral("100"), QStringLiteral("hundred points")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A2"), QStringLiteral("anger"), QStringLiteral("anger symbol")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A5"), QStringLiteral("boom"), QStringLiteral("collision")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AB"), QStringLiteral("dizzy"), QStringLiteral("dizzy")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A6"), QStringLiteral("sweat_drops"), QStringLiteral("sweat droplets")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A8"), QStringLiteral("dash"), QStringLiteral("dashing away")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F573\U0000FE0F"), QStringLiteral("hole"), QStringLiteral("hole")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A3"), QStringLiteral("bomb"), QStringLiteral("bomb")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AC"), QStringLiteral("speech_balloon"), QStringLiteral("speech balloon")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F441\U0000FE0F\U0000200D\U0001F5E8\U0000FE0F"), QStringLiteral("eye in speech bubble"), QStringLiteral("eye in speech bubble")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5E8\U0000FE0F"), QStringLiteral("left speech bubble"), QStringLiteral("left speech bubble")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5EF\U0000FE0F"), QStringLiteral("right anger bubble"), QStringLiteral("right anger bubble")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AD"), QStringLiteral("thought_balloon"), QStringLiteral("thought balloon")})); -_emojis[Smileys].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A4"), QStringLiteral("zzz"), QStringLiteral("zzz")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44B"), QStringLiteral("wave"), QStringLiteral("waving hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91A"), QStringLiteral("raised_back_of_hand"), QStringLiteral("raised back of hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F590\U0000FE0F"), QStringLiteral("hand with fingers splayed"), QStringLiteral("hand with fingers splayed")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270B"), QStringLiteral("raised_hand"), QStringLiteral("raised hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F596"), QStringLiteral("vulcan"), QStringLiteral("vulcan salute")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1"), QStringLiteral("rightwards hand"), QStringLiteral("rightwards hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF2"), QStringLiteral("leftwards hand"), QStringLiteral("leftwards hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF3"), QStringLiteral("palm down hand"), QStringLiteral("palm down hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF4"), QStringLiteral("palm up hand"), QStringLiteral("palm up hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44C"), QStringLiteral("ok_hand"), QStringLiteral("OK hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90C"), QStringLiteral("pinched fingers"), QStringLiteral("pinched fingers")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90F"), QStringLiteral("pinching hand"), QStringLiteral("pinching hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270C\U0000FE0F"), QStringLiteral("victory hand"), QStringLiteral("victory hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91E"), QStringLiteral("fingers_crossed"), QStringLiteral("crossed fingers")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF0"), QStringLiteral("hand with index finger and thumb crossed"), QStringLiteral("hand with index finger and thumb crossed")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91F"), QStringLiteral("love_you_gesture"), QStringLiteral("love-you gesture")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F918"), QStringLiteral("metal"), QStringLiteral("sign of the horns")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F919"), QStringLiteral("call_me"), QStringLiteral("call me hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F448"), QStringLiteral("point_left"), QStringLiteral("backhand index pointing left")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F449"), QStringLiteral("point_right"), QStringLiteral("backhand index pointing right")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F446"), QStringLiteral("point_up_2"), QStringLiteral("backhand index pointing up")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F595"), QStringLiteral("middle_finger"), QStringLiteral("middle finger")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F447"), QStringLiteral("point_down"), QStringLiteral("backhand index pointing down")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000261D\U0000FE0F"), QStringLiteral("index pointing up"), QStringLiteral("index pointing up")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF5"), QStringLiteral("index pointing at the viewer"), QStringLiteral("index pointing at the viewer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44D"), QStringLiteral("thumbsup"), QStringLiteral("thumbs up")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44E"), QStringLiteral("thumbsdown"), QStringLiteral("thumbs down")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270A"), QStringLiteral("fist"), QStringLiteral("raised fist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44A"), QStringLiteral("punch"), QStringLiteral("oncoming fist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91B"), QStringLiteral("left_facing_fist"), QStringLiteral("left-facing fist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91C"), QStringLiteral("right_facing_fist"), QStringLiteral("right-facing fist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44F"), QStringLiteral("clap"), QStringLiteral("clapping hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64C"), QStringLiteral("raised_hands"), QStringLiteral("raising hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF6"), QStringLiteral("heart hands"), QStringLiteral("heart hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F450"), QStringLiteral("open_hands"), QStringLiteral("open hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F932"), QStringLiteral("palms_up_together"), QStringLiteral("palms up together")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91D"), QStringLiteral("handshake"), QStringLiteral("handshake")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64F"), QStringLiteral("pray"), QStringLiteral("folded hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270D\U0000FE0F"), QStringLiteral("writing hand"), QStringLiteral("writing hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F485"), QStringLiteral("nail_care"), QStringLiteral("nail polish")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F933"), QStringLiteral("selfie"), QStringLiteral("selfie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AA"), QStringLiteral("muscle"), QStringLiteral("flexed biceps")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BE"), QStringLiteral("mechanical arm"), QStringLiteral("mechanical arm")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BF"), QStringLiteral("mechanical leg"), QStringLiteral("mechanical leg")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B5"), QStringLiteral("leg"), QStringLiteral("leg")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B6"), QStringLiteral("foot"), QStringLiteral("foot")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F442"), QStringLiteral("ear"), QStringLiteral("ear")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BB"), QStringLiteral("ear with hearing aid"), QStringLiteral("ear with hearing aid")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F443"), QStringLiteral("nose"), QStringLiteral("nose")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E0"), QStringLiteral("brain"), QStringLiteral("brain")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC0"), QStringLiteral("anatomical heart"), QStringLiteral("anatomical heart")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC1"), QStringLiteral("lungs"), QStringLiteral("lungs")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B7"), QStringLiteral("tooth"), QStringLiteral("tooth")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B4"), QStringLiteral("bone"), QStringLiteral("bone")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F440"), QStringLiteral("eyes"), QStringLiteral("eyes")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F441\U0000FE0F"), QStringLiteral("eye"), QStringLiteral("eye")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F445"), QStringLiteral("tongue"), QStringLiteral("tongue")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F444"), QStringLiteral("lips"), QStringLiteral("mouth")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE6"), QStringLiteral("biting lip"), QStringLiteral("biting lip")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F476"), QStringLiteral("baby"), QStringLiteral("baby")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D2"), QStringLiteral("child"), QStringLiteral("child")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F466"), QStringLiteral("boy"), QStringLiteral("boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F467"), QStringLiteral("girl"), QStringLiteral("girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1"), QStringLiteral("adult"), QStringLiteral("person")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471"), QStringLiteral("person_with_blond_hair"), QStringLiteral("person: blond hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468"), QStringLiteral("man"), QStringLiteral("man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4"), QStringLiteral("bearded_person"), QStringLiteral("person: beard")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: beard"), QStringLiteral("man: beard")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: beard"), QStringLiteral("woman: beard")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9B0"), QStringLiteral("man: red hair"), QStringLiteral("man: red hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9B1"), QStringLiteral("man: curly hair"), QStringLiteral("man: curly hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9B3"), QStringLiteral("man: white hair"), QStringLiteral("man: white hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9B2"), QStringLiteral("man: bald"), QStringLiteral("man: bald")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469"), QStringLiteral("woman"), QStringLiteral("woman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9B0"), QStringLiteral("woman: red hair"), QStringLiteral("woman: red hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9B0"), QStringLiteral("person: red hair"), QStringLiteral("person: red hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9B1"), QStringLiteral("woman: curly hair"), QStringLiteral("woman: curly hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9B1"), QStringLiteral("person: curly hair"), QStringLiteral("person: curly hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9B3"), QStringLiteral("woman: white hair"), QStringLiteral("woman: white hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9B3"), QStringLiteral("person: white hair"), QStringLiteral("person: white hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9B2"), QStringLiteral("woman: bald"), QStringLiteral("woman: bald")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9B2"), QStringLiteral("person: bald"), QStringLiteral("person: bald")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: blond hair"), QStringLiteral("woman: blond hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: blond hair"), QStringLiteral("man: blond hair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D3"), QStringLiteral("older_adult"), QStringLiteral("older person")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F474"), QStringLiteral("older_man"), QStringLiteral("old man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F475"), QStringLiteral("older_woman"), QStringLiteral("old woman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D"), QStringLiteral("person_frowning"), QStringLiteral("person frowning")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man frowning"), QStringLiteral("man frowning")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman frowning"), QStringLiteral("woman frowning")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E"), QStringLiteral("person_with_pouting_face"), QStringLiteral("person pouting")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man pouting"), QStringLiteral("man pouting")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman pouting"), QStringLiteral("woman pouting")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645"), QStringLiteral("no_good"), QStringLiteral("person gesturing NO")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing NO"), QStringLiteral("man gesturing NO")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing NO"), QStringLiteral("woman gesturing NO")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646"), QStringLiteral("ok_woman"), QStringLiteral("person gesturing OK")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing OK"), QStringLiteral("man gesturing OK")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing OK"), QStringLiteral("woman gesturing OK")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481"), QStringLiteral("information_desk_person"), QStringLiteral("person tipping hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man tipping hand"), QStringLiteral("man tipping hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman tipping hand"), QStringLiteral("woman tipping hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B"), QStringLiteral("raising_hand"), QStringLiteral("person raising hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man raising hand"), QStringLiteral("man raising hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman raising hand"), QStringLiteral("woman raising hand")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF"), QStringLiteral("deaf person"), QStringLiteral("deaf person")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("deaf man"), QStringLiteral("deaf man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("deaf woman"), QStringLiteral("deaf woman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647"), QStringLiteral("bow"), QStringLiteral("person bowing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bowing"), QStringLiteral("man bowing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bowing"), QStringLiteral("woman bowing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926"), QStringLiteral("face_palm"), QStringLiteral("person facepalming")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man facepalming"), QStringLiteral("man facepalming")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman facepalming"), QStringLiteral("woman facepalming")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937"), QStringLiteral("shrug"), QStringLiteral("person shrugging")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man shrugging"), QStringLiteral("man shrugging")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman shrugging"), QStringLiteral("woman shrugging")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U00002695\U0000FE0F"), QStringLiteral("health worker"), QStringLiteral("health worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U00002695\U0000FE0F"), QStringLiteral("man health worker"), QStringLiteral("man health worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002695\U0000FE0F"), QStringLiteral("woman health worker"), QStringLiteral("woman health worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F393"), QStringLiteral("student"), QStringLiteral("student")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F393"), QStringLiteral("man student"), QStringLiteral("man student")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F393"), QStringLiteral("woman student"), QStringLiteral("woman student")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F3EB"), QStringLiteral("teacher"), QStringLiteral("teacher")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F3EB"), QStringLiteral("man teacher"), QStringLiteral("man teacher")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F3EB"), QStringLiteral("woman teacher"), QStringLiteral("woman teacher")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U00002696\U0000FE0F"), QStringLiteral("judge"), QStringLiteral("judge")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U00002696\U0000FE0F"), QStringLiteral("man judge"), QStringLiteral("man judge")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002696\U0000FE0F"), QStringLiteral("woman judge"), QStringLiteral("woman judge")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F33E"), QStringLiteral("farmer"), QStringLiteral("farmer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F33E"), QStringLiteral("man farmer"), QStringLiteral("man farmer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F33E"), QStringLiteral("woman farmer"), QStringLiteral("woman farmer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F373"), QStringLiteral("cook"), QStringLiteral("cook")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F373"), QStringLiteral("man cook"), QStringLiteral("man cook")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F373"), QStringLiteral("woman cook"), QStringLiteral("woman cook")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F527"), QStringLiteral("mechanic"), QStringLiteral("mechanic")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F527"), QStringLiteral("man mechanic"), QStringLiteral("man mechanic")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F527"), QStringLiteral("woman mechanic"), QStringLiteral("woman mechanic")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F3ED"), QStringLiteral("factory worker"), QStringLiteral("factory worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F3ED"), QStringLiteral("man factory worker"), QStringLiteral("man factory worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F3ED"), QStringLiteral("woman factory worker"), QStringLiteral("woman factory worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F4BC"), QStringLiteral("office worker"), QStringLiteral("office worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F4BC"), QStringLiteral("man office worker"), QStringLiteral("man office worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F4BC"), QStringLiteral("woman office worker"), QStringLiteral("woman office worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F52C"), QStringLiteral("scientist"), QStringLiteral("scientist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F52C"), QStringLiteral("man scientist"), QStringLiteral("man scientist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F52C"), QStringLiteral("woman scientist"), QStringLiteral("woman scientist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F4BB"), QStringLiteral("technologist"), QStringLiteral("technologist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F4BB"), QStringLiteral("man technologist"), QStringLiteral("man technologist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F4BB"), QStringLiteral("woman technologist"), QStringLiteral("woman technologist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F3A4"), QStringLiteral("singer"), QStringLiteral("singer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F3A4"), QStringLiteral("man singer"), QStringLiteral("man singer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F3A4"), QStringLiteral("woman singer"), QStringLiteral("woman singer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F3A8"), QStringLiteral("artist"), QStringLiteral("artist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F3A8"), QStringLiteral("man artist"), QStringLiteral("man artist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F3A8"), QStringLiteral("woman artist"), QStringLiteral("woman artist")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U00002708\U0000FE0F"), QStringLiteral("pilot"), QStringLiteral("pilot")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U00002708\U0000FE0F"), QStringLiteral("man pilot"), QStringLiteral("man pilot")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002708\U0000FE0F"), QStringLiteral("woman pilot"), QStringLiteral("woman pilot")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F680"), QStringLiteral("astronaut"), QStringLiteral("astronaut")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F680"), QStringLiteral("man astronaut"), QStringLiteral("man astronaut")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F680"), QStringLiteral("woman astronaut"), QStringLiteral("woman astronaut")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F692"), QStringLiteral("firefighter"), QStringLiteral("firefighter")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F692"), QStringLiteral("man firefighter"), QStringLiteral("man firefighter")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F692"), QStringLiteral("woman firefighter"), QStringLiteral("woman firefighter")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E"), QStringLiteral("cop"), QStringLiteral("police officer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man police officer"), QStringLiteral("man police officer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman police officer"), QStringLiteral("woman police officer")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0000FE0F"), QStringLiteral("detective"), QStringLiteral("detective")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0000FE0F\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man detective"), QStringLiteral("man detective")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0000FE0F\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman detective"), QStringLiteral("woman detective")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482"), QStringLiteral("guardsman"), QStringLiteral("guard")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man guard"), QStringLiteral("man guard")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman guard"), QStringLiteral("woman guard")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F977"), QStringLiteral("ninja"), QStringLiteral("ninja")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477"), QStringLiteral("construction_worker"), QStringLiteral("construction worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man construction worker"), QStringLiteral("man construction worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman construction worker"), QStringLiteral("woman construction worker")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC5"), QStringLiteral("person with crown"), QStringLiteral("person with crown")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F934"), QStringLiteral("prince"), QStringLiteral("prince")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F478"), QStringLiteral("princess"), QStringLiteral("princess")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473"), QStringLiteral("man_with_turban"), QStringLiteral("person wearing turban")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man wearing turban"), QStringLiteral("man wearing turban")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman wearing turban"), QStringLiteral("woman wearing turban")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F472"), QStringLiteral("man_with_gua_pi_mao"), QStringLiteral("person with skullcap")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D5"), QStringLiteral("woman_with_headscarf"), QStringLiteral("woman with headscarf")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935"), QStringLiteral("man_in_tuxedo"), QStringLiteral("person in tuxedo")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in tuxedo"), QStringLiteral("man in tuxedo")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in tuxedo"), QStringLiteral("woman in tuxedo")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470"), QStringLiteral("bride_with_veil"), QStringLiteral("person with veil")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man with veil"), QStringLiteral("man with veil")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman with veil"), QStringLiteral("woman with veil")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F930"), QStringLiteral("pregnant_woman"), QStringLiteral("pregnant woman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC3"), QStringLiteral("pregnant man"), QStringLiteral("pregnant man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC4"), QStringLiteral("pregnant person"), QStringLiteral("pregnant person")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F931"), QStringLiteral("breast_feeding"), QStringLiteral("breast-feeding")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F37C"), QStringLiteral("woman feeding baby"), QStringLiteral("woman feeding baby")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F37C"), QStringLiteral("man feeding baby"), QStringLiteral("man feeding baby")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F37C"), QStringLiteral("person feeding baby"), QStringLiteral("person feeding baby")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47C"), QStringLiteral("angel"), QStringLiteral("baby angel")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F385"), QStringLiteral("santa"), QStringLiteral("Santa Claus")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F936"), QStringLiteral("mrs_claus"), QStringLiteral("Mrs. Claus")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F384"), QStringLiteral("mx claus"), QStringLiteral("mx claus")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8"), QStringLiteral("superhero"), QStringLiteral("superhero")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man superhero"), QStringLiteral("man superhero")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman superhero"), QStringLiteral("woman superhero")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9"), QStringLiteral("supervillain"), QStringLiteral("supervillain")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man supervillain"), QStringLiteral("man supervillain")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman supervillain"), QStringLiteral("woman supervillain")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9"), QStringLiteral("mage"), QStringLiteral("mage")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mage"), QStringLiteral("man mage")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mage"), QStringLiteral("woman mage")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA"), QStringLiteral("fairy"), QStringLiteral("fairy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man fairy"), QStringLiteral("man fairy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman fairy"), QStringLiteral("woman fairy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB"), QStringLiteral("vampire"), QStringLiteral("vampire")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man vampire"), QStringLiteral("man vampire")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman vampire"), QStringLiteral("woman vampire")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC"), QStringLiteral("merperson"), QStringLiteral("merperson")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("merman"), QStringLiteral("merman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("mermaid"), QStringLiteral("mermaid")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD"), QStringLiteral("elf"), QStringLiteral("elf")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man elf"), QStringLiteral("man elf")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman elf"), QStringLiteral("woman elf")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DE"), QStringLiteral("genie"), QStringLiteral("genie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man genie"), QStringLiteral("man genie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman genie"), QStringLiteral("woman genie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DF"), QStringLiteral("zombie"), QStringLiteral("zombie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man zombie"), QStringLiteral("man zombie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman zombie"), QStringLiteral("woman zombie")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CC"), QStringLiteral("troll"), QStringLiteral("troll")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486"), QStringLiteral("massage"), QStringLiteral("person getting massage")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting massage"), QStringLiteral("man getting massage")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting massage"), QStringLiteral("woman getting massage")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487"), QStringLiteral("haircut"), QStringLiteral("person getting haircut")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting haircut"), QStringLiteral("man getting haircut")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting haircut"), QStringLiteral("woman getting haircut")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6"), QStringLiteral("walking"), QStringLiteral("person walking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man walking"), QStringLiteral("man walking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman walking"), QStringLiteral("woman walking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD"), QStringLiteral("person standing"), QStringLiteral("person standing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man standing"), QStringLiteral("man standing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman standing"), QStringLiteral("woman standing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE"), QStringLiteral("person kneeling"), QStringLiteral("person kneeling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man kneeling"), QStringLiteral("man kneeling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman kneeling"), QStringLiteral("woman kneeling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9AF"), QStringLiteral("person with white cane"), QStringLiteral("person with white cane")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9AF"), QStringLiteral("man with white cane"), QStringLiteral("man with white cane")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9AF"), QStringLiteral("woman with white cane"), QStringLiteral("woman with white cane")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9BC"), QStringLiteral("person in motorized wheelchair"), QStringLiteral("person in motorized wheelchair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9BC"), QStringLiteral("man in motorized wheelchair"), QStringLiteral("man in motorized wheelchair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9BC"), QStringLiteral("woman in motorized wheelchair"), QStringLiteral("woman in motorized wheelchair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F9BD"), QStringLiteral("person in manual wheelchair"), QStringLiteral("person in manual wheelchair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F9BD"), QStringLiteral("man in manual wheelchair"), QStringLiteral("man in manual wheelchair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F9BD"), QStringLiteral("woman in manual wheelchair"), QStringLiteral("woman in manual wheelchair")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3"), QStringLiteral("runner"), QStringLiteral("person running")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man running"), QStringLiteral("man running")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman running"), QStringLiteral("woman running")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F483"), QStringLiteral("dancer"), QStringLiteral("woman dancing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F57A"), QStringLiteral("man_dancing"), QStringLiteral("man dancing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F574\U0000FE0F"), QStringLiteral("person in suit levitating"), QStringLiteral("person in suit levitating")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46F"), QStringLiteral("dancers"), QStringLiteral("people with bunny ears")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46F\U0000200D\U00002642\U0000FE0F"), QStringLiteral("men with bunny ears"), QStringLiteral("men with bunny ears")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46F\U0000200D\U00002640\U0000FE0F"), QStringLiteral("women with bunny ears"), QStringLiteral("women with bunny ears")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6"), QStringLiteral("person_in_steamy_room"), QStringLiteral("person in steamy room")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in steamy room"), QStringLiteral("man in steamy room")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in steamy room"), QStringLiteral("woman in steamy room")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7"), QStringLiteral("person_climbing"), QStringLiteral("person climbing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man climbing"), QStringLiteral("man climbing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman climbing"), QStringLiteral("woman climbing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93A"), QStringLiteral("fencer"), QStringLiteral("person fencing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C7"), QStringLiteral("horse_racing"), QStringLiteral("horse racing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F7\U0000FE0F"), QStringLiteral("skier"), QStringLiteral("skier")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C2"), QStringLiteral("snowboarder"), QStringLiteral("snowboarder")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0000FE0F"), QStringLiteral("person golfing"), QStringLiteral("person golfing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0000FE0F\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man golfing"), QStringLiteral("man golfing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0000FE0F\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman golfing"), QStringLiteral("woman golfing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4"), QStringLiteral("surfer"), QStringLiteral("person surfing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man surfing"), QStringLiteral("man surfing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman surfing"), QStringLiteral("woman surfing")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3"), QStringLiteral("rowboat"), QStringLiteral("person rowing boat")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man rowing boat"), QStringLiteral("man rowing boat")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman rowing boat"), QStringLiteral("woman rowing boat")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA"), QStringLiteral("swimmer"), QStringLiteral("person swimming")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man swimming"), QStringLiteral("man swimming")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman swimming"), QStringLiteral("woman swimming")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0000FE0F"), QStringLiteral("person bouncing ball"), QStringLiteral("person bouncing ball")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0000FE0F\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bouncing ball"), QStringLiteral("man bouncing ball")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0000FE0F\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bouncing ball"), QStringLiteral("woman bouncing ball")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0000FE0F"), QStringLiteral("person lifting weights"), QStringLiteral("person lifting weights")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0000FE0F\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man lifting weights"), QStringLiteral("man lifting weights")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0000FE0F\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman lifting weights"), QStringLiteral("woman lifting weights")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4"), QStringLiteral("bicyclist"), QStringLiteral("person biking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man biking"), QStringLiteral("man biking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman biking"), QStringLiteral("woman biking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5"), QStringLiteral("mountain_bicyclist"), QStringLiteral("person mountain biking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mountain biking"), QStringLiteral("man mountain biking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mountain biking"), QStringLiteral("woman mountain biking")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938"), QStringLiteral("cartwheel"), QStringLiteral("person cartwheeling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man cartwheeling"), QStringLiteral("man cartwheeling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman cartwheeling"), QStringLiteral("woman cartwheeling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93C"), QStringLiteral("wrestlers"), QStringLiteral("people wrestling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93C\U0000200D\U00002642\U0000FE0F"), QStringLiteral("men wrestling"), QStringLiteral("men wrestling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93C\U0000200D\U00002640\U0000FE0F"), QStringLiteral("women wrestling"), QStringLiteral("women wrestling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D"), QStringLiteral("water_polo"), QStringLiteral("person playing water polo")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing water polo"), QStringLiteral("man playing water polo")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing water polo"), QStringLiteral("woman playing water polo")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E"), QStringLiteral("handball"), QStringLiteral("person playing handball")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing handball"), QStringLiteral("man playing handball")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing handball"), QStringLiteral("woman playing handball")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939"), QStringLiteral("juggling"), QStringLiteral("person juggling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man juggling"), QStringLiteral("man juggling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman juggling"), QStringLiteral("woman juggling")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8"), QStringLiteral("person_in_lotus_position"), QStringLiteral("person in lotus position")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in lotus position"), QStringLiteral("man in lotus position")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in lotus position"), QStringLiteral("woman in lotus position")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C0"), QStringLiteral("bath"), QStringLiteral("person taking bath")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CC"), QStringLiteral("sleeping_accommodation"), QStringLiteral("person in bed")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0000200D\U0001F91D\U0000200D\U0001F9D1"), QStringLiteral("people holding hands"), QStringLiteral("people holding hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46D"), QStringLiteral("two_women_holding_hands"), QStringLiteral("women holding hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46B"), QStringLiteral("couple"), QStringLiteral("woman and man holding hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46C"), QStringLiteral("two_men_holding_hands"), QStringLiteral("men holding hands")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48F"), QStringLiteral("couplekiss"), QStringLiteral("kiss")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468"), QStringLiteral("kiss: woman, man"), QStringLiteral("kiss: woman, man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468"), QStringLiteral("kiss: man, man"), QStringLiteral("kiss: man, man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469"), QStringLiteral("kiss: woman, woman"), QStringLiteral("kiss: woman, woman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F491"), QStringLiteral("couple_with_heart"), QStringLiteral("couple with heart")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468"), QStringLiteral("couple with heart: woman, man"), QStringLiteral("couple with heart: woman, man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468"), QStringLiteral("couple with heart: man, man"), QStringLiteral("couple with heart: man, man")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469"), QStringLiteral("couple with heart: woman, woman"), QStringLiteral("couple with heart: woman, woman")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46A"), QStringLiteral("family"), QStringLiteral("family")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F469\U0000200D\U0001F466"), QStringLiteral("family: man, woman, boy"), QStringLiteral("family: man, woman, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467"), QStringLiteral("family: man, woman, girl"), QStringLiteral("family: man, woman, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466"), QStringLiteral("family: man, woman, girl, boy"), QStringLiteral("family: man, woman, girl, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466"), QStringLiteral("family: man, woman, boy, boy"), QStringLiteral("family: man, woman, boy, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467"), QStringLiteral("family: man, woman, girl, girl"), QStringLiteral("family: man, woman, girl, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F468\U0000200D\U0001F466"), QStringLiteral("family: man, man, boy"), QStringLiteral("family: man, man, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467"), QStringLiteral("family: man, man, girl"), QStringLiteral("family: man, man, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467\U0000200D\U0001F466"), QStringLiteral("family: man, man, girl, boy"), QStringLiteral("family: man, man, girl, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F468\U0000200D\U0001F466\U0000200D\U0001F466"), QStringLiteral("family: man, man, boy, boy"), QStringLiteral("family: man, man, boy, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F468\U0000200D\U0001F467\U0000200D\U0001F467"), QStringLiteral("family: man, man, girl, girl"), QStringLiteral("family: man, man, girl, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F469\U0000200D\U0001F466"), QStringLiteral("family: woman, woman, boy"), QStringLiteral("family: woman, woman, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467"), QStringLiteral("family: woman, woman, girl"), QStringLiteral("family: woman, woman, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466"), QStringLiteral("family: woman, woman, girl, boy"), QStringLiteral("family: woman, woman, girl, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466"), QStringLiteral("family: woman, woman, boy, boy"), QStringLiteral("family: woman, woman, boy, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467"), QStringLiteral("family: woman, woman, girl, girl"), QStringLiteral("family: woman, woman, girl, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F466"), QStringLiteral("family: man, boy"), QStringLiteral("family: man, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F466\U0000200D\U0001F466"), QStringLiteral("family: man, boy, boy"), QStringLiteral("family: man, boy, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F467"), QStringLiteral("family: man, girl"), QStringLiteral("family: man, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F467\U0000200D\U0001F466"), QStringLiteral("family: man, girl, boy"), QStringLiteral("family: man, girl, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0000200D\U0001F467\U0000200D\U0001F467"), QStringLiteral("family: man, girl, girl"), QStringLiteral("family: man, girl, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F466"), QStringLiteral("family: woman, boy"), QStringLiteral("family: woman, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F466\U0000200D\U0001F466"), QStringLiteral("family: woman, boy, boy"), QStringLiteral("family: woman, boy, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F467"), QStringLiteral("family: woman, girl"), QStringLiteral("family: woman, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F467\U0000200D\U0001F466"), QStringLiteral("family: woman, girl, boy"), QStringLiteral("family: woman, girl, boy")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0000200D\U0001F467\U0000200D\U0001F467"), QStringLiteral("family: woman, girl, girl"), QStringLiteral("family: woman, girl, girl")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5E3\U0000FE0F"), QStringLiteral("speaking head"), QStringLiteral("speaking head")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F464"), QStringLiteral("bust_in_silhouette"), QStringLiteral("bust in silhouette")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F465"), QStringLiteral("busts_in_silhouette"), QStringLiteral("busts in silhouette")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC2"), QStringLiteral("people hugging"), QStringLiteral("people hugging")})); -_emojis[People].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F463"), QStringLiteral("footprints"), QStringLiteral("footprints")})); -_emojis[Component].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B0"), QStringLiteral("red_haired"), QStringLiteral("red hair")})); -_emojis[Component].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B1"), QStringLiteral("curly_haired"), QStringLiteral("curly hair")})); -_emojis[Component].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B3"), QStringLiteral("white_haired"), QStringLiteral("white hair")})); -_emojis[Component].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B2"), QStringLiteral("bald"), QStringLiteral("bald")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F435"), QStringLiteral("monkey_face"), QStringLiteral("monkey face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F412"), QStringLiteral("monkey"), QStringLiteral("monkey")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F98D"), QStringLiteral("gorilla"), QStringLiteral("gorilla")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A7"), QStringLiteral("orangutan"), QStringLiteral("orangutan")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F436"), QStringLiteral("dog"), QStringLiteral("dog face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F415"), QStringLiteral("dog2"), QStringLiteral("dog")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9AE"), QStringLiteral("guide dog"), QStringLiteral("guide dog")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F415\U0000200D\U0001F9BA"), QStringLiteral("service dog"), QStringLiteral("service dog")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F429"), QStringLiteral("poodle"), QStringLiteral("poodle")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43A"), QStringLiteral("wolf"), QStringLiteral("wolf")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F98A"), QStringLiteral("fox"), QStringLiteral("fox")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F99D"), QStringLiteral("raccoon"), QStringLiteral("raccoon")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F431"), QStringLiteral("cat"), QStringLiteral("cat face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F408"), QStringLiteral("cat2"), QStringLiteral("cat")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F408\U0000200D\U00002B1B"), QStringLiteral("black cat"), QStringLiteral("black cat")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F981"), QStringLiteral("lion_face"), QStringLiteral("lion")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F42F"), QStringLiteral("tiger"), QStringLiteral("tiger face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F405"), QStringLiteral("tiger2"), QStringLiteral("tiger")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F406"), QStringLiteral("leopard"), QStringLiteral("leopard")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F434"), QStringLiteral("horse"), QStringLiteral("horse face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F40E"), QStringLiteral("racehorse"), QStringLiteral("horse")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F984"), QStringLiteral("unicorn"), QStringLiteral("unicorn")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F993"), QStringLiteral("zebra"), QStringLiteral("zebra")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F98C"), QStringLiteral("deer"), QStringLiteral("deer")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9AC"), QStringLiteral("bison"), QStringLiteral("bison")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F42E"), QStringLiteral("cow"), QStringLiteral("cow face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F402"), QStringLiteral("ox"), QStringLiteral("ox")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F403"), QStringLiteral("water_buffalo"), QStringLiteral("water buffalo")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F404"), QStringLiteral("cow2"), QStringLiteral("cow")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F437"), QStringLiteral("pig"), QStringLiteral("pig face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F416"), QStringLiteral("pig2"), QStringLiteral("pig")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F417"), QStringLiteral("boar"), QStringLiteral("boar")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43D"), QStringLiteral("pig_nose"), QStringLiteral("pig nose")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F40F"), QStringLiteral("ram"), QStringLiteral("ram")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F411"), QStringLiteral("sheep"), QStringLiteral("ewe")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F410"), QStringLiteral("goat"), QStringLiteral("goat")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F42A"), QStringLiteral("dromedary_camel"), QStringLiteral("camel")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F42B"), QStringLiteral("camel"), QStringLiteral("two-hump camel")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F999"), QStringLiteral("llama"), QStringLiteral("llama")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F992"), QStringLiteral("giraffe"), QStringLiteral("giraffe")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F418"), QStringLiteral("elephant"), QStringLiteral("elephant")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A3"), QStringLiteral("mammoth"), QStringLiteral("mammoth")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F98F"), QStringLiteral("rhino"), QStringLiteral("rhinoceros")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F99B"), QStringLiteral("hippopotamus"), QStringLiteral("hippopotamus")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F42D"), QStringLiteral("mouse"), QStringLiteral("mouse face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F401"), QStringLiteral("mouse2"), QStringLiteral("mouse")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F400"), QStringLiteral("rat"), QStringLiteral("rat")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F439"), QStringLiteral("hamster"), QStringLiteral("hamster")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F430"), QStringLiteral("rabbit"), QStringLiteral("rabbit face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F407"), QStringLiteral("rabbit2"), QStringLiteral("rabbit")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43F\U0000FE0F"), QStringLiteral("chipmunk"), QStringLiteral("chipmunk")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9AB"), QStringLiteral("beaver"), QStringLiteral("beaver")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F994"), QStringLiteral("hedgehog"), QStringLiteral("hedgehog")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F987"), QStringLiteral("bat"), QStringLiteral("bat")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43B"), QStringLiteral("bear"), QStringLiteral("bear")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43B\U0000200D\U00002744\U0000FE0F"), QStringLiteral("polar bear"), QStringLiteral("polar bear")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F428"), QStringLiteral("koala"), QStringLiteral("koala")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43C"), QStringLiteral("panda_face"), QStringLiteral("panda")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A5"), QStringLiteral("sloth"), QStringLiteral("sloth")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A6"), QStringLiteral("otter"), QStringLiteral("otter")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A8"), QStringLiteral("skunk"), QStringLiteral("skunk")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F998"), QStringLiteral("kangaroo"), QStringLiteral("kangaroo")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A1"), QStringLiteral("badger"), QStringLiteral("badger")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F43E"), QStringLiteral("feet"), QStringLiteral("paw prints")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F983"), QStringLiteral("turkey"), QStringLiteral("turkey")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F414"), QStringLiteral("chicken"), QStringLiteral("chicken")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F413"), QStringLiteral("rooster"), QStringLiteral("rooster")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F423"), QStringLiteral("hatching_chick"), QStringLiteral("hatching chick")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F424"), QStringLiteral("baby_chick"), QStringLiteral("baby chick")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F425"), QStringLiteral("hatched_chick"), QStringLiteral("front-facing baby chick")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F426"), QStringLiteral("bird"), QStringLiteral("bird")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F427"), QStringLiteral("penguin"), QStringLiteral("penguin")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F54A\U0000FE0F"), QStringLiteral("dove"), QStringLiteral("dove")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F985"), QStringLiteral("eagle"), QStringLiteral("eagle")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F986"), QStringLiteral("duck"), QStringLiteral("duck")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A2"), QStringLiteral("swan"), QStringLiteral("swan")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F989"), QStringLiteral("owl"), QStringLiteral("owl")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A4"), QStringLiteral("dodo"), QStringLiteral("dodo")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB6"), QStringLiteral("feather"), QStringLiteral("feather")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A9"), QStringLiteral("flamingo"), QStringLiteral("flamingo")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F99A"), QStringLiteral("peacock"), QStringLiteral("peacock")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F99C"), QStringLiteral("parrot"), QStringLiteral("parrot")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F438"), QStringLiteral("frog"), QStringLiteral("frog")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F40A"), QStringLiteral("crocodile"), QStringLiteral("crocodile")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F422"), QStringLiteral("turtle"), QStringLiteral("turtle")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F98E"), QStringLiteral("lizard"), QStringLiteral("lizard")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F40D"), QStringLiteral("snake"), QStringLiteral("snake")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F432"), QStringLiteral("dragon_face"), QStringLiteral("dragon face")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F409"), QStringLiteral("dragon"), QStringLiteral("dragon")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F995"), QStringLiteral("sauropod"), QStringLiteral("sauropod")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F996"), QStringLiteral("t_rex"), QStringLiteral("T-Rex")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F433"), QStringLiteral("whale"), QStringLiteral("spouting whale")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F40B"), QStringLiteral("whale2"), QStringLiteral("whale")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F42C"), QStringLiteral("dolphin"), QStringLiteral("dolphin")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9AD"), QStringLiteral("seal"), QStringLiteral("seal")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F41F"), QStringLiteral("fish"), QStringLiteral("fish")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F420"), QStringLiteral("tropical_fish"), QStringLiteral("tropical fish")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F421"), QStringLiteral("blowfish"), QStringLiteral("blowfish")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F988"), QStringLiteral("shark"), QStringLiteral("shark")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F419"), QStringLiteral("octopus"), QStringLiteral("octopus")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F41A"), QStringLiteral("shell"), QStringLiteral("spiral shell")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB8"), QStringLiteral("coral"), QStringLiteral("coral")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F40C"), QStringLiteral("snail"), QStringLiteral("snail")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F98B"), QStringLiteral("butterfly"), QStringLiteral("butterfly")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F41B"), QStringLiteral("bug"), QStringLiteral("bug")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F41C"), QStringLiteral("ant"), QStringLiteral("ant")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F41D"), QStringLiteral("bee"), QStringLiteral("honeybee")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB2"), QStringLiteral("beetle"), QStringLiteral("beetle")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F41E"), QStringLiteral("beetle"), QStringLiteral("lady beetle")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F997"), QStringLiteral("cricket"), QStringLiteral("cricket")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB3"), QStringLiteral("cockroach"), QStringLiteral("cockroach")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F577\U0000FE0F"), QStringLiteral("spider"), QStringLiteral("spider")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F578\U0000FE0F"), QStringLiteral("spider web"), QStringLiteral("spider web")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F982"), QStringLiteral("scorpion"), QStringLiteral("scorpion")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F99F"), QStringLiteral("mosquito"), QStringLiteral("mosquito")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB0"), QStringLiteral("fly"), QStringLiteral("fly")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB1"), QStringLiteral("worm"), QStringLiteral("worm")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9A0"), QStringLiteral("microbe"), QStringLiteral("microbe")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F490"), QStringLiteral("bouquet"), QStringLiteral("bouquet")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F338"), QStringLiteral("cherry_blossom"), QStringLiteral("cherry blossom")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AE"), QStringLiteral("white_flower"), QStringLiteral("white flower")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB7"), QStringLiteral("lotus"), QStringLiteral("lotus")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F5\U0000FE0F"), QStringLiteral("rosette"), QStringLiteral("rosette")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F339"), QStringLiteral("rose"), QStringLiteral("rose")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F940"), QStringLiteral("wilted_rose"), QStringLiteral("wilted flower")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F33A"), QStringLiteral("hibiscus"), QStringLiteral("hibiscus")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F33B"), QStringLiteral("sunflower"), QStringLiteral("sunflower")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F33C"), QStringLiteral("blossom"), QStringLiteral("blossom")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F337"), QStringLiteral("tulip"), QStringLiteral("tulip")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F331"), QStringLiteral("seedling"), QStringLiteral("seedling")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB4"), QStringLiteral("potted plant"), QStringLiteral("potted plant")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F332"), QStringLiteral("evergreen_tree"), QStringLiteral("evergreen tree")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F333"), QStringLiteral("deciduous_tree"), QStringLiteral("deciduous tree")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F334"), QStringLiteral("palm_tree"), QStringLiteral("palm tree")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F335"), QStringLiteral("cactus"), QStringLiteral("cactus")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F33E"), QStringLiteral("ear_of_rice"), QStringLiteral("sheaf of rice")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F33F"), QStringLiteral("herb"), QStringLiteral("herb")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002618\U0000FE0F"), QStringLiteral("shamrock"), QStringLiteral("shamrock")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F340"), QStringLiteral("four_leaf_clover"), QStringLiteral("four leaf clover")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F341"), QStringLiteral("maple_leaf"), QStringLiteral("maple leaf")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F342"), QStringLiteral("fallen_leaf"), QStringLiteral("fallen leaf")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F343"), QStringLiteral("leaves"), QStringLiteral("leaf fluttering in wind")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB9"), QStringLiteral("empty nest"), QStringLiteral("empty nest")})); -_emojis[Nature].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FABA"), QStringLiteral("nest with eggs"), QStringLiteral("nest with eggs")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F347"), QStringLiteral("grapes"), QStringLiteral("grapes")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F348"), QStringLiteral("melon"), QStringLiteral("melon")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F349"), QStringLiteral("watermelon"), QStringLiteral("watermelon")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F34A"), QStringLiteral("tangerine"), QStringLiteral("tangerine")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F34B"), QStringLiteral("lemon"), QStringLiteral("lemon")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F34C"), QStringLiteral("banana"), QStringLiteral("banana")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F34D"), QStringLiteral("pineapple"), QStringLiteral("pineapple")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F96D"), QStringLiteral("mango"), QStringLiteral("mango")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F34E"), QStringLiteral("apple"), QStringLiteral("red apple")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F34F"), QStringLiteral("green_apple"), QStringLiteral("green apple")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F350"), QStringLiteral("pear"), QStringLiteral("pear")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F351"), QStringLiteral("peach"), QStringLiteral("peach")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F352"), QStringLiteral("cherries"), QStringLiteral("cherries")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F353"), QStringLiteral("strawberry"), QStringLiteral("strawberry")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD0"), QStringLiteral("blueberries"), QStringLiteral("blueberries")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F95D"), QStringLiteral("kiwi"), QStringLiteral("kiwi fruit")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F345"), QStringLiteral("tomato"), QStringLiteral("tomato")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD2"), QStringLiteral("olive"), QStringLiteral("olive")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F965"), QStringLiteral("coconut"), QStringLiteral("coconut")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F951"), QStringLiteral("avocado"), QStringLiteral("avocado")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F346"), QStringLiteral("eggplant"), QStringLiteral("eggplant")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F954"), QStringLiteral("potato"), QStringLiteral("potato")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F955"), QStringLiteral("carrot"), QStringLiteral("carrot")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F33D"), QStringLiteral("corn"), QStringLiteral("ear of corn")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F336\U0000FE0F"), QStringLiteral("hot pepper"), QStringLiteral("hot pepper")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD1"), QStringLiteral("bell pepper"), QStringLiteral("bell pepper")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F952"), QStringLiteral("cucumber"), QStringLiteral("cucumber")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F96C"), QStringLiteral("leafy_green"), QStringLiteral("leafy green")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F966"), QStringLiteral("broccoli"), QStringLiteral("broccoli")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C4"), QStringLiteral("garlic"), QStringLiteral("garlic")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C5"), QStringLiteral("onion"), QStringLiteral("onion")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F344"), QStringLiteral("mushroom"), QStringLiteral("mushroom")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F95C"), QStringLiteral("peanuts"), QStringLiteral("peanuts")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD8"), QStringLiteral("beans"), QStringLiteral("beans")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F330"), QStringLiteral("chestnut"), QStringLiteral("chestnut")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F35E"), QStringLiteral("bread"), QStringLiteral("bread")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F950"), QStringLiteral("croissant"), QStringLiteral("croissant")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F956"), QStringLiteral("french_bread"), QStringLiteral("baguette bread")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD3"), QStringLiteral("flatbread"), QStringLiteral("flatbread")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F968"), QStringLiteral("pretzel"), QStringLiteral("pretzel")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F96F"), QStringLiteral("bagel"), QStringLiteral("bagel")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F95E"), QStringLiteral("pancakes"), QStringLiteral("pancakes")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C7"), QStringLiteral("waffle"), QStringLiteral("waffle")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C0"), QStringLiteral("cheese"), QStringLiteral("cheese wedge")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F356"), QStringLiteral("meat_on_bone"), QStringLiteral("meat on bone")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F357"), QStringLiteral("poultry_leg"), QStringLiteral("poultry leg")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F969"), QStringLiteral("cut_of_meat"), QStringLiteral("cut of meat")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F953"), QStringLiteral("bacon"), QStringLiteral("bacon")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F354"), QStringLiteral("hamburger"), QStringLiteral("hamburger")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F35F"), QStringLiteral("fries"), QStringLiteral("french fries")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F355"), QStringLiteral("pizza"), QStringLiteral("pizza")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F32D"), QStringLiteral("hotdog"), QStringLiteral("hot dog")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F96A"), QStringLiteral("sandwich"), QStringLiteral("sandwich")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F32E"), QStringLiteral("taco"), QStringLiteral("taco")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F32F"), QStringLiteral("burrito"), QStringLiteral("burrito")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD4"), QStringLiteral("tamale"), QStringLiteral("tamale")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F959"), QStringLiteral("stuffed_flatbread"), QStringLiteral("stuffed flatbread")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C6"), QStringLiteral("falafel"), QStringLiteral("falafel")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F95A"), QStringLiteral("egg"), QStringLiteral("egg")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F373"), QStringLiteral("cooking"), QStringLiteral("cooking")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F958"), QStringLiteral("shallow_pan_of_food"), QStringLiteral("shallow pan of food")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F372"), QStringLiteral("stew"), QStringLiteral("pot of food")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD5"), QStringLiteral("fondue"), QStringLiteral("fondue")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F963"), QStringLiteral("bowl_with_spoon"), QStringLiteral("bowl with spoon")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F957"), QStringLiteral("salad"), QStringLiteral("green salad")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F37F"), QStringLiteral("popcorn"), QStringLiteral("popcorn")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C8"), QStringLiteral("butter"), QStringLiteral("butter")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C2"), QStringLiteral("salt"), QStringLiteral("salt")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F96B"), QStringLiteral("canned_food"), QStringLiteral("canned food")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F371"), QStringLiteral("bento"), QStringLiteral("bento box")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F358"), QStringLiteral("rice_cracker"), QStringLiteral("rice cracker")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F359"), QStringLiteral("rice_ball"), QStringLiteral("rice ball")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F35A"), QStringLiteral("rice"), QStringLiteral("cooked rice")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F35B"), QStringLiteral("curry"), QStringLiteral("curry rice")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F35C"), QStringLiteral("ramen"), QStringLiteral("steaming bowl")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F35D"), QStringLiteral("spaghetti"), QStringLiteral("spaghetti")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F360"), QStringLiteral("sweet_potato"), QStringLiteral("roasted sweet potato")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F362"), QStringLiteral("oden"), QStringLiteral("oden")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F363"), QStringLiteral("sushi"), QStringLiteral("sushi")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F364"), QStringLiteral("fried_shrimp"), QStringLiteral("fried shrimp")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F365"), QStringLiteral("fish_cake"), QStringLiteral("fish cake with swirl")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F96E"), QStringLiteral("moon_cake"), QStringLiteral("moon cake")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F361"), QStringLiteral("dango"), QStringLiteral("dango")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F95F"), QStringLiteral("dumpling"), QStringLiteral("dumpling")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F960"), QStringLiteral("fortune_cookie"), QStringLiteral("fortune cookie")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F961"), QStringLiteral("takeout_box"), QStringLiteral("takeout box")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F980"), QStringLiteral("crab"), QStringLiteral("crab")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F99E"), QStringLiteral("lobster"), QStringLiteral("lobster")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F990"), QStringLiteral("shrimp"), QStringLiteral("shrimp")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F991"), QStringLiteral("squid"), QStringLiteral("squid")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9AA"), QStringLiteral("oyster"), QStringLiteral("oyster")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F366"), QStringLiteral("icecream"), QStringLiteral("soft ice cream")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F367"), QStringLiteral("shaved_ice"), QStringLiteral("shaved ice")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F368"), QStringLiteral("ice_cream"), QStringLiteral("ice cream")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F369"), QStringLiteral("doughnut"), QStringLiteral("doughnut")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F36A"), QStringLiteral("cookie"), QStringLiteral("cookie")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F382"), QStringLiteral("birthday"), QStringLiteral("birthday cake")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F370"), QStringLiteral("cake"), QStringLiteral("shortcake")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C1"), QStringLiteral("cupcake"), QStringLiteral("cupcake")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F967"), QStringLiteral("pie"), QStringLiteral("pie")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F36B"), QStringLiteral("chocolate_bar"), QStringLiteral("chocolate bar")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F36C"), QStringLiteral("candy"), QStringLiteral("candy")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F36D"), QStringLiteral("lollipop"), QStringLiteral("lollipop")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F36E"), QStringLiteral("custard"), QStringLiteral("custard")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F36F"), QStringLiteral("honey_pot"), QStringLiteral("honey pot")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F37C"), QStringLiteral("baby_bottle"), QStringLiteral("baby bottle")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F95B"), QStringLiteral("milk"), QStringLiteral("glass of milk")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002615"), QStringLiteral("coffee"), QStringLiteral("hot beverage")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD6"), QStringLiteral("teapot"), QStringLiteral("teapot")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F375"), QStringLiteral("tea"), QStringLiteral("teacup without handle")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F376"), QStringLiteral("sake"), QStringLiteral("sake")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F37E"), QStringLiteral("champagne"), QStringLiteral("bottle with popping cork")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F377"), QStringLiteral("wine_glass"), QStringLiteral("wine glass")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F378"), QStringLiteral("cocktail"), QStringLiteral("cocktail glass")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F379"), QStringLiteral("tropical_drink"), QStringLiteral("tropical drink")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F37A"), QStringLiteral("beer"), QStringLiteral("beer mug")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F37B"), QStringLiteral("beers"), QStringLiteral("clinking beer mugs")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F942"), QStringLiteral("champagne_glass"), QStringLiteral("clinking glasses")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F943"), QStringLiteral("tumbler_glass"), QStringLiteral("tumbler glass")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD7"), QStringLiteral("pouring liquid"), QStringLiteral("pouring liquid")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F964"), QStringLiteral("cup_with_straw"), QStringLiteral("cup with straw")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CB"), QStringLiteral("bubble tea"), QStringLiteral("bubble tea")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C3"), QStringLiteral("beverage box"), QStringLiteral("beverage box")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9C9"), QStringLiteral("mate"), QStringLiteral("mate")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CA"), QStringLiteral("ice"), QStringLiteral("ice")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F962"), QStringLiteral("chopsticks"), QStringLiteral("chopsticks")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F37D\U0000FE0F"), QStringLiteral("fork and knife with plate"), QStringLiteral("fork and knife with plate")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F374"), QStringLiteral("fork_and_knife"), QStringLiteral("fork and knife")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F944"), QStringLiteral("spoon"), QStringLiteral("spoon")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F52A"), QStringLiteral("knife"), QStringLiteral("kitchen knife")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAD9"), QStringLiteral("jar"), QStringLiteral("jar")})); -_emojis[Food].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3FA"), QStringLiteral("amphora"), QStringLiteral("amphora")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F30D"), QStringLiteral("earth_africa"), QStringLiteral("globe showing Europe-Africa")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F30E"), QStringLiteral("earth_americas"), QStringLiteral("globe showing Americas")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F30F"), QStringLiteral("earth_asia"), QStringLiteral("globe showing Asia-Australia")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F310"), QStringLiteral("globe_with_meridians"), QStringLiteral("globe with meridians")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5FA\U0000FE0F"), QStringLiteral("world map"), QStringLiteral("world map")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5FE"), QStringLiteral("japan"), QStringLiteral("map of Japan")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9ED"), QStringLiteral("compass"), QStringLiteral("compass")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D4\U0000FE0F"), QStringLiteral("snow-capped mountain"), QStringLiteral("snow-capped mountain")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F0\U0000FE0F"), QStringLiteral("mountain"), QStringLiteral("mountain")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F30B"), QStringLiteral("volcano"), QStringLiteral("volcano")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5FB"), QStringLiteral("mount_fuji"), QStringLiteral("mount fuji")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D5\U0000FE0F"), QStringLiteral("camping"), QStringLiteral("camping")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D6\U0000FE0F"), QStringLiteral("beach with umbrella"), QStringLiteral("beach with umbrella")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3DC\U0000FE0F"), QStringLiteral("desert"), QStringLiteral("desert")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3DD\U0000FE0F"), QStringLiteral("desert island"), QStringLiteral("desert island")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3DE\U0000FE0F"), QStringLiteral("national park"), QStringLiteral("national park")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3DF\U0000FE0F"), QStringLiteral("stadium"), QStringLiteral("stadium")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3DB\U0000FE0F"), QStringLiteral("classical building"), QStringLiteral("classical building")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D7\U0000FE0F"), QStringLiteral("building construction"), QStringLiteral("building construction")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F1"), QStringLiteral("bricks"), QStringLiteral("brick")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA8"), QStringLiteral("rock"), QStringLiteral("rock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAB5"), QStringLiteral("wood"), QStringLiteral("wood")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6D6"), QStringLiteral("hut"), QStringLiteral("hut")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D8\U0000FE0F"), QStringLiteral("houses"), QStringLiteral("houses")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3DA\U0000FE0F"), QStringLiteral("derelict house"), QStringLiteral("derelict house")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E0"), QStringLiteral("house"), QStringLiteral("house")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E1"), QStringLiteral("house_with_garden"), QStringLiteral("house with garden")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E2"), QStringLiteral("office"), QStringLiteral("office building")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E3"), QStringLiteral("post_office"), QStringLiteral("Japanese post office")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E4"), QStringLiteral("european_post_office"), QStringLiteral("post office")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E5"), QStringLiteral("hospital"), QStringLiteral("hospital")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E6"), QStringLiteral("bank"), QStringLiteral("bank")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E8"), QStringLiteral("hotel"), QStringLiteral("hotel")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E9"), QStringLiteral("love_hotel"), QStringLiteral("love hotel")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3EA"), QStringLiteral("convenience_store"), QStringLiteral("convenience store")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3EB"), QStringLiteral("school"), QStringLiteral("school")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3EC"), QStringLiteral("department_store"), QStringLiteral("department store")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3ED"), QStringLiteral("factory"), QStringLiteral("factory")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3EF"), QStringLiteral("japanese_castle"), QStringLiteral("Japanese castle")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F0"), QStringLiteral("european_castle"), QStringLiteral("castle")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F492"), QStringLiteral("wedding"), QStringLiteral("wedding")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5FC"), QStringLiteral("tokyo_tower"), QStringLiteral("Tokyo tower")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5FD"), QStringLiteral("statue_of_liberty"), QStringLiteral("Statue of Liberty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026EA"), QStringLiteral("church"), QStringLiteral("church")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F54C"), QStringLiteral("mosque"), QStringLiteral("mosque")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6D5"), QStringLiteral("hindu temple"), QStringLiteral("hindu temple")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F54D"), QStringLiteral("synagogue"), QStringLiteral("synagogue")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026E9\U0000FE0F"), QStringLiteral("shinto shrine"), QStringLiteral("shinto shrine")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F54B"), QStringLiteral("kaaba"), QStringLiteral("kaaba")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F2"), QStringLiteral("fountain"), QStringLiteral("fountain")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026FA"), QStringLiteral("tent"), QStringLiteral("tent")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F301"), QStringLiteral("foggy"), QStringLiteral("foggy")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F303"), QStringLiteral("night_with_stars"), QStringLiteral("night with stars")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D9\U0000FE0F"), QStringLiteral("cityscape"), QStringLiteral("cityscape")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F304"), QStringLiteral("sunrise_over_mountains"), QStringLiteral("sunrise over mountains")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F305"), QStringLiteral("sunrise"), QStringLiteral("sunrise")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F306"), QStringLiteral("city_dusk"), QStringLiteral("cityscape at dusk")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F307"), QStringLiteral("city_sunset"), QStringLiteral("sunset")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F309"), QStringLiteral("bridge_at_night"), QStringLiteral("bridge at night")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002668\U0000FE0F"), QStringLiteral("hot springs"), QStringLiteral("hot springs")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A0"), QStringLiteral("carousel_horse"), QStringLiteral("carousel horse")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6DD"), QStringLiteral("playground slide"), QStringLiteral("playground slide")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A1"), QStringLiteral("ferris_wheel"), QStringLiteral("ferris wheel")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A2"), QStringLiteral("roller_coaster"), QStringLiteral("roller coaster")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F488"), QStringLiteral("barber"), QStringLiteral("barber pole")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3AA"), QStringLiteral("circus_tent"), QStringLiteral("circus tent")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F682"), QStringLiteral("steam_locomotive"), QStringLiteral("locomotive")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F683"), QStringLiteral("railway_car"), QStringLiteral("railway car")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F684"), QStringLiteral("bullettrain_side"), QStringLiteral("high-speed train")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F685"), QStringLiteral("bullettrain_front"), QStringLiteral("bullet train")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F686"), QStringLiteral("train2"), QStringLiteral("train")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F687"), QStringLiteral("metro"), QStringLiteral("metro")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F688"), QStringLiteral("light_rail"), QStringLiteral("light rail")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F689"), QStringLiteral("station"), QStringLiteral("station")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F68A"), QStringLiteral("tram"), QStringLiteral("tram")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F69D"), QStringLiteral("monorail"), QStringLiteral("monorail")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F69E"), QStringLiteral("mountain_railway"), QStringLiteral("mountain railway")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F68B"), QStringLiteral("train"), QStringLiteral("tram car")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F68C"), QStringLiteral("bus"), QStringLiteral("bus")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F68D"), QStringLiteral("oncoming_bus"), QStringLiteral("oncoming bus")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F68E"), QStringLiteral("trolleybus"), QStringLiteral("trolleybus")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F690"), QStringLiteral("minibus"), QStringLiteral("minibus")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F691"), QStringLiteral("ambulance"), QStringLiteral("ambulance")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F692"), QStringLiteral("fire_engine"), QStringLiteral("fire engine")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F693"), QStringLiteral("police_car"), QStringLiteral("police car")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F694"), QStringLiteral("oncoming_police_car"), QStringLiteral("oncoming police car")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F695"), QStringLiteral("taxi"), QStringLiteral("taxi")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F696"), QStringLiteral("oncoming_taxi"), QStringLiteral("oncoming taxi")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F697"), QStringLiteral("red_car"), QStringLiteral("automobile")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F698"), QStringLiteral("oncoming_automobile"), QStringLiteral("oncoming automobile")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F699"), QStringLiteral("blue_car"), QStringLiteral("sport utility vehicle")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6FB"), QStringLiteral("pickup truck"), QStringLiteral("pickup truck")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F69A"), QStringLiteral("truck"), QStringLiteral("delivery truck")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F69B"), QStringLiteral("articulated_lorry"), QStringLiteral("articulated lorry")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F69C"), QStringLiteral("tractor"), QStringLiteral("tractor")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CE\U0000FE0F"), QStringLiteral("racing car"), QStringLiteral("racing car")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CD\U0000FE0F"), QStringLiteral("motorcycle"), QStringLiteral("motorcycle")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F5"), QStringLiteral("motor_scooter"), QStringLiteral("motor scooter")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BD"), QStringLiteral("manual wheelchair"), QStringLiteral("manual wheelchair")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BC"), QStringLiteral("motorized wheelchair"), QStringLiteral("motorized wheelchair")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6FA"), QStringLiteral("auto rickshaw"), QStringLiteral("auto rickshaw")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B2"), QStringLiteral("bike"), QStringLiteral("bicycle")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F4"), QStringLiteral("scooter"), QStringLiteral("kick scooter")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F9"), QStringLiteral("skateboard"), QStringLiteral("skateboard")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6FC"), QStringLiteral("roller skate"), QStringLiteral("roller skate")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F68F"), QStringLiteral("busstop"), QStringLiteral("bus stop")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E3\U0000FE0F"), QStringLiteral("motorway"), QStringLiteral("motorway")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E4\U0000FE0F"), QStringLiteral("railway track"), QStringLiteral("railway track")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E2\U0000FE0F"), QStringLiteral("oil drum"), QStringLiteral("oil drum")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026FD"), QStringLiteral("fuelpump"), QStringLiteral("fuel pump")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6DE"), QStringLiteral("wheel"), QStringLiteral("wheel")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A8"), QStringLiteral("rotating_light"), QStringLiteral("police car light")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A5"), QStringLiteral("traffic_light"), QStringLiteral("horizontal traffic light")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A6"), QStringLiteral("vertical_traffic_light"), QStringLiteral("vertical traffic light")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6D1"), QStringLiteral("octagonal_sign"), QStringLiteral("stop sign")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A7"), QStringLiteral("construction"), QStringLiteral("construction")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002693"), QStringLiteral("anchor"), QStringLiteral("anchor")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6DF"), QStringLiteral("ring buoy"), QStringLiteral("ring buoy")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F5"), QStringLiteral("sailboat"), QStringLiteral("sailboat")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F6"), QStringLiteral("canoe"), QStringLiteral("canoe")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A4"), QStringLiteral("speedboat"), QStringLiteral("speedboat")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F3\U0000FE0F"), QStringLiteral("passenger ship"), QStringLiteral("passenger ship")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F4\U0000FE0F"), QStringLiteral("ferry"), QStringLiteral("ferry")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E5\U0000FE0F"), QStringLiteral("motor boat"), QStringLiteral("motor boat")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A2"), QStringLiteral("ship"), QStringLiteral("ship")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002708\U0000FE0F"), QStringLiteral("airplane"), QStringLiteral("airplane")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E9\U0000FE0F"), QStringLiteral("small airplane"), QStringLiteral("small airplane")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6EB"), QStringLiteral("airplane_departure"), QStringLiteral("airplane departure")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6EC"), QStringLiteral("airplane_arriving"), QStringLiteral("airplane arrival")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA82"), QStringLiteral("parachute"), QStringLiteral("parachute")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4BA"), QStringLiteral("seat"), QStringLiteral("seat")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F681"), QStringLiteral("helicopter"), QStringLiteral("helicopter")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F69F"), QStringLiteral("suspension_railway"), QStringLiteral("suspension railway")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A0"), QStringLiteral("mountain_cableway"), QStringLiteral("mountain cableway")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A1"), QStringLiteral("aerial_tramway"), QStringLiteral("aerial tramway")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F0\U0000FE0F"), QStringLiteral("satellite"), QStringLiteral("satellite")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F680"), QStringLiteral("rocket"), QStringLiteral("rocket")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F8"), QStringLiteral("flying_saucer"), QStringLiteral("flying saucer")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CE\U0000FE0F"), QStringLiteral("bellhop bell"), QStringLiteral("bellhop bell")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F3"), QStringLiteral("luggage"), QStringLiteral("luggage")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000231B"), QStringLiteral("hourglass"), QStringLiteral("hourglass done")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023F3"), QStringLiteral("hourglass_flowing_sand"), QStringLiteral("hourglass not done")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000231A"), QStringLiteral("watch"), QStringLiteral("watch")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023F0"), QStringLiteral("alarm_clock"), QStringLiteral("alarm clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023F1\U0000FE0F"), QStringLiteral("stopwatch"), QStringLiteral("stopwatch")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023F2\U0000FE0F"), QStringLiteral("timer clock"), QStringLiteral("timer clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F570\U0000FE0F"), QStringLiteral("mantelpiece clock"), QStringLiteral("mantelpiece clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F55B"), QStringLiteral("clock12"), QStringLiteral("twelve oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F567"), QStringLiteral("clock1230"), QStringLiteral("twelve-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F550"), QStringLiteral("clock1"), QStringLiteral("one oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F55C"), QStringLiteral("clock130"), QStringLiteral("one-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F551"), QStringLiteral("clock2"), QStringLiteral("two oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F55D"), QStringLiteral("clock230"), QStringLiteral("two-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F552"), QStringLiteral("clock3"), QStringLiteral("three oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F55E"), QStringLiteral("clock330"), QStringLiteral("three-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F553"), QStringLiteral("clock4"), QStringLiteral("four oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F55F"), QStringLiteral("clock430"), QStringLiteral("four-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F554"), QStringLiteral("clock5"), QStringLiteral("five oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F560"), QStringLiteral("clock530"), QStringLiteral("five-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F555"), QStringLiteral("clock6"), QStringLiteral("six oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F561"), QStringLiteral("clock630"), QStringLiteral("six-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F556"), QStringLiteral("clock7"), QStringLiteral("seven oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F562"), QStringLiteral("clock730"), QStringLiteral("seven-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F557"), QStringLiteral("clock8"), QStringLiteral("eight oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F563"), QStringLiteral("clock830"), QStringLiteral("eight-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F558"), QStringLiteral("clock9"), QStringLiteral("nine oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F564"), QStringLiteral("clock930"), QStringLiteral("nine-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F559"), QStringLiteral("clock10"), QStringLiteral("ten oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F565"), QStringLiteral("clock1030"), QStringLiteral("ten-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F55A"), QStringLiteral("clock11"), QStringLiteral("eleven oโ€™clock")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F566"), QStringLiteral("clock1130"), QStringLiteral("eleven-thirty")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F311"), QStringLiteral("new_moon"), QStringLiteral("new moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F312"), QStringLiteral("waxing_crescent_moon"), QStringLiteral("waxing crescent moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F313"), QStringLiteral("first_quarter_moon"), QStringLiteral("first quarter moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F314"), QStringLiteral("waxing_gibbous_moon"), QStringLiteral("waxing gibbous moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F315"), QStringLiteral("full_moon"), QStringLiteral("full moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F316"), QStringLiteral("waning_gibbous_moon"), QStringLiteral("waning gibbous moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F317"), QStringLiteral("last_quarter_moon"), QStringLiteral("last quarter moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F318"), QStringLiteral("waning_crescent_moon"), QStringLiteral("waning crescent moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F319"), QStringLiteral("crescent_moon"), QStringLiteral("crescent moon")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F31A"), QStringLiteral("new_moon_with_face"), QStringLiteral("new moon face")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F31B"), QStringLiteral("first_quarter_moon_with_face"), QStringLiteral("first quarter moon face")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F31C"), QStringLiteral("last_quarter_moon_with_face"), QStringLiteral("last quarter moon face")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F321\U0000FE0F"), QStringLiteral("thermometer"), QStringLiteral("thermometer")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002600\U0000FE0F"), QStringLiteral("sun"), QStringLiteral("sun")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F31D"), QStringLiteral("full_moon_with_face"), QStringLiteral("full moon face")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F31E"), QStringLiteral("sun_with_face"), QStringLiteral("sun with face")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA90"), QStringLiteral("ringed planet"), QStringLiteral("ringed planet")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B50"), QStringLiteral("star"), QStringLiteral("star")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F31F"), QStringLiteral("star2"), QStringLiteral("glowing star")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F320"), QStringLiteral("stars"), QStringLiteral("shooting star")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F30C"), QStringLiteral("milky_way"), QStringLiteral("milky way")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002601\U0000FE0F"), QStringLiteral("cloud"), QStringLiteral("cloud")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026C5"), QStringLiteral("partly_sunny"), QStringLiteral("sun behind cloud")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026C8\U0000FE0F"), QStringLiteral("cloud with lightning and rain"), QStringLiteral("cloud with lightning and rain")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F324\U0000FE0F"), QStringLiteral("sun behind small cloud"), QStringLiteral("sun behind small cloud")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F325\U0000FE0F"), QStringLiteral("sun behind large cloud"), QStringLiteral("sun behind large cloud")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F326\U0000FE0F"), QStringLiteral("sun behind rain cloud"), QStringLiteral("sun behind rain cloud")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F327\U0000FE0F"), QStringLiteral("cloud with rain"), QStringLiteral("cloud with rain")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F328\U0000FE0F"), QStringLiteral("cloud with snow"), QStringLiteral("cloud with snow")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F329\U0000FE0F"), QStringLiteral("cloud with lightning"), QStringLiteral("cloud with lightning")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F32A\U0000FE0F"), QStringLiteral("tornado"), QStringLiteral("tornado")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F32B\U0000FE0F"), QStringLiteral("fog"), QStringLiteral("fog")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F32C\U0000FE0F"), QStringLiteral("wind face"), QStringLiteral("wind face")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F300"), QStringLiteral("cyclone"), QStringLiteral("cyclone")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F308"), QStringLiteral("rainbow"), QStringLiteral("rainbow")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F302"), QStringLiteral("closed_umbrella"), QStringLiteral("closed umbrella")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002602\U0000FE0F"), QStringLiteral("umbrella"), QStringLiteral("umbrella")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002614"), QStringLiteral("umbrella"), QStringLiteral("umbrella with rain drops")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F1\U0000FE0F"), QStringLiteral("umbrella on ground"), QStringLiteral("umbrella on ground")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026A1"), QStringLiteral("zap"), QStringLiteral("high voltage")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002744\U0000FE0F"), QStringLiteral("snowflake"), QStringLiteral("snowflake")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002603\U0000FE0F"), QStringLiteral("snowman"), QStringLiteral("snowman")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026C4"), QStringLiteral("snowman"), QStringLiteral("snowman without snow")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002604\U0000FE0F"), QStringLiteral("comet"), QStringLiteral("comet")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F525"), QStringLiteral("fire"), QStringLiteral("fire")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A7"), QStringLiteral("droplet"), QStringLiteral("droplet")})); -_emojis[Travel].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F30A"), QStringLiteral("ocean"), QStringLiteral("water wave")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F383"), QStringLiteral("jack_o_lantern"), QStringLiteral("jack-o-lantern")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F384"), QStringLiteral("christmas_tree"), QStringLiteral("Christmas tree")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F386"), QStringLiteral("fireworks"), QStringLiteral("fireworks")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F387"), QStringLiteral("sparkler"), QStringLiteral("sparkler")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E8"), QStringLiteral("firecracker"), QStringLiteral("firecracker")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002728"), QStringLiteral("sparkles"), QStringLiteral("sparkles")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F388"), QStringLiteral("balloon"), QStringLiteral("balloon")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F389"), QStringLiteral("tada"), QStringLiteral("party popper")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F38A"), QStringLiteral("confetti_ball"), QStringLiteral("confetti ball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F38B"), QStringLiteral("tanabata_tree"), QStringLiteral("tanabata tree")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F38D"), QStringLiteral("bamboo"), QStringLiteral("pine decoration")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F38E"), QStringLiteral("dolls"), QStringLiteral("Japanese dolls")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F38F"), QStringLiteral("flags"), QStringLiteral("carp streamer")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F390"), QStringLiteral("wind_chime"), QStringLiteral("wind chime")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F391"), QStringLiteral("rice_scene"), QStringLiteral("moon viewing ceremony")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E7"), QStringLiteral("red_envelope"), QStringLiteral("red envelope")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F380"), QStringLiteral("ribbon"), QStringLiteral("ribbon")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F381"), QStringLiteral("gift"), QStringLiteral("wrapped gift")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F397\U0000FE0F"), QStringLiteral("reminder ribbon"), QStringLiteral("reminder ribbon")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F39F\U0000FE0F"), QStringLiteral("admission tickets"), QStringLiteral("admission tickets")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3AB"), QStringLiteral("ticket"), QStringLiteral("ticket")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F396\U0000FE0F"), QStringLiteral("military medal"), QStringLiteral("military medal")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C6"), QStringLiteral("trophy"), QStringLiteral("trophy")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C5"), QStringLiteral("medal"), QStringLiteral("sports medal")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F947"), QStringLiteral("first_place"), QStringLiteral("1st place medal")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F948"), QStringLiteral("second_place"), QStringLiteral("2nd place medal")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F949"), QStringLiteral("third_place"), QStringLiteral("3rd place medal")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026BD"), QStringLiteral("soccer"), QStringLiteral("soccer ball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026BE"), QStringLiteral("baseball"), QStringLiteral("baseball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F94E"), QStringLiteral("softball"), QStringLiteral("softball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C0"), QStringLiteral("basketball"), QStringLiteral("basketball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D0"), QStringLiteral("volleyball"), QStringLiteral("volleyball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C8"), QStringLiteral("football"), QStringLiteral("american football")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C9"), QStringLiteral("rugby_football"), QStringLiteral("rugby football")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3BE"), QStringLiteral("tennis"), QStringLiteral("tennis")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F94F"), QStringLiteral("flying_disc"), QStringLiteral("flying disc")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B3"), QStringLiteral("bowling"), QStringLiteral("bowling")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CF"), QStringLiteral("cricket game"), QStringLiteral("cricket game")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D1"), QStringLiteral("field_hockey"), QStringLiteral("field hockey")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D2"), QStringLiteral("hockey"), QStringLiteral("ice hockey")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F94D"), QStringLiteral("lacrosse"), QStringLiteral("lacrosse")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3D3"), QStringLiteral("ping_pong"), QStringLiteral("ping pong")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F8"), QStringLiteral("badminton"), QStringLiteral("badminton")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F94A"), QStringLiteral("boxing_glove"), QStringLiteral("boxing glove")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F94B"), QStringLiteral("martial_arts_uniform"), QStringLiteral("martial arts uniform")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F945"), QStringLiteral("goal"), QStringLiteral("goal net")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F3"), QStringLiteral("golf"), QStringLiteral("flag in hole")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F8\U0000FE0F"), QStringLiteral("ice skate"), QStringLiteral("ice skate")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A3"), QStringLiteral("fishing_pole_and_fish"), QStringLiteral("fishing pole")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93F"), QStringLiteral("diving mask"), QStringLiteral("diving mask")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3BD"), QStringLiteral("running_shirt_with_sash"), QStringLiteral("running shirt")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3BF"), QStringLiteral("ski"), QStringLiteral("skis")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6F7"), QStringLiteral("sled"), QStringLiteral("sled")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F94C"), QStringLiteral("curling_stone"), QStringLiteral("curling stone")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3AF"), QStringLiteral("dart"), QStringLiteral("bullseye")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA80"), QStringLiteral("yo-yo"), QStringLiteral("yo-yo")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA81"), QStringLiteral("kite"), QStringLiteral("kite")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B1"), QStringLiteral("8ball"), QStringLiteral("pool 8 ball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F52E"), QStringLiteral("crystal_ball"), QStringLiteral("crystal ball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA84"), QStringLiteral("magic wand"), QStringLiteral("magic wand")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9FF"), QStringLiteral("nazar_amulet"), QStringLiteral("nazar amulet")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAAC"), QStringLiteral("hamsa"), QStringLiteral("hamsa")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3AE"), QStringLiteral("video_game"), QStringLiteral("video game")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F579\U0000FE0F"), QStringLiteral("joystick"), QStringLiteral("joystick")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B0"), QStringLiteral("slot_machine"), QStringLiteral("slot machine")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B2"), QStringLiteral("game_die"), QStringLiteral("game die")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E9"), QStringLiteral("jigsaw"), QStringLiteral("puzzle piece")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F8"), QStringLiteral("teddy_bear"), QStringLiteral("teddy bear")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA85"), QStringLiteral("piรฑata"), QStringLiteral("piรฑata")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA9"), QStringLiteral("mirror ball"), QStringLiteral("mirror ball")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA86"), QStringLiteral("nesting dolls"), QStringLiteral("nesting dolls")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002660\U0000FE0F"), QStringLiteral("spade suit"), QStringLiteral("spade suit")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002665\U0000FE0F"), QStringLiteral("heart suit"), QStringLiteral("heart suit")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002666\U0000FE0F"), QStringLiteral("diamond suit"), QStringLiteral("diamond suit")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002663\U0000FE0F"), QStringLiteral("club suit"), QStringLiteral("club suit")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000265F\U0000FE0F"), QStringLiteral("chess pawn"), QStringLiteral("chess pawn")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F0CF"), QStringLiteral("black_joker"), QStringLiteral("joker")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F004"), QStringLiteral("mahjong"), QStringLiteral("mahjong red dragon")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B4"), QStringLiteral("flower_playing_cards"), QStringLiteral("flower playing cards")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3AD"), QStringLiteral("performing_arts"), QStringLiteral("performing arts")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5BC\U0000FE0F"), QStringLiteral("framed picture"), QStringLiteral("framed picture")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A8"), QStringLiteral("art"), QStringLiteral("artist palette")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F5"), QStringLiteral("thread"), QStringLiteral("thread")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA1"), QStringLiteral("sewing needle"), QStringLiteral("sewing needle")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F6"), QStringLiteral("yarn"), QStringLiteral("yarn")})); -_emojis[Activities].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA2"), QStringLiteral("knot"), QStringLiteral("knot")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F453"), QStringLiteral("eyeglasses"), QStringLiteral("glasses")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F576\U0000FE0F"), QStringLiteral("sunglasses"), QStringLiteral("sunglasses")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F97D"), QStringLiteral("goggles"), QStringLiteral("goggles")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F97C"), QStringLiteral("lab_coat"), QStringLiteral("lab coat")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BA"), QStringLiteral("safety vest"), QStringLiteral("safety vest")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F454"), QStringLiteral("necktie"), QStringLiteral("necktie")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F455"), QStringLiteral("shirt"), QStringLiteral("t-shirt")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F456"), QStringLiteral("jeans"), QStringLiteral("jeans")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E3"), QStringLiteral("scarf"), QStringLiteral("scarf")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E4"), QStringLiteral("gloves"), QStringLiteral("gloves")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E5"), QStringLiteral("coat"), QStringLiteral("coat")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E6"), QStringLiteral("socks"), QStringLiteral("socks")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F457"), QStringLiteral("dress"), QStringLiteral("dress")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F458"), QStringLiteral("kimono"), QStringLiteral("kimono")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F97B"), QStringLiteral("sari"), QStringLiteral("sari")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA71"), QStringLiteral("one-piece swimsuit"), QStringLiteral("one-piece swimsuit")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA72"), QStringLiteral("briefs"), QStringLiteral("briefs")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA73"), QStringLiteral("shorts"), QStringLiteral("shorts")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F459"), QStringLiteral("bikini"), QStringLiteral("bikini")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F45A"), QStringLiteral("womans_clothes"), QStringLiteral("womanโ€™s clothes")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F45B"), QStringLiteral("purse"), QStringLiteral("purse")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F45C"), QStringLiteral("handbag"), QStringLiteral("handbag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F45D"), QStringLiteral("pouch"), QStringLiteral("clutch bag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CD\U0000FE0F"), QStringLiteral("shopping bags"), QStringLiteral("shopping bags")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F392"), QStringLiteral("school_satchel"), QStringLiteral("backpack")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA74"), QStringLiteral("thong sandal"), QStringLiteral("thong sandal")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F45E"), QStringLiteral("mans_shoe"), QStringLiteral("manโ€™s shoe")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F45F"), QStringLiteral("athletic_shoe"), QStringLiteral("running shoe")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F97E"), QStringLiteral("hiking_boot"), QStringLiteral("hiking boot")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F97F"), QStringLiteral("womans_flat_shoe"), QStringLiteral("flat shoe")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F460"), QStringLiteral("high_heel"), QStringLiteral("high-heeled shoe")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F461"), QStringLiteral("sandal"), QStringLiteral("womanโ€™s sandal")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA70"), QStringLiteral("ballet shoes"), QStringLiteral("ballet shoes")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F462"), QStringLiteral("boot"), QStringLiteral("womanโ€™s boot")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F451"), QStringLiteral("crown"), QStringLiteral("crown")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F452"), QStringLiteral("womans_hat"), QStringLiteral("womanโ€™s hat")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A9"), QStringLiteral("tophat"), QStringLiteral("top hat")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F393"), QStringLiteral("mortar_board"), QStringLiteral("graduation cap")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9E2"), QStringLiteral("billed_cap"), QStringLiteral("billed cap")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA96"), QStringLiteral("military helmet"), QStringLiteral("military helmet")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026D1\U0000FE0F"), QStringLiteral("rescue workerโ€™s helmet"), QStringLiteral("rescue workerโ€™s helmet")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4FF"), QStringLiteral("prayer_beads"), QStringLiteral("prayer beads")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F484"), QStringLiteral("lipstick"), QStringLiteral("lipstick")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48D"), QStringLiteral("ring"), QStringLiteral("ring")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48E"), QStringLiteral("gem"), QStringLiteral("gem stone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F507"), QStringLiteral("mute"), QStringLiteral("muted speaker")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F508"), QStringLiteral("speaker"), QStringLiteral("speaker low volume")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F509"), QStringLiteral("sound"), QStringLiteral("speaker medium volume")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F50A"), QStringLiteral("loud_sound"), QStringLiteral("speaker high volume")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E2"), QStringLiteral("loudspeaker"), QStringLiteral("loudspeaker")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E3"), QStringLiteral("mega"), QStringLiteral("megaphone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4EF"), QStringLiteral("postal_horn"), QStringLiteral("postal horn")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F514"), QStringLiteral("bell"), QStringLiteral("bell")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F515"), QStringLiteral("no_bell"), QStringLiteral("bell with slash")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3BC"), QStringLiteral("musical_score"), QStringLiteral("musical score")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B5"), QStringLiteral("musical_note"), QStringLiteral("musical note")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B6"), QStringLiteral("notes"), QStringLiteral("musical notes")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F399\U0000FE0F"), QStringLiteral("studio microphone"), QStringLiteral("studio microphone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F39A\U0000FE0F"), QStringLiteral("level slider"), QStringLiteral("level slider")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F39B\U0000FE0F"), QStringLiteral("control knobs"), QStringLiteral("control knobs")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A4"), QStringLiteral("microphone"), QStringLiteral("microphone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A7"), QStringLiteral("headphones"), QStringLiteral("headphone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4FB"), QStringLiteral("radio"), QStringLiteral("radio")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B7"), QStringLiteral("saxophone"), QStringLiteral("saxophone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA97"), QStringLiteral("accordion"), QStringLiteral("accordion")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B8"), QStringLiteral("guitar"), QStringLiteral("guitar")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3B9"), QStringLiteral("musical_keyboard"), QStringLiteral("musical keyboard")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3BA"), QStringLiteral("trumpet"), QStringLiteral("trumpet")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3BB"), QStringLiteral("violin"), QStringLiteral("violin")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA95"), QStringLiteral("banjo"), QStringLiteral("banjo")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F941"), QStringLiteral("drum"), QStringLiteral("drum")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA98"), QStringLiteral("long drum"), QStringLiteral("long drum")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F1"), QStringLiteral("iphone"), QStringLiteral("mobile phone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F2"), QStringLiteral("calling"), QStringLiteral("mobile phone with arrow")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000260E\U0000FE0F"), QStringLiteral("telephone"), QStringLiteral("telephone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4DE"), QStringLiteral("telephone_receiver"), QStringLiteral("telephone receiver")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4DF"), QStringLiteral("pager"), QStringLiteral("pager")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E0"), QStringLiteral("fax"), QStringLiteral("fax machine")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F50B"), QStringLiteral("battery"), QStringLiteral("battery")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAAB"), QStringLiteral("low battery"), QStringLiteral("low battery")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F50C"), QStringLiteral("electric_plug"), QStringLiteral("electric plug")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4BB"), QStringLiteral("computer"), QStringLiteral("laptop")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5A5\U0000FE0F"), QStringLiteral("desktop computer"), QStringLiteral("desktop computer")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5A8\U0000FE0F"), QStringLiteral("printer"), QStringLiteral("printer")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002328\U0000FE0F"), QStringLiteral("keyboard"), QStringLiteral("keyboard")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5B1\U0000FE0F"), QStringLiteral("computer mouse"), QStringLiteral("computer mouse")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5B2\U0000FE0F"), QStringLiteral("trackball"), QStringLiteral("trackball")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4BD"), QStringLiteral("minidisc"), QStringLiteral("computer disk")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4BE"), QStringLiteral("floppy_disk"), QStringLiteral("floppy disk")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4BF"), QStringLiteral("cd"), QStringLiteral("optical disk")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C0"), QStringLiteral("dvd"), QStringLiteral("dvd")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9EE"), QStringLiteral("abacus"), QStringLiteral("abacus")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A5"), QStringLiteral("movie_camera"), QStringLiteral("movie camera")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F39E\U0000FE0F"), QStringLiteral("film frames"), QStringLiteral("film frames")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4FD\U0000FE0F"), QStringLiteral("film projector"), QStringLiteral("film projector")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3AC"), QStringLiteral("clapper"), QStringLiteral("clapper board")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4FA"), QStringLiteral("tv"), QStringLiteral("television")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F7"), QStringLiteral("camera"), QStringLiteral("camera")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F8"), QStringLiteral("camera_with_flash"), QStringLiteral("camera with flash")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F9"), QStringLiteral("video_camera"), QStringLiteral("video camera")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4FC"), QStringLiteral("vhs"), QStringLiteral("videocassette")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F50D"), QStringLiteral("mag"), QStringLiteral("magnifying glass tilted left")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F50E"), QStringLiteral("mag_right"), QStringLiteral("magnifying glass tilted right")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F56F\U0000FE0F"), QStringLiteral("candle"), QStringLiteral("candle")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A1"), QStringLiteral("bulb"), QStringLiteral("light bulb")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F526"), QStringLiteral("flashlight"), QStringLiteral("flashlight")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3EE"), QStringLiteral("izakaya_lantern"), QStringLiteral("red paper lantern")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA94"), QStringLiteral("diya lamp"), QStringLiteral("diya lamp")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D4"), QStringLiteral("notebook_with_decorative_cover"), QStringLiteral("notebook with decorative cover")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D5"), QStringLiteral("closed_book"), QStringLiteral("closed book")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D6"), QStringLiteral("book"), QStringLiteral("open book")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D7"), QStringLiteral("green_book"), QStringLiteral("green book")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D8"), QStringLiteral("blue_book"), QStringLiteral("blue book")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D9"), QStringLiteral("orange_book"), QStringLiteral("orange book")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4DA"), QStringLiteral("books"), QStringLiteral("books")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D3"), QStringLiteral("notebook"), QStringLiteral("notebook")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D2"), QStringLiteral("ledger"), QStringLiteral("ledger")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C3"), QStringLiteral("page_with_curl"), QStringLiteral("page with curl")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4DC"), QStringLiteral("scroll"), QStringLiteral("scroll")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C4"), QStringLiteral("page_facing_up"), QStringLiteral("page facing up")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F0"), QStringLiteral("newspaper"), QStringLiteral("newspaper")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5DE\U0000FE0F"), QStringLiteral("rolled-up newspaper"), QStringLiteral("rolled-up newspaper")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D1"), QStringLiteral("bookmark_tabs"), QStringLiteral("bookmark tabs")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F516"), QStringLiteral("bookmark"), QStringLiteral("bookmark")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F7\U0000FE0F"), QStringLiteral("label"), QStringLiteral("label")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B0"), QStringLiteral("moneybag"), QStringLiteral("money bag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA99"), QStringLiteral("coin"), QStringLiteral("coin")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B4"), QStringLiteral("yen"), QStringLiteral("yen banknote")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B5"), QStringLiteral("dollar"), QStringLiteral("dollar banknote")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B6"), QStringLiteral("euro"), QStringLiteral("euro banknote")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B7"), QStringLiteral("pound"), QStringLiteral("pound banknote")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B8"), QStringLiteral("money_with_wings"), QStringLiteral("money with wings")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B3"), QStringLiteral("credit_card"), QStringLiteral("credit card")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9FE"), QStringLiteral("receipt"), QStringLiteral("receipt")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B9"), QStringLiteral("chart"), QStringLiteral("chart increasing with yen")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002709\U0000FE0F"), QStringLiteral("envelope"), QStringLiteral("envelope")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E7"), QStringLiteral("e-mail"), QStringLiteral("e-mail")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E8"), QStringLiteral("incoming_envelope"), QStringLiteral("incoming envelope")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E9"), QStringLiteral("envelope_with_arrow"), QStringLiteral("envelope with arrow")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E4"), QStringLiteral("outbox_tray"), QStringLiteral("outbox tray")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E5"), QStringLiteral("inbox_tray"), QStringLiteral("inbox tray")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E6"), QStringLiteral("package"), QStringLiteral("package")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4EB"), QStringLiteral("mailbox"), QStringLiteral("closed mailbox with raised flag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4EA"), QStringLiteral("mailbox_closed"), QStringLiteral("closed mailbox with lowered flag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4EC"), QStringLiteral("mailbox_with_mail"), QStringLiteral("open mailbox with raised flag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4ED"), QStringLiteral("mailbox_with_no_mail"), QStringLiteral("open mailbox with lowered flag")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4EE"), QStringLiteral("postbox"), QStringLiteral("postbox")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5F3\U0000FE0F"), QStringLiteral("ballot box with ballot"), QStringLiteral("ballot box with ballot")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270F\U0000FE0F"), QStringLiteral("pencil"), QStringLiteral("pencil")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002712\U0000FE0F"), QStringLiteral("black nib"), QStringLiteral("black nib")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F58B\U0000FE0F"), QStringLiteral("fountain pen"), QStringLiteral("fountain pen")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F58A\U0000FE0F"), QStringLiteral("pen"), QStringLiteral("pen")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F58C\U0000FE0F"), QStringLiteral("paintbrush"), QStringLiteral("paintbrush")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F58D\U0000FE0F"), QStringLiteral("crayon"), QStringLiteral("crayon")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4DD"), QStringLiteral("pencil"), QStringLiteral("memo")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4BC"), QStringLiteral("briefcase"), QStringLiteral("briefcase")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C1"), QStringLiteral("file_folder"), QStringLiteral("file folder")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C2"), QStringLiteral("open_file_folder"), QStringLiteral("open file folder")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5C2\U0000FE0F"), QStringLiteral("card index dividers"), QStringLiteral("card index dividers")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C5"), QStringLiteral("date"), QStringLiteral("calendar")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C6"), QStringLiteral("calendar"), QStringLiteral("tear-off calendar")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5D2\U0000FE0F"), QStringLiteral("spiral notepad"), QStringLiteral("spiral notepad")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5D3\U0000FE0F"), QStringLiteral("spiral calendar"), QStringLiteral("spiral calendar")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C7"), QStringLiteral("card_index"), QStringLiteral("card index")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C8"), QStringLiteral("chart_with_upwards_trend"), QStringLiteral("chart increasing")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4C9"), QStringLiteral("chart_with_downwards_trend"), QStringLiteral("chart decreasing")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4CA"), QStringLiteral("bar_chart"), QStringLiteral("bar chart")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4CB"), QStringLiteral("clipboard"), QStringLiteral("clipboard")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4CC"), QStringLiteral("pushpin"), QStringLiteral("pushpin")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4CD"), QStringLiteral("round_pushpin"), QStringLiteral("round pushpin")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4CE"), QStringLiteral("paperclip"), QStringLiteral("paperclip")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F587\U0000FE0F"), QStringLiteral("linked paperclips"), QStringLiteral("linked paperclips")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4CF"), QStringLiteral("straight_ruler"), QStringLiteral("straight ruler")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4D0"), QStringLiteral("triangular_ruler"), QStringLiteral("triangular ruler")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002702\U0000FE0F"), QStringLiteral("scissors"), QStringLiteral("scissors")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5C3\U0000FE0F"), QStringLiteral("card file box"), QStringLiteral("card file box")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5C4\U0000FE0F"), QStringLiteral("file cabinet"), QStringLiteral("file cabinet")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5D1\U0000FE0F"), QStringLiteral("wastebasket"), QStringLiteral("wastebasket")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F512"), QStringLiteral("lock"), QStringLiteral("locked")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F513"), QStringLiteral("unlock"), QStringLiteral("unlocked")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F50F"), QStringLiteral("lock_with_ink_pen"), QStringLiteral("locked with pen")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F510"), QStringLiteral("closed_lock_with_key"), QStringLiteral("locked with key")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F511"), QStringLiteral("key"), QStringLiteral("key")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5DD\U0000FE0F"), QStringLiteral("old key"), QStringLiteral("old key")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F528"), QStringLiteral("hammer"), QStringLiteral("hammer")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA93"), QStringLiteral("axe"), QStringLiteral("axe")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026CF\U0000FE0F"), QStringLiteral("pick"), QStringLiteral("pick")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002692\U0000FE0F"), QStringLiteral("hammer and pick"), QStringLiteral("hammer and pick")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E0\U0000FE0F"), QStringLiteral("hammer and wrench"), QStringLiteral("hammer and wrench")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5E1\U0000FE0F"), QStringLiteral("dagger"), QStringLiteral("dagger")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002694\U0000FE0F"), QStringLiteral("crossed swords"), QStringLiteral("crossed swords")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F52B"), QStringLiteral("gun"), QStringLiteral("water pistol")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA83"), QStringLiteral("boomerang"), QStringLiteral("boomerang")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F9"), QStringLiteral("bow_and_arrow"), QStringLiteral("bow and arrow")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6E1\U0000FE0F"), QStringLiteral("shield"), QStringLiteral("shield")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA9A"), QStringLiteral("carpentry saw"), QStringLiteral("carpentry saw")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F527"), QStringLiteral("wrench"), QStringLiteral("wrench")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA9B"), QStringLiteral("screwdriver"), QStringLiteral("screwdriver")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F529"), QStringLiteral("nut_and_bolt"), QStringLiteral("nut and bolt")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002699\U0000FE0F"), QStringLiteral("gear"), QStringLiteral("gear")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5DC\U0000FE0F"), QStringLiteral("clamp"), QStringLiteral("clamp")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002696\U0000FE0F"), QStringLiteral("balance scale"), QStringLiteral("balance scale")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9AF"), QStringLiteral("white cane"), QStringLiteral("white cane")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F517"), QStringLiteral("link"), QStringLiteral("link")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026D3\U0000FE0F"), QStringLiteral("chains"), QStringLiteral("chains")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA9D"), QStringLiteral("hook"), QStringLiteral("hook")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F0"), QStringLiteral("toolbox"), QStringLiteral("toolbox")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F2"), QStringLiteral("magnet"), QStringLiteral("magnet")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA9C"), QStringLiteral("ladder"), QStringLiteral("ladder")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002697\U0000FE0F"), QStringLiteral("alembic"), QStringLiteral("alembic")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9EA"), QStringLiteral("test_tube"), QStringLiteral("test tube")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9EB"), QStringLiteral("petri_dish"), QStringLiteral("petri dish")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9EC"), QStringLiteral("dna"), QStringLiteral("dna")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F52C"), QStringLiteral("microscope"), QStringLiteral("microscope")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F52D"), QStringLiteral("telescope"), QStringLiteral("telescope")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4E1"), QStringLiteral("satellite"), QStringLiteral("satellite antenna")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F489"), QStringLiteral("syringe"), QStringLiteral("syringe")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA78"), QStringLiteral("drop of blood"), QStringLiteral("drop of blood")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48A"), QStringLiteral("pill"), QStringLiteral("pill")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA79"), QStringLiteral("adhesive bandage"), QStringLiteral("adhesive bandage")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA7C"), QStringLiteral("crutch"), QStringLiteral("crutch")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA7A"), QStringLiteral("stethoscope"), QStringLiteral("stethoscope")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA7B"), QStringLiteral("x-ray"), QStringLiteral("x-ray")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6AA"), QStringLiteral("door"), QStringLiteral("door")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6D7"), QStringLiteral("elevator"), QStringLiteral("elevator")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA9E"), QStringLiteral("mirror"), QStringLiteral("mirror")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA9F"), QStringLiteral("window"), QStringLiteral("window")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CF\U0000FE0F"), QStringLiteral("bed"), QStringLiteral("bed")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CB\U0000FE0F"), QStringLiteral("couch and lamp"), QStringLiteral("couch and lamp")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA91"), QStringLiteral("chair"), QStringLiteral("chair")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6BD"), QStringLiteral("toilet"), QStringLiteral("toilet")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA0"), QStringLiteral("plunger"), QStringLiteral("plunger")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6BF"), QStringLiteral("shower"), QStringLiteral("shower")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C1"), QStringLiteral("bathtub"), QStringLiteral("bathtub")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA4"), QStringLiteral("mouse trap"), QStringLiteral("mouse trap")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FA92"), QStringLiteral("razor"), QStringLiteral("razor")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F4"), QStringLiteral("squeeze_bottle"), QStringLiteral("lotion bottle")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F7"), QStringLiteral("safety_pin"), QStringLiteral("safety pin")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9F9"), QStringLiteral("broom"), QStringLiteral("broom")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9FA"), QStringLiteral("basket"), QStringLiteral("basket")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9FB"), QStringLiteral("roll_of_paper"), QStringLiteral("roll of paper")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA3"), QStringLiteral("bucket"), QStringLiteral("bucket")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9FC"), QStringLiteral("soap"), QStringLiteral("soap")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAE7"), QStringLiteral("bubbles"), QStringLiteral("bubbles")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA5"), QStringLiteral("toothbrush"), QStringLiteral("toothbrush")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9FD"), QStringLiteral("sponge"), QStringLiteral("sponge")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9EF"), QStringLiteral("fire_extinguisher"), QStringLiteral("fire extinguisher")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6D2"), QStringLiteral("shopping_cart"), QStringLiteral("shopping cart")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6AC"), QStringLiteral("smoking"), QStringLiteral("cigarette")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026B0\U0000FE0F"), QStringLiteral("coffin"), QStringLiteral("coffin")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA6"), QStringLiteral("headstone"), QStringLiteral("headstone")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026B1\U0000FE0F"), QStringLiteral("funeral urn"), QStringLiteral("funeral urn")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F5FF"), QStringLiteral("moyai"), QStringLiteral("moai")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAA7"), QStringLiteral("placard"), QStringLiteral("placard")})); -_emojis[Objects].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAAA"), QStringLiteral("identification card"), QStringLiteral("identification card")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3E7"), QStringLiteral("atm"), QStringLiteral("ATM sign")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6AE"), QStringLiteral("put_litter_in_its_place"), QStringLiteral("litter in bin sign")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B0"), QStringLiteral("potable_water"), QStringLiteral("potable water")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000267F"), QStringLiteral("wheelchair"), QStringLiteral("wheelchair symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B9"), QStringLiteral("mens"), QStringLiteral("menโ€™s room")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6BA"), QStringLiteral("womens"), QStringLiteral("womenโ€™s room")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6BB"), QStringLiteral("restroom"), QStringLiteral("restroom")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6BC"), QStringLiteral("baby_symbol"), QStringLiteral("baby symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6BE"), QStringLiteral("wc"), QStringLiteral("water closet")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C2"), QStringLiteral("passport_control"), QStringLiteral("passport control")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C3"), QStringLiteral("customs"), QStringLiteral("customs")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C4"), QStringLiteral("baggage_claim"), QStringLiteral("baggage claim")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C5"), QStringLiteral("left_luggage"), QStringLiteral("left luggage")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026A0\U0000FE0F"), QStringLiteral("warning"), QStringLiteral("warning")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B8"), QStringLiteral("children_crossing"), QStringLiteral("children crossing")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026D4"), QStringLiteral("no_entry"), QStringLiteral("no entry")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6AB"), QStringLiteral("no_entry_sign"), QStringLiteral("prohibited")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B3"), QStringLiteral("no_bicycles"), QStringLiteral("no bicycles")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6AD"), QStringLiteral("no_smoking"), QStringLiteral("no smoking")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6AF"), QStringLiteral("do_not_litter"), QStringLiteral("no littering")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B1"), QStringLiteral("non-potable_water"), QStringLiteral("non-potable water")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B7"), QStringLiteral("no_pedestrians"), QStringLiteral("no pedestrians")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F5"), QStringLiteral("no_mobile_phones"), QStringLiteral("no mobile phones")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F51E"), QStringLiteral("underage"), QStringLiteral("no one under eighteen")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002622\U0000FE0F"), QStringLiteral("radioactive"), QStringLiteral("radioactive")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002623\U0000FE0F"), QStringLiteral("biohazard"), QStringLiteral("biohazard")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B06\U0000FE0F"), QStringLiteral("up arrow"), QStringLiteral("up arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002197\U0000FE0F"), QStringLiteral("up-right arrow"), QStringLiteral("up-right arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000027A1\U0000FE0F"), QStringLiteral("right arrow"), QStringLiteral("right arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002198\U0000FE0F"), QStringLiteral("down-right arrow"), QStringLiteral("down-right arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B07\U0000FE0F"), QStringLiteral("down arrow"), QStringLiteral("down arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002199\U0000FE0F"), QStringLiteral("down-left arrow"), QStringLiteral("down-left arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B05\U0000FE0F"), QStringLiteral("left arrow"), QStringLiteral("left arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002196\U0000FE0F"), QStringLiteral("up-left arrow"), QStringLiteral("up-left arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002195\U0000FE0F"), QStringLiteral("up-down arrow"), QStringLiteral("up-down arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002194\U0000FE0F"), QStringLiteral("left-right arrow"), QStringLiteral("left-right arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000021A9\U0000FE0F"), QStringLiteral("right arrow curving left"), QStringLiteral("right arrow curving left")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000021AA\U0000FE0F"), QStringLiteral("left arrow curving right"), QStringLiteral("left arrow curving right")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002934\U0000FE0F"), QStringLiteral("right arrow curving up"), QStringLiteral("right arrow curving up")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002935\U0000FE0F"), QStringLiteral("right arrow curving down"), QStringLiteral("right arrow curving down")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F503"), QStringLiteral("arrows_clockwise"), QStringLiteral("clockwise vertical arrows")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F504"), QStringLiteral("arrows_counterclockwise"), QStringLiteral("counterclockwise arrows button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F519"), QStringLiteral("back"), QStringLiteral("BACK arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F51A"), QStringLiteral("end"), QStringLiteral("END arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F51B"), QStringLiteral("on"), QStringLiteral("ON! arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F51C"), QStringLiteral("soon"), QStringLiteral("SOON arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F51D"), QStringLiteral("top"), QStringLiteral("TOP arrow")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6D0"), QStringLiteral("place_of_worship"), QStringLiteral("place of worship")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000269B\U0000FE0F"), QStringLiteral("atom symbol"), QStringLiteral("atom symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F549\U0000FE0F"), QStringLiteral("om"), QStringLiteral("om")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002721\U0000FE0F"), QStringLiteral("star of David"), QStringLiteral("star of David")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002638\U0000FE0F"), QStringLiteral("wheel of dharma"), QStringLiteral("wheel of dharma")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000262F\U0000FE0F"), QStringLiteral("yin yang"), QStringLiteral("yin yang")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000271D\U0000FE0F"), QStringLiteral("latin cross"), QStringLiteral("latin cross")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002626\U0000FE0F"), QStringLiteral("orthodox cross"), QStringLiteral("orthodox cross")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000262A\U0000FE0F"), QStringLiteral("star and crescent"), QStringLiteral("star and crescent")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000262E\U0000FE0F"), QStringLiteral("peace symbol"), QStringLiteral("peace symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F54E"), QStringLiteral("menorah"), QStringLiteral("menorah")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F52F"), QStringLiteral("six_pointed_star"), QStringLiteral("dotted six-pointed star")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002648"), QStringLiteral("aries"), QStringLiteral("Aries")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002649"), QStringLiteral("taurus"), QStringLiteral("Taurus")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000264A"), QStringLiteral("gemini"), QStringLiteral("Gemini")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000264B"), QStringLiteral("cancer"), QStringLiteral("Cancer")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000264C"), QStringLiteral("leo"), QStringLiteral("Leo")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000264D"), QStringLiteral("virgo"), QStringLiteral("Virgo")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000264E"), QStringLiteral("libra"), QStringLiteral("Libra")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000264F"), QStringLiteral("scorpius"), QStringLiteral("Scorpio")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002650"), QStringLiteral("sagittarius"), QStringLiteral("Sagittarius")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002651"), QStringLiteral("capricorn"), QStringLiteral("Capricorn")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002652"), QStringLiteral("aquarius"), QStringLiteral("Aquarius")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002653"), QStringLiteral("pisces"), QStringLiteral("Pisces")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026CE"), QStringLiteral("ophiuchus"), QStringLiteral("Ophiuchus")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F500"), QStringLiteral("twisted_rightwards_arrows"), QStringLiteral("shuffle tracks button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F501"), QStringLiteral("repeat"), QStringLiteral("repeat button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F502"), QStringLiteral("repeat_one"), QStringLiteral("repeat single button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025B6\U0000FE0F"), QStringLiteral("play button"), QStringLiteral("play button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023E9"), QStringLiteral("fast_forward"), QStringLiteral("fast-forward button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023ED\U0000FE0F"), QStringLiteral("next track button"), QStringLiteral("next track button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023EF\U0000FE0F"), QStringLiteral("play or pause button"), QStringLiteral("play or pause button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025C0\U0000FE0F"), QStringLiteral("reverse button"), QStringLiteral("reverse button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023EA"), QStringLiteral("rewind"), QStringLiteral("fast reverse button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023EE\U0000FE0F"), QStringLiteral("last track button"), QStringLiteral("last track button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F53C"), QStringLiteral("arrow_up_small"), QStringLiteral("upwards button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023EB"), QStringLiteral("arrow_double_up"), QStringLiteral("fast up button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F53D"), QStringLiteral("arrow_down_small"), QStringLiteral("downwards button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023EC"), QStringLiteral("arrow_double_down"), QStringLiteral("fast down button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023F8\U0000FE0F"), QStringLiteral("pause button"), QStringLiteral("pause button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023F9\U0000FE0F"), QStringLiteral("stop button"), QStringLiteral("stop button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023FA\U0000FE0F"), QStringLiteral("record button"), QStringLiteral("record button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000023CF\U0000FE0F"), QStringLiteral("eject button"), QStringLiteral("eject button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3A6"), QStringLiteral("cinema"), QStringLiteral("cinema")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F505"), QStringLiteral("low_brightness"), QStringLiteral("dim button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F506"), QStringLiteral("high_brightness"), QStringLiteral("bright button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F6"), QStringLiteral("signal_strength"), QStringLiteral("antenna bars")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F3"), QStringLiteral("vibration_mode"), QStringLiteral("vibration mode")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4F4"), QStringLiteral("mobile_phone_off"), QStringLiteral("mobile phone off")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002640\U0000FE0F"), QStringLiteral("female sign"), QStringLiteral("female sign")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002642\U0000FE0F"), QStringLiteral("male sign"), QStringLiteral("male sign")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026A7\U0000FE0F"), QStringLiteral("transgender symbol"), QStringLiteral("transgender symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002716\U0000FE0F"), QStringLiteral("multiply"), QStringLiteral("multiply")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002795"), QStringLiteral("heavy_plus_sign"), QStringLiteral("plus")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002796"), QStringLiteral("heavy_minus_sign"), QStringLiteral("minus")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002797"), QStringLiteral("heavy_division_sign"), QStringLiteral("divide")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7F0"), QStringLiteral("heavy equals sign"), QStringLiteral("heavy equals sign")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000267E\U0000FE0F"), QStringLiteral("infinity"), QStringLiteral("infinity")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000203C\U0000FE0F"), QStringLiteral("double exclamation mark"), QStringLiteral("double exclamation mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002049\U0000FE0F"), QStringLiteral("exclamation question mark"), QStringLiteral("exclamation question mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002753"), QStringLiteral("question"), QStringLiteral("red question mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002754"), QStringLiteral("grey_question"), QStringLiteral("white question mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002755"), QStringLiteral("grey_exclamation"), QStringLiteral("white exclamation mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002757"), QStringLiteral("exclamation"), QStringLiteral("red exclamation mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00003030\U0000FE0F"), QStringLiteral("wavy dash"), QStringLiteral("wavy dash")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B1"), QStringLiteral("currency_exchange"), QStringLiteral("currency exchange")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4B2"), QStringLiteral("heavy_dollar_sign"), QStringLiteral("heavy dollar sign")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002695\U0000FE0F"), QStringLiteral("medical symbol"), QStringLiteral("medical symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000267B\U0000FE0F"), QStringLiteral("recycling symbol"), QStringLiteral("recycling symbol")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000269C\U0000FE0F"), QStringLiteral("fleur-de-lis"), QStringLiteral("fleur-de-lis")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F531"), QStringLiteral("trident"), QStringLiteral("trident emblem")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4DB"), QStringLiteral("name_badge"), QStringLiteral("name badge")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F530"), QStringLiteral("beginner"), QStringLiteral("Japanese symbol for beginner")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B55"), QStringLiteral("o"), QStringLiteral("hollow red circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002705"), QStringLiteral("white_check_mark"), QStringLiteral("check mark button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002611\U0000FE0F"), QStringLiteral("check box with check"), QStringLiteral("check box with check")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002714\U0000FE0F"), QStringLiteral("check mark"), QStringLiteral("check mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000274C"), QStringLiteral("x"), QStringLiteral("cross mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000274E"), QStringLiteral("negative_squared_cross_mark"), QStringLiteral("cross mark button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000027B0"), QStringLiteral("curly_loop"), QStringLiteral("curly loop")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000027BF"), QStringLiteral("loop"), QStringLiteral("double curly loop")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000303D\U0000FE0F"), QStringLiteral("part alternation mark"), QStringLiteral("part alternation mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002733\U0000FE0F"), QStringLiteral("eight-spoked asterisk"), QStringLiteral("eight-spoked asterisk")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002734\U0000FE0F"), QStringLiteral("eight-pointed star"), QStringLiteral("eight-pointed star")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002747\U0000FE0F"), QStringLiteral("sparkle"), QStringLiteral("sparkle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000000A9\U0000FE0F"), QStringLiteral("copyright"), QStringLiteral("copyright")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000000AE\U0000FE0F"), QStringLiteral("registered"), QStringLiteral("registered")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002122\U0000FE0F"), QStringLiteral("trade mark"), QStringLiteral("trade mark")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000023\U0000FE0F\U000020E3"), QStringLiteral("keycap: #"), QStringLiteral("keycap: #")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0000002A\U0000FE0F\U000020E3"), QStringLiteral("keycap: *"), QStringLiteral("keycap: *")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000030\U0000FE0F\U000020E3"), QStringLiteral("keycap: 0"), QStringLiteral("keycap: 0")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000031\U0000FE0F\U000020E3"), QStringLiteral("keycap: 1"), QStringLiteral("keycap: 1")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000032\U0000FE0F\U000020E3"), QStringLiteral("keycap: 2"), QStringLiteral("keycap: 2")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000033\U0000FE0F\U000020E3"), QStringLiteral("keycap: 3"), QStringLiteral("keycap: 3")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000034\U0000FE0F\U000020E3"), QStringLiteral("keycap: 4"), QStringLiteral("keycap: 4")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000035\U0000FE0F\U000020E3"), QStringLiteral("keycap: 5"), QStringLiteral("keycap: 5")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000036\U0000FE0F\U000020E3"), QStringLiteral("keycap: 6"), QStringLiteral("keycap: 6")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000037\U0000FE0F\U000020E3"), QStringLiteral("keycap: 7"), QStringLiteral("keycap: 7")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000038\U0000FE0F\U000020E3"), QStringLiteral("keycap: 8"), QStringLiteral("keycap: 8")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00000039\U0000FE0F\U000020E3"), QStringLiteral("keycap: 9"), QStringLiteral("keycap: 9")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F51F"), QStringLiteral("ten"), QStringLiteral("keycap: 10")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F520"), QStringLiteral("capital_abcd"), QStringLiteral("input latin uppercase")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F521"), QStringLiteral("abcd"), QStringLiteral("input latin lowercase")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F522"), QStringLiteral("1234"), QStringLiteral("input numbers")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F523"), QStringLiteral("symbols"), QStringLiteral("input symbols")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F524"), QStringLiteral("abc"), QStringLiteral("input latin letters")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F170\U0000FE0F"), QStringLiteral("A button (blood type)"), QStringLiteral("A button (blood type)")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F18E"), QStringLiteral("ab"), QStringLiteral("AB button (blood type)")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F171\U0000FE0F"), QStringLiteral("B button (blood type)"), QStringLiteral("B button (blood type)")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F191"), QStringLiteral("cl"), QStringLiteral("CL button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F192"), QStringLiteral("cool"), QStringLiteral("COOL button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F193"), QStringLiteral("free"), QStringLiteral("FREE button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002139\U0000FE0F"), QStringLiteral("information"), QStringLiteral("information")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F194"), QStringLiteral("id"), QStringLiteral("ID button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000024C2\U0000FE0F"), QStringLiteral("circled M"), QStringLiteral("circled M")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F195"), QStringLiteral("new"), QStringLiteral("NEW button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F196"), QStringLiteral("ng"), QStringLiteral("NG button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F17E\U0000FE0F"), QStringLiteral("O button (blood type)"), QStringLiteral("O button (blood type)")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F197"), QStringLiteral("ok"), QStringLiteral("OK button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F17F\U0000FE0F"), QStringLiteral("P button"), QStringLiteral("P button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F198"), QStringLiteral("sos"), QStringLiteral("SOS button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F199"), QStringLiteral("up"), QStringLiteral("UP! button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F19A"), QStringLiteral("vs"), QStringLiteral("VS button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F201"), QStringLiteral("koko"), QStringLiteral("Japanese โ€œhereโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F202\U0000FE0F"), QStringLiteral("Japanese โ€œservice chargeโ€ button"), QStringLiteral("Japanese โ€œservice chargeโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F237\U0000FE0F"), QStringLiteral("Japanese โ€œmonthly amountโ€ button"), QStringLiteral("Japanese โ€œmonthly amountโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F236"), QStringLiteral("u6709"), QStringLiteral("Japanese โ€œnot free of chargeโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F22F"), QStringLiteral("u6307"), QStringLiteral("Japanese โ€œreservedโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F250"), QStringLiteral("ideograph_advantage"), QStringLiteral("Japanese โ€œbargainโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F239"), QStringLiteral("u5272"), QStringLiteral("Japanese โ€œdiscountโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F21A"), QStringLiteral("u7121"), QStringLiteral("Japanese โ€œfree of chargeโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F232"), QStringLiteral("u7981"), QStringLiteral("Japanese โ€œprohibitedโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F251"), QStringLiteral("accept"), QStringLiteral("Japanese โ€œacceptableโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F238"), QStringLiteral("u7533"), QStringLiteral("Japanese โ€œapplicationโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F234"), QStringLiteral("u5408"), QStringLiteral("Japanese โ€œpassing gradeโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F233"), QStringLiteral("u7a7a"), QStringLiteral("Japanese โ€œvacancyโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00003297\U0000FE0F"), QStringLiteral("Japanese โ€œcongratulationsโ€ button"), QStringLiteral("Japanese โ€œcongratulationsโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00003299\U0000FE0F"), QStringLiteral("Japanese โ€œsecretโ€ button"), QStringLiteral("Japanese โ€œsecretโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F23A"), QStringLiteral("u55b6"), QStringLiteral("Japanese โ€œopen for businessโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F235"), QStringLiteral("u6e80"), QStringLiteral("Japanese โ€œno vacancyโ€ button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F534"), QStringLiteral("red_circle"), QStringLiteral("red circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E0"), QStringLiteral("orange circle"), QStringLiteral("orange circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E1"), QStringLiteral("yellow circle"), QStringLiteral("yellow circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E2"), QStringLiteral("green circle"), QStringLiteral("green circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F535"), QStringLiteral("blue_circle"), QStringLiteral("blue circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E3"), QStringLiteral("purple circle"), QStringLiteral("purple circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E4"), QStringLiteral("brown circle"), QStringLiteral("brown circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026AB"), QStringLiteral("black_circle"), QStringLiteral("black circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000026AA"), QStringLiteral("white_circle"), QStringLiteral("white circle")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E5"), QStringLiteral("red square"), QStringLiteral("red square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E7"), QStringLiteral("orange square"), QStringLiteral("orange square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E8"), QStringLiteral("yellow square"), QStringLiteral("yellow square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E9"), QStringLiteral("green square"), QStringLiteral("green square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7E6"), QStringLiteral("blue square"), QStringLiteral("blue square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7EA"), QStringLiteral("purple square"), QStringLiteral("purple square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F7EB"), QStringLiteral("brown square"), QStringLiteral("brown square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B1B"), QStringLiteral("black_large_square"), QStringLiteral("black large square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U00002B1C"), QStringLiteral("white_large_square"), QStringLiteral("white large square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025FC\U0000FE0F"), QStringLiteral("black medium square"), QStringLiteral("black medium square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025FB\U0000FE0F"), QStringLiteral("white medium square"), QStringLiteral("white medium square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025FE"), QStringLiteral("black_medium_small_square"), QStringLiteral("black medium-small square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025FD"), QStringLiteral("white_medium_small_square"), QStringLiteral("white medium-small square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025AA\U0000FE0F"), QStringLiteral("black small square"), QStringLiteral("black small square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U000025AB\U0000FE0F"), QStringLiteral("white small square"), QStringLiteral("white small square")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F536"), QStringLiteral("large_orange_diamond"), QStringLiteral("large orange diamond")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F537"), QStringLiteral("large_blue_diamond"), QStringLiteral("large blue diamond")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F538"), QStringLiteral("small_orange_diamond"), QStringLiteral("small orange diamond")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F539"), QStringLiteral("small_blue_diamond"), QStringLiteral("small blue diamond")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F53A"), QStringLiteral("small_red_triangle"), QStringLiteral("red triangle pointed up")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F53B"), QStringLiteral("small_red_triangle_down"), QStringLiteral("red triangle pointed down")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4A0"), QStringLiteral("diamond_shape_with_a_dot_inside"), QStringLiteral("diamond with a dot")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F518"), QStringLiteral("radio_button"), QStringLiteral("radio button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F533"), QStringLiteral("white_square_button"), QStringLiteral("white square button")})); -_emojis[Symbols].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F532"), QStringLiteral("black_square_button"), QStringLiteral("black square button")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C1"), QStringLiteral("checkered_flag"), QStringLiteral("chequered flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A9"), QStringLiteral("triangular_flag_on_post"), QStringLiteral("triangular flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F38C"), QStringLiteral("crossed_flags"), QStringLiteral("crossed flags")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F4"), QStringLiteral("flag_black"), QStringLiteral("black flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F3\U0000FE0F"), QStringLiteral("white flag"), QStringLiteral("white flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F3\U0000FE0F\U0000200D\U0001F308"), QStringLiteral("rainbow flag"), QStringLiteral("rainbow flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F3\U0000FE0F\U0000200D\U000026A7\U0000FE0F"), QStringLiteral("transgender flag"), QStringLiteral("transgender flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F4\U0000200D\U00002620\U0000FE0F"), QStringLiteral("pirate flag"), QStringLiteral("pirate flag")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1E8"), QStringLiteral("flag_ac"), QStringLiteral("Flag of Ascension Island")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1E9"), QStringLiteral("flag_ad"), QStringLiteral("Flag of Andorra")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1EA"), QStringLiteral("flag_ae"), QStringLiteral("Flag of United Arab Emirates")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1EB"), QStringLiteral("flag_af"), QStringLiteral("Flag of Afghanistan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1EC"), QStringLiteral("flag_ag"), QStringLiteral("Flag of Antigua & Barbuda")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1EE"), QStringLiteral("flag_ai"), QStringLiteral("Flag of Anguilla")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F1"), QStringLiteral("flag_al"), QStringLiteral("Flag of Albania")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F2"), QStringLiteral("flag_am"), QStringLiteral("Flag of Armenia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F4"), QStringLiteral("flag_ao"), QStringLiteral("Flag of Angola")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F6"), QStringLiteral("flag_aq"), QStringLiteral("Flag of Antarctica")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F7"), QStringLiteral("flag_ar"), QStringLiteral("Flag of Argentina")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F8"), QStringLiteral("flag_as"), QStringLiteral("Flag of American Samoa")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1F9"), QStringLiteral("flag_at"), QStringLiteral("Flag of Austria")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1FA"), QStringLiteral("flag_au"), QStringLiteral("Flag of Australia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1FC"), QStringLiteral("flag_aw"), QStringLiteral("Flag of Aruba")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1FD"), QStringLiteral("flag_ax"), QStringLiteral("Flag of ร…land Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E6\U0001F1FF"), QStringLiteral("flag_az"), QStringLiteral("Flag of Azerbaijan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1E6"), QStringLiteral("flag_ba"), QStringLiteral("Flag of Bosnia & Herzegovina")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1E7"), QStringLiteral("flag_bb"), QStringLiteral("Flag of Barbados")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1E9"), QStringLiteral("flag_bd"), QStringLiteral("Flag of Bangladesh")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1EA"), QStringLiteral("flag_be"), QStringLiteral("Flag of Belgium")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1EB"), QStringLiteral("flag_bf"), QStringLiteral("Flag of Burkina Faso")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1EC"), QStringLiteral("flag_bg"), QStringLiteral("Flag of Bulgaria")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1ED"), QStringLiteral("flag_bh"), QStringLiteral("Flag of Bahrain")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1EE"), QStringLiteral("flag_bi"), QStringLiteral("Flag of Burundi")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1EF"), QStringLiteral("flag_bj"), QStringLiteral("Flag of Benin")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F1"), QStringLiteral("flag_bl"), QStringLiteral("Flag of St. Barthรฉlemy")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F2"), QStringLiteral("flag_bm"), QStringLiteral("Flag of Bermuda")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F3"), QStringLiteral("flag_bn"), QStringLiteral("Flag of Brunei")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F4"), QStringLiteral("flag_bo"), QStringLiteral("Flag of Bolivia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F6"), QStringLiteral("flag_bq"), QStringLiteral("Flag of Caribbean Netherlands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F7"), QStringLiteral("flag_br"), QStringLiteral("Flag of Brazil")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F8"), QStringLiteral("flag_bs"), QStringLiteral("Flag of Bahamas")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1F9"), QStringLiteral("flag_bt"), QStringLiteral("Flag of Bhutan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1FB"), QStringLiteral("flag_bv"), QStringLiteral("Flag of Bouvet Island")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1FC"), QStringLiteral("flag_bw"), QStringLiteral("Flag of Botswana")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1FE"), QStringLiteral("flag_by"), QStringLiteral("Flag of Belarus")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E7\U0001F1FF"), QStringLiteral("flag_bz"), QStringLiteral("Flag of Belize")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1E6"), QStringLiteral("flag_ca"), QStringLiteral("Flag of Canada")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1E8"), QStringLiteral("flag_cc"), QStringLiteral("Flag of Cocos (Keeling) Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1E9"), QStringLiteral("flag_cd"), QStringLiteral("Flag of Congo - Kinshasa")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1EB"), QStringLiteral("flag_cf"), QStringLiteral("Flag of Central African Republic")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1EC"), QStringLiteral("flag_cg"), QStringLiteral("Flag of Congo - Brazzaville")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1ED"), QStringLiteral("flag_ch"), QStringLiteral("Flag of Switzerland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1EE"), QStringLiteral("flag_ci"), QStringLiteral("Flag of Cรดte dโ€™Ivoire")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F0"), QStringLiteral("flag_ck"), QStringLiteral("Flag of Cook Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F1"), QStringLiteral("flag_cl"), QStringLiteral("Flag of Chile")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F2"), QStringLiteral("flag_cm"), QStringLiteral("Flag of Cameroon")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F3"), QStringLiteral("flag_cn"), QStringLiteral("Flag of China")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F4"), QStringLiteral("flag_co"), QStringLiteral("Flag of Colombia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F5"), QStringLiteral("flag_cp"), QStringLiteral("Flag of Clipperton Island")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1F7"), QStringLiteral("flag_cr"), QStringLiteral("Flag of Costa Rica")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1FA"), QStringLiteral("flag_cu"), QStringLiteral("Flag of Cuba")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1FB"), QStringLiteral("flag_cv"), QStringLiteral("Flag of Cape Verde")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1FC"), QStringLiteral("flag_cw"), QStringLiteral("Flag of Curaรงao")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1FD"), QStringLiteral("flag_cx"), QStringLiteral("Flag of Christmas Island")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1FE"), QStringLiteral("flag_cy"), QStringLiteral("Flag of Cyprus")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E8\U0001F1FF"), QStringLiteral("flag_cz"), QStringLiteral("Flag of Czechia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1EA"), QStringLiteral("flag_de"), QStringLiteral("Flag of Germany")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1EC"), QStringLiteral("flag_dg"), QStringLiteral("Flag of Diego Garcia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1EF"), QStringLiteral("flag_dj"), QStringLiteral("Flag of Djibouti")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1F0"), QStringLiteral("flag_dk"), QStringLiteral("Flag of Denmark")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1F2"), QStringLiteral("flag_dm"), QStringLiteral("Flag of Dominica")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1F4"), QStringLiteral("flag_do"), QStringLiteral("Flag of Dominican Republic")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1E9\U0001F1FF"), QStringLiteral("flag_dz"), QStringLiteral("Flag of Algeria")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1E6"), QStringLiteral("flag_ea"), QStringLiteral("Flag of Ceuta & Melilla")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1E8"), QStringLiteral("flag_ec"), QStringLiteral("Flag of Ecuador")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1EA"), QStringLiteral("flag_ee"), QStringLiteral("Flag of Estonia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1EC"), QStringLiteral("flag_eg"), QStringLiteral("Flag of Egypt")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1ED"), QStringLiteral("flag_eh"), QStringLiteral("Flag of Western Sahara")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1F7"), QStringLiteral("flag_er"), QStringLiteral("Flag of Eritrea")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1F8"), QStringLiteral("flag_es"), QStringLiteral("Flag of Spain")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1F9"), QStringLiteral("flag_et"), QStringLiteral("Flag of Ethiopia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EA\U0001F1FA"), QStringLiteral("flag_eu"), QStringLiteral("Flag of European Union")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EB\U0001F1EE"), QStringLiteral("flag_fi"), QStringLiteral("Flag of Finland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EB\U0001F1EF"), QStringLiteral("flag_fj"), QStringLiteral("Flag of Fiji")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EB\U0001F1F0"), QStringLiteral("flag_fk"), QStringLiteral("Flag of Falkland Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EB\U0001F1F2"), QStringLiteral("flag_fm"), QStringLiteral("Flag of Micronesia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EB\U0001F1F4"), QStringLiteral("flag_fo"), QStringLiteral("Flag of Faroe Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EB\U0001F1F7"), QStringLiteral("flag_fr"), QStringLiteral("Flag of France")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1E6"), QStringLiteral("flag_ga"), QStringLiteral("Flag of Gabon")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1E7"), QStringLiteral("flag_gb"), QStringLiteral("Flag of United Kingdom")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1E9"), QStringLiteral("flag_gd"), QStringLiteral("Flag of Grenada")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1EA"), QStringLiteral("flag_ge"), QStringLiteral("Flag of Georgia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1EB"), QStringLiteral("flag_gf"), QStringLiteral("Flag of French Guiana")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1EC"), QStringLiteral("flag_gg"), QStringLiteral("Flag of Guernsey")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1ED"), QStringLiteral("flag_gh"), QStringLiteral("Flag of Ghana")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1EE"), QStringLiteral("flag_gi"), QStringLiteral("Flag of Gibraltar")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F1"), QStringLiteral("flag_gl"), QStringLiteral("Flag of Greenland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F2"), QStringLiteral("flag_gm"), QStringLiteral("Flag of Gambia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F3"), QStringLiteral("flag_gn"), QStringLiteral("Flag of Guinea")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F5"), QStringLiteral("flag_gp"), QStringLiteral("Flag of Guadeloupe")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F6"), QStringLiteral("flag_gq"), QStringLiteral("Flag of Equatorial Guinea")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F7"), QStringLiteral("flag_gr"), QStringLiteral("Flag of Greece")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F8"), QStringLiteral("flag_gs"), QStringLiteral("Flag of South Georgia & South Sandwich Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1F9"), QStringLiteral("flag_gt"), QStringLiteral("Flag of Guatemala")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1FA"), QStringLiteral("flag_gu"), QStringLiteral("Flag of Guam")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1FC"), QStringLiteral("flag_gw"), QStringLiteral("Flag of Guinea-Bissau")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EC\U0001F1FE"), QStringLiteral("flag_gy"), QStringLiteral("Flag of Guyana")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1ED\U0001F1F0"), QStringLiteral("flag_hk"), QStringLiteral("Flag of Hong Kong SAR China")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1ED\U0001F1F2"), QStringLiteral("flag_hm"), QStringLiteral("Flag of Heard & McDonald Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1ED\U0001F1F3"), QStringLiteral("flag_hn"), QStringLiteral("Flag of Honduras")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1ED\U0001F1F7"), QStringLiteral("flag_hr"), QStringLiteral("Flag of Croatia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1ED\U0001F1F9"), QStringLiteral("flag_ht"), QStringLiteral("Flag of Haiti")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1ED\U0001F1FA"), QStringLiteral("flag_hu"), QStringLiteral("Flag of Hungary")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1E8"), QStringLiteral("flag_ic"), QStringLiteral("Flag of Canary Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1E9"), QStringLiteral("flag_id"), QStringLiteral("Flag of Indonesia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1EA"), QStringLiteral("flag_ie"), QStringLiteral("Flag of Ireland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F1"), QStringLiteral("flag_il"), QStringLiteral("Flag of Israel")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F2"), QStringLiteral("flag_im"), QStringLiteral("Flag of Isle of Man")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F3"), QStringLiteral("flag_in"), QStringLiteral("Flag of India")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F4"), QStringLiteral("flag_io"), QStringLiteral("Flag of British Indian Ocean Territory")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F6"), QStringLiteral("flag_iq"), QStringLiteral("Flag of Iraq")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F7"), QStringLiteral("flag_ir"), QStringLiteral("Flag of Iran")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F8"), QStringLiteral("flag_is"), QStringLiteral("Flag of Iceland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EE\U0001F1F9"), QStringLiteral("flag_it"), QStringLiteral("Flag of Italy")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EF\U0001F1EA"), QStringLiteral("flag_je"), QStringLiteral("Flag of Jersey")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EF\U0001F1F2"), QStringLiteral("flag_jm"), QStringLiteral("Flag of Jamaica")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EF\U0001F1F4"), QStringLiteral("flag_jo"), QStringLiteral("Flag of Jordan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1EF\U0001F1F5"), QStringLiteral("flag_jp"), QStringLiteral("Flag of Japan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1EA"), QStringLiteral("flag_ke"), QStringLiteral("Flag of Kenya")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1EC"), QStringLiteral("flag_kg"), QStringLiteral("Flag of Kyrgyzstan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1ED"), QStringLiteral("flag_kh"), QStringLiteral("Flag of Cambodia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1EE"), QStringLiteral("flag_ki"), QStringLiteral("Flag of Kiribati")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1F2"), QStringLiteral("flag_km"), QStringLiteral("Flag of Comoros")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1F3"), QStringLiteral("flag_kn"), QStringLiteral("Flag of St. Kitts & Nevis")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1F5"), QStringLiteral("flag_kp"), QStringLiteral("Flag of North Korea")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1F7"), QStringLiteral("flag_kr"), QStringLiteral("Flag of South Korea")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1FC"), QStringLiteral("flag_kw"), QStringLiteral("Flag of Kuwait")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1FE"), QStringLiteral("flag_ky"), QStringLiteral("Flag of Cayman Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F0\U0001F1FF"), QStringLiteral("flag_kz"), QStringLiteral("Flag of Kazakhstan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1E6"), QStringLiteral("flag_la"), QStringLiteral("Flag of Laos")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1E7"), QStringLiteral("flag_lb"), QStringLiteral("Flag of Lebanon")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1E8"), QStringLiteral("flag_lc"), QStringLiteral("Flag of St. Lucia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1EE"), QStringLiteral("flag_li"), QStringLiteral("Flag of Liechtenstein")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1F0"), QStringLiteral("flag_lk"), QStringLiteral("Flag of Sri Lanka")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1F7"), QStringLiteral("flag_lr"), QStringLiteral("Flag of Liberia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1F8"), QStringLiteral("flag_ls"), QStringLiteral("Flag of Lesotho")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1F9"), QStringLiteral("flag_lt"), QStringLiteral("Flag of Lithuania")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1FA"), QStringLiteral("flag_lu"), QStringLiteral("Flag of Luxembourg")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1FB"), QStringLiteral("flag_lv"), QStringLiteral("Flag of Latvia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F1\U0001F1FE"), QStringLiteral("flag_ly"), QStringLiteral("Flag of Libya")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1E6"), QStringLiteral("flag_ma"), QStringLiteral("Flag of Morocco")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1E8"), QStringLiteral("flag_mc"), QStringLiteral("Flag of Monaco")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1E9"), QStringLiteral("flag_md"), QStringLiteral("Flag of Moldova")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1EA"), QStringLiteral("flag_me"), QStringLiteral("Flag of Montenegro")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1EB"), QStringLiteral("flag_mf"), QStringLiteral("Flag of St. Martin")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1EC"), QStringLiteral("flag_mg"), QStringLiteral("Flag of Madagascar")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1ED"), QStringLiteral("flag_mh"), QStringLiteral("Flag of Marshall Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F0"), QStringLiteral("flag_mk"), QStringLiteral("Flag of North Macedonia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F1"), QStringLiteral("flag_ml"), QStringLiteral("Flag of Mali")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F2"), QStringLiteral("flag_mm"), QStringLiteral("Flag of Myanmar (Burma)")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F3"), QStringLiteral("flag_mn"), QStringLiteral("Flag of Mongolia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F4"), QStringLiteral("flag_mo"), QStringLiteral("Flag of Macao SAR China")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F5"), QStringLiteral("flag_mp"), QStringLiteral("Flag of Northern Mariana Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F6"), QStringLiteral("flag_mq"), QStringLiteral("Flag of Martinique")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F7"), QStringLiteral("flag_mr"), QStringLiteral("Flag of Mauritania")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F8"), QStringLiteral("flag_ms"), QStringLiteral("Flag of Montserrat")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1F9"), QStringLiteral("flag_mt"), QStringLiteral("Flag of Malta")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1FA"), QStringLiteral("flag_mu"), QStringLiteral("Flag of Mauritius")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1FB"), QStringLiteral("flag_mv"), QStringLiteral("Flag of Maldives")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1FC"), QStringLiteral("flag_mw"), QStringLiteral("Flag of Malawi")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1FD"), QStringLiteral("flag_mx"), QStringLiteral("Flag of Mexico")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1FE"), QStringLiteral("flag_my"), QStringLiteral("Flag of Malaysia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F2\U0001F1FF"), QStringLiteral("flag_mz"), QStringLiteral("Flag of Mozambique")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1E6"), QStringLiteral("flag_na"), QStringLiteral("Flag of Namibia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1E8"), QStringLiteral("flag_nc"), QStringLiteral("Flag of New Caledonia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1EA"), QStringLiteral("flag_ne"), QStringLiteral("Flag of Niger")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1EB"), QStringLiteral("flag_nf"), QStringLiteral("Flag of Norfolk Island")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1EC"), QStringLiteral("flag_ng"), QStringLiteral("Flag of Nigeria")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1EE"), QStringLiteral("flag_ni"), QStringLiteral("Flag of Nicaragua")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1F1"), QStringLiteral("flag_nl"), QStringLiteral("Flag of Netherlands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1F4"), QStringLiteral("flag_no"), QStringLiteral("Flag of Norway")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1F5"), QStringLiteral("flag_np"), QStringLiteral("Flag of Nepal")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1F7"), QStringLiteral("flag_nr"), QStringLiteral("Flag of Nauru")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1FA"), QStringLiteral("flag_nu"), QStringLiteral("Flag of Niue")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F3\U0001F1FF"), QStringLiteral("flag_nz"), QStringLiteral("Flag of New Zealand")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F4\U0001F1F2"), QStringLiteral("flag_om"), QStringLiteral("Flag of Oman")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1E6"), QStringLiteral("flag_pa"), QStringLiteral("Flag of Panama")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1EA"), QStringLiteral("flag_pe"), QStringLiteral("Flag of Peru")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1EB"), QStringLiteral("flag_pf"), QStringLiteral("Flag of French Polynesia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1EC"), QStringLiteral("flag_pg"), QStringLiteral("Flag of Papua New Guinea")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1ED"), QStringLiteral("flag_ph"), QStringLiteral("Flag of Philippines")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F0"), QStringLiteral("flag_pk"), QStringLiteral("Flag of Pakistan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F1"), QStringLiteral("flag_pl"), QStringLiteral("Flag of Poland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F2"), QStringLiteral("flag_pm"), QStringLiteral("Flag of St. Pierre & Miquelon")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F3"), QStringLiteral("flag_pn"), QStringLiteral("Flag of Pitcairn Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F7"), QStringLiteral("flag_pr"), QStringLiteral("Flag of Puerto Rico")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F8"), QStringLiteral("flag_ps"), QStringLiteral("Flag of Palestinian Territories")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1F9"), QStringLiteral("flag_pt"), QStringLiteral("Flag of Portugal")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1FC"), QStringLiteral("flag_pw"), QStringLiteral("Flag of Palau")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F5\U0001F1FE"), QStringLiteral("flag_py"), QStringLiteral("Flag of Paraguay")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F6\U0001F1E6"), QStringLiteral("flag_qa"), QStringLiteral("Flag of Qatar")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F7\U0001F1EA"), QStringLiteral("flag_re"), QStringLiteral("Flag of Rรฉunion")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F7\U0001F1F4"), QStringLiteral("flag_ro"), QStringLiteral("Flag of Romania")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F7\U0001F1F8"), QStringLiteral("flag_rs"), QStringLiteral("Flag of Serbia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F7\U0001F1FA"), QStringLiteral("flag_ru"), QStringLiteral("Flag of Russia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F7\U0001F1FC"), QStringLiteral("flag_rw"), QStringLiteral("Flag of Rwanda")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1E6"), QStringLiteral("flag_sa"), QStringLiteral("Flag of Saudi Arabia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1E7"), QStringLiteral("flag_sb"), QStringLiteral("Flag of Solomon Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1E8"), QStringLiteral("flag_sc"), QStringLiteral("Flag of Seychelles")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1E9"), QStringLiteral("flag_sd"), QStringLiteral("Flag of Sudan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1EA"), QStringLiteral("flag_se"), QStringLiteral("Flag of Sweden")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1EC"), QStringLiteral("flag_sg"), QStringLiteral("Flag of Singapore")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1ED"), QStringLiteral("flag_sh"), QStringLiteral("Flag of St. Helena")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1EE"), QStringLiteral("flag_si"), QStringLiteral("Flag of Slovenia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1EF"), QStringLiteral("flag_sj"), QStringLiteral("Flag of Svalbard & Jan Mayen")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F0"), QStringLiteral("flag_sk"), QStringLiteral("Flag of Slovakia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F1"), QStringLiteral("flag_sl"), QStringLiteral("Flag of Sierra Leone")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F2"), QStringLiteral("flag_sm"), QStringLiteral("Flag of San Marino")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F3"), QStringLiteral("flag_sn"), QStringLiteral("Flag of Senegal")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F4"), QStringLiteral("flag_so"), QStringLiteral("Flag of Somalia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F7"), QStringLiteral("flag_sr"), QStringLiteral("Flag of Suriname")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F8"), QStringLiteral("flag_ss"), QStringLiteral("Flag of South Sudan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1F9"), QStringLiteral("flag_st"), QStringLiteral("Flag of Sรฃo Tomรฉ & Prรญncipe")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1FB"), QStringLiteral("flag_sv"), QStringLiteral("Flag of El Salvador")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1FD"), QStringLiteral("flag_sx"), QStringLiteral("Flag of Sint Maarten")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1FE"), QStringLiteral("flag_sy"), QStringLiteral("Flag of Syria")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F8\U0001F1FF"), QStringLiteral("flag_sz"), QStringLiteral("Flag of Eswatini")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1E6"), QStringLiteral("flag_ta"), QStringLiteral("Flag of Tristan da Cunha")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1E8"), QStringLiteral("flag_tc"), QStringLiteral("Flag of Turks & Caicos Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1E9"), QStringLiteral("flag_td"), QStringLiteral("Flag of Chad")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1EB"), QStringLiteral("flag_tf"), QStringLiteral("Flag of French Southern Territories")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1EC"), QStringLiteral("flag_tg"), QStringLiteral("Flag of Togo")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1ED"), QStringLiteral("flag_th"), QStringLiteral("Flag of Thailand")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1EF"), QStringLiteral("flag_tj"), QStringLiteral("Flag of Tajikistan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F0"), QStringLiteral("flag_tk"), QStringLiteral("Flag of Tokelau")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F1"), QStringLiteral("flag_tl"), QStringLiteral("Flag of Timor-Leste")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F2"), QStringLiteral("flag_tm"), QStringLiteral("Flag of Turkmenistan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F3"), QStringLiteral("flag_tn"), QStringLiteral("Flag of Tunisia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F4"), QStringLiteral("flag_to"), QStringLiteral("Flag of Tonga")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F7"), QStringLiteral("flag_tr"), QStringLiteral("Flag of Turkey")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1F9"), QStringLiteral("flag_tt"), QStringLiteral("Flag of Trinidad & Tobago")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1FB"), QStringLiteral("flag_tv"), QStringLiteral("Flag of Tuvalu")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1FC"), QStringLiteral("flag_tw"), QStringLiteral("Flag of Taiwan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1F9\U0001F1FF"), QStringLiteral("flag_tz"), QStringLiteral("Flag of Tanzania")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1E6"), QStringLiteral("flag_ua"), QStringLiteral("Flag of Ukraine")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1EC"), QStringLiteral("flag_ug"), QStringLiteral("Flag of Uganda")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1F2"), QStringLiteral("flag_um"), QStringLiteral("Flag of U.S. Outlying Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1F3"), QStringLiteral("united_nations"), QStringLiteral("Flag of United Nations")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1F8"), QStringLiteral("flag_us"), QStringLiteral("Flag of United States")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1FE"), QStringLiteral("flag_uy"), QStringLiteral("Flag of Uruguay")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FA\U0001F1FF"), QStringLiteral("flag_uz"), QStringLiteral("Flag of Uzbekistan")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1E6"), QStringLiteral("flag_va"), QStringLiteral("Flag of Vatican City")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1E8"), QStringLiteral("flag_vc"), QStringLiteral("Flag of St. Vincent & Grenadines")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1EA"), QStringLiteral("flag_ve"), QStringLiteral("Flag of Venezuela")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1EC"), QStringLiteral("flag_vg"), QStringLiteral("Flag of British Virgin Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1EE"), QStringLiteral("flag_vi"), QStringLiteral("Flag of U.S. Virgin Islands")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1F3"), QStringLiteral("flag_vn"), QStringLiteral("Flag of Vietnam")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FB\U0001F1FA"), QStringLiteral("flag_vu"), QStringLiteral("Flag of Vanuatu")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FC\U0001F1EB"), QStringLiteral("flag_wf"), QStringLiteral("Flag of Wallis & Futuna")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FC\U0001F1F8"), QStringLiteral("flag_ws"), QStringLiteral("Flag of Samoa")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FD\U0001F1F0"), QStringLiteral("flag_xk"), QStringLiteral("Flag of Kosovo")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FE\U0001F1EA"), QStringLiteral("flag_ye"), QStringLiteral("Flag of Yemen")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FE\U0001F1F9"), QStringLiteral("flag_yt"), QStringLiteral("Flag of Mayotte")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FF\U0001F1E6"), QStringLiteral("flag_za"), QStringLiteral("Flag of South Africa")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FF\U0001F1F2"), QStringLiteral("flag_zm"), QStringLiteral("Flag of Zambia")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F1FF\U0001F1FC"), QStringLiteral("flag_zw"), QStringLiteral("Flag of Zimbabwe")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F4\U000E0067\U000E0062\U000E0065\U000E006E\U000E0067\U000E007F"), QStringLiteral("england"), QStringLiteral("Flag of England")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F4\U000E0067\U000E0062\U000E0073\U000E0063\U000E0074\U000E007F"), QStringLiteral("scotland"), QStringLiteral("Flag of Scotland")})); -_emojis[Flags].append(QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3F4\U000E0067\U000E0062\U000E0077\U000E006C\U000E0073\U000E007F"), QStringLiteral("wales"), QStringLiteral("Flag of Wales")})); diff --git a/src/emojitones.cpp b/src/emojitones.cpp deleted file mode 100644 index 437305b11..000000000 --- a/src/emojitones.cpp +++ /dev/null @@ -1,9 +0,0 @@ -// SPDX-FileCopyrightText: None -// SPDX-License-Identifier: LGPL-2.0-or-later - -#include "emojitones.h" -#include "models/emojimodel.h" - -QMultiHash EmojiTones::_tones = { -#include "emojitones_data.h" -}; diff --git a/src/emojitones.h b/src/emojitones.h deleted file mode 100644 index 8baaea1c1..000000000 --- a/src/emojitones.h +++ /dev/null @@ -1,21 +0,0 @@ -// SPDX-FileCopyrightText: None -// SPDX-License-Identifier: LGPL-2.0-or-later - -#pragma once - -#include - -/** - * @class EmojiTones - * - * This class provides a _tones variable with the available emoji tones to EmojiModel. - * - * @sa EmojiModel - */ -class EmojiTones -{ -private: - static QMultiHash _tones; - - friend class EmojiModel; -}; diff --git a/src/emojitones_data.h b/src/emojitones_data.h deleted file mode 100644 index 8d33a14e3..000000000 --- a/src/emojitones_data.h +++ /dev/null @@ -1,1784 +0,0 @@ -// SPDX-FileCopyrightText: None -// SPDX-License-Identifier: LGPL-2.0-or-later -// This file is auto-generated. All changes will be lost. See tools/update-emojis.py -// clang-format off -{QStringLiteral("waving hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44B\U0001F3FB"), QStringLiteral("wave_tone1"), QStringLiteral("waving hand: light skin tone")})}, -{QStringLiteral("waving hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44B\U0001F3FC"), QStringLiteral("wave_tone2"), QStringLiteral("waving hand: medium-light skin tone")})}, -{QStringLiteral("waving hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44B\U0001F3FD"), QStringLiteral("wave_tone3"), QStringLiteral("waving hand: medium skin tone")})}, -{QStringLiteral("waving hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44B\U0001F3FE"), QStringLiteral("wave_tone4"), QStringLiteral("waving hand: medium-dark skin tone")})}, -{QStringLiteral("waving hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44B\U0001F3FF"), QStringLiteral("wave_tone5"), QStringLiteral("waving hand: dark skin tone")})}, -{QStringLiteral("raised back of hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91A\U0001F3FB"), QStringLiteral("raised_back_of_hand_tone1"), QStringLiteral("raised back of hand: light skin tone")})}, -{QStringLiteral("raised back of hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91A\U0001F3FC"), QStringLiteral("raised_back_of_hand_tone2"), QStringLiteral("raised back of hand: medium-light skin tone")})}, -{QStringLiteral("raised back of hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91A\U0001F3FD"), QStringLiteral("raised_back_of_hand_tone3"), QStringLiteral("raised back of hand: medium skin tone")})}, -{QStringLiteral("raised back of hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91A\U0001F3FE"), QStringLiteral("raised_back_of_hand_tone4"), QStringLiteral("raised back of hand: medium-dark skin tone")})}, -{QStringLiteral("raised back of hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91A\U0001F3FF"), QStringLiteral("raised_back_of_hand_tone5"), QStringLiteral("raised back of hand: dark skin tone")})}, -{QStringLiteral("hand with fingers splayed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F590\U0001F3FB"), QStringLiteral("hand_splayed_tone1"), QStringLiteral("hand with fingers splayed: light skin tone")})}, -{QStringLiteral("hand with fingers splayed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F590\U0001F3FC"), QStringLiteral("hand_splayed_tone2"), QStringLiteral("hand with fingers splayed: medium-light skin tone")})}, -{QStringLiteral("hand with fingers splayed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F590\U0001F3FD"), QStringLiteral("hand_splayed_tone3"), QStringLiteral("hand with fingers splayed: medium skin tone")})}, -{QStringLiteral("hand with fingers splayed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F590\U0001F3FE"), QStringLiteral("hand_splayed_tone4"), QStringLiteral("hand with fingers splayed: medium-dark skin tone")})}, -{QStringLiteral("hand with fingers splayed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F590\U0001F3FF"), QStringLiteral("hand_splayed_tone5"), QStringLiteral("hand with fingers splayed: dark skin tone")})}, -{QStringLiteral("raised hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270B\U0001F3FB"), QStringLiteral("raised_hand_tone1"), QStringLiteral("raised hand: light skin tone")})}, -{QStringLiteral("raised hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270B\U0001F3FC"), QStringLiteral("raised_hand_tone2"), QStringLiteral("raised hand: medium-light skin tone")})}, -{QStringLiteral("raised hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270B\U0001F3FD"), QStringLiteral("raised_hand_tone3"), QStringLiteral("raised hand: medium skin tone")})}, -{QStringLiteral("raised hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270B\U0001F3FE"), QStringLiteral("raised_hand_tone4"), QStringLiteral("raised hand: medium-dark skin tone")})}, -{QStringLiteral("raised hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270B\U0001F3FF"), QStringLiteral("raised_hand_tone5"), QStringLiteral("raised hand: dark skin tone")})}, -{QStringLiteral("vulcan salute"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F596\U0001F3FB"), QStringLiteral("vulcan_tone1"), QStringLiteral("vulcan salute: light skin tone")})}, -{QStringLiteral("vulcan salute"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F596\U0001F3FC"), QStringLiteral("vulcan_tone2"), QStringLiteral("vulcan salute: medium-light skin tone")})}, -{QStringLiteral("vulcan salute"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F596\U0001F3FD"), QStringLiteral("vulcan_tone3"), QStringLiteral("vulcan salute: medium skin tone")})}, -{QStringLiteral("vulcan salute"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F596\U0001F3FE"), QStringLiteral("vulcan_tone4"), QStringLiteral("vulcan salute: medium-dark skin tone")})}, -{QStringLiteral("vulcan salute"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F596\U0001F3FF"), QStringLiteral("vulcan_tone5"), QStringLiteral("vulcan salute: dark skin tone")})}, -{QStringLiteral("rightwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FB"), QStringLiteral("rightwards hand: light skin tone"), QStringLiteral("rightwards hand: light skin tone")})}, -{QStringLiteral("rightwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FC"), QStringLiteral("rightwards hand: medium-light skin tone"), QStringLiteral("rightwards hand: medium-light skin tone")})}, -{QStringLiteral("rightwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FD"), QStringLiteral("rightwards hand: medium skin tone"), QStringLiteral("rightwards hand: medium skin tone")})}, -{QStringLiteral("rightwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FE"), QStringLiteral("rightwards hand: medium-dark skin tone"), QStringLiteral("rightwards hand: medium-dark skin tone")})}, -{QStringLiteral("rightwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FF"), QStringLiteral("rightwards hand: dark skin tone"), QStringLiteral("rightwards hand: dark skin tone")})}, -{QStringLiteral("leftwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF2\U0001F3FB"), QStringLiteral("leftwards hand: light skin tone"), QStringLiteral("leftwards hand: light skin tone")})}, -{QStringLiteral("leftwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF2\U0001F3FC"), QStringLiteral("leftwards hand: medium-light skin tone"), QStringLiteral("leftwards hand: medium-light skin tone")})}, -{QStringLiteral("leftwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF2\U0001F3FD"), QStringLiteral("leftwards hand: medium skin tone"), QStringLiteral("leftwards hand: medium skin tone")})}, -{QStringLiteral("leftwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF2\U0001F3FE"), QStringLiteral("leftwards hand: medium-dark skin tone"), QStringLiteral("leftwards hand: medium-dark skin tone")})}, -{QStringLiteral("leftwards hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF2\U0001F3FF"), QStringLiteral("leftwards hand: dark skin tone"), QStringLiteral("leftwards hand: dark skin tone")})}, -{QStringLiteral("palm down hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF3\U0001F3FB"), QStringLiteral("palm down hand: light skin tone"), QStringLiteral("palm down hand: light skin tone")})}, -{QStringLiteral("palm down hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF3\U0001F3FC"), QStringLiteral("palm down hand: medium-light skin tone"), QStringLiteral("palm down hand: medium-light skin tone")})}, -{QStringLiteral("palm down hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF3\U0001F3FD"), QStringLiteral("palm down hand: medium skin tone"), QStringLiteral("palm down hand: medium skin tone")})}, -{QStringLiteral("palm down hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF3\U0001F3FE"), QStringLiteral("palm down hand: medium-dark skin tone"), QStringLiteral("palm down hand: medium-dark skin tone")})}, -{QStringLiteral("palm down hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF3\U0001F3FF"), QStringLiteral("palm down hand: dark skin tone"), QStringLiteral("palm down hand: dark skin tone")})}, -{QStringLiteral("palm up hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF4\U0001F3FB"), QStringLiteral("palm up hand: light skin tone"), QStringLiteral("palm up hand: light skin tone")})}, -{QStringLiteral("palm up hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF4\U0001F3FC"), QStringLiteral("palm up hand: medium-light skin tone"), QStringLiteral("palm up hand: medium-light skin tone")})}, -{QStringLiteral("palm up hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF4\U0001F3FD"), QStringLiteral("palm up hand: medium skin tone"), QStringLiteral("palm up hand: medium skin tone")})}, -{QStringLiteral("palm up hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF4\U0001F3FE"), QStringLiteral("palm up hand: medium-dark skin tone"), QStringLiteral("palm up hand: medium-dark skin tone")})}, -{QStringLiteral("palm up hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF4\U0001F3FF"), QStringLiteral("palm up hand: dark skin tone"), QStringLiteral("palm up hand: dark skin tone")})}, -{QStringLiteral("OK hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44C\U0001F3FB"), QStringLiteral("ok_hand_tone1"), QStringLiteral("OK hand: light skin tone")})}, -{QStringLiteral("OK hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44C\U0001F3FC"), QStringLiteral("ok_hand_tone2"), QStringLiteral("OK hand: medium-light skin tone")})}, -{QStringLiteral("OK hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44C\U0001F3FD"), QStringLiteral("ok_hand_tone3"), QStringLiteral("OK hand: medium skin tone")})}, -{QStringLiteral("OK hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44C\U0001F3FE"), QStringLiteral("ok_hand_tone4"), QStringLiteral("OK hand: medium-dark skin tone")})}, -{QStringLiteral("OK hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44C\U0001F3FF"), QStringLiteral("ok_hand_tone5"), QStringLiteral("OK hand: dark skin tone")})}, -{QStringLiteral("pinched fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90C\U0001F3FB"), QStringLiteral("pinched fingers: light skin tone"), QStringLiteral("pinched fingers: light skin tone")})}, -{QStringLiteral("pinched fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90C\U0001F3FC"), QStringLiteral("pinched fingers: medium-light skin tone"), QStringLiteral("pinched fingers: medium-light skin tone")})}, -{QStringLiteral("pinched fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90C\U0001F3FD"), QStringLiteral("pinched fingers: medium skin tone"), QStringLiteral("pinched fingers: medium skin tone")})}, -{QStringLiteral("pinched fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90C\U0001F3FE"), QStringLiteral("pinched fingers: medium-dark skin tone"), QStringLiteral("pinched fingers: medium-dark skin tone")})}, -{QStringLiteral("pinched fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90C\U0001F3FF"), QStringLiteral("pinched fingers: dark skin tone"), QStringLiteral("pinched fingers: dark skin tone")})}, -{QStringLiteral("pinching hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90F\U0001F3FB"), QStringLiteral("pinching hand: light skin tone"), QStringLiteral("pinching hand: light skin tone")})}, -{QStringLiteral("pinching hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90F\U0001F3FC"), QStringLiteral("pinching hand: medium-light skin tone"), QStringLiteral("pinching hand: medium-light skin tone")})}, -{QStringLiteral("pinching hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90F\U0001F3FD"), QStringLiteral("pinching hand: medium skin tone"), QStringLiteral("pinching hand: medium skin tone")})}, -{QStringLiteral("pinching hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90F\U0001F3FE"), QStringLiteral("pinching hand: medium-dark skin tone"), QStringLiteral("pinching hand: medium-dark skin tone")})}, -{QStringLiteral("pinching hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F90F\U0001F3FF"), QStringLiteral("pinching hand: dark skin tone"), QStringLiteral("pinching hand: dark skin tone")})}, -{QStringLiteral("victory hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270C\U0001F3FB"), QStringLiteral("v_tone1"), QStringLiteral("victory hand: light skin tone")})}, -{QStringLiteral("victory hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270C\U0001F3FC"), QStringLiteral("v_tone2"), QStringLiteral("victory hand: medium-light skin tone")})}, -{QStringLiteral("victory hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270C\U0001F3FD"), QStringLiteral("v_tone3"), QStringLiteral("victory hand: medium skin tone")})}, -{QStringLiteral("victory hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270C\U0001F3FE"), QStringLiteral("v_tone4"), QStringLiteral("victory hand: medium-dark skin tone")})}, -{QStringLiteral("victory hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270C\U0001F3FF"), QStringLiteral("v_tone5"), QStringLiteral("victory hand: dark skin tone")})}, -{QStringLiteral("crossed fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91E\U0001F3FB"), QStringLiteral("fingers_crossed_tone1"), QStringLiteral("crossed fingers: light skin tone")})}, -{QStringLiteral("crossed fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91E\U0001F3FC"), QStringLiteral("fingers_crossed_tone2"), QStringLiteral("crossed fingers: medium-light skin tone")})}, -{QStringLiteral("crossed fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91E\U0001F3FD"), QStringLiteral("fingers_crossed_tone3"), QStringLiteral("crossed fingers: medium skin tone")})}, -{QStringLiteral("crossed fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91E\U0001F3FE"), QStringLiteral("fingers_crossed_tone4"), QStringLiteral("crossed fingers: medium-dark skin tone")})}, -{QStringLiteral("crossed fingers"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91E\U0001F3FF"), QStringLiteral("fingers_crossed_tone5"), QStringLiteral("crossed fingers: dark skin tone")})}, -{QStringLiteral("hand with index finger and thumb crossed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF0\U0001F3FB"), QStringLiteral("hand with index finger and thumb crossed: light skin tone"), QStringLiteral("hand with index finger and thumb crossed: light skin tone")})}, -{QStringLiteral("hand with index finger and thumb crossed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF0\U0001F3FC"), QStringLiteral("hand with index finger and thumb crossed: medium-light skin tone"), QStringLiteral("hand with index finger and thumb crossed: medium-light skin tone")})}, -{QStringLiteral("hand with index finger and thumb crossed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF0\U0001F3FD"), QStringLiteral("hand with index finger and thumb crossed: medium skin tone"), QStringLiteral("hand with index finger and thumb crossed: medium skin tone")})}, -{QStringLiteral("hand with index finger and thumb crossed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF0\U0001F3FE"), QStringLiteral("hand with index finger and thumb crossed: medium-dark skin tone"), QStringLiteral("hand with index finger and thumb crossed: medium-dark skin tone")})}, -{QStringLiteral("hand with index finger and thumb crossed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF0\U0001F3FF"), QStringLiteral("hand with index finger and thumb crossed: dark skin tone"), QStringLiteral("hand with index finger and thumb crossed: dark skin tone")})}, -{QStringLiteral("love-you gesture"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91F\U0001F3FB"), QStringLiteral("love_you_gesture_tone1"), QStringLiteral("love-you gesture: light skin tone")})}, -{QStringLiteral("love-you gesture"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91F\U0001F3FC"), QStringLiteral("love_you_gesture_tone2"), QStringLiteral("love-you gesture: medium-light skin tone")})}, -{QStringLiteral("love-you gesture"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91F\U0001F3FD"), QStringLiteral("love_you_gesture_tone3"), QStringLiteral("love-you gesture: medium skin tone")})}, -{QStringLiteral("love-you gesture"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91F\U0001F3FE"), QStringLiteral("love_you_gesture_tone4"), QStringLiteral("love-you gesture: medium-dark skin tone")})}, -{QStringLiteral("love-you gesture"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91F\U0001F3FF"), QStringLiteral("love_you_gesture_tone5"), QStringLiteral("love-you gesture: dark skin tone")})}, -{QStringLiteral("sign of the horns"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F918\U0001F3FB"), QStringLiteral("metal_tone1"), QStringLiteral("sign of the horns: light skin tone")})}, -{QStringLiteral("sign of the horns"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F918\U0001F3FC"), QStringLiteral("metal_tone2"), QStringLiteral("sign of the horns: medium-light skin tone")})}, -{QStringLiteral("sign of the horns"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F918\U0001F3FD"), QStringLiteral("metal_tone3"), QStringLiteral("sign of the horns: medium skin tone")})}, -{QStringLiteral("sign of the horns"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F918\U0001F3FE"), QStringLiteral("metal_tone4"), QStringLiteral("sign of the horns: medium-dark skin tone")})}, -{QStringLiteral("sign of the horns"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F918\U0001F3FF"), QStringLiteral("metal_tone5"), QStringLiteral("sign of the horns: dark skin tone")})}, -{QStringLiteral("call me hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F919\U0001F3FB"), QStringLiteral("call_me_tone1"), QStringLiteral("call me hand: light skin tone")})}, -{QStringLiteral("call me hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F919\U0001F3FC"), QStringLiteral("call_me_tone2"), QStringLiteral("call me hand: medium-light skin tone")})}, -{QStringLiteral("call me hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F919\U0001F3FD"), QStringLiteral("call_me_tone3"), QStringLiteral("call me hand: medium skin tone")})}, -{QStringLiteral("call me hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F919\U0001F3FE"), QStringLiteral("call_me_tone4"), QStringLiteral("call me hand: medium-dark skin tone")})}, -{QStringLiteral("call me hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F919\U0001F3FF"), QStringLiteral("call_me_tone5"), QStringLiteral("call me hand: dark skin tone")})}, -{QStringLiteral("backhand index pointing left"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F448\U0001F3FB"), QStringLiteral("point_left_tone1"), QStringLiteral("backhand index pointing left: light skin tone")})}, -{QStringLiteral("backhand index pointing left"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F448\U0001F3FC"), QStringLiteral("point_left_tone2"), QStringLiteral("backhand index pointing left: medium-light skin tone")})}, -{QStringLiteral("backhand index pointing left"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F448\U0001F3FD"), QStringLiteral("point_left_tone3"), QStringLiteral("backhand index pointing left: medium skin tone")})}, -{QStringLiteral("backhand index pointing left"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F448\U0001F3FE"), QStringLiteral("point_left_tone4"), QStringLiteral("backhand index pointing left: medium-dark skin tone")})}, -{QStringLiteral("backhand index pointing left"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F448\U0001F3FF"), QStringLiteral("point_left_tone5"), QStringLiteral("backhand index pointing left: dark skin tone")})}, -{QStringLiteral("backhand index pointing right"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F449\U0001F3FB"), QStringLiteral("point_right_tone1"), QStringLiteral("backhand index pointing right: light skin tone")})}, -{QStringLiteral("backhand index pointing right"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F449\U0001F3FC"), QStringLiteral("point_right_tone2"), QStringLiteral("backhand index pointing right: medium-light skin tone")})}, -{QStringLiteral("backhand index pointing right"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F449\U0001F3FD"), QStringLiteral("point_right_tone3"), QStringLiteral("backhand index pointing right: medium skin tone")})}, -{QStringLiteral("backhand index pointing right"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F449\U0001F3FE"), QStringLiteral("point_right_tone4"), QStringLiteral("backhand index pointing right: medium-dark skin tone")})}, -{QStringLiteral("backhand index pointing right"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F449\U0001F3FF"), QStringLiteral("point_right_tone5"), QStringLiteral("backhand index pointing right: dark skin tone")})}, -{QStringLiteral("backhand index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F446\U0001F3FB"), QStringLiteral("point_up_2_tone1"), QStringLiteral("backhand index pointing up: light skin tone")})}, -{QStringLiteral("backhand index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F446\U0001F3FC"), QStringLiteral("point_up_2_tone2"), QStringLiteral("backhand index pointing up: medium-light skin tone")})}, -{QStringLiteral("backhand index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F446\U0001F3FD"), QStringLiteral("point_up_2_tone3"), QStringLiteral("backhand index pointing up: medium skin tone")})}, -{QStringLiteral("backhand index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F446\U0001F3FE"), QStringLiteral("point_up_2_tone4"), QStringLiteral("backhand index pointing up: medium-dark skin tone")})}, -{QStringLiteral("backhand index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F446\U0001F3FF"), QStringLiteral("point_up_2_tone5"), QStringLiteral("backhand index pointing up: dark skin tone")})}, -{QStringLiteral("middle finger"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F595\U0001F3FB"), QStringLiteral("middle_finger_tone1"), QStringLiteral("middle finger: light skin tone")})}, -{QStringLiteral("middle finger"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F595\U0001F3FC"), QStringLiteral("middle_finger_tone2"), QStringLiteral("middle finger: medium-light skin tone")})}, -{QStringLiteral("middle finger"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F595\U0001F3FD"), QStringLiteral("middle_finger_tone3"), QStringLiteral("middle finger: medium skin tone")})}, -{QStringLiteral("middle finger"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F595\U0001F3FE"), QStringLiteral("middle_finger_tone4"), QStringLiteral("middle finger: medium-dark skin tone")})}, -{QStringLiteral("middle finger"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F595\U0001F3FF"), QStringLiteral("middle_finger_tone5"), QStringLiteral("middle finger: dark skin tone")})}, -{QStringLiteral("backhand index pointing down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F447\U0001F3FB"), QStringLiteral("point_down_tone1"), QStringLiteral("backhand index pointing down: light skin tone")})}, -{QStringLiteral("backhand index pointing down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F447\U0001F3FC"), QStringLiteral("point_down_tone2"), QStringLiteral("backhand index pointing down: medium-light skin tone")})}, -{QStringLiteral("backhand index pointing down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F447\U0001F3FD"), QStringLiteral("point_down_tone3"), QStringLiteral("backhand index pointing down: medium skin tone")})}, -{QStringLiteral("backhand index pointing down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F447\U0001F3FE"), QStringLiteral("point_down_tone4"), QStringLiteral("backhand index pointing down: medium-dark skin tone")})}, -{QStringLiteral("backhand index pointing down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F447\U0001F3FF"), QStringLiteral("point_down_tone5"), QStringLiteral("backhand index pointing down: dark skin tone")})}, -{QStringLiteral("index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000261D\U0001F3FB"), QStringLiteral("point_up_tone1"), QStringLiteral("index pointing up: light skin tone")})}, -{QStringLiteral("index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000261D\U0001F3FC"), QStringLiteral("point_up_tone2"), QStringLiteral("index pointing up: medium-light skin tone")})}, -{QStringLiteral("index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000261D\U0001F3FD"), QStringLiteral("point_up_tone3"), QStringLiteral("index pointing up: medium skin tone")})}, -{QStringLiteral("index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000261D\U0001F3FE"), QStringLiteral("point_up_tone4"), QStringLiteral("index pointing up: medium-dark skin tone")})}, -{QStringLiteral("index pointing up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000261D\U0001F3FF"), QStringLiteral("point_up_tone5"), QStringLiteral("index pointing up: dark skin tone")})}, -{QStringLiteral("index pointing at the viewer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF5\U0001F3FB"), QStringLiteral("index pointing at the viewer: light skin tone"), QStringLiteral("index pointing at the viewer: light skin tone")})}, -{QStringLiteral("index pointing at the viewer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF5\U0001F3FC"), QStringLiteral("index pointing at the viewer: medium-light skin tone"), QStringLiteral("index pointing at the viewer: medium-light skin tone")})}, -{QStringLiteral("index pointing at the viewer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF5\U0001F3FD"), QStringLiteral("index pointing at the viewer: medium skin tone"), QStringLiteral("index pointing at the viewer: medium skin tone")})}, -{QStringLiteral("index pointing at the viewer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF5\U0001F3FE"), QStringLiteral("index pointing at the viewer: medium-dark skin tone"), QStringLiteral("index pointing at the viewer: medium-dark skin tone")})}, -{QStringLiteral("index pointing at the viewer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF5\U0001F3FF"), QStringLiteral("index pointing at the viewer: dark skin tone"), QStringLiteral("index pointing at the viewer: dark skin tone")})}, -{QStringLiteral("thumbs up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44D\U0001F3FB"), QStringLiteral("thumbsup_tone1"), QStringLiteral("thumbs up: light skin tone")})}, -{QStringLiteral("thumbs up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44D\U0001F3FC"), QStringLiteral("thumbsup_tone2"), QStringLiteral("thumbs up: medium-light skin tone")})}, -{QStringLiteral("thumbs up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44D\U0001F3FD"), QStringLiteral("thumbsup_tone3"), QStringLiteral("thumbs up: medium skin tone")})}, -{QStringLiteral("thumbs up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44D\U0001F3FE"), QStringLiteral("thumbsup_tone4"), QStringLiteral("thumbs up: medium-dark skin tone")})}, -{QStringLiteral("thumbs up"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44D\U0001F3FF"), QStringLiteral("thumbsup_tone5"), QStringLiteral("thumbs up: dark skin tone")})}, -{QStringLiteral("thumbs down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44E\U0001F3FB"), QStringLiteral("thumbsdown_tone1"), QStringLiteral("thumbs down: light skin tone")})}, -{QStringLiteral("thumbs down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44E\U0001F3FC"), QStringLiteral("thumbsdown_tone2"), QStringLiteral("thumbs down: medium-light skin tone")})}, -{QStringLiteral("thumbs down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44E\U0001F3FD"), QStringLiteral("thumbsdown_tone3"), QStringLiteral("thumbs down: medium skin tone")})}, -{QStringLiteral("thumbs down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44E\U0001F3FE"), QStringLiteral("thumbsdown_tone4"), QStringLiteral("thumbs down: medium-dark skin tone")})}, -{QStringLiteral("thumbs down"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44E\U0001F3FF"), QStringLiteral("thumbsdown_tone5"), QStringLiteral("thumbs down: dark skin tone")})}, -{QStringLiteral("raised fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270A\U0001F3FB"), QStringLiteral("fist_tone1"), QStringLiteral("raised fist: light skin tone")})}, -{QStringLiteral("raised fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270A\U0001F3FC"), QStringLiteral("fist_tone2"), QStringLiteral("raised fist: medium-light skin tone")})}, -{QStringLiteral("raised fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270A\U0001F3FD"), QStringLiteral("fist_tone3"), QStringLiteral("raised fist: medium skin tone")})}, -{QStringLiteral("raised fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270A\U0001F3FE"), QStringLiteral("fist_tone4"), QStringLiteral("raised fist: medium-dark skin tone")})}, -{QStringLiteral("raised fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270A\U0001F3FF"), QStringLiteral("fist_tone5"), QStringLiteral("raised fist: dark skin tone")})}, -{QStringLiteral("oncoming fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44A\U0001F3FB"), QStringLiteral("punch_tone1"), QStringLiteral("oncoming fist: light skin tone")})}, -{QStringLiteral("oncoming fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44A\U0001F3FC"), QStringLiteral("punch_tone2"), QStringLiteral("oncoming fist: medium-light skin tone")})}, -{QStringLiteral("oncoming fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44A\U0001F3FD"), QStringLiteral("punch_tone3"), QStringLiteral("oncoming fist: medium skin tone")})}, -{QStringLiteral("oncoming fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44A\U0001F3FE"), QStringLiteral("punch_tone4"), QStringLiteral("oncoming fist: medium-dark skin tone")})}, -{QStringLiteral("oncoming fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44A\U0001F3FF"), QStringLiteral("punch_tone5"), QStringLiteral("oncoming fist: dark skin tone")})}, -{QStringLiteral("left-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91B\U0001F3FB"), QStringLiteral("left_facing_fist_tone1"), QStringLiteral("left-facing fist: light skin tone")})}, -{QStringLiteral("left-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91B\U0001F3FC"), QStringLiteral("left_facing_fist_tone2"), QStringLiteral("left-facing fist: medium-light skin tone")})}, -{QStringLiteral("left-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91B\U0001F3FD"), QStringLiteral("left_facing_fist_tone3"), QStringLiteral("left-facing fist: medium skin tone")})}, -{QStringLiteral("left-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91B\U0001F3FE"), QStringLiteral("left_facing_fist_tone4"), QStringLiteral("left-facing fist: medium-dark skin tone")})}, -{QStringLiteral("left-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91B\U0001F3FF"), QStringLiteral("left_facing_fist_tone5"), QStringLiteral("left-facing fist: dark skin tone")})}, -{QStringLiteral("right-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91C\U0001F3FB"), QStringLiteral("right_facing_fist_tone1"), QStringLiteral("right-facing fist: light skin tone")})}, -{QStringLiteral("right-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91C\U0001F3FC"), QStringLiteral("right_facing_fist_tone2"), QStringLiteral("right-facing fist: medium-light skin tone")})}, -{QStringLiteral("right-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91C\U0001F3FD"), QStringLiteral("right_facing_fist_tone3"), QStringLiteral("right-facing fist: medium skin tone")})}, -{QStringLiteral("right-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91C\U0001F3FE"), QStringLiteral("right_facing_fist_tone4"), QStringLiteral("right-facing fist: medium-dark skin tone")})}, -{QStringLiteral("right-facing fist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91C\U0001F3FF"), QStringLiteral("right_facing_fist_tone5"), QStringLiteral("right-facing fist: dark skin tone")})}, -{QStringLiteral("clapping hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44F\U0001F3FB"), QStringLiteral("clap_tone1"), QStringLiteral("clapping hands: light skin tone")})}, -{QStringLiteral("clapping hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44F\U0001F3FC"), QStringLiteral("clap_tone2"), QStringLiteral("clapping hands: medium-light skin tone")})}, -{QStringLiteral("clapping hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44F\U0001F3FD"), QStringLiteral("clap_tone3"), QStringLiteral("clapping hands: medium skin tone")})}, -{QStringLiteral("clapping hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44F\U0001F3FE"), QStringLiteral("clap_tone4"), QStringLiteral("clapping hands: medium-dark skin tone")})}, -{QStringLiteral("clapping hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F44F\U0001F3FF"), QStringLiteral("clap_tone5"), QStringLiteral("clapping hands: dark skin tone")})}, -{QStringLiteral("raising hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64C\U0001F3FB"), QStringLiteral("raised_hands_tone1"), QStringLiteral("raising hands: light skin tone")})}, -{QStringLiteral("raising hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64C\U0001F3FC"), QStringLiteral("raised_hands_tone2"), QStringLiteral("raising hands: medium-light skin tone")})}, -{QStringLiteral("raising hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64C\U0001F3FD"), QStringLiteral("raised_hands_tone3"), QStringLiteral("raising hands: medium skin tone")})}, -{QStringLiteral("raising hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64C\U0001F3FE"), QStringLiteral("raised_hands_tone4"), QStringLiteral("raising hands: medium-dark skin tone")})}, -{QStringLiteral("raising hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64C\U0001F3FF"), QStringLiteral("raised_hands_tone5"), QStringLiteral("raising hands: dark skin tone")})}, -{QStringLiteral("heart hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF6\U0001F3FB"), QStringLiteral("heart hands: light skin tone"), QStringLiteral("heart hands: light skin tone")})}, -{QStringLiteral("heart hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF6\U0001F3FC"), QStringLiteral("heart hands: medium-light skin tone"), QStringLiteral("heart hands: medium-light skin tone")})}, -{QStringLiteral("heart hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF6\U0001F3FD"), QStringLiteral("heart hands: medium skin tone"), QStringLiteral("heart hands: medium skin tone")})}, -{QStringLiteral("heart hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF6\U0001F3FE"), QStringLiteral("heart hands: medium-dark skin tone"), QStringLiteral("heart hands: medium-dark skin tone")})}, -{QStringLiteral("heart hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF6\U0001F3FF"), QStringLiteral("heart hands: dark skin tone"), QStringLiteral("heart hands: dark skin tone")})}, -{QStringLiteral("open hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F450\U0001F3FB"), QStringLiteral("open_hands_tone1"), QStringLiteral("open hands: light skin tone")})}, -{QStringLiteral("open hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F450\U0001F3FC"), QStringLiteral("open_hands_tone2"), QStringLiteral("open hands: medium-light skin tone")})}, -{QStringLiteral("open hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F450\U0001F3FD"), QStringLiteral("open_hands_tone3"), QStringLiteral("open hands: medium skin tone")})}, -{QStringLiteral("open hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F450\U0001F3FE"), QStringLiteral("open_hands_tone4"), QStringLiteral("open hands: medium-dark skin tone")})}, -{QStringLiteral("open hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F450\U0001F3FF"), QStringLiteral("open_hands_tone5"), QStringLiteral("open hands: dark skin tone")})}, -{QStringLiteral("palms up together"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F932\U0001F3FB"), QStringLiteral("palms_up_together_tone1"), QStringLiteral("palms up together: light skin tone")})}, -{QStringLiteral("palms up together"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F932\U0001F3FC"), QStringLiteral("palms_up_together_tone2"), QStringLiteral("palms up together: medium-light skin tone")})}, -{QStringLiteral("palms up together"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F932\U0001F3FD"), QStringLiteral("palms_up_together_tone3"), QStringLiteral("palms up together: medium skin tone")})}, -{QStringLiteral("palms up together"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F932\U0001F3FE"), QStringLiteral("palms_up_together_tone4"), QStringLiteral("palms up together: medium-dark skin tone")})}, -{QStringLiteral("palms up together"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F932\U0001F3FF"), QStringLiteral("palms_up_together_tone5"), QStringLiteral("palms up together: dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91D\U0001F3FB"), QStringLiteral("handshake: light skin tone"), QStringLiteral("handshake: light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91D\U0001F3FC"), QStringLiteral("handshake: medium-light skin tone"), QStringLiteral("handshake: medium-light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91D\U0001F3FD"), QStringLiteral("handshake: medium skin tone"), QStringLiteral("handshake: medium skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91D\U0001F3FE"), QStringLiteral("handshake: medium-dark skin tone"), QStringLiteral("handshake: medium-dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F91D\U0001F3FF"), QStringLiteral("handshake: dark skin tone"), QStringLiteral("handshake: dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FC"), QStringLiteral("handshake: light skin tone, medium-light skin tone"), QStringLiteral("handshake: light skin tone, medium-light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FD"), QStringLiteral("handshake: light skin tone, medium skin tone"), QStringLiteral("handshake: light skin tone, medium skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FE"), QStringLiteral("handshake: light skin tone, medium-dark skin tone"), QStringLiteral("handshake: light skin tone, medium-dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FB\U0000200D\U0001FAF2\U0001F3FF"), QStringLiteral("handshake: light skin tone, dark skin tone"), QStringLiteral("handshake: light skin tone, dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FB"), QStringLiteral("handshake: medium-light skin tone, light skin tone"), QStringLiteral("handshake: medium-light skin tone, light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FD"), QStringLiteral("handshake: medium-light skin tone, medium skin tone"), QStringLiteral("handshake: medium-light skin tone, medium skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FE"), QStringLiteral("handshake: medium-light skin tone, medium-dark skin tone"), QStringLiteral("handshake: medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FC\U0000200D\U0001FAF2\U0001F3FF"), QStringLiteral("handshake: medium-light skin tone, dark skin tone"), QStringLiteral("handshake: medium-light skin tone, dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FB"), QStringLiteral("handshake: medium skin tone, light skin tone"), QStringLiteral("handshake: medium skin tone, light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FC"), QStringLiteral("handshake: medium skin tone, medium-light skin tone"), QStringLiteral("handshake: medium skin tone, medium-light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FE"), QStringLiteral("handshake: medium skin tone, medium-dark skin tone"), QStringLiteral("handshake: medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FD\U0000200D\U0001FAF2\U0001F3FF"), QStringLiteral("handshake: medium skin tone, dark skin tone"), QStringLiteral("handshake: medium skin tone, dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FB"), QStringLiteral("handshake: medium-dark skin tone, light skin tone"), QStringLiteral("handshake: medium-dark skin tone, light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FC"), QStringLiteral("handshake: medium-dark skin tone, medium-light skin tone"), QStringLiteral("handshake: medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FD"), QStringLiteral("handshake: medium-dark skin tone, medium skin tone"), QStringLiteral("handshake: medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FE\U0000200D\U0001FAF2\U0001F3FF"), QStringLiteral("handshake: medium-dark skin tone, dark skin tone"), QStringLiteral("handshake: medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FB"), QStringLiteral("handshake: dark skin tone, light skin tone"), QStringLiteral("handshake: dark skin tone, light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FC"), QStringLiteral("handshake: dark skin tone, medium-light skin tone"), QStringLiteral("handshake: dark skin tone, medium-light skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FD"), QStringLiteral("handshake: dark skin tone, medium skin tone"), QStringLiteral("handshake: dark skin tone, medium skin tone")})}, -{QStringLiteral("handshake"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAF1\U0001F3FF\U0000200D\U0001FAF2\U0001F3FE"), QStringLiteral("handshake: dark skin tone, medium-dark skin tone"), QStringLiteral("handshake: dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("folded hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64F\U0001F3FB"), QStringLiteral("pray_tone1"), QStringLiteral("folded hands: light skin tone")})}, -{QStringLiteral("folded hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64F\U0001F3FC"), QStringLiteral("pray_tone2"), QStringLiteral("folded hands: medium-light skin tone")})}, -{QStringLiteral("folded hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64F\U0001F3FD"), QStringLiteral("pray_tone3"), QStringLiteral("folded hands: medium skin tone")})}, -{QStringLiteral("folded hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64F\U0001F3FE"), QStringLiteral("pray_tone4"), QStringLiteral("folded hands: medium-dark skin tone")})}, -{QStringLiteral("folded hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64F\U0001F3FF"), QStringLiteral("pray_tone5"), QStringLiteral("folded hands: dark skin tone")})}, -{QStringLiteral("writing hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270D\U0001F3FB"), QStringLiteral("writing_hand_tone1"), QStringLiteral("writing hand: light skin tone")})}, -{QStringLiteral("writing hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270D\U0001F3FC"), QStringLiteral("writing_hand_tone2"), QStringLiteral("writing hand: medium-light skin tone")})}, -{QStringLiteral("writing hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270D\U0001F3FD"), QStringLiteral("writing_hand_tone3"), QStringLiteral("writing hand: medium skin tone")})}, -{QStringLiteral("writing hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270D\U0001F3FE"), QStringLiteral("writing_hand_tone4"), QStringLiteral("writing hand: medium-dark skin tone")})}, -{QStringLiteral("writing hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0000270D\U0001F3FF"), QStringLiteral("writing_hand_tone5"), QStringLiteral("writing hand: dark skin tone")})}, -{QStringLiteral("nail polish"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F485\U0001F3FB"), QStringLiteral("nail_care_tone1"), QStringLiteral("nail polish: light skin tone")})}, -{QStringLiteral("nail polish"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F485\U0001F3FC"), QStringLiteral("nail_care_tone2"), QStringLiteral("nail polish: medium-light skin tone")})}, -{QStringLiteral("nail polish"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F485\U0001F3FD"), QStringLiteral("nail_care_tone3"), QStringLiteral("nail polish: medium skin tone")})}, -{QStringLiteral("nail polish"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F485\U0001F3FE"), QStringLiteral("nail_care_tone4"), QStringLiteral("nail polish: medium-dark skin tone")})}, -{QStringLiteral("nail polish"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F485\U0001F3FF"), QStringLiteral("nail_care_tone5"), QStringLiteral("nail polish: dark skin tone")})}, -{QStringLiteral("selfie"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F933\U0001F3FB"), QStringLiteral("selfie_tone1"), QStringLiteral("selfie: light skin tone")})}, -{QStringLiteral("selfie"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F933\U0001F3FC"), QStringLiteral("selfie_tone2"), QStringLiteral("selfie: medium-light skin tone")})}, -{QStringLiteral("selfie"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F933\U0001F3FD"), QStringLiteral("selfie_tone3"), QStringLiteral("selfie: medium skin tone")})}, -{QStringLiteral("selfie"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F933\U0001F3FE"), QStringLiteral("selfie_tone4"), QStringLiteral("selfie: medium-dark skin tone")})}, -{QStringLiteral("selfie"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F933\U0001F3FF"), QStringLiteral("selfie_tone5"), QStringLiteral("selfie: dark skin tone")})}, -{QStringLiteral("flexed biceps"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AA\U0001F3FB"), QStringLiteral("muscle_tone1"), QStringLiteral("flexed biceps: light skin tone")})}, -{QStringLiteral("flexed biceps"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AA\U0001F3FC"), QStringLiteral("muscle_tone2"), QStringLiteral("flexed biceps: medium-light skin tone")})}, -{QStringLiteral("flexed biceps"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AA\U0001F3FD"), QStringLiteral("muscle_tone3"), QStringLiteral("flexed biceps: medium skin tone")})}, -{QStringLiteral("flexed biceps"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AA\U0001F3FE"), QStringLiteral("muscle_tone4"), QStringLiteral("flexed biceps: medium-dark skin tone")})}, -{QStringLiteral("flexed biceps"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F4AA\U0001F3FF"), QStringLiteral("muscle_tone5"), QStringLiteral("flexed biceps: dark skin tone")})}, -{QStringLiteral("leg"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B5\U0001F3FB"), QStringLiteral("leg_tone1"), QStringLiteral("leg: light skin tone")})}, -{QStringLiteral("leg"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B5\U0001F3FC"), QStringLiteral("leg_tone2"), QStringLiteral("leg: medium-light skin tone")})}, -{QStringLiteral("leg"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B5\U0001F3FD"), QStringLiteral("leg_tone3"), QStringLiteral("leg: medium skin tone")})}, -{QStringLiteral("leg"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B5\U0001F3FE"), QStringLiteral("leg_tone4"), QStringLiteral("leg: medium-dark skin tone")})}, -{QStringLiteral("leg"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B5\U0001F3FF"), QStringLiteral("leg_tone5"), QStringLiteral("leg: dark skin tone")})}, -{QStringLiteral("foot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B6\U0001F3FB"), QStringLiteral("foot_tone1"), QStringLiteral("foot: light skin tone")})}, -{QStringLiteral("foot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B6\U0001F3FC"), QStringLiteral("foot_tone2"), QStringLiteral("foot: medium-light skin tone")})}, -{QStringLiteral("foot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B6\U0001F3FD"), QStringLiteral("foot_tone3"), QStringLiteral("foot: medium skin tone")})}, -{QStringLiteral("foot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B6\U0001F3FE"), QStringLiteral("foot_tone4"), QStringLiteral("foot: medium-dark skin tone")})}, -{QStringLiteral("foot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B6\U0001F3FF"), QStringLiteral("foot_tone5"), QStringLiteral("foot: dark skin tone")})}, -{QStringLiteral("ear"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F442\U0001F3FB"), QStringLiteral("ear_tone1"), QStringLiteral("ear: light skin tone")})}, -{QStringLiteral("ear"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F442\U0001F3FC"), QStringLiteral("ear_tone2"), QStringLiteral("ear: medium-light skin tone")})}, -{QStringLiteral("ear"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F442\U0001F3FD"), QStringLiteral("ear_tone3"), QStringLiteral("ear: medium skin tone")})}, -{QStringLiteral("ear"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F442\U0001F3FE"), QStringLiteral("ear_tone4"), QStringLiteral("ear: medium-dark skin tone")})}, -{QStringLiteral("ear"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F442\U0001F3FF"), QStringLiteral("ear_tone5"), QStringLiteral("ear: dark skin tone")})}, -{QStringLiteral("ear with hearing aid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BB\U0001F3FB"), QStringLiteral("ear with hearing aid: light skin tone"), QStringLiteral("ear with hearing aid: light skin tone")})}, -{QStringLiteral("ear with hearing aid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BB\U0001F3FC"), QStringLiteral("ear with hearing aid: medium-light skin tone"), QStringLiteral("ear with hearing aid: medium-light skin tone")})}, -{QStringLiteral("ear with hearing aid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BB\U0001F3FD"), QStringLiteral("ear with hearing aid: medium skin tone"), QStringLiteral("ear with hearing aid: medium skin tone")})}, -{QStringLiteral("ear with hearing aid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BB\U0001F3FE"), QStringLiteral("ear with hearing aid: medium-dark skin tone"), QStringLiteral("ear with hearing aid: medium-dark skin tone")})}, -{QStringLiteral("ear with hearing aid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9BB\U0001F3FF"), QStringLiteral("ear with hearing aid: dark skin tone"), QStringLiteral("ear with hearing aid: dark skin tone")})}, -{QStringLiteral("nose"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F443\U0001F3FB"), QStringLiteral("nose_tone1"), QStringLiteral("nose: light skin tone")})}, -{QStringLiteral("nose"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F443\U0001F3FC"), QStringLiteral("nose_tone2"), QStringLiteral("nose: medium-light skin tone")})}, -{QStringLiteral("nose"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F443\U0001F3FD"), QStringLiteral("nose_tone3"), QStringLiteral("nose: medium skin tone")})}, -{QStringLiteral("nose"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F443\U0001F3FE"), QStringLiteral("nose_tone4"), QStringLiteral("nose: medium-dark skin tone")})}, -{QStringLiteral("nose"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F443\U0001F3FF"), QStringLiteral("nose_tone5"), QStringLiteral("nose: dark skin tone")})}, -{QStringLiteral("baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F476\U0001F3FB"), QStringLiteral("baby_tone1"), QStringLiteral("baby: light skin tone")})}, -{QStringLiteral("baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F476\U0001F3FC"), QStringLiteral("baby_tone2"), QStringLiteral("baby: medium-light skin tone")})}, -{QStringLiteral("baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F476\U0001F3FD"), QStringLiteral("baby_tone3"), QStringLiteral("baby: medium skin tone")})}, -{QStringLiteral("baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F476\U0001F3FE"), QStringLiteral("baby_tone4"), QStringLiteral("baby: medium-dark skin tone")})}, -{QStringLiteral("baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F476\U0001F3FF"), QStringLiteral("baby_tone5"), QStringLiteral("baby: dark skin tone")})}, -{QStringLiteral("child"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D2\U0001F3FB"), QStringLiteral("child_tone1"), QStringLiteral("child: light skin tone")})}, -{QStringLiteral("child"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D2\U0001F3FC"), QStringLiteral("child_tone2"), QStringLiteral("child: medium-light skin tone")})}, -{QStringLiteral("child"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D2\U0001F3FD"), QStringLiteral("child_tone3"), QStringLiteral("child: medium skin tone")})}, -{QStringLiteral("child"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D2\U0001F3FE"), QStringLiteral("child_tone4"), QStringLiteral("child: medium-dark skin tone")})}, -{QStringLiteral("child"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D2\U0001F3FF"), QStringLiteral("child_tone5"), QStringLiteral("child: dark skin tone")})}, -{QStringLiteral("boy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F466\U0001F3FB"), QStringLiteral("boy_tone1"), QStringLiteral("boy: light skin tone")})}, -{QStringLiteral("boy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F466\U0001F3FC"), QStringLiteral("boy_tone2"), QStringLiteral("boy: medium-light skin tone")})}, -{QStringLiteral("boy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F466\U0001F3FD"), QStringLiteral("boy_tone3"), QStringLiteral("boy: medium skin tone")})}, -{QStringLiteral("boy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F466\U0001F3FE"), QStringLiteral("boy_tone4"), QStringLiteral("boy: medium-dark skin tone")})}, -{QStringLiteral("boy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F466\U0001F3FF"), QStringLiteral("boy_tone5"), QStringLiteral("boy: dark skin tone")})}, -{QStringLiteral("girl"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F467\U0001F3FB"), QStringLiteral("girl_tone1"), QStringLiteral("girl: light skin tone")})}, -{QStringLiteral("girl"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F467\U0001F3FC"), QStringLiteral("girl_tone2"), QStringLiteral("girl: medium-light skin tone")})}, -{QStringLiteral("girl"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F467\U0001F3FD"), QStringLiteral("girl_tone3"), QStringLiteral("girl: medium skin tone")})}, -{QStringLiteral("girl"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F467\U0001F3FE"), QStringLiteral("girl_tone4"), QStringLiteral("girl: medium-dark skin tone")})}, -{QStringLiteral("girl"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F467\U0001F3FF"), QStringLiteral("girl_tone5"), QStringLiteral("girl: dark skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB"), QStringLiteral("adult_tone1"), QStringLiteral("person: light skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC"), QStringLiteral("adult_tone2"), QStringLiteral("person: medium-light skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD"), QStringLiteral("adult_tone3"), QStringLiteral("person: medium skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE"), QStringLiteral("adult_tone4"), QStringLiteral("person: medium-dark skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF"), QStringLiteral("adult_tone5"), QStringLiteral("person: dark skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FB"), QStringLiteral("person_with_blond_hair_tone1"), QStringLiteral("person: light skin tone, blond hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FC"), QStringLiteral("person_with_blond_hair_tone2"), QStringLiteral("person: medium-light skin tone, blond hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FD"), QStringLiteral("person_with_blond_hair_tone3"), QStringLiteral("person: medium skin tone, blond hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FE"), QStringLiteral("person_with_blond_hair_tone4"), QStringLiteral("person: medium-dark skin tone, blond hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FF"), QStringLiteral("person_with_blond_hair_tone5"), QStringLiteral("person: dark skin tone, blond hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB"), QStringLiteral("man_tone1"), QStringLiteral("man: light skin tone")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC"), QStringLiteral("man_tone2"), QStringLiteral("man: medium-light skin tone")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD"), QStringLiteral("man_tone3"), QStringLiteral("man: medium skin tone")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE"), QStringLiteral("man_tone4"), QStringLiteral("man: medium-dark skin tone")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF"), QStringLiteral("man_tone5"), QStringLiteral("man: dark skin tone")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FB"), QStringLiteral("bearded_person_tone1"), QStringLiteral("person: light skin tone, beard")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FC"), QStringLiteral("bearded_person_tone2"), QStringLiteral("person: medium-light skin tone, beard")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FD"), QStringLiteral("bearded_person_tone3"), QStringLiteral("person: medium skin tone, beard")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FE"), QStringLiteral("bearded_person_tone4"), QStringLiteral("person: medium-dark skin tone, beard")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FF"), QStringLiteral("bearded_person_tone5"), QStringLiteral("person: dark skin tone, beard")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: light skin tone, beard"), QStringLiteral("man: light skin tone, beard")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: medium-light skin tone, beard"), QStringLiteral("man: medium-light skin tone, beard")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: medium skin tone, beard"), QStringLiteral("man: medium skin tone, beard")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: medium-dark skin tone, beard"), QStringLiteral("man: medium-dark skin tone, beard")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: dark skin tone, beard"), QStringLiteral("man: dark skin tone, beard")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: light skin tone, beard"), QStringLiteral("woman: light skin tone, beard")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: medium-light skin tone, beard"), QStringLiteral("woman: medium-light skin tone, beard")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: medium skin tone, beard"), QStringLiteral("woman: medium skin tone, beard")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: medium-dark skin tone, beard"), QStringLiteral("woman: medium-dark skin tone, beard")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D4\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: dark skin tone, beard"), QStringLiteral("woman: dark skin tone, beard")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9B0"), QStringLiteral("man: light skin tone, red hair"), QStringLiteral("man: light skin tone, red hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9B0"), QStringLiteral("man: medium-light skin tone, red hair"), QStringLiteral("man: medium-light skin tone, red hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9B0"), QStringLiteral("man: medium skin tone, red hair"), QStringLiteral("man: medium skin tone, red hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9B0"), QStringLiteral("man: medium-dark skin tone, red hair"), QStringLiteral("man: medium-dark skin tone, red hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9B0"), QStringLiteral("man: dark skin tone, red hair"), QStringLiteral("man: dark skin tone, red hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9B1"), QStringLiteral("man: light skin tone, curly hair"), QStringLiteral("man: light skin tone, curly hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9B1"), QStringLiteral("man: medium-light skin tone, curly hair"), QStringLiteral("man: medium-light skin tone, curly hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9B1"), QStringLiteral("man: medium skin tone, curly hair"), QStringLiteral("man: medium skin tone, curly hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9B1"), QStringLiteral("man: medium-dark skin tone, curly hair"), QStringLiteral("man: medium-dark skin tone, curly hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9B1"), QStringLiteral("man: dark skin tone, curly hair"), QStringLiteral("man: dark skin tone, curly hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9B3"), QStringLiteral("man: light skin tone, white hair"), QStringLiteral("man: light skin tone, white hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9B3"), QStringLiteral("man: medium-light skin tone, white hair"), QStringLiteral("man: medium-light skin tone, white hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9B3"), QStringLiteral("man: medium skin tone, white hair"), QStringLiteral("man: medium skin tone, white hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9B3"), QStringLiteral("man: medium-dark skin tone, white hair"), QStringLiteral("man: medium-dark skin tone, white hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9B3"), QStringLiteral("man: dark skin tone, white hair"), QStringLiteral("man: dark skin tone, white hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9B2"), QStringLiteral("man: light skin tone, bald"), QStringLiteral("man: light skin tone, bald")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9B2"), QStringLiteral("man: medium-light skin tone, bald"), QStringLiteral("man: medium-light skin tone, bald")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9B2"), QStringLiteral("man: medium skin tone, bald"), QStringLiteral("man: medium skin tone, bald")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9B2"), QStringLiteral("man: medium-dark skin tone, bald"), QStringLiteral("man: medium-dark skin tone, bald")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9B2"), QStringLiteral("man: dark skin tone, bald"), QStringLiteral("man: dark skin tone, bald")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB"), QStringLiteral("woman_tone1"), QStringLiteral("woman: light skin tone")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC"), QStringLiteral("woman_tone2"), QStringLiteral("woman: medium-light skin tone")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD"), QStringLiteral("woman_tone3"), QStringLiteral("woman: medium skin tone")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE"), QStringLiteral("woman_tone4"), QStringLiteral("woman: medium-dark skin tone")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF"), QStringLiteral("woman_tone5"), QStringLiteral("woman: dark skin tone")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9B0"), QStringLiteral("woman: light skin tone, red hair"), QStringLiteral("woman: light skin tone, red hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9B0"), QStringLiteral("woman: medium-light skin tone, red hair"), QStringLiteral("woman: medium-light skin tone, red hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9B0"), QStringLiteral("woman: medium skin tone, red hair"), QStringLiteral("woman: medium skin tone, red hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9B0"), QStringLiteral("woman: medium-dark skin tone, red hair"), QStringLiteral("woman: medium-dark skin tone, red hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9B0"), QStringLiteral("woman: dark skin tone, red hair"), QStringLiteral("woman: dark skin tone, red hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9B0"), QStringLiteral("person: light skin tone, red hair"), QStringLiteral("person: light skin tone, red hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9B0"), QStringLiteral("person: medium-light skin tone, red hair"), QStringLiteral("person: medium-light skin tone, red hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9B0"), QStringLiteral("person: medium skin tone, red hair"), QStringLiteral("person: medium skin tone, red hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9B0"), QStringLiteral("person: medium-dark skin tone, red hair"), QStringLiteral("person: medium-dark skin tone, red hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9B0"), QStringLiteral("person: dark skin tone, red hair"), QStringLiteral("person: dark skin tone, red hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9B1"), QStringLiteral("woman: light skin tone, curly hair"), QStringLiteral("woman: light skin tone, curly hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9B1"), QStringLiteral("woman: medium-light skin tone, curly hair"), QStringLiteral("woman: medium-light skin tone, curly hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9B1"), QStringLiteral("woman: medium skin tone, curly hair"), QStringLiteral("woman: medium skin tone, curly hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9B1"), QStringLiteral("woman: medium-dark skin tone, curly hair"), QStringLiteral("woman: medium-dark skin tone, curly hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9B1"), QStringLiteral("woman: dark skin tone, curly hair"), QStringLiteral("woman: dark skin tone, curly hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9B1"), QStringLiteral("person: light skin tone, curly hair"), QStringLiteral("person: light skin tone, curly hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9B1"), QStringLiteral("person: medium-light skin tone, curly hair"), QStringLiteral("person: medium-light skin tone, curly hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9B1"), QStringLiteral("person: medium skin tone, curly hair"), QStringLiteral("person: medium skin tone, curly hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9B1"), QStringLiteral("person: medium-dark skin tone, curly hair"), QStringLiteral("person: medium-dark skin tone, curly hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9B1"), QStringLiteral("person: dark skin tone, curly hair"), QStringLiteral("person: dark skin tone, curly hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9B3"), QStringLiteral("woman: light skin tone, white hair"), QStringLiteral("woman: light skin tone, white hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9B3"), QStringLiteral("woman: medium-light skin tone, white hair"), QStringLiteral("woman: medium-light skin tone, white hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9B3"), QStringLiteral("woman: medium skin tone, white hair"), QStringLiteral("woman: medium skin tone, white hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9B3"), QStringLiteral("woman: medium-dark skin tone, white hair"), QStringLiteral("woman: medium-dark skin tone, white hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9B3"), QStringLiteral("woman: dark skin tone, white hair"), QStringLiteral("woman: dark skin tone, white hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9B3"), QStringLiteral("person: light skin tone, white hair"), QStringLiteral("person: light skin tone, white hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9B3"), QStringLiteral("person: medium-light skin tone, white hair"), QStringLiteral("person: medium-light skin tone, white hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9B3"), QStringLiteral("person: medium skin tone, white hair"), QStringLiteral("person: medium skin tone, white hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9B3"), QStringLiteral("person: medium-dark skin tone, white hair"), QStringLiteral("person: medium-dark skin tone, white hair")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9B3"), QStringLiteral("person: dark skin tone, white hair"), QStringLiteral("person: dark skin tone, white hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9B2"), QStringLiteral("woman: light skin tone, bald"), QStringLiteral("woman: light skin tone, bald")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9B2"), QStringLiteral("woman: medium-light skin tone, bald"), QStringLiteral("woman: medium-light skin tone, bald")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9B2"), QStringLiteral("woman: medium skin tone, bald"), QStringLiteral("woman: medium skin tone, bald")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9B2"), QStringLiteral("woman: medium-dark skin tone, bald"), QStringLiteral("woman: medium-dark skin tone, bald")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9B2"), QStringLiteral("woman: dark skin tone, bald"), QStringLiteral("woman: dark skin tone, bald")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9B2"), QStringLiteral("person: light skin tone, bald"), QStringLiteral("person: light skin tone, bald")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9B2"), QStringLiteral("person: medium-light skin tone, bald"), QStringLiteral("person: medium-light skin tone, bald")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9B2"), QStringLiteral("person: medium skin tone, bald"), QStringLiteral("person: medium skin tone, bald")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9B2"), QStringLiteral("person: medium-dark skin tone, bald"), QStringLiteral("person: medium-dark skin tone, bald")})}, -{QStringLiteral("person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9B2"), QStringLiteral("person: dark skin tone, bald"), QStringLiteral("person: dark skin tone, bald")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: light skin tone, blond hair"), QStringLiteral("woman: light skin tone, blond hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: medium-light skin tone, blond hair"), QStringLiteral("woman: medium-light skin tone, blond hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: medium skin tone, blond hair"), QStringLiteral("woman: medium skin tone, blond hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: medium-dark skin tone, blond hair"), QStringLiteral("woman: medium-dark skin tone, blond hair")})}, -{QStringLiteral("woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman: dark skin tone, blond hair"), QStringLiteral("woman: dark skin tone, blond hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: light skin tone, blond hair"), QStringLiteral("man: light skin tone, blond hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: medium-light skin tone, blond hair"), QStringLiteral("man: medium-light skin tone, blond hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: medium skin tone, blond hair"), QStringLiteral("man: medium skin tone, blond hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: medium-dark skin tone, blond hair"), QStringLiteral("man: medium-dark skin tone, blond hair")})}, -{QStringLiteral("man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F471\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man: dark skin tone, blond hair"), QStringLiteral("man: dark skin tone, blond hair")})}, -{QStringLiteral("older person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D3\U0001F3FB"), QStringLiteral("older_adult_tone1"), QStringLiteral("older person: light skin tone")})}, -{QStringLiteral("older person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D3\U0001F3FC"), QStringLiteral("older_adult_tone2"), QStringLiteral("older person: medium-light skin tone")})}, -{QStringLiteral("older person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D3\U0001F3FD"), QStringLiteral("older_adult_tone3"), QStringLiteral("older person: medium skin tone")})}, -{QStringLiteral("older person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D3\U0001F3FE"), QStringLiteral("older_adult_tone4"), QStringLiteral("older person: medium-dark skin tone")})}, -{QStringLiteral("older person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D3\U0001F3FF"), QStringLiteral("older_adult_tone5"), QStringLiteral("older person: dark skin tone")})}, -{QStringLiteral("old man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F474\U0001F3FB"), QStringLiteral("older_man_tone1"), QStringLiteral("old man: light skin tone")})}, -{QStringLiteral("old man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F474\U0001F3FC"), QStringLiteral("older_man_tone2"), QStringLiteral("old man: medium-light skin tone")})}, -{QStringLiteral("old man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F474\U0001F3FD"), QStringLiteral("older_man_tone3"), QStringLiteral("old man: medium skin tone")})}, -{QStringLiteral("old man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F474\U0001F3FE"), QStringLiteral("older_man_tone4"), QStringLiteral("old man: medium-dark skin tone")})}, -{QStringLiteral("old man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F474\U0001F3FF"), QStringLiteral("older_man_tone5"), QStringLiteral("old man: dark skin tone")})}, -{QStringLiteral("old woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F475\U0001F3FB"), QStringLiteral("older_woman_tone1"), QStringLiteral("old woman: light skin tone")})}, -{QStringLiteral("old woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F475\U0001F3FC"), QStringLiteral("older_woman_tone2"), QStringLiteral("old woman: medium-light skin tone")})}, -{QStringLiteral("old woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F475\U0001F3FD"), QStringLiteral("older_woman_tone3"), QStringLiteral("old woman: medium skin tone")})}, -{QStringLiteral("old woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F475\U0001F3FE"), QStringLiteral("older_woman_tone4"), QStringLiteral("old woman: medium-dark skin tone")})}, -{QStringLiteral("old woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F475\U0001F3FF"), QStringLiteral("older_woman_tone5"), QStringLiteral("old woman: dark skin tone")})}, -{QStringLiteral("person frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FB"), QStringLiteral("person_frowning_tone1"), QStringLiteral("person frowning: light skin tone")})}, -{QStringLiteral("person frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FC"), QStringLiteral("person_frowning_tone2"), QStringLiteral("person frowning: medium-light skin tone")})}, -{QStringLiteral("person frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FD"), QStringLiteral("person_frowning_tone3"), QStringLiteral("person frowning: medium skin tone")})}, -{QStringLiteral("person frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FE"), QStringLiteral("person_frowning_tone4"), QStringLiteral("person frowning: medium-dark skin tone")})}, -{QStringLiteral("person frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FF"), QStringLiteral("person_frowning_tone5"), QStringLiteral("person frowning: dark skin tone")})}, -{QStringLiteral("man frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man frowning: light skin tone"), QStringLiteral("man frowning: light skin tone")})}, -{QStringLiteral("man frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man frowning: medium-light skin tone"), QStringLiteral("man frowning: medium-light skin tone")})}, -{QStringLiteral("man frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man frowning: medium skin tone"), QStringLiteral("man frowning: medium skin tone")})}, -{QStringLiteral("man frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man frowning: medium-dark skin tone"), QStringLiteral("man frowning: medium-dark skin tone")})}, -{QStringLiteral("man frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man frowning: dark skin tone"), QStringLiteral("man frowning: dark skin tone")})}, -{QStringLiteral("woman frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman frowning: light skin tone"), QStringLiteral("woman frowning: light skin tone")})}, -{QStringLiteral("woman frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman frowning: medium-light skin tone"), QStringLiteral("woman frowning: medium-light skin tone")})}, -{QStringLiteral("woman frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman frowning: medium skin tone"), QStringLiteral("woman frowning: medium skin tone")})}, -{QStringLiteral("woman frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman frowning: medium-dark skin tone"), QStringLiteral("woman frowning: medium-dark skin tone")})}, -{QStringLiteral("woman frowning"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64D\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman frowning: dark skin tone"), QStringLiteral("woman frowning: dark skin tone")})}, -{QStringLiteral("person pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FB"), QStringLiteral("person_with_pouting_face_tone1"), QStringLiteral("person pouting: light skin tone")})}, -{QStringLiteral("person pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FC"), QStringLiteral("person_with_pouting_face_tone2"), QStringLiteral("person pouting: medium-light skin tone")})}, -{QStringLiteral("person pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FD"), QStringLiteral("person_with_pouting_face_tone3"), QStringLiteral("person pouting: medium skin tone")})}, -{QStringLiteral("person pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FE"), QStringLiteral("person_with_pouting_face_tone4"), QStringLiteral("person pouting: medium-dark skin tone")})}, -{QStringLiteral("person pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FF"), QStringLiteral("person_with_pouting_face_tone5"), QStringLiteral("person pouting: dark skin tone")})}, -{QStringLiteral("man pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man pouting: light skin tone"), QStringLiteral("man pouting: light skin tone")})}, -{QStringLiteral("man pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man pouting: medium-light skin tone"), QStringLiteral("man pouting: medium-light skin tone")})}, -{QStringLiteral("man pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man pouting: medium skin tone"), QStringLiteral("man pouting: medium skin tone")})}, -{QStringLiteral("man pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man pouting: medium-dark skin tone"), QStringLiteral("man pouting: medium-dark skin tone")})}, -{QStringLiteral("man pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man pouting: dark skin tone"), QStringLiteral("man pouting: dark skin tone")})}, -{QStringLiteral("woman pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman pouting: light skin tone"), QStringLiteral("woman pouting: light skin tone")})}, -{QStringLiteral("woman pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman pouting: medium-light skin tone"), QStringLiteral("woman pouting: medium-light skin tone")})}, -{QStringLiteral("woman pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman pouting: medium skin tone"), QStringLiteral("woman pouting: medium skin tone")})}, -{QStringLiteral("woman pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman pouting: medium-dark skin tone"), QStringLiteral("woman pouting: medium-dark skin tone")})}, -{QStringLiteral("woman pouting"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64E\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman pouting: dark skin tone"), QStringLiteral("woman pouting: dark skin tone")})}, -{QStringLiteral("person gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FB"), QStringLiteral("no_good_tone1"), QStringLiteral("person gesturing NO: light skin tone")})}, -{QStringLiteral("person gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FC"), QStringLiteral("no_good_tone2"), QStringLiteral("person gesturing NO: medium-light skin tone")})}, -{QStringLiteral("person gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FD"), QStringLiteral("no_good_tone3"), QStringLiteral("person gesturing NO: medium skin tone")})}, -{QStringLiteral("person gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FE"), QStringLiteral("no_good_tone4"), QStringLiteral("person gesturing NO: medium-dark skin tone")})}, -{QStringLiteral("person gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FF"), QStringLiteral("no_good_tone5"), QStringLiteral("person gesturing NO: dark skin tone")})}, -{QStringLiteral("man gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing NO: light skin tone"), QStringLiteral("man gesturing NO: light skin tone")})}, -{QStringLiteral("man gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing NO: medium-light skin tone"), QStringLiteral("man gesturing NO: medium-light skin tone")})}, -{QStringLiteral("man gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing NO: medium skin tone"), QStringLiteral("man gesturing NO: medium skin tone")})}, -{QStringLiteral("man gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing NO: medium-dark skin tone"), QStringLiteral("man gesturing NO: medium-dark skin tone")})}, -{QStringLiteral("man gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing NO: dark skin tone"), QStringLiteral("man gesturing NO: dark skin tone")})}, -{QStringLiteral("woman gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing NO: light skin tone"), QStringLiteral("woman gesturing NO: light skin tone")})}, -{QStringLiteral("woman gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing NO: medium-light skin tone"), QStringLiteral("woman gesturing NO: medium-light skin tone")})}, -{QStringLiteral("woman gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing NO: medium skin tone"), QStringLiteral("woman gesturing NO: medium skin tone")})}, -{QStringLiteral("woman gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing NO: medium-dark skin tone"), QStringLiteral("woman gesturing NO: medium-dark skin tone")})}, -{QStringLiteral("woman gesturing NO"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F645\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing NO: dark skin tone"), QStringLiteral("woman gesturing NO: dark skin tone")})}, -{QStringLiteral("person gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FB"), QStringLiteral("ok_woman_tone1"), QStringLiteral("person gesturing OK: light skin tone")})}, -{QStringLiteral("person gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FC"), QStringLiteral("ok_woman_tone2"), QStringLiteral("person gesturing OK: medium-light skin tone")})}, -{QStringLiteral("person gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FD"), QStringLiteral("ok_woman_tone3"), QStringLiteral("person gesturing OK: medium skin tone")})}, -{QStringLiteral("person gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FE"), QStringLiteral("ok_woman_tone4"), QStringLiteral("person gesturing OK: medium-dark skin tone")})}, -{QStringLiteral("person gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FF"), QStringLiteral("ok_woman_tone5"), QStringLiteral("person gesturing OK: dark skin tone")})}, -{QStringLiteral("man gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing OK: light skin tone"), QStringLiteral("man gesturing OK: light skin tone")})}, -{QStringLiteral("man gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing OK: medium-light skin tone"), QStringLiteral("man gesturing OK: medium-light skin tone")})}, -{QStringLiteral("man gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing OK: medium skin tone"), QStringLiteral("man gesturing OK: medium skin tone")})}, -{QStringLiteral("man gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing OK: medium-dark skin tone"), QStringLiteral("man gesturing OK: medium-dark skin tone")})}, -{QStringLiteral("man gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man gesturing OK: dark skin tone"), QStringLiteral("man gesturing OK: dark skin tone")})}, -{QStringLiteral("woman gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing OK: light skin tone"), QStringLiteral("woman gesturing OK: light skin tone")})}, -{QStringLiteral("woman gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing OK: medium-light skin tone"), QStringLiteral("woman gesturing OK: medium-light skin tone")})}, -{QStringLiteral("woman gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing OK: medium skin tone"), QStringLiteral("woman gesturing OK: medium skin tone")})}, -{QStringLiteral("woman gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing OK: medium-dark skin tone"), QStringLiteral("woman gesturing OK: medium-dark skin tone")})}, -{QStringLiteral("woman gesturing OK"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F646\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman gesturing OK: dark skin tone"), QStringLiteral("woman gesturing OK: dark skin tone")})}, -{QStringLiteral("person tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FB"), QStringLiteral("information_desk_person_tone1"), QStringLiteral("person tipping hand: light skin tone")})}, -{QStringLiteral("person tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FC"), QStringLiteral("information_desk_person_tone2"), QStringLiteral("person tipping hand: medium-light skin tone")})}, -{QStringLiteral("person tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FD"), QStringLiteral("information_desk_person_tone3"), QStringLiteral("person tipping hand: medium skin tone")})}, -{QStringLiteral("person tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FE"), QStringLiteral("information_desk_person_tone4"), QStringLiteral("person tipping hand: medium-dark skin tone")})}, -{QStringLiteral("person tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FF"), QStringLiteral("information_desk_person_tone5"), QStringLiteral("person tipping hand: dark skin tone")})}, -{QStringLiteral("man tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man tipping hand: light skin tone"), QStringLiteral("man tipping hand: light skin tone")})}, -{QStringLiteral("man tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man tipping hand: medium-light skin tone"), QStringLiteral("man tipping hand: medium-light skin tone")})}, -{QStringLiteral("man tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man tipping hand: medium skin tone"), QStringLiteral("man tipping hand: medium skin tone")})}, -{QStringLiteral("man tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man tipping hand: medium-dark skin tone"), QStringLiteral("man tipping hand: medium-dark skin tone")})}, -{QStringLiteral("man tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man tipping hand: dark skin tone"), QStringLiteral("man tipping hand: dark skin tone")})}, -{QStringLiteral("woman tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman tipping hand: light skin tone"), QStringLiteral("woman tipping hand: light skin tone")})}, -{QStringLiteral("woman tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman tipping hand: medium-light skin tone"), QStringLiteral("woman tipping hand: medium-light skin tone")})}, -{QStringLiteral("woman tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman tipping hand: medium skin tone"), QStringLiteral("woman tipping hand: medium skin tone")})}, -{QStringLiteral("woman tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman tipping hand: medium-dark skin tone"), QStringLiteral("woman tipping hand: medium-dark skin tone")})}, -{QStringLiteral("woman tipping hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F481\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman tipping hand: dark skin tone"), QStringLiteral("woman tipping hand: dark skin tone")})}, -{QStringLiteral("person raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FB"), QStringLiteral("raising_hand_tone1"), QStringLiteral("person raising hand: light skin tone")})}, -{QStringLiteral("person raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FC"), QStringLiteral("raising_hand_tone2"), QStringLiteral("person raising hand: medium-light skin tone")})}, -{QStringLiteral("person raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FD"), QStringLiteral("raising_hand_tone3"), QStringLiteral("person raising hand: medium skin tone")})}, -{QStringLiteral("person raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FE"), QStringLiteral("raising_hand_tone4"), QStringLiteral("person raising hand: medium-dark skin tone")})}, -{QStringLiteral("person raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FF"), QStringLiteral("raising_hand_tone5"), QStringLiteral("person raising hand: dark skin tone")})}, -{QStringLiteral("man raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man raising hand: light skin tone"), QStringLiteral("man raising hand: light skin tone")})}, -{QStringLiteral("man raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man raising hand: medium-light skin tone"), QStringLiteral("man raising hand: medium-light skin tone")})}, -{QStringLiteral("man raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man raising hand: medium skin tone"), QStringLiteral("man raising hand: medium skin tone")})}, -{QStringLiteral("man raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man raising hand: medium-dark skin tone"), QStringLiteral("man raising hand: medium-dark skin tone")})}, -{QStringLiteral("man raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man raising hand: dark skin tone"), QStringLiteral("man raising hand: dark skin tone")})}, -{QStringLiteral("woman raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman raising hand: light skin tone"), QStringLiteral("woman raising hand: light skin tone")})}, -{QStringLiteral("woman raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman raising hand: medium-light skin tone"), QStringLiteral("woman raising hand: medium-light skin tone")})}, -{QStringLiteral("woman raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman raising hand: medium skin tone"), QStringLiteral("woman raising hand: medium skin tone")})}, -{QStringLiteral("woman raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman raising hand: medium-dark skin tone"), QStringLiteral("woman raising hand: medium-dark skin tone")})}, -{QStringLiteral("woman raising hand"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F64B\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman raising hand: dark skin tone"), QStringLiteral("woman raising hand: dark skin tone")})}, -{QStringLiteral("deaf person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FB"), QStringLiteral("deaf person: light skin tone"), QStringLiteral("deaf person: light skin tone")})}, -{QStringLiteral("deaf person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FC"), QStringLiteral("deaf person: medium-light skin tone"), QStringLiteral("deaf person: medium-light skin tone")})}, -{QStringLiteral("deaf person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FD"), QStringLiteral("deaf person: medium skin tone"), QStringLiteral("deaf person: medium skin tone")})}, -{QStringLiteral("deaf person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FE"), QStringLiteral("deaf person: medium-dark skin tone"), QStringLiteral("deaf person: medium-dark skin tone")})}, -{QStringLiteral("deaf person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FF"), QStringLiteral("deaf person: dark skin tone"), QStringLiteral("deaf person: dark skin tone")})}, -{QStringLiteral("deaf man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("deaf man: light skin tone"), QStringLiteral("deaf man: light skin tone")})}, -{QStringLiteral("deaf man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("deaf man: medium-light skin tone"), QStringLiteral("deaf man: medium-light skin tone")})}, -{QStringLiteral("deaf man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("deaf man: medium skin tone"), QStringLiteral("deaf man: medium skin tone")})}, -{QStringLiteral("deaf man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("deaf man: medium-dark skin tone"), QStringLiteral("deaf man: medium-dark skin tone")})}, -{QStringLiteral("deaf man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("deaf man: dark skin tone"), QStringLiteral("deaf man: dark skin tone")})}, -{QStringLiteral("deaf woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("deaf woman: light skin tone"), QStringLiteral("deaf woman: light skin tone")})}, -{QStringLiteral("deaf woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("deaf woman: medium-light skin tone"), QStringLiteral("deaf woman: medium-light skin tone")})}, -{QStringLiteral("deaf woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("deaf woman: medium skin tone"), QStringLiteral("deaf woman: medium skin tone")})}, -{QStringLiteral("deaf woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("deaf woman: medium-dark skin tone"), QStringLiteral("deaf woman: medium-dark skin tone")})}, -{QStringLiteral("deaf woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CF\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("deaf woman: dark skin tone"), QStringLiteral("deaf woman: dark skin tone")})}, -{QStringLiteral("person bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FB"), QStringLiteral("bow_tone1"), QStringLiteral("person bowing: light skin tone")})}, -{QStringLiteral("person bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FC"), QStringLiteral("bow_tone2"), QStringLiteral("person bowing: medium-light skin tone")})}, -{QStringLiteral("person bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FD"), QStringLiteral("bow_tone3"), QStringLiteral("person bowing: medium skin tone")})}, -{QStringLiteral("person bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FE"), QStringLiteral("bow_tone4"), QStringLiteral("person bowing: medium-dark skin tone")})}, -{QStringLiteral("person bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FF"), QStringLiteral("bow_tone5"), QStringLiteral("person bowing: dark skin tone")})}, -{QStringLiteral("man bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bowing: light skin tone"), QStringLiteral("man bowing: light skin tone")})}, -{QStringLiteral("man bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bowing: medium-light skin tone"), QStringLiteral("man bowing: medium-light skin tone")})}, -{QStringLiteral("man bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bowing: medium skin tone"), QStringLiteral("man bowing: medium skin tone")})}, -{QStringLiteral("man bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bowing: medium-dark skin tone"), QStringLiteral("man bowing: medium-dark skin tone")})}, -{QStringLiteral("man bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bowing: dark skin tone"), QStringLiteral("man bowing: dark skin tone")})}, -{QStringLiteral("woman bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bowing: light skin tone"), QStringLiteral("woman bowing: light skin tone")})}, -{QStringLiteral("woman bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bowing: medium-light skin tone"), QStringLiteral("woman bowing: medium-light skin tone")})}, -{QStringLiteral("woman bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bowing: medium skin tone"), QStringLiteral("woman bowing: medium skin tone")})}, -{QStringLiteral("woman bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bowing: medium-dark skin tone"), QStringLiteral("woman bowing: medium-dark skin tone")})}, -{QStringLiteral("woman bowing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F647\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bowing: dark skin tone"), QStringLiteral("woman bowing: dark skin tone")})}, -{QStringLiteral("person facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FB"), QStringLiteral("face_palm_tone1"), QStringLiteral("person facepalming: light skin tone")})}, -{QStringLiteral("person facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FC"), QStringLiteral("face_palm_tone2"), QStringLiteral("person facepalming: medium-light skin tone")})}, -{QStringLiteral("person facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FD"), QStringLiteral("face_palm_tone3"), QStringLiteral("person facepalming: medium skin tone")})}, -{QStringLiteral("person facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FE"), QStringLiteral("face_palm_tone4"), QStringLiteral("person facepalming: medium-dark skin tone")})}, -{QStringLiteral("person facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FF"), QStringLiteral("face_palm_tone5"), QStringLiteral("person facepalming: dark skin tone")})}, -{QStringLiteral("man facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man facepalming: light skin tone"), QStringLiteral("man facepalming: light skin tone")})}, -{QStringLiteral("man facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man facepalming: medium-light skin tone"), QStringLiteral("man facepalming: medium-light skin tone")})}, -{QStringLiteral("man facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man facepalming: medium skin tone"), QStringLiteral("man facepalming: medium skin tone")})}, -{QStringLiteral("man facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man facepalming: medium-dark skin tone"), QStringLiteral("man facepalming: medium-dark skin tone")})}, -{QStringLiteral("man facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man facepalming: dark skin tone"), QStringLiteral("man facepalming: dark skin tone")})}, -{QStringLiteral("woman facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman facepalming: light skin tone"), QStringLiteral("woman facepalming: light skin tone")})}, -{QStringLiteral("woman facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman facepalming: medium-light skin tone"), QStringLiteral("woman facepalming: medium-light skin tone")})}, -{QStringLiteral("woman facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman facepalming: medium skin tone"), QStringLiteral("woman facepalming: medium skin tone")})}, -{QStringLiteral("woman facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman facepalming: medium-dark skin tone"), QStringLiteral("woman facepalming: medium-dark skin tone")})}, -{QStringLiteral("woman facepalming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F926\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman facepalming: dark skin tone"), QStringLiteral("woman facepalming: dark skin tone")})}, -{QStringLiteral("person shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FB"), QStringLiteral("shrug_tone1"), QStringLiteral("person shrugging: light skin tone")})}, -{QStringLiteral("person shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FC"), QStringLiteral("shrug_tone2"), QStringLiteral("person shrugging: medium-light skin tone")})}, -{QStringLiteral("person shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FD"), QStringLiteral("shrug_tone3"), QStringLiteral("person shrugging: medium skin tone")})}, -{QStringLiteral("person shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FE"), QStringLiteral("shrug_tone4"), QStringLiteral("person shrugging: medium-dark skin tone")})}, -{QStringLiteral("person shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FF"), QStringLiteral("shrug_tone5"), QStringLiteral("person shrugging: dark skin tone")})}, -{QStringLiteral("man shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man shrugging: light skin tone"), QStringLiteral("man shrugging: light skin tone")})}, -{QStringLiteral("man shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man shrugging: medium-light skin tone"), QStringLiteral("man shrugging: medium-light skin tone")})}, -{QStringLiteral("man shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man shrugging: medium skin tone"), QStringLiteral("man shrugging: medium skin tone")})}, -{QStringLiteral("man shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man shrugging: medium-dark skin tone"), QStringLiteral("man shrugging: medium-dark skin tone")})}, -{QStringLiteral("man shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man shrugging: dark skin tone"), QStringLiteral("man shrugging: dark skin tone")})}, -{QStringLiteral("woman shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman shrugging: light skin tone"), QStringLiteral("woman shrugging: light skin tone")})}, -{QStringLiteral("woman shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman shrugging: medium-light skin tone"), QStringLiteral("woman shrugging: medium-light skin tone")})}, -{QStringLiteral("woman shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman shrugging: medium skin tone"), QStringLiteral("woman shrugging: medium skin tone")})}, -{QStringLiteral("woman shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman shrugging: medium-dark skin tone"), QStringLiteral("woman shrugging: medium-dark skin tone")})}, -{QStringLiteral("woman shrugging"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F937\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman shrugging: dark skin tone"), QStringLiteral("woman shrugging: dark skin tone")})}, -{QStringLiteral("health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002695\U0000FE0F"), QStringLiteral("health worker: light skin tone"), QStringLiteral("health worker: light skin tone")})}, -{QStringLiteral("health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002695\U0000FE0F"), QStringLiteral("health worker: medium-light skin tone"), QStringLiteral("health worker: medium-light skin tone")})}, -{QStringLiteral("health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002695\U0000FE0F"), QStringLiteral("health worker: medium skin tone"), QStringLiteral("health worker: medium skin tone")})}, -{QStringLiteral("health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002695\U0000FE0F"), QStringLiteral("health worker: medium-dark skin tone"), QStringLiteral("health worker: medium-dark skin tone")})}, -{QStringLiteral("health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002695\U0000FE0F"), QStringLiteral("health worker: dark skin tone"), QStringLiteral("health worker: dark skin tone")})}, -{QStringLiteral("man health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002695\U0000FE0F"), QStringLiteral("man health worker: light skin tone"), QStringLiteral("man health worker: light skin tone")})}, -{QStringLiteral("man health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002695\U0000FE0F"), QStringLiteral("man health worker: medium-light skin tone"), QStringLiteral("man health worker: medium-light skin tone")})}, -{QStringLiteral("man health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002695\U0000FE0F"), QStringLiteral("man health worker: medium skin tone"), QStringLiteral("man health worker: medium skin tone")})}, -{QStringLiteral("man health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002695\U0000FE0F"), QStringLiteral("man health worker: medium-dark skin tone"), QStringLiteral("man health worker: medium-dark skin tone")})}, -{QStringLiteral("man health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002695\U0000FE0F"), QStringLiteral("man health worker: dark skin tone"), QStringLiteral("man health worker: dark skin tone")})}, -{QStringLiteral("woman health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002695\U0000FE0F"), QStringLiteral("woman health worker: light skin tone"), QStringLiteral("woman health worker: light skin tone")})}, -{QStringLiteral("woman health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002695\U0000FE0F"), QStringLiteral("woman health worker: medium-light skin tone"), QStringLiteral("woman health worker: medium-light skin tone")})}, -{QStringLiteral("woman health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002695\U0000FE0F"), QStringLiteral("woman health worker: medium skin tone"), QStringLiteral("woman health worker: medium skin tone")})}, -{QStringLiteral("woman health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002695\U0000FE0F"), QStringLiteral("woman health worker: medium-dark skin tone"), QStringLiteral("woman health worker: medium-dark skin tone")})}, -{QStringLiteral("woman health worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002695\U0000FE0F"), QStringLiteral("woman health worker: dark skin tone"), QStringLiteral("woman health worker: dark skin tone")})}, -{QStringLiteral("student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F393"), QStringLiteral("student: light skin tone"), QStringLiteral("student: light skin tone")})}, -{QStringLiteral("student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F393"), QStringLiteral("student: medium-light skin tone"), QStringLiteral("student: medium-light skin tone")})}, -{QStringLiteral("student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F393"), QStringLiteral("student: medium skin tone"), QStringLiteral("student: medium skin tone")})}, -{QStringLiteral("student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F393"), QStringLiteral("student: medium-dark skin tone"), QStringLiteral("student: medium-dark skin tone")})}, -{QStringLiteral("student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F393"), QStringLiteral("student: dark skin tone"), QStringLiteral("student: dark skin tone")})}, -{QStringLiteral("man student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F393"), QStringLiteral("man student: light skin tone"), QStringLiteral("man student: light skin tone")})}, -{QStringLiteral("man student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F393"), QStringLiteral("man student: medium-light skin tone"), QStringLiteral("man student: medium-light skin tone")})}, -{QStringLiteral("man student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F393"), QStringLiteral("man student: medium skin tone"), QStringLiteral("man student: medium skin tone")})}, -{QStringLiteral("man student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F393"), QStringLiteral("man student: medium-dark skin tone"), QStringLiteral("man student: medium-dark skin tone")})}, -{QStringLiteral("man student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F393"), QStringLiteral("man student: dark skin tone"), QStringLiteral("man student: dark skin tone")})}, -{QStringLiteral("woman student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F393"), QStringLiteral("woman student: light skin tone"), QStringLiteral("woman student: light skin tone")})}, -{QStringLiteral("woman student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F393"), QStringLiteral("woman student: medium-light skin tone"), QStringLiteral("woman student: medium-light skin tone")})}, -{QStringLiteral("woman student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F393"), QStringLiteral("woman student: medium skin tone"), QStringLiteral("woman student: medium skin tone")})}, -{QStringLiteral("woman student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F393"), QStringLiteral("woman student: medium-dark skin tone"), QStringLiteral("woman student: medium-dark skin tone")})}, -{QStringLiteral("woman student"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F393"), QStringLiteral("woman student: dark skin tone"), QStringLiteral("woman student: dark skin tone")})}, -{QStringLiteral("teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F3EB"), QStringLiteral("teacher: light skin tone"), QStringLiteral("teacher: light skin tone")})}, -{QStringLiteral("teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F3EB"), QStringLiteral("teacher: medium-light skin tone"), QStringLiteral("teacher: medium-light skin tone")})}, -{QStringLiteral("teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F3EB"), QStringLiteral("teacher: medium skin tone"), QStringLiteral("teacher: medium skin tone")})}, -{QStringLiteral("teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F3EB"), QStringLiteral("teacher: medium-dark skin tone"), QStringLiteral("teacher: medium-dark skin tone")})}, -{QStringLiteral("teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F3EB"), QStringLiteral("teacher: dark skin tone"), QStringLiteral("teacher: dark skin tone")})}, -{QStringLiteral("man teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F3EB"), QStringLiteral("man teacher: light skin tone"), QStringLiteral("man teacher: light skin tone")})}, -{QStringLiteral("man teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F3EB"), QStringLiteral("man teacher: medium-light skin tone"), QStringLiteral("man teacher: medium-light skin tone")})}, -{QStringLiteral("man teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F3EB"), QStringLiteral("man teacher: medium skin tone"), QStringLiteral("man teacher: medium skin tone")})}, -{QStringLiteral("man teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F3EB"), QStringLiteral("man teacher: medium-dark skin tone"), QStringLiteral("man teacher: medium-dark skin tone")})}, -{QStringLiteral("man teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F3EB"), QStringLiteral("man teacher: dark skin tone"), QStringLiteral("man teacher: dark skin tone")})}, -{QStringLiteral("woman teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F3EB"), QStringLiteral("woman teacher: light skin tone"), QStringLiteral("woman teacher: light skin tone")})}, -{QStringLiteral("woman teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F3EB"), QStringLiteral("woman teacher: medium-light skin tone"), QStringLiteral("woman teacher: medium-light skin tone")})}, -{QStringLiteral("woman teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F3EB"), QStringLiteral("woman teacher: medium skin tone"), QStringLiteral("woman teacher: medium skin tone")})}, -{QStringLiteral("woman teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F3EB"), QStringLiteral("woman teacher: medium-dark skin tone"), QStringLiteral("woman teacher: medium-dark skin tone")})}, -{QStringLiteral("woman teacher"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F3EB"), QStringLiteral("woman teacher: dark skin tone"), QStringLiteral("woman teacher: dark skin tone")})}, -{QStringLiteral("judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002696\U0000FE0F"), QStringLiteral("judge: light skin tone"), QStringLiteral("judge: light skin tone")})}, -{QStringLiteral("judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002696\U0000FE0F"), QStringLiteral("judge: medium-light skin tone"), QStringLiteral("judge: medium-light skin tone")})}, -{QStringLiteral("judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002696\U0000FE0F"), QStringLiteral("judge: medium skin tone"), QStringLiteral("judge: medium skin tone")})}, -{QStringLiteral("judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002696\U0000FE0F"), QStringLiteral("judge: medium-dark skin tone"), QStringLiteral("judge: medium-dark skin tone")})}, -{QStringLiteral("judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002696\U0000FE0F"), QStringLiteral("judge: dark skin tone"), QStringLiteral("judge: dark skin tone")})}, -{QStringLiteral("man judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002696\U0000FE0F"), QStringLiteral("man judge: light skin tone"), QStringLiteral("man judge: light skin tone")})}, -{QStringLiteral("man judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002696\U0000FE0F"), QStringLiteral("man judge: medium-light skin tone"), QStringLiteral("man judge: medium-light skin tone")})}, -{QStringLiteral("man judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002696\U0000FE0F"), QStringLiteral("man judge: medium skin tone"), QStringLiteral("man judge: medium skin tone")})}, -{QStringLiteral("man judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002696\U0000FE0F"), QStringLiteral("man judge: medium-dark skin tone"), QStringLiteral("man judge: medium-dark skin tone")})}, -{QStringLiteral("man judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002696\U0000FE0F"), QStringLiteral("man judge: dark skin tone"), QStringLiteral("man judge: dark skin tone")})}, -{QStringLiteral("woman judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002696\U0000FE0F"), QStringLiteral("woman judge: light skin tone"), QStringLiteral("woman judge: light skin tone")})}, -{QStringLiteral("woman judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002696\U0000FE0F"), QStringLiteral("woman judge: medium-light skin tone"), QStringLiteral("woman judge: medium-light skin tone")})}, -{QStringLiteral("woman judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002696\U0000FE0F"), QStringLiteral("woman judge: medium skin tone"), QStringLiteral("woman judge: medium skin tone")})}, -{QStringLiteral("woman judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002696\U0000FE0F"), QStringLiteral("woman judge: medium-dark skin tone"), QStringLiteral("woman judge: medium-dark skin tone")})}, -{QStringLiteral("woman judge"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002696\U0000FE0F"), QStringLiteral("woman judge: dark skin tone"), QStringLiteral("woman judge: dark skin tone")})}, -{QStringLiteral("farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F33E"), QStringLiteral("farmer: light skin tone"), QStringLiteral("farmer: light skin tone")})}, -{QStringLiteral("farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F33E"), QStringLiteral("farmer: medium-light skin tone"), QStringLiteral("farmer: medium-light skin tone")})}, -{QStringLiteral("farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F33E"), QStringLiteral("farmer: medium skin tone"), QStringLiteral("farmer: medium skin tone")})}, -{QStringLiteral("farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F33E"), QStringLiteral("farmer: medium-dark skin tone"), QStringLiteral("farmer: medium-dark skin tone")})}, -{QStringLiteral("farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F33E"), QStringLiteral("farmer: dark skin tone"), QStringLiteral("farmer: dark skin tone")})}, -{QStringLiteral("man farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F33E"), QStringLiteral("man farmer: light skin tone"), QStringLiteral("man farmer: light skin tone")})}, -{QStringLiteral("man farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F33E"), QStringLiteral("man farmer: medium-light skin tone"), QStringLiteral("man farmer: medium-light skin tone")})}, -{QStringLiteral("man farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F33E"), QStringLiteral("man farmer: medium skin tone"), QStringLiteral("man farmer: medium skin tone")})}, -{QStringLiteral("man farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F33E"), QStringLiteral("man farmer: medium-dark skin tone"), QStringLiteral("man farmer: medium-dark skin tone")})}, -{QStringLiteral("man farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F33E"), QStringLiteral("man farmer: dark skin tone"), QStringLiteral("man farmer: dark skin tone")})}, -{QStringLiteral("woman farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F33E"), QStringLiteral("woman farmer: light skin tone"), QStringLiteral("woman farmer: light skin tone")})}, -{QStringLiteral("woman farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F33E"), QStringLiteral("woman farmer: medium-light skin tone"), QStringLiteral("woman farmer: medium-light skin tone")})}, -{QStringLiteral("woman farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F33E"), QStringLiteral("woman farmer: medium skin tone"), QStringLiteral("woman farmer: medium skin tone")})}, -{QStringLiteral("woman farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F33E"), QStringLiteral("woman farmer: medium-dark skin tone"), QStringLiteral("woman farmer: medium-dark skin tone")})}, -{QStringLiteral("woman farmer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F33E"), QStringLiteral("woman farmer: dark skin tone"), QStringLiteral("woman farmer: dark skin tone")})}, -{QStringLiteral("cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F373"), QStringLiteral("cook: light skin tone"), QStringLiteral("cook: light skin tone")})}, -{QStringLiteral("cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F373"), QStringLiteral("cook: medium-light skin tone"), QStringLiteral("cook: medium-light skin tone")})}, -{QStringLiteral("cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F373"), QStringLiteral("cook: medium skin tone"), QStringLiteral("cook: medium skin tone")})}, -{QStringLiteral("cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F373"), QStringLiteral("cook: medium-dark skin tone"), QStringLiteral("cook: medium-dark skin tone")})}, -{QStringLiteral("cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F373"), QStringLiteral("cook: dark skin tone"), QStringLiteral("cook: dark skin tone")})}, -{QStringLiteral("man cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F373"), QStringLiteral("man cook: light skin tone"), QStringLiteral("man cook: light skin tone")})}, -{QStringLiteral("man cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F373"), QStringLiteral("man cook: medium-light skin tone"), QStringLiteral("man cook: medium-light skin tone")})}, -{QStringLiteral("man cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F373"), QStringLiteral("man cook: medium skin tone"), QStringLiteral("man cook: medium skin tone")})}, -{QStringLiteral("man cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F373"), QStringLiteral("man cook: medium-dark skin tone"), QStringLiteral("man cook: medium-dark skin tone")})}, -{QStringLiteral("man cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F373"), QStringLiteral("man cook: dark skin tone"), QStringLiteral("man cook: dark skin tone")})}, -{QStringLiteral("woman cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F373"), QStringLiteral("woman cook: light skin tone"), QStringLiteral("woman cook: light skin tone")})}, -{QStringLiteral("woman cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F373"), QStringLiteral("woman cook: medium-light skin tone"), QStringLiteral("woman cook: medium-light skin tone")})}, -{QStringLiteral("woman cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F373"), QStringLiteral("woman cook: medium skin tone"), QStringLiteral("woman cook: medium skin tone")})}, -{QStringLiteral("woman cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F373"), QStringLiteral("woman cook: medium-dark skin tone"), QStringLiteral("woman cook: medium-dark skin tone")})}, -{QStringLiteral("woman cook"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F373"), QStringLiteral("woman cook: dark skin tone"), QStringLiteral("woman cook: dark skin tone")})}, -{QStringLiteral("mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F527"), QStringLiteral("mechanic: light skin tone"), QStringLiteral("mechanic: light skin tone")})}, -{QStringLiteral("mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F527"), QStringLiteral("mechanic: medium-light skin tone"), QStringLiteral("mechanic: medium-light skin tone")})}, -{QStringLiteral("mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F527"), QStringLiteral("mechanic: medium skin tone"), QStringLiteral("mechanic: medium skin tone")})}, -{QStringLiteral("mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F527"), QStringLiteral("mechanic: medium-dark skin tone"), QStringLiteral("mechanic: medium-dark skin tone")})}, -{QStringLiteral("mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F527"), QStringLiteral("mechanic: dark skin tone"), QStringLiteral("mechanic: dark skin tone")})}, -{QStringLiteral("man mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F527"), QStringLiteral("man mechanic: light skin tone"), QStringLiteral("man mechanic: light skin tone")})}, -{QStringLiteral("man mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F527"), QStringLiteral("man mechanic: medium-light skin tone"), QStringLiteral("man mechanic: medium-light skin tone")})}, -{QStringLiteral("man mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F527"), QStringLiteral("man mechanic: medium skin tone"), QStringLiteral("man mechanic: medium skin tone")})}, -{QStringLiteral("man mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F527"), QStringLiteral("man mechanic: medium-dark skin tone"), QStringLiteral("man mechanic: medium-dark skin tone")})}, -{QStringLiteral("man mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F527"), QStringLiteral("man mechanic: dark skin tone"), QStringLiteral("man mechanic: dark skin tone")})}, -{QStringLiteral("woman mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F527"), QStringLiteral("woman mechanic: light skin tone"), QStringLiteral("woman mechanic: light skin tone")})}, -{QStringLiteral("woman mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F527"), QStringLiteral("woman mechanic: medium-light skin tone"), QStringLiteral("woman mechanic: medium-light skin tone")})}, -{QStringLiteral("woman mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F527"), QStringLiteral("woman mechanic: medium skin tone"), QStringLiteral("woman mechanic: medium skin tone")})}, -{QStringLiteral("woman mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F527"), QStringLiteral("woman mechanic: medium-dark skin tone"), QStringLiteral("woman mechanic: medium-dark skin tone")})}, -{QStringLiteral("woman mechanic"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F527"), QStringLiteral("woman mechanic: dark skin tone"), QStringLiteral("woman mechanic: dark skin tone")})}, -{QStringLiteral("factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F3ED"), QStringLiteral("factory worker: light skin tone"), QStringLiteral("factory worker: light skin tone")})}, -{QStringLiteral("factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F3ED"), QStringLiteral("factory worker: medium-light skin tone"), QStringLiteral("factory worker: medium-light skin tone")})}, -{QStringLiteral("factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F3ED"), QStringLiteral("factory worker: medium skin tone"), QStringLiteral("factory worker: medium skin tone")})}, -{QStringLiteral("factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F3ED"), QStringLiteral("factory worker: medium-dark skin tone"), QStringLiteral("factory worker: medium-dark skin tone")})}, -{QStringLiteral("factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F3ED"), QStringLiteral("factory worker: dark skin tone"), QStringLiteral("factory worker: dark skin tone")})}, -{QStringLiteral("man factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F3ED"), QStringLiteral("man factory worker: light skin tone"), QStringLiteral("man factory worker: light skin tone")})}, -{QStringLiteral("man factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F3ED"), QStringLiteral("man factory worker: medium-light skin tone"), QStringLiteral("man factory worker: medium-light skin tone")})}, -{QStringLiteral("man factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F3ED"), QStringLiteral("man factory worker: medium skin tone"), QStringLiteral("man factory worker: medium skin tone")})}, -{QStringLiteral("man factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F3ED"), QStringLiteral("man factory worker: medium-dark skin tone"), QStringLiteral("man factory worker: medium-dark skin tone")})}, -{QStringLiteral("man factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F3ED"), QStringLiteral("man factory worker: dark skin tone"), QStringLiteral("man factory worker: dark skin tone")})}, -{QStringLiteral("woman factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F3ED"), QStringLiteral("woman factory worker: light skin tone"), QStringLiteral("woman factory worker: light skin tone")})}, -{QStringLiteral("woman factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F3ED"), QStringLiteral("woman factory worker: medium-light skin tone"), QStringLiteral("woman factory worker: medium-light skin tone")})}, -{QStringLiteral("woman factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F3ED"), QStringLiteral("woman factory worker: medium skin tone"), QStringLiteral("woman factory worker: medium skin tone")})}, -{QStringLiteral("woman factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F3ED"), QStringLiteral("woman factory worker: medium-dark skin tone"), QStringLiteral("woman factory worker: medium-dark skin tone")})}, -{QStringLiteral("woman factory worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F3ED"), QStringLiteral("woman factory worker: dark skin tone"), QStringLiteral("woman factory worker: dark skin tone")})}, -{QStringLiteral("office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F4BC"), QStringLiteral("office worker: light skin tone"), QStringLiteral("office worker: light skin tone")})}, -{QStringLiteral("office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F4BC"), QStringLiteral("office worker: medium-light skin tone"), QStringLiteral("office worker: medium-light skin tone")})}, -{QStringLiteral("office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F4BC"), QStringLiteral("office worker: medium skin tone"), QStringLiteral("office worker: medium skin tone")})}, -{QStringLiteral("office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F4BC"), QStringLiteral("office worker: medium-dark skin tone"), QStringLiteral("office worker: medium-dark skin tone")})}, -{QStringLiteral("office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F4BC"), QStringLiteral("office worker: dark skin tone"), QStringLiteral("office worker: dark skin tone")})}, -{QStringLiteral("man office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F4BC"), QStringLiteral("man office worker: light skin tone"), QStringLiteral("man office worker: light skin tone")})}, -{QStringLiteral("man office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F4BC"), QStringLiteral("man office worker: medium-light skin tone"), QStringLiteral("man office worker: medium-light skin tone")})}, -{QStringLiteral("man office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F4BC"), QStringLiteral("man office worker: medium skin tone"), QStringLiteral("man office worker: medium skin tone")})}, -{QStringLiteral("man office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F4BC"), QStringLiteral("man office worker: medium-dark skin tone"), QStringLiteral("man office worker: medium-dark skin tone")})}, -{QStringLiteral("man office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F4BC"), QStringLiteral("man office worker: dark skin tone"), QStringLiteral("man office worker: dark skin tone")})}, -{QStringLiteral("woman office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F4BC"), QStringLiteral("woman office worker: light skin tone"), QStringLiteral("woman office worker: light skin tone")})}, -{QStringLiteral("woman office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F4BC"), QStringLiteral("woman office worker: medium-light skin tone"), QStringLiteral("woman office worker: medium-light skin tone")})}, -{QStringLiteral("woman office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F4BC"), QStringLiteral("woman office worker: medium skin tone"), QStringLiteral("woman office worker: medium skin tone")})}, -{QStringLiteral("woman office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F4BC"), QStringLiteral("woman office worker: medium-dark skin tone"), QStringLiteral("woman office worker: medium-dark skin tone")})}, -{QStringLiteral("woman office worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F4BC"), QStringLiteral("woman office worker: dark skin tone"), QStringLiteral("woman office worker: dark skin tone")})}, -{QStringLiteral("scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F52C"), QStringLiteral("scientist: light skin tone"), QStringLiteral("scientist: light skin tone")})}, -{QStringLiteral("scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F52C"), QStringLiteral("scientist: medium-light skin tone"), QStringLiteral("scientist: medium-light skin tone")})}, -{QStringLiteral("scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F52C"), QStringLiteral("scientist: medium skin tone"), QStringLiteral("scientist: medium skin tone")})}, -{QStringLiteral("scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F52C"), QStringLiteral("scientist: medium-dark skin tone"), QStringLiteral("scientist: medium-dark skin tone")})}, -{QStringLiteral("scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F52C"), QStringLiteral("scientist: dark skin tone"), QStringLiteral("scientist: dark skin tone")})}, -{QStringLiteral("man scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F52C"), QStringLiteral("man scientist: light skin tone"), QStringLiteral("man scientist: light skin tone")})}, -{QStringLiteral("man scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F52C"), QStringLiteral("man scientist: medium-light skin tone"), QStringLiteral("man scientist: medium-light skin tone")})}, -{QStringLiteral("man scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F52C"), QStringLiteral("man scientist: medium skin tone"), QStringLiteral("man scientist: medium skin tone")})}, -{QStringLiteral("man scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F52C"), QStringLiteral("man scientist: medium-dark skin tone"), QStringLiteral("man scientist: medium-dark skin tone")})}, -{QStringLiteral("man scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F52C"), QStringLiteral("man scientist: dark skin tone"), QStringLiteral("man scientist: dark skin tone")})}, -{QStringLiteral("woman scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F52C"), QStringLiteral("woman scientist: light skin tone"), QStringLiteral("woman scientist: light skin tone")})}, -{QStringLiteral("woman scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F52C"), QStringLiteral("woman scientist: medium-light skin tone"), QStringLiteral("woman scientist: medium-light skin tone")})}, -{QStringLiteral("woman scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F52C"), QStringLiteral("woman scientist: medium skin tone"), QStringLiteral("woman scientist: medium skin tone")})}, -{QStringLiteral("woman scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F52C"), QStringLiteral("woman scientist: medium-dark skin tone"), QStringLiteral("woman scientist: medium-dark skin tone")})}, -{QStringLiteral("woman scientist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F52C"), QStringLiteral("woman scientist: dark skin tone"), QStringLiteral("woman scientist: dark skin tone")})}, -{QStringLiteral("technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F4BB"), QStringLiteral("technologist: light skin tone"), QStringLiteral("technologist: light skin tone")})}, -{QStringLiteral("technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F4BB"), QStringLiteral("technologist: medium-light skin tone"), QStringLiteral("technologist: medium-light skin tone")})}, -{QStringLiteral("technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F4BB"), QStringLiteral("technologist: medium skin tone"), QStringLiteral("technologist: medium skin tone")})}, -{QStringLiteral("technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F4BB"), QStringLiteral("technologist: medium-dark skin tone"), QStringLiteral("technologist: medium-dark skin tone")})}, -{QStringLiteral("technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F4BB"), QStringLiteral("technologist: dark skin tone"), QStringLiteral("technologist: dark skin tone")})}, -{QStringLiteral("man technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F4BB"), QStringLiteral("man technologist: light skin tone"), QStringLiteral("man technologist: light skin tone")})}, -{QStringLiteral("man technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F4BB"), QStringLiteral("man technologist: medium-light skin tone"), QStringLiteral("man technologist: medium-light skin tone")})}, -{QStringLiteral("man technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F4BB"), QStringLiteral("man technologist: medium skin tone"), QStringLiteral("man technologist: medium skin tone")})}, -{QStringLiteral("man technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F4BB"), QStringLiteral("man technologist: medium-dark skin tone"), QStringLiteral("man technologist: medium-dark skin tone")})}, -{QStringLiteral("man technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F4BB"), QStringLiteral("man technologist: dark skin tone"), QStringLiteral("man technologist: dark skin tone")})}, -{QStringLiteral("woman technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F4BB"), QStringLiteral("woman technologist: light skin tone"), QStringLiteral("woman technologist: light skin tone")})}, -{QStringLiteral("woman technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F4BB"), QStringLiteral("woman technologist: medium-light skin tone"), QStringLiteral("woman technologist: medium-light skin tone")})}, -{QStringLiteral("woman technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F4BB"), QStringLiteral("woman technologist: medium skin tone"), QStringLiteral("woman technologist: medium skin tone")})}, -{QStringLiteral("woman technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F4BB"), QStringLiteral("woman technologist: medium-dark skin tone"), QStringLiteral("woman technologist: medium-dark skin tone")})}, -{QStringLiteral("woman technologist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F4BB"), QStringLiteral("woman technologist: dark skin tone"), QStringLiteral("woman technologist: dark skin tone")})}, -{QStringLiteral("singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F3A4"), QStringLiteral("singer: light skin tone"), QStringLiteral("singer: light skin tone")})}, -{QStringLiteral("singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F3A4"), QStringLiteral("singer: medium-light skin tone"), QStringLiteral("singer: medium-light skin tone")})}, -{QStringLiteral("singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F3A4"), QStringLiteral("singer: medium skin tone"), QStringLiteral("singer: medium skin tone")})}, -{QStringLiteral("singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F3A4"), QStringLiteral("singer: medium-dark skin tone"), QStringLiteral("singer: medium-dark skin tone")})}, -{QStringLiteral("singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F3A4"), QStringLiteral("singer: dark skin tone"), QStringLiteral("singer: dark skin tone")})}, -{QStringLiteral("man singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F3A4"), QStringLiteral("man singer: light skin tone"), QStringLiteral("man singer: light skin tone")})}, -{QStringLiteral("man singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F3A4"), QStringLiteral("man singer: medium-light skin tone"), QStringLiteral("man singer: medium-light skin tone")})}, -{QStringLiteral("man singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F3A4"), QStringLiteral("man singer: medium skin tone"), QStringLiteral("man singer: medium skin tone")})}, -{QStringLiteral("man singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F3A4"), QStringLiteral("man singer: medium-dark skin tone"), QStringLiteral("man singer: medium-dark skin tone")})}, -{QStringLiteral("man singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F3A4"), QStringLiteral("man singer: dark skin tone"), QStringLiteral("man singer: dark skin tone")})}, -{QStringLiteral("woman singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F3A4"), QStringLiteral("woman singer: light skin tone"), QStringLiteral("woman singer: light skin tone")})}, -{QStringLiteral("woman singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F3A4"), QStringLiteral("woman singer: medium-light skin tone"), QStringLiteral("woman singer: medium-light skin tone")})}, -{QStringLiteral("woman singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F3A4"), QStringLiteral("woman singer: medium skin tone"), QStringLiteral("woman singer: medium skin tone")})}, -{QStringLiteral("woman singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F3A4"), QStringLiteral("woman singer: medium-dark skin tone"), QStringLiteral("woman singer: medium-dark skin tone")})}, -{QStringLiteral("woman singer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F3A4"), QStringLiteral("woman singer: dark skin tone"), QStringLiteral("woman singer: dark skin tone")})}, -{QStringLiteral("artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F3A8"), QStringLiteral("artist: light skin tone"), QStringLiteral("artist: light skin tone")})}, -{QStringLiteral("artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F3A8"), QStringLiteral("artist: medium-light skin tone"), QStringLiteral("artist: medium-light skin tone")})}, -{QStringLiteral("artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F3A8"), QStringLiteral("artist: medium skin tone"), QStringLiteral("artist: medium skin tone")})}, -{QStringLiteral("artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F3A8"), QStringLiteral("artist: medium-dark skin tone"), QStringLiteral("artist: medium-dark skin tone")})}, -{QStringLiteral("artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F3A8"), QStringLiteral("artist: dark skin tone"), QStringLiteral("artist: dark skin tone")})}, -{QStringLiteral("man artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F3A8"), QStringLiteral("man artist: light skin tone"), QStringLiteral("man artist: light skin tone")})}, -{QStringLiteral("man artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F3A8"), QStringLiteral("man artist: medium-light skin tone"), QStringLiteral("man artist: medium-light skin tone")})}, -{QStringLiteral("man artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F3A8"), QStringLiteral("man artist: medium skin tone"), QStringLiteral("man artist: medium skin tone")})}, -{QStringLiteral("man artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F3A8"), QStringLiteral("man artist: medium-dark skin tone"), QStringLiteral("man artist: medium-dark skin tone")})}, -{QStringLiteral("man artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F3A8"), QStringLiteral("man artist: dark skin tone"), QStringLiteral("man artist: dark skin tone")})}, -{QStringLiteral("woman artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F3A8"), QStringLiteral("woman artist: light skin tone"), QStringLiteral("woman artist: light skin tone")})}, -{QStringLiteral("woman artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F3A8"), QStringLiteral("woman artist: medium-light skin tone"), QStringLiteral("woman artist: medium-light skin tone")})}, -{QStringLiteral("woman artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F3A8"), QStringLiteral("woman artist: medium skin tone"), QStringLiteral("woman artist: medium skin tone")})}, -{QStringLiteral("woman artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F3A8"), QStringLiteral("woman artist: medium-dark skin tone"), QStringLiteral("woman artist: medium-dark skin tone")})}, -{QStringLiteral("woman artist"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F3A8"), QStringLiteral("woman artist: dark skin tone"), QStringLiteral("woman artist: dark skin tone")})}, -{QStringLiteral("pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002708\U0000FE0F"), QStringLiteral("pilot: light skin tone"), QStringLiteral("pilot: light skin tone")})}, -{QStringLiteral("pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002708\U0000FE0F"), QStringLiteral("pilot: medium-light skin tone"), QStringLiteral("pilot: medium-light skin tone")})}, -{QStringLiteral("pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002708\U0000FE0F"), QStringLiteral("pilot: medium skin tone"), QStringLiteral("pilot: medium skin tone")})}, -{QStringLiteral("pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002708\U0000FE0F"), QStringLiteral("pilot: medium-dark skin tone"), QStringLiteral("pilot: medium-dark skin tone")})}, -{QStringLiteral("pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002708\U0000FE0F"), QStringLiteral("pilot: dark skin tone"), QStringLiteral("pilot: dark skin tone")})}, -{QStringLiteral("man pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002708\U0000FE0F"), QStringLiteral("man pilot: light skin tone"), QStringLiteral("man pilot: light skin tone")})}, -{QStringLiteral("man pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002708\U0000FE0F"), QStringLiteral("man pilot: medium-light skin tone"), QStringLiteral("man pilot: medium-light skin tone")})}, -{QStringLiteral("man pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002708\U0000FE0F"), QStringLiteral("man pilot: medium skin tone"), QStringLiteral("man pilot: medium skin tone")})}, -{QStringLiteral("man pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002708\U0000FE0F"), QStringLiteral("man pilot: medium-dark skin tone"), QStringLiteral("man pilot: medium-dark skin tone")})}, -{QStringLiteral("man pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002708\U0000FE0F"), QStringLiteral("man pilot: dark skin tone"), QStringLiteral("man pilot: dark skin tone")})}, -{QStringLiteral("woman pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002708\U0000FE0F"), QStringLiteral("woman pilot: light skin tone"), QStringLiteral("woman pilot: light skin tone")})}, -{QStringLiteral("woman pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002708\U0000FE0F"), QStringLiteral("woman pilot: medium-light skin tone"), QStringLiteral("woman pilot: medium-light skin tone")})}, -{QStringLiteral("woman pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002708\U0000FE0F"), QStringLiteral("woman pilot: medium skin tone"), QStringLiteral("woman pilot: medium skin tone")})}, -{QStringLiteral("woman pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002708\U0000FE0F"), QStringLiteral("woman pilot: medium-dark skin tone"), QStringLiteral("woman pilot: medium-dark skin tone")})}, -{QStringLiteral("woman pilot"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002708\U0000FE0F"), QStringLiteral("woman pilot: dark skin tone"), QStringLiteral("woman pilot: dark skin tone")})}, -{QStringLiteral("astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F680"), QStringLiteral("astronaut: light skin tone"), QStringLiteral("astronaut: light skin tone")})}, -{QStringLiteral("astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F680"), QStringLiteral("astronaut: medium-light skin tone"), QStringLiteral("astronaut: medium-light skin tone")})}, -{QStringLiteral("astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F680"), QStringLiteral("astronaut: medium skin tone"), QStringLiteral("astronaut: medium skin tone")})}, -{QStringLiteral("astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F680"), QStringLiteral("astronaut: medium-dark skin tone"), QStringLiteral("astronaut: medium-dark skin tone")})}, -{QStringLiteral("astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F680"), QStringLiteral("astronaut: dark skin tone"), QStringLiteral("astronaut: dark skin tone")})}, -{QStringLiteral("man astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F680"), QStringLiteral("man astronaut: light skin tone"), QStringLiteral("man astronaut: light skin tone")})}, -{QStringLiteral("man astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F680"), QStringLiteral("man astronaut: medium-light skin tone"), QStringLiteral("man astronaut: medium-light skin tone")})}, -{QStringLiteral("man astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F680"), QStringLiteral("man astronaut: medium skin tone"), QStringLiteral("man astronaut: medium skin tone")})}, -{QStringLiteral("man astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F680"), QStringLiteral("man astronaut: medium-dark skin tone"), QStringLiteral("man astronaut: medium-dark skin tone")})}, -{QStringLiteral("man astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F680"), QStringLiteral("man astronaut: dark skin tone"), QStringLiteral("man astronaut: dark skin tone")})}, -{QStringLiteral("woman astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F680"), QStringLiteral("woman astronaut: light skin tone"), QStringLiteral("woman astronaut: light skin tone")})}, -{QStringLiteral("woman astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F680"), QStringLiteral("woman astronaut: medium-light skin tone"), QStringLiteral("woman astronaut: medium-light skin tone")})}, -{QStringLiteral("woman astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F680"), QStringLiteral("woman astronaut: medium skin tone"), QStringLiteral("woman astronaut: medium skin tone")})}, -{QStringLiteral("woman astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F680"), QStringLiteral("woman astronaut: medium-dark skin tone"), QStringLiteral("woman astronaut: medium-dark skin tone")})}, -{QStringLiteral("woman astronaut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F680"), QStringLiteral("woman astronaut: dark skin tone"), QStringLiteral("woman astronaut: dark skin tone")})}, -{QStringLiteral("firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F692"), QStringLiteral("firefighter: light skin tone"), QStringLiteral("firefighter: light skin tone")})}, -{QStringLiteral("firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F692"), QStringLiteral("firefighter: medium-light skin tone"), QStringLiteral("firefighter: medium-light skin tone")})}, -{QStringLiteral("firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F692"), QStringLiteral("firefighter: medium skin tone"), QStringLiteral("firefighter: medium skin tone")})}, -{QStringLiteral("firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F692"), QStringLiteral("firefighter: medium-dark skin tone"), QStringLiteral("firefighter: medium-dark skin tone")})}, -{QStringLiteral("firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F692"), QStringLiteral("firefighter: dark skin tone"), QStringLiteral("firefighter: dark skin tone")})}, -{QStringLiteral("man firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F692"), QStringLiteral("man firefighter: light skin tone"), QStringLiteral("man firefighter: light skin tone")})}, -{QStringLiteral("man firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F692"), QStringLiteral("man firefighter: medium-light skin tone"), QStringLiteral("man firefighter: medium-light skin tone")})}, -{QStringLiteral("man firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F692"), QStringLiteral("man firefighter: medium skin tone"), QStringLiteral("man firefighter: medium skin tone")})}, -{QStringLiteral("man firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F692"), QStringLiteral("man firefighter: medium-dark skin tone"), QStringLiteral("man firefighter: medium-dark skin tone")})}, -{QStringLiteral("man firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F692"), QStringLiteral("man firefighter: dark skin tone"), QStringLiteral("man firefighter: dark skin tone")})}, -{QStringLiteral("woman firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F692"), QStringLiteral("woman firefighter: light skin tone"), QStringLiteral("woman firefighter: light skin tone")})}, -{QStringLiteral("woman firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F692"), QStringLiteral("woman firefighter: medium-light skin tone"), QStringLiteral("woman firefighter: medium-light skin tone")})}, -{QStringLiteral("woman firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F692"), QStringLiteral("woman firefighter: medium skin tone"), QStringLiteral("woman firefighter: medium skin tone")})}, -{QStringLiteral("woman firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F692"), QStringLiteral("woman firefighter: medium-dark skin tone"), QStringLiteral("woman firefighter: medium-dark skin tone")})}, -{QStringLiteral("woman firefighter"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F692"), QStringLiteral("woman firefighter: dark skin tone"), QStringLiteral("woman firefighter: dark skin tone")})}, -{QStringLiteral("police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FB"), QStringLiteral("cop_tone1"), QStringLiteral("police officer: light skin tone")})}, -{QStringLiteral("police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FC"), QStringLiteral("cop_tone2"), QStringLiteral("police officer: medium-light skin tone")})}, -{QStringLiteral("police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FD"), QStringLiteral("cop_tone3"), QStringLiteral("police officer: medium skin tone")})}, -{QStringLiteral("police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FE"), QStringLiteral("cop_tone4"), QStringLiteral("police officer: medium-dark skin tone")})}, -{QStringLiteral("police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FF"), QStringLiteral("cop_tone5"), QStringLiteral("police officer: dark skin tone")})}, -{QStringLiteral("man police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man police officer: light skin tone"), QStringLiteral("man police officer: light skin tone")})}, -{QStringLiteral("man police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man police officer: medium-light skin tone"), QStringLiteral("man police officer: medium-light skin tone")})}, -{QStringLiteral("man police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man police officer: medium skin tone"), QStringLiteral("man police officer: medium skin tone")})}, -{QStringLiteral("man police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man police officer: medium-dark skin tone"), QStringLiteral("man police officer: medium-dark skin tone")})}, -{QStringLiteral("man police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man police officer: dark skin tone"), QStringLiteral("man police officer: dark skin tone")})}, -{QStringLiteral("woman police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman police officer: light skin tone"), QStringLiteral("woman police officer: light skin tone")})}, -{QStringLiteral("woman police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman police officer: medium-light skin tone"), QStringLiteral("woman police officer: medium-light skin tone")})}, -{QStringLiteral("woman police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman police officer: medium skin tone"), QStringLiteral("woman police officer: medium skin tone")})}, -{QStringLiteral("woman police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman police officer: medium-dark skin tone"), QStringLiteral("woman police officer: medium-dark skin tone")})}, -{QStringLiteral("woman police officer"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46E\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman police officer: dark skin tone"), QStringLiteral("woman police officer: dark skin tone")})}, -{QStringLiteral("detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FB"), QStringLiteral("spy_tone1"), QStringLiteral("detective: light skin tone")})}, -{QStringLiteral("detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FC"), QStringLiteral("spy_tone2"), QStringLiteral("detective: medium-light skin tone")})}, -{QStringLiteral("detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FD"), QStringLiteral("spy_tone3"), QStringLiteral("detective: medium skin tone")})}, -{QStringLiteral("detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FE"), QStringLiteral("spy_tone4"), QStringLiteral("detective: medium-dark skin tone")})}, -{QStringLiteral("detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FF"), QStringLiteral("spy_tone5"), QStringLiteral("detective: dark skin tone")})}, -{QStringLiteral("man detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man detective: light skin tone"), QStringLiteral("man detective: light skin tone")})}, -{QStringLiteral("man detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man detective: medium-light skin tone"), QStringLiteral("man detective: medium-light skin tone")})}, -{QStringLiteral("man detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man detective: medium skin tone"), QStringLiteral("man detective: medium skin tone")})}, -{QStringLiteral("man detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man detective: medium-dark skin tone"), QStringLiteral("man detective: medium-dark skin tone")})}, -{QStringLiteral("man detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man detective: dark skin tone"), QStringLiteral("man detective: dark skin tone")})}, -{QStringLiteral("woman detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman detective: light skin tone"), QStringLiteral("woman detective: light skin tone")})}, -{QStringLiteral("woman detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman detective: medium-light skin tone"), QStringLiteral("woman detective: medium-light skin tone")})}, -{QStringLiteral("woman detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman detective: medium skin tone"), QStringLiteral("woman detective: medium skin tone")})}, -{QStringLiteral("woman detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman detective: medium-dark skin tone"), QStringLiteral("woman detective: medium-dark skin tone")})}, -{QStringLiteral("woman detective"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F575\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman detective: dark skin tone"), QStringLiteral("woman detective: dark skin tone")})}, -{QStringLiteral("guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FB"), QStringLiteral("guardsman_tone1"), QStringLiteral("guard: light skin tone")})}, -{QStringLiteral("guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FC"), QStringLiteral("guardsman_tone2"), QStringLiteral("guard: medium-light skin tone")})}, -{QStringLiteral("guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FD"), QStringLiteral("guardsman_tone3"), QStringLiteral("guard: medium skin tone")})}, -{QStringLiteral("guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FE"), QStringLiteral("guardsman_tone4"), QStringLiteral("guard: medium-dark skin tone")})}, -{QStringLiteral("guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FF"), QStringLiteral("guardsman_tone5"), QStringLiteral("guard: dark skin tone")})}, -{QStringLiteral("man guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man guard: light skin tone"), QStringLiteral("man guard: light skin tone")})}, -{QStringLiteral("man guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man guard: medium-light skin tone"), QStringLiteral("man guard: medium-light skin tone")})}, -{QStringLiteral("man guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man guard: medium skin tone"), QStringLiteral("man guard: medium skin tone")})}, -{QStringLiteral("man guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man guard: medium-dark skin tone"), QStringLiteral("man guard: medium-dark skin tone")})}, -{QStringLiteral("man guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man guard: dark skin tone"), QStringLiteral("man guard: dark skin tone")})}, -{QStringLiteral("woman guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman guard: light skin tone"), QStringLiteral("woman guard: light skin tone")})}, -{QStringLiteral("woman guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman guard: medium-light skin tone"), QStringLiteral("woman guard: medium-light skin tone")})}, -{QStringLiteral("woman guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman guard: medium skin tone"), QStringLiteral("woman guard: medium skin tone")})}, -{QStringLiteral("woman guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman guard: medium-dark skin tone"), QStringLiteral("woman guard: medium-dark skin tone")})}, -{QStringLiteral("woman guard"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F482\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman guard: dark skin tone"), QStringLiteral("woman guard: dark skin tone")})}, -{QStringLiteral("ninja"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F977\U0001F3FB"), QStringLiteral("ninja: light skin tone"), QStringLiteral("ninja: light skin tone")})}, -{QStringLiteral("ninja"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F977\U0001F3FC"), QStringLiteral("ninja: medium-light skin tone"), QStringLiteral("ninja: medium-light skin tone")})}, -{QStringLiteral("ninja"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F977\U0001F3FD"), QStringLiteral("ninja: medium skin tone"), QStringLiteral("ninja: medium skin tone")})}, -{QStringLiteral("ninja"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F977\U0001F3FE"), QStringLiteral("ninja: medium-dark skin tone"), QStringLiteral("ninja: medium-dark skin tone")})}, -{QStringLiteral("ninja"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F977\U0001F3FF"), QStringLiteral("ninja: dark skin tone"), QStringLiteral("ninja: dark skin tone")})}, -{QStringLiteral("construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FB"), QStringLiteral("construction_worker_tone1"), QStringLiteral("construction worker: light skin tone")})}, -{QStringLiteral("construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FC"), QStringLiteral("construction_worker_tone2"), QStringLiteral("construction worker: medium-light skin tone")})}, -{QStringLiteral("construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FD"), QStringLiteral("construction_worker_tone3"), QStringLiteral("construction worker: medium skin tone")})}, -{QStringLiteral("construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FE"), QStringLiteral("construction_worker_tone4"), QStringLiteral("construction worker: medium-dark skin tone")})}, -{QStringLiteral("construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FF"), QStringLiteral("construction_worker_tone5"), QStringLiteral("construction worker: dark skin tone")})}, -{QStringLiteral("man construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man construction worker: light skin tone"), QStringLiteral("man construction worker: light skin tone")})}, -{QStringLiteral("man construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man construction worker: medium-light skin tone"), QStringLiteral("man construction worker: medium-light skin tone")})}, -{QStringLiteral("man construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man construction worker: medium skin tone"), QStringLiteral("man construction worker: medium skin tone")})}, -{QStringLiteral("man construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man construction worker: medium-dark skin tone"), QStringLiteral("man construction worker: medium-dark skin tone")})}, -{QStringLiteral("man construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man construction worker: dark skin tone"), QStringLiteral("man construction worker: dark skin tone")})}, -{QStringLiteral("woman construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman construction worker: light skin tone"), QStringLiteral("woman construction worker: light skin tone")})}, -{QStringLiteral("woman construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman construction worker: medium-light skin tone"), QStringLiteral("woman construction worker: medium-light skin tone")})}, -{QStringLiteral("woman construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman construction worker: medium skin tone"), QStringLiteral("woman construction worker: medium skin tone")})}, -{QStringLiteral("woman construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman construction worker: medium-dark skin tone"), QStringLiteral("woman construction worker: medium-dark skin tone")})}, -{QStringLiteral("woman construction worker"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F477\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman construction worker: dark skin tone"), QStringLiteral("woman construction worker: dark skin tone")})}, -{QStringLiteral("person with crown"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC5\U0001F3FB"), QStringLiteral("person with crown: light skin tone"), QStringLiteral("person with crown: light skin tone")})}, -{QStringLiteral("person with crown"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC5\U0001F3FC"), QStringLiteral("person with crown: medium-light skin tone"), QStringLiteral("person with crown: medium-light skin tone")})}, -{QStringLiteral("person with crown"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC5\U0001F3FD"), QStringLiteral("person with crown: medium skin tone"), QStringLiteral("person with crown: medium skin tone")})}, -{QStringLiteral("person with crown"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC5\U0001F3FE"), QStringLiteral("person with crown: medium-dark skin tone"), QStringLiteral("person with crown: medium-dark skin tone")})}, -{QStringLiteral("person with crown"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC5\U0001F3FF"), QStringLiteral("person with crown: dark skin tone"), QStringLiteral("person with crown: dark skin tone")})}, -{QStringLiteral("prince"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F934\U0001F3FB"), QStringLiteral("prince_tone1"), QStringLiteral("prince: light skin tone")})}, -{QStringLiteral("prince"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F934\U0001F3FC"), QStringLiteral("prince_tone2"), QStringLiteral("prince: medium-light skin tone")})}, -{QStringLiteral("prince"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F934\U0001F3FD"), QStringLiteral("prince_tone3"), QStringLiteral("prince: medium skin tone")})}, -{QStringLiteral("prince"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F934\U0001F3FE"), QStringLiteral("prince_tone4"), QStringLiteral("prince: medium-dark skin tone")})}, -{QStringLiteral("prince"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F934\U0001F3FF"), QStringLiteral("prince_tone5"), QStringLiteral("prince: dark skin tone")})}, -{QStringLiteral("princess"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F478\U0001F3FB"), QStringLiteral("princess_tone1"), QStringLiteral("princess: light skin tone")})}, -{QStringLiteral("princess"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F478\U0001F3FC"), QStringLiteral("princess_tone2"), QStringLiteral("princess: medium-light skin tone")})}, -{QStringLiteral("princess"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F478\U0001F3FD"), QStringLiteral("princess_tone3"), QStringLiteral("princess: medium skin tone")})}, -{QStringLiteral("princess"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F478\U0001F3FE"), QStringLiteral("princess_tone4"), QStringLiteral("princess: medium-dark skin tone")})}, -{QStringLiteral("princess"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F478\U0001F3FF"), QStringLiteral("princess_tone5"), QStringLiteral("princess: dark skin tone")})}, -{QStringLiteral("person wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FB"), QStringLiteral("man_with_turban_tone1"), QStringLiteral("person wearing turban: light skin tone")})}, -{QStringLiteral("person wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FC"), QStringLiteral("man_with_turban_tone2"), QStringLiteral("person wearing turban: medium-light skin tone")})}, -{QStringLiteral("person wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FD"), QStringLiteral("man_with_turban_tone3"), QStringLiteral("person wearing turban: medium skin tone")})}, -{QStringLiteral("person wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FE"), QStringLiteral("man_with_turban_tone4"), QStringLiteral("person wearing turban: medium-dark skin tone")})}, -{QStringLiteral("person wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FF"), QStringLiteral("man_with_turban_tone5"), QStringLiteral("person wearing turban: dark skin tone")})}, -{QStringLiteral("man wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man wearing turban: light skin tone"), QStringLiteral("man wearing turban: light skin tone")})}, -{QStringLiteral("man wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man wearing turban: medium-light skin tone"), QStringLiteral("man wearing turban: medium-light skin tone")})}, -{QStringLiteral("man wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man wearing turban: medium skin tone"), QStringLiteral("man wearing turban: medium skin tone")})}, -{QStringLiteral("man wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man wearing turban: medium-dark skin tone"), QStringLiteral("man wearing turban: medium-dark skin tone")})}, -{QStringLiteral("man wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man wearing turban: dark skin tone"), QStringLiteral("man wearing turban: dark skin tone")})}, -{QStringLiteral("woman wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman wearing turban: light skin tone"), QStringLiteral("woman wearing turban: light skin tone")})}, -{QStringLiteral("woman wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman wearing turban: medium-light skin tone"), QStringLiteral("woman wearing turban: medium-light skin tone")})}, -{QStringLiteral("woman wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman wearing turban: medium skin tone"), QStringLiteral("woman wearing turban: medium skin tone")})}, -{QStringLiteral("woman wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman wearing turban: medium-dark skin tone"), QStringLiteral("woman wearing turban: medium-dark skin tone")})}, -{QStringLiteral("woman wearing turban"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F473\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman wearing turban: dark skin tone"), QStringLiteral("woman wearing turban: dark skin tone")})}, -{QStringLiteral("person with skullcap"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F472\U0001F3FB"), QStringLiteral("man_with_gua_pi_mao_tone1"), QStringLiteral("person with skullcap: light skin tone")})}, -{QStringLiteral("person with skullcap"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F472\U0001F3FC"), QStringLiteral("man_with_gua_pi_mao_tone2"), QStringLiteral("person with skullcap: medium-light skin tone")})}, -{QStringLiteral("person with skullcap"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F472\U0001F3FD"), QStringLiteral("man_with_gua_pi_mao_tone3"), QStringLiteral("person with skullcap: medium skin tone")})}, -{QStringLiteral("person with skullcap"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F472\U0001F3FE"), QStringLiteral("man_with_gua_pi_mao_tone4"), QStringLiteral("person with skullcap: medium-dark skin tone")})}, -{QStringLiteral("person with skullcap"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F472\U0001F3FF"), QStringLiteral("man_with_gua_pi_mao_tone5"), QStringLiteral("person with skullcap: dark skin tone")})}, -{QStringLiteral("woman with headscarf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D5\U0001F3FB"), QStringLiteral("woman_with_headscarf_tone1"), QStringLiteral("woman with headscarf: light skin tone")})}, -{QStringLiteral("woman with headscarf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D5\U0001F3FC"), QStringLiteral("woman_with_headscarf_tone2"), QStringLiteral("woman with headscarf: medium-light skin tone")})}, -{QStringLiteral("woman with headscarf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D5\U0001F3FD"), QStringLiteral("woman_with_headscarf_tone3"), QStringLiteral("woman with headscarf: medium skin tone")})}, -{QStringLiteral("woman with headscarf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D5\U0001F3FE"), QStringLiteral("woman_with_headscarf_tone4"), QStringLiteral("woman with headscarf: medium-dark skin tone")})}, -{QStringLiteral("woman with headscarf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D5\U0001F3FF"), QStringLiteral("woman_with_headscarf_tone5"), QStringLiteral("woman with headscarf: dark skin tone")})}, -{QStringLiteral("person in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FB"), QStringLiteral("man_in_tuxedo_tone1"), QStringLiteral("person in tuxedo: light skin tone")})}, -{QStringLiteral("person in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FC"), QStringLiteral("man_in_tuxedo_tone2"), QStringLiteral("person in tuxedo: medium-light skin tone")})}, -{QStringLiteral("person in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FD"), QStringLiteral("man_in_tuxedo_tone3"), QStringLiteral("person in tuxedo: medium skin tone")})}, -{QStringLiteral("person in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FE"), QStringLiteral("man_in_tuxedo_tone4"), QStringLiteral("person in tuxedo: medium-dark skin tone")})}, -{QStringLiteral("person in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FF"), QStringLiteral("man_in_tuxedo_tone5"), QStringLiteral("person in tuxedo: dark skin tone")})}, -{QStringLiteral("man in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in tuxedo: light skin tone"), QStringLiteral("man in tuxedo: light skin tone")})}, -{QStringLiteral("man in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in tuxedo: medium-light skin tone"), QStringLiteral("man in tuxedo: medium-light skin tone")})}, -{QStringLiteral("man in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in tuxedo: medium skin tone"), QStringLiteral("man in tuxedo: medium skin tone")})}, -{QStringLiteral("man in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in tuxedo: medium-dark skin tone"), QStringLiteral("man in tuxedo: medium-dark skin tone")})}, -{QStringLiteral("man in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in tuxedo: dark skin tone"), QStringLiteral("man in tuxedo: dark skin tone")})}, -{QStringLiteral("woman in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in tuxedo: light skin tone"), QStringLiteral("woman in tuxedo: light skin tone")})}, -{QStringLiteral("woman in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in tuxedo: medium-light skin tone"), QStringLiteral("woman in tuxedo: medium-light skin tone")})}, -{QStringLiteral("woman in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in tuxedo: medium skin tone"), QStringLiteral("woman in tuxedo: medium skin tone")})}, -{QStringLiteral("woman in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in tuxedo: medium-dark skin tone"), QStringLiteral("woman in tuxedo: medium-dark skin tone")})}, -{QStringLiteral("woman in tuxedo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F935\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in tuxedo: dark skin tone"), QStringLiteral("woman in tuxedo: dark skin tone")})}, -{QStringLiteral("person with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FB"), QStringLiteral("bride_with_veil_tone1"), QStringLiteral("person with veil: light skin tone")})}, -{QStringLiteral("person with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FC"), QStringLiteral("bride_with_veil_tone2"), QStringLiteral("person with veil: medium-light skin tone")})}, -{QStringLiteral("person with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FD"), QStringLiteral("bride_with_veil_tone3"), QStringLiteral("person with veil: medium skin tone")})}, -{QStringLiteral("person with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FE"), QStringLiteral("bride_with_veil_tone4"), QStringLiteral("person with veil: medium-dark skin tone")})}, -{QStringLiteral("person with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FF"), QStringLiteral("bride_with_veil_tone5"), QStringLiteral("person with veil: dark skin tone")})}, -{QStringLiteral("man with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man with veil: light skin tone"), QStringLiteral("man with veil: light skin tone")})}, -{QStringLiteral("man with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man with veil: medium-light skin tone"), QStringLiteral("man with veil: medium-light skin tone")})}, -{QStringLiteral("man with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man with veil: medium skin tone"), QStringLiteral("man with veil: medium skin tone")})}, -{QStringLiteral("man with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man with veil: medium-dark skin tone"), QStringLiteral("man with veil: medium-dark skin tone")})}, -{QStringLiteral("man with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man with veil: dark skin tone"), QStringLiteral("man with veil: dark skin tone")})}, -{QStringLiteral("woman with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman with veil: light skin tone"), QStringLiteral("woman with veil: light skin tone")})}, -{QStringLiteral("woman with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman with veil: medium-light skin tone"), QStringLiteral("woman with veil: medium-light skin tone")})}, -{QStringLiteral("woman with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman with veil: medium skin tone"), QStringLiteral("woman with veil: medium skin tone")})}, -{QStringLiteral("woman with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman with veil: medium-dark skin tone"), QStringLiteral("woman with veil: medium-dark skin tone")})}, -{QStringLiteral("woman with veil"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F470\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman with veil: dark skin tone"), QStringLiteral("woman with veil: dark skin tone")})}, -{QStringLiteral("pregnant woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F930\U0001F3FB"), QStringLiteral("pregnant_woman_tone1"), QStringLiteral("pregnant woman: light skin tone")})}, -{QStringLiteral("pregnant woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F930\U0001F3FC"), QStringLiteral("pregnant_woman_tone2"), QStringLiteral("pregnant woman: medium-light skin tone")})}, -{QStringLiteral("pregnant woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F930\U0001F3FD"), QStringLiteral("pregnant_woman_tone3"), QStringLiteral("pregnant woman: medium skin tone")})}, -{QStringLiteral("pregnant woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F930\U0001F3FE"), QStringLiteral("pregnant_woman_tone4"), QStringLiteral("pregnant woman: medium-dark skin tone")})}, -{QStringLiteral("pregnant woman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F930\U0001F3FF"), QStringLiteral("pregnant_woman_tone5"), QStringLiteral("pregnant woman: dark skin tone")})}, -{QStringLiteral("pregnant man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC3\U0001F3FB"), QStringLiteral("pregnant man: light skin tone"), QStringLiteral("pregnant man: light skin tone")})}, -{QStringLiteral("pregnant man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC3\U0001F3FC"), QStringLiteral("pregnant man: medium-light skin tone"), QStringLiteral("pregnant man: medium-light skin tone")})}, -{QStringLiteral("pregnant man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC3\U0001F3FD"), QStringLiteral("pregnant man: medium skin tone"), QStringLiteral("pregnant man: medium skin tone")})}, -{QStringLiteral("pregnant man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC3\U0001F3FE"), QStringLiteral("pregnant man: medium-dark skin tone"), QStringLiteral("pregnant man: medium-dark skin tone")})}, -{QStringLiteral("pregnant man"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC3\U0001F3FF"), QStringLiteral("pregnant man: dark skin tone"), QStringLiteral("pregnant man: dark skin tone")})}, -{QStringLiteral("pregnant person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC4\U0001F3FB"), QStringLiteral("pregnant person: light skin tone"), QStringLiteral("pregnant person: light skin tone")})}, -{QStringLiteral("pregnant person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC4\U0001F3FC"), QStringLiteral("pregnant person: medium-light skin tone"), QStringLiteral("pregnant person: medium-light skin tone")})}, -{QStringLiteral("pregnant person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC4\U0001F3FD"), QStringLiteral("pregnant person: medium skin tone"), QStringLiteral("pregnant person: medium skin tone")})}, -{QStringLiteral("pregnant person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC4\U0001F3FE"), QStringLiteral("pregnant person: medium-dark skin tone"), QStringLiteral("pregnant person: medium-dark skin tone")})}, -{QStringLiteral("pregnant person"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001FAC4\U0001F3FF"), QStringLiteral("pregnant person: dark skin tone"), QStringLiteral("pregnant person: dark skin tone")})}, -{QStringLiteral("breast-feeding"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F931\U0001F3FB"), QStringLiteral("breast_feeding_tone1"), QStringLiteral("breast-feeding: light skin tone")})}, -{QStringLiteral("breast-feeding"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F931\U0001F3FC"), QStringLiteral("breast_feeding_tone2"), QStringLiteral("breast-feeding: medium-light skin tone")})}, -{QStringLiteral("breast-feeding"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F931\U0001F3FD"), QStringLiteral("breast_feeding_tone3"), QStringLiteral("breast-feeding: medium skin tone")})}, -{QStringLiteral("breast-feeding"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F931\U0001F3FE"), QStringLiteral("breast_feeding_tone4"), QStringLiteral("breast-feeding: medium-dark skin tone")})}, -{QStringLiteral("breast-feeding"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F931\U0001F3FF"), QStringLiteral("breast_feeding_tone5"), QStringLiteral("breast-feeding: dark skin tone")})}, -{QStringLiteral("woman feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F37C"), QStringLiteral("woman feeding baby: light skin tone"), QStringLiteral("woman feeding baby: light skin tone")})}, -{QStringLiteral("woman feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F37C"), QStringLiteral("woman feeding baby: medium-light skin tone"), QStringLiteral("woman feeding baby: medium-light skin tone")})}, -{QStringLiteral("woman feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F37C"), QStringLiteral("woman feeding baby: medium skin tone"), QStringLiteral("woman feeding baby: medium skin tone")})}, -{QStringLiteral("woman feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F37C"), QStringLiteral("woman feeding baby: medium-dark skin tone"), QStringLiteral("woman feeding baby: medium-dark skin tone")})}, -{QStringLiteral("woman feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F37C"), QStringLiteral("woman feeding baby: dark skin tone"), QStringLiteral("woman feeding baby: dark skin tone")})}, -{QStringLiteral("man feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F37C"), QStringLiteral("man feeding baby: light skin tone"), QStringLiteral("man feeding baby: light skin tone")})}, -{QStringLiteral("man feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F37C"), QStringLiteral("man feeding baby: medium-light skin tone"), QStringLiteral("man feeding baby: medium-light skin tone")})}, -{QStringLiteral("man feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F37C"), QStringLiteral("man feeding baby: medium skin tone"), QStringLiteral("man feeding baby: medium skin tone")})}, -{QStringLiteral("man feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F37C"), QStringLiteral("man feeding baby: medium-dark skin tone"), QStringLiteral("man feeding baby: medium-dark skin tone")})}, -{QStringLiteral("man feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F37C"), QStringLiteral("man feeding baby: dark skin tone"), QStringLiteral("man feeding baby: dark skin tone")})}, -{QStringLiteral("person feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F37C"), QStringLiteral("person feeding baby: light skin tone"), QStringLiteral("person feeding baby: light skin tone")})}, -{QStringLiteral("person feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F37C"), QStringLiteral("person feeding baby: medium-light skin tone"), QStringLiteral("person feeding baby: medium-light skin tone")})}, -{QStringLiteral("person feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F37C"), QStringLiteral("person feeding baby: medium skin tone"), QStringLiteral("person feeding baby: medium skin tone")})}, -{QStringLiteral("person feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F37C"), QStringLiteral("person feeding baby: medium-dark skin tone"), QStringLiteral("person feeding baby: medium-dark skin tone")})}, -{QStringLiteral("person feeding baby"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F37C"), QStringLiteral("person feeding baby: dark skin tone"), QStringLiteral("person feeding baby: dark skin tone")})}, -{QStringLiteral("baby angel"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47C\U0001F3FB"), QStringLiteral("angel_tone1"), QStringLiteral("baby angel: light skin tone")})}, -{QStringLiteral("baby angel"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47C\U0001F3FC"), QStringLiteral("angel_tone2"), QStringLiteral("baby angel: medium-light skin tone")})}, -{QStringLiteral("baby angel"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47C\U0001F3FD"), QStringLiteral("angel_tone3"), QStringLiteral("baby angel: medium skin tone")})}, -{QStringLiteral("baby angel"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47C\U0001F3FE"), QStringLiteral("angel_tone4"), QStringLiteral("baby angel: medium-dark skin tone")})}, -{QStringLiteral("baby angel"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F47C\U0001F3FF"), QStringLiteral("angel_tone5"), QStringLiteral("baby angel: dark skin tone")})}, -{QStringLiteral("Santa Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F385\U0001F3FB"), QStringLiteral("santa_tone1"), QStringLiteral("Santa Claus: light skin tone")})}, -{QStringLiteral("Santa Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F385\U0001F3FC"), QStringLiteral("santa_tone2"), QStringLiteral("Santa Claus: medium-light skin tone")})}, -{QStringLiteral("Santa Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F385\U0001F3FD"), QStringLiteral("santa_tone3"), QStringLiteral("Santa Claus: medium skin tone")})}, -{QStringLiteral("Santa Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F385\U0001F3FE"), QStringLiteral("santa_tone4"), QStringLiteral("Santa Claus: medium-dark skin tone")})}, -{QStringLiteral("Santa Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F385\U0001F3FF"), QStringLiteral("santa_tone5"), QStringLiteral("Santa Claus: dark skin tone")})}, -{QStringLiteral("Mrs. Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F936\U0001F3FB"), QStringLiteral("mrs_claus_tone1"), QStringLiteral("Mrs. Claus: light skin tone")})}, -{QStringLiteral("Mrs. Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F936\U0001F3FC"), QStringLiteral("mrs_claus_tone2"), QStringLiteral("Mrs. Claus: medium-light skin tone")})}, -{QStringLiteral("Mrs. Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F936\U0001F3FD"), QStringLiteral("mrs_claus_tone3"), QStringLiteral("Mrs. Claus: medium skin tone")})}, -{QStringLiteral("Mrs. Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F936\U0001F3FE"), QStringLiteral("mrs_claus_tone4"), QStringLiteral("Mrs. Claus: medium-dark skin tone")})}, -{QStringLiteral("Mrs. Claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F936\U0001F3FF"), QStringLiteral("mrs_claus_tone5"), QStringLiteral("Mrs. Claus: dark skin tone")})}, -{QStringLiteral("mx claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F384"), QStringLiteral("mx claus: light skin tone"), QStringLiteral("mx claus: light skin tone")})}, -{QStringLiteral("mx claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F384"), QStringLiteral("mx claus: medium-light skin tone"), QStringLiteral("mx claus: medium-light skin tone")})}, -{QStringLiteral("mx claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F384"), QStringLiteral("mx claus: medium skin tone"), QStringLiteral("mx claus: medium skin tone")})}, -{QStringLiteral("mx claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F384"), QStringLiteral("mx claus: medium-dark skin tone"), QStringLiteral("mx claus: medium-dark skin tone")})}, -{QStringLiteral("mx claus"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F384"), QStringLiteral("mx claus: dark skin tone"), QStringLiteral("mx claus: dark skin tone")})}, -{QStringLiteral("superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FB"), QStringLiteral("superhero_tone1"), QStringLiteral("superhero: light skin tone")})}, -{QStringLiteral("superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FC"), QStringLiteral("superhero_tone2"), QStringLiteral("superhero: medium-light skin tone")})}, -{QStringLiteral("superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FD"), QStringLiteral("superhero_tone3"), QStringLiteral("superhero: medium skin tone")})}, -{QStringLiteral("superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FE"), QStringLiteral("superhero_tone4"), QStringLiteral("superhero: medium-dark skin tone")})}, -{QStringLiteral("superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FF"), QStringLiteral("superhero_tone5"), QStringLiteral("superhero: dark skin tone")})}, -{QStringLiteral("man superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man superhero: light skin tone"), QStringLiteral("man superhero: light skin tone")})}, -{QStringLiteral("man superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man superhero: medium-light skin tone"), QStringLiteral("man superhero: medium-light skin tone")})}, -{QStringLiteral("man superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man superhero: medium skin tone"), QStringLiteral("man superhero: medium skin tone")})}, -{QStringLiteral("man superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man superhero: medium-dark skin tone"), QStringLiteral("man superhero: medium-dark skin tone")})}, -{QStringLiteral("man superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man superhero: dark skin tone"), QStringLiteral("man superhero: dark skin tone")})}, -{QStringLiteral("woman superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman superhero: light skin tone"), QStringLiteral("woman superhero: light skin tone")})}, -{QStringLiteral("woman superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman superhero: medium-light skin tone"), QStringLiteral("woman superhero: medium-light skin tone")})}, -{QStringLiteral("woman superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman superhero: medium skin tone"), QStringLiteral("woman superhero: medium skin tone")})}, -{QStringLiteral("woman superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman superhero: medium-dark skin tone"), QStringLiteral("woman superhero: medium-dark skin tone")})}, -{QStringLiteral("woman superhero"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B8\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman superhero: dark skin tone"), QStringLiteral("woman superhero: dark skin tone")})}, -{QStringLiteral("supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FB"), QStringLiteral("supervillain_tone1"), QStringLiteral("supervillain: light skin tone")})}, -{QStringLiteral("supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FC"), QStringLiteral("supervillain_tone2"), QStringLiteral("supervillain: medium-light skin tone")})}, -{QStringLiteral("supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FD"), QStringLiteral("supervillain_tone3"), QStringLiteral("supervillain: medium skin tone")})}, -{QStringLiteral("supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FE"), QStringLiteral("supervillain_tone4"), QStringLiteral("supervillain: medium-dark skin tone")})}, -{QStringLiteral("supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FF"), QStringLiteral("supervillain_tone5"), QStringLiteral("supervillain: dark skin tone")})}, -{QStringLiteral("man supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man supervillain: light skin tone"), QStringLiteral("man supervillain: light skin tone")})}, -{QStringLiteral("man supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man supervillain: medium-light skin tone"), QStringLiteral("man supervillain: medium-light skin tone")})}, -{QStringLiteral("man supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man supervillain: medium skin tone"), QStringLiteral("man supervillain: medium skin tone")})}, -{QStringLiteral("man supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man supervillain: medium-dark skin tone"), QStringLiteral("man supervillain: medium-dark skin tone")})}, -{QStringLiteral("man supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man supervillain: dark skin tone"), QStringLiteral("man supervillain: dark skin tone")})}, -{QStringLiteral("woman supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman supervillain: light skin tone"), QStringLiteral("woman supervillain: light skin tone")})}, -{QStringLiteral("woman supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman supervillain: medium-light skin tone"), QStringLiteral("woman supervillain: medium-light skin tone")})}, -{QStringLiteral("woman supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman supervillain: medium skin tone"), QStringLiteral("woman supervillain: medium skin tone")})}, -{QStringLiteral("woman supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman supervillain: medium-dark skin tone"), QStringLiteral("woman supervillain: medium-dark skin tone")})}, -{QStringLiteral("woman supervillain"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9B9\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman supervillain: dark skin tone"), QStringLiteral("woman supervillain: dark skin tone")})}, -{QStringLiteral("mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FB"), QStringLiteral("mage_tone1"), QStringLiteral("mage: light skin tone")})}, -{QStringLiteral("mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FC"), QStringLiteral("mage_tone2"), QStringLiteral("mage: medium-light skin tone")})}, -{QStringLiteral("mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FD"), QStringLiteral("mage_tone3"), QStringLiteral("mage: medium skin tone")})}, -{QStringLiteral("mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FE"), QStringLiteral("mage_tone4"), QStringLiteral("mage: medium-dark skin tone")})}, -{QStringLiteral("mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FF"), QStringLiteral("mage_tone5"), QStringLiteral("mage: dark skin tone")})}, -{QStringLiteral("man mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mage: light skin tone"), QStringLiteral("man mage: light skin tone")})}, -{QStringLiteral("man mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mage: medium-light skin tone"), QStringLiteral("man mage: medium-light skin tone")})}, -{QStringLiteral("man mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mage: medium skin tone"), QStringLiteral("man mage: medium skin tone")})}, -{QStringLiteral("man mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mage: medium-dark skin tone"), QStringLiteral("man mage: medium-dark skin tone")})}, -{QStringLiteral("man mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mage: dark skin tone"), QStringLiteral("man mage: dark skin tone")})}, -{QStringLiteral("woman mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mage: light skin tone"), QStringLiteral("woman mage: light skin tone")})}, -{QStringLiteral("woman mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mage: medium-light skin tone"), QStringLiteral("woman mage: medium-light skin tone")})}, -{QStringLiteral("woman mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mage: medium skin tone"), QStringLiteral("woman mage: medium skin tone")})}, -{QStringLiteral("woman mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mage: medium-dark skin tone"), QStringLiteral("woman mage: medium-dark skin tone")})}, -{QStringLiteral("woman mage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D9\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mage: dark skin tone"), QStringLiteral("woman mage: dark skin tone")})}, -{QStringLiteral("fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FB"), QStringLiteral("fairy_tone1"), QStringLiteral("fairy: light skin tone")})}, -{QStringLiteral("fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FC"), QStringLiteral("fairy_tone2"), QStringLiteral("fairy: medium-light skin tone")})}, -{QStringLiteral("fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FD"), QStringLiteral("fairy_tone3"), QStringLiteral("fairy: medium skin tone")})}, -{QStringLiteral("fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FE"), QStringLiteral("fairy_tone4"), QStringLiteral("fairy: medium-dark skin tone")})}, -{QStringLiteral("fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FF"), QStringLiteral("fairy_tone5"), QStringLiteral("fairy: dark skin tone")})}, -{QStringLiteral("man fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man fairy: light skin tone"), QStringLiteral("man fairy: light skin tone")})}, -{QStringLiteral("man fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man fairy: medium-light skin tone"), QStringLiteral("man fairy: medium-light skin tone")})}, -{QStringLiteral("man fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man fairy: medium skin tone"), QStringLiteral("man fairy: medium skin tone")})}, -{QStringLiteral("man fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man fairy: medium-dark skin tone"), QStringLiteral("man fairy: medium-dark skin tone")})}, -{QStringLiteral("man fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man fairy: dark skin tone"), QStringLiteral("man fairy: dark skin tone")})}, -{QStringLiteral("woman fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman fairy: light skin tone"), QStringLiteral("woman fairy: light skin tone")})}, -{QStringLiteral("woman fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman fairy: medium-light skin tone"), QStringLiteral("woman fairy: medium-light skin tone")})}, -{QStringLiteral("woman fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman fairy: medium skin tone"), QStringLiteral("woman fairy: medium skin tone")})}, -{QStringLiteral("woman fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman fairy: medium-dark skin tone"), QStringLiteral("woman fairy: medium-dark skin tone")})}, -{QStringLiteral("woman fairy"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DA\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman fairy: dark skin tone"), QStringLiteral("woman fairy: dark skin tone")})}, -{QStringLiteral("vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FB"), QStringLiteral("vampire_tone1"), QStringLiteral("vampire: light skin tone")})}, -{QStringLiteral("vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FC"), QStringLiteral("vampire_tone2"), QStringLiteral("vampire: medium-light skin tone")})}, -{QStringLiteral("vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FD"), QStringLiteral("vampire_tone3"), QStringLiteral("vampire: medium skin tone")})}, -{QStringLiteral("vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FE"), QStringLiteral("vampire_tone4"), QStringLiteral("vampire: medium-dark skin tone")})}, -{QStringLiteral("vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FF"), QStringLiteral("vampire_tone5"), QStringLiteral("vampire: dark skin tone")})}, -{QStringLiteral("man vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man vampire: light skin tone"), QStringLiteral("man vampire: light skin tone")})}, -{QStringLiteral("man vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man vampire: medium-light skin tone"), QStringLiteral("man vampire: medium-light skin tone")})}, -{QStringLiteral("man vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man vampire: medium skin tone"), QStringLiteral("man vampire: medium skin tone")})}, -{QStringLiteral("man vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man vampire: medium-dark skin tone"), QStringLiteral("man vampire: medium-dark skin tone")})}, -{QStringLiteral("man vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man vampire: dark skin tone"), QStringLiteral("man vampire: dark skin tone")})}, -{QStringLiteral("woman vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman vampire: light skin tone"), QStringLiteral("woman vampire: light skin tone")})}, -{QStringLiteral("woman vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman vampire: medium-light skin tone"), QStringLiteral("woman vampire: medium-light skin tone")})}, -{QStringLiteral("woman vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman vampire: medium skin tone"), QStringLiteral("woman vampire: medium skin tone")})}, -{QStringLiteral("woman vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman vampire: medium-dark skin tone"), QStringLiteral("woman vampire: medium-dark skin tone")})}, -{QStringLiteral("woman vampire"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DB\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman vampire: dark skin tone"), QStringLiteral("woman vampire: dark skin tone")})}, -{QStringLiteral("merperson"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FB"), QStringLiteral("merperson_tone1"), QStringLiteral("merperson: light skin tone")})}, -{QStringLiteral("merperson"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FC"), QStringLiteral("merperson_tone2"), QStringLiteral("merperson: medium-light skin tone")})}, -{QStringLiteral("merperson"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FD"), QStringLiteral("merperson_tone3"), QStringLiteral("merperson: medium skin tone")})}, -{QStringLiteral("merperson"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FE"), QStringLiteral("merperson_tone4"), QStringLiteral("merperson: medium-dark skin tone")})}, -{QStringLiteral("merperson"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FF"), QStringLiteral("merperson_tone5"), QStringLiteral("merperson: dark skin tone")})}, -{QStringLiteral("merman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("merman: light skin tone"), QStringLiteral("merman: light skin tone")})}, -{QStringLiteral("merman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("merman: medium-light skin tone"), QStringLiteral("merman: medium-light skin tone")})}, -{QStringLiteral("merman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("merman: medium skin tone"), QStringLiteral("merman: medium skin tone")})}, -{QStringLiteral("merman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("merman: medium-dark skin tone"), QStringLiteral("merman: medium-dark skin tone")})}, -{QStringLiteral("merman"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("merman: dark skin tone"), QStringLiteral("merman: dark skin tone")})}, -{QStringLiteral("mermaid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("mermaid: light skin tone"), QStringLiteral("mermaid: light skin tone")})}, -{QStringLiteral("mermaid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("mermaid: medium-light skin tone"), QStringLiteral("mermaid: medium-light skin tone")})}, -{QStringLiteral("mermaid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("mermaid: medium skin tone"), QStringLiteral("mermaid: medium skin tone")})}, -{QStringLiteral("mermaid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("mermaid: medium-dark skin tone"), QStringLiteral("mermaid: medium-dark skin tone")})}, -{QStringLiteral("mermaid"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DC\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("mermaid: dark skin tone"), QStringLiteral("mermaid: dark skin tone")})}, -{QStringLiteral("elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FB"), QStringLiteral("elf_tone1"), QStringLiteral("elf: light skin tone")})}, -{QStringLiteral("elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FC"), QStringLiteral("elf_tone2"), QStringLiteral("elf: medium-light skin tone")})}, -{QStringLiteral("elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FD"), QStringLiteral("elf_tone3"), QStringLiteral("elf: medium skin tone")})}, -{QStringLiteral("elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FE"), QStringLiteral("elf_tone4"), QStringLiteral("elf: medium-dark skin tone")})}, -{QStringLiteral("elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FF"), QStringLiteral("elf_tone5"), QStringLiteral("elf: dark skin tone")})}, -{QStringLiteral("man elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man elf: light skin tone"), QStringLiteral("man elf: light skin tone")})}, -{QStringLiteral("man elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man elf: medium-light skin tone"), QStringLiteral("man elf: medium-light skin tone")})}, -{QStringLiteral("man elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man elf: medium skin tone"), QStringLiteral("man elf: medium skin tone")})}, -{QStringLiteral("man elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man elf: medium-dark skin tone"), QStringLiteral("man elf: medium-dark skin tone")})}, -{QStringLiteral("man elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man elf: dark skin tone"), QStringLiteral("man elf: dark skin tone")})}, -{QStringLiteral("woman elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman elf: light skin tone"), QStringLiteral("woman elf: light skin tone")})}, -{QStringLiteral("woman elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman elf: medium-light skin tone"), QStringLiteral("woman elf: medium-light skin tone")})}, -{QStringLiteral("woman elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman elf: medium skin tone"), QStringLiteral("woman elf: medium skin tone")})}, -{QStringLiteral("woman elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman elf: medium-dark skin tone"), QStringLiteral("woman elf: medium-dark skin tone")})}, -{QStringLiteral("woman elf"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9DD\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman elf: dark skin tone"), QStringLiteral("woman elf: dark skin tone")})}, -{QStringLiteral("person getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FB"), QStringLiteral("massage_tone1"), QStringLiteral("person getting massage: light skin tone")})}, -{QStringLiteral("person getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FC"), QStringLiteral("massage_tone2"), QStringLiteral("person getting massage: medium-light skin tone")})}, -{QStringLiteral("person getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FD"), QStringLiteral("massage_tone3"), QStringLiteral("person getting massage: medium skin tone")})}, -{QStringLiteral("person getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FE"), QStringLiteral("massage_tone4"), QStringLiteral("person getting massage: medium-dark skin tone")})}, -{QStringLiteral("person getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FF"), QStringLiteral("massage_tone5"), QStringLiteral("person getting massage: dark skin tone")})}, -{QStringLiteral("man getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting massage: light skin tone"), QStringLiteral("man getting massage: light skin tone")})}, -{QStringLiteral("man getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting massage: medium-light skin tone"), QStringLiteral("man getting massage: medium-light skin tone")})}, -{QStringLiteral("man getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting massage: medium skin tone"), QStringLiteral("man getting massage: medium skin tone")})}, -{QStringLiteral("man getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting massage: medium-dark skin tone"), QStringLiteral("man getting massage: medium-dark skin tone")})}, -{QStringLiteral("man getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting massage: dark skin tone"), QStringLiteral("man getting massage: dark skin tone")})}, -{QStringLiteral("woman getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting massage: light skin tone"), QStringLiteral("woman getting massage: light skin tone")})}, -{QStringLiteral("woman getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting massage: medium-light skin tone"), QStringLiteral("woman getting massage: medium-light skin tone")})}, -{QStringLiteral("woman getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting massage: medium skin tone"), QStringLiteral("woman getting massage: medium skin tone")})}, -{QStringLiteral("woman getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting massage: medium-dark skin tone"), QStringLiteral("woman getting massage: medium-dark skin tone")})}, -{QStringLiteral("woman getting massage"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F486\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting massage: dark skin tone"), QStringLiteral("woman getting massage: dark skin tone")})}, -{QStringLiteral("person getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FB"), QStringLiteral("haircut_tone1"), QStringLiteral("person getting haircut: light skin tone")})}, -{QStringLiteral("person getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FC"), QStringLiteral("haircut_tone2"), QStringLiteral("person getting haircut: medium-light skin tone")})}, -{QStringLiteral("person getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FD"), QStringLiteral("haircut_tone3"), QStringLiteral("person getting haircut: medium skin tone")})}, -{QStringLiteral("person getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FE"), QStringLiteral("haircut_tone4"), QStringLiteral("person getting haircut: medium-dark skin tone")})}, -{QStringLiteral("person getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FF"), QStringLiteral("haircut_tone5"), QStringLiteral("person getting haircut: dark skin tone")})}, -{QStringLiteral("man getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting haircut: light skin tone"), QStringLiteral("man getting haircut: light skin tone")})}, -{QStringLiteral("man getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting haircut: medium-light skin tone"), QStringLiteral("man getting haircut: medium-light skin tone")})}, -{QStringLiteral("man getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting haircut: medium skin tone"), QStringLiteral("man getting haircut: medium skin tone")})}, -{QStringLiteral("man getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting haircut: medium-dark skin tone"), QStringLiteral("man getting haircut: medium-dark skin tone")})}, -{QStringLiteral("man getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man getting haircut: dark skin tone"), QStringLiteral("man getting haircut: dark skin tone")})}, -{QStringLiteral("woman getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting haircut: light skin tone"), QStringLiteral("woman getting haircut: light skin tone")})}, -{QStringLiteral("woman getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting haircut: medium-light skin tone"), QStringLiteral("woman getting haircut: medium-light skin tone")})}, -{QStringLiteral("woman getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting haircut: medium skin tone"), QStringLiteral("woman getting haircut: medium skin tone")})}, -{QStringLiteral("woman getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting haircut: medium-dark skin tone"), QStringLiteral("woman getting haircut: medium-dark skin tone")})}, -{QStringLiteral("woman getting haircut"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F487\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman getting haircut: dark skin tone"), QStringLiteral("woman getting haircut: dark skin tone")})}, -{QStringLiteral("person walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FB"), QStringLiteral("walking_tone1"), QStringLiteral("person walking: light skin tone")})}, -{QStringLiteral("person walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FC"), QStringLiteral("walking_tone2"), QStringLiteral("person walking: medium-light skin tone")})}, -{QStringLiteral("person walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FD"), QStringLiteral("walking_tone3"), QStringLiteral("person walking: medium skin tone")})}, -{QStringLiteral("person walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FE"), QStringLiteral("walking_tone4"), QStringLiteral("person walking: medium-dark skin tone")})}, -{QStringLiteral("person walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FF"), QStringLiteral("walking_tone5"), QStringLiteral("person walking: dark skin tone")})}, -{QStringLiteral("man walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man walking: light skin tone"), QStringLiteral("man walking: light skin tone")})}, -{QStringLiteral("man walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man walking: medium-light skin tone"), QStringLiteral("man walking: medium-light skin tone")})}, -{QStringLiteral("man walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man walking: medium skin tone"), QStringLiteral("man walking: medium skin tone")})}, -{QStringLiteral("man walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man walking: medium-dark skin tone"), QStringLiteral("man walking: medium-dark skin tone")})}, -{QStringLiteral("man walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man walking: dark skin tone"), QStringLiteral("man walking: dark skin tone")})}, -{QStringLiteral("woman walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman walking: light skin tone"), QStringLiteral("woman walking: light skin tone")})}, -{QStringLiteral("woman walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman walking: medium-light skin tone"), QStringLiteral("woman walking: medium-light skin tone")})}, -{QStringLiteral("woman walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman walking: medium skin tone"), QStringLiteral("woman walking: medium skin tone")})}, -{QStringLiteral("woman walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman walking: medium-dark skin tone"), QStringLiteral("woman walking: medium-dark skin tone")})}, -{QStringLiteral("woman walking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B6\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman walking: dark skin tone"), QStringLiteral("woman walking: dark skin tone")})}, -{QStringLiteral("person standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FB"), QStringLiteral("person standing: light skin tone"), QStringLiteral("person standing: light skin tone")})}, -{QStringLiteral("person standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FC"), QStringLiteral("person standing: medium-light skin tone"), QStringLiteral("person standing: medium-light skin tone")})}, -{QStringLiteral("person standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FD"), QStringLiteral("person standing: medium skin tone"), QStringLiteral("person standing: medium skin tone")})}, -{QStringLiteral("person standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FE"), QStringLiteral("person standing: medium-dark skin tone"), QStringLiteral("person standing: medium-dark skin tone")})}, -{QStringLiteral("person standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FF"), QStringLiteral("person standing: dark skin tone"), QStringLiteral("person standing: dark skin tone")})}, -{QStringLiteral("man standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man standing: light skin tone"), QStringLiteral("man standing: light skin tone")})}, -{QStringLiteral("man standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man standing: medium-light skin tone"), QStringLiteral("man standing: medium-light skin tone")})}, -{QStringLiteral("man standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man standing: medium skin tone"), QStringLiteral("man standing: medium skin tone")})}, -{QStringLiteral("man standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man standing: medium-dark skin tone"), QStringLiteral("man standing: medium-dark skin tone")})}, -{QStringLiteral("man standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man standing: dark skin tone"), QStringLiteral("man standing: dark skin tone")})}, -{QStringLiteral("woman standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman standing: light skin tone"), QStringLiteral("woman standing: light skin tone")})}, -{QStringLiteral("woman standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman standing: medium-light skin tone"), QStringLiteral("woman standing: medium-light skin tone")})}, -{QStringLiteral("woman standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman standing: medium skin tone"), QStringLiteral("woman standing: medium skin tone")})}, -{QStringLiteral("woman standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman standing: medium-dark skin tone"), QStringLiteral("woman standing: medium-dark skin tone")})}, -{QStringLiteral("woman standing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CD\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman standing: dark skin tone"), QStringLiteral("woman standing: dark skin tone")})}, -{QStringLiteral("person kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FB"), QStringLiteral("person kneeling: light skin tone"), QStringLiteral("person kneeling: light skin tone")})}, -{QStringLiteral("person kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FC"), QStringLiteral("person kneeling: medium-light skin tone"), QStringLiteral("person kneeling: medium-light skin tone")})}, -{QStringLiteral("person kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FD"), QStringLiteral("person kneeling: medium skin tone"), QStringLiteral("person kneeling: medium skin tone")})}, -{QStringLiteral("person kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FE"), QStringLiteral("person kneeling: medium-dark skin tone"), QStringLiteral("person kneeling: medium-dark skin tone")})}, -{QStringLiteral("person kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FF"), QStringLiteral("person kneeling: dark skin tone"), QStringLiteral("person kneeling: dark skin tone")})}, -{QStringLiteral("man kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man kneeling: light skin tone"), QStringLiteral("man kneeling: light skin tone")})}, -{QStringLiteral("man kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man kneeling: medium-light skin tone"), QStringLiteral("man kneeling: medium-light skin tone")})}, -{QStringLiteral("man kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man kneeling: medium skin tone"), QStringLiteral("man kneeling: medium skin tone")})}, -{QStringLiteral("man kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man kneeling: medium-dark skin tone"), QStringLiteral("man kneeling: medium-dark skin tone")})}, -{QStringLiteral("man kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man kneeling: dark skin tone"), QStringLiteral("man kneeling: dark skin tone")})}, -{QStringLiteral("woman kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman kneeling: light skin tone"), QStringLiteral("woman kneeling: light skin tone")})}, -{QStringLiteral("woman kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman kneeling: medium-light skin tone"), QStringLiteral("woman kneeling: medium-light skin tone")})}, -{QStringLiteral("woman kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman kneeling: medium skin tone"), QStringLiteral("woman kneeling: medium skin tone")})}, -{QStringLiteral("woman kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman kneeling: medium-dark skin tone"), QStringLiteral("woman kneeling: medium-dark skin tone")})}, -{QStringLiteral("woman kneeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9CE\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman kneeling: dark skin tone"), QStringLiteral("woman kneeling: dark skin tone")})}, -{QStringLiteral("person with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9AF"), QStringLiteral("person with white cane: light skin tone"), QStringLiteral("person with white cane: light skin tone")})}, -{QStringLiteral("person with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9AF"), QStringLiteral("person with white cane: medium-light skin tone"), QStringLiteral("person with white cane: medium-light skin tone")})}, -{QStringLiteral("person with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9AF"), QStringLiteral("person with white cane: medium skin tone"), QStringLiteral("person with white cane: medium skin tone")})}, -{QStringLiteral("person with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9AF"), QStringLiteral("person with white cane: medium-dark skin tone"), QStringLiteral("person with white cane: medium-dark skin tone")})}, -{QStringLiteral("person with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9AF"), QStringLiteral("person with white cane: dark skin tone"), QStringLiteral("person with white cane: dark skin tone")})}, -{QStringLiteral("man with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9AF"), QStringLiteral("man with white cane: light skin tone"), QStringLiteral("man with white cane: light skin tone")})}, -{QStringLiteral("man with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9AF"), QStringLiteral("man with white cane: medium-light skin tone"), QStringLiteral("man with white cane: medium-light skin tone")})}, -{QStringLiteral("man with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9AF"), QStringLiteral("man with white cane: medium skin tone"), QStringLiteral("man with white cane: medium skin tone")})}, -{QStringLiteral("man with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9AF"), QStringLiteral("man with white cane: medium-dark skin tone"), QStringLiteral("man with white cane: medium-dark skin tone")})}, -{QStringLiteral("man with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9AF"), QStringLiteral("man with white cane: dark skin tone"), QStringLiteral("man with white cane: dark skin tone")})}, -{QStringLiteral("woman with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9AF"), QStringLiteral("woman with white cane: light skin tone"), QStringLiteral("woman with white cane: light skin tone")})}, -{QStringLiteral("woman with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9AF"), QStringLiteral("woman with white cane: medium-light skin tone"), QStringLiteral("woman with white cane: medium-light skin tone")})}, -{QStringLiteral("woman with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9AF"), QStringLiteral("woman with white cane: medium skin tone"), QStringLiteral("woman with white cane: medium skin tone")})}, -{QStringLiteral("woman with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9AF"), QStringLiteral("woman with white cane: medium-dark skin tone"), QStringLiteral("woman with white cane: medium-dark skin tone")})}, -{QStringLiteral("woman with white cane"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9AF"), QStringLiteral("woman with white cane: dark skin tone"), QStringLiteral("woman with white cane: dark skin tone")})}, -{QStringLiteral("person in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9BC"), QStringLiteral("person in motorized wheelchair: light skin tone"), QStringLiteral("person in motorized wheelchair: light skin tone")})}, -{QStringLiteral("person in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9BC"), QStringLiteral("person in motorized wheelchair: medium-light skin tone"), QStringLiteral("person in motorized wheelchair: medium-light skin tone")})}, -{QStringLiteral("person in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9BC"), QStringLiteral("person in motorized wheelchair: medium skin tone"), QStringLiteral("person in motorized wheelchair: medium skin tone")})}, -{QStringLiteral("person in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9BC"), QStringLiteral("person in motorized wheelchair: medium-dark skin tone"), QStringLiteral("person in motorized wheelchair: medium-dark skin tone")})}, -{QStringLiteral("person in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9BC"), QStringLiteral("person in motorized wheelchair: dark skin tone"), QStringLiteral("person in motorized wheelchair: dark skin tone")})}, -{QStringLiteral("man in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9BC"), QStringLiteral("man in motorized wheelchair: light skin tone"), QStringLiteral("man in motorized wheelchair: light skin tone")})}, -{QStringLiteral("man in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9BC"), QStringLiteral("man in motorized wheelchair: medium-light skin tone"), QStringLiteral("man in motorized wheelchair: medium-light skin tone")})}, -{QStringLiteral("man in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9BC"), QStringLiteral("man in motorized wheelchair: medium skin tone"), QStringLiteral("man in motorized wheelchair: medium skin tone")})}, -{QStringLiteral("man in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9BC"), QStringLiteral("man in motorized wheelchair: medium-dark skin tone"), QStringLiteral("man in motorized wheelchair: medium-dark skin tone")})}, -{QStringLiteral("man in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9BC"), QStringLiteral("man in motorized wheelchair: dark skin tone"), QStringLiteral("man in motorized wheelchair: dark skin tone")})}, -{QStringLiteral("woman in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9BC"), QStringLiteral("woman in motorized wheelchair: light skin tone"), QStringLiteral("woman in motorized wheelchair: light skin tone")})}, -{QStringLiteral("woman in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9BC"), QStringLiteral("woman in motorized wheelchair: medium-light skin tone"), QStringLiteral("woman in motorized wheelchair: medium-light skin tone")})}, -{QStringLiteral("woman in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9BC"), QStringLiteral("woman in motorized wheelchair: medium skin tone"), QStringLiteral("woman in motorized wheelchair: medium skin tone")})}, -{QStringLiteral("woman in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9BC"), QStringLiteral("woman in motorized wheelchair: medium-dark skin tone"), QStringLiteral("woman in motorized wheelchair: medium-dark skin tone")})}, -{QStringLiteral("woman in motorized wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9BC"), QStringLiteral("woman in motorized wheelchair: dark skin tone"), QStringLiteral("woman in motorized wheelchair: dark skin tone")})}, -{QStringLiteral("person in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F9BD"), QStringLiteral("person in manual wheelchair: light skin tone"), QStringLiteral("person in manual wheelchair: light skin tone")})}, -{QStringLiteral("person in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F9BD"), QStringLiteral("person in manual wheelchair: medium-light skin tone"), QStringLiteral("person in manual wheelchair: medium-light skin tone")})}, -{QStringLiteral("person in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F9BD"), QStringLiteral("person in manual wheelchair: medium skin tone"), QStringLiteral("person in manual wheelchair: medium skin tone")})}, -{QStringLiteral("person in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F9BD"), QStringLiteral("person in manual wheelchair: medium-dark skin tone"), QStringLiteral("person in manual wheelchair: medium-dark skin tone")})}, -{QStringLiteral("person in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F9BD"), QStringLiteral("person in manual wheelchair: dark skin tone"), QStringLiteral("person in manual wheelchair: dark skin tone")})}, -{QStringLiteral("man in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F9BD"), QStringLiteral("man in manual wheelchair: light skin tone"), QStringLiteral("man in manual wheelchair: light skin tone")})}, -{QStringLiteral("man in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F9BD"), QStringLiteral("man in manual wheelchair: medium-light skin tone"), QStringLiteral("man in manual wheelchair: medium-light skin tone")})}, -{QStringLiteral("man in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F9BD"), QStringLiteral("man in manual wheelchair: medium skin tone"), QStringLiteral("man in manual wheelchair: medium skin tone")})}, -{QStringLiteral("man in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F9BD"), QStringLiteral("man in manual wheelchair: medium-dark skin tone"), QStringLiteral("man in manual wheelchair: medium-dark skin tone")})}, -{QStringLiteral("man in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F9BD"), QStringLiteral("man in manual wheelchair: dark skin tone"), QStringLiteral("man in manual wheelchair: dark skin tone")})}, -{QStringLiteral("woman in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F9BD"), QStringLiteral("woman in manual wheelchair: light skin tone"), QStringLiteral("woman in manual wheelchair: light skin tone")})}, -{QStringLiteral("woman in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F9BD"), QStringLiteral("woman in manual wheelchair: medium-light skin tone"), QStringLiteral("woman in manual wheelchair: medium-light skin tone")})}, -{QStringLiteral("woman in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F9BD"), QStringLiteral("woman in manual wheelchair: medium skin tone"), QStringLiteral("woman in manual wheelchair: medium skin tone")})}, -{QStringLiteral("woman in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F9BD"), QStringLiteral("woman in manual wheelchair: medium-dark skin tone"), QStringLiteral("woman in manual wheelchair: medium-dark skin tone")})}, -{QStringLiteral("woman in manual wheelchair"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F9BD"), QStringLiteral("woman in manual wheelchair: dark skin tone"), QStringLiteral("woman in manual wheelchair: dark skin tone")})}, -{QStringLiteral("person running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FB"), QStringLiteral("runner_tone1"), QStringLiteral("person running: light skin tone")})}, -{QStringLiteral("person running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FC"), QStringLiteral("runner_tone2"), QStringLiteral("person running: medium-light skin tone")})}, -{QStringLiteral("person running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FD"), QStringLiteral("runner_tone3"), QStringLiteral("person running: medium skin tone")})}, -{QStringLiteral("person running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FE"), QStringLiteral("runner_tone4"), QStringLiteral("person running: medium-dark skin tone")})}, -{QStringLiteral("person running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FF"), QStringLiteral("runner_tone5"), QStringLiteral("person running: dark skin tone")})}, -{QStringLiteral("man running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man running: light skin tone"), QStringLiteral("man running: light skin tone")})}, -{QStringLiteral("man running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man running: medium-light skin tone"), QStringLiteral("man running: medium-light skin tone")})}, -{QStringLiteral("man running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man running: medium skin tone"), QStringLiteral("man running: medium skin tone")})}, -{QStringLiteral("man running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man running: medium-dark skin tone"), QStringLiteral("man running: medium-dark skin tone")})}, -{QStringLiteral("man running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man running: dark skin tone"), QStringLiteral("man running: dark skin tone")})}, -{QStringLiteral("woman running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman running: light skin tone"), QStringLiteral("woman running: light skin tone")})}, -{QStringLiteral("woman running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman running: medium-light skin tone"), QStringLiteral("woman running: medium-light skin tone")})}, -{QStringLiteral("woman running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman running: medium skin tone"), QStringLiteral("woman running: medium skin tone")})}, -{QStringLiteral("woman running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman running: medium-dark skin tone"), QStringLiteral("woman running: medium-dark skin tone")})}, -{QStringLiteral("woman running"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C3\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman running: dark skin tone"), QStringLiteral("woman running: dark skin tone")})}, -{QStringLiteral("woman dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F483\U0001F3FB"), QStringLiteral("dancer_tone1"), QStringLiteral("woman dancing: light skin tone")})}, -{QStringLiteral("woman dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F483\U0001F3FC"), QStringLiteral("dancer_tone2"), QStringLiteral("woman dancing: medium-light skin tone")})}, -{QStringLiteral("woman dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F483\U0001F3FD"), QStringLiteral("dancer_tone3"), QStringLiteral("woman dancing: medium skin tone")})}, -{QStringLiteral("woman dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F483\U0001F3FE"), QStringLiteral("dancer_tone4"), QStringLiteral("woman dancing: medium-dark skin tone")})}, -{QStringLiteral("woman dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F483\U0001F3FF"), QStringLiteral("dancer_tone5"), QStringLiteral("woman dancing: dark skin tone")})}, -{QStringLiteral("man dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F57A\U0001F3FB"), QStringLiteral("man_dancing_tone1"), QStringLiteral("man dancing: light skin tone")})}, -{QStringLiteral("man dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F57A\U0001F3FC"), QStringLiteral("man_dancing_tone2"), QStringLiteral("man dancing: medium-light skin tone")})}, -{QStringLiteral("man dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F57A\U0001F3FD"), QStringLiteral("man_dancing_tone3"), QStringLiteral("man dancing: medium skin tone")})}, -{QStringLiteral("man dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F57A\U0001F3FE"), QStringLiteral("man_dancing_tone4"), QStringLiteral("man dancing: medium-dark skin tone")})}, -{QStringLiteral("man dancing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F57A\U0001F3FF"), QStringLiteral("man_dancing_tone5"), QStringLiteral("man dancing: dark skin tone")})}, -{QStringLiteral("person in suit levitating"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F574\U0001F3FB"), QStringLiteral("levitate_tone1"), QStringLiteral("person in suit levitating: light skin tone")})}, -{QStringLiteral("person in suit levitating"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F574\U0001F3FC"), QStringLiteral("levitate_tone2"), QStringLiteral("person in suit levitating: medium-light skin tone")})}, -{QStringLiteral("person in suit levitating"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F574\U0001F3FD"), QStringLiteral("levitate_tone3"), QStringLiteral("person in suit levitating: medium skin tone")})}, -{QStringLiteral("person in suit levitating"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F574\U0001F3FE"), QStringLiteral("levitate_tone4"), QStringLiteral("person in suit levitating: medium-dark skin tone")})}, -{QStringLiteral("person in suit levitating"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F574\U0001F3FF"), QStringLiteral("levitate_tone5"), QStringLiteral("person in suit levitating: dark skin tone")})}, -{QStringLiteral("person in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FB"), QStringLiteral("person_in_steamy_room_tone1"), QStringLiteral("person in steamy room: light skin tone")})}, -{QStringLiteral("person in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FC"), QStringLiteral("person_in_steamy_room_tone2"), QStringLiteral("person in steamy room: medium-light skin tone")})}, -{QStringLiteral("person in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FD"), QStringLiteral("person_in_steamy_room_tone3"), QStringLiteral("person in steamy room: medium skin tone")})}, -{QStringLiteral("person in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FE"), QStringLiteral("person_in_steamy_room_tone4"), QStringLiteral("person in steamy room: medium-dark skin tone")})}, -{QStringLiteral("person in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FF"), QStringLiteral("person_in_steamy_room_tone5"), QStringLiteral("person in steamy room: dark skin tone")})}, -{QStringLiteral("man in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in steamy room: light skin tone"), QStringLiteral("man in steamy room: light skin tone")})}, -{QStringLiteral("man in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in steamy room: medium-light skin tone"), QStringLiteral("man in steamy room: medium-light skin tone")})}, -{QStringLiteral("man in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in steamy room: medium skin tone"), QStringLiteral("man in steamy room: medium skin tone")})}, -{QStringLiteral("man in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in steamy room: medium-dark skin tone"), QStringLiteral("man in steamy room: medium-dark skin tone")})}, -{QStringLiteral("man in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in steamy room: dark skin tone"), QStringLiteral("man in steamy room: dark skin tone")})}, -{QStringLiteral("woman in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in steamy room: light skin tone"), QStringLiteral("woman in steamy room: light skin tone")})}, -{QStringLiteral("woman in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in steamy room: medium-light skin tone"), QStringLiteral("woman in steamy room: medium-light skin tone")})}, -{QStringLiteral("woman in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in steamy room: medium skin tone"), QStringLiteral("woman in steamy room: medium skin tone")})}, -{QStringLiteral("woman in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in steamy room: medium-dark skin tone"), QStringLiteral("woman in steamy room: medium-dark skin tone")})}, -{QStringLiteral("woman in steamy room"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D6\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in steamy room: dark skin tone"), QStringLiteral("woman in steamy room: dark skin tone")})}, -{QStringLiteral("person climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FB"), QStringLiteral("person_climbing_tone1"), QStringLiteral("person climbing: light skin tone")})}, -{QStringLiteral("person climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FC"), QStringLiteral("person_climbing_tone2"), QStringLiteral("person climbing: medium-light skin tone")})}, -{QStringLiteral("person climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FD"), QStringLiteral("person_climbing_tone3"), QStringLiteral("person climbing: medium skin tone")})}, -{QStringLiteral("person climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FE"), QStringLiteral("person_climbing_tone4"), QStringLiteral("person climbing: medium-dark skin tone")})}, -{QStringLiteral("person climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FF"), QStringLiteral("person_climbing_tone5"), QStringLiteral("person climbing: dark skin tone")})}, -{QStringLiteral("man climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man climbing: light skin tone"), QStringLiteral("man climbing: light skin tone")})}, -{QStringLiteral("man climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man climbing: medium-light skin tone"), QStringLiteral("man climbing: medium-light skin tone")})}, -{QStringLiteral("man climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man climbing: medium skin tone"), QStringLiteral("man climbing: medium skin tone")})}, -{QStringLiteral("man climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man climbing: medium-dark skin tone"), QStringLiteral("man climbing: medium-dark skin tone")})}, -{QStringLiteral("man climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man climbing: dark skin tone"), QStringLiteral("man climbing: dark skin tone")})}, -{QStringLiteral("woman climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman climbing: light skin tone"), QStringLiteral("woman climbing: light skin tone")})}, -{QStringLiteral("woman climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman climbing: medium-light skin tone"), QStringLiteral("woman climbing: medium-light skin tone")})}, -{QStringLiteral("woman climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman climbing: medium skin tone"), QStringLiteral("woman climbing: medium skin tone")})}, -{QStringLiteral("woman climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman climbing: medium-dark skin tone"), QStringLiteral("woman climbing: medium-dark skin tone")})}, -{QStringLiteral("woman climbing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D7\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman climbing: dark skin tone"), QStringLiteral("woman climbing: dark skin tone")})}, -{QStringLiteral("horse racing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C7\U0001F3FB"), QStringLiteral("horse_racing_tone1"), QStringLiteral("horse racing: light skin tone")})}, -{QStringLiteral("horse racing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C7\U0001F3FC"), QStringLiteral("horse_racing_tone2"), QStringLiteral("horse racing: medium-light skin tone")})}, -{QStringLiteral("horse racing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C7\U0001F3FD"), QStringLiteral("horse_racing_tone3"), QStringLiteral("horse racing: medium skin tone")})}, -{QStringLiteral("horse racing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C7\U0001F3FE"), QStringLiteral("horse_racing_tone4"), QStringLiteral("horse racing: medium-dark skin tone")})}, -{QStringLiteral("horse racing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C7\U0001F3FF"), QStringLiteral("horse_racing_tone5"), QStringLiteral("horse racing: dark skin tone")})}, -{QStringLiteral("snowboarder"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C2\U0001F3FB"), QStringLiteral("snowboarder_tone1"), QStringLiteral("snowboarder: light skin tone")})}, -{QStringLiteral("snowboarder"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C2\U0001F3FC"), QStringLiteral("snowboarder_tone2"), QStringLiteral("snowboarder: medium-light skin tone")})}, -{QStringLiteral("snowboarder"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C2\U0001F3FD"), QStringLiteral("snowboarder_tone3"), QStringLiteral("snowboarder: medium skin tone")})}, -{QStringLiteral("snowboarder"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C2\U0001F3FE"), QStringLiteral("snowboarder_tone4"), QStringLiteral("snowboarder: medium-dark skin tone")})}, -{QStringLiteral("snowboarder"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C2\U0001F3FF"), QStringLiteral("snowboarder_tone5"), QStringLiteral("snowboarder: dark skin tone")})}, -{QStringLiteral("person golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FB"), QStringLiteral("person_golfing_tone1"), QStringLiteral("person golfing: light skin tone")})}, -{QStringLiteral("person golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FC"), QStringLiteral("person_golfing_tone2"), QStringLiteral("person golfing: medium-light skin tone")})}, -{QStringLiteral("person golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FD"), QStringLiteral("person_golfing_tone3"), QStringLiteral("person golfing: medium skin tone")})}, -{QStringLiteral("person golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FE"), QStringLiteral("person_golfing_tone4"), QStringLiteral("person golfing: medium-dark skin tone")})}, -{QStringLiteral("person golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FF"), QStringLiteral("person_golfing_tone5"), QStringLiteral("person golfing: dark skin tone")})}, -{QStringLiteral("man golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man golfing: light skin tone"), QStringLiteral("man golfing: light skin tone")})}, -{QStringLiteral("man golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man golfing: medium-light skin tone"), QStringLiteral("man golfing: medium-light skin tone")})}, -{QStringLiteral("man golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man golfing: medium skin tone"), QStringLiteral("man golfing: medium skin tone")})}, -{QStringLiteral("man golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man golfing: medium-dark skin tone"), QStringLiteral("man golfing: medium-dark skin tone")})}, -{QStringLiteral("man golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man golfing: dark skin tone"), QStringLiteral("man golfing: dark skin tone")})}, -{QStringLiteral("woman golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman golfing: light skin tone"), QStringLiteral("woman golfing: light skin tone")})}, -{QStringLiteral("woman golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman golfing: medium-light skin tone"), QStringLiteral("woman golfing: medium-light skin tone")})}, -{QStringLiteral("woman golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman golfing: medium skin tone"), QStringLiteral("woman golfing: medium skin tone")})}, -{QStringLiteral("woman golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman golfing: medium-dark skin tone"), QStringLiteral("woman golfing: medium-dark skin tone")})}, -{QStringLiteral("woman golfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CC\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman golfing: dark skin tone"), QStringLiteral("woman golfing: dark skin tone")})}, -{QStringLiteral("person surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FB"), QStringLiteral("surfer_tone1"), QStringLiteral("person surfing: light skin tone")})}, -{QStringLiteral("person surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FC"), QStringLiteral("surfer_tone2"), QStringLiteral("person surfing: medium-light skin tone")})}, -{QStringLiteral("person surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FD"), QStringLiteral("surfer_tone3"), QStringLiteral("person surfing: medium skin tone")})}, -{QStringLiteral("person surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FE"), QStringLiteral("surfer_tone4"), QStringLiteral("person surfing: medium-dark skin tone")})}, -{QStringLiteral("person surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FF"), QStringLiteral("surfer_tone5"), QStringLiteral("person surfing: dark skin tone")})}, -{QStringLiteral("man surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man surfing: light skin tone"), QStringLiteral("man surfing: light skin tone")})}, -{QStringLiteral("man surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man surfing: medium-light skin tone"), QStringLiteral("man surfing: medium-light skin tone")})}, -{QStringLiteral("man surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man surfing: medium skin tone"), QStringLiteral("man surfing: medium skin tone")})}, -{QStringLiteral("man surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man surfing: medium-dark skin tone"), QStringLiteral("man surfing: medium-dark skin tone")})}, -{QStringLiteral("man surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man surfing: dark skin tone"), QStringLiteral("man surfing: dark skin tone")})}, -{QStringLiteral("woman surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman surfing: light skin tone"), QStringLiteral("woman surfing: light skin tone")})}, -{QStringLiteral("woman surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman surfing: medium-light skin tone"), QStringLiteral("woman surfing: medium-light skin tone")})}, -{QStringLiteral("woman surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman surfing: medium skin tone"), QStringLiteral("woman surfing: medium skin tone")})}, -{QStringLiteral("woman surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman surfing: medium-dark skin tone"), QStringLiteral("woman surfing: medium-dark skin tone")})}, -{QStringLiteral("woman surfing"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3C4\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman surfing: dark skin tone"), QStringLiteral("woman surfing: dark skin tone")})}, -{QStringLiteral("person rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FB"), QStringLiteral("rowboat_tone1"), QStringLiteral("person rowing boat: light skin tone")})}, -{QStringLiteral("person rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FC"), QStringLiteral("rowboat_tone2"), QStringLiteral("person rowing boat: medium-light skin tone")})}, -{QStringLiteral("person rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FD"), QStringLiteral("rowboat_tone3"), QStringLiteral("person rowing boat: medium skin tone")})}, -{QStringLiteral("person rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FE"), QStringLiteral("rowboat_tone4"), QStringLiteral("person rowing boat: medium-dark skin tone")})}, -{QStringLiteral("person rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FF"), QStringLiteral("rowboat_tone5"), QStringLiteral("person rowing boat: dark skin tone")})}, -{QStringLiteral("man rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man rowing boat: light skin tone"), QStringLiteral("man rowing boat: light skin tone")})}, -{QStringLiteral("man rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man rowing boat: medium-light skin tone"), QStringLiteral("man rowing boat: medium-light skin tone")})}, -{QStringLiteral("man rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man rowing boat: medium skin tone"), QStringLiteral("man rowing boat: medium skin tone")})}, -{QStringLiteral("man rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man rowing boat: medium-dark skin tone"), QStringLiteral("man rowing boat: medium-dark skin tone")})}, -{QStringLiteral("man rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man rowing boat: dark skin tone"), QStringLiteral("man rowing boat: dark skin tone")})}, -{QStringLiteral("woman rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman rowing boat: light skin tone"), QStringLiteral("woman rowing boat: light skin tone")})}, -{QStringLiteral("woman rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman rowing boat: medium-light skin tone"), QStringLiteral("woman rowing boat: medium-light skin tone")})}, -{QStringLiteral("woman rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman rowing boat: medium skin tone"), QStringLiteral("woman rowing boat: medium skin tone")})}, -{QStringLiteral("woman rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman rowing boat: medium-dark skin tone"), QStringLiteral("woman rowing boat: medium-dark skin tone")})}, -{QStringLiteral("woman rowing boat"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6A3\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman rowing boat: dark skin tone"), QStringLiteral("woman rowing boat: dark skin tone")})}, -{QStringLiteral("person swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FB"), QStringLiteral("swimmer_tone1"), QStringLiteral("person swimming: light skin tone")})}, -{QStringLiteral("person swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FC"), QStringLiteral("swimmer_tone2"), QStringLiteral("person swimming: medium-light skin tone")})}, -{QStringLiteral("person swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FD"), QStringLiteral("swimmer_tone3"), QStringLiteral("person swimming: medium skin tone")})}, -{QStringLiteral("person swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FE"), QStringLiteral("swimmer_tone4"), QStringLiteral("person swimming: medium-dark skin tone")})}, -{QStringLiteral("person swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FF"), QStringLiteral("swimmer_tone5"), QStringLiteral("person swimming: dark skin tone")})}, -{QStringLiteral("man swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man swimming: light skin tone"), QStringLiteral("man swimming: light skin tone")})}, -{QStringLiteral("man swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man swimming: medium-light skin tone"), QStringLiteral("man swimming: medium-light skin tone")})}, -{QStringLiteral("man swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man swimming: medium skin tone"), QStringLiteral("man swimming: medium skin tone")})}, -{QStringLiteral("man swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man swimming: medium-dark skin tone"), QStringLiteral("man swimming: medium-dark skin tone")})}, -{QStringLiteral("man swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man swimming: dark skin tone"), QStringLiteral("man swimming: dark skin tone")})}, -{QStringLiteral("woman swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman swimming: light skin tone"), QStringLiteral("woman swimming: light skin tone")})}, -{QStringLiteral("woman swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman swimming: medium-light skin tone"), QStringLiteral("woman swimming: medium-light skin tone")})}, -{QStringLiteral("woman swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman swimming: medium skin tone"), QStringLiteral("woman swimming: medium skin tone")})}, -{QStringLiteral("woman swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman swimming: medium-dark skin tone"), QStringLiteral("woman swimming: medium-dark skin tone")})}, -{QStringLiteral("woman swimming"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CA\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman swimming: dark skin tone"), QStringLiteral("woman swimming: dark skin tone")})}, -{QStringLiteral("person bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FB"), QStringLiteral("basketball_player_tone1"), QStringLiteral("person bouncing ball: light skin tone")})}, -{QStringLiteral("person bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FC"), QStringLiteral("basketball_player_tone2"), QStringLiteral("person bouncing ball: medium-light skin tone")})}, -{QStringLiteral("person bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FD"), QStringLiteral("basketball_player_tone3"), QStringLiteral("person bouncing ball: medium skin tone")})}, -{QStringLiteral("person bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FE"), QStringLiteral("basketball_player_tone4"), QStringLiteral("person bouncing ball: medium-dark skin tone")})}, -{QStringLiteral("person bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FF"), QStringLiteral("basketball_player_tone5"), QStringLiteral("person bouncing ball: dark skin tone")})}, -{QStringLiteral("man bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bouncing ball: light skin tone"), QStringLiteral("man bouncing ball: light skin tone")})}, -{QStringLiteral("man bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bouncing ball: medium-light skin tone"), QStringLiteral("man bouncing ball: medium-light skin tone")})}, -{QStringLiteral("man bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bouncing ball: medium skin tone"), QStringLiteral("man bouncing ball: medium skin tone")})}, -{QStringLiteral("man bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bouncing ball: medium-dark skin tone"), QStringLiteral("man bouncing ball: medium-dark skin tone")})}, -{QStringLiteral("man bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man bouncing ball: dark skin tone"), QStringLiteral("man bouncing ball: dark skin tone")})}, -{QStringLiteral("woman bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bouncing ball: light skin tone"), QStringLiteral("woman bouncing ball: light skin tone")})}, -{QStringLiteral("woman bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bouncing ball: medium-light skin tone"), QStringLiteral("woman bouncing ball: medium-light skin tone")})}, -{QStringLiteral("woman bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bouncing ball: medium skin tone"), QStringLiteral("woman bouncing ball: medium skin tone")})}, -{QStringLiteral("woman bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bouncing ball: medium-dark skin tone"), QStringLiteral("woman bouncing ball: medium-dark skin tone")})}, -{QStringLiteral("woman bouncing ball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U000026F9\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman bouncing ball: dark skin tone"), QStringLiteral("woman bouncing ball: dark skin tone")})}, -{QStringLiteral("person lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FB"), QStringLiteral("lifter_tone1"), QStringLiteral("person lifting weights: light skin tone")})}, -{QStringLiteral("person lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FC"), QStringLiteral("lifter_tone2"), QStringLiteral("person lifting weights: medium-light skin tone")})}, -{QStringLiteral("person lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FD"), QStringLiteral("lifter_tone3"), QStringLiteral("person lifting weights: medium skin tone")})}, -{QStringLiteral("person lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FE"), QStringLiteral("lifter_tone4"), QStringLiteral("person lifting weights: medium-dark skin tone")})}, -{QStringLiteral("person lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FF"), QStringLiteral("lifter_tone5"), QStringLiteral("person lifting weights: dark skin tone")})}, -{QStringLiteral("man lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man lifting weights: light skin tone"), QStringLiteral("man lifting weights: light skin tone")})}, -{QStringLiteral("man lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man lifting weights: medium-light skin tone"), QStringLiteral("man lifting weights: medium-light skin tone")})}, -{QStringLiteral("man lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man lifting weights: medium skin tone"), QStringLiteral("man lifting weights: medium skin tone")})}, -{QStringLiteral("man lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man lifting weights: medium-dark skin tone"), QStringLiteral("man lifting weights: medium-dark skin tone")})}, -{QStringLiteral("man lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man lifting weights: dark skin tone"), QStringLiteral("man lifting weights: dark skin tone")})}, -{QStringLiteral("woman lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman lifting weights: light skin tone"), QStringLiteral("woman lifting weights: light skin tone")})}, -{QStringLiteral("woman lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman lifting weights: medium-light skin tone"), QStringLiteral("woman lifting weights: medium-light skin tone")})}, -{QStringLiteral("woman lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman lifting weights: medium skin tone"), QStringLiteral("woman lifting weights: medium skin tone")})}, -{QStringLiteral("woman lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman lifting weights: medium-dark skin tone"), QStringLiteral("woman lifting weights: medium-dark skin tone")})}, -{QStringLiteral("woman lifting weights"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3CB\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman lifting weights: dark skin tone"), QStringLiteral("woman lifting weights: dark skin tone")})}, -{QStringLiteral("person biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FB"), QStringLiteral("bicyclist_tone1"), QStringLiteral("person biking: light skin tone")})}, -{QStringLiteral("person biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FC"), QStringLiteral("bicyclist_tone2"), QStringLiteral("person biking: medium-light skin tone")})}, -{QStringLiteral("person biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FD"), QStringLiteral("bicyclist_tone3"), QStringLiteral("person biking: medium skin tone")})}, -{QStringLiteral("person biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FE"), QStringLiteral("bicyclist_tone4"), QStringLiteral("person biking: medium-dark skin tone")})}, -{QStringLiteral("person biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FF"), QStringLiteral("bicyclist_tone5"), QStringLiteral("person biking: dark skin tone")})}, -{QStringLiteral("man biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man biking: light skin tone"), QStringLiteral("man biking: light skin tone")})}, -{QStringLiteral("man biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man biking: medium-light skin tone"), QStringLiteral("man biking: medium-light skin tone")})}, -{QStringLiteral("man biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man biking: medium skin tone"), QStringLiteral("man biking: medium skin tone")})}, -{QStringLiteral("man biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man biking: medium-dark skin tone"), QStringLiteral("man biking: medium-dark skin tone")})}, -{QStringLiteral("man biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man biking: dark skin tone"), QStringLiteral("man biking: dark skin tone")})}, -{QStringLiteral("woman biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman biking: light skin tone"), QStringLiteral("woman biking: light skin tone")})}, -{QStringLiteral("woman biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman biking: medium-light skin tone"), QStringLiteral("woman biking: medium-light skin tone")})}, -{QStringLiteral("woman biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman biking: medium skin tone"), QStringLiteral("woman biking: medium skin tone")})}, -{QStringLiteral("woman biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman biking: medium-dark skin tone"), QStringLiteral("woman biking: medium-dark skin tone")})}, -{QStringLiteral("woman biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B4\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman biking: dark skin tone"), QStringLiteral("woman biking: dark skin tone")})}, -{QStringLiteral("person mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FB"), QStringLiteral("mountain_bicyclist_tone1"), QStringLiteral("person mountain biking: light skin tone")})}, -{QStringLiteral("person mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FC"), QStringLiteral("mountain_bicyclist_tone2"), QStringLiteral("person mountain biking: medium-light skin tone")})}, -{QStringLiteral("person mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FD"), QStringLiteral("mountain_bicyclist_tone3"), QStringLiteral("person mountain biking: medium skin tone")})}, -{QStringLiteral("person mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FE"), QStringLiteral("mountain_bicyclist_tone4"), QStringLiteral("person mountain biking: medium-dark skin tone")})}, -{QStringLiteral("person mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FF"), QStringLiteral("mountain_bicyclist_tone5"), QStringLiteral("person mountain biking: dark skin tone")})}, -{QStringLiteral("man mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mountain biking: light skin tone"), QStringLiteral("man mountain biking: light skin tone")})}, -{QStringLiteral("man mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mountain biking: medium-light skin tone"), QStringLiteral("man mountain biking: medium-light skin tone")})}, -{QStringLiteral("man mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mountain biking: medium skin tone"), QStringLiteral("man mountain biking: medium skin tone")})}, -{QStringLiteral("man mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mountain biking: medium-dark skin tone"), QStringLiteral("man mountain biking: medium-dark skin tone")})}, -{QStringLiteral("man mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man mountain biking: dark skin tone"), QStringLiteral("man mountain biking: dark skin tone")})}, -{QStringLiteral("woman mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mountain biking: light skin tone"), QStringLiteral("woman mountain biking: light skin tone")})}, -{QStringLiteral("woman mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mountain biking: medium-light skin tone"), QStringLiteral("woman mountain biking: medium-light skin tone")})}, -{QStringLiteral("woman mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mountain biking: medium skin tone"), QStringLiteral("woman mountain biking: medium skin tone")})}, -{QStringLiteral("woman mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mountain biking: medium-dark skin tone"), QStringLiteral("woman mountain biking: medium-dark skin tone")})}, -{QStringLiteral("woman mountain biking"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6B5\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman mountain biking: dark skin tone"), QStringLiteral("woman mountain biking: dark skin tone")})}, -{QStringLiteral("person cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FB"), QStringLiteral("cartwheel_tone1"), QStringLiteral("person cartwheeling: light skin tone")})}, -{QStringLiteral("person cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FC"), QStringLiteral("cartwheel_tone2"), QStringLiteral("person cartwheeling: medium-light skin tone")})}, -{QStringLiteral("person cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FD"), QStringLiteral("cartwheel_tone3"), QStringLiteral("person cartwheeling: medium skin tone")})}, -{QStringLiteral("person cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FE"), QStringLiteral("cartwheel_tone4"), QStringLiteral("person cartwheeling: medium-dark skin tone")})}, -{QStringLiteral("person cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FF"), QStringLiteral("cartwheel_tone5"), QStringLiteral("person cartwheeling: dark skin tone")})}, -{QStringLiteral("man cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man cartwheeling: light skin tone"), QStringLiteral("man cartwheeling: light skin tone")})}, -{QStringLiteral("man cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man cartwheeling: medium-light skin tone"), QStringLiteral("man cartwheeling: medium-light skin tone")})}, -{QStringLiteral("man cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man cartwheeling: medium skin tone"), QStringLiteral("man cartwheeling: medium skin tone")})}, -{QStringLiteral("man cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man cartwheeling: medium-dark skin tone"), QStringLiteral("man cartwheeling: medium-dark skin tone")})}, -{QStringLiteral("man cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man cartwheeling: dark skin tone"), QStringLiteral("man cartwheeling: dark skin tone")})}, -{QStringLiteral("woman cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman cartwheeling: light skin tone"), QStringLiteral("woman cartwheeling: light skin tone")})}, -{QStringLiteral("woman cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman cartwheeling: medium-light skin tone"), QStringLiteral("woman cartwheeling: medium-light skin tone")})}, -{QStringLiteral("woman cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman cartwheeling: medium skin tone"), QStringLiteral("woman cartwheeling: medium skin tone")})}, -{QStringLiteral("woman cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman cartwheeling: medium-dark skin tone"), QStringLiteral("woman cartwheeling: medium-dark skin tone")})}, -{QStringLiteral("woman cartwheeling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F938\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman cartwheeling: dark skin tone"), QStringLiteral("woman cartwheeling: dark skin tone")})}, -{QStringLiteral("person playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FB"), QStringLiteral("water_polo_tone1"), QStringLiteral("person playing water polo: light skin tone")})}, -{QStringLiteral("person playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FC"), QStringLiteral("water_polo_tone2"), QStringLiteral("person playing water polo: medium-light skin tone")})}, -{QStringLiteral("person playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FD"), QStringLiteral("water_polo_tone3"), QStringLiteral("person playing water polo: medium skin tone")})}, -{QStringLiteral("person playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FE"), QStringLiteral("water_polo_tone4"), QStringLiteral("person playing water polo: medium-dark skin tone")})}, -{QStringLiteral("person playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FF"), QStringLiteral("water_polo_tone5"), QStringLiteral("person playing water polo: dark skin tone")})}, -{QStringLiteral("man playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing water polo: light skin tone"), QStringLiteral("man playing water polo: light skin tone")})}, -{QStringLiteral("man playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing water polo: medium-light skin tone"), QStringLiteral("man playing water polo: medium-light skin tone")})}, -{QStringLiteral("man playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing water polo: medium skin tone"), QStringLiteral("man playing water polo: medium skin tone")})}, -{QStringLiteral("man playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing water polo: medium-dark skin tone"), QStringLiteral("man playing water polo: medium-dark skin tone")})}, -{QStringLiteral("man playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing water polo: dark skin tone"), QStringLiteral("man playing water polo: dark skin tone")})}, -{QStringLiteral("woman playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing water polo: light skin tone"), QStringLiteral("woman playing water polo: light skin tone")})}, -{QStringLiteral("woman playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing water polo: medium-light skin tone"), QStringLiteral("woman playing water polo: medium-light skin tone")})}, -{QStringLiteral("woman playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing water polo: medium skin tone"), QStringLiteral("woman playing water polo: medium skin tone")})}, -{QStringLiteral("woman playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing water polo: medium-dark skin tone"), QStringLiteral("woman playing water polo: medium-dark skin tone")})}, -{QStringLiteral("woman playing water polo"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93D\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing water polo: dark skin tone"), QStringLiteral("woman playing water polo: dark skin tone")})}, -{QStringLiteral("person playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FB"), QStringLiteral("handball_tone1"), QStringLiteral("person playing handball: light skin tone")})}, -{QStringLiteral("person playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FC"), QStringLiteral("handball_tone2"), QStringLiteral("person playing handball: medium-light skin tone")})}, -{QStringLiteral("person playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FD"), QStringLiteral("handball_tone3"), QStringLiteral("person playing handball: medium skin tone")})}, -{QStringLiteral("person playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FE"), QStringLiteral("handball_tone4"), QStringLiteral("person playing handball: medium-dark skin tone")})}, -{QStringLiteral("person playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FF"), QStringLiteral("handball_tone5"), QStringLiteral("person playing handball: dark skin tone")})}, -{QStringLiteral("man playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing handball: light skin tone"), QStringLiteral("man playing handball: light skin tone")})}, -{QStringLiteral("man playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing handball: medium-light skin tone"), QStringLiteral("man playing handball: medium-light skin tone")})}, -{QStringLiteral("man playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing handball: medium skin tone"), QStringLiteral("man playing handball: medium skin tone")})}, -{QStringLiteral("man playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing handball: medium-dark skin tone"), QStringLiteral("man playing handball: medium-dark skin tone")})}, -{QStringLiteral("man playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man playing handball: dark skin tone"), QStringLiteral("man playing handball: dark skin tone")})}, -{QStringLiteral("woman playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing handball: light skin tone"), QStringLiteral("woman playing handball: light skin tone")})}, -{QStringLiteral("woman playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing handball: medium-light skin tone"), QStringLiteral("woman playing handball: medium-light skin tone")})}, -{QStringLiteral("woman playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing handball: medium skin tone"), QStringLiteral("woman playing handball: medium skin tone")})}, -{QStringLiteral("woman playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing handball: medium-dark skin tone"), QStringLiteral("woman playing handball: medium-dark skin tone")})}, -{QStringLiteral("woman playing handball"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F93E\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman playing handball: dark skin tone"), QStringLiteral("woman playing handball: dark skin tone")})}, -{QStringLiteral("person juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FB"), QStringLiteral("juggling_tone1"), QStringLiteral("person juggling: light skin tone")})}, -{QStringLiteral("person juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FC"), QStringLiteral("juggling_tone2"), QStringLiteral("person juggling: medium-light skin tone")})}, -{QStringLiteral("person juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FD"), QStringLiteral("juggling_tone3"), QStringLiteral("person juggling: medium skin tone")})}, -{QStringLiteral("person juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FE"), QStringLiteral("juggling_tone4"), QStringLiteral("person juggling: medium-dark skin tone")})}, -{QStringLiteral("person juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FF"), QStringLiteral("juggling_tone5"), QStringLiteral("person juggling: dark skin tone")})}, -{QStringLiteral("man juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man juggling: light skin tone"), QStringLiteral("man juggling: light skin tone")})}, -{QStringLiteral("man juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man juggling: medium-light skin tone"), QStringLiteral("man juggling: medium-light skin tone")})}, -{QStringLiteral("man juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man juggling: medium skin tone"), QStringLiteral("man juggling: medium skin tone")})}, -{QStringLiteral("man juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man juggling: medium-dark skin tone"), QStringLiteral("man juggling: medium-dark skin tone")})}, -{QStringLiteral("man juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man juggling: dark skin tone"), QStringLiteral("man juggling: dark skin tone")})}, -{QStringLiteral("woman juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman juggling: light skin tone"), QStringLiteral("woman juggling: light skin tone")})}, -{QStringLiteral("woman juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman juggling: medium-light skin tone"), QStringLiteral("woman juggling: medium-light skin tone")})}, -{QStringLiteral("woman juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman juggling: medium skin tone"), QStringLiteral("woman juggling: medium skin tone")})}, -{QStringLiteral("woman juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman juggling: medium-dark skin tone"), QStringLiteral("woman juggling: medium-dark skin tone")})}, -{QStringLiteral("woman juggling"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F939\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman juggling: dark skin tone"), QStringLiteral("woman juggling: dark skin tone")})}, -{QStringLiteral("person in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FB"), QStringLiteral("person_in_lotus_position_tone1"), QStringLiteral("person in lotus position: light skin tone")})}, -{QStringLiteral("person in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FC"), QStringLiteral("person_in_lotus_position_tone2"), QStringLiteral("person in lotus position: medium-light skin tone")})}, -{QStringLiteral("person in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FD"), QStringLiteral("person_in_lotus_position_tone3"), QStringLiteral("person in lotus position: medium skin tone")})}, -{QStringLiteral("person in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FE"), QStringLiteral("person_in_lotus_position_tone4"), QStringLiteral("person in lotus position: medium-dark skin tone")})}, -{QStringLiteral("person in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FF"), QStringLiteral("person_in_lotus_position_tone5"), QStringLiteral("person in lotus position: dark skin tone")})}, -{QStringLiteral("man in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FB\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in lotus position: light skin tone"), QStringLiteral("man in lotus position: light skin tone")})}, -{QStringLiteral("man in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FC\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in lotus position: medium-light skin tone"), QStringLiteral("man in lotus position: medium-light skin tone")})}, -{QStringLiteral("man in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FD\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in lotus position: medium skin tone"), QStringLiteral("man in lotus position: medium skin tone")})}, -{QStringLiteral("man in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FE\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in lotus position: medium-dark skin tone"), QStringLiteral("man in lotus position: medium-dark skin tone")})}, -{QStringLiteral("man in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FF\U0000200D\U00002642\U0000FE0F"), QStringLiteral("man in lotus position: dark skin tone"), QStringLiteral("man in lotus position: dark skin tone")})}, -{QStringLiteral("woman in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FB\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in lotus position: light skin tone"), QStringLiteral("woman in lotus position: light skin tone")})}, -{QStringLiteral("woman in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FC\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in lotus position: medium-light skin tone"), QStringLiteral("woman in lotus position: medium-light skin tone")})}, -{QStringLiteral("woman in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FD\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in lotus position: medium skin tone"), QStringLiteral("woman in lotus position: medium skin tone")})}, -{QStringLiteral("woman in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FE\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in lotus position: medium-dark skin tone"), QStringLiteral("woman in lotus position: medium-dark skin tone")})}, -{QStringLiteral("woman in lotus position"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D8\U0001F3FF\U0000200D\U00002640\U0000FE0F"), QStringLiteral("woman in lotus position: dark skin tone"), QStringLiteral("woman in lotus position: dark skin tone")})}, -{QStringLiteral("person taking bath"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C0\U0001F3FB"), QStringLiteral("bath_tone1"), QStringLiteral("person taking bath: light skin tone")})}, -{QStringLiteral("person taking bath"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C0\U0001F3FC"), QStringLiteral("bath_tone2"), QStringLiteral("person taking bath: medium-light skin tone")})}, -{QStringLiteral("person taking bath"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C0\U0001F3FD"), QStringLiteral("bath_tone3"), QStringLiteral("person taking bath: medium skin tone")})}, -{QStringLiteral("person taking bath"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C0\U0001F3FE"), QStringLiteral("bath_tone4"), QStringLiteral("person taking bath: medium-dark skin tone")})}, -{QStringLiteral("person taking bath"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6C0\U0001F3FF"), QStringLiteral("bath_tone5"), QStringLiteral("person taking bath: dark skin tone")})}, -{QStringLiteral("person in bed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CC\U0001F3FB"), QStringLiteral("person_in_bed_tone1"), QStringLiteral("person in bed: light skin tone")})}, -{QStringLiteral("person in bed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CC\U0001F3FC"), QStringLiteral("person_in_bed_tone2"), QStringLiteral("person in bed: medium-light skin tone")})}, -{QStringLiteral("person in bed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CC\U0001F3FD"), QStringLiteral("person_in_bed_tone3"), QStringLiteral("person in bed: medium skin tone")})}, -{QStringLiteral("person in bed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CC\U0001F3FE"), QStringLiteral("person_in_bed_tone4"), QStringLiteral("person in bed: medium-dark skin tone")})}, -{QStringLiteral("person in bed"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F6CC\U0001F3FF"), QStringLiteral("person_in_bed_tone5"), QStringLiteral("person in bed: dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("people holding hands: light skin tone"), QStringLiteral("people holding hands: light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("people holding hands: light skin tone, medium-light skin tone"), QStringLiteral("people holding hands: light skin tone, medium-light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("people holding hands: light skin tone, medium skin tone"), QStringLiteral("people holding hands: light skin tone, medium skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("people holding hands: light skin tone, medium-dark skin tone"), QStringLiteral("people holding hands: light skin tone, medium-dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("people holding hands: light skin tone, dark skin tone"), QStringLiteral("people holding hands: light skin tone, dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("people holding hands: medium-light skin tone, light skin tone"), QStringLiteral("people holding hands: medium-light skin tone, light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("people holding hands: medium-light skin tone"), QStringLiteral("people holding hands: medium-light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("people holding hands: medium-light skin tone, medium skin tone"), QStringLiteral("people holding hands: medium-light skin tone, medium skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("people holding hands: medium-light skin tone, medium-dark skin tone"), QStringLiteral("people holding hands: medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("people holding hands: medium-light skin tone, dark skin tone"), QStringLiteral("people holding hands: medium-light skin tone, dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("people holding hands: medium skin tone, light skin tone"), QStringLiteral("people holding hands: medium skin tone, light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("people holding hands: medium skin tone, medium-light skin tone"), QStringLiteral("people holding hands: medium skin tone, medium-light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("people holding hands: medium skin tone"), QStringLiteral("people holding hands: medium skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("people holding hands: medium skin tone, medium-dark skin tone"), QStringLiteral("people holding hands: medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("people holding hands: medium skin tone, dark skin tone"), QStringLiteral("people holding hands: medium skin tone, dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("people holding hands: medium-dark skin tone, light skin tone"), QStringLiteral("people holding hands: medium-dark skin tone, light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("people holding hands: medium-dark skin tone, medium-light skin tone"), QStringLiteral("people holding hands: medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("people holding hands: medium-dark skin tone, medium skin tone"), QStringLiteral("people holding hands: medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("people holding hands: medium-dark skin tone"), QStringLiteral("people holding hands: medium-dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("people holding hands: medium-dark skin tone, dark skin tone"), QStringLiteral("people holding hands: medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("people holding hands: dark skin tone, light skin tone"), QStringLiteral("people holding hands: dark skin tone, light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("people holding hands: dark skin tone, medium-light skin tone"), QStringLiteral("people holding hands: dark skin tone, medium-light skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("people holding hands: dark skin tone, medium skin tone"), QStringLiteral("people holding hands: dark skin tone, medium skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("people holding hands: dark skin tone, medium-dark skin tone"), QStringLiteral("people holding hands: dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("people holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("people holding hands: dark skin tone"), QStringLiteral("people holding hands: dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46D\U0001F3FB"), QStringLiteral("women holding hands: light skin tone"), QStringLiteral("women holding hands: light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("women holding hands: light skin tone, medium-light skin tone"), QStringLiteral("women holding hands: light skin tone, medium-light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("women holding hands: light skin tone, medium skin tone"), QStringLiteral("women holding hands: light skin tone, medium skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("women holding hands: light skin tone, medium-dark skin tone"), QStringLiteral("women holding hands: light skin tone, medium-dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("women holding hands: light skin tone, dark skin tone"), QStringLiteral("women holding hands: light skin tone, dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("women holding hands: medium-light skin tone, light skin tone"), QStringLiteral("women holding hands: medium-light skin tone, light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46D\U0001F3FC"), QStringLiteral("women holding hands: medium-light skin tone"), QStringLiteral("women holding hands: medium-light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("women holding hands: medium-light skin tone, medium skin tone"), QStringLiteral("women holding hands: medium-light skin tone, medium skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("women holding hands: medium-light skin tone, medium-dark skin tone"), QStringLiteral("women holding hands: medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("women holding hands: medium-light skin tone, dark skin tone"), QStringLiteral("women holding hands: medium-light skin tone, dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("women holding hands: medium skin tone, light skin tone"), QStringLiteral("women holding hands: medium skin tone, light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("women holding hands: medium skin tone, medium-light skin tone"), QStringLiteral("women holding hands: medium skin tone, medium-light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46D\U0001F3FD"), QStringLiteral("women holding hands: medium skin tone"), QStringLiteral("women holding hands: medium skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("women holding hands: medium skin tone, medium-dark skin tone"), QStringLiteral("women holding hands: medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("women holding hands: medium skin tone, dark skin tone"), QStringLiteral("women holding hands: medium skin tone, dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("women holding hands: medium-dark skin tone, light skin tone"), QStringLiteral("women holding hands: medium-dark skin tone, light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("women holding hands: medium-dark skin tone, medium-light skin tone"), QStringLiteral("women holding hands: medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("women holding hands: medium-dark skin tone, medium skin tone"), QStringLiteral("women holding hands: medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46D\U0001F3FE"), QStringLiteral("women holding hands: medium-dark skin tone"), QStringLiteral("women holding hands: medium-dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("women holding hands: medium-dark skin tone, dark skin tone"), QStringLiteral("women holding hands: medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("women holding hands: dark skin tone, light skin tone"), QStringLiteral("women holding hands: dark skin tone, light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("women holding hands: dark skin tone, medium-light skin tone"), QStringLiteral("women holding hands: dark skin tone, medium-light skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("women holding hands: dark skin tone, medium skin tone"), QStringLiteral("women holding hands: dark skin tone, medium skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("women holding hands: dark skin tone, medium-dark skin tone"), QStringLiteral("women holding hands: dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("women holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46D\U0001F3FF"), QStringLiteral("women holding hands: dark skin tone"), QStringLiteral("women holding hands: dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46B\U0001F3FB"), QStringLiteral("woman and man holding hands: light skin tone"), QStringLiteral("woman and man holding hands: light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("woman and man holding hands: light skin tone, medium-light skin tone"), QStringLiteral("woman and man holding hands: light skin tone, medium-light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("woman and man holding hands: light skin tone, medium skin tone"), QStringLiteral("woman and man holding hands: light skin tone, medium skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("woman and man holding hands: light skin tone, medium-dark skin tone"), QStringLiteral("woman and man holding hands: light skin tone, medium-dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("woman and man holding hands: light skin tone, dark skin tone"), QStringLiteral("woman and man holding hands: light skin tone, dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("woman and man holding hands: medium-light skin tone, light skin tone"), QStringLiteral("woman and man holding hands: medium-light skin tone, light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46B\U0001F3FC"), QStringLiteral("woman and man holding hands: medium-light skin tone"), QStringLiteral("woman and man holding hands: medium-light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("woman and man holding hands: medium-light skin tone, medium skin tone"), QStringLiteral("woman and man holding hands: medium-light skin tone, medium skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("woman and man holding hands: medium-light skin tone, medium-dark skin tone"), QStringLiteral("woman and man holding hands: medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("woman and man holding hands: medium-light skin tone, dark skin tone"), QStringLiteral("woman and man holding hands: medium-light skin tone, dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("woman and man holding hands: medium skin tone, light skin tone"), QStringLiteral("woman and man holding hands: medium skin tone, light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("woman and man holding hands: medium skin tone, medium-light skin tone"), QStringLiteral("woman and man holding hands: medium skin tone, medium-light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46B\U0001F3FD"), QStringLiteral("woman and man holding hands: medium skin tone"), QStringLiteral("woman and man holding hands: medium skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("woman and man holding hands: medium skin tone, medium-dark skin tone"), QStringLiteral("woman and man holding hands: medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("woman and man holding hands: medium skin tone, dark skin tone"), QStringLiteral("woman and man holding hands: medium skin tone, dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("woman and man holding hands: medium-dark skin tone, light skin tone"), QStringLiteral("woman and man holding hands: medium-dark skin tone, light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("woman and man holding hands: medium-dark skin tone, medium-light skin tone"), QStringLiteral("woman and man holding hands: medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("woman and man holding hands: medium-dark skin tone, medium skin tone"), QStringLiteral("woman and man holding hands: medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46B\U0001F3FE"), QStringLiteral("woman and man holding hands: medium-dark skin tone"), QStringLiteral("woman and man holding hands: medium-dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("woman and man holding hands: medium-dark skin tone, dark skin tone"), QStringLiteral("woman and man holding hands: medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("woman and man holding hands: dark skin tone, light skin tone"), QStringLiteral("woman and man holding hands: dark skin tone, light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("woman and man holding hands: dark skin tone, medium-light skin tone"), QStringLiteral("woman and man holding hands: dark skin tone, medium-light skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("woman and man holding hands: dark skin tone, medium skin tone"), QStringLiteral("woman and man holding hands: dark skin tone, medium skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("woman and man holding hands: dark skin tone, medium-dark skin tone"), QStringLiteral("woman and man holding hands: dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("woman and man holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46B\U0001F3FF"), QStringLiteral("woman and man holding hands: dark skin tone"), QStringLiteral("woman and man holding hands: dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46C\U0001F3FB"), QStringLiteral("men holding hands: light skin tone"), QStringLiteral("men holding hands: light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("men holding hands: light skin tone, medium-light skin tone"), QStringLiteral("men holding hands: light skin tone, medium-light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("men holding hands: light skin tone, medium skin tone"), QStringLiteral("men holding hands: light skin tone, medium skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("men holding hands: light skin tone, medium-dark skin tone"), QStringLiteral("men holding hands: light skin tone, medium-dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("men holding hands: light skin tone, dark skin tone"), QStringLiteral("men holding hands: light skin tone, dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("men holding hands: medium-light skin tone, light skin tone"), QStringLiteral("men holding hands: medium-light skin tone, light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46C\U0001F3FC"), QStringLiteral("men holding hands: medium-light skin tone"), QStringLiteral("men holding hands: medium-light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("men holding hands: medium-light skin tone, medium skin tone"), QStringLiteral("men holding hands: medium-light skin tone, medium skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("men holding hands: medium-light skin tone, medium-dark skin tone"), QStringLiteral("men holding hands: medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("men holding hands: medium-light skin tone, dark skin tone"), QStringLiteral("men holding hands: medium-light skin tone, dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("men holding hands: medium skin tone, light skin tone"), QStringLiteral("men holding hands: medium skin tone, light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("men holding hands: medium skin tone, medium-light skin tone"), QStringLiteral("men holding hands: medium skin tone, medium-light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46C\U0001F3FD"), QStringLiteral("men holding hands: medium skin tone"), QStringLiteral("men holding hands: medium skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("men holding hands: medium skin tone, medium-dark skin tone"), QStringLiteral("men holding hands: medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("men holding hands: medium skin tone, dark skin tone"), QStringLiteral("men holding hands: medium skin tone, dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("men holding hands: medium-dark skin tone, light skin tone"), QStringLiteral("men holding hands: medium-dark skin tone, light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("men holding hands: medium-dark skin tone, medium-light skin tone"), QStringLiteral("men holding hands: medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("men holding hands: medium-dark skin tone, medium skin tone"), QStringLiteral("men holding hands: medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46C\U0001F3FE"), QStringLiteral("men holding hands: medium-dark skin tone"), QStringLiteral("men holding hands: medium-dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("men holding hands: medium-dark skin tone, dark skin tone"), QStringLiteral("men holding hands: medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("men holding hands: dark skin tone, light skin tone"), QStringLiteral("men holding hands: dark skin tone, light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("men holding hands: dark skin tone, medium-light skin tone"), QStringLiteral("men holding hands: dark skin tone, medium-light skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("men holding hands: dark skin tone, medium skin tone"), QStringLiteral("men holding hands: dark skin tone, medium skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U0001F91D\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("men holding hands: dark skin tone, medium-dark skin tone"), QStringLiteral("men holding hands: dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("men holding hands"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F46C\U0001F3FF"), QStringLiteral("men holding hands: dark skin tone"), QStringLiteral("men holding hands: dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48F\U0001F3FB"), QStringLiteral("kiss: light skin tone"), QStringLiteral("kiss: light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48F\U0001F3FC"), QStringLiteral("kiss: medium-light skin tone"), QStringLiteral("kiss: medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48F\U0001F3FD"), QStringLiteral("kiss: medium skin tone"), QStringLiteral("kiss: medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48F\U0001F3FE"), QStringLiteral("kiss: medium-dark skin tone"), QStringLiteral("kiss: medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F48F\U0001F3FF"), QStringLiteral("kiss: dark skin tone"), QStringLiteral("kiss: dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("kiss: person, person, light skin tone, medium-light skin tone"), QStringLiteral("kiss: person, person, light skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("kiss: person, person, light skin tone, medium skin tone"), QStringLiteral("kiss: person, person, light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("kiss: person, person, light skin tone, medium-dark skin tone"), QStringLiteral("kiss: person, person, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("kiss: person, person, light skin tone, dark skin tone"), QStringLiteral("kiss: person, person, light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("kiss: person, person, medium-light skin tone, light skin tone"), QStringLiteral("kiss: person, person, medium-light skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("kiss: person, person, medium-light skin tone, medium skin tone"), QStringLiteral("kiss: person, person, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("kiss: person, person, medium-light skin tone, medium-dark skin tone"), QStringLiteral("kiss: person, person, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("kiss: person, person, medium-light skin tone, dark skin tone"), QStringLiteral("kiss: person, person, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("kiss: person, person, medium skin tone, light skin tone"), QStringLiteral("kiss: person, person, medium skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("kiss: person, person, medium skin tone, medium-light skin tone"), QStringLiteral("kiss: person, person, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("kiss: person, person, medium skin tone, medium-dark skin tone"), QStringLiteral("kiss: person, person, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("kiss: person, person, medium skin tone, dark skin tone"), QStringLiteral("kiss: person, person, medium skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("kiss: person, person, medium-dark skin tone, light skin tone"), QStringLiteral("kiss: person, person, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("kiss: person, person, medium-dark skin tone, medium-light skin tone"), QStringLiteral("kiss: person, person, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("kiss: person, person, medium-dark skin tone, medium skin tone"), QStringLiteral("kiss: person, person, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("kiss: person, person, medium-dark skin tone, dark skin tone"), QStringLiteral("kiss: person, person, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("kiss: person, person, dark skin tone, light skin tone"), QStringLiteral("kiss: person, person, dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("kiss: person, person, dark skin tone, medium-light skin tone"), QStringLiteral("kiss: person, person, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("kiss: person, person, dark skin tone, medium skin tone"), QStringLiteral("kiss: person, person, dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("kiss: person, person, dark skin tone, medium-dark skin tone"), QStringLiteral("kiss: person, person, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: woman, man, light skin tone"), QStringLiteral("kiss: woman, man, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: woman, man, light skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, man, light skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: woman, man, light skin tone, medium skin tone"), QStringLiteral("kiss: woman, man, light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: woman, man, light skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, man, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: woman, man, light skin tone, dark skin tone"), QStringLiteral("kiss: woman, man, light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: woman, man, medium-light skin tone, light skin tone"), QStringLiteral("kiss: woman, man, medium-light skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: woman, man, medium-light skin tone"), QStringLiteral("kiss: woman, man, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: woman, man, medium-light skin tone, medium skin tone"), QStringLiteral("kiss: woman, man, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: woman, man, medium-light skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, man, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: woman, man, medium-light skin tone, dark skin tone"), QStringLiteral("kiss: woman, man, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: woman, man, medium skin tone, light skin tone"), QStringLiteral("kiss: woman, man, medium skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: woman, man, medium skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, man, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: woman, man, medium skin tone"), QStringLiteral("kiss: woman, man, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: woman, man, medium skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, man, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: woman, man, medium skin tone, dark skin tone"), QStringLiteral("kiss: woman, man, medium skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: woman, man, medium-dark skin tone, light skin tone"), QStringLiteral("kiss: woman, man, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: woman, man, medium-dark skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, man, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: woman, man, medium-dark skin tone, medium skin tone"), QStringLiteral("kiss: woman, man, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: woman, man, medium-dark skin tone"), QStringLiteral("kiss: woman, man, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: woman, man, medium-dark skin tone, dark skin tone"), QStringLiteral("kiss: woman, man, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: woman, man, dark skin tone, light skin tone"), QStringLiteral("kiss: woman, man, dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: woman, man, dark skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, man, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: woman, man, dark skin tone, medium skin tone"), QStringLiteral("kiss: woman, man, dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: woman, man, dark skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, man, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: woman, man, dark skin tone"), QStringLiteral("kiss: woman, man, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: man, man, light skin tone"), QStringLiteral("kiss: man, man, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: man, man, light skin tone, medium-light skin tone"), QStringLiteral("kiss: man, man, light skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: man, man, light skin tone, medium skin tone"), QStringLiteral("kiss: man, man, light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: man, man, light skin tone, medium-dark skin tone"), QStringLiteral("kiss: man, man, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: man, man, light skin tone, dark skin tone"), QStringLiteral("kiss: man, man, light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: man, man, medium-light skin tone, light skin tone"), QStringLiteral("kiss: man, man, medium-light skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: man, man, medium-light skin tone"), QStringLiteral("kiss: man, man, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: man, man, medium-light skin tone, medium skin tone"), QStringLiteral("kiss: man, man, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: man, man, medium-light skin tone, medium-dark skin tone"), QStringLiteral("kiss: man, man, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: man, man, medium-light skin tone, dark skin tone"), QStringLiteral("kiss: man, man, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: man, man, medium skin tone, light skin tone"), QStringLiteral("kiss: man, man, medium skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: man, man, medium skin tone, medium-light skin tone"), QStringLiteral("kiss: man, man, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: man, man, medium skin tone"), QStringLiteral("kiss: man, man, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: man, man, medium skin tone, medium-dark skin tone"), QStringLiteral("kiss: man, man, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: man, man, medium skin tone, dark skin tone"), QStringLiteral("kiss: man, man, medium skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: man, man, medium-dark skin tone, light skin tone"), QStringLiteral("kiss: man, man, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: man, man, medium-dark skin tone, medium-light skin tone"), QStringLiteral("kiss: man, man, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: man, man, medium-dark skin tone, medium skin tone"), QStringLiteral("kiss: man, man, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: man, man, medium-dark skin tone"), QStringLiteral("kiss: man, man, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: man, man, medium-dark skin tone, dark skin tone"), QStringLiteral("kiss: man, man, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("kiss: man, man, dark skin tone, light skin tone"), QStringLiteral("kiss: man, man, dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("kiss: man, man, dark skin tone, medium-light skin tone"), QStringLiteral("kiss: man, man, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("kiss: man, man, dark skin tone, medium skin tone"), QStringLiteral("kiss: man, man, dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("kiss: man, man, dark skin tone, medium-dark skin tone"), QStringLiteral("kiss: man, man, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("kiss: man, man, dark skin tone"), QStringLiteral("kiss: man, man, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("kiss: woman, woman, light skin tone"), QStringLiteral("kiss: woman, woman, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("kiss: woman, woman, light skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, woman, light skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("kiss: woman, woman, light skin tone, medium skin tone"), QStringLiteral("kiss: woman, woman, light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("kiss: woman, woman, light skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, woman, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("kiss: woman, woman, light skin tone, dark skin tone"), QStringLiteral("kiss: woman, woman, light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("kiss: woman, woman, medium-light skin tone, light skin tone"), QStringLiteral("kiss: woman, woman, medium-light skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("kiss: woman, woman, medium-light skin tone"), QStringLiteral("kiss: woman, woman, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("kiss: woman, woman, medium-light skin tone, medium skin tone"), QStringLiteral("kiss: woman, woman, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("kiss: woman, woman, medium-light skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, woman, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("kiss: woman, woman, medium-light skin tone, dark skin tone"), QStringLiteral("kiss: woman, woman, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("kiss: woman, woman, medium skin tone, light skin tone"), QStringLiteral("kiss: woman, woman, medium skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("kiss: woman, woman, medium skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, woman, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("kiss: woman, woman, medium skin tone"), QStringLiteral("kiss: woman, woman, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("kiss: woman, woman, medium skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, woman, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("kiss: woman, woman, medium skin tone, dark skin tone"), QStringLiteral("kiss: woman, woman, medium skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, light skin tone"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, medium skin tone"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("kiss: woman, woman, medium-dark skin tone"), QStringLiteral("kiss: woman, woman, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, dark skin tone"), QStringLiteral("kiss: woman, woman, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("kiss: woman, woman, dark skin tone, light skin tone"), QStringLiteral("kiss: woman, woman, dark skin tone, light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("kiss: woman, woman, dark skin tone, medium-light skin tone"), QStringLiteral("kiss: woman, woman, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("kiss: woman, woman, dark skin tone, medium skin tone"), QStringLiteral("kiss: woman, woman, dark skin tone, medium skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("kiss: woman, woman, dark skin tone, medium-dark skin tone"), QStringLiteral("kiss: woman, woman, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("kiss"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F48B\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("kiss: woman, woman, dark skin tone"), QStringLiteral("kiss: woman, woman, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F491\U0001F3FB"), QStringLiteral("couple with heart: light skin tone"), QStringLiteral("couple with heart: light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F491\U0001F3FC"), QStringLiteral("couple with heart: medium-light skin tone"), QStringLiteral("couple with heart: medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F491\U0001F3FD"), QStringLiteral("couple with heart: medium skin tone"), QStringLiteral("couple with heart: medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F491\U0001F3FE"), QStringLiteral("couple with heart: medium-dark skin tone"), QStringLiteral("couple with heart: medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F491\U0001F3FF"), QStringLiteral("couple with heart: dark skin tone"), QStringLiteral("couple with heart: dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("couple with heart: person, person, light skin tone, medium-light skin tone"), QStringLiteral("couple with heart: person, person, light skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("couple with heart: person, person, light skin tone, medium skin tone"), QStringLiteral("couple with heart: person, person, light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("couple with heart: person, person, light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: person, person, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("couple with heart: person, person, light skin tone, dark skin tone"), QStringLiteral("couple with heart: person, person, light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("couple with heart: person, person, medium-light skin tone, light skin tone"), QStringLiteral("couple with heart: person, person, medium-light skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("couple with heart: person, person, medium-light skin tone, medium skin tone"), QStringLiteral("couple with heart: person, person, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("couple with heart: person, person, medium-light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: person, person, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("couple with heart: person, person, medium-light skin tone, dark skin tone"), QStringLiteral("couple with heart: person, person, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("couple with heart: person, person, medium skin tone, light skin tone"), QStringLiteral("couple with heart: person, person, medium skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("couple with heart: person, person, medium skin tone, medium-light skin tone"), QStringLiteral("couple with heart: person, person, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("couple with heart: person, person, medium skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: person, person, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("couple with heart: person, person, medium skin tone, dark skin tone"), QStringLiteral("couple with heart: person, person, medium skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, light skin tone"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, medium skin tone"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FF"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, dark skin tone"), QStringLiteral("couple with heart: person, person, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FB"), QStringLiteral("couple with heart: person, person, dark skin tone, light skin tone"), QStringLiteral("couple with heart: person, person, dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FC"), QStringLiteral("couple with heart: person, person, dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: person, person, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FD"), QStringLiteral("couple with heart: person, person, dark skin tone, medium skin tone"), QStringLiteral("couple with heart: person, person, dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F9D1\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F9D1\U0001F3FE"), QStringLiteral("couple with heart: person, person, dark skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: person, person, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: woman, man, light skin tone"), QStringLiteral("couple with heart: woman, man, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: woman, man, light skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, man, light skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: woman, man, light skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, man, light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: woman, man, light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, man, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: woman, man, light skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, man, light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, light skin tone"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: woman, man, medium-light skin tone"), QStringLiteral("couple with heart: woman, man, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, man, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: woman, man, medium skin tone, light skin tone"), QStringLiteral("couple with heart: woman, man, medium skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: woman, man, medium skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, man, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: woman, man, medium skin tone"), QStringLiteral("couple with heart: woman, man, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: woman, man, medium skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, man, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: woman, man, medium skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, man, medium skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, light skin tone"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, man, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: woman, man, dark skin tone, light skin tone"), QStringLiteral("couple with heart: woman, man, dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: woman, man, dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, man, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: woman, man, dark skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, man, dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: woman, man, dark skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, man, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: woman, man, dark skin tone"), QStringLiteral("couple with heart: woman, man, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: man, man, light skin tone"), QStringLiteral("couple with heart: man, man, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: man, man, light skin tone, medium-light skin tone"), QStringLiteral("couple with heart: man, man, light skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: man, man, light skin tone, medium skin tone"), QStringLiteral("couple with heart: man, man, light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: man, man, light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: man, man, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: man, man, light skin tone, dark skin tone"), QStringLiteral("couple with heart: man, man, light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: man, man, medium-light skin tone, light skin tone"), QStringLiteral("couple with heart: man, man, medium-light skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: man, man, medium-light skin tone"), QStringLiteral("couple with heart: man, man, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: man, man, medium-light skin tone, medium skin tone"), QStringLiteral("couple with heart: man, man, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: man, man, medium-light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: man, man, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: man, man, medium-light skin tone, dark skin tone"), QStringLiteral("couple with heart: man, man, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: man, man, medium skin tone, light skin tone"), QStringLiteral("couple with heart: man, man, medium skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: man, man, medium skin tone, medium-light skin tone"), QStringLiteral("couple with heart: man, man, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: man, man, medium skin tone"), QStringLiteral("couple with heart: man, man, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: man, man, medium skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: man, man, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: man, man, medium skin tone, dark skin tone"), QStringLiteral("couple with heart: man, man, medium skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, light skin tone"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, medium skin tone"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: man, man, medium-dark skin tone"), QStringLiteral("couple with heart: man, man, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, dark skin tone"), QStringLiteral("couple with heart: man, man, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FB"), QStringLiteral("couple with heart: man, man, dark skin tone, light skin tone"), QStringLiteral("couple with heart: man, man, dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FC"), QStringLiteral("couple with heart: man, man, dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: man, man, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FD"), QStringLiteral("couple with heart: man, man, dark skin tone, medium skin tone"), QStringLiteral("couple with heart: man, man, dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FE"), QStringLiteral("couple with heart: man, man, dark skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: man, man, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F468\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F468\U0001F3FF"), QStringLiteral("couple with heart: man, man, dark skin tone"), QStringLiteral("couple with heart: man, man, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("couple with heart: woman, woman, light skin tone"), QStringLiteral("couple with heart: woman, woman, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("couple with heart: woman, woman, light skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, woman, light skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("couple with heart: woman, woman, light skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, woman, light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("couple with heart: woman, woman, light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, woman, light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FB\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("couple with heart: woman, woman, light skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, woman, light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, light skin tone"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FC\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, woman, medium-light skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("couple with heart: woman, woman, medium skin tone, light skin tone"), QStringLiteral("couple with heart: woman, woman, medium skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("couple with heart: woman, woman, medium skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, woman, medium skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("couple with heart: woman, woman, medium skin tone"), QStringLiteral("couple with heart: woman, woman, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("couple with heart: woman, woman, medium skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, woman, medium skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FD\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("couple with heart: woman, woman, medium skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, woman, medium skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, light skin tone"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FE\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, dark skin tone"), QStringLiteral("couple with heart: woman, woman, medium-dark skin tone, dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FB"), QStringLiteral("couple with heart: woman, woman, dark skin tone, light skin tone"), QStringLiteral("couple with heart: woman, woman, dark skin tone, light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FC"), QStringLiteral("couple with heart: woman, woman, dark skin tone, medium-light skin tone"), QStringLiteral("couple with heart: woman, woman, dark skin tone, medium-light skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FD"), QStringLiteral("couple with heart: woman, woman, dark skin tone, medium skin tone"), QStringLiteral("couple with heart: woman, woman, dark skin tone, medium skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FE"), QStringLiteral("couple with heart: woman, woman, dark skin tone, medium-dark skin tone"), QStringLiteral("couple with heart: woman, woman, dark skin tone, medium-dark skin tone")})}, -{QStringLiteral("couple with heart"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F469\U0001F3FF\U0000200D\U00002764\U0000FE0F\U0000200D\U0001F469\U0001F3FF"), QStringLiteral("couple with heart: woman, woman, dark skin tone"), QStringLiteral("couple with heart: woman, woman, dark skin tone")})}, -{QStringLiteral("light skin tone"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3FB"), QStringLiteral("tone1"), QStringLiteral("light skin tone")})}, -{QStringLiteral("medium-light skin tone"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3FC"), QStringLiteral("tone2"), QStringLiteral("medium-light skin tone")})}, -{QStringLiteral("medium skin tone"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3FD"), QStringLiteral("tone3"), QStringLiteral("medium skin tone")})}, -{QStringLiteral("medium-dark skin tone"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3FE"), QStringLiteral("tone4"), QStringLiteral("medium-dark skin tone")})}, -{QStringLiteral("dark skin tone"), QVariant::fromValue(Emoji{QString::fromUtf8("\U0001F3FF"), QStringLiteral("tone5"), QStringLiteral("dark skin tone")})}, diff --git a/src/imagecontentmanager.cpp b/src/imagecontentmanager.cpp new file mode 100644 index 000000000..74dff973c --- /dev/null +++ b/src/imagecontentmanager.cpp @@ -0,0 +1,334 @@ +// SPDX-FileCopyrightText: 2024 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "imagecontentmanager.h" + +#include +#include + +#include +#include + +#include "controller.h" +#include "events/imagepackevent.h" +#include "neochatroom.h" + +#include + +#define connection Controller::instance().activeConnection() + +using namespace Quotient; + +ImageContentManager::ImageContentManager(QObject *parent) + : QObject(parent) +{ + connect(&Controller::instance(), &Controller::activeConnectionChanged, this, [this]() { + static Connection *oldActiveConnection = nullptr; + disconnect(oldActiveConnection, nullptr, this, nullptr); + oldActiveConnection = Controller::instance().activeConnection(); + setupConnection(); + }); + + loadEmojis(); + loadEmojiHistory(); + + setupConnection(); +} + +void ImageContentManager::loadEmojis() +{ + QFile file(":/data/emojis.json"_ls); + file.open(QFile::ReadOnly); + Q_ASSERT(file.isOpen()); + auto data = QJsonDocument::fromJson(file.readAll()).array(); + + for (const auto &emoji : data) { + // TODO + // m_emojiPacks += ImagePackDescription{ + // .description = parts[1], + // .attribution = {}, + // .icon = parts[0], + // .type = ImagePackDescription::Emoji, + // .roomId = {}, + // .stateKey = parts[2], + // }; + + m_emojis[u"TODO"_s] += Emoji{ + .text = emoji[u"icon"_s].toString(), + .displayName = emoji[u"label"_s].toString(), + .shortName = emoji[u"label"_s].toString(), // TODO + }; + } +} + +void ImageContentManager::loadEmojiHistory() +{ + auto config = KSharedConfig::openStateConfig(); + auto group = config->group("RecentEmojis"_ls); + for (const auto &key : group.keyList()) { + m_usages[key] = group.readEntry(key).toInt(); + } +} + +void ImageContentManager::setupConnection() +{ + if (!connection) { + return; + } + connect(Controller::instance().activeConnection(), &Connection::accountDataChanged, this, [this](const QString &type) { + if (type == "im.ponies.user_emotes"_ls) { + loadAccountImages(); + } + if (type == "im.ponies.emote_rooms"_ls) { + loadGlobalPacks(); + } + }); + loadAccountImages(); + loadGlobalPacks(); + + m_roomPacks.clear(); + + for (const auto &room : connection->allRooms()) { + setupRoom(static_cast(room)); + } + connect(connection, &Connection::joinedRoom, this, [this](const auto &room) { + setupRoom(static_cast(room)); + }); + connect(connection, &Connection::leftRoom, this, [this](const auto &room) { + cleanupRoom(static_cast(room)); + }); +} + +const QVector &ImageContentManager::emojiPacks() const +{ + return m_emojiPacks; +} + +const QHash> &ImageContentManager::emojis() const +{ + return m_emojis; +} + +void ImageContentManager::loadAccountImages() +{ + m_accountImages.clear(); + if (connection->hasAccountData("im.ponies.user_emotes"_ls)) { + m_accountImages = ImagePackEventContent(connection->accountData("im.ponies.user_emotes"_ls)->contentJson()).images; + } + Q_EMIT accountImagesChanged(); +} + +const QVector &ImageContentManager::accountImages() const +{ + return m_accountImages; +} + +void ImageContentManager::emojiUsed(const QString &text) +{ + if (!m_usages.contains(text)) { + m_usages[text] = 0; + } + m_usages[text]++; + Q_EMIT recentEmojisChanged(); + auto config = KSharedConfig::openStateConfig(); + auto group = config->group("RecentEmojis"_ls); + for (const auto &key : m_usages.keys()) { + group.writeEntry(key, m_usages[key]); + } +} + +Emoji ImageContentManager::emojiForText(const QString &text) +{ + for (const auto &category : m_emojis.values()) { + for (const auto &emoji : category) { + if (emoji.text == text) { + return emoji; + } + } + } + const auto &withSelector = QString::fromUtf8(text.toUtf8() + QByteArrayLiteral("\xEF\xB8\x8F")); + for (const auto &category : m_emojis.values()) { + for (const auto &emoji : category) { + if (emoji.text == withSelector) { + return emoji; + } + } + } + return {}; +} + +const QMap &ImageContentManager::recentEmojis() const +{ + return m_usages; +} + +const QMap> &ImageContentManager::roomImagePacks() const +{ + return m_roomPacks; +} + +void ImageContentManager::loadRoomImagePacks(NeoChatRoom *room) +{ + const auto &events = room->currentState().eventsOfType("im.ponies.room_emotes"_ls); + m_roomPacks[room->id()].clear(); + for (const auto &event : events) { + auto content = ImagePackEventContent(event->contentJson()); + auto avatarMxc = event->contentPart("pack"_ls)["avatar_url"_ls].toString(); + if (avatarMxc.isEmpty()) { + const auto &images = event->contentPart("images"_ls); + if (images.size() > 0) { + avatarMxc = images[images.keys()[0]]["url"_ls].toString(); + } + } + const auto &avatarUrl = avatarMxc.isEmpty() ? QString() : Controller::instance().activeConnection()->makeMediaUrl(QUrl(avatarMxc)).toString(); + + ImagePackDescription::Type type = ImagePackDescription::Both; + if (!content.pack || !content.pack->usage || content.pack->usage->isEmpty() + || (content.pack->usage->contains("emoticon"_ls) && content.pack->usage->contains("sticker"_ls))) { + type = ImagePackDescription::Both; + } else if (content.pack->usage->contains("sticker"_ls)) { + type = ImagePackDescription::Sticker; + } else { + type = ImagePackDescription::CustomEmoji; + } + + m_roomPacks[room->id()][event->stateKey()] = ImagePackDescription{ + .description = event->contentPart("pack"_ls)["display_name"_ls].toString(), + .attribution = {}, + .icon = QStringLiteral("").arg(avatarUrl), + .type = type, + .roomId = room->id(), + .stateKey = event->stateKey(), + }; + m_roomImages[{room->id(), event->stateKey()}] = content.images; + } + Q_EMIT roomImagePacksChanged(room); +} + +const RoomImages &ImageContentManager::roomImages() const +{ + return m_roomImages; +} + +const QVector> &ImageContentManager::globalPacks() const +{ + return m_globalPacks; +} + +void ImageContentManager::loadGlobalPacks() +{ + if (!connection->hasAccountData("im.ponies.emote_rooms"_ls)) { + return; + } + m_globalPacks.clear(); + const auto &rooms = Controller::instance().activeConnection()->accountData("im.ponies.emote_rooms"_ls)->contentPart("rooms"_ls); + for (const auto &roomId : rooms.keys()) { + for (const auto &stateKey : rooms[roomId].toObject().keys()) { + m_globalPacks += {roomId, stateKey}; + } + } + Q_EMIT globalPacksChanged(); +} + +void ImageContentManager::setupRoom(NeoChatRoom *room) +{ + connect(room, &Room::changed, this, [this, room]() { + loadRoomImagePacks(room); + }); + loadRoomImagePacks(room); +} + +void ImageContentManager::cleanupRoom(NeoChatRoom *room) +{ + m_roomPacks.remove(room->id()); + Q_EMIT roomImagePacksChanged(room); +} + +QString ImageContentManager::mxcForShortCode(const QString &shortcode) const +{ + for (const auto &image : m_accountImages) { + if (image.shortcode == shortcode) { + return Controller::instance().activeConnection()->makeMediaUrl(image.url).toString(); + } + } + for (const auto &id : m_roomImages.keys()) { + for (const auto &image : m_roomImages[id]) { + if (image.shortcode == shortcode) { + return Controller::instance().activeConnection()->makeMediaUrl(image.url).toString(); + } + } + } + return {}; +} + +QString ImageContentManager::bodyForShortCode(const QString &shortcode) const +{ + for (const auto &image : m_accountImages) { + if (image.shortcode == shortcode) { + return image.body.value_or(QString()); + } + } + for (const auto &id : m_roomImages.keys()) { + for (const auto &image : m_roomImages[id]) { + if (image.shortcode == shortcode) { + return image.body.value_or(QString()); + } + } + } + return {}; +} + +bool ImageContentManager::isEmojiShortCode(const QString &shortCode) const +{ + for (const auto &image : m_accountImages) { + if (image.shortcode == shortCode) { + return !image.usage || image.usage->isEmpty() || image.usage->contains("emoticon"_ls); + } + } + for (const auto &id : m_roomImages.keys()) { + for (const auto &image : m_roomImages[id]) { + if (image.shortcode == shortCode) { + const auto pack = m_roomPacks[id.first][id.second]; + return pack.type == ImagePackDescription::Emoji || pack.type == ImagePackDescription::Both; + } + } + } + return true; +} + +bool ImageContentManager::isStickerShortCode(const QString &shortCode) const +{ + for (const auto &image : m_accountImages) { + if (image.shortcode == shortCode) { + return !image.usage || image.usage->isEmpty() || image.usage->contains("sticker"_ls); + } + } + for (const auto &id : m_roomImages.keys()) { + for (const auto &image : m_roomImages[id]) { + if (image.shortcode == shortCode) { + const auto pack = m_roomPacks[id.first][id.second]; + return pack.type == ImagePackDescription::Sticker || pack.type == ImagePackDescription::Both; + } + } + } + return true; +} + +QString ImageContentManager::accountImagesAvatar() const +{ + if (!connection->hasAccountData("im.ponies.user_emotes"_ls)) { + return {}; + } + const auto &event = ImagePackEventContent(connection->accountData("im.ponies.user_emotes"_ls)->contentJson()); + QString avatarUrl; + if (event.pack) { + avatarUrl = event.pack->avatarUrl.value_or(QUrl()).toString(); + } + if (avatarUrl.isEmpty()) { + //TODO avatarUrl = Controller::instance().activeConnection()->user()->avatarUrl().toString(); + } + if (avatarUrl.isEmpty()) { + avatarUrl = event.images[0].url.toString(); + } + return QStringLiteral("๐Ÿ‘ค"); +} diff --git a/src/imagecontentmanager.h b/src/imagecontentmanager.h new file mode 100644 index 000000000..1f67c85d7 --- /dev/null +++ b/src/imagecontentmanager.h @@ -0,0 +1,172 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include +#include + +#include "events/imagepackevent.h" +#include "neochatroom.h" + +#define imageContentManager ImageContentManager::instance() + +class ImageContentRole : public QObject +{ + Q_OBJECT +public: + enum ImageRoles { + DisplayNameRole = Qt::DisplayRole, /**< The name of the emoji. */ + EmojiRole, /**< The unicode character of the emoji. */ + ShortCodeRole, + IsCustomRole, + IsStickerRole, + IsEmojiRole, + UsageCountRole, + HasTonesRole, + }; + Q_ENUM(ImageRoles); +}; + +class ImageContentPackRole : public QObject +{ + Q_OBJECT + QML_ELEMENT + QML_UNCREATABLE("") + +public: + //! Roles for the various models providing image packs. + enum ImagePackRoles { + DisplayNameRole = Qt::DisplayRole, //! Textual desription of the pack. + IconRole, //! Icon for the pack. For emojis, this is a unicode emoji; For custom emojis and stickers, this is a HTML image. + IdentifierRole, //! An internal, mostly opaque identifier for the model. + IsEmojiRole, //! Whether this pack contains emojis (including custom). For the account pack, this is true if the pack contains any emojis; for room + //! packs, this *only* considers the pack-level usage parameter + IsStickerRole, //! Equivalent to IsEmojiRole, but for stickers. + IsEmptyRole, //! Whether this image pack is empty. + IsGlobalPackRole, //! Whether this pack is enabled globally. + }; + Q_ENUM(ImagePackRoles); +}; + +using RoomImages = QMap, QVector>; + +struct Emoji { + Q_GADGET + Q_PROPERTY(QString text MEMBER text) + Q_PROPERTY(QString displayName MEMBER displayName) + Q_PROPERTY(QString shortName MEMBER shortName) +public: + QString text; + QString displayName; + QString shortName; +}; +Q_DECLARE_METATYPE(Emoji) + +struct ImagePackDescription { + enum Type { + Emoji, + CustomEmoji, + Sticker, + Both, + }; + QString description; + QString attribution; + QString icon; + Type type; + // Only relevant for packs coming from rooms + QString roomId; + QString stateKey; +}; + +/** + * This class manages emojis, custom emojis, and stickers. Because naming things is hard, it has the most generic name possible. + */ +class ImageContentManager : public QObject +{ + Q_OBJECT + QML_ELEMENT + QML_SINGLETON + +public: + // Returns the global instance of ImageContentManager. + static ImageContentManager &instance() + { + static ImageContentManager _instance; + return _instance; + } + + //! Returns a list of emoji packs (categories, e.g., food, smileys, etc.) + const QVector &emojiPacks() const; + //! Returns a map roomId -> stateKey -> description for all image packs that exist in rooms. + const QMap> &roomImagePacks() const; + //! Returns an list (roomId, stateKey) for all globally enabled room packs. + //! This is not filtered for rooms or stateKeys that do not exist. This is left to ImagePacksProxyModel + const QVector> &globalPacks() const; + + //! Returns a map pack key -> [emoji] for all (normal) emojis. + const QHash> &emojis() const; + + //! Returns a list of all account images. + const QVector &accountImages() const; + + //! Returns a map roomId -> stateKey -> [image] of all images part of a room image pack. + const RoomImages &roomImages() const; + + //! Returns a map emoji -> usage count to be used as an emoji history. + const QMap &recentEmojis() const; + + //! Returns the emoji object for the given unicode symbol. + Emoji emojiForText(const QString &text); + + //! Updates the history when an emoji is used. + Q_INVOKABLE void emojiUsed(const QString &text); + + QString mxcForShortCode(const QString &shortcode) const; + QString bodyForShortCode(const QString &shortcode) const; + bool isEmojiShortCode(const QString &shortCode) const; + bool isStickerShortCode(const QString &shortCode) const; + + QString accountImagesAvatar() const; + +Q_SIGNALS: + void accountImagesChanged(); + void recentEmojisChanged(); + void roomImagePacksChanged(NeoChatRoom *room); + void globalPacksChanged(); + +private: + // Packs + QVector m_emojiPacks; + // [roomId, stateKey] + QVector> m_globalPacks; + // roomId -> stateKey -> description + QMap> m_roomPacks; + + // Emojis + // pack name -> emojis + QHash> m_emojis; + QVector m_accountImages; + RoomImages m_roomImages; + + // History + // emoji -> usage count + QMap m_usages; + + // Loads both emojis and emoji packs + void loadEmojis(); + void loadGlobalPacks(); + void loadRoomImagePacks(NeoChatRoom *room); + + void loadEmojiHistory(); + + void loadAccountImages(); + void loadRoomImages(); + + ImageContentManager(QObject *parent = nullptr); + + void setupConnection(); + void setupRoom(NeoChatRoom *room); + void cleanupRoom(NeoChatRoom *room); +}; diff --git a/src/main.cpp b/src/main.cpp index 619e0180b..d43ff7f01 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -62,6 +62,8 @@ #include "fakerunner.h" #endif +#include "imagecontentmanager.h" + #ifdef Q_OS_WINDOWS #include #endif diff --git a/src/models/accountemoticonmodel.h b/src/models/accountemoticonmodel.h deleted file mode 100644 index 100a9a189..000000000 --- a/src/models/accountemoticonmodel.h +++ /dev/null @@ -1,104 +0,0 @@ -// SPDX-FileCopyrightText: 2023 Tobias Fella -// SPDX-License-Identifier: LGPL-2.0-or-later - -#pragma once - -#include "events/imagepackevent.h" - -#include -#include -#include -#include -#include -#include - -class NeoChatConnection; - -/** - * @class AccountEmoticonModel - * - * This class defines the model for visualising the account stickers and emojis. - * - * This is based upon the im.ponies.user_emotes spec (MSC2545). - */ -class AccountEmoticonModel : public QAbstractListModel -{ - Q_OBJECT - QML_ELEMENT - - /** - * @brief The connection to get emoticons from. - */ - Q_PROPERTY(NeoChatConnection *connection READ connection WRITE setConnection NOTIFY connectionChanged) - -public: - enum Roles { - UrlRole = Qt::UserRole + 1, /**< The URL for the emoticon. */ - ShortCodeRole, /**< The shortcode for the emoticon. */ - BodyRole, //**< A textual description of the emoticon */ - IsStickerRole, //**< Whether this emoticon is a sticker */ - IsEmojiRole, //**< Whether this emoticon is an emoji */ - }; - - explicit AccountEmoticonModel(QObject *parent = nullptr); - - /** - * @brief Number of rows in the model. - * - * @sa QAbstractItemModel::rowCount - */ - [[nodiscard]] int rowCount(const QModelIndex &index) const override; - - /** - * @brief Get the given role value at the given index. - * - * @sa QAbstractItemModel::data - */ - [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; - - /** - * @brief Returns a mapping from Role enum values to role names. - * - * @sa Roles, QAbstractItemModel::roleNames() - */ - [[nodiscard]] QHash roleNames() const override; - - [[nodiscard]] NeoChatConnection *connection() const; - void setConnection(NeoChatConnection *connection); - - /** - * @brief Deletes the emoticon at the given index. - */ - Q_INVOKABLE void deleteEmoticon(int index); - - /** - * @brief Changes the description for the emoticon at the given index. - */ - Q_INVOKABLE void setEmoticonBody(int index, const QString &text); - - /** - * @brief Changes the shortcode for the emoticon at the given index. - */ - Q_INVOKABLE void setEmoticonShortcode(int index, const QString &shortCode); - - /** - * @brief Changes the image for the emoticon at the given index. - */ - Q_INVOKABLE void setEmoticonImage(int index, const QUrl &source); - - /** - * @brief Add an emoticon with the given parameters. - */ - Q_INVOKABLE void addEmoticon(const QUrl &source, const QString &shortcode, const QString &description, const QString &type); - -Q_SIGNALS: - void connectionChanged(); - -private: - std::optional m_images; - QPointer m_connection; - QCoro::Task doSetEmoticonImage(int index, QUrl source); - QCoro::Task doAddEmoticon(QUrl source, QString shortcode, QString description, QString type); - - void reloadEmoticons(); -}; diff --git a/src/models/accountimagepackmodel.cpp b/src/models/accountimagepackmodel.cpp new file mode 100644 index 000000000..474f3e167 --- /dev/null +++ b/src/models/accountimagepackmodel.cpp @@ -0,0 +1,66 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "accountimagepackmodel.h" + +#include + +#include "imagecontentmanager.h" + +QVariant AccountImagePackModel::data(const QModelIndex &index, int role) const +{ + Q_UNUSED(index); + if (role == ImageContentPackRole::DisplayNameRole) { + return i18n("Your Emojis"); + } + if (role == ImageContentPackRole::IconRole) { + return imageContentManager.accountImagesAvatar(); + } + if (role == ImageContentPackRole::IdentifierRole) { + return QStringLiteral("account"); + } + if (role == ImageContentPackRole::IsEmojiRole) { + for (const auto &image : imageContentManager.accountImages()) { + if (!image.usage || image.usage->isEmpty() || image.usage->contains(QStringLiteral("emoticon"))) { + return true; + } + } + return false; + } + if (role == ImageContentPackRole::IsStickerRole) { + for (const auto &image : imageContentManager.accountImages()) { + if (!image.usage || image.usage->isEmpty() || image.usage->contains(QStringLiteral("sticker"))) { + return true; + } + } + return false; + } + if (role == ImageContentPackRole::IsEmptyRole) { + return imageContentManager.accountImages().size() == 0; + } + return {}; +} + +int AccountImagePackModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + return ImageContentManager::instance().accountImages().size() > 0 ? 1 : 0; +} + +QHash AccountImagePackModel::roleNames() const +{ + return { + {ImageContentPackRole::DisplayNameRole, "displayName"}, + {ImageContentPackRole::IconRole, "emoji"}, + {ImageContentPackRole::IdentifierRole, "identifier"}, + }; +} + +AccountImagePackModel::AccountImagePackModel(QObject *parent) + : QAbstractListModel(parent) +{ + connect(&ImageContentManager::instance(), &ImageContentManager::accountImagesChanged, this, [this]() { + beginResetModel(); + endResetModel(); + }); +} diff --git a/src/models/accountimagepackmodel.h b/src/models/accountimagepackmodel.h new file mode 100644 index 000000000..20742075d --- /dev/null +++ b/src/models/accountimagepackmodel.h @@ -0,0 +1,38 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +class AccountImagePackModel : public QAbstractListModel +{ + Q_OBJECT + + /** + * Note: This model uses the ImagePackRoles from ImageContentManager as roles. + */ +public: + explicit AccountImagePackModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; +}; diff --git a/src/models/allimagecontentmodel.cpp b/src/models/allimagecontentmodel.cpp new file mode 100644 index 000000000..6d531f277 --- /dev/null +++ b/src/models/allimagecontentmodel.cpp @@ -0,0 +1,56 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "allimagecontentmodel.h" + +#include "imagecontentmanager.h" + +// TODO custom emojis + +AllImageContentModel::AllImageContentModel(QObject *parent) + : QAbstractListModel(parent) +{ + // TODO connect to custom emojis changing; +} + +QVariant AllImageContentModel::data(const QModelIndex &index, int role) const +{ + auto row = index.row(); + for (const auto &category : ImageContentManager::instance().emojis()) { + if (row >= category.size()) { + row -= category.size(); + continue; + } + if (role == ImageContentRole::DisplayNameRole) { + return category[row].displayName; + } + if (role == ImageContentRole::EmojiRole) { + return category[row].text; + } + if (role == ImageContentRole::IsStickerRole) { + return false; + } + if (role == ImageContentRole::IsEmojiRole) { + return true; + } + } + return {}; +} + +int AllImageContentModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + auto sum = 0; + for (const auto &category : ImageContentManager::instance().emojis()) { + sum += category.size(); + } + return sum; +} + +QHash AllImageContentModel::roleNames() const +{ + return { + {ImageContentRole::DisplayNameRole, "displayName"}, + {ImageContentRole::EmojiRole, "text"}, + }; +} diff --git a/src/models/allimagecontentmodel.h b/src/models/allimagecontentmodel.h new file mode 100644 index 000000000..dc4337cfe --- /dev/null +++ b/src/models/allimagecontentmodel.h @@ -0,0 +1,35 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +class AllImageContentModel : public QAbstractListModel +{ + Q_OBJECT + +public: + explicit AllImageContentModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; +}; diff --git a/src/models/completionmodel.cpp b/src/models/completionmodel.cpp index 2bd47e98f..8ce5d77cc 100644 --- a/src/models/completionmodel.cpp +++ b/src/models/completionmodel.cpp @@ -6,8 +6,7 @@ #include "actionsmodel.h" #include "completionproxymodel.h" -#include "customemojimodel.h" -#include "emojimodel.h" +// #include "emojimodel.h" #include "neochatroom.h" #include "roommanager.h" #include "userlistmodel.h" @@ -16,11 +15,13 @@ CompletionModel::CompletionModel(QObject *parent) : QAbstractListModel(parent) , m_filterModel(new CompletionProxyModel()) , m_userListModel(RoomManager::instance().userListModel()) - , m_emojiModel(new QConcatenateTablesProxyModel(this)) +//, m_emojiModel(new QConcatenateTablesProxyModel(this)) { connect(this, &CompletionModel::textChanged, this, &CompletionModel::updateCompletion); - m_emojiModel->addSourceModel(&CustomEmojiModel::instance()); - m_emojiModel->addSourceModel(&EmojiModel::instance()); + connect(this, &CompletionModel::roomChanged, this, [this]() { + m_userListModel->setRoom(m_room); + }); + // TODO m_emojiModel->addSourceModel(&EmojiModel::instance()); } QString CompletionModel::text() const @@ -88,20 +89,20 @@ QVariant CompletionModel::data(const QModelIndex &index, int role) const return m_filterModel->data(filterIndex, RoomListModel::AvatarRole).toString(); } } - if (m_autoCompletionType == Emoji) { - if (role == DisplayNameRole) { - return m_filterModel->data(filterIndex, CustomEmojiModel::DisplayRole); - } - if (role == IconNameRole) { - return m_filterModel->data(filterIndex, CustomEmojiModel::MxcUrl); - } - if (role == ReplacedTextRole) { - return m_filterModel->data(filterIndex, CustomEmojiModel::ReplacedTextRole); - } - if (role == SubtitleRole) { - return m_filterModel->data(filterIndex, EmojiModel::DescriptionRole); - } - } + // if (m_autoCompletionType == Emoji) { + // if (role == DisplayNameRole) { + // return m_filterModel->data(filterIndex, CustomEmojiModel::DisplayRole); + // } + // if (role == IconNameRole) { + // return m_filterModel->data(filterIndex, CustomEmojiModel::MxcUrl); + // } + // if (role == ReplacedTextRole) { + // return m_filterModel->data(filterIndex, CustomEmojiModel::ReplacedTextRole); + // } + // if (role == SubtitleRole) { + // // TODO return m_filterModel->data(filterIndex, EmojiModel::DescriptionRole); + // } + // } return {}; } @@ -147,8 +148,8 @@ void CompletionModel::updateCompletion() || (m_fullText.indexOf(QLatin1Char(' ')) != -1 && m_fullText.indexOf(QLatin1Char(':'), 1) > m_fullText.indexOf(QLatin1Char(' '), 1)))) { m_filterModel->setSourceModel(m_emojiModel); m_autoCompletionType = Emoji; - m_filterModel->setFilterRole(CustomEmojiModel::Name); - m_filterModel->setSecondaryFilterRole(EmojiModel::DescriptionRole); + // m_filterModel->setFilterRole(CustomEmojiModel::Name); + // TODO m_filterModel->setSecondaryFilterRole(EmojiModel::DescriptionRole); m_filterModel->setFullText(m_fullText); m_filterModel->setFilterText(m_text); m_filterModel->invalidate(); diff --git a/src/models/customemojimodel.h b/src/models/customemojimodel.h deleted file mode 100644 index 09fff27dd..000000000 --- a/src/models/customemojimodel.h +++ /dev/null @@ -1,116 +0,0 @@ -// SPDX-FileCopyrightText: 2021 Carson Black -// SPDX-License-Identifier: GPL-2.0-or-later - -#pragma once - -#include -#include -#include - -#include "neochatconnection.h" - -struct CustomEmoji { - QString name; // with :semicolons: - QString url; // mxc:// - QRegularExpression regexp; - - Q_GADGET - Q_PROPERTY(QString unicode MEMBER url) - Q_PROPERTY(QString name MEMBER name) -}; - -/** - * @class CustomEmojiModel - * - * This class defines the model for custom user emojis. - * - * This is based upon the im.ponies.user_emotes spec (MSC2545). - */ -class CustomEmojiModel : public QAbstractListModel -{ - Q_OBJECT - QML_ELEMENT - QML_SINGLETON - - Q_PROPERTY(NeoChatConnection *connection READ connection WRITE setConnection NOTIFY connectionChanged) - -public: - /** - * @brief Defines the model roles. - */ - enum Roles { - Name = Qt::DisplayRole, /**< The name of the emoji. */ - ImageURL, /**< The URL for the custom emoji. */ - ModelData, /**< for emulating the regular emoji model's usage, otherwise the UI code would get too complicated. */ - MxcUrl = 50, /**< The mxc source URL for the custom emoji. */ - DisplayRole = 51, /**< The name of the emoji. For compatibility with EmojiModel. */ - ReplacedTextRole = 52, /**< The name of the emoji. For compatibility with EmojiModel. */ - DescriptionRole = 53, /**< Invalid, reserved. For compatibility with EmojiModel. */ - }; - Q_ENUM(Roles) - - static CustomEmojiModel &instance() - { - static CustomEmojiModel _instance; - return _instance; - } - static CustomEmojiModel *create(QQmlEngine *engine, QJSEngine *) - { - engine->setObjectOwnership(&instance(), QQmlEngine::CppOwnership); - return &instance(); - } - - /** - * @brief Get the given role value at the given index. - * - * @sa QAbstractItemModel::data - */ - QVariant data(const QModelIndex &idx, int role = Qt::DisplayRole) const override; - - /** - * @brief Number of rows in the model. - * - * @sa QAbstractItemModel::rowCount - */ - int rowCount(const QModelIndex &parent = QModelIndex()) const override; - - /** - * @brief Returns a mapping from Role enum values to role names. - * - * @sa Roles, QAbstractItemModel::roleNames() - */ - QHash roleNames() const override; - - /** - * @brief Substitute any custom emojis for an image in the input text. - */ - Q_INVOKABLE QString preprocessText(QString text); - - /** - * @brief Return a list of custom emojis where the name contains the filter text. - */ - Q_INVOKABLE QVariantList filterModel(const QString &filter); - - /** - * @brief Add a new emoji to the model. - */ - Q_INVOKABLE void addEmoji(const QString &name, const QUrl &location); - - /** - * @brief Remove an emoji from the model. - */ - Q_INVOKABLE void removeEmoji(const QString &name); - - void setConnection(NeoChatConnection *connection); - NeoChatConnection *connection() const; - -Q_SIGNALS: - void connectionChanged(); - -private: - explicit CustomEmojiModel(QObject *parent = nullptr); - QList m_emojis; - QPointer m_connection; - - void fetchEmojis(); -}; diff --git a/src/models/emojipacksmodel.cpp b/src/models/emojipacksmodel.cpp new file mode 100644 index 000000000..12e94c212 --- /dev/null +++ b/src/models/emojipacksmodel.cpp @@ -0,0 +1,56 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "emojipacksmodel.h" + +#include + +#include + +#include "imagecontentmanager.h" + +EmojiPacksModel::EmojiPacksModel(QObject *parent) + : QAbstractListModel(parent) +{ +} + +QVariant EmojiPacksModel::data(const QModelIndex &index, int role) const +{ + const auto row = index.row(); + + const auto &category = ImageContentManager::instance().emojiPacks()[row]; + if (role == ImageContentPackRole::DisplayNameRole) { + return category.description; + } + if (role == ImageContentPackRole::IconRole) { + return category.icon; + } + if (role == ImageContentPackRole::IdentifierRole) { + return category.stateKey; + } + if (role == ImageContentPackRole::IsStickerRole) { + return false; + } + if (role == ImageContentPackRole::IsEmojiRole) { + return true; + } + if (role == ImageContentPackRole::IsEmptyRole) { + return false; + } + return {}; +} + +int EmojiPacksModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + return ImageContentManager::instance().emojiPacks().count(); +} + +QHash EmojiPacksModel::roleNames() const +{ + return { + {ImageContentPackRole::DisplayNameRole, "displayName"}, + {ImageContentPackRole::IconRole, "icon"}, + {ImageContentPackRole::IdentifierRole, "identifier"}, + }; +} diff --git a/src/models/emojipacksmodel.h b/src/models/emojipacksmodel.h new file mode 100644 index 000000000..735de8643 --- /dev/null +++ b/src/models/emojipacksmodel.h @@ -0,0 +1,35 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +class EmojiPacksModel : public QAbstractListModel +{ + Q_OBJECT + +public: + explicit EmojiPacksModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; +}; diff --git a/src/models/emoticonfiltermodel.cpp b/src/models/emoticonfiltermodel.cpp deleted file mode 100644 index e06d7ebc5..000000000 --- a/src/models/emoticonfiltermodel.cpp +++ /dev/null @@ -1,57 +0,0 @@ -// SPDX-FileCopyrightText: 2023 Tobias Fella -// SPDX-License-Identifier: GPL-2.0-or-later - -#include "emoticonfiltermodel.h" - -#include "accountemoticonmodel.h" -#include "stickermodel.h" - -EmoticonFilterModel::EmoticonFilterModel(QObject *parent) - : QSortFilterProxyModel(parent) -{ - connect(this, &EmoticonFilterModel::sourceModelChanged, this, [this]() { - if (dynamic_cast(sourceModel())) { - m_stickerRole = StickerModel::IsStickerRole; - m_emojiRole = StickerModel::IsEmojiRole; - } else { - m_stickerRole = AccountEmoticonModel::IsStickerRole; - m_emojiRole = AccountEmoticonModel::IsEmojiRole; - } - }); -} - -bool EmoticonFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const -{ - Q_UNUSED(sourceParent); - auto stickerUsage = sourceModel()->data(sourceModel()->index(sourceRow, 0), m_stickerRole).toBool(); - auto emojiUsage = sourceModel()->data(sourceModel()->index(sourceRow, 0), m_emojiRole).toBool(); - return (stickerUsage && m_showStickers) || (emojiUsage && m_showEmojis); -} - -bool EmoticonFilterModel::showStickers() const -{ - return m_showStickers; -} - -void EmoticonFilterModel::setShowStickers(bool showStickers) -{ - beginResetModel(); - m_showStickers = showStickers; - endResetModel(); - Q_EMIT showStickersChanged(); -} - -bool EmoticonFilterModel::showEmojis() const -{ - return m_showEmojis; -} - -void EmoticonFilterModel::setShowEmojis(bool showEmojis) -{ - beginResetModel(); - m_showEmojis = showEmojis; - endResetModel(); - Q_EMIT showEmojisChanged(); -} - -#include "moc_emoticonfiltermodel.cpp" diff --git a/src/models/historyimagepackmodel.cpp b/src/models/historyimagepackmodel.cpp new file mode 100644 index 000000000..4f979b718 --- /dev/null +++ b/src/models/historyimagepackmodel.cpp @@ -0,0 +1,53 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "historyimagepackmodel.h" + +#include + +#include "imagecontentmanager.h" + +QVariant HistoryImagePackModel::data(const QModelIndex &index, int role) const +{ + Q_UNUSED(index); + if (role == ImageContentPackRole::DisplayNameRole) { + return i18n("History"); + } + if (role == ImageContentPackRole::IconRole) { + return QStringLiteral("โŒ›"); + } + if (role == ImageContentPackRole::IdentifierRole) { + return QStringLiteral("history"); + } + if (role == ImageContentPackRole::IsStickerRole) { + return true; + } + if (role == ImageContentPackRole::IsEmojiRole) { + return true; + } + if (role == ImageContentPackRole::IsEmptyRole) { + //TODO listen? + return imageContentManager.recentEmojis().size() == 0; + } + return {}; +} + +int HistoryImagePackModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + return 1; +} + +QHash HistoryImagePackModel::roleNames() const +{ + return { + {ImageContentPackRole::DisplayNameRole, "displayName"}, + {ImageContentPackRole::IconRole, "emoji"}, + {ImageContentPackRole::IdentifierRole, "identifier"}, + }; +} + +HistoryImagePackModel::HistoryImagePackModel(QObject *parent) + : QAbstractListModel(parent) +{ +} diff --git a/src/models/historyimagepackmodel.h b/src/models/historyimagepackmodel.h new file mode 100644 index 000000000..473f691c4 --- /dev/null +++ b/src/models/historyimagepackmodel.h @@ -0,0 +1,35 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +class HistoryImagePackModel : public QAbstractListModel +{ + Q_OBJECT + +public: + explicit HistoryImagePackModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; +}; diff --git a/src/models/imagecontentfiltermodel.cpp b/src/models/imagecontentfiltermodel.cpp new file mode 100644 index 000000000..8d25543d3 --- /dev/null +++ b/src/models/imagecontentfiltermodel.cpp @@ -0,0 +1,91 @@ +// SPDX-FileCopyrightText: 2024 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "imagecontentfiltermodel.h" + +#include "imagecontentmanager.h" + +ImageContentFilterModel::ImageContentFilterModel(QObject *parent) + : QSortFilterProxyModel(parent) +{ + updateSourceModel(); +} + +bool ImageContentFilterModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const +{ + Q_UNUSED(sourceParent); + auto index = sourceModel()->index(sourceRow, 0); + return ((index.data(ImageContentRole::IsEmojiRole).toBool() && emojis()) || (index.data(ImageContentRole::IsStickerRole).toBool() && stickers())) + && sourceModel()->index(sourceRow, 0).data(ImageContentRole::DisplayNameRole).toString().contains(m_searchText, Qt::CaseInsensitive); +} + +bool ImageContentFilterModel::stickers() const +{ + return m_stickers; +} + +void ImageContentFilterModel::setStickers(bool stickers) +{ + m_stickers = stickers; + Q_EMIT stickersChanged(); + invalidateFilter(); +} + +bool ImageContentFilterModel::emojis() const +{ + return m_emojis; +} + +void ImageContentFilterModel::setEmojis(bool emojis) +{ + m_emojis = emojis; + Q_EMIT emojisChanged(); + invalidateFilter(); +} + +void ImageContentFilterModel::setCategory(const QString &category) +{ + if (category == m_category) { + return; + } + m_category = category; + Q_EMIT categoryChanged(); + updateSourceModel(); +} + +QString ImageContentFilterModel::category() const +{ + return m_category; +} + +void ImageContentFilterModel::setSearchText(const QString &searchText) +{ + if (searchText == m_searchText) { + return; + } + m_searchText = searchText; + Q_EMIT searchTextChanged(); + invalidateFilter(); + updateSourceModel(); +} + +QString ImageContentFilterModel::searchText() const +{ + return m_searchText; +} + +void ImageContentFilterModel::updateSourceModel() +{ + if (!m_searchText.isEmpty()) { + if (sourceModel() != &m_allImageContentModel) { + setSourceModel(&m_allImageContentModel); + } + } else if (m_category == QStringLiteral("history")) { + setSourceModel(&m_recentImageContentProxyModel); + } else { + if (sourceModel() != &m_imageContentModel) { + setSourceModel(&m_imageContentModel); + } + m_imageContentModel.setCategory(m_category); + } +} diff --git a/src/models/imagecontentfiltermodel.h b/src/models/imagecontentfiltermodel.h new file mode 100644 index 000000000..12dc0205a --- /dev/null +++ b/src/models/imagecontentfiltermodel.h @@ -0,0 +1,57 @@ +// SPDX-FileCopyrightText: 2024 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +#include "allimagecontentmodel.h" +#include "imagecontentmodel.h" +#include "recentimagecontentproxymodel.h" + +class ImageContentFilterModel : public QSortFilterProxyModel +{ + Q_OBJECT + QML_ELEMENT + + Q_PROPERTY(bool stickers READ stickers WRITE setStickers NOTIFY stickersChanged) + Q_PROPERTY(bool emojis READ emojis WRITE setEmojis NOTIFY emojisChanged) + Q_PROPERTY(QString category READ category WRITE setCategory NOTIFY categoryChanged) + Q_PROPERTY(QString searchText READ searchText WRITE setSearchText NOTIFY searchTextChanged) + +public: + explicit ImageContentFilterModel(QObject *parent = nullptr); + + bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override; + + [[nodiscard]] bool stickers() const; + void setStickers(bool stickers); + + [[nodiscard]] bool emojis() const; + void setEmojis(bool emojis); + + QString category() const; + void setCategory(const QString &category); + + QString searchText() const; + void setSearchText(const QString &text); + +Q_SIGNALS: + void stickersChanged(); + void emojisChanged(); + void categoryChanged(); + void searchTextChanged(); + +private: + bool m_stickers = true; + bool m_emojis = true; + QString m_category; + QString m_searchText; + + AllImageContentModel m_allImageContentModel; + RecentImageContentProxyModel m_recentImageContentProxyModel; + ImageContentModel m_imageContentModel; + + void updateSourceModel(); +}; diff --git a/src/models/imagecontentmodel.cpp b/src/models/imagecontentmodel.cpp new file mode 100644 index 000000000..f828cc6c1 --- /dev/null +++ b/src/models/imagecontentmodel.cpp @@ -0,0 +1,164 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "imagecontentmodel.h" + +#include + +#include + +#include "controller.h" +#include "imagecontentmanager.h" + +ImageContentModel::ImageContentModel(QObject *parent) + : QAbstractListModel(parent) +{ +} + +int ImageContentModel::rowCount(const QModelIndex &parent) const +{ + Q_UNUSED(parent); + if (m_category == QStringLiteral("account")) { + return imageContentManager.accountImages().size(); + } + if (m_category.contains(u'@')) { + return imageContentManager.roomImages()[{m_roomId, m_stateKey}].size(); + } + return imageContentManager.emojis()[m_category].count(); +} + +QVariant ImageContentModel::emojiData(int row, int role) const +{ + const auto emoji = imageContentManager.emojis()[m_category][row]; + if (role == ImageContentRole::DisplayNameRole) { + return emoji.displayName; + } + if (role == ImageContentRole::EmojiRole) { + return emoji.text; + } + if (role == ImageContentRole::IsCustomRole) { + return false; + } + if (role == ImageContentRole::IsEmojiRole) { + return true; + } + if (role == ImageContentRole::IsStickerRole) { + return false; + } + if (role == ImageContentRole::HasTonesRole) { + return true; // TODO + } + return {}; +} + +QVariant ImageContentModel::accountData(int row, int role) const +{ + const auto &image = imageContentManager.accountImages()[row]; + if (role == ImageContentRole::DisplayNameRole) { + return image.shortcode; + } + if (role == ImageContentRole::EmojiRole) { + return QStringLiteral("") + .arg(Controller::instance().activeConnection()->makeMediaUrl(image.url).toString()); + } + if (role == ImageContentRole::ShortCodeRole) { + return image.shortcode; + } + if (role == ImageContentRole::IsCustomRole) { + return true; + } + if (role == ImageContentRole::IsEmojiRole) { + return !image.usage || image.usage->isEmpty() || image.usage->contains(QStringLiteral("emoticon")); + } + if (role == ImageContentRole::IsStickerRole) { + return !image.usage || image.usage->isEmpty() || image.usage->contains(QStringLiteral("sticker")); + } + return {}; +} + +QVariant ImageContentModel::roomData(int row, int role) const +{ + const auto image = imageContentManager.roomImages()[{m_roomId, m_stateKey}][row]; + if (role == ImageContentRole::DisplayNameRole) { + return image.shortcode; + } + if (role == ImageContentRole::EmojiRole) { + return QStringLiteral("") + .arg(Controller::instance().activeConnection()->makeMediaUrl(image.url).toString()); + } + if (role == ImageContentRole::ShortCodeRole) { + return image.shortcode; + } + if (role == ImageContentRole::IsCustomRole) { + return true; + } + if (role == ImageContentRole::IsEmojiRole) { + return true; // For room image packs, we're ignoring the usage of the individual images. + } + if (role == ImageContentRole::IsStickerRole) { + return true; + } + return {}; +} + +QVariant ImageContentModel::data(const QModelIndex &index, int role) const +{ + const auto &row = index.row(); + if (m_category == QStringLiteral("account")) { + return accountData(row, role); + } + if (m_category.contains(u'@')) { + return roomData(row, role); + } + return emojiData(row, role); +} + +QHash ImageContentModel::roleNames() const +{ + return { + {ImageContentRole::DisplayNameRole, "displayName"}, + {ImageContentRole::EmojiRole, "text"}, + {ImageContentRole::ShortCodeRole, "shortCode"}, + {ImageContentRole::IsCustomRole, "isCustom"}, + {ImageContentRole::IsStickerRole, "isSticker"}, + {ImageContentRole::IsEmojiRole, "isEmoji"}, + {ImageContentRole::HasTonesRole, "hasTones"}, + }; +} + +QString ImageContentModel::category() const +{ + return m_category; +} + +void ImageContentModel::setCategory(const QString &category) +{ + if (category == m_category) { + return; + } + + beginResetModel(); + m_category = category; + if (m_category.contains(u'@')) { + const auto &split = m_category.split(u'@'); + m_roomId = split[0]; + m_stateKey = split[1]; + } else { + m_roomId = QString(); + m_stateKey = QString(); + } + endResetModel(); + + if (m_category == QStringLiteral("account")) { + connect(&ImageContentManager::instance(), &ImageContentManager::accountImagesChanged, this, [this]() { + beginResetModel(); + endResetModel(); + }); + } else { + disconnect(&ImageContentManager::instance(), &ImageContentManager::accountImagesChanged, this, nullptr); + } + + Q_EMIT categoryChanged(); +} + +#include "moc_imagecontentmodel.cpp" diff --git a/src/models/imagecontentmodel.h b/src/models/imagecontentmodel.h new file mode 100644 index 000000000..b73bc4cc4 --- /dev/null +++ b/src/models/imagecontentmodel.h @@ -0,0 +1,60 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include +#include + +/** + * @class ImageContentModel + * + * This class defines the model for visualising a list of emojis. + */ +class ImageContentModel : public QAbstractListModel +{ + Q_OBJECT + QML_ELEMENT + + Q_PROPERTY(QString category READ category WRITE setCategory NOTIFY categoryChanged) + +public: + ImageContentModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &idx, int role = Qt::DisplayRole) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &parent = QModelIndex()) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa RoleNames, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; + + [[nodiscard]] QString category() const; + void setCategory(const QString &category); + + QVariant emojiData(int row, int role) const; + QVariant accountData(int row, int role) const; + QVariant roomData(int row, int role) const; + +Q_SIGNALS: + void categoryChanged(); + +private: + QString m_category; + QString m_roomId; + QString m_stateKey; +}; diff --git a/src/models/imagepackroomsmodel.cpp b/src/models/imagepackroomsmodel.cpp new file mode 100644 index 000000000..55270d76f --- /dev/null +++ b/src/models/imagepackroomsmodel.cpp @@ -0,0 +1,68 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "imagepackroomsmodel.h" + +#include +#include + +#include "controller.h" +#include "imagecontentmanager.h" + +using namespace Quotient; + +ImagePackRoomsModel::ImagePackRoomsModel(QObject *parent) + : QAbstractListModel(parent) +{ + connect(&imageContentManager, &ImageContentManager::globalPacksChanged, this, [this]() { + beginResetModel(); + endResetModel(); + }); +} + +QVariant ImagePackRoomsModel::data(const QModelIndex &index, int role) const +{ + const auto &row = index.row(); + const auto &packKey = imageContentManager.globalPacks()[row]; + if (!imageContentManager.roomImagePacks().contains(packKey.first) || !imageContentManager.roomImagePacks()[packKey.first].contains(packKey.second)) { + return false; + } + const auto &pack = imageContentManager.roomImagePacks()[packKey.first][packKey.second]; + if (role == ImageContentPackRole::DisplayNameRole) { + return pack.description; + } + if (role == ImageContentPackRole::IconRole) { + return pack.icon; + } + if (role == ImageContentPackRole::IdentifierRole) { + return QStringLiteral("%1@%2").arg(pack.roomId, pack.stateKey); + } + if (role == ImageContentPackRole::IsStickerRole) { + return pack.type == ImagePackDescription::Sticker; + } + if (role == ImageContentPackRole::IsEmojiRole) { + return pack.type == ImagePackDescription::Emoji || pack.type == ImagePackDescription::CustomEmoji; + } + if (role == ImageContentPackRole::IsEmptyRole) { + return imageContentManager.roomImages()[packKey].size() == 0; + } + if (role == ImageContentPackRole::IsGlobalPackRole) { + return true; + } + return {}; +} + +int ImagePackRoomsModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + return imageContentManager.globalPacks().size(); +} + +QHash ImagePackRoomsModel::roleNames() const +{ + return { + {ImageContentPackRole::DisplayNameRole, "displayName"}, + {ImageContentPackRole::IconRole, "emoji"}, // TODO rename + {ImageContentPackRole::IdentifierRole, "identifier"}, + }; +} diff --git a/src/models/imagepackroomsmodel.h b/src/models/imagepackroomsmodel.h new file mode 100644 index 000000000..53d54a469 --- /dev/null +++ b/src/models/imagepackroomsmodel.h @@ -0,0 +1,42 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include "imagecontentmanager.h" +#include + +/** + * Lists the custom emoji/sticker packs from other rooms as marked in the account data. + * Not to be confused with the packs for this room (-> RoomEmoticonsCategoryModel) + * + * Note: This model uses the ImagePackRoles from ImageContentManager as roles. + */ +class ImagePackRoomsModel : public QAbstractListModel +{ + Q_OBJECT + +public: + explicit ImagePackRoomsModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; +}; diff --git a/src/models/imagepacksmodel.cpp b/src/models/imagepacksmodel.cpp index ddba27c44..7a233749f 100644 --- a/src/models/imagepacksmodel.cpp +++ b/src/models/imagepacksmodel.cpp @@ -1,170 +1,43 @@ -// SPDX-FileCopyrightText: 2021 Tobias Fella -// SPDX-License-Identifier: LGPL-2.0-or-later +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later #include "imagepacksmodel.h" -#include "neochatroom.h" -#include - -using namespace Quotient; +#include "models/accountimagepackmodel.h" +#include "models/emojipacksmodel.h" +#include "models/historyimagepackmodel.h" +#include "models/imagepackroomsmodel.h" +#include "models/roomimagepacksmodel.h" ImagePacksModel::ImagePacksModel(QObject *parent) - : QAbstractListModel(parent) + : QConcatenateTablesProxyModel(parent) { + addSourceModel(new HistoryImagePackModel(parent)); + addSourceModel(new AccountImagePackModel(parent)); + m_roomImagePacksModel = new RoomImagePacksModel(parent); + addSourceModel(m_roomImagePacksModel); + addSourceModel(new ImagePackRoomsModel(parent)); + addSourceModel(new EmojiPacksModel(parent)); } -int ImagePacksModel::rowCount(const QModelIndex &index) const -{ - Q_UNUSED(index); - return m_events.count(); -} - -QVariant ImagePacksModel::data(const QModelIndex &index, int role) const -{ - const auto row = index.row(); - if (row < 0 || row >= m_events.size()) { - return {}; - } - const auto &event = m_events[row]; - if (role == DisplayNameRole) { - if (event.pack->displayName) { - return *event.pack->displayName; - } - } - if (role == AvatarUrlRole) { - if (event.pack->avatarUrl) { - return m_room->connection()->makeMediaUrl(*event.pack->avatarUrl); - } else if (!event.images.empty()) { - return m_room->connection()->makeMediaUrl(event.images[0].url); - } - } - return {}; -} - +// TODO required? QHash ImagePacksModel::roleNames() const { return { - {DisplayNameRole, "displayName"}, - {AvatarUrlRole, "avatarUrl"}, - {AttributionRole, "attribution"}, - {IdRole, "id"}, + {ImageContentPackRole::DisplayNameRole, "displayName"}, + {ImageContentPackRole::IconRole, "icon"}, + {ImageContentPackRole::IdentifierRole, "identifier"}, }; } -NeoChatRoom *ImagePacksModel::room() const +NeoChatRoom *ImagePacksModel::currentRoom() const { - return m_room; + return m_roomImagePacksModel->currentRoom(); } -void ImagePacksModel::setRoom(NeoChatRoom *room) +void ImagePacksModel::setCurrentRoom(NeoChatRoom *currentRoom) { - if (m_room) { - disconnect(m_room, nullptr, this, nullptr); - disconnect(m_room->connection(), nullptr, this, nullptr); - } - m_room = room; - - if (m_room) { - connect(m_room->connection(), &Connection::accountDataChanged, this, [this](const QString &type) { - if (type == "im.ponies.user_emotes"_ls) { - reloadImages(); - } - }); - } - // TODO listen to packs changing - reloadImages(); - Q_EMIT roomChanged(); + m_roomImagePacksModel->setCurrentRoom(currentRoom); + Q_EMIT currentRoomChanged(); } -void ImagePacksModel::reloadImages() -{ - if (!m_room) { - return; - } - beginResetModel(); - m_events.clear(); - - // Load emoticons from the account data - if (m_room->connection()->hasAccountData("im.ponies.user_emotes"_ls)) { - auto json = m_room->connection()->accountData("im.ponies.user_emotes"_ls)->contentJson(); - json["pack"_ls] = QJsonObject{ - {"display_name"_ls, - m_showStickers ? i18nc("As in 'The user's own Stickers'", "Own Stickers") : i18nc("As in 'The user's own emojis", "Own Emojis")}, - }; - const auto &content = ImagePackEventContent(json); - if (!content.images.isEmpty()) { - m_events += ImagePackEventContent(json); - } - } - - // Load emoticons from the saved rooms - const auto &accountData = m_room->connection()->accountData("im.ponies.emote_rooms"_ls); - if (accountData) { - const auto &rooms = accountData->contentJson()["rooms"_ls].toObject(); - for (const auto &roomId : rooms.keys()) { - if (roomId == m_room->id()) { - continue; - } - auto packs = rooms[roomId].toObject(); - const auto &stickerRoom = m_room->connection()->room(roomId); - if (!stickerRoom) { - continue; - } - for (const auto &packKey : packs.keys()) { - if (const auto &pack = stickerRoom->currentState().get(packKey)) { - const auto packContent = pack->content(); - if ((!packContent.pack || !packContent.pack->usage || (packContent.pack->usage->contains("emoticon"_ls) && showEmoticons()) - || (packContent.pack->usage->contains("sticker"_ls) && showStickers())) - && !packContent.images.isEmpty()) { - m_events += packContent; - } - } - } - } - } - - // Load emoticons from the current room - auto events = m_room->currentState().eventsOfType("im.ponies.room_emotes"_ls); - for (const auto &event : events) { - auto packContent = eventCast(event)->content(); - if (packContent.pack.has_value()) { - if (!packContent.pack->usage || (packContent.pack->usage->contains("emoticon"_ls) && showEmoticons()) - || (packContent.pack->usage->contains("sticker"_ls) && showStickers())) { - m_events += packContent; - } - } - } - Q_EMIT imagesLoaded(); - endResetModel(); -} - -bool ImagePacksModel::showStickers() const -{ - return m_showStickers; -} - -void ImagePacksModel::setShowStickers(bool showStickers) -{ - m_showStickers = showStickers; - Q_EMIT showStickersChanged(); -} - -bool ImagePacksModel::showEmoticons() const -{ - return m_showEmoticons; -} - -void ImagePacksModel::setShowEmoticons(bool showEmoticons) -{ - m_showEmoticons = showEmoticons; - Q_EMIT showEmoticonsChanged(); -} -QList ImagePacksModel::images(int index) -{ - if (index < 0 || index >= m_events.size()) { - return {}; - } - return m_events[index].images; -} - -#include "moc_imagepacksmodel.cpp" diff --git a/src/models/imagepacksmodel.h b/src/models/imagepacksmodel.h index b11659be6..2d18372dc 100644 --- a/src/models/imagepacksmodel.h +++ b/src/models/imagepacksmodel.h @@ -1,7 +1,7 @@ -// SPDX-FileCopyrightText: 2021-2023 Tobias Fella -// SPDX-License-Identifier: LGPL-2.0-or-later +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later -#pragma once +#include #include "events/imagepackevent.h" #include @@ -9,95 +9,26 @@ #include #include -class NeoChatRoom; +#include "neochatroom.h" -/** - * @class ImagePacksModel - * - * Defines the model for visualising image packs. - * - * See Matrix MSC2545 for more details on image packs. - * https://github.com/Sorunome/matrix-doc/blob/soru/emotes/proposals/2545-emotes.md - */ -class ImagePacksModel : public QAbstractListModel +class RoomImagePacksModel; + +class ImagePacksModel : public QConcatenateTablesProxyModel { Q_OBJECT QML_ELEMENT - /** - * @brief The current room that the model is being used in. - */ - Q_PROPERTY(NeoChatRoom *room READ room WRITE setRoom NOTIFY roomChanged) - - /** - * @brief Whether sticker image packs should be shown. - */ - Q_PROPERTY(bool showStickers READ showStickers WRITE setShowStickers NOTIFY showStickersChanged) - - /** - * @brief Whether emoticon image packs should be shown. - */ - Q_PROPERTY(bool showEmoticons READ showEmoticons WRITE setShowEmoticons NOTIFY showEmoticonsChanged) + Q_PROPERTY(NeoChatRoom *currentRoom READ currentRoom WRITE setCurrentRoom NOTIFY currentRoomChanged) public: - /** - * @brief Defines the model roles. - */ - enum Roles { - DisplayNameRole = Qt::DisplayRole, /**< The display name of the image pack. */ - AvatarUrlRole, /**< The source mxc URL for the pack avatar. */ - AttributionRole, /**< The attribution for the pack author(s). */ - IdRole, /**< The ID of the image pack. */ - }; - Q_ENUM(Roles) - - explicit ImagePacksModel(QObject *parent = nullptr); - - /** - * @brief Get the given role value at the given index. - * - * @sa QAbstractItemModel::data - */ - [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; - - /** - * @brief Number of rows in the model. - * - * @sa QAbstractItemModel::rowCount - */ - [[nodiscard]] int rowCount(const QModelIndex &index) const override; - - /** - * @brief Returns a mapping from Role enum values to role names. - * - * @sa Roles, QAbstractItemModel::roleNames() - */ - [[nodiscard]] QHash roleNames() const override; - - [[nodiscard]] NeoChatRoom *room() const; - void setRoom(NeoChatRoom *room); - - [[nodiscard]] bool showStickers() const; - void setShowStickers(bool showStickers); - - [[nodiscard]] bool showEmoticons() const; - void setShowEmoticons(bool showEmoticons); - - /** - * @brief Return a vector of the images in the pack at the given index. - */ - [[nodiscard]] QList images(int index); + ImagePacksModel(QObject *parent = nullptr); + QHash roleNames() const override; + [[nodiscard]] NeoChatRoom *currentRoom() const; + void setCurrentRoom(NeoChatRoom *currentRoom); Q_SIGNALS: - void roomChanged(); - void showStickersChanged(); - void showEmoticonsChanged(); - void imagesLoaded(); + void currentRoomChanged(); private: - QPointer m_room; - QList m_events; - bool m_showStickers = true; - bool m_showEmoticons = true; - void reloadImages(); + RoomImagePacksModel *m_roomImagePacksModel = nullptr; }; diff --git a/src/models/imagepacksproxymodel.cpp b/src/models/imagepacksproxymodel.cpp new file mode 100644 index 000000000..ba1b7a838 --- /dev/null +++ b/src/models/imagepacksproxymodel.cpp @@ -0,0 +1,67 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "imagepacksproxymodel.h" + +#include "imagecontentmanager.h" +#include "imagepacksmodel.h" +#include "neochatroom.h" + +ImagePacksProxyModel::ImagePacksProxyModel(QObject *parent) + : QSortFilterProxyModel(parent) +{ + setSourceModel(new ImagePacksModel(this)); +} + +bool ImagePacksProxyModel::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const +{ + Q_UNUSED(sourceParent); + const auto &identifier = sourceModel()->data(sourceModel()->index(sourceRow, 0), ImageContentPackRole::IdentifierRole).toString(); + if (identifier.contains(u'@')) { + const auto roomId = identifier.split(u'@')[0]; + if (static_cast(sourceModel())->currentRoom() && roomId == static_cast(sourceModel())->currentRoom()->id() + && sourceModel()->data(sourceModel()->index(sourceRow, 0), ImageContentPackRole::IsGlobalPackRole).toBool()) { + // Hide this pack, as it's already exposed as a global pack + return false; + } + } + return ((sourceModel()->data(sourceModel()->index(sourceRow, 0), ImageContentPackRole::IsEmojiRole).toBool() && emojis()) + || (sourceModel()->data(sourceModel()->index(sourceRow, 0), ImageContentPackRole::IsStickerRole).toBool() && stickers())); +} + +bool ImagePacksProxyModel::stickers() const +{ + return m_stickers; +} + +void ImagePacksProxyModel::setStickers(bool stickers) +{ + m_stickers = stickers; + Q_EMIT stickersChanged(); + invalidateFilter(); +} + +bool ImagePacksProxyModel::emojis() const +{ + return m_emojis; +} + +void ImagePacksProxyModel::setEmojis(bool emojis) +{ + m_emojis = emojis; + Q_EMIT emojisChanged(); + invalidateFilter(); +} + +NeoChatRoom *ImagePacksProxyModel::currentRoom() const +{ + return static_cast(sourceModel())->currentRoom(); +} + +void ImagePacksProxyModel::setCurrentRoom(NeoChatRoom *currentRoom) +{ + beginResetModel(); + static_cast(sourceModel())->setCurrentRoom(currentRoom); + endResetModel(); + Q_EMIT currentRoomChanged(); +} diff --git a/src/models/imagepacksproxymodel.h b/src/models/imagepacksproxymodel.h new file mode 100644 index 000000000..4f0800106 --- /dev/null +++ b/src/models/imagepacksproxymodel.h @@ -0,0 +1,43 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include +#include + +class NeoChatRoom; + +/** + * Filters image packs on whether they contain stickers or emojis, depending on the respective properties + */ +class ImagePacksProxyModel : public QSortFilterProxyModel +{ + Q_OBJECT + QML_ELEMENT + + Q_PROPERTY(bool stickers READ stickers WRITE setStickers NOTIFY stickersChanged) + Q_PROPERTY(bool emojis READ emojis WRITE setEmojis NOTIFY emojisChanged) + Q_PROPERTY(NeoChatRoom *currentRoom READ currentRoom WRITE setCurrentRoom NOTIFY currentRoomChanged) + +public: + explicit ImagePacksProxyModel(QObject *parent = nullptr); + + bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const override; + + [[nodiscard]] bool stickers() const; + void setStickers(bool stickers); + + [[nodiscard]] bool emojis() const; + void setEmojis(bool emojis); + + [[nodiscard]] NeoChatRoom *currentRoom() const; + void setCurrentRoom(NeoChatRoom *currentRoom); + +Q_SIGNALS: + void stickersChanged(); + void emojisChanged(); + void currentRoomChanged(); + +private: + bool m_stickers = true; + bool m_emojis = true; +}; diff --git a/src/models/recentimagecontentmodel.cpp b/src/models/recentimagecontentmodel.cpp new file mode 100644 index 000000000..88ca04cd2 --- /dev/null +++ b/src/models/recentimagecontentmodel.cpp @@ -0,0 +1,73 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "recentimagecontentmodel.h" + +#include "imagecontentmanager.h" + +RecentImageContentModel::RecentImageContentModel(QObject *parent) + : QAbstractListModel(parent) +{ + connect(&ImageContentManager::instance(), &ImageContentManager::recentEmojisChanged, this, [this]() { + beginResetModel(); + endResetModel(); + }); +} + +QVariant RecentImageContentModel::data(const QModelIndex &index, int role) const +{ + const auto &recent = ImageContentManager::instance().recentEmojis(); + const auto row = index.row(); + const bool isCustom = recent.keys()[row].startsWith(QLatin1Char(':')); + + if (role == ImageContentRole::DisplayNameRole) { + if (isCustom) { + return imageContentManager.bodyForShortCode(recent.keys()[row].mid(1).chopped(1)); + } + return ImageContentManager::instance().emojiForText(recent.keys()[row]).displayName; + } + if (role == ImageContentRole::EmojiRole) { + if (isCustom) { + return QStringLiteral("") + .arg(imageContentManager.mxcForShortCode(recent.keys()[row].mid(1).chopped(1))); + } + return recent.keys()[row]; + } + if (role == ImageContentRole::UsageCountRole) { + return recent[recent.keys()[row]]; + } + if (role == ImageContentRole::ShortCodeRole) { + return recent.keys()[row].mid(1).chopped(1); + } + if (role == ImageContentRole::IsCustomRole) { + return isCustom; + } + if (role == ImageContentRole::IsEmojiRole) { + if (!isCustom) + return true; + return imageContentManager.isEmojiShortCode(recent.keys()[row].mid(1).chopped(1)); + } + if (role == ImageContentRole::IsStickerRole) { + if (!isCustom) + return false; + return imageContentManager.isStickerShortCode(recent.keys()[row].mid(1).chopped(1)); + } + return {}; +} + +int RecentImageContentModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + return ImageContentManager::instance().recentEmojis().size(); +} + +QHash RecentImageContentModel::roleNames() const +{ + return { + {ImageContentRole::DisplayNameRole, "displayName"}, + {ImageContentRole::EmojiRole, "text"}, + {ImageContentRole::UsageCountRole, "usageCount"}, + {ImageContentRole::ShortCodeRole, "shortCode"}, + {ImageContentRole::IsCustomRole, "isCustom"}, + }; +} diff --git a/src/models/recentimagecontentmodel.h b/src/models/recentimagecontentmodel.h new file mode 100644 index 000000000..1d4d574b2 --- /dev/null +++ b/src/models/recentimagecontentmodel.h @@ -0,0 +1,38 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include + +/** + * Lists the previously used emojis in no specific order. + */ +class RecentImageContentModel : public QAbstractListModel +{ + Q_OBJECT + +public: + explicit RecentImageContentModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; +}; diff --git a/src/models/recentimagecontentproxymodel.cpp b/src/models/recentimagecontentproxymodel.cpp new file mode 100644 index 000000000..9cb40aaac --- /dev/null +++ b/src/models/recentimagecontentproxymodel.cpp @@ -0,0 +1,19 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "recentimagecontentproxymodel.h" + +#include "imagecontentmanager.h" +#include "recentimagecontentmodel.h" + +RecentImageContentProxyModel::RecentImageContentProxyModel(QObject *parent) + : QSortFilterProxyModel(parent) +{ + setSourceModel(new RecentImageContentModel(this)); + sort(0); +} + +bool RecentImageContentProxyModel::lessThan(const QModelIndex &sourceLeft, const QModelIndex &sourceRight) const +{ + return sourceLeft.data(ImageContentRole::UsageCountRole).toInt() > sourceRight.data(ImageContentRole::UsageCountRole).toInt(); +} diff --git a/src/models/recentimagecontentproxymodel.h b/src/models/recentimagecontentproxymodel.h new file mode 100644 index 000000000..178807dd3 --- /dev/null +++ b/src/models/recentimagecontentproxymodel.h @@ -0,0 +1,18 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +class RecentImageContentProxyModel : public QSortFilterProxyModel +{ + Q_OBJECT + QML_ELEMENT + +public: + explicit RecentImageContentProxyModel(QObject *parent = nullptr); + + bool lessThan(const QModelIndex &sourceLeft, const QModelIndex &sourceRight) const override; +}; diff --git a/src/models/roomimagepacksmodel.cpp b/src/models/roomimagepacksmodel.cpp new file mode 100644 index 000000000..45d12a867 --- /dev/null +++ b/src/models/roomimagepacksmodel.cpp @@ -0,0 +1,86 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#include "roomimagepacksmodel.h" +#include "imagecontentmanager.h" + +#include "neochatroom.h" + +NeoChatRoom *RoomImagePacksModel::currentRoom() const +{ + return m_currentRoom; +} + +void RoomImagePacksModel::setCurrentRoom(NeoChatRoom *currentRoom) +{ + if (m_currentRoom == currentRoom) { + return; + } + if (m_currentRoom) { + disconnect(m_currentRoom, nullptr, this, nullptr); + } + beginResetModel(); + m_currentRoom = currentRoom; + endResetModel(); + Q_EMIT currentRoomChanged(); +} + +QVariant RoomImagePacksModel::data(const QModelIndex &index, int role) const +{ + Q_UNUSED(index); + if (!m_currentRoom) { + return {}; + } + const auto row = index.row(); + const auto &packs = ImageContentManager::instance().roomImagePacks()[m_currentRoom->id()].values(); + const auto &pack = packs[row]; + if (role == ImageContentPackRole::DisplayNameRole) { + return pack.description; + } + if (role == ImageContentPackRole::IconRole) { + return pack.icon; + } + if (role == ImageContentPackRole::IdentifierRole) { + return QStringLiteral("%1@%2").arg(m_currentRoom->id(), pack.stateKey); + } + if (role == ImageContentPackRole::IsStickerRole) { + return pack.type == ImagePackDescription::Sticker || pack.type == ImagePackDescription::Both; + } + if (role == ImageContentPackRole::IsEmojiRole) { + return pack.type == ImagePackDescription::Emoji || pack.type == ImagePackDescription::CustomEmoji || pack.type == ImagePackDescription::Both; + } + if (role == ImageContentPackRole::IsEmptyRole) { + return imageContentManager.roomImages()[{m_currentRoom->id(), pack.stateKey}].isEmpty(); + } + return {}; +} + +int RoomImagePacksModel::rowCount(const QModelIndex &index) const +{ + Q_UNUSED(index); + if (!m_currentRoom) { + return {}; + } + return ImageContentManager::instance().roomImagePacks()[m_currentRoom->id()].size(); +} + +QHash RoomImagePacksModel::roleNames() const +{ + return { + {ImageContentPackRole::DisplayNameRole, "displayName"}, + {ImageContentPackRole::IconRole, "emoji"}, + {ImageContentPackRole::IdentifierRole, "identifier"}, + }; +} + +RoomImagePacksModel::RoomImagePacksModel(QObject *parent) + : QAbstractListModel(parent) +{ + connect(&ImageContentManager::instance(), &ImageContentManager::roomImagePacksChanged, this, [this](NeoChatRoom *room) { + if (room != m_currentRoom) { + return; + } + beginResetModel(); + endResetModel(); + }); +} diff --git a/src/models/roomimagepacksmodel.h b/src/models/roomimagepacksmodel.h new file mode 100644 index 000000000..de18aa9cd --- /dev/null +++ b/src/models/roomimagepacksmodel.h @@ -0,0 +1,50 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +#pragma once + +#include +#include + +class NeoChatRoom; + +/** + * Note: This model uses the ImagePackRoles from ImageContentManager as roles. + */ +class RoomImagePacksModel : public QAbstractListModel +{ + Q_OBJECT + +public: + explicit RoomImagePacksModel(QObject *parent = nullptr); + + /** + * @brief Get the given role value at the given index. + * + * @sa QAbstractItemModel::data + */ + [[nodiscard]] QVariant data(const QModelIndex &index, int role) const override; + + /** + * @brief Number of rows in the model. + * + * @sa QAbstractItemModel::rowCount + */ + [[nodiscard]] int rowCount(const QModelIndex &index) const override; + + /** + * @brief Returns a mapping from Role enum values to role names. + * + * @sa Roles, QAbstractItemModel::roleNames() + */ + [[nodiscard]] QHash roleNames() const override; + + [[nodiscard]] NeoChatRoom *currentRoom() const; + void setCurrentRoom(NeoChatRoom *currentRoom); + +Q_SIGNALS: + void currentRoomChanged(); + +private: + QPointer m_currentRoom; +}; diff --git a/src/qml/EmojiPickerPackHeader.qml b/src/qml/EmojiPickerPackHeader.qml new file mode 100644 index 000000000..e685a9c3a --- /dev/null +++ b/src/qml/EmojiPickerPackHeader.qml @@ -0,0 +1,60 @@ +// SPDX-FileCopyrightText: 2024 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +import QtQuick +import QtQuick.Controls as QQC2 +import QtQuick.Layouts + +import org.kde.kirigami as Kirigami + +import org.kde.neochat + +QQC2.ScrollView { + id: root + + QQC2.ScrollBar.horizontal.height: QQC2.ScrollBar.horizontal.visible ? QQC2.ScrollBar.horizontal.implicitHeight : 0 + + required property var model + property int currentIndex: 0 + readonly property string category: root.model.data(root.model.index(root.currentIndex, 0), ImageContentPackRole.IdentifierRole) + + implicitHeight: Kirigami.Units.iconSizes.large + root.QQC2.ScrollBar.horizontal.height + + ListView { + id: categories + clip: true + focus: true + orientation: ListView.Horizontal + currentIndex: root.currentIndex + + Keys.onReturnPressed: if (emojiGrid.count > 0) emojiGrid.focus = true + Keys.onEnterPressed: if (emojiGrid.count > 0) emojiGrid.focus = true + + KeyNavigation.down: emojiGrid.count > 0 ? emojiGrid : categories + KeyNavigation.tab: emojiGrid.count > 0 ? emojiGrid : categories + + keyNavigationEnabled: true + keyNavigationWraps: true + Keys.forwardTo: searchField + interactive: width !== contentWidth + + Component.onCompleted: categories.forceActiveFocus() + + model: root.model + + delegate: EmojiDelegate { + id: packDelegate + required property string name + required property string i18nName + width: Kirigami.Units.iconSizes.large + height: width + checked: categories.currentIndex === model.index + toolTip: packDelegate.i18nName + text: packDelegate.name + + onClicked: { + root.currentIndex = index; + } + } + } +} diff --git a/src/qml/EmojiPickerTypeHeader.qml b/src/qml/EmojiPickerTypeHeader.qml new file mode 100644 index 000000000..f29540e88 --- /dev/null +++ b/src/qml/EmojiPickerTypeHeader.qml @@ -0,0 +1,39 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +import QtQuick +import QtQuick.Controls as QQC2 +import QtQuick.Layouts + +import org.kde.kirigami as Kirigami + +Kirigami.NavigationTabBar { + id: root + + enum EmoticonType { + Emoji, + Sticker + } + + Kirigami.Theme.colorSet: Kirigami.Theme.View + property var selectedType: EmojiPickerTypeHeader.EmoticonType.Emoji + + background: null + actions: [ + Kirigami.Action { + id: emojis + icon.name: "smiley" + text: i18n("Emojis") + checked: root.selectedType === EmojiPickerTypeHeader.EmoticonType.Emoji + + onTriggered: root.selectedType = EmojiPickerTypeHeader.EmoticonType.Emoji + }, + Kirigami.Action { + id: stickers + icon.name: "stickers" + text: i18n("Stickers") + checked: root.selectedType === EmojiPickerTypeHeader.EmoticonType.Sticker + onTriggered: root.selectedType = EmojiPickerTypeHeader.EmoticonType.Sticker + } + ] +} diff --git a/src/qml/HoverActions.qml b/src/qml/HoverActions.qml index a7dfd8b5a..e0688a224 100644 --- a/src/qml/HoverActions.qml +++ b/src/qml/HoverActions.qml @@ -156,7 +156,6 @@ QQC2.Control { EmojiDialog { id: emojiDialog currentRoom: root.currentRoom - showQuickReaction: true onChosen: emoji => { root.currentRoom.toggleReaction(root.delegate.eventId, emoji); if (!Kirigami.Settings.isMobile) { diff --git a/src/qml/Main.qml b/src/qml/Main.qml index 4757465b1..34468dfe4 100644 --- a/src/qml/Main.qml +++ b/src/qml/Main.qml @@ -42,7 +42,6 @@ Kirigami.ApplicationWindow { } onConnectionChanged: { - CustomEmojiModel.connection = root.connection; SpaceHierarchyCache.connection = root.connection; NeoChatSettingsView.connection = root.connection; if (ShareHandler.text && root.connection) { @@ -176,7 +175,6 @@ Kirigami.ApplicationWindow { } Component.onCompleted: { - CustomEmojiModel.connection = root.connection; SpaceHierarchyCache.connection = root.connection; RoomSettingsView.window = root; NeoChatSettingsView.window = root; diff --git a/src/qml/QuickReaction.qml b/src/qml/QuickReaction.qml new file mode 100644 index 000000000..ac36c7f48 --- /dev/null +++ b/src/qml/QuickReaction.qml @@ -0,0 +1,37 @@ +// SPDX-FileCopyrightText: 2023 Tobias Fella +// SPDX-License-Identifier: GPL-2.0-or-later + +import QtQuick +import QtQuick.Controls as QQC2 +import QtQuick.Layouts + +import org.kde.kirigami as Kirigami + +import org.kde.neochat + +QQC2.ScrollView { + id: root + + signal chosen(string text) + + QQC2.ScrollBar.horizontal.height: QQC2.ScrollBar.horizontal.visible ? QQC2.ScrollBar.horizontal.implicitHeight : 0 + + implicitHeight: Kirigami.Units.iconSizes.large + QQC2.ScrollBar.horizontal.height + + ListView { + id: quickReactions + Layout.fillWidth: true + + model: ["๐Ÿ‘", "๐Ÿ‘Ž", "๐Ÿ˜„", "๐ŸŽ‰", "๐Ÿ˜•", "โค", "๐Ÿš€", "๐Ÿ‘€"] + + delegate: EmojiDelegate { + height: Kirigami.Units.iconSizes.large + width: height + + text: modelData + onClicked: root.chosen(modelData) + } + + orientation: Qt.Horizontal + } +} diff --git a/src/texthandler.cpp b/src/texthandler.cpp index 3c234b5b4..b1ec6e9a8 100644 --- a/src/texthandler.cpp +++ b/src/texthandler.cpp @@ -18,7 +18,6 @@ #include #include "messagecomponenttype.h" -#include "models/customemojimodel.h" #include "utils.h" using namespace Qt::StringLiterals; @@ -81,7 +80,7 @@ QString TextHandler::handleSendText() switch (m_nextTokenType) { case Text: nextTokenBuffer = escapeHtml(nextTokenBuffer); - nextTokenBuffer = CustomEmojiModel::instance().preprocessText(nextTokenBuffer); + //TODO: nextTokenBuffer = CustomEmojiModel::instance().preprocessText(nextTokenBuffer); break; case TextCode: nextTokenBuffer = escapeHtml(nextTokenBuffer); diff --git a/tools/update-emojis.py b/tools/update-emojis.py deleted file mode 100755 index 0aa35f064..000000000 --- a/tools/update-emojis.py +++ /dev/null @@ -1,102 +0,0 @@ -#!/bin/python - -# SPDX-FileCopyrightText: 2022 Tobias Fella -# SPDX-FileCopyrightText: 2022 Gary Wang -# SPDX-License-Identifier: BSD-2-Clause - -import requests -import re - - -def escape_sequence(unicode_str: str, codepoint_spliter: str) -> str: - codepoints = unicode_str.split(codepoint_spliter) - escape_sequence = "" - for codepoint in codepoints: - escape_sequence += "\\U" + codepoint.rjust(8, "0") - return escape_sequence - - -# GitLab uses the emoji shortnames from Gemojione -# See also: https://docs.gitlab.com/ee/development/fe_guide/emojis.html -gemojione = requests.get('https://raw.githubusercontent.com/bonusly/gemojione/master/config/index.json') -emoji_unicode_shortname_map = {} -gemojione_json = gemojione.json() -for (shortcode, props) in gemojione_json.items(): - escaped_sequence = escape_sequence(props['unicode'], "-") - emoji_unicode_shortname_map[escaped_sequence] = shortcode - - -response = requests.get('https://unicode.org/Public/emoji/14.0/emoji-test.txt') -group = "" -file = open("../src/emojis.h", "w") -# REUSE-IgnoreStart -file.write("// SPDX-FileCopyrightText: None\n") -file.write("// SPDX-License-Identifier: LGPL-2.0-or-later\n") -# REUSE-IgnoreEnd -file.write("// This file is auto-generated. All changes will be lost. See tools/update-emojis.py\n") -file.write("// clang-format off\n") - -tones_file = open("../src/emojitones_data.h", "w") -# REUSE-IgnoreStart -tones_file.write("// SPDX-FileCopyrightText: None\n") -tones_file.write("// SPDX-License-Identifier: LGPL-2.0-or-later\n") -# REUSE-IgnoreEnd -tones_file.write("// This file is auto-generated. All changes will be lost. See tools/update-emojis.py\n") -tones_file.write("// clang-format off\n") - -for line in response.text.split("\n"): - if line.startswith("# group"): - raw_group = line.split(": ")[1] - if raw_group == "Activities": - group = "Activities" - elif raw_group == "Animals & Nature": - group = "Nature" - elif raw_group == "Component": - group = "Component" - elif raw_group == "Flags": - group = "Flags" - elif raw_group == "Food & Drink": - group = "Food" - elif raw_group == "Objects": - group = "Objects" - elif raw_group == "People & Body": - group = "People" - elif raw_group == "Smileys & Emotion": - group = "Smileys" - elif raw_group == "Symbols": - group = "Symbols" - elif raw_group == "Travel & Places": - group = "Travel" - else: - print("Unknown group:" + group) - group = "" - elif line.startswith("#") or line == "": - pass - else: - parts = line.split(";") - first = parts[0].strip() - escaped_sequence = escape_sequence(first, " ") - - x = re.search(".*E[0-9]+.[0-9] ", parts[1]) - description = parts[1].removeprefix(x.group()) - shortcode = description - if "flag:" in description: - description = "Flag of " + description.split(": ")[1] - - if "unqualified" in line or "minimally-qualified" in line: - continue - - is_skin_tone = "skin tone" in description - - if escaped_sequence in emoji_unicode_shortname_map: - shortcode = emoji_unicode_shortname_map[escaped_sequence] - - emoji_args = 'QString::fromUtf8("{0}"), QStringLiteral("{1}"), QStringLiteral("{2}")'.format(escaped_sequence, shortcode, description) - emoji_qvariant = 'QVariant::fromValue(Emoji{' + emoji_args + '})' - - if is_skin_tone: - tones_file.write("{QStringLiteral(\"" + description.split(":")[0] + "\"), " + emoji_qvariant + "},\n") - continue - file.write("_emojis[" + group + "].append(" + emoji_qvariant + ");\n") -file.close() -tones_file.close()