From a40adb903af21802abbf2e47877c44e886847be0 Mon Sep 17 00:00:00 2001 From: oogm Date: Fri, 26 Mar 2021 17:21:02 +0100 Subject: [PATCH] Update emoji import script to ease execution, output smaller .json files and capitalize emoji names --- tools/import_emojis.py | 25 ++++++++++++++++--- .../main/res/raw/emoji_picker_datasource.json | 2 +- 2 files changed, 22 insertions(+), 5 deletions(-) mode change 100644 => 100755 tools/import_emojis.py diff --git a/tools/import_emojis.py b/tools/import_emojis.py old mode 100644 new mode 100755 index 6f204c23f2..f5638175a9 --- a/tools/import_emojis.py +++ b/tools/import_emojis.py @@ -1,10 +1,15 @@ +#!/usr/bin/env python3 from collections import OrderedDict import requests import json import re +import os from bs4 import BeautifulSoup +# A list of words to not capitalize in emoji-names +capitalization_exclude = {'with', 'a', 'at', 'of', 'for', 'and', 'over', 'the', 'off', 'on', 'out', 'in', 'but', 'or'} + # Create skeleton of the final json file as a python dictionary: emoji_picker_datasource = { "compressed": True, @@ -17,6 +22,7 @@ emoji_picker_datasource_emojis = emoji_picker_datasource["emojis"] # Get official emoji list from unicode.org (Emoji List, v13.1 at time of writing) +print("Fetching emoji list from Unicode.org...",) req = requests.get("https://unicode.org/emoji/charts/emoji-list.html") soup = BeautifulSoup(req.content, 'html.parser') @@ -24,6 +30,7 @@ soup = BeautifulSoup(req.content, 'html.parser') table = soup.body.table # Go over all rows +print("Extracting emojis...") for row in table.find_all('tr'): # Add "bigheads" rows to categories if 'bighead' in next(row.children)['class']: @@ -55,6 +62,11 @@ for row in table.find_all('tr'): emoji_id = emoji_id.strip() # Remove leading/trailing whitespaces emoji_id = emoji_id.replace(' ', '-') + # Capitalize name according to the same rules as the previous emoji_picker_datasource.json + # - Words are separated by any non-word character (\W), e.g. space, comma, parentheses, dots, etc. + # - Words are capitalized if they are either at the beginning of the name OR not in capitalization_exclude (extracted from the previous datasource, too) + emoji_name_cap = "".join([w.capitalize() if i == 0 or w not in capitalization_exclude else w for i, w in enumerate(re.split('(\W)', emoji_name))]) + # Extract emoji unicode-codepoint emoji_code_raw = code_element.text emoji_code_list = emoji_code_raw.split(" ") @@ -69,7 +81,7 @@ for row in table.find_all('tr'): # Add the emoji itself to the "emojis" dict emoji_picker_datasource_emojis[emoji_id] = { - "a": emoji_name, + "a": emoji_name_cap, "b": emoji_code, "j": emoji_keywords } @@ -78,10 +90,12 @@ for row in table.find_all('tr'): # There is no official specification of keywords beyond that, but muan/emojilib maintains a well maintained and # established repository with additional keywords. We extend our list with the keywords from there. # At the time of writing it had additional keyword information for all emojis except a few from the newest unicode 13.1. +print("Fetching additional keywords from Emojilib...") req = requests.get("https://raw.githubusercontent.com/muan/emojilib/main/dist/emoji-en-US.json") emojilib_data = json.loads(req.content) # We just go over all the official emojis from unicode, and add the keywords there +print("Adding keywords to emojis...") for emoji in emoji_picker_datasource_emojis: emoji_name = emoji_picker_datasource_emojis[emoji]["a"] emoji_code = emoji_picker_datasource_emojis[emoji]["b"] @@ -95,7 +109,7 @@ for emoji in emoji_picker_datasource_emojis: elif emoji_unicode+chr(0xfe0f) in emojilib_data: emoji_additional_keywords = emojilib_data[emoji_unicode+chr(0xfe0f)] else: - print("No additional keywords for", emoji_unicode, emoji_picker_datasource_emojis[emoji]) + print("* No additional keywords for", emoji_unicode, emoji_picker_datasource_emojis[emoji]) continue # If additional keywords exist, add them to emoji_picker_datasource_emojis @@ -110,5 +124,8 @@ for emoji in emoji_picker_datasource_emojis: emoji_picker_datasource['categories'] = [x for x in emoji_picker_datasource['categories'] if x['id'] != 'component'] # Write result to file (overwrite previous), without escaping unicode characters -with open("../vector/src/main/res/raw/emoji_picker_datasource.json", "w") as outfile: - json.dump(emoji_picker_datasource, outfile, ensure_ascii=False) +print("Writing emoji_picker_datasource.json...") +scripts_dir = os.path.dirname(os.path.abspath(__file__)) +with open(os.path.join(scripts_dir, "../vector/src/main/res/raw/emoji_picker_datasource.json"), "w") as outfile: + json.dump(emoji_picker_datasource, outfile, ensure_ascii=False, separators=(',', ':')) +print("Done.") diff --git a/vector/src/main/res/raw/emoji_picker_datasource.json b/vector/src/main/res/raw/emoji_picker_datasource.json index e0314e9a77..cc676a4dd0 100644 --- a/vector/src/main/res/raw/emoji_picker_datasource.json +++ b/vector/src/main/res/raw/emoji_picker_datasource.json @@ -1 +1 @@ -{"compressed": true, "categories": [{"id": "smileys_&_emotion", "name": "Smileys & Emotion", "emojis": ["grinning-face", "grinning-face-with-big-eyes", "grinning-face-with-smiling-eyes", "beaming-face-with-smiling-eyes", "grinning-squinting-face", "grinning-face-with-sweat", "rolling-on-the-floor-laughing", "face-with-tears-of-joy", "slightly-smiling-face", "upsidedown-face", "winking-face", "smiling-face-with-smiling-eyes", "smiling-face-with-halo", "smiling-face-with-hearts", "smiling-face-with-hearteyes", "starstruck", "face-blowing-a-kiss", "kissing-face", "smiling-face", "kissing-face-with-closed-eyes", "kissing-face-with-smiling-eyes", "smiling-face-with-tear", "face-savoring-food", "face-with-tongue", "winking-face-with-tongue", "zany-face", "squinting-face-with-tongue", "moneymouth-face", "hugging-face", "face-with-hand-over-mouth", "shushing-face", "thinking-face", "zippermouth-face", "face-with-raised-eyebrow", "neutral-face", "expressionless-face", "face-without-mouth", "face-in-clouds", "smirking-face", "unamused-face", "face-with-rolling-eyes", "grimacing-face", "face-exhaling", "lying-face", "relieved-face", "pensive-face", "sleepy-face", "drooling-face", "sleeping-face", "face-with-medical-mask", "face-with-thermometer", "face-with-headbandage", "nauseated-face", "face-vomiting", "sneezing-face", "hot-face", "cold-face", "woozy-face", "knockedout-face", "face-with-spiral-eyes", "exploding-head", "cowboy-hat-face", "partying-face", "disguised-face", "smiling-face-with-sunglasses", "nerd-face", "face-with-monocle", "confused-face", "worried-face", "slightly-frowning-face", "frowning-face", "face-with-open-mouth", "hushed-face", "astonished-face", "flushed-face", "pleading-face", "frowning-face-with-open-mouth", "anguished-face", "fearful-face", "anxious-face-with-sweat", "sad-but-relieved-face", "crying-face", "loudly-crying-face", "face-screaming-in-fear", "confounded-face", "persevering-face", "disappointed-face", "downcast-face-with-sweat", "weary-face", "tired-face", "yawning-face", "face-with-steam-from-nose", "pouting-face", "angry-face", "face-with-symbols-on-mouth", "smiling-face-with-horns", "angry-face-with-horns", "skull", "skull-and-crossbones", "pile-of-poo", "clown-face", "ogre", "goblin", "ghost", "alien", "alien-monster", "robot", "grinning-cat", "grinning-cat-with-smiling-eyes", "cat-with-tears-of-joy", "smiling-cat-with-hearteyes", "cat-with-wry-smile", "kissing-cat", "weary-cat", "crying-cat", "pouting-cat", "seenoevil-monkey", "hearnoevil-monkey", "speaknoevil-monkey", "kiss-mark", "love-letter", "heart-with-arrow", "heart-with-ribbon", "sparkling-heart", "growing-heart", "beating-heart", "revolving-hearts", "two-hearts", "heart-decoration", "heart-exclamation", "broken-heart", "heart-on-fire", "mending-heart", "red-heart", "orange-heart", "yellow-heart", "green-heart", "blue-heart", "purple-heart", "brown-heart", "black-heart", "white-heart", "hundred-points", "anger-symbol", "collision", "dizzy", "sweat-droplets", "dashing-away", "hole", "bomb", "speech-balloon", "eye-in-speech-bubble", "left-speech-bubble", "right-anger-bubble", "thought-balloon", "zzz"]}, {"id": "people_&_body", "name": "People & Body", "emojis": ["waving-hand", "raised-back-of-hand", "hand-with-fingers-splayed", "raised-hand", "vulcan-salute", "ok-hand", "pinched-fingers", "pinching-hand", "victory-hand", "crossed-fingers", "loveyou-gesture", "sign-of-the-horns", "call-me-hand", "backhand-index-pointing-left", "backhand-index-pointing-right", "backhand-index-pointing-up", "middle-finger", "backhand-index-pointing-down", "index-pointing-up", "thumbs-up", "thumbs-down", "raised-fist", "oncoming-fist", "leftfacing-fist", "rightfacing-fist", "clapping-hands", "raising-hands", "open-hands", "palms-up-together", "handshake", "folded-hands", "writing-hand", "nail-polish", "selfie", "flexed-biceps", "mechanical-arm", "mechanical-leg", "leg", "foot", "ear", "ear-with-hearing-aid", "nose", "brain", "anatomical-heart", "lungs", "tooth", "bone", "eyes", "eye", "tongue", "mouth", "baby", "child", "boy", "girl", "person", "person-blond-hair", "man", "person-beard", "man-beard", "woman-beard", "man-red-hair", "man-curly-hair", "man-white-hair", "man-bald", "woman", "woman-red-hair", "person-red-hair", "woman-curly-hair", "person-curly-hair", "woman-white-hair", "person-white-hair", "woman-bald", "person-bald", "woman-blond-hair", "man-blond-hair", "older-person", "old-man", "old-woman", "person-frowning", "man-frowning", "woman-frowning", "person-pouting", "man-pouting", "woman-pouting", "person-gesturing-no", "man-gesturing-no", "woman-gesturing-no", "person-gesturing-ok", "man-gesturing-ok", "woman-gesturing-ok", "person-tipping-hand", "man-tipping-hand", "woman-tipping-hand", "person-raising-hand", "man-raising-hand", "woman-raising-hand", "deaf-person", "deaf-man", "deaf-woman", "person-bowing", "man-bowing", "woman-bowing", "person-facepalming", "man-facepalming", "woman-facepalming", "person-shrugging", "man-shrugging", "woman-shrugging", "health-worker", "man-health-worker", "woman-health-worker", "student", "man-student", "woman-student", "teacher", "man-teacher", "woman-teacher", "judge", "man-judge", "woman-judge", "farmer", "man-farmer", "woman-farmer", "cook", "man-cook", "woman-cook", "mechanic", "man-mechanic", "woman-mechanic", "factory-worker", "man-factory-worker", "woman-factory-worker", "office-worker", "man-office-worker", "woman-office-worker", "scientist", "man-scientist", "woman-scientist", "technologist", "man-technologist", "woman-technologist", "singer", "man-singer", "woman-singer", "artist", "man-artist", "woman-artist", "pilot", "man-pilot", "woman-pilot", "astronaut", "man-astronaut", "woman-astronaut", "firefighter", "man-firefighter", "woman-firefighter", "police-officer", "man-police-officer", "woman-police-officer", "detective", "man-detective", "woman-detective", "guard", "man-guard", "woman-guard", "ninja", "construction-worker", "man-construction-worker", "woman-construction-worker", "prince", "princess", "person-wearing-turban", "man-wearing-turban", "woman-wearing-turban", "person-with-skullcap", "woman-with-headscarf", "person-in-tuxedo", "man-in-tuxedo", "woman-in-tuxedo", "person-with-veil", "man-with-veil", "woman-with-veil", "pregnant-woman", "breastfeeding", "woman-feeding-baby", "man-feeding-baby", "person-feeding-baby", "baby-angel", "santa-claus", "mrs-claus", "mx-claus", "superhero", "man-superhero", "woman-superhero", "supervillain", "man-supervillain", "woman-supervillain", "mage", "man-mage", "woman-mage", "fairy", "man-fairy", "woman-fairy", "vampire", "man-vampire", "woman-vampire", "merperson", "merman", "mermaid", "elf", "man-elf", "woman-elf", "genie", "man-genie", "woman-genie", "zombie", "man-zombie", "woman-zombie", "person-getting-massage", "man-getting-massage", "woman-getting-massage", "person-getting-haircut", "man-getting-haircut", "woman-getting-haircut", "person-walking", "man-walking", "woman-walking", "person-standing", "man-standing", "woman-standing", "person-kneeling", "man-kneeling", "woman-kneeling", "person-with-white-cane", "man-with-white-cane", "woman-with-white-cane", "person-in-motorized-wheelchair", "man-in-motorized-wheelchair", "woman-in-motorized-wheelchair", "person-in-manual-wheelchair", "man-in-manual-wheelchair", "woman-in-manual-wheelchair", "person-running", "man-running", "woman-running", "woman-dancing", "man-dancing", "person-in-suit-levitating", "people-with-bunny-ears", "men-with-bunny-ears", "women-with-bunny-ears", "person-in-steamy-room", "man-in-steamy-room", "woman-in-steamy-room", "person-climbing", "man-climbing", "woman-climbing", "person-fencing", "horse-racing", "skier", "snowboarder", "person-golfing", "man-golfing", "woman-golfing", "person-surfing", "man-surfing", "woman-surfing", "person-rowing-boat", "man-rowing-boat", "woman-rowing-boat", "person-swimming", "man-swimming", "woman-swimming", "person-bouncing-ball", "man-bouncing-ball", "woman-bouncing-ball", "person-lifting-weights", "man-lifting-weights", "woman-lifting-weights", "person-biking", "man-biking", "woman-biking", "person-mountain-biking", "man-mountain-biking", "woman-mountain-biking", "person-cartwheeling", "man-cartwheeling", "woman-cartwheeling", "people-wrestling", "men-wrestling", "women-wrestling", "person-playing-water-polo", "man-playing-water-polo", "woman-playing-water-polo", "person-playing-handball", "man-playing-handball", "woman-playing-handball", "person-juggling", "man-juggling", "woman-juggling", "person-in-lotus-position", "man-in-lotus-position", "woman-in-lotus-position", "person-taking-bath", "person-in-bed", "people-holding-hands", "women-holding-hands", "woman-and-man-holding-hands", "men-holding-hands", "kiss", "kiss-woman-man", "kiss-man-man", "kiss-woman-woman", "couple-with-heart", "couple-with-heart-woman-man", "couple-with-heart-man-man", "couple-with-heart-woman-woman", "family", "family-man-woman-boy", "family-man-woman-girl", "family-man-woman-girl-boy", "family-man-woman-boy-boy", "family-man-woman-girl-girl", "family-man-man-boy", "family-man-man-girl", "family-man-man-girl-boy", "family-man-man-boy-boy", "family-man-man-girl-girl", "family-woman-woman-boy", "family-woman-woman-girl", "family-woman-woman-girl-boy", "family-woman-woman-boy-boy", "family-woman-woman-girl-girl", "family-man-boy", "family-man-boy-boy", "family-man-girl", "family-man-girl-boy", "family-man-girl-girl", "family-woman-boy", "family-woman-boy-boy", "family-woman-girl", "family-woman-girl-boy", "family-woman-girl-girl", "speaking-head", "bust-in-silhouette", "busts-in-silhouette", "people-hugging", "footprints"]}, {"id": "animals_&_nature", "name": "Animals & Nature", "emojis": ["monkey-face", "monkey", "gorilla", "orangutan", "dog-face", "dog", "guide-dog", "service-dog", "poodle", "wolf", "fox", "raccoon", "cat-face", "cat", "black-cat", "lion", "tiger-face", "tiger", "leopard", "horse-face", "horse", "unicorn", "zebra", "deer", "bison", "cow-face", "ox", "water-buffalo", "cow", "pig-face", "pig", "boar", "pig-nose", "ram", "ewe", "goat", "camel", "twohump-camel", "llama", "giraffe", "elephant", "mammoth", "rhinoceros", "hippopotamus", "mouse-face", "mouse", "rat", "hamster", "rabbit-face", "rabbit", "chipmunk", "beaver", "hedgehog", "bat", "bear", "polar-bear", "koala", "panda", "sloth", "otter", "skunk", "kangaroo", "badger", "paw-prints", "turkey", "chicken", "rooster", "hatching-chick", "baby-chick", "frontfacing-baby-chick", "bird", "penguin", "dove", "eagle", "duck", "swan", "owl", "dodo", "feather", "flamingo", "peacock", "parrot", "frog", "crocodile", "turtle", "lizard", "snake", "dragon-face", "dragon", "sauropod", "trex", "spouting-whale", "whale", "dolphin", "seal", "fish", "tropical-fish", "blowfish", "shark", "octopus", "spiral-shell", "snail", "butterfly", "bug", "ant", "honeybee", "beetle", "lady-beetle", "cricket", "cockroach", "spider", "spider-web", "scorpion", "mosquito", "fly", "worm", "microbe", "bouquet", "cherry-blossom", "white-flower", "rosette", "rose", "wilted-flower", "hibiscus", "sunflower", "blossom", "tulip", "seedling", "potted-plant", "evergreen-tree", "deciduous-tree", "palm-tree", "cactus", "sheaf-of-rice", "herb", "shamrock", "four-leaf-clover", "maple-leaf", "fallen-leaf", "leaf-fluttering-in-wind"]}, {"id": "food_&_drink", "name": "Food & Drink", "emojis": ["grapes", "melon", "watermelon", "tangerine", "lemon", "banana", "pineapple", "mango", "red-apple", "green-apple", "pear", "peach", "cherries", "strawberry", "blueberries", "kiwi-fruit", "tomato", "olive", "coconut", "avocado", "eggplant", "potato", "carrot", "ear-of-corn", "hot-pepper", "bell-pepper", "cucumber", "leafy-green", "broccoli", "garlic", "onion", "mushroom", "peanuts", "chestnut", "bread", "croissant", "baguette-bread", "flatbread", "pretzel", "bagel", "pancakes", "waffle", "cheese-wedge", "meat-on-bone", "poultry-leg", "cut-of-meat", "bacon", "hamburger", "french-fries", "pizza", "hot-dog", "sandwich", "taco", "burrito", "tamale", "stuffed-flatbread", "falafel", "egg", "cooking", "shallow-pan-of-food", "pot-of-food", "fondue", "bowl-with-spoon", "green-salad", "popcorn", "butter", "salt", "canned-food", "bento-box", "rice-cracker", "rice-ball", "cooked-rice", "curry-rice", "steaming-bowl", "spaghetti", "roasted-sweet-potato", "oden", "sushi", "fried-shrimp", "fish-cake-with-swirl", "moon-cake", "dango", "dumpling", "fortune-cookie", "takeout-box", "crab", "lobster", "shrimp", "squid", "oyster", "soft-ice-cream", "shaved-ice", "ice-cream", "doughnut", "cookie", "birthday-cake", "shortcake", "cupcake", "pie", "chocolate-bar", "candy", "lollipop", "custard", "honey-pot", "baby-bottle", "glass-of-milk", "hot-beverage", "teapot", "teacup-without-handle", "sake", "bottle-with-popping-cork", "wine-glass", "cocktail-glass", "tropical-drink", "beer-mug", "clinking-beer-mugs", "clinking-glasses", "tumbler-glass", "cup-with-straw", "bubble-tea", "beverage-box", "mate", "ice", "chopsticks", "fork-and-knife-with-plate", "fork-and-knife", "spoon", "kitchen-knife", "amphora"]}, {"id": "travel_&_places", "name": "Travel & Places", "emojis": ["globe-showing-europeafrica", "globe-showing-americas", "globe-showing-asiaaustralia", "globe-with-meridians", "world-map", "map-of-japan", "compass", "snowcapped-mountain", "mountain", "volcano", "mount-fuji", "camping", "beach-with-umbrella", "desert", "desert-island", "national-park", "stadium", "classical-building", "building-construction", "brick", "rock", "wood", "hut", "houses", "derelict-house", "house", "house-with-garden", "office-building", "japanese-post-office", "post-office", "hospital", "bank", "hotel", "love-hotel", "convenience-store", "school", "department-store", "factory", "japanese-castle", "castle", "wedding", "tokyo-tower", "statue-of-liberty", "church", "mosque", "hindu-temple", "synagogue", "shinto-shrine", "kaaba", "fountain", "tent", "foggy", "night-with-stars", "cityscape", "sunrise-over-mountains", "sunrise", "cityscape-at-dusk", "sunset", "bridge-at-night", "hot-springs", "carousel-horse", "ferris-wheel", "roller-coaster", "barber-pole", "circus-tent", "locomotive", "railway-car", "highspeed-train", "bullet-train", "train", "metro", "light-rail", "station", "tram", "monorail", "mountain-railway", "tram-car", "bus", "oncoming-bus", "trolleybus", "minibus", "ambulance", "fire-engine", "police-car", "oncoming-police-car", "taxi", "oncoming-taxi", "automobile", "oncoming-automobile", "sport-utility-vehicle", "pickup-truck", "delivery-truck", "articulated-lorry", "tractor", "racing-car", "motorcycle", "motor-scooter", "manual-wheelchair", "motorized-wheelchair", "auto-rickshaw", "bicycle", "kick-scooter", "skateboard", "roller-skate", "bus-stop", "motorway", "railway-track", "oil-drum", "fuel-pump", "police-car-light", "horizontal-traffic-light", "vertical-traffic-light", "stop-sign", "construction", "anchor", "sailboat", "canoe", "speedboat", "passenger-ship", "ferry", "motor-boat", "ship", "airplane", "small-airplane", "airplane-departure", "airplane-arrival", "parachute", "seat", "helicopter", "suspension-railway", "mountain-cableway", "aerial-tramway", "satellite", "rocket", "flying-saucer", "bellhop-bell", "luggage", "hourglass-done", "hourglass-not-done", "watch", "alarm-clock", "stopwatch", "timer-clock", "mantelpiece-clock", "twelve-oclock", "twelvethirty", "one-oclock", "onethirty", "two-oclock", "twothirty", "three-oclock", "threethirty", "four-oclock", "fourthirty", "five-oclock", "fivethirty", "six-oclock", "sixthirty", "seven-oclock", "seventhirty", "eight-oclock", "eightthirty", "nine-oclock", "ninethirty", "ten-oclock", "tenthirty", "eleven-oclock", "eleventhirty", "new-moon", "waxing-crescent-moon", "first-quarter-moon", "waxing-gibbous-moon", "full-moon", "waning-gibbous-moon", "last-quarter-moon", "waning-crescent-moon", "crescent-moon", "new-moon-face", "first-quarter-moon-face", "last-quarter-moon-face", "thermometer", "sun", "full-moon-face", "sun-with-face", "ringed-planet", "star", "glowing-star", "shooting-star", "milky-way", "cloud", "sun-behind-cloud", "cloud-with-lightning-and-rain", "sun-behind-small-cloud", "sun-behind-large-cloud", "sun-behind-rain-cloud", "cloud-with-rain", "cloud-with-snow", "cloud-with-lightning", "tornado", "fog", "wind-face", "cyclone", "rainbow", "closed-umbrella", "umbrella", "umbrella-with-rain-drops", "umbrella-on-ground", "high-voltage", "snowflake", "snowman", "snowman-without-snow", "comet", "fire", "droplet", "water-wave"]}, {"id": "activities", "name": "Activities", "emojis": ["jackolantern", "christmas-tree", "fireworks", "sparkler", "firecracker", "sparkles", "balloon", "party-popper", "confetti-ball", "tanabata-tree", "pine-decoration", "japanese-dolls", "carp-streamer", "wind-chime", "moon-viewing-ceremony", "red-envelope", "ribbon", "wrapped-gift", "reminder-ribbon", "admission-tickets", "ticket", "military-medal", "trophy", "sports-medal", "1st-place-medal", "2nd-place-medal", "3rd-place-medal", "soccer-ball", "baseball", "softball", "basketball", "volleyball", "american-football", "rugby-football", "tennis", "flying-disc", "bowling", "cricket-game", "field-hockey", "ice-hockey", "lacrosse", "ping-pong", "badminton", "boxing-glove", "martial-arts-uniform", "goal-net", "flag-in-hole", "ice-skate", "fishing-pole", "diving-mask", "running-shirt", "skis", "sled", "curling-stone", "bullseye", "yoyo", "kite", "pool-8-ball", "crystal-ball", "magic-wand", "nazar-amulet", "video-game", "joystick", "slot-machine", "game-die", "puzzle-piece", "teddy-bear", "piata", "nesting-dolls", "spade-suit", "heart-suit", "diamond-suit", "club-suit", "chess-pawn", "joker", "mahjong-red-dragon", "flower-playing-cards", "performing-arts", "framed-picture", "artist-palette", "thread", "sewing-needle", "yarn", "knot"]}, {"id": "objects", "name": "Objects", "emojis": ["glasses", "sunglasses", "goggles", "lab-coat", "safety-vest", "necktie", "tshirt", "jeans", "scarf", "gloves", "coat", "socks", "dress", "kimono", "sari", "onepiece-swimsuit", "briefs", "shorts", "bikini", "womans-clothes", "purse", "handbag", "clutch-bag", "shopping-bags", "backpack", "thong-sandal", "mans-shoe", "running-shoe", "hiking-boot", "flat-shoe", "highheeled-shoe", "womans-sandal", "ballet-shoes", "womans-boot", "crown", "womans-hat", "top-hat", "graduation-cap", "billed-cap", "military-helmet", "rescue-workers-helmet", "prayer-beads", "lipstick", "ring", "gem-stone", "muted-speaker", "speaker-low-volume", "speaker-medium-volume", "speaker-high-volume", "loudspeaker", "megaphone", "postal-horn", "bell", "bell-with-slash", "musical-score", "musical-note", "musical-notes", "studio-microphone", "level-slider", "control-knobs", "microphone", "headphone", "radio", "saxophone", "accordion", "guitar", "musical-keyboard", "trumpet", "violin", "banjo", "drum", "long-drum", "mobile-phone", "mobile-phone-with-arrow", "telephone", "telephone-receiver", "pager", "fax-machine", "battery", "electric-plug", "laptop", "desktop-computer", "printer", "keyboard", "computer-mouse", "trackball", "computer-disk", "floppy-disk", "optical-disk", "dvd", "abacus", "movie-camera", "film-frames", "film-projector", "clapper-board", "television", "camera", "camera-with-flash", "video-camera", "videocassette", "magnifying-glass-tilted-left", "magnifying-glass-tilted-right", "candle", "light-bulb", "flashlight", "red-paper-lantern", "diya-lamp", "notebook-with-decorative-cover", "closed-book", "open-book", "green-book", "blue-book", "orange-book", "books", "notebook", "ledger", "page-with-curl", "scroll", "page-facing-up", "newspaper", "rolledup-newspaper", "bookmark-tabs", "bookmark", "label", "money-bag", "coin", "yen-banknote", "dollar-banknote", "euro-banknote", "pound-banknote", "money-with-wings", "credit-card", "receipt", "chart-increasing-with-yen", "envelope", "email", "incoming-envelope", "envelope-with-arrow", "outbox-tray", "inbox-tray", "package", "closed-mailbox-with-raised-flag", "closed-mailbox-with-lowered-flag", "open-mailbox-with-raised-flag", "open-mailbox-with-lowered-flag", "postbox", "ballot-box-with-ballot", "pencil", "black-nib", "fountain-pen", "pen", "paintbrush", "crayon", "memo", "briefcase", "file-folder", "open-file-folder", "card-index-dividers", "calendar", "tearoff-calendar", "spiral-notepad", "spiral-calendar", "card-index", "chart-increasing", "chart-decreasing", "bar-chart", "clipboard", "pushpin", "round-pushpin", "paperclip", "linked-paperclips", "straight-ruler", "triangular-ruler", "scissors", "card-file-box", "file-cabinet", "wastebasket", "locked", "unlocked", "locked-with-pen", "locked-with-key", "key", "old-key", "hammer", "axe", "pick", "hammer-and-pick", "hammer-and-wrench", "dagger", "crossed-swords", "water-pistol", "boomerang", "bow-and-arrow", "shield", "carpentry-saw", "wrench", "screwdriver", "nut-and-bolt", "gear", "clamp", "balance-scale", "white-cane", "link", "chains", "hook", "toolbox", "magnet", "ladder", "alembic", "test-tube", "petri-dish", "dna", "microscope", "telescope", "satellite-antenna", "syringe", "drop-of-blood", "pill", "adhesive-bandage", "stethoscope", "door", "elevator", "mirror", "window", "bed", "couch-and-lamp", "chair", "toilet", "plunger", "shower", "bathtub", "mouse-trap", "razor", "lotion-bottle", "safety-pin", "broom", "basket", "roll-of-paper", "bucket", "soap", "toothbrush", "sponge", "fire-extinguisher", "shopping-cart", "cigarette", "coffin", "headstone", "funeral-urn", "moai", "placard"]}, {"id": "symbols", "name": "Symbols", "emojis": ["atm-sign", "litter-in-bin-sign", "potable-water", "wheelchair-symbol", "mens-room", "womens-room", "restroom", "baby-symbol", "water-closet", "passport-control", "customs", "baggage-claim", "left-luggage", "warning", "children-crossing", "no-entry", "prohibited", "no-bicycles", "no-smoking", "no-littering", "nonpotable-water", "no-pedestrians", "no-mobile-phones", "no-one-under-eighteen", "radioactive", "biohazard", "up-arrow", "upright-arrow", "right-arrow", "downright-arrow", "down-arrow", "downleft-arrow", "left-arrow", "upleft-arrow", "updown-arrow", "leftright-arrow", "right-arrow-curving-left", "left-arrow-curving-right", "right-arrow-curving-up", "right-arrow-curving-down", "clockwise-vertical-arrows", "counterclockwise-arrows-button", "back-arrow", "end-arrow", "on-arrow", "soon-arrow", "top-arrow", "place-of-worship", "atom-symbol", "om", "star-of-david", "wheel-of-dharma", "yin-yang", "latin-cross", "orthodox-cross", "star-and-crescent", "peace-symbol", "menorah", "dotted-sixpointed-star", "aries", "taurus", "gemini", "cancer", "leo", "virgo", "libra", "scorpio", "sagittarius", "capricorn", "aquarius", "pisces", "ophiuchus", "shuffle-tracks-button", "repeat-button", "repeat-single-button", "play-button", "fastforward-button", "next-track-button", "play-or-pause-button", "reverse-button", "fast-reverse-button", "last-track-button", "upwards-button", "fast-up-button", "downwards-button", "fast-down-button", "pause-button", "stop-button", "record-button", "eject-button", "cinema", "dim-button", "bright-button", "antenna-bars", "vibration-mode", "mobile-phone-off", "female-sign", "male-sign", "transgender-symbol", "multiply", "plus", "minus", "divide", "infinity", "double-exclamation-mark", "exclamation-question-mark", "red-question-mark", "white-question-mark", "white-exclamation-mark", "red-exclamation-mark", "wavy-dash", "currency-exchange", "heavy-dollar-sign", "medical-symbol", "recycling-symbol", "fleurdelis", "trident-emblem", "name-badge", "japanese-symbol-for-beginner", "hollow-red-circle", "check-mark-button", "check-box-with-check", "check-mark", "cross-mark", "cross-mark-button", "curly-loop", "double-curly-loop", "part-alternation-mark", "eightspoked-asterisk", "eightpointed-star", "sparkle", "copyright", "registered", "trade-mark", "keycap", "keycap", "keycap-0", "keycap-1", "keycap-2", "keycap-3", "keycap-4", "keycap-5", "keycap-6", "keycap-7", "keycap-8", "keycap-9", "keycap-10", "input-latin-uppercase", "input-latin-lowercase", "input-numbers", "input-symbols", "input-latin-letters", "a-button-blood-type", "ab-button-blood-type", "b-button-blood-type", "cl-button", "cool-button", "free-button", "information", "id-button", "circled-m", "new-button", "ng-button", "o-button-blood-type", "ok-button", "p-button", "sos-button", "up-button", "vs-button", "japanese-here-button", "japanese-service-charge-button", "japanese-monthly-amount-button", "japanese-not-free-of-charge-button", "japanese-reserved-button", "japanese-bargain-button", "japanese-discount-button", "japanese-free-of-charge-button", "japanese-prohibited-button", "japanese-acceptable-button", "japanese-application-button", "japanese-passing-grade-button", "japanese-vacancy-button", "japanese-congratulations-button", "japanese-secret-button", "japanese-open-for-business-button", "japanese-no-vacancy-button", "red-circle", "orange-circle", "yellow-circle", "green-circle", "blue-circle", "purple-circle", "brown-circle", "black-circle", "white-circle", "red-square", "orange-square", "yellow-square", "green-square", "blue-square", "purple-square", "brown-square", "black-large-square", "white-large-square", "black-medium-square", "white-medium-square", "black-mediumsmall-square", "white-mediumsmall-square", "black-small-square", "white-small-square", "large-orange-diamond", "large-blue-diamond", "small-orange-diamond", "small-blue-diamond", "red-triangle-pointed-up", "red-triangle-pointed-down", "diamond-with-a-dot", "radio-button", "white-square-button", "black-square-button"]}, {"id": "flags", "name": "Flags", "emojis": ["chequered-flag", "triangular-flag", "crossed-flags", "black-flag", "white-flag", "rainbow-flag", "transgender-flag", "pirate-flag", "flag-ascension-island", "flag-andorra", "flag-united-arab-emirates", "flag-afghanistan", "flag-antigua--barbuda", "flag-anguilla", "flag-albania", "flag-armenia", "flag-angola", "flag-antarctica", "flag-argentina", "flag-american-samoa", "flag-austria", "flag-australia", "flag-aruba", "flag-land-islands", "flag-azerbaijan", "flag-bosnia--herzegovina", "flag-barbados", "flag-bangladesh", "flag-belgium", "flag-burkina-faso", "flag-bulgaria", "flag-bahrain", "flag-burundi", "flag-benin", "flag-st-barthlemy", "flag-bermuda", "flag-brunei", "flag-bolivia", "flag-caribbean-netherlands", "flag-brazil", "flag-bahamas", "flag-bhutan", "flag-bouvet-island", "flag-botswana", "flag-belarus", "flag-belize", "flag-canada", "flag-cocos-keeling-islands", "flag-congo--kinshasa", "flag-central-african-republic", "flag-congo--brazzaville", "flag-switzerland", "flag-cte-divoire", "flag-cook-islands", "flag-chile", "flag-cameroon", "flag-china", "flag-colombia", "flag-clipperton-island", "flag-costa-rica", "flag-cuba", "flag-cape-verde", "flag-curaao", "flag-christmas-island", "flag-cyprus", "flag-czechia", "flag-germany", "flag-diego-garcia", "flag-djibouti", "flag-denmark", "flag-dominica", "flag-dominican-republic", "flag-algeria", "flag-ceuta--melilla", "flag-ecuador", "flag-estonia", "flag-egypt", "flag-western-sahara", "flag-eritrea", "flag-spain", "flag-ethiopia", "flag-european-union", "flag-finland", "flag-fiji", "flag-falkland-islands", "flag-micronesia", "flag-faroe-islands", "flag-france", "flag-gabon", "flag-united-kingdom", "flag-grenada", "flag-georgia", "flag-french-guiana", "flag-guernsey", "flag-ghana", "flag-gibraltar", "flag-greenland", "flag-gambia", "flag-guinea", "flag-guadeloupe", "flag-equatorial-guinea", "flag-greece", "flag-south-georgia--south-sandwich-islands", "flag-guatemala", "flag-guam", "flag-guineabissau", "flag-guyana", "flag-hong-kong-sar-china", "flag-heard--mcdonald-islands", "flag-honduras", "flag-croatia", "flag-haiti", "flag-hungary", "flag-canary-islands", "flag-indonesia", "flag-ireland", "flag-israel", "flag-isle-of-man", "flag-india", "flag-british-indian-ocean-territory", "flag-iraq", "flag-iran", "flag-iceland", "flag-italy", "flag-jersey", "flag-jamaica", "flag-jordan", "flag-japan", "flag-kenya", "flag-kyrgyzstan", "flag-cambodia", "flag-kiribati", "flag-comoros", "flag-st-kitts--nevis", "flag-north-korea", "flag-south-korea", "flag-kuwait", "flag-cayman-islands", "flag-kazakhstan", "flag-laos", "flag-lebanon", "flag-st-lucia", "flag-liechtenstein", "flag-sri-lanka", "flag-liberia", "flag-lesotho", "flag-lithuania", "flag-luxembourg", "flag-latvia", "flag-libya", "flag-morocco", "flag-monaco", "flag-moldova", "flag-montenegro", "flag-st-martin", "flag-madagascar", "flag-marshall-islands", "flag-north-macedonia", "flag-mali", "flag-myanmar-burma", "flag-mongolia", "flag-macao-sar-china", "flag-northern-mariana-islands", "flag-martinique", "flag-mauritania", "flag-montserrat", "flag-malta", "flag-mauritius", "flag-maldives", "flag-malawi", "flag-mexico", "flag-malaysia", "flag-mozambique", "flag-namibia", "flag-new-caledonia", "flag-niger", "flag-norfolk-island", "flag-nigeria", "flag-nicaragua", "flag-netherlands", "flag-norway", "flag-nepal", "flag-nauru", "flag-niue", "flag-new-zealand", "flag-oman", "flag-panama", "flag-peru", "flag-french-polynesia", "flag-papua-new-guinea", "flag-philippines", "flag-pakistan", "flag-poland", "flag-st-pierre--miquelon", "flag-pitcairn-islands", "flag-puerto-rico", "flag-palestinian-territories", "flag-portugal", "flag-palau", "flag-paraguay", "flag-qatar", "flag-runion", "flag-romania", "flag-serbia", "flag-russia", "flag-rwanda", "flag-saudi-arabia", "flag-solomon-islands", "flag-seychelles", "flag-sudan", "flag-sweden", "flag-singapore", "flag-st-helena", "flag-slovenia", "flag-svalbard--jan-mayen", "flag-slovakia", "flag-sierra-leone", "flag-san-marino", "flag-senegal", "flag-somalia", "flag-suriname", "flag-south-sudan", "flag-so-tom--prncipe", "flag-el-salvador", "flag-sint-maarten", "flag-syria", "flag-eswatini", "flag-tristan-da-cunha", "flag-turks--caicos-islands", "flag-chad", "flag-french-southern-territories", "flag-togo", "flag-thailand", "flag-tajikistan", "flag-tokelau", "flag-timorleste", "flag-turkmenistan", "flag-tunisia", "flag-tonga", "flag-turkey", "flag-trinidad--tobago", "flag-tuvalu", "flag-taiwan", "flag-tanzania", "flag-ukraine", "flag-uganda", "flag-us-outlying-islands", "flag-united-nations", "flag-united-states", "flag-uruguay", "flag-uzbekistan", "flag-vatican-city", "flag-st-vincent--grenadines", "flag-venezuela", "flag-british-virgin-islands", "flag-us-virgin-islands", "flag-vietnam", "flag-vanuatu", "flag-wallis--futuna", "flag-samoa", "flag-kosovo", "flag-yemen", "flag-mayotte", "flag-south-africa", "flag-zambia", "flag-zimbabwe", "flag-england", "flag-scotland", "flag-wales"]}], "emojis": {"grinning-face": {"a": "grinning face", "b": "1F600", "j": ["grin", "joy", ":D", "face", "smile", "happy"]}, "grinning-face-with-big-eyes": {"a": "grinning face with big eyes", "b": "1F603", "j": ["joy", ":)", ":D", "open", "face", "smile", "mouth", "haha", "happy", "funny"]}, "grinning-face-with-smiling-eyes": {"a": "grinning face with smiling eyes", "b": "1F604", "j": ["like", "joy", ":)", ":D", "open", "face", "smile", "eye", "mouth", "haha", "laugh", "happy", "funny"]}, "beaming-face-with-smiling-eyes": {"a": "beaming face with smiling eyes", "b": "1F601", "j": ["grin", "joy", "face", "smile", "eye", "kawaii", "happy"]}, "grinning-squinting-face": {"a": "grinning squinting face", "b": "1F606", "j": ["joy", "XD", "face", "smile", "satisfied", "mouth", "laugh", "haha", "happy", "lol", "glad"]}, "grinning-face-with-sweat": {"a": "grinning face with sweat", "b": "1F605", "j": ["sweat", "relief", "hot", "cold", "open", "face", "smile", "laugh", "happy"]}, "rolling-on-the-floor-laughing": {"a": "rolling on the floor laughing", "b": "1F923", "j": ["lol", "rolling", "rotfl", "laughing", "face", "laugh", "haha", "floor", "rofl"]}, "face-with-tears-of-joy": {"a": "face with tears of joy", "b": "1F602", "j": ["cry", "tears", "joy", "weep", "face", "laugh", "haha", "happy", "happytears", "tear"]}, "slightly-smiling-face": {"a": "slightly smiling face", "b": "1F642", "j": ["smile", "face"]}, "upsidedown-face": {"a": "upside-down face", "b": "1F643", "j": ["face", "smile", "upside_down_face", "silly", "upside-down", "flipped"]}, "winking-face": {"a": "winking face", "b": "1F609", "j": [";)", "secret", "mischievous", "face", "smile", "eye", "happy", "wink"]}, "smiling-face-with-smiling-eyes": {"a": "smiling face with smiling eyes", "b": "1F60A", "j": ["embarrassed", "joy", "flushed", "blush", "face", "smile", "eye", "happy", "shy", "crush"]}, "smiling-face-with-halo": {"a": "smiling face with halo", "b": "1F607", "j": ["heaven", "innocent", "face", "fantasy", "angel", "halo"]}, "smiling-face-with-hearts": {"a": "smiling face with hearts", "b": "1F970", "j": ["love", "like", "infatuation", "face", "valentines", "hearts", "in love", "adore", "affection", "crush"]}, "smiling-face-with-hearteyes": {"a": "smiling face with heart-eyes", "b": "1F60D", "j": ["love", "like", "heart", "infatuation", "face", "smile", "eye", "valentines", "affection", "smiling_face_with_heart_eyes", "crush"]}, "starstruck": {"a": "star-struck", "b": "1F929", "j": ["grinning", "star", "face", "star_struck", "starry", "smile", "starry-eyed", "eyes"]}, "face-blowing-a-kiss": {"a": "face blowing a kiss", "b": "1F618", "j": ["love", "like", "infatuation", "face", "valentines", "affection", "kiss"]}, "kissing-face": {"a": "kissing face", "b": "1F617", "j": ["love", "like", "infatuation", "3", "face", "valentines", "kiss"]}, "smiling-face": {"a": "smiling face", "b": "263A", "j": ["relaxed", "happiness", "massage", "blush", "face", "outlined", "smile"]}, "kissing-face-with-closed-eyes": {"a": "kissing face with closed eyes", "b": "1F61A", "j": ["love", "like", "infatuation", "face", "eye", "valentines", "closed", "affection", "kiss"]}, "kissing-face-with-smiling-eyes": {"a": "kissing face with smiling eyes", "b": "1F619", "j": ["infatuation", "face", "smile", "valentines", "eye", "affection", "kiss"]}, "smiling-face-with-tear": {"a": "smiling face with tear", "b": "1F972", "j": ["grateful", "relieved", "proud", "pretend", "touched", "smiling", "cry", "sad", "tear"]}, "face-savoring-food": {"a": "face savoring food", "b": "1F60B", "j": ["tongue", "joy", "yummy", "silly", "face", "savouring", "smile", "happy", "nom", "delicious", "yum"]}, "face-with-tongue": {"a": "face with tongue", "b": "1F61B", "j": ["tongue", "mischievous", "playful", "face", "smile", "prank", "childish"]}, "winking-face-with-tongue": {"a": "winking face with tongue", "b": "1F61C", "j": ["tongue", "playful", "mischievous", "face", "smile", "eye", "joke", "wink", "prank", "childish"]}, "zany-face": {"a": "zany face", "b": "1F92A", "j": ["large", "crazy", "face", "goofy", "eye", "small"]}, "squinting-face-with-tongue": {"a": "squinting face with tongue", "b": "1F61D", "j": ["tongue", "playful", "mischievous", "taste", "face", "horrible", "eye", "smile", "prank"]}, "moneymouth-face": {"a": "money-mouth face", "b": "1F911", "j": ["rich", "face", "dollar", "mouth", "money_mouth_face", "money"]}, "hugging-face": {"a": "hugging face", "b": "1F917", "j": ["smile", "hugging", "face", "hug"]}, "face-with-hand-over-mouth": {"a": "face with hand over mouth", "b": "1F92D", "j": ["whoops", "face", "sudden realization", "shock", "surprise"]}, "shushing-face": {"a": "shushing face", "b": "1F92B", "j": ["quiet", "shush", "face", "shhh"]}, "thinking-face": {"a": "thinking face", "b": "1F914", "j": ["think", "consider", "hmmm", "thinking", "face"]}, "zippermouth-face": {"a": "zipper-mouth face", "b": "1F910", "j": ["secret", "zipper_mouth_face", "face", "sealed", "mouth", "zipper"]}, "face-with-raised-eyebrow": {"a": "face with raised eyebrow", "b": "1F928", "j": ["disbelief", "skeptic", "disapproval", "face", "mild surprise", "scepticism", "distrust", "surprise"]}, "neutral-face": {"a": "neutral face", "b": "1F610", "j": ["deadpan", "neutral", "face", "meh", "indifference", ":|"]}, "expressionless-face": {"a": "expressionless face", "b": "1F611", "j": ["inexpressive", "indifferent", "deadpan", "-_-", "face", "meh", "expressionless", "unexpressive"]}, "face-without-mouth": {"a": "face without mouth", "b": "1F636", "j": ["hellokitty", "face", "quiet", "mouth", "silent"]}, "face-in-clouds": {"a": "⊛ face in clouds", "b": "1F636-200D-1F32B-FE0F", "j": ["absentminded", "face in clouds", "face in the fog", "head in clouds"]}, "smirking-face": {"a": "smirking face", "b": "1F60F", "j": ["smug", "face", "smile", "sarcasm", "mean", "prank", "smirk"]}, "unamused-face": {"a": "unamused face", "b": "1F612", "j": ["side_eye", "bored", "unamused", "unhappy", "straight face", "face", "skeptical", "dubious", "sarcasm", "indifference", "serious", "unimpressed"]}, "face-with-rolling-eyes": {"a": "face with rolling eyes", "b": "1F644", "j": ["rolling", "frustrated", "face", "eyeroll", "eyes"]}, "grimacing-face": {"a": "grimacing face", "b": "1F62C", "j": ["grimace", "teeth", "face"]}, "face-exhaling": {"a": "⊛ face exhaling", "b": "1F62E-200D-1F4A8", "j": ["exhale", "face exhaling", "gasp", "groan", "relief", "whisper", "whistle"]}, "lying-face": {"a": "lying face", "b": "1F925", "j": ["pinocchio", "face", "lie"]}, "relieved-face": {"a": "relieved face", "b": "1F60C", "j": ["relaxed", "massage", "happiness", "relieved", "phew", "face"]}, "pensive-face": {"a": "pensive face", "b": "1F614", "j": ["depressed", "upset", "pensive", "face", "sad", "dejected"]}, "sleepy-face": {"a": "sleepy face", "b": "1F62A", "j": ["sleep", "tired", "face", "nap", "rest"]}, "drooling-face": {"a": "drooling face", "b": "1F924", "j": ["face", "drooling"]}, "sleeping-face": {"a": "sleeping face", "b": "1F634", "j": ["night", "sleep", "tired", "zzz", "face", "sleepy"]}, "face-with-medical-mask": {"a": "face with medical mask", "b": "1F637", "j": ["ill", "mask", "cold", "face", "doctor", "disease", "sick"]}, "face-with-thermometer": {"a": "face with thermometer", "b": "1F912", "j": ["ill", "thermometer", "fever", "cold", "face", "temperature", "sick"]}, "face-with-headbandage": {"a": "face with head-bandage", "b": "1F915", "j": ["face_with_head_bandage", "face", "injury", "clumsy", "hurt", "injured", "bandage"]}, "nauseated-face": {"a": "nauseated face", "b": "1F922", "j": ["ill", "throw up", "gross", "face", "green", "sick", "vomit", "nauseated"]}, "face-vomiting": {"a": "face vomiting", "b": "1F92E", "j": ["sick", "vomit", "face", "puke"]}, "sneezing-face": {"a": "sneezing face", "b": "1F927", "j": ["gesundheit", "face", "sick", "sneeze", "allergy"]}, "hot-face": {"a": "hot face", "b": "1F975", "j": ["sweating", "heat", "hot", "red-faced", "feverish", "face", "red", "heat stroke"]}, "cold-face": {"a": "cold face", "b": "1F976", "j": ["blue", "blue-faced", "frostbite", "freezing", "cold", "face", "icicles", "frozen"]}, "woozy-face": {"a": "woozy face", "b": "1F974", "j": ["face", "intoxicated", "dizzy", "wavy mouth", "tipsy", "uneven eyes", "wavy"]}, "knockedout-face": {"a": "knocked-out face", "b": "1F635", "j": ["knocked out", "dizzy_face", "unconscious", "face", "spent", "dizzy", "dead", "xox"]}, "face-with-spiral-eyes": {"a": "⊛ face with spiral eyes", "b": "1F635-200D-1F4AB", "j": ["dizzy", "face with spiral eyes", "hypnotized", "spiral", "trouble", "whoa"]}, "exploding-head": {"a": "exploding head", "b": "1F92F", "j": ["face", "shocked", "mind blown", "blown", "mind"]}, "cowboy-hat-face": {"a": "cowboy hat face", "b": "1F920", "j": ["hat", "cowboy", "face", "cowgirl"]}, "partying-face": {"a": "partying face", "b": "1F973", "j": ["face", "hat", "celebration", "horn", "party", "woohoo"]}, "disguised-face": {"a": "disguised face", "b": "1F978", "j": ["moustache", "glasses", "face", "brows", "disguise", "pretent", "nose", "incognito"]}, "smiling-face-with-sunglasses": {"a": "smiling face with sunglasses", "b": "1F60E", "j": ["sun", "cool", "sunglasses", "bright", "face", "sunglass", "smile", "summer", "beach"]}, "nerd-face": {"a": "nerd face", "b": "1F913", "j": ["nerdy", "geek", "nerd", "face", "dork"]}, "face-with-monocle": {"a": "face with monocle", "b": "1F9D0", "j": ["wealthy", "face", "stuffy"]}, "confused-face": {"a": "confused face", "b": "1F615", "j": ["hmmm", "face", "huh", "meh", "weird", "indifference", "confused", ":/"]}, "worried-face": {"a": "worried face", "b": "1F61F", "j": ["nervous", ":(", "face", "concern", "worried"]}, "slightly-frowning-face": {"a": "slightly frowning face", "b": "1F641", "j": ["frowning", "upset", "disappointed", "frown", "face", "sad"]}, "frowning-face": {"a": "frowning face", "b": "2639", "j": ["frown", "upset", "sad", "face"]}, "face-with-open-mouth": {"a": "face with open mouth", "b": "1F62E", "j": [":O", "open", "face", "wow", "impressed", "mouth", "whoa", "sympathy", "surprise"]}, "hushed-face": {"a": "hushed face", "b": "1F62F", "j": ["shh", "stunned", "face", "hushed", "surprised", "woo"]}, "astonished-face": {"a": "astonished face", "b": "1F632", "j": ["face", "shocked", "surprised", "astonished", "totally", "poisoned", "xox"]}, "flushed-face": {"a": "flushed face", "b": "1F633", "j": ["flattered", "blush", "face", "dazed", "flushed", "shy"]}, "pleading-face": {"a": "pleading face", "b": "1F97A", "j": ["puppy eyes", "begging", "face", "mercy"]}, "frowning-face-with-open-mouth": {"a": "frowning face with open mouth", "b": "1F626", "j": ["frown", "open", "face", "mouth", "what", "aw"]}, "anguished-face": {"a": "anguished face", "b": "1F627", "j": ["stunned", "nervous", "face", "anguished"]}, "fearful-face": {"a": "fearful face", "b": "1F628", "j": ["oops", "nervous", "face", "scared", "huh", "fear", "terrified", "fearful"]}, "anxious-face-with-sweat": {"a": "anxious face with sweat", "b": "1F630", "j": ["blue", "sweat", "nervous", "cold", "face", "rushed"]}, "sad-but-relieved-face": {"a": "sad but relieved face", "b": "1F625", "j": ["disappointed", "nervous", "sweat", "relieved", "whew", "phew", "face"]}, "crying-face": {"a": "crying face", "b": "1F622", "j": ["depressed", "upset", "tears", "face", ":'(", "cry", "sad", "tear"]}, "loudly-crying-face": {"a": "loudly crying face", "b": "1F62D", "j": ["depressed", "upset", "tears", "face", "cry", "sad", "tear", "sob"]}, "face-screaming-in-fear": {"a": "face screaming in fear", "b": "1F631", "j": ["munch", "face", "omg", "scared", "scream", "fear"]}, "confounded-face": {"a": "confounded face", "b": "1F616", "j": ["confounded", "oops", ":S", "sick", "unwell", "face", "confused"]}, "persevering-face": {"a": "persevering face", "b": "1F623", "j": ["oops", "upset", "persevere", "no", "face", "sick"]}, "disappointed-face": {"a": "disappointed face", "b": "1F61E", "j": ["depressed", "upset", "disappointed", ":(", "face", "sad"]}, "downcast-face-with-sweat": {"a": "downcast face with sweat", "b": "1F613", "j": ["sweat", "tired", "hot", "cold", "face", "exercise", "sad"]}, "weary-face": {"a": "weary face", "b": "1F629", "j": ["upset", "tired", "frustrated", "face", "sleepy", "sad", "weary"]}, "tired-face": {"a": "tired face", "b": "1F62B", "j": ["upset", "whine", "tired", "frustrated", "face", "sick"]}, "yawning-face": {"a": "yawning face", "b": "1F971", "j": ["", "bored", "tired", "yawn", "sleepy"]}, "face-with-steam-from-nose": {"a": "face with steam from nose", "b": "1F624", "j": ["triumph", "gas", "pride", "phew", "face", "proud", "won"]}, "pouting-face": {"a": "pouting face", "b": "1F621", "j": ["pouting", "rage", "despise", "hate", "face", "red", "angry", "mad"]}, "angry-face": {"a": "angry face", "b": "1F620", "j": ["annoyed", "anger", "frustrated", "face", "angry", "mad"]}, "face-with-symbols-on-mouth": {"a": "face with symbols on mouth", "b": "1F92C", "j": ["cursing", "swearing", "face", "expletive", "cussing", "profanity"]}, "smiling-face-with-horns": {"a": "smiling face with horns", "b": "1F608", "j": ["face", "fairy tale", "smile", "fantasy", "devil", "horns"]}, "angry-face-with-horns": {"a": "angry face with horns", "b": "1F47F", "j": ["face", "devil", "fantasy", "demon", "imp", "horns", "angry"]}, "skull": {"a": "skull", "b": "1F480", "j": ["death", "skeleton", "face", "creepy", "fairy tale", "dead", "monster"]}, "skull-and-crossbones": {"a": "skull and crossbones", "b": "2620", "j": ["danger", "death", "pirate", "skull", "scary", "face", "poison", "evil", "crossbones", "deadly", "monster"]}, "pile-of-poo": {"a": "pile of poo", "b": "1F4A9", "j": ["dung", "poop", "hankey", "face", "shitface", "fail", "turd", "shit", "poo", "monster"]}, "clown-face": {"a": "clown face", "b": "1F921", "j": ["clown", "face"]}, "ogre": {"a": "ogre", "b": "1F479", "j": ["mask", "scary", "japanese", "face", "creepy", "fairy tale", "halloween", "red", "fantasy", "creature", "troll", "devil", "demon", "monster"]}, "goblin": {"a": "goblin", "b": "1F47A", "j": ["mask", "scary", "japanese", "face", "creepy", "fairy tale", "red", "fantasy", "creature", "evil", "monster"]}, "ghost": {"a": "ghost", "b": "1F47B", "j": ["scary", "face", "fairy tale", "halloween", "spooky", "fantasy", "creature", "monster"]}, "alien": {"a": "alien", "b": "1F47D", "j": ["extraterrestrial", "paul", "face", "fantasy", "creature", "ufo", "weird", "outer_space", "UFO"]}, "alien-monster": {"a": "alien monster", "b": "1F47E", "j": ["extraterrestrial", "play", "face", "alien", "game", "creature", "ufo", "arcade", "monster"]}, "robot": {"a": "robot", "b": "1F916", "j": ["computer", "face", "bot", "machine", "monster"]}, "grinning-cat": {"a": "grinning cat", "b": "1F63A", "j": ["grinning", "cats", "open", "face", "smile", "mouth", "happy", "cat", "animal"]}, "grinning-cat-with-smiling-eyes": {"a": "grinning cat with smiling eyes", "b": "1F638", "j": ["animal", "cats", "grin", "face", "smile", "eye", "cat"]}, "cat-with-tears-of-joy": {"a": "cat with tears of joy", "b": "1F639", "j": ["animal", "tears", "cats", "joy", "face", "haha", "happy", "cat", "tear"]}, "smiling-cat-with-hearteyes": {"a": "smiling cat with heart-eyes", "b": "1F63B", "j": ["animal", "love", "like", "cats", "heart", "face", "smile", "eye", "smiling_cat_with_heart_eyes", "valentines", "affection", "cat"]}, "cat-with-wry-smile": {"a": "cat with wry smile", "b": "1F63C", "j": ["animal", "ironic", "cats", "face", "smile", "wry", "cat", "smirk"]}, "kissing-cat": {"a": "kissing cat", "b": "1F63D", "j": ["animal", "cats", "face", "eye", "kiss", "cat"]}, "weary-cat": {"a": "weary cat", "b": "1F640", "j": ["cats", "weary", "munch", "face", "oh", "surprised", "scared", "scream", "cat", "animal"]}, "crying-cat": {"a": "crying cat", "b": "1F63F", "j": ["upset", "animal", "tears", "cats", "weep", "face", "cry", "sad", "cat", "tear"]}, "pouting-cat": {"a": "pouting cat", "b": "1F63E", "j": ["pouting", "cats", "face", "cat", "animal"]}, "seenoevil-monkey": {"a": "see-no-evil monkey", "b": "1F648", "j": ["monkey", "forbidden", "face", "nature", "haha", "evil", "see", "animal", "see_no_evil_monkey"]}, "hearnoevil-monkey": {"a": "hear-no-evil monkey", "b": "1F649", "j": ["monkey", "forbidden", "animal", "hear_no_evil_monkey", "face", "nature", "evil", "hear"]}, "speaknoevil-monkey": {"a": "speak-no-evil monkey", "b": "1F64A", "j": ["monkey", "forbidden", "face", "speak_no_evil_monkey", "nature", "speak", "omg", "evil", "animal"]}, "kiss-mark": {"a": "kiss mark", "b": "1F48B", "j": ["love", "like", "face", "lips", "valentines", "affection", "kiss"]}, "love-letter": {"a": "love letter", "b": "1F48C", "j": ["envelope", "love", "like", "letter", "heart", "email", "valentines", "mail", "affection"]}, "heart-with-arrow": {"a": "heart with arrow", "b": "1F498", "j": ["arrow", "love", "like", "heart", "cupid", "valentines", "affection"]}, "heart-with-ribbon": {"a": "heart with ribbon", "b": "1F49D", "j": ["valentines", "valentine", "love", "ribbon"]}, "sparkling-heart": {"a": "sparkling heart", "b": "1F496", "j": ["love", "like", "excited", "valentines", "sparkle", "affection"]}, "growing-heart": {"a": "growing heart", "b": "1F497", "j": ["pulse", "nervous", "like", "love", "excited", "pink", "valentines", "growing", "affection"]}, "beating-heart": {"a": "beating heart", "b": "1F493", "j": ["love", "like", "heart", "beating", "pink", "heartbeat", "valentines", "pulsating", "affection"]}, "revolving-hearts": {"a": "revolving hearts", "b": "1F49E", "j": ["revolving", "like", "love", "valentines", "affection"]}, "two-hearts": {"a": "two hearts", "b": "1F495", "j": ["love", "like", "heart", "valentines", "affection"]}, "heart-decoration": {"a": "heart decoration", "b": "1F49F", "j": ["heart", "love", "like", "purple-square"]}, "heart-exclamation": {"a": "heart exclamation", "b": "2763", "j": ["punctuation", "love", "mark", "decoration", "exclamation"]}, "broken-heart": {"a": "broken heart", "b": "1F494", "j": ["heartbreak", "heart", "broken", "sorry", "break", "sad"]}, "heart-on-fire": {"a": "⊛ heart on fire", "b": "2764-FE0F-200D-1F525", "j": ["burn", "heart", "heart on fire", "love", "lust", "sacred heart"]}, "mending-heart": {"a": "⊛ mending heart", "b": "2764-FE0F-200D-1FA79", "j": ["healthier", "improving", "mending", "mending heart", "recovering", "recuperating", "well"]}, "red-heart": {"a": "red heart", "b": "2764", "j": ["heart", "valentines", "love", "like"]}, "orange-heart": {"a": "orange heart", "b": "1F9E1", "j": ["like", "love", "orange", "valentines", "affection"]}, "yellow-heart": {"a": "yellow heart", "b": "1F49B", "j": ["love", "like", "valentines", "yellow", "affection"]}, "green-heart": {"a": "green heart", "b": "1F49A", "j": ["love", "like", "valentines", "green", "affection"]}, "blue-heart": {"a": "blue heart", "b": "1F499", "j": ["blue", "like", "love", "valentines", "affection"]}, "purple-heart": {"a": "purple heart", "b": "1F49C", "j": ["love", "like", "valentines", "affection", "purple"]}, "brown-heart": {"a": "brown heart", "b": "1F90E", "j": ["heart", "brown", "coffee"]}, "black-heart": {"a": "black heart", "b": "1F5A4", "j": ["wicked", "black", "evil"]}, "white-heart": {"a": "white heart", "b": "1F90D", "j": ["heart", "white", "pure"]}, "hundred-points": {"a": "hundred points", "b": "1F4AF", "j": ["test", "full", "score", "quiz", "numbers", "hundred", "100", "perfect", "pass", "century", "exam"]}, "anger-symbol": {"a": "anger symbol", "b": "1F4A2", "j": ["comic", "mad", "angry"]}, "collision": {"a": "collision", "b": "1F4A5", "j": ["boom", "explode", "explosion", "comic", "bomb", "blown"]}, "dizzy": {"a": "dizzy", "b": "1F4AB", "j": ["magic", "star", "comic", "sparkle", "shoot"]}, "sweat-droplets": {"a": "sweat droplets", "b": "1F4A6", "j": ["oops", "sweat", "drip", "water", "comic", "splashing"]}, "dashing-away": {"a": "dashing away", "b": "1F4A8", "j": ["smoke", "fart", "dash", "puff", "air", "fast", "comic", "running", "shoo", "wind"]}, "hole": {"a": "hole", "b": "1F573", "j": ["embarrassing"]}, "bomb": {"a": "bomb", "b": "1F4A3", "j": ["boom", "explode", "explosion", "comic", "terrorism"]}, "speech-balloon": {"a": "speech balloon", "b": "1F4AC", "j": ["bubble", "balloon", "words", "message", "talk", "chatting", "comic", "speech", "dialog"]}, "eye-in-speech-bubble": {"a": "eye in speech bubble", "b": "1F441-FE0F-200D-1F5E8-FE0F", "j": ["info", "witness", "speech bubble", "eye"]}, "left-speech-bubble": {"a": "left speech bubble", "b": "1F5E8", "j": ["message", "talk", "words", "chatting", "speech", "dialog"]}, "right-anger-bubble": {"a": "right anger bubble", "b": "1F5EF", "j": ["bubble", "balloon", "thinking", "caption", "speech", "angry", "mad"]}, "thought-balloon": {"a": "thought balloon", "b": "1F4AD", "j": ["bubble", "dream", "balloon", "thinking", "comic", "cloud", "speech", "thought"]}, "zzz": {"a": "zzz", "b": "1F4A4", "j": ["sleep", "dream", "tired", "comic", "sleepy"]}, "waving-hand": {"a": "waving hand", "b": "1F44B", "j": ["waving", "wave", "farewell", "solong", "gesture", "hand", "hands", "hello", "goodbye", "hi", "palm"]}, "raised-back-of-hand": {"a": "raised back of hand", "b": "1F91A", "j": ["backhand", "fingers", "raised"]}, "hand-with-fingers-splayed": {"a": "hand with fingers splayed", "b": "1F590", "j": ["finger", "fingers", "hand", "splayed", "palm"]}, "raised-hand": {"a": "raised hand", "b": "270B", "j": ["fingers", "stop", "hand", "high 5", "high five", "ban", "palm", "highfive"]}, "vulcan-salute": {"a": "vulcan salute", "b": "1F596", "j": ["finger", "fingers", "hand", "vulcan", "star trek", "spock"]}, "ok-hand": {"a": "OK hand", "b": "1F44C", "j": ["OK", "limbs", "fingers", "hand", "okay", "perfect", "ok"]}, "pinched-fingers": {"a": "pinched fingers", "b": "1F90C", "j": ["pinched", "fingers", "hand gesture", "size", "tiny", "sarcastic", "small", "interrogation"]}, "pinching-hand": {"a": "pinching hand", "b": "1F90F", "j": ["small amount", "size", "small", "tiny"]}, "victory-hand": {"a": "victory hand", "b": "270C", "j": ["victory", "fingers", "hand", "ohyeah", "two", "v", "peace"]}, "crossed-fingers": {"a": "crossed fingers", "b": "1F91E", "j": ["cross", "finger", "lucky", "good", "hand", "luck"]}, "loveyou-gesture": {"a": "love-you gesture", "b": "1F91F", "j": ["ILY", "fingers", "gesture", "hand", "love_you_gesture"]}, "sign-of-the-horns": {"a": "sign of the horns", "b": "1F918", "j": ["finger", "rock_on", "fingers", "rock-on", "hand", "sign_of_horns", "horns", "evil_eye"]}, "call-me-hand": {"a": "call me hand", "b": "1F919", "j": ["gesture", "hand", "call", "hands"]}, "backhand-index-pointing-left": {"a": "backhand index pointing left", "b": "1F448", "j": ["finger", "fingers", "point", "hand", "left", "backhand", "direction", "index"]}, "backhand-index-pointing-right": {"a": "backhand index pointing right", "b": "1F449", "j": ["finger", "right", "fingers", "point", "hand", "backhand", "direction", "index"]}, "backhand-index-pointing-up": {"a": "backhand index pointing up", "b": "1F446", "j": ["finger", "fingers", "point", "hand", "backhand", "direction", "up"]}, "middle-finger": {"a": "middle finger", "b": "1F595", "j": ["flipping", "finger", "middle", "fingers", "hand", "rude"]}, "backhand-index-pointing-down": {"a": "backhand index pointing down", "b": "1F447", "j": ["finger", "fingers", "point", "down", "hand", "backhand", "direction"]}, "index-pointing-up": {"a": "index pointing up", "b": "261D", "j": ["finger", "fingers", "point", "hand", "direction", "up", "index"]}, "thumbs-up": {"a": "thumbs up", "b": "1F44D", "j": ["+1", "yes", "awesome", "like", "cool", "thumb", "thumbsup", "hand", "good", "agree", "accept", "up"]}, "thumbs-down": {"a": "thumbs down", "b": "1F44E", "j": ["-1", "no", "thumb", "down", "hand", "dislike", "thumbsdown"]}, "raised-fist": {"a": "raised fist", "b": "270A", "j": ["fingers", "clenched", "fist", "hand", "grasp", "punch"]}, "oncoming-fist": {"a": "oncoming fist", "b": "1F44A", "j": ["violence", "clenched", "fist", "hit", "hand", "attack", "punch", "angry"]}, "leftfacing-fist": {"a": "left-facing fist", "b": "1F91B", "j": ["left_facing_fist", "leftwards", "fist", "hand", "fistbump"]}, "rightfacing-fist": {"a": "right-facing fist", "b": "1F91C", "j": ["fist", "hand", "right_facing_fist", "rightwards", "fistbump"]}, "clapping-hands": {"a": "clapping hands", "b": "1F44F", "j": ["applause", "hand", "yay", "hands", "clap", "congrats", "praise"]}, "raising-hands": {"a": "raising hands", "b": "1F64C", "j": ["gesture", "hand", "hands", "celebration", "raised", "hooray", "yea"]}, "open-hands": {"a": "open hands", "b": "1F450", "j": ["fingers", "hand", "open", "hands", "butterfly"]}, "palms-up-together": {"a": "palms up together", "b": "1F932", "j": ["gesture", "cupped", "hands", "cupped hands", "prayer"]}, "handshake": {"a": "handshake", "b": "1F91D", "j": ["shake", "meeting", "hand", "agreement"]}, "folded-hands": {"a": "folded hands", "b": "1F64F", "j": ["hand", "high 5", "please", "high five", "thanks", "wish", "pray", "ask", "namaste", "hope", "highfive"]}, "writing-hand": {"a": "writing hand", "b": "270D", "j": ["lower_left_ballpoint_pen", "compose", "hand", "stationery", "write"]}, "nail-polish": {"a": "nail polish", "b": "1F485", "j": ["care", "finger", "manicure", "fashion", "polish", "beauty", "nail", "cosmetics"]}, "selfie": {"a": "selfie", "b": "1F933", "j": ["camera", "phone"]}, "flexed-biceps": {"a": "flexed biceps", "b": "1F4AA", "j": ["strong", "hand", "arm", "comic", "flex", "biceps", "summer", "muscle"]}, "mechanical-arm": {"a": "mechanical arm", "b": "1F9BE", "j": ["prosthetic", "accessibility"]}, "mechanical-leg": {"a": "mechanical leg", "b": "1F9BF", "j": ["prosthetic", "accessibility"]}, "leg": {"a": "leg", "b": "1F9B5", "j": ["limb", "kick"]}, "foot": {"a": "foot", "b": "1F9B6", "j": ["kick", "stomp"]}, "ear": {"a": "ear", "b": "1F442", "j": ["sound", "face", "body", "hear", "listen"]}, "ear-with-hearing-aid": {"a": "ear with hearing aid", "b": "1F9BB", "j": ["hard of hearing", "accessibility"]}, "nose": {"a": "nose", "b": "1F443", "j": ["smell", "sniff", "body"]}, "brain": {"a": "brain", "b": "1F9E0", "j": ["smart", "intelligent"]}, "anatomical-heart": {"a": "anatomical heart", "b": "1FAC0", "j": ["pulse", "heart", "cardiology", "organ", "heartbeat", "health", "anatomical"]}, "lungs": {"a": "lungs", "b": "1FAC1", "j": ["inhalation", "breath", "exhalation", "organ", "respiration", "breathe"]}, "tooth": {"a": "tooth", "b": "1F9B7", "j": ["dentist", "teeth"]}, "bone": {"a": "bone", "b": "1F9B4", "j": ["skeleton"]}, "eyes": {"a": "eyes", "b": "1F440", "j": ["stalk", "peek", "face", "eye", "watch", "see", "look"]}, "eye": {"a": "eye", "b": "1F441", "j": ["stare", "face", "watch", "body", "see", "look"]}, "tongue": {"a": "tongue", "b": "1F445", "j": ["playful", "mouth", "body"]}, "mouth": {"a": "mouth", "b": "1F444", "j": ["lips", "kiss"]}, "baby": {"a": "baby", "b": "1F476", "j": ["toddler", "young", "boy", "girl", "child"]}, "child": {"a": "child", "b": "1F9D2", "j": ["young", "gender-neutral", "unspecified gender"]}, "boy": {"a": "boy", "b": "1F466", "j": ["guy", "man", "male", "young", "teenager"]}, "girl": {"a": "girl", "b": "1F467", "j": ["woman", "young", "zodiac", "Virgo", "teenager", "female"]}, "person": {"a": "person", "b": "1F9D1", "j": ["adult", "gender-neutral", "unspecified gender"]}, "person-blond-hair": {"a": "person: blond hair", "b": "1F471", "j": ["hairstyle", "blond-haired person", "blond", "hair"]}, "man": {"a": "man", "b": "1F468", "j": ["guy", "classy", "moustache", "father", "sir", "dad", "mustache", "adult"]}, "person-beard": {"a": "person: beard", "b": "1F9D4", "j": ["person", "bewhiskered", "man_beard", "beard"]}, "man-beard": {"a": "⊛ man: beard", "b": "1F9D4-200D-2642-FE0F", "j": ["beard", "man", "man: beard"]}, "woman-beard": {"a": "⊛ woman: beard", "b": "1F9D4-200D-2640-FE0F", "j": ["beard", "woman", "woman: beard"]}, "man-red-hair": {"a": "man: red hair", "b": "1F468-200D-1F9B0", "j": ["adult", "red hair", "man", "hairstyle"]}, "man-curly-hair": {"a": "man: curly hair", "b": "1F468-200D-1F9B1", "j": ["curly hair", "adult", "man", "hairstyle"]}, "man-white-hair": {"a": "man: white hair", "b": "1F468-200D-1F9B3", "j": ["man", "elder", "old", "adult", "white hair"]}, "man-bald": {"a": "man: bald", "b": "1F468-200D-1F9B2", "j": ["hairless", "adult", "man", "bald"]}, "woman": {"a": "woman", "b": "1F469", "j": ["girls", "lady", "adult", "female"]}, "woman-red-hair": {"a": "woman: red hair", "b": "1F469-200D-1F9B0", "j": ["woman", "adult", "red hair", "hairstyle"]}, "person-red-hair": {"a": "person: red hair", "b": "1F9D1-200D-1F9B0", "j": ["person", "unspecified gender", "hairstyle", "red hair", "adult", "gender-neutral"]}, "woman-curly-hair": {"a": "woman: curly hair", "b": "1F469-200D-1F9B1", "j": ["woman", "curly hair", "adult", "hairstyle"]}, "person-curly-hair": {"a": "person: curly hair", "b": "1F9D1-200D-1F9B1", "j": ["person", "unspecified gender", "hairstyle", "curly hair", "adult", "gender-neutral"]}, "woman-white-hair": {"a": "woman: white hair", "b": "1F469-200D-1F9B3", "j": ["woman", "elder", "old", "adult", "white hair"]}, "person-white-hair": {"a": "person: white hair", "b": "1F9D1-200D-1F9B3", "j": ["person", "unspecified gender", "elder", "white hair", "old", "adult", "gender-neutral"]}, "woman-bald": {"a": "woman: bald", "b": "1F469-200D-1F9B2", "j": ["hairless", "adult", "bald", "woman"]}, "person-bald": {"a": "person: bald", "b": "1F9D1-200D-1F9B2", "j": ["hairless", "person", "unspecified gender", "bald", "adult", "gender-neutral"]}, "woman-blond-hair": {"a": "woman: blond hair", "b": "1F471-200D-2640-FE0F", "j": ["person", "woman", "hair", "girl", "blond-haired woman", "blonde", "female"]}, "man-blond-hair": {"a": "man: blond hair", "b": "1F471-200D-2642-FE0F", "j": ["guy", "person", "man", "hair", "male", "boy", "blond-haired man", "blond", "blonde"]}, "older-person": {"a": "older person", "b": "1F9D3", "j": ["unspecified gender", "elder", "senior", "human", "old", "adult", "gender-neutral"]}, "old-man": {"a": "old man", "b": "1F474", "j": ["man", "male", "elder", "human", "senior", "old", "men", "adult"]}, "old-woman": {"a": "old woman", "b": "1F475", "j": ["woman", "elder", "human", "lady", "senior", "old", "adult", "women", "female"]}, "person-frowning": {"a": "person frowning", "b": "1F64D", "j": ["frown", "gesture", "worried"]}, "man-frowning": {"a": "man frowning", "b": "1F64D-200D-2642-FE0F", "j": ["frowning", "depressed", "man", "male", "gesture", "boy", "unhappy", "sad", "discouraged"]}, "woman-frowning": {"a": "woman frowning", "b": "1F64D-200D-2640-FE0F", "j": ["frowning", "depressed", "woman", "gesture", "girl", "unhappy", "sad", "discouraged", "female"]}, "person-pouting": {"a": "person pouting", "b": "1F64E", "j": ["pouting", "upset", "gesture"]}, "man-pouting": {"a": "man pouting", "b": "1F64E-200D-2642-FE0F", "j": ["pouting", "man", "male", "gesture", "boy"]}, "woman-pouting": {"a": "woman pouting", "b": "1F64E-200D-2640-FE0F", "j": ["pouting", "woman", "gesture", "girl", "female"]}, "person-gesturing-no": {"a": "person gesturing NO", "b": "1F645", "j": ["decline", "forbidden", "gesture", "prohibited", "hand"]}, "man-gesturing-no": {"a": "man gesturing NO", "b": "1F645-200D-2642-FE0F", "j": ["forbidden", "man", "male", "gesture", "prohibited", "hand", "boy", "nope"]}, "woman-gesturing-no": {"a": "woman gesturing NO", "b": "1F645-200D-2640-FE0F", "j": ["forbidden", "woman", "gesture", "prohibited", "hand", "girl", "female", "nope"]}, "person-gesturing-ok": {"a": "person gesturing OK", "b": "1F646", "j": ["OK", "hand", "gesture", "agree"]}, "man-gesturing-ok": {"a": "man gesturing OK", "b": "1F646-200D-2642-FE0F", "j": ["blue", "OK", "man", "male", "human", "gesture", "boy", "hand", "men"]}, "woman-gesturing-ok": {"a": "woman gesturing OK", "b": "1F646-200D-2640-FE0F", "j": ["OK", "woman", "human", "gesture", "girl", "hand", "pink", "women", "female"]}, "person-tipping-hand": {"a": "person tipping hand", "b": "1F481", "j": ["tipping", "hand", "sassy", "help", "information"]}, "man-tipping-hand": {"a": "man tipping hand", "b": "1F481-200D-2642-FE0F", "j": ["man", "male", "human", "boy", "sassy", "tipping hand", "information"]}, "woman-tipping-hand": {"a": "woman tipping hand", "b": "1F481-200D-2640-FE0F", "j": ["woman", "human", "girl", "sassy", "tipping hand", "information", "female"]}, "person-raising-hand": {"a": "person raising hand", "b": "1F64B", "j": ["gesture", "hand", "raised", "happy", "question"]}, "man-raising-hand": {"a": "man raising hand", "b": "1F64B-200D-2642-FE0F", "j": ["raising hand", "man", "male", "gesture", "boy"]}, "woman-raising-hand": {"a": "woman raising hand", "b": "1F64B-200D-2640-FE0F", "j": ["raising hand", "woman", "gesture", "girl", "female"]}, "deaf-person": {"a": "deaf person", "b": "1F9CF", "j": ["ear", "deaf", "accessibility", "hear"]}, "deaf-man": {"a": "deaf man", "b": "1F9CF-200D-2642-FE0F", "j": ["accessibility", "deaf", "man"]}, "deaf-woman": {"a": "deaf woman", "b": "1F9CF-200D-2640-FE0F", "j": ["deaf", "accessibility", "woman"]}, "person-bowing": {"a": "person bowing", "b": "1F647", "j": ["gesture", "sorry", "apology", "respectiful", "bow"]}, "man-bowing": {"a": "man bowing", "b": "1F647-200D-2642-FE0F", "j": ["man", "male", "gesture", "boy", "bowing", "sorry", "favor", "apology"]}, "woman-bowing": {"a": "woman bowing", "b": "1F647-200D-2640-FE0F", "j": ["woman", "gesture", "girl", "bowing", "sorry", "favor", "apology", "female"]}, "person-facepalming": {"a": "person facepalming", "b": "1F926", "j": ["disappointed", "disbelief", "face", "exasperation", "palm"]}, "man-facepalming": {"a": "man facepalming", "b": "1F926-200D-2642-FE0F", "j": ["disbelief", "facepalm", "man", "male", "boy", "exasperation"]}, "woman-facepalming": {"a": "woman facepalming", "b": "1F926-200D-2640-FE0F", "j": ["disbelief", "facepalm", "woman", "girl", "exasperation", "female"]}, "person-shrugging": {"a": "person shrugging", "b": "1F937", "j": ["regardless", "indifference", "doubt", "shrug", "ignorance"]}, "man-shrugging": {"a": "man shrugging", "b": "1F937-200D-2642-FE0F", "j": ["indifferent", "man", "male", "boy", "doubt", "indifference", "confused", "shrug", "ignorance"]}, "woman-shrugging": {"a": "woman shrugging", "b": "1F937-200D-2640-FE0F", "j": ["indifferent", "woman", "girl", "doubt", "indifference", "confused", "female", "shrug", "ignorance"]}, "health-worker": {"a": "health worker", "b": "1F9D1-200D-2695-FE0F", "j": ["nurse", "doctor", "healthcare", "hospital", "therapist"]}, "man-health-worker": {"a": "man health worker", "b": "1F468-200D-2695-FE0F", "j": ["nurse", "man", "human", "doctor", "healthcare", "therapist"]}, "woman-health-worker": {"a": "woman health worker", "b": "1F469-200D-2695-FE0F", "j": ["nurse", "woman", "human", "doctor", "healthcare", "therapist"]}, "student": {"a": "student", "b": "1F9D1-200D-1F393", "j": ["learn", "graduate"]}, "man-student": {"a": "man student", "b": "1F468-200D-1F393", "j": ["human", "graduate", "student", "man"]}, "woman-student": {"a": "woman student", "b": "1F469-200D-1F393", "j": ["human", "graduate", "student", "woman"]}, "teacher": {"a": "teacher", "b": "1F9D1-200D-1F3EB", "j": ["professor", "instructor"]}, "man-teacher": {"a": "man teacher", "b": "1F468-200D-1F3EB", "j": ["instructor", "man", "teacher", "human", "professor"]}, "woman-teacher": {"a": "woman teacher", "b": "1F469-200D-1F3EB", "j": ["instructor", "woman", "teacher", "human", "professor"]}, "judge": {"a": "judge", "b": "1F9D1-200D-2696-FE0F", "j": ["scales", "justice", "law"]}, "man-judge": {"a": "man judge", "b": "1F468-200D-2696-FE0F", "j": ["court", "man", "human", "scales", "judge", "justice"]}, "woman-judge": {"a": "woman judge", "b": "1F469-200D-2696-FE0F", "j": ["court", "woman", "human", "scales", "judge", "justice"]}, "farmer": {"a": "farmer", "b": "1F9D1-200D-1F33E", "j": ["rancher", "crops", "gardener"]}, "man-farmer": {"a": "man farmer", "b": "1F468-200D-1F33E", "j": ["farmer", "man", "human", "rancher", "gardener"]}, "woman-farmer": {"a": "woman farmer", "b": "1F469-200D-1F33E", "j": ["farmer", "woman", "human", "rancher", "gardener"]}, "cook": {"a": "cook", "b": "1F9D1-200D-1F373", "j": ["chef", "food", "culinary", "kitchen"]}, "man-cook": {"a": "man cook", "b": "1F468-200D-1F373", "j": ["human", "cook", "chef", "man"]}, "woman-cook": {"a": "woman cook", "b": "1F469-200D-1F373", "j": ["human", "cook", "chef", "woman"]}, "mechanic": {"a": "mechanic", "b": "1F9D1-200D-1F527", "j": ["worker", "electrician", "plumber", "technician", "tradesperson"]}, "man-mechanic": {"a": "man mechanic", "b": "1F468-200D-1F527", "j": ["man", "human", "electrician", "plumber", "tradesperson", "mechanic", "wrench"]}, "woman-mechanic": {"a": "woman mechanic", "b": "1F469-200D-1F527", "j": ["woman", "human", "electrician", "plumber", "tradesperson", "mechanic", "wrench"]}, "factory-worker": {"a": "factory worker", "b": "1F9D1-200D-1F3ED", "j": ["worker", "factory", "labor", "industrial", "assembly"]}, "man-factory-worker": {"a": "man factory worker", "b": "1F468-200D-1F3ED", "j": ["man", "worker", "human", "factory", "industrial", "assembly"]}, "woman-factory-worker": {"a": "woman factory worker", "b": "1F469-200D-1F3ED", "j": ["worker", "woman", "human", "factory", "industrial", "assembly"]}, "office-worker": {"a": "office worker", "b": "1F9D1-200D-1F4BC", "j": ["white-collar", "architect", "manager", "business"]}, "man-office-worker": {"a": "man office worker", "b": "1F468-200D-1F4BC", "j": ["white-collar", "architect", "man", "business", "manager", "human"]}, "woman-office-worker": {"a": "woman office worker", "b": "1F469-200D-1F4BC", "j": ["white-collar", "architect", "manager", "business", "woman", "human"]}, "scientist": {"a": "scientist", "b": "1F9D1-200D-1F52C", "j": ["chemistry", "biologist", "physicist", "engineer", "chemist"]}, "man-scientist": {"a": "man scientist", "b": "1F468-200D-1F52C", "j": ["man", "biologist", "human", "physicist", "scientist", "engineer", "chemist"]}, "woman-scientist": {"a": "woman scientist", "b": "1F469-200D-1F52C", "j": ["biologist", "woman", "human", "physicist", "scientist", "engineer", "chemist"]}, "technologist": {"a": "technologist", "b": "1F9D1-200D-1F4BB", "j": ["computer", "software", "coder", "developer", "inventor"]}, "man-technologist": {"a": "man technologist", "b": "1F468-200D-1F4BB", "j": ["programmer", "laptop", "software", "computer", "coder", "man", "human", "developer", "inventor", "engineer", "technologist"]}, "woman-technologist": {"a": "woman technologist", "b": "1F469-200D-1F4BB", "j": ["programmer", "laptop", "software", "computer", "coder", "woman", "human", "developer", "inventor", "engineer", "technologist"]}, "singer": {"a": "singer", "b": "1F9D1-200D-1F3A4", "j": ["song", "artist", "star", "rock", "actor", "entertainer", "performer"]}, "man-singer": {"a": "man singer", "b": "1F468-200D-1F3A4", "j": ["man", "human", "star", "rockstar", "rock", "singer", "actor", "entertainer"]}, "woman-singer": {"a": "woman singer", "b": "1F469-200D-1F3A4", "j": ["woman", "human", "star", "rockstar", "rock", "singer", "actor", "entertainer"]}, "artist": {"a": "artist", "b": "1F9D1-200D-1F3A8", "j": ["painting", "creativity", "palette", "draw"]}, "man-artist": {"a": "man artist", "b": "1F468-200D-1F3A8", "j": ["man", "artist", "human", "painter", "palette"]}, "woman-artist": {"a": "woman artist", "b": "1F469-200D-1F3A8", "j": ["woman", "artist", "human", "painter", "palette"]}, "pilot": {"a": "pilot", "b": "1F9D1-200D-2708-FE0F", "j": ["airplane", "plane", "fly"]}, "man-pilot": {"a": "man pilot", "b": "1F468-200D-2708-FE0F", "j": ["man", "human", "plane", "pilot", "aviator"]}, "woman-pilot": {"a": "woman pilot", "b": "1F469-200D-2708-FE0F", "j": ["woman", "human", "plane", "pilot", "aviator"]}, "astronaut": {"a": "astronaut", "b": "1F9D1-200D-1F680", "j": ["outerspace", "rocket"]}, "man-astronaut": {"a": "man astronaut", "b": "1F468-200D-1F680", "j": ["man", "rocket", "human", "astronaut", "space"]}, "woman-astronaut": {"a": "woman astronaut", "b": "1F469-200D-1F680", "j": ["rocket", "woman", "human", "astronaut", "space"]}, "firefighter": {"a": "firefighter", "b": "1F9D1-200D-1F692", "j": ["firetruck", "fire"]}, "man-firefighter": {"a": "man firefighter", "b": "1F468-200D-1F692", "j": ["firetruck", "man", "human", "fireman", "firefighter"]}, "woman-firefighter": {"a": "woman firefighter", "b": "1F469-200D-1F692", "j": ["firetruck", "woman", "human", "fireman", "firefighter"]}, "police-officer": {"a": "police officer", "b": "1F46E", "j": ["cop", "police", "officer"]}, "man-police-officer": {"a": "man police officer", "b": "1F46E-200D-2642-FE0F", "j": ["police", "man", "officer", "law", "enforcement", "911", "legal", "cop", "arrest"]}, "woman-police-officer": {"a": "woman police officer", "b": "1F46E-200D-2640-FE0F", "j": ["police", "woman", "officer", "law", "enforcement", "arrest", "911", "legal", "cop", "female"]}, "detective": {"a": "detective", "b": "1F575", "j": ["sleuth", "human", "spy"]}, "man-detective": {"a": "man detective", "b": "1F575-FE0F-200D-2642-FE0F", "j": ["spy", "man", "crime", "sleuth", "detective"]}, "woman-detective": {"a": "woman detective", "b": "1F575-FE0F-200D-2640-FE0F", "j": ["spy", "woman", "human", "sleuth", "female", "detective"]}, "guard": {"a": "guard", "b": "1F482", "j": ["protect"]}, "man-guard": {"a": "man guard", "b": "1F482-200D-2642-FE0F", "j": ["guy", "royal", "man", "british", "male", "uk", "gb", "guard"]}, "woman-guard": {"a": "woman guard", "b": "1F482-200D-2640-FE0F", "j": ["royal", "woman", "british", "uk", "gb", "guard", "female"]}, "ninja": {"a": "ninja", "b": "1F977", "j": ["ninjutsu", "japanese", "fighter", "hidden", "stealth", "skills"]}, "construction-worker": {"a": "construction worker", "b": "1F477", "j": ["build", "construction", "worker", "hat", "labor"]}, "man-construction-worker": {"a": "man construction worker", "b": "1F477-200D-2642-FE0F", "j": ["guy", "man", "construction", "male", "worker", "human", "wip", "build", "labor"]}, "woman-construction-worker": {"a": "woman construction worker", "b": "1F477-200D-2640-FE0F", "j": ["build", "construction", "worker", "woman", "human", "wip", "labor", "female"]}, "prince": {"a": "prince", "b": "1F934", "j": ["royal", "man", "male", "crown", "king", "boy"]}, "princess": {"a": "princess", "b": "1F478", "j": ["royal", "woman", "crown", "girl", "fairy tale", "fantasy", "blond", "queen", "female"]}, "person-wearing-turban": {"a": "person wearing turban", "b": "1F473", "j": ["turban", "headdress"]}, "man-wearing-turban": {"a": "man wearing turban", "b": "1F473-200D-2642-FE0F", "j": ["man", "male", "hinduism", "turban", "indian", "arabs"]}, "woman-wearing-turban": {"a": "woman wearing turban", "b": "1F473-200D-2640-FE0F", "j": ["woman", "hinduism", "turban", "indian", "arabs", "female"]}, "person-with-skullcap": {"a": "person with skullcap", "b": "1F472", "j": ["person", "man_with_skullcap", "male", "boy", "hat", "skullcap", "cap", "gua pi mao", "chinese"]}, "woman-with-headscarf": {"a": "woman with headscarf", "b": "1F9D5", "j": ["tichel", "mantilla", "bandana", "head kerchief", "headscarf", "female", "hijab"]}, "person-in-tuxedo": {"a": "person in tuxedo", "b": "1F935", "j": ["person", "wedding", "marriage", "tuxedo", "groom", "man_in_tuxedo", "couple"]}, "man-in-tuxedo": {"a": "man in tuxedo", "b": "1F935-200D-2642-FE0F", "j": ["formal", "fashion", "man", "tuxedo"]}, "woman-in-tuxedo": {"a": "woman in tuxedo", "b": "1F935-200D-2640-FE0F", "j": ["formal", "fashion", "tuxedo", "woman"]}, "person-with-veil": {"a": "person with veil", "b": "1F470", "j": ["person", "wedding", "marriage", "woman", "bride", "veil", "bride_with_veil", "couple"]}, "man-with-veil": {"a": "man with veil", "b": "1F470-200D-2642-FE0F", "j": ["veil", "wedding", "man", "marriage"]}, "woman-with-veil": {"a": "woman with veil", "b": "1F470-200D-2640-FE0F", "j": ["veil", "wedding", "marriage", "woman"]}, "pregnant-woman": {"a": "pregnant woman", "b": "1F930", "j": ["pregnant", "baby", "woman"]}, "breastfeeding": {"a": "breast-feeding", "b": "1F931", "j": ["nursing", "breast", "baby", "breast_feeding"]}, "woman-feeding-baby": {"a": "woman feeding baby", "b": "1F469-200D-1F37C", "j": ["nursing", "birth", "woman", "baby", "feeding", "food"]}, "man-feeding-baby": {"a": "man feeding baby", "b": "1F468-200D-1F37C", "j": ["nursing", "birth", "man", "baby", "feeding", "food"]}, "person-feeding-baby": {"a": "person feeding baby", "b": "1F9D1-200D-1F37C", "j": ["nursing", "person", "birth", "baby", "feeding", "food"]}, "baby-angel": {"a": "baby angel", "b": "1F47C", "j": ["heaven", "baby", "face", "fairy tale", "fantasy", "wings", "angel", "halo"]}, "santa-claus": {"a": "Santa Claus", "b": "1F385", "j": ["claus", "man", "male", "father", "santa", "festival", "xmas", "celebration", "Christmas", "father christmas"]}, "mrs-claus": {"a": "Mrs. Claus", "b": "1F936", "j": ["claus", "Mrs.", "woman", "xmas", "celebration", "Christmas", "mother christmas", "mother", "female"]}, "mx-claus": {"a": "mx claus", "b": "1F9D1-200D-1F384", "j": ["Claus, christmas", "christmas"]}, "superhero": {"a": "superhero", "b": "1F9B8", "j": ["marvel", "superpower", "good", "heroine", "hero"]}, "man-superhero": {"a": "man superhero", "b": "1F9B8-200D-2642-FE0F", "j": ["man", "male", "superpowers", "superpower", "good", "hero"]}, "woman-superhero": {"a": "woman superhero", "b": "1F9B8-200D-2640-FE0F", "j": ["woman", "superpowers", "good", "superpower", "heroine", "hero", "female"]}, "supervillain": {"a": "supervillain", "b": "1F9B9", "j": ["marvel", "superpower", "criminal", "villain", "evil"]}, "man-supervillain": {"a": "man supervillain", "b": "1F9B9-200D-2642-FE0F", "j": ["man", "male", "superpowers", "superpower", "criminal", "bad", "villain", "evil", "hero"]}, "woman-supervillain": {"a": "woman supervillain", "b": "1F9B9-200D-2640-FE0F", "j": ["woman", "superpowers", "superpower", "criminal", "bad", "heroine", "villain", "evil", "female"]}, "mage": {"a": "mage", "b": "1F9D9", "j": ["magic", "wizard", "sorcerer", "sorceress", "witch"]}, "man-mage": {"a": "man mage", "b": "1F9D9-200D-2642-FE0F", "j": ["man", "male", "wizard", "sorcerer", "mage"]}, "woman-mage": {"a": "woman mage", "b": "1F9D9-200D-2640-FE0F", "j": ["woman", "mage", "sorceress", "witch", "female"]}, "fairy": {"a": "fairy", "b": "1F9DA", "j": ["magical", "Puck", "Titania", "Oberon", "wings"]}, "man-fairy": {"a": "man fairy", "b": "1F9DA-200D-2642-FE0F", "j": ["Puck", "Oberon", "man", "male"]}, "woman-fairy": {"a": "woman fairy", "b": "1F9DA-200D-2640-FE0F", "j": ["Titania", "woman", "female"]}, "vampire": {"a": "vampire", "b": "1F9DB", "j": ["undead", "blood", "twilight", "Dracula"]}, "man-vampire": {"a": "man vampire", "b": "1F9DB-200D-2642-FE0F", "j": ["dracula", "man", "male", "undead", "Dracula"]}, "woman-vampire": {"a": "woman vampire", "b": "1F9DB-200D-2640-FE0F", "j": ["woman", "undead", "female"]}, "merperson": {"a": "merperson", "b": "1F9DC", "j": ["mermaid", "merwoman", "sea", "merman"]}, "merman": {"a": "merman", "b": "1F9DC-200D-2642-FE0F", "j": ["triton", "Triton", "man", "male"]}, "mermaid": {"a": "mermaid", "b": "1F9DC-200D-2640-FE0F", "j": ["woman", "merwoman", "ariel", "female"]}, "elf": {"a": "elf", "b": "1F9DD", "j": ["magical", "LOTR style"]}, "man-elf": {"a": "man elf", "b": "1F9DD-200D-2642-FE0F", "j": ["magical", "man", "male"]}, "woman-elf": {"a": "woman elf", "b": "1F9DD-200D-2640-FE0F", "j": ["woman", "magical", "female"]}, "genie": {"a": "genie", "b": "1F9DE", "j": ["(non-human color)", "magical", "wishes", "djinn"]}, "man-genie": {"a": "man genie", "b": "1F9DE-200D-2642-FE0F", "j": ["male", "man", "djinn"]}, "woman-genie": {"a": "woman genie", "b": "1F9DE-200D-2640-FE0F", "j": ["female", "djinn", "woman"]}, "zombie": {"a": "zombie", "b": "1F9DF", "j": ["undead", "dead", "walking dead", "(non-human color)"]}, "man-zombie": {"a": "man zombie", "b": "1F9DF-200D-2642-FE0F", "j": ["dracula", "man", "male", "undead", "walking dead"]}, "woman-zombie": {"a": "woman zombie", "b": "1F9DF-200D-2640-FE0F", "j": ["woman", "undead", "walking dead", "female"]}, "person-getting-massage": {"a": "person getting massage", "b": "1F486", "j": ["relax", "salon", "massage", "face"]}, "man-getting-massage": {"a": "man getting massage", "b": "1F486-200D-2642-FE0F", "j": ["man", "massage", "male", "boy", "face", "head"]}, "woman-getting-massage": {"a": "woman getting massage", "b": "1F486-200D-2640-FE0F", "j": ["massage", "woman", "girl", "face", "head", "female"]}, "person-getting-haircut": {"a": "person getting haircut", "b": "1F487", "j": ["barber", "haircut", "hairstyle", "beauty", "parlor"]}, "man-getting-haircut": {"a": "man getting haircut", "b": "1F487-200D-2642-FE0F", "j": ["boy", "male", "man", "haircut"]}, "woman-getting-haircut": {"a": "woman getting haircut", "b": "1F487-200D-2640-FE0F", "j": ["woman", "girl", "haircut", "female"]}, "person-walking": {"a": "person walking", "b": "1F6B6", "j": ["move", "walking", "walk", "hike"]}, "man-walking": {"a": "man walking", "b": "1F6B6-200D-2642-FE0F", "j": ["man", "human", "steps", "feet", "hike", "walk"]}, "woman-walking": {"a": "woman walking", "b": "1F6B6-200D-2640-FE0F", "j": ["woman", "human", "steps", "feet", "hike", "walk", "female"]}, "person-standing": {"a": "person standing", "b": "1F9CD", "j": ["stand", "standing", "still"]}, "man-standing": {"a": "man standing", "b": "1F9CD-200D-2642-FE0F", "j": ["standing", "man", "still"]}, "woman-standing": {"a": "woman standing", "b": "1F9CD-200D-2640-FE0F", "j": ["standing", "still", "woman"]}, "person-kneeling": {"a": "person kneeling", "b": "1F9CE", "j": ["respectful", "pray", "kneeling", "kneel"]}, "man-kneeling": {"a": "man kneeling", "b": "1F9CE-200D-2642-FE0F", "j": ["respectful", "pray", "man", "kneeling"]}, "woman-kneeling": {"a": "woman kneeling", "b": "1F9CE-200D-2640-FE0F", "j": ["respectful", "pray", "kneeling", "woman"]}, "person-with-white-cane": {"a": "person with white cane", "b": "1F9D1-200D-1F9AF", "j": ["person_with_probing_cane", "blind", "accessibility"]}, "man-with-white-cane": {"a": "man with white cane", "b": "1F468-200D-1F9AF", "j": ["man", "blind", "accessibility", "man_with_probing_cane"]}, "woman-with-white-cane": {"a": "woman with white cane", "b": "1F469-200D-1F9AF", "j": ["woman_with_probing_cane", "blind", "accessibility", "woman"]}, "person-in-motorized-wheelchair": {"a": "person in motorized wheelchair", "b": "1F9D1-200D-1F9BC", "j": ["wheelchair", "disability", "accessibility"]}, "man-in-motorized-wheelchair": {"a": "man in motorized wheelchair", "b": "1F468-200D-1F9BC", "j": ["wheelchair", "disability", "man", "accessibility"]}, "woman-in-motorized-wheelchair": {"a": "woman in motorized wheelchair", "b": "1F469-200D-1F9BC", "j": ["wheelchair", "disability", "accessibility", "woman"]}, "person-in-manual-wheelchair": {"a": "person in manual wheelchair", "b": "1F9D1-200D-1F9BD", "j": ["wheelchair", "disability", "accessibility"]}, "man-in-manual-wheelchair": {"a": "man in manual wheelchair", "b": "1F468-200D-1F9BD", "j": ["wheelchair", "disability", "man", "accessibility"]}, "woman-in-manual-wheelchair": {"a": "woman in manual wheelchair", "b": "1F469-200D-1F9BD", "j": ["wheelchair", "disability", "accessibility", "woman"]}, "person-running": {"a": "person running", "b": "1F3C3", "j": ["running", "marathon", "move"]}, "man-running": {"a": "man running", "b": "1F3C3-200D-2642-FE0F", "j": ["man", "walking", "racing", "race", "running", "exercise", "marathon"]}, "woman-running": {"a": "woman running", "b": "1F3C3-200D-2640-FE0F", "j": ["woman", "walking", "racing", "race", "running", "exercise", "marathon", "female"]}, "woman-dancing": {"a": "woman dancing", "b": "1F483", "j": ["woman", "girl", "dance", "dancing", "fun", "female"]}, "man-dancing": {"a": "man dancing", "b": "1F57A", "j": ["man", "male", "boy", "dance", "dancing", "fun", "dancer"]}, "person-in-suit-levitating": {"a": "person in suit levitating", "b": "1F574", "j": ["person", "business", "jump", "man_in_suit_levitating", "suit", "hover", "levitate"]}, "people-with-bunny-ears": {"a": "people with bunny ears", "b": "1F46F", "j": ["costume", "partying", "perform", "bunny ear", "dancer"]}, "men-with-bunny-ears": {"a": "men with bunny ears", "b": "1F46F-200D-2642-FE0F", "j": ["boys", "male", "partying", "men", "bunny", "bunny ear", "dancer"]}, "women-with-bunny-ears": {"a": "women with bunny ears", "b": "1F46F-200D-2640-FE0F", "j": ["girls", "dancer", "partying", "bunny", "bunny ear", "women", "female"]}, "person-in-steamy-room": {"a": "person in steamy room", "b": "1F9D6", "j": ["spa", "relax", "hamam", "steambath", "sauna", "steam room"]}, "man-in-steamy-room": {"a": "man in steamy room", "b": "1F9D6-200D-2642-FE0F", "j": ["man", "male", "steamroom", "spa", "sauna", "steam room"]}, "woman-in-steamy-room": {"a": "woman in steamy room", "b": "1F9D6-200D-2640-FE0F", "j": ["woman", "steamroom", "spa", "sauna", "steam room", "female"]}, "person-climbing": {"a": "person climbing", "b": "1F9D7", "j": ["sport", "climber"]}, "man-climbing": {"a": "man climbing", "b": "1F9D7-200D-2642-FE0F", "j": ["man", "hobby", "male", "rock", "sports", "climber"]}, "woman-climbing": {"a": "woman climbing", "b": "1F9D7-200D-2640-FE0F", "j": ["hobby", "woman", "rock", "sports", "climber", "female"]}, "person-fencing": {"a": "person fencing", "b": "1F93A", "j": ["sword", "fencer", "fencing", "sports"]}, "horse-racing": {"a": "horse racing", "b": "1F3C7", "j": ["competition", "racehorse", "jockey", "racing", "gambling", "luck", "horse", "betting", "animal"]}, "skier": {"a": "skier", "b": "26F7", "j": ["sports", "snow", "winter", "ski"]}, "snowboarder": {"a": "snowboarder", "b": "1F3C2", "j": ["snow", "winter", "sports", "ski", "snowboard"]}, "person-golfing": {"a": "person golfing", "b": "1F3CC", "j": ["golf", "sports", "business", "ball"]}, "man-golfing": {"a": "man golfing", "b": "1F3CC-FE0F-200D-2642-FE0F", "j": ["golf", "sport", "man"]}, "woman-golfing": {"a": "woman golfing", "b": "1F3CC-FE0F-200D-2640-FE0F", "j": ["business", "woman", "golf", "sports", "female"]}, "person-surfing": {"a": "person surfing", "b": "1F3C4", "j": ["surfing", "sport", "sea"]}, "man-surfing": {"a": "man surfing", "b": "1F3C4-200D-2642-FE0F", "j": ["man", "surfing", "sea", "sports", "ocean", "summer", "beach"]}, "woman-surfing": {"a": "woman surfing", "b": "1F3C4-200D-2640-FE0F", "j": ["woman", "surfing", "sea", "sports", "ocean", "summer", "beach", "female"]}, "person-rowing-boat": {"a": "person rowing boat", "b": "1F6A3", "j": ["sport", "rowboat", "move", "boat"]}, "man-rowing-boat": {"a": "man rowing boat", "b": "1F6A3-200D-2642-FE0F", "j": ["man", "hobby", "boat", "water", "sports", "ship", "rowboat"]}, "woman-rowing-boat": {"a": "woman rowing boat", "b": "1F6A3-200D-2640-FE0F", "j": ["hobby", "woman", "boat", "water", "sports", "ship", "rowboat", "female"]}, "person-swimming": {"a": "person swimming", "b": "1F3CA", "j": ["sport", "pool", "swim"]}, "man-swimming": {"a": "man swimming", "b": "1F3CA-200D-2642-FE0F", "j": ["swim", "man", "human", "athlete", "water", "sports", "exercise", "summer"]}, "woman-swimming": {"a": "woman swimming", "b": "1F3CA-200D-2640-FE0F", "j": ["swim", "woman", "human", "athlete", "water", "sports", "exercise", "summer", "female"]}, "person-bouncing-ball": {"a": "person bouncing ball", "b": "26F9", "j": ["human", "sports", "ball"]}, "man-bouncing-ball": {"a": "man bouncing ball", "b": "26F9-FE0F-200D-2642-FE0F", "j": ["sport", "man", "ball"]}, "woman-bouncing-ball": {"a": "woman bouncing ball", "b": "26F9-FE0F-200D-2640-FE0F", "j": ["woman", "human", "ball", "sports", "female"]}, "person-lifting-weights": {"a": "person lifting weights", "b": "1F3CB", "j": ["sports", "training", "exercise", "weight", "lifter"]}, "man-lifting-weights": {"a": "man lifting weights", "b": "1F3CB-FE0F-200D-2642-FE0F", "j": ["sport", "weight lifter", "man"]}, "woman-lifting-weights": {"a": "woman lifting weights", "b": "1F3CB-FE0F-200D-2640-FE0F", "j": ["woman", "sports", "exercise", "weight lifter", "training", "female"]}, "person-biking": {"a": "person biking", "b": "1F6B4", "j": ["biking", "sport", "bicycle", "move", "cyclist"]}, "man-biking": {"a": "man biking", "b": "1F6B4-200D-2642-FE0F", "j": ["biking", "man", "hipster", "sports", "exercise", "bicycle", "bike", "cyclist"]}, "woman-biking": {"a": "woman biking", "b": "1F6B4-200D-2640-FE0F", "j": ["biking", "woman", "cyclist", "hipster", "sports", "exercise", "bicycle", "bike", "female"]}, "person-mountain-biking": {"a": "person mountain biking", "b": "1F6B5", "j": ["mountain", "bicyclist", "sport", "bicycle", "bike", "move", "cyclist"]}, "man-mountain-biking": {"a": "man mountain biking", "b": "1F6B5-200D-2642-FE0F", "j": ["mountain", "man", "human", "transportation", "sports", "race", "bicycle", "bike", "cyclist"]}, "woman-mountain-biking": {"a": "woman mountain biking", "b": "1F6B5-200D-2640-FE0F", "j": ["biking", "mountain", "woman", "human", "cyclist", "transportation", "sports", "race", "bicycle", "bike", "female"]}, "person-cartwheeling": {"a": "person cartwheeling", "b": "1F938", "j": ["sport", "cartwheel", "gymnastic", "gymnastics"]}, "man-cartwheeling": {"a": "man cartwheeling", "b": "1F938-200D-2642-FE0F", "j": ["cartwheel", "man", "gymnastics"]}, "woman-cartwheeling": {"a": "woman cartwheeling", "b": "1F938-200D-2640-FE0F", "j": ["cartwheel", "gymnastics", "woman"]}, "people-wrestling": {"a": "people wrestling", "b": "1F93C", "j": ["wrestle", "sport", "wrestler"]}, "men-wrestling": {"a": "men wrestling", "b": "1F93C-200D-2642-FE0F", "j": ["wrestle", "wrestlers", "sports", "men"]}, "women-wrestling": {"a": "women wrestling", "b": "1F93C-200D-2640-FE0F", "j": ["wrestle", "women", "sports", "wrestlers"]}, "person-playing-water-polo": {"a": "person playing water polo", "b": "1F93D", "j": ["sport", "polo", "water"]}, "man-playing-water-polo": {"a": "man playing water polo", "b": "1F93D-200D-2642-FE0F", "j": ["pool", "water polo", "man", "sports"]}, "woman-playing-water-polo": {"a": "woman playing water polo", "b": "1F93D-200D-2640-FE0F", "j": ["woman", "pool", "water polo", "sports"]}, "person-playing-handball": {"a": "person playing handball", "b": "1F93E", "j": ["sport", "handball", "ball"]}, "man-playing-handball": {"a": "man playing handball", "b": "1F93E-200D-2642-FE0F", "j": ["handball", "man", "sports"]}, "woman-playing-handball": {"a": "woman playing handball", "b": "1F93E-200D-2640-FE0F", "j": ["woman", "handball", "sports"]}, "person-juggling": {"a": "person juggling", "b": "1F939", "j": ["performance", "balance", "skill", "multitask", "juggle"]}, "man-juggling": {"a": "man juggling", "b": "1F939-200D-2642-FE0F", "j": ["juggling", "balance", "man", "skill", "multitask", "juggle"]}, "woman-juggling": {"a": "woman juggling", "b": "1F939-200D-2640-FE0F", "j": ["juggling", "balance", "skill", "woman", "multitask", "juggle"]}, "person-in-lotus-position": {"a": "person in lotus position", "b": "1F9D8", "j": ["meditation", "meditate", "serenity", "yoga"]}, "man-in-lotus-position": {"a": "man in lotus position", "b": "1F9D8-200D-2642-FE0F", "j": ["man", "male", "meditation", "mindfulness", "yoga", "zen", "serenity"]}, "woman-in-lotus-position": {"a": "woman in lotus position", "b": "1F9D8-200D-2640-FE0F", "j": ["woman", "meditation", "mindfulness", "yoga", "zen", "serenity", "female"]}, "person-taking-bath": {"a": "person taking bath", "b": "1F6C0", "j": ["bathroom", "bath", "clean", "shower", "bathtub"]}, "person-in-bed": {"a": "person in bed", "b": "1F6CC", "j": ["sleep", "rest", "hotel", "bed"]}, "people-holding-hands": {"a": "people holding hands", "b": "1F9D1-200D-1F91D-200D-1F9D1", "j": ["person", "friendship", "hold", "hand", "holding hands", "couple"]}, "women-holding-hands": {"a": "women holding hands", "b": "1F46D", "j": ["friendship", "people", "love", "like", "human", "hand", "holding hands", "women", "couple", "pair", "female"]}, "woman-and-man-holding-hands": {"a": "woman and man holding hands", "b": "1F46B", "j": ["love", "dating", "like", "woman", "marriage", "human", "hand", "valentines", "affection", "couple", "pair", "date", "people", "man", "hold", "holding hands"]}, "men-holding-hands": {"a": "men holding hands", "b": "1F46C", "j": ["friendship", "people", "love", "man", "twins", "like", "human", "bromance", "holding hands", "zodiac", "Gemini", "men", "couple", "pair"]}, "kiss": {"a": "kiss", "b": "1F48F", "j": ["love", "dating", "like", "marriage", "valentines", "couple", "pair"]}, "kiss-woman-man": {"a": "kiss: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["love", "man", "woman", "kiss", "couple"]}, "kiss-man-man": {"a": "kiss: man, man", "b": "1F468-200D-2764-FE0F-200D-1F48B-200D-1F468", "j": ["love", "man", "like", "dating", "marriage", "valentines", "kiss", "couple", "pair"]}, "kiss-woman-woman": {"a": "kiss: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F48B-200D-1F469", "j": ["love", "like", "dating", "woman", "marriage", "valentines", "kiss", "couple", "pair"]}, "couple-with-heart": {"a": "couple with heart", "b": "1F491", "j": ["love", "like", "dating", "marriage", "human", "valentines", "affection", "couple", "pair"]}, "couple-with-heart-woman-man": {"a": "couple with heart: woman, man", "b": "1F469-200D-2764-FE0F-200D-1F468", "j": ["love", "man", "woman", "couple with heart", "couple"]}, "couple-with-heart-man-man": {"a": "couple with heart: man, man", "b": "1F468-200D-2764-FE0F-200D-1F468", "j": ["love", "man", "like", "dating", "marriage", "human", "couple with heart", "valentines", "affection", "couple", "pair"]}, "couple-with-heart-woman-woman": {"a": "couple with heart: woman, woman", "b": "1F469-200D-2764-FE0F-200D-1F469", "j": ["love", "like", "dating", "woman", "marriage", "human", "couple with heart", "valentines", "affection", "couple", "pair"]}, "family": {"a": "family", "b": "1F46A", "j": ["people", "mom", "father", "human", "parents", "dad", "home", "child", "mother"]}, "family-man-woman-boy": {"a": "family: man, woman, boy", "b": "1F468-200D-1F469-200D-1F466", "j": ["love", "man", "woman", "boy", "family"]}, "family-man-woman-girl": {"a": "family: man, woman, girl", "b": "1F468-200D-1F469-200D-1F467", "j": ["people", "man", "woman", "human", "girl", "parents", "family", "home", "child"]}, "family-man-woman-girl-boy": {"a": "family: man, woman, girl, boy", "b": "1F468-200D-1F469-200D-1F467-200D-1F466", "j": ["people", "man", "woman", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-man-woman-boy-boy": {"a": "family: man, woman, boy, boy", "b": "1F468-200D-1F469-200D-1F466-200D-1F466", "j": ["people", "man", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-man-woman-girl-girl": {"a": "family: man, woman, girl, girl", "b": "1F468-200D-1F469-200D-1F467-200D-1F467", "j": ["people", "man", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-man-man-boy": {"a": "family: man, man, boy", "b": "1F468-200D-1F468-200D-1F466", "j": ["people", "man", "human", "boy", "parents", "family", "home", "children"]}, "family-man-man-girl": {"a": "family: man, man, girl", "b": "1F468-200D-1F468-200D-1F467", "j": ["people", "man", "human", "girl", "parents", "family", "home", "children"]}, "family-man-man-girl-boy": {"a": "family: man, man, girl, boy", "b": "1F468-200D-1F468-200D-1F467-200D-1F466", "j": ["people", "man", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-man-man-boy-boy": {"a": "family: man, man, boy, boy", "b": "1F468-200D-1F468-200D-1F466-200D-1F466", "j": ["people", "man", "human", "boy", "parents", "family", "home", "children"]}, "family-man-man-girl-girl": {"a": "family: man, man, girl, girl", "b": "1F468-200D-1F468-200D-1F467-200D-1F467", "j": ["people", "man", "human", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-boy": {"a": "family: woman, woman, boy", "b": "1F469-200D-1F469-200D-1F466", "j": ["people", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-woman-woman-girl": {"a": "family: woman, woman, girl", "b": "1F469-200D-1F469-200D-1F467", "j": ["people", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-girl-boy": {"a": "family: woman, woman, girl, boy", "b": "1F469-200D-1F469-200D-1F467-200D-1F466", "j": ["people", "woman", "human", "boy", "girl", "parents", "family", "home", "children"]}, "family-woman-woman-boy-boy": {"a": "family: woman, woman, boy, boy", "b": "1F469-200D-1F469-200D-1F466-200D-1F466", "j": ["people", "woman", "human", "boy", "parents", "family", "home", "children"]}, "family-woman-woman-girl-girl": {"a": "family: woman, woman, girl, girl", "b": "1F469-200D-1F469-200D-1F467-200D-1F467", "j": ["people", "woman", "human", "girl", "parents", "family", "home", "children"]}, "family-man-boy": {"a": "family: man, boy", "b": "1F468-200D-1F466", "j": ["people", "man", "human", "boy", "parent", "family", "home", "child"]}, "family-man-boy-boy": {"a": "family: man, boy, boy", "b": "1F468-200D-1F466-200D-1F466", "j": ["people", "man", "human", "boy", "parent", "family", "home", "children"]}, "family-man-girl": {"a": "family: man, girl", "b": "1F468-200D-1F467", "j": ["people", "man", "human", "girl", "parent", "family", "home", "child"]}, "family-man-girl-boy": {"a": "family: man, girl, boy", "b": "1F468-200D-1F467-200D-1F466", "j": ["people", "man", "human", "boy", "girl", "parent", "family", "home", "children"]}, "family-man-girl-girl": {"a": "family: man, girl, girl", "b": "1F468-200D-1F467-200D-1F467", "j": ["people", "man", "human", "girl", "parent", "family", "home", "children"]}, "family-woman-boy": {"a": "family: woman, boy", "b": "1F469-200D-1F466", "j": ["people", "woman", "human", "boy", "parent", "family", "home", "child"]}, "family-woman-boy-boy": {"a": "family: woman, boy, boy", "b": "1F469-200D-1F466-200D-1F466", "j": ["people", "woman", "human", "boy", "parent", "family", "home", "children"]}, "family-woman-girl": {"a": "family: woman, girl", "b": "1F469-200D-1F467", "j": ["people", "woman", "human", "girl", "parent", "family", "home", "child"]}, "family-woman-girl-boy": {"a": "family: woman, girl, boy", "b": "1F469-200D-1F467-200D-1F466", "j": ["people", "woman", "human", "boy", "girl", "parent", "family", "home", "children"]}, "family-woman-girl-girl": {"a": "family: woman, girl, girl", "b": "1F469-200D-1F467-200D-1F467", "j": ["people", "woman", "human", "girl", "parent", "family", "home", "children"]}, "speaking-head": {"a": "speaking head", "b": "1F5E3", "j": ["person", "talk", "human", "sing", "face", "silhouette", "speak", "say", "speaking", "user", "head"]}, "bust-in-silhouette": {"a": "bust in silhouette", "b": "1F464", "j": ["person", "bust", "human", "silhouette", "user"]}, "busts-in-silhouette": {"a": "busts in silhouette", "b": "1F465", "j": ["team", "bust", "person", "group", "human", "silhouette", "user"]}, "people-hugging": {"a": "people hugging", "b": "1FAC2", "j": ["hug", "hello", "thanks", "goodbye", "care"]}, "footprints": {"a": "footprints", "b": "1F463", "j": ["tracking", "footprint", "walking", "clothing", "feet", "print", "beach"]}, "red-hair": {"a": "red hair", "b": "1F9B0", "j": ["ginger", "red hair", "redhead"]}, "curly-hair": {"a": "curly hair", "b": "1F9B1", "j": ["afro", "curly", "curly hair", "ringlets"]}, "white-hair": {"a": "white hair", "b": "1F9B3", "j": ["gray", "hair", "old", "white"]}, "bald": {"a": "bald", "b": "1F9B2", "j": ["bald", "chemotherapy", "hairless", "no hair", "shaven"]}, "monkey-face": {"a": "monkey face", "b": "1F435", "j": ["monkey", "face", "nature", "circus", "animal"]}, "monkey": {"a": "monkey", "b": "1F412", "j": ["banana", "circus", "animal", "nature"]}, "gorilla": {"a": "gorilla", "b": "1F98D", "j": ["circus", "animal", "nature"]}, "orangutan": {"a": "orangutan", "b": "1F9A7", "j": ["animal", "ape"]}, "dog-face": {"a": "dog face", "b": "1F436", "j": ["puppy", "pet", "dog", "face", "nature", "woof", "faithful", "friend", "animal"]}, "dog": {"a": "dog", "b": "1F415", "j": ["pet", "nature", "faithful", "friend", "doge", "animal"]}, "guide-dog": {"a": "guide dog", "b": "1F9AE", "j": ["guide", "animal", "blind", "accessibility"]}, "service-dog": {"a": "service dog", "b": "1F415-200D-1F9BA", "j": ["animal", "accessibility", "dog", "assistance", "service", "blind"]}, "poodle": {"a": "poodle", "b": "1F429", "j": ["pet", "dog", "nature", "101", "animal"]}, "wolf": {"a": "wolf", "b": "1F43A", "j": ["animal", "wild", "face", "nature"]}, "fox": {"a": "fox", "b": "1F98A", "j": ["animal", "face", "nature"]}, "raccoon": {"a": "raccoon", "b": "1F99D", "j": ["curious", "sly", "animal", "nature"]}, "cat-face": {"a": "cat face", "b": "1F431", "j": ["pet", "meow", "kitten", "face", "nature", "cat", "animal"]}, "cat": {"a": "cat", "b": "1F408", "j": ["meow", "pet", "animal", "cats"]}, "black-cat": {"a": "black cat", "b": "1F408-200D-2B1B", "j": ["unlucky", "superstition", "luck", "cat", "black"]}, "lion": {"a": "lion", "b": "1F981", "j": ["zodiac", "Leo", "face", "nature", "animal"]}, "tiger-face": {"a": "tiger face", "b": "1F42F", "j": ["danger", "tiger", "face", "nature", "wild", "cat", "animal", "roar"]}, "tiger": {"a": "tiger", "b": "1F405", "j": ["roar", "animal", "nature"]}, "leopard": {"a": "leopard", "b": "1F406", "j": ["animal", "nature"]}, "horse-face": {"a": "horse face", "b": "1F434", "j": ["brown", "face", "nature", "horse", "animal"]}, "horse": {"a": "horse", "b": "1F40E", "j": ["equestrian", "gamble", "racing", "luck", "racehorse", "animal"]}, "unicorn": {"a": "unicorn", "b": "1F984", "j": ["mystical", "animal", "face", "nature"]}, "zebra": {"a": "zebra", "b": "1F993", "j": ["nature", "safari", "stripe", "stripes", "animal"]}, "deer": {"a": "deer", "b": "1F98C", "j": ["venison", "animal", "horns", "nature"]}, "bison": {"a": "bison", "b": "1F9AC", "j": ["wisent", "buffalo", "herd", "ox"]}, "cow-face": {"a": "cow face", "b": "1F42E", "j": ["cow", "milk", "beef", "ox", "face", "nature", "moo", "animal"]}, "ox": {"a": "ox", "b": "1F402", "j": ["cow", "Taurus", "beef", "zodiac", "bull", "animal"]}, "water-buffalo": {"a": "water buffalo", "b": "1F403", "j": ["cow", "buffalo", "water", "ox", "nature", "animal"]}, "cow": {"a": "cow", "b": "1F404", "j": ["milk", "beef", "ox", "nature", "moo", "animal"]}, "pig-face": {"a": "pig face", "b": "1F437", "j": ["pig", "face", "nature", "oink", "animal"]}, "pig": {"a": "pig", "b": "1F416", "j": ["nature", "animal", "sow"]}, "boar": {"a": "boar", "b": "1F417", "j": ["animal", "pig", "nature"]}, "pig-nose": {"a": "pig nose", "b": "1F43D", "j": ["pig", "face", "oink", "nose", "animal"]}, "ram": {"a": "ram", "b": "1F40F", "j": ["male", "zodiac", "nature", "sheep", "Aries", "animal"]}, "ewe": {"a": "ewe", "b": "1F411", "j": ["nature", "sheep", "shipit", "wool", "animal", "female"]}, "goat": {"a": "goat", "b": "1F410", "j": ["animal", "Capricorn", "zodiac", "nature"]}, "camel": {"a": "camel", "b": "1F42A", "j": ["hump", "dromedary", "hot", "desert", "animal"]}, "twohump-camel": {"a": "two-hump camel", "b": "1F42B", "j": ["animal", "hump", "bactrian", "hot", "desert", "nature", "camel", "two_hump_camel"]}, "llama": {"a": "llama", "b": "1F999", "j": ["guanaco", "vicuña", "alpaca", "nature", "wool", "animal"]}, "giraffe": {"a": "giraffe", "b": "1F992", "j": ["spots", "animal", "safari", "nature"]}, "elephant": {"a": "elephant", "b": "1F418", "j": ["nature", "nose", "circus", "animal", "th"]}, "mammoth": {"a": "mammoth", "b": "1F9A3", "j": ["large", "woolly", "elephant", "extinction", "tusks", "tusk"]}, "rhinoceros": {"a": "rhinoceros", "b": "1F98F", "j": ["nature", "animal", "horn"]}, "hippopotamus": {"a": "hippopotamus", "b": "1F99B", "j": ["nature", "animal", "hippo"]}, "mouse-face": {"a": "mouse face", "b": "1F42D", "j": ["mouse", "face", "nature", "animal", "cheese_wedge", "rodent"]}, "mouse": {"a": "mouse", "b": "1F401", "j": ["rodent", "animal", "nature"]}, "rat": {"a": "rat", "b": "1F400", "j": ["mouse", "animal", "rodent"]}, "hamster": {"a": "hamster", "b": "1F439", "j": ["pet", "animal", "face", "nature"]}, "rabbit-face": {"a": "rabbit face", "b": "1F430", "j": ["pet", "spring", "face", "nature", "rabbit", "bunny", "animal", "magic"]}, "rabbit": {"a": "rabbit", "b": "1F407", "j": ["pet", "spring", "nature", "bunny", "animal", "magic"]}, "chipmunk": {"a": "chipmunk", "b": "1F43F", "j": ["nature", "animal", "squirrel", "rodent"]}, "beaver": {"a": "beaver", "b": "1F9AB", "j": ["animal", "dam", "rodent"]}, "hedgehog": {"a": "hedgehog", "b": "1F994", "j": ["spiny", "animal", "nature"]}, "bat": {"a": "bat", "b": "1F987", "j": ["blind", "animal", "vampire", "nature"]}, "bear": {"a": "bear", "b": "1F43B", "j": ["animal", "wild", "face", "nature"]}, "polar-bear": {"a": "polar bear", "b": "1F43B-200D-2744-FE0F", "j": ["animal", "white", "arctic", "bear"]}, "koala": {"a": "koala", "b": "1F428", "j": ["bear", "animal", "nature"]}, "panda": {"a": "panda", "b": "1F43C", "j": ["animal", "face", "nature"]}, "sloth": {"a": "sloth", "b": "1F9A5", "j": ["slow", "animal", "lazy"]}, "otter": {"a": "otter", "b": "1F9A6", "j": ["playful", "animal", "fishing"]}, "skunk": {"a": "skunk", "b": "1F9A8", "j": ["stink", "animal"]}, "kangaroo": {"a": "kangaroo", "b": "1F998", "j": ["Australia", "australia", "hop", "joey", "nature", "marsupial", "animal", "jump"]}, "badger": {"a": "badger", "b": "1F9A1", "j": ["nature", "pester", "honey badger", "honey", "animal"]}, "paw-prints": {"a": "paw prints", "b": "1F43E", "j": ["pet", "tracking", "dog", "feet", "paw", "cat", "print", "animal", "footprints"]}, "turkey": {"a": "turkey", "b": "1F983", "j": ["animal", "bird"]}, "chicken": {"a": "chicken", "b": "1F414", "j": ["cluck", "animal", "bird", "nature"]}, "rooster": {"a": "rooster", "b": "1F413", "j": ["chicken", "animal", "bird", "nature"]}, "hatching-chick": {"a": "hatching chick", "b": "1F423", "j": ["born", "hatching", "baby", "bird", "chicken", "chick", "egg", "animal"]}, "baby-chick": {"a": "baby chick", "b": "1F424", "j": ["baby", "bird", "chicken", "chick", "animal"]}, "frontfacing-baby-chick": {"a": "front-facing baby chick", "b": "1F425", "j": ["baby", "bird", "chicken", "front_facing_baby_chick", "chick", "animal"]}, "bird": {"a": "bird", "b": "1F426", "j": ["tweet", "spring", "nature", "fly", "animal"]}, "penguin": {"a": "penguin", "b": "1F427", "j": ["animal", "bird", "nature"]}, "dove": {"a": "dove", "b": "1F54A", "j": ["fly", "animal", "bird", "peace"]}, "eagle": {"a": "eagle", "b": "1F985", "j": ["animal", "bird", "nature"]}, "duck": {"a": "duck", "b": "1F986", "j": ["animal", "bird", "mallard", "nature"]}, "swan": {"a": "swan", "b": "1F9A2", "j": ["ugly duckling", "cygnet", "bird", "nature", "animal"]}, "owl": {"a": "owl", "b": "1F989", "j": ["bird", "wise", "nature", "hoot", "animal"]}, "dodo": {"a": "dodo", "b": "1F9A4", "j": ["large", "bird", "Mauritius", "extinction", "animal"]}, "feather": {"a": "feather", "b": "1FAB6", "j": ["flight", "bird", "plumage", "light", "fly"]}, "flamingo": {"a": "flamingo", "b": "1F9A9", "j": ["tropical", "flamboyant", "animal"]}, "peacock": {"a": "peacock", "b": "1F99A", "j": ["peahen", "bird", "proud", "nature", "ostentatious", "animal"]}, "parrot": {"a": "parrot", "b": "1F99C", "j": ["talk", "pirate", "bird", "nature", "animal"]}, "frog": {"a": "frog", "b": "1F438", "j": ["croak", "face", "toad", "nature", "animal"]}, "crocodile": {"a": "crocodile", "b": "1F40A", "j": ["reptile", "alligator", "nature", "animal", "lizard"]}, "turtle": {"a": "turtle", "b": "1F422", "j": ["slow", "nature", "tortoise", "terrapin", "animal"]}, "lizard": {"a": "lizard", "b": "1F98E", "j": ["reptile", "animal", "nature"]}, "snake": {"a": "snake", "b": "1F40D", "j": ["serpent", "Ophiuchus", "zodiac", "nature", "hiss", "bearer", "evil", "animal", "python"]}, "dragon-face": {"a": "dragon face", "b": "1F432", "j": ["face", "myth", "fairy tale", "nature", "dragon", "chinese", "green", "animal"]}, "dragon": {"a": "dragon", "b": "1F409", "j": ["myth", "nature", "fairy tale", "chinese", "green", "animal"]}, "sauropod": {"a": "sauropod", "b": "1F995", "j": ["diplodocus", "brontosaurus", "nature", "dinosaur", "extinct", "animal", "brachiosaurus"]}, "trex": {"a": "T-Rex", "b": "1F996", "j": ["nature", "Tyrannosaurus Rex", "dinosaur", "t_rex", "tyrannosaurus", "extinct", "animal"]}, "spouting-whale": {"a": "spouting whale", "b": "1F433", "j": ["spouting", "whale", "sea", "face", "nature", "ocean", "animal"]}, "whale": {"a": "whale", "b": "1F40B", "j": ["ocean", "animal", "sea", "nature"]}, "dolphin": {"a": "dolphin", "b": "1F42C", "j": ["sea", "fish", "nature", "flipper", "ocean", "animal", "fins", "beach"]}, "seal": {"a": "seal", "b": "1F9AD", "j": ["sea", "sea lion", "animal", "creature"]}, "fish": {"a": "fish", "b": "1F41F", "j": ["zodiac", "nature", "Pisces", "food", "animal"]}, "tropical-fish": {"a": "tropical fish", "b": "1F420", "j": ["swim", "fish", "ocean", "nemo", "tropical", "animal", "beach"]}, "blowfish": {"a": "blowfish", "b": "1F421", "j": ["sea", "fish", "nature", "ocean", "food", "animal"]}, "shark": {"a": "shark", "b": "1F988", "j": ["jaws", "sea", "fish", "nature", "ocean", "animal", "fins", "beach"]}, "octopus": {"a": "octopus", "b": "1F419", "j": ["sea", "nature", "ocean", "creature", "animal", "beach"]}, "spiral-shell": {"a": "spiral shell", "b": "1F41A", "j": ["sea", "shell", "nature", "spiral", "beach"]}, "snail": {"a": "snail", "b": "1F40C", "j": ["slow", "animal", "shell"]}, "butterfly": {"a": "butterfly", "b": "1F98B", "j": ["caterpillar", "nature", "pretty", "insect", "animal"]}, "bug": {"a": "bug", "b": "1F41B", "j": ["worm", "insect", "animal", "nature"]}, "ant": {"a": "ant", "b": "1F41C", "j": ["bug", "insect", "animal", "nature"]}, "honeybee": {"a": "honeybee", "b": "1F41D", "j": ["spring", "nature", "bug", "bee", "honey", "insect", "animal"]}, "beetle": {"a": "beetle", "b": "1FAB2", "j": ["insect", "bug"]}, "lady-beetle": {"a": "lady beetle", "b": "1F41E", "j": ["beetle", "nature", "ladybird", "ladybug", "insect", "animal"]}, "cricket": {"a": "cricket", "b": "1F997", "j": ["chirp", "animal", "Orthoptera", "grasshopper"]}, "cockroach": {"a": "cockroach", "b": "1FAB3", "j": ["pest", "pests", "insect", "roach"]}, "spider": {"a": "spider", "b": "1F577", "j": ["arachnid", "animal", "insect"]}, "spider-web": {"a": "spider web", "b": "1F578", "j": ["silk", "spider", "arachnid", "insect", "animal", "web"]}, "scorpion": {"a": "scorpion", "b": "1F982", "j": ["Scorpio", "zodiac", "scorpio", "arachnid", "animal"]}, "mosquito": {"a": "mosquito", "b": "1F99F", "j": ["malaria", "pest", "nature", "disease", "fever", "insect", "animal", "virus"]}, "fly": {"a": "fly", "b": "1FAB0", "j": ["pest", "rotting", "disease", "maggot", "insect"]}, "worm": {"a": "worm", "b": "1FAB1", "j": ["earthworm", "animal", "annelid", "parasite"]}, "microbe": {"a": "microbe", "b": "1F9A0", "j": ["bacteria", "germs", "amoeba", "virus"]}, "bouquet": {"a": "bouquet", "b": "1F490", "j": ["flowers", "flower", "spring", "nature"]}, "cherry-blossom": {"a": "cherry blossom", "b": "1F338", "j": ["flower", "spring", "nature", "plant", "cherry", "blossom"]}, "white-flower": {"a": "white flower", "b": "1F4AE", "j": ["flower", "japanese", "spring"]}, "rosette": {"a": "rosette", "b": "1F3F5", "j": ["military", "plant", "decoration", "flower"]}, "rose": {"a": "rose", "b": "1F339", "j": ["flower", "love", "spring", "valentines", "flowers"]}, "wilted-flower": {"a": "wilted flower", "b": "1F940", "j": ["flower", "plant", "wilted", "nature"]}, "hibiscus": {"a": "hibiscus", "b": "1F33A", "j": ["flower", "plant", "flowers", "vegetable", "beach"]}, "sunflower": {"a": "sunflower", "b": "1F33B", "j": ["sun", "flower", "nature", "fall", "plant"]}, "blossom": {"a": "blossom", "b": "1F33C", "j": ["flowers", "flower", "yellow", "nature"]}, "tulip": {"a": "tulip", "b": "1F337", "j": ["flower", "spring", "nature", "plant", "summer", "flowers"]}, "seedling": {"a": "seedling", "b": "1F331", "j": ["spring", "young", "lawn", "nature", "plant", "grass"]}, "potted-plant": {"a": "potted plant", "b": "1FAB4", "j": ["house", "nurturing", "greenery", "grow", "plant", "useless", "boring"]}, "evergreen-tree": {"a": "evergreen tree", "b": "1F332", "j": ["tree", "plant", "nature"]}, "deciduous-tree": {"a": "deciduous tree", "b": "1F333", "j": ["shedding", "deciduous", "nature", "plant", "tree"]}, "palm-tree": {"a": "palm tree", "b": "1F334", "j": ["nature", "plant", "tree", "mojito", "summer", "tropical", "vegetable", "palm", "beach"]}, "cactus": {"a": "cactus", "b": "1F335", "j": ["plant", "vegetable", "nature"]}, "sheaf-of-rice": {"a": "sheaf of rice", "b": "1F33E", "j": ["rice", "grain", "nature", "ear", "plant"]}, "herb": {"a": "herb", "b": "1F33F", "j": ["weed", "leaf", "lawn", "medicine", "plant", "vegetable", "grass"]}, "shamrock": {"a": "shamrock", "b": "2618", "j": ["clover", "nature", "plant", "irish", "vegetable"]}, "four-leaf-clover": {"a": "four leaf clover", "b": "1F340", "j": ["four-leaf clover", "leaf", "lucky", "four", "clover", "nature", "plant", "4", "irish", "vegetable"]}, "maple-leaf": {"a": "maple leaf", "b": "1F341", "j": ["leaf", "maple", "ca", "nature", "fall", "plant", "falling", "vegetable"]}, "fallen-leaf": {"a": "fallen leaf", "b": "1F342", "j": ["leaf", "nature", "plant", "falling", "leaves", "vegetable"]}, "leaf-fluttering-in-wind": {"a": "leaf fluttering in wind", "b": "1F343", "j": ["flutter", "leaf", "spring", "lawn", "blow", "nature", "plant", "tree", "vegetable", "wind", "grass"]}, "grapes": {"a": "grapes", "b": "1F347", "j": ["wine", "grape", "food", "fruit"]}, "melon": {"a": "melon", "b": "1F348", "j": ["nature", "food", "fruit"]}, "watermelon": {"a": "watermelon", "b": "1F349", "j": ["fruit", "food", "picnic", "summer"]}, "tangerine": {"a": "tangerine", "b": "1F34A", "j": ["fruit", "food", "orange", "nature"]}, "lemon": {"a": "lemon", "b": "1F34B", "j": ["citrus", "nature", "fruit"]}, "banana": {"a": "banana", "b": "1F34C", "j": ["monkey", "food", "fruit"]}, "pineapple": {"a": "pineapple", "b": "1F34D", "j": ["nature", "food", "fruit"]}, "mango": {"a": "mango", "b": "1F96D", "j": ["tropical", "food", "fruit"]}, "red-apple": {"a": "red apple", "b": "1F34E", "j": ["apple", "fruit", "school", "mac", "red"]}, "green-apple": {"a": "green apple", "b": "1F34F", "j": ["fruit", "apple", "green", "nature"]}, "pear": {"a": "pear", "b": "1F350", "j": ["nature", "food", "fruit"]}, "peach": {"a": "peach", "b": "1F351", "j": ["nature", "food", "fruit"]}, "cherries": {"a": "cherries", "b": "1F352", "j": ["fruit", "red", "cherry", "food", "berries"]}, "strawberry": {"a": "strawberry", "b": "1F353", "j": ["fruit", "food", "berry", "nature"]}, "blueberries": {"a": "blueberries", "b": "1FAD0", "j": ["blue", "blueberry", "berry", "bilberry", "fruit"]}, "kiwi-fruit": {"a": "kiwi fruit", "b": "1F95D", "j": ["kiwi", "food", "fruit"]}, "tomato": {"a": "tomato", "b": "1F345", "j": ["fruit", "food", "vegetable", "nature"]}, "olive": {"a": "olive", "b": "1FAD2", "j": ["food", "fruit"]}, "coconut": {"a": "coconut", "b": "1F965", "j": ["fruit", "piña colada", "nature", "food", "palm"]}, "avocado": {"a": "avocado", "b": "1F951", "j": ["food", "fruit"]}, "eggplant": {"a": "eggplant", "b": "1F346", "j": ["aubergine", "food", "vegetable", "nature"]}, "potato": {"a": "potato", "b": "1F954", "j": ["tuber", "starch", "vegatable", "food", "vegetable"]}, "carrot": {"a": "carrot", "b": "1F955", "j": ["food", "vegetable", "orange"]}, "ear-of-corn": {"a": "ear of corn", "b": "1F33D", "j": ["corn", "maze", "ear", "food", "plant", "maize", "vegetable"]}, "hot-pepper": {"a": "hot pepper", "b": "1F336", "j": ["chili", "hot", "spicy", "pepper", "food", "chilli"]}, "bell-pepper": {"a": "bell pepper", "b": "1FAD1", "j": ["fruit", "pepper", "capsicum", "plant", "vegetable"]}, "cucumber": {"a": "cucumber", "b": "1F952", "j": ["pickle", "food", "vegetable", "fruit"]}, "leafy-green": {"a": "leafy green", "b": "1F96C", "j": ["cabbage", "kale", "bok choy", "plant", "food", "lettuce", "vegetable"]}, "broccoli": {"a": "broccoli", "b": "1F966", "j": ["wild cabbage", "food", "vegetable", "fruit"]}, "garlic": {"a": "garlic", "b": "1F9C4", "j": ["cook", "food", "flavoring", "spice"]}, "onion": {"a": "onion", "b": "1F9C5", "j": ["cook", "food", "flavoring", "spice"]}, "mushroom": {"a": "mushroom", "b": "1F344", "j": ["plant", "vegetable", "toadstool"]}, "peanuts": {"a": "peanuts", "b": "1F95C", "j": ["nut", "food", "vegetable", "peanut"]}, "chestnut": {"a": "chestnut", "b": "1F330", "j": ["plant", "food", "squirrel"]}, "bread": {"a": "bread", "b": "1F35E", "j": ["loaf", "toast", "breakfast", "food", "wheat"]}, "croissant": {"a": "croissant", "b": "1F950", "j": ["french", "bread", "breakfast", "food", "roll"]}, "baguette-bread": {"a": "baguette bread", "b": "1F956", "j": ["french", "baguette", "food", "bread"]}, "flatbread": {"a": "flatbread", "b": "1FAD3", "j": ["arepa", "lavash", "naan", "pita", "food", "flour"]}, "pretzel": {"a": "pretzel", "b": "1F968", "j": ["convoluted", "food", "bread", "twisted"]}, "bagel": {"a": "bagel", "b": "1F96F", "j": ["bread", "bakery", "breakfast", "food", "schmear"]}, "pancakes": {"a": "pancakes", "b": "1F95E", "j": ["hotcakes", "hotcake", "pancake", "flapjacks", "breakfast", "food", "crêpe"]}, "waffle": {"a": "waffle", "b": "1F9C7", "j": ["iron", "food", "breakfast", "indecisive"]}, "cheese-wedge": {"a": "cheese wedge", "b": "1F9C0", "j": ["chadder", "food", "cheese"]}, "meat-on-bone": {"a": "meat on bone", "b": "1F356", "j": ["drumstick", "bone", "good", "meat", "food"]}, "poultry-leg": {"a": "poultry leg", "b": "1F357", "j": ["leg", "drumstick", "bone", "poultry", "bird", "meat", "chicken", "food", "turkey"]}, "cut-of-meat": {"a": "cut of meat", "b": "1F969", "j": ["cow", "steak", "meat", "food", "lambchop", "chop", "porkchop", "cut"]}, "bacon": {"a": "bacon", "b": "1F953", "j": ["pig", "meat", "breakfast", "food", "pork"]}, "hamburger": {"a": "hamburger", "b": "1F354", "j": ["burger king", "fast food", "beef", "meat", "burger", "mcdonalds", "cheeseburger"]}, "french-fries": {"a": "french fries", "b": "1F35F", "j": ["fries", "fast food", "french", "chips", "snack"]}, "pizza": {"a": "pizza", "b": "1F355", "j": ["food", "cheese", "party", "slice"]}, "hot-dog": {"a": "hot dog", "b": "1F32D", "j": ["food", "hotdog", "sausage", "frankfurter"]}, "sandwich": {"a": "sandwich", "b": "1F96A", "j": ["lunch", "food", "bread"]}, "taco": {"a": "taco", "b": "1F32E", "j": ["food", "mexican"]}, "burrito": {"a": "burrito", "b": "1F32F", "j": ["food", "mexican", "wrap"]}, "tamale": {"a": "tamale", "b": "1FAD4", "j": ["masa", "food", "wrapped", "mexican"]}, "stuffed-flatbread": {"a": "stuffed flatbread", "b": "1F959", "j": ["kebab", "flatbread", "food", "stuffed", "gyro", "falafel"]}, "falafel": {"a": "falafel", "b": "1F9C6", "j": ["chickpea", "food", "meatball"]}, "egg": {"a": "egg", "b": "1F95A", "j": ["breakfast", "food", "chicken"]}, "cooking": {"a": "cooking", "b": "1F373", "j": ["breakfast", "food", "frying", "kitchen", "egg", "pan"]}, "shallow-pan-of-food": {"a": "shallow pan of food", "b": "1F958", "j": ["cooking", "shallow", "paella", "food", "pan", "casserole"]}, "pot-of-food": {"a": "pot of food", "b": "1F372", "j": ["pot", "stew", "soup", "meat", "food"]}, "fondue": {"a": "fondue", "b": "1FAD5", "j": ["pot", "melted", "cheese", "chocolate", "food", "Swiss"]}, "bowl-with-spoon": {"a": "bowl with spoon", "b": "1F963", "j": ["porridge", "breakfast", "food", "cereal", "congee", "oatmeal"]}, "green-salad": {"a": "green salad", "b": "1F957", "j": ["salad", "healthy", "food", "green", "lettuce"]}, "popcorn": {"a": "popcorn", "b": "1F37F", "j": ["snack", "food", "films", "movie theater"]}, "butter": {"a": "butter", "b": "1F9C8", "j": ["cook", "food", "dairy"]}, "salt": {"a": "salt", "b": "1F9C2", "j": ["shaker", "condiment"]}, "canned-food": {"a": "canned food", "b": "1F96B", "j": ["soup", "food", "can"]}, "bento-box": {"a": "bento box", "b": "1F371", "j": ["food", "box", "japanese", "bento"]}, "rice-cracker": {"a": "rice cracker", "b": "1F358", "j": ["rice", "food", "japanese", "cracker"]}, "rice-ball": {"a": "rice ball", "b": "1F359", "j": ["rice", "Japanese", "japanese", "ball", "food"]}, "cooked-rice": {"a": "cooked rice", "b": "1F35A", "j": ["china", "rice", "asian", "food", "cooked"]}, "curry-rice": {"a": "curry rice", "b": "1F35B", "j": ["curry", "rice", "hot", "spicy", "food", "indian"]}, "steaming-bowl": {"a": "steaming bowl", "b": "1F35C", "j": ["bowl", "japanese", "steaming", "food", "noodle", "ramen", "chopsticks"]}, "spaghetti": {"a": "spaghetti", "b": "1F35D", "j": ["italian", "food", "noodle", "pasta"]}, "roasted-sweet-potato": {"a": "roasted sweet potato", "b": "1F360", "j": ["roasted", "potato", "nature", "sweet", "food"]}, "oden": {"a": "oden", "b": "1F362", "j": ["stick", "kebab", "skewer", "japanese", "food", "seafood"]}, "sushi": {"a": "sushi", "b": "1F363", "j": ["rice", "food", "japanese", "fish"]}, "fried-shrimp": {"a": "fried shrimp", "b": "1F364", "j": ["prawn", "shrimp", "appetizer", "fried", "tempura", "food", "summer", "animal"]}, "fish-cake-with-swirl": {"a": "fish cake with swirl", "b": "1F365", "j": ["beach", "pink", "narutomaki", "sea", "fish", "surimi", "pastry", "cake", "food", "ramen", "swirl", "kamaboko", "japan"]}, "moon-cake": {"a": "moon cake", "b": "1F96E", "j": ["food", "yuèbǐng", "festival", "autumn"]}, "dango": {"a": "dango", "b": "1F361", "j": ["stick", "dessert", "Japanese", "japanese", "meat", "sweet", "barbecue", "food", "skewer"]}, "dumpling": {"a": "dumpling", "b": "1F95F", "j": ["jiaozi", "food", "pierogi", "empanada", "gyōza", "potsticker"]}, "fortune-cookie": {"a": "fortune cookie", "b": "1F960", "j": ["food", "prophecy"]}, "takeout-box": {"a": "takeout box", "b": "1F961", "j": ["oyster pail", "leftovers", "food"]}, "crab": {"a": "crab", "b": "1F980", "j": ["crustacean", "animal", "zodiac", "Cancer"]}, "lobster": {"a": "lobster", "b": "1F99E", "j": ["claws", "bisque", "nature", "animal", "seafood"]}, "shrimp": {"a": "shrimp", "b": "1F990", "j": ["shellfish", "nature", "ocean", "food", "small", "animal", "seafood"]}, "squid": {"a": "squid", "b": "1F991", "j": ["sea", "nature", "ocean", "food", "animal", "molusc"]}, "oyster": {"a": "oyster", "b": "1F9AA", "j": ["food", "pearl", "diving"]}, "soft-ice-cream": {"a": "soft ice cream", "b": "1F366", "j": ["hot", "dessert", "ice", "soft", "icecream", "sweet", "food", "summer", "cream"]}, "shaved-ice": {"a": "shaved ice", "b": "1F367", "j": ["hot", "dessert", "ice", "sweet", "summer", "shaved"]}, "ice-cream": {"a": "ice cream", "b": "1F368", "j": ["hot", "dessert", "ice", "sweet", "food", "cream"]}, "doughnut": {"a": "doughnut", "b": "1F369", "j": ["dessert", "sweet", "breakfast", "food", "snack", "donut"]}, "cookie": {"a": "cookie", "b": "1F36A", "j": ["dessert", "sweet", "chocolate", "food", "snack", "oreo"]}, "birthday-cake": {"a": "birthday cake", "b": "1F382", "j": ["birthday", "dessert", "pastry", "celebration", "sweet", "cake", "food"]}, "shortcake": {"a": "shortcake", "b": "1F370", "j": ["dessert", "pastry", "sweet", "cake", "food", "slice"]}, "cupcake": {"a": "cupcake", "b": "1F9C1", "j": ["sweet", "bakery", "dessert", "food"]}, "pie": {"a": "pie", "b": "1F967", "j": ["fruit", "dessert", "meat", "filling", "pastry", "food"]}, "chocolate-bar": {"a": "chocolate bar", "b": "1F36B", "j": ["dessert", "bar", "sweet", "chocolate", "food", "snack"]}, "candy": {"a": "candy", "b": "1F36C", "j": ["sweet", "snack", "dessert", "lolly"]}, "lollipop": {"a": "lollipop", "b": "1F36D", "j": ["dessert", "sweet", "candy", "food", "snack"]}, "custard": {"a": "custard", "b": "1F36E", "j": ["sweet", "dessert", "food", "pudding"]}, "honey-pot": {"a": "honey pot", "b": "1F36F", "j": ["pot", "kitchen", "bees", "sweet", "honeypot", "honey"]}, "baby-bottle": {"a": "baby bottle", "b": "1F37C", "j": ["milk", "drink", "bottle", "baby", "food", "container"]}, "glass-of-milk": {"a": "glass of milk", "b": "1F95B", "j": ["cow", "milk", "drink", "beverage", "glass"]}, "hot-beverage": {"a": "hot beverage", "b": "2615", "j": ["hot", "beverage", "drink", "steaming", "coffee", "caffeine", "tea", "latte", "espresso"]}, "teapot": {"a": "teapot", "b": "1FAD6", "j": ["hot", "pot", "drink", "tea"]}, "teacup-without-handle": {"a": "teacup without handle", "b": "1F375", "j": ["bowl", "cup", "british", "beverage", "teacup", "drink", "breakfast", "tea", "green"]}, "sake": {"a": "sake", "b": "1F376", "j": ["cup", "wine", "beverage", "drink", "drunk", "bottle", "bar", "japanese", "alcohol", "booze"]}, "bottle-with-popping-cork": {"a": "bottle with popping cork", "b": "1F37E", "j": ["wine", "drink", "bottle", "bar", "celebration", "popping", "cork"]}, "wine-glass": {"a": "wine glass", "b": "1F377", "j": ["wine", "beverage", "drink", "drunk", "alcohol", "bar", "booze", "glass"]}, "cocktail-glass": {"a": "cocktail glass", "b": "1F378", "j": ["drink", "alcohol", "drunk", "beverage", "bar", "cocktail", "mojito", "booze", "glass"]}, "tropical-drink": {"a": "tropical drink", "b": "1F379", "j": ["drink", "beverage", "alcohol", "bar", "cocktail", "mojito", "summer", "tropical", "booze", "beach"]}, "beer-mug": {"a": "beer mug", "b": "1F37A", "j": ["pub", "drink", "beverage", "drunk", "alcohol", "bar", "relax", "mug", "party", "summer", "booze", "beer"]}, "clinking-beer-mugs": {"a": "clinking beer mugs", "b": "1F37B", "j": ["pub", "drink", "beverage", "drunk", "alcohol", "clink", "bar", "relax", "mug", "party", "summer", "booze", "beer"]}, "clinking-glasses": {"a": "clinking glasses", "b": "1F942", "j": ["cheers", "toast", "champagne", "wine", "drink", "beverage", "alcohol", "clink", "party", "glass", "celebrate"]}, "tumbler-glass": {"a": "tumbler glass", "b": "1F943", "j": ["bourbon", "shot", "drink", "beverage", "drunk", "alcohol", "scotch", "liquor", "tumbler", "whisky", "booze", "glass"]}, "cup-with-straw": {"a": "cup with straw", "b": "1F964", "j": ["malt", "drink", "water", "soft drink", "soda", "juice"]}, "bubble-tea": {"a": "bubble tea", "b": "1F9CB", "j": ["bubble", "boba", "tea", "milk", "pearl", "straw", "milk tea", "taiwan"]}, "beverage-box": {"a": "beverage box", "b": "1F9C3", "j": ["beverage", "drink", "sweet", "straw", "juice", "box"]}, "mate": {"a": "mate", "b": "1F9C9", "j": ["drink", "beverage", "tea"]}, "ice": {"a": "ice", "b": "1F9CA", "j": ["iceberg", "cold", "ice cube", "water"]}, "chopsticks": {"a": "chopsticks", "b": "1F962", "j": ["food", "jeotgarak", "kuaizi", "hashi"]}, "fork-and-knife-with-plate": {"a": "fork and knife with plate", "b": "1F37D", "j": ["meal", "plate", "dinner", "knife", "eat", "lunch", "cooking", "food", "restaurant", "fork"]}, "fork-and-knife": {"a": "fork and knife", "b": "1F374", "j": ["knife", "cutlery", "cooking", "kitchen", "fork"]}, "spoon": {"a": "spoon", "b": "1F944", "j": ["kitchen", "tableware", "cutlery"]}, "kitchen-knife": {"a": "kitchen knife", "b": "1F52A", "j": ["hocho", "knife", "cutlery", "cooking", "weapon", "blade", "kitchen", "tool"]}, "amphora": {"a": "amphora", "b": "1F3FA", "j": ["Aquarius", "jar", "drink", "cooking", "zodiac", "vase", "jug"]}, "globe-showing-europeafrica": {"a": "globe showing Europe-Africa", "b": "1F30D", "j": ["Africa", "globe", "earth", "international", "Europe", "globe_showing_europe_africa", "world"]}, "globe-showing-americas": {"a": "globe showing Americas", "b": "1F30E", "j": ["globe", "earth", "international", "USA", "Americas", "world"]}, "globe-showing-asiaaustralia": {"a": "globe showing Asia-Australia", "b": "1F30F", "j": ["Asia", "globe", "earth", "globe_showing_asia_australia", "east", "Australia", "international", "world"]}, "globe-with-meridians": {"a": "globe with meridians", "b": "1F310", "j": ["meridians", "globe", "earth", "i18n", "international", "world", "internet", "interweb"]}, "world-map": {"a": "world map", "b": "1F5FA", "j": ["map", "location", "world", "direction"]}, "map-of-japan": {"a": "map of Japan", "b": "1F5FE", "j": ["asia", "map", "japanese", "country", "nation", "Japan"]}, "compass": {"a": "compass", "b": "1F9ED", "j": ["orienteering", "navigation", "magnetic"]}, "snowcapped-mountain": {"a": "snow-capped mountain", "b": "1F3D4", "j": ["snow", "mountain", "environment", "cold", "winter", "nature", "photo", "snow_capped_mountain"]}, "mountain": {"a": "mountain", "b": "26F0", "j": ["environment", "photo", "nature"]}, "volcano": {"a": "volcano", "b": "1F30B", "j": ["mountain", "eruption", "disaster", "nature", "photo"]}, "mount-fuji": {"a": "mount fuji", "b": "1F5FB", "j": ["fuji", "mountain", "japanese", "nature", "photo"]}, "camping": {"a": "camping", "b": "1F3D5", "j": ["outdoors", "photo", "tent"]}, "beach-with-umbrella": {"a": "beach with umbrella", "b": "1F3D6", "j": ["sand", "weather", "umbrella", "mojito", "summer", "sunny", "beach"]}, "desert": {"a": "desert", "b": "1F3DC", "j": ["warm", "saharah", "photo"]}, "desert-island": {"a": "desert island", "b": "1F3DD", "j": ["desert", "photo", "mojito", "tropical", "island"]}, "national-park": {"a": "national park", "b": "1F3DE", "j": ["environment", "park", "photo", "nature"]}, "stadium": {"a": "stadium", "b": "1F3DF", "j": ["venue", "sports", "place", "photo", "concert"]}, "classical-building": {"a": "classical building", "b": "1F3DB", "j": ["classical", "history", "culture", "art"]}, "building-construction": {"a": "building construction", "b": "1F3D7", "j": ["progress", "working", "wip", "construction"]}, "brick": {"a": "brick", "b": "1F9F1", "j": ["bricks", "wall", "clay", "mortar"]}, "rock": {"a": "rock", "b": "1FAA8", "j": ["stone", "heavy", "boulder", "solid"]}, "wood": {"a": "wood", "b": "1FAB5", "j": ["timber", "trunk", "log", "lumber", "nature"]}, "hut": {"a": "hut", "b": "1F6D6", "j": ["house", "structure", "yurt", "roundhouse"]}, "houses": {"a": "houses", "b": "1F3D8", "j": ["photo", "buildings"]}, "derelict-house": {"a": "derelict house", "b": "1F3DA", "j": ["abandon", "house", "broken", "building", "derelict", "evict"]}, "house": {"a": "house", "b": "1F3E0", "j": ["building", "home"]}, "house-with-garden": {"a": "house with garden", "b": "1F3E1", "j": ["garden", "house", "nature", "plant", "home"]}, "office-building": {"a": "office building", "b": "1F3E2", "j": ["bureau", "work", "building"]}, "japanese-post-office": {"a": "Japanese post office", "b": "1F3E3", "j": ["envelope", "communication", "Japanese", "building", "post"]}, "post-office": {"a": "post office", "b": "1F3E4", "j": ["email", "post", "European", "building"]}, "hospital": {"a": "hospital", "b": "1F3E5", "j": ["surgery", "building", "doctor", "medicine", "health"]}, "bank": {"a": "bank", "b": "1F3E6", "j": ["cash", "business", "building", "enterprise", "money", "sales"]}, "hotel": {"a": "hotel", "b": "1F3E8", "j": ["checkin", "accomodation", "building"]}, "love-hotel": {"a": "love hotel", "b": "1F3E9", "j": ["like", "dating", "love", "affection", "hotel"]}, "convenience-store": {"a": "convenience store", "b": "1F3EA", "j": ["shopping", "groceries", "building", "store", "convenience"]}, "school": {"a": "school", "b": "1F3EB", "j": ["learn", "building", "education", "student", "teach"]}, "department-store": {"a": "department store", "b": "1F3EC", "j": ["shopping", "department", "mall", "building", "store"]}, "factory": {"a": "factory", "b": "1F3ED", "j": ["smoke", "pollution", "building", "industry"]}, "japanese-castle": {"a": "Japanese castle", "b": "1F3EF", "j": ["castle", "Japanese", "photo", "building"]}, "castle": {"a": "castle", "b": "1F3F0", "j": ["history", "royalty", "European", "building"]}, "wedding": {"a": "wedding", "b": "1F492", "j": ["love", "like", "marriage", "bride", "groom", "romance", "chapel", "affection", "couple"]}, "tokyo-tower": {"a": "Tokyo tower", "b": "1F5FC", "j": ["japanese", "photo", "Tokyo", "tower"]}, "statue-of-liberty": {"a": "Statue of Liberty", "b": "1F5FD", "j": ["newyork", "liberty", "statue", "american"]}, "church": {"a": "church", "b": "26EA", "j": ["cross", "Christian", "building", "christ", "religion"]}, "mosque": {"a": "mosque", "b": "1F54C", "j": ["minaret", "worship", "islam", "Muslim", "religion"]}, "hindu-temple": {"a": "hindu temple", "b": "1F6D5", "j": ["hindu", "temple", "religion"]}, "synagogue": {"a": "synagogue", "b": "1F54D", "j": ["jewish", "Jew", "worship", "Jewish", "judaism", "temple", "religion"]}, "shinto-shrine": {"a": "shinto shrine", "b": "26E9", "j": ["kyoto", "shinto", "temple", "religion", "shrine", "japan"]}, "kaaba": {"a": "kaaba", "b": "1F54B", "j": ["mecca", "mosque", "islam", "Muslim", "religion"]}, "fountain": {"a": "fountain", "b": "26F2", "j": ["fresh", "photo", "summer", "water"]}, "tent": {"a": "tent", "b": "26FA", "j": ["photo", "outdoors", "camping"]}, "foggy": {"a": "foggy", "b": "1F301", "j": ["fog", "mountain", "photo"]}, "night-with-stars": {"a": "night with stars", "b": "1F303", "j": ["night", "downtown", "evening", "star", "city"]}, "cityscape": {"a": "cityscape", "b": "1F3D9", "j": ["night life", "urban", "city", "photo"]}, "sunrise-over-mountains": {"a": "sunrise over mountains", "b": "1F304", "j": ["sun", "sunrise", "mountain", "vacation", "morning", "view", "photo"]}, "sunrise": {"a": "sunrise", "b": "1F305", "j": ["sun", "vacation", "morning", "photo", "view"]}, "cityscape-at-dusk": {"a": "cityscape at dusk", "b": "1F306", "j": ["evening", "sunset", "city", "landscape", "sky", "dusk", "photo", "buildings"]}, "sunset": {"a": "sunset", "b": "1F307", "j": ["sun", "good morning", "dawn", "dusk", "photo"]}, "bridge-at-night": {"a": "bridge at night", "b": "1F309", "j": ["night", "sanfrancisco", "photo", "bridge"]}, "hot-springs": {"a": "hot springs", "b": "2668", "j": ["bath", "springs", "hot", "steaming", "relax", "warm", "hotsprings"]}, "carousel-horse": {"a": "carousel horse", "b": "1F3A0", "j": ["carnival", "carousel", "photo", "horse"]}, "ferris-wheel": {"a": "ferris wheel", "b": "1F3A1", "j": ["wheel", "carnival", "photo", "londoneye", "ferris", "amusement park"]}, "roller-coaster": {"a": "roller coaster", "b": "1F3A2", "j": ["coaster", "playground", "carnival", "photo", "fun", "roller", "amusement park"]}, "barber-pole": {"a": "barber pole", "b": "1F488", "j": ["salon", "hair", "style", "barber", "pole", "haircut"]}, "circus-tent": {"a": "circus tent", "b": "1F3AA", "j": ["festival", "carnival", "tent", "party", "circus"]}, "locomotive": {"a": "locomotive", "b": "1F682", "j": ["railway", "vehicle", "transportation", "engine", "train", "steam"]}, "railway-car": {"a": "railway car", "b": "1F683", "j": ["railway", "vehicle", "electric", "transportation", "tram", "trolleybus", "train", "car"]}, "highspeed-train": {"a": "high-speed train", "b": "1F684", "j": ["railway", "vehicle", "transportation", "speed", "high_speed_train", "train", "shinkansen"]}, "bullet-train": {"a": "bullet train", "b": "1F685", "j": ["railway", "vehicle", "bullet", "transportation", "fast", "speed", "travel", "shinkansen", "train", "public"]}, "train": {"a": "train", "b": "1F686", "j": ["railway", "vehicle", "transportation"]}, "metro": {"a": "metro", "b": "1F687", "j": ["subway", "transportation", "mrt", "blue-square", "underground", "tube"]}, "light-rail": {"a": "light rail", "b": "1F688", "j": ["railway", "vehicle", "transportation"]}, "station": {"a": "station", "b": "1F689", "j": ["railway", "vehicle", "transportation", "train", "public"]}, "tram": {"a": "tram", "b": "1F68A", "j": ["vehicle", "transportation", "trolleybus"]}, "monorail": {"a": "monorail", "b": "1F69D", "j": ["vehicle", "transportation"]}, "mountain-railway": {"a": "mountain railway", "b": "1F69E", "j": ["railway", "vehicle", "mountain", "transportation", "car"]}, "tram-car": {"a": "tram car", "b": "1F68B", "j": ["vehicle", "car", "transportation", "carriage", "trolleybus", "tram", "travel", "public"]}, "bus": {"a": "bus", "b": "1F68C", "j": ["vehicle", "transportation", "car"]}, "oncoming-bus": {"a": "oncoming bus", "b": "1F68D", "j": ["transportation", "vehicle", "oncoming", "bus"]}, "trolleybus": {"a": "trolleybus", "b": "1F68E", "j": ["vehicle", "bus", "transportation", "tram", "trolley", "bart"]}, "minibus": {"a": "minibus", "b": "1F690", "j": ["bus", "vehicle", "transportation", "car"]}, "ambulance": {"a": "ambulance", "b": "1F691", "j": ["hospital", "vehicle", "911", "health"]}, "fire-engine": {"a": "fire engine", "b": "1F692", "j": ["vehicle", "truck", "transportation", "engine", "cars", "fire"]}, "police-car": {"a": "police car", "b": "1F693", "j": ["vehicle", "police", "law", "transportation", "enforcement", "cars", "legal", "patrol", "car"]}, "oncoming-police-car": {"a": "oncoming police car", "b": "1F694", "j": ["vehicle", "police", "law", "oncoming", "enforcement", "911", "legal", "car"]}, "taxi": {"a": "taxi", "b": "1F695", "j": ["vehicle", "transportation", "cars", "uber"]}, "oncoming-taxi": {"a": "oncoming taxi", "b": "1F696", "j": ["vehicle", "oncoming", "cars", "uber", "taxi"]}, "automobile": {"a": "automobile", "b": "1F697", "j": ["vehicle", "transportation", "car", "red"]}, "oncoming-automobile": {"a": "oncoming automobile", "b": "1F698", "j": ["vehicle", "oncoming", "transportation", "automobile", "car"]}, "sport-utility-vehicle": {"a": "sport utility vehicle", "b": "1F699", "j": ["recreational", "vehicle", "sport utility", "transportation"]}, "pickup-truck": {"a": "pickup truck", "b": "1F6FB", "j": ["truck", "transportation", "pick-up", "pickup", "car"]}, "delivery-truck": {"a": "delivery truck", "b": "1F69A", "j": ["delivery", "transportation", "truck", "cars"]}, "articulated-lorry": {"a": "articulated lorry", "b": "1F69B", "j": ["vehicle", "truck", "lorry", "transportation", "express", "semi", "cars"]}, "tractor": {"a": "tractor", "b": "1F69C", "j": ["vehicle", "agriculture", "farming", "car"]}, "racing-car": {"a": "racing car", "b": "1F3CE", "j": ["formula", "f1", "fast", "sports", "race", "racing", "car"]}, "motorcycle": {"a": "motorcycle", "b": "1F3CD", "j": ["fast", "race", "sports", "racing"]}, "motor-scooter": {"a": "motor scooter", "b": "1F6F5", "j": ["vehicle", "scooter", "vespa", "sasha", "motor"]}, "manual-wheelchair": {"a": "manual wheelchair", "b": "1F9BD", "j": ["accessibility"]}, "motorized-wheelchair": {"a": "motorized wheelchair", "b": "1F9BC", "j": ["accessibility"]}, "auto-rickshaw": {"a": "auto rickshaw", "b": "1F6FA", "j": ["tuk tuk", "transportation", "move"]}, "bicycle": {"a": "bicycle", "b": "1F6B2", "j": ["bike", "hipster", "exercise", "sports"]}, "kick-scooter": {"a": "kick scooter", "b": "1F6F4", "j": ["scooter", "razor", "vehicle", "kick"]}, "skateboard": {"a": "skateboard", "b": "1F6F9", "j": ["board"]}, "roller-skate": {"a": "roller skate", "b": "1F6FC", "j": ["roller", "skate", "footwear", "sports"]}, "bus-stop": {"a": "bus stop", "b": "1F68F", "j": ["bus", "stop", "transportation", "busstop", "wait"]}, "motorway": {"a": "motorway", "b": "1F6E3", "j": ["highway", "road", "cupertino", "interstate"]}, "railway-track": {"a": "railway track", "b": "1F6E4", "j": ["railway", "train", "transportation"]}, "oil-drum": {"a": "oil drum", "b": "1F6E2", "j": ["barrell", "drum", "oil"]}, "fuel-pump": {"a": "fuel pump", "b": "26FD", "j": ["petroleum", "gas", "fuel", "pump", "fuelpump", "station", "gas station", "diesel"]}, "police-car-light": {"a": "police car light", "b": "1F6A8", "j": ["revolving", "beacon", "police", "alert", "law", "pinged", "emergency", "light", "ambulance", "911", "legal", "error", "car"]}, "horizontal-traffic-light": {"a": "horizontal traffic light", "b": "1F6A5", "j": ["transportation", "traffic", "light", "signal"]}, "vertical-traffic-light": {"a": "vertical traffic light", "b": "1F6A6", "j": ["traffic", "transportation", "light", "driving", "signal"]}, "stop-sign": {"a": "stop sign", "b": "1F6D1", "j": ["octagonal", "sign", "stop"]}, "construction": {"a": "construction", "b": "1F6A7", "j": ["warning", "wip", "barrier", "progress", "caution"]}, "anchor": {"a": "anchor", "b": "2693", "j": ["boat", "sea", "ferry", "ship", "tool"]}, "sailboat": {"a": "sailboat", "b": "26F5", "j": ["yacht", "resort", "boat", "sailing", "sea", "transportation", "water", "ship", "summer"]}, "canoe": {"a": "canoe", "b": "1F6F6", "j": ["paddle", "ship", "water", "boat"]}, "speedboat": {"a": "speedboat", "b": "1F6A4", "j": ["vehicle", "boat", "transportation", "ship", "summer"]}, "passenger-ship": {"a": "passenger ship", "b": "1F6F3", "j": ["yacht", "passenger", "cruise", "ferry", "ship"]}, "ferry": {"a": "ferry", "b": "26F4", "j": ["yacht", "ship", "passenger", "boat"]}, "motor-boat": {"a": "motor boat", "b": "1F6E5", "j": ["ship", "motorboat", "boat"]}, "ship": {"a": "ship", "b": "1F6A2", "j": ["titanic", "passenger", "boat", "transportation", "deploy"]}, "airplane": {"a": "airplane", "b": "2708", "j": ["vehicle", "flight", "transportation", "fly", "aeroplane"]}, "small-airplane": {"a": "small airplane", "b": "1F6E9", "j": ["vehicle", "flight", "transportation", "fly", "airplane", "aeroplane"]}, "airplane-departure": {"a": "airplane departure", "b": "1F6EB", "j": ["departure", "flight", "check-in", "airport", "airplane", "departures", "aeroplane", "landing"]}, "airplane-arrival": {"a": "airplane arrival", "b": "1F6EC", "j": ["arrivals", "arriving", "flight", "boarding", "airport", "airplane", "aeroplane", "landing"]}, "parachute": {"a": "parachute", "b": "1FA82", "j": ["skydive", "hang-glide", "fly", "parasail", "glide"]}, "seat": {"a": "seat", "b": "1F4BA", "j": ["bus", "transport", "flight", "chair", "sit", "fly", "airplane"]}, "helicopter": {"a": "helicopter", "b": "1F681", "j": ["vehicle", "transportation", "fly"]}, "suspension-railway": {"a": "suspension railway", "b": "1F69F", "j": ["railway", "vehicle", "transportation", "suspension"]}, "mountain-cableway": {"a": "mountain cableway", "b": "1F6A0", "j": ["vehicle", "mountain", "transportation", "ski", "gondola", "cable"]}, "aerial-tramway": {"a": "aerial tramway", "b": "1F6A1", "j": ["vehicle", "aerial", "transportation", "ski", "gondola", "cable", "tramway", "car"]}, "satellite": {"a": "satellite", "b": "1F6F0", "j": ["communication", "gps", "ISS", "space", "NASA", "orbit", "spaceflight"]}, "rocket": {"a": "rocket", "b": "1F680", "j": ["outer space", "launch", "NASA", "ship", "space", "staffmode", "fly", "outer_space"]}, "flying-saucer": {"a": "flying saucer", "b": "1F6F8", "j": ["transportation", "vehicle", "ufo", "UFO"]}, "bellhop-bell": {"a": "bellhop bell", "b": "1F6CE", "j": ["service", "bellhop", "hotel", "bell"]}, "luggage": {"a": "luggage", "b": "1F9F3", "j": ["packing", "travel"]}, "hourglass-done": {"a": "hourglass done", "b": "231B", "j": ["test", "quiz", "timer", "sand", "limit", "oldschool", "exam", "clock", "time"]}, "hourglass-not-done": {"a": "hourglass not done", "b": "23F3", "j": ["hourglass", "timer", "sand", "oldschool", "countdown", "time"]}, "watch": {"a": "watch", "b": "231A", "j": ["accessories", "clock", "time"]}, "alarm-clock": {"a": "alarm clock", "b": "23F0", "j": ["alarm", "clock", "wake", "time"]}, "stopwatch": {"a": "stopwatch", "b": "23F1", "j": ["clock", "time", "deadline"]}, "timer-clock": {"a": "timer clock", "b": "23F2", "j": ["clock", "alarm", "timer"]}, "mantelpiece-clock": {"a": "mantelpiece clock", "b": "1F570", "j": ["clock", "time"]}, "twelve-oclock": {"a": "twelve o’clock", "b": "1F55B", "j": ["midnight", "12", "12:00", "twelve", "midday", "noon", "late", "o’clock", "early", "twelve_o_clock", "schedule", "00", "clock", "time"]}, "twelvethirty": {"a": "twelve-thirty", "b": "1F567", "j": ["12", "twelve_thirty", "thirty", "twelve", "late", "early", "schedule", "12:30", "clock", "time"]}, "one-oclock": {"a": "one o’clock", "b": "1F550", "j": ["1:00", "1", "late", "time", "early", "o’clock", "schedule", "00", "one_o_clock", "clock", "one"]}, "onethirty": {"a": "one-thirty", "b": "1F55C", "j": ["1", "1:30", "thirty", "late", "time", "early", "schedule", "one_thirty", "clock", "one"]}, "two-oclock": {"a": "two o’clock", "b": "1F551", "j": ["two_o_clock", "2", "2:00", "late", "early", "schedule", "o’clock", "00", "clock", "two", "time"]}, "twothirty": {"a": "two-thirty", "b": "1F55D", "j": ["two_thirty", "2", "thirty", "late", "2:30", "early", "schedule", "clock", "two", "time"]}, "three-oclock": {"a": "three o’clock", "b": "1F552", "j": ["3:00", "three_o_clock", "late", "3", "early", "o’clock", "three", "schedule", "00", "clock", "time"]}, "threethirty": {"a": "three-thirty", "b": "1F55E", "j": ["thirty", "late", "3", "3:30", "three", "three_thirty", "early", "schedule", "clock", "time"]}, "four-oclock": {"a": "four o’clock", "b": "1F553", "j": ["four", "late", "early", "schedule", "o’clock", "4", "00", "four_o_clock", "clock", "4:00", "time"]}, "fourthirty": {"a": "four-thirty", "b": "1F55F", "j": ["thirty", "four", "late", "4:30", "early", "schedule", "four_thirty", "4", "clock", "time"]}, "five-oclock": {"a": "five o’clock", "b": "1F554", "j": ["five_o_clock", "late", "early", "schedule", "o’clock", "five", "00", "5:00", "5", "clock", "time"]}, "fivethirty": {"a": "five-thirty", "b": "1F560", "j": ["five_thirty", "thirty", "late", "early", "schedule", "five", "5", "clock", "5:30", "time"]}, "six-oclock": {"a": "six o’clock", "b": "1F555", "j": ["late", "early", "schedule", "o’clock", "six_o_clock", "6", "dawn", "00", "dusk", "6:00", "clock", "six", "time"]}, "sixthirty": {"a": "six-thirty", "b": "1F561", "j": ["thirty", "6:30", "late", "early", "schedule", "6", "six_thirty", "clock", "six", "time"]}, "seven-oclock": {"a": "seven o’clock", "b": "1F556", "j": ["7:00", "7", "seven_o_clock", "late", "early", "schedule", "o’clock", "seven", "00", "clock", "time"]}, "seventhirty": {"a": "seven-thirty", "b": "1F562", "j": ["seven_thirty", "7", "thirty", "7:30", "late", "early", "schedule", "seven", "clock", "time"]}, "eight-oclock": {"a": "eight o’clock", "b": "1F557", "j": ["8:00", "eight", "late", "o’clock", "early", "schedule", "00", "eight_o_clock", "clock", "8", "time"]}, "eightthirty": {"a": "eight-thirty", "b": "1F563", "j": ["8:30", "thirty", "eight_thirty", "eight", "late", "early", "schedule", "clock", "8", "time"]}, "nine-oclock": {"a": "nine o’clock", "b": "1F558", "j": ["nine", "9:00", "9", "nine_o_clock", "late", "early", "schedule", "o’clock", "00", "clock", "time"]}, "ninethirty": {"a": "nine-thirty", "b": "1F564", "j": ["nine", "9", "thirty", "late", "nine_thirty", "early", "schedule", "9:30", "clock", "time"]}, "ten-oclock": {"a": "ten o’clock", "b": "1F559", "j": ["ten", "late", "early", "schedule", "o’clock", "10:00", "00", "10", "ten_o_clock", "clock", "time"]}, "tenthirty": {"a": "ten-thirty", "b": "1F565", "j": ["10:30", "thirty", "ten", "late", "early", "schedule", "ten_thirty", "10", "clock", "time"]}, "eleven-oclock": {"a": "eleven o’clock", "b": "1F55A", "j": ["eleven_o_clock", "eleven", "late", "early", "schedule", "o’clock", "00", "11", "clock", "11:00", "time"]}, "eleventhirty": {"a": "eleven-thirty", "b": "1F566", "j": ["thirty", "eleven", "eleven_thirty", "late", "early", "schedule", "11:30", "11", "clock", "time"]}, "new-moon": {"a": "new moon", "b": "1F311", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "dark", "twilight"]}, "waxing-crescent-moon": {"a": "waxing crescent moon", "b": "1F312", "j": ["night", "sleep", "evening", "crescent", "moon", "nature", "space", "planet", "waxing", "twilight"]}, "first-quarter-moon": {"a": "first quarter moon", "b": "1F313", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "quarter", "twilight"]}, "waxing-gibbous-moon": {"a": "waxing gibbous moon", "b": "1F314", "j": ["night", "sleep", "evening", "moon", "nature", "sky", "space", "planet", "gibbous", "gray", "waxing", "twilight"]}, "full-moon": {"a": "full moon", "b": "1F315", "j": ["night", "full", "sleep", "evening", "moon", "nature", "space", "yellow", "planet", "twilight"]}, "waning-gibbous-moon": {"a": "waning gibbous moon", "b": "1F316", "j": ["night", "sleep", "waning", "evening", "moon", "nature", "waxing_gibbous_moon", "space", "planet", "gibbous", "twilight"]}, "last-quarter-moon": {"a": "last quarter moon", "b": "1F317", "j": ["night", "sleep", "evening", "moon", "nature", "space", "planet", "quarter", "twilight"]}, "waning-crescent-moon": {"a": "waning crescent moon", "b": "1F318", "j": ["night", "sleep", "waning", "evening", "crescent", "moon", "nature", "space", "planet", "twilight"]}, "crescent-moon": {"a": "crescent moon", "b": "1F319", "j": ["night", "sleep", "evening", "crescent", "moon", "sky", "magic"]}, "new-moon-face": {"a": "new moon face", "b": "1F31A", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "twilight"]}, "first-quarter-moon-face": {"a": "first quarter moon face", "b": "1F31B", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "quarter", "twilight"]}, "last-quarter-moon-face": {"a": "last quarter moon face", "b": "1F31C", "j": ["night", "sleep", "evening", "moon", "face", "nature", "space", "planet", "quarter", "twilight"]}, "thermometer": {"a": "thermometer", "b": "1F321", "j": ["weather", "hot", "cold", "temperature"]}, "sun": {"a": "sun", "b": "2600", "j": ["brightness", "rays", "spring", "bright", "nature", "weather", "summer", "sunny", "beach"]}, "full-moon-face": {"a": "full moon face", "b": "1F31D", "j": ["night", "full", "sleep", "evening", "moon", "bright", "face", "nature", "space", "planet", "twilight"]}, "sun-with-face": {"a": "sun with face", "b": "1F31E", "j": ["sun", "bright", "face", "nature", "sky", "morning"]}, "ringed-planet": {"a": "ringed planet", "b": "1FA90", "j": ["outerspace", "saturnine", "saturn"]}, "star": {"a": "star", "b": "2B50", "j": ["night", "yellow"]}, "glowing-star": {"a": "glowing star", "b": "1F31F", "j": ["awesome", "night", "shining", "star", "good", "glittery", "glow", "sparkle", "magic"]}, "shooting-star": {"a": "shooting star", "b": "1F320", "j": ["shooting", "night", "star", "falling", "photo"]}, "milky-way": {"a": "milky way", "b": "1F30C", "j": ["stars", "space", "photo"]}, "cloud": {"a": "cloud", "b": "2601", "j": ["weather", "sky"]}, "sun-behind-cloud": {"a": "sun behind cloud", "b": "26C5", "j": ["sun", "spring", "cloud", "nature", "weather", "morning", "fall", "cloudy"]}, "cloud-with-lightning-and-rain": {"a": "cloud with lightning and rain", "b": "26C8", "j": ["lightning", "rain", "cloud", "weather", "thunder"]}, "sun-behind-small-cloud": {"a": "sun behind small cloud", "b": "1F324", "j": ["sun", "weather", "cloud"]}, "sun-behind-large-cloud": {"a": "sun behind large cloud", "b": "1F325", "j": ["sun", "weather", "cloud"]}, "sun-behind-rain-cloud": {"a": "sun behind rain cloud", "b": "1F326", "j": ["sun", "weather", "rain", "cloud"]}, "cloud-with-rain": {"a": "cloud with rain", "b": "1F327", "j": ["weather", "rain", "cloud"]}, "cloud-with-snow": {"a": "cloud with snow", "b": "1F328", "j": ["weather", "snow", "cold", "cloud"]}, "cloud-with-lightning": {"a": "cloud with lightning", "b": "1F329", "j": ["weather", "lightning", "thunder", "cloud"]}, "tornado": {"a": "tornado", "b": "1F32A", "j": ["cyclone", "cloud", "weather", "twister", "whirlwind"]}, "fog": {"a": "fog", "b": "1F32B", "j": ["weather", "cloud"]}, "wind-face": {"a": "wind face", "b": "1F32C", "j": ["air", "blow", "face", "cloud", "gust", "wind"]}, "cyclone": {"a": "cyclone", "b": "1F300", "j": ["blue", "spin", "whirlpool", "typhoon", "cloud", "weather", "twister", "spiral", "dizzy", "hurricane", "vortex", "swirl", "tornado"]}, "rainbow": {"a": "rainbow", "b": "1F308", "j": ["rain", "spring", "nature", "sky", "photo", "unicorn_face", "happy"]}, "closed-umbrella": {"a": "closed umbrella", "b": "1F302", "j": ["rain", "umbrella", "weather", "clothing", "drizzle"]}, "umbrella": {"a": "umbrella", "b": "2602", "j": ["weather", "clothing", "rain", "spring"]}, "umbrella-with-rain-drops": {"a": "umbrella with rain drops", "b": "2614", "j": ["drop", "rain", "spring", "rainy", "umbrella", "clothing", "weather"]}, "umbrella-on-ground": {"a": "umbrella on ground", "b": "26F1", "j": ["sun", "rain", "umbrella", "weather", "summer"]}, "high-voltage": {"a": "high voltage", "b": "26A1", "j": ["danger", "lightning", "electric", "lightning bolt", "zap", "fast", "weather", "thunder", "voltage"]}, "snowflake": {"a": "snowflake", "b": "2744", "j": ["snow", "cold", "xmas", "winter", "season", "weather", "christmas"]}, "snowman": {"a": "snowman", "b": "2603", "j": ["snow", "cold", "winter", "xmas", "season", "weather", "frozen", "christmas"]}, "snowman-without-snow": {"a": "snowman without snow", "b": "26C4", "j": ["snow", "snowman", "cold", "winter", "xmas", "season", "weather", "frozen", "without_snow", "christmas"]}, "comet": {"a": "comet", "b": "2604", "j": ["space"]}, "fire": {"a": "fire", "b": "1F525", "j": ["flame", "cook", "tool", "hot"]}, "droplet": {"a": "droplet", "b": "1F4A7", "j": ["drop", "sweat", "drip", "spring", "cold", "water", "comic", "faucet"]}, "water-wave": {"a": "water wave", "b": "1F30A", "j": ["wave", "tsunami", "disaster", "sea", "water", "nature", "ocean"]}, "jackolantern": {"a": "jack-o-lantern", "b": "1F383", "j": ["jack_o_lantern", "creepy", "celebration", "halloween", "pumpkin", "light", "fall", "jack", "lantern"]}, "christmas-tree": {"a": "Christmas tree", "b": "1F384", "j": ["vacation", "festival", "xmas", "celebration", "Christmas", "december", "tree"]}, "fireworks": {"a": "fireworks", "b": "1F386", "j": ["congratulations", "festival", "celebration", "carnival", "photo"]}, "sparkler": {"a": "sparkler", "b": "1F387", "j": ["night", "fireworks", "shine", "stars", "celebration", "sparkle"]}, "firecracker": {"a": "firecracker", "b": "1F9E8", "j": ["boom", "fireworks", "explode", "explosion", "explosive", "dynamite"]}, "sparkles": {"a": "sparkles", "b": "2728", "j": ["awesome", "shiny", "cool", "shine", "star", "stars", "*", "good", "sparkle", "magic"]}, "balloon": {"a": "balloon", "b": "1F388", "j": ["birthday", "circus", "celebration", "party"]}, "party-popper": {"a": "party popper", "b": "1F389", "j": ["birthday", "tada", "congratulations", "popper", "celebration", "party", "circus", "magic"]}, "confetti-ball": {"a": "confetti ball", "b": "1F38A", "j": ["birthday", "festival", "ball", "celebration", "party", "confetti", "circus"]}, "tanabata-tree": {"a": "tanabata tree", "b": "1F38B", "j": ["banner", "Japanese", "nature", "celebration", "plant", "summer", "tree", "branch"]}, "pine-decoration": {"a": "pine decoration", "b": "1F38D", "j": ["bamboo", "panda", "pine", "Japanese", "nature", "celebration", "plant", "vegetable"]}, "japanese-dolls": {"a": "Japanese dolls", "b": "1F38E", "j": ["toy", "Japanese", "festival", "japanese", "celebration", "kimono", "doll"]}, "carp-streamer": {"a": "carp streamer", "b": "1F38F", "j": ["carp", "banner", "japanese", "fish", "celebration", "streamer", "koinobori"]}, "wind-chime": {"a": "wind chime", "b": "1F390", "j": ["ding", "spring", "chime", "bell", "celebration", "nature", "wind"]}, "moon-viewing-ceremony": {"a": "moon viewing ceremony", "b": "1F391", "j": ["tsukimi", "asia", "moon", "celebration", "ceremony", "photo", "japan"]}, "red-envelope": {"a": "red envelope", "b": "1F9E7", "j": ["hóngbāo", "lai see", "gift", "money", "good luck"]}, "ribbon": {"a": "ribbon", "b": "1F380", "j": ["bowtie", "pink", "girl", "decoration", "celebration"]}, "wrapped-gift": {"a": "wrapped gift", "b": "1F381", "j": ["birthday", "xmas", "celebration", "gift", "present", "wrapped", "box", "christmas"]}, "reminder-ribbon": {"a": "reminder ribbon", "b": "1F397", "j": ["cause", "support", "sports", "celebration", "reminder", "awareness", "ribbon"]}, "admission-tickets": {"a": "admission tickets", "b": "1F39F", "j": ["admission", "sports", "ticket", "entrance", "concert"]}, "ticket": {"a": "ticket", "b": "1F3AB", "j": ["admission", "event", "pass", "concert"]}, "military-medal": {"a": "military medal", "b": "1F396", "j": ["medal", "military", "award", "celebration", "army", "winning"]}, "trophy": {"a": "trophy", "b": "1F3C6", "j": ["ftw", "award", "contest", "place", "ceremony", "win", "prize"]}, "sports-medal": {"a": "sports medal", "b": "1F3C5", "j": ["medal", "winning", "award"]}, "1st-place-medal": {"a": "1st place medal", "b": "1F947", "j": ["medal", "award", "first", "gold", "winning"]}, "2nd-place-medal": {"a": "2nd place medal", "b": "1F948", "j": ["second", "medal", "award", "silver"]}, "3rd-place-medal": {"a": "3rd place medal", "b": "1F949", "j": ["medal", "award", "third", "bronze"]}, "soccer-ball": {"a": "soccer ball", "b": "26BD", "j": ["sports", "soccer", "football", "ball"]}, "baseball": {"a": "baseball", "b": "26BE", "j": ["balls", "sports", "ball"]}, "softball": {"a": "softball", "b": "1F94E", "j": ["underarm", "sports", "ball", "balls", "glove"]}, "basketball": {"a": "basketball", "b": "1F3C0", "j": ["hoop", "sports", "ball", "balls", "NBA"]}, "volleyball": {"a": "volleyball", "b": "1F3D0", "j": ["game", "balls", "sports", "ball"]}, "american-football": {"a": "american football", "b": "1F3C8", "j": ["sports", "NFL", "ball", "balls", "american", "football"]}, "rugby-football": {"a": "rugby football", "b": "1F3C9", "j": ["team", "sports", "ball", "rugby", "football"]}, "tennis": {"a": "tennis", "b": "1F3BE", "j": ["racquet", "sports", "ball", "balls", "green"]}, "flying-disc": {"a": "flying disc", "b": "1F94F", "j": ["frisbee", "ultimate", "sports"]}, "bowling": {"a": "bowling", "b": "1F3B3", "j": ["play", "sports", "ball", "game", "fun"]}, "cricket-game": {"a": "cricket game", "b": "1F3CF", "j": ["ball", "game", "bat", "sports"]}, "field-hockey": {"a": "field hockey", "b": "1F3D1", "j": ["stick", "ball", "sports", "field", "game", "hockey"]}, "ice-hockey": {"a": "ice hockey", "b": "1F3D2", "j": ["stick", "hockey", "ice", "sports", "game", "puck"]}, "lacrosse": {"a": "lacrosse", "b": "1F94D", "j": ["stick", "goal", "sports", "ball"]}, "ping-pong": {"a": "ping pong", "b": "1F3D3", "j": ["pingpong", "bat", "sports", "paddle", "ball", "game", "table tennis"]}, "badminton": {"a": "badminton", "b": "1F3F8", "j": ["shuttlecock", "racquet", "sports", "game", "birdie"]}, "boxing-glove": {"a": "boxing glove", "b": "1F94A", "j": ["boxing", "fighting", "sports", "glove"]}, "martial-arts-uniform": {"a": "martial arts uniform", "b": "1F94B", "j": ["judo", "martial arts", "taekwondo", "uniform", "karate"]}, "goal-net": {"a": "goal net", "b": "1F945", "j": ["goal", "net", "sports"]}, "flag-in-hole": {"a": "flag in hole", "b": "26F3", "j": ["business", "flag", "golf", "sports", "summer", "hole"]}, "ice-skate": {"a": "ice skate", "b": "26F8", "j": ["ice", "skate", "sports"]}, "fishing-pole": {"a": "fishing pole", "b": "1F3A3", "j": ["hobby", "fish", "food", "pole", "summer"]}, "diving-mask": {"a": "diving mask", "b": "1F93F", "j": ["scuba", "diving", "sport", "ocean", "snorkeling"]}, "running-shirt": {"a": "running shirt", "b": "1F3BD", "j": ["sash", "shirt", "athletics", "play", "pageant", "running"]}, "skis": {"a": "skis", "b": "1F3BF", "j": ["snow", "cold", "winter", "sports", "ski"]}, "sled": {"a": "sled", "b": "1F6F7", "j": ["luge", "toboggan", "sledge", "sleigh"]}, "curling-stone": {"a": "curling stone", "b": "1F94C", "j": ["game", "rock", "sports"]}, "bullseye": {"a": "bullseye", "b": "1F3AF", "j": ["target", "direct hit", "play", "dart", "hit", "bar", "game", "direct_hit"]}, "yoyo": {"a": "yo-yo", "b": "1FA80", "j": ["fluctuate", "toy", "yo_yo"]}, "kite": {"a": "kite", "b": "1FA81", "j": ["soar", "wind", "fly"]}, "pool-8-ball": {"a": "pool 8 ball", "b": "1F3B1", "j": ["pool", "hobby", "billiard", "eight", "ball", "game", "luck", "8", "magic"]}, "crystal-ball": {"a": "crystal ball", "b": "1F52E", "j": ["disco", "tool", "crystal", "ball", "fairy tale", "fantasy", "party", "fortune_teller", "circus", "fortune", "magic"]}, "magic-wand": {"a": "magic wand", "b": "1FA84", "j": ["witch", "power", "supernature", "wizard", "magic"]}, "nazar-amulet": {"a": "nazar amulet", "b": "1F9FF", "j": ["talisman", "charm", "bead", "nazar", "evil-eye"]}, "video-game": {"a": "video game", "b": "1F3AE", "j": ["controller", "play", "game", "PS4", "console"]}, "joystick": {"a": "joystick", "b": "1F579", "j": ["play", "game", "video game"]}, "slot-machine": {"a": "slot machine", "b": "1F3B0", "j": ["slot", "gamble", "casino", "game", "luck", "fruit machine", "bet", "vegas"]}, "game-die": {"a": "game die", "b": "1F3B2", "j": ["random", "play", "dice", "game", "luck", "die", "tabletop"]}, "puzzle-piece": {"a": "puzzle piece", "b": "1F9E9", "j": ["puzzle", "interlocking", "clue", "piece", "jigsaw"]}, "teddy-bear": {"a": "teddy bear", "b": "1F9F8", "j": ["plush", "toy", "plaything", "stuffed"]}, "piata": {"a": "piñata", "b": "1FA85", "j": ["mexico", "celebration", "candy", "pinata", "party"]}, "nesting-dolls": {"a": "nesting dolls", "b": "1FA86", "j": ["nesting", "toy", "russia", "matryoshka", "doll"]}, "spade-suit": {"a": "spade suit", "b": "2660", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "heart-suit": {"a": "heart suit", "b": "2665", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "diamond-suit": {"a": "diamond suit", "b": "2666", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "club-suit": {"a": "club suit", "b": "2663", "j": ["card", "cards", "suits", "game", "poker", "magic"]}, "chess-pawn": {"a": "chess pawn", "b": "265F", "j": ["chess", "expendable", "dupe"]}, "joker": {"a": "joker", "b": "1F0CF", "j": ["play", "magic", "card", "game", "poker", "wildcard", "cards"]}, "mahjong-red-dragon": {"a": "mahjong red dragon", "b": "1F004", "j": ["play", "mahjong", "kanji", "game", "red", "chinese"]}, "flower-playing-cards": {"a": "flower playing cards", "b": "1F3B4", "j": ["flower", "sunset", "card", "Japanese", "playing", "game", "red"]}, "performing-arts": {"a": "performing arts", "b": "1F3AD", "j": ["theater", "acting", "mask", "performing", "drama", "art", "theatre"]}, "framed-picture": {"a": "framed picture", "b": "1F5BC", "j": ["picture", "photography", "painting", "frame", "museum", "art"]}, "artist-palette": {"a": "artist palette", "b": "1F3A8", "j": ["draw", "design", "colors", "paint", "palette", "painting", "museum", "art"]}, "thread": {"a": "thread", "b": "1F9F5", "j": ["string", "needle", "spool", "sewing"]}, "sewing-needle": {"a": "sewing needle", "b": "1FAA1", "j": ["sutures", "stitches", "embroidery", "tailoring", "sewing", "needle"]}, "yarn": {"a": "yarn", "b": "1F9F6", "j": ["crochet", "knit", "ball"]}, "knot": {"a": "knot", "b": "1FAA2", "j": ["tangled", "twist", "rope", "tie", "twine", "scout"]}, "glasses": {"a": "glasses", "b": "1F453", "j": ["accessories", "nerdy", "geek", "eyeglasses", "eyesight", "clothing", "eye", "fashion", "eyewear", "dork"]}, "sunglasses": {"a": "sunglasses", "b": "1F576", "j": ["accessories", "glasses", "cool", "face", "eye", "eyewear", "dark"]}, "goggles": {"a": "goggles", "b": "1F97D", "j": ["welding", "swimming", "protection", "safety", "eye protection", "eyes"]}, "lab-coat": {"a": "lab coat", "b": "1F97C", "j": ["scientist", "chemist", "doctor", "experiment"]}, "safety-vest": {"a": "safety vest", "b": "1F9BA", "j": ["protection", "safety", "emergency", "vest"]}, "necktie": {"a": "necktie", "b": "1F454", "j": ["shirt", "business", "cloth", "formal", "tie", "clothing", "suitup", "fashion"]}, "tshirt": {"a": "t-shirt", "b": "1F455", "j": ["t_shirt", "shirt", "cloth", "clothing", "fashion", "tee", "casual"]}, "jeans": {"a": "jeans", "b": "1F456", "j": ["shopping", "trousers", "clothing", "fashion", "pants"]}, "scarf": {"a": "scarf", "b": "1F9E3", "j": ["neck", "winter", "clothes"]}, "gloves": {"a": "gloves", "b": "1F9E4", "j": ["hands", "hand", "winter", "clothes"]}, "coat": {"a": "coat", "b": "1F9E5", "j": ["jacket"]}, "socks": {"a": "socks", "b": "1F9E6", "j": ["stockings", "stocking", "clothes"]}, "dress": {"a": "dress", "b": "1F457", "j": ["shopping", "clothing", "fashion", "clothes"]}, "kimono": {"a": "kimono", "b": "1F458", "j": ["dress", "japanese", "clothing", "fashion", "women", "female"]}, "sari": {"a": "sari", "b": "1F97B", "j": ["dress", "clothing"]}, "onepiece-swimsuit": {"a": "one-piece swimsuit", "b": "1FA71", "j": ["one_piece_swimsuit", "fashion", "bathing suit"]}, "briefs": {"a": "briefs", "b": "1FA72", "j": ["swimsuit", "one-piece", "clothing", "underwear", "bathing suit"]}, "shorts": {"a": "shorts", "b": "1FA73", "j": ["clothing", "underwear", "pants", "bathing suit"]}, "bikini": {"a": "bikini", "b": "1F459", "j": ["swim", "woman", "girl", "swimming", "clothing", "fashion", "summer", "beach", "female"]}, "womans-clothes": {"a": "woman’s clothes", "b": "1F45A", "j": ["woman_s_clothes", "woman", "shopping_bags", "clothing", "fashion", "female"]}, "purse": {"a": "purse", "b": "1F45B", "j": ["accessories", "shopping", "clothing", "fashion", "money", "coin", "sales"]}, "handbag": {"a": "handbag", "b": "1F45C", "j": ["accessories", "shopping", "accessory", "clothing", "bag", "fashion", "purse"]}, "clutch-bag": {"a": "clutch bag", "b": "1F45D", "j": ["accessories", "shopping", "pouch", "clothing", "bag"]}, "shopping-bags": {"a": "shopping bags", "b": "1F6CD", "j": ["shopping", "mall", "buy", "bag", "purchase", "hotel"]}, "backpack": {"a": "backpack", "b": "1F392", "j": ["satchel", "school", "education", "student", "bag", "rucksack"]}, "thong-sandal": {"a": "thong sandal", "b": "1FA74", "j": ["beach sandals", "thong sandals", "zōri", "thongs", "sandals", "summer", "footwear"]}, "mans-shoe": {"a": "man’s shoe", "b": "1F45E", "j": ["man", "male", "man_s_shoe", "clothing", "fashion", "shoe"]}, "running-shoe": {"a": "running shoe", "b": "1F45F", "j": ["sneakers", "sneaker", "athletic", "shoes", "sports", "clothing", "shoe"]}, "hiking-boot": {"a": "hiking boot", "b": "1F97E", "j": ["backpacking", "boot", "camping", "hiking"]}, "flat-shoe": {"a": "flat shoe", "b": "1F97F", "j": ["ballet flat", "slip-on", "slipper", "ballet"]}, "highheeled-shoe": {"a": "high-heeled shoe", "b": "1F460", "j": ["woman", "pumps", "shoes", "heel", "high_heeled_shoe", "clothing", "fashion", "stiletto", "shoe", "female"]}, "womans-sandal": {"a": "woman’s sandal", "b": "1F461", "j": ["sandal", "woman", "shoes", "flip flops", "clothing", "woman_s_sandal", "fashion", "shoe"]}, "ballet-shoes": {"a": "ballet shoes", "b": "1FA70", "j": ["ballet", "dance"]}, "womans-boot": {"a": "woman’s boot", "b": "1F462", "j": ["woman", "shoes", "clothing", "fashion", "shoe", "boot", "woman_s_boot"]}, "crown": {"a": "crown", "b": "1F451", "j": ["royalty", "kod", "leader", "king", "clothing", "lord", "queen"]}, "womans-hat": {"a": "woman’s hat", "b": "1F452", "j": ["accessories", "spring", "woman", "lady", "woman_s_hat", "hat", "clothing", "fashion", "female"]}, "top-hat": {"a": "top hat", "b": "1F3A9", "j": ["classy", "top", "magic", "hat", "clothing", "tophat", "circus", "gentleman"]}, "graduation-cap": {"a": "graduation cap", "b": "1F393", "j": ["learn", "school", "hat", "college", "cap", "celebration", "clothing", "degree", "education", "legal", "university", "graduation"]}, "billed-cap": {"a": "billed cap", "b": "1F9E2", "j": ["cap", "baseball cap", "baseball"]}, "military-helmet": {"a": "military helmet", "b": "1FA96", "j": ["military", "warrior", "army", "helmet", "protection", "soldier"]}, "rescue-workers-helmet": {"a": "rescue worker’s helmet", "b": "26D1", "j": ["cross", "aid", "build", "construction", "face", "hat", "helmet", "rescue_worker_s_helmet"]}, "prayer-beads": {"a": "prayer beads", "b": "1F4FF", "j": ["dhikr", "religious", "beads", "clothing", "prayer", "necklace", "religion"]}, "lipstick": {"a": "lipstick", "b": "1F484", "j": ["woman", "girl", "makeup", "fashion", "cosmetics", "female"]}, "ring": {"a": "ring", "b": "1F48D", "j": ["wedding", "diamond", "marriage", "valentines", "propose", "fashion", "gem", "engagement", "jewelry"]}, "gem-stone": {"a": "gem stone", "b": "1F48E", "j": ["blue", "diamond", "gem", "ruby", "jewelry", "jewel"]}, "muted-speaker": {"a": "muted speaker", "b": "1F507", "j": ["silence", "speaker", "sound", "mute", "quiet", "silent", "volume"]}, "speaker-low-volume": {"a": "speaker low volume", "b": "1F508", "j": ["silence", "sound", "soft", "broadcast", "volume"]}, "speaker-medium-volume": {"a": "speaker medium volume", "b": "1F509", "j": ["speaker", "broadcast", "medium", "volume"]}, "speaker-high-volume": {"a": "speaker high volume", "b": "1F50A", "j": ["noisy", "noise", "speaker", "broadcast", "volume", "loud"]}, "loudspeaker": {"a": "loudspeaker", "b": "1F4E2", "j": ["public address", "volume", "sound", "loud"]}, "megaphone": {"a": "megaphone", "b": "1F4E3", "j": ["volume", "sound", "cheering", "speaker"]}, "postal-horn": {"a": "postal horn", "b": "1F4EF", "j": ["instrument", "horn", "post", "postal", "music"]}, "bell": {"a": "bell", "b": "1F514", "j": ["sound", "xmas", "chime", "notification", "christmas"]}, "bell-with-slash": {"a": "bell with slash", "b": "1F515", "j": ["forbidden", "sound", "mute", "bell", "quiet", "silent", "volume"]}, "musical-score": {"a": "musical score", "b": "1F3BC", "j": ["clef", "score", "treble", "compose", "music"]}, "musical-note": {"a": "musical note", "b": "1F3B5", "j": ["tone", "score", "sound", "note", "music"]}, "musical-notes": {"a": "musical notes", "b": "1F3B6", "j": ["notes", "note", "score", "music"]}, "studio-microphone": {"a": "studio microphone", "b": "1F399", "j": ["studio", "sing", "artist", "recording", "talkshow", "microphone", "mic", "music"]}, "level-slider": {"a": "level slider", "b": "1F39A", "j": ["slider", "music", "scale", "level"]}, "control-knobs": {"a": "control knobs", "b": "1F39B", "j": ["control", "dial", "music", "knobs"]}, "microphone": {"a": "microphone", "b": "1F3A4", "j": ["PA", "sing", "sound", "talkshow", "mic", "karaoke", "music"]}, "headphone": {"a": "headphone", "b": "1F3A7", "j": ["gadgets", "score", "earbud", "music"]}, "radio": {"a": "radio", "b": "1F4FB", "j": ["communication", "video", "program", "podcast", "music"]}, "saxophone": {"a": "saxophone", "b": "1F3B7", "j": ["sax", "instrument", "jazz", "blues", "music"]}, "accordion": {"a": "accordion", "b": "1FA97", "j": ["squeeze box", "music", "concertina"]}, "guitar": {"a": "guitar", "b": "1F3B8", "j": ["music", "instrument"]}, "musical-keyboard": {"a": "musical keyboard", "b": "1F3B9", "j": ["keyboard", "piano", "compose", "instrument", "music"]}, "trumpet": {"a": "trumpet", "b": "1F3BA", "j": ["brass", "music", "instrument"]}, "violin": {"a": "violin", "b": "1F3BB", "j": ["symphony", "orchestra", "music", "instrument"]}, "banjo": {"a": "banjo", "b": "1FA95", "j": ["instructment", "stringed", "music"]}, "drum": {"a": "drum", "b": "1F941", "j": ["drumsticks", "snare", "music", "instrument"]}, "long-drum": {"a": "long drum", "b": "1FA98", "j": ["drum", "beat", "conga", "music", "rhythm"]}, "mobile-phone": {"a": "mobile phone", "b": "1F4F1", "j": ["apple", "phone", "telephone", "mobile", "gadgets", "dial", "cell", "technology"]}, "mobile-phone-with-arrow": {"a": "mobile phone with arrow", "b": "1F4F2", "j": ["arrow", "incoming", "iphone", "phone", "mobile", "receive", "cell"]}, "telephone": {"a": "telephone", "b": "260E", "j": ["dial", "technology", "communication", "phone"]}, "telephone-receiver": {"a": "telephone receiver", "b": "1F4DE", "j": ["communication", "phone", "telephone", "dial", "receiver", "technology"]}, "pager": {"a": "pager", "b": "1F4DF", "j": ["90s", "bbcall", "oldschool"]}, "fax-machine": {"a": "fax machine", "b": "1F4E0", "j": ["fax", "technology", "communication"]}, "battery": {"a": "battery", "b": "1F50B", "j": ["energy", "power", "sustain"]}, "electric-plug": {"a": "electric plug", "b": "1F50C", "j": ["electric", "power", "charger", "electricity", "plug"]}, "laptop": {"a": "laptop", "b": "1F4BB", "j": ["computer", "display", "monitor", "pc", "screen", "technology", "personal"]}, "desktop-computer": {"a": "desktop computer", "b": "1F5A5", "j": ["computer", "desktop", "computing", "screen", "technology"]}, "printer": {"a": "printer", "b": "1F5A8", "j": ["ink", "computer", "paper"]}, "keyboard": {"a": "keyboard", "b": "2328", "j": ["computer", "text", "input", "type", "technology"]}, "computer-mouse": {"a": "computer mouse", "b": "1F5B1", "j": ["computer", "click"]}, "trackball": {"a": "trackball", "b": "1F5B2", "j": ["trackpad", "computer", "technology"]}, "computer-disk": {"a": "computer disk", "b": "1F4BD", "j": ["minidisk", "computer", "disk", "optical", "record", "90s", "technology", "data"]}, "floppy-disk": {"a": "floppy disk", "b": "1F4BE", "j": ["floppy", "computer", "disk", "80s", "save", "oldschool", "90s", "technology"]}, "optical-disk": {"a": "optical disk", "b": "1F4BF", "j": ["cd", "computer", "disk", "dvd", "optical", "90s", "technology", "disc"]}, "dvd": {"a": "dvd", "b": "1F4C0", "j": ["cd", "computer", "disk", "optical", "blu-ray", "disc"]}, "abacus": {"a": "abacus", "b": "1F9EE", "j": ["calculation"]}, "movie-camera": {"a": "movie camera", "b": "1F3A5", "j": ["cinema", "camera", "record", "film", "movie"]}, "film-frames": {"a": "film frames", "b": "1F39E", "j": ["frames", "movie", "cinema", "film"]}, "film-projector": {"a": "film projector", "b": "1F4FD", "j": ["cinema", "video", "record", "projector", "film", "tape", "movie"]}, "clapper-board": {"a": "clapper board", "b": "1F3AC", "j": ["movie", "clapper", "record", "film"]}, "television": {"a": "television", "b": "1F4FA", "j": ["video", "program", "oldschool", "show", "technology", "tv"]}, "camera": {"a": "camera", "b": "1F4F7", "j": ["gadgets", "photography", "video"]}, "camera-with-flash": {"a": "camera with flash", "b": "1F4F8", "j": ["video", "camera", "gadgets", "photography", "flash"]}, "video-camera": {"a": "video camera", "b": "1F4F9", "j": ["camera", "video", "record", "film"]}, "videocassette": {"a": "videocassette", "b": "1F4FC", "j": ["video", "80s", "record", "tape", "vhs", "oldschool", "90s"]}, "magnifying-glass-tilted-left": {"a": "magnifying glass tilted left", "b": "1F50D", "j": ["magnifying", "find", "search", "tool", "glass", "zoom", "detective"]}, "magnifying-glass-tilted-right": {"a": "magnifying glass tilted right", "b": "1F50E", "j": ["magnifying", "find", "search", "tool", "glass", "zoom", "detective"]}, "candle": {"a": "candle", "b": "1F56F", "j": ["wax", "light", "fire"]}, "light-bulb": {"a": "light bulb", "b": "1F4A1", "j": ["electric", "bulb", "comic", "light", "electricity", "idea"]}, "flashlight": {"a": "flashlight", "b": "1F526", "j": ["night", "electric", "sight", "torch", "light", "camping", "dark", "tool"]}, "red-paper-lantern": {"a": "red paper lantern", "b": "1F3EE", "j": ["paper", "bar", "halloween", "red", "light", "spooky", "lantern"]}, "diya-lamp": {"a": "diya lamp", "b": "1FA94", "j": ["lighting", "lamp", "diya", "oil"]}, "notebook-with-decorative-cover": {"a": "notebook with decorative cover", "b": "1F4D4", "j": ["book", "paper", "decorated", "record", "study", "cover", "classroom", "notes", "notebook"]}, "closed-book": {"a": "closed book", "b": "1F4D5", "j": ["learn", "book", "library", "read", "closed", "textbook", "knowledge"]}, "open-book": {"a": "open book", "b": "1F4D6", "j": ["learn", "book", "literature", "library", "study", "open", "read", "knowledge"]}, "green-book": {"a": "green book", "b": "1F4D7", "j": ["book", "library", "study", "read", "green", "knowledge"]}, "blue-book": {"a": "blue book", "b": "1F4D8", "j": ["blue", "learn", "book", "library", "study", "read", "knowledge"]}, "orange-book": {"a": "orange book", "b": "1F4D9", "j": ["book", "library", "orange", "study", "read", "textbook", "knowledge"]}, "books": {"a": "books", "b": "1F4DA", "j": ["book", "study", "library", "literature"]}, "notebook": {"a": "notebook", "b": "1F4D3", "j": ["paper", "record", "study", "stationery", "notes"]}, "ledger": {"a": "ledger", "b": "1F4D2", "j": ["notebook", "paper", "notes"]}, "page-with-curl": {"a": "page with curl", "b": "1F4C3", "j": ["document", "page", "curl", "paper", "documents", "office"]}, "scroll": {"a": "scroll", "b": "1F4DC", "j": ["paper", "history", "documents", "ancient"]}, "page-facing-up": {"a": "page facing up", "b": "1F4C4", "j": ["document", "page", "paper", "documents", "office", "information"]}, "newspaper": {"a": "newspaper", "b": "1F4F0", "j": ["headline", "paper", "press", "news"]}, "rolledup-newspaper": {"a": "rolled-up newspaper", "b": "1F5DE", "j": ["rolled_up_newspaper", "paper", "press", "news", "headline", "rolled", "newspaper"]}, "bookmark-tabs": {"a": "bookmark tabs", "b": "1F4D1", "j": ["order", "mark", "bookmark", "save", "favorite", "marker", "tidy", "tabs"]}, "bookmark": {"a": "bookmark", "b": "1F516", "j": ["save", "label", "favorite", "mark"]}, "label": {"a": "label", "b": "1F3F7", "j": ["tag", "sale"]}, "money-bag": {"a": "money bag", "b": "1F4B0", "j": ["moneybag", "dollar", "payment", "bag", "money", "coins", "sale"]}, "coin": {"a": "coin", "b": "1FA99", "j": ["metal", "currency", "silver", "treasure", "money", "gold"]}, "yen-banknote": {"a": "yen banknote", "b": "1F4B4", "j": ["bill", "currency", "japanese", "banknote", "dollar", "note", "yen", "money", "sales"]}, "dollar-banknote": {"a": "dollar banknote", "b": "1F4B5", "j": ["bill", "currency", "banknote", "dollar", "note", "money", "sales"]}, "euro-banknote": {"a": "euro banknote", "b": "1F4B6", "j": ["bill", "currency", "euro", "banknote", "dollar", "note", "money", "sales"]}, "pound-banknote": {"a": "pound banknote", "b": "1F4B7", "j": ["bill", "england", "currency", "british", "banknote", "uk", "note", "sterling", "sales", "money", "pound", "bills"]}, "money-with-wings": {"a": "money with wings", "b": "1F4B8", "j": ["bill", "banknote", "dollar", "payment", "money", "fly", "wings", "bills", "sale"]}, "credit-card": {"a": "credit card", "b": "1F4B3", "j": ["shopping", "bill", "card", "dollar", "credit", "payment", "money", "sales"]}, "receipt": {"a": "receipt", "b": "1F9FE", "j": ["bookkeeping", "accounting", "expenses", "evidence", "proof"]}, "chart-increasing-with-yen": {"a": "chart increasing with yen", "b": "1F4B9", "j": ["stats", "graph", "growth", "chart", "yen", "money", "presentation", "green-square"]}, "envelope": {"a": "envelope", "b": "2709", "j": ["letter", "communication", "email", "inbox", "postal"]}, "email": {"a": "e-mail", "b": "1F4E7", "j": ["e_mail", "letter", "communication", "mail", "inbox"]}, "incoming-envelope": {"a": "incoming envelope", "b": "1F4E8", "j": ["envelope", "incoming", "letter", "email", "receive", "e-mail", "inbox"]}, "envelope-with-arrow": {"a": "envelope with arrow", "b": "1F4E9", "j": ["arrow", "envelope", "communication", "email", "outgoing", "e-mail"]}, "outbox-tray": {"a": "outbox tray", "b": "1F4E4", "j": ["letter", "email", "outbox", "mail", "inbox", "box", "sent", "tray"]}, "inbox-tray": {"a": "inbox tray", "b": "1F4E5", "j": ["letter", "email", "documents", "mail", "receive", "inbox", "box", "tray"]}, "package": {"a": "package", "b": "1F4E6", "j": ["moving", "gift", "mail", "cardboard", "box", "parcel"]}, "closed-mailbox-with-raised-flag": {"a": "closed mailbox with raised flag", "b": "1F4EB", "j": ["postbox", "communication", "email", "mailbox", "closed", "mail", "inbox"]}, "closed-mailbox-with-lowered-flag": {"a": "closed mailbox with lowered flag", "b": "1F4EA", "j": ["postbox", "communication", "email", "lowered", "mailbox", "closed", "mail", "inbox"]}, "open-mailbox-with-raised-flag": {"a": "open mailbox with raised flag", "b": "1F4EC", "j": ["postbox", "communication", "email", "open", "mailbox", "mail", "inbox"]}, "open-mailbox-with-lowered-flag": {"a": "open mailbox with lowered flag", "b": "1F4ED", "j": ["postbox", "email", "lowered", "open", "mailbox", "mail", "inbox"]}, "postbox": {"a": "postbox", "b": "1F4EE", "j": ["envelope", "letter", "email", "mailbox", "mail"]}, "ballot-box-with-ballot": {"a": "ballot box with ballot", "b": "1F5F3", "j": ["election", "ballot", "box", "vote"]}, "pencil": {"a": "pencil", "b": "270F", "j": ["paper", "study", "school", "stationery", "writing", "write"]}, "black-nib": {"a": "black nib", "b": "2712", "j": ["stationery", "writing", "write", "nib", "pen"]}, "fountain-pen": {"a": "fountain pen", "b": "1F58B", "j": ["fountain", "stationery", "writing", "write", "pen"]}, "pen": {"a": "pen", "b": "1F58A", "j": ["ballpoint", "write", "stationery", "writing"]}, "paintbrush": {"a": "paintbrush", "b": "1F58C", "j": ["painting", "drawing", "art", "creativity"]}, "crayon": {"a": "crayon", "b": "1F58D", "j": ["creativity", "drawing"]}, "memo": {"a": "memo", "b": "1F4DD", "j": ["test", "pencil", "quiz", "compose", "paper", "documents", "study", "stationery", "writing", "write", "legal", "exam"]}, "briefcase": {"a": "briefcase", "b": "1F4BC", "j": ["job", "work", "business", "law", "documents", "career", "legal"]}, "file-folder": {"a": "file folder", "b": "1F4C1", "j": ["file", "business", "folder", "documents", "office"]}, "open-file-folder": {"a": "open file folder", "b": "1F4C2", "j": ["file", "folder", "documents", "open", "load"]}, "card-index-dividers": {"a": "card index dividers", "b": "1F5C2", "j": ["organizing", "business", "card", "stationery", "dividers", "index"]}, "calendar": {"a": "calendar", "b": "1F4C5", "j": ["date", "schedule"]}, "tearoff-calendar": {"a": "tear-off calendar", "b": "1F4C6", "j": ["date", "schedule", "calendar", "planning", "tear_off_calendar"]}, "spiral-notepad": {"a": "spiral notepad", "b": "1F5D2", "j": ["pad", "memo", "stationery", "note", "spiral"]}, "spiral-calendar": {"a": "spiral calendar", "b": "1F5D3", "j": ["pad", "date", "calendar", "schedule", "planning", "spiral"]}, "card-index": {"a": "card index", "b": "1F4C7", "j": ["business", "card", "stationery", "rolodex", "index"]}, "chart-increasing": {"a": "chart increasing", "b": "1F4C8", "j": ["stats", "upward", "business", "graph", "growth", "good", "trend", "chart", "success", "recovery", "money", "economics", "presentation", "sales"]}, "chart-decreasing": {"a": "chart decreasing", "b": "1F4C9", "j": ["stats", "business", "failure", "recession", "graph", "down", "bad", "trend", "chart", "money", "economics", "presentation", "sales"]}, "bar-chart": {"a": "bar chart", "b": "1F4CA", "j": ["stats", "graph", "bar", "chart", "presentation"]}, "clipboard": {"a": "clipboard", "b": "1F4CB", "j": ["documents", "stationery"]}, "pushpin": {"a": "pushpin", "b": "1F4CC", "j": ["here", "pin", "stationery", "mark"]}, "round-pushpin": {"a": "round pushpin", "b": "1F4CD", "j": ["pin", "map", "pushpin", "location", "stationery", "here"]}, "paperclip": {"a": "paperclip", "b": "1F4CE", "j": ["documents", "stationery"]}, "linked-paperclips": {"a": "linked paperclips", "b": "1F587", "j": ["link", "paperclip", "documents", "stationery"]}, "straight-ruler": {"a": "straight ruler", "b": "1F4CF", "j": ["architect", "math", "school", "stationery", "length", "drawing", "sketch", "calculate", "straight edge", "ruler"]}, "triangular-ruler": {"a": "triangular ruler", "b": "1F4D0", "j": ["architect", "math", "triangle", "stationery", "set", "sketch", "ruler"]}, "scissors": {"a": "scissors", "b": "2702", "j": ["cutting", "tool", "stationery", "cut"]}, "card-file-box": {"a": "card file box", "b": "1F5C3", "j": ["business", "file", "card", "stationery", "box"]}, "file-cabinet": {"a": "file cabinet", "b": "1F5C4", "j": ["file", "cabinet", "organizing", "filing"]}, "wastebasket": {"a": "wastebasket", "b": "1F5D1", "j": ["rubbish", "toss", "garbage", "trash", "bin"]}, "locked": {"a": "locked", "b": "1F512", "j": ["password", "padlock", "closed", "security"]}, "unlocked": {"a": "unlocked", "b": "1F513", "j": ["privacy", "open", "unlock", "lock", "security"]}, "locked-with-pen": {"a": "locked with pen", "b": "1F50F", "j": ["secret", "privacy", "lock", "nib", "security", "ink", "pen"]}, "locked-with-key": {"a": "locked with key", "b": "1F510", "j": ["privacy", "lock", "key", "closed", "security", "secure"]}, "key": {"a": "key", "b": "1F511", "j": ["password", "door", "lock"]}, "old-key": {"a": "old key", "b": "1F5DD", "j": ["door", "clue", "lock", "key", "old", "password"]}, "hammer": {"a": "hammer", "b": "1F528", "j": ["tool", "tools", "build", "create"]}, "axe": {"a": "axe", "b": "1FA93", "j": ["wood", "split", "chop", "tool", "hatchet", "cut"]}, "pick": {"a": "pick", "b": "26CF", "j": ["tool", "dig", "mining", "tools"]}, "hammer-and-pick": {"a": "hammer and pick", "b": "2692", "j": ["hammer", "build", "pick", "tools", "tool", "create"]}, "hammer-and-wrench": {"a": "hammer and wrench", "b": "1F6E0", "j": ["hammer", "build", "spanner", "tools", "tool", "wrench", "create"]}, "dagger": {"a": "dagger", "b": "1F5E1", "j": ["weapon", "knife"]}, "crossed-swords": {"a": "crossed swords", "b": "2694", "j": ["weapon", "crossed", "swords"]}, "water-pistol": {"a": "water pistol", "b": "1F52B", "j": ["violence", "tool", "water", "revolver", "weapon", "gun", "pistol", "handgun"]}, "boomerang": {"a": "boomerang", "b": "1FA83", "j": ["rebound", "australia", "repercussion", "weapon"]}, "bow-and-arrow": {"a": "bow and arrow", "b": "1F3F9", "j": ["arrow", "archer", "zodiac", "sports", "Sagittarius", "bow"]}, "shield": {"a": "shield", "b": "1F6E1", "j": ["weapon", "protection", "security"]}, "carpentry-saw": {"a": "carpentry saw", "b": "1FA9A", "j": ["carpenter", "lumber", "saw", "chop", "tool", "cut"]}, "wrench": {"a": "wrench", "b": "1F527", "j": ["diy", "ikea", "spanner", "tools", "fix", "maintainer", "tool"]}, "screwdriver": {"a": "screwdriver", "b": "1FA9B", "j": ["tool", "screw", "tools"]}, "nut-and-bolt": {"a": "nut and bolt", "b": "1F529", "j": ["handy", "tools", "fix", "nut", "tool", "bolt"]}, "gear": {"a": "gear", "b": "2699", "j": ["cog", "cogwheel", "tool"]}, "clamp": {"a": "clamp", "b": "1F5DC", "j": ["vice", "tool", "compress"]}, "balance-scale": {"a": "balance scale", "b": "2696", "j": ["balance", "Libra", "law", "zodiac", "fairness", "justice", "scale", "weight"]}, "white-cane": {"a": "white cane", "b": "1F9AF", "j": ["blind", "probing_cane", "accessibility"]}, "link": {"a": "link", "b": "1F517", "j": ["url", "rings"]}, "chains": {"a": "chains", "b": "26D3", "j": ["arrest", "lock", "chain"]}, "hook": {"a": "hook", "b": "1FA9D", "j": ["crook", "curve", "catch", "selling point", "tools", "ensnare"]}, "toolbox": {"a": "toolbox", "b": "1F9F0", "j": ["chest", "diy", "tools", "fix", "maintainer", "mechanic", "tool"]}, "magnet": {"a": "magnet", "b": "1F9F2", "j": ["attraction", "magnetic", "horseshoe"]}, "ladder": {"a": "ladder", "b": "1FA9C", "j": ["rung", "step", "tools", "climb"]}, "alembic": {"a": "alembic", "b": "2697", "j": ["chemistry", "distilling", "experiment", "science", "tool"]}, "test-tube": {"a": "test tube", "b": "1F9EA", "j": ["chemistry", "experiment", "lab", "science", "chemist"]}, "petri-dish": {"a": "petri dish", "b": "1F9EB", "j": ["biologist", "culture", "biology", "lab", "bacteria"]}, "dna": {"a": "dna", "b": "1F9EC", "j": ["biologist", "life", "gene", "evolution", "genetics"]}, "microscope": {"a": "microscope", "b": "1F52C", "j": ["study", "experiment", "laboratory", "science", "tool", "zoomin"]}, "telescope": {"a": "telescope", "b": "1F52D", "j": ["stars", "astronomy", "space", "science", "tool", "zoom"]}, "satellite-antenna": {"a": "satellite antenna", "b": "1F4E1", "j": ["communication", "satellite", "space", "antenna", "dish", "future", "radio"]}, "syringe": {"a": "syringe", "b": "1F489", "j": ["nurse", "shot", "doctor", "medicine", "hospital", "health", "sick", "needle", "drugs", "blood"]}, "drop-of-blood": {"a": "drop of blood", "b": "1FA78", "j": ["bleed", "menstruation", "harm", "medicine", "wound", "period", "blood donation", "injury", "hurt"]}, "pill": {"a": "pill", "b": "1F48A", "j": ["drug", "doctor", "medicine", "health", "sick", "pharmacy"]}, "adhesive-bandage": {"a": "adhesive bandage", "b": "1FA79", "j": ["heal", "bandage"]}, "stethoscope": {"a": "stethoscope", "b": "1FA7A", "j": ["heart", "medicine", "doctor", "health"]}, "door": {"a": "door", "b": "1F6AA", "j": ["house", "entry", "exit"]}, "elevator": {"a": "elevator", "b": "1F6D7", "j": ["lift", "hoist", "accessibility"]}, "mirror": {"a": "mirror", "b": "1FA9E", "j": ["reflection", "reflector", "speculum"]}, "window": {"a": "window", "b": "1FA9F", "j": ["transparent", "fresh air", "opening", "view", "scenery", "frame"]}, "bed": {"a": "bed", "b": "1F6CF", "j": ["sleep", "hotel", "rest"]}, "couch-and-lamp": {"a": "couch and lamp", "b": "1F6CB", "j": ["lamp", "chill", "couch", "read", "hotel"]}, "chair": {"a": "chair", "b": "1FA91", "j": ["sit", "furniture", "seat"]}, "toilet": {"a": "toilet", "b": "1F6BD", "j": ["potty", "bathroom", "washroom", "restroom", "wc"]}, "plunger": {"a": "plunger", "b": "1FAA0", "j": ["suction", "plumber", "force cup", "toilet"]}, "shower": {"a": "shower", "b": "1F6BF", "j": ["bathroom", "water", "clean"]}, "bathtub": {"a": "bathtub", "b": "1F6C1", "j": ["shower", "bathroom", "bath", "clean"]}, "mouse-trap": {"a": "mouse trap", "b": "1FAA4", "j": ["trap", "cheese", "bait", "mousetrap", "snare"]}, "razor": {"a": "razor", "b": "1FA92", "j": ["shave", "sharp", "cut"]}, "lotion-bottle": {"a": "lotion bottle", "b": "1F9F4", "j": ["sunscreen", "shampoo", "lotion", "moisturizer"]}, "safety-pin": {"a": "safety pin", "b": "1F9F7", "j": ["punk rock", "diaper"]}, "broom": {"a": "broom", "b": "1F9F9", "j": ["cleaning", "sweeping", "witch"]}, "basket": {"a": "basket", "b": "1F9FA", "j": ["farming", "laundry", "picnic"]}, "roll-of-paper": {"a": "roll of paper", "b": "1F9FB", "j": ["toilet paper", "roll", "paper towels"]}, "bucket": {"a": "bucket", "b": "1FAA3", "j": ["cask", "water", "pail", "vat", "container"]}, "soap": {"a": "soap", "b": "1F9FC", "j": ["soapdish", "bar", "lather", "bathing", "cleaning"]}, "toothbrush": {"a": "toothbrush", "b": "1FAA5", "j": ["brush", "bathroom", "hygiene", "teeth", "clean", "dental"]}, "sponge": {"a": "sponge", "b": "1F9FD", "j": ["absorbing", "cleaning", "porous"]}, "fire-extinguisher": {"a": "fire extinguisher", "b": "1F9EF", "j": ["quench", "extinguish", "fire"]}, "shopping-cart": {"a": "shopping cart", "b": "1F6D2", "j": ["shopping", "cart", "trolley"]}, "cigarette": {"a": "cigarette", "b": "1F6AC", "j": ["smoke", "smoking", "kills", "tobacco", "joint"]}, "coffin": {"a": "coffin", "b": "26B0", "j": ["death", "vampire", "rip", "casket", "funeral", "die", "dead", "box", "cemetery", "graveyard"]}, "headstone": {"a": "headstone", "b": "1FAA6", "j": ["death", "rip", "tombstone", "grave", "cemetery", "graveyard"]}, "funeral-urn": {"a": "funeral urn", "b": "26B1", "j": ["death", "rip", "funeral", "ashes", "die", "dead", "urn"]}, "moai": {"a": "moai", "b": "1F5FF", "j": ["rock", "moyai", "face", "statue", "easter island"]}, "placard": {"a": "placard", "b": "1FAA7", "j": ["sign", "announcement", "picket", "protest", "demonstration"]}, "atm-sign": {"a": "ATM sign", "b": "1F3E7", "j": ["cash", "bank", "teller", "automated", "atm", "blue-square", "payment", "money", "sales"]}, "litter-in-bin-sign": {"a": "litter in bin sign", "b": "1F6AE", "j": ["info", "sign", "litter", "human", "blue-square", "litter bin"]}, "potable-water": {"a": "potable water", "b": "1F6B0", "j": ["restroom", "water", "drinking", "blue-square", "liquid", "potable", "faucet", "cleaning"]}, "wheelchair-symbol": {"a": "wheelchair symbol", "b": "267F", "j": ["blue-square", "access", "disabled", "accessibility"]}, "mens-room": {"a": "men’s room", "b": "1F6B9", "j": ["gender", "man", "male", "restroom", "blue-square", "lavatory", "toilet", "men_s_room", "wc"]}, "womens-room": {"a": "women’s room", "b": "1F6BA", "j": ["gender", "woman", "restroom", "purple-square", "loo", "lavatory", "women_s_room", "toilet", "wc", "female"]}, "restroom": {"a": "restroom", "b": "1F6BB", "j": ["gender", "WC", "blue-square", "lavatory", "toilet", "refresh", "wc"]}, "baby-symbol": {"a": "baby symbol", "b": "1F6BC", "j": ["changing", "orange-square", "baby", "child"]}, "water-closet": {"a": "water closet", "b": "1F6BE", "j": ["restroom", "water", "blue-square", "lavatory", "closet", "toilet", "wc"]}, "passport-control": {"a": "passport control", "b": "1F6C2", "j": ["custom", "blue-square", "control", "passport"]}, "customs": {"a": "customs", "b": "1F6C3", "j": ["blue-square", "border", "passport"]}, "baggage-claim": {"a": "baggage claim", "b": "1F6C4", "j": ["transport", "claim", "baggage", "blue-square", "airport"]}, "left-luggage": {"a": "left luggage", "b": "1F6C5", "j": ["locker", "luggage", "baggage", "blue-square", "travel"]}, "warning": {"a": "warning", "b": "26A0", "j": ["alert", "wip", "problem", "error", "issue", "exclamation"]}, "children-crossing": {"a": "children crossing", "b": "1F6B8", "j": ["danger", "warning", "sign", "crossing", "yellow-diamond", "traffic", "pedestrian", "school", "child", "driving"]}, "no-entry": {"a": "no entry", "b": "26D4", "j": ["forbidden", "circle", "denied", "privacy", "stop", "no", "entry", "prohibited", "traffic", "bad", "not", "limit", "security"]}, "prohibited": {"a": "prohibited", "b": "1F6AB", "j": ["forbidden", "circle", "denied", "stop", "no", "entry", "disallow", "not", "limit", "forbid"]}, "no-bicycles": {"a": "no bicycles", "b": "1F6B3", "j": ["forbidden", "circle", "no", "prohibited", "bicycle", "bike", "cyclist"]}, "no-smoking": {"a": "no smoking", "b": "1F6AD", "j": ["smoke", "forbidden", "smoking", "smell", "no", "prohibited", "cigarette", "blue-square", "not"]}, "no-littering": {"a": "no littering", "b": "1F6AF", "j": ["forbidden", "circle", "litter", "no", "prohibited", "garbage", "not", "trash", "bin"]}, "nonpotable-water": {"a": "non-potable water", "b": "1F6B1", "j": ["non_potable_water", "circle", "non-drinking", "drink", "water", "faucet", "tap", "non-potable"]}, "no-pedestrians": {"a": "no pedestrians", "b": "1F6B7", "j": ["forbidden", "circle", "crossing", "no", "prohibited", "pedestrian", "walking", "not", "rules"]}, "no-mobile-phones": {"a": "no mobile phones", "b": "1F4F5", "j": ["forbidden", "circle", "iphone", "phone", "no", "mute", "mobile", "cell"]}, "no-one-under-eighteen": {"a": "no one under eighteen", "b": "1F51E", "j": ["pub", "underage", "night", "circle", "prohibited", "drink", "18", "eighteen", "age restriction", "minor"]}, "radioactive": {"a": "radioactive", "b": "2622", "j": ["danger", "sign", "nuclear"]}, "biohazard": {"a": "biohazard", "b": "2623", "j": ["danger", "sign"]}, "up-arrow": {"a": "up arrow", "b": "2B06", "j": ["arrow", "top", "blue-square", "continue", "direction", "north", "cardinal"]}, "upright-arrow": {"a": "up-right arrow", "b": "2197", "j": ["arrow", "up_right_arrow", "point", "diagonal", "blue-square", "direction", "northeast", "intercardinal"]}, "right-arrow": {"a": "right arrow", "b": "27A1", "j": ["arrow", "east", "blue-square", "direction", "next", "cardinal"]}, "downright-arrow": {"a": "down-right arrow", "b": "2198", "j": ["arrow", "diagonal", "blue-square", "down_right_arrow", "direction", "intercardinal", "southeast"]}, "down-arrow": {"a": "down arrow", "b": "2B07", "j": ["arrow", "down", "blue-square", "cardinal", "direction", "bottom", "south"]}, "downleft-arrow": {"a": "down-left arrow", "b": "2199", "j": ["arrow", "southwest", "diagonal", "blue-square", "down_left_arrow", "direction", "intercardinal"]}, "left-arrow": {"a": "left arrow", "b": "2B05", "j": ["arrow", "west", "blue-square", "previous", "back", "direction", "cardinal"]}, "upleft-arrow": {"a": "up-left arrow", "b": "2196", "j": ["arrow", "point", "northwest", "up_left_arrow", "diagonal", "blue-square", "direction", "intercardinal"]}, "updown-arrow": {"a": "up-down arrow", "b": "2195", "j": ["arrow", "blue-square", "vertical", "direction", "up_down_arrow", "way"]}, "leftright-arrow": {"a": "left-right arrow", "b": "2194", "j": ["left_right_arrow", "arrow", "sideways", "shape", "direction", "horizontal"]}, "right-arrow-curving-left": {"a": "right arrow curving left", "b": "21A9", "j": ["arrow", "undo", "back", "return", "blue-square", "enter"]}, "left-arrow-curving-right": {"a": "left arrow curving right", "b": "21AA", "j": ["arrow", "blue-square", "return", "direction", "rotate"]}, "right-arrow-curving-up": {"a": "right arrow curving up", "b": "2934", "j": ["blue-square", "arrow", "direction", "top"]}, "right-arrow-curving-down": {"a": "right arrow curving down", "b": "2935", "j": ["arrow", "down", "blue-square", "direction", "bottom"]}, "clockwise-vertical-arrows": {"a": "clockwise vertical arrows", "b": "1F503", "j": ["arrow", "sync", "round", "cycle", "repeat", "reload", "clockwise"]}, "counterclockwise-arrows-button": {"a": "counterclockwise arrows button", "b": "1F504", "j": ["arrow", "sync", "blue-square", "cycle", "anticlockwise", "withershins", "counterclockwise"]}, "back-arrow": {"a": "BACK arrow", "b": "1F519", "j": ["back", "arrow", "return", "words"]}, "end-arrow": {"a": "END arrow", "b": "1F51A", "j": ["end", "arrow", "words"]}, "on-arrow": {"a": "ON! arrow", "b": "1F51B", "j": ["arrow", "words", "on", "mark"]}, "soon-arrow": {"a": "SOON arrow", "b": "1F51C", "j": ["arrow", "soon", "words"]}, "top-arrow": {"a": "TOP arrow", "b": "1F51D", "j": ["arrow", "top", "words", "blue-square", "up"]}, "place-of-worship": {"a": "place of worship", "b": "1F6D0", "j": ["church", "worship", "prayer", "temple", "religion"]}, "atom-symbol": {"a": "atom symbol", "b": "269B", "j": ["chemistry", "atom", "atheist", "science", "physics"]}, "om": {"a": "om", "b": "1F549", "j": ["sikhism", "Hindu", "hinduism", "buddhism", "jainism", "religion"]}, "star-of-david": {"a": "star of David", "b": "2721", "j": ["star", "Jew", "David", "Jewish", "judaism", "religion"]}, "wheel-of-dharma": {"a": "wheel of dharma", "b": "2638", "j": ["dharma", "sikhism", "wheel", "hinduism", "buddhism", "jainism", "Buddhist", "religion"]}, "yin-yang": {"a": "yin yang", "b": "262F", "j": ["balance", "yang", "tao", "taoist", "yin", "religion"]}, "latin-cross": {"a": "latin cross", "b": "271D", "j": ["religion", "cross", "christianity", "Christian"]}, "orthodox-cross": {"a": "orthodox cross", "b": "2626", "j": ["cross", "religion", "suppedaneum", "Christian"]}, "star-and-crescent": {"a": "star and crescent", "b": "262A", "j": ["islam", "Muslim", "religion"]}, "peace-symbol": {"a": "peace symbol", "b": "262E", "j": ["hippie", "peace"]}, "menorah": {"a": "menorah", "b": "1F54E", "j": ["candlestick", "hanukkah", "jewish", "candelabrum", "candles", "religion"]}, "dotted-sixpointed-star": {"a": "dotted six-pointed star", "b": "1F52F", "j": ["jewish", "star", "purple-square", "dotted_six_pointed_star", "fortune", "religion", "hexagram"]}, "aries": {"a": "Aries", "b": "2648", "j": ["astrology", "sign", "ram", "purple-square", "zodiac"]}, "taurus": {"a": "Taurus", "b": "2649", "j": ["astrology", "sign", "purple-square", "ox", "zodiac", "bull"]}, "gemini": {"a": "Gemini", "b": "264A", "j": ["astrology", "sign", "twins", "purple-square", "zodiac"]}, "cancer": {"a": "Cancer", "b": "264B", "j": ["astrology", "sign", "purple-square", "zodiac", "crab"]}, "leo": {"a": "Leo", "b": "264C", "j": ["astrology", "sign", "lion", "purple-square", "zodiac"]}, "virgo": {"a": "Virgo", "b": "264D", "j": ["astrology", "sign", "purple-square", "zodiac"]}, "libra": {"a": "Libra", "b": "264E", "j": ["astrology", "sign", "balance", "purple-square", "zodiac", "scales", "justice"]}, "scorpio": {"a": "Scorpio", "b": "264F", "j": ["astrology", "sign", "scorpion", "purple-square", "zodiac", "scorpius"]}, "sagittarius": {"a": "Sagittarius", "b": "2650", "j": ["astrology", "sign", "archer", "purple-square", "zodiac"]}, "capricorn": {"a": "Capricorn", "b": "2651", "j": ["astrology", "sign", "purple-square", "zodiac", "goat"]}, "aquarius": {"a": "Aquarius", "b": "2652", "j": ["astrology", "sign", "purple-square", "water", "zodiac", "bearer"]}, "pisces": {"a": "Pisces", "b": "2653", "j": ["astrology", "sign", "purple-square", "fish", "zodiac"]}, "ophiuchus": {"a": "Ophiuchus", "b": "26CE", "j": ["astrology", "sign", "serpent", "snake", "purple-square", "zodiac", "constellation", "bearer"]}, "shuffle-tracks-button": {"a": "shuffle tracks button", "b": "1F500", "j": ["arrow", "random", "crossed", "blue-square", "shuffle", "music"]}, "repeat-button": {"a": "repeat button", "b": "1F501", "j": ["arrow", "record", "loop", "repeat", "clockwise"]}, "repeat-single-button": {"a": "repeat single button", "b": "1F502", "j": ["arrow", "once", "blue-square", "loop", "clockwise"]}, "play-button": {"a": "play button", "b": "25B6", "j": ["arrow", "play", "triangle", "blue-square", "direction", "right"]}, "fastforward-button": {"a": "fast-forward button", "b": "23E9", "j": ["arrow", "play", "fast", "fast_forward_button", "blue-square", "speed", "continue", "double", "forward"]}, "next-track-button": {"a": "next track button", "b": "23ED", "j": ["arrow", "next track", "next scene", "triangle", "blue-square", "next", "forward"]}, "play-or-pause-button": {"a": "play or pause button", "b": "23EF", "j": ["arrow", "play", "triangle", "blue-square", "pause", "right"]}, "reverse-button": {"a": "reverse button", "b": "25C0", "j": ["arrow", "reverse", "triangle", "left", "blue-square", "direction"]}, "fast-reverse-button": {"a": "fast reverse button", "b": "23EA", "j": ["arrow", "play", "blue-square", "double", "rewind"]}, "last-track-button": {"a": "last track button", "b": "23EE", "j": ["previous track", "arrow", "previous scene", "triangle", "backward"]}, "upwards-button": {"a": "upwards button", "b": "1F53C", "j": ["arrow", "top", "point", "triangle", "blue-square", "red", "direction", "button", "forward"]}, "fast-up-button": {"a": "fast up button", "b": "23EB", "j": ["arrow", "top", "blue-square", "direction", "double"]}, "downwards-button": {"a": "downwards button", "b": "1F53D", "j": ["arrow", "down", "blue-square", "red", "direction", "button", "bottom"]}, "fast-down-button": {"a": "fast down button", "b": "23EC", "j": ["arrow", "down", "blue-square", "direction", "double", "bottom"]}, "pause-button": {"a": "pause button", "b": "23F8", "j": ["bar", "blue-square", "vertical", "double", "pause"]}, "stop-button": {"a": "stop button", "b": "23F9", "j": ["blue-square", "square", "stop"]}, "record-button": {"a": "record button", "b": "23FA", "j": ["blue-square", "circle", "record"]}, "eject-button": {"a": "eject button", "b": "23CF", "j": ["blue-square", "eject"]}, "cinema": {"a": "cinema", "b": "1F3A6", "j": ["theater", "stage", "camera", "record", "curtain", "film", "blue-square", "movie"]}, "dim-button": {"a": "dim button", "b": "1F505", "j": ["sun", "brightness", "low", "warm", "afternoon", "dim", "summer"]}, "bright-button": {"a": "bright button", "b": "1F506", "j": ["sun", "brightness", "light", "bright"]}, "antenna-bars": {"a": "antenna bars", "b": "1F4F6", "j": ["phone", "bars", "bluetooth", "bar", "mobile", "blue-square", "internet", "antenna", "connection", "wifi", "cell", "reception"]}, "vibration-mode": {"a": "vibration mode", "b": "1F4F3", "j": ["phone", "orange-square", "telephone", "mobile", "vibration", "mode", "cell"]}, "mobile-phone-off": {"a": "mobile phone off", "b": "1F4F4", "j": ["silence", "phone", "orange-square", "telephone", "mute", "mobile", "quiet", "cell", "off"]}, "female-sign": {"a": "female sign", "b": "2640", "j": ["lady", "women", "girl", "woman"]}, "male-sign": {"a": "male sign", "b": "2642", "j": ["boy", "man", "men"]}, "transgender-symbol": {"a": "transgender symbol", "b": "26A7", "j": ["transgender", "lgbtq"]}, "multiply": {"a": "multiply", "b": "2716", "j": ["sign", "multiplication_sign", "math", "cancel", "multiplication", "calculation", "x", "×"]}, "plus": {"a": "plus", "b": "2795", "j": ["sign", "+", "increase", "math", "more", "calculation", "plus_sign", "addition"]}, "minus": {"a": "minus", "b": "2796", "j": ["minus_sign", "sign", "math", "−", "calculation", "-", "less", "subtract"]}, "divide": {"a": "divide", "b": "2797", "j": ["sign", "division_sign", "math", "÷", "division", "calculation"]}, "infinity": {"a": "infinity", "b": "267E", "j": ["unbounded", "universal", "forever"]}, "double-exclamation-mark": {"a": "double exclamation mark", "b": "203C", "j": ["!!", "mark", "bangbang", "exclamation", "!", "surprise"]}, "exclamation-question-mark": {"a": "exclamation question mark", "b": "2049", "j": ["punctuation", "interrobang", "mark", "exclamation", "?", "wat", "!?", "question", "!", "surprise"]}, "red-question-mark": {"a": "red question mark", "b": "2753", "j": ["punctuation", "question_mark", "mark", "?", "question", "confused", "doubt"]}, "white-question-mark": {"a": "white question mark", "b": "2754", "j": ["confused", "punctuation", "mark", "?", "outlined", "huh", "doubts", "question", "gray"]}, "white-exclamation-mark": {"a": "white exclamation mark", "b": "2755", "j": ["warning", "punctuation", "mark", "wow", "outlined", "exclamation", "!", "surprise", "gray"]}, "red-exclamation-mark": {"a": "red exclamation mark", "b": "2757", "j": ["danger", "warning", "punctuation", "heavy_exclamation_mark", "mark", "exclamation_mark", "wow", "exclamation", "!", "surprise"]}, "wavy-dash": {"a": "wavy dash", "b": "3030", "j": ["moustache", "punctuation", "draw", "dash", "squiggle", "scribble", "mustache", "line", "wavy"]}, "currency-exchange": {"a": "currency exchange", "b": "1F4B1", "j": ["currency", "bank", "dollar", "travel", "exchange", "money", "sales"]}, "heavy-dollar-sign": {"a": "heavy dollar sign", "b": "1F4B2", "j": ["currency", "dollar", "payment", "money", "sales", "buck"]}, "medical-symbol": {"a": "medical symbol", "b": "2695", "j": ["staff", "aesculapius", "hospital", "medicine", "health"]}, "recycling-symbol": {"a": "recycling symbol", "b": "267B", "j": ["arrow", "recycle", "environment", "garbage", "trash"]}, "fleurdelis": {"a": "fleur-de-lis", "b": "269C", "j": ["fleur_de_lis", "decorative", "scout"]}, "trident-emblem": {"a": "trident emblem", "b": "1F531", "j": ["emblem", "anchor", "weapon", "ship", "tool", "spear", "trident"]}, "name-badge": {"a": "name badge", "b": "1F4DB", "j": ["name", "forbid", "fire", "badge"]}, "japanese-symbol-for-beginner": {"a": "Japanese symbol for beginner", "b": "1F530", "j": ["chevron", "badge", "leaf", "shield", "Japanese", "beginner"]}, "hollow-red-circle": {"a": "hollow red circle", "b": "2B55", "j": ["large", "circle", "o", "red", "round"]}, "check-mark-button": {"a": "check mark button", "b": "2705", "j": ["election", "check", "✓", "green-square", "mark", "vote", "agree", "answer", "tick", "button", "ok"]}, "check-box-with-check": {"a": "check box with check", "b": "2611", "j": ["election", "yes", "check", "✓", "black-square", "vote", "confirm", "agree", "tick", "box", "ok"]}, "check-mark": {"a": "check mark", "b": "2714", "j": ["yes", "check", "✓", "nike", "mark", "answer", "tick", "ok"]}, "cross-mark": {"a": "cross mark", "b": "274C", "j": ["cross", "mark", "no", "delete", "cancel", "multiply", "remove", "multiplication", "red", "x", "×"]}, "cross-mark-button": {"a": "cross mark button", "b": "274E", "j": ["mark", "no", "square", "deny", "x", "green-square", "×"]}, "curly-loop": {"a": "curly loop", "b": "27B0", "j": ["draw", "curl", "shape", "squiggle", "scribble", "loop"]}, "double-curly-loop": {"a": "double curly loop", "b": "27BF", "j": ["curl", "tape", "cassette", "double", "loop"]}, "part-alternation-mark": {"a": "part alternation mark", "b": "303D", "j": ["stats", "business", "mark", "graph", "bad", "part", "economics", "presentation"]}, "eightspoked-asterisk": {"a": "eight-spoked asterisk", "b": "2733", "j": ["eight_spoked_asterisk", "star", "*", "sparkle", "asterisk", "green-square"]}, "eightpointed-star": {"a": "eight-pointed star", "b": "2734", "j": ["polygon", "orange-square", "star", "*", "shape", "eight_pointed_star"]}, "sparkle": {"a": "sparkle", "b": "2747", "j": ["awesome", "fireworks", "good", "stars", "*", "green-square"]}, "copyright": {"a": "copyright", "b": "00A9", "j": ["ip", "circle", "license", "law", "legal", "c"]}, "registered": {"a": "registered", "b": "00AE", "j": ["alphabet", "circle", "r"]}, "trade-mark": {"a": "trade mark", "b": "2122", "j": ["mark", "tm", "law", "brand", "legal", "trademark"]}, "keycap": {"a": "keycap: *", "b": "002A-FE0F-20E3", "j": ["star", "keycap_"]}, "keycap-0": {"a": "keycap: 0", "b": "0030-FE0F-20E3", "j": ["0", "keycap", "numbers", "blue-square", "null"]}, "keycap-1": {"a": "keycap: 1", "b": "0031-FE0F-20E3", "j": ["numbers", "blue-square", "1", "keycap"]}, "keycap-2": {"a": "keycap: 2", "b": "0032-FE0F-20E3", "j": ["keycap", "numbers", "2", "blue-square", "prime"]}, "keycap-3": {"a": "keycap: 3", "b": "0033-FE0F-20E3", "j": ["keycap", "numbers", "3", "blue-square", "prime"]}, "keycap-4": {"a": "keycap: 4", "b": "0034-FE0F-20E3", "j": ["numbers", "blue-square", "4", "keycap"]}, "keycap-5": {"a": "keycap: 5", "b": "0035-FE0F-20E3", "j": ["keycap", "numbers", "blue-square", "prime", "5"]}, "keycap-6": {"a": "keycap: 6", "b": "0036-FE0F-20E3", "j": ["numbers", "6", "keycap", "blue-square"]}, "keycap-7": {"a": "keycap: 7", "b": "0037-FE0F-20E3", "j": ["7", "keycap", "numbers", "blue-square", "prime"]}, "keycap-8": {"a": "keycap: 8", "b": "0038-FE0F-20E3", "j": ["numbers", "blue-square", "8", "keycap"]}, "keycap-9": {"a": "keycap: 9", "b": "0039-FE0F-20E3", "j": ["numbers", "blue-square", "9", "keycap"]}, "keycap-10": {"a": "keycap: 10", "b": "1F51F", "j": ["numbers", "blue-square", "10", "keycap"]}, "input-latin-uppercase": {"a": "input latin uppercase", "b": "1F520", "j": ["latin", "words", "alphabet", "input", "ABCD", "uppercase", "blue-square", "letters"]}, "input-latin-lowercase": {"a": "input latin lowercase", "b": "1F521", "j": ["latin", "alphabet", "abcd", "input", "blue-square", "letters", "lowercase"]}, "input-numbers": {"a": "input numbers", "b": "1F522", "j": ["numbers", "blue-square", "1234", "input"]}, "input-symbols": {"a": "input symbols", "b": "1F523", "j": ["percent", "〒♪&%", "ampersand", "input", "blue-square", "note", "glyphs", "characters", "music"]}, "input-latin-letters": {"a": "input latin letters", "b": "1F524", "j": ["latin", "alphabet", "input", "blue-square", "abc", "letters"]}, "a-button-blood-type": {"a": "A button (blood type)", "b": "1F170", "j": ["a_button", "letter", "alphabet", "a", "red-square", "blood type"]}, "ab-button-blood-type": {"a": "AB button (blood type)", "b": "1F18E", "j": ["ab_button", "alphabet", "red-square", "ab", "blood type"]}, "b-button-blood-type": {"a": "B button (blood type)", "b": "1F171", "j": ["letter", "alphabet", "b", "red-square", "b_button", "blood type"]}, "cl-button": {"a": "CL button", "b": "1F191", "j": ["alphabet", "red-square", "words", "cl"]}, "cool-button": {"a": "COOL button", "b": "1F192", "j": ["blue-square", "words", "cool"]}, "free-button": {"a": "FREE button", "b": "1F193", "j": ["blue-square", "free", "words"]}, "information": {"a": "information", "b": "2139", "j": ["i", "alphabet", "blue-square", "letter"]}, "id-button": {"a": "ID button", "b": "1F194", "j": ["id", "identity", "purple-square", "words"]}, "circled-m": {"a": "circled M", "b": "24C2", "j": ["circle", "blue-circle", "letter", "alphabet", "m"]}, "new-button": {"a": "NEW button", "b": "1F195", "j": ["blue-square", "start", "new", "words"]}, "ng-button": {"a": "NG button", "b": "1F196", "j": ["icon", "words", "blue-square", "ng", "shape"]}, "o-button-blood-type": {"a": "O button (blood type)", "b": "1F17E", "j": ["letter", "alphabet", "o", "o_button", "red-square", "blood type"]}, "ok-button": {"a": "OK button", "b": "1F197", "j": ["yes", "OK", "good", "agree", "blue-square"]}, "p-button": {"a": "P button", "b": "1F17F", "j": ["letter", "alphabet", "blue-square", "parking", "cars"]}, "sos-button": {"a": "SOS button", "b": "1F198", "j": ["words", "sos", "emergency", "red-square", "911", "help"]}, "up-button": {"a": "UP! button", "b": "1F199", "j": ["mark", "high", "above", "blue-square", "up"]}, "vs-button": {"a": "VS button", "b": "1F19A", "j": ["orange-square", "vs", "words", "versus"]}, "japanese-here-button": {"a": "Japanese “here” button", "b": "1F201", "j": ["destination", "ココ", "katakana", "Japanese", "japanese", "“here”", "blue-square", "here"]}, "japanese-service-charge-button": {"a": "Japanese “service charge” button", "b": "1F202", "j": ["katakana", "Japanese", "japanese", "blue-square", "“service charge”", "サ"]}, "japanese-monthly-amount-button": {"a": "Japanese “monthly amount” button", "b": "1F237", "j": ["orange-square", "moon", "Japanese", "japanese", "kanji", "ideograph", "月", "chinese", "“monthly amount”", "month"]}, "japanese-not-free-of-charge-button": {"a": "Japanese “not free of charge” button", "b": "1F236", "j": ["有", "orange-square", "Japanese", "have", "kanji", "ideograph", "chinese", "“not free of charge”"]}, "japanese-reserved-button": {"a": "Japanese “reserved” button", "b": "1F22F", "j": ["point", "“reserved”", "Japanese", "kanji", "ideograph", "chinese", "green-square", "指"]}, "japanese-bargain-button": {"a": "Japanese “bargain” button", "b": "1F250", "j": ["circle", "得", "obtain", "Japanese", "get", "“bargain”", "kanji", "ideograph", "chinese"]}, "japanese-discount-button": {"a": "Japanese “discount” button", "b": "1F239", "j": ["pink-square", "Japanese", "“discount”", "kanji", "ideograph", "割", "chinese", "divide", "cut"]}, "japanese-free-of-charge-button": {"a": "Japanese “free of charge” button", "b": "1F21A", "j": ["“free of charge”", "orange-square", "Japanese", "japanese", "nothing", "kanji", "ideograph", "chinese", "無"]}, "japanese-prohibited-button": {"a": "Japanese “prohibited” button", "b": "1F232", "j": ["“prohibited”", "forbidden", "禁", "Japanese", "japanese", "red-square", "kanji", "ideograph", "limit", "chinese", "restricted"]}, "japanese-acceptable-button": {"a": "Japanese “acceptable” button", "b": "1F251", "j": ["yes", "good", "orange-circle", "可", "Japanese", "agree", "kanji", "ideograph", "chinese", "ok", "“acceptable”"]}, "japanese-application-button": {"a": "Japanese “application” button", "b": "1F238", "j": ["orange-square", "Japanese", "japanese", "kanji", "ideograph", "“application”", "chinese", "申"]}, "japanese-passing-grade-button": {"a": "Japanese “passing grade” button", "b": "1F234", "j": ["join", "Japanese", "japanese", "“passing grade”", "red-square", "kanji", "ideograph", "chinese", "合"]}, "japanese-vacancy-button": {"a": "Japanese “vacancy” button", "b": "1F233", "j": ["“vacancy”", "空", "Japanese", "japanese", "blue-square", "sky", "kanji", "ideograph", "empty", "chinese"]}, "japanese-congratulations-button": {"a": "Japanese “congratulations” button", "b": "3297", "j": ["Japanese", "japanese", "kanji", "ideograph", "chinese", "red-circle", "“congratulations”", "祝"]}, "japanese-secret-button": {"a": "Japanese “secret” button", "b": "3299", "j": ["privacy", "“secret”", "Japanese", "sshh", "kanji", "ideograph", "秘", "red-circle", "chinese"]}, "japanese-open-for-business-button": {"a": "Japanese “open for business” button", "b": "1F23A", "j": ["orange-square", "Japanese", "営", "japanese", "opening hours", "“open for business”", "ideograph"]}, "japanese-no-vacancy-button": {"a": "Japanese “no vacancy” button", "b": "1F235", "j": ["満", "full", "Japanese", "japanese", "red-square", "kanji", "ideograph", "chinese", "“no vacancy”"]}, "red-circle": {"a": "red circle", "b": "1F534", "j": ["danger", "circle", "shape", "red", "geometric", "error"]}, "orange-circle": {"a": "orange circle", "b": "1F7E0", "j": ["circle", "orange", "round"]}, "yellow-circle": {"a": "yellow circle", "b": "1F7E1", "j": ["circle", "round", "yellow"]}, "green-circle": {"a": "green circle", "b": "1F7E2", "j": ["circle", "round", "green"]}, "blue-circle": {"a": "blue circle", "b": "1F535", "j": ["blue", "circle", "icon", "geometric", "shape", "button"]}, "purple-circle": {"a": "purple circle", "b": "1F7E3", "j": ["circle", "purple", "round"]}, "brown-circle": {"a": "brown circle", "b": "1F7E4", "j": ["circle", "brown", "round"]}, "black-circle": {"a": "black circle", "b": "26AB", "j": ["circle", "shape", "geometric", "button", "round"]}, "white-circle": {"a": "white circle", "b": "26AA", "j": ["circle", "shape", "round", "geometric"]}, "red-square": {"a": "red square", "b": "1F7E5", "j": ["red", "square"]}, "orange-square": {"a": "orange square", "b": "1F7E7", "j": ["square", "orange"]}, "yellow-square": {"a": "yellow square", "b": "1F7E8", "j": ["square", "yellow"]}, "green-square": {"a": "green square", "b": "1F7E9", "j": ["square", "green"]}, "blue-square": {"a": "blue square", "b": "1F7E6", "j": ["blue", "square"]}, "purple-square": {"a": "purple square", "b": "1F7EA", "j": ["square", "purple"]}, "brown-square": {"a": "brown square", "b": "1F7EB", "j": ["square", "brown"]}, "black-large-square": {"a": "black large square", "b": "2B1B", "j": ["icon", "geometric", "shape", "square", "button"]}, "white-large-square": {"a": "white large square", "b": "2B1C", "j": ["icon", "stone", "shape", "geometric", "square", "button"]}, "black-medium-square": {"a": "black medium square", "b": "25FC", "j": ["icon", "geometric", "shape", "square", "button"]}, "white-medium-square": {"a": "white medium square", "b": "25FB", "j": ["icon", "stone", "shape", "geometric", "square"]}, "black-mediumsmall-square": {"a": "black medium-small square", "b": "25FE", "j": ["icon", "geometric", "shape", "square", "black_medium_small_square", "button"]}, "white-mediumsmall-square": {"a": "white medium-small square", "b": "25FD", "j": ["icon", "stone", "geometric", "shape", "square", "white_medium_small_square", "button"]}, "black-small-square": {"a": "black small square", "b": "25AA", "j": ["geometric", "shape", "icon", "square"]}, "white-small-square": {"a": "white small square", "b": "25AB", "j": ["geometric", "shape", "icon", "square"]}, "large-orange-diamond": {"a": "large orange diamond", "b": "1F536", "j": ["diamond", "orange", "gem", "shape", "geometric", "jewel"]}, "large-blue-diamond": {"a": "large blue diamond", "b": "1F537", "j": ["blue", "diamond", "geometric", "shape", "gem", "jewel"]}, "small-orange-diamond": {"a": "small orange diamond", "b": "1F538", "j": ["diamond", "orange", "gem", "shape", "geometric", "jewel"]}, "small-blue-diamond": {"a": "small blue diamond", "b": "1F539", "j": ["blue", "diamond", "geometric", "shape", "gem", "jewel"]}, "red-triangle-pointed-up": {"a": "red triangle pointed up", "b": "1F53A", "j": ["top", "geometric", "shape", "red", "direction", "up"]}, "red-triangle-pointed-down": {"a": "red triangle pointed down", "b": "1F53B", "j": ["down", "shape", "red", "geometric", "direction", "bottom"]}, "diamond-with-a-dot": {"a": "diamond with a dot", "b": "1F4A0", "j": ["blue", "diamond", "fancy", "inside", "crystal", "comic", "geometric", "gem", "jewel"]}, "radio-button": {"a": "radio button", "b": "1F518", "j": ["circle", "input", "geometric", "old", "button", "music", "radio"]}, "white-square-button": {"a": "white square button", "b": "1F533", "j": ["input", "outlined", "geometric", "shape", "square", "button"]}, "black-square-button": {"a": "black square button", "b": "1F532", "j": ["input", "geometric", "shape", "square", "button", "frame"]}, "chequered-flag": {"a": "chequered flag", "b": "1F3C1", "j": ["checkered", "contest", "finishline", "race", "racing", "gokart", "chequered"]}, "triangular-flag": {"a": "triangular flag", "b": "1F6A9", "j": ["place", "post", "milestone", "mark"]}, "crossed-flags": {"a": "crossed flags", "b": "1F38C", "j": ["cross", "Japanese", "crossed", "japanese", "celebration", "nation", "country", "border"]}, "black-flag": {"a": "black flag", "b": "1F3F4", "j": ["waving", "pirate"]}, "white-flag": {"a": "white flag", "b": "1F3F3", "j": ["waving", "give up", "loser", "losing", "fail", "lost", "surrender"]}, "rainbow-flag": {"a": "rainbow flag", "b": "1F3F3-FE0F-200D-1F308", "j": ["homosexual", "glbt", "flag", "pride", "bisexual", "gay", "queer", "lesbian", "lgbt", "rainbow", "transgender"]}, "transgender-flag": {"a": "transgender flag", "b": "1F3F3-FE0F-200D-26A7-FE0F", "j": ["flag", "lgbtq", "light blue", "pink", "white", "transgender"]}, "pirate-flag": {"a": "pirate flag", "b": "1F3F4-200D-2620-FE0F", "j": ["banner", "pirate", "skull", "flag", "Jolly Roger", "treasure", "plunder", "crossbones"]}, "flag-ascension-island": {"a": "flag: Ascension Island", "b": "1F1E6-1F1E8", "j": ["flag"]}, "flag-andorra": {"a": "flag: Andorra", "b": "1F1E6-1F1E9", "j": ["banner", "ad", "flag", "country", "nation"]}, "flag-united-arab-emirates": {"a": "flag: United Arab Emirates", "b": "1F1E6-1F1EA", "j": ["united", "banner", "flag", "arab", "nation", "country", "emirates"]}, "flag-afghanistan": {"a": "flag: Afghanistan", "b": "1F1E6-1F1EB", "j": ["banner", "af", "flag", "country", "nation"]}, "flag-antigua--barbuda": {"a": "flag: Antigua & Barbuda", "b": "1F1E6-1F1EC", "j": ["banner", "antigua", "flag", "flag_antigua_barbuda", "nation", "country", "barbuda"]}, "flag-anguilla": {"a": "flag: Anguilla", "b": "1F1E6-1F1EE", "j": ["banner", "flag", "ai", "country", "nation"]}, "flag-albania": {"a": "flag: Albania", "b": "1F1E6-1F1F1", "j": ["banner", "flag", "nation", "country", "al"]}, "flag-armenia": {"a": "flag: Armenia", "b": "1F1E6-1F1F2", "j": ["banner", "am", "flag", "nation", "country"]}, "flag-angola": {"a": "flag: Angola", "b": "1F1E6-1F1F4", "j": ["banner", "flag", "ao", "country", "nation"]}, "flag-antarctica": {"a": "flag: Antarctica", "b": "1F1E6-1F1F6", "j": ["banner", "flag", "nation", "country", "aq"]}, "flag-argentina": {"a": "flag: Argentina", "b": "1F1E6-1F1F7", "j": ["banner", "flag", "ar", "nation", "country"]}, "flag-american-samoa": {"a": "flag: American Samoa", "b": "1F1E6-1F1F8", "j": ["banner", "flag", "ws", "nation", "country", "american"]}, "flag-austria": {"a": "flag: Austria", "b": "1F1E6-1F1F9", "j": ["banner", "at", "flag", "nation", "country"]}, "flag-australia": {"a": "flag: Australia", "b": "1F1E6-1F1FA", "j": ["banner", "flag", "au", "nation", "country"]}, "flag-aruba": {"a": "flag: Aruba", "b": "1F1E6-1F1FC", "j": ["banner", "flag", "nation", "country", "aw"]}, "flag-land-islands": {"a": "flag: Åland Islands", "b": "1F1E6-1F1FD", "j": ["banner", "Åland", "flag_aland_islands", "flag", "islands", "nation", "country"]}, "flag-azerbaijan": {"a": "flag: Azerbaijan", "b": "1F1E6-1F1FF", "j": ["banner", "az", "flag", "country", "nation"]}, "flag-bosnia--herzegovina": {"a": "flag: Bosnia & Herzegovina", "b": "1F1E7-1F1E6", "j": ["banner", "flag", "flag_bosnia_herzegovina", "herzegovina", "bosnia", "nation", "country"]}, "flag-barbados": {"a": "flag: Barbados", "b": "1F1E7-1F1E7", "j": ["banner", "bb", "flag", "country", "nation"]}, "flag-bangladesh": {"a": "flag: Bangladesh", "b": "1F1E7-1F1E9", "j": ["banner", "flag", "country", "nation", "bd"]}, "flag-belgium": {"a": "flag: Belgium", "b": "1F1E7-1F1EA", "j": ["banner", "flag", "country", "nation", "be"]}, "flag-burkina-faso": {"a": "flag: Burkina Faso", "b": "1F1E7-1F1EB", "j": ["banner", "flag", "faso", "nation", "country", "burkina"]}, "flag-bulgaria": {"a": "flag: Bulgaria", "b": "1F1E7-1F1EC", "j": ["banner", "flag", "bg", "country", "nation"]}, "flag-bahrain": {"a": "flag: Bahrain", "b": "1F1E7-1F1ED", "j": ["banner", "flag", "bh", "country", "nation"]}, "flag-burundi": {"a": "flag: Burundi", "b": "1F1E7-1F1EE", "j": ["banner", "flag", "bi", "country", "nation"]}, "flag-benin": {"a": "flag: Benin", "b": "1F1E7-1F1EF", "j": ["banner", "flag", "bj", "country", "nation"]}, "flag-st-barthlemy": {"a": "flag: St. Barthélemy", "b": "1F1E7-1F1F1", "j": ["banner", "flag", "flag_st_barthelemy", "nation", "country", "barthélemy", "saint"]}, "flag-bermuda": {"a": "flag: Bermuda", "b": "1F1E7-1F1F2", "j": ["banner", "bm", "flag", "country", "nation"]}, "flag-brunei": {"a": "flag: Brunei", "b": "1F1E7-1F1F3", "j": ["banner", "darussalam", "flag", "nation", "bn", "country"]}, "flag-bolivia": {"a": "flag: Bolivia", "b": "1F1E7-1F1F4", "j": ["banner", "flag", "country", "nation", "bo"]}, "flag-caribbean-netherlands": {"a": "flag: Caribbean Netherlands", "b": "1F1E7-1F1F6", "j": ["banner", "flag", "bonaire", "nation", "country"]}, "flag-brazil": {"a": "flag: Brazil", "b": "1F1E7-1F1F7", "j": ["banner", "flag", "br", "country", "nation"]}, "flag-bahamas": {"a": "flag: Bahamas", "b": "1F1E7-1F1F8", "j": ["banner", "flag", "country", "nation", "bs"]}, "flag-bhutan": {"a": "flag: Bhutan", "b": "1F1E7-1F1F9", "j": ["bt", "banner", "flag", "country", "nation"]}, "flag-bouvet-island": {"a": "flag: Bouvet Island", "b": "1F1E7-1F1FB", "j": ["norway", "flag"]}, "flag-botswana": {"a": "flag: Botswana", "b": "1F1E7-1F1FC", "j": ["banner", "flag", "bw", "country", "nation"]}, "flag-belarus": {"a": "flag: Belarus", "b": "1F1E7-1F1FE", "j": ["banner", "flag", "nation", "country", "by"]}, "flag-belize": {"a": "flag: Belize", "b": "1F1E7-1F1FF", "j": ["banner", "flag", "country", "bz", "nation"]}, "flag-canada": {"a": "flag: Canada", "b": "1F1E8-1F1E6", "j": ["banner", "flag", "ca", "country", "nation"]}, "flag-cocos-keeling-islands": {"a": "flag: Cocos (Keeling) Islands", "b": "1F1E8-1F1E8", "j": ["keeling", "banner", "flag", "cocos", "islands", "nation", "country", "flag_cocos_islands"]}, "flag-congo--kinshasa": {"a": "flag: Congo - Kinshasa", "b": "1F1E8-1F1E9", "j": ["banner", "flag_congo_kinshasa", "republic", "democratic", "flag", "congo", "nation", "country"]}, "flag-central-african-republic": {"a": "flag: Central African Republic", "b": "1F1E8-1F1EB", "j": ["banner", "republic", "flag", "nation", "african", "country", "central"]}, "flag-congo--brazzaville": {"a": "flag: Congo - Brazzaville", "b": "1F1E8-1F1EC", "j": ["banner", "flag", "congo", "flag_congo_brazzaville", "country", "nation"]}, "flag-switzerland": {"a": "flag: Switzerland", "b": "1F1E8-1F1ED", "j": ["banner", "ch", "flag", "country", "nation"]}, "flag-cte-divoire": {"a": "flag: Côte d’Ivoire", "b": "1F1E8-1F1EE", "j": ["banner", "coast", "flag", "country", "nation", "flag_cote_d_ivoire", "ivory"]}, "flag-cook-islands": {"a": "flag: Cook Islands", "b": "1F1E8-1F1F0", "j": ["banner", "flag", "islands", "nation", "country", "cook"]}, "flag-chile": {"a": "flag: Chile", "b": "1F1E8-1F1F1", "j": ["flag", "banner", "nation", "country"]}, "flag-cameroon": {"a": "flag: Cameroon", "b": "1F1E8-1F1F2", "j": ["banner", "flag", "cm", "nation", "country"]}, "flag-china": {"a": "flag: China", "b": "1F1E8-1F1F3", "j": ["china", "banner", "flag", "prc", "country", "chinese", "nation"]}, "flag-colombia": {"a": "flag: Colombia", "b": "1F1E8-1F1F4", "j": ["banner", "co", "flag", "nation", "country"]}, "flag-clipperton-island": {"a": "flag: Clipperton Island", "b": "1F1E8-1F1F5", "j": ["flag"]}, "flag-costa-rica": {"a": "flag: Costa Rica", "b": "1F1E8-1F1F7", "j": ["banner", "flag", "nation", "rica", "costa", "country"]}, "flag-cuba": {"a": "flag: Cuba", "b": "1F1E8-1F1FA", "j": ["banner", "cu", "flag", "nation", "country"]}, "flag-cape-verde": {"a": "flag: Cape Verde", "b": "1F1E8-1F1FB", "j": ["banner", "flag", "cabo", "verde", "nation", "country"]}, "flag-curaao": {"a": "flag: Curaçao", "b": "1F1E8-1F1FC", "j": ["banner", "flag", "curaçao", "country", "flag_curacao", "nation"]}, "flag-christmas-island": {"a": "flag: Christmas Island", "b": "1F1E8-1F1FD", "j": ["banner", "flag", "nation", "country", "island", "christmas"]}, "flag-cyprus": {"a": "flag: Cyprus", "b": "1F1E8-1F1FE", "j": ["banner", "cy", "flag", "country", "nation"]}, "flag-czechia": {"a": "flag: Czechia", "b": "1F1E8-1F1FF", "j": ["cz", "banner", "flag", "nation", "country"]}, "flag-germany": {"a": "flag: Germany", "b": "1F1E9-1F1EA", "j": ["banner", "flag", "german", "country", "nation"]}, "flag-diego-garcia": {"a": "flag: Diego Garcia", "b": "1F1E9-1F1EC", "j": ["flag"]}, "flag-djibouti": {"a": "flag: Djibouti", "b": "1F1E9-1F1EF", "j": ["banner", "flag", "dj", "country", "nation"]}, "flag-denmark": {"a": "flag: Denmark", "b": "1F1E9-1F1F0", "j": ["banner", "flag", "dk", "country", "nation"]}, "flag-dominica": {"a": "flag: Dominica", "b": "1F1E9-1F1F2", "j": ["banner", "dm", "flag", "country", "nation"]}, "flag-dominican-republic": {"a": "flag: Dominican Republic", "b": "1F1E9-1F1F4", "j": ["banner", "republic", "flag", "dominican", "nation", "country"]}, "flag-algeria": {"a": "flag: Algeria", "b": "1F1E9-1F1FF", "j": ["banner", "flag", "dz", "country", "nation"]}, "flag-ceuta--melilla": {"a": "flag: Ceuta & Melilla", "b": "1F1EA-1F1E6", "j": ["flag_ceuta_melilla", "flag"]}, "flag-ecuador": {"a": "flag: Ecuador", "b": "1F1EA-1F1E8", "j": ["banner", "flag", "ec", "country", "nation"]}, "flag-estonia": {"a": "flag: Estonia", "b": "1F1EA-1F1EA", "j": ["ee", "banner", "flag", "nation", "country"]}, "flag-egypt": {"a": "flag: Egypt", "b": "1F1EA-1F1EC", "j": ["banner", "flag", "eg", "country", "nation"]}, "flag-western-sahara": {"a": "flag: Western Sahara", "b": "1F1EA-1F1ED", "j": ["banner", "flag", "sahara", "nation", "country", "western"]}, "flag-eritrea": {"a": "flag: Eritrea", "b": "1F1EA-1F1F7", "j": ["banner", "flag", "er", "country", "nation"]}, "flag-spain": {"a": "flag: Spain", "b": "1F1EA-1F1F8", "j": ["spain", "banner", "flag", "country", "nation"]}, "flag-ethiopia": {"a": "flag: Ethiopia", "b": "1F1EA-1F1F9", "j": ["banner", "flag", "et", "nation", "country"]}, "flag-european-union": {"a": "flag: European Union", "b": "1F1EA-1F1FA", "j": ["banner", "european", "flag", "union"]}, "flag-finland": {"a": "flag: Finland", "b": "1F1EB-1F1EE", "j": ["banner", "fi", "flag", "nation", "country"]}, "flag-fiji": {"a": "flag: Fiji", "b": "1F1EB-1F1EF", "j": ["banner", "fj", "flag", "country", "nation"]}, "flag-falkland-islands": {"a": "flag: Falkland Islands", "b": "1F1EB-1F1F0", "j": ["banner", "flag", "malvinas", "falkland", "islands", "nation", "country"]}, "flag-micronesia": {"a": "flag: Micronesia", "b": "1F1EB-1F1F2", "j": ["banner", "flag", "federated", "micronesia", "nation", "country", "states"]}, "flag-faroe-islands": {"a": "flag: Faroe Islands", "b": "1F1EB-1F1F4", "j": ["banner", "flag", "islands", "nation", "country", "faroe"]}, "flag-france": {"a": "flag: France", "b": "1F1EB-1F1F7", "j": ["banner", "flag", "french", "france", "nation", "country"]}, "flag-gabon": {"a": "flag: Gabon", "b": "1F1EC-1F1E6", "j": ["banner", "flag", "ga", "country", "nation"]}, "flag-united-kingdom": {"a": "flag: United Kingdom", "b": "1F1EC-1F1E7", "j": ["united", "banner", "UK", "england", "ireland", "flag", "british", "britain", "english", "northern", "great", "kingdom", "nation", "country", "union jack"]}, "flag-grenada": {"a": "flag: Grenada", "b": "1F1EC-1F1E9", "j": ["banner", "flag", "gd", "country", "nation"]}, "flag-georgia": {"a": "flag: Georgia", "b": "1F1EC-1F1EA", "j": ["banner", "flag", "ge", "country", "nation"]}, "flag-french-guiana": {"a": "flag: French Guiana", "b": "1F1EC-1F1EB", "j": ["banner", "flag", "french", "guiana", "nation", "country"]}, "flag-guernsey": {"a": "flag: Guernsey", "b": "1F1EC-1F1EC", "j": ["banner", "gg", "flag", "country", "nation"]}, "flag-ghana": {"a": "flag: Ghana", "b": "1F1EC-1F1ED", "j": ["banner", "flag", "country", "nation", "gh"]}, "flag-gibraltar": {"a": "flag: Gibraltar", "b": "1F1EC-1F1EE", "j": ["banner", "flag", "nation", "country", "gi"]}, "flag-greenland": {"a": "flag: Greenland", "b": "1F1EC-1F1F1", "j": ["banner", "flag", "country", "nation", "gl"]}, "flag-gambia": {"a": "flag: Gambia", "b": "1F1EC-1F1F2", "j": ["banner", "gm", "flag", "country", "nation"]}, "flag-guinea": {"a": "flag: Guinea", "b": "1F1EC-1F1F3", "j": ["banner", "flag", "gn", "country", "nation"]}, "flag-guadeloupe": {"a": "flag: Guadeloupe", "b": "1F1EC-1F1F5", "j": ["banner", "flag", "country", "gp", "nation"]}, "flag-equatorial-guinea": {"a": "flag: Equatorial Guinea", "b": "1F1EC-1F1F6", "j": ["banner", "flag", "gn", "equatorial", "nation", "country"]}, "flag-greece": {"a": "flag: Greece", "b": "1F1EC-1F1F7", "j": ["banner", "flag", "gr", "nation", "country"]}, "flag-south-georgia--south-sandwich-islands": {"a": "flag: South Georgia & South Sandwich Islands", "b": "1F1EC-1F1F8", "j": ["banner", "flag", "flag_south_georgia_south_sandwich_islands", "islands", "georgia", "nation", "country", "sandwich", "south"]}, "flag-guatemala": {"a": "flag: Guatemala", "b": "1F1EC-1F1F9", "j": ["banner", "flag", "gt", "country", "nation"]}, "flag-guam": {"a": "flag: Guam", "b": "1F1EC-1F1FA", "j": ["banner", "flag", "nation", "country", "gu"]}, "flag-guineabissau": {"a": "flag: Guinea-Bissau", "b": "1F1EC-1F1FC", "j": ["banner", "flag_guinea_bissau", "flag", "nation", "country", "bissau", "gw"]}, "flag-guyana": {"a": "flag: Guyana", "b": "1F1EC-1F1FE", "j": ["banner", "flag", "gy", "country", "nation"]}, "flag-hong-kong-sar-china": {"a": "flag: Hong Kong SAR China", "b": "1F1ED-1F1F0", "j": ["banner", "kong", "flag", "hong", "nation", "country"]}, "flag-heard--mcdonald-islands": {"a": "flag: Heard & McDonald Islands", "b": "1F1ED-1F1F2", "j": ["flag_heard_mcdonald_islands", "flag"]}, "flag-honduras": {"a": "flag: Honduras", "b": "1F1ED-1F1F3", "j": ["banner", "flag", "hn", "nation", "country"]}, "flag-croatia": {"a": "flag: Croatia", "b": "1F1ED-1F1F7", "j": ["banner", "flag", "country", "nation", "hr"]}, "flag-haiti": {"a": "flag: Haiti", "b": "1F1ED-1F1F9", "j": ["banner", "flag", "country", "nation", "ht"]}, "flag-hungary": {"a": "flag: Hungary", "b": "1F1ED-1F1FA", "j": ["banner", "flag", "hu", "country", "nation"]}, "flag-canary-islands": {"a": "flag: Canary Islands", "b": "1F1EE-1F1E8", "j": ["banner", "flag", "canary", "islands", "nation", "country"]}, "flag-indonesia": {"a": "flag: Indonesia", "b": "1F1EE-1F1E9", "j": ["flag", "banner", "nation", "country"]}, "flag-ireland": {"a": "flag: Ireland", "b": "1F1EE-1F1EA", "j": ["banner", "flag", "ie", "nation", "country"]}, "flag-israel": {"a": "flag: Israel", "b": "1F1EE-1F1F1", "j": ["banner", "flag", "il", "country", "nation"]}, "flag-isle-of-man": {"a": "flag: Isle of Man", "b": "1F1EE-1F1F2", "j": ["isle", "banner", "man", "flag", "nation", "country"]}, "flag-india": {"a": "flag: India", "b": "1F1EE-1F1F3", "j": ["banner", "flag", "in", "country", "nation"]}, "flag-british-indian-ocean-territory": {"a": "flag: British Indian Ocean Territory", "b": "1F1EE-1F1F4", "j": ["banner", "flag", "british", "ocean", "nation", "territory", "country", "indian"]}, "flag-iraq": {"a": "flag: Iraq", "b": "1F1EE-1F1F6", "j": ["banner", "iq", "flag", "nation", "country"]}, "flag-iran": {"a": "flag: Iran", "b": "1F1EE-1F1F7", "j": ["banner", "republic", "flag", "iran", "islamic", "nation", "country"]}, "flag-iceland": {"a": "flag: Iceland", "b": "1F1EE-1F1F8", "j": ["banner", "flag", "is", "country", "nation"]}, "flag-italy": {"a": "flag: Italy", "b": "1F1EE-1F1F9", "j": ["banner", "flag", "italy", "country", "nation"]}, "flag-jersey": {"a": "flag: Jersey", "b": "1F1EF-1F1EA", "j": ["je", "banner", "flag", "nation", "country"]}, "flag-jamaica": {"a": "flag: Jamaica", "b": "1F1EF-1F1F2", "j": ["banner", "flag", "nation", "country", "jm"]}, "flag-jordan": {"a": "flag: Jordan", "b": "1F1EF-1F1F4", "j": ["jo", "banner", "flag", "nation", "country"]}, "flag-japan": {"a": "flag: Japan", "b": "1F1EF-1F1F5", "j": ["banner", "flag", "japanese", "nation", "country"]}, "flag-kenya": {"a": "flag: Kenya", "b": "1F1F0-1F1EA", "j": ["banner", "flag", "country", "nation", "ke"]}, "flag-kyrgyzstan": {"a": "flag: Kyrgyzstan", "b": "1F1F0-1F1EC", "j": ["kg", "banner", "flag", "nation", "country"]}, "flag-cambodia": {"a": "flag: Cambodia", "b": "1F1F0-1F1ED", "j": ["banner", "flag", "kh", "nation", "country"]}, "flag-kiribati": {"a": "flag: Kiribati", "b": "1F1F0-1F1EE", "j": ["banner", "flag", "nation", "country", "ki"]}, "flag-comoros": {"a": "flag: Comoros", "b": "1F1F0-1F1F2", "j": ["banner", "flag", "km", "country", "nation"]}, "flag-st-kitts--nevis": {"a": "flag: St. Kitts & Nevis", "b": "1F1F0-1F1F3", "j": ["nevis", "banner", "kitts", "flag", "flag_st_kitts_nevis", "nation", "country", "saint"]}, "flag-north-korea": {"a": "flag: North Korea", "b": "1F1F0-1F1F5", "j": ["banner", "flag", "korea", "country", "nation", "north"]}, "flag-south-korea": {"a": "flag: South Korea", "b": "1F1F0-1F1F7", "j": ["banner", "flag", "korea", "nation", "country", "south"]}, "flag-kuwait": {"a": "flag: Kuwait", "b": "1F1F0-1F1FC", "j": ["banner", "flag", "kw", "nation", "country"]}, "flag-cayman-islands": {"a": "flag: Cayman Islands", "b": "1F1F0-1F1FE", "j": ["banner", "flag", "cayman", "islands", "nation", "country"]}, "flag-kazakhstan": {"a": "flag: Kazakhstan", "b": "1F1F0-1F1FF", "j": ["kz", "banner", "flag", "nation", "country"]}, "flag-laos": {"a": "flag: Laos", "b": "1F1F1-1F1E6", "j": ["banner", "republic", "flag", "democratic", "nation", "country", "lao"]}, "flag-lebanon": {"a": "flag: Lebanon", "b": "1F1F1-1F1E7", "j": ["banner", "flag", "lb", "country", "nation"]}, "flag-st-lucia": {"a": "flag: St. Lucia", "b": "1F1F1-1F1E8", "j": ["banner", "flag", "lucia", "nation", "country", "saint"]}, "flag-liechtenstein": {"a": "flag: Liechtenstein", "b": "1F1F1-1F1EE", "j": ["banner", "flag", "country", "nation", "li"]}, "flag-sri-lanka": {"a": "flag: Sri Lanka", "b": "1F1F1-1F1F0", "j": ["lanka", "banner", "flag", "nation", "country", "sri"]}, "flag-liberia": {"a": "flag: Liberia", "b": "1F1F1-1F1F7", "j": ["banner", "flag", "lr", "country", "nation"]}, "flag-lesotho": {"a": "flag: Lesotho", "b": "1F1F1-1F1F8", "j": ["banner", "flag", "country", "nation", "ls"]}, "flag-lithuania": {"a": "flag: Lithuania", "b": "1F1F1-1F1F9", "j": ["banner", "flag", "lt", "country", "nation"]}, "flag-luxembourg": {"a": "flag: Luxembourg", "b": "1F1F1-1F1FA", "j": ["banner", "flag", "country", "nation", "lu"]}, "flag-latvia": {"a": "flag: Latvia", "b": "1F1F1-1F1FB", "j": ["lv", "banner", "flag", "nation", "country"]}, "flag-libya": {"a": "flag: Libya", "b": "1F1F1-1F1FE", "j": ["banner", "ly", "flag", "country", "nation"]}, "flag-morocco": {"a": "flag: Morocco", "b": "1F1F2-1F1E6", "j": ["banner", "ma", "flag", "country", "nation"]}, "flag-monaco": {"a": "flag: Monaco", "b": "1F1F2-1F1E8", "j": ["banner", "flag", "mc", "nation", "country"]}, "flag-moldova": {"a": "flag: Moldova", "b": "1F1F2-1F1E9", "j": ["banner", "republic", "flag", "country", "nation", "moldova"]}, "flag-montenegro": {"a": "flag: Montenegro", "b": "1F1F2-1F1EA", "j": ["banner", "flag", "me", "country", "nation"]}, "flag-st-martin": {"a": "flag: St. Martin", "b": "1F1F2-1F1EB", "j": ["flag"]}, "flag-madagascar": {"a": "flag: Madagascar", "b": "1F1F2-1F1EC", "j": ["banner", "flag", "country", "nation", "mg"]}, "flag-marshall-islands": {"a": "flag: Marshall Islands", "b": "1F1F2-1F1ED", "j": ["banner", "flag", "islands", "nation", "country", "marshall"]}, "flag-north-macedonia": {"a": "flag: North Macedonia", "b": "1F1F2-1F1F0", "j": ["banner", "flag", "macedonia", "country", "nation"]}, "flag-mali": {"a": "flag: Mali", "b": "1F1F2-1F1F1", "j": ["banner", "flag", "country", "ml", "nation"]}, "flag-myanmar-burma": {"a": "flag: Myanmar (Burma)", "b": "1F1F2-1F1F2", "j": ["banner", "flag", "flag_myanmar", "mm", "country", "nation"]}, "flag-mongolia": {"a": "flag: Mongolia", "b": "1F1F2-1F1F3", "j": ["banner", "flag", "mn", "country", "nation"]}, "flag-macao-sar-china": {"a": "flag: Macao SAR China", "b": "1F1F2-1F1F4", "j": ["banner", "flag", "country", "macao", "nation"]}, "flag-northern-mariana-islands": {"a": "flag: Northern Mariana Islands", "b": "1F1F2-1F1F5", "j": ["banner", "flag", "northern", "islands", "nation", "country", "mariana"]}, "flag-martinique": {"a": "flag: Martinique", "b": "1F1F2-1F1F6", "j": ["banner", "flag", "country", "nation", "mq"]}, "flag-mauritania": {"a": "flag: Mauritania", "b": "1F1F2-1F1F7", "j": ["banner", "mr", "flag", "country", "nation"]}, "flag-montserrat": {"a": "flag: Montserrat", "b": "1F1F2-1F1F8", "j": ["banner", "flag", "ms", "country", "nation"]}, "flag-malta": {"a": "flag: Malta", "b": "1F1F2-1F1F9", "j": ["banner", "mt", "flag", "country", "nation"]}, "flag-mauritius": {"a": "flag: Mauritius", "b": "1F1F2-1F1FA", "j": ["banner", "flag", "country", "nation", "mu"]}, "flag-maldives": {"a": "flag: Maldives", "b": "1F1F2-1F1FB", "j": ["banner", "mv", "flag", "country", "nation"]}, "flag-malawi": {"a": "flag: Malawi", "b": "1F1F2-1F1FC", "j": ["banner", "flag", "country", "nation", "mw"]}, "flag-mexico": {"a": "flag: Mexico", "b": "1F1F2-1F1FD", "j": ["banner", "flag", "mx", "nation", "country"]}, "flag-malaysia": {"a": "flag: Malaysia", "b": "1F1F2-1F1FE", "j": ["banner", "flag", "my", "country", "nation"]}, "flag-mozambique": {"a": "flag: Mozambique", "b": "1F1F2-1F1FF", "j": ["banner", "flag", "country", "nation", "mz"]}, "flag-namibia": {"a": "flag: Namibia", "b": "1F1F3-1F1E6", "j": ["banner", "flag", "nation", "country", "na"]}, "flag-new-caledonia": {"a": "flag: New Caledonia", "b": "1F1F3-1F1E8", "j": ["banner", "flag", "new", "nation", "country", "caledonia"]}, "flag-niger": {"a": "flag: Niger", "b": "1F1F3-1F1EA", "j": ["banner", "flag", "ne", "nation", "country"]}, "flag-norfolk-island": {"a": "flag: Norfolk Island", "b": "1F1F3-1F1EB", "j": ["banner", "flag", "nation", "country", "norfolk", "island"]}, "flag-nigeria": {"a": "flag: Nigeria", "b": "1F1F3-1F1EC", "j": ["flag", "banner", "nation", "country"]}, "flag-nicaragua": {"a": "flag: Nicaragua", "b": "1F1F3-1F1EE", "j": ["banner", "flag", "ni", "country", "nation"]}, "flag-netherlands": {"a": "flag: Netherlands", "b": "1F1F3-1F1F1", "j": ["banner", "flag", "nl", "country", "nation"]}, "flag-norway": {"a": "flag: Norway", "b": "1F1F3-1F1F4", "j": ["banner", "flag", "no", "country", "nation"]}, "flag-nepal": {"a": "flag: Nepal", "b": "1F1F3-1F1F5", "j": ["banner", "flag", "country", "nation", "np"]}, "flag-nauru": {"a": "flag: Nauru", "b": "1F1F3-1F1F7", "j": ["banner", "nr", "flag", "nation", "country"]}, "flag-niue": {"a": "flag: Niue", "b": "1F1F3-1F1FA", "j": ["banner", "flag", "nu", "country", "nation"]}, "flag-new-zealand": {"a": "flag: New Zealand", "b": "1F1F3-1F1FF", "j": ["banner", "flag", "zealand", "nation", "country", "new"]}, "flag-oman": {"a": "flag: Oman", "b": "1F1F4-1F1F2", "j": ["banner", "flag", "nation", "country", "om_symbol"]}, "flag-panama": {"a": "flag: Panama", "b": "1F1F5-1F1E6", "j": ["banner", "flag", "pa", "country", "nation"]}, "flag-peru": {"a": "flag: Peru", "b": "1F1F5-1F1EA", "j": ["banner", "flag", "country", "nation", "pe"]}, "flag-french-polynesia": {"a": "flag: French Polynesia", "b": "1F1F5-1F1EB", "j": ["banner", "flag", "french", "polynesia", "nation", "country"]}, "flag-papua-new-guinea": {"a": "flag: Papua New Guinea", "b": "1F1F5-1F1EC", "j": ["banner", "flag", "papua", "nation", "country", "new", "guinea"]}, "flag-philippines": {"a": "flag: Philippines", "b": "1F1F5-1F1ED", "j": ["banner", "flag", "ph", "country", "nation"]}, "flag-pakistan": {"a": "flag: Pakistan", "b": "1F1F5-1F1F0", "j": ["banner", "flag", "pk", "country", "nation"]}, "flag-poland": {"a": "flag: Poland", "b": "1F1F5-1F1F1", "j": ["banner", "pl", "flag", "country", "nation"]}, "flag-st-pierre--miquelon": {"a": "flag: St. Pierre & Miquelon", "b": "1F1F5-1F1F2", "j": ["banner", "flag", "flag_st_pierre_miquelon", "miquelon", "nation", "country", "saint", "pierre"]}, "flag-pitcairn-islands": {"a": "flag: Pitcairn Islands", "b": "1F1F5-1F1F3", "j": ["banner", "flag", "nation", "country", "pitcairn"]}, "flag-puerto-rico": {"a": "flag: Puerto Rico", "b": "1F1F5-1F1F7", "j": ["banner", "puerto", "flag", "nation", "country", "rico"]}, "flag-palestinian-territories": {"a": "flag: Palestinian Territories", "b": "1F1F5-1F1F8", "j": ["banner", "flag", "palestinian", "territories", "nation", "country", "palestine"]}, "flag-portugal": {"a": "flag: Portugal", "b": "1F1F5-1F1F9", "j": ["banner", "flag", "country", "nation", "pt"]}, "flag-palau": {"a": "flag: Palau", "b": "1F1F5-1F1FC", "j": ["banner", "flag", "country", "nation", "pw"]}, "flag-paraguay": {"a": "flag: Paraguay", "b": "1F1F5-1F1FE", "j": ["banner", "flag", "py", "nation", "country"]}, "flag-qatar": {"a": "flag: Qatar", "b": "1F1F6-1F1E6", "j": ["banner", "flag", "country", "nation", "qa"]}, "flag-runion": {"a": "flag: Réunion", "b": "1F1F7-1F1EA", "j": ["banner", "flag", "réunion", "country", "nation", "flag_reunion"]}, "flag-romania": {"a": "flag: Romania", "b": "1F1F7-1F1F4", "j": ["banner", "flag", "nation", "country", "ro"]}, "flag-serbia": {"a": "flag: Serbia", "b": "1F1F7-1F1F8", "j": ["banner", "flag", "rs", "country", "nation"]}, "flag-russia": {"a": "flag: Russia", "b": "1F1F7-1F1FA", "j": ["banner", "russian", "flag", "federation", "nation", "country"]}, "flag-rwanda": {"a": "flag: Rwanda", "b": "1F1F7-1F1FC", "j": ["banner", "flag", "country", "nation", "rw"]}, "flag-saudi-arabia": {"a": "flag: Saudi Arabia", "b": "1F1F8-1F1E6", "j": ["flag", "banner", "nation", "country"]}, "flag-solomon-islands": {"a": "flag: Solomon Islands", "b": "1F1F8-1F1E7", "j": ["banner", "flag", "islands", "nation", "country", "solomon"]}, "flag-seychelles": {"a": "flag: Seychelles", "b": "1F1F8-1F1E8", "j": ["banner", "flag", "sc", "nation", "country"]}, "flag-sudan": {"a": "flag: Sudan", "b": "1F1F8-1F1E9", "j": ["banner", "sd", "flag", "country", "nation"]}, "flag-sweden": {"a": "flag: Sweden", "b": "1F1F8-1F1EA", "j": ["banner", "flag", "se", "country", "nation"]}, "flag-singapore": {"a": "flag: Singapore", "b": "1F1F8-1F1EC", "j": ["banner", "flag", "country", "nation", "sg"]}, "flag-st-helena": {"a": "flag: St. Helena", "b": "1F1F8-1F1ED", "j": ["banner", "flag", "cunha", "ascension", "helena", "nation", "country", "saint", "tristan"]}, "flag-slovenia": {"a": "flag: Slovenia", "b": "1F1F8-1F1EE", "j": ["banner", "flag", "nation", "si", "country"]}, "flag-svalbard--jan-mayen": {"a": "flag: Svalbard & Jan Mayen", "b": "1F1F8-1F1EF", "j": ["flag_svalbard_jan_mayen", "flag"]}, "flag-slovakia": {"a": "flag: Slovakia", "b": "1F1F8-1F1F0", "j": ["sk", "banner", "flag", "nation", "country"]}, "flag-sierra-leone": {"a": "flag: Sierra Leone", "b": "1F1F8-1F1F1", "j": ["banner", "flag", "sierra", "leone", "nation", "country"]}, "flag-san-marino": {"a": "flag: San Marino", "b": "1F1F8-1F1F2", "j": ["banner", "flag", "san", "nation", "country", "marino"]}, "flag-senegal": {"a": "flag: Senegal", "b": "1F1F8-1F1F3", "j": ["banner", "flag", "nation", "sn", "country"]}, "flag-somalia": {"a": "flag: Somalia", "b": "1F1F8-1F1F4", "j": ["banner", "so", "flag", "country", "nation"]}, "flag-suriname": {"a": "flag: Suriname", "b": "1F1F8-1F1F7", "j": ["banner", "flag", "sr", "country", "nation"]}, "flag-south-sudan": {"a": "flag: South Sudan", "b": "1F1F8-1F1F8", "j": ["banner", "sd", "flag", "nation", "country", "south"]}, "flag-so-tom--prncipe": {"a": "flag: São Tomé & Príncipe", "b": "1F1F8-1F1F9", "j": ["tome", "sao", "banner", "flag", "principe", "nation", "flag_sao_tome_principe", "country"]}, "flag-el-salvador": {"a": "flag: El Salvador", "b": "1F1F8-1F1FB", "j": ["banner", "flag", "nation", "country", "salvador", "el"]}, "flag-sint-maarten": {"a": "flag: Sint Maarten", "b": "1F1F8-1F1FD", "j": ["banner", "flag", "maarten", "dutch", "sint", "nation", "country"]}, "flag-syria": {"a": "flag: Syria", "b": "1F1F8-1F1FE", "j": ["banner", "republic", "flag", "syrian", "arab", "nation", "country"]}, "flag-eswatini": {"a": "flag: Eswatini", "b": "1F1F8-1F1FF", "j": ["banner", "flag", "sz", "country", "nation"]}, "flag-tristan-da-cunha": {"a": "flag: Tristan da Cunha", "b": "1F1F9-1F1E6", "j": ["flag"]}, "flag-turks--caicos-islands": {"a": "flag: Turks & Caicos Islands", "b": "1F1F9-1F1E8", "j": ["banner", "caicos", "flag", "islands", "nation", "country", "turks", "flag_turks_caicos_islands"]}, "flag-chad": {"a": "flag: Chad", "b": "1F1F9-1F1E9", "j": ["banner", "td", "flag", "country", "nation"]}, "flag-french-southern-territories": {"a": "flag: French Southern Territories", "b": "1F1F9-1F1EB", "j": ["banner", "flag", "french", "southern", "territories", "nation", "country"]}, "flag-togo": {"a": "flag: Togo", "b": "1F1F9-1F1EC", "j": ["banner", "flag", "tg", "country", "nation"]}, "flag-thailand": {"a": "flag: Thailand", "b": "1F1F9-1F1ED", "j": ["banner", "flag", "country", "nation", "th"]}, "flag-tajikistan": {"a": "flag: Tajikistan", "b": "1F1F9-1F1EF", "j": ["banner", "flag", "tj", "country", "nation"]}, "flag-tokelau": {"a": "flag: Tokelau", "b": "1F1F9-1F1F0", "j": ["tk", "banner", "flag", "country", "nation"]}, "flag-timorleste": {"a": "flag: Timor-Leste", "b": "1F1F9-1F1F1", "j": ["leste", "banner", "timor", "flag", "nation", "country", "flag_timor_leste"]}, "flag-turkmenistan": {"a": "flag: Turkmenistan", "b": "1F1F9-1F1F2", "j": ["flag", "banner", "country", "nation"]}, "flag-tunisia": {"a": "flag: Tunisia", "b": "1F1F9-1F1F3", "j": ["banner", "flag", "country", "nation", "tn"]}, "flag-tonga": {"a": "flag: Tonga", "b": "1F1F9-1F1F4", "j": ["banner", "flag", "country", "nation", "to"]}, "flag-turkey": {"a": "flag: Turkey", "b": "1F1F9-1F1F7", "j": ["banner", "flag", "nation", "turkey", "country"]}, "flag-trinidad--tobago": {"a": "flag: Trinidad & Tobago", "b": "1F1F9-1F1F9", "j": ["banner", "flag_trinidad_tobago", "flag", "trinidad", "nation", "country", "tobago"]}, "flag-tuvalu": {"a": "flag: Tuvalu", "b": "1F1F9-1F1FB", "j": ["flag", "banner", "nation", "country"]}, "flag-taiwan": {"a": "flag: Taiwan", "b": "1F1F9-1F1FC", "j": ["banner", "flag", "country", "nation", "tw"]}, "flag-tanzania": {"a": "flag: Tanzania", "b": "1F1F9-1F1FF", "j": ["united", "banner", "republic", "flag", "nation", "country", "tanzania"]}, "flag-ukraine": {"a": "flag: Ukraine", "b": "1F1FA-1F1E6", "j": ["banner", "flag", "ua", "country", "nation"]}, "flag-uganda": {"a": "flag: Uganda", "b": "1F1FA-1F1EC", "j": ["banner", "flag", "ug", "country", "nation"]}, "flag-us-outlying-islands": {"a": "flag: U.S. Outlying Islands", "b": "1F1FA-1F1F2", "j": ["flag_u_s_outlying_islands", "flag"]}, "flag-united-nations": {"a": "flag: United Nations", "b": "1F1FA-1F1F3", "j": ["banner", "un", "flag"]}, "flag-united-states": {"a": "flag: United States", "b": "1F1FA-1F1F8", "j": ["united", "banner", "flag", "america", "nation", "country", "states"]}, "flag-uruguay": {"a": "flag: Uruguay", "b": "1F1FA-1F1FE", "j": ["banner", "flag", "uy", "country", "nation"]}, "flag-uzbekistan": {"a": "flag: Uzbekistan", "b": "1F1FA-1F1FF", "j": ["banner", "uz", "flag", "country", "nation"]}, "flag-vatican-city": {"a": "flag: Vatican City", "b": "1F1FB-1F1E6", "j": ["banner", "flag", "vatican", "city", "nation", "country"]}, "flag-st-vincent--grenadines": {"a": "flag: St. Vincent & Grenadines", "b": "1F1FB-1F1E8", "j": ["banner", "flag", "flag_st_vincent_grenadines", "grenadines", "nation", "country", "vincent", "saint"]}, "flag-venezuela": {"a": "flag: Venezuela", "b": "1F1FB-1F1EA", "j": ["banner", "republic", "flag", "bolivarian", "ve", "nation", "country"]}, "flag-british-virgin-islands": {"a": "flag: British Virgin Islands", "b": "1F1FB-1F1EC", "j": ["banner", "virgin", "bvi", "flag", "british", "islands", "nation", "country"]}, "flag-us-virgin-islands": {"a": "flag: U.S. Virgin Islands", "b": "1F1FB-1F1EE", "j": ["banner", "virgin", "flag", "us", "islands", "nation", "country", "flag_u_s_virgin_islands"]}, "flag-vietnam": {"a": "flag: Vietnam", "b": "1F1FB-1F1F3", "j": ["banner", "flag", "nation", "nam", "country", "viet"]}, "flag-vanuatu": {"a": "flag: Vanuatu", "b": "1F1FB-1F1FA", "j": ["banner", "flag", "vu", "country", "nation"]}, "flag-wallis--futuna": {"a": "flag: Wallis & Futuna", "b": "1F1FC-1F1EB", "j": ["banner", "flag_wallis_futuna", "flag", "wallis", "nation", "country", "futuna"]}, "flag-samoa": {"a": "flag: Samoa", "b": "1F1FC-1F1F8", "j": ["banner", "flag", "ws", "nation", "country"]}, "flag-kosovo": {"a": "flag: Kosovo", "b": "1F1FD-1F1F0", "j": ["banner", "flag", "country", "nation", "xk"]}, "flag-yemen": {"a": "flag: Yemen", "b": "1F1FE-1F1EA", "j": ["banner", "flag", "nation", "ye", "country"]}, "flag-mayotte": {"a": "flag: Mayotte", "b": "1F1FE-1F1F9", "j": ["banner", "flag", "yt", "country", "nation"]}, "flag-south-africa": {"a": "flag: South Africa", "b": "1F1FF-1F1E6", "j": ["banner", "africa", "flag", "nation", "country", "south"]}, "flag-zambia": {"a": "flag: Zambia", "b": "1F1FF-1F1F2", "j": ["banner", "flag", "zm", "country", "nation"]}, "flag-zimbabwe": {"a": "flag: Zimbabwe", "b": "1F1FF-1F1FC", "j": ["banner", "flag", "zw", "country", "nation"]}, "flag-england": {"a": "flag: England", "b": "1F3F4-E0067-E0062-E0065-E006E-E0067-E007F", "j": ["english", "flag"]}, "flag-scotland": {"a": "flag: Scotland", "b": "1F3F4-E0067-E0062-E0073-E0063-E0074-E007F", "j": ["scottish", "flag"]}, "flag-wales": {"a": "flag: Wales", "b": "1F3F4-E0067-E0062-E0077-E006C-E0073-E007F", "j": ["welsh", "flag"]}}, "aliases": {}} \ No newline at end of file +{"compressed":true,"categories":[{"id":"smileys_&_emotion","name":"Smileys & Emotion","emojis":["grinning-face","grinning-face-with-big-eyes","grinning-face-with-smiling-eyes","beaming-face-with-smiling-eyes","grinning-squinting-face","grinning-face-with-sweat","rolling-on-the-floor-laughing","face-with-tears-of-joy","slightly-smiling-face","upsidedown-face","winking-face","smiling-face-with-smiling-eyes","smiling-face-with-halo","smiling-face-with-hearts","smiling-face-with-hearteyes","starstruck","face-blowing-a-kiss","kissing-face","smiling-face","kissing-face-with-closed-eyes","kissing-face-with-smiling-eyes","smiling-face-with-tear","face-savoring-food","face-with-tongue","winking-face-with-tongue","zany-face","squinting-face-with-tongue","moneymouth-face","hugging-face","face-with-hand-over-mouth","shushing-face","thinking-face","zippermouth-face","face-with-raised-eyebrow","neutral-face","expressionless-face","face-without-mouth","face-in-clouds","smirking-face","unamused-face","face-with-rolling-eyes","grimacing-face","face-exhaling","lying-face","relieved-face","pensive-face","sleepy-face","drooling-face","sleeping-face","face-with-medical-mask","face-with-thermometer","face-with-headbandage","nauseated-face","face-vomiting","sneezing-face","hot-face","cold-face","woozy-face","knockedout-face","face-with-spiral-eyes","exploding-head","cowboy-hat-face","partying-face","disguised-face","smiling-face-with-sunglasses","nerd-face","face-with-monocle","confused-face","worried-face","slightly-frowning-face","frowning-face","face-with-open-mouth","hushed-face","astonished-face","flushed-face","pleading-face","frowning-face-with-open-mouth","anguished-face","fearful-face","anxious-face-with-sweat","sad-but-relieved-face","crying-face","loudly-crying-face","face-screaming-in-fear","confounded-face","persevering-face","disappointed-face","downcast-face-with-sweat","weary-face","tired-face","yawning-face","face-with-steam-from-nose","pouting-face","angry-face","face-with-symbols-on-mouth","smiling-face-with-horns","angry-face-with-horns","skull","skull-and-crossbones","pile-of-poo","clown-face","ogre","goblin","ghost","alien","alien-monster","robot","grinning-cat","grinning-cat-with-smiling-eyes","cat-with-tears-of-joy","smiling-cat-with-hearteyes","cat-with-wry-smile","kissing-cat","weary-cat","crying-cat","pouting-cat","seenoevil-monkey","hearnoevil-monkey","speaknoevil-monkey","kiss-mark","love-letter","heart-with-arrow","heart-with-ribbon","sparkling-heart","growing-heart","beating-heart","revolving-hearts","two-hearts","heart-decoration","heart-exclamation","broken-heart","heart-on-fire","mending-heart","red-heart","orange-heart","yellow-heart","green-heart","blue-heart","purple-heart","brown-heart","black-heart","white-heart","hundred-points","anger-symbol","collision","dizzy","sweat-droplets","dashing-away","hole","bomb","speech-balloon","eye-in-speech-bubble","left-speech-bubble","right-anger-bubble","thought-balloon","zzz"]},{"id":"people_&_body","name":"People & Body","emojis":["waving-hand","raised-back-of-hand","hand-with-fingers-splayed","raised-hand","vulcan-salute","ok-hand","pinched-fingers","pinching-hand","victory-hand","crossed-fingers","loveyou-gesture","sign-of-the-horns","call-me-hand","backhand-index-pointing-left","backhand-index-pointing-right","backhand-index-pointing-up","middle-finger","backhand-index-pointing-down","index-pointing-up","thumbs-up","thumbs-down","raised-fist","oncoming-fist","leftfacing-fist","rightfacing-fist","clapping-hands","raising-hands","open-hands","palms-up-together","handshake","folded-hands","writing-hand","nail-polish","selfie","flexed-biceps","mechanical-arm","mechanical-leg","leg","foot","ear","ear-with-hearing-aid","nose","brain","anatomical-heart","lungs","tooth","bone","eyes","eye","tongue","mouth","baby","child","boy","girl","person","person-blond-hair","man","person-beard","man-beard","woman-beard","man-red-hair","man-curly-hair","man-white-hair","man-bald","woman","woman-red-hair","person-red-hair","woman-curly-hair","person-curly-hair","woman-white-hair","person-white-hair","woman-bald","person-bald","woman-blond-hair","man-blond-hair","older-person","old-man","old-woman","person-frowning","man-frowning","woman-frowning","person-pouting","man-pouting","woman-pouting","person-gesturing-no","man-gesturing-no","woman-gesturing-no","person-gesturing-ok","man-gesturing-ok","woman-gesturing-ok","person-tipping-hand","man-tipping-hand","woman-tipping-hand","person-raising-hand","man-raising-hand","woman-raising-hand","deaf-person","deaf-man","deaf-woman","person-bowing","man-bowing","woman-bowing","person-facepalming","man-facepalming","woman-facepalming","person-shrugging","man-shrugging","woman-shrugging","health-worker","man-health-worker","woman-health-worker","student","man-student","woman-student","teacher","man-teacher","woman-teacher","judge","man-judge","woman-judge","farmer","man-farmer","woman-farmer","cook","man-cook","woman-cook","mechanic","man-mechanic","woman-mechanic","factory-worker","man-factory-worker","woman-factory-worker","office-worker","man-office-worker","woman-office-worker","scientist","man-scientist","woman-scientist","technologist","man-technologist","woman-technologist","singer","man-singer","woman-singer","artist","man-artist","woman-artist","pilot","man-pilot","woman-pilot","astronaut","man-astronaut","woman-astronaut","firefighter","man-firefighter","woman-firefighter","police-officer","man-police-officer","woman-police-officer","detective","man-detective","woman-detective","guard","man-guard","woman-guard","ninja","construction-worker","man-construction-worker","woman-construction-worker","prince","princess","person-wearing-turban","man-wearing-turban","woman-wearing-turban","person-with-skullcap","woman-with-headscarf","person-in-tuxedo","man-in-tuxedo","woman-in-tuxedo","person-with-veil","man-with-veil","woman-with-veil","pregnant-woman","breastfeeding","woman-feeding-baby","man-feeding-baby","person-feeding-baby","baby-angel","santa-claus","mrs-claus","mx-claus","superhero","man-superhero","woman-superhero","supervillain","man-supervillain","woman-supervillain","mage","man-mage","woman-mage","fairy","man-fairy","woman-fairy","vampire","man-vampire","woman-vampire","merperson","merman","mermaid","elf","man-elf","woman-elf","genie","man-genie","woman-genie","zombie","man-zombie","woman-zombie","person-getting-massage","man-getting-massage","woman-getting-massage","person-getting-haircut","man-getting-haircut","woman-getting-haircut","person-walking","man-walking","woman-walking","person-standing","man-standing","woman-standing","person-kneeling","man-kneeling","woman-kneeling","person-with-white-cane","man-with-white-cane","woman-with-white-cane","person-in-motorized-wheelchair","man-in-motorized-wheelchair","woman-in-motorized-wheelchair","person-in-manual-wheelchair","man-in-manual-wheelchair","woman-in-manual-wheelchair","person-running","man-running","woman-running","woman-dancing","man-dancing","person-in-suit-levitating","people-with-bunny-ears","men-with-bunny-ears","women-with-bunny-ears","person-in-steamy-room","man-in-steamy-room","woman-in-steamy-room","person-climbing","man-climbing","woman-climbing","person-fencing","horse-racing","skier","snowboarder","person-golfing","man-golfing","woman-golfing","person-surfing","man-surfing","woman-surfing","person-rowing-boat","man-rowing-boat","woman-rowing-boat","person-swimming","man-swimming","woman-swimming","person-bouncing-ball","man-bouncing-ball","woman-bouncing-ball","person-lifting-weights","man-lifting-weights","woman-lifting-weights","person-biking","man-biking","woman-biking","person-mountain-biking","man-mountain-biking","woman-mountain-biking","person-cartwheeling","man-cartwheeling","woman-cartwheeling","people-wrestling","men-wrestling","women-wrestling","person-playing-water-polo","man-playing-water-polo","woman-playing-water-polo","person-playing-handball","man-playing-handball","woman-playing-handball","person-juggling","man-juggling","woman-juggling","person-in-lotus-position","man-in-lotus-position","woman-in-lotus-position","person-taking-bath","person-in-bed","people-holding-hands","women-holding-hands","woman-and-man-holding-hands","men-holding-hands","kiss","kiss-woman-man","kiss-man-man","kiss-woman-woman","couple-with-heart","couple-with-heart-woman-man","couple-with-heart-man-man","couple-with-heart-woman-woman","family","family-man-woman-boy","family-man-woman-girl","family-man-woman-girl-boy","family-man-woman-boy-boy","family-man-woman-girl-girl","family-man-man-boy","family-man-man-girl","family-man-man-girl-boy","family-man-man-boy-boy","family-man-man-girl-girl","family-woman-woman-boy","family-woman-woman-girl","family-woman-woman-girl-boy","family-woman-woman-boy-boy","family-woman-woman-girl-girl","family-man-boy","family-man-boy-boy","family-man-girl","family-man-girl-boy","family-man-girl-girl","family-woman-boy","family-woman-boy-boy","family-woman-girl","family-woman-girl-boy","family-woman-girl-girl","speaking-head","bust-in-silhouette","busts-in-silhouette","people-hugging","footprints"]},{"id":"animals_&_nature","name":"Animals & Nature","emojis":["monkey-face","monkey","gorilla","orangutan","dog-face","dog","guide-dog","service-dog","poodle","wolf","fox","raccoon","cat-face","cat","black-cat","lion","tiger-face","tiger","leopard","horse-face","horse","unicorn","zebra","deer","bison","cow-face","ox","water-buffalo","cow","pig-face","pig","boar","pig-nose","ram","ewe","goat","camel","twohump-camel","llama","giraffe","elephant","mammoth","rhinoceros","hippopotamus","mouse-face","mouse","rat","hamster","rabbit-face","rabbit","chipmunk","beaver","hedgehog","bat","bear","polar-bear","koala","panda","sloth","otter","skunk","kangaroo","badger","paw-prints","turkey","chicken","rooster","hatching-chick","baby-chick","frontfacing-baby-chick","bird","penguin","dove","eagle","duck","swan","owl","dodo","feather","flamingo","peacock","parrot","frog","crocodile","turtle","lizard","snake","dragon-face","dragon","sauropod","trex","spouting-whale","whale","dolphin","seal","fish","tropical-fish","blowfish","shark","octopus","spiral-shell","snail","butterfly","bug","ant","honeybee","beetle","lady-beetle","cricket","cockroach","spider","spider-web","scorpion","mosquito","fly","worm","microbe","bouquet","cherry-blossom","white-flower","rosette","rose","wilted-flower","hibiscus","sunflower","blossom","tulip","seedling","potted-plant","evergreen-tree","deciduous-tree","palm-tree","cactus","sheaf-of-rice","herb","shamrock","four-leaf-clover","maple-leaf","fallen-leaf","leaf-fluttering-in-wind"]},{"id":"food_&_drink","name":"Food & Drink","emojis":["grapes","melon","watermelon","tangerine","lemon","banana","pineapple","mango","red-apple","green-apple","pear","peach","cherries","strawberry","blueberries","kiwi-fruit","tomato","olive","coconut","avocado","eggplant","potato","carrot","ear-of-corn","hot-pepper","bell-pepper","cucumber","leafy-green","broccoli","garlic","onion","mushroom","peanuts","chestnut","bread","croissant","baguette-bread","flatbread","pretzel","bagel","pancakes","waffle","cheese-wedge","meat-on-bone","poultry-leg","cut-of-meat","bacon","hamburger","french-fries","pizza","hot-dog","sandwich","taco","burrito","tamale","stuffed-flatbread","falafel","egg","cooking","shallow-pan-of-food","pot-of-food","fondue","bowl-with-spoon","green-salad","popcorn","butter","salt","canned-food","bento-box","rice-cracker","rice-ball","cooked-rice","curry-rice","steaming-bowl","spaghetti","roasted-sweet-potato","oden","sushi","fried-shrimp","fish-cake-with-swirl","moon-cake","dango","dumpling","fortune-cookie","takeout-box","crab","lobster","shrimp","squid","oyster","soft-ice-cream","shaved-ice","ice-cream","doughnut","cookie","birthday-cake","shortcake","cupcake","pie","chocolate-bar","candy","lollipop","custard","honey-pot","baby-bottle","glass-of-milk","hot-beverage","teapot","teacup-without-handle","sake","bottle-with-popping-cork","wine-glass","cocktail-glass","tropical-drink","beer-mug","clinking-beer-mugs","clinking-glasses","tumbler-glass","cup-with-straw","bubble-tea","beverage-box","mate","ice","chopsticks","fork-and-knife-with-plate","fork-and-knife","spoon","kitchen-knife","amphora"]},{"id":"travel_&_places","name":"Travel & Places","emojis":["globe-showing-europeafrica","globe-showing-americas","globe-showing-asiaaustralia","globe-with-meridians","world-map","map-of-japan","compass","snowcapped-mountain","mountain","volcano","mount-fuji","camping","beach-with-umbrella","desert","desert-island","national-park","stadium","classical-building","building-construction","brick","rock","wood","hut","houses","derelict-house","house","house-with-garden","office-building","japanese-post-office","post-office","hospital","bank","hotel","love-hotel","convenience-store","school","department-store","factory","japanese-castle","castle","wedding","tokyo-tower","statue-of-liberty","church","mosque","hindu-temple","synagogue","shinto-shrine","kaaba","fountain","tent","foggy","night-with-stars","cityscape","sunrise-over-mountains","sunrise","cityscape-at-dusk","sunset","bridge-at-night","hot-springs","carousel-horse","ferris-wheel","roller-coaster","barber-pole","circus-tent","locomotive","railway-car","highspeed-train","bullet-train","train","metro","light-rail","station","tram","monorail","mountain-railway","tram-car","bus","oncoming-bus","trolleybus","minibus","ambulance","fire-engine","police-car","oncoming-police-car","taxi","oncoming-taxi","automobile","oncoming-automobile","sport-utility-vehicle","pickup-truck","delivery-truck","articulated-lorry","tractor","racing-car","motorcycle","motor-scooter","manual-wheelchair","motorized-wheelchair","auto-rickshaw","bicycle","kick-scooter","skateboard","roller-skate","bus-stop","motorway","railway-track","oil-drum","fuel-pump","police-car-light","horizontal-traffic-light","vertical-traffic-light","stop-sign","construction","anchor","sailboat","canoe","speedboat","passenger-ship","ferry","motor-boat","ship","airplane","small-airplane","airplane-departure","airplane-arrival","parachute","seat","helicopter","suspension-railway","mountain-cableway","aerial-tramway","satellite","rocket","flying-saucer","bellhop-bell","luggage","hourglass-done","hourglass-not-done","watch","alarm-clock","stopwatch","timer-clock","mantelpiece-clock","twelve-oclock","twelvethirty","one-oclock","onethirty","two-oclock","twothirty","three-oclock","threethirty","four-oclock","fourthirty","five-oclock","fivethirty","six-oclock","sixthirty","seven-oclock","seventhirty","eight-oclock","eightthirty","nine-oclock","ninethirty","ten-oclock","tenthirty","eleven-oclock","eleventhirty","new-moon","waxing-crescent-moon","first-quarter-moon","waxing-gibbous-moon","full-moon","waning-gibbous-moon","last-quarter-moon","waning-crescent-moon","crescent-moon","new-moon-face","first-quarter-moon-face","last-quarter-moon-face","thermometer","sun","full-moon-face","sun-with-face","ringed-planet","star","glowing-star","shooting-star","milky-way","cloud","sun-behind-cloud","cloud-with-lightning-and-rain","sun-behind-small-cloud","sun-behind-large-cloud","sun-behind-rain-cloud","cloud-with-rain","cloud-with-snow","cloud-with-lightning","tornado","fog","wind-face","cyclone","rainbow","closed-umbrella","umbrella","umbrella-with-rain-drops","umbrella-on-ground","high-voltage","snowflake","snowman","snowman-without-snow","comet","fire","droplet","water-wave"]},{"id":"activities","name":"Activities","emojis":["jackolantern","christmas-tree","fireworks","sparkler","firecracker","sparkles","balloon","party-popper","confetti-ball","tanabata-tree","pine-decoration","japanese-dolls","carp-streamer","wind-chime","moon-viewing-ceremony","red-envelope","ribbon","wrapped-gift","reminder-ribbon","admission-tickets","ticket","military-medal","trophy","sports-medal","1st-place-medal","2nd-place-medal","3rd-place-medal","soccer-ball","baseball","softball","basketball","volleyball","american-football","rugby-football","tennis","flying-disc","bowling","cricket-game","field-hockey","ice-hockey","lacrosse","ping-pong","badminton","boxing-glove","martial-arts-uniform","goal-net","flag-in-hole","ice-skate","fishing-pole","diving-mask","running-shirt","skis","sled","curling-stone","bullseye","yoyo","kite","pool-8-ball","crystal-ball","magic-wand","nazar-amulet","video-game","joystick","slot-machine","game-die","puzzle-piece","teddy-bear","piata","nesting-dolls","spade-suit","heart-suit","diamond-suit","club-suit","chess-pawn","joker","mahjong-red-dragon","flower-playing-cards","performing-arts","framed-picture","artist-palette","thread","sewing-needle","yarn","knot"]},{"id":"objects","name":"Objects","emojis":["glasses","sunglasses","goggles","lab-coat","safety-vest","necktie","tshirt","jeans","scarf","gloves","coat","socks","dress","kimono","sari","onepiece-swimsuit","briefs","shorts","bikini","womans-clothes","purse","handbag","clutch-bag","shopping-bags","backpack","thong-sandal","mans-shoe","running-shoe","hiking-boot","flat-shoe","highheeled-shoe","womans-sandal","ballet-shoes","womans-boot","crown","womans-hat","top-hat","graduation-cap","billed-cap","military-helmet","rescue-workers-helmet","prayer-beads","lipstick","ring","gem-stone","muted-speaker","speaker-low-volume","speaker-medium-volume","speaker-high-volume","loudspeaker","megaphone","postal-horn","bell","bell-with-slash","musical-score","musical-note","musical-notes","studio-microphone","level-slider","control-knobs","microphone","headphone","radio","saxophone","accordion","guitar","musical-keyboard","trumpet","violin","banjo","drum","long-drum","mobile-phone","mobile-phone-with-arrow","telephone","telephone-receiver","pager","fax-machine","battery","electric-plug","laptop","desktop-computer","printer","keyboard","computer-mouse","trackball","computer-disk","floppy-disk","optical-disk","dvd","abacus","movie-camera","film-frames","film-projector","clapper-board","television","camera","camera-with-flash","video-camera","videocassette","magnifying-glass-tilted-left","magnifying-glass-tilted-right","candle","light-bulb","flashlight","red-paper-lantern","diya-lamp","notebook-with-decorative-cover","closed-book","open-book","green-book","blue-book","orange-book","books","notebook","ledger","page-with-curl","scroll","page-facing-up","newspaper","rolledup-newspaper","bookmark-tabs","bookmark","label","money-bag","coin","yen-banknote","dollar-banknote","euro-banknote","pound-banknote","money-with-wings","credit-card","receipt","chart-increasing-with-yen","envelope","email","incoming-envelope","envelope-with-arrow","outbox-tray","inbox-tray","package","closed-mailbox-with-raised-flag","closed-mailbox-with-lowered-flag","open-mailbox-with-raised-flag","open-mailbox-with-lowered-flag","postbox","ballot-box-with-ballot","pencil","black-nib","fountain-pen","pen","paintbrush","crayon","memo","briefcase","file-folder","open-file-folder","card-index-dividers","calendar","tearoff-calendar","spiral-notepad","spiral-calendar","card-index","chart-increasing","chart-decreasing","bar-chart","clipboard","pushpin","round-pushpin","paperclip","linked-paperclips","straight-ruler","triangular-ruler","scissors","card-file-box","file-cabinet","wastebasket","locked","unlocked","locked-with-pen","locked-with-key","key","old-key","hammer","axe","pick","hammer-and-pick","hammer-and-wrench","dagger","crossed-swords","water-pistol","boomerang","bow-and-arrow","shield","carpentry-saw","wrench","screwdriver","nut-and-bolt","gear","clamp","balance-scale","white-cane","link","chains","hook","toolbox","magnet","ladder","alembic","test-tube","petri-dish","dna","microscope","telescope","satellite-antenna","syringe","drop-of-blood","pill","adhesive-bandage","stethoscope","door","elevator","mirror","window","bed","couch-and-lamp","chair","toilet","plunger","shower","bathtub","mouse-trap","razor","lotion-bottle","safety-pin","broom","basket","roll-of-paper","bucket","soap","toothbrush","sponge","fire-extinguisher","shopping-cart","cigarette","coffin","headstone","funeral-urn","moai","placard"]},{"id":"symbols","name":"Symbols","emojis":["atm-sign","litter-in-bin-sign","potable-water","wheelchair-symbol","mens-room","womens-room","restroom","baby-symbol","water-closet","passport-control","customs","baggage-claim","left-luggage","warning","children-crossing","no-entry","prohibited","no-bicycles","no-smoking","no-littering","nonpotable-water","no-pedestrians","no-mobile-phones","no-one-under-eighteen","radioactive","biohazard","up-arrow","upright-arrow","right-arrow","downright-arrow","down-arrow","downleft-arrow","left-arrow","upleft-arrow","updown-arrow","leftright-arrow","right-arrow-curving-left","left-arrow-curving-right","right-arrow-curving-up","right-arrow-curving-down","clockwise-vertical-arrows","counterclockwise-arrows-button","back-arrow","end-arrow","on-arrow","soon-arrow","top-arrow","place-of-worship","atom-symbol","om","star-of-david","wheel-of-dharma","yin-yang","latin-cross","orthodox-cross","star-and-crescent","peace-symbol","menorah","dotted-sixpointed-star","aries","taurus","gemini","cancer","leo","virgo","libra","scorpio","sagittarius","capricorn","aquarius","pisces","ophiuchus","shuffle-tracks-button","repeat-button","repeat-single-button","play-button","fastforward-button","next-track-button","play-or-pause-button","reverse-button","fast-reverse-button","last-track-button","upwards-button","fast-up-button","downwards-button","fast-down-button","pause-button","stop-button","record-button","eject-button","cinema","dim-button","bright-button","antenna-bars","vibration-mode","mobile-phone-off","female-sign","male-sign","transgender-symbol","multiply","plus","minus","divide","infinity","double-exclamation-mark","exclamation-question-mark","red-question-mark","white-question-mark","white-exclamation-mark","red-exclamation-mark","wavy-dash","currency-exchange","heavy-dollar-sign","medical-symbol","recycling-symbol","fleurdelis","trident-emblem","name-badge","japanese-symbol-for-beginner","hollow-red-circle","check-mark-button","check-box-with-check","check-mark","cross-mark","cross-mark-button","curly-loop","double-curly-loop","part-alternation-mark","eightspoked-asterisk","eightpointed-star","sparkle","copyright","registered","trade-mark","keycap","keycap","keycap-0","keycap-1","keycap-2","keycap-3","keycap-4","keycap-5","keycap-6","keycap-7","keycap-8","keycap-9","keycap-10","input-latin-uppercase","input-latin-lowercase","input-numbers","input-symbols","input-latin-letters","a-button-blood-type","ab-button-blood-type","b-button-blood-type","cl-button","cool-button","free-button","information","id-button","circled-m","new-button","ng-button","o-button-blood-type","ok-button","p-button","sos-button","up-button","vs-button","japanese-here-button","japanese-service-charge-button","japanese-monthly-amount-button","japanese-not-free-of-charge-button","japanese-reserved-button","japanese-bargain-button","japanese-discount-button","japanese-free-of-charge-button","japanese-prohibited-button","japanese-acceptable-button","japanese-application-button","japanese-passing-grade-button","japanese-vacancy-button","japanese-congratulations-button","japanese-secret-button","japanese-open-for-business-button","japanese-no-vacancy-button","red-circle","orange-circle","yellow-circle","green-circle","blue-circle","purple-circle","brown-circle","black-circle","white-circle","red-square","orange-square","yellow-square","green-square","blue-square","purple-square","brown-square","black-large-square","white-large-square","black-medium-square","white-medium-square","black-mediumsmall-square","white-mediumsmall-square","black-small-square","white-small-square","large-orange-diamond","large-blue-diamond","small-orange-diamond","small-blue-diamond","red-triangle-pointed-up","red-triangle-pointed-down","diamond-with-a-dot","radio-button","white-square-button","black-square-button"]},{"id":"flags","name":"Flags","emojis":["chequered-flag","triangular-flag","crossed-flags","black-flag","white-flag","rainbow-flag","transgender-flag","pirate-flag","flag-ascension-island","flag-andorra","flag-united-arab-emirates","flag-afghanistan","flag-antigua--barbuda","flag-anguilla","flag-albania","flag-armenia","flag-angola","flag-antarctica","flag-argentina","flag-american-samoa","flag-austria","flag-australia","flag-aruba","flag-land-islands","flag-azerbaijan","flag-bosnia--herzegovina","flag-barbados","flag-bangladesh","flag-belgium","flag-burkina-faso","flag-bulgaria","flag-bahrain","flag-burundi","flag-benin","flag-st-barthlemy","flag-bermuda","flag-brunei","flag-bolivia","flag-caribbean-netherlands","flag-brazil","flag-bahamas","flag-bhutan","flag-bouvet-island","flag-botswana","flag-belarus","flag-belize","flag-canada","flag-cocos-keeling-islands","flag-congo--kinshasa","flag-central-african-republic","flag-congo--brazzaville","flag-switzerland","flag-cte-divoire","flag-cook-islands","flag-chile","flag-cameroon","flag-china","flag-colombia","flag-clipperton-island","flag-costa-rica","flag-cuba","flag-cape-verde","flag-curaao","flag-christmas-island","flag-cyprus","flag-czechia","flag-germany","flag-diego-garcia","flag-djibouti","flag-denmark","flag-dominica","flag-dominican-republic","flag-algeria","flag-ceuta--melilla","flag-ecuador","flag-estonia","flag-egypt","flag-western-sahara","flag-eritrea","flag-spain","flag-ethiopia","flag-european-union","flag-finland","flag-fiji","flag-falkland-islands","flag-micronesia","flag-faroe-islands","flag-france","flag-gabon","flag-united-kingdom","flag-grenada","flag-georgia","flag-french-guiana","flag-guernsey","flag-ghana","flag-gibraltar","flag-greenland","flag-gambia","flag-guinea","flag-guadeloupe","flag-equatorial-guinea","flag-greece","flag-south-georgia--south-sandwich-islands","flag-guatemala","flag-guam","flag-guineabissau","flag-guyana","flag-hong-kong-sar-china","flag-heard--mcdonald-islands","flag-honduras","flag-croatia","flag-haiti","flag-hungary","flag-canary-islands","flag-indonesia","flag-ireland","flag-israel","flag-isle-of-man","flag-india","flag-british-indian-ocean-territory","flag-iraq","flag-iran","flag-iceland","flag-italy","flag-jersey","flag-jamaica","flag-jordan","flag-japan","flag-kenya","flag-kyrgyzstan","flag-cambodia","flag-kiribati","flag-comoros","flag-st-kitts--nevis","flag-north-korea","flag-south-korea","flag-kuwait","flag-cayman-islands","flag-kazakhstan","flag-laos","flag-lebanon","flag-st-lucia","flag-liechtenstein","flag-sri-lanka","flag-liberia","flag-lesotho","flag-lithuania","flag-luxembourg","flag-latvia","flag-libya","flag-morocco","flag-monaco","flag-moldova","flag-montenegro","flag-st-martin","flag-madagascar","flag-marshall-islands","flag-north-macedonia","flag-mali","flag-myanmar-burma","flag-mongolia","flag-macao-sar-china","flag-northern-mariana-islands","flag-martinique","flag-mauritania","flag-montserrat","flag-malta","flag-mauritius","flag-maldives","flag-malawi","flag-mexico","flag-malaysia","flag-mozambique","flag-namibia","flag-new-caledonia","flag-niger","flag-norfolk-island","flag-nigeria","flag-nicaragua","flag-netherlands","flag-norway","flag-nepal","flag-nauru","flag-niue","flag-new-zealand","flag-oman","flag-panama","flag-peru","flag-french-polynesia","flag-papua-new-guinea","flag-philippines","flag-pakistan","flag-poland","flag-st-pierre--miquelon","flag-pitcairn-islands","flag-puerto-rico","flag-palestinian-territories","flag-portugal","flag-palau","flag-paraguay","flag-qatar","flag-runion","flag-romania","flag-serbia","flag-russia","flag-rwanda","flag-saudi-arabia","flag-solomon-islands","flag-seychelles","flag-sudan","flag-sweden","flag-singapore","flag-st-helena","flag-slovenia","flag-svalbard--jan-mayen","flag-slovakia","flag-sierra-leone","flag-san-marino","flag-senegal","flag-somalia","flag-suriname","flag-south-sudan","flag-so-tom--prncipe","flag-el-salvador","flag-sint-maarten","flag-syria","flag-eswatini","flag-tristan-da-cunha","flag-turks--caicos-islands","flag-chad","flag-french-southern-territories","flag-togo","flag-thailand","flag-tajikistan","flag-tokelau","flag-timorleste","flag-turkmenistan","flag-tunisia","flag-tonga","flag-turkey","flag-trinidad--tobago","flag-tuvalu","flag-taiwan","flag-tanzania","flag-ukraine","flag-uganda","flag-us-outlying-islands","flag-united-nations","flag-united-states","flag-uruguay","flag-uzbekistan","flag-vatican-city","flag-st-vincent--grenadines","flag-venezuela","flag-british-virgin-islands","flag-us-virgin-islands","flag-vietnam","flag-vanuatu","flag-wallis--futuna","flag-samoa","flag-kosovo","flag-yemen","flag-mayotte","flag-south-africa","flag-zambia","flag-zimbabwe","flag-england","flag-scotland","flag-wales"]}],"emojis":{"grinning-face":{"a":"Grinning Face","b":"1F600","j":["grin","joy",":D","smile","happy","face"]},"grinning-face-with-big-eyes":{"a":"Grinning Face with Big Eyes","b":"1F603","j":["mouth","open","joy",":)",":D","funny","smile","happy","face","haha"]},"grinning-face-with-smiling-eyes":{"a":"Grinning Face with Smiling Eyes","b":"1F604","j":["mouth","open","eye","joy",":)","like",":D","funny","smile","happy","laugh","face","haha"]},"beaming-face-with-smiling-eyes":{"a":"Beaming Face with Smiling Eyes","b":"1F601","j":["grin","joy","eye","smile","kawaii","happy","face"]},"grinning-squinting-face":{"a":"Grinning Squinting Face","b":"1F606","j":["mouth","lol","joy","glad","XD","haha","smile","happy","laugh","face","satisfied"]},"grinning-face-with-sweat":{"a":"Grinning Face with Sweat","b":"1F605","j":["relief","open","sweat","hot","smile","cold","happy","laugh","face"]},"rolling-on-the-floor-laughing":{"a":"Rolling on the Floor Laughing","b":"1F923","j":["floor","lol","rolling","rotfl","rofl","laughing","laugh","face","haha"]},"face-with-tears-of-joy":{"a":"Face with Tears of Joy","b":"1F602","j":["tears","weep","tear","cry","joy","happytears","happy","laugh","face","haha"]},"slightly-smiling-face":{"a":"Slightly Smiling Face","b":"1F642","j":["smile","face"]},"upsidedown-face":{"a":"Upside-Down Face","b":"1F643","j":["upside_down_face","flipped","upside-down","smile","face","silly"]},"winking-face":{"a":"Winking Face","b":"1F609","j":["mischievous",";)","wink","eye","smile","secret","happy","face"]},"smiling-face-with-smiling-eyes":{"a":"Smiling Face with Smiling Eyes","b":"1F60A","j":["blush","eye","joy","smile","embarrassed","shy","crush","happy","flushed","face"]},"smiling-face-with-halo":{"a":"Smiling Face with Halo","b":"1F607","j":["halo","fantasy","innocent","angel","face","heaven"]},"smiling-face-with-hearts":{"a":"Smiling Face with Hearts","b":"1F970","j":["infatuation","hearts","love","like","valentines","affection","in love","crush","adore","face"]},"smiling-face-with-hearteyes":{"a":"Smiling Face with Heart-Eyes","b":"1F60D","j":["heart","smiling face with heart-eyes","eye","love","infatuation","like","affection","smile","valentines","smiling_face_with_heart_eyes","crush","face"]},"starstruck":{"a":"Star-Struck","b":"1F929","j":["starry-eyed","eyes","star_struck","grinning","smile","star-struck","starry","face","star"]},"face-blowing-a-kiss":{"a":"Face Blowing a Kiss","b":"1F618","j":["infatuation","love","kiss","like","valentines","affection","face"]},"kissing-face":{"a":"Kissing Face","b":"1F617","j":["3","infatuation","kiss","love","like","valentines","face"]},"smiling-face":{"a":"Smiling Face","b":"263A","j":["massage","outlined","blush","smile","happiness","relaxed","face"]},"kissing-face-with-closed-eyes":{"a":"Kissing Face with Closed Eyes","b":"1F61A","j":["closed","infatuation","eye","kiss","love","like","valentines","affection","face"]},"kissing-face-with-smiling-eyes":{"a":"Kissing Face with Smiling Eyes","b":"1F619","j":["infatuation","eye","kiss","valentines","smile","affection","face"]},"smiling-face-with-tear":{"a":"Smiling Face with Tear","b":"1F972","j":["touched","sad","grateful","tear","relieved","cry","smiling","proud","pretend"]},"face-savoring-food":{"a":"Face Savoring Food","b":"1F60B","j":["joy","nom","tongue","savouring","smile","delicious","yummy","yum","happy","face","silly"]},"face-with-tongue":{"a":"Face with Tongue","b":"1F61B","j":["prank","mischievous","playful","childish","tongue","smile","face"]},"winking-face-with-tongue":{"a":"Winking Face with Tongue","b":"1F61C","j":["prank","mischievous","playful","childish","wink","eye","tongue","smile","joke","face"]},"zany-face":{"a":"Zany Face","b":"1F92A","j":["eye","small","large","crazy","goofy","face"]},"squinting-face-with-tongue":{"a":"Squinting Face with Tongue","b":"1F61D","j":["prank","mischievous","taste","playful","eye","tongue","horrible","smile","face"]},"moneymouth-face":{"a":"Money-Mouth Face","b":"1F911","j":["mouth","dollar","money-mouth face","money","rich","face","money_mouth_face"]},"hugging-face":{"a":"Hugging Face","b":"1F917","j":["hugging","smile","hug","face"]},"face-with-hand-over-mouth":{"a":"Face with Hand over Mouth","b":"1F92D","j":["surprise","whoops","shock","face","sudden realization"]},"shushing-face":{"a":"Shushing Face","b":"1F92B","j":["shhh","shush","quiet","face"]},"thinking-face":{"a":"Thinking Face","b":"1F914","j":["consider","face","thinking","think","hmmm"]},"zippermouth-face":{"a":"Zipper-Mouth Face","b":"1F910","j":["zipper-mouth face","mouth","sealed","zipper_mouth_face","zipper","secret","face"]},"face-with-raised-eyebrow":{"a":"Face with Raised Eyebrow","b":"1F928","j":["disbelief","surprise","mild surprise","scepticism","disapproval","distrust","face","skeptic"]},"neutral-face":{"a":"Neutral Face","b":"1F610","j":["deadpan",":|","neutral","meh","face","indifference"]},"expressionless-face":{"a":"Expressionless Face","b":"1F611","j":["unexpressive","expressionless","-_-","deadpan","indifferent","meh","face","inexpressive"]},"face-without-mouth":{"a":"Face Without Mouth","b":"1F636","j":["mouth","silent","hellokitty","quiet","face"]},"face-in-clouds":{"a":"⊛ Face in Clouds","b":"1F636-200D-1F32B-FE0F","j":["absentminded","face in clouds","face in the fog","head in clouds"]},"smirking-face":{"a":"Smirking Face","b":"1F60F","j":["prank","smug","mean","sarcasm","smirk","smile","face"]},"unamused-face":{"a":"Unamused Face","b":"1F612","j":["unhappy","straight face","bored","side_eye","skeptical","dubious","sarcasm","unamused","serious","unimpressed","face","indifference"]},"face-with-rolling-eyes":{"a":"Face with Rolling Eyes","b":"1F644","j":["eyeroll","frustrated","rolling","eyes","face"]},"grimacing-face":{"a":"Grimacing Face","b":"1F62C","j":["teeth","grimace","face"]},"face-exhaling":{"a":"⊛ Face Exhaling","b":"1F62E-200D-1F4A8","j":["exhale","face exhaling","gasp","groan","relief","whisper","whistle"]},"lying-face":{"a":"Lying Face","b":"1F925","j":["lie","face","pinocchio"]},"relieved-face":{"a":"Relieved Face","b":"1F60C","j":["massage","relieved","phew","happiness","relaxed","face"]},"pensive-face":{"a":"Pensive Face","b":"1F614","j":["dejected","sad","pensive","depressed","upset","face"]},"sleepy-face":{"a":"Sleepy Face","b":"1F62A","j":["tired","rest","nap","face","sleep"]},"drooling-face":{"a":"Drooling Face","b":"1F924","j":["face","drooling"]},"sleeping-face":{"a":"Sleeping Face","b":"1F634","j":["night","sleepy","zzz","tired","face","sleep"]},"face-with-medical-mask":{"a":"Face with Medical Mask","b":"1F637","j":["sick","doctor","ill","disease","mask","cold","face"]},"face-with-thermometer":{"a":"Face with Thermometer","b":"1F912","j":["sick","thermometer","temperature","fever","ill","cold","face"]},"face-with-headbandage":{"a":"Face with Head-Bandage","b":"1F915","j":["face_with_head_bandage","injured","injury","clumsy","face with head-bandage","bandage","face","hurt"]},"nauseated-face":{"a":"Nauseated Face","b":"1F922","j":["sick","throw up","nauseated","ill","green","vomit","gross","face"]},"face-vomiting":{"a":"Face Vomiting","b":"1F92E","j":["puke","vomit","face","sick"]},"sneezing-face":{"a":"Sneezing Face","b":"1F927","j":["sick","allergy","sneeze","gesundheit","face"]},"hot-face":{"a":"Hot Face","b":"1F975","j":["red","hot","heat","feverish","heat stroke","sweating","face","red-faced"]},"cold-face":{"a":"Cold Face","b":"1F976","j":["icicles","freezing","frozen","blue-faced","frostbite","cold","face","blue"]},"woozy-face":{"a":"Woozy Face","b":"1F974","j":["dizzy","face","wavy mouth","tipsy","wavy","uneven eyes","intoxicated"]},"knockedout-face":{"a":"Knocked-out Face","b":"1F635","j":["knocked-out face","dizzy_face","dizzy","knocked out","xox","spent","unconscious","face","dead"]},"face-with-spiral-eyes":{"a":"⊛ Face with Spiral Eyes","b":"1F635-200D-1F4AB","j":["dizzy","face with spiral eyes","hypnotized","spiral","trouble","whoa"]},"exploding-head":{"a":"Exploding Head","b":"1F92F","j":["shocked","mind","blown","mind blown","face"]},"cowboy-hat-face":{"a":"Cowboy Hat Face","b":"1F920","j":["cowboy","cowgirl","face","hat"]},"partying-face":{"a":"Partying Face","b":"1F973","j":["hat","celebration","horn","woohoo","face","party"]},"disguised-face":{"a":"Disguised Face","b":"1F978","j":["brows","glasses","incognito","moustache","disguise","nose","face","pretent"]},"smiling-face-with-sunglasses":{"a":"Smiling Face with Sunglasses","b":"1F60E","j":["cool","sunglass","sun","smile","bright","beach","summer","sunglasses","face"]},"nerd-face":{"a":"Nerd Face","b":"1F913","j":["nerdy","dork","nerd","geek","face"]},"face-with-monocle":{"a":"Face with Monocle","b":"1F9D0","j":["wealthy","stuffy","face"]},"confused-face":{"a":"Confused Face","b":"1F615","j":[":/","face","meh","confused","huh","hmmm","weird","indifference"]},"worried-face":{"a":"Worried Face","b":"1F61F","j":[":(","worried","nervous","concern","face"]},"slightly-frowning-face":{"a":"Slightly Frowning Face","b":"1F641","j":["sad","frowning","frown","disappointed","upset","face"]},"frowning-face":{"a":"Frowning Face","b":"2639","j":["sad","upset","face","frown"]},"face-with-open-mouth":{"a":"Face with Open Mouth","b":"1F62E","j":["surprise","mouth","wow","whoa","open","sympathy","impressed",":O","face"]},"hushed-face":{"a":"Hushed Face","b":"1F62F","j":["shh","woo","surprised","hushed","stunned","face"]},"astonished-face":{"a":"Astonished Face","b":"1F632","j":["shocked","poisoned","totally","surprised","astonished","xox","face"]},"flushed-face":{"a":"Flushed Face","b":"1F633","j":["blush","flattered","shy","dazed","flushed","face"]},"pleading-face":{"a":"Pleading Face","b":"1F97A","j":["begging","mercy","face","puppy eyes"]},"frowning-face-with-open-mouth":{"a":"Frowning Face with Open Mouth","b":"1F626","j":["mouth","aw","what","open","frown","face"]},"anguished-face":{"a":"Anguished Face","b":"1F627","j":["stunned","anguished","face","nervous"]},"fearful-face":{"a":"Fearful Face","b":"1F628","j":["fearful","terrified","oops","scared","fear","nervous","huh","face"]},"anxious-face-with-sweat":{"a":"Anxious Face with Sweat","b":"1F630","j":["sweat","nervous","cold","rushed","face","blue"]},"sad-but-relieved-face":{"a":"Sad but Relieved Face","b":"1F625","j":["whew","relieved","sweat","phew","disappointed","nervous","face"]},"crying-face":{"a":"Crying Face","b":"1F622","j":["sad","tears","tear",":'(","cry","depressed","upset","face"]},"loudly-crying-face":{"a":"Loudly Crying Face","b":"1F62D","j":["sad","tears","tear","cry","depressed","sob","upset","face"]},"face-screaming-in-fear":{"a":"Face Screaming in Fear","b":"1F631","j":["munch","scared","scream","omg","fear","face"]},"confounded-face":{"a":"Confounded Face","b":"1F616","j":["unwell","sick","confounded","oops",":S","confused","face"]},"persevering-face":{"a":"Persevering Face","b":"1F623","j":["sick","no","oops","upset","face","persevere"]},"disappointed-face":{"a":"Disappointed Face","b":"1F61E","j":["sad","depressed","disappointed",":(","upset","face"]},"downcast-face-with-sweat":{"a":"Downcast Face with Sweat","b":"1F613","j":["sad","exercise","sweat","hot","tired","cold","face"]},"weary-face":{"a":"Weary Face","b":"1F629","j":["sad","weary","sleepy","frustrated","tired","upset","face"]},"tired-face":{"a":"Tired Face","b":"1F62B","j":["sick","frustrated","tired","upset","whine","face"]},"yawning-face":{"a":"Yawning Face","b":"1F971","j":["","bored","yawn","tired","sleepy"]},"face-with-steam-from-nose":{"a":"Face with Steam From Nose","b":"1F624","j":["gas","won","pride","phew","proud","face","triumph"]},"pouting-face":{"a":"Pouting Face","b":"1F621","j":["despise","red","mad","hate","angry","pouting","face","rage"]},"angry-face":{"a":"Angry Face","b":"1F620","j":["annoyed","mad","frustrated","angry","anger","face"]},"face-with-symbols-on-mouth":{"a":"Face with Symbols on Mouth","b":"1F92C","j":["swearing","profanity","cursing","expletive","cussing","face"]},"smiling-face-with-horns":{"a":"Smiling Face with Horns","b":"1F608","j":["devil","horns","fairy tale","fantasy","smile","face"]},"angry-face-with-horns":{"a":"Angry Face with Horns","b":"1F47F","j":["demon","imp","devil","horns","fantasy","angry","face"]},"skull":{"a":"Skull","b":"1F480","j":["monster","skeleton","fairy tale","creepy","death","face","dead"]},"skull-and-crossbones":{"a":"Skull and Crossbones","b":"2620","j":["monster","scary","poison","skull","crossbones","deadly","evil","danger","death","face","pirate"]},"pile-of-poo":{"a":"Pile of Poo","b":"1F4A9","j":["monster","poop","dung","shitface","hankey","poo","shit","turd","face","fail"]},"clown-face":{"a":"Clown Face","b":"1F921","j":["face","clown"]},"ogre":{"a":"Ogre","b":"1F479","j":["monster","demon","devil","red","fairy tale","fantasy","troll","halloween","creepy","creature","mask","japanese","scary","face"]},"goblin":{"a":"Goblin","b":"1F47A","j":["monster","red","fairy tale","fantasy","creature","creepy","mask","japanese","scary","evil","face"]},"ghost":{"a":"Ghost","b":"1F47B","j":["monster","fairy tale","fantasy","halloween","spooky","creature","scary","face"]},"alien":{"a":"Alien","b":"1F47D","j":["paul","ufo","outer_space","UFO","extraterrestrial","fantasy","creature","face","weird"]},"alien-monster":{"a":"Alien Monster","b":"1F47E","j":["monster","ufo","arcade","alien","extraterrestrial","creature","game","face","play"]},"robot":{"a":"Robot","b":"1F916","j":["monster","machine","bot","computer","face"]},"grinning-cat":{"a":"Grinning Cat","b":"1F63A","j":["mouth","open","animal","grinning","smile","cats","happy","cat","face"]},"grinning-cat-with-smiling-eyes":{"a":"Grinning Cat with Smiling Eyes","b":"1F638","j":["grin","animal","eye","cats","smile","cat","face"]},"cat-with-tears-of-joy":{"a":"Cat with Tears of Joy","b":"1F639","j":["tears","tear","joy","animal","cats","happy","cat","face","haha"]},"smiling-cat-with-hearteyes":{"a":"Smiling Cat with Heart-Eyes","b":"1F63B","j":["heart","smiling cat with heart-eyes","smiling_cat_with_heart_eyes","eye","love","animal","like","affection","smile","cats","valentines","cat","face"]},"cat-with-wry-smile":{"a":"Cat with Wry Smile","b":"1F63C","j":["animal","ironic","smirk","smile","cats","wry","cat","face"]},"kissing-cat":{"a":"Kissing Cat","b":"1F63D","j":["animal","kiss","eye","cats","cat","face"]},"weary-cat":{"a":"Weary Cat","b":"1F640","j":["weary","cat","animal","munch","scared","surprised","scream","cats","oh","face"]},"crying-cat":{"a":"Crying Cat","b":"1F63F","j":["sad","tears","tear","weep","cry","animal","cats","upset","cat","face"]},"pouting-cat":{"a":"Pouting Cat","b":"1F63E","j":["animal","cats","pouting","cat","face"]},"seenoevil-monkey":{"a":"See-No-Evil Monkey","b":"1F648","j":["animal","see","see-no-evil monkey","face","see_no_evil_monkey","nature","forbidden","evil","monkey","haha"]},"hearnoevil-monkey":{"a":"Hear-No-Evil Monkey","b":"1F649","j":["hear-no-evil monkey","hear","monkey","animal","hear_no_evil_monkey","nature","forbidden","evil","face"]},"speaknoevil-monkey":{"a":"Speak-No-Evil Monkey","b":"1F64A","j":["speak","speak-no-evil monkey","animal","face","omg","speak_no_evil_monkey","nature","forbidden","evil","monkey"]},"kiss-mark":{"a":"Kiss Mark","b":"1F48B","j":["lips","love","kiss","like","valentines","affection","face"]},"love-letter":{"a":"Love Letter","b":"1F48C","j":["heart","letter","envelope","email","love","like","valentines","mail","affection"]},"heart-with-arrow":{"a":"Heart with Arrow","b":"1F498","j":["cupid","heart","arrow","love","like","valentines","affection"]},"heart-with-ribbon":{"a":"Heart with Ribbon","b":"1F49D","j":["ribbon","love","valentines","valentine"]},"sparkling-heart":{"a":"Sparkling Heart","b":"1F496","j":["sparkle","love","like","valentines","excited","affection"]},"growing-heart":{"a":"Growing Heart","b":"1F497","j":["pink","pulse","growing","love","like","valentines","nervous","excited","affection"]},"beating-heart":{"a":"Beating Heart","b":"1F493","j":["heartbeat","pink","heart","love","like","valentines","beating","affection","pulsating"]},"revolving-hearts":{"a":"Revolving Hearts","b":"1F49E","j":["love","like","valentines","revolving","affection"]},"two-hearts":{"a":"Two Hearts","b":"1F495","j":["heart","love","like","valentines","affection"]},"heart-decoration":{"a":"Heart Decoration","b":"1F49F","j":["purple-square","heart","love","like"]},"heart-exclamation":{"a":"Heart Exclamation","b":"2763","j":["exclamation","decoration","punctuation","love","mark"]},"broken-heart":{"a":"Broken Heart","b":"1F494","j":["sad","heart","heartbreak","break","sorry","broken"]},"heart-on-fire":{"a":"⊛ Heart on Fire","b":"2764-FE0F-200D-1F525","j":["burn","heart","heart on fire","love","lust","sacred heart"]},"mending-heart":{"a":"⊛ Mending Heart","b":"2764-FE0F-200D-1FA79","j":["healthier","improving","mending","mending heart","recovering","recuperating","well"]},"red-heart":{"a":"Red Heart","b":"2764","j":["heart","love","valentines","like"]},"orange-heart":{"a":"Orange Heart","b":"1F9E1","j":["love","like","orange","valentines","affection"]},"yellow-heart":{"a":"Yellow Heart","b":"1F49B","j":["yellow","love","like","valentines","affection"]},"green-heart":{"a":"Green Heart","b":"1F49A","j":["love","like","green","valentines","affection"]},"blue-heart":{"a":"Blue Heart","b":"1F499","j":["love","like","valentines","affection","blue"]},"purple-heart":{"a":"Purple Heart","b":"1F49C","j":["love","like","purple","valentines","affection"]},"brown-heart":{"a":"Brown Heart","b":"1F90E","j":["brown","coffee","heart"]},"black-heart":{"a":"Black Heart","b":"1F5A4","j":["black","wicked","evil"]},"white-heart":{"a":"White Heart","b":"1F90D","j":["heart","pure","white"]},"hundred-points":{"a":"Hundred Points","b":"1F4AF","j":["test","100","exam","score","numbers","full","quiz","hundred","century","pass","perfect"]},"anger-symbol":{"a":"Anger Symbol","b":"1F4A2","j":["mad","comic","angry"]},"collision":{"a":"Collision","b":"1F4A5","j":["explode","boom","bomb","comic","blown","explosion"]},"dizzy":{"a":"Dizzy","b":"1F4AB","j":["sparkle","magic","shoot","comic","star"]},"sweat-droplets":{"a":"Sweat Droplets","b":"1F4A6","j":["sweat","oops","water","drip","comic","splashing"]},"dashing-away":{"a":"Dashing Away","b":"1F4A8","j":["running","air","fart","shoo","wind","smoke","comic","fast","puff","dash"]},"hole":{"a":"Hole","b":"1F573","j":["embarrassing"]},"bomb":{"a":"Bomb","b":"1F4A3","j":["explode","terrorism","boom","comic","explosion"]},"speech-balloon":{"a":"Speech Balloon","b":"1F4AC","j":["chatting","dialog","speech","bubble","words","message","balloon","comic","talk"]},"eye-in-speech-bubble":{"a":"Eye in Speech Bubble","b":"1F441-FE0F-200D-1F5E8-FE0F","j":["speech bubble","info","eye","witness"]},"left-speech-bubble":{"a":"Left Speech Bubble","b":"1F5E8","j":["chatting","dialog","speech","words","message","talk"]},"right-anger-bubble":{"a":"Right Anger Bubble","b":"1F5EF","j":["mad","speech","bubble","thinking","balloon","angry","caption"]},"thought-balloon":{"a":"Thought Balloon","b":"1F4AD","j":["thought","dream","cloud","bubble","speech","thinking","balloon","comic"]},"zzz":{"a":"Zzz","b":"1F4A4","j":["dream","tired","comic","sleepy","sleep"]},"waving-hand":{"a":"Waving Hand","b":"1F44B","j":["palm","gesture","farewell","wave","hands","hello","hi","solong","waving","hand","goodbye"]},"raised-back-of-hand":{"a":"Raised Back of Hand","b":"1F91A","j":["raised","fingers","backhand"]},"hand-with-fingers-splayed":{"a":"Hand with Fingers Splayed","b":"1F590","j":["splayed","palm","finger","hand","fingers"]},"raised-hand":{"a":"Raised Hand","b":"270B","j":["stop","palm","high 5","highfive","high five","hand","fingers","ban"]},"vulcan-salute":{"a":"Vulcan Salute","b":"1F596","j":["spock","finger","hand","star trek","fingers","vulcan"]},"ok-hand":{"a":"Ok Hand","b":"1F44C","j":["ok","perfect","limbs","hand","OK","okay","fingers"]},"pinched-fingers":{"a":"Pinched Fingers","b":"1F90C","j":["pinched","small","interrogation","hand gesture","sarcastic","size","fingers","tiny"]},"pinching-hand":{"a":"Pinching Hand","b":"1F90F","j":["small","size","small amount","tiny"]},"victory-hand":{"a":"Victory Hand","b":"270C","j":["victory","ohyeah","peace","two","v","hand","fingers"]},"crossed-fingers":{"a":"Crossed Fingers","b":"1F91E","j":["lucky","cross","luck","finger","good","hand"]},"loveyou-gesture":{"a":"Love-You Gesture","b":"1F91F","j":["gesture","love-you gesture","hand","ILY","fingers","love_you_gesture"]},"sign-of-the-horns":{"a":"Sign of the Horns","b":"1F918","j":["evil_eye","sign_of_horns","horns","finger","rock_on","hand","fingers","rock-on"]},"call-me-hand":{"a":"Call Me Hand","b":"1F919","j":["hand","gesture","call","hands"]},"backhand-index-pointing-left":{"a":"Backhand Index Pointing Left","b":"1F448","j":["point","backhand","index","left","direction","finger","hand","fingers"]},"backhand-index-pointing-right":{"a":"Backhand Index Pointing Right","b":"1F449","j":["point","backhand","index","direction","right","finger","hand","fingers"]},"backhand-index-pointing-up":{"a":"Backhand Index Pointing Up","b":"1F446","j":["up","point","backhand","direction","finger","hand","fingers"]},"middle-finger":{"a":"Middle Finger","b":"1F595","j":["flipping","rude","middle","finger","hand","fingers"]},"backhand-index-pointing-down":{"a":"Backhand Index Pointing Down","b":"1F447","j":["point","backhand","direction","down","finger","hand","fingers"]},"index-pointing-up":{"a":"Index Pointing Up","b":"261D","j":["up","point","index","direction","finger","hand","fingers"]},"thumbs-up":{"a":"Thumbs Up","b":"1F44D","j":["up","cool","thumb","+1","thumbsup","awesome","like","good","accept","hand","yes","agree"]},"thumbs-down":{"a":"Thumbs Down","b":"1F44E","j":["-1","thumb","no","dislike","down","thumbsdown","hand"]},"raised-fist":{"a":"Raised Fist","b":"270A","j":["punch","fist","grasp","clenched","hand","fingers"]},"oncoming-fist":{"a":"Oncoming Fist","b":"1F44A","j":["punch","attack","fist","hit","clenched","angry","hand","violence"]},"leftfacing-fist":{"a":"Left-Facing Fist","b":"1F91B","j":["fist","left-facing fist","leftwards","left_facing_fist","hand","fistbump"]},"rightfacing-fist":{"a":"Right-Facing Fist","b":"1F91C","j":["rightwards","fist","right-facing fist","right_facing_fist","hand","fistbump"]},"clapping-hands":{"a":"Clapping Hands","b":"1F44F","j":["congrats","praise","applause","yay","hands","hand","clap"]},"raising-hands":{"a":"Raising Hands","b":"1F64C","j":["hooray","gesture","celebration","raised","yea","hands","hand"]},"open-hands":{"a":"Open Hands","b":"1F450","j":["open","butterfly","hands","hand","fingers"]},"palms-up-together":{"a":"Palms Up Together","b":"1F932","j":["gesture","hands","cupped hands","cupped","prayer"]},"handshake":{"a":"Handshake","b":"1F91D","j":["agreement","hand","meeting","shake"]},"folded-hands":{"a":"Folded Hands","b":"1F64F","j":["thanks","wish","please","high 5","hope","namaste","pray","highfive","high five","hand","ask"]},"writing-hand":{"a":"Writing Hand","b":"270D","j":["lower_left_ballpoint_pen","write","stationery","compose","hand"]},"nail-polish":{"a":"Nail Polish","b":"1F485","j":["manicure","polish","beauty","finger","fashion","nail","cosmetics","care"]},"selfie":{"a":"Selfie","b":"1F933","j":["camera","phone"]},"flexed-biceps":{"a":"Flexed Biceps","b":"1F4AA","j":["strong","hand","flex","biceps","comic","arm","summer","muscle"]},"mechanical-arm":{"a":"Mechanical Arm","b":"1F9BE","j":["accessibility","prosthetic"]},"mechanical-leg":{"a":"Mechanical Leg","b":"1F9BF","j":["accessibility","prosthetic"]},"leg":{"a":"Leg","b":"1F9B5","j":["limb","kick"]},"foot":{"a":"Foot","b":"1F9B6","j":["stomp","kick"]},"ear":{"a":"Ear","b":"1F442","j":["listen","hear","body","sound","face"]},"ear-with-hearing-aid":{"a":"Ear with Hearing Aid","b":"1F9BB","j":["accessibility","hard of hearing"]},"nose":{"a":"Nose","b":"1F443","j":["body","smell","sniff"]},"brain":{"a":"Brain","b":"1F9E0","j":["smart","intelligent"]},"anatomical-heart":{"a":"Anatomical Heart","b":"1FAC0","j":["heartbeat","heart","pulse","health","organ","anatomical","cardiology"]},"lungs":{"a":"Lungs","b":"1FAC1","j":["organ","respiration","breathe","exhalation","breath","inhalation"]},"tooth":{"a":"Tooth","b":"1F9B7","j":["teeth","dentist"]},"bone":{"a":"Bone","b":"1F9B4","j":["skeleton"]},"eyes":{"a":"Eyes","b":"1F440","j":["stalk","eye","see","peek","watch","look","face"]},"eye":{"a":"Eye","b":"1F441","j":["body","stare","see","watch","look","face"]},"tongue":{"a":"Tongue","b":"1F445","j":["body","mouth","playful"]},"mouth":{"a":"Mouth","b":"1F444","j":["lips","kiss"]},"baby":{"a":"Baby","b":"1F476","j":["young","child","girl","boy","toddler"]},"child":{"a":"Child","b":"1F9D2","j":["gender-neutral","unspecified gender","young"]},"boy":{"a":"Boy","b":"1F466","j":["male","man","teenager","young","guy"]},"girl":{"a":"Girl","b":"1F467","j":["Virgo","woman","teenager","young","female","zodiac"]},"person":{"a":"Person","b":"1F9D1","j":["gender-neutral","unspecified gender","adult"]},"person-blond-hair":{"a":"Person: Blond Hair","b":"1F471","j":["blond","blond-haired person","hair","person: blond hair","hairstyle"]},"man":{"a":"Man","b":"1F468","j":["dad","classy","adult","mustache","guy","moustache","father","sir"]},"person-beard":{"a":"Person: Beard","b":"1F9D4","j":["man_beard","beard","bewhiskered","person: beard","person"]},"man-beard":{"a":"⊛ Man: Beard","b":"1F9D4-200D-2642-FE0F","j":["beard","man","man: beard"]},"woman-beard":{"a":"⊛ Woman: Beard","b":"1F9D4-200D-2640-FE0F","j":["beard","woman","woman: beard"]},"man-red-hair":{"a":"Man: Red Hair","b":"1F468-200D-1F9B0","j":["man","hairstyle","adult","red hair"]},"man-curly-hair":{"a":"Man: Curly Hair","b":"1F468-200D-1F9B1","j":["man","curly hair","hairstyle","adult"]},"man-white-hair":{"a":"Man: White Hair","b":"1F468-200D-1F9B3","j":["man","old","adult","white hair","elder"]},"man-bald":{"a":"Man: Bald","b":"1F468-200D-1F9B2","j":["man","hairless","bald","adult"]},"woman":{"a":"Woman","b":"1F469","j":["female","lady","adult","girls"]},"woman-red-hair":{"a":"Woman: Red Hair","b":"1F469-200D-1F9B0","j":["woman","hairstyle","adult","red hair"]},"person-red-hair":{"a":"Person: Red Hair","b":"1F9D1-200D-1F9B0","j":["gender-neutral","unspecified gender","adult","red hair","hairstyle","person"]},"woman-curly-hair":{"a":"Woman: Curly Hair","b":"1F469-200D-1F9B1","j":["curly hair","hairstyle","woman","adult"]},"person-curly-hair":{"a":"Person: Curly Hair","b":"1F9D1-200D-1F9B1","j":["gender-neutral","unspecified gender","adult","curly hair","hairstyle","person"]},"woman-white-hair":{"a":"Woman: White Hair","b":"1F469-200D-1F9B3","j":["woman","old","adult","white hair","elder"]},"person-white-hair":{"a":"Person: White Hair","b":"1F9D1-200D-1F9B3","j":["gender-neutral","unspecified gender","old","adult","white hair","person","elder"]},"woman-bald":{"a":"Woman: Bald","b":"1F469-200D-1F9B2","j":["woman","bald","hairless","adult"]},"person-bald":{"a":"Person: Bald","b":"1F9D1-200D-1F9B2","j":["gender-neutral","bald","unspecified gender","adult","hairless","person"]},"woman-blond-hair":{"a":"Woman: Blond Hair","b":"1F471-200D-2640-FE0F","j":["blond-haired woman","woman","female","hair","girl","woman: blond hair","person","blonde"]},"man-blond-hair":{"a":"Man: Blond Hair","b":"1F471-200D-2642-FE0F","j":["blond","male","man","blond-haired man","man: blond hair","hair","guy","boy","person","blonde"]},"older-person":{"a":"Older Person","b":"1F9D3","j":["gender-neutral","unspecified gender","old","adult","senior","human","elder"]},"old-man":{"a":"Old Man","b":"1F474","j":["male","men","man","old","adult","senior","human","elder"]},"old-woman":{"a":"Old Woman","b":"1F475","j":["old","woman","adult","female","lady","senior","women","human","elder"]},"person-frowning":{"a":"Person Frowning","b":"1F64D","j":["frown","gesture","worried"]},"man-frowning":{"a":"Man Frowning","b":"1F64D-200D-2642-FE0F","j":["sad","unhappy","frowning","male","man","gesture","depressed","boy","discouraged"]},"woman-frowning":{"a":"Woman Frowning","b":"1F64D-200D-2640-FE0F","j":["sad","unhappy","frowning","gesture","woman","depressed","female","girl","discouraged"]},"person-pouting":{"a":"Person Pouting","b":"1F64E","j":["gesture","upset","pouting"]},"man-pouting":{"a":"Man Pouting","b":"1F64E-200D-2642-FE0F","j":["male","man","gesture","pouting","boy"]},"woman-pouting":{"a":"Woman Pouting","b":"1F64E-200D-2640-FE0F","j":["gesture","woman","female","girl","pouting"]},"person-gesturing-no":{"a":"Person Gesturing No","b":"1F645","j":["prohibited","gesture","hand","forbidden","decline","person gesturing NO"]},"man-gesturing-no":{"a":"Man Gesturing No","b":"1F645-200D-2642-FE0F","j":["male","nope","man","gesture","prohibited","hand","forbidden","boy","man gesturing NO"]},"woman-gesturing-no":{"a":"Woman Gesturing No","b":"1F645-200D-2640-FE0F","j":["nope","prohibited","gesture","woman","woman gesturing NO","female","girl","hand","forbidden"]},"person-gesturing-ok":{"a":"Person Gesturing Ok","b":"1F646","j":["person gesturing OK","gesture","hand","OK","agree"]},"man-gesturing-ok":{"a":"Man Gesturing Ok","b":"1F646-200D-2642-FE0F","j":["male","men","OK","man","gesture","man gesturing OK","hand","boy","human","blue"]},"woman-gesturing-ok":{"a":"Woman Gesturing Ok","b":"1F646-200D-2640-FE0F","j":["pink","OK","gesture","woman","female","woman gesturing OK","girl","hand","women","human"]},"person-tipping-hand":{"a":"Person Tipping Hand","b":"1F481","j":["information","tipping","sassy","help","hand"]},"man-tipping-hand":{"a":"Man Tipping Hand","b":"1F481-200D-2642-FE0F","j":["male","information","man","sassy","tipping hand","boy","human"]},"woman-tipping-hand":{"a":"Woman Tipping Hand","b":"1F481-200D-2640-FE0F","j":["information","woman","sassy","female","girl","tipping hand","human"]},"person-raising-hand":{"a":"Person Raising Hand","b":"1F64B","j":["gesture","raised","question","hand","happy"]},"man-raising-hand":{"a":"Man Raising Hand","b":"1F64B-200D-2642-FE0F","j":["male","man","gesture","raising hand","boy"]},"woman-raising-hand":{"a":"Woman Raising Hand","b":"1F64B-200D-2640-FE0F","j":["gesture","woman","female","raising hand","girl"]},"deaf-person":{"a":"Deaf Person","b":"1F9CF","j":["accessibility","ear","deaf","hear"]},"deaf-man":{"a":"Deaf Man","b":"1F9CF-200D-2642-FE0F","j":["man","accessibility","deaf"]},"deaf-woman":{"a":"Deaf Woman","b":"1F9CF-200D-2640-FE0F","j":["woman","deaf","accessibility"]},"person-bowing":{"a":"Person Bowing","b":"1F647","j":["bow","gesture","sorry","respectiful","apology"]},"man-bowing":{"a":"Man Bowing","b":"1F647-200D-2642-FE0F","j":["favor","male","man","gesture","sorry","apology","boy","bowing"]},"woman-bowing":{"a":"Woman Bowing","b":"1F647-200D-2640-FE0F","j":["favor","gesture","woman","sorry","apology","female","girl","bowing"]},"person-facepalming":{"a":"Person Facepalming","b":"1F926","j":["disbelief","palm","exasperation","disappointed","face"]},"man-facepalming":{"a":"Man Facepalming","b":"1F926-200D-2642-FE0F","j":["disbelief","male","exasperation","man","facepalm","boy"]},"woman-facepalming":{"a":"Woman Facepalming","b":"1F926-200D-2640-FE0F","j":["disbelief","exasperation","woman","facepalm","female","girl"]},"person-shrugging":{"a":"Person Shrugging","b":"1F937","j":["shrug","ignorance","regardless","doubt","indifference"]},"man-shrugging":{"a":"Man Shrugging","b":"1F937-200D-2642-FE0F","j":["male","shrug","ignorance","man","indifferent","confused","boy","doubt","indifference"]},"woman-shrugging":{"a":"Woman Shrugging","b":"1F937-200D-2640-FE0F","j":["shrug","ignorance","woman","indifferent","female","girl","confused","doubt","indifference"]},"health-worker":{"a":"Health Worker","b":"1F9D1-200D-2695-FE0F","j":["nurse","doctor","healthcare","hospital","therapist"]},"man-health-worker":{"a":"Man Health Worker","b":"1F468-200D-2695-FE0F","j":["nurse","man","doctor","healthcare","human","therapist"]},"woman-health-worker":{"a":"Woman Health Worker","b":"1F469-200D-2695-FE0F","j":["nurse","woman","doctor","healthcare","human","therapist"]},"student":{"a":"Student","b":"1F9D1-200D-1F393","j":["graduate","learn"]},"man-student":{"a":"Man Student","b":"1F468-200D-1F393","j":["man","student","human","graduate"]},"woman-student":{"a":"Woman Student","b":"1F469-200D-1F393","j":["woman","student","human","graduate"]},"teacher":{"a":"Teacher","b":"1F9D1-200D-1F3EB","j":["instructor","professor"]},"man-teacher":{"a":"Man Teacher","b":"1F468-200D-1F3EB","j":["man","teacher","professor","instructor","human"]},"woman-teacher":{"a":"Woman Teacher","b":"1F469-200D-1F3EB","j":["woman","teacher","professor","instructor","human"]},"judge":{"a":"Judge","b":"1F9D1-200D-2696-FE0F","j":["law","scales","justice"]},"man-judge":{"a":"Man Judge","b":"1F468-200D-2696-FE0F","j":["man","scales","court","judge","human","justice"]},"woman-judge":{"a":"Woman Judge","b":"1F469-200D-2696-FE0F","j":["woman","scales","court","judge","human","justice"]},"farmer":{"a":"Farmer","b":"1F9D1-200D-1F33E","j":["rancher","crops","gardener"]},"man-farmer":{"a":"Man Farmer","b":"1F468-200D-1F33E","j":["man","rancher","farmer","gardener","human"]},"woman-farmer":{"a":"Woman Farmer","b":"1F469-200D-1F33E","j":["rancher","woman","farmer","gardener","human"]},"cook":{"a":"Cook","b":"1F9D1-200D-1F373","j":["culinary","kitchen","chef","food"]},"man-cook":{"a":"Man Cook","b":"1F468-200D-1F373","j":["cook","human","chef","man"]},"woman-cook":{"a":"Woman Cook","b":"1F469-200D-1F373","j":["cook","woman","human","chef"]},"mechanic":{"a":"Mechanic","b":"1F9D1-200D-1F527","j":["tradesperson","plumber","electrician","worker","technician"]},"man-mechanic":{"a":"Man Mechanic","b":"1F468-200D-1F527","j":["plumber","tradesperson","wrench","man","electrician","mechanic","human"]},"woman-mechanic":{"a":"Woman Mechanic","b":"1F469-200D-1F527","j":["tradesperson","plumber","wrench","woman","electrician","mechanic","human"]},"factory-worker":{"a":"Factory Worker","b":"1F9D1-200D-1F3ED","j":["industrial","assembly","worker","factory","labor"]},"man-factory-worker":{"a":"Man Factory Worker","b":"1F468-200D-1F3ED","j":["man","industrial","assembly","worker","factory","human"]},"woman-factory-worker":{"a":"Woman Factory Worker","b":"1F469-200D-1F3ED","j":["woman","industrial","assembly","worker","factory","human"]},"office-worker":{"a":"Office Worker","b":"1F9D1-200D-1F4BC","j":["business","white-collar","architect","manager"]},"man-office-worker":{"a":"Man Office Worker","b":"1F468-200D-1F4BC","j":["business","architect","man","white-collar","human","manager"]},"woman-office-worker":{"a":"Woman Office Worker","b":"1F469-200D-1F4BC","j":["business","architect","woman","white-collar","human","manager"]},"scientist":{"a":"Scientist","b":"1F9D1-200D-1F52C","j":["chemist","chemistry","biologist","physicist","engineer"]},"man-scientist":{"a":"Man Scientist","b":"1F468-200D-1F52C","j":["man","chemist","biologist","physicist","human","engineer","scientist"]},"woman-scientist":{"a":"Woman Scientist","b":"1F469-200D-1F52C","j":["woman","chemist","biologist","physicist","human","engineer","scientist"]},"technologist":{"a":"Technologist","b":"1F9D1-200D-1F4BB","j":["inventor","software","computer","developer","coder"]},"man-technologist":{"a":"Man Technologist","b":"1F468-200D-1F4BB","j":["inventor","man","engineer","software","laptop","computer","developer","coder","technologist","human","programmer"]},"woman-technologist":{"a":"Woman Technologist","b":"1F469-200D-1F4BB","j":["inventor","woman","engineer","software","laptop","computer","developer","coder","technologist","human","programmer"]},"singer":{"a":"Singer","b":"1F9D1-200D-1F3A4","j":["actor","entertainer","performer","rock","song","artist","star"]},"man-singer":{"a":"Man Singer","b":"1F468-200D-1F3A4","j":["actor","entertainer","singer","rockstar","man","rock","human","star"]},"woman-singer":{"a":"Woman Singer","b":"1F469-200D-1F3A4","j":["actor","entertainer","singer","rockstar","woman","rock","human","star"]},"artist":{"a":"Artist","b":"1F9D1-200D-1F3A8","j":["palette","creativity","draw","painting"]},"man-artist":{"a":"Man Artist","b":"1F468-200D-1F3A8","j":["man","painter","palette","artist","human"]},"woman-artist":{"a":"Woman Artist","b":"1F469-200D-1F3A8","j":["woman","painter","palette","artist","human"]},"pilot":{"a":"Pilot","b":"1F9D1-200D-2708-FE0F","j":["airplane","plane","fly"]},"man-pilot":{"a":"Man Pilot","b":"1F468-200D-2708-FE0F","j":["man","plane","pilot","human","aviator"]},"woman-pilot":{"a":"Woman Pilot","b":"1F469-200D-2708-FE0F","j":["woman","plane","pilot","human","aviator"]},"astronaut":{"a":"Astronaut","b":"1F9D1-200D-1F680","j":["outerspace","rocket"]},"man-astronaut":{"a":"Man Astronaut","b":"1F468-200D-1F680","j":["man","space","astronaut","rocket","human"]},"woman-astronaut":{"a":"Woman Astronaut","b":"1F469-200D-1F680","j":["woman","space","astronaut","rocket","human"]},"firefighter":{"a":"Firefighter","b":"1F9D1-200D-1F692","j":["fire","firetruck"]},"man-firefighter":{"a":"Man Firefighter","b":"1F468-200D-1F692","j":["man","firetruck","firefighter","human","fireman"]},"woman-firefighter":{"a":"Woman Firefighter","b":"1F469-200D-1F692","j":["firetruck","woman","firefighter","human","fireman"]},"police-officer":{"a":"Police Officer","b":"1F46E","j":["cop","officer","police"]},"man-police-officer":{"a":"Man Police Officer","b":"1F46E-200D-2642-FE0F","j":["arrest","cop","man","911","officer","police","enforcement","legal","law"]},"woman-police-officer":{"a":"Woman Police Officer","b":"1F46E-200D-2640-FE0F","j":["arrest","cop","woman","911","female","officer","police","enforcement","legal","law"]},"detective":{"a":"Detective","b":"1F575","j":["spy","sleuth","human"]},"man-detective":{"a":"Man Detective","b":"1F575-FE0F-200D-2642-FE0F","j":["sleuth","man","spy","crime","detective"]},"woman-detective":{"a":"Woman Detective","b":"1F575-FE0F-200D-2640-FE0F","j":["sleuth","spy","woman","detective","female","human"]},"guard":{"a":"Guard","b":"1F482","j":["protect"]},"man-guard":{"a":"Man Guard","b":"1F482-200D-2642-FE0F","j":["uk","male","british","man","royal","guy","gb","guard"]},"woman-guard":{"a":"Woman Guard","b":"1F482-200D-2640-FE0F","j":["uk","british","royal","woman","female","gb","guard"]},"ninja":{"a":"Ninja","b":"1F977","j":["fighter","ninjutsu","stealth","skills","hidden","japanese"]},"construction-worker":{"a":"Construction Worker","b":"1F477","j":["hat","construction","build","worker","labor"]},"man-construction-worker":{"a":"Man Construction Worker","b":"1F477-200D-2642-FE0F","j":["male","wip","man","construction","build","guy","worker","human","labor"]},"woman-construction-worker":{"a":"Woman Construction Worker","b":"1F477-200D-2640-FE0F","j":["wip","woman","construction","build","female","worker","human","labor"]},"prince":{"a":"Prince","b":"1F934","j":["male","man","royal","crown","boy","king"]},"princess":{"a":"Princess","b":"1F478","j":["blond","queen","fairy tale","royal","woman","crown","fantasy","female","girl"]},"person-wearing-turban":{"a":"Person Wearing Turban","b":"1F473","j":["headdress","turban"]},"man-wearing-turban":{"a":"Man Wearing Turban","b":"1F473-200D-2642-FE0F","j":["male","turban","hinduism","man","indian","arabs"]},"woman-wearing-turban":{"a":"Woman Wearing Turban","b":"1F473-200D-2640-FE0F","j":["turban","hinduism","woman","female","indian","arabs"]},"person-with-skullcap":{"a":"Person with Skullcap","b":"1F472","j":["male","hat","cap","man_with_skullcap","skullcap","chinese","gua pi mao","boy","person"]},"woman-with-headscarf":{"a":"Woman with Headscarf","b":"1F9D5","j":["hijab","head kerchief","mantilla","bandana","female","tichel","headscarf"]},"person-in-tuxedo":{"a":"Person in Tuxedo","b":"1F935","j":["wedding","marriage","couple","groom","tuxedo","person","man_in_tuxedo"]},"man-in-tuxedo":{"a":"Man in Tuxedo","b":"1F935-200D-2642-FE0F","j":["man","tuxedo","fashion","formal"]},"woman-in-tuxedo":{"a":"Woman in Tuxedo","b":"1F935-200D-2640-FE0F","j":["woman","tuxedo","fashion","formal"]},"person-with-veil":{"a":"Person with Veil","b":"1F470","j":["bride","wedding","veil","marriage","woman","couple","bride_with_veil","person"]},"man-with-veil":{"a":"Man with Veil","b":"1F470-200D-2642-FE0F","j":["man","marriage","wedding","veil"]},"woman-with-veil":{"a":"Woman with Veil","b":"1F470-200D-2640-FE0F","j":["woman","marriage","wedding","veil"]},"pregnant-woman":{"a":"Pregnant Woman","b":"1F930","j":["woman","pregnant","baby"]},"breastfeeding":{"a":"Breast-Feeding","b":"1F931","j":["breast","breast-feeding","breast_feeding","nursing","baby"]},"woman-feeding-baby":{"a":"Woman Feeding Baby","b":"1F469-200D-1F37C","j":["food","birth","woman","feeding","nursing","baby"]},"man-feeding-baby":{"a":"Man Feeding Baby","b":"1F468-200D-1F37C","j":["food","birth","man","feeding","nursing","baby"]},"person-feeding-baby":{"a":"Person Feeding Baby","b":"1F9D1-200D-1F37C","j":["food","birth","feeding","nursing","baby","person"]},"baby-angel":{"a":"Baby Angel","b":"1F47C","j":["fairy tale","halo","fantasy","wings","baby","angel","face","heaven"]},"santa-claus":{"a":"Santa Claus","b":"1F385","j":["xmas","male","festival","man","father christmas","celebration","santa","Christmas","claus","father"]},"mrs-claus":{"a":"Mrs. Claus","b":"1F936","j":["xmas","mother","Mrs.","woman","celebration","female","mother christmas","Christmas","claus"]},"mx-claus":{"a":"Mx Claus","b":"1F9D1-200D-1F384","j":["Claus, christmas","christmas"]},"superhero":{"a":"Superhero","b":"1F9B8","j":["heroine","marvel","good","superpower","hero"]},"man-superhero":{"a":"Man Superhero","b":"1F9B8-200D-2642-FE0F","j":["male","man","superpowers","good","superpower","hero"]},"woman-superhero":{"a":"Woman Superhero","b":"1F9B8-200D-2640-FE0F","j":["woman","heroine","superpowers","female","good","superpower","hero"]},"supervillain":{"a":"Supervillain","b":"1F9B9","j":["villain","marvel","criminal","superpower","evil"]},"man-supervillain":{"a":"Man Supervillain","b":"1F9B9-200D-2642-FE0F","j":["villain","male","man","criminal","superpowers","bad","superpower","evil","hero"]},"woman-supervillain":{"a":"Woman Supervillain","b":"1F9B9-200D-2640-FE0F","j":["villain","woman","heroine","criminal","female","superpowers","bad","superpower","evil"]},"mage":{"a":"Mage","b":"1F9D9","j":["sorcerer","wizard","witch","sorceress","magic"]},"man-mage":{"a":"Man Mage","b":"1F9D9-200D-2642-FE0F","j":["sorcerer","male","wizard","man","mage"]},"woman-mage":{"a":"Woman Mage","b":"1F9D9-200D-2640-FE0F","j":["woman","witch","sorceress","mage","female"]},"fairy":{"a":"Fairy","b":"1F9DA","j":["Titania","wings","Oberon","Puck","magical"]},"man-fairy":{"a":"Man Fairy","b":"1F9DA-200D-2642-FE0F","j":["man","Puck","male","Oberon"]},"woman-fairy":{"a":"Woman Fairy","b":"1F9DA-200D-2640-FE0F","j":["Titania","female","woman"]},"vampire":{"a":"Vampire","b":"1F9DB","j":["undead","blood","twilight","Dracula"]},"man-vampire":{"a":"Man Vampire","b":"1F9DB-200D-2642-FE0F","j":["male","Dracula","man","dracula","undead"]},"woman-vampire":{"a":"Woman Vampire","b":"1F9DB-200D-2640-FE0F","j":["woman","female","undead"]},"merperson":{"a":"Merperson","b":"1F9DC","j":["mermaid","sea","merman","merwoman"]},"merman":{"a":"Merman","b":"1F9DC-200D-2642-FE0F","j":["man","male","Triton","triton"]},"mermaid":{"a":"Mermaid","b":"1F9DC-200D-2640-FE0F","j":["woman","female","merwoman","ariel"]},"elf":{"a":"Elf","b":"1F9DD","j":["LOTR style","magical"]},"man-elf":{"a":"Man Elf","b":"1F9DD-200D-2642-FE0F","j":["man","male","magical"]},"woman-elf":{"a":"Woman Elf","b":"1F9DD-200D-2640-FE0F","j":["woman","female","magical"]},"genie":{"a":"Genie","b":"1F9DE","j":["(non-human color)","djinn","wishes","magical"]},"man-genie":{"a":"Man Genie","b":"1F9DE-200D-2642-FE0F","j":["man","male","djinn"]},"woman-genie":{"a":"Woman Genie","b":"1F9DE-200D-2640-FE0F","j":["woman","female","djinn"]},"zombie":{"a":"Zombie","b":"1F9DF","j":["(non-human color)","undead","walking dead","dead"]},"man-zombie":{"a":"Man Zombie","b":"1F9DF-200D-2642-FE0F","j":["walking dead","male","man","dracula","undead"]},"woman-zombie":{"a":"Woman Zombie","b":"1F9DF-200D-2640-FE0F","j":["woman","female","walking dead","undead"]},"person-getting-massage":{"a":"Person Getting Massage","b":"1F486","j":["relax","massage","face","salon"]},"man-getting-massage":{"a":"Man Getting Massage","b":"1F486-200D-2642-FE0F","j":["massage","male","man","head","boy","face"]},"woman-getting-massage":{"a":"Woman Getting Massage","b":"1F486-200D-2640-FE0F","j":["massage","woman","female","head","girl","face"]},"person-getting-haircut":{"a":"Person Getting Haircut","b":"1F487","j":["parlor","haircut","beauty","barber","hairstyle"]},"man-getting-haircut":{"a":"Man Getting Haircut","b":"1F487-200D-2642-FE0F","j":["man","boy","haircut","male"]},"woman-getting-haircut":{"a":"Woman Getting Haircut","b":"1F487-200D-2640-FE0F","j":["woman","female","haircut","girl"]},"person-walking":{"a":"Person Walking","b":"1F6B6","j":["walk","move","walking","hike"]},"man-walking":{"a":"Man Walking","b":"1F6B6-200D-2642-FE0F","j":["feet","walk","man","hike","human","steps"]},"woman-walking":{"a":"Woman Walking","b":"1F6B6-200D-2640-FE0F","j":["feet","walk","woman","hike","female","human","steps"]},"person-standing":{"a":"Person Standing","b":"1F9CD","j":["standing","stand","still"]},"man-standing":{"a":"Man Standing","b":"1F9CD-200D-2642-FE0F","j":["man","standing","still"]},"woman-standing":{"a":"Woman Standing","b":"1F9CD-200D-2640-FE0F","j":["standing","woman","still"]},"person-kneeling":{"a":"Person Kneeling","b":"1F9CE","j":["kneel","kneeling","pray","respectful"]},"man-kneeling":{"a":"Man Kneeling","b":"1F9CE-200D-2642-FE0F","j":["man","kneeling","pray","respectful"]},"woman-kneeling":{"a":"Woman Kneeling","b":"1F9CE-200D-2640-FE0F","j":["woman","pray","kneeling","respectful"]},"person-with-white-cane":{"a":"Person with White Cane","b":"1F9D1-200D-1F9AF","j":["accessibility","blind","person_with_probing_cane"]},"man-with-white-cane":{"a":"Man with White Cane","b":"1F468-200D-1F9AF","j":["man","accessibility","blind","man_with_probing_cane"]},"woman-with-white-cane":{"a":"Woman with White Cane","b":"1F469-200D-1F9AF","j":["woman","blind","woman_with_probing_cane","accessibility"]},"person-in-motorized-wheelchair":{"a":"Person in Motorized Wheelchair","b":"1F9D1-200D-1F9BC","j":["accessibility","disability","wheelchair"]},"man-in-motorized-wheelchair":{"a":"Man in Motorized Wheelchair","b":"1F468-200D-1F9BC","j":["man","accessibility","disability","wheelchair"]},"woman-in-motorized-wheelchair":{"a":"Woman in Motorized Wheelchair","b":"1F469-200D-1F9BC","j":["wheelchair","woman","disability","accessibility"]},"person-in-manual-wheelchair":{"a":"Person in Manual Wheelchair","b":"1F9D1-200D-1F9BD","j":["accessibility","disability","wheelchair"]},"man-in-manual-wheelchair":{"a":"Man in Manual Wheelchair","b":"1F468-200D-1F9BD","j":["man","accessibility","disability","wheelchair"]},"woman-in-manual-wheelchair":{"a":"Woman in Manual Wheelchair","b":"1F469-200D-1F9BD","j":["wheelchair","woman","disability","accessibility"]},"person-running":{"a":"Person Running","b":"1F3C3","j":["running","move","marathon"]},"man-running":{"a":"Man Running","b":"1F3C3-200D-2642-FE0F","j":["exercise","running","man","racing","race","marathon","walking"]},"woman-running":{"a":"Woman Running","b":"1F3C3-200D-2640-FE0F","j":["exercise","running","woman","racing","race","marathon","female","walking"]},"woman-dancing":{"a":"Woman Dancing","b":"1F483","j":["dance","woman","female","dancing","girl","fun"]},"man-dancing":{"a":"Man Dancing","b":"1F57A","j":["dancer","male","dance","man","dancing","boy","fun"]},"person-in-suit-levitating":{"a":"Person in Suit Levitating","b":"1F574","j":["business","jump","hover","levitate","suit","man_in_suit_levitating","person"]},"people-with-bunny-ears":{"a":"People with Bunny Ears","b":"1F46F","j":["dancer","partying","bunny ear","costume","perform"]},"men-with-bunny-ears":{"a":"Men with Bunny Ears","b":"1F46F-200D-2642-FE0F","j":["dancer","male","bunny","men","boys","partying","bunny ear"]},"women-with-bunny-ears":{"a":"Women with Bunny Ears","b":"1F46F-200D-2640-FE0F","j":["dancer","bunny","partying","female","bunny ear","women","girls"]},"person-in-steamy-room":{"a":"Person in Steamy Room","b":"1F9D6","j":["relax","sauna","spa","steambath","hamam","steam room"]},"man-in-steamy-room":{"a":"Man in Steamy Room","b":"1F9D6-200D-2642-FE0F","j":["sauna","male","spa","man","steamroom","steam room"]},"woman-in-steamy-room":{"a":"Woman in Steamy Room","b":"1F9D6-200D-2640-FE0F","j":["sauna","spa","woman","steamroom","female","steam room"]},"person-climbing":{"a":"Person Climbing","b":"1F9D7","j":["sport","climber"]},"man-climbing":{"a":"Man Climbing","b":"1F9D7-200D-2642-FE0F","j":["male","sports","man","rock","hobby","climber"]},"woman-climbing":{"a":"Woman Climbing","b":"1F9D7-200D-2640-FE0F","j":["sports","woman","rock","hobby","female","climber"]},"person-fencing":{"a":"Person Fencing","b":"1F93A","j":["sword","fencing","sports","fencer"]},"horse-racing":{"a":"Horse Racing","b":"1F3C7","j":["racehorse","racing","animal","competition","horse","luck","betting","gambling","jockey"]},"skier":{"a":"Skier","b":"26F7","j":["ski","winter","sports","snow"]},"snowboarder":{"a":"Snowboarder","b":"1F3C2","j":["sports","snow","winter","snowboard","ski"]},"person-golfing":{"a":"Person Golfing","b":"1F3CC","j":["business","golf","sports","ball"]},"man-golfing":{"a":"Man Golfing","b":"1F3CC-FE0F-200D-2642-FE0F","j":["golf","sport","man"]},"woman-golfing":{"a":"Woman Golfing","b":"1F3CC-FE0F-200D-2640-FE0F","j":["business","sports","golf","woman","female"]},"person-surfing":{"a":"Person Surfing","b":"1F3C4","j":["sport","sea","surfing"]},"man-surfing":{"a":"Man Surfing","b":"1F3C4-200D-2642-FE0F","j":["sports","man","sea","ocean","surfing","beach","summer"]},"woman-surfing":{"a":"Woman Surfing","b":"1F3C4-200D-2640-FE0F","j":["sports","woman","ocean","sea","female","surfing","beach","summer"]},"person-rowing-boat":{"a":"Person Rowing Boat","b":"1F6A3","j":["sport","rowboat","boat","move"]},"man-rowing-boat":{"a":"Man Rowing Boat","b":"1F6A3-200D-2642-FE0F","j":["rowboat","boat","sports","man","ship","water","hobby"]},"woman-rowing-boat":{"a":"Woman Rowing Boat","b":"1F6A3-200D-2640-FE0F","j":["rowboat","boat","sports","woman","water","ship","hobby","female"]},"person-swimming":{"a":"Person Swimming","b":"1F3CA","j":["swim","sport","pool"]},"man-swimming":{"a":"Man Swimming","b":"1F3CA-200D-2642-FE0F","j":["swim","exercise","athlete","sports","man","water","summer","human"]},"woman-swimming":{"a":"Woman Swimming","b":"1F3CA-200D-2640-FE0F","j":["swim","exercise","athlete","sports","woman","water","female","summer","human"]},"person-bouncing-ball":{"a":"Person Bouncing Ball","b":"26F9","j":["human","sports","ball"]},"man-bouncing-ball":{"a":"Man Bouncing Ball","b":"26F9-FE0F-200D-2642-FE0F","j":["man","sport","ball"]},"woman-bouncing-ball":{"a":"Woman Bouncing Ball","b":"26F9-FE0F-200D-2640-FE0F","j":["sports","woman","female","ball","human"]},"person-lifting-weights":{"a":"Person Lifting Weights","b":"1F3CB","j":["exercise","sports","lifter","training","weight"]},"man-lifting-weights":{"a":"Man Lifting Weights","b":"1F3CB-FE0F-200D-2642-FE0F","j":["man","sport","weight lifter"]},"woman-lifting-weights":{"a":"Woman Lifting Weights","b":"1F3CB-FE0F-200D-2640-FE0F","j":["exercise","sports","woman","female","training","weight lifter"]},"person-biking":{"a":"Person Biking","b":"1F6B4","j":["cyclist","sport","move","biking","bicycle"]},"man-biking":{"a":"Man Biking","b":"1F6B4-200D-2642-FE0F","j":["exercise","sports","cyclist","man","bike","bicycle","biking","hipster"]},"woman-biking":{"a":"Woman Biking","b":"1F6B4-200D-2640-FE0F","j":["exercise","sports","cyclist","woman","bike","bicycle","biking","hipster","female"]},"person-mountain-biking":{"a":"Person Mountain Biking","b":"1F6B5","j":["cyclist","sport","bike","move","bicycle","mountain","bicyclist"]},"man-mountain-biking":{"a":"Man Mountain Biking","b":"1F6B5-200D-2642-FE0F","j":["transportation","cyclist","man","bike","sports","race","bicycle","mountain","human"]},"woman-mountain-biking":{"a":"Woman Mountain Biking","b":"1F6B5-200D-2640-FE0F","j":["transportation","cyclist","sports","bike","woman","race","bicycle","biking","female","mountain","human"]},"person-cartwheeling":{"a":"Person Cartwheeling","b":"1F938","j":["cartwheel","gymnastic","gymnastics","sport"]},"man-cartwheeling":{"a":"Man Cartwheeling","b":"1F938-200D-2642-FE0F","j":["cartwheel","gymnastics","man"]},"woman-cartwheeling":{"a":"Woman Cartwheeling","b":"1F938-200D-2640-FE0F","j":["cartwheel","woman","gymnastics"]},"people-wrestling":{"a":"People Wrestling","b":"1F93C","j":["sport","wrestle","wrestler"]},"men-wrestling":{"a":"Men Wrestling","b":"1F93C-200D-2642-FE0F","j":["wrestle","men","sports","wrestlers"]},"women-wrestling":{"a":"Women Wrestling","b":"1F93C-200D-2640-FE0F","j":["wrestle","women","sports","wrestlers"]},"person-playing-water-polo":{"a":"Person Playing Water Polo","b":"1F93D","j":["sport","water","polo"]},"man-playing-water-polo":{"a":"Man Playing Water Polo","b":"1F93D-200D-2642-FE0F","j":["man","water polo","sports","pool"]},"woman-playing-water-polo":{"a":"Woman Playing Water Polo","b":"1F93D-200D-2640-FE0F","j":["woman","water polo","sports","pool"]},"person-playing-handball":{"a":"Person Playing Handball","b":"1F93E","j":["sport","handball","ball"]},"man-playing-handball":{"a":"Man Playing Handball","b":"1F93E-200D-2642-FE0F","j":["man","handball","sports"]},"woman-playing-handball":{"a":"Woman Playing Handball","b":"1F93E-200D-2640-FE0F","j":["woman","handball","sports"]},"person-juggling":{"a":"Person Juggling","b":"1F939","j":["balance","juggle","skill","multitask","performance"]},"man-juggling":{"a":"Man Juggling","b":"1F939-200D-2642-FE0F","j":["balance","man","juggle","juggling","skill","multitask"]},"woman-juggling":{"a":"Woman Juggling","b":"1F939-200D-2640-FE0F","j":["balance","woman","juggle","juggling","skill","multitask"]},"person-in-lotus-position":{"a":"Person in Lotus Position","b":"1F9D8","j":["meditation","yoga","serenity","meditate"]},"man-in-lotus-position":{"a":"Man in Lotus Position","b":"1F9D8-200D-2642-FE0F","j":["meditation","yoga","male","man","mindfulness","serenity","zen"]},"woman-in-lotus-position":{"a":"Woman in Lotus Position","b":"1F9D8-200D-2640-FE0F","j":["meditation","yoga","woman","female","mindfulness","serenity","zen"]},"person-taking-bath":{"a":"Person Taking Bath","b":"1F6C0","j":["bath","bathtub","bathroom","clean","shower"]},"person-in-bed":{"a":"Person in Bed","b":"1F6CC","j":["rest","hotel","bed","sleep"]},"people-holding-hands":{"a":"People Holding Hands","b":"1F9D1-200D-1F91D-200D-1F9D1","j":["friendship","couple","hold","holding hands","hand","person"]},"women-holding-hands":{"a":"Women Holding Hands","b":"1F46D","j":["hand","pair","friendship","couple","love","like","female","holding hands","people","women","human"]},"woman-and-man-holding-hands":{"a":"Woman and Man Holding Hands","b":"1F46B","j":["dating","man","marriage","couple","love","like","valentines","hold","people","hand","human","affection","pair","woman","holding hands","date"]},"men-holding-hands":{"a":"Men Holding Hands","b":"1F46C","j":["Gemini","men","pair","man","twins","friendship","couple","love","like","holding hands","people","human","zodiac","bromance"]},"kiss":{"a":"Kiss","b":"1F48F","j":["pair","marriage","love","couple","like","valentines","dating"]},"kiss-woman-man":{"a":"Kiss: Woman, Man","b":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F468","j":["man","woman","kiss","love","couple"]},"kiss-man-man":{"a":"Kiss: Man, Man","b":"1F468-200D-2764-FE0F-200D-1F48B-200D-1F468","j":["pair","man","marriage","kiss","couple","love","like","valentines","dating"]},"kiss-woman-woman":{"a":"Kiss: Woman, Woman","b":"1F469-200D-2764-FE0F-200D-1F48B-200D-1F469","j":["pair","woman","marriage","kiss","couple","love","like","valentines","dating"]},"couple-with-heart":{"a":"Couple with Heart","b":"1F491","j":["pair","marriage","love","couple","like","valentines","dating","human","affection"]},"couple-with-heart-woman-man":{"a":"Couple with Heart: Woman, Man","b":"1F469-200D-2764-FE0F-200D-1F468","j":["man","woman","love","couple with heart","couple"]},"couple-with-heart-man-man":{"a":"Couple with Heart: Man, Man","b":"1F468-200D-2764-FE0F-200D-1F468","j":["pair","man","marriage","love","couple","couple with heart","like","valentines","dating","human","affection"]},"couple-with-heart-woman-woman":{"a":"Couple with Heart: Woman, Woman","b":"1F469-200D-2764-FE0F-200D-1F469","j":["pair","woman","marriage","love","couple","couple with heart","like","valentines","dating","human","affection"]},"family":{"a":"Family","b":"1F46A","j":["mom","mother","dad","father","parents","child","home","people","human"]},"family-man-woman-boy":{"a":"Family: Man, Woman, Boy","b":"1F468-200D-1F469-200D-1F466","j":["man","woman","family","love","boy"]},"family-man-woman-girl":{"a":"Family: Man, Woman, Girl","b":"1F468-200D-1F469-200D-1F467","j":["parents","man","woman","family","child","girl","home","people","human"]},"family-man-woman-girl-boy":{"a":"Family: Man, Woman, Girl, Boy","b":"1F468-200D-1F469-200D-1F467-200D-1F466","j":["children","parents","man","woman","family","girl","home","people","boy","human"]},"family-man-woman-boy-boy":{"a":"Family: Man, Woman, Boy, Boy","b":"1F468-200D-1F469-200D-1F466-200D-1F466","j":["children","parents","man","woman","family","home","people","boy","human"]},"family-man-woman-girl-girl":{"a":"Family: Man, Woman, Girl, Girl","b":"1F468-200D-1F469-200D-1F467-200D-1F467","j":["children","parents","man","woman","family","girl","home","people","human"]},"family-man-man-boy":{"a":"Family: Man, Man, Boy","b":"1F468-200D-1F468-200D-1F466","j":["children","parents","man","family","home","people","boy","human"]},"family-man-man-girl":{"a":"Family: Man, Man, Girl","b":"1F468-200D-1F468-200D-1F467","j":["children","parents","man","family","girl","home","people","human"]},"family-man-man-girl-boy":{"a":"Family: Man, Man, Girl, Boy","b":"1F468-200D-1F468-200D-1F467-200D-1F466","j":["children","parents","man","family","girl","home","people","boy","human"]},"family-man-man-boy-boy":{"a":"Family: Man, Man, Boy, Boy","b":"1F468-200D-1F468-200D-1F466-200D-1F466","j":["children","parents","man","family","home","people","boy","human"]},"family-man-man-girl-girl":{"a":"Family: Man, Man, Girl, Girl","b":"1F468-200D-1F468-200D-1F467-200D-1F467","j":["children","parents","man","family","girl","home","people","human"]},"family-woman-woman-boy":{"a":"Family: Woman, Woman, Boy","b":"1F469-200D-1F469-200D-1F466","j":["children","parents","woman","family","home","people","boy","human"]},"family-woman-woman-girl":{"a":"Family: Woman, Woman, Girl","b":"1F469-200D-1F469-200D-1F467","j":["children","parents","woman","family","girl","home","people","human"]},"family-woman-woman-girl-boy":{"a":"Family: Woman, Woman, Girl, Boy","b":"1F469-200D-1F469-200D-1F467-200D-1F466","j":["children","parents","woman","family","girl","home","people","boy","human"]},"family-woman-woman-boy-boy":{"a":"Family: Woman, Woman, Boy, Boy","b":"1F469-200D-1F469-200D-1F466-200D-1F466","j":["children","parents","woman","family","home","people","boy","human"]},"family-woman-woman-girl-girl":{"a":"Family: Woman, Woman, Girl, Girl","b":"1F469-200D-1F469-200D-1F467-200D-1F467","j":["children","parents","woman","family","girl","home","people","human"]},"family-man-boy":{"a":"Family: Man, Boy","b":"1F468-200D-1F466","j":["man","parent","family","child","home","people","boy","human"]},"family-man-boy-boy":{"a":"Family: Man, Boy, Boy","b":"1F468-200D-1F466-200D-1F466","j":["children","man","parent","family","home","people","boy","human"]},"family-man-girl":{"a":"Family: Man, Girl","b":"1F468-200D-1F467","j":["man","parent","family","child","girl","home","people","human"]},"family-man-girl-boy":{"a":"Family: Man, Girl, Boy","b":"1F468-200D-1F467-200D-1F466","j":["children","man","parent","family","girl","home","people","boy","human"]},"family-man-girl-girl":{"a":"Family: Man, Girl, Girl","b":"1F468-200D-1F467-200D-1F467","j":["children","man","parent","family","girl","home","people","human"]},"family-woman-boy":{"a":"Family: Woman, Boy","b":"1F469-200D-1F466","j":["woman","family","parent","child","home","people","boy","human"]},"family-woman-boy-boy":{"a":"Family: Woman, Boy, Boy","b":"1F469-200D-1F466-200D-1F466","j":["children","woman","family","parent","home","people","boy","human"]},"family-woman-girl":{"a":"Family: Woman, Girl","b":"1F469-200D-1F467","j":["woman","family","parent","child","girl","home","people","human"]},"family-woman-girl-boy":{"a":"Family: Woman, Girl, Boy","b":"1F469-200D-1F467-200D-1F466","j":["children","woman","family","parent","girl","home","people","boy","human"]},"family-woman-girl-girl":{"a":"Family: Woman, Girl, Girl","b":"1F469-200D-1F467-200D-1F467","j":["children","woman","family","parent","girl","home","people","human"]},"speaking-head":{"a":"Speaking Head","b":"1F5E3","j":["speak","talk","say","sing","user","face","head","silhouette","speaking","human","person"]},"bust-in-silhouette":{"a":"Bust in Silhouette","b":"1F464","j":["bust","user","silhouette","human","person"]},"busts-in-silhouette":{"a":"Busts in Silhouette","b":"1F465","j":["group","bust","user","team","silhouette","human","person"]},"people-hugging":{"a":"People Hugging","b":"1FAC2","j":["thanks","hug","goodbye","hello","care"]},"footprints":{"a":"Footprints","b":"1F463","j":["clothing","print","tracking","feet","footprint","walking","beach"]},"red-hair":{"a":"Red Hair","b":"1F9B0","j":["ginger","red hair","redhead"]},"curly-hair":{"a":"Curly Hair","b":"1F9B1","j":["afro","curly","curly hair","ringlets"]},"white-hair":{"a":"White Hair","b":"1F9B3","j":["gray","hair","old","white"]},"bald":{"a":"Bald","b":"1F9B2","j":["bald","chemotherapy","hairless","no hair","shaven"]},"monkey-face":{"a":"Monkey Face","b":"1F435","j":["animal","circus","face","nature","monkey"]},"monkey":{"a":"Monkey","b":"1F412","j":["banana","animal","circus","nature"]},"gorilla":{"a":"Gorilla","b":"1F98D","j":["animal","circus","nature"]},"orangutan":{"a":"Orangutan","b":"1F9A7","j":["ape","animal"]},"dog-face":{"a":"Dog Face","b":"1F436","j":["animal","dog","pet","friend","nature","puppy","faithful","face","woof"]},"dog":{"a":"Dog","b":"1F415","j":["animal","pet","friend","nature","doge","faithful"]},"guide-dog":{"a":"Guide Dog","b":"1F9AE","j":["accessibility","animal","blind","guide"]},"service-dog":{"a":"Service Dog","b":"1F415-200D-1F9BA","j":["blind","animal","assistance","dog","accessibility","service"]},"poodle":{"a":"Poodle","b":"1F429","j":["animal","dog","pet","nature","101"]},"wolf":{"a":"Wolf","b":"1F43A","j":["animal","face","wild","nature"]},"fox":{"a":"Fox","b":"1F98A","j":["animal","face","nature"]},"raccoon":{"a":"Raccoon","b":"1F99D","j":["curious","animal","sly","nature"]},"cat-face":{"a":"Cat Face","b":"1F431","j":["meow","animal","pet","nature","kitten","cat","face"]},"cat":{"a":"Cat","b":"1F408","j":["animal","pet","cats","meow"]},"black-cat":{"a":"Black Cat","b":"1F408-200D-2B1B","j":["black","unlucky","luck","cat","superstition"]},"lion":{"a":"Lion","b":"1F981","j":["animal","Leo","nature","face","zodiac"]},"tiger-face":{"a":"Tiger Face","b":"1F42F","j":["tiger","animal","roar","wild","nature","danger","cat","face"]},"tiger":{"a":"Tiger","b":"1F405","j":["roar","animal","nature"]},"leopard":{"a":"Leopard","b":"1F406","j":["animal","nature"]},"horse-face":{"a":"Horse Face","b":"1F434","j":["brown","animal","horse","nature","face"]},"horse":{"a":"Horse","b":"1F40E","j":["racehorse","equestrian","animal","racing","luck","gamble"]},"unicorn":{"a":"Unicorn","b":"1F984","j":["nature","animal","mystical","face"]},"zebra":{"a":"Zebra","b":"1F993","j":["safari","stripes","animal","stripe","nature"]},"deer":{"a":"Deer","b":"1F98C","j":["venison","animal","horns","nature"]},"bison":{"a":"Bison","b":"1F9AC","j":["ox","herd","buffalo","wisent"]},"cow-face":{"a":"Cow Face","b":"1F42E","j":["nature","ox","cow","animal","beef","milk","moo","face"]},"ox":{"a":"Ox","b":"1F402","j":["Taurus","animal","cow","beef","bull","zodiac"]},"water-buffalo":{"a":"Water Buffalo","b":"1F403","j":["ox","water","animal","cow","buffalo","nature"]},"cow":{"a":"Cow","b":"1F404","j":["ox","animal","moo","beef","milk","nature"]},"pig-face":{"a":"Pig Face","b":"1F437","j":["pig","animal","nature","face","oink"]},"pig":{"a":"Pig","b":"1F416","j":["animal","sow","nature"]},"boar":{"a":"Boar","b":"1F417","j":["pig","animal","nature"]},"pig-nose":{"a":"Pig Nose","b":"1F43D","j":["pig","animal","nose","face","oink"]},"ram":{"a":"Ram","b":"1F40F","j":["Aries","sheep","male","animal","nature","zodiac"]},"ewe":{"a":"Ewe","b":"1F411","j":["sheep","shipit","animal","wool","female","nature"]},"goat":{"a":"Goat","b":"1F410","j":["Capricorn","animal","zodiac","nature"]},"camel":{"a":"Camel","b":"1F42A","j":["dromedary","hot","animal","desert","hump"]},"twohump-camel":{"a":"Two-Hump Camel","b":"1F42B","j":["camel","two_hump_camel","hot","animal","two-hump camel","desert","nature","bactrian","hump"]},"llama":{"a":"Llama","b":"1F999","j":["alpaca","nature","animal","wool","vicuña","guanaco"]},"giraffe":{"a":"Giraffe","b":"1F992","j":["nature","spots","animal","safari"]},"elephant":{"a":"Elephant","b":"1F418","j":["animal","nature","th","nose","circus"]},"mammoth":{"a":"Mammoth","b":"1F9A3","j":["tusk","extinction","large","woolly","elephant","tusks"]},"rhinoceros":{"a":"Rhinoceros","b":"1F98F","j":["nature","animal","horn"]},"hippopotamus":{"a":"Hippopotamus","b":"1F99B","j":["hippo","animal","nature"]},"mouse-face":{"a":"Mouse Face","b":"1F42D","j":["mouse","animal","cheese_wedge","nature","face","rodent"]},"mouse":{"a":"Mouse","b":"1F401","j":["animal","rodent","nature"]},"rat":{"a":"Rat","b":"1F400","j":["mouse","animal","rodent"]},"hamster":{"a":"Hamster","b":"1F439","j":["pet","animal","face","nature"]},"rabbit-face":{"a":"Rabbit Face","b":"1F430","j":["bunny","animal","spring","magic","pet","rabbit","nature","face"]},"rabbit":{"a":"Rabbit","b":"1F407","j":["bunny","animal","spring","magic","pet","nature"]},"chipmunk":{"a":"Chipmunk","b":"1F43F","j":["animal","squirrel","rodent","nature"]},"beaver":{"a":"Beaver","b":"1F9AB","j":["animal","dam","rodent"]},"hedgehog":{"a":"Hedgehog","b":"1F994","j":["animal","spiny","nature"]},"bat":{"a":"Bat","b":"1F987","j":["blind","vampire","animal","nature"]},"bear":{"a":"Bear","b":"1F43B","j":["animal","face","wild","nature"]},"polar-bear":{"a":"Polar Bear","b":"1F43B-200D-2744-FE0F","j":["bear","animal","white","arctic"]},"koala":{"a":"Koala","b":"1F428","j":["bear","animal","nature"]},"panda":{"a":"Panda","b":"1F43C","j":["animal","face","nature"]},"sloth":{"a":"Sloth","b":"1F9A5","j":["slow","lazy","animal"]},"otter":{"a":"Otter","b":"1F9A6","j":["fishing","animal","playful"]},"skunk":{"a":"Skunk","b":"1F9A8","j":["stink","animal"]},"kangaroo":{"a":"Kangaroo","b":"1F998","j":["jump","hop","australia","marsupial","animal","Australia","nature","joey"]},"badger":{"a":"Badger","b":"1F9A1","j":["animal","pester","nature","honey","honey badger"]},"paw-prints":{"a":"Paw Prints","b":"1F43E","j":["print","tracking","feet","cat","animal","paw","dog","pet","footprints"]},"turkey":{"a":"Turkey","b":"1F983","j":["animal","bird"]},"chicken":{"a":"Chicken","b":"1F414","j":["animal","cluck","bird","nature"]},"rooster":{"a":"Rooster","b":"1F413","j":["nature","animal","chicken","bird"]},"hatching-chick":{"a":"Hatching Chick","b":"1F423","j":["animal","chick","egg","born","baby","bird","hatching","chicken"]},"baby-chick":{"a":"Baby Chick","b":"1F424","j":["animal","chick","baby","bird","chicken"]},"frontfacing-baby-chick":{"a":"Front-Facing Baby Chick","b":"1F425","j":["chicken","animal","front_facing_baby_chick","chick","front-facing baby chick","baby","bird"]},"bird":{"a":"Bird","b":"1F426","j":["fly","animal","spring","tweet","nature"]},"penguin":{"a":"Penguin","b":"1F427","j":["nature","animal","bird"]},"dove":{"a":"Dove","b":"1F54A","j":["animal","fly","peace","bird"]},"eagle":{"a":"Eagle","b":"1F985","j":["nature","animal","bird"]},"duck":{"a":"Duck","b":"1F986","j":["nature","animal","mallard","bird"]},"swan":{"a":"Swan","b":"1F9A2","j":["nature","animal","ugly duckling","cygnet","bird"]},"owl":{"a":"Owl","b":"1F989","j":["wise","nature","animal","bird","hoot"]},"dodo":{"a":"Dodo","b":"1F9A4","j":["extinction","Mauritius","animal","large","bird"]},"feather":{"a":"Feather","b":"1FAB6","j":["fly","flight","plumage","light","bird"]},"flamingo":{"a":"Flamingo","b":"1F9A9","j":["animal","flamboyant","tropical"]},"peacock":{"a":"Peacock","b":"1F99A","j":["ostentatious","animal","peahen","proud","nature","bird"]},"parrot":{"a":"Parrot","b":"1F99C","j":["nature","animal","bird","talk","pirate"]},"frog":{"a":"Frog","b":"1F438","j":["animal","toad","croak","nature","face"]},"crocodile":{"a":"Crocodile","b":"1F40A","j":["alligator","animal","nature","reptile","lizard"]},"turtle":{"a":"Turtle","b":"1F422","j":["slow","animal","tortoise","terrapin","nature"]},"lizard":{"a":"Lizard","b":"1F98E","j":["reptile","animal","nature"]},"snake":{"a":"Snake","b":"1F40D","j":["python","animal","bearer","Ophiuchus","hiss","nature","serpent","evil","zodiac"]},"dragon-face":{"a":"Dragon Face","b":"1F432","j":["dragon","fairy tale","myth","animal","green","chinese","nature","face"]},"dragon":{"a":"Dragon","b":"1F409","j":["fairy tale","myth","animal","green","chinese","nature"]},"sauropod":{"a":"Sauropod","b":"1F995","j":["dinosaur","brontosaurus","animal","brachiosaurus","diplodocus","nature","extinct"]},"trex":{"a":"T-Rex","b":"1F996","j":["dinosaur","t_rex","animal","Tyrannosaurus Rex","tyrannosaurus","nature","extinct"]},"spouting-whale":{"a":"Spouting Whale","b":"1F433","j":["nature","sea","ocean","animal","spouting","whale","face"]},"whale":{"a":"Whale","b":"1F40B","j":["sea","ocean","animal","nature"]},"dolphin":{"a":"Dolphin","b":"1F42C","j":["fish","sea","ocean","animal","flipper","fins","beach","nature"]},"seal":{"a":"Seal","b":"1F9AD","j":["sea","animal","sea lion","creature"]},"fish":{"a":"Fish","b":"1F41F","j":["Pisces","food","animal","nature","zodiac"]},"tropical-fish":{"a":"Tropical Fish","b":"1F420","j":["swim","fish","nemo","ocean","animal","beach","tropical"]},"blowfish":{"a":"Blowfish","b":"1F421","j":["fish","food","sea","ocean","animal","nature"]},"shark":{"a":"Shark","b":"1F988","j":["fish","sea","ocean","animal","fins","beach","nature","jaws"]},"octopus":{"a":"Octopus","b":"1F419","j":["sea","ocean","animal","beach","nature","creature"]},"spiral-shell":{"a":"Spiral Shell","b":"1F41A","j":["sea","beach","nature","spiral","shell"]},"snail":{"a":"Snail","b":"1F40C","j":["slow","animal","shell"]},"butterfly":{"a":"Butterfly","b":"1F98B","j":["pretty","animal","caterpillar","nature","insect"]},"bug":{"a":"Bug","b":"1F41B","j":["nature","animal","worm","insect"]},"ant":{"a":"Ant","b":"1F41C","j":["nature","bug","animal","insect"]},"honeybee":{"a":"Honeybee","b":"1F41D","j":["bee","animal","spring","nature","honey","bug","insect"]},"beetle":{"a":"Beetle","b":"1FAB2","j":["bug","insect"]},"lady-beetle":{"a":"Lady Beetle","b":"1F41E","j":["ladybird","beetle","animal","ladybug","nature","insect"]},"cricket":{"a":"Cricket","b":"1F997","j":["chirp","animal","grasshopper","Orthoptera"]},"cockroach":{"a":"Cockroach","b":"1FAB3","j":["pest","roach","pests","insect"]},"spider":{"a":"Spider","b":"1F577","j":["arachnid","animal","insect"]},"spider-web":{"a":"Spider Web","b":"1F578","j":["spider","web","animal","arachnid","silk","insect"]},"scorpion":{"a":"Scorpion","b":"1F982","j":["Scorpio","animal","scorpio","arachnid","zodiac"]},"mosquito":{"a":"Mosquito","b":"1F99F","j":["virus","animal","fever","disease","malaria","nature","pest","insect"]},"fly":{"a":"Fly","b":"1FAB0","j":["maggot","disease","pest","rotting","insect"]},"worm":{"a":"Worm","b":"1FAB1","j":["annelid","earthworm","animal","parasite"]},"microbe":{"a":"Microbe","b":"1F9A0","j":["amoeba","virus","bacteria","germs"]},"bouquet":{"a":"Bouquet","b":"1F490","j":["flowers","spring","flower","nature"]},"cherry-blossom":{"a":"Cherry Blossom","b":"1F338","j":["blossom","spring","flower","nature","plant","cherry"]},"white-flower":{"a":"White Flower","b":"1F4AE","j":["japanese","spring","flower"]},"rosette":{"a":"Rosette","b":"1F3F5","j":["plant","military","flower","decoration"]},"rose":{"a":"Rose","b":"1F339","j":["flowers","spring","love","valentines","flower"]},"wilted-flower":{"a":"Wilted Flower","b":"1F940","j":["plant","wilted","flower","nature"]},"hibiscus":{"a":"Hibiscus","b":"1F33A","j":["flowers","vegetable","beach","flower","plant"]},"sunflower":{"a":"Sunflower","b":"1F33B","j":["sun","flower","nature","plant","fall"]},"blossom":{"a":"Blossom","b":"1F33C","j":["flowers","yellow","flower","nature"]},"tulip":{"a":"Tulip","b":"1F337","j":["flowers","spring","flower","nature","summer","plant"]},"seedling":{"a":"Seedling","b":"1F331","j":["lawn","spring","young","nature","plant","grass"]},"potted-plant":{"a":"Potted Plant","b":"1FAB4","j":["useless","boring","greenery","house","nurturing","plant","grow"]},"evergreen-tree":{"a":"Evergreen Tree","b":"1F332","j":["plant","tree","nature"]},"deciduous-tree":{"a":"Deciduous Tree","b":"1F333","j":["deciduous","shedding","tree","nature","plant"]},"palm-tree":{"a":"Palm Tree","b":"1F334","j":["mojito","vegetable","palm","beach","tree","nature","summer","plant","tropical"]},"cactus":{"a":"Cactus","b":"1F335","j":["plant","vegetable","nature"]},"sheaf-of-rice":{"a":"Sheaf of Rice","b":"1F33E","j":["rice","grain","nature","ear","plant"]},"herb":{"a":"Herb","b":"1F33F","j":["lawn","vegetable","medicine","leaf","plant","weed","grass"]},"shamrock":{"a":"Shamrock","b":"2618","j":["irish","vegetable","clover","nature","plant"]},"four-leaf-clover":{"a":"Four Leaf Clover","b":"1F340","j":["lucky","irish","four","vegetable","clover","four-leaf clover","leaf","4","nature","plant"]},"maple-leaf":{"a":"Maple Leaf","b":"1F341","j":["ca","vegetable","leaf","falling","nature","plant","maple","fall"]},"fallen-leaf":{"a":"Fallen Leaf","b":"1F342","j":["vegetable","leaf","leaves","falling","nature","plant"]},"leaf-fluttering-in-wind":{"a":"Leaf Fluttering in Wind","b":"1F343","j":["grass","lawn","vegetable","leaf","spring","flutter","wind","tree","nature","plant","blow"]},"grapes":{"a":"Grapes","b":"1F347","j":["wine","food","grape","fruit"]},"melon":{"a":"Melon","b":"1F348","j":["food","fruit","nature"]},"watermelon":{"a":"Watermelon","b":"1F349","j":["summer","food","picnic","fruit"]},"tangerine":{"a":"Tangerine","b":"1F34A","j":["food","orange","fruit","nature"]},"lemon":{"a":"Lemon","b":"1F34B","j":["fruit","citrus","nature"]},"banana":{"a":"Banana","b":"1F34C","j":["food","monkey","fruit"]},"pineapple":{"a":"Pineapple","b":"1F34D","j":["food","fruit","nature"]},"mango":{"a":"Mango","b":"1F96D","j":["food","fruit","tropical"]},"red-apple":{"a":"Red Apple","b":"1F34E","j":["red","fruit","school","mac","apple"]},"green-apple":{"a":"Green Apple","b":"1F34F","j":["green","fruit","apple","nature"]},"pear":{"a":"Pear","b":"1F350","j":["food","fruit","nature"]},"peach":{"a":"Peach","b":"1F351","j":["food","fruit","nature"]},"cherries":{"a":"Cherries","b":"1F352","j":["food","red","fruit","berries","cherry"]},"strawberry":{"a":"Strawberry","b":"1F353","j":["food","nature","berry","fruit"]},"blueberries":{"a":"Blueberries","b":"1FAD0","j":["fruit","berry","blue","bilberry","blueberry"]},"kiwi-fruit":{"a":"Kiwi Fruit","b":"1F95D","j":["food","kiwi","fruit"]},"tomato":{"a":"Tomato","b":"1F345","j":["food","fruit","vegetable","nature"]},"olive":{"a":"Olive","b":"1FAD2","j":["food","fruit"]},"coconut":{"a":"Coconut","b":"1F965","j":["food","fruit","palm","nature","piña colada"]},"avocado":{"a":"Avocado","b":"1F951","j":["food","fruit"]},"eggplant":{"a":"Eggplant","b":"1F346","j":["food","aubergine","vegetable","nature"]},"potato":{"a":"Potato","b":"1F954","j":["food","tuber","vegetable","vegatable","starch"]},"carrot":{"a":"Carrot","b":"1F955","j":["food","vegetable","orange"]},"ear-of-corn":{"a":"Ear of Corn","b":"1F33D","j":["food","vegetable","corn","maize","maze","ear","plant"]},"hot-pepper":{"a":"Hot Pepper","b":"1F336","j":["food","hot","spicy","chili","pepper","chilli"]},"bell-pepper":{"a":"Bell Pepper","b":"1FAD1","j":["fruit","vegetable","capsicum","pepper","plant"]},"cucumber":{"a":"Cucumber","b":"1F952","j":["food","pickle","vegetable","fruit"]},"leafy-green":{"a":"Leafy Green","b":"1F96C","j":["food","vegetable","cabbage","kale","plant","lettuce","bok choy"]},"broccoli":{"a":"Broccoli","b":"1F966","j":["food","wild cabbage","fruit","vegetable"]},"garlic":{"a":"Garlic","b":"1F9C4","j":["cook","food","spice","flavoring"]},"onion":{"a":"Onion","b":"1F9C5","j":["cook","food","spice","flavoring"]},"mushroom":{"a":"Mushroom","b":"1F344","j":["toadstool","plant","vegetable"]},"peanuts":{"a":"Peanuts","b":"1F95C","j":["nut","food","peanut","vegetable"]},"chestnut":{"a":"Chestnut","b":"1F330","j":["plant","squirrel","food"]},"bread":{"a":"Bread","b":"1F35E","j":["food","wheat","loaf","breakfast","toast"]},"croissant":{"a":"Croissant","b":"1F950","j":["food","bread","breakfast","french","roll"]},"baguette-bread":{"a":"Baguette Bread","b":"1F956","j":["food","bread","french","baguette"]},"flatbread":{"a":"Flatbread","b":"1FAD3","j":["food","pita","naan","arepa","lavash","flour"]},"pretzel":{"a":"Pretzel","b":"1F968","j":["twisted","food","bread","convoluted"]},"bagel":{"a":"Bagel","b":"1F96F","j":["food","bread","breakfast","schmear","bakery"]},"pancakes":{"a":"Pancakes","b":"1F95E","j":["flapjacks","food","pancake","hotcakes","breakfast","crêpe","hotcake"]},"waffle":{"a":"Waffle","b":"1F9C7","j":["food","breakfast","indecisive","iron"]},"cheese-wedge":{"a":"Cheese Wedge","b":"1F9C0","j":["food","chadder","cheese"]},"meat-on-bone":{"a":"Meat on Bone","b":"1F356","j":["food","drumstick","bone","good","meat"]},"poultry-leg":{"a":"Poultry Leg","b":"1F357","j":["food","turkey","drumstick","bone","leg","poultry","bird","meat","chicken"]},"cut-of-meat":{"a":"Cut of Meat","b":"1F969","j":["food","porkchop","chop","cow","cut","lambchop","steak","meat"]},"bacon":{"a":"Bacon","b":"1F953","j":["pig","food","pork","breakfast","meat"]},"hamburger":{"a":"Hamburger","b":"1F354","j":["burger","cheeseburger","beef","fast food","burger king","meat","mcdonalds"]},"french-fries":{"a":"French Fries","b":"1F35F","j":["fries","fast food","french","chips","snack"]},"pizza":{"a":"Pizza","b":"1F355","j":["food","cheese","party","slice"]},"hot-dog":{"a":"Hot Dog","b":"1F32D","j":["hotdog","food","sausage","frankfurter"]},"sandwich":{"a":"Sandwich","b":"1F96A","j":["lunch","bread","food"]},"taco":{"a":"Taco","b":"1F32E","j":["mexican","food"]},"burrito":{"a":"Burrito","b":"1F32F","j":["wrap","mexican","food"]},"tamale":{"a":"Tamale","b":"1FAD4","j":["mexican","food","wrapped","masa"]},"stuffed-flatbread":{"a":"Stuffed Flatbread","b":"1F959","j":["food","kebab","stuffed","gyro","falafel","flatbread"]},"falafel":{"a":"Falafel","b":"1F9C6","j":["chickpea","food","meatball"]},"egg":{"a":"Egg","b":"1F95A","j":["food","chicken","breakfast"]},"cooking":{"a":"Cooking","b":"1F373","j":["food","frying","kitchen","breakfast","egg","pan"]},"shallow-pan-of-food":{"a":"Shallow Pan of Food","b":"1F958","j":["food","casserole","cooking","paella","pan","shallow"]},"pot-of-food":{"a":"Pot of Food","b":"1F372","j":["food","stew","pot","soup","meat"]},"fondue":{"a":"Fondue","b":"1FAD5","j":["food","pot","chocolate","melted","Swiss","cheese"]},"bowl-with-spoon":{"a":"Bowl with Spoon","b":"1F963","j":["food","congee","porridge","breakfast","cereal","oatmeal"]},"green-salad":{"a":"Green Salad","b":"1F957","j":["food","healthy","green","lettuce","salad"]},"popcorn":{"a":"Popcorn","b":"1F37F","j":["movie theater","food","films","snack"]},"butter":{"a":"Butter","b":"1F9C8","j":["cook","food","dairy"]},"salt":{"a":"Salt","b":"1F9C2","j":["shaker","condiment"]},"canned-food":{"a":"Canned Food","b":"1F96B","j":["soup","food","can"]},"bento-box":{"a":"Bento Box","b":"1F371","j":["bento","food","japanese","box"]},"rice-cracker":{"a":"Rice Cracker","b":"1F358","j":["rice","japanese","food","cracker"]},"rice-ball":{"a":"Rice Ball","b":"1F359","j":["food","Japanese","rice","ball","japanese"]},"cooked-rice":{"a":"Cooked Rice","b":"1F35A","j":["food","china","rice","asian","cooked"]},"curry-rice":{"a":"Curry Rice","b":"1F35B","j":["food","hot","spicy","curry","rice","indian"]},"steaming-bowl":{"a":"Steaming Bowl","b":"1F35C","j":["food","noodle","steaming","bowl","chopsticks","japanese","ramen"]},"spaghetti":{"a":"Spaghetti","b":"1F35D","j":["pasta","italian","noodle","food"]},"roasted-sweet-potato":{"a":"Roasted Sweet Potato","b":"1F360","j":["food","potato","roasted","nature","sweet"]},"oden":{"a":"Oden","b":"1F362","j":["food","kebab","seafood","skewer","japanese","stick"]},"sushi":{"a":"Sushi","b":"1F363","j":["rice","fish","food","japanese"]},"fried-shrimp":{"a":"Fried Shrimp","b":"1F364","j":["tempura","food","shrimp","animal","prawn","appetizer","summer","fried"]},"fish-cake-with-swirl":{"a":"Fish Cake with Swirl","b":"1F365","j":["fish","food","pink","kamaboko","sea","pastry","narutomaki","cake","swirl","beach","japan","ramen","surimi"]},"moon-cake":{"a":"Moon Cake","b":"1F96E","j":["yuèbǐng","autumn","food","festival"]},"dango":{"a":"Dango","b":"1F361","j":["food","stick","Japanese","skewer","japanese","dessert","sweet","barbecue","meat"]},"dumpling":{"a":"Dumpling","b":"1F95F","j":["food","empanada","jiaozi","potsticker","gyōza","pierogi"]},"fortune-cookie":{"a":"Fortune Cookie","b":"1F960","j":["food","prophecy"]},"takeout-box":{"a":"Takeout Box","b":"1F961","j":["leftovers","food","oyster pail"]},"crab":{"a":"Crab","b":"1F980","j":["Cancer","animal","crustacean","zodiac"]},"lobster":{"a":"Lobster","b":"1F99E","j":["bisque","animal","seafood","claws","nature"]},"shrimp":{"a":"Shrimp","b":"1F990","j":["food","shellfish","ocean","animal","small","seafood","nature"]},"squid":{"a":"Squid","b":"1F991","j":["food","sea","ocean","animal","nature","molusc"]},"oyster":{"a":"Oyster","b":"1F9AA","j":["diving","food","pearl"]},"soft-ice-cream":{"a":"Soft Ice Cream","b":"1F366","j":["food","soft","icecream","ice","hot","dessert","summer","sweet","cream"]},"shaved-ice":{"a":"Shaved Ice","b":"1F367","j":["ice","shaved","hot","dessert","summer","sweet"]},"ice-cream":{"a":"Ice Cream","b":"1F368","j":["food","ice","hot","dessert","sweet","cream"]},"doughnut":{"a":"Doughnut","b":"1F369","j":["food","breakfast","donut","dessert","sweet","snack"]},"cookie":{"a":"Cookie","b":"1F36A","j":["food","oreo","chocolate","dessert","sweet","snack"]},"birthday-cake":{"a":"Birthday Cake","b":"1F382","j":["food","birthday","celebration","pastry","cake","dessert","sweet"]},"shortcake":{"a":"Shortcake","b":"1F370","j":["food","pastry","cake","dessert","sweet","slice"]},"cupcake":{"a":"Cupcake","b":"1F9C1","j":["bakery","food","sweet","dessert"]},"pie":{"a":"Pie","b":"1F967","j":["food","fruit","pastry","filling","dessert","meat"]},"chocolate-bar":{"a":"Chocolate Bar","b":"1F36B","j":["food","chocolate","bar","dessert","sweet","snack"]},"candy":{"a":"Candy","b":"1F36C","j":["sweet","snack","lolly","dessert"]},"lollipop":{"a":"Lollipop","b":"1F36D","j":["candy","food","dessert","sweet","snack"]},"custard":{"a":"Custard","b":"1F36E","j":["sweet","food","dessert","pudding"]},"honey-pot":{"a":"Honey Pot","b":"1F36F","j":["honeypot","pot","kitchen","bees","honey","sweet"]},"baby-bottle":{"a":"Baby Bottle","b":"1F37C","j":["bottle","food","container","milk","drink","baby"]},"glass-of-milk":{"a":"Glass of Milk","b":"1F95B","j":["cow","milk","beverage","drink","glass"]},"hot-beverage":{"a":"Hot Beverage","b":"2615","j":["latte","tea","steaming","coffee","caffeine","hot","espresso","beverage","drink"]},"teapot":{"a":"Teapot","b":"1FAD6","j":["tea","hot","drink","pot"]},"teacup-without-handle":{"a":"Teacup Without Handle","b":"1F375","j":["tea","teacup","british","breakfast","green","beverage","drink","bowl","cup"]},"sake":{"a":"Sake","b":"1F376","j":["bottle","drunk","wine","booze","beverage","bar","drink","japanese","alcohol","cup"]},"bottle-with-popping-cork":{"a":"Bottle with Popping Cork","b":"1F37E","j":["bottle","wine","celebration","cork","bar","drink","popping"]},"wine-glass":{"a":"Wine Glass","b":"1F377","j":["wine","booze","beverage","bar","drink","drunk","alcohol","glass"]},"cocktail-glass":{"a":"Cocktail Glass","b":"1F378","j":["mojito","booze","beverage","bar","cocktail","drink","drunk","alcohol","glass"]},"tropical-drink":{"a":"Tropical Drink","b":"1F379","j":["mojito","booze","beverage","bar","drink","cocktail","beach","summer","alcohol","tropical"]},"beer-mug":{"a":"Beer Mug","b":"1F37A","j":["relax","beer","booze","beverage","bar","drink","summer","drunk","alcohol","pub","mug","party"]},"clinking-beer-mugs":{"a":"Clinking Beer Mugs","b":"1F37B","j":["relax","beer","booze","beverage","bar","drink","summer","drunk","alcohol","pub","mug","clink","party"]},"clinking-glasses":{"a":"Clinking Glasses","b":"1F942","j":["wine","champagne","cheers","toast","beverage","drink","celebrate","alcohol","glass","clink","party"]},"tumbler-glass":{"a":"Tumbler Glass","b":"1F943","j":["whisky","booze","liquor","bourbon","shot","beverage","drink","scotch","drunk","alcohol","glass","tumbler"]},"cup-with-straw":{"a":"Cup with Straw","b":"1F964","j":["soda","soft drink","water","juice","malt","drink"]},"bubble-tea":{"a":"Bubble Tea","b":"1F9CB","j":["tea","boba","milk tea","bubble","straw","milk","taiwan","pearl"]},"beverage-box":{"a":"Beverage Box","b":"1F9C3","j":["straw","juice","beverage","drink","box","sweet"]},"mate":{"a":"Mate","b":"1F9C9","j":["beverage","tea","drink"]},"ice":{"a":"Ice","b":"1F9CA","j":["cold","water","ice cube","iceberg"]},"chopsticks":{"a":"Chopsticks","b":"1F962","j":["jeotgarak","food","hashi","kuaizi"]},"fork-and-knife-with-plate":{"a":"Fork and Knife with Plate","b":"1F37D","j":["food","dinner","knife","cooking","restaurant","plate","meal","lunch","fork","eat"]},"fork-and-knife":{"a":"Fork and Knife","b":"1F374","j":["cooking","knife","kitchen","cutlery","fork"]},"spoon":{"a":"Spoon","b":"1F944","j":["tableware","kitchen","cutlery"]},"kitchen-knife":{"a":"Kitchen Knife","b":"1F52A","j":["blade","cooking","knife","hocho","tool","kitchen","cutlery","weapon"]},"amphora":{"a":"Amphora","b":"1F3FA","j":["jar","cooking","Aquarius","jug","drink","vase","zodiac"]},"globe-showing-europeafrica":{"a":"Globe Showing Europe-Africa","b":"1F30D","j":["Europe","globe showing Europe-Africa","world","international","Africa","globe_showing_europe_africa","earth","globe"]},"globe-showing-americas":{"a":"Globe Showing Americas","b":"1F30E","j":["USA","world","international","globe showing Americas","earth","Americas","globe"]},"globe-showing-asiaaustralia":{"a":"Globe Showing Asia-Australia","b":"1F30F","j":["globe showing Asia-Australia","world","international","Asia","earth","globe_showing_asia_australia","east","Australia","globe"]},"globe-with-meridians":{"a":"Globe with Meridians","b":"1F310","j":["world","international","meridians","internet","earth","interweb","globe","i18n"]},"world-map":{"a":"World Map","b":"1F5FA","j":["location","direction","map","world"]},"map-of-japan":{"a":"Map of Japan","b":"1F5FE","j":["map of Japan","Japan","asia","japanese","country","map","nation"]},"compass":{"a":"Compass","b":"1F9ED","j":["magnetic","orienteering","navigation"]},"snowcapped-mountain":{"a":"Snow-Capped Mountain","b":"1F3D4","j":["snow-capped mountain","snow_capped_mountain","snow","photo","winter","mountain","nature","cold","environment"]},"mountain":{"a":"Mountain","b":"26F0","j":["photo","environment","nature"]},"volcano":{"a":"Volcano","b":"1F30B","j":["photo","eruption","disaster","mountain","nature"]},"mount-fuji":{"a":"Mount Fuji","b":"1F5FB","j":["fuji","photo","mountain","nature","japanese"]},"camping":{"a":"Camping","b":"1F3D5","j":["photo","outdoors","tent"]},"beach-with-umbrella":{"a":"Beach with Umbrella","b":"1F3D6","j":["mojito","sand","umbrella","sunny","beach","summer","weather"]},"desert":{"a":"Desert","b":"1F3DC","j":["photo","saharah","warm"]},"desert-island":{"a":"Desert Island","b":"1F3DD","j":["mojito","photo","desert","island","tropical"]},"national-park":{"a":"National Park","b":"1F3DE","j":["photo","park","environment","nature"]},"stadium":{"a":"Stadium","b":"1F3DF","j":["sports","photo","concert","venue","place"]},"classical-building":{"a":"Classical Building","b":"1F3DB","j":["history","classical","art","culture"]},"building-construction":{"a":"Building Construction","b":"1F3D7","j":["working","construction","progress","wip"]},"brick":{"a":"Brick","b":"1F9F1","j":["clay","bricks","mortar","wall"]},"rock":{"a":"Rock","b":"1FAA8","j":["heavy","solid","boulder","stone"]},"wood":{"a":"Wood","b":"1FAB5","j":["log","trunk","timber","nature","lumber"]},"hut":{"a":"Hut","b":"1F6D6","j":["yurt","roundhouse","structure","house"]},"houses":{"a":"Houses","b":"1F3D8","j":["photo","buildings"]},"derelict-house":{"a":"Derelict House","b":"1F3DA","j":["evict","house","broken","derelict","building","abandon"]},"house":{"a":"House","b":"1F3E0","j":["building","home"]},"house-with-garden":{"a":"House with Garden","b":"1F3E1","j":["nature","house","home","plant","garden"]},"office-building":{"a":"Office Building","b":"1F3E2","j":["building","work","bureau"]},"japanese-post-office":{"a":"Japanese Post Office","b":"1F3E3","j":["communication","envelope","Japanese post office","Japanese","building","post"]},"post-office":{"a":"Post Office","b":"1F3E4","j":["email","building","European","post"]},"hospital":{"a":"Hospital","b":"1F3E5","j":["health","medicine","surgery","doctor","building"]},"bank":{"a":"Bank","b":"1F3E6","j":["business","enterprise","cash","money","building","sales"]},"hotel":{"a":"Hotel","b":"1F3E8","j":["accomodation","building","checkin"]},"love-hotel":{"a":"Love Hotel","b":"1F3E9","j":["love","like","dating","hotel","affection"]},"convenience-store":{"a":"Convenience Store","b":"1F3EA","j":["store","building","groceries","convenience","shopping"]},"school":{"a":"School","b":"1F3EB","j":["student","learn","teach","education","building"]},"department-store":{"a":"Department Store","b":"1F3EC","j":["store","building","department","mall","shopping"]},"factory":{"a":"Factory","b":"1F3ED","j":["smoke","building","pollution","industry"]},"japanese-castle":{"a":"Japanese Castle","b":"1F3EF","j":["castle","building","Japanese","photo"]},"castle":{"a":"Castle","b":"1F3F0","j":["building","royalty","history","European"]},"wedding":{"a":"Wedding","b":"1F492","j":["romance","bride","marriage","love","couple","like","chapel","groom","affection"]},"tokyo-tower":{"a":"Tokyo Tower","b":"1F5FC","j":["photo","japanese","tower","Tokyo"]},"statue-of-liberty":{"a":"Statue of Liberty","b":"1F5FD","j":["statue","newyork","liberty","american"]},"church":{"a":"Church","b":"26EA","j":["religion","cross","building","Christian","christ"]},"mosque":{"a":"Mosque","b":"1F54C","j":["islam","worship","minaret","religion","Muslim"]},"hindu-temple":{"a":"Hindu Temple","b":"1F6D5","j":["temple","religion","hindu"]},"synagogue":{"a":"Synagogue","b":"1F54D","j":["Jew","worship","religion","jewish","temple","Jewish","judaism"]},"shinto-shrine":{"a":"Shinto Shrine","b":"26E9","j":["kyoto","shrine","religion","temple","japan","shinto"]},"kaaba":{"a":"Kaaba","b":"1F54B","j":["islam","religion","mosque","mecca","Muslim"]},"fountain":{"a":"Fountain","b":"26F2","j":["photo","water","fresh","summer"]},"tent":{"a":"Tent","b":"26FA","j":["photo","outdoors","camping"]},"foggy":{"a":"Foggy","b":"1F301","j":["photo","fog","mountain"]},"night-with-stars":{"a":"Night with Stars","b":"1F303","j":["night","downtown","city","evening","star"]},"cityscape":{"a":"Cityscape","b":"1F3D9","j":["photo","night life","urban","city"]},"sunrise-over-mountains":{"a":"Sunrise over Mountains","b":"1F304","j":["morning","photo","sunrise","sun","mountain","view","vacation"]},"sunrise":{"a":"Sunrise","b":"1F305","j":["morning","photo","sun","view","vacation"]},"cityscape-at-dusk":{"a":"Cityscape at Dusk","b":"1F306","j":["dusk","photo","sunset","city","sky","evening","landscape","buildings"]},"sunset":{"a":"Sunset","b":"1F307","j":["dusk","photo","good morning","dawn","sun"]},"bridge-at-night":{"a":"Bridge at Night","b":"1F309","j":["photo","night","bridge","sanfrancisco"]},"hot-springs":{"a":"Hot Springs","b":"2668","j":["relax","steaming","bath","springs","hot","warm","hotsprings"]},"carousel-horse":{"a":"Carousel Horse","b":"1F3A0","j":["photo","carnival","carousel","horse"]},"ferris-wheel":{"a":"Ferris Wheel","b":"1F3A1","j":["photo","wheel","londoneye","amusement park","ferris","carnival"]},"roller-coaster":{"a":"Roller Coaster","b":"1F3A2","j":["roller","photo","playground","amusement park","carnival","coaster","fun"]},"barber-pole":{"a":"Barber Pole","b":"1F488","j":["pole","style","haircut","barber","hair","salon"]},"circus-tent":{"a":"Circus Tent","b":"1F3AA","j":["festival","circus","carnival","party","tent"]},"locomotive":{"a":"Locomotive","b":"1F682","j":["vehicle","train","transportation","steam","railway","engine"]},"railway-car":{"a":"Railway Car","b":"1F683","j":["car","electric","vehicle","train","trolleybus","transportation","railway","tram"]},"highspeed-train":{"a":"High-Speed Train","b":"1F684","j":["vehicle","high_speed_train","train","speed","transportation","shinkansen","railway","high-speed train"]},"bullet-train":{"a":"Bullet Train","b":"1F685","j":["vehicle","train","speed","transportation","bullet","shinkansen","railway","travel","fast","public"]},"train":{"a":"Train","b":"1F686","j":["vehicle","railway","transportation"]},"metro":{"a":"Metro","b":"1F687","j":["transportation","subway","tube","blue-square","mrt","underground"]},"light-rail":{"a":"Light Rail","b":"1F688","j":["vehicle","railway","transportation"]},"station":{"a":"Station","b":"1F689","j":["vehicle","train","transportation","railway","public"]},"tram":{"a":"Tram","b":"1F68A","j":["vehicle","trolleybus","transportation"]},"monorail":{"a":"Monorail","b":"1F69D","j":["vehicle","transportation"]},"mountain-railway":{"a":"Mountain Railway","b":"1F69E","j":["car","vehicle","transportation","railway","mountain"]},"tram-car":{"a":"Tram Car","b":"1F68B","j":["car","vehicle","trolleybus","transportation","carriage","travel","public","tram"]},"bus":{"a":"Bus","b":"1F68C","j":["car","vehicle","transportation"]},"oncoming-bus":{"a":"Oncoming Bus","b":"1F68D","j":["bus","vehicle","transportation","oncoming"]},"trolleybus":{"a":"Trolleybus","b":"1F68E","j":["bus","vehicle","transportation","trolley","bart","tram"]},"minibus":{"a":"Minibus","b":"1F690","j":["bus","vehicle","transportation","car"]},"ambulance":{"a":"Ambulance","b":"1F691","j":["911","vehicle","health","hospital"]},"fire-engine":{"a":"Fire Engine","b":"1F692","j":["cars","truck","vehicle","transportation","fire","engine"]},"police-car":{"a":"Police Car","b":"1F693","j":["cars","car","vehicle","transportation","patrol","police","enforcement","legal","law"]},"oncoming-police-car":{"a":"Oncoming Police Car","b":"1F694","j":["car","vehicle","oncoming","911","police","enforcement","legal","law"]},"taxi":{"a":"Taxi","b":"1F695","j":["cars","vehicle","uber","transportation"]},"oncoming-taxi":{"a":"Oncoming Taxi","b":"1F696","j":["cars","vehicle","oncoming","taxi","uber"]},"automobile":{"a":"Automobile","b":"1F697","j":["car","vehicle","red","transportation"]},"oncoming-automobile":{"a":"Oncoming Automobile","b":"1F698","j":["car","vehicle","automobile","transportation","oncoming"]},"sport-utility-vehicle":{"a":"Sport Utility Vehicle","b":"1F699","j":["vehicle","recreational","transportation","sport utility"]},"pickup-truck":{"a":"Pickup Truck","b":"1F6FB","j":["car","truck","transportation","pickup","pick-up"]},"delivery-truck":{"a":"Delivery Truck","b":"1F69A","j":["cars","truck","transportation","delivery"]},"articulated-lorry":{"a":"Articulated Lorry","b":"1F69B","j":["cars","truck","vehicle","transportation","semi","lorry","express"]},"tractor":{"a":"Tractor","b":"1F69C","j":["car","vehicle","farming","agriculture"]},"racing-car":{"a":"Racing Car","b":"1F3CE","j":["car","sports","racing","race","f1","fast","formula"]},"motorcycle":{"a":"Motorcycle","b":"1F3CD","j":["racing","fast","sports","race"]},"motor-scooter":{"a":"Motor Scooter","b":"1F6F5","j":["vehicle","vespa","sasha","motor","scooter"]},"manual-wheelchair":{"a":"Manual Wheelchair","b":"1F9BD","j":["accessibility"]},"motorized-wheelchair":{"a":"Motorized Wheelchair","b":"1F9BC","j":["accessibility"]},"auto-rickshaw":{"a":"Auto Rickshaw","b":"1F6FA","j":["move","tuk tuk","transportation"]},"bicycle":{"a":"Bicycle","b":"1F6B2","j":["exercise","bike","sports","hipster"]},"kick-scooter":{"a":"Kick Scooter","b":"1F6F4","j":["vehicle","razor","scooter","kick"]},"skateboard":{"a":"Skateboard","b":"1F6F9","j":["board"]},"roller-skate":{"a":"Roller Skate","b":"1F6FC","j":["roller","skate","sports","footwear"]},"bus-stop":{"a":"Bus Stop","b":"1F68F","j":["bus","stop","busstop","transportation","wait"]},"motorway":{"a":"Motorway","b":"1F6E3","j":["highway","road","cupertino","interstate"]},"railway-track":{"a":"Railway Track","b":"1F6E4","j":["railway","train","transportation"]},"oil-drum":{"a":"Oil Drum","b":"1F6E2","j":["oil","barrell","drum"]},"fuel-pump":{"a":"Fuel Pump","b":"26FD","j":["gas","fuel","diesel","pump","fuelpump","station","petroleum","gas station"]},"police-car-light":{"a":"Police Car Light","b":"1F6A8","j":["car","ambulance","911","beacon","light","error","emergency","pinged","police","revolving","legal","law","alert"]},"horizontal-traffic-light":{"a":"Horizontal Traffic Light","b":"1F6A5","j":["light","traffic","signal","transportation"]},"vertical-traffic-light":{"a":"Vertical Traffic Light","b":"1F6A6","j":["traffic","transportation","driving","light","signal"]},"stop-sign":{"a":"Stop Sign","b":"1F6D1","j":["octagonal","stop","sign"]},"construction":{"a":"Construction","b":"1F6A7","j":["progress","caution","wip","barrier","warning"]},"anchor":{"a":"Anchor","b":"2693","j":["boat","ship","sea","tool","ferry"]},"sailboat":{"a":"Sailboat","b":"26F5","j":["boat","yacht","transportation","sea","ship","resort","water","summer","sailing"]},"canoe":{"a":"Canoe","b":"1F6F6","j":["ship","water","boat","paddle"]},"speedboat":{"a":"Speedboat","b":"1F6A4","j":["vehicle","boat","transportation","ship","summer"]},"passenger-ship":{"a":"Passenger Ship","b":"1F6F3","j":["yacht","ship","cruise","ferry","passenger"]},"ferry":{"a":"Ferry","b":"26F4","j":["ship","yacht","boat","passenger"]},"motor-boat":{"a":"Motor Boat","b":"1F6E5","j":["motorboat","ship","boat"]},"ship":{"a":"Ship","b":"1F6A2","j":["boat","transportation","titanic","deploy","passenger"]},"airplane":{"a":"Airplane","b":"2708","j":["vehicle","transportation","flight","aeroplane","fly"]},"small-airplane":{"a":"Small Airplane","b":"1F6E9","j":["vehicle","transportation","flight","aeroplane","fly","airplane"]},"airplane-departure":{"a":"Airplane Departure","b":"1F6EB","j":["check-in","departures","departure","flight","airport","aeroplane","airplane","landing"]},"airplane-arrival":{"a":"Airplane Arrival","b":"1F6EC","j":["flight","airport","arrivals","aeroplane","boarding","arriving","airplane","landing"]},"parachute":{"a":"Parachute","b":"1FA82","j":["hang-glide","parasail","skydive","fly","glide"]},"seat":{"a":"Seat","b":"1F4BA","j":["bus","chair","flight","transport","sit","fly","airplane"]},"helicopter":{"a":"Helicopter","b":"1F681","j":["vehicle","transportation","fly"]},"suspension-railway":{"a":"Suspension Railway","b":"1F69F","j":["vehicle","railway","suspension","transportation"]},"mountain-cableway":{"a":"Mountain Cableway","b":"1F6A0","j":["vehicle","transportation","gondola","cable","mountain","ski"]},"aerial-tramway":{"a":"Aerial Tramway","b":"1F6A1","j":["car","vehicle","transportation","gondola","cable","aerial","ski","tramway"]},"satellite":{"a":"Satellite","b":"1F6F0","j":["communication","gps","spaceflight","ISS","NASA","space","orbit"]},"rocket":{"a":"Rocket","b":"1F680","j":["staffmode","outer_space","NASA","ship","space","fly","outer space","launch"]},"flying-saucer":{"a":"Flying Saucer","b":"1F6F8","j":["vehicle","ufo","transportation","UFO"]},"bellhop-bell":{"a":"Bellhop Bell","b":"1F6CE","j":["bell","bellhop","hotel","service"]},"luggage":{"a":"Luggage","b":"1F9F3","j":["travel","packing"]},"hourglass-done":{"a":"Hourglass Done","b":"231B","j":["test","clock","exam","sand","limit","time","quiz","timer","oldschool"]},"hourglass-not-done":{"a":"Hourglass Not Done","b":"23F3","j":["sand","hourglass","time","countdown","timer","oldschool"]},"watch":{"a":"Watch","b":"231A","j":["time","clock","accessories"]},"alarm-clock":{"a":"Alarm Clock","b":"23F0","j":["time","clock","alarm","wake"]},"stopwatch":{"a":"Stopwatch","b":"23F1","j":["time","clock","deadline"]},"timer-clock":{"a":"Timer Clock","b":"23F2","j":["clock","timer","alarm"]},"mantelpiece-clock":{"a":"Mantelpiece Clock","b":"1F570","j":["time","clock"]},"twelve-oclock":{"a":"Twelve O’Clock","b":"1F55B","j":["o’clock","clock","twelve_o_clock","noon","12","00","late","time","early","twelve","midnight","12:00","midday","schedule"]},"twelvethirty":{"a":"Twelve-Thirty","b":"1F567","j":["clock","late","12","time","schedule","early","twelve_thirty","twelve","twelve-thirty","thirty","12:30"]},"one-oclock":{"a":"One O’Clock","b":"1F550","j":["o’clock","clock","late","00","time","early","one","1","1:00","one_o_clock","schedule"]},"onethirty":{"a":"One-Thirty","b":"1F55C","j":["clock","late","time","schedule","early","one","1","1:30","one_thirty","thirty","one-thirty"]},"two-oclock":{"a":"Two O’Clock","b":"1F551","j":["o’clock","clock","late","00","time","early","two","two_o_clock","2:00","2","schedule"]},"twothirty":{"a":"Two-Thirty","b":"1F55D","j":["2:30","clock","late","two_thirty","time","early","two","two-thirty","2","thirty","schedule"]},"three-oclock":{"a":"Three O’Clock","b":"1F552","j":["o’clock","clock","late","00","three","3","time","early","3:00","three_o_clock","schedule"]},"threethirty":{"a":"Three-Thirty","b":"1F55E","j":["clock","late","three","3","time","early","three_thirty","schedule","three-thirty","thirty","3:30"]},"four-oclock":{"a":"Four O’Clock","b":"1F553","j":["o’clock","clock","four","00","late","time","early","four_o_clock","4","4:00","schedule"]},"fourthirty":{"a":"Four-Thirty","b":"1F55F","j":["clock","four","four-thirty","late","time","4:30","early","four_thirty","4","thirty","schedule"]},"five-oclock":{"a":"Five O’Clock","b":"1F554","j":["o’clock","clock","5:00","00","late","five_o_clock","five","time","early","5","schedule"]},"fivethirty":{"a":"Five-Thirty","b":"1F560","j":["clock","5:30","late","five","time","early","five_thirty","5","five-thirty","thirty","schedule"]},"six-oclock":{"a":"Six O’Clock","b":"1F555","j":["o’clock","clock","late","00","dusk","time","six_o_clock","six","early","dawn","6","6:00","schedule"]},"sixthirty":{"a":"Six-Thirty","b":"1F561","j":["clock","late","six_thirty","time","six","early","6","six-thirty","6:30","thirty","schedule"]},"seven-oclock":{"a":"Seven O’Clock","b":"1F556","j":["o’clock","clock","seven","late","00","7","time","early","seven_o_clock","7:00","schedule"]},"seventhirty":{"a":"Seven-Thirty","b":"1F562","j":["seven_thirty","clock","seven","late","7","time","7:30","early","seven-thirty","thirty","schedule"]},"eight-oclock":{"a":"Eight O’Clock","b":"1F557","j":["o’clock","clock","late","00","8:00","time","early","eight","8","eight_o_clock","schedule"]},"eightthirty":{"a":"Eight-Thirty","b":"1F563","j":["clock","late","eight_thirty","time","8:30","early","eight-thirty","eight","8","thirty","schedule"]},"nine-oclock":{"a":"Nine O’Clock","b":"1F558","j":["o’clock","clock","late","00","nine","nine_o_clock","time","early","9:00","9","schedule"]},"ninethirty":{"a":"Nine-Thirty","b":"1F564","j":["clock","late","nine","time","early","nine-thirty","nine_thirty","9:30","9","thirty","schedule"]},"ten-oclock":{"a":"Ten O’Clock","b":"1F559","j":["o’clock","clock","10","late","00","ten_o_clock","time","early","ten","10:00","schedule"]},"tenthirty":{"a":"Ten-Thirty","b":"1F565","j":["ten-thirty","clock","10","late","time","ten_thirty","early","10:30","ten","thirty","schedule"]},"eleven-oclock":{"a":"Eleven O’Clock","b":"1F55A","j":["o’clock","clock","late","00","time","eleven","11","early","11:00","eleven_o_clock","schedule"]},"eleventhirty":{"a":"Eleven-Thirty","b":"1F566","j":["clock","late","eleven-thirty","time","schedule","eleven","11","early","eleven_thirty","thirty","11:30"]},"new-moon":{"a":"New Moon","b":"1F311","j":["planet","night","space","evening","twilight","nature","dark","moon","sleep"]},"waxing-crescent-moon":{"a":"Waxing Crescent Moon","b":"1F312","j":["planet","night","waxing","space","evening","crescent","twilight","nature","moon","sleep"]},"first-quarter-moon":{"a":"First Quarter Moon","b":"1F313","j":["quarter","planet","night","space","evening","twilight","nature","moon","sleep"]},"waxing-gibbous-moon":{"a":"Waxing Gibbous Moon","b":"1F314","j":["planet","night","waxing","gibbous","gray","space","sky","evening","twilight","nature","moon","sleep"]},"full-moon":{"a":"Full Moon","b":"1F315","j":["yellow","planet","night","full","space","evening","twilight","nature","moon","sleep"]},"waning-gibbous-moon":{"a":"Waning Gibbous Moon","b":"1F316","j":["waning","planet","night","gibbous","space","waxing_gibbous_moon","evening","twilight","nature","moon","sleep"]},"last-quarter-moon":{"a":"Last Quarter Moon","b":"1F317","j":["quarter","planet","night","space","evening","twilight","nature","moon","sleep"]},"waning-crescent-moon":{"a":"Waning Crescent Moon","b":"1F318","j":["waning","planet","night","space","evening","crescent","twilight","nature","moon","sleep"]},"crescent-moon":{"a":"Crescent Moon","b":"1F319","j":["night","magic","sky","evening","crescent","moon","sleep"]},"new-moon-face":{"a":"New Moon Face","b":"1F31A","j":["planet","night","space","evening","twilight","nature","moon","face","sleep"]},"first-quarter-moon-face":{"a":"First Quarter Moon Face","b":"1F31B","j":["quarter","planet","night","space","evening","twilight","nature","moon","face","sleep"]},"last-quarter-moon-face":{"a":"Last Quarter Moon Face","b":"1F31C","j":["quarter","planet","night","space","evening","twilight","nature","moon","face","sleep"]},"thermometer":{"a":"Thermometer","b":"1F321","j":["cold","hot","temperature","weather"]},"sun":{"a":"Sun","b":"2600","j":["rays","spring","sunny","bright","nature","summer","beach","brightness","weather"]},"full-moon-face":{"a":"Full Moon Face","b":"1F31D","j":["planet","night","full","space","evening","bright","twilight","nature","moon","face","sleep"]},"sun-with-face":{"a":"Sun with Face","b":"1F31E","j":["morning","sun","sky","bright","nature","face"]},"ringed-planet":{"a":"Ringed Planet","b":"1FA90","j":["saturn","outerspace","saturnine"]},"star":{"a":"Star","b":"2B50","j":["yellow","night"]},"glowing-star":{"a":"Glowing Star","b":"1F31F","j":["sparkle","night","glow","awesome","glittery","magic","good","star","shining"]},"shooting-star":{"a":"Shooting Star","b":"1F320","j":["night","shooting","photo","falling","star"]},"milky-way":{"a":"Milky Way","b":"1F30C","j":["photo","space","stars"]},"cloud":{"a":"Cloud","b":"2601","j":["sky","weather"]},"sun-behind-cloud":{"a":"Sun Behind Cloud","b":"26C5","j":["morning","cloud","spring","cloudy","sun","nature","fall","weather"]},"cloud-with-lightning-and-rain":{"a":"Cloud with Lightning and Rain","b":"26C8","j":["rain","lightning","thunder","cloud","weather"]},"sun-behind-small-cloud":{"a":"Sun Behind Small Cloud","b":"1F324","j":["sun","cloud","weather"]},"sun-behind-large-cloud":{"a":"Sun Behind Large Cloud","b":"1F325","j":["sun","cloud","weather"]},"sun-behind-rain-cloud":{"a":"Sun Behind Rain Cloud","b":"1F326","j":["rain","sun","cloud","weather"]},"cloud-with-rain":{"a":"Cloud with Rain","b":"1F327","j":["rain","cloud","weather"]},"cloud-with-snow":{"a":"Cloud with Snow","b":"1F328","j":["cold","cloud","snow","weather"]},"cloud-with-lightning":{"a":"Cloud with Lightning","b":"1F329","j":["lightning","cloud","thunder","weather"]},"tornado":{"a":"Tornado","b":"1F32A","j":["whirlwind","twister","cyclone","cloud","weather"]},"fog":{"a":"Fog","b":"1F32B","j":["cloud","weather"]},"wind-face":{"a":"Wind Face","b":"1F32C","j":["air","gust","cloud","wind","blow","face"]},"cyclone":{"a":"Cyclone","b":"1F300","j":["vortex","dizzy","tornado","twister","cloud","hurricane","typhoon","spin","weather","swirl","whirlpool","spiral","blue"]},"rainbow":{"a":"Rainbow","b":"1F308","j":["rain","photo","spring","sky","nature","unicorn_face","happy"]},"closed-umbrella":{"a":"Closed Umbrella","b":"1F302","j":["clothing","drizzle","umbrella","rain","weather"]},"umbrella":{"a":"Umbrella","b":"2602","j":["rain","clothing","spring","weather"]},"umbrella-with-rain-drops":{"a":"Umbrella with Rain Drops","b":"2614","j":["clothing","umbrella","drop","rain","spring","rainy","weather"]},"umbrella-on-ground":{"a":"Umbrella on Ground","b":"26F1","j":["umbrella","rain","sun","summer","weather"]},"high-voltage":{"a":"High Voltage","b":"26A1","j":["electric","zap","lightning","thunder","lightning bolt","fast","voltage","danger","weather"]},"snowflake":{"a":"Snowflake","b":"2744","j":["xmas","snow","christmas","season","winter","cold","weather"]},"snowman":{"a":"Snowman","b":"2603","j":["xmas","snow","christmas","season","winter","weather","cold","frozen"]},"snowman-without-snow":{"a":"Snowman Without Snow","b":"26C4","j":["xmas","snow","christmas","winter","season","frozen","cold","without_snow","snowman","weather"]},"comet":{"a":"Comet","b":"2604","j":["space"]},"fire":{"a":"Fire","b":"1F525","j":["cook","hot","tool","flame"]},"droplet":{"a":"Droplet","b":"1F4A7","j":["sweat","drop","water","spring","drip","comic","cold","faucet"]},"water-wave":{"a":"Water Wave","b":"1F30A","j":["sea","water","ocean","tsunami","disaster","nature","wave"]},"jackolantern":{"a":"Jack-O-Lantern","b":"1F383","j":["jack_o_lantern","pumpkin","jack-o-lantern","celebration","halloween","creepy","light","jack","fall","lantern"]},"christmas-tree":{"a":"Christmas Tree","b":"1F384","j":["xmas","festival","celebration","Christmas","december","tree","vacation"]},"fireworks":{"a":"Fireworks","b":"1F386","j":["festival","photo","celebration","carnival","congratulations"]},"sparkler":{"a":"Sparkler","b":"1F387","j":["stars","night","sparkle","fireworks","celebration","shine"]},"firecracker":{"a":"Firecracker","b":"1F9E8","j":["explode","explosive","fireworks","boom","dynamite","explosion"]},"sparkles":{"a":"Sparkles","b":"2728","j":["*","stars","sparkle","cool","awesome","magic","shiny","good","shine","star"]},"balloon":{"a":"Balloon","b":"1F388","j":["birthday","celebration","circus","party"]},"party-popper":{"a":"Party Popper","b":"1F389","j":["birthday","celebration","tada","magic","popper","congratulations","circus","party"]},"confetti-ball":{"a":"Confetti Ball","b":"1F38A","j":["festival","birthday","celebration","ball","confetti","circus","party"]},"tanabata-tree":{"a":"Tanabata Tree","b":"1F38B","j":["branch","celebration","Japanese","banner","tree","nature","summer","plant"]},"pine-decoration":{"a":"Pine Decoration","b":"1F38D","j":["pine","panda","vegetable","bamboo","celebration","Japanese","nature","plant"]},"japanese-dolls":{"a":"Japanese Dolls","b":"1F38E","j":["Japanese dolls","festival","toy","celebration","Japanese","kimono","japanese","doll"]},"carp-streamer":{"a":"Carp Streamer","b":"1F38F","j":["fish","celebration","carp","banner","streamer","japanese","koinobori"]},"wind-chime":{"a":"Wind Chime","b":"1F390","j":["spring","celebration","ding","chime","bell","wind","nature"]},"moon-viewing-ceremony":{"a":"Moon Viewing Ceremony","b":"1F391","j":["ceremony","photo","celebration","tsukimi","asia","japan","moon"]},"red-envelope":{"a":"Red Envelope","b":"1F9E7","j":["good luck","hóngbāo","lai see","gift","money"]},"ribbon":{"a":"Ribbon","b":"1F380","j":["pink","decoration","celebration","girl","bowtie"]},"wrapped-gift":{"a":"Wrapped Gift","b":"1F381","j":["xmas","wrapped","christmas","birthday","celebration","present","gift","box"]},"reminder-ribbon":{"a":"Reminder Ribbon","b":"1F397","j":["cause","ribbon","sports","support","celebration","reminder","awareness"]},"admission-tickets":{"a":"Admission Tickets","b":"1F39F","j":["entrance","sports","admission","concert","ticket"]},"ticket":{"a":"Ticket","b":"1F3AB","j":["concert","admission","pass","event"]},"military-medal":{"a":"Military Medal","b":"1F396","j":["winning","military","award","celebration","army","medal"]},"trophy":{"a":"Trophy","b":"1F3C6","j":["ftw","win","prize","award","ceremony","contest","place"]},"sports-medal":{"a":"Sports Medal","b":"1F3C5","j":["medal","winning","award"]},"1st-place-medal":{"a":"1st Place Medal","b":"1F947","j":["winning","gold","award","first","medal"]},"2nd-place-medal":{"a":"2nd Place Medal","b":"1F948","j":["medal","second","silver","award"]},"3rd-place-medal":{"a":"3rd Place Medal","b":"1F949","j":["medal","third","bronze","award"]},"soccer-ball":{"a":"Soccer Ball","b":"26BD","j":["football","soccer","sports","ball"]},"baseball":{"a":"Baseball","b":"26BE","j":["balls","sports","ball"]},"softball":{"a":"Softball","b":"1F94E","j":["sports","balls","underarm","glove","ball"]},"basketball":{"a":"Basketball","b":"1F3C0","j":["sports","balls","ball","NBA","hoop"]},"volleyball":{"a":"Volleyball","b":"1F3D0","j":["game","balls","sports","ball"]},"american-football":{"a":"American Football","b":"1F3C8","j":["NFL","sports","balls","ball","football","american"]},"rugby-football":{"a":"Rugby Football","b":"1F3C9","j":["sports","team","rugby","ball","football"]},"tennis":{"a":"Tennis","b":"1F3BE","j":["sports","balls","green","racquet","ball"]},"flying-disc":{"a":"Flying Disc","b":"1F94F","j":["ultimate","sports","frisbee"]},"bowling":{"a":"Bowling","b":"1F3B3","j":["sports","ball","game","play","fun"]},"cricket-game":{"a":"Cricket Game","b":"1F3CF","j":["game","bat","sports","ball"]},"field-hockey":{"a":"Field Hockey","b":"1F3D1","j":["sports","hockey","ball","stick","game","field"]},"ice-hockey":{"a":"Ice Hockey","b":"1F3D2","j":["ice","sports","hockey","puck","stick","game"]},"lacrosse":{"a":"Lacrosse","b":"1F94D","j":["stick","sports","goal","ball"]},"ping-pong":{"a":"Ping Pong","b":"1F3D3","j":["bat","pingpong","sports","paddle","table tennis","ball","game"]},"badminton":{"a":"Badminton","b":"1F3F8","j":["birdie","sports","racquet","game","shuttlecock"]},"boxing-glove":{"a":"Boxing Glove","b":"1F94A","j":["boxing","glove","sports","fighting"]},"martial-arts-uniform":{"a":"Martial Arts Uniform","b":"1F94B","j":["taekwondo","karate","uniform","martial arts","judo"]},"goal-net":{"a":"Goal Net","b":"1F945","j":["net","sports","goal"]},"flag-in-hole":{"a":"Flag in Hole","b":"26F3","j":["business","hole","sports","golf","flag","summer"]},"ice-skate":{"a":"Ice Skate","b":"26F8","j":["skate","sports","ice"]},"fishing-pole":{"a":"Fishing Pole","b":"1F3A3","j":["pole","fish","food","hobby","summer"]},"diving-mask":{"a":"Diving Mask","b":"1F93F","j":["scuba","sport","ocean","diving","snorkeling"]},"running-shirt":{"a":"Running Shirt","b":"1F3BD","j":["running","sash","pageant","shirt","athletics","play"]},"skis":{"a":"Skis","b":"1F3BF","j":["sports","snow","winter","cold","ski"]},"sled":{"a":"Sled","b":"1F6F7","j":["luge","sledge","sleigh","toboggan"]},"curling-stone":{"a":"Curling Stone","b":"1F94C","j":["game","sports","rock"]},"bullseye":{"a":"Bullseye","b":"1F3AF","j":["dart","direct hit","target","bar","hit","game","direct_hit","play"]},"yoyo":{"a":"Yo-Yo","b":"1FA80","j":["toy","yo-yo","fluctuate","yo_yo"]},"kite":{"a":"Kite","b":"1FA81","j":["wind","soar","fly"]},"pool-8-ball":{"a":"Pool 8 Ball","b":"1F3B1","j":["8","billiard","pool","hobby","luck","magic","eight","ball","game"]},"crystal-ball":{"a":"Crystal Ball","b":"1F52E","j":["fairy tale","tool","fantasy","magic","crystal","fortune_teller","ball","fortune","disco","circus","party"]},"magic-wand":{"a":"Magic Wand","b":"1FA84","j":["wizard","witch","magic","supernature","power"]},"nazar-amulet":{"a":"Nazar Amulet","b":"1F9FF","j":["nazar","talisman","evil-eye","bead","charm"]},"video-game":{"a":"Video Game","b":"1F3AE","j":["console","PS4","controller","game","play"]},"joystick":{"a":"Joystick","b":"1F579","j":["game","video game","play"]},"slot-machine":{"a":"Slot Machine","b":"1F3B0","j":["casino","bet","vegas","luck","slot","gamble","game","fruit machine"]},"game-die":{"a":"Game Die","b":"1F3B2","j":["random","tabletop","luck","die","game","dice","play"]},"puzzle-piece":{"a":"Puzzle Piece","b":"1F9E9","j":["puzzle","piece","jigsaw","interlocking","clue"]},"teddy-bear":{"a":"Teddy Bear","b":"1F9F8","j":["toy","plaything","plush","stuffed"]},"piata":{"a":"Piñata","b":"1FA85","j":["candy","celebration","mexico","pinata","piñata","party"]},"nesting-dolls":{"a":"Nesting Dolls","b":"1FA86","j":["matryoshka","toy","nesting","doll","russia"]},"spade-suit":{"a":"Spade Suit","b":"2660","j":["cards","suits","card","magic","game","poker"]},"heart-suit":{"a":"Heart Suit","b":"2665","j":["cards","suits","card","magic","game","poker"]},"diamond-suit":{"a":"Diamond Suit","b":"2666","j":["cards","suits","card","magic","game","poker"]},"club-suit":{"a":"Club Suit","b":"2663","j":["cards","suits","card","magic","game","poker"]},"chess-pawn":{"a":"Chess Pawn","b":"265F","j":["chess","dupe","expendable"]},"joker":{"a":"Joker","b":"1F0CF","j":["cards","card","magic","wildcard","game","poker","play"]},"mahjong-red-dragon":{"a":"Mahjong Red Dragon","b":"1F004","j":["red","mahjong","chinese","kanji","game","play"]},"flower-playing-cards":{"a":"Flower Playing Cards","b":"1F3B4","j":["card","red","sunset","Japanese","playing","flower","game"]},"performing-arts":{"a":"Performing Arts","b":"1F3AD","j":["theatre","drama","acting","mask","performing","art","theater"]},"framed-picture":{"a":"Framed Picture","b":"1F5BC","j":["frame","photography","museum","art","picture","painting"]},"artist-palette":{"a":"Artist Palette","b":"1F3A8","j":["draw","paint","museum","palette","design","colors","art","painting"]},"thread":{"a":"Thread","b":"1F9F5","j":["needle","spool","sewing","string"]},"sewing-needle":{"a":"Sewing Needle","b":"1FAA1","j":["needle","sewing","embroidery","sutures","stitches","tailoring"]},"yarn":{"a":"Yarn","b":"1F9F6","j":["knit","crochet","ball"]},"knot":{"a":"Knot","b":"1FAA2","j":["rope","twist","tangled","tie","twine","scout"]},"glasses":{"a":"Glasses","b":"1F453","j":["eyeglasses","nerdy","clothing","dork","eye","accessories","eyesight","fashion","geek","eyewear"]},"sunglasses":{"a":"Sunglasses","b":"1F576","j":["cool","glasses","eye","accessories","dark","eyewear","face"]},"goggles":{"a":"Goggles","b":"1F97D","j":["swimming","eyes","eye protection","welding","safety","protection"]},"lab-coat":{"a":"Lab Coat","b":"1F97C","j":["chemist","doctor","scientist","experiment"]},"safety-vest":{"a":"Safety Vest","b":"1F9BA","j":["vest","emergency","safety","protection"]},"necktie":{"a":"Necktie","b":"1F454","j":["business","clothing","suitup","shirt","tie","fashion","formal","cloth"]},"tshirt":{"a":"T-Shirt","b":"1F455","j":["casual","clothing","t_shirt","shirt","fashion","tee","t-shirt","cloth"]},"jeans":{"a":"Jeans","b":"1F456","j":["clothing","trousers","fashion","pants","shopping"]},"scarf":{"a":"Scarf","b":"1F9E3","j":["clothes","neck","winter"]},"gloves":{"a":"Gloves","b":"1F9E4","j":["clothes","hand","winter","hands"]},"coat":{"a":"Coat","b":"1F9E5","j":["jacket"]},"socks":{"a":"Socks","b":"1F9E6","j":["clothes","stockings","stocking"]},"dress":{"a":"Dress","b":"1F457","j":["clothes","clothing","fashion","shopping"]},"kimono":{"a":"Kimono","b":"1F458","j":["clothing","dress","female","fashion","japanese","women"]},"sari":{"a":"Sari","b":"1F97B","j":["clothing","dress"]},"onepiece-swimsuit":{"a":"One-Piece Swimsuit","b":"1FA71","j":["bathing suit","fashion","one-piece swimsuit","one_piece_swimsuit"]},"briefs":{"a":"Briefs","b":"1FA72","j":["clothing","swimsuit","one-piece","bathing suit","underwear"]},"shorts":{"a":"Shorts","b":"1FA73","j":["underwear","clothing","pants","bathing suit"]},"bikini":{"a":"Bikini","b":"1F459","j":["swim","clothing","woman","swimming","female","girl","fashion","beach","summer"]},"womans-clothes":{"a":"Woman’S Clothes","b":"1F45A","j":["clothing","shopping_bags","woman","woman_s_clothes","female","woman’s clothes","fashion"]},"purse":{"a":"Purse","b":"1F45B","j":["clothing","accessories","shopping","money","sales","fashion","coin"]},"handbag":{"a":"Handbag","b":"1F45C","j":["clothing","purse","accessory","accessories","fashion","bag","shopping"]},"clutch-bag":{"a":"Clutch Bag","b":"1F45D","j":["clothing","accessories","shopping","bag","pouch"]},"shopping-bags":{"a":"Shopping Bags","b":"1F6CD","j":["purchase","buy","bag","hotel","mall","shopping"]},"backpack":{"a":"Backpack","b":"1F392","j":["satchel","school","student","education","bag","rucksack"]},"thong-sandal":{"a":"Thong Sandal","b":"1FA74","j":["zōri","thongs","sandals","thong sandals","footwear","summer","beach sandals"]},"mans-shoe":{"a":"Man’S Shoe","b":"1F45E","j":["shoe","clothing","male","man","fashion","man_s_shoe","man’s shoe"]},"running-shoe":{"a":"Running Shoe","b":"1F45F","j":["shoe","clothing","sports","shoes","sneakers","athletic","sneaker"]},"hiking-boot":{"a":"Hiking Boot","b":"1F97E","j":["hiking","backpacking","camping","boot"]},"flat-shoe":{"a":"Flat Shoe","b":"1F97F","j":["slipper","slip-on","ballet flat","ballet"]},"highheeled-shoe":{"a":"High-Heeled Shoe","b":"1F460","j":["shoe","clothing","shoes","woman","stiletto","female","heel","pumps","fashion","high_heeled_shoe","high-heeled shoe"]},"womans-sandal":{"a":"Woman’S Sandal","b":"1F461","j":["shoe","flip flops","clothing","shoes","woman","woman_s_sandal","sandal","fashion","woman’s sandal"]},"ballet-shoes":{"a":"Ballet Shoes","b":"1FA70","j":["ballet","dance"]},"womans-boot":{"a":"Woman’S Boot","b":"1F462","j":["shoe","clothing","shoes","woman","woman’s boot","fashion","boot","woman_s_boot"]},"crown":{"a":"Crown","b":"1F451","j":["clothing","royalty","queen","leader","lord","kod","king"]},"womans-hat":{"a":"Woman’S Hat","b":"1F452","j":["clothing","hat","woman’s hat","woman","spring","woman_s_hat","accessories","female","fashion","lady"]},"top-hat":{"a":"Top Hat","b":"1F3A9","j":["clothing","hat","tophat","classy","top","magic","gentleman","circus"]},"graduation-cap":{"a":"Graduation Cap","b":"1F393","j":["clothing","hat","school","cap","celebration","degree","learn","education","university","graduation","legal","college"]},"billed-cap":{"a":"Billed Cap","b":"1F9E2","j":["cap","baseball","baseball cap"]},"military-helmet":{"a":"Military Helmet","b":"1FA96","j":["military","army","helmet","protection","warrior","soldier"]},"rescue-workers-helmet":{"a":"Rescue Worker’S Helmet","b":"26D1","j":["hat","rescue worker’s helmet","construction","build","cross","aid","helmet","rescue_worker_s_helmet","face"]},"prayer-beads":{"a":"Prayer Beads","b":"1F4FF","j":["beads","clothing","religion","religious","dhikr","necklace","prayer"]},"lipstick":{"a":"Lipstick","b":"1F484","j":["woman","female","makeup","girl","fashion","cosmetics"]},"ring":{"a":"Ring","b":"1F48D","j":["wedding","gem","marriage","jewelry","valentines","propose","fashion","diamond","engagement"]},"gem-stone":{"a":"Gem Stone","b":"1F48E","j":["gem","ruby","jewel","jewelry","diamond","blue"]},"muted-speaker":{"a":"Muted Speaker","b":"1F507","j":["speaker","sound","silent","mute","silence","volume","quiet"]},"speaker-low-volume":{"a":"Speaker Low Volume","b":"1F508","j":["broadcast","soft","silence","volume","sound"]},"speaker-medium-volume":{"a":"Speaker Medium Volume","b":"1F509","j":["speaker","volume","medium","broadcast"]},"speaker-high-volume":{"a":"Speaker High Volume","b":"1F50A","j":["speaker","broadcast","noise","loud","volume","noisy"]},"loudspeaker":{"a":"Loudspeaker","b":"1F4E2","j":["volume","public address","sound","loud"]},"megaphone":{"a":"Megaphone","b":"1F4E3","j":["speaker","cheering","sound","volume"]},"postal-horn":{"a":"Postal Horn","b":"1F4EF","j":["postal","horn","music","post","instrument"]},"bell":{"a":"Bell","b":"1F514","j":["xmas","christmas","chime","notification","sound"]},"bell-with-slash":{"a":"Bell with Slash","b":"1F515","j":["silent","mute","bell","volume","sound","forbidden","quiet"]},"musical-score":{"a":"Musical Score","b":"1F3BC","j":["score","treble","clef","compose","music"]},"musical-note":{"a":"Musical Note","b":"1F3B5","j":["score","note","music","tone","sound"]},"musical-notes":{"a":"Musical Notes","b":"1F3B6","j":["note","score","music","notes"]},"studio-microphone":{"a":"Studio Microphone","b":"1F399","j":["mic","recording","microphone","sing","talkshow","music","artist","studio"]},"level-slider":{"a":"Level Slider","b":"1F39A","j":["scale","slider","music","level"]},"control-knobs":{"a":"Control Knobs","b":"1F39B","j":["control","dial","music","knobs"]},"microphone":{"a":"Microphone","b":"1F3A4","j":["mic","karaoke","sing","PA","talkshow","music","sound"]},"headphone":{"a":"Headphone","b":"1F3A7","j":["gadgets","earbud","music","score"]},"radio":{"a":"Radio","b":"1F4FB","j":["podcast","communication","video","program","music"]},"saxophone":{"a":"Saxophone","b":"1F3B7","j":["sax","jazz","blues","music","instrument"]},"accordion":{"a":"Accordion","b":"1FA97","j":["concertina","music","squeeze box"]},"guitar":{"a":"Guitar","b":"1F3B8","j":["instrument","music"]},"musical-keyboard":{"a":"Musical Keyboard","b":"1F3B9","j":["piano","keyboard","compose","music","instrument"]},"trumpet":{"a":"Trumpet","b":"1F3BA","j":["brass","instrument","music"]},"violin":{"a":"Violin","b":"1F3BB","j":["orchestra","instrument","music","symphony"]},"banjo":{"a":"Banjo","b":"1FA95","j":["instructment","stringed","music"]},"drum":{"a":"Drum","b":"1F941","j":["drumsticks","instrument","music","snare"]},"long-drum":{"a":"Long Drum","b":"1FA98","j":["beat","rhythm","drum","music","conga"]},"mobile-phone":{"a":"Mobile Phone","b":"1F4F1","j":["gadgets","dial","mobile","cell","phone","telephone","technology","apple"]},"mobile-phone-with-arrow":{"a":"Mobile Phone with Arrow","b":"1F4F2","j":["mobile","receive","arrow","cell","incoming","iphone","phone"]},"telephone":{"a":"Telephone","b":"260E","j":["dial","communication","phone","technology"]},"telephone-receiver":{"a":"Telephone Receiver","b":"1F4DE","j":["communication","dial","receiver","telephone","technology","phone"]},"pager":{"a":"Pager","b":"1F4DF","j":["bbcall","90s","oldschool"]},"fax-machine":{"a":"Fax Machine","b":"1F4E0","j":["communication","fax","technology"]},"battery":{"a":"Battery","b":"1F50B","j":["sustain","energy","power"]},"electric-plug":{"a":"Electric Plug","b":"1F50C","j":["electric","electricity","plug","charger","power"]},"laptop":{"a":"Laptop","b":"1F4BB","j":["screen","personal","display","technology","computer","pc","monitor"]},"desktop-computer":{"a":"Desktop Computer","b":"1F5A5","j":["screen","desktop","technology","computer","computing"]},"printer":{"a":"Printer","b":"1F5A8","j":["paper","ink","computer"]},"keyboard":{"a":"Keyboard","b":"2328","j":["type","text","technology","computer","input"]},"computer-mouse":{"a":"Computer Mouse","b":"1F5B1","j":["click","computer"]},"trackball":{"a":"Trackball","b":"1F5B2","j":["trackpad","technology","computer"]},"computer-disk":{"a":"Computer Disk","b":"1F4BD","j":["90s","optical","minidisk","technology","computer","record","data","disk"]},"floppy-disk":{"a":"Floppy Disk","b":"1F4BE","j":["oldschool","80s","90s","floppy","technology","computer","save","disk"]},"optical-disk":{"a":"Optical Disk","b":"1F4BF","j":["90s","disc","optical","cd","technology","computer","dvd","disk"]},"dvd":{"a":"Dvd","b":"1F4C0","j":["blu-ray","disc","optical","cd","computer","disk"]},"abacus":{"a":"Abacus","b":"1F9EE","j":["calculation"]},"movie-camera":{"a":"Movie Camera","b":"1F3A5","j":["movie","camera","cinema","film","record"]},"film-frames":{"a":"Film Frames","b":"1F39E","j":["cinema","frames","movie","film"]},"film-projector":{"a":"Film Projector","b":"1F4FD","j":["movie","cinema","projector","video","film","record","tape"]},"clapper-board":{"a":"Clapper Board","b":"1F3AC","j":["clapper","movie","record","film"]},"television":{"a":"Television","b":"1F4FA","j":["video","program","tv","technology","oldschool","show"]},"camera":{"a":"Camera","b":"1F4F7","j":["gadgets","video","photography"]},"camera-with-flash":{"a":"Camera with Flash","b":"1F4F8","j":["gadgets","camera","photography","flash","video"]},"video-camera":{"a":"Video Camera","b":"1F4F9","j":["record","camera","video","film"]},"videocassette":{"a":"Videocassette","b":"1F4FC","j":["vhs","80s","90s","video","oldschool","record","tape"]},"magnifying-glass-tilted-left":{"a":"Magnifying Glass Tilted Left","b":"1F50D","j":["find","zoom","detective","search","tool","magnifying","glass"]},"magnifying-glass-tilted-right":{"a":"Magnifying Glass Tilted Right","b":"1F50E","j":["find","zoom","detective","search","tool","magnifying","glass"]},"candle":{"a":"Candle","b":"1F56F","j":["light","fire","wax"]},"light-bulb":{"a":"Light Bulb","b":"1F4A1","j":["electric","electricity","idea","light","comic","bulb"]},"flashlight":{"a":"Flashlight","b":"1F526","j":["electric","torch","sight","night","tool","light","dark","camping"]},"red-paper-lantern":{"a":"Red Paper Lantern","b":"1F3EE","j":["red","paper","halloween","spooky","light","bar","lantern"]},"diya-lamp":{"a":"Diya Lamp","b":"1FA94","j":["oil","lamp","diya","lighting"]},"notebook-with-decorative-cover":{"a":"Notebook with Decorative Cover","b":"1F4D4","j":["decorated","notebook","cover","paper","book","record","study","notes","classroom"]},"closed-book":{"a":"Closed Book","b":"1F4D5","j":["closed","read","learn","textbook","book","knowledge","library"]},"open-book":{"a":"Open Book","b":"1F4D6","j":["open","read","learn","book","literature","knowledge","library","study"]},"green-book":{"a":"Green Book","b":"1F4D7","j":["read","green","book","knowledge","library","study"]},"blue-book":{"a":"Blue Book","b":"1F4D8","j":["read","learn","book","knowledge","library","study","blue"]},"orange-book":{"a":"Orange Book","b":"1F4D9","j":["read","orange","textbook","book","knowledge","library","study"]},"books":{"a":"Books","b":"1F4DA","j":["library","book","study","literature"]},"notebook":{"a":"Notebook","b":"1F4D3","j":["paper","stationery","record","study","notes"]},"ledger":{"a":"Ledger","b":"1F4D2","j":["paper","notes","notebook"]},"page-with-curl":{"a":"Page with Curl","b":"1F4C3","j":["document","paper","documents","page","office","curl"]},"scroll":{"a":"Scroll","b":"1F4DC","j":["paper","documents","ancient","history"]},"page-facing-up":{"a":"Page Facing Up","b":"1F4C4","j":["document","information","paper","documents","page","office"]},"newspaper":{"a":"Newspaper","b":"1F4F0","j":["paper","news","press","headline"]},"rolledup-newspaper":{"a":"Rolled-Up Newspaper","b":"1F5DE","j":["rolled","paper","press","newspaper","news","rolled-up newspaper","rolled_up_newspaper","headline"]},"bookmark-tabs":{"a":"Bookmark Tabs","b":"1F4D1","j":["order","bookmark","tidy","mark","marker","save","favorite","tabs"]},"bookmark":{"a":"Bookmark","b":"1F516","j":["save","label","mark","favorite"]},"label":{"a":"Label","b":"1F3F7","j":["tag","sale"]},"money-bag":{"a":"Money Bag","b":"1F4B0","j":["sale","payment","coins","dollar","moneybag","money","bag"]},"coin":{"a":"Coin","b":"1FA99","j":["gold","currency","money","treasure","silver","metal"]},"yen-banknote":{"a":"Yen Banknote","b":"1F4B4","j":["banknote","currency","bill","note","dollar","money","sales","yen","japanese"]},"dollar-banknote":{"a":"Dollar Banknote","b":"1F4B5","j":["banknote","currency","bill","dollar","note","money","sales"]},"euro-banknote":{"a":"Euro Banknote","b":"1F4B6","j":["banknote","currency","bill","euro","note","dollar","money","sales"]},"pound-banknote":{"a":"Pound Banknote","b":"1F4B7","j":["banknote","uk","currency","bill","british","sterling","note","money","sales","bills","england","pound"]},"money-with-wings":{"a":"Money with Wings","b":"1F4B8","j":["banknote","bill","sale","wings","payment","dollar","money","bills","fly"]},"credit-card":{"a":"Credit Card","b":"1F4B3","j":["credit","card","bill","payment","dollar","money","sales","shopping"]},"receipt":{"a":"Receipt","b":"1F9FE","j":["evidence","proof","accounting","expenses","bookkeeping"]},"chart-increasing-with-yen":{"a":"Chart Increasing with Yen","b":"1F4B9","j":["stats","presentation","growth","green-square","money","chart","yen","graph"]},"envelope":{"a":"Envelope","b":"2709","j":["postal","letter","communication","email","inbox"]},"email":{"a":"E-Mail","b":"1F4E7","j":["letter","communication","e_mail","inbox","e-mail","mail"]},"incoming-envelope":{"a":"Incoming Envelope","b":"1F4E8","j":["letter","envelope","receive","email","incoming","e-mail","inbox"]},"envelope-with-arrow":{"a":"Envelope with Arrow","b":"1F4E9","j":["communication","envelope","email","arrow","outgoing","e-mail"]},"outbox-tray":{"a":"Outbox Tray","b":"1F4E4","j":["letter","sent","email","outbox","tray","box","mail","inbox"]},"inbox-tray":{"a":"Inbox Tray","b":"1F4E5","j":["letter","receive","email","documents","tray","box","mail","inbox"]},"package":{"a":"Package","b":"1F4E6","j":["cardboard","gift","moving","box","parcel","mail"]},"closed-mailbox-with-raised-flag":{"a":"Closed Mailbox with Raised Flag","b":"1F4EB","j":["communication","closed","email","inbox","mailbox","mail","postbox"]},"closed-mailbox-with-lowered-flag":{"a":"Closed Mailbox with Lowered Flag","b":"1F4EA","j":["communication","closed","email","lowered","inbox","mailbox","mail","postbox"]},"open-mailbox-with-raised-flag":{"a":"Open Mailbox with Raised Flag","b":"1F4EC","j":["communication","open","email","inbox","mailbox","mail","postbox"]},"open-mailbox-with-lowered-flag":{"a":"Open Mailbox with Lowered Flag","b":"1F4ED","j":["open","email","lowered","inbox","mailbox","mail","postbox"]},"postbox":{"a":"Postbox","b":"1F4EE","j":["letter","envelope","email","mailbox","mail"]},"ballot-box-with-ballot":{"a":"Ballot Box with Ballot","b":"1F5F3","j":["election","ballot","box","vote"]},"pencil":{"a":"Pencil","b":"270F","j":["paper","school","write","stationery","writing","study"]},"black-nib":{"a":"Black Nib","b":"2712","j":["pen","write","stationery","writing","nib"]},"fountain-pen":{"a":"Fountain Pen","b":"1F58B","j":["pen","write","stationery","fountain","writing"]},"pen":{"a":"Pen","b":"1F58A","j":["stationery","ballpoint","writing","write"]},"paintbrush":{"a":"Paintbrush","b":"1F58C","j":["drawing","art","creativity","painting"]},"crayon":{"a":"Crayon","b":"1F58D","j":["drawing","creativity"]},"memo":{"a":"Memo","b":"1F4DD","j":["test","exam","paper","quiz","write","pencil","stationery","documents","compose","legal","writing","study"]},"briefcase":{"a":"Briefcase","b":"1F4BC","j":["business","documents","work","legal","job","law","career"]},"file-folder":{"a":"File Folder","b":"1F4C1","j":["business","file","folder","documents","office"]},"open-file-folder":{"a":"Open File Folder","b":"1F4C2","j":["open","file","load","folder","documents"]},"card-index-dividers":{"a":"Card Index Dividers","b":"1F5C2","j":["business","card","index","dividers","stationery","organizing"]},"calendar":{"a":"Calendar","b":"1F4C5","j":["date","schedule"]},"tearoff-calendar":{"a":"Tear-off Calendar","b":"1F4C6","j":["tear-off calendar","tear_off_calendar","planning","calendar","date","schedule"]},"spiral-notepad":{"a":"Spiral Notepad","b":"1F5D2","j":["memo","stationery","note","pad","spiral"]},"spiral-calendar":{"a":"Spiral Calendar","b":"1F5D3","j":["pad","planning","calendar","date","spiral","schedule"]},"card-index":{"a":"Card Index","b":"1F4C7","j":["business","card","index","rolodex","stationery"]},"chart-increasing":{"a":"Chart Increasing","b":"1F4C8","j":["business","stats","presentation","growth","success","money","chart","sales","good","recovery","graph","trend","upward","economics"]},"chart-decreasing":{"a":"Chart Decreasing","b":"1F4C9","j":["business","stats","failure","presentation","down","money","chart","recession","sales","bad","graph","trend","economics"]},"bar-chart":{"a":"Bar Chart","b":"1F4CA","j":["stats","presentation","bar","chart","graph"]},"clipboard":{"a":"Clipboard","b":"1F4CB","j":["stationery","documents"]},"pushpin":{"a":"Pushpin","b":"1F4CC","j":["stationery","mark","here","pin"]},"round-pushpin":{"a":"Round Pushpin","b":"1F4CD","j":["pushpin","location","stationery","map","here","pin"]},"paperclip":{"a":"Paperclip","b":"1F4CE","j":["stationery","documents"]},"linked-paperclips":{"a":"Linked Paperclips","b":"1F587","j":["stationery","link","documents","paperclip"]},"straight-ruler":{"a":"Straight Ruler","b":"1F4CF","j":["drawing","architect","sketch","school","math","stationery","calculate","straight edge","ruler","length"]},"triangular-ruler":{"a":"Triangular Ruler","b":"1F4D0","j":["sketch","architect","math","triangle","stationery","ruler","set"]},"scissors":{"a":"Scissors","b":"2702","j":["stationery","tool","cut","cutting"]},"card-file-box":{"a":"Card File Box","b":"1F5C3","j":["business","card","file","stationery","box"]},"file-cabinet":{"a":"File Cabinet","b":"1F5C4","j":["cabinet","file","filing","organizing"]},"wastebasket":{"a":"Wastebasket","b":"1F5D1","j":["rubbish","trash","garbage","bin","toss"]},"locked":{"a":"Locked","b":"1F512","j":["padlock","closed","password","security"]},"unlocked":{"a":"Unlocked","b":"1F513","j":["privacy","unlock","open","lock","security"]},"locked-with-pen":{"a":"Locked with Pen","b":"1F50F","j":["privacy","pen","lock","ink","security","secret","nib"]},"locked-with-key":{"a":"Locked with Key","b":"1F510","j":["privacy","closed","lock","key","security","secure"]},"key":{"a":"Key","b":"1F511","j":["door","password","lock"]},"old-key":{"a":"Old Key","b":"1F5DD","j":["password","lock","old","door","key","clue"]},"hammer":{"a":"Hammer","b":"1F528","j":["create","tools","tool","build"]},"axe":{"a":"Axe","b":"1FA93","j":["chop","hatchet","wood","tool","split","cut"]},"pick":{"a":"Pick","b":"26CF","j":["dig","tools","tool","mining"]},"hammer-and-pick":{"a":"Hammer and Pick","b":"2692","j":["hammer","build","tool","pick","create","tools"]},"hammer-and-wrench":{"a":"Hammer and Wrench","b":"1F6E0","j":["spanner","wrench","hammer","build","tool","create","tools"]},"dagger":{"a":"Dagger","b":"1F5E1","j":["knife","weapon"]},"crossed-swords":{"a":"Crossed Swords","b":"2694","j":["crossed","weapon","swords"]},"water-pistol":{"a":"Water Pistol","b":"1F52B","j":["gun","water","revolver","tool","weapon","handgun","pistol","violence"]},"boomerang":{"a":"Boomerang","b":"1FA83","j":["repercussion","rebound","australia","weapon"]},"bow-and-arrow":{"a":"Bow and Arrow","b":"1F3F9","j":["archer","sports","bow","Sagittarius","arrow","zodiac"]},"shield":{"a":"Shield","b":"1F6E1","j":["protection","security","weapon"]},"carpentry-saw":{"a":"Carpentry Saw","b":"1FA9A","j":["chop","carpenter","tool","cut","lumber","saw"]},"wrench":{"a":"Wrench","b":"1F527","j":["spanner","fix","tool","diy","ikea","maintainer","tools"]},"screwdriver":{"a":"Screwdriver","b":"1FA9B","j":["screw","tools","tool"]},"nut-and-bolt":{"a":"Nut and Bolt","b":"1F529","j":["fix","nut","bolt","tool","handy","tools"]},"gear":{"a":"Gear","b":"2699","j":["cogwheel","tool","cog"]},"clamp":{"a":"Clamp","b":"1F5DC","j":["compress","vice","tool"]},"balance-scale":{"a":"Balance Scale","b":"2696","j":["balance","scale","Libra","weight","law","justice","zodiac","fairness"]},"white-cane":{"a":"White Cane","b":"1F9AF","j":["accessibility","blind","probing_cane"]},"link":{"a":"Link","b":"1F517","j":["rings","url"]},"chains":{"a":"Chains","b":"26D3","j":["arrest","chain","lock"]},"hook":{"a":"Hook","b":"1FA9D","j":["crook","catch","ensnare","curve","selling point","tools"]},"toolbox":{"a":"Toolbox","b":"1F9F0","j":["fix","chest","tool","diy","mechanic","maintainer","tools"]},"magnet":{"a":"Magnet","b":"1F9F2","j":["magnetic","attraction","horseshoe"]},"ladder":{"a":"Ladder","b":"1FA9C","j":["rung","tools","climb","step"]},"alembic":{"a":"Alembic","b":"2697","j":["tool","chemistry","experiment","distilling","science"]},"test-tube":{"a":"Test Tube","b":"1F9EA","j":["chemist","experiment","chemistry","lab","science"]},"petri-dish":{"a":"Petri Dish","b":"1F9EB","j":["bacteria","culture","biology","lab","biologist"]},"dna":{"a":"Dna","b":"1F9EC","j":["genetics","gene","biologist","life","evolution"]},"microscope":{"a":"Microscope","b":"1F52C","j":["tool","experiment","zoomin","laboratory","study","science"]},"telescope":{"a":"Telescope","b":"1F52D","j":["stars","zoom","space","tool","astronomy","science"]},"satellite-antenna":{"a":"Satellite Antenna","b":"1F4E1","j":["communication","space","satellite","future","antenna","radio","dish"]},"syringe":{"a":"Syringe","b":"1F489","j":["sick","needle","drugs","blood","health","nurse","medicine","doctor","shot","hospital"]},"drop-of-blood":{"a":"Drop of Blood","b":"1FA78","j":["period","harm","injury","medicine","menstruation","wound","bleed","blood donation","hurt"]},"pill":{"a":"Pill","b":"1F48A","j":["sick","health","medicine","doctor","drug","pharmacy"]},"adhesive-bandage":{"a":"Adhesive Bandage","b":"1FA79","j":["bandage","heal"]},"stethoscope":{"a":"Stethoscope","b":"1FA7A","j":["medicine","heart","doctor","health"]},"door":{"a":"Door","b":"1F6AA","j":["entry","exit","house"]},"elevator":{"a":"Elevator","b":"1F6D7","j":["accessibility","hoist","lift"]},"mirror":{"a":"Mirror","b":"1FA9E","j":["speculum","reflection","reflector"]},"window":{"a":"Window","b":"1FA9F","j":["frame","transparent","scenery","fresh air","opening","view"]},"bed":{"a":"Bed","b":"1F6CF","j":["rest","hotel","sleep"]},"couch-and-lamp":{"a":"Couch and Lamp","b":"1F6CB","j":["lamp","read","chill","couch","hotel"]},"chair":{"a":"Chair","b":"1FA91","j":["furniture","sit","seat"]},"toilet":{"a":"Toilet","b":"1F6BD","j":["washroom","bathroom","potty","restroom","wc"]},"plunger":{"a":"Plunger","b":"1FAA0","j":["suction","plumber","toilet","force cup"]},"shower":{"a":"Shower","b":"1F6BF","j":["water","bathroom","clean"]},"bathtub":{"a":"Bathtub","b":"1F6C1","j":["shower","bath","bathroom","clean"]},"mouse-trap":{"a":"Mouse Trap","b":"1FAA4","j":["trap","bait","snare","cheese","mousetrap"]},"razor":{"a":"Razor","b":"1FA92","j":["cut","sharp","shave"]},"lotion-bottle":{"a":"Lotion Bottle","b":"1F9F4","j":["moisturizer","lotion","sunscreen","shampoo"]},"safety-pin":{"a":"Safety Pin","b":"1F9F7","j":["diaper","punk rock"]},"broom":{"a":"Broom","b":"1F9F9","j":["cleaning","sweeping","witch"]},"basket":{"a":"Basket","b":"1F9FA","j":["picnic","farming","laundry"]},"roll-of-paper":{"a":"Roll of Paper","b":"1F9FB","j":["roll","paper towels","toilet paper"]},"bucket":{"a":"Bucket","b":"1FAA3","j":["vat","water","container","cask","pail"]},"soap":{"a":"Soap","b":"1F9FC","j":["soapdish","lather","bar","bathing","cleaning"]},"toothbrush":{"a":"Toothbrush","b":"1FAA5","j":["hygiene","teeth","dental","bathroom","clean","brush"]},"sponge":{"a":"Sponge","b":"1F9FD","j":["porous","cleaning","absorbing"]},"fire-extinguisher":{"a":"Fire Extinguisher","b":"1F9EF","j":["fire","extinguish","quench"]},"shopping-cart":{"a":"Shopping Cart","b":"1F6D2","j":["trolley","cart","shopping"]},"cigarette":{"a":"Cigarette","b":"1F6AC","j":["kills","smoking","smoke","joint","tobacco"]},"coffin":{"a":"Coffin","b":"26B0","j":["funeral","cemetery","vampire","rip","die","graveyard","box","death","casket","dead"]},"headstone":{"a":"Headstone","b":"1FAA6","j":["cemetery","rip","graveyard","grave","tombstone","death"]},"funeral-urn":{"a":"Funeral Urn","b":"26B1","j":["funeral","rip","ashes","die","urn","death","dead"]},"moai":{"a":"Moai","b":"1F5FF","j":["moyai","rock","statue","face","easter island"]},"placard":{"a":"Placard","b":"1FAA7","j":["demonstration","picket","sign","announcement","protest"]},"atm-sign":{"a":"Atm Sign","b":"1F3E7","j":["teller","cash","payment","ATM sign","money","sales","automated","blue-square","atm","bank"]},"litter-in-bin-sign":{"a":"Litter in Bin Sign","b":"1F6AE","j":["info","litter bin","sign","blue-square","litter","human"]},"potable-water":{"a":"Potable Water","b":"1F6B0","j":["cleaning","water","restroom","potable","blue-square","drinking","faucet","liquid"]},"wheelchair-symbol":{"a":"Wheelchair Symbol","b":"267F","j":["accessibility","disabled","blue-square","access"]},"mens-room":{"a":"Men’S Room","b":"1F6B9","j":["lavatory","men_s_room","male","man","toilet","gender","restroom","blue-square","men’s room","wc"]},"womens-room":{"a":"Women’S Room","b":"1F6BA","j":["lavatory","purple-square","loo","women_s_room","woman","toilet","gender","female","restroom","women’s room","wc"]},"restroom":{"a":"Restroom","b":"1F6BB","j":["lavatory","toilet","gender","refresh","WC","blue-square","wc"]},"baby-symbol":{"a":"Baby Symbol","b":"1F6BC","j":["orange-square","child","changing","baby"]},"water-closet":{"a":"Water Closet","b":"1F6BE","j":["lavatory","water","toilet","closet","restroom","blue-square","wc"]},"passport-control":{"a":"Passport Control","b":"1F6C2","j":["control","passport","blue-square","custom"]},"customs":{"a":"Customs","b":"1F6C3","j":["border","blue-square","passport"]},"baggage-claim":{"a":"Baggage Claim","b":"1F6C4","j":["baggage","claim","transport","airport","blue-square"]},"left-luggage":{"a":"Left Luggage","b":"1F6C5","j":["baggage","luggage","travel","blue-square","locker"]},"warning":{"a":"Warning","b":"26A0","j":["exclamation","wip","issue","error","problem","alert"]},"children-crossing":{"a":"Children Crossing","b":"1F6B8","j":["traffic","driving","school","sign","child","pedestrian","crossing","warning","danger","yellow-diamond"]},"no-entry":{"a":"No Entry","b":"26D4","j":["privacy","traffic","limit","stop","no","not","prohibited","denied","entry","circle","bad","security","forbidden"]},"prohibited":{"a":"Prohibited","b":"1F6AB","j":["limit","stop","disallow","no","not","denied","forbid","entry","circle","forbidden"]},"no-bicycles":{"a":"No Bicycles","b":"1F6B3","j":["cyclist","no","bike","prohibited","bicycle","circle","forbidden"]},"no-smoking":{"a":"No Smoking","b":"1F6AD","j":["cigarette","no","prohibited","not","smoking","smell","smoke","blue-square","forbidden"]},"no-littering":{"a":"No Littering","b":"1F6AF","j":["trash","not","no","prohibited","garbage","bin","circle","litter","forbidden"]},"nonpotable-water":{"a":"Non-Potable Water","b":"1F6B1","j":["non_potable_water","faucet","water","drink","circle","tap","non-drinking","non-potable"]},"no-pedestrians":{"a":"No Pedestrians","b":"1F6B7","j":["no","not","prohibited","rules","circle","walking","pedestrian","crossing","forbidden"]},"no-mobile-phones":{"a":"No Mobile Phones","b":"1F4F5","j":["mobile","no","mute","cell","circle","iphone","forbidden","phone"]},"no-one-under-eighteen":{"a":"No One Under Eighteen","b":"1F51E","j":["night","prohibited","underage","eighteen","drink","circle","18","minor","pub","age restriction"]},"radioactive":{"a":"Radioactive","b":"2622","j":["nuclear","danger","sign"]},"biohazard":{"a":"Biohazard","b":"2623","j":["danger","sign"]},"up-arrow":{"a":"Up Arrow","b":"2B06","j":["north","arrow","direction","cardinal","continue","top","blue-square"]},"upright-arrow":{"a":"Up-Right Arrow","b":"2197","j":["point","up_right_arrow","arrow","direction","northeast","diagonal","blue-square","intercardinal","up-right arrow"]},"right-arrow":{"a":"Right Arrow","b":"27A1","j":["arrow","direction","cardinal","east","next","blue-square"]},"downright-arrow":{"a":"Down-Right Arrow","b":"2198","j":["down_right_arrow","arrow","direction","southeast","diagonal","blue-square","down-right arrow","intercardinal"]},"down-arrow":{"a":"Down Arrow","b":"2B07","j":["south","arrow","direction","cardinal","down","blue-square","bottom"]},"downleft-arrow":{"a":"Down-Left Arrow","b":"2199","j":["arrow","direction","down_left_arrow","down-left arrow","southwest","diagonal","blue-square","intercardinal"]},"left-arrow":{"a":"Left Arrow","b":"2B05","j":["previous","arrow","cardinal","direction","west","blue-square","back"]},"upleft-arrow":{"a":"Up-Left Arrow","b":"2196","j":["point","arrow","direction","northwest","diagonal","blue-square","intercardinal","up_left_arrow","up-left arrow"]},"updown-arrow":{"a":"Up-Down Arrow","b":"2195","j":["arrow","direction","way","up_down_arrow","blue-square","vertical","up-down arrow"]},"leftright-arrow":{"a":"Left-Right Arrow","b":"2194","j":["sideways","horizontal","left-right arrow","arrow","direction","shape","left_right_arrow"]},"right-arrow-curving-left":{"a":"Right Arrow Curving Left","b":"21A9","j":["enter","arrow","return","blue-square","undo","back"]},"left-arrow-curving-right":{"a":"Left Arrow Curving Right","b":"21AA","j":["arrow","direction","rotate","return","blue-square"]},"right-arrow-curving-up":{"a":"Right Arrow Curving Up","b":"2934","j":["top","arrow","direction","blue-square"]},"right-arrow-curving-down":{"a":"Right Arrow Curving Down","b":"2935","j":["arrow","direction","down","blue-square","bottom"]},"clockwise-vertical-arrows":{"a":"Clockwise Vertical Arrows","b":"1F503","j":["reload","clockwise","arrow","cycle","repeat","sync","round"]},"counterclockwise-arrows-button":{"a":"Counterclockwise Arrows Button","b":"1F504","j":["withershins","arrow","cycle","sync","blue-square","anticlockwise","counterclockwise"]},"back-arrow":{"a":"Back Arrow","b":"1F519","j":["arrow","return","words","BACK arrow","back"]},"end-arrow":{"a":"End Arrow","b":"1F51A","j":["words","arrow","END arrow","end"]},"on-arrow":{"a":"On! Arrow","b":"1F51B","j":["on","arrow","words","ON! arrow","mark"]},"soon-arrow":{"a":"Soon Arrow","b":"1F51C","j":["words","arrow","SOON arrow","soon"]},"top-arrow":{"a":"Top Arrow","b":"1F51D","j":["up","TOP arrow","top","arrow","words","blue-square"]},"place-of-worship":{"a":"Place of Worship","b":"1F6D0","j":["church","worship","religion","temple","prayer"]},"atom-symbol":{"a":"Atom Symbol","b":"269B","j":["atheist","atom","chemistry","physics","science"]},"om":{"a":"Om","b":"1F549","j":["hinduism","religion","sikhism","jainism","Hindu","buddhism"]},"star-of-david":{"a":"Star of David","b":"2721","j":["Jew","star of David","religion","Jewish","David","judaism","star"]},"wheel-of-dharma":{"a":"Wheel of Dharma","b":"2638","j":["dharma","hinduism","Buddhist","wheel","religion","sikhism","jainism","buddhism"]},"yin-yang":{"a":"Yin Yang","b":"262F","j":["taoist","balance","religion","yang","yin","tao"]},"latin-cross":{"a":"Latin Cross","b":"271D","j":["religion","Christian","christianity","cross"]},"orthodox-cross":{"a":"Orthodox Cross","b":"2626","j":["religion","suppedaneum","Christian","cross"]},"star-and-crescent":{"a":"Star and Crescent","b":"262A","j":["religion","islam","Muslim"]},"peace-symbol":{"a":"Peace Symbol","b":"262E","j":["peace","hippie"]},"menorah":{"a":"Menorah","b":"1F54E","j":["religion","candelabrum","jewish","candlestick","hanukkah","candles"]},"dotted-sixpointed-star":{"a":"Dotted Six-Pointed Star","b":"1F52F","j":["purple-square","dotted six-pointed star","dotted_six_pointed_star","religion","jewish","hexagram","fortune","star"]},"aries":{"a":"Aries","b":"2648","j":["purple-square","sign","ram","astrology","zodiac"]},"taurus":{"a":"Taurus","b":"2649","j":["purple-square","ox","sign","bull","astrology","zodiac"]},"gemini":{"a":"Gemini","b":"264A","j":["purple-square","twins","sign","astrology","zodiac"]},"cancer":{"a":"Cancer","b":"264B","j":["purple-square","sign","astrology","crab","zodiac"]},"leo":{"a":"Leo","b":"264C","j":["purple-square","lion","sign","astrology","zodiac"]},"virgo":{"a":"Virgo","b":"264D","j":["zodiac","purple-square","sign","astrology"]},"libra":{"a":"Libra","b":"264E","j":["balance","purple-square","scales","sign","astrology","justice","zodiac"]},"scorpio":{"a":"Scorpio","b":"264F","j":["purple-square","scorpius","sign","astrology","zodiac","scorpion"]},"sagittarius":{"a":"Sagittarius","b":"2650","j":["purple-square","archer","sign","astrology","zodiac"]},"capricorn":{"a":"Capricorn","b":"2651","j":["purple-square","sign","goat","astrology","zodiac"]},"aquarius":{"a":"Aquarius","b":"2652","j":["purple-square","water","sign","astrology","bearer","zodiac"]},"pisces":{"a":"Pisces","b":"2653","j":["fish","purple-square","sign","astrology","zodiac"]},"ophiuchus":{"a":"Ophiuchus","b":"26CE","j":["purple-square","constellation","sign","astrology","snake","bearer","serpent","zodiac"]},"shuffle-tracks-button":{"a":"Shuffle Tracks Button","b":"1F500","j":["shuffle","random","arrow","music","blue-square","crossed"]},"repeat-button":{"a":"Repeat Button","b":"1F501","j":["loop","clockwise","arrow","repeat","record"]},"repeat-single-button":{"a":"Repeat Single Button","b":"1F502","j":["loop","clockwise","arrow","once","blue-square"]},"play-button":{"a":"Play Button","b":"25B6","j":["right","arrow","direction","triangle","blue-square","play"]},"fastforward-button":{"a":"Fast-Forward Button","b":"23E9","j":["speed","forward","arrow","fast_forward_button","continue","double","fast","blue-square","fast-forward button","play"]},"next-track-button":{"a":"Next Track Button","b":"23ED","j":["next scene","forward","arrow","triangle","next","blue-square","next track"]},"play-or-pause-button":{"a":"Play or Pause Button","b":"23EF","j":["right","arrow","triangle","blue-square","pause","play"]},"reverse-button":{"a":"Reverse Button","b":"25C0","j":["left","arrow","direction","triangle","reverse","blue-square"]},"fast-reverse-button":{"a":"Fast Reverse Button","b":"23EA","j":["arrow","double","blue-square","rewind","play"]},"last-track-button":{"a":"Last Track Button","b":"23EE","j":["previous track","arrow","triangle","backward","previous scene"]},"upwards-button":{"a":"Upwards Button","b":"1F53C","j":["point","red","forward","arrow","direction","top","triangle","button","blue-square"]},"fast-up-button":{"a":"Fast Up Button","b":"23EB","j":["top","arrow","direction","double","blue-square"]},"downwards-button":{"a":"Downwards Button","b":"1F53D","j":["red","arrow","direction","down","button","blue-square","bottom"]},"fast-down-button":{"a":"Fast Down Button","b":"23EC","j":["arrow","direction","down","double","blue-square","bottom"]},"pause-button":{"a":"Pause Button","b":"23F8","j":["double","bar","blue-square","pause","vertical"]},"stop-button":{"a":"Stop Button","b":"23F9","j":["square","stop","blue-square"]},"record-button":{"a":"Record Button","b":"23FA","j":["record","circle","blue-square"]},"eject-button":{"a":"Eject Button","b":"23CF","j":["eject","blue-square"]},"cinema":{"a":"Cinema","b":"1F3A6","j":["movie","camera","film","stage","curtain","blue-square","record","theater"]},"dim-button":{"a":"Dim Button","b":"1F505","j":["dim","low","warm","sun","summer","afternoon","brightness"]},"bright-button":{"a":"Bright Button","b":"1F506","j":["light","sun","brightness","bright"]},"antenna-bars":{"a":"Antenna Bars","b":"1F4F6","j":["mobile","internet","connection","wifi","cell","bar","bars","reception","blue-square","antenna","bluetooth","phone"]},"vibration-mode":{"a":"Vibration Mode","b":"1F4F3","j":["orange-square","mobile","mode","vibration","cell","telephone","phone"]},"mobile-phone-off":{"a":"Mobile Phone off","b":"1F4F4","j":["orange-square","mobile","mute","cell","off","telephone","silence","quiet","phone"]},"female-sign":{"a":"Female Sign","b":"2640","j":["woman","women","girl","lady"]},"male-sign":{"a":"Male Sign","b":"2642","j":["man","boy","men"]},"transgender-symbol":{"a":"Transgender Symbol","b":"26A7","j":["lgbtq","transgender"]},"multiply":{"a":"Multiply","b":"2716","j":["cancel","multiplication_sign","x","math","sign","multiplication","calculation","×"]},"plus":{"a":"Plus","b":"2795","j":["+","addition","math","more","sign","increase","calculation","plus_sign"]},"minus":{"a":"Minus","b":"2796","j":["-","math","less","sign","−","minus_sign","subtract","calculation"]},"divide":{"a":"Divide","b":"2797","j":["÷","math","division","sign","calculation","division_sign"]},"infinity":{"a":"Infinity","b":"267E","j":["universal","forever","unbounded"]},"double-exclamation-mark":{"a":"Double Exclamation Mark","b":"203C","j":["exclamation","surprise","!","mark","!!","bangbang"]},"exclamation-question-mark":{"a":"Exclamation Question Mark","b":"2049","j":["exclamation","surprise","wat","punctuation","!","?","mark","question","interrobang","!?"]},"red-question-mark":{"a":"Red Question Mark","b":"2753","j":["punctuation","question_mark","confused","question","?","mark","doubt"]},"white-question-mark":{"a":"White Question Mark","b":"2754","j":["outlined","gray","punctuation","doubts","confused","question","?","huh","mark"]},"white-exclamation-mark":{"a":"White Exclamation Mark","b":"2755","j":["exclamation","surprise","wow","outlined","gray","punctuation","!","mark","warning"]},"red-exclamation-mark":{"a":"Red Exclamation Mark","b":"2757","j":["exclamation","surprise","wow","punctuation","exclamation_mark","!","mark","warning","danger","heavy_exclamation_mark"]},"wavy-dash":{"a":"Wavy Dash","b":"3030","j":["draw","punctuation","mustache","line","moustache","squiggle","wavy","scribble","dash"]},"currency-exchange":{"a":"Currency Exchange","b":"1F4B1","j":["exchange","currency","dollar","money","sales","travel","bank"]},"heavy-dollar-sign":{"a":"Heavy Dollar Sign","b":"1F4B2","j":["currency","buck","payment","dollar","money","sales"]},"medical-symbol":{"a":"Medical Symbol","b":"2695","j":["health","medicine","staff","aesculapius","hospital"]},"recycling-symbol":{"a":"Recycling Symbol","b":"267B","j":["recycle","trash","garbage","arrow","environment"]},"fleurdelis":{"a":"Fleur-De-Lis","b":"269C","j":["scout","fleur-de-lis","decorative","fleur_de_lis"]},"trident-emblem":{"a":"Trident Emblem","b":"1F531","j":["trident","ship","spear","tool","emblem","weapon","anchor"]},"name-badge":{"a":"Name Badge","b":"1F4DB","j":["name","fire","badge","forbid"]},"japanese-symbol-for-beginner":{"a":"Japanese Symbol for Beginner","b":"1F530","j":["shield","badge","leaf","Japanese","chevron","Japanese symbol for beginner","beginner"]},"hollow-red-circle":{"a":"Hollow Red Circle","b":"2B55","j":["red","o","large","circle","round"]},"check-mark-button":{"a":"Check Mark Button","b":"2705","j":["ok","answer","check","green-square","tick","election","✓","button","mark","vote","agree"]},"check-box-with-check":{"a":"Check Box with Check","b":"2611","j":["confirm","ok","black-square","check","tick","election","✓","box","vote","yes","agree"]},"check-mark":{"a":"Check Mark","b":"2714","j":["ok","answer","check","nike","tick","✓","mark","yes"]},"cross-mark":{"a":"Cross Mark","b":"274C","j":["cancel","multiply","red","no","x","cross","delete","remove","multiplication","mark","×"]},"cross-mark-button":{"a":"Cross Mark Button","b":"274E","j":["no","x","green-square","mark","×","square","deny"]},"curly-loop":{"a":"Curly Loop","b":"27B0","j":["loop","draw","shape","squiggle","scribble","curl"]},"double-curly-loop":{"a":"Double Curly Loop","b":"27BF","j":["loop","cassette","double","tape","curl"]},"part-alternation-mark":{"a":"Part Alternation Mark","b":"303D","j":["business","stats","presentation","bad","mark","graph","part","economics"]},"eightspoked-asterisk":{"a":"Eight-Spoked Asterisk","b":"2733","j":["*","sparkle","green-square","eight_spoked_asterisk","asterisk","eight-spoked asterisk","star"]},"eightpointed-star":{"a":"Eight-Pointed Star","b":"2734","j":["*","orange-square","polygon","eight_pointed_star","eight-pointed star","shape","star"]},"sparkle":{"a":"Sparkle","b":"2747","j":["*","stars","fireworks","awesome","green-square","good"]},"copyright":{"a":"Copyright","b":"00A9","j":["license","ip","circle","c","legal","law"]},"registered":{"a":"Registered","b":"00AE","j":["alphabet","circle","r"]},"trade-mark":{"a":"Trade Mark","b":"2122","j":["trademark","brand","tm","mark","legal","law"]},"keycap":{"a":"Keycap: *","b":"002A-FE0F-20E3","j":["star","keycap_"]},"keycap-0":{"a":"Keycap: 0","b":"0030-FE0F-20E3","j":["null","numbers","0","blue-square","keycap"]},"keycap-1":{"a":"Keycap: 1","b":"0031-FE0F-20E3","j":["1","numbers","keycap","blue-square"]},"keycap-2":{"a":"Keycap: 2","b":"0032-FE0F-20E3","j":["numbers","prime","blue-square","keycap","2"]},"keycap-3":{"a":"Keycap: 3","b":"0033-FE0F-20E3","j":["numbers","3","prime","blue-square","keycap"]},"keycap-4":{"a":"Keycap: 4","b":"0034-FE0F-20E3","j":["numbers","keycap","4","blue-square"]},"keycap-5":{"a":"Keycap: 5","b":"0035-FE0F-20E3","j":["numbers","5","prime","blue-square","keycap"]},"keycap-6":{"a":"Keycap: 6","b":"0036-FE0F-20E3","j":["6","numbers","keycap","blue-square"]},"keycap-7":{"a":"Keycap: 7","b":"0037-FE0F-20E3","j":["numbers","7","prime","blue-square","keycap"]},"keycap-8":{"a":"Keycap: 8","b":"0038-FE0F-20E3","j":["numbers","keycap","8","blue-square"]},"keycap-9":{"a":"Keycap: 9","b":"0039-FE0F-20E3","j":["numbers","keycap","9","blue-square"]},"keycap-10":{"a":"Keycap: 10","b":"1F51F","j":["10","numbers","keycap","blue-square"]},"input-latin-uppercase":{"a":"Input Latin Uppercase","b":"1F520","j":["alphabet","ABCD","uppercase","words","blue-square","letters","latin","input"]},"input-latin-lowercase":{"a":"Input Latin Lowercase","b":"1F521","j":["alphabet","abcd","blue-square","letters","latin","input","lowercase"]},"input-numbers":{"a":"Input Numbers","b":"1F522","j":["numbers","1234","input","blue-square"]},"input-symbols":{"a":"Input Symbols","b":"1F523","j":["〒♪&%","characters","glyphs","note","music","blue-square","percent","ampersand","input"]},"input-latin-letters":{"a":"Input Latin Letters","b":"1F524","j":["alphabet","abc","blue-square","letters","latin","input"]},"a-button-blood-type":{"a":"A Button (Blood Type)","b":"1F170","j":["a","letter","alphabet","a_button","red-square","A button (blood type)","blood type"]},"ab-button-blood-type":{"a":"Ab Button (Blood Type)","b":"1F18E","j":["ab","alphabet","ab_button","red-square","AB button (blood type)","blood type"]},"b-button-blood-type":{"a":"B Button (Blood Type)","b":"1F171","j":["letter","alphabet","b","B button (blood type)","red-square","b_button","blood type"]},"cl-button":{"a":"Cl Button","b":"1F191","j":["cl","alphabet","CL button","words","red-square"]},"cool-button":{"a":"Cool Button","b":"1F192","j":["words","cool","COOL button","blue-square"]},"free-button":{"a":"Free Button","b":"1F193","j":["words","FREE button","free","blue-square"]},"information":{"a":"Information","b":"2139","j":["alphabet","letter","i","blue-square"]},"id-button":{"a":"Id Button","b":"1F194","j":["purple-square","id","ID button","words","identity"]},"circled-m":{"a":"Circled M","b":"24C2","j":["blue-circle","letter","alphabet","circle","circled M","m"]},"new-button":{"a":"New Button","b":"1F195","j":["start","words","NEW button","blue-square","new"]},"ng-button":{"a":"Ng Button","b":"1F196","j":["NG button","ng","icon","words","shape","blue-square"]},"o-button-blood-type":{"a":"O Button (Blood Type)","b":"1F17E","j":["letter","O button (blood type)","o","alphabet","o_button","red-square","blood type"]},"ok-button":{"a":"Ok Button","b":"1F197","j":["OK button","good","blue-square","OK","yes","agree"]},"p-button":{"a":"P Button","b":"1F17F","j":["cars","letter","alphabet","blue-square","parking","P button"]},"sos-button":{"a":"Sos Button","b":"1F198","j":["SOS button","911","help","words","emergency","red-square","sos"]},"up-button":{"a":"Up! Button","b":"1F199","j":["up","high","above","mark","blue-square","UP! button"]},"vs-button":{"a":"Vs Button","b":"1F19A","j":["orange-square","vs","words","VS button","versus"]},"japanese-here-button":{"a":"Japanese “Here” Button","b":"1F201","j":["Japanese “here” button","Japanese","destination","katakana","“here”","blue-square","japanese","ココ","here"]},"japanese-service-charge-button":{"a":"Japanese “Service Charge” Button","b":"1F202","j":["“service charge”","Japanese","katakana","Japanese “service charge” button","サ","blue-square","japanese"]},"japanese-monthly-amount-button":{"a":"Japanese “Monthly Amount” Button","b":"1F237","j":["orange-square","month","Japanese","Japanese “monthly amount” button","“monthly amount”","chinese","月","kanji","japanese","ideograph","moon"]},"japanese-not-free-of-charge-button":{"a":"Japanese “Not Free of Charge” Button","b":"1F236","j":["orange-square","有","“not free of charge”","Japanese","Japanese “not free of charge” button","chinese","kanji","ideograph","have"]},"japanese-reserved-button":{"a":"Japanese “Reserved” Button","b":"1F22F","j":["point","Japanese “reserved” button","green-square","Japanese","chinese","指","kanji","ideograph","“reserved”"]},"japanese-bargain-button":{"a":"Japanese “Bargain” Button","b":"1F250","j":["“bargain”","得","Japanese “bargain” button","Japanese","get","circle","chinese","kanji","ideograph","obtain"]},"japanese-discount-button":{"a":"Japanese “Discount” Button","b":"1F239","j":["“discount”","Japanese","Japanese “discount” button","divide","chinese","kanji","ideograph","pink-square","cut","割"]},"japanese-free-of-charge-button":{"a":"Japanese “Free of Charge” Button","b":"1F21A","j":["“free of charge”","orange-square","無","Japanese","Japanese “free of charge” button","chinese","kanji","japanese","ideograph","nothing"]},"japanese-prohibited-button":{"a":"Japanese “Prohibited” Button","b":"1F232","j":["禁","limit","forbidden","“prohibited”","Japanese “prohibited” button","Japanese","restricted","kanji","chinese","japanese","red-square","ideograph"]},"japanese-acceptable-button":{"a":"Japanese “Acceptable” Button","b":"1F251","j":["ok","Japanese “acceptable” button","Japanese","可","chinese","good","kanji","ideograph","orange-circle","yes","“acceptable”","agree"]},"japanese-application-button":{"a":"Japanese “Application” Button","b":"1F238","j":["orange-square","申","“application”","Japanese","chinese","kanji","japanese","Japanese “application” button","ideograph"]},"japanese-passing-grade-button":{"a":"Japanese “Passing Grade” Button","b":"1F234","j":["“passing grade”","Japanese “passing grade” button","Japanese","join","chinese","kanji","合","japanese","red-square","ideograph"]},"japanese-vacancy-button":{"a":"Japanese “Vacancy” Button","b":"1F233","j":["Japanese “vacancy” button","Japanese","sky","japanese","kanji","chinese","empty","blue-square","“vacancy”","空","ideograph"]},"japanese-congratulations-button":{"a":"Japanese “Congratulations” Button","b":"3297","j":["Japanese","祝","Japanese “congratulations” button","chinese","kanji","“congratulations”","japanese","ideograph","red-circle"]},"japanese-secret-button":{"a":"Japanese “Secret” Button","b":"3299","j":["Japanese “secret” button","privacy","sshh","秘","Japanese","chinese","kanji","ideograph","“secret”","red-circle"]},"japanese-open-for-business-button":{"a":"Japanese “Open for Business” Button","b":"1F23A","j":["“open for business”","orange-square","opening hours","Japanese “open for business” button","Japanese","営","japanese","ideograph"]},"japanese-no-vacancy-button":{"a":"Japanese “No Vacancy” Button","b":"1F235","j":["full","満","Japanese","“no vacancy”","chinese","kanji","japanese","red-square","ideograph","Japanese “no vacancy” button"]},"red-circle":{"a":"Red Circle","b":"1F534","j":["geometric","red","shape","error","circle","danger"]},"orange-circle":{"a":"Orange Circle","b":"1F7E0","j":["circle","round","orange"]},"yellow-circle":{"a":"Yellow Circle","b":"1F7E1","j":["yellow","circle","round"]},"green-circle":{"a":"Green Circle","b":"1F7E2","j":["green","circle","round"]},"blue-circle":{"a":"Blue Circle","b":"1F535","j":["geometric","icon","shape","button","circle","blue"]},"purple-circle":{"a":"Purple Circle","b":"1F7E3","j":["circle","round","purple"]},"brown-circle":{"a":"Brown Circle","b":"1F7E4","j":["brown","circle","round"]},"black-circle":{"a":"Black Circle","b":"26AB","j":["geometric","shape","button","circle","round"]},"white-circle":{"a":"White Circle","b":"26AA","j":["shape","geometric","round","circle"]},"red-square":{"a":"Red Square","b":"1F7E5","j":["square","red"]},"orange-square":{"a":"Orange Square","b":"1F7E7","j":["square","orange"]},"yellow-square":{"a":"Yellow Square","b":"1F7E8","j":["yellow","square"]},"green-square":{"a":"Green Square","b":"1F7E9","j":["green","square"]},"blue-square":{"a":"Blue Square","b":"1F7E6","j":["square","blue"]},"purple-square":{"a":"Purple Square","b":"1F7EA","j":["square","purple"]},"brown-square":{"a":"Brown Square","b":"1F7EB","j":["brown","square"]},"black-large-square":{"a":"Black Large Square","b":"2B1B","j":["geometric","icon","shape","button","square"]},"white-large-square":{"a":"White Large Square","b":"2B1C","j":["geometric","icon","stone","shape","button","square"]},"black-medium-square":{"a":"Black Medium Square","b":"25FC","j":["geometric","icon","shape","button","square"]},"white-medium-square":{"a":"White Medium Square","b":"25FB","j":["geometric","icon","stone","shape","square"]},"black-mediumsmall-square":{"a":"Black Medium-Small Square","b":"25FE","j":["black medium-small square","geometric","icon","black_medium_small_square","shape","button","square"]},"white-mediumsmall-square":{"a":"White Medium-Small Square","b":"25FD","j":["geometric","white medium-small square","white_medium_small_square","icon","stone","shape","button","square"]},"black-small-square":{"a":"Black Small Square","b":"25AA","j":["icon","shape","square","geometric"]},"white-small-square":{"a":"White Small Square","b":"25AB","j":["icon","shape","square","geometric"]},"large-orange-diamond":{"a":"Large Orange Diamond","b":"1F536","j":["geometric","gem","jewel","orange","shape","diamond"]},"large-blue-diamond":{"a":"Large Blue Diamond","b":"1F537","j":["geometric","gem","jewel","shape","diamond","blue"]},"small-orange-diamond":{"a":"Small Orange Diamond","b":"1F538","j":["geometric","gem","jewel","orange","shape","diamond"]},"small-blue-diamond":{"a":"Small Blue Diamond","b":"1F539","j":["geometric","gem","jewel","shape","diamond","blue"]},"red-triangle-pointed-up":{"a":"Red Triangle Pointed Up","b":"1F53A","j":["up","geometric","red","top","direction","shape"]},"red-triangle-pointed-down":{"a":"Red Triangle Pointed Down","b":"1F53B","j":["geometric","red","direction","down","shape","bottom"]},"diamond-with-a-dot":{"a":"Diamond with a Dot","b":"1F4A0","j":["geometric","gem","fancy","jewel","inside","comic","diamond","crystal","blue"]},"radio-button":{"a":"Radio Button","b":"1F518","j":["geometric","old","button","circle","music","radio","input"]},"white-square-button":{"a":"White Square Button","b":"1F533","j":["geometric","outlined","shape","button","square","input"]},"black-square-button":{"a":"Black Square Button","b":"1F532","j":["frame","geometric","shape","button","square","input"]},"chequered-flag":{"a":"Chequered Flag","b":"1F3C1","j":["chequered","checkered","race","racing","gokart","finishline","contest"]},"triangular-flag":{"a":"Triangular Flag","b":"1F6A9","j":["milestone","place","mark","post"]},"crossed-flags":{"a":"Crossed Flags","b":"1F38C","j":["nation","celebration","cross","Japanese","border","japanese","country","crossed"]},"black-flag":{"a":"Black Flag","b":"1F3F4","j":["waving","pirate"]},"white-flag":{"a":"White Flag","b":"1F3F3","j":["loser","give up","surrender","lost","waving","losing","fail"]},"rainbow-flag":{"a":"Rainbow Flag","b":"1F3F3-FE0F-200D-1F308","j":["gay","glbt","pride","lesbian","homosexual","flag","lgbt","bisexual","rainbow","queer","transgender"]},"transgender-flag":{"a":"Transgender Flag","b":"1F3F3-FE0F-200D-26A7-FE0F","j":["pink","lgbtq","light blue","flag","white","transgender"]},"pirate-flag":{"a":"Pirate Flag","b":"1F3F4-200D-2620-FE0F","j":["skull","crossbones","plunder","flag","Jolly Roger","treasure","banner","pirate"]},"flag-ascension-island":{"a":"Flag: Ascension Island","b":"1F1E6-1F1E8","j":["flag"]},"flag-andorra":{"a":"Flag: Andorra","b":"1F1E6-1F1E9","j":["flag","ad","banner","country","nation"]},"flag-united-arab-emirates":{"a":"Flag: United Arab Emirates","b":"1F1E6-1F1EA","j":["united","flag","emirates","banner","arab","country","nation"]},"flag-afghanistan":{"a":"Flag: Afghanistan","b":"1F1E6-1F1EB","j":["af","flag","banner","country","nation"]},"flag-antigua--barbuda":{"a":"Flag: Antigua & Barbuda","b":"1F1E6-1F1EC","j":["barbuda","antigua","flag","banner","country","nation","flag_antigua_barbuda"]},"flag-anguilla":{"a":"Flag: Anguilla","b":"1F1E6-1F1EE","j":["ai","flag","banner","country","nation"]},"flag-albania":{"a":"Flag: Albania","b":"1F1E6-1F1F1","j":["al","flag","banner","country","nation"]},"flag-armenia":{"a":"Flag: Armenia","b":"1F1E6-1F1F2","j":["country","flag","banner","am","nation"]},"flag-angola":{"a":"Flag: Angola","b":"1F1E6-1F1F4","j":["ao","flag","banner","country","nation"]},"flag-antarctica":{"a":"Flag: Antarctica","b":"1F1E6-1F1F6","j":["aq","flag","banner","country","nation"]},"flag-argentina":{"a":"Flag: Argentina","b":"1F1E6-1F1F7","j":["ar","flag","banner","country","nation"]},"flag-american-samoa":{"a":"Flag: American Samoa","b":"1F1E6-1F1F8","j":["ws","flag","banner","country","nation","american"]},"flag-austria":{"a":"Flag: Austria","b":"1F1E6-1F1F9","j":["at","flag","banner","country","nation"]},"flag-australia":{"a":"Flag: Australia","b":"1F1E6-1F1FA","j":["flag","banner","au","country","nation"]},"flag-aruba":{"a":"Flag: Aruba","b":"1F1E6-1F1FC","j":["aw","flag","banner","country","nation"]},"flag-land-islands":{"a":"Flag: Åland Islands","b":"1F1E6-1F1FD","j":["islands","flag","flag_aland_islands","Åland","banner","country","nation"]},"flag-azerbaijan":{"a":"Flag: Azerbaijan","b":"1F1E6-1F1FF","j":["az","flag","banner","country","nation"]},"flag-bosnia--herzegovina":{"a":"Flag: Bosnia & Herzegovina","b":"1F1E7-1F1E6","j":["bosnia","flag_bosnia_herzegovina","flag","herzegovina","banner","country","nation"]},"flag-barbados":{"a":"Flag: Barbados","b":"1F1E7-1F1E7","j":["bb","flag","banner","country","nation"]},"flag-bangladesh":{"a":"Flag: Bangladesh","b":"1F1E7-1F1E9","j":["bd","flag","banner","country","nation"]},"flag-belgium":{"a":"Flag: Belgium","b":"1F1E7-1F1EA","j":["country","flag","banner","be","nation"]},"flag-burkina-faso":{"a":"Flag: Burkina Faso","b":"1F1E7-1F1EB","j":["flag","burkina","banner","faso","country","nation"]},"flag-bulgaria":{"a":"Flag: Bulgaria","b":"1F1E7-1F1EC","j":["flag","banner","bg","country","nation"]},"flag-bahrain":{"a":"Flag: Bahrain","b":"1F1E7-1F1ED","j":["bh","flag","banner","country","nation"]},"flag-burundi":{"a":"Flag: Burundi","b":"1F1E7-1F1EE","j":["flag","banner","bi","country","nation"]},"flag-benin":{"a":"Flag: Benin","b":"1F1E7-1F1EF","j":["country","flag","banner","bj","nation"]},"flag-st-barthlemy":{"a":"Flag: St. Barthélemy","b":"1F1E7-1F1F1","j":["flag_st_barthelemy","saint","flag","banner","country","barthélemy","nation"]},"flag-bermuda":{"a":"Flag: Bermuda","b":"1F1E7-1F1F2","j":["bm","flag","banner","country","nation"]},"flag-brunei":{"a":"Flag: Brunei","b":"1F1E7-1F1F3","j":["darussalam","bn","flag","banner","country","nation"]},"flag-bolivia":{"a":"Flag: Bolivia","b":"1F1E7-1F1F4","j":["country","flag","banner","bo","nation"]},"flag-caribbean-netherlands":{"a":"Flag: Caribbean Netherlands","b":"1F1E7-1F1F6","j":["flag","banner","country","bonaire","nation"]},"flag-brazil":{"a":"Flag: Brazil","b":"1F1E7-1F1F7","j":["flag","banner","br","country","nation"]},"flag-bahamas":{"a":"Flag: Bahamas","b":"1F1E7-1F1F8","j":["bs","flag","banner","country","nation"]},"flag-bhutan":{"a":"Flag: Bhutan","b":"1F1E7-1F1F9","j":["bt","flag","banner","country","nation"]},"flag-bouvet-island":{"a":"Flag: Bouvet Island","b":"1F1E7-1F1FB","j":["flag","norway"]},"flag-botswana":{"a":"Flag: Botswana","b":"1F1E7-1F1FC","j":["flag","bw","banner","country","nation"]},"flag-belarus":{"a":"Flag: Belarus","b":"1F1E7-1F1FE","j":["country","flag","banner","by","nation"]},"flag-belize":{"a":"Flag: Belize","b":"1F1E7-1F1FF","j":["flag","banner","bz","country","nation"]},"flag-canada":{"a":"Flag: Canada","b":"1F1E8-1F1E6","j":["ca","flag","banner","country","nation"]},"flag-cocos-keeling-islands":{"a":"Flag: Cocos (Keeling) Islands","b":"1F1E8-1F1E8","j":["islands","cocos","flag","keeling","banner","flag_cocos_islands","country","nation"]},"flag-congo--kinshasa":{"a":"Flag: Congo - Kinshasa","b":"1F1E8-1F1E9","j":["democratic","congo","flag","banner","flag_congo_kinshasa","republic","country","nation"]},"flag-central-african-republic":{"a":"Flag: Central African Republic","b":"1F1E8-1F1EB","j":["african","central","flag","banner","republic","country","nation"]},"flag-congo--brazzaville":{"a":"Flag: Congo - Brazzaville","b":"1F1E8-1F1EC","j":["flag_congo_brazzaville","congo","flag","banner","country","nation"]},"flag-switzerland":{"a":"Flag: Switzerland","b":"1F1E8-1F1ED","j":["ch","flag","banner","country","nation"]},"flag-cte-divoire":{"a":"Flag: Côte D’Ivoire","b":"1F1E8-1F1EE","j":["flag","flag_cote_d_ivoire","banner","ivory","coast","country","nation"]},"flag-cook-islands":{"a":"Flag: Cook Islands","b":"1F1E8-1F1F0","j":["islands","cook","flag","banner","country","nation"]},"flag-chile":{"a":"Flag: Chile","b":"1F1E8-1F1F1","j":["flag","country","banner","nation"]},"flag-cameroon":{"a":"Flag: Cameroon","b":"1F1E8-1F1F2","j":["cm","flag","banner","country","nation"]},"flag-china":{"a":"Flag: China","b":"1F1E8-1F1F3","j":["china","flag","chinese","banner","country","prc","nation"]},"flag-colombia":{"a":"Flag: Colombia","b":"1F1E8-1F1F4","j":["co","flag","banner","country","nation"]},"flag-clipperton-island":{"a":"Flag: Clipperton Island","b":"1F1E8-1F1F5","j":["flag"]},"flag-costa-rica":{"a":"Flag: Costa Rica","b":"1F1E8-1F1F7","j":["rica","costa","flag","banner","country","nation"]},"flag-cuba":{"a":"Flag: Cuba","b":"1F1E8-1F1FA","j":["cu","flag","banner","country","nation"]},"flag-cape-verde":{"a":"Flag: Cape Verde","b":"1F1E8-1F1FB","j":["cabo","flag","banner","verde","country","nation"]},"flag-curaao":{"a":"Flag: Curaçao","b":"1F1E8-1F1FC","j":["flag_curacao","curaçao","flag","banner","country","nation"]},"flag-christmas-island":{"a":"Flag: Christmas Island","b":"1F1E8-1F1FD","j":["christmas","flag","banner","country","island","nation"]},"flag-cyprus":{"a":"Flag: Cyprus","b":"1F1E8-1F1FE","j":["flag","banner","country","nation","cy"]},"flag-czechia":{"a":"Flag: Czechia","b":"1F1E8-1F1FF","j":["cz","flag","banner","country","nation"]},"flag-germany":{"a":"Flag: Germany","b":"1F1E9-1F1EA","j":["country","flag","banner","german","nation"]},"flag-diego-garcia":{"a":"Flag: Diego Garcia","b":"1F1E9-1F1EC","j":["flag"]},"flag-djibouti":{"a":"Flag: Djibouti","b":"1F1E9-1F1EF","j":["dj","flag","banner","country","nation"]},"flag-denmark":{"a":"Flag: Denmark","b":"1F1E9-1F1F0","j":["flag","banner","dk","country","nation"]},"flag-dominica":{"a":"Flag: Dominica","b":"1F1E9-1F1F2","j":["flag","dm","banner","country","nation"]},"flag-dominican-republic":{"a":"Flag: Dominican Republic","b":"1F1E9-1F1F4","j":["flag","banner","republic","country","dominican","nation"]},"flag-algeria":{"a":"Flag: Algeria","b":"1F1E9-1F1FF","j":["flag","banner","dz","country","nation"]},"flag-ceuta--melilla":{"a":"Flag: Ceuta & Melilla","b":"1F1EA-1F1E6","j":["flag_ceuta_melilla","flag"]},"flag-ecuador":{"a":"Flag: Ecuador","b":"1F1EA-1F1E8","j":["nation","flag","banner","country","ec"]},"flag-estonia":{"a":"Flag: Estonia","b":"1F1EA-1F1EA","j":["ee","flag","banner","country","nation"]},"flag-egypt":{"a":"Flag: Egypt","b":"1F1EA-1F1EC","j":["flag","eg","banner","country","nation"]},"flag-western-sahara":{"a":"Flag: Western Sahara","b":"1F1EA-1F1ED","j":["sahara","flag","western","banner","country","nation"]},"flag-eritrea":{"a":"Flag: Eritrea","b":"1F1EA-1F1F7","j":["flag","banner","country","nation","er"]},"flag-spain":{"a":"Flag: Spain","b":"1F1EA-1F1F8","j":["spain","flag","banner","country","nation"]},"flag-ethiopia":{"a":"Flag: Ethiopia","b":"1F1EA-1F1F9","j":["et","flag","banner","country","nation"]},"flag-european-union":{"a":"Flag: European Union","b":"1F1EA-1F1FA","j":["european","flag","banner","union"]},"flag-finland":{"a":"Flag: Finland","b":"1F1EB-1F1EE","j":["flag","banner","fi","country","nation"]},"flag-fiji":{"a":"Flag: Fiji","b":"1F1EB-1F1EF","j":["flag","banner","fj","country","nation"]},"flag-falkland-islands":{"a":"Flag: Falkland Islands","b":"1F1EB-1F1F0","j":["islands","falkland","flag","banner","malvinas","country","nation"]},"flag-micronesia":{"a":"Flag: Micronesia","b":"1F1EB-1F1F2","j":["federated","country","states","flag","banner","micronesia","nation"]},"flag-faroe-islands":{"a":"Flag: Faroe Islands","b":"1F1EB-1F1F4","j":["faroe","islands","flag","banner","country","nation"]},"flag-france":{"a":"Flag: France","b":"1F1EB-1F1F7","j":["flag","banner","french","france","country","nation"]},"flag-gabon":{"a":"Flag: Gabon","b":"1F1EC-1F1E6","j":["flag","ga","banner","country","nation"]},"flag-united-kingdom":{"a":"Flag: United Kingdom","b":"1F1EC-1F1E7","j":["northern","great","british","UK","english","kingdom","united","flag","banner","england","britain","ireland","country","union jack","nation"]},"flag-grenada":{"a":"Flag: Grenada","b":"1F1EC-1F1E9","j":["gd","flag","banner","country","nation"]},"flag-georgia":{"a":"Flag: Georgia","b":"1F1EC-1F1EA","j":["ge","flag","banner","country","nation"]},"flag-french-guiana":{"a":"Flag: French Guiana","b":"1F1EC-1F1EB","j":["guiana","flag","banner","french","country","nation"]},"flag-guernsey":{"a":"Flag: Guernsey","b":"1F1EC-1F1EC","j":["gg","flag","banner","country","nation"]},"flag-ghana":{"a":"Flag: Ghana","b":"1F1EC-1F1ED","j":["gh","flag","banner","country","nation"]},"flag-gibraltar":{"a":"Flag: Gibraltar","b":"1F1EC-1F1EE","j":["flag","banner","country","nation","gi"]},"flag-greenland":{"a":"Flag: Greenland","b":"1F1EC-1F1F1","j":["gl","flag","banner","country","nation"]},"flag-gambia":{"a":"Flag: Gambia","b":"1F1EC-1F1F2","j":["gm","flag","banner","country","nation"]},"flag-guinea":{"a":"Flag: Guinea","b":"1F1EC-1F1F3","j":["gn","flag","banner","country","nation"]},"flag-guadeloupe":{"a":"Flag: Guadeloupe","b":"1F1EC-1F1F5","j":["gp","flag","banner","country","nation"]},"flag-equatorial-guinea":{"a":"Flag: Equatorial Guinea","b":"1F1EC-1F1F6","j":["equatorial","gn","flag","banner","country","nation"]},"flag-greece":{"a":"Flag: Greece","b":"1F1EC-1F1F7","j":["gr","flag","banner","country","nation"]},"flag-south-georgia--south-sandwich-islands":{"a":"Flag: South Georgia & South Sandwich Islands","b":"1F1EC-1F1F8","j":["georgia","islands","south","flag_south_georgia_south_sandwich_islands","flag","sandwich","banner","country","nation"]},"flag-guatemala":{"a":"Flag: Guatemala","b":"1F1EC-1F1F9","j":["flag","gt","banner","country","nation"]},"flag-guam":{"a":"Flag: Guam","b":"1F1EC-1F1FA","j":["gu","flag","banner","country","nation"]},"flag-guineabissau":{"a":"Flag: Guinea-Bissau","b":"1F1EC-1F1FC","j":["bissau","nation","gw","flag","banner","country","flag_guinea_bissau"]},"flag-guyana":{"a":"Flag: Guyana","b":"1F1EC-1F1FE","j":["gy","flag","banner","country","nation"]},"flag-hong-kong-sar-china":{"a":"Flag: Hong Kong Sar China","b":"1F1ED-1F1F0","j":["flag","banner","hong","kong","country","nation"]},"flag-heard--mcdonald-islands":{"a":"Flag: Heard & Mcdonald Islands","b":"1F1ED-1F1F2","j":["flag","flag_heard_mcdonald_islands"]},"flag-honduras":{"a":"Flag: Honduras","b":"1F1ED-1F1F3","j":["country","flag","banner","hn","nation"]},"flag-croatia":{"a":"Flag: Croatia","b":"1F1ED-1F1F7","j":["flag","banner","hr","country","nation"]},"flag-haiti":{"a":"Flag: Haiti","b":"1F1ED-1F1F9","j":["ht","flag","banner","country","nation"]},"flag-hungary":{"a":"Flag: Hungary","b":"1F1ED-1F1FA","j":["flag","banner","hu","country","nation"]},"flag-canary-islands":{"a":"Flag: Canary Islands","b":"1F1EE-1F1E8","j":["islands","canary","flag","banner","country","nation"]},"flag-indonesia":{"a":"Flag: Indonesia","b":"1F1EE-1F1E9","j":["flag","country","banner","nation"]},"flag-ireland":{"a":"Flag: Ireland","b":"1F1EE-1F1EA","j":["ie","flag","banner","country","nation"]},"flag-israel":{"a":"Flag: Israel","b":"1F1EE-1F1F1","j":["il","flag","banner","country","nation"]},"flag-isle-of-man":{"a":"Flag: Isle of Man","b":"1F1EE-1F1F2","j":["man","isle","flag","banner","country","nation"]},"flag-india":{"a":"Flag: India","b":"1F1EE-1F1F3","j":["country","flag","banner","in","nation"]},"flag-british-indian-ocean-territory":{"a":"Flag: British Indian Ocean Territory","b":"1F1EE-1F1F4","j":["british","ocean","flag","banner","territory","indian","country","nation"]},"flag-iraq":{"a":"Flag: Iraq","b":"1F1EE-1F1F6","j":["iq","flag","banner","country","nation"]},"flag-iran":{"a":"Flag: Iran","b":"1F1EE-1F1F7","j":["iran","islamic","flag","banner","republic","country","nation"]},"flag-iceland":{"a":"Flag: Iceland","b":"1F1EE-1F1F8","j":["flag","banner","country","is","nation"]},"flag-italy":{"a":"Flag: Italy","b":"1F1EE-1F1F9","j":["italy","flag","banner","country","nation"]},"flag-jersey":{"a":"Flag: Jersey","b":"1F1EF-1F1EA","j":["je","flag","banner","country","nation"]},"flag-jamaica":{"a":"Flag: Jamaica","b":"1F1EF-1F1F2","j":["flag","banner","jm","country","nation"]},"flag-jordan":{"a":"Flag: Jordan","b":"1F1EF-1F1F4","j":["jo","flag","banner","country","nation"]},"flag-japan":{"a":"Flag: Japan","b":"1F1EF-1F1F5","j":["flag","banner","japanese","country","nation"]},"flag-kenya":{"a":"Flag: Kenya","b":"1F1F0-1F1EA","j":["flag","banner","ke","country","nation"]},"flag-kyrgyzstan":{"a":"Flag: Kyrgyzstan","b":"1F1F0-1F1EC","j":["kg","flag","banner","country","nation"]},"flag-cambodia":{"a":"Flag: Cambodia","b":"1F1F0-1F1ED","j":["kh","flag","banner","country","nation"]},"flag-kiribati":{"a":"Flag: Kiribati","b":"1F1F0-1F1EE","j":["ki","flag","banner","country","nation"]},"flag-comoros":{"a":"Flag: Comoros","b":"1F1F0-1F1F2","j":["km","flag","banner","country","nation"]},"flag-st-kitts--nevis":{"a":"Flag: St. Kitts & Nevis","b":"1F1F0-1F1F3","j":["nation","nevis","flag","kitts","flag_st_kitts_nevis","banner","country","saint"]},"flag-north-korea":{"a":"Flag: North Korea","b":"1F1F0-1F1F5","j":["north","flag","banner","korea","country","nation"]},"flag-south-korea":{"a":"Flag: South Korea","b":"1F1F0-1F1F7","j":["south","flag","banner","korea","country","nation"]},"flag-kuwait":{"a":"Flag: Kuwait","b":"1F1F0-1F1FC","j":["kw","flag","banner","country","nation"]},"flag-cayman-islands":{"a":"Flag: Cayman Islands","b":"1F1F0-1F1FE","j":["islands","flag","banner","cayman","country","nation"]},"flag-kazakhstan":{"a":"Flag: Kazakhstan","b":"1F1F0-1F1FF","j":["kz","flag","banner","country","nation"]},"flag-laos":{"a":"Flag: Laos","b":"1F1F1-1F1E6","j":["democratic","flag","banner","lao","republic","country","nation"]},"flag-lebanon":{"a":"Flag: Lebanon","b":"1F1F1-1F1E7","j":["lb","flag","banner","country","nation"]},"flag-st-lucia":{"a":"Flag: St. Lucia","b":"1F1F1-1F1E8","j":["nation","saint","flag","banner","country","lucia"]},"flag-liechtenstein":{"a":"Flag: Liechtenstein","b":"1F1F1-1F1EE","j":["flag","li","banner","country","nation"]},"flag-sri-lanka":{"a":"Flag: Sri Lanka","b":"1F1F1-1F1F0","j":["lanka","sri","flag","banner","country","nation"]},"flag-liberia":{"a":"Flag: Liberia","b":"1F1F1-1F1F7","j":["flag","lr","banner","country","nation"]},"flag-lesotho":{"a":"Flag: Lesotho","b":"1F1F1-1F1F8","j":["ls","flag","banner","country","nation"]},"flag-lithuania":{"a":"Flag: Lithuania","b":"1F1F1-1F1F9","j":["flag","banner","country","nation","lt"]},"flag-luxembourg":{"a":"Flag: Luxembourg","b":"1F1F1-1F1FA","j":["lu","flag","banner","country","nation"]},"flag-latvia":{"a":"Flag: Latvia","b":"1F1F1-1F1FB","j":["flag","banner","lv","country","nation"]},"flag-libya":{"a":"Flag: Libya","b":"1F1F1-1F1FE","j":["ly","flag","banner","country","nation"]},"flag-morocco":{"a":"Flag: Morocco","b":"1F1F2-1F1E6","j":["ma","flag","banner","country","nation"]},"flag-monaco":{"a":"Flag: Monaco","b":"1F1F2-1F1E8","j":["mc","flag","banner","country","nation"]},"flag-moldova":{"a":"Flag: Moldova","b":"1F1F2-1F1E9","j":["flag","banner","republic","country","moldova","nation"]},"flag-montenegro":{"a":"Flag: Montenegro","b":"1F1F2-1F1EA","j":["me","flag","banner","country","nation"]},"flag-st-martin":{"a":"Flag: St. Martin","b":"1F1F2-1F1EB","j":["flag"]},"flag-madagascar":{"a":"Flag: Madagascar","b":"1F1F2-1F1EC","j":["mg","flag","banner","country","nation"]},"flag-marshall-islands":{"a":"Flag: Marshall Islands","b":"1F1F2-1F1ED","j":["islands","marshall","flag","banner","country","nation"]},"flag-north-macedonia":{"a":"Flag: North Macedonia","b":"1F1F2-1F1F0","j":["macedonia","flag","banner","country","nation"]},"flag-mali":{"a":"Flag: Mali","b":"1F1F2-1F1F1","j":["ml","flag","banner","country","nation"]},"flag-myanmar-burma":{"a":"Flag: Myanmar (Burma)","b":"1F1F2-1F1F2","j":["mm","country","flag","banner","flag_myanmar","nation"]},"flag-mongolia":{"a":"Flag: Mongolia","b":"1F1F2-1F1F3","j":["country","flag","banner","mn","nation"]},"flag-macao-sar-china":{"a":"Flag: Macao Sar China","b":"1F1F2-1F1F4","j":["flag","banner","country","nation","macao"]},"flag-northern-mariana-islands":{"a":"Flag: Northern Mariana Islands","b":"1F1F2-1F1F5","j":["northern","islands","flag","mariana","banner","country","nation"]},"flag-martinique":{"a":"Flag: Martinique","b":"1F1F2-1F1F6","j":["mq","flag","banner","country","nation"]},"flag-mauritania":{"a":"Flag: Mauritania","b":"1F1F2-1F1F7","j":["flag","banner","mr","country","nation"]},"flag-montserrat":{"a":"Flag: Montserrat","b":"1F1F2-1F1F8","j":["flag","banner","ms","country","nation"]},"flag-malta":{"a":"Flag: Malta","b":"1F1F2-1F1F9","j":["mt","flag","banner","country","nation"]},"flag-mauritius":{"a":"Flag: Mauritius","b":"1F1F2-1F1FA","j":["mu","flag","banner","country","nation"]},"flag-maldives":{"a":"Flag: Maldives","b":"1F1F2-1F1FB","j":["flag","banner","mv","country","nation"]},"flag-malawi":{"a":"Flag: Malawi","b":"1F1F2-1F1FC","j":["mw","flag","banner","country","nation"]},"flag-mexico":{"a":"Flag: Mexico","b":"1F1F2-1F1FD","j":["mx","flag","banner","country","nation"]},"flag-malaysia":{"a":"Flag: Malaysia","b":"1F1F2-1F1FE","j":["flag","my","banner","country","nation"]},"flag-mozambique":{"a":"Flag: Mozambique","b":"1F1F2-1F1FF","j":["flag","banner","mz","country","nation"]},"flag-namibia":{"a":"Flag: Namibia","b":"1F1F3-1F1E6","j":["na","flag","banner","country","nation"]},"flag-new-caledonia":{"a":"Flag: New Caledonia","b":"1F1F3-1F1E8","j":["country","flag","banner","caledonia","nation","new"]},"flag-niger":{"a":"Flag: Niger","b":"1F1F3-1F1EA","j":["flag","banner","ne","country","nation"]},"flag-norfolk-island":{"a":"Flag: Norfolk Island","b":"1F1F3-1F1EB","j":["norfolk","flag","banner","country","island","nation"]},"flag-nigeria":{"a":"Flag: Nigeria","b":"1F1F3-1F1EC","j":["flag","country","banner","nation"]},"flag-nicaragua":{"a":"Flag: Nicaragua","b":"1F1F3-1F1EE","j":["flag","banner","country","nation","ni"]},"flag-netherlands":{"a":"Flag: Netherlands","b":"1F1F3-1F1F1","j":["flag","banner","nl","country","nation"]},"flag-norway":{"a":"Flag: Norway","b":"1F1F3-1F1F4","j":["no","flag","banner","country","nation"]},"flag-nepal":{"a":"Flag: Nepal","b":"1F1F3-1F1F5","j":["flag","np","banner","country","nation"]},"flag-nauru":{"a":"Flag: Nauru","b":"1F1F3-1F1F7","j":["nr","flag","banner","country","nation"]},"flag-niue":{"a":"Flag: Niue","b":"1F1F3-1F1FA","j":["nu","flag","banner","country","nation"]},"flag-new-zealand":{"a":"Flag: New Zealand","b":"1F1F3-1F1FF","j":["flag","banner","country","zealand","nation","new"]},"flag-oman":{"a":"Flag: Oman","b":"1F1F4-1F1F2","j":["om_symbol","flag","banner","country","nation"]},"flag-panama":{"a":"Flag: Panama","b":"1F1F5-1F1E6","j":["flag","banner","country","nation","pa"]},"flag-peru":{"a":"Flag: Peru","b":"1F1F5-1F1EA","j":["flag","banner","pe","country","nation"]},"flag-french-polynesia":{"a":"Flag: French Polynesia","b":"1F1F5-1F1EB","j":["flag","banner","french","country","nation","polynesia"]},"flag-papua-new-guinea":{"a":"Flag: Papua New Guinea","b":"1F1F5-1F1EC","j":["flag","banner","guinea","country","nation","papua","new"]},"flag-philippines":{"a":"Flag: Philippines","b":"1F1F5-1F1ED","j":["ph","flag","banner","country","nation"]},"flag-pakistan":{"a":"Flag: Pakistan","b":"1F1F5-1F1F0","j":["pk","flag","banner","country","nation"]},"flag-poland":{"a":"Flag: Poland","b":"1F1F5-1F1F1","j":["flag","pl","banner","country","nation"]},"flag-st-pierre--miquelon":{"a":"Flag: St. Pierre & Miquelon","b":"1F1F5-1F1F2","j":["pierre","nation","flag_st_pierre_miquelon","flag","miquelon","banner","country","saint"]},"flag-pitcairn-islands":{"a":"Flag: Pitcairn Islands","b":"1F1F5-1F1F3","j":["country","flag","banner","pitcairn","nation"]},"flag-puerto-rico":{"a":"Flag: Puerto Rico","b":"1F1F5-1F1F7","j":["flag","banner","rico","country","puerto","nation"]},"flag-palestinian-territories":{"a":"Flag: Palestinian Territories","b":"1F1F5-1F1F8","j":["palestine","nation","territories","flag","banner","country","palestinian"]},"flag-portugal":{"a":"Flag: Portugal","b":"1F1F5-1F1F9","j":["flag","pt","banner","country","nation"]},"flag-palau":{"a":"Flag: Palau","b":"1F1F5-1F1FC","j":["flag","banner","pw","country","nation"]},"flag-paraguay":{"a":"Flag: Paraguay","b":"1F1F5-1F1FE","j":["py","flag","banner","country","nation"]},"flag-qatar":{"a":"Flag: Qatar","b":"1F1F6-1F1E6","j":["flag","qa","banner","country","nation"]},"flag-runion":{"a":"Flag: Réunion","b":"1F1F7-1F1EA","j":["flag_reunion","réunion","flag","banner","country","nation"]},"flag-romania":{"a":"Flag: Romania","b":"1F1F7-1F1F4","j":["ro","flag","banner","country","nation"]},"flag-serbia":{"a":"Flag: Serbia","b":"1F1F7-1F1F8","j":["flag","banner","rs","country","nation"]},"flag-russia":{"a":"Flag: Russia","b":"1F1F7-1F1FA","j":["russian","federation","flag","banner","country","nation"]},"flag-rwanda":{"a":"Flag: Rwanda","b":"1F1F7-1F1FC","j":["rw","flag","banner","country","nation"]},"flag-saudi-arabia":{"a":"Flag: Saudi Arabia","b":"1F1F8-1F1E6","j":["flag","country","banner","nation"]},"flag-solomon-islands":{"a":"Flag: Solomon Islands","b":"1F1F8-1F1E7","j":["islands","flag","banner","country","nation","solomon"]},"flag-seychelles":{"a":"Flag: Seychelles","b":"1F1F8-1F1E8","j":["flag","banner","sc","country","nation"]},"flag-sudan":{"a":"Flag: Sudan","b":"1F1F8-1F1E9","j":["sd","flag","banner","country","nation"]},"flag-sweden":{"a":"Flag: Sweden","b":"1F1F8-1F1EA","j":["flag","banner","country","nation","se"]},"flag-singapore":{"a":"Flag: Singapore","b":"1F1F8-1F1EC","j":["flag","banner","sg","country","nation"]},"flag-st-helena":{"a":"Flag: St. Helena","b":"1F1F8-1F1ED","j":["cunha","saint","flag","tristan","banner","helena","ascension","country","nation"]},"flag-slovenia":{"a":"Flag: Slovenia","b":"1F1F8-1F1EE","j":["flag","si","banner","country","nation"]},"flag-svalbard--jan-mayen":{"a":"Flag: Svalbard & Jan Mayen","b":"1F1F8-1F1EF","j":["flag_svalbard_jan_mayen","flag"]},"flag-slovakia":{"a":"Flag: Slovakia","b":"1F1F8-1F1F0","j":["flag","sk","banner","country","nation"]},"flag-sierra-leone":{"a":"Flag: Sierra Leone","b":"1F1F8-1F1F1","j":["sierra","leone","flag","banner","country","nation"]},"flag-san-marino":{"a":"Flag: San Marino","b":"1F1F8-1F1F2","j":["san","marino","flag","banner","country","nation"]},"flag-senegal":{"a":"Flag: Senegal","b":"1F1F8-1F1F3","j":["sn","flag","banner","country","nation"]},"flag-somalia":{"a":"Flag: Somalia","b":"1F1F8-1F1F4","j":["flag","banner","so","country","nation"]},"flag-suriname":{"a":"Flag: Suriname","b":"1F1F8-1F1F7","j":["sr","flag","banner","country","nation"]},"flag-south-sudan":{"a":"Flag: South Sudan","b":"1F1F8-1F1F8","j":["sd","south","flag","banner","country","nation"]},"flag-so-tom--prncipe":{"a":"Flag: São Tomé & Príncipe","b":"1F1F8-1F1F9","j":["principe","tome","flag","flag_sao_tome_principe","banner","country","nation","sao"]},"flag-el-salvador":{"a":"Flag: El Salvador","b":"1F1F8-1F1FB","j":["el","flag","banner","salvador","country","nation"]},"flag-sint-maarten":{"a":"Flag: Sint Maarten","b":"1F1F8-1F1FD","j":["maarten","sint","dutch","flag","banner","country","nation"]},"flag-syria":{"a":"Flag: Syria","b":"1F1F8-1F1FE","j":["syrian","flag","banner","arab","republic","country","nation"]},"flag-eswatini":{"a":"Flag: Eswatini","b":"1F1F8-1F1FF","j":["sz","flag","banner","country","nation"]},"flag-tristan-da-cunha":{"a":"Flag: Tristan Da Cunha","b":"1F1F9-1F1E6","j":["flag"]},"flag-turks--caicos-islands":{"a":"Flag: Turks & Caicos Islands","b":"1F1F9-1F1E8","j":["islands","turks","flag","flag_turks_caicos_islands","banner","caicos","country","nation"]},"flag-chad":{"a":"Flag: Chad","b":"1F1F9-1F1E9","j":["td","flag","banner","country","nation"]},"flag-french-southern-territories":{"a":"Flag: French Southern Territories","b":"1F1F9-1F1EB","j":["territories","southern","flag","banner","french","country","nation"]},"flag-togo":{"a":"Flag: Togo","b":"1F1F9-1F1EC","j":["tg","flag","banner","country","nation"]},"flag-thailand":{"a":"Flag: Thailand","b":"1F1F9-1F1ED","j":["flag","banner","th","country","nation"]},"flag-tajikistan":{"a":"Flag: Tajikistan","b":"1F1F9-1F1EF","j":["tj","flag","banner","country","nation"]},"flag-tokelau":{"a":"Flag: Tokelau","b":"1F1F9-1F1F0","j":["tk","flag","banner","country","nation"]},"flag-timorleste":{"a":"Flag: Timor-Leste","b":"1F1F9-1F1F1","j":["timor","flag_timor_leste","flag","banner","leste","country","nation"]},"flag-turkmenistan":{"a":"Flag: Turkmenistan","b":"1F1F9-1F1F2","j":["flag","country","banner","nation"]},"flag-tunisia":{"a":"Flag: Tunisia","b":"1F1F9-1F1F3","j":["tn","flag","banner","country","nation"]},"flag-tonga":{"a":"Flag: Tonga","b":"1F1F9-1F1F4","j":["to","flag","banner","country","nation"]},"flag-turkey":{"a":"Flag: Turkey","b":"1F1F9-1F1F7","j":["turkey","flag","banner","country","nation"]},"flag-trinidad--tobago":{"a":"Flag: Trinidad & Tobago","b":"1F1F9-1F1F9","j":["flag_trinidad_tobago","flag","banner","trinidad","tobago","country","nation"]},"flag-tuvalu":{"a":"Flag: Tuvalu","b":"1F1F9-1F1FB","j":["flag","country","banner","nation"]},"flag-taiwan":{"a":"Flag: Taiwan","b":"1F1F9-1F1FC","j":["tw","flag","banner","country","nation"]},"flag-tanzania":{"a":"Flag: Tanzania","b":"1F1F9-1F1FF","j":["tanzania","united","flag","banner","republic","country","nation"]},"flag-ukraine":{"a":"Flag: Ukraine","b":"1F1FA-1F1E6","j":["flag","banner","country","nation","ua"]},"flag-uganda":{"a":"Flag: Uganda","b":"1F1FA-1F1EC","j":["ug","flag","banner","country","nation"]},"flag-us-outlying-islands":{"a":"Flag: U.S. Outlying Islands","b":"1F1FA-1F1F2","j":["flag","flag_u_s_outlying_islands"]},"flag-united-nations":{"a":"Flag: United Nations","b":"1F1FA-1F1F3","j":["flag","un","banner"]},"flag-united-states":{"a":"Flag: United States","b":"1F1FA-1F1F8","j":["america","united","flag","states","banner","country","nation"]},"flag-uruguay":{"a":"Flag: Uruguay","b":"1F1FA-1F1FE","j":["flag","uy","banner","country","nation"]},"flag-uzbekistan":{"a":"Flag: Uzbekistan","b":"1F1FA-1F1FF","j":["uz","flag","banner","country","nation"]},"flag-vatican-city":{"a":"Flag: Vatican City","b":"1F1FB-1F1E6","j":["vatican","city","flag","banner","country","nation"]},"flag-st-vincent--grenadines":{"a":"Flag: St. Vincent & Grenadines","b":"1F1FB-1F1E8","j":["nation","flag_st_vincent_grenadines","vincent","grenadines","flag","banner","country","saint"]},"flag-venezuela":{"a":"Flag: Venezuela","b":"1F1FB-1F1EA","j":["bolivarian","ve","flag","banner","republic","country","nation"]},"flag-british-virgin-islands":{"a":"Flag: British Virgin Islands","b":"1F1FB-1F1EC","j":["virgin","bvi","islands","british","flag","banner","country","nation"]},"flag-us-virgin-islands":{"a":"Flag: U.S. Virgin Islands","b":"1F1FB-1F1EE","j":["virgin","islands","us","flag","banner","country","nation","flag_u_s_virgin_islands"]},"flag-vietnam":{"a":"Flag: Vietnam","b":"1F1FB-1F1F3","j":["nam","flag","banner","viet","country","nation"]},"flag-vanuatu":{"a":"Flag: Vanuatu","b":"1F1FB-1F1FA","j":["flag","banner","vu","country","nation"]},"flag-wallis--futuna":{"a":"Flag: Wallis & Futuna","b":"1F1FC-1F1EB","j":["flag_wallis_futuna","flag","wallis","futuna","banner","country","nation"]},"flag-samoa":{"a":"Flag: Samoa","b":"1F1FC-1F1F8","j":["ws","flag","banner","country","nation"]},"flag-kosovo":{"a":"Flag: Kosovo","b":"1F1FD-1F1F0","j":["flag","banner","country","nation","xk"]},"flag-yemen":{"a":"Flag: Yemen","b":"1F1FE-1F1EA","j":["flag","banner","ye","country","nation"]},"flag-mayotte":{"a":"Flag: Mayotte","b":"1F1FE-1F1F9","j":["flag","banner","country","yt","nation"]},"flag-south-africa":{"a":"Flag: South Africa","b":"1F1FF-1F1E6","j":["south","africa","flag","banner","country","nation"]},"flag-zambia":{"a":"Flag: Zambia","b":"1F1FF-1F1F2","j":["zm","flag","banner","country","nation"]},"flag-zimbabwe":{"a":"Flag: Zimbabwe","b":"1F1FF-1F1FC","j":["zw","flag","banner","country","nation"]},"flag-england":{"a":"Flag: England","b":"1F3F4-E0067-E0062-E0065-E006E-E0067-E007F","j":["flag","english"]},"flag-scotland":{"a":"Flag: Scotland","b":"1F3F4-E0067-E0062-E0073-E0063-E0074-E007F","j":["scottish","flag"]},"flag-wales":{"a":"Flag: Wales","b":"1F3F4-E0067-E0062-E0077-E006C-E0073-E007F","j":["flag","welsh"]}},"aliases":{}} \ No newline at end of file