[
  {
    "path": ".editorconfig",
    "content": "root = true\n\n[*]\nindent_style = space\nindent_size = 2\nend_of_line = lf\ninsert_final_newline = true\ntrim_trailing_whitespace = true\n"
  },
  {
    "path": ".github/actions/setup/action.yml",
    "content": "name: setup\ndescription: setup\nruns:\n  using: composite\n  steps:\n    - uses: pnpm/action-setup@v2\n    - uses: actions/setup-node@v3\n      with:\n        cache: pnpm\n        node-version: '18'\n        registry-url: 'https://registry.npmjs.org'\n    - run: pnpm install\n      shell: bash\n"
  },
  {
    "path": ".github/workflows/test.yml",
    "content": "on:\n  push:\n    branches:\n      - master\n  pull_request:\n    branches:\n      - master\n\njobs:\n  lint:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: ./.github/actions/setup\n      - run: pnpm run lint\n  check:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: ./.github/actions/setup\n      - run: pnpm run check\n  test:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: ./.github/actions/setup\n      - run: pnpm run test\n"
  },
  {
    "path": ".github/workflows/update.yml",
    "content": "name: Up to Date\n\non:\n  schedule:\n    - cron: '0 0 * * *'\n\njobs:\n  update:\n    name: Update\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v3\n      - uses: ./.github/actions/setup\n      - run: pnpm run generate\n\n      - name: Push New Cheat Sheet to Updated Branch\n        run: |\n          git diff --name-only --exit-code && exit 0\n          git add README.md\n          git config --global user.name \"github-actions[bot]\"\n          git config --global user.email \"41898282+github-actions[bot]@users.noreply.github.com\"\n          git commit -m \"docs(readme): update emoji-cheat-sheet\"\n          git push -qf \"https://${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git\" HEAD:github-actions-auto-update\n\n      - name: Create PR from Updated Branch\n        uses: actions/github-script@v2\n        with:\n          github-token: ${{secrets.GITHUB_TOKEN}}\n          script: |\n            const {owner, repo} = context.repo\n            const branch = 'github-actions-auto-update'\n            const head = `${owner}:${branch}`\n            const title = 'docs(readme): update emoji-cheat-sheet'\n            const branchesResult = await github.repos.listBranches({ owner, repo })\n            if (branchesResult.status !== 200 || !branchesResult.data.find(({ name }) => name === branch)) {\n              return\n            }\n            const prsResult = await github.pulls.list({ owner, repo, head, state: 'open' })\n            if (prsResult.status === 200 && prsResult.data.length === 0) {\n              try {\n                await github.pulls.create({ owner, repo, head, title, base: 'master' })\n              } catch (error) {\n                console.error(error)\n              }\n            }\n"
  },
  {
    "path": ".gitignore",
    "content": "/.vscode/\n/node_modules/\n"
  },
  {
    "path": ".prettierignore",
    "content": "/pnpm-lock.yaml\n/README.md\n"
  },
  {
    "path": ".prettierrc.yml",
    "content": "arrowParens: avoid\nsemi: false\nsingleQuote: true\n"
  },
  {
    "path": "LICENSE",
    "content": "MIT License\n\nCopyright (c) Ika <ikatyang@gmail.com> (https://github.com/ikatyang)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# emoji-cheat-sheet\n\n[![Up to Date](https://github.com/ikatyang/emoji-cheat-sheet/workflows/Up%20to%20Date/badge.svg)](https://github.com/ikatyang/emoji-cheat-sheet/actions?query=workflow%3A%22Up+to+Date%22)\n\nThis cheat sheet is automatically generated from [GitHub Emoji API](https://api.github.com/emojis) and [Unicode Full Emoji List](https://unicode.org/emoji/charts/full-emoji-list.html).\n\n## Table of Contents\n\n- [Smileys & Emotion](#smileys--emotion)\n- [People & Body](#people--body)\n- [Animals & Nature](#animals--nature)\n- [Food & Drink](#food--drink)\n- [Travel & Places](#travel--places)\n- [Activities](#activities)\n- [Objects](#objects)\n- [Symbols](#symbols)\n- [Flags](#flags)\n- [GitHub Custom Emoji](#github-custom-emoji)\n\n### Smileys & Emotion\n\n- [Face Smiling](#face-smiling)\n- [Face Affection](#face-affection)\n- [Face Tongue](#face-tongue)\n- [Face Hand](#face-hand)\n- [Face Neutral Skeptical](#face-neutral-skeptical)\n- [Face Sleepy](#face-sleepy)\n- [Face Unwell](#face-unwell)\n- [Face Hat](#face-hat)\n- [Face Glasses](#face-glasses)\n- [Face Concerned](#face-concerned)\n- [Face Negative](#face-negative)\n- [Face Costume](#face-costume)\n- [Cat Face](#cat-face)\n- [Monkey Face](#monkey-face)\n- [Heart](#heart)\n- [Emotion](#emotion)\n\n#### Face Smiling\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :grinning: | `:grinning:` | :smiley: | `:smiley:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :smile: | `:smile:` | :grin: | `:grin:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :laughing: | `:laughing:` <br /> `:satisfied:` | :sweat_smile: | `:sweat_smile:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :rofl: | `:rofl:` | :joy: | `:joy:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :slightly_smiling_face: | `:slightly_smiling_face:` | :upside_down_face: | `:upside_down_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :wink: | `:wink:` | :blush: | `:blush:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :innocent: | `:innocent:` | | | [top](#table-of-contents) |\n\n#### Face Affection\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :smiling_face_with_three_hearts: | `:smiling_face_with_three_hearts:` | :heart_eyes: | `:heart_eyes:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :star_struck: | `:star_struck:` | :kissing_heart: | `:kissing_heart:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :kissing: | `:kissing:` | :relaxed: | `:relaxed:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :kissing_closed_eyes: | `:kissing_closed_eyes:` | :kissing_smiling_eyes: | `:kissing_smiling_eyes:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :smiling_face_with_tear: | `:smiling_face_with_tear:` | | | [top](#table-of-contents) |\n\n#### Face Tongue\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :yum: | `:yum:` | :stuck_out_tongue: | `:stuck_out_tongue:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :stuck_out_tongue_winking_eye: | `:stuck_out_tongue_winking_eye:` | :zany_face: | `:zany_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :stuck_out_tongue_closed_eyes: | `:stuck_out_tongue_closed_eyes:` | :money_mouth_face: | `:money_mouth_face:` | [top](#table-of-contents) |\n\n#### Face Hand\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :hugs: | `:hugs:` | :hand_over_mouth: | `:hand_over_mouth:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :shushing_face: | `:shushing_face:` | :thinking: | `:thinking:` | [top](#table-of-contents) |\n\n#### Face Neutral Skeptical\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :zipper_mouth_face: | `:zipper_mouth_face:` | :raised_eyebrow: | `:raised_eyebrow:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :neutral_face: | `:neutral_face:` | :expressionless: | `:expressionless:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :no_mouth: | `:no_mouth:` | :face_in_clouds: | `:face_in_clouds:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :smirk: | `:smirk:` | :unamused: | `:unamused:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :roll_eyes: | `:roll_eyes:` | :grimacing: | `:grimacing:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :face_exhaling: | `:face_exhaling:` | :lying_face: | `:lying_face:` | [top](#table-of-contents) |\n\n#### Face Sleepy\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :relieved: | `:relieved:` | :pensive: | `:pensive:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :sleepy: | `:sleepy:` | :drooling_face: | `:drooling_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :sleeping: | `:sleeping:` | | | [top](#table-of-contents) |\n\n#### Face Unwell\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :mask: | `:mask:` | :face_with_thermometer: | `:face_with_thermometer:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :face_with_head_bandage: | `:face_with_head_bandage:` | :nauseated_face: | `:nauseated_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :vomiting_face: | `:vomiting_face:` | :sneezing_face: | `:sneezing_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :hot_face: | `:hot_face:` | :cold_face: | `:cold_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :woozy_face: | `:woozy_face:` | :dizzy_face: | `:dizzy_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :face_with_spiral_eyes: | `:face_with_spiral_eyes:` | :exploding_head: | `:exploding_head:` | [top](#table-of-contents) |\n\n#### Face Hat\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :cowboy_hat_face: | `:cowboy_hat_face:` | :partying_face: | `:partying_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :disguised_face: | `:disguised_face:` | | | [top](#table-of-contents) |\n\n#### Face Glasses\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :sunglasses: | `:sunglasses:` | :nerd_face: | `:nerd_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :monocle_face: | `:monocle_face:` | | | [top](#table-of-contents) |\n\n#### Face Concerned\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :confused: | `:confused:` | :worried: | `:worried:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :slightly_frowning_face: | `:slightly_frowning_face:` | :frowning_face: | `:frowning_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :open_mouth: | `:open_mouth:` | :hushed: | `:hushed:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :astonished: | `:astonished:` | :flushed: | `:flushed:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :pleading_face: | `:pleading_face:` | :frowning: | `:frowning:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :anguished: | `:anguished:` | :fearful: | `:fearful:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :cold_sweat: | `:cold_sweat:` | :disappointed_relieved: | `:disappointed_relieved:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :cry: | `:cry:` | :sob: | `:sob:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :scream: | `:scream:` | :confounded: | `:confounded:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :persevere: | `:persevere:` | :disappointed: | `:disappointed:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :sweat: | `:sweat:` | :weary: | `:weary:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :tired_face: | `:tired_face:` | :yawning_face: | `:yawning_face:` | [top](#table-of-contents) |\n\n#### Face Negative\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :triumph: | `:triumph:` | :pout: | `:pout:` <br /> `:rage:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :angry: | `:angry:` | :cursing_face: | `:cursing_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :smiling_imp: | `:smiling_imp:` | :imp: | `:imp:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :skull: | `:skull:` | :skull_and_crossbones: | `:skull_and_crossbones:` | [top](#table-of-contents) |\n\n#### Face Costume\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :hankey: | `:hankey:` <br /> `:poop:` <br /> `:shit:` | :clown_face: | `:clown_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :japanese_ogre: | `:japanese_ogre:` | :japanese_goblin: | `:japanese_goblin:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :ghost: | `:ghost:` | :alien: | `:alien:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :space_invader: | `:space_invader:` | :robot: | `:robot:` | [top](#table-of-contents) |\n\n#### Cat Face\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :smiley_cat: | `:smiley_cat:` | :smile_cat: | `:smile_cat:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :joy_cat: | `:joy_cat:` | :heart_eyes_cat: | `:heart_eyes_cat:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :smirk_cat: | `:smirk_cat:` | :kissing_cat: | `:kissing_cat:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :scream_cat: | `:scream_cat:` | :crying_cat_face: | `:crying_cat_face:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :pouting_cat: | `:pouting_cat:` | | | [top](#table-of-contents) |\n\n#### Monkey Face\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :see_no_evil: | `:see_no_evil:` | :hear_no_evil: | `:hear_no_evil:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :speak_no_evil: | `:speak_no_evil:` | | | [top](#table-of-contents) |\n\n#### Heart\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :love_letter: | `:love_letter:` | :cupid: | `:cupid:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :gift_heart: | `:gift_heart:` | :sparkling_heart: | `:sparkling_heart:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :heartpulse: | `:heartpulse:` | :heartbeat: | `:heartbeat:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :revolving_hearts: | `:revolving_hearts:` | :two_hearts: | `:two_hearts:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :heart_decoration: | `:heart_decoration:` | :heavy_heart_exclamation: | `:heavy_heart_exclamation:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :broken_heart: | `:broken_heart:` | :heart_on_fire: | `:heart_on_fire:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :mending_heart: | `:mending_heart:` | :heart: | `:heart:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :orange_heart: | `:orange_heart:` | :yellow_heart: | `:yellow_heart:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :green_heart: | `:green_heart:` | :blue_heart: | `:blue_heart:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :purple_heart: | `:purple_heart:` | :brown_heart: | `:brown_heart:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :black_heart: | `:black_heart:` | :white_heart: | `:white_heart:` | [top](#table-of-contents) |\n\n#### Emotion\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#smileys--emotion) | :kiss: | `:kiss:` | :100: | `:100:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :anger: | `:anger:` | :boom: | `:boom:` <br /> `:collision:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :dizzy: | `:dizzy:` | :sweat_drops: | `:sweat_drops:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :dash: | `:dash:` | :hole: | `:hole:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :speech_balloon: | `:speech_balloon:` | :eye_speech_bubble: | `:eye_speech_bubble:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :left_speech_bubble: | `:left_speech_bubble:` | :right_anger_bubble: | `:right_anger_bubble:` | [top](#table-of-contents) |\n| [top](#smileys--emotion) | :thought_balloon: | `:thought_balloon:` | :zzz: | `:zzz:` | [top](#table-of-contents) |\n\n### People & Body\n\n- [Hand Fingers Open](#hand-fingers-open)\n- [Hand Fingers Partial](#hand-fingers-partial)\n- [Hand Single Finger](#hand-single-finger)\n- [Hand Fingers Closed](#hand-fingers-closed)\n- [Hands](#hands)\n- [Hand Prop](#hand-prop)\n- [Body Parts](#body-parts)\n- [Person](#person)\n- [Person Gesture](#person-gesture)\n- [Person Role](#person-role)\n- [Person Fantasy](#person-fantasy)\n- [Person Activity](#person-activity)\n- [Person Sport](#person-sport)\n- [Person Resting](#person-resting)\n- [Family](#family)\n- [Person Symbol](#person-symbol)\n\n#### Hand Fingers Open\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :wave: | `:wave:` | :raised_back_of_hand: | `:raised_back_of_hand:` | [top](#table-of-contents) |\n| [top](#people--body) | :raised_hand_with_fingers_splayed: | `:raised_hand_with_fingers_splayed:` | :hand: | `:hand:` <br /> `:raised_hand:` | [top](#table-of-contents) |\n| [top](#people--body) | :vulcan_salute: | `:vulcan_salute:` | | | [top](#table-of-contents) |\n\n#### Hand Fingers Partial\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :ok_hand: | `:ok_hand:` | :pinched_fingers: | `:pinched_fingers:` | [top](#table-of-contents) |\n| [top](#people--body) | :pinching_hand: | `:pinching_hand:` | :v: | `:v:` | [top](#table-of-contents) |\n| [top](#people--body) | :crossed_fingers: | `:crossed_fingers:` | :love_you_gesture: | `:love_you_gesture:` | [top](#table-of-contents) |\n| [top](#people--body) | :metal: | `:metal:` | :call_me_hand: | `:call_me_hand:` | [top](#table-of-contents) |\n\n#### Hand Single Finger\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :point_left: | `:point_left:` | :point_right: | `:point_right:` | [top](#table-of-contents) |\n| [top](#people--body) | :point_up_2: | `:point_up_2:` | :fu: | `:fu:` <br /> `:middle_finger:` | [top](#table-of-contents) |\n| [top](#people--body) | :point_down: | `:point_down:` | :point_up: | `:point_up:` | [top](#table-of-contents) |\n\n#### Hand Fingers Closed\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :+1: | `:+1:` <br /> `:thumbsup:` | :-1: | `:-1:` <br /> `:thumbsdown:` | [top](#table-of-contents) |\n| [top](#people--body) | :fist: | `:fist:` <br /> `:fist_raised:` | :facepunch: | `:facepunch:` <br /> `:fist_oncoming:` <br /> `:punch:` | [top](#table-of-contents) |\n| [top](#people--body) | :fist_left: | `:fist_left:` | :fist_right: | `:fist_right:` | [top](#table-of-contents) |\n\n#### Hands\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :clap: | `:clap:` | :raised_hands: | `:raised_hands:` | [top](#table-of-contents) |\n| [top](#people--body) | :open_hands: | `:open_hands:` | :palms_up_together: | `:palms_up_together:` | [top](#table-of-contents) |\n| [top](#people--body) | :handshake: | `:handshake:` | :pray: | `:pray:` | [top](#table-of-contents) |\n\n#### Hand Prop\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :writing_hand: | `:writing_hand:` | :nail_care: | `:nail_care:` | [top](#table-of-contents) |\n| [top](#people--body) | :selfie: | `:selfie:` | | | [top](#table-of-contents) |\n\n#### Body Parts\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :muscle: | `:muscle:` | :mechanical_arm: | `:mechanical_arm:` | [top](#table-of-contents) |\n| [top](#people--body) | :mechanical_leg: | `:mechanical_leg:` | :leg: | `:leg:` | [top](#table-of-contents) |\n| [top](#people--body) | :foot: | `:foot:` | :ear: | `:ear:` | [top](#table-of-contents) |\n| [top](#people--body) | :ear_with_hearing_aid: | `:ear_with_hearing_aid:` | :nose: | `:nose:` | [top](#table-of-contents) |\n| [top](#people--body) | :brain: | `:brain:` | :anatomical_heart: | `:anatomical_heart:` | [top](#table-of-contents) |\n| [top](#people--body) | :lungs: | `:lungs:` | :tooth: | `:tooth:` | [top](#table-of-contents) |\n| [top](#people--body) | :bone: | `:bone:` | :eyes: | `:eyes:` | [top](#table-of-contents) |\n| [top](#people--body) | :eye: | `:eye:` | :tongue: | `:tongue:` | [top](#table-of-contents) |\n| [top](#people--body) | :lips: | `:lips:` | | | [top](#table-of-contents) |\n\n#### Person\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :baby: | `:baby:` | :child: | `:child:` | [top](#table-of-contents) |\n| [top](#people--body) | :boy: | `:boy:` | :girl: | `:girl:` | [top](#table-of-contents) |\n| [top](#people--body) | :adult: | `:adult:` | :blond_haired_person: | `:blond_haired_person:` | [top](#table-of-contents) |\n| [top](#people--body) | :man: | `:man:` | :bearded_person: | `:bearded_person:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_beard: | `:man_beard:` | :woman_beard: | `:woman_beard:` | [top](#table-of-contents) |\n| [top](#people--body) | :red_haired_man: | `:red_haired_man:` | :curly_haired_man: | `:curly_haired_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :white_haired_man: | `:white_haired_man:` | :bald_man: | `:bald_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman: | `:woman:` | :red_haired_woman: | `:red_haired_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_red_hair: | `:person_red_hair:` | :curly_haired_woman: | `:curly_haired_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_curly_hair: | `:person_curly_hair:` | :white_haired_woman: | `:white_haired_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_white_hair: | `:person_white_hair:` | :bald_woman: | `:bald_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_bald: | `:person_bald:` | :blond_haired_woman: | `:blond_haired_woman:` <br /> `:blonde_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :blond_haired_man: | `:blond_haired_man:` | :older_adult: | `:older_adult:` | [top](#table-of-contents) |\n| [top](#people--body) | :older_man: | `:older_man:` | :older_woman: | `:older_woman:` | [top](#table-of-contents) |\n\n#### Person Gesture\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :frowning_person: | `:frowning_person:` | :frowning_man: | `:frowning_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :frowning_woman: | `:frowning_woman:` | :pouting_face: | `:pouting_face:` | [top](#table-of-contents) |\n| [top](#people--body) | :pouting_man: | `:pouting_man:` | :pouting_woman: | `:pouting_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :no_good: | `:no_good:` | :ng_man: | `:ng_man:` <br /> `:no_good_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :ng_woman: | `:ng_woman:` <br /> `:no_good_woman:` | :ok_person: | `:ok_person:` | [top](#table-of-contents) |\n| [top](#people--body) | :ok_man: | `:ok_man:` | :ok_woman: | `:ok_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :information_desk_person: | `:information_desk_person:` <br /> `:tipping_hand_person:` | :sassy_man: | `:sassy_man:` <br /> `:tipping_hand_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :sassy_woman: | `:sassy_woman:` <br /> `:tipping_hand_woman:` | :raising_hand: | `:raising_hand:` | [top](#table-of-contents) |\n| [top](#people--body) | :raising_hand_man: | `:raising_hand_man:` | :raising_hand_woman: | `:raising_hand_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :deaf_person: | `:deaf_person:` | :deaf_man: | `:deaf_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :deaf_woman: | `:deaf_woman:` | :bow: | `:bow:` | [top](#table-of-contents) |\n| [top](#people--body) | :bowing_man: | `:bowing_man:` | :bowing_woman: | `:bowing_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :facepalm: | `:facepalm:` | :man_facepalming: | `:man_facepalming:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_facepalming: | `:woman_facepalming:` | :shrug: | `:shrug:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_shrugging: | `:man_shrugging:` | :woman_shrugging: | `:woman_shrugging:` | [top](#table-of-contents) |\n\n#### Person Role\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :health_worker: | `:health_worker:` | :man_health_worker: | `:man_health_worker:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_health_worker: | `:woman_health_worker:` | :student: | `:student:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_student: | `:man_student:` | :woman_student: | `:woman_student:` | [top](#table-of-contents) |\n| [top](#people--body) | :teacher: | `:teacher:` | :man_teacher: | `:man_teacher:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_teacher: | `:woman_teacher:` | :judge: | `:judge:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_judge: | `:man_judge:` | :woman_judge: | `:woman_judge:` | [top](#table-of-contents) |\n| [top](#people--body) | :farmer: | `:farmer:` | :man_farmer: | `:man_farmer:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_farmer: | `:woman_farmer:` | :cook: | `:cook:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_cook: | `:man_cook:` | :woman_cook: | `:woman_cook:` | [top](#table-of-contents) |\n| [top](#people--body) | :mechanic: | `:mechanic:` | :man_mechanic: | `:man_mechanic:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_mechanic: | `:woman_mechanic:` | :factory_worker: | `:factory_worker:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_factory_worker: | `:man_factory_worker:` | :woman_factory_worker: | `:woman_factory_worker:` | [top](#table-of-contents) |\n| [top](#people--body) | :office_worker: | `:office_worker:` | :man_office_worker: | `:man_office_worker:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_office_worker: | `:woman_office_worker:` | :scientist: | `:scientist:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_scientist: | `:man_scientist:` | :woman_scientist: | `:woman_scientist:` | [top](#table-of-contents) |\n| [top](#people--body) | :technologist: | `:technologist:` | :man_technologist: | `:man_technologist:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_technologist: | `:woman_technologist:` | :singer: | `:singer:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_singer: | `:man_singer:` | :woman_singer: | `:woman_singer:` | [top](#table-of-contents) |\n| [top](#people--body) | :artist: | `:artist:` | :man_artist: | `:man_artist:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_artist: | `:woman_artist:` | :pilot: | `:pilot:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_pilot: | `:man_pilot:` | :woman_pilot: | `:woman_pilot:` | [top](#table-of-contents) |\n| [top](#people--body) | :astronaut: | `:astronaut:` | :man_astronaut: | `:man_astronaut:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_astronaut: | `:woman_astronaut:` | :firefighter: | `:firefighter:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_firefighter: | `:man_firefighter:` | :woman_firefighter: | `:woman_firefighter:` | [top](#table-of-contents) |\n| [top](#people--body) | :cop: | `:cop:` <br /> `:police_officer:` | :policeman: | `:policeman:` | [top](#table-of-contents) |\n| [top](#people--body) | :policewoman: | `:policewoman:` | :detective: | `:detective:` | [top](#table-of-contents) |\n| [top](#people--body) | :male_detective: | `:male_detective:` | :female_detective: | `:female_detective:` | [top](#table-of-contents) |\n| [top](#people--body) | :guard: | `:guard:` | :guardsman: | `:guardsman:` | [top](#table-of-contents) |\n| [top](#people--body) | :guardswoman: | `:guardswoman:` | :ninja: | `:ninja:` | [top](#table-of-contents) |\n| [top](#people--body) | :construction_worker: | `:construction_worker:` | :construction_worker_man: | `:construction_worker_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :construction_worker_woman: | `:construction_worker_woman:` | :prince: | `:prince:` | [top](#table-of-contents) |\n| [top](#people--body) | :princess: | `:princess:` | :person_with_turban: | `:person_with_turban:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_with_turban: | `:man_with_turban:` | :woman_with_turban: | `:woman_with_turban:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_with_gua_pi_mao: | `:man_with_gua_pi_mao:` | :woman_with_headscarf: | `:woman_with_headscarf:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_in_tuxedo: | `:person_in_tuxedo:` | :man_in_tuxedo: | `:man_in_tuxedo:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_in_tuxedo: | `:woman_in_tuxedo:` | :person_with_veil: | `:person_with_veil:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_with_veil: | `:man_with_veil:` | :bride_with_veil: | `:bride_with_veil:` <br /> `:woman_with_veil:` | [top](#table-of-contents) |\n| [top](#people--body) | :pregnant_woman: | `:pregnant_woman:` | :breast_feeding: | `:breast_feeding:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_feeding_baby: | `:woman_feeding_baby:` | :man_feeding_baby: | `:man_feeding_baby:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_feeding_baby: | `:person_feeding_baby:` | | | [top](#table-of-contents) |\n\n#### Person Fantasy\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :angel: | `:angel:` | :santa: | `:santa:` | [top](#table-of-contents) |\n| [top](#people--body) | :mrs_claus: | `:mrs_claus:` | :mx_claus: | `:mx_claus:` | [top](#table-of-contents) |\n| [top](#people--body) | :superhero: | `:superhero:` | :superhero_man: | `:superhero_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :superhero_woman: | `:superhero_woman:` | :supervillain: | `:supervillain:` | [top](#table-of-contents) |\n| [top](#people--body) | :supervillain_man: | `:supervillain_man:` | :supervillain_woman: | `:supervillain_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :mage: | `:mage:` | :mage_man: | `:mage_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :mage_woman: | `:mage_woman:` | :fairy: | `:fairy:` | [top](#table-of-contents) |\n| [top](#people--body) | :fairy_man: | `:fairy_man:` | :fairy_woman: | `:fairy_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :vampire: | `:vampire:` | :vampire_man: | `:vampire_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :vampire_woman: | `:vampire_woman:` | :merperson: | `:merperson:` | [top](#table-of-contents) |\n| [top](#people--body) | :merman: | `:merman:` | :mermaid: | `:mermaid:` | [top](#table-of-contents) |\n| [top](#people--body) | :elf: | `:elf:` | :elf_man: | `:elf_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :elf_woman: | `:elf_woman:` | :genie: | `:genie:` | [top](#table-of-contents) |\n| [top](#people--body) | :genie_man: | `:genie_man:` | :genie_woman: | `:genie_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :zombie: | `:zombie:` | :zombie_man: | `:zombie_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :zombie_woman: | `:zombie_woman:` | | | [top](#table-of-contents) |\n\n#### Person Activity\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :massage: | `:massage:` | :massage_man: | `:massage_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :massage_woman: | `:massage_woman:` | :haircut: | `:haircut:` | [top](#table-of-contents) |\n| [top](#people--body) | :haircut_man: | `:haircut_man:` | :haircut_woman: | `:haircut_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :walking: | `:walking:` | :walking_man: | `:walking_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :walking_woman: | `:walking_woman:` | :standing_person: | `:standing_person:` | [top](#table-of-contents) |\n| [top](#people--body) | :standing_man: | `:standing_man:` | :standing_woman: | `:standing_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :kneeling_person: | `:kneeling_person:` | :kneeling_man: | `:kneeling_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :kneeling_woman: | `:kneeling_woman:` | :person_with_probing_cane: | `:person_with_probing_cane:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_with_probing_cane: | `:man_with_probing_cane:` | :woman_with_probing_cane: | `:woman_with_probing_cane:` | [top](#table-of-contents) |\n| [top](#people--body) | :person_in_motorized_wheelchair: | `:person_in_motorized_wheelchair:` | :man_in_motorized_wheelchair: | `:man_in_motorized_wheelchair:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_in_motorized_wheelchair: | `:woman_in_motorized_wheelchair:` | :person_in_manual_wheelchair: | `:person_in_manual_wheelchair:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_in_manual_wheelchair: | `:man_in_manual_wheelchair:` | :woman_in_manual_wheelchair: | `:woman_in_manual_wheelchair:` | [top](#table-of-contents) |\n| [top](#people--body) | :runner: | `:runner:` <br /> `:running:` | :running_man: | `:running_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :running_woman: | `:running_woman:` | :dancer: | `:dancer:` <br /> `:woman_dancing:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_dancing: | `:man_dancing:` | :business_suit_levitating: | `:business_suit_levitating:` | [top](#table-of-contents) |\n| [top](#people--body) | :dancers: | `:dancers:` | :dancing_men: | `:dancing_men:` | [top](#table-of-contents) |\n| [top](#people--body) | :dancing_women: | `:dancing_women:` | :sauna_person: | `:sauna_person:` | [top](#table-of-contents) |\n| [top](#people--body) | :sauna_man: | `:sauna_man:` | :sauna_woman: | `:sauna_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :climbing: | `:climbing:` | :climbing_man: | `:climbing_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :climbing_woman: | `:climbing_woman:` | | | [top](#table-of-contents) |\n\n#### Person Sport\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :person_fencing: | `:person_fencing:` | :horse_racing: | `:horse_racing:` | [top](#table-of-contents) |\n| [top](#people--body) | :skier: | `:skier:` | :snowboarder: | `:snowboarder:` | [top](#table-of-contents) |\n| [top](#people--body) | :golfing: | `:golfing:` | :golfing_man: | `:golfing_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :golfing_woman: | `:golfing_woman:` | :surfer: | `:surfer:` | [top](#table-of-contents) |\n| [top](#people--body) | :surfing_man: | `:surfing_man:` | :surfing_woman: | `:surfing_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :rowboat: | `:rowboat:` | :rowing_man: | `:rowing_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :rowing_woman: | `:rowing_woman:` | :swimmer: | `:swimmer:` | [top](#table-of-contents) |\n| [top](#people--body) | :swimming_man: | `:swimming_man:` | :swimming_woman: | `:swimming_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :bouncing_ball_person: | `:bouncing_ball_person:` | :basketball_man: | `:basketball_man:` <br /> `:bouncing_ball_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :basketball_woman: | `:basketball_woman:` <br /> `:bouncing_ball_woman:` | :weight_lifting: | `:weight_lifting:` | [top](#table-of-contents) |\n| [top](#people--body) | :weight_lifting_man: | `:weight_lifting_man:` | :weight_lifting_woman: | `:weight_lifting_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :bicyclist: | `:bicyclist:` | :biking_man: | `:biking_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :biking_woman: | `:biking_woman:` | :mountain_bicyclist: | `:mountain_bicyclist:` | [top](#table-of-contents) |\n| [top](#people--body) | :mountain_biking_man: | `:mountain_biking_man:` | :mountain_biking_woman: | `:mountain_biking_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :cartwheeling: | `:cartwheeling:` | :man_cartwheeling: | `:man_cartwheeling:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_cartwheeling: | `:woman_cartwheeling:` | :wrestling: | `:wrestling:` | [top](#table-of-contents) |\n| [top](#people--body) | :men_wrestling: | `:men_wrestling:` | :women_wrestling: | `:women_wrestling:` | [top](#table-of-contents) |\n| [top](#people--body) | :water_polo: | `:water_polo:` | :man_playing_water_polo: | `:man_playing_water_polo:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_playing_water_polo: | `:woman_playing_water_polo:` | :handball_person: | `:handball_person:` | [top](#table-of-contents) |\n| [top](#people--body) | :man_playing_handball: | `:man_playing_handball:` | :woman_playing_handball: | `:woman_playing_handball:` | [top](#table-of-contents) |\n| [top](#people--body) | :juggling_person: | `:juggling_person:` | :man_juggling: | `:man_juggling:` | [top](#table-of-contents) |\n| [top](#people--body) | :woman_juggling: | `:woman_juggling:` | | | [top](#table-of-contents) |\n\n#### Person Resting\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :lotus_position: | `:lotus_position:` | :lotus_position_man: | `:lotus_position_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :lotus_position_woman: | `:lotus_position_woman:` | :bath: | `:bath:` | [top](#table-of-contents) |\n| [top](#people--body) | :sleeping_bed: | `:sleeping_bed:` | | | [top](#table-of-contents) |\n\n#### Family\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :people_holding_hands: | `:people_holding_hands:` | :two_women_holding_hands: | `:two_women_holding_hands:` | [top](#table-of-contents) |\n| [top](#people--body) | :couple: | `:couple:` | :two_men_holding_hands: | `:two_men_holding_hands:` | [top](#table-of-contents) |\n| [top](#people--body) | :couplekiss: | `:couplekiss:` | :couplekiss_man_woman: | `:couplekiss_man_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :couplekiss_man_man: | `:couplekiss_man_man:` | :couplekiss_woman_woman: | `:couplekiss_woman_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :couple_with_heart: | `:couple_with_heart:` | :couple_with_heart_woman_man: | `:couple_with_heart_woman_man:` | [top](#table-of-contents) |\n| [top](#people--body) | :couple_with_heart_man_man: | `:couple_with_heart_man_man:` | :couple_with_heart_woman_woman: | `:couple_with_heart_woman_woman:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_woman_boy: | `:family_man_woman_boy:` | :family_man_woman_girl: | `:family_man_woman_girl:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_woman_girl_boy: | `:family_man_woman_girl_boy:` | :family_man_woman_boy_boy: | `:family_man_woman_boy_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_woman_girl_girl: | `:family_man_woman_girl_girl:` | :family_man_man_boy: | `:family_man_man_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_man_girl: | `:family_man_man_girl:` | :family_man_man_girl_boy: | `:family_man_man_girl_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_man_boy_boy: | `:family_man_man_boy_boy:` | :family_man_man_girl_girl: | `:family_man_man_girl_girl:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_woman_woman_boy: | `:family_woman_woman_boy:` | :family_woman_woman_girl: | `:family_woman_woman_girl:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_woman_woman_girl_boy: | `:family_woman_woman_girl_boy:` | :family_woman_woman_boy_boy: | `:family_woman_woman_boy_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_woman_woman_girl_girl: | `:family_woman_woman_girl_girl:` | :family_man_boy: | `:family_man_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_boy_boy: | `:family_man_boy_boy:` | :family_man_girl: | `:family_man_girl:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_man_girl_boy: | `:family_man_girl_boy:` | :family_man_girl_girl: | `:family_man_girl_girl:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_woman_boy: | `:family_woman_boy:` | :family_woman_boy_boy: | `:family_woman_boy_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_woman_girl: | `:family_woman_girl:` | :family_woman_girl_boy: | `:family_woman_girl_boy:` | [top](#table-of-contents) |\n| [top](#people--body) | :family_woman_girl_girl: | `:family_woman_girl_girl:` | | | [top](#table-of-contents) |\n\n#### Person Symbol\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#people--body) | :speaking_head: | `:speaking_head:` | :bust_in_silhouette: | `:bust_in_silhouette:` | [top](#table-of-contents) |\n| [top](#people--body) | :busts_in_silhouette: | `:busts_in_silhouette:` | :people_hugging: | `:people_hugging:` | [top](#table-of-contents) |\n| [top](#people--body) | :family: | `:family:` | :footprints: | `:footprints:` | [top](#table-of-contents) |\n\n### Animals & Nature\n\n- [Animal Mammal](#animal-mammal)\n- [Animal Bird](#animal-bird)\n- [Animal Amphibian](#animal-amphibian)\n- [Animal Reptile](#animal-reptile)\n- [Animal Marine](#animal-marine)\n- [Animal Bug](#animal-bug)\n- [Plant Flower](#plant-flower)\n- [Plant Other](#plant-other)\n\n#### Animal Mammal\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :monkey_face: | `:monkey_face:` | :monkey: | `:monkey:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :gorilla: | `:gorilla:` | :orangutan: | `:orangutan:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :dog: | `:dog:` | :dog2: | `:dog2:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :guide_dog: | `:guide_dog:` | :service_dog: | `:service_dog:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :poodle: | `:poodle:` | :wolf: | `:wolf:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :fox_face: | `:fox_face:` | :raccoon: | `:raccoon:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :cat: | `:cat:` | :cat2: | `:cat2:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :black_cat: | `:black_cat:` | :lion: | `:lion:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :tiger: | `:tiger:` | :tiger2: | `:tiger2:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :leopard: | `:leopard:` | :horse: | `:horse:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :racehorse: | `:racehorse:` | :unicorn: | `:unicorn:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :zebra: | `:zebra:` | :deer: | `:deer:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :bison: | `:bison:` | :cow: | `:cow:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :ox: | `:ox:` | :water_buffalo: | `:water_buffalo:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :cow2: | `:cow2:` | :pig: | `:pig:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :pig2: | `:pig2:` | :boar: | `:boar:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :pig_nose: | `:pig_nose:` | :ram: | `:ram:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :sheep: | `:sheep:` | :goat: | `:goat:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :dromedary_camel: | `:dromedary_camel:` | :camel: | `:camel:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :llama: | `:llama:` | :giraffe: | `:giraffe:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :elephant: | `:elephant:` | :mammoth: | `:mammoth:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :rhinoceros: | `:rhinoceros:` | :hippopotamus: | `:hippopotamus:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :mouse: | `:mouse:` | :mouse2: | `:mouse2:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :rat: | `:rat:` | :hamster: | `:hamster:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :rabbit: | `:rabbit:` | :rabbit2: | `:rabbit2:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :chipmunk: | `:chipmunk:` | :beaver: | `:beaver:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :hedgehog: | `:hedgehog:` | :bat: | `:bat:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :bear: | `:bear:` | :polar_bear: | `:polar_bear:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :koala: | `:koala:` | :panda_face: | `:panda_face:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :sloth: | `:sloth:` | :otter: | `:otter:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :skunk: | `:skunk:` | :kangaroo: | `:kangaroo:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :badger: | `:badger:` | :feet: | `:feet:` <br /> `:paw_prints:` | [top](#table-of-contents) |\n\n#### Animal Bird\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :turkey: | `:turkey:` | :chicken: | `:chicken:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :rooster: | `:rooster:` | :hatching_chick: | `:hatching_chick:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :baby_chick: | `:baby_chick:` | :hatched_chick: | `:hatched_chick:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :bird: | `:bird:` | :penguin: | `:penguin:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :dove: | `:dove:` | :eagle: | `:eagle:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :duck: | `:duck:` | :swan: | `:swan:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :owl: | `:owl:` | :dodo: | `:dodo:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :feather: | `:feather:` | :flamingo: | `:flamingo:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :peacock: | `:peacock:` | :parrot: | `:parrot:` | [top](#table-of-contents) |\n\n#### Animal Amphibian\n\n| | ico | shortcode | |\n| - | :-: | - | - |\n| [top](#animals--nature) | :frog: | `:frog:` | [top](#table-of-contents) |\n\n#### Animal Reptile\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :crocodile: | `:crocodile:` | :turtle: | `:turtle:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :lizard: | `:lizard:` | :snake: | `:snake:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :dragon_face: | `:dragon_face:` | :dragon: | `:dragon:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :sauropod: | `:sauropod:` | :t-rex: | `:t-rex:` | [top](#table-of-contents) |\n\n#### Animal Marine\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :whale: | `:whale:` | :whale2: | `:whale2:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :dolphin: | `:dolphin:` <br /> `:flipper:` | :seal: | `:seal:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :fish: | `:fish:` | :tropical_fish: | `:tropical_fish:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :blowfish: | `:blowfish:` | :shark: | `:shark:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :octopus: | `:octopus:` | :shell: | `:shell:` | [top](#table-of-contents) |\n\n#### Animal Bug\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :snail: | `:snail:` | :butterfly: | `:butterfly:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :bug: | `:bug:` | :ant: | `:ant:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :bee: | `:bee:` <br /> `:honeybee:` | :beetle: | `:beetle:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :lady_beetle: | `:lady_beetle:` | :cricket: | `:cricket:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :cockroach: | `:cockroach:` | :spider: | `:spider:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :spider_web: | `:spider_web:` | :scorpion: | `:scorpion:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :mosquito: | `:mosquito:` | :fly: | `:fly:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :worm: | `:worm:` | :microbe: | `:microbe:` | [top](#table-of-contents) |\n\n#### Plant Flower\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :bouquet: | `:bouquet:` | :cherry_blossom: | `:cherry_blossom:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :white_flower: | `:white_flower:` | :rosette: | `:rosette:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :rose: | `:rose:` | :wilted_flower: | `:wilted_flower:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :hibiscus: | `:hibiscus:` | :sunflower: | `:sunflower:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :blossom: | `:blossom:` | :tulip: | `:tulip:` | [top](#table-of-contents) |\n\n#### Plant Other\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#animals--nature) | :seedling: | `:seedling:` | :potted_plant: | `:potted_plant:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :evergreen_tree: | `:evergreen_tree:` | :deciduous_tree: | `:deciduous_tree:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :palm_tree: | `:palm_tree:` | :cactus: | `:cactus:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :ear_of_rice: | `:ear_of_rice:` | :herb: | `:herb:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :shamrock: | `:shamrock:` | :four_leaf_clover: | `:four_leaf_clover:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :maple_leaf: | `:maple_leaf:` | :fallen_leaf: | `:fallen_leaf:` | [top](#table-of-contents) |\n| [top](#animals--nature) | :leaves: | `:leaves:` | :mushroom: | `:mushroom:` | [top](#table-of-contents) |\n\n### Food & Drink\n\n- [Food Fruit](#food-fruit)\n- [Food Vegetable](#food-vegetable)\n- [Food Prepared](#food-prepared)\n- [Food Asian](#food-asian)\n- [Food Marine](#food-marine)\n- [Food Sweet](#food-sweet)\n- [Drink](#drink)\n- [Dishware](#dishware)\n\n#### Food Fruit\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :grapes: | `:grapes:` | :melon: | `:melon:` | [top](#table-of-contents) |\n| [top](#food--drink) | :watermelon: | `:watermelon:` | :mandarin: | `:mandarin:` <br /> `:orange:` <br /> `:tangerine:` | [top](#table-of-contents) |\n| [top](#food--drink) | :lemon: | `:lemon:` | :banana: | `:banana:` | [top](#table-of-contents) |\n| [top](#food--drink) | :pineapple: | `:pineapple:` | :mango: | `:mango:` | [top](#table-of-contents) |\n| [top](#food--drink) | :apple: | `:apple:` | :green_apple: | `:green_apple:` | [top](#table-of-contents) |\n| [top](#food--drink) | :pear: | `:pear:` | :peach: | `:peach:` | [top](#table-of-contents) |\n| [top](#food--drink) | :cherries: | `:cherries:` | :strawberry: | `:strawberry:` | [top](#table-of-contents) |\n| [top](#food--drink) | :blueberries: | `:blueberries:` | :kiwi_fruit: | `:kiwi_fruit:` | [top](#table-of-contents) |\n| [top](#food--drink) | :tomato: | `:tomato:` | :olive: | `:olive:` | [top](#table-of-contents) |\n| [top](#food--drink) | :coconut: | `:coconut:` | | | [top](#table-of-contents) |\n\n#### Food Vegetable\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :avocado: | `:avocado:` | :eggplant: | `:eggplant:` | [top](#table-of-contents) |\n| [top](#food--drink) | :potato: | `:potato:` | :carrot: | `:carrot:` | [top](#table-of-contents) |\n| [top](#food--drink) | :corn: | `:corn:` | :hot_pepper: | `:hot_pepper:` | [top](#table-of-contents) |\n| [top](#food--drink) | :bell_pepper: | `:bell_pepper:` | :cucumber: | `:cucumber:` | [top](#table-of-contents) |\n| [top](#food--drink) | :leafy_green: | `:leafy_green:` | :broccoli: | `:broccoli:` | [top](#table-of-contents) |\n| [top](#food--drink) | :garlic: | `:garlic:` | :onion: | `:onion:` | [top](#table-of-contents) |\n| [top](#food--drink) | :peanuts: | `:peanuts:` | :chestnut: | `:chestnut:` | [top](#table-of-contents) |\n\n#### Food Prepared\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :bread: | `:bread:` | :croissant: | `:croissant:` | [top](#table-of-contents) |\n| [top](#food--drink) | :baguette_bread: | `:baguette_bread:` | :flatbread: | `:flatbread:` | [top](#table-of-contents) |\n| [top](#food--drink) | :pretzel: | `:pretzel:` | :bagel: | `:bagel:` | [top](#table-of-contents) |\n| [top](#food--drink) | :pancakes: | `:pancakes:` | :waffle: | `:waffle:` | [top](#table-of-contents) |\n| [top](#food--drink) | :cheese: | `:cheese:` | :meat_on_bone: | `:meat_on_bone:` | [top](#table-of-contents) |\n| [top](#food--drink) | :poultry_leg: | `:poultry_leg:` | :cut_of_meat: | `:cut_of_meat:` | [top](#table-of-contents) |\n| [top](#food--drink) | :bacon: | `:bacon:` | :hamburger: | `:hamburger:` | [top](#table-of-contents) |\n| [top](#food--drink) | :fries: | `:fries:` | :pizza: | `:pizza:` | [top](#table-of-contents) |\n| [top](#food--drink) | :hotdog: | `:hotdog:` | :sandwich: | `:sandwich:` | [top](#table-of-contents) |\n| [top](#food--drink) | :taco: | `:taco:` | :burrito: | `:burrito:` | [top](#table-of-contents) |\n| [top](#food--drink) | :tamale: | `:tamale:` | :stuffed_flatbread: | `:stuffed_flatbread:` | [top](#table-of-contents) |\n| [top](#food--drink) | :falafel: | `:falafel:` | :egg: | `:egg:` | [top](#table-of-contents) |\n| [top](#food--drink) | :fried_egg: | `:fried_egg:` | :shallow_pan_of_food: | `:shallow_pan_of_food:` | [top](#table-of-contents) |\n| [top](#food--drink) | :stew: | `:stew:` | :fondue: | `:fondue:` | [top](#table-of-contents) |\n| [top](#food--drink) | :bowl_with_spoon: | `:bowl_with_spoon:` | :green_salad: | `:green_salad:` | [top](#table-of-contents) |\n| [top](#food--drink) | :popcorn: | `:popcorn:` | :butter: | `:butter:` | [top](#table-of-contents) |\n| [top](#food--drink) | :salt: | `:salt:` | :canned_food: | `:canned_food:` | [top](#table-of-contents) |\n\n#### Food Asian\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :bento: | `:bento:` | :rice_cracker: | `:rice_cracker:` | [top](#table-of-contents) |\n| [top](#food--drink) | :rice_ball: | `:rice_ball:` | :rice: | `:rice:` | [top](#table-of-contents) |\n| [top](#food--drink) | :curry: | `:curry:` | :ramen: | `:ramen:` | [top](#table-of-contents) |\n| [top](#food--drink) | :spaghetti: | `:spaghetti:` | :sweet_potato: | `:sweet_potato:` | [top](#table-of-contents) |\n| [top](#food--drink) | :oden: | `:oden:` | :sushi: | `:sushi:` | [top](#table-of-contents) |\n| [top](#food--drink) | :fried_shrimp: | `:fried_shrimp:` | :fish_cake: | `:fish_cake:` | [top](#table-of-contents) |\n| [top](#food--drink) | :moon_cake: | `:moon_cake:` | :dango: | `:dango:` | [top](#table-of-contents) |\n| [top](#food--drink) | :dumpling: | `:dumpling:` | :fortune_cookie: | `:fortune_cookie:` | [top](#table-of-contents) |\n| [top](#food--drink) | :takeout_box: | `:takeout_box:` | | | [top](#table-of-contents) |\n\n#### Food Marine\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :crab: | `:crab:` | :lobster: | `:lobster:` | [top](#table-of-contents) |\n| [top](#food--drink) | :shrimp: | `:shrimp:` | :squid: | `:squid:` | [top](#table-of-contents) |\n| [top](#food--drink) | :oyster: | `:oyster:` | | | [top](#table-of-contents) |\n\n#### Food Sweet\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :icecream: | `:icecream:` | :shaved_ice: | `:shaved_ice:` | [top](#table-of-contents) |\n| [top](#food--drink) | :ice_cream: | `:ice_cream:` | :doughnut: | `:doughnut:` | [top](#table-of-contents) |\n| [top](#food--drink) | :cookie: | `:cookie:` | :birthday: | `:birthday:` | [top](#table-of-contents) |\n| [top](#food--drink) | :cake: | `:cake:` | :cupcake: | `:cupcake:` | [top](#table-of-contents) |\n| [top](#food--drink) | :pie: | `:pie:` | :chocolate_bar: | `:chocolate_bar:` | [top](#table-of-contents) |\n| [top](#food--drink) | :candy: | `:candy:` | :lollipop: | `:lollipop:` | [top](#table-of-contents) |\n| [top](#food--drink) | :custard: | `:custard:` | :honey_pot: | `:honey_pot:` | [top](#table-of-contents) |\n\n#### Drink\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :baby_bottle: | `:baby_bottle:` | :milk_glass: | `:milk_glass:` | [top](#table-of-contents) |\n| [top](#food--drink) | :coffee: | `:coffee:` | :teapot: | `:teapot:` | [top](#table-of-contents) |\n| [top](#food--drink) | :tea: | `:tea:` | :sake: | `:sake:` | [top](#table-of-contents) |\n| [top](#food--drink) | :champagne: | `:champagne:` | :wine_glass: | `:wine_glass:` | [top](#table-of-contents) |\n| [top](#food--drink) | :cocktail: | `:cocktail:` | :tropical_drink: | `:tropical_drink:` | [top](#table-of-contents) |\n| [top](#food--drink) | :beer: | `:beer:` | :beers: | `:beers:` | [top](#table-of-contents) |\n| [top](#food--drink) | :clinking_glasses: | `:clinking_glasses:` | :tumbler_glass: | `:tumbler_glass:` | [top](#table-of-contents) |\n| [top](#food--drink) | :cup_with_straw: | `:cup_with_straw:` | :bubble_tea: | `:bubble_tea:` | [top](#table-of-contents) |\n| [top](#food--drink) | :beverage_box: | `:beverage_box:` | :mate: | `:mate:` | [top](#table-of-contents) |\n| [top](#food--drink) | :ice_cube: | `:ice_cube:` | | | [top](#table-of-contents) |\n\n#### Dishware\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#food--drink) | :chopsticks: | `:chopsticks:` | :plate_with_cutlery: | `:plate_with_cutlery:` | [top](#table-of-contents) |\n| [top](#food--drink) | :fork_and_knife: | `:fork_and_knife:` | :spoon: | `:spoon:` | [top](#table-of-contents) |\n| [top](#food--drink) | :hocho: | `:hocho:` <br /> `:knife:` | :amphora: | `:amphora:` | [top](#table-of-contents) |\n\n### Travel & Places\n\n- [Place Map](#place-map)\n- [Place Geographic](#place-geographic)\n- [Place Building](#place-building)\n- [Place Religious](#place-religious)\n- [Place Other](#place-other)\n- [Transport Ground](#transport-ground)\n- [Transport Water](#transport-water)\n- [Transport Air](#transport-air)\n- [Hotel](#hotel)\n- [Time](#time)\n- [Sky & Weather](#sky--weather)\n\n#### Place Map\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :earth_africa: | `:earth_africa:` | :earth_americas: | `:earth_americas:` | [top](#table-of-contents) |\n| [top](#travel--places) | :earth_asia: | `:earth_asia:` | :globe_with_meridians: | `:globe_with_meridians:` | [top](#table-of-contents) |\n| [top](#travel--places) | :world_map: | `:world_map:` | :japan: | `:japan:` | [top](#table-of-contents) |\n| [top](#travel--places) | :compass: | `:compass:` | | | [top](#table-of-contents) |\n\n#### Place Geographic\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :mountain_snow: | `:mountain_snow:` | :mountain: | `:mountain:` | [top](#table-of-contents) |\n| [top](#travel--places) | :volcano: | `:volcano:` | :mount_fuji: | `:mount_fuji:` | [top](#table-of-contents) |\n| [top](#travel--places) | :camping: | `:camping:` | :beach_umbrella: | `:beach_umbrella:` | [top](#table-of-contents) |\n| [top](#travel--places) | :desert: | `:desert:` | :desert_island: | `:desert_island:` | [top](#table-of-contents) |\n| [top](#travel--places) | :national_park: | `:national_park:` | | | [top](#table-of-contents) |\n\n#### Place Building\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :stadium: | `:stadium:` | :classical_building: | `:classical_building:` | [top](#table-of-contents) |\n| [top](#travel--places) | :building_construction: | `:building_construction:` | :bricks: | `:bricks:` | [top](#table-of-contents) |\n| [top](#travel--places) | :rock: | `:rock:` | :wood: | `:wood:` | [top](#table-of-contents) |\n| [top](#travel--places) | :hut: | `:hut:` | :houses: | `:houses:` | [top](#table-of-contents) |\n| [top](#travel--places) | :derelict_house: | `:derelict_house:` | :house: | `:house:` | [top](#table-of-contents) |\n| [top](#travel--places) | :house_with_garden: | `:house_with_garden:` | :office: | `:office:` | [top](#table-of-contents) |\n| [top](#travel--places) | :post_office: | `:post_office:` | :european_post_office: | `:european_post_office:` | [top](#table-of-contents) |\n| [top](#travel--places) | :hospital: | `:hospital:` | :bank: | `:bank:` | [top](#table-of-contents) |\n| [top](#travel--places) | :hotel: | `:hotel:` | :love_hotel: | `:love_hotel:` | [top](#table-of-contents) |\n| [top](#travel--places) | :convenience_store: | `:convenience_store:` | :school: | `:school:` | [top](#table-of-contents) |\n| [top](#travel--places) | :department_store: | `:department_store:` | :factory: | `:factory:` | [top](#table-of-contents) |\n| [top](#travel--places) | :japanese_castle: | `:japanese_castle:` | :european_castle: | `:european_castle:` | [top](#table-of-contents) |\n| [top](#travel--places) | :wedding: | `:wedding:` | :tokyo_tower: | `:tokyo_tower:` | [top](#table-of-contents) |\n| [top](#travel--places) | :statue_of_liberty: | `:statue_of_liberty:` | | | [top](#table-of-contents) |\n\n#### Place Religious\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :church: | `:church:` | :mosque: | `:mosque:` | [top](#table-of-contents) |\n| [top](#travel--places) | :hindu_temple: | `:hindu_temple:` | :synagogue: | `:synagogue:` | [top](#table-of-contents) |\n| [top](#travel--places) | :shinto_shrine: | `:shinto_shrine:` | :kaaba: | `:kaaba:` | [top](#table-of-contents) |\n\n#### Place Other\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :fountain: | `:fountain:` | :tent: | `:tent:` | [top](#table-of-contents) |\n| [top](#travel--places) | :foggy: | `:foggy:` | :night_with_stars: | `:night_with_stars:` | [top](#table-of-contents) |\n| [top](#travel--places) | :cityscape: | `:cityscape:` | :sunrise_over_mountains: | `:sunrise_over_mountains:` | [top](#table-of-contents) |\n| [top](#travel--places) | :sunrise: | `:sunrise:` | :city_sunset: | `:city_sunset:` | [top](#table-of-contents) |\n| [top](#travel--places) | :city_sunrise: | `:city_sunrise:` | :bridge_at_night: | `:bridge_at_night:` | [top](#table-of-contents) |\n| [top](#travel--places) | :hotsprings: | `:hotsprings:` | :carousel_horse: | `:carousel_horse:` | [top](#table-of-contents) |\n| [top](#travel--places) | :ferris_wheel: | `:ferris_wheel:` | :roller_coaster: | `:roller_coaster:` | [top](#table-of-contents) |\n| [top](#travel--places) | :barber: | `:barber:` | :circus_tent: | `:circus_tent:` | [top](#table-of-contents) |\n\n#### Transport Ground\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :steam_locomotive: | `:steam_locomotive:` | :railway_car: | `:railway_car:` | [top](#table-of-contents) |\n| [top](#travel--places) | :bullettrain_side: | `:bullettrain_side:` | :bullettrain_front: | `:bullettrain_front:` | [top](#table-of-contents) |\n| [top](#travel--places) | :train2: | `:train2:` | :metro: | `:metro:` | [top](#table-of-contents) |\n| [top](#travel--places) | :light_rail: | `:light_rail:` | :station: | `:station:` | [top](#table-of-contents) |\n| [top](#travel--places) | :tram: | `:tram:` | :monorail: | `:monorail:` | [top](#table-of-contents) |\n| [top](#travel--places) | :mountain_railway: | `:mountain_railway:` | :train: | `:train:` | [top](#table-of-contents) |\n| [top](#travel--places) | :bus: | `:bus:` | :oncoming_bus: | `:oncoming_bus:` | [top](#table-of-contents) |\n| [top](#travel--places) | :trolleybus: | `:trolleybus:` | :minibus: | `:minibus:` | [top](#table-of-contents) |\n| [top](#travel--places) | :ambulance: | `:ambulance:` | :fire_engine: | `:fire_engine:` | [top](#table-of-contents) |\n| [top](#travel--places) | :police_car: | `:police_car:` | :oncoming_police_car: | `:oncoming_police_car:` | [top](#table-of-contents) |\n| [top](#travel--places) | :taxi: | `:taxi:` | :oncoming_taxi: | `:oncoming_taxi:` | [top](#table-of-contents) |\n| [top](#travel--places) | :car: | `:car:` <br /> `:red_car:` | :oncoming_automobile: | `:oncoming_automobile:` | [top](#table-of-contents) |\n| [top](#travel--places) | :blue_car: | `:blue_car:` | :pickup_truck: | `:pickup_truck:` | [top](#table-of-contents) |\n| [top](#travel--places) | :truck: | `:truck:` | :articulated_lorry: | `:articulated_lorry:` | [top](#table-of-contents) |\n| [top](#travel--places) | :tractor: | `:tractor:` | :racing_car: | `:racing_car:` | [top](#table-of-contents) |\n| [top](#travel--places) | :motorcycle: | `:motorcycle:` | :motor_scooter: | `:motor_scooter:` | [top](#table-of-contents) |\n| [top](#travel--places) | :manual_wheelchair: | `:manual_wheelchair:` | :motorized_wheelchair: | `:motorized_wheelchair:` | [top](#table-of-contents) |\n| [top](#travel--places) | :auto_rickshaw: | `:auto_rickshaw:` | :bike: | `:bike:` | [top](#table-of-contents) |\n| [top](#travel--places) | :kick_scooter: | `:kick_scooter:` | :skateboard: | `:skateboard:` | [top](#table-of-contents) |\n| [top](#travel--places) | :roller_skate: | `:roller_skate:` | :busstop: | `:busstop:` | [top](#table-of-contents) |\n| [top](#travel--places) | :motorway: | `:motorway:` | :railway_track: | `:railway_track:` | [top](#table-of-contents) |\n| [top](#travel--places) | :oil_drum: | `:oil_drum:` | :fuelpump: | `:fuelpump:` | [top](#table-of-contents) |\n| [top](#travel--places) | :rotating_light: | `:rotating_light:` | :traffic_light: | `:traffic_light:` | [top](#table-of-contents) |\n| [top](#travel--places) | :vertical_traffic_light: | `:vertical_traffic_light:` | :stop_sign: | `:stop_sign:` | [top](#table-of-contents) |\n| [top](#travel--places) | :construction: | `:construction:` | | | [top](#table-of-contents) |\n\n#### Transport Water\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :anchor: | `:anchor:` | :boat: | `:boat:` <br /> `:sailboat:` | [top](#table-of-contents) |\n| [top](#travel--places) | :canoe: | `:canoe:` | :speedboat: | `:speedboat:` | [top](#table-of-contents) |\n| [top](#travel--places) | :passenger_ship: | `:passenger_ship:` | :ferry: | `:ferry:` | [top](#table-of-contents) |\n| [top](#travel--places) | :motor_boat: | `:motor_boat:` | :ship: | `:ship:` | [top](#table-of-contents) |\n\n#### Transport Air\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :airplane: | `:airplane:` | :small_airplane: | `:small_airplane:` | [top](#table-of-contents) |\n| [top](#travel--places) | :flight_departure: | `:flight_departure:` | :flight_arrival: | `:flight_arrival:` | [top](#table-of-contents) |\n| [top](#travel--places) | :parachute: | `:parachute:` | :seat: | `:seat:` | [top](#table-of-contents) |\n| [top](#travel--places) | :helicopter: | `:helicopter:` | :suspension_railway: | `:suspension_railway:` | [top](#table-of-contents) |\n| [top](#travel--places) | :mountain_cableway: | `:mountain_cableway:` | :aerial_tramway: | `:aerial_tramway:` | [top](#table-of-contents) |\n| [top](#travel--places) | :artificial_satellite: | `:artificial_satellite:` | :rocket: | `:rocket:` | [top](#table-of-contents) |\n| [top](#travel--places) | :flying_saucer: | `:flying_saucer:` | | | [top](#table-of-contents) |\n\n#### Hotel\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :bellhop_bell: | `:bellhop_bell:` | :luggage: | `:luggage:` | [top](#table-of-contents) |\n\n#### Time\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :hourglass: | `:hourglass:` | :hourglass_flowing_sand: | `:hourglass_flowing_sand:` | [top](#table-of-contents) |\n| [top](#travel--places) | :watch: | `:watch:` | :alarm_clock: | `:alarm_clock:` | [top](#table-of-contents) |\n| [top](#travel--places) | :stopwatch: | `:stopwatch:` | :timer_clock: | `:timer_clock:` | [top](#table-of-contents) |\n| [top](#travel--places) | :mantelpiece_clock: | `:mantelpiece_clock:` | :clock12: | `:clock12:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock1230: | `:clock1230:` | :clock1: | `:clock1:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock130: | `:clock130:` | :clock2: | `:clock2:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock230: | `:clock230:` | :clock3: | `:clock3:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock330: | `:clock330:` | :clock4: | `:clock4:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock430: | `:clock430:` | :clock5: | `:clock5:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock530: | `:clock530:` | :clock6: | `:clock6:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock630: | `:clock630:` | :clock7: | `:clock7:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock730: | `:clock730:` | :clock8: | `:clock8:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock830: | `:clock830:` | :clock9: | `:clock9:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock930: | `:clock930:` | :clock10: | `:clock10:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock1030: | `:clock1030:` | :clock11: | `:clock11:` | [top](#table-of-contents) |\n| [top](#travel--places) | :clock1130: | `:clock1130:` | | | [top](#table-of-contents) |\n\n#### Sky & Weather\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#travel--places) | :new_moon: | `:new_moon:` | :waxing_crescent_moon: | `:waxing_crescent_moon:` | [top](#table-of-contents) |\n| [top](#travel--places) | :first_quarter_moon: | `:first_quarter_moon:` | :moon: | `:moon:` <br /> `:waxing_gibbous_moon:` | [top](#table-of-contents) |\n| [top](#travel--places) | :full_moon: | `:full_moon:` | :waning_gibbous_moon: | `:waning_gibbous_moon:` | [top](#table-of-contents) |\n| [top](#travel--places) | :last_quarter_moon: | `:last_quarter_moon:` | :waning_crescent_moon: | `:waning_crescent_moon:` | [top](#table-of-contents) |\n| [top](#travel--places) | :crescent_moon: | `:crescent_moon:` | :new_moon_with_face: | `:new_moon_with_face:` | [top](#table-of-contents) |\n| [top](#travel--places) | :first_quarter_moon_with_face: | `:first_quarter_moon_with_face:` | :last_quarter_moon_with_face: | `:last_quarter_moon_with_face:` | [top](#table-of-contents) |\n| [top](#travel--places) | :thermometer: | `:thermometer:` | :sunny: | `:sunny:` | [top](#table-of-contents) |\n| [top](#travel--places) | :full_moon_with_face: | `:full_moon_with_face:` | :sun_with_face: | `:sun_with_face:` | [top](#table-of-contents) |\n| [top](#travel--places) | :ringed_planet: | `:ringed_planet:` | :star: | `:star:` | [top](#table-of-contents) |\n| [top](#travel--places) | :star2: | `:star2:` | :stars: | `:stars:` | [top](#table-of-contents) |\n| [top](#travel--places) | :milky_way: | `:milky_way:` | :cloud: | `:cloud:` | [top](#table-of-contents) |\n| [top](#travel--places) | :partly_sunny: | `:partly_sunny:` | :cloud_with_lightning_and_rain: | `:cloud_with_lightning_and_rain:` | [top](#table-of-contents) |\n| [top](#travel--places) | :sun_behind_small_cloud: | `:sun_behind_small_cloud:` | :sun_behind_large_cloud: | `:sun_behind_large_cloud:` | [top](#table-of-contents) |\n| [top](#travel--places) | :sun_behind_rain_cloud: | `:sun_behind_rain_cloud:` | :cloud_with_rain: | `:cloud_with_rain:` | [top](#table-of-contents) |\n| [top](#travel--places) | :cloud_with_snow: | `:cloud_with_snow:` | :cloud_with_lightning: | `:cloud_with_lightning:` | [top](#table-of-contents) |\n| [top](#travel--places) | :tornado: | `:tornado:` | :fog: | `:fog:` | [top](#table-of-contents) |\n| [top](#travel--places) | :wind_face: | `:wind_face:` | :cyclone: | `:cyclone:` | [top](#table-of-contents) |\n| [top](#travel--places) | :rainbow: | `:rainbow:` | :closed_umbrella: | `:closed_umbrella:` | [top](#table-of-contents) |\n| [top](#travel--places) | :open_umbrella: | `:open_umbrella:` | :umbrella: | `:umbrella:` | [top](#table-of-contents) |\n| [top](#travel--places) | :parasol_on_ground: | `:parasol_on_ground:` | :zap: | `:zap:` | [top](#table-of-contents) |\n| [top](#travel--places) | :snowflake: | `:snowflake:` | :snowman_with_snow: | `:snowman_with_snow:` | [top](#table-of-contents) |\n| [top](#travel--places) | :snowman: | `:snowman:` | :comet: | `:comet:` | [top](#table-of-contents) |\n| [top](#travel--places) | :fire: | `:fire:` | :droplet: | `:droplet:` | [top](#table-of-contents) |\n| [top](#travel--places) | :ocean: | `:ocean:` | | | [top](#table-of-contents) |\n\n### Activities\n\n- [Event](#event)\n- [Award Medal](#award-medal)\n- [Sport](#sport)\n- [Game](#game)\n- [Arts & Crafts](#arts--crafts)\n\n#### Event\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#activities) | :jack_o_lantern: | `:jack_o_lantern:` | :christmas_tree: | `:christmas_tree:` | [top](#table-of-contents) |\n| [top](#activities) | :fireworks: | `:fireworks:` | :sparkler: | `:sparkler:` | [top](#table-of-contents) |\n| [top](#activities) | :firecracker: | `:firecracker:` | :sparkles: | `:sparkles:` | [top](#table-of-contents) |\n| [top](#activities) | :balloon: | `:balloon:` | :tada: | `:tada:` | [top](#table-of-contents) |\n| [top](#activities) | :confetti_ball: | `:confetti_ball:` | :tanabata_tree: | `:tanabata_tree:` | [top](#table-of-contents) |\n| [top](#activities) | :bamboo: | `:bamboo:` | :dolls: | `:dolls:` | [top](#table-of-contents) |\n| [top](#activities) | :flags: | `:flags:` | :wind_chime: | `:wind_chime:` | [top](#table-of-contents) |\n| [top](#activities) | :rice_scene: | `:rice_scene:` | :red_envelope: | `:red_envelope:` | [top](#table-of-contents) |\n| [top](#activities) | :ribbon: | `:ribbon:` | :gift: | `:gift:` | [top](#table-of-contents) |\n| [top](#activities) | :reminder_ribbon: | `:reminder_ribbon:` | :tickets: | `:tickets:` | [top](#table-of-contents) |\n| [top](#activities) | :ticket: | `:ticket:` | | | [top](#table-of-contents) |\n\n#### Award Medal\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#activities) | :medal_military: | `:medal_military:` | :trophy: | `:trophy:` | [top](#table-of-contents) |\n| [top](#activities) | :medal_sports: | `:medal_sports:` | :1st_place_medal: | `:1st_place_medal:` | [top](#table-of-contents) |\n| [top](#activities) | :2nd_place_medal: | `:2nd_place_medal:` | :3rd_place_medal: | `:3rd_place_medal:` | [top](#table-of-contents) |\n\n#### Sport\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#activities) | :soccer: | `:soccer:` | :baseball: | `:baseball:` | [top](#table-of-contents) |\n| [top](#activities) | :softball: | `:softball:` | :basketball: | `:basketball:` | [top](#table-of-contents) |\n| [top](#activities) | :volleyball: | `:volleyball:` | :football: | `:football:` | [top](#table-of-contents) |\n| [top](#activities) | :rugby_football: | `:rugby_football:` | :tennis: | `:tennis:` | [top](#table-of-contents) |\n| [top](#activities) | :flying_disc: | `:flying_disc:` | :bowling: | `:bowling:` | [top](#table-of-contents) |\n| [top](#activities) | :cricket_game: | `:cricket_game:` | :field_hockey: | `:field_hockey:` | [top](#table-of-contents) |\n| [top](#activities) | :ice_hockey: | `:ice_hockey:` | :lacrosse: | `:lacrosse:` | [top](#table-of-contents) |\n| [top](#activities) | :ping_pong: | `:ping_pong:` | :badminton: | `:badminton:` | [top](#table-of-contents) |\n| [top](#activities) | :boxing_glove: | `:boxing_glove:` | :martial_arts_uniform: | `:martial_arts_uniform:` | [top](#table-of-contents) |\n| [top](#activities) | :goal_net: | `:goal_net:` | :golf: | `:golf:` | [top](#table-of-contents) |\n| [top](#activities) | :ice_skate: | `:ice_skate:` | :fishing_pole_and_fish: | `:fishing_pole_and_fish:` | [top](#table-of-contents) |\n| [top](#activities) | :diving_mask: | `:diving_mask:` | :running_shirt_with_sash: | `:running_shirt_with_sash:` | [top](#table-of-contents) |\n| [top](#activities) | :ski: | `:ski:` | :sled: | `:sled:` | [top](#table-of-contents) |\n| [top](#activities) | :curling_stone: | `:curling_stone:` | | | [top](#table-of-contents) |\n\n#### Game\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#activities) | :dart: | `:dart:` | :yo_yo: | `:yo_yo:` | [top](#table-of-contents) |\n| [top](#activities) | :kite: | `:kite:` | :gun: | `:gun:` | [top](#table-of-contents) |\n| [top](#activities) | :8ball: | `:8ball:` | :crystal_ball: | `:crystal_ball:` | [top](#table-of-contents) |\n| [top](#activities) | :magic_wand: | `:magic_wand:` | :video_game: | `:video_game:` | [top](#table-of-contents) |\n| [top](#activities) | :joystick: | `:joystick:` | :slot_machine: | `:slot_machine:` | [top](#table-of-contents) |\n| [top](#activities) | :game_die: | `:game_die:` | :jigsaw: | `:jigsaw:` | [top](#table-of-contents) |\n| [top](#activities) | :teddy_bear: | `:teddy_bear:` | :pinata: | `:pinata:` | [top](#table-of-contents) |\n| [top](#activities) | :nesting_dolls: | `:nesting_dolls:` | :spades: | `:spades:` | [top](#table-of-contents) |\n| [top](#activities) | :hearts: | `:hearts:` | :diamonds: | `:diamonds:` | [top](#table-of-contents) |\n| [top](#activities) | :clubs: | `:clubs:` | :chess_pawn: | `:chess_pawn:` | [top](#table-of-contents) |\n| [top](#activities) | :black_joker: | `:black_joker:` | :mahjong: | `:mahjong:` | [top](#table-of-contents) |\n| [top](#activities) | :flower_playing_cards: | `:flower_playing_cards:` | | | [top](#table-of-contents) |\n\n#### Arts & Crafts\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#activities) | :performing_arts: | `:performing_arts:` | :framed_picture: | `:framed_picture:` | [top](#table-of-contents) |\n| [top](#activities) | :art: | `:art:` | :thread: | `:thread:` | [top](#table-of-contents) |\n| [top](#activities) | :sewing_needle: | `:sewing_needle:` | :yarn: | `:yarn:` | [top](#table-of-contents) |\n| [top](#activities) | :knot: | `:knot:` | | | [top](#table-of-contents) |\n\n### Objects\n\n- [Clothing](#clothing)\n- [Sound](#sound)\n- [Music](#music)\n- [Musical Instrument](#musical-instrument)\n- [Phone](#phone)\n- [Computer](#computer)\n- [Light & Video](#light--video)\n- [Book Paper](#book-paper)\n- [Money](#money)\n- [Mail](#mail)\n- [Writing](#writing)\n- [Office](#office)\n- [Lock](#lock)\n- [Tool](#tool)\n- [Science](#science)\n- [Medical](#medical)\n- [Household](#household)\n- [Other Object](#other-object)\n\n#### Clothing\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :eyeglasses: | `:eyeglasses:` | :dark_sunglasses: | `:dark_sunglasses:` | [top](#table-of-contents) |\n| [top](#objects) | :goggles: | `:goggles:` | :lab_coat: | `:lab_coat:` | [top](#table-of-contents) |\n| [top](#objects) | :safety_vest: | `:safety_vest:` | :necktie: | `:necktie:` | [top](#table-of-contents) |\n| [top](#objects) | :shirt: | `:shirt:` <br /> `:tshirt:` | :jeans: | `:jeans:` | [top](#table-of-contents) |\n| [top](#objects) | :scarf: | `:scarf:` | :gloves: | `:gloves:` | [top](#table-of-contents) |\n| [top](#objects) | :coat: | `:coat:` | :socks: | `:socks:` | [top](#table-of-contents) |\n| [top](#objects) | :dress: | `:dress:` | :kimono: | `:kimono:` | [top](#table-of-contents) |\n| [top](#objects) | :sari: | `:sari:` | :one_piece_swimsuit: | `:one_piece_swimsuit:` | [top](#table-of-contents) |\n| [top](#objects) | :swim_brief: | `:swim_brief:` | :shorts: | `:shorts:` | [top](#table-of-contents) |\n| [top](#objects) | :bikini: | `:bikini:` | :womans_clothes: | `:womans_clothes:` | [top](#table-of-contents) |\n| [top](#objects) | :purse: | `:purse:` | :handbag: | `:handbag:` | [top](#table-of-contents) |\n| [top](#objects) | :pouch: | `:pouch:` | :shopping: | `:shopping:` | [top](#table-of-contents) |\n| [top](#objects) | :school_satchel: | `:school_satchel:` | :thong_sandal: | `:thong_sandal:` | [top](#table-of-contents) |\n| [top](#objects) | :mans_shoe: | `:mans_shoe:` <br /> `:shoe:` | :athletic_shoe: | `:athletic_shoe:` | [top](#table-of-contents) |\n| [top](#objects) | :hiking_boot: | `:hiking_boot:` | :flat_shoe: | `:flat_shoe:` | [top](#table-of-contents) |\n| [top](#objects) | :high_heel: | `:high_heel:` | :sandal: | `:sandal:` | [top](#table-of-contents) |\n| [top](#objects) | :ballet_shoes: | `:ballet_shoes:` | :boot: | `:boot:` | [top](#table-of-contents) |\n| [top](#objects) | :crown: | `:crown:` | :womans_hat: | `:womans_hat:` | [top](#table-of-contents) |\n| [top](#objects) | :tophat: | `:tophat:` | :mortar_board: | `:mortar_board:` | [top](#table-of-contents) |\n| [top](#objects) | :billed_cap: | `:billed_cap:` | :military_helmet: | `:military_helmet:` | [top](#table-of-contents) |\n| [top](#objects) | :rescue_worker_helmet: | `:rescue_worker_helmet:` | :prayer_beads: | `:prayer_beads:` | [top](#table-of-contents) |\n| [top](#objects) | :lipstick: | `:lipstick:` | :ring: | `:ring:` | [top](#table-of-contents) |\n| [top](#objects) | :gem: | `:gem:` | | | [top](#table-of-contents) |\n\n#### Sound\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :mute: | `:mute:` | :speaker: | `:speaker:` | [top](#table-of-contents) |\n| [top](#objects) | :sound: | `:sound:` | :loud_sound: | `:loud_sound:` | [top](#table-of-contents) |\n| [top](#objects) | :loudspeaker: | `:loudspeaker:` | :mega: | `:mega:` | [top](#table-of-contents) |\n| [top](#objects) | :postal_horn: | `:postal_horn:` | :bell: | `:bell:` | [top](#table-of-contents) |\n| [top](#objects) | :no_bell: | `:no_bell:` | | | [top](#table-of-contents) |\n\n#### Music\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :musical_score: | `:musical_score:` | :musical_note: | `:musical_note:` | [top](#table-of-contents) |\n| [top](#objects) | :notes: | `:notes:` | :studio_microphone: | `:studio_microphone:` | [top](#table-of-contents) |\n| [top](#objects) | :level_slider: | `:level_slider:` | :control_knobs: | `:control_knobs:` | [top](#table-of-contents) |\n| [top](#objects) | :microphone: | `:microphone:` | :headphones: | `:headphones:` | [top](#table-of-contents) |\n| [top](#objects) | :radio: | `:radio:` | | | [top](#table-of-contents) |\n\n#### Musical Instrument\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :saxophone: | `:saxophone:` | :accordion: | `:accordion:` | [top](#table-of-contents) |\n| [top](#objects) | :guitar: | `:guitar:` | :musical_keyboard: | `:musical_keyboard:` | [top](#table-of-contents) |\n| [top](#objects) | :trumpet: | `:trumpet:` | :violin: | `:violin:` | [top](#table-of-contents) |\n| [top](#objects) | :banjo: | `:banjo:` | :drum: | `:drum:` | [top](#table-of-contents) |\n| [top](#objects) | :long_drum: | `:long_drum:` | | | [top](#table-of-contents) |\n\n#### Phone\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :iphone: | `:iphone:` | :calling: | `:calling:` | [top](#table-of-contents) |\n| [top](#objects) | :phone: | `:phone:` <br /> `:telephone:` | :telephone_receiver: | `:telephone_receiver:` | [top](#table-of-contents) |\n| [top](#objects) | :pager: | `:pager:` | :fax: | `:fax:` | [top](#table-of-contents) |\n\n#### Computer\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :battery: | `:battery:` | :electric_plug: | `:electric_plug:` | [top](#table-of-contents) |\n| [top](#objects) | :computer: | `:computer:` | :desktop_computer: | `:desktop_computer:` | [top](#table-of-contents) |\n| [top](#objects) | :printer: | `:printer:` | :keyboard: | `:keyboard:` | [top](#table-of-contents) |\n| [top](#objects) | :computer_mouse: | `:computer_mouse:` | :trackball: | `:trackball:` | [top](#table-of-contents) |\n| [top](#objects) | :minidisc: | `:minidisc:` | :floppy_disk: | `:floppy_disk:` | [top](#table-of-contents) |\n| [top](#objects) | :cd: | `:cd:` | :dvd: | `:dvd:` | [top](#table-of-contents) |\n| [top](#objects) | :abacus: | `:abacus:` | | | [top](#table-of-contents) |\n\n#### Light & Video\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :movie_camera: | `:movie_camera:` | :film_strip: | `:film_strip:` | [top](#table-of-contents) |\n| [top](#objects) | :film_projector: | `:film_projector:` | :clapper: | `:clapper:` | [top](#table-of-contents) |\n| [top](#objects) | :tv: | `:tv:` | :camera: | `:camera:` | [top](#table-of-contents) |\n| [top](#objects) | :camera_flash: | `:camera_flash:` | :video_camera: | `:video_camera:` | [top](#table-of-contents) |\n| [top](#objects) | :vhs: | `:vhs:` | :mag: | `:mag:` | [top](#table-of-contents) |\n| [top](#objects) | :mag_right: | `:mag_right:` | :candle: | `:candle:` | [top](#table-of-contents) |\n| [top](#objects) | :bulb: | `:bulb:` | :flashlight: | `:flashlight:` | [top](#table-of-contents) |\n| [top](#objects) | :izakaya_lantern: | `:izakaya_lantern:` <br /> `:lantern:` | :diya_lamp: | `:diya_lamp:` | [top](#table-of-contents) |\n\n#### Book Paper\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :notebook_with_decorative_cover: | `:notebook_with_decorative_cover:` | :closed_book: | `:closed_book:` | [top](#table-of-contents) |\n| [top](#objects) | :book: | `:book:` <br /> `:open_book:` | :green_book: | `:green_book:` | [top](#table-of-contents) |\n| [top](#objects) | :blue_book: | `:blue_book:` | :orange_book: | `:orange_book:` | [top](#table-of-contents) |\n| [top](#objects) | :books: | `:books:` | :notebook: | `:notebook:` | [top](#table-of-contents) |\n| [top](#objects) | :ledger: | `:ledger:` | :page_with_curl: | `:page_with_curl:` | [top](#table-of-contents) |\n| [top](#objects) | :scroll: | `:scroll:` | :page_facing_up: | `:page_facing_up:` | [top](#table-of-contents) |\n| [top](#objects) | :newspaper: | `:newspaper:` | :newspaper_roll: | `:newspaper_roll:` | [top](#table-of-contents) |\n| [top](#objects) | :bookmark_tabs: | `:bookmark_tabs:` | :bookmark: | `:bookmark:` | [top](#table-of-contents) |\n| [top](#objects) | :label: | `:label:` | | | [top](#table-of-contents) |\n\n#### Money\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :moneybag: | `:moneybag:` | :coin: | `:coin:` | [top](#table-of-contents) |\n| [top](#objects) | :yen: | `:yen:` | :dollar: | `:dollar:` | [top](#table-of-contents) |\n| [top](#objects) | :euro: | `:euro:` | :pound: | `:pound:` | [top](#table-of-contents) |\n| [top](#objects) | :money_with_wings: | `:money_with_wings:` | :credit_card: | `:credit_card:` | [top](#table-of-contents) |\n| [top](#objects) | :receipt: | `:receipt:` | :chart: | `:chart:` | [top](#table-of-contents) |\n\n#### Mail\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :envelope: | `:envelope:` | :e-mail: | `:e-mail:` <br /> `:email:` | [top](#table-of-contents) |\n| [top](#objects) | :incoming_envelope: | `:incoming_envelope:` | :envelope_with_arrow: | `:envelope_with_arrow:` | [top](#table-of-contents) |\n| [top](#objects) | :outbox_tray: | `:outbox_tray:` | :inbox_tray: | `:inbox_tray:` | [top](#table-of-contents) |\n| [top](#objects) | :package: | `:package:` | :mailbox: | `:mailbox:` | [top](#table-of-contents) |\n| [top](#objects) | :mailbox_closed: | `:mailbox_closed:` | :mailbox_with_mail: | `:mailbox_with_mail:` | [top](#table-of-contents) |\n| [top](#objects) | :mailbox_with_no_mail: | `:mailbox_with_no_mail:` | :postbox: | `:postbox:` | [top](#table-of-contents) |\n| [top](#objects) | :ballot_box: | `:ballot_box:` | | | [top](#table-of-contents) |\n\n#### Writing\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :pencil2: | `:pencil2:` | :black_nib: | `:black_nib:` | [top](#table-of-contents) |\n| [top](#objects) | :fountain_pen: | `:fountain_pen:` | :pen: | `:pen:` | [top](#table-of-contents) |\n| [top](#objects) | :paintbrush: | `:paintbrush:` | :crayon: | `:crayon:` | [top](#table-of-contents) |\n| [top](#objects) | :memo: | `:memo:` <br /> `:pencil:` | | | [top](#table-of-contents) |\n\n#### Office\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :briefcase: | `:briefcase:` | :file_folder: | `:file_folder:` | [top](#table-of-contents) |\n| [top](#objects) | :open_file_folder: | `:open_file_folder:` | :card_index_dividers: | `:card_index_dividers:` | [top](#table-of-contents) |\n| [top](#objects) | :date: | `:date:` | :calendar: | `:calendar:` | [top](#table-of-contents) |\n| [top](#objects) | :spiral_notepad: | `:spiral_notepad:` | :spiral_calendar: | `:spiral_calendar:` | [top](#table-of-contents) |\n| [top](#objects) | :card_index: | `:card_index:` | :chart_with_upwards_trend: | `:chart_with_upwards_trend:` | [top](#table-of-contents) |\n| [top](#objects) | :chart_with_downwards_trend: | `:chart_with_downwards_trend:` | :bar_chart: | `:bar_chart:` | [top](#table-of-contents) |\n| [top](#objects) | :clipboard: | `:clipboard:` | :pushpin: | `:pushpin:` | [top](#table-of-contents) |\n| [top](#objects) | :round_pushpin: | `:round_pushpin:` | :paperclip: | `:paperclip:` | [top](#table-of-contents) |\n| [top](#objects) | :paperclips: | `:paperclips:` | :straight_ruler: | `:straight_ruler:` | [top](#table-of-contents) |\n| [top](#objects) | :triangular_ruler: | `:triangular_ruler:` | :scissors: | `:scissors:` | [top](#table-of-contents) |\n| [top](#objects) | :card_file_box: | `:card_file_box:` | :file_cabinet: | `:file_cabinet:` | [top](#table-of-contents) |\n| [top](#objects) | :wastebasket: | `:wastebasket:` | | | [top](#table-of-contents) |\n\n#### Lock\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :lock: | `:lock:` | :unlock: | `:unlock:` | [top](#table-of-contents) |\n| [top](#objects) | :lock_with_ink_pen: | `:lock_with_ink_pen:` | :closed_lock_with_key: | `:closed_lock_with_key:` | [top](#table-of-contents) |\n| [top](#objects) | :key: | `:key:` | :old_key: | `:old_key:` | [top](#table-of-contents) |\n\n#### Tool\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :hammer: | `:hammer:` | :axe: | `:axe:` | [top](#table-of-contents) |\n| [top](#objects) | :pick: | `:pick:` | :hammer_and_pick: | `:hammer_and_pick:` | [top](#table-of-contents) |\n| [top](#objects) | :hammer_and_wrench: | `:hammer_and_wrench:` | :dagger: | `:dagger:` | [top](#table-of-contents) |\n| [top](#objects) | :crossed_swords: | `:crossed_swords:` | :bomb: | `:bomb:` | [top](#table-of-contents) |\n| [top](#objects) | :boomerang: | `:boomerang:` | :bow_and_arrow: | `:bow_and_arrow:` | [top](#table-of-contents) |\n| [top](#objects) | :shield: | `:shield:` | :carpentry_saw: | `:carpentry_saw:` | [top](#table-of-contents) |\n| [top](#objects) | :wrench: | `:wrench:` | :screwdriver: | `:screwdriver:` | [top](#table-of-contents) |\n| [top](#objects) | :nut_and_bolt: | `:nut_and_bolt:` | :gear: | `:gear:` | [top](#table-of-contents) |\n| [top](#objects) | :clamp: | `:clamp:` | :balance_scale: | `:balance_scale:` | [top](#table-of-contents) |\n| [top](#objects) | :probing_cane: | `:probing_cane:` | :link: | `:link:` | [top](#table-of-contents) |\n| [top](#objects) | :chains: | `:chains:` | :hook: | `:hook:` | [top](#table-of-contents) |\n| [top](#objects) | :toolbox: | `:toolbox:` | :magnet: | `:magnet:` | [top](#table-of-contents) |\n| [top](#objects) | :ladder: | `:ladder:` | | | [top](#table-of-contents) |\n\n#### Science\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :alembic: | `:alembic:` | :test_tube: | `:test_tube:` | [top](#table-of-contents) |\n| [top](#objects) | :petri_dish: | `:petri_dish:` | :dna: | `:dna:` | [top](#table-of-contents) |\n| [top](#objects) | :microscope: | `:microscope:` | :telescope: | `:telescope:` | [top](#table-of-contents) |\n| [top](#objects) | :satellite: | `:satellite:` | | | [top](#table-of-contents) |\n\n#### Medical\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :syringe: | `:syringe:` | :drop_of_blood: | `:drop_of_blood:` | [top](#table-of-contents) |\n| [top](#objects) | :pill: | `:pill:` | :adhesive_bandage: | `:adhesive_bandage:` | [top](#table-of-contents) |\n| [top](#objects) | :stethoscope: | `:stethoscope:` | | | [top](#table-of-contents) |\n\n#### Household\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :door: | `:door:` | :elevator: | `:elevator:` | [top](#table-of-contents) |\n| [top](#objects) | :mirror: | `:mirror:` | :window: | `:window:` | [top](#table-of-contents) |\n| [top](#objects) | :bed: | `:bed:` | :couch_and_lamp: | `:couch_and_lamp:` | [top](#table-of-contents) |\n| [top](#objects) | :chair: | `:chair:` | :toilet: | `:toilet:` | [top](#table-of-contents) |\n| [top](#objects) | :plunger: | `:plunger:` | :shower: | `:shower:` | [top](#table-of-contents) |\n| [top](#objects) | :bathtub: | `:bathtub:` | :mouse_trap: | `:mouse_trap:` | [top](#table-of-contents) |\n| [top](#objects) | :razor: | `:razor:` | :lotion_bottle: | `:lotion_bottle:` | [top](#table-of-contents) |\n| [top](#objects) | :safety_pin: | `:safety_pin:` | :broom: | `:broom:` | [top](#table-of-contents) |\n| [top](#objects) | :basket: | `:basket:` | :roll_of_paper: | `:roll_of_paper:` | [top](#table-of-contents) |\n| [top](#objects) | :bucket: | `:bucket:` | :soap: | `:soap:` | [top](#table-of-contents) |\n| [top](#objects) | :toothbrush: | `:toothbrush:` | :sponge: | `:sponge:` | [top](#table-of-contents) |\n| [top](#objects) | :fire_extinguisher: | `:fire_extinguisher:` | :shopping_cart: | `:shopping_cart:` | [top](#table-of-contents) |\n\n#### Other Object\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#objects) | :smoking: | `:smoking:` | :coffin: | `:coffin:` | [top](#table-of-contents) |\n| [top](#objects) | :headstone: | `:headstone:` | :funeral_urn: | `:funeral_urn:` | [top](#table-of-contents) |\n| [top](#objects) | :nazar_amulet: | `:nazar_amulet:` | :moyai: | `:moyai:` | [top](#table-of-contents) |\n| [top](#objects) | :placard: | `:placard:` | | | [top](#table-of-contents) |\n\n### Symbols\n\n- [Transport Sign](#transport-sign)\n- [Warning](#warning)\n- [Arrow](#arrow)\n- [Religion](#religion)\n- [Zodiac](#zodiac)\n- [Av Symbol](#av-symbol)\n- [Gender](#gender)\n- [Math](#math)\n- [Punctuation](#punctuation)\n- [Currency](#currency)\n- [Other Symbol](#other-symbol)\n- [Keycap](#keycap)\n- [Alphanum](#alphanum)\n- [Geometric](#geometric)\n\n#### Transport Sign\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :atm: | `:atm:` | :put_litter_in_its_place: | `:put_litter_in_its_place:` | [top](#table-of-contents) |\n| [top](#symbols) | :potable_water: | `:potable_water:` | :wheelchair: | `:wheelchair:` | [top](#table-of-contents) |\n| [top](#symbols) | :mens: | `:mens:` | :womens: | `:womens:` | [top](#table-of-contents) |\n| [top](#symbols) | :restroom: | `:restroom:` | :baby_symbol: | `:baby_symbol:` | [top](#table-of-contents) |\n| [top](#symbols) | :wc: | `:wc:` | :passport_control: | `:passport_control:` | [top](#table-of-contents) |\n| [top](#symbols) | :customs: | `:customs:` | :baggage_claim: | `:baggage_claim:` | [top](#table-of-contents) |\n| [top](#symbols) | :left_luggage: | `:left_luggage:` | | | [top](#table-of-contents) |\n\n#### Warning\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :warning: | `:warning:` | :children_crossing: | `:children_crossing:` | [top](#table-of-contents) |\n| [top](#symbols) | :no_entry: | `:no_entry:` | :no_entry_sign: | `:no_entry_sign:` | [top](#table-of-contents) |\n| [top](#symbols) | :no_bicycles: | `:no_bicycles:` | :no_smoking: | `:no_smoking:` | [top](#table-of-contents) |\n| [top](#symbols) | :do_not_litter: | `:do_not_litter:` | :non-potable_water: | `:non-potable_water:` | [top](#table-of-contents) |\n| [top](#symbols) | :no_pedestrians: | `:no_pedestrians:` | :no_mobile_phones: | `:no_mobile_phones:` | [top](#table-of-contents) |\n| [top](#symbols) | :underage: | `:underage:` | :radioactive: | `:radioactive:` | [top](#table-of-contents) |\n| [top](#symbols) | :biohazard: | `:biohazard:` | | | [top](#table-of-contents) |\n\n#### Arrow\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :arrow_up: | `:arrow_up:` | :arrow_upper_right: | `:arrow_upper_right:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_right: | `:arrow_right:` | :arrow_lower_right: | `:arrow_lower_right:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_down: | `:arrow_down:` | :arrow_lower_left: | `:arrow_lower_left:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_left: | `:arrow_left:` | :arrow_upper_left: | `:arrow_upper_left:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_up_down: | `:arrow_up_down:` | :left_right_arrow: | `:left_right_arrow:` | [top](#table-of-contents) |\n| [top](#symbols) | :leftwards_arrow_with_hook: | `:leftwards_arrow_with_hook:` | :arrow_right_hook: | `:arrow_right_hook:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_heading_up: | `:arrow_heading_up:` | :arrow_heading_down: | `:arrow_heading_down:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrows_clockwise: | `:arrows_clockwise:` | :arrows_counterclockwise: | `:arrows_counterclockwise:` | [top](#table-of-contents) |\n| [top](#symbols) | :back: | `:back:` | :end: | `:end:` | [top](#table-of-contents) |\n| [top](#symbols) | :on: | `:on:` | :soon: | `:soon:` | [top](#table-of-contents) |\n| [top](#symbols) | :top: | `:top:` | | | [top](#table-of-contents) |\n\n#### Religion\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :place_of_worship: | `:place_of_worship:` | :atom_symbol: | `:atom_symbol:` | [top](#table-of-contents) |\n| [top](#symbols) | :om: | `:om:` | :star_of_david: | `:star_of_david:` | [top](#table-of-contents) |\n| [top](#symbols) | :wheel_of_dharma: | `:wheel_of_dharma:` | :yin_yang: | `:yin_yang:` | [top](#table-of-contents) |\n| [top](#symbols) | :latin_cross: | `:latin_cross:` | :orthodox_cross: | `:orthodox_cross:` | [top](#table-of-contents) |\n| [top](#symbols) | :star_and_crescent: | `:star_and_crescent:` | :peace_symbol: | `:peace_symbol:` | [top](#table-of-contents) |\n| [top](#symbols) | :menorah: | `:menorah:` | :six_pointed_star: | `:six_pointed_star:` | [top](#table-of-contents) |\n\n#### Zodiac\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :aries: | `:aries:` | :taurus: | `:taurus:` | [top](#table-of-contents) |\n| [top](#symbols) | :gemini: | `:gemini:` | :cancer: | `:cancer:` | [top](#table-of-contents) |\n| [top](#symbols) | :leo: | `:leo:` | :virgo: | `:virgo:` | [top](#table-of-contents) |\n| [top](#symbols) | :libra: | `:libra:` | :scorpius: | `:scorpius:` | [top](#table-of-contents) |\n| [top](#symbols) | :sagittarius: | `:sagittarius:` | :capricorn: | `:capricorn:` | [top](#table-of-contents) |\n| [top](#symbols) | :aquarius: | `:aquarius:` | :pisces: | `:pisces:` | [top](#table-of-contents) |\n| [top](#symbols) | :ophiuchus: | `:ophiuchus:` | | | [top](#table-of-contents) |\n\n#### Av Symbol\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :twisted_rightwards_arrows: | `:twisted_rightwards_arrows:` | :repeat: | `:repeat:` | [top](#table-of-contents) |\n| [top](#symbols) | :repeat_one: | `:repeat_one:` | :arrow_forward: | `:arrow_forward:` | [top](#table-of-contents) |\n| [top](#symbols) | :fast_forward: | `:fast_forward:` | :next_track_button: | `:next_track_button:` | [top](#table-of-contents) |\n| [top](#symbols) | :play_or_pause_button: | `:play_or_pause_button:` | :arrow_backward: | `:arrow_backward:` | [top](#table-of-contents) |\n| [top](#symbols) | :rewind: | `:rewind:` | :previous_track_button: | `:previous_track_button:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_up_small: | `:arrow_up_small:` | :arrow_double_up: | `:arrow_double_up:` | [top](#table-of-contents) |\n| [top](#symbols) | :arrow_down_small: | `:arrow_down_small:` | :arrow_double_down: | `:arrow_double_down:` | [top](#table-of-contents) |\n| [top](#symbols) | :pause_button: | `:pause_button:` | :stop_button: | `:stop_button:` | [top](#table-of-contents) |\n| [top](#symbols) | :record_button: | `:record_button:` | :eject_button: | `:eject_button:` | [top](#table-of-contents) |\n| [top](#symbols) | :cinema: | `:cinema:` | :low_brightness: | `:low_brightness:` | [top](#table-of-contents) |\n| [top](#symbols) | :high_brightness: | `:high_brightness:` | :signal_strength: | `:signal_strength:` | [top](#table-of-contents) |\n| [top](#symbols) | :vibration_mode: | `:vibration_mode:` | :mobile_phone_off: | `:mobile_phone_off:` | [top](#table-of-contents) |\n\n#### Gender\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :female_sign: | `:female_sign:` | :male_sign: | `:male_sign:` | [top](#table-of-contents) |\n| [top](#symbols) | :transgender_symbol: | `:transgender_symbol:` | | | [top](#table-of-contents) |\n\n#### Math\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :heavy_multiplication_x: | `:heavy_multiplication_x:` | :heavy_plus_sign: | `:heavy_plus_sign:` | [top](#table-of-contents) |\n| [top](#symbols) | :heavy_minus_sign: | `:heavy_minus_sign:` | :heavy_division_sign: | `:heavy_division_sign:` | [top](#table-of-contents) |\n| [top](#symbols) | :infinity: | `:infinity:` | | | [top](#table-of-contents) |\n\n#### Punctuation\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :bangbang: | `:bangbang:` | :interrobang: | `:interrobang:` | [top](#table-of-contents) |\n| [top](#symbols) | :question: | `:question:` | :grey_question: | `:grey_question:` | [top](#table-of-contents) |\n| [top](#symbols) | :grey_exclamation: | `:grey_exclamation:` | :exclamation: | `:exclamation:` <br /> `:heavy_exclamation_mark:` | [top](#table-of-contents) |\n| [top](#symbols) | :wavy_dash: | `:wavy_dash:` | | | [top](#table-of-contents) |\n\n#### Currency\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :currency_exchange: | `:currency_exchange:` | :heavy_dollar_sign: | `:heavy_dollar_sign:` | [top](#table-of-contents) |\n\n#### Other Symbol\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :medical_symbol: | `:medical_symbol:` | :recycle: | `:recycle:` | [top](#table-of-contents) |\n| [top](#symbols) | :fleur_de_lis: | `:fleur_de_lis:` | :trident: | `:trident:` | [top](#table-of-contents) |\n| [top](#symbols) | :name_badge: | `:name_badge:` | :beginner: | `:beginner:` | [top](#table-of-contents) |\n| [top](#symbols) | :o: | `:o:` | :white_check_mark: | `:white_check_mark:` | [top](#table-of-contents) |\n| [top](#symbols) | :ballot_box_with_check: | `:ballot_box_with_check:` | :heavy_check_mark: | `:heavy_check_mark:` | [top](#table-of-contents) |\n| [top](#symbols) | :x: | `:x:` | :negative_squared_cross_mark: | `:negative_squared_cross_mark:` | [top](#table-of-contents) |\n| [top](#symbols) | :curly_loop: | `:curly_loop:` | :loop: | `:loop:` | [top](#table-of-contents) |\n| [top](#symbols) | :part_alternation_mark: | `:part_alternation_mark:` | :eight_spoked_asterisk: | `:eight_spoked_asterisk:` | [top](#table-of-contents) |\n| [top](#symbols) | :eight_pointed_black_star: | `:eight_pointed_black_star:` | :sparkle: | `:sparkle:` | [top](#table-of-contents) |\n| [top](#symbols) | :copyright: | `:copyright:` | :registered: | `:registered:` | [top](#table-of-contents) |\n| [top](#symbols) | :tm: | `:tm:` | | | [top](#table-of-contents) |\n\n#### Keycap\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :hash: | `:hash:` | :asterisk: | `:asterisk:` | [top](#table-of-contents) |\n| [top](#symbols) | :zero: | `:zero:` | :one: | `:one:` | [top](#table-of-contents) |\n| [top](#symbols) | :two: | `:two:` | :three: | `:three:` | [top](#table-of-contents) |\n| [top](#symbols) | :four: | `:four:` | :five: | `:five:` | [top](#table-of-contents) |\n| [top](#symbols) | :six: | `:six:` | :seven: | `:seven:` | [top](#table-of-contents) |\n| [top](#symbols) | :eight: | `:eight:` | :nine: | `:nine:` | [top](#table-of-contents) |\n| [top](#symbols) | :keycap_ten: | `:keycap_ten:` | | | [top](#table-of-contents) |\n\n#### Alphanum\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :capital_abcd: | `:capital_abcd:` | :abcd: | `:abcd:` | [top](#table-of-contents) |\n| [top](#symbols) | :1234: | `:1234:` | :symbols: | `:symbols:` | [top](#table-of-contents) |\n| [top](#symbols) | :abc: | `:abc:` | :a: | `:a:` | [top](#table-of-contents) |\n| [top](#symbols) | :ab: | `:ab:` | :b: | `:b:` | [top](#table-of-contents) |\n| [top](#symbols) | :cl: | `:cl:` | :cool: | `:cool:` | [top](#table-of-contents) |\n| [top](#symbols) | :free: | `:free:` | :information_source: | `:information_source:` | [top](#table-of-contents) |\n| [top](#symbols) | :id: | `:id:` | :m: | `:m:` | [top](#table-of-contents) |\n| [top](#symbols) | :new: | `:new:` | :ng: | `:ng:` | [top](#table-of-contents) |\n| [top](#symbols) | :o2: | `:o2:` | :ok: | `:ok:` | [top](#table-of-contents) |\n| [top](#symbols) | :parking: | `:parking:` | :sos: | `:sos:` | [top](#table-of-contents) |\n| [top](#symbols) | :up: | `:up:` | :vs: | `:vs:` | [top](#table-of-contents) |\n| [top](#symbols) | :koko: | `:koko:` | :sa: | `:sa:` | [top](#table-of-contents) |\n| [top](#symbols) | :u6708: | `:u6708:` | :u6709: | `:u6709:` | [top](#table-of-contents) |\n| [top](#symbols) | :u6307: | `:u6307:` | :ideograph_advantage: | `:ideograph_advantage:` | [top](#table-of-contents) |\n| [top](#symbols) | :u5272: | `:u5272:` | :u7121: | `:u7121:` | [top](#table-of-contents) |\n| [top](#symbols) | :u7981: | `:u7981:` | :accept: | `:accept:` | [top](#table-of-contents) |\n| [top](#symbols) | :u7533: | `:u7533:` | :u5408: | `:u5408:` | [top](#table-of-contents) |\n| [top](#symbols) | :u7a7a: | `:u7a7a:` | :congratulations: | `:congratulations:` | [top](#table-of-contents) |\n| [top](#symbols) | :secret: | `:secret:` | :u55b6: | `:u55b6:` | [top](#table-of-contents) |\n| [top](#symbols) | :u6e80: | `:u6e80:` | | | [top](#table-of-contents) |\n\n#### Geometric\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#symbols) | :red_circle: | `:red_circle:` | :orange_circle: | `:orange_circle:` | [top](#table-of-contents) |\n| [top](#symbols) | :yellow_circle: | `:yellow_circle:` | :green_circle: | `:green_circle:` | [top](#table-of-contents) |\n| [top](#symbols) | :large_blue_circle: | `:large_blue_circle:` | :purple_circle: | `:purple_circle:` | [top](#table-of-contents) |\n| [top](#symbols) | :brown_circle: | `:brown_circle:` | :black_circle: | `:black_circle:` | [top](#table-of-contents) |\n| [top](#symbols) | :white_circle: | `:white_circle:` | :red_square: | `:red_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :orange_square: | `:orange_square:` | :yellow_square: | `:yellow_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :green_square: | `:green_square:` | :blue_square: | `:blue_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :purple_square: | `:purple_square:` | :brown_square: | `:brown_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :black_large_square: | `:black_large_square:` | :white_large_square: | `:white_large_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :black_medium_square: | `:black_medium_square:` | :white_medium_square: | `:white_medium_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :black_medium_small_square: | `:black_medium_small_square:` | :white_medium_small_square: | `:white_medium_small_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :black_small_square: | `:black_small_square:` | :white_small_square: | `:white_small_square:` | [top](#table-of-contents) |\n| [top](#symbols) | :large_orange_diamond: | `:large_orange_diamond:` | :large_blue_diamond: | `:large_blue_diamond:` | [top](#table-of-contents) |\n| [top](#symbols) | :small_orange_diamond: | `:small_orange_diamond:` | :small_blue_diamond: | `:small_blue_diamond:` | [top](#table-of-contents) |\n| [top](#symbols) | :small_red_triangle: | `:small_red_triangle:` | :small_red_triangle_down: | `:small_red_triangle_down:` | [top](#table-of-contents) |\n| [top](#symbols) | :diamond_shape_with_a_dot_inside: | `:diamond_shape_with_a_dot_inside:` | :radio_button: | `:radio_button:` | [top](#table-of-contents) |\n| [top](#symbols) | :white_square_button: | `:white_square_button:` | :black_square_button: | `:black_square_button:` | [top](#table-of-contents) |\n\n### Flags\n\n- [Flag](#flag)\n- [Country Flag](#country-flag)\n- [Subdivision Flag](#subdivision-flag)\n\n#### Flag\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#flags) | :checkered_flag: | `:checkered_flag:` | :triangular_flag_on_post: | `:triangular_flag_on_post:` | [top](#table-of-contents) |\n| [top](#flags) | :crossed_flags: | `:crossed_flags:` | :black_flag: | `:black_flag:` | [top](#table-of-contents) |\n| [top](#flags) | :white_flag: | `:white_flag:` | :rainbow_flag: | `:rainbow_flag:` | [top](#table-of-contents) |\n| [top](#flags) | :transgender_flag: | `:transgender_flag:` | :pirate_flag: | `:pirate_flag:` | [top](#table-of-contents) |\n\n#### Country Flag\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#flags) | :ascension_island: | `:ascension_island:` | :andorra: | `:andorra:` | [top](#table-of-contents) |\n| [top](#flags) | :united_arab_emirates: | `:united_arab_emirates:` | :afghanistan: | `:afghanistan:` | [top](#table-of-contents) |\n| [top](#flags) | :antigua_barbuda: | `:antigua_barbuda:` | :anguilla: | `:anguilla:` | [top](#table-of-contents) |\n| [top](#flags) | :albania: | `:albania:` | :armenia: | `:armenia:` | [top](#table-of-contents) |\n| [top](#flags) | :angola: | `:angola:` | :antarctica: | `:antarctica:` | [top](#table-of-contents) |\n| [top](#flags) | :argentina: | `:argentina:` | :american_samoa: | `:american_samoa:` | [top](#table-of-contents) |\n| [top](#flags) | :austria: | `:austria:` | :australia: | `:australia:` | [top](#table-of-contents) |\n| [top](#flags) | :aruba: | `:aruba:` | :aland_islands: | `:aland_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :azerbaijan: | `:azerbaijan:` | :bosnia_herzegovina: | `:bosnia_herzegovina:` | [top](#table-of-contents) |\n| [top](#flags) | :barbados: | `:barbados:` | :bangladesh: | `:bangladesh:` | [top](#table-of-contents) |\n| [top](#flags) | :belgium: | `:belgium:` | :burkina_faso: | `:burkina_faso:` | [top](#table-of-contents) |\n| [top](#flags) | :bulgaria: | `:bulgaria:` | :bahrain: | `:bahrain:` | [top](#table-of-contents) |\n| [top](#flags) | :burundi: | `:burundi:` | :benin: | `:benin:` | [top](#table-of-contents) |\n| [top](#flags) | :st_barthelemy: | `:st_barthelemy:` | :bermuda: | `:bermuda:` | [top](#table-of-contents) |\n| [top](#flags) | :brunei: | `:brunei:` | :bolivia: | `:bolivia:` | [top](#table-of-contents) |\n| [top](#flags) | :caribbean_netherlands: | `:caribbean_netherlands:` | :brazil: | `:brazil:` | [top](#table-of-contents) |\n| [top](#flags) | :bahamas: | `:bahamas:` | :bhutan: | `:bhutan:` | [top](#table-of-contents) |\n| [top](#flags) | :bouvet_island: | `:bouvet_island:` | :botswana: | `:botswana:` | [top](#table-of-contents) |\n| [top](#flags) | :belarus: | `:belarus:` | :belize: | `:belize:` | [top](#table-of-contents) |\n| [top](#flags) | :canada: | `:canada:` | :cocos_islands: | `:cocos_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :congo_kinshasa: | `:congo_kinshasa:` | :central_african_republic: | `:central_african_republic:` | [top](#table-of-contents) |\n| [top](#flags) | :congo_brazzaville: | `:congo_brazzaville:` | :switzerland: | `:switzerland:` | [top](#table-of-contents) |\n| [top](#flags) | :cote_divoire: | `:cote_divoire:` | :cook_islands: | `:cook_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :chile: | `:chile:` | :cameroon: | `:cameroon:` | [top](#table-of-contents) |\n| [top](#flags) | :cn: | `:cn:` | :colombia: | `:colombia:` | [top](#table-of-contents) |\n| [top](#flags) | :clipperton_island: | `:clipperton_island:` | :costa_rica: | `:costa_rica:` | [top](#table-of-contents) |\n| [top](#flags) | :cuba: | `:cuba:` | :cape_verde: | `:cape_verde:` | [top](#table-of-contents) |\n| [top](#flags) | :curacao: | `:curacao:` | :christmas_island: | `:christmas_island:` | [top](#table-of-contents) |\n| [top](#flags) | :cyprus: | `:cyprus:` | :czech_republic: | `:czech_republic:` | [top](#table-of-contents) |\n| [top](#flags) | :de: | `:de:` | :diego_garcia: | `:diego_garcia:` | [top](#table-of-contents) |\n| [top](#flags) | :djibouti: | `:djibouti:` | :denmark: | `:denmark:` | [top](#table-of-contents) |\n| [top](#flags) | :dominica: | `:dominica:` | :dominican_republic: | `:dominican_republic:` | [top](#table-of-contents) |\n| [top](#flags) | :algeria: | `:algeria:` | :ceuta_melilla: | `:ceuta_melilla:` | [top](#table-of-contents) |\n| [top](#flags) | :ecuador: | `:ecuador:` | :estonia: | `:estonia:` | [top](#table-of-contents) |\n| [top](#flags) | :egypt: | `:egypt:` | :western_sahara: | `:western_sahara:` | [top](#table-of-contents) |\n| [top](#flags) | :eritrea: | `:eritrea:` | :es: | `:es:` | [top](#table-of-contents) |\n| [top](#flags) | :ethiopia: | `:ethiopia:` | :eu: | `:eu:` <br /> `:european_union:` | [top](#table-of-contents) |\n| [top](#flags) | :finland: | `:finland:` | :fiji: | `:fiji:` | [top](#table-of-contents) |\n| [top](#flags) | :falkland_islands: | `:falkland_islands:` | :micronesia: | `:micronesia:` | [top](#table-of-contents) |\n| [top](#flags) | :faroe_islands: | `:faroe_islands:` | :fr: | `:fr:` | [top](#table-of-contents) |\n| [top](#flags) | :gabon: | `:gabon:` | :gb: | `:gb:` <br /> `:uk:` | [top](#table-of-contents) |\n| [top](#flags) | :grenada: | `:grenada:` | :georgia: | `:georgia:` | [top](#table-of-contents) |\n| [top](#flags) | :french_guiana: | `:french_guiana:` | :guernsey: | `:guernsey:` | [top](#table-of-contents) |\n| [top](#flags) | :ghana: | `:ghana:` | :gibraltar: | `:gibraltar:` | [top](#table-of-contents) |\n| [top](#flags) | :greenland: | `:greenland:` | :gambia: | `:gambia:` | [top](#table-of-contents) |\n| [top](#flags) | :guinea: | `:guinea:` | :guadeloupe: | `:guadeloupe:` | [top](#table-of-contents) |\n| [top](#flags) | :equatorial_guinea: | `:equatorial_guinea:` | :greece: | `:greece:` | [top](#table-of-contents) |\n| [top](#flags) | :south_georgia_south_sandwich_islands: | `:south_georgia_south_sandwich_islands:` | :guatemala: | `:guatemala:` | [top](#table-of-contents) |\n| [top](#flags) | :guam: | `:guam:` | :guinea_bissau: | `:guinea_bissau:` | [top](#table-of-contents) |\n| [top](#flags) | :guyana: | `:guyana:` | :hong_kong: | `:hong_kong:` | [top](#table-of-contents) |\n| [top](#flags) | :heard_mcdonald_islands: | `:heard_mcdonald_islands:` | :honduras: | `:honduras:` | [top](#table-of-contents) |\n| [top](#flags) | :croatia: | `:croatia:` | :haiti: | `:haiti:` | [top](#table-of-contents) |\n| [top](#flags) | :hungary: | `:hungary:` | :canary_islands: | `:canary_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :indonesia: | `:indonesia:` | :ireland: | `:ireland:` | [top](#table-of-contents) |\n| [top](#flags) | :israel: | `:israel:` | :isle_of_man: | `:isle_of_man:` | [top](#table-of-contents) |\n| [top](#flags) | :india: | `:india:` | :british_indian_ocean_territory: | `:british_indian_ocean_territory:` | [top](#table-of-contents) |\n| [top](#flags) | :iraq: | `:iraq:` | :iran: | `:iran:` | [top](#table-of-contents) |\n| [top](#flags) | :iceland: | `:iceland:` | :it: | `:it:` | [top](#table-of-contents) |\n| [top](#flags) | :jersey: | `:jersey:` | :jamaica: | `:jamaica:` | [top](#table-of-contents) |\n| [top](#flags) | :jordan: | `:jordan:` | :jp: | `:jp:` | [top](#table-of-contents) |\n| [top](#flags) | :kenya: | `:kenya:` | :kyrgyzstan: | `:kyrgyzstan:` | [top](#table-of-contents) |\n| [top](#flags) | :cambodia: | `:cambodia:` | :kiribati: | `:kiribati:` | [top](#table-of-contents) |\n| [top](#flags) | :comoros: | `:comoros:` | :st_kitts_nevis: | `:st_kitts_nevis:` | [top](#table-of-contents) |\n| [top](#flags) | :north_korea: | `:north_korea:` | :kr: | `:kr:` | [top](#table-of-contents) |\n| [top](#flags) | :kuwait: | `:kuwait:` | :cayman_islands: | `:cayman_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :kazakhstan: | `:kazakhstan:` | :laos: | `:laos:` | [top](#table-of-contents) |\n| [top](#flags) | :lebanon: | `:lebanon:` | :st_lucia: | `:st_lucia:` | [top](#table-of-contents) |\n| [top](#flags) | :liechtenstein: | `:liechtenstein:` | :sri_lanka: | `:sri_lanka:` | [top](#table-of-contents) |\n| [top](#flags) | :liberia: | `:liberia:` | :lesotho: | `:lesotho:` | [top](#table-of-contents) |\n| [top](#flags) | :lithuania: | `:lithuania:` | :luxembourg: | `:luxembourg:` | [top](#table-of-contents) |\n| [top](#flags) | :latvia: | `:latvia:` | :libya: | `:libya:` | [top](#table-of-contents) |\n| [top](#flags) | :morocco: | `:morocco:` | :monaco: | `:monaco:` | [top](#table-of-contents) |\n| [top](#flags) | :moldova: | `:moldova:` | :montenegro: | `:montenegro:` | [top](#table-of-contents) |\n| [top](#flags) | :st_martin: | `:st_martin:` | :madagascar: | `:madagascar:` | [top](#table-of-contents) |\n| [top](#flags) | :marshall_islands: | `:marshall_islands:` | :macedonia: | `:macedonia:` | [top](#table-of-contents) |\n| [top](#flags) | :mali: | `:mali:` | :myanmar: | `:myanmar:` | [top](#table-of-contents) |\n| [top](#flags) | :mongolia: | `:mongolia:` | :macau: | `:macau:` | [top](#table-of-contents) |\n| [top](#flags) | :northern_mariana_islands: | `:northern_mariana_islands:` | :martinique: | `:martinique:` | [top](#table-of-contents) |\n| [top](#flags) | :mauritania: | `:mauritania:` | :montserrat: | `:montserrat:` | [top](#table-of-contents) |\n| [top](#flags) | :malta: | `:malta:` | :mauritius: | `:mauritius:` | [top](#table-of-contents) |\n| [top](#flags) | :maldives: | `:maldives:` | :malawi: | `:malawi:` | [top](#table-of-contents) |\n| [top](#flags) | :mexico: | `:mexico:` | :malaysia: | `:malaysia:` | [top](#table-of-contents) |\n| [top](#flags) | :mozambique: | `:mozambique:` | :namibia: | `:namibia:` | [top](#table-of-contents) |\n| [top](#flags) | :new_caledonia: | `:new_caledonia:` | :niger: | `:niger:` | [top](#table-of-contents) |\n| [top](#flags) | :norfolk_island: | `:norfolk_island:` | :nigeria: | `:nigeria:` | [top](#table-of-contents) |\n| [top](#flags) | :nicaragua: | `:nicaragua:` | :netherlands: | `:netherlands:` | [top](#table-of-contents) |\n| [top](#flags) | :norway: | `:norway:` | :nepal: | `:nepal:` | [top](#table-of-contents) |\n| [top](#flags) | :nauru: | `:nauru:` | :niue: | `:niue:` | [top](#table-of-contents) |\n| [top](#flags) | :new_zealand: | `:new_zealand:` | :oman: | `:oman:` | [top](#table-of-contents) |\n| [top](#flags) | :panama: | `:panama:` | :peru: | `:peru:` | [top](#table-of-contents) |\n| [top](#flags) | :french_polynesia: | `:french_polynesia:` | :papua_new_guinea: | `:papua_new_guinea:` | [top](#table-of-contents) |\n| [top](#flags) | :philippines: | `:philippines:` | :pakistan: | `:pakistan:` | [top](#table-of-contents) |\n| [top](#flags) | :poland: | `:poland:` | :st_pierre_miquelon: | `:st_pierre_miquelon:` | [top](#table-of-contents) |\n| [top](#flags) | :pitcairn_islands: | `:pitcairn_islands:` | :puerto_rico: | `:puerto_rico:` | [top](#table-of-contents) |\n| [top](#flags) | :palestinian_territories: | `:palestinian_territories:` | :portugal: | `:portugal:` | [top](#table-of-contents) |\n| [top](#flags) | :palau: | `:palau:` | :paraguay: | `:paraguay:` | [top](#table-of-contents) |\n| [top](#flags) | :qatar: | `:qatar:` | :reunion: | `:reunion:` | [top](#table-of-contents) |\n| [top](#flags) | :romania: | `:romania:` | :serbia: | `:serbia:` | [top](#table-of-contents) |\n| [top](#flags) | :ru: | `:ru:` | :rwanda: | `:rwanda:` | [top](#table-of-contents) |\n| [top](#flags) | :saudi_arabia: | `:saudi_arabia:` | :solomon_islands: | `:solomon_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :seychelles: | `:seychelles:` | :sudan: | `:sudan:` | [top](#table-of-contents) |\n| [top](#flags) | :sweden: | `:sweden:` | :singapore: | `:singapore:` | [top](#table-of-contents) |\n| [top](#flags) | :st_helena: | `:st_helena:` | :slovenia: | `:slovenia:` | [top](#table-of-contents) |\n| [top](#flags) | :svalbard_jan_mayen: | `:svalbard_jan_mayen:` | :slovakia: | `:slovakia:` | [top](#table-of-contents) |\n| [top](#flags) | :sierra_leone: | `:sierra_leone:` | :san_marino: | `:san_marino:` | [top](#table-of-contents) |\n| [top](#flags) | :senegal: | `:senegal:` | :somalia: | `:somalia:` | [top](#table-of-contents) |\n| [top](#flags) | :suriname: | `:suriname:` | :south_sudan: | `:south_sudan:` | [top](#table-of-contents) |\n| [top](#flags) | :sao_tome_principe: | `:sao_tome_principe:` | :el_salvador: | `:el_salvador:` | [top](#table-of-contents) |\n| [top](#flags) | :sint_maarten: | `:sint_maarten:` | :syria: | `:syria:` | [top](#table-of-contents) |\n| [top](#flags) | :swaziland: | `:swaziland:` | :tristan_da_cunha: | `:tristan_da_cunha:` | [top](#table-of-contents) |\n| [top](#flags) | :turks_caicos_islands: | `:turks_caicos_islands:` | :chad: | `:chad:` | [top](#table-of-contents) |\n| [top](#flags) | :french_southern_territories: | `:french_southern_territories:` | :togo: | `:togo:` | [top](#table-of-contents) |\n| [top](#flags) | :thailand: | `:thailand:` | :tajikistan: | `:tajikistan:` | [top](#table-of-contents) |\n| [top](#flags) | :tokelau: | `:tokelau:` | :timor_leste: | `:timor_leste:` | [top](#table-of-contents) |\n| [top](#flags) | :turkmenistan: | `:turkmenistan:` | :tunisia: | `:tunisia:` | [top](#table-of-contents) |\n| [top](#flags) | :tonga: | `:tonga:` | :tr: | `:tr:` | [top](#table-of-contents) |\n| [top](#flags) | :trinidad_tobago: | `:trinidad_tobago:` | :tuvalu: | `:tuvalu:` | [top](#table-of-contents) |\n| [top](#flags) | :taiwan: | `:taiwan:` | :tanzania: | `:tanzania:` | [top](#table-of-contents) |\n| [top](#flags) | :ukraine: | `:ukraine:` | :uganda: | `:uganda:` | [top](#table-of-contents) |\n| [top](#flags) | :us_outlying_islands: | `:us_outlying_islands:` | :united_nations: | `:united_nations:` | [top](#table-of-contents) |\n| [top](#flags) | :us: | `:us:` | :uruguay: | `:uruguay:` | [top](#table-of-contents) |\n| [top](#flags) | :uzbekistan: | `:uzbekistan:` | :vatican_city: | `:vatican_city:` | [top](#table-of-contents) |\n| [top](#flags) | :st_vincent_grenadines: | `:st_vincent_grenadines:` | :venezuela: | `:venezuela:` | [top](#table-of-contents) |\n| [top](#flags) | :british_virgin_islands: | `:british_virgin_islands:` | :us_virgin_islands: | `:us_virgin_islands:` | [top](#table-of-contents) |\n| [top](#flags) | :vietnam: | `:vietnam:` | :vanuatu: | `:vanuatu:` | [top](#table-of-contents) |\n| [top](#flags) | :wallis_futuna: | `:wallis_futuna:` | :samoa: | `:samoa:` | [top](#table-of-contents) |\n| [top](#flags) | :kosovo: | `:kosovo:` | :yemen: | `:yemen:` | [top](#table-of-contents) |\n| [top](#flags) | :mayotte: | `:mayotte:` | :south_africa: | `:south_africa:` | [top](#table-of-contents) |\n| [top](#flags) | :zambia: | `:zambia:` | :zimbabwe: | `:zimbabwe:` | [top](#table-of-contents) |\n\n#### Subdivision Flag\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#flags) | :england: | `:england:` | :scotland: | `:scotland:` | [top](#table-of-contents) |\n| [top](#flags) | :wales: | `:wales:` | | | [top](#table-of-contents) |\n\n### GitHub Custom Emoji\n\n| | ico | shortcode | ico | shortcode | |\n| - | :-: | - | :-: | - | - |\n| [top](#github-custom-emoji) | :accessibility: | `:accessibility:` | :atom: | `:atom:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :basecamp: | `:basecamp:` | :basecampy: | `:basecampy:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :bowtie: | `:bowtie:` | :dependabot: | `:dependabot:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :electron: | `:electron:` | :feelsgood: | `:feelsgood:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :finnadie: | `:finnadie:` | :fishsticks: | `:fishsticks:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :goberserk: | `:goberserk:` | :godmode: | `:godmode:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :hurtrealbad: | `:hurtrealbad:` | :neckbeard: | `:neckbeard:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :octocat: | `:octocat:` | :rage1: | `:rage1:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :rage2: | `:rage2:` | :rage3: | `:rage3:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :rage4: | `:rage4:` | :shipit: | `:shipit:` | [top](#table-of-contents) |\n| [top](#github-custom-emoji) | :suspect: | `:suspect:` | :trollface: | `:trollface:` | [top](#table-of-contents) |\n\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"emoji-cheat-sheet\",\n  \"type\": \"module\",\n  \"version\": \"0.0.0-dev\",\n  \"private\": true,\n  \"repository\": \"ikatyang/emoji-cheat-sheet\",\n  \"homepage\": \"https://github.com/ikatyang/emoji-cheat-sheet#readme\",\n  \"author\": {\n    \"name\": \"Ika\",\n    \"email\": \"ikatyang@gmail.com\",\n    \"url\": \"https://github.com/ikatyang\"\n  },\n  \"license\": \"MIT\",\n  \"scripts\": {\n    \"lint\": \"prettier --check .\",\n    \"check\": \"tsc --noEmit\",\n    \"test\": \"vitest\",\n    \"generate\": \"vite-node ./scripts/generate.ts -- run > ./README.md\"\n  },\n  \"devDependencies\": {\n    \"jest-playback\": \"4.0.0\",\n    \"prettier\": \"3.0.0\",\n    \"typescript\": \"5.1.6\",\n    \"vite\": \"4.5.2\",\n    \"vite-node\": \"0.33.0\",\n    \"vitest\": \"0.33.0\"\n  },\n  \"engines\": {\n    \"node\": \">=18\"\n  },\n  \"packageManager\": \"pnpm@8.6.6\"\n}\n"
  },
  {
    "path": "scripts/__snapshots__/generate.test.ts.snap",
    "content": "// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html\n\nexports[`emoji-cheat-sheet > (jest-playback) 95d9174aba 1`] = `\nTEXT/25 200 OK\naccept-ranges: bytes\naccess-control-allow-origin: *\naccess-control-expose-headers: ETag, Link, Location, Retry-After, X-GitHub-OTP, X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Used, X-RateLimit-Resource, X-RateLimit-Reset, X-OAuth-Scopes, X-Accepted-OAuth-Scopes, X-Poll-Interval, X-GitHub-Media-Type, X-GitHub-SSO, X-GitHub-Request-Id, Deprecation, Sunset\ncache-control: public, max-age=60, s-maxage=60\ncontent-encoding: gzip\ncontent-security-policy: default-src 'none'\ncontent-type: application/json; charset=utf-8\ndate: Sat, 22 Jul 2023 10:25:10 GMT\netag: W/\"1485a6923362854b26aa40609399298f529ddc19a82a35f7df803ae45a6b8779\"\nreferrer-policy: origin-when-cross-origin, strict-origin-when-cross-origin\nserver: GitHub.com\nstrict-transport-security: max-age=31536000; includeSubdomains; preload\ntransfer-encoding: chunked\nvary: Accept, Accept-Encoding, Accept, X-Requested-With\nx-content-type-options: nosniff\nx-frame-options: deny\nx-github-api-version-selected: 2022-11-28\nx-github-media-type: github.v3; format=json\nx-github-request-id: C467:2B1E:1A2FEB4:1B82C6C:64BBAE85\nx-ratelimit-limit: 60\nx-ratelimit-remaining: 59\nx-ratelimit-reset: 1690025110\nx-ratelimit-resource: core\nx-ratelimit-used: 1\nx-xss-protection: 0\n{\"+1\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png?v8\",\"-1\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44e.png?v8\",\"100\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4af.png?v8\",\"1234\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f522.png?v8\",\"1st_place_medal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f947.png?v8\",\"2nd_place_medal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f948.png?v8\",\"3rd_place_medal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f949.png?v8\",\"8ball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b1.png?v8\",\"a\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f170.png?v8\",\"ab\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f18e.png?v8\",\"abacus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ee.png?v8\",\"abc\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f524.png?v8\",\"abcd\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f521.png?v8\",\"accept\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f251.png?v8\",\"accessibility\":\"https://github.githubassets.com/images/icons/emoji/accessibility.png?v8\",\"accordion\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa97.png?v8\",\"adhesive_bandage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa79.png?v8\",\"adult\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1.png?v8\",\"aerial_tramway\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a1.png?v8\",\"afghanistan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1eb.png?v8\",\"airplane\":\"https://github.githubassets.com/images/icons/emoji/unicode/2708.png?v8\",\"aland_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1fd.png?v8\",\"alarm_clock\":\"https://github.githubassets.com/images/icons/emoji/unicode/23f0.png?v8\",\"albania\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f1.png?v8\",\"alembic\":\"https://github.githubassets.com/images/icons/emoji/unicode/2697.png?v8\",\"algeria\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1ff.png?v8\",\"alien\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f47d.png?v8\",\"ambulance\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f691.png?v8\",\"american_samoa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f8.png?v8\",\"amphora\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3fa.png?v8\",\"anatomical_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fac0.png?v8\",\"anchor\":\"https://github.githubassets.com/images/icons/emoji/unicode/2693.png?v8\",\"andorra\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1e9.png?v8\",\"angel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f47c.png?v8\",\"anger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a2.png?v8\",\"angola\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f4.png?v8\",\"angry\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f620.png?v8\",\"anguilla\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1ee.png?v8\",\"anguished\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f627.png?v8\",\"ant\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41c.png?v8\",\"antarctica\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f6.png?v8\",\"antigua_barbuda\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1ec.png?v8\",\"apple\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34e.png?v8\",\"aquarius\":\"https://github.githubassets.com/images/icons/emoji/unicode/2652.png?v8\",\"argentina\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f7.png?v8\",\"aries\":\"https://github.githubassets.com/images/icons/emoji/unicode/2648.png?v8\",\"armenia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f2.png?v8\",\"arrow_backward\":\"https://github.githubassets.com/images/icons/emoji/unicode/25c0.png?v8\",\"arrow_double_down\":\"https://github.githubassets.com/images/icons/emoji/unicode/23ec.png?v8\",\"arrow_double_up\":\"https://github.githubassets.com/images/icons/emoji/unicode/23eb.png?v8\",\"arrow_down\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b07.png?v8\",\"arrow_down_small\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f53d.png?v8\",\"arrow_forward\":\"https://github.githubassets.com/images/icons/emoji/unicode/25b6.png?v8\",\"arrow_heading_down\":\"https://github.githubassets.com/images/icons/emoji/unicode/2935.png?v8\",\"arrow_heading_up\":\"https://github.githubassets.com/images/icons/emoji/unicode/2934.png?v8\",\"arrow_left\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b05.png?v8\",\"arrow_lower_left\":\"https://github.githubassets.com/images/icons/emoji/unicode/2199.png?v8\",\"arrow_lower_right\":\"https://github.githubassets.com/images/icons/emoji/unicode/2198.png?v8\",\"arrow_right\":\"https://github.githubassets.com/images/icons/emoji/unicode/27a1.png?v8\",\"arrow_right_hook\":\"https://github.githubassets.com/images/icons/emoji/unicode/21aa.png?v8\",\"arrow_up\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b06.png?v8\",\"arrow_up_down\":\"https://github.githubassets.com/images/icons/emoji/unicode/2195.png?v8\",\"arrow_up_small\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f53c.png?v8\",\"arrow_upper_left\":\"https://github.githubassets.com/images/icons/emoji/unicode/2196.png?v8\",\"arrow_upper_right\":\"https://github.githubassets.com/images/icons/emoji/unicode/2197.png?v8\",\"arrows_clockwise\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f503.png?v8\",\"arrows_counterclockwise\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f504.png?v8\",\"art\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a8.png?v8\",\"articulated_lorry\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f69b.png?v8\",\"artificial_satellite\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f0.png?v8\",\"artist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f3a8.png?v8\",\"aruba\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1fc.png?v8\",\"ascension_island\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1e8.png?v8\",\"asterisk\":\"https://github.githubassets.com/images/icons/emoji/unicode/002a-20e3.png?v8\",\"astonished\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f632.png?v8\",\"astronaut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f680.png?v8\",\"athletic_shoe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45f.png?v8\",\"atm\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e7.png?v8\",\"atom\":\"https://github.githubassets.com/images/icons/emoji/atom.png?v8\",\"atom_symbol\":\"https://github.githubassets.com/images/icons/emoji/unicode/269b.png?v8\",\"australia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1fa.png?v8\",\"austria\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1f9.png?v8\",\"auto_rickshaw\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6fa.png?v8\",\"avocado\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f951.png?v8\",\"axe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa93.png?v8\",\"azerbaijan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1ff.png?v8\",\"b\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f171.png?v8\",\"baby\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f476.png?v8\",\"baby_bottle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f37c.png?v8\",\"baby_chick\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f424.png?v8\",\"baby_symbol\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6bc.png?v8\",\"back\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f519.png?v8\",\"bacon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f953.png?v8\",\"badger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a1.png?v8\",\"badminton\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f8.png?v8\",\"bagel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f96f.png?v8\",\"baggage_claim\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6c4.png?v8\",\"baguette_bread\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f956.png?v8\",\"bahamas\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f8.png?v8\",\"bahrain\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1ed.png?v8\",\"balance_scale\":\"https://github.githubassets.com/images/icons/emoji/unicode/2696.png?v8\",\"bald_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9b2.png?v8\",\"bald_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9b2.png?v8\",\"ballet_shoes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa70.png?v8\",\"balloon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f388.png?v8\",\"ballot_box\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5f3.png?v8\",\"ballot_box_with_check\":\"https://github.githubassets.com/images/icons/emoji/unicode/2611.png?v8\",\"bamboo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f38d.png?v8\",\"banana\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34c.png?v8\",\"bangbang\":\"https://github.githubassets.com/images/icons/emoji/unicode/203c.png?v8\",\"bangladesh\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1e9.png?v8\",\"banjo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa95.png?v8\",\"bank\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e6.png?v8\",\"bar_chart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ca.png?v8\",\"barbados\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1e7.png?v8\",\"barber\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f488.png?v8\",\"baseball\":\"https://github.githubassets.com/images/icons/emoji/unicode/26be.png?v8\",\"basecamp\":\"https://github.githubassets.com/images/icons/emoji/basecamp.png?v8\",\"basecampy\":\"https://github.githubassets.com/images/icons/emoji/basecampy.png?v8\",\"basket\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9fa.png?v8\",\"basketball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c0.png?v8\",\"basketball_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f9-2642.png?v8\",\"basketball_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f9-2640.png?v8\",\"bat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f987.png?v8\",\"bath\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6c0.png?v8\",\"bathtub\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6c1.png?v8\",\"battery\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f50b.png?v8\",\"beach_umbrella\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d6.png?v8\",\"bear\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43b.png?v8\",\"bearded_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d4.png?v8\",\"beaver\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ab.png?v8\",\"bed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6cf.png?v8\",\"bee\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41d.png?v8\",\"beer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f37a.png?v8\",\"beers\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f37b.png?v8\",\"beetle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab2.png?v8\",\"beginner\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f530.png?v8\",\"belarus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1fe.png?v8\",\"belgium\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1ea.png?v8\",\"belize\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1ff.png?v8\",\"bell\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f514.png?v8\",\"bell_pepper\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad1.png?v8\",\"bellhop_bell\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ce.png?v8\",\"benin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1ef.png?v8\",\"bento\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f371.png?v8\",\"bermuda\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f2.png?v8\",\"beverage_box\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c3.png?v8\",\"bhutan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f9.png?v8\",\"bicyclist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b4.png?v8\",\"bike\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b2.png?v8\",\"biking_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b4-2642.png?v8\",\"biking_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b4-2640.png?v8\",\"bikini\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f459.png?v8\",\"billed_cap\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e2.png?v8\",\"biohazard\":\"https://github.githubassets.com/images/icons/emoji/unicode/2623.png?v8\",\"bird\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f426.png?v8\",\"birthday\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f382.png?v8\",\"bison\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ac.png?v8\",\"black_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f408-2b1b.png?v8\",\"black_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/26ab.png?v8\",\"black_flag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f4.png?v8\",\"black_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5a4.png?v8\",\"black_joker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f0cf.png?v8\",\"black_large_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b1b.png?v8\",\"black_medium_small_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/25fe.png?v8\",\"black_medium_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/25fc.png?v8\",\"black_nib\":\"https://github.githubassets.com/images/icons/emoji/unicode/2712.png?v8\",\"black_small_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/25aa.png?v8\",\"black_square_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f532.png?v8\",\"blond_haired_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f471-2642.png?v8\",\"blond_haired_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f471.png?v8\",\"blond_haired_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f471-2640.png?v8\",\"blonde_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f471-2640.png?v8\",\"blossom\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f33c.png?v8\",\"blowfish\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f421.png?v8\",\"blue_book\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d8.png?v8\",\"blue_car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f699.png?v8\",\"blue_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f499.png?v8\",\"blue_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e6.png?v8\",\"blueberries\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad0.png?v8\",\"blush\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f60a.png?v8\",\"boar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f417.png?v8\",\"boat\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f5.png?v8\",\"bolivia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f4.png?v8\",\"bomb\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a3.png?v8\",\"bone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b4.png?v8\",\"book\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d6.png?v8\",\"bookmark\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f516.png?v8\",\"bookmark_tabs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d1.png?v8\",\"books\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4da.png?v8\",\"boom\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a5.png?v8\",\"boomerang\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa83.png?v8\",\"boot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f462.png?v8\",\"bosnia_herzegovina\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1e6.png?v8\",\"botswana\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1fc.png?v8\",\"bouncing_ball_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f9-2642.png?v8\",\"bouncing_ball_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f9.png?v8\",\"bouncing_ball_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f9-2640.png?v8\",\"bouquet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f490.png?v8\",\"bouvet_island\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1fb.png?v8\",\"bow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f647.png?v8\",\"bow_and_arrow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f9.png?v8\",\"bowing_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f647-2642.png?v8\",\"bowing_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f647-2640.png?v8\",\"bowl_with_spoon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f963.png?v8\",\"bowling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b3.png?v8\",\"bowtie\":\"https://github.githubassets.com/images/icons/emoji/bowtie.png?v8\",\"boxing_glove\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f94a.png?v8\",\"boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f466.png?v8\",\"brain\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e0.png?v8\",\"brazil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f7.png?v8\",\"bread\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f35e.png?v8\",\"breast_feeding\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f931.png?v8\",\"bricks\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f1.png?v8\",\"bride_with_veil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f470-2640.png?v8\",\"bridge_at_night\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f309.png?v8\",\"briefcase\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4bc.png?v8\",\"british_indian_ocean_territory\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f4.png?v8\",\"british_virgin_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1ec.png?v8\",\"broccoli\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f966.png?v8\",\"broken_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f494.png?v8\",\"broom\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f9.png?v8\",\"brown_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e4.png?v8\",\"brown_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f90e.png?v8\",\"brown_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7eb.png?v8\",\"brunei\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f3.png?v8\",\"bubble_tea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cb.png?v8\",\"bucket\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa3.png?v8\",\"bug\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png?v8\",\"building_construction\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d7.png?v8\",\"bulb\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a1.png?v8\",\"bulgaria\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1ec.png?v8\",\"bullettrain_front\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f685.png?v8\",\"bullettrain_side\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f684.png?v8\",\"burkina_faso\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1eb.png?v8\",\"burrito\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f32f.png?v8\",\"burundi\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1ee.png?v8\",\"bus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f68c.png?v8\",\"business_suit_levitating\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f574.png?v8\",\"busstop\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f68f.png?v8\",\"bust_in_silhouette\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f464.png?v8\",\"busts_in_silhouette\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f465.png?v8\",\"butter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c8.png?v8\",\"butterfly\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f98b.png?v8\",\"cactus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f335.png?v8\",\"cake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f370.png?v8\",\"calendar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c6.png?v8\",\"call_me_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f919.png?v8\",\"calling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f2.png?v8\",\"cambodia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1ed.png?v8\",\"camel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42b.png?v8\",\"camera\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f7.png?v8\",\"camera_flash\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f8.png?v8\",\"cameroon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f2.png?v8\",\"camping\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d5.png?v8\",\"canada\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1e6.png?v8\",\"canary_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1e8.png?v8\",\"cancer\":\"https://github.githubassets.com/images/icons/emoji/unicode/264b.png?v8\",\"candle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f56f.png?v8\",\"candy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f36c.png?v8\",\"canned_food\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f96b.png?v8\",\"canoe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f6.png?v8\",\"cape_verde\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1fb.png?v8\",\"capital_abcd\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f520.png?v8\",\"capricorn\":\"https://github.githubassets.com/images/icons/emoji/unicode/2651.png?v8\",\"car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f697.png?v8\",\"card_file_box\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5c3.png?v8\",\"card_index\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c7.png?v8\",\"card_index_dividers\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5c2.png?v8\",\"caribbean_netherlands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f6.png?v8\",\"carousel_horse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a0.png?v8\",\"carpentry_saw\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa9a.png?v8\",\"carrot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f955.png?v8\",\"cartwheeling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f938.png?v8\",\"cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f431.png?v8\",\"cat2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f408.png?v8\",\"cayman_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1fe.png?v8\",\"cd\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4bf.png?v8\",\"central_african_republic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1eb.png?v8\",\"ceuta_melilla\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1e6.png?v8\",\"chad\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1e9.png?v8\",\"chains\":\"https://github.githubassets.com/images/icons/emoji/unicode/26d3.png?v8\",\"chair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa91.png?v8\",\"champagne\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f37e.png?v8\",\"chart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b9.png?v8\",\"chart_with_downwards_trend\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c9.png?v8\",\"chart_with_upwards_trend\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c8.png?v8\",\"checkered_flag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c1.png?v8\",\"cheese\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c0.png?v8\",\"cherries\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f352.png?v8\",\"cherry_blossom\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f338.png?v8\",\"chess_pawn\":\"https://github.githubassets.com/images/icons/emoji/unicode/265f.png?v8\",\"chestnut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f330.png?v8\",\"chicken\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f414.png?v8\",\"child\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d2.png?v8\",\"children_crossing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b8.png?v8\",\"chile\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f1.png?v8\",\"chipmunk\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43f.png?v8\",\"chocolate_bar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f36b.png?v8\",\"chopsticks\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f962.png?v8\",\"christmas_island\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1fd.png?v8\",\"christmas_tree\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f384.png?v8\",\"church\":\"https://github.githubassets.com/images/icons/emoji/unicode/26ea.png?v8\",\"cinema\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a6.png?v8\",\"circus_tent\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3aa.png?v8\",\"city_sunrise\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f307.png?v8\",\"city_sunset\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f306.png?v8\",\"cityscape\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d9.png?v8\",\"cl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f191.png?v8\",\"clamp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5dc.png?v8\",\"clap\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44f.png?v8\",\"clapper\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ac.png?v8\",\"classical_building\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3db.png?v8\",\"climbing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d7.png?v8\",\"climbing_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d7-2642.png?v8\",\"climbing_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d7-2640.png?v8\",\"clinking_glasses\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f942.png?v8\",\"clipboard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4cb.png?v8\",\"clipperton_island\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f5.png?v8\",\"clock1\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f550.png?v8\",\"clock10\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f559.png?v8\",\"clock1030\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f565.png?v8\",\"clock11\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f55a.png?v8\",\"clock1130\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f566.png?v8\",\"clock12\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f55b.png?v8\",\"clock1230\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f567.png?v8\",\"clock130\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f55c.png?v8\",\"clock2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f551.png?v8\",\"clock230\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f55d.png?v8\",\"clock3\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f552.png?v8\",\"clock330\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f55e.png?v8\",\"clock4\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f553.png?v8\",\"clock430\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f55f.png?v8\",\"clock5\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f554.png?v8\",\"clock530\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f560.png?v8\",\"clock6\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f555.png?v8\",\"clock630\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f561.png?v8\",\"clock7\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f556.png?v8\",\"clock730\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f562.png?v8\",\"clock8\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f557.png?v8\",\"clock830\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f563.png?v8\",\"clock9\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f558.png?v8\",\"clock930\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f564.png?v8\",\"closed_book\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d5.png?v8\",\"closed_lock_with_key\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f510.png?v8\",\"closed_umbrella\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f302.png?v8\",\"cloud\":\"https://github.githubassets.com/images/icons/emoji/unicode/2601.png?v8\",\"cloud_with_lightning\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f329.png?v8\",\"cloud_with_lightning_and_rain\":\"https://github.githubassets.com/images/icons/emoji/unicode/26c8.png?v8\",\"cloud_with_rain\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f327.png?v8\",\"cloud_with_snow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f328.png?v8\",\"clown_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f921.png?v8\",\"clubs\":\"https://github.githubassets.com/images/icons/emoji/unicode/2663.png?v8\",\"cn\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f3.png?v8\",\"coat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e5.png?v8\",\"cockroach\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab3.png?v8\",\"cocktail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f378.png?v8\",\"coconut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f965.png?v8\",\"cocos_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1e8.png?v8\",\"coffee\":\"https://github.githubassets.com/images/icons/emoji/unicode/2615.png?v8\",\"coffin\":\"https://github.githubassets.com/images/icons/emoji/unicode/26b0.png?v8\",\"coin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa99.png?v8\",\"cold_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f976.png?v8\",\"cold_sweat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f630.png?v8\",\"collision\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a5.png?v8\",\"colombia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f4.png?v8\",\"comet\":\"https://github.githubassets.com/images/icons/emoji/unicode/2604.png?v8\",\"comoros\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1f2.png?v8\",\"compass\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ed.png?v8\",\"computer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4bb.png?v8\",\"computer_mouse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5b1.png?v8\",\"confetti_ball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f38a.png?v8\",\"confounded\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f616.png?v8\",\"confused\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f615.png?v8\",\"congo_brazzaville\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1ec.png?v8\",\"congo_kinshasa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1e9.png?v8\",\"congratulations\":\"https://github.githubassets.com/images/icons/emoji/unicode/3297.png?v8\",\"construction\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a7.png?v8\",\"construction_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f477.png?v8\",\"construction_worker_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f477-2642.png?v8\",\"construction_worker_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f477-2640.png?v8\",\"control_knobs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f39b.png?v8\",\"convenience_store\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ea.png?v8\",\"cook\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f373.png?v8\",\"cook_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f0.png?v8\",\"cookie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f36a.png?v8\",\"cool\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f192.png?v8\",\"cop\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46e.png?v8\",\"copyright\":\"https://github.githubassets.com/images/icons/emoji/unicode/00a9.png?v8\",\"corn\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f33d.png?v8\",\"costa_rica\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1f7.png?v8\",\"cote_divoire\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1ee.png?v8\",\"couch_and_lamp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6cb.png?v8\",\"couple\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46b.png?v8\",\"couple_with_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f491.png?v8\",\"couple_with_heart_man_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-2764-1f468.png?v8\",\"couple_with_heart_woman_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2764-1f468.png?v8\",\"couple_with_heart_woman_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2764-1f469.png?v8\",\"couplekiss\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f48f.png?v8\",\"couplekiss_man_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-2764-1f48b-1f468.png?v8\",\"couplekiss_man_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2764-1f48b-1f468.png?v8\",\"couplekiss_woman_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2764-1f48b-1f469.png?v8\",\"cow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42e.png?v8\",\"cow2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f404.png?v8\",\"cowboy_hat_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f920.png?v8\",\"crab\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f980.png?v8\",\"crayon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f58d.png?v8\",\"credit_card\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b3.png?v8\",\"crescent_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f319.png?v8\",\"cricket\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f997.png?v8\",\"cricket_game\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cf.png?v8\",\"croatia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ed-1f1f7.png?v8\",\"crocodile\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f40a.png?v8\",\"croissant\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f950.png?v8\",\"crossed_fingers\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f91e.png?v8\",\"crossed_flags\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f38c.png?v8\",\"crossed_swords\":\"https://github.githubassets.com/images/icons/emoji/unicode/2694.png?v8\",\"crown\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f451.png?v8\",\"cry\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f622.png?v8\",\"crying_cat_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f63f.png?v8\",\"crystal_ball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52e.png?v8\",\"cuba\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1fa.png?v8\",\"cucumber\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f952.png?v8\",\"cup_with_straw\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f964.png?v8\",\"cupcake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c1.png?v8\",\"cupid\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f498.png?v8\",\"curacao\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1fc.png?v8\",\"curling_stone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f94c.png?v8\",\"curly_haired_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9b1.png?v8\",\"curly_haired_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9b1.png?v8\",\"curly_loop\":\"https://github.githubassets.com/images/icons/emoji/unicode/27b0.png?v8\",\"currency_exchange\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b1.png?v8\",\"curry\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f35b.png?v8\",\"cursing_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f92c.png?v8\",\"custard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f36e.png?v8\",\"customs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6c3.png?v8\",\"cut_of_meat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f969.png?v8\",\"cyclone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f300.png?v8\",\"cyprus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1fe.png?v8\",\"czech_republic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1ff.png?v8\",\"dagger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5e1.png?v8\",\"dancer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f483.png?v8\",\"dancers\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46f.png?v8\",\"dancing_men\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46f-2642.png?v8\",\"dancing_women\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46f-2640.png?v8\",\"dango\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f361.png?v8\",\"dark_sunglasses\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f576.png?v8\",\"dart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3af.png?v8\",\"dash\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a8.png?v8\",\"date\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c5.png?v8\",\"de\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1ea.png?v8\",\"deaf_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cf-2642.png?v8\",\"deaf_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cf.png?v8\",\"deaf_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cf-2640.png?v8\",\"deciduous_tree\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f333.png?v8\",\"deer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f98c.png?v8\",\"denmark\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1f0.png?v8\",\"department_store\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ec.png?v8\",\"dependabot\":\"https://github.githubassets.com/images/icons/emoji/dependabot.png?v8\",\"derelict_house\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3da.png?v8\",\"desert\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3dc.png?v8\",\"desert_island\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3dd.png?v8\",\"desktop_computer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5a5.png?v8\",\"detective\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f575.png?v8\",\"diamond_shape_with_a_dot_inside\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a0.png?v8\",\"diamonds\":\"https://github.githubassets.com/images/icons/emoji/unicode/2666.png?v8\",\"diego_garcia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1ec.png?v8\",\"disappointed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f61e.png?v8\",\"disappointed_relieved\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f625.png?v8\",\"disguised_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f978.png?v8\",\"diving_mask\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93f.png?v8\",\"diya_lamp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa94.png?v8\",\"dizzy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ab.png?v8\",\"dizzy_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f635.png?v8\",\"djibouti\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1ef.png?v8\",\"dna\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ec.png?v8\",\"do_not_litter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6af.png?v8\",\"dodo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a4.png?v8\",\"dog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f436.png?v8\",\"dog2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f415.png?v8\",\"dollar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b5.png?v8\",\"dolls\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f38e.png?v8\",\"dolphin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42c.png?v8\",\"dominica\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1f2.png?v8\",\"dominican_republic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e9-1f1f4.png?v8\",\"door\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6aa.png?v8\",\"doughnut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f369.png?v8\",\"dove\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f54a.png?v8\",\"dragon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f409.png?v8\",\"dragon_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f432.png?v8\",\"dress\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f457.png?v8\",\"dromedary_camel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42a.png?v8\",\"drooling_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f924.png?v8\",\"drop_of_blood\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa78.png?v8\",\"droplet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a7.png?v8\",\"drum\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f941.png?v8\",\"duck\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f986.png?v8\",\"dumpling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f95f.png?v8\",\"dvd\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c0.png?v8\",\"e-mail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e7.png?v8\",\"eagle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f985.png?v8\",\"ear\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f442.png?v8\",\"ear_of_rice\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f33e.png?v8\",\"ear_with_hearing_aid\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9bb.png?v8\",\"earth_africa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f30d.png?v8\",\"earth_americas\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f30e.png?v8\",\"earth_asia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f30f.png?v8\",\"ecuador\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1e8.png?v8\",\"egg\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f95a.png?v8\",\"eggplant\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f346.png?v8\",\"egypt\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1ec.png?v8\",\"eight\":\"https://github.githubassets.com/images/icons/emoji/unicode/0038-20e3.png?v8\",\"eight_pointed_black_star\":\"https://github.githubassets.com/images/icons/emoji/unicode/2734.png?v8\",\"eight_spoked_asterisk\":\"https://github.githubassets.com/images/icons/emoji/unicode/2733.png?v8\",\"eject_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23cf.png?v8\",\"el_salvador\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1fb.png?v8\",\"electric_plug\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f50c.png?v8\",\"electron\":\"https://github.githubassets.com/images/icons/emoji/electron.png?v8\",\"elephant\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f418.png?v8\",\"elevator\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6d7.png?v8\",\"elf\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9dd.png?v8\",\"elf_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9dd-2642.png?v8\",\"elf_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9dd-2640.png?v8\",\"email\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e7.png?v8\",\"end\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f51a.png?v8\",\"england\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f4-e0067-e0062-e0065-e006e-e0067-e007f.png?v8\",\"envelope\":\"https://github.githubassets.com/images/icons/emoji/unicode/2709.png?v8\",\"envelope_with_arrow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e9.png?v8\",\"equatorial_guinea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f6.png?v8\",\"eritrea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1f7.png?v8\",\"es\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1f8.png?v8\",\"estonia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1ea.png?v8\",\"ethiopia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1f9.png?v8\",\"eu\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1fa.png?v8\",\"euro\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b6.png?v8\",\"european_castle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f0.png?v8\",\"european_post_office\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e4.png?v8\",\"european_union\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1fa.png?v8\",\"evergreen_tree\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f332.png?v8\",\"exclamation\":\"https://github.githubassets.com/images/icons/emoji/unicode/2757.png?v8\",\"exploding_head\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f92f.png?v8\",\"expressionless\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f611.png?v8\",\"eye\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f441.png?v8\",\"eye_speech_bubble\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f441-1f5e8.png?v8\",\"eyeglasses\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f453.png?v8\",\"eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f440.png?v8\",\"face_exhaling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62e-1f4a8.png?v8\",\"face_in_clouds\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f636-1f32b.png?v8\",\"face_with_head_bandage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f915.png?v8\",\"face_with_spiral_eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f635-1f4ab.png?v8\",\"face_with_thermometer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f912.png?v8\",\"facepalm\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f926.png?v8\",\"facepunch\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44a.png?v8\",\"factory\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ed.png?v8\",\"factory_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f3ed.png?v8\",\"fairy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9da.png?v8\",\"fairy_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9da-2642.png?v8\",\"fairy_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9da-2640.png?v8\",\"falafel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c6.png?v8\",\"falkland_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1eb-1f1f0.png?v8\",\"fallen_leaf\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f342.png?v8\",\"family\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46a.png?v8\",\"family_man_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f466.png?v8\",\"family_man_boy_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f466-1f466.png?v8\",\"family_man_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f467.png?v8\",\"family_man_girl_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f467-1f466.png?v8\",\"family_man_girl_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f467-1f467.png?v8\",\"family_man_man_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f468-1f466.png?v8\",\"family_man_man_boy_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f468-1f466-1f466.png?v8\",\"family_man_man_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f468-1f467.png?v8\",\"family_man_man_girl_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f468-1f467-1f466.png?v8\",\"family_man_man_girl_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f468-1f467-1f467.png?v8\",\"family_man_woman_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f469-1f466.png?v8\",\"family_man_woman_boy_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f469-1f466-1f466.png?v8\",\"family_man_woman_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f469-1f467.png?v8\",\"family_man_woman_girl_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f469-1f467-1f466.png?v8\",\"family_man_woman_girl_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f469-1f467-1f467.png?v8\",\"family_woman_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f466.png?v8\",\"family_woman_boy_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f466-1f466.png?v8\",\"family_woman_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f467.png?v8\",\"family_woman_girl_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f467-1f466.png?v8\",\"family_woman_girl_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f467-1f467.png?v8\",\"family_woman_woman_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f469-1f466.png?v8\",\"family_woman_woman_boy_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f469-1f466-1f466.png?v8\",\"family_woman_woman_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f469-1f467.png?v8\",\"family_woman_woman_girl_boy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f469-1f467-1f466.png?v8\",\"family_woman_woman_girl_girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f469-1f467-1f467.png?v8\",\"farmer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f33e.png?v8\",\"faroe_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1eb-1f1f4.png?v8\",\"fast_forward\":\"https://github.githubassets.com/images/icons/emoji/unicode/23e9.png?v8\",\"fax\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e0.png?v8\",\"fearful\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f628.png?v8\",\"feather\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab6.png?v8\",\"feelsgood\":\"https://github.githubassets.com/images/icons/emoji/feelsgood.png?v8\",\"feet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43e.png?v8\",\"female_detective\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f575-2640.png?v8\",\"female_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/2640.png?v8\",\"ferris_wheel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a1.png?v8\",\"ferry\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f4.png?v8\",\"field_hockey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d1.png?v8\",\"fiji\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1eb-1f1ef.png?v8\",\"file_cabinet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5c4.png?v8\",\"file_folder\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c1.png?v8\",\"film_projector\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4fd.png?v8\",\"film_strip\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f39e.png?v8\",\"finland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1eb-1f1ee.png?v8\",\"finnadie\":\"https://github.githubassets.com/images/icons/emoji/finnadie.png?v8\",\"fire\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f525.png?v8\",\"fire_engine\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f692.png?v8\",\"fire_extinguisher\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ef.png?v8\",\"firecracker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e8.png?v8\",\"firefighter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f692.png?v8\",\"fireworks\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f386.png?v8\",\"first_quarter_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f313.png?v8\",\"first_quarter_moon_with_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f31b.png?v8\",\"fish\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41f.png?v8\",\"fish_cake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f365.png?v8\",\"fishing_pole_and_fish\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a3.png?v8\",\"fishsticks\":\"https://github.githubassets.com/images/icons/emoji/fishsticks.png?v8\",\"fist\":\"https://github.githubassets.com/images/icons/emoji/unicode/270a.png?v8\",\"fist_left\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f91b.png?v8\",\"fist_oncoming\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44a.png?v8\",\"fist_raised\":\"https://github.githubassets.com/images/icons/emoji/unicode/270a.png?v8\",\"fist_right\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f91c.png?v8\",\"five\":\"https://github.githubassets.com/images/icons/emoji/unicode/0035-20e3.png?v8\",\"flags\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f38f.png?v8\",\"flamingo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a9.png?v8\",\"flashlight\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f526.png?v8\",\"flat_shoe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f97f.png?v8\",\"flatbread\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad3.png?v8\",\"fleur_de_lis\":\"https://github.githubassets.com/images/icons/emoji/unicode/269c.png?v8\",\"flight_arrival\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ec.png?v8\",\"flight_departure\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6eb.png?v8\",\"flipper\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42c.png?v8\",\"floppy_disk\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4be.png?v8\",\"flower_playing_cards\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b4.png?v8\",\"flushed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f633.png?v8\",\"fly\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab0.png?v8\",\"flying_disc\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f94f.png?v8\",\"flying_saucer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f8.png?v8\",\"fog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f32b.png?v8\",\"foggy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f301.png?v8\",\"fondue\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad5.png?v8\",\"foot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b6.png?v8\",\"football\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c8.png?v8\",\"footprints\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f463.png?v8\",\"fork_and_knife\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f374.png?v8\",\"fortune_cookie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f960.png?v8\",\"fountain\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f2.png?v8\",\"fountain_pen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f58b.png?v8\",\"four\":\"https://github.githubassets.com/images/icons/emoji/unicode/0034-20e3.png?v8\",\"four_leaf_clover\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f340.png?v8\",\"fox_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f98a.png?v8\",\"fr\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1eb-1f1f7.png?v8\",\"framed_picture\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5bc.png?v8\",\"free\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f193.png?v8\",\"french_guiana\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1eb.png?v8\",\"french_polynesia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1eb.png?v8\",\"french_southern_territories\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1eb.png?v8\",\"fried_egg\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f373.png?v8\",\"fried_shrimp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f364.png?v8\",\"fries\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f35f.png?v8\",\"frog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f438.png?v8\",\"frowning\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f626.png?v8\",\"frowning_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/2639.png?v8\",\"frowning_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64d-2642.png?v8\",\"frowning_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64d.png?v8\",\"frowning_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64d-2640.png?v8\",\"fu\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f595.png?v8\",\"fuelpump\":\"https://github.githubassets.com/images/icons/emoji/unicode/26fd.png?v8\",\"full_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f315.png?v8\",\"full_moon_with_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f31d.png?v8\",\"funeral_urn\":\"https://github.githubassets.com/images/icons/emoji/unicode/26b1.png?v8\",\"gabon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1e6.png?v8\",\"gambia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f2.png?v8\",\"game_die\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b2.png?v8\",\"garlic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c4.png?v8\",\"gb\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1e7.png?v8\",\"gear\":\"https://github.githubassets.com/images/icons/emoji/unicode/2699.png?v8\",\"gem\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f48e.png?v8\",\"gemini\":\"https://github.githubassets.com/images/icons/emoji/unicode/264a.png?v8\",\"genie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9de.png?v8\",\"genie_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9de-2642.png?v8\",\"genie_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9de-2640.png?v8\",\"georgia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1ea.png?v8\",\"ghana\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1ed.png?v8\",\"ghost\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f47b.png?v8\",\"gibraltar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1ee.png?v8\",\"gift\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f381.png?v8\",\"gift_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f49d.png?v8\",\"giraffe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f992.png?v8\",\"girl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f467.png?v8\",\"globe_with_meridians\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f310.png?v8\",\"gloves\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e4.png?v8\",\"goal_net\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f945.png?v8\",\"goat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f410.png?v8\",\"goberserk\":\"https://github.githubassets.com/images/icons/emoji/goberserk.png?v8\",\"godmode\":\"https://github.githubassets.com/images/icons/emoji/godmode.png?v8\",\"goggles\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f97d.png?v8\",\"golf\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f3.png?v8\",\"golfing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cc.png?v8\",\"golfing_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cc-2642.png?v8\",\"golfing_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cc-2640.png?v8\",\"gorilla\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f98d.png?v8\",\"grapes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f347.png?v8\",\"greece\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f7.png?v8\",\"green_apple\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34f.png?v8\",\"green_book\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d7.png?v8\",\"green_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e2.png?v8\",\"green_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f49a.png?v8\",\"green_salad\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f957.png?v8\",\"green_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e9.png?v8\",\"greenland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f1.png?v8\",\"grenada\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1e9.png?v8\",\"grey_exclamation\":\"https://github.githubassets.com/images/icons/emoji/unicode/2755.png?v8\",\"grey_question\":\"https://github.githubassets.com/images/icons/emoji/unicode/2754.png?v8\",\"grimacing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62c.png?v8\",\"grin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f601.png?v8\",\"grinning\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f600.png?v8\",\"guadeloupe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f5.png?v8\",\"guam\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1fa.png?v8\",\"guard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f482.png?v8\",\"guardsman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f482-2642.png?v8\",\"guardswoman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f482-2640.png?v8\",\"guatemala\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f9.png?v8\",\"guernsey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1ec.png?v8\",\"guide_dog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ae.png?v8\",\"guinea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f3.png?v8\",\"guinea_bissau\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1fc.png?v8\",\"guitar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b8.png?v8\",\"gun\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52b.png?v8\",\"guyana\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1fe.png?v8\",\"haircut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f487.png?v8\",\"haircut_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f487-2642.png?v8\",\"haircut_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f487-2640.png?v8\",\"haiti\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ed-1f1f9.png?v8\",\"hamburger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f354.png?v8\",\"hammer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f528.png?v8\",\"hammer_and_pick\":\"https://github.githubassets.com/images/icons/emoji/unicode/2692.png?v8\",\"hammer_and_wrench\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e0.png?v8\",\"hamster\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f439.png?v8\",\"hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/270b.png?v8\",\"hand_over_mouth\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f92d.png?v8\",\"handbag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45c.png?v8\",\"handball_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93e.png?v8\",\"handshake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f91d.png?v8\",\"hankey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a9.png?v8\",\"hash\":\"https://github.githubassets.com/images/icons/emoji/unicode/0023-20e3.png?v8\",\"hatched_chick\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f425.png?v8\",\"hatching_chick\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f423.png?v8\",\"headphones\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a7.png?v8\",\"headstone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa6.png?v8\",\"health_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-2695.png?v8\",\"hear_no_evil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f649.png?v8\",\"heard_mcdonald_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ed-1f1f2.png?v8\",\"heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/2764.png?v8\",\"heart_decoration\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f49f.png?v8\",\"heart_eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f60d.png?v8\",\"heart_eyes_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f63b.png?v8\",\"heart_on_fire\":\"https://github.githubassets.com/images/icons/emoji/unicode/2764-1f525.png?v8\",\"heartbeat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f493.png?v8\",\"heartpulse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f497.png?v8\",\"hearts\":\"https://github.githubassets.com/images/icons/emoji/unicode/2665.png?v8\",\"heavy_check_mark\":\"https://github.githubassets.com/images/icons/emoji/unicode/2714.png?v8\",\"heavy_division_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/2797.png?v8\",\"heavy_dollar_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b2.png?v8\",\"heavy_exclamation_mark\":\"https://github.githubassets.com/images/icons/emoji/unicode/2757.png?v8\",\"heavy_heart_exclamation\":\"https://github.githubassets.com/images/icons/emoji/unicode/2763.png?v8\",\"heavy_minus_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/2796.png?v8\",\"heavy_multiplication_x\":\"https://github.githubassets.com/images/icons/emoji/unicode/2716.png?v8\",\"heavy_plus_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/2795.png?v8\",\"hedgehog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f994.png?v8\",\"helicopter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f681.png?v8\",\"herb\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f33f.png?v8\",\"hibiscus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f33a.png?v8\",\"high_brightness\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f506.png?v8\",\"high_heel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f460.png?v8\",\"hiking_boot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f97e.png?v8\",\"hindu_temple\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6d5.png?v8\",\"hippopotamus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f99b.png?v8\",\"hocho\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52a.png?v8\",\"hole\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f573.png?v8\",\"honduras\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ed-1f1f3.png?v8\",\"honey_pot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f36f.png?v8\",\"honeybee\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41d.png?v8\",\"hong_kong\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ed-1f1f0.png?v8\",\"hook\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa9d.png?v8\",\"horse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f434.png?v8\",\"horse_racing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c7.png?v8\",\"hospital\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e5.png?v8\",\"hot_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f975.png?v8\",\"hot_pepper\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f336.png?v8\",\"hotdog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f32d.png?v8\",\"hotel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e8.png?v8\",\"hotsprings\":\"https://github.githubassets.com/images/icons/emoji/unicode/2668.png?v8\",\"hourglass\":\"https://github.githubassets.com/images/icons/emoji/unicode/231b.png?v8\",\"hourglass_flowing_sand\":\"https://github.githubassets.com/images/icons/emoji/unicode/23f3.png?v8\",\"house\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e0.png?v8\",\"house_with_garden\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e1.png?v8\",\"houses\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d8.png?v8\",\"hugs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f917.png?v8\",\"hungary\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ed-1f1fa.png?v8\",\"hurtrealbad\":\"https://github.githubassets.com/images/icons/emoji/hurtrealbad.png?v8\",\"hushed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62f.png?v8\",\"hut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6d6.png?v8\",\"ice_cream\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f368.png?v8\",\"ice_cube\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ca.png?v8\",\"ice_hockey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d2.png?v8\",\"ice_skate\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f8.png?v8\",\"icecream\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f366.png?v8\",\"iceland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f8.png?v8\",\"id\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f194.png?v8\",\"ideograph_advantage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f250.png?v8\",\"imp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f47f.png?v8\",\"inbox_tray\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e5.png?v8\",\"incoming_envelope\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e8.png?v8\",\"india\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f3.png?v8\",\"indonesia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1e9.png?v8\",\"infinity\":\"https://github.githubassets.com/images/icons/emoji/unicode/267e.png?v8\",\"information_desk_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f481.png?v8\",\"information_source\":\"https://github.githubassets.com/images/icons/emoji/unicode/2139.png?v8\",\"innocent\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f607.png?v8\",\"interrobang\":\"https://github.githubassets.com/images/icons/emoji/unicode/2049.png?v8\",\"iphone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f1.png?v8\",\"iran\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f7.png?v8\",\"iraq\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f6.png?v8\",\"ireland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1ea.png?v8\",\"isle_of_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f2.png?v8\",\"israel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f1.png?v8\",\"it\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ee-1f1f9.png?v8\",\"izakaya_lantern\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ee.png?v8\",\"jack_o_lantern\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f383.png?v8\",\"jamaica\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ef-1f1f2.png?v8\",\"japan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5fe.png?v8\",\"japanese_castle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ef.png?v8\",\"japanese_goblin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f47a.png?v8\",\"japanese_ogre\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f479.png?v8\",\"jeans\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f456.png?v8\",\"jersey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ef-1f1ea.png?v8\",\"jigsaw\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e9.png?v8\",\"jordan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ef-1f1f4.png?v8\",\"joy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f602.png?v8\",\"joy_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f639.png?v8\",\"joystick\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f579.png?v8\",\"jp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ef-1f1f5.png?v8\",\"judge\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-2696.png?v8\",\"juggling_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f939.png?v8\",\"kaaba\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f54b.png?v8\",\"kangaroo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f998.png?v8\",\"kazakhstan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1ff.png?v8\",\"kenya\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1ea.png?v8\",\"key\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f511.png?v8\",\"keyboard\":\"https://github.githubassets.com/images/icons/emoji/unicode/2328.png?v8\",\"keycap_ten\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f51f.png?v8\",\"kick_scooter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f4.png?v8\",\"kimono\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f458.png?v8\",\"kiribati\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1ee.png?v8\",\"kiss\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f48b.png?v8\",\"kissing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f617.png?v8\",\"kissing_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f63d.png?v8\",\"kissing_closed_eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f61a.png?v8\",\"kissing_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f618.png?v8\",\"kissing_smiling_eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f619.png?v8\",\"kite\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa81.png?v8\",\"kiwi_fruit\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f95d.png?v8\",\"kneeling_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ce-2642.png?v8\",\"kneeling_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ce.png?v8\",\"kneeling_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ce-2640.png?v8\",\"knife\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52a.png?v8\",\"knot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa2.png?v8\",\"koala\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f428.png?v8\",\"koko\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f201.png?v8\",\"kosovo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fd-1f1f0.png?v8\",\"kr\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1f7.png?v8\",\"kuwait\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1fc.png?v8\",\"kyrgyzstan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1ec.png?v8\",\"lab_coat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f97c.png?v8\",\"label\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f7.png?v8\",\"lacrosse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f94d.png?v8\",\"ladder\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa9c.png?v8\",\"lady_beetle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41e.png?v8\",\"lantern\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ee.png?v8\",\"laos\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1e6.png?v8\",\"large_blue_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f535.png?v8\",\"large_blue_diamond\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f537.png?v8\",\"large_orange_diamond\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f536.png?v8\",\"last_quarter_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f317.png?v8\",\"last_quarter_moon_with_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f31c.png?v8\",\"latin_cross\":\"https://github.githubassets.com/images/icons/emoji/unicode/271d.png?v8\",\"latvia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1fb.png?v8\",\"laughing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f606.png?v8\",\"leafy_green\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f96c.png?v8\",\"leaves\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f343.png?v8\",\"lebanon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1e7.png?v8\",\"ledger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d2.png?v8\",\"left_luggage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6c5.png?v8\",\"left_right_arrow\":\"https://github.githubassets.com/images/icons/emoji/unicode/2194.png?v8\",\"left_speech_bubble\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5e8.png?v8\",\"leftwards_arrow_with_hook\":\"https://github.githubassets.com/images/icons/emoji/unicode/21a9.png?v8\",\"leg\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b5.png?v8\",\"lemon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34b.png?v8\",\"leo\":\"https://github.githubassets.com/images/icons/emoji/unicode/264c.png?v8\",\"leopard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f406.png?v8\",\"lesotho\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1f8.png?v8\",\"level_slider\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f39a.png?v8\",\"liberia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1f7.png?v8\",\"libra\":\"https://github.githubassets.com/images/icons/emoji/unicode/264e.png?v8\",\"libya\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1fe.png?v8\",\"liechtenstein\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1ee.png?v8\",\"light_rail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f688.png?v8\",\"link\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f517.png?v8\",\"lion\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f981.png?v8\",\"lips\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f444.png?v8\",\"lipstick\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f484.png?v8\",\"lithuania\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1f9.png?v8\",\"lizard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f98e.png?v8\",\"llama\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f999.png?v8\",\"lobster\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f99e.png?v8\",\"lock\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f512.png?v8\",\"lock_with_ink_pen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f50f.png?v8\",\"lollipop\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f36d.png?v8\",\"long_drum\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa98.png?v8\",\"loop\":\"https://github.githubassets.com/images/icons/emoji/unicode/27bf.png?v8\",\"lotion_bottle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f4.png?v8\",\"lotus_position\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d8.png?v8\",\"lotus_position_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d8-2642.png?v8\",\"lotus_position_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d8-2640.png?v8\",\"loud_sound\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f50a.png?v8\",\"loudspeaker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e2.png?v8\",\"love_hotel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e9.png?v8\",\"love_letter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f48c.png?v8\",\"love_you_gesture\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f91f.png?v8\",\"low_brightness\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f505.png?v8\",\"luggage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f3.png?v8\",\"lungs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fac1.png?v8\",\"luxembourg\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1fa.png?v8\",\"lying_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f925.png?v8\",\"m\":\"https://github.githubassets.com/images/icons/emoji/unicode/24c2.png?v8\",\"macau\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f4.png?v8\",\"macedonia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f0.png?v8\",\"madagascar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1ec.png?v8\",\"mag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f50d.png?v8\",\"mag_right\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f50e.png?v8\",\"mage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d9.png?v8\",\"mage_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d9-2642.png?v8\",\"mage_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d9-2640.png?v8\",\"magic_wand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa84.png?v8\",\"magnet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f2.png?v8\",\"mahjong\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f004.png?v8\",\"mailbox\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4eb.png?v8\",\"mailbox_closed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ea.png?v8\",\"mailbox_with_mail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ec.png?v8\",\"mailbox_with_no_mail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ed.png?v8\",\"malawi\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1fc.png?v8\",\"malaysia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1fe.png?v8\",\"maldives\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1fb.png?v8\",\"male_detective\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f575-2642.png?v8\",\"male_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/2642.png?v8\",\"mali\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f1.png?v8\",\"malta\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f9.png?v8\",\"mammoth\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a3.png?v8\",\"man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468.png?v8\",\"man_artist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f3a8.png?v8\",\"man_astronaut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f680.png?v8\",\"man_beard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d4-2642.png?v8\",\"man_cartwheeling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f938-2642.png?v8\",\"man_cook\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f373.png?v8\",\"man_dancing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f57a.png?v8\",\"man_facepalming\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f926-2642.png?v8\",\"man_factory_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f3ed.png?v8\",\"man_farmer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f33e.png?v8\",\"man_feeding_baby\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f37c.png?v8\",\"man_firefighter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f692.png?v8\",\"man_health_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-2695.png?v8\",\"man_in_manual_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9bd.png?v8\",\"man_in_motorized_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9bc.png?v8\",\"man_in_tuxedo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f935-2642.png?v8\",\"man_judge\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-2696.png?v8\",\"man_juggling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f939-2642.png?v8\",\"man_mechanic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f527.png?v8\",\"man_office_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f4bc.png?v8\",\"man_pilot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-2708.png?v8\",\"man_playing_handball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93e-2642.png?v8\",\"man_playing_water_polo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93d-2642.png?v8\",\"man_scientist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f52c.png?v8\",\"man_shrugging\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f937-2642.png?v8\",\"man_singer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f3a4.png?v8\",\"man_student\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f393.png?v8\",\"man_teacher\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f3eb.png?v8\",\"man_technologist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f4bb.png?v8\",\"man_with_gua_pi_mao\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f472.png?v8\",\"man_with_probing_cane\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9af.png?v8\",\"man_with_turban\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f473-2642.png?v8\",\"man_with_veil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f470-2642.png?v8\",\"mandarin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34a.png?v8\",\"mango\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f96d.png?v8\",\"mans_shoe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45e.png?v8\",\"mantelpiece_clock\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f570.png?v8\",\"manual_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9bd.png?v8\",\"maple_leaf\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f341.png?v8\",\"marshall_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1ed.png?v8\",\"martial_arts_uniform\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f94b.png?v8\",\"martinique\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f6.png?v8\",\"mask\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f637.png?v8\",\"massage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f486.png?v8\",\"massage_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f486-2642.png?v8\",\"massage_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f486-2640.png?v8\",\"mate\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c9.png?v8\",\"mauritania\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f7.png?v8\",\"mauritius\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1fa.png?v8\",\"mayotte\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fe-1f1f9.png?v8\",\"meat_on_bone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f356.png?v8\",\"mechanic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f527.png?v8\",\"mechanical_arm\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9be.png?v8\",\"mechanical_leg\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9bf.png?v8\",\"medal_military\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f396.png?v8\",\"medal_sports\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c5.png?v8\",\"medical_symbol\":\"https://github.githubassets.com/images/icons/emoji/unicode/2695.png?v8\",\"mega\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e3.png?v8\",\"melon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f348.png?v8\",\"memo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png?v8\",\"men_wrestling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93c-2642.png?v8\",\"mending_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/2764-1fa79.png?v8\",\"menorah\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f54e.png?v8\",\"mens\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b9.png?v8\",\"mermaid\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9dc-2640.png?v8\",\"merman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9dc-2642.png?v8\",\"merperson\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9dc.png?v8\",\"metal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f918.png?v8\",\"metro\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f687.png?v8\",\"mexico\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1fd.png?v8\",\"microbe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a0.png?v8\",\"micronesia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1eb-1f1f2.png?v8\",\"microphone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a4.png?v8\",\"microscope\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52c.png?v8\",\"middle_finger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f595.png?v8\",\"military_helmet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa96.png?v8\",\"milk_glass\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f95b.png?v8\",\"milky_way\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f30c.png?v8\",\"minibus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f690.png?v8\",\"minidisc\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4bd.png?v8\",\"mirror\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa9e.png?v8\",\"mobile_phone_off\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f4.png?v8\",\"moldova\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1e9.png?v8\",\"monaco\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1e8.png?v8\",\"money_mouth_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f911.png?v8\",\"money_with_wings\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b8.png?v8\",\"moneybag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b0.png?v8\",\"mongolia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f3.png?v8\",\"monkey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f412.png?v8\",\"monkey_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f435.png?v8\",\"monocle_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d0.png?v8\",\"monorail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f69d.png?v8\",\"montenegro\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1ea.png?v8\",\"montserrat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f8.png?v8\",\"moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f314.png?v8\",\"moon_cake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f96e.png?v8\",\"morocco\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1e6.png?v8\",\"mortar_board\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f393.png?v8\",\"mosque\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f54c.png?v8\",\"mosquito\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f99f.png?v8\",\"motor_boat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e5.png?v8\",\"motor_scooter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f5.png?v8\",\"motorcycle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cd.png?v8\",\"motorized_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9bc.png?v8\",\"motorway\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e3.png?v8\",\"mount_fuji\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5fb.png?v8\",\"mountain\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f0.png?v8\",\"mountain_bicyclist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b5.png?v8\",\"mountain_biking_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b5-2642.png?v8\",\"mountain_biking_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b5-2640.png?v8\",\"mountain_cableway\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a0.png?v8\",\"mountain_railway\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f69e.png?v8\",\"mountain_snow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d4.png?v8\",\"mouse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42d.png?v8\",\"mouse2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f401.png?v8\",\"mouse_trap\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa4.png?v8\",\"movie_camera\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a5.png?v8\",\"moyai\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5ff.png?v8\",\"mozambique\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1ff.png?v8\",\"mrs_claus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f936.png?v8\",\"muscle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4aa.png?v8\",\"mushroom\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f344.png?v8\",\"musical_keyboard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b9.png?v8\",\"musical_note\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b5.png?v8\",\"musical_score\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3bc.png?v8\",\"mute\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f507.png?v8\",\"mx_claus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f384.png?v8\",\"myanmar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f2.png?v8\",\"nail_care\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f485.png?v8\",\"name_badge\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4db.png?v8\",\"namibia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1e6.png?v8\",\"national_park\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3de.png?v8\",\"nauru\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1f7.png?v8\",\"nauseated_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f922.png?v8\",\"nazar_amulet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ff.png?v8\",\"neckbeard\":\"https://github.githubassets.com/images/icons/emoji/neckbeard.png?v8\",\"necktie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f454.png?v8\",\"negative_squared_cross_mark\":\"https://github.githubassets.com/images/icons/emoji/unicode/274e.png?v8\",\"nepal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1f5.png?v8\",\"nerd_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f913.png?v8\",\"nesting_dolls\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa86.png?v8\",\"netherlands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1f1.png?v8\",\"neutral_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f610.png?v8\",\"new\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f195.png?v8\",\"new_caledonia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1e8.png?v8\",\"new_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f311.png?v8\",\"new_moon_with_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f31a.png?v8\",\"new_zealand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1ff.png?v8\",\"newspaper\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f0.png?v8\",\"newspaper_roll\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5de.png?v8\",\"next_track_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23ed.png?v8\",\"ng\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f196.png?v8\",\"ng_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f645-2642.png?v8\",\"ng_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f645-2640.png?v8\",\"nicaragua\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1ee.png?v8\",\"niger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1ea.png?v8\",\"nigeria\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1ec.png?v8\",\"night_with_stars\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f303.png?v8\",\"nine\":\"https://github.githubassets.com/images/icons/emoji/unicode/0039-20e3.png?v8\",\"ninja\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f977.png?v8\",\"niue\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1fa.png?v8\",\"no_bell\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f515.png?v8\",\"no_bicycles\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b3.png?v8\",\"no_entry\":\"https://github.githubassets.com/images/icons/emoji/unicode/26d4.png?v8\",\"no_entry_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ab.png?v8\",\"no_good\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f645.png?v8\",\"no_good_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f645-2642.png?v8\",\"no_good_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f645-2640.png?v8\",\"no_mobile_phones\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f5.png?v8\",\"no_mouth\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f636.png?v8\",\"no_pedestrians\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b7.png?v8\",\"no_smoking\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ad.png?v8\",\"non-potable_water\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b1.png?v8\",\"norfolk_island\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1eb.png?v8\",\"north_korea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1f5.png?v8\",\"northern_mariana_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1f5.png?v8\",\"norway\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f3-1f1f4.png?v8\",\"nose\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f443.png?v8\",\"notebook\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d3.png?v8\",\"notebook_with_decorative_cover\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d4.png?v8\",\"notes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b6.png?v8\",\"nut_and_bolt\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f529.png?v8\",\"o\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b55.png?v8\",\"o2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f17e.png?v8\",\"ocean\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f30a.png?v8\",\"octocat\":\"https://github.githubassets.com/images/icons/emoji/octocat.png?v8\",\"octopus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f419.png?v8\",\"oden\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f362.png?v8\",\"office\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e2.png?v8\",\"office_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f4bc.png?v8\",\"oil_drum\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e2.png?v8\",\"ok\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f197.png?v8\",\"ok_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44c.png?v8\",\"ok_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f646-2642.png?v8\",\"ok_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f646.png?v8\",\"ok_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f646-2640.png?v8\",\"old_key\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5dd.png?v8\",\"older_adult\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d3.png?v8\",\"older_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f474.png?v8\",\"older_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f475.png?v8\",\"olive\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad2.png?v8\",\"om\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f549.png?v8\",\"oman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f4-1f1f2.png?v8\",\"on\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f51b.png?v8\",\"oncoming_automobile\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f698.png?v8\",\"oncoming_bus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f68d.png?v8\",\"oncoming_police_car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f694.png?v8\",\"oncoming_taxi\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f696.png?v8\",\"one\":\"https://github.githubassets.com/images/icons/emoji/unicode/0031-20e3.png?v8\",\"one_piece_swimsuit\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa71.png?v8\",\"onion\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c5.png?v8\",\"open_book\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d6.png?v8\",\"open_file_folder\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c2.png?v8\",\"open_hands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f450.png?v8\",\"open_mouth\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62e.png?v8\",\"open_umbrella\":\"https://github.githubassets.com/images/icons/emoji/unicode/2602.png?v8\",\"ophiuchus\":\"https://github.githubassets.com/images/icons/emoji/unicode/26ce.png?v8\",\"orange\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34a.png?v8\",\"orange_book\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d9.png?v8\",\"orange_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e0.png?v8\",\"orange_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e1.png?v8\",\"orange_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e7.png?v8\",\"orangutan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a7.png?v8\",\"orthodox_cross\":\"https://github.githubassets.com/images/icons/emoji/unicode/2626.png?v8\",\"otter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a6.png?v8\",\"outbox_tray\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e4.png?v8\",\"owl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f989.png?v8\",\"ox\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f402.png?v8\",\"oyster\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9aa.png?v8\",\"package\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e6.png?v8\",\"page_facing_up\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c4.png?v8\",\"page_with_curl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4c3.png?v8\",\"pager\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4df.png?v8\",\"paintbrush\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f58c.png?v8\",\"pakistan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f0.png?v8\",\"palau\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1fc.png?v8\",\"palestinian_territories\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f8.png?v8\",\"palm_tree\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f334.png?v8\",\"palms_up_together\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f932.png?v8\",\"panama\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1e6.png?v8\",\"pancakes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f95e.png?v8\",\"panda_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43c.png?v8\",\"paperclip\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ce.png?v8\",\"paperclips\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f587.png?v8\",\"papua_new_guinea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1ec.png?v8\",\"parachute\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa82.png?v8\",\"paraguay\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1fe.png?v8\",\"parasol_on_ground\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f1.png?v8\",\"parking\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f17f.png?v8\",\"parrot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f99c.png?v8\",\"part_alternation_mark\":\"https://github.githubassets.com/images/icons/emoji/unicode/303d.png?v8\",\"partly_sunny\":\"https://github.githubassets.com/images/icons/emoji/unicode/26c5.png?v8\",\"partying_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f973.png?v8\",\"passenger_ship\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f3.png?v8\",\"passport_control\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6c2.png?v8\",\"pause_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23f8.png?v8\",\"paw_prints\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43e.png?v8\",\"peace_symbol\":\"https://github.githubassets.com/images/icons/emoji/unicode/262e.png?v8\",\"peach\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f351.png?v8\",\"peacock\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f99a.png?v8\",\"peanuts\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f95c.png?v8\",\"pear\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f350.png?v8\",\"pen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f58a.png?v8\",\"pencil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png?v8\",\"pencil2\":\"https://github.githubassets.com/images/icons/emoji/unicode/270f.png?v8\",\"penguin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f427.png?v8\",\"pensive\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f614.png?v8\",\"people_holding_hands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f91d-1f9d1.png?v8\",\"people_hugging\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fac2.png?v8\",\"performing_arts\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ad.png?v8\",\"persevere\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f623.png?v8\",\"person_bald\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9b2.png?v8\",\"person_curly_hair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9b1.png?v8\",\"person_feeding_baby\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f37c.png?v8\",\"person_fencing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93a.png?v8\",\"person_in_manual_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9bd.png?v8\",\"person_in_motorized_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9bc.png?v8\",\"person_in_tuxedo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f935.png?v8\",\"person_red_hair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9b0.png?v8\",\"person_white_hair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9b3.png?v8\",\"person_with_probing_cane\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f9af.png?v8\",\"person_with_turban\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f473.png?v8\",\"person_with_veil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f470.png?v8\",\"peru\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1ea.png?v8\",\"petri_dish\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9eb.png?v8\",\"philippines\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1ed.png?v8\",\"phone\":\"https://github.githubassets.com/images/icons/emoji/unicode/260e.png?v8\",\"pick\":\"https://github.githubassets.com/images/icons/emoji/unicode/26cf.png?v8\",\"pickup_truck\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6fb.png?v8\",\"pie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f967.png?v8\",\"pig\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f437.png?v8\",\"pig2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f416.png?v8\",\"pig_nose\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43d.png?v8\",\"pill\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f48a.png?v8\",\"pilot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-2708.png?v8\",\"pinata\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa85.png?v8\",\"pinched_fingers\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f90c.png?v8\",\"pinching_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f90f.png?v8\",\"pineapple\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34d.png?v8\",\"ping_pong\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d3.png?v8\",\"pirate_flag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f4-2620.png?v8\",\"pisces\":\"https://github.githubassets.com/images/icons/emoji/unicode/2653.png?v8\",\"pitcairn_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f3.png?v8\",\"pizza\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f355.png?v8\",\"placard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa7.png?v8\",\"place_of_worship\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6d0.png?v8\",\"plate_with_cutlery\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f37d.png?v8\",\"play_or_pause_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23ef.png?v8\",\"pleading_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f97a.png?v8\",\"plunger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa0.png?v8\",\"point_down\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f447.png?v8\",\"point_left\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f448.png?v8\",\"point_right\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f449.png?v8\",\"point_up\":\"https://github.githubassets.com/images/icons/emoji/unicode/261d.png?v8\",\"point_up_2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f446.png?v8\",\"poland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f1.png?v8\",\"polar_bear\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43b-2744.png?v8\",\"police_car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f693.png?v8\",\"police_officer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46e.png?v8\",\"policeman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46e-2642.png?v8\",\"policewoman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46e-2640.png?v8\",\"poodle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f429.png?v8\",\"poop\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a9.png?v8\",\"popcorn\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f37f.png?v8\",\"portugal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f9.png?v8\",\"post_office\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3e3.png?v8\",\"postal_horn\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ef.png?v8\",\"postbox\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ee.png?v8\",\"potable_water\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b0.png?v8\",\"potato\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f954.png?v8\",\"potted_plant\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab4.png?v8\",\"pouch\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45d.png?v8\",\"poultry_leg\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f357.png?v8\",\"pound\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b7.png?v8\",\"pout\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f621.png?v8\",\"pouting_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f63e.png?v8\",\"pouting_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64e.png?v8\",\"pouting_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64e-2642.png?v8\",\"pouting_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64e-2640.png?v8\",\"pray\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64f.png?v8\",\"prayer_beads\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ff.png?v8\",\"pregnant_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f930.png?v8\",\"pretzel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f968.png?v8\",\"previous_track_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23ee.png?v8\",\"prince\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f934.png?v8\",\"princess\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f478.png?v8\",\"printer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5a8.png?v8\",\"probing_cane\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9af.png?v8\",\"puerto_rico\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f7.png?v8\",\"punch\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44a.png?v8\",\"purple_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e3.png?v8\",\"purple_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f49c.png?v8\",\"purple_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7ea.png?v8\",\"purse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45b.png?v8\",\"pushpin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4cc.png?v8\",\"put_litter_in_its_place\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ae.png?v8\",\"qatar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f6-1f1e6.png?v8\",\"question\":\"https://github.githubassets.com/images/icons/emoji/unicode/2753.png?v8\",\"rabbit\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f430.png?v8\",\"rabbit2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f407.png?v8\",\"raccoon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f99d.png?v8\",\"racehorse\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f40e.png?v8\",\"racing_car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ce.png?v8\",\"radio\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4fb.png?v8\",\"radio_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f518.png?v8\",\"radioactive\":\"https://github.githubassets.com/images/icons/emoji/unicode/2622.png?v8\",\"rage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f621.png?v8\",\"rage1\":\"https://github.githubassets.com/images/icons/emoji/rage1.png?v8\",\"rage2\":\"https://github.githubassets.com/images/icons/emoji/rage2.png?v8\",\"rage3\":\"https://github.githubassets.com/images/icons/emoji/rage3.png?v8\",\"rage4\":\"https://github.githubassets.com/images/icons/emoji/rage4.png?v8\",\"railway_car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f683.png?v8\",\"railway_track\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e4.png?v8\",\"rainbow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f308.png?v8\",\"rainbow_flag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f3-1f308.png?v8\",\"raised_back_of_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f91a.png?v8\",\"raised_eyebrow\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f928.png?v8\",\"raised_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/270b.png?v8\",\"raised_hand_with_fingers_splayed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f590.png?v8\",\"raised_hands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64c.png?v8\",\"raising_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64b.png?v8\",\"raising_hand_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64b-2642.png?v8\",\"raising_hand_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64b-2640.png?v8\",\"ram\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f40f.png?v8\",\"ramen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f35c.png?v8\",\"rat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f400.png?v8\",\"razor\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa92.png?v8\",\"receipt\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9fe.png?v8\",\"record_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23fa.png?v8\",\"recycle\":\"https://github.githubassets.com/images/icons/emoji/unicode/267b.png?v8\",\"red_car\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f697.png?v8\",\"red_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f534.png?v8\",\"red_envelope\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e7.png?v8\",\"red_haired_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9b0.png?v8\",\"red_haired_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9b0.png?v8\",\"red_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e5.png?v8\",\"registered\":\"https://github.githubassets.com/images/icons/emoji/unicode/00ae.png?v8\",\"relaxed\":\"https://github.githubassets.com/images/icons/emoji/unicode/263a.png?v8\",\"relieved\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f60c.png?v8\",\"reminder_ribbon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f397.png?v8\",\"repeat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f501.png?v8\",\"repeat_one\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f502.png?v8\",\"rescue_worker_helmet\":\"https://github.githubassets.com/images/icons/emoji/unicode/26d1.png?v8\",\"restroom\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6bb.png?v8\",\"reunion\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f7-1f1ea.png?v8\",\"revolving_hearts\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f49e.png?v8\",\"rewind\":\"https://github.githubassets.com/images/icons/emoji/unicode/23ea.png?v8\",\"rhinoceros\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f98f.png?v8\",\"ribbon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f380.png?v8\",\"rice\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f35a.png?v8\",\"rice_ball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f359.png?v8\",\"rice_cracker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f358.png?v8\",\"rice_scene\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f391.png?v8\",\"right_anger_bubble\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5ef.png?v8\",\"ring\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f48d.png?v8\",\"ringed_planet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa90.png?v8\",\"robot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f916.png?v8\",\"rock\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa8.png?v8\",\"rocket\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f680.png?v8\",\"rofl\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f923.png?v8\",\"roll_eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f644.png?v8\",\"roll_of_paper\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9fb.png?v8\",\"roller_coaster\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a2.png?v8\",\"roller_skate\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6fc.png?v8\",\"romania\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f7-1f1f4.png?v8\",\"rooster\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f413.png?v8\",\"rose\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f339.png?v8\",\"rosette\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f5.png?v8\",\"rotating_light\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a8.png?v8\",\"round_pushpin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4cd.png?v8\",\"rowboat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a3.png?v8\",\"rowing_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a3-2642.png?v8\",\"rowing_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a3-2640.png?v8\",\"ru\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f7-1f1fa.png?v8\",\"rugby_football\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c9.png?v8\",\"runner\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c3.png?v8\",\"running\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c3.png?v8\",\"running_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c3-2642.png?v8\",\"running_shirt_with_sash\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3bd.png?v8\",\"running_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c3-2640.png?v8\",\"rwanda\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f7-1f1fc.png?v8\",\"sa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f202.png?v8\",\"safety_pin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f7.png?v8\",\"safety_vest\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ba.png?v8\",\"sagittarius\":\"https://github.githubassets.com/images/icons/emoji/unicode/2650.png?v8\",\"sailboat\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f5.png?v8\",\"sake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f376.png?v8\",\"salt\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c2.png?v8\",\"samoa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fc-1f1f8.png?v8\",\"san_marino\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f2.png?v8\",\"sandal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f461.png?v8\",\"sandwich\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f96a.png?v8\",\"santa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f385.png?v8\",\"sao_tome_principe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f9.png?v8\",\"sari\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f97b.png?v8\",\"sassy_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f481-2642.png?v8\",\"sassy_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f481-2640.png?v8\",\"satellite\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4e1.png?v8\",\"satisfied\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f606.png?v8\",\"saudi_arabia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1e6.png?v8\",\"sauna_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d6-2642.png?v8\",\"sauna_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d6.png?v8\",\"sauna_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d6-2640.png?v8\",\"sauropod\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f995.png?v8\",\"saxophone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b7.png?v8\",\"scarf\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e3.png?v8\",\"school\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3eb.png?v8\",\"school_satchel\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f392.png?v8\",\"scientist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f52c.png?v8\",\"scissors\":\"https://github.githubassets.com/images/icons/emoji/unicode/2702.png?v8\",\"scorpion\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f982.png?v8\",\"scorpius\":\"https://github.githubassets.com/images/icons/emoji/unicode/264f.png?v8\",\"scotland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f4-e0067-e0062-e0073-e0063-e0074-e007f.png?v8\",\"scream\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f631.png?v8\",\"scream_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f640.png?v8\",\"screwdriver\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa9b.png?v8\",\"scroll\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4dc.png?v8\",\"seal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ad.png?v8\",\"seat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ba.png?v8\",\"secret\":\"https://github.githubassets.com/images/icons/emoji/unicode/3299.png?v8\",\"see_no_evil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f648.png?v8\",\"seedling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f331.png?v8\",\"selfie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f933.png?v8\",\"senegal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f3.png?v8\",\"serbia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f7-1f1f8.png?v8\",\"service_dog\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f415-1f9ba.png?v8\",\"seven\":\"https://github.githubassets.com/images/icons/emoji/unicode/0037-20e3.png?v8\",\"sewing_needle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa1.png?v8\",\"seychelles\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1e8.png?v8\",\"shallow_pan_of_food\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f958.png?v8\",\"shamrock\":\"https://github.githubassets.com/images/icons/emoji/unicode/2618.png?v8\",\"shark\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f988.png?v8\",\"shaved_ice\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f367.png?v8\",\"sheep\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f411.png?v8\",\"shell\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f41a.png?v8\",\"shield\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e1.png?v8\",\"shinto_shrine\":\"https://github.githubassets.com/images/icons/emoji/unicode/26e9.png?v8\",\"ship\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a2.png?v8\",\"shipit\":\"https://github.githubassets.com/images/icons/emoji/shipit.png?v8\",\"shirt\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f455.png?v8\",\"shit\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a9.png?v8\",\"shoe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45e.png?v8\",\"shopping\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6cd.png?v8\",\"shopping_cart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6d2.png?v8\",\"shorts\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa73.png?v8\",\"shower\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6bf.png?v8\",\"shrimp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f990.png?v8\",\"shrug\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f937.png?v8\",\"shushing_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f92b.png?v8\",\"sierra_leone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f1.png?v8\",\"signal_strength\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f6.png?v8\",\"singapore\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1ec.png?v8\",\"singer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f3a4.png?v8\",\"sint_maarten\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1fd.png?v8\",\"six\":\"https://github.githubassets.com/images/icons/emoji/unicode/0036-20e3.png?v8\",\"six_pointed_star\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52f.png?v8\",\"skateboard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f9.png?v8\",\"ski\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3bf.png?v8\",\"skier\":\"https://github.githubassets.com/images/icons/emoji/unicode/26f7.png?v8\",\"skull\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f480.png?v8\",\"skull_and_crossbones\":\"https://github.githubassets.com/images/icons/emoji/unicode/2620.png?v8\",\"skunk\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a8.png?v8\",\"sled\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6f7.png?v8\",\"sleeping\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f634.png?v8\",\"sleeping_bed\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6cc.png?v8\",\"sleepy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62a.png?v8\",\"slightly_frowning_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f641.png?v8\",\"slightly_smiling_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f642.png?v8\",\"slot_machine\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3b0.png?v8\",\"sloth\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a5.png?v8\",\"slovakia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f0.png?v8\",\"slovenia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1ee.png?v8\",\"small_airplane\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6e9.png?v8\",\"small_blue_diamond\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f539.png?v8\",\"small_orange_diamond\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f538.png?v8\",\"small_red_triangle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f53a.png?v8\",\"small_red_triangle_down\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f53b.png?v8\",\"smile\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f604.png?v8\",\"smile_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f638.png?v8\",\"smiley\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f603.png?v8\",\"smiley_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f63a.png?v8\",\"smiling_face_with_tear\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f972.png?v8\",\"smiling_face_with_three_hearts\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f970.png?v8\",\"smiling_imp\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f608.png?v8\",\"smirk\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f60f.png?v8\",\"smirk_cat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f63c.png?v8\",\"smoking\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ac.png?v8\",\"snail\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f40c.png?v8\",\"snake\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f40d.png?v8\",\"sneezing_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f927.png?v8\",\"snowboarder\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c2.png?v8\",\"snowflake\":\"https://github.githubassets.com/images/icons/emoji/unicode/2744.png?v8\",\"snowman\":\"https://github.githubassets.com/images/icons/emoji/unicode/26c4.png?v8\",\"snowman_with_snow\":\"https://github.githubassets.com/images/icons/emoji/unicode/2603.png?v8\",\"soap\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9fc.png?v8\",\"sob\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62d.png?v8\",\"soccer\":\"https://github.githubassets.com/images/icons/emoji/unicode/26bd.png?v8\",\"socks\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9e6.png?v8\",\"softball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f94e.png?v8\",\"solomon_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1e7.png?v8\",\"somalia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f4.png?v8\",\"soon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f51c.png?v8\",\"sos\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f198.png?v8\",\"sound\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f509.png?v8\",\"south_africa\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ff-1f1e6.png?v8\",\"south_georgia_south_sandwich_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1f8.png?v8\",\"south_sudan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f8.png?v8\",\"space_invader\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f47e.png?v8\",\"spades\":\"https://github.githubassets.com/images/icons/emoji/unicode/2660.png?v8\",\"spaghetti\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f35d.png?v8\",\"sparkle\":\"https://github.githubassets.com/images/icons/emoji/unicode/2747.png?v8\",\"sparkler\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f387.png?v8\",\"sparkles\":\"https://github.githubassets.com/images/icons/emoji/unicode/2728.png?v8\",\"sparkling_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f496.png?v8\",\"speak_no_evil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f64a.png?v8\",\"speaker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f508.png?v8\",\"speaking_head\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5e3.png?v8\",\"speech_balloon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ac.png?v8\",\"speedboat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a4.png?v8\",\"spider\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f577.png?v8\",\"spider_web\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f578.png?v8\",\"spiral_calendar\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5d3.png?v8\",\"spiral_notepad\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5d2.png?v8\",\"sponge\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9fd.png?v8\",\"spoon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f944.png?v8\",\"squid\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f991.png?v8\",\"sri_lanka\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1f0.png?v8\",\"st_barthelemy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e7-1f1f1.png?v8\",\"st_helena\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1ed.png?v8\",\"st_kitts_nevis\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f0-1f1f3.png?v8\",\"st_lucia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f1-1f1e8.png?v8\",\"st_martin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f2-1f1eb.png?v8\",\"st_pierre_miquelon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f5-1f1f2.png?v8\",\"st_vincent_grenadines\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1e8.png?v8\",\"stadium\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3df.png?v8\",\"standing_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cd-2642.png?v8\",\"standing_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cd.png?v8\",\"standing_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9cd-2640.png?v8\",\"star\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b50.png?v8\",\"star2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f31f.png?v8\",\"star_and_crescent\":\"https://github.githubassets.com/images/icons/emoji/unicode/262a.png?v8\",\"star_of_david\":\"https://github.githubassets.com/images/icons/emoji/unicode/2721.png?v8\",\"star_struck\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f929.png?v8\",\"stars\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f320.png?v8\",\"station\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f689.png?v8\",\"statue_of_liberty\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5fd.png?v8\",\"steam_locomotive\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f682.png?v8\",\"stethoscope\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa7a.png?v8\",\"stew\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f372.png?v8\",\"stop_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/23f9.png?v8\",\"stop_sign\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6d1.png?v8\",\"stopwatch\":\"https://github.githubassets.com/images/icons/emoji/unicode/23f1.png?v8\",\"straight_ruler\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4cf.png?v8\",\"strawberry\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f353.png?v8\",\"stuck_out_tongue\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f61b.png?v8\",\"stuck_out_tongue_closed_eyes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f61d.png?v8\",\"stuck_out_tongue_winking_eye\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f61c.png?v8\",\"student\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f393.png?v8\",\"studio_microphone\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f399.png?v8\",\"stuffed_flatbread\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f959.png?v8\",\"sudan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1e9.png?v8\",\"sun_behind_large_cloud\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f325.png?v8\",\"sun_behind_rain_cloud\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f326.png?v8\",\"sun_behind_small_cloud\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f324.png?v8\",\"sun_with_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f31e.png?v8\",\"sunflower\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f33b.png?v8\",\"sunglasses\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f60e.png?v8\",\"sunny\":\"https://github.githubassets.com/images/icons/emoji/unicode/2600.png?v8\",\"sunrise\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f305.png?v8\",\"sunrise_over_mountains\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f304.png?v8\",\"superhero\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b8.png?v8\",\"superhero_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b8-2642.png?v8\",\"superhero_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b8-2640.png?v8\",\"supervillain\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b9.png?v8\",\"supervillain_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b9-2642.png?v8\",\"supervillain_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b9-2640.png?v8\",\"surfer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c4.png?v8\",\"surfing_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c4-2642.png?v8\",\"surfing_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c4-2640.png?v8\",\"suriname\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1f7.png?v8\",\"sushi\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f363.png?v8\",\"suspect\":\"https://github.githubassets.com/images/icons/emoji/suspect.png?v8\",\"suspension_railway\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f69f.png?v8\",\"svalbard_jan_mayen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1ef.png?v8\",\"swan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9a2.png?v8\",\"swaziland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1ff.png?v8\",\"sweat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f613.png?v8\",\"sweat_drops\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a6.png?v8\",\"sweat_smile\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f605.png?v8\",\"sweden\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1ea.png?v8\",\"sweet_potato\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f360.png?v8\",\"swim_brief\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa72.png?v8\",\"swimmer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ca.png?v8\",\"swimming_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ca-2642.png?v8\",\"swimming_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ca-2640.png?v8\",\"switzerland\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e8-1f1ed.png?v8\",\"symbols\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f523.png?v8\",\"synagogue\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f54d.png?v8\",\"syria\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f8-1f1fe.png?v8\",\"syringe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f489.png?v8\",\"t-rex\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f996.png?v8\",\"taco\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f32e.png?v8\",\"tada\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f389.png?v8\",\"taiwan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1fc.png?v8\",\"tajikistan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1ef.png?v8\",\"takeout_box\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f961.png?v8\",\"tamale\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad4.png?v8\",\"tanabata_tree\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f38b.png?v8\",\"tangerine\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f34a.png?v8\",\"tanzania\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1ff.png?v8\",\"taurus\":\"https://github.githubassets.com/images/icons/emoji/unicode/2649.png?v8\",\"taxi\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f695.png?v8\",\"tea\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f375.png?v8\",\"teacher\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f3eb.png?v8\",\"teapot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fad6.png?v8\",\"technologist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d1-1f4bb.png?v8\",\"teddy_bear\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f8.png?v8\",\"telephone\":\"https://github.githubassets.com/images/icons/emoji/unicode/260e.png?v8\",\"telephone_receiver\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4de.png?v8\",\"telescope\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f52d.png?v8\",\"tennis\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3be.png?v8\",\"tent\":\"https://github.githubassets.com/images/icons/emoji/unicode/26fa.png?v8\",\"test_tube\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9ea.png?v8\",\"thailand\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1ed.png?v8\",\"thermometer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f321.png?v8\",\"thinking\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f914.png?v8\",\"thong_sandal\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa74.png?v8\",\"thought_balloon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ad.png?v8\",\"thread\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f5.png?v8\",\"three\":\"https://github.githubassets.com/images/icons/emoji/unicode/0033-20e3.png?v8\",\"thumbsdown\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44e.png?v8\",\"thumbsup\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44d.png?v8\",\"ticket\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ab.png?v8\",\"tickets\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f39f.png?v8\",\"tiger\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f42f.png?v8\",\"tiger2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f405.png?v8\",\"timer_clock\":\"https://github.githubassets.com/images/icons/emoji/unicode/23f2.png?v8\",\"timor_leste\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f1.png?v8\",\"tipping_hand_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f481-2642.png?v8\",\"tipping_hand_person\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f481.png?v8\",\"tipping_hand_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f481-2640.png?v8\",\"tired_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f62b.png?v8\",\"tm\":\"https://github.githubassets.com/images/icons/emoji/unicode/2122.png?v8\",\"togo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1ec.png?v8\",\"toilet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6bd.png?v8\",\"tokelau\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f0.png?v8\",\"tokyo_tower\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5fc.png?v8\",\"tomato\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f345.png?v8\",\"tonga\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f4.png?v8\",\"tongue\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f445.png?v8\",\"toolbox\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f0.png?v8\",\"tooth\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9b7.png?v8\",\"toothbrush\":\"https://github.githubassets.com/images/icons/emoji/unicode/1faa5.png?v8\",\"top\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f51d.png?v8\",\"tophat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3a9.png?v8\",\"tornado\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f32a.png?v8\",\"tr\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f7.png?v8\",\"trackball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5b2.png?v8\",\"tractor\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f69c.png?v8\",\"traffic_light\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a5.png?v8\",\"train\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f68b.png?v8\",\"train2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f686.png?v8\",\"tram\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f68a.png?v8\",\"transgender_flag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f3-26a7.png?v8\",\"transgender_symbol\":\"https://github.githubassets.com/images/icons/emoji/unicode/26a7.png?v8\",\"triangular_flag_on_post\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a9.png?v8\",\"triangular_ruler\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4d0.png?v8\",\"trident\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f531.png?v8\",\"trinidad_tobago\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f9.png?v8\",\"tristan_da_cunha\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1e6.png?v8\",\"triumph\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f624.png?v8\",\"trolleybus\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f68e.png?v8\",\"trollface\":\"https://github.githubassets.com/images/icons/emoji/trollface.png?v8\",\"trophy\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3c6.png?v8\",\"tropical_drink\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f379.png?v8\",\"tropical_fish\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f420.png?v8\",\"truck\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f69a.png?v8\",\"trumpet\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ba.png?v8\",\"tshirt\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f455.png?v8\",\"tulip\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f337.png?v8\",\"tumbler_glass\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f943.png?v8\",\"tunisia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f3.png?v8\",\"turkey\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f983.png?v8\",\"turkmenistan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1f2.png?v8\",\"turks_caicos_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1e8.png?v8\",\"turtle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f422.png?v8\",\"tuvalu\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1f9-1f1fb.png?v8\",\"tv\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4fa.png?v8\",\"twisted_rightwards_arrows\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f500.png?v8\",\"two\":\"https://github.githubassets.com/images/icons/emoji/unicode/0032-20e3.png?v8\",\"two_hearts\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f495.png?v8\",\"two_men_holding_hands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46c.png?v8\",\"two_women_holding_hands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f46d.png?v8\",\"u5272\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f239.png?v8\",\"u5408\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f234.png?v8\",\"u55b6\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f23a.png?v8\",\"u6307\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f22f.png?v8\",\"u6708\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f237.png?v8\",\"u6709\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f236.png?v8\",\"u6e80\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f235.png?v8\",\"u7121\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f21a.png?v8\",\"u7533\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f238.png?v8\",\"u7981\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f232.png?v8\",\"u7a7a\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f233.png?v8\",\"uganda\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1ec.png?v8\",\"uk\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ec-1f1e7.png?v8\",\"ukraine\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1e6.png?v8\",\"umbrella\":\"https://github.githubassets.com/images/icons/emoji/unicode/2614.png?v8\",\"unamused\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f612.png?v8\",\"underage\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f51e.png?v8\",\"unicorn\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f984.png?v8\",\"united_arab_emirates\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1e6-1f1ea.png?v8\",\"united_nations\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1f3.png?v8\",\"unlock\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f513.png?v8\",\"up\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f199.png?v8\",\"upside_down_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f643.png?v8\",\"uruguay\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1fe.png?v8\",\"us\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1f8.png?v8\",\"us_outlying_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1f2.png?v8\",\"us_virgin_islands\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1ee.png?v8\",\"uzbekistan\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fa-1f1ff.png?v8\",\"v\":\"https://github.githubassets.com/images/icons/emoji/unicode/270c.png?v8\",\"vampire\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9db.png?v8\",\"vampire_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9db-2642.png?v8\",\"vampire_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9db-2640.png?v8\",\"vanuatu\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1fa.png?v8\",\"vatican_city\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1e6.png?v8\",\"venezuela\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1ea.png?v8\",\"vertical_traffic_light\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6a6.png?v8\",\"vhs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4fc.png?v8\",\"vibration_mode\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f3.png?v8\",\"video_camera\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4f9.png?v8\",\"video_game\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3ae.png?v8\",\"vietnam\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fb-1f1f3.png?v8\",\"violin\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3bb.png?v8\",\"virgo\":\"https://github.githubassets.com/images/icons/emoji/unicode/264d.png?v8\",\"volcano\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f30b.png?v8\",\"volleyball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3d0.png?v8\",\"vomiting_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f92e.png?v8\",\"vs\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f19a.png?v8\",\"vulcan_salute\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f596.png?v8\",\"waffle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9c7.png?v8\",\"wales\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f4-e0067-e0062-e0077-e006c-e0073-e007f.png?v8\",\"walking\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b6.png?v8\",\"walking_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b6-2642.png?v8\",\"walking_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6b6-2640.png?v8\",\"wallis_futuna\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fc-1f1eb.png?v8\",\"waning_crescent_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f318.png?v8\",\"waning_gibbous_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f316.png?v8\",\"warning\":\"https://github.githubassets.com/images/icons/emoji/unicode/26a0.png?v8\",\"wastebasket\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5d1.png?v8\",\"watch\":\"https://github.githubassets.com/images/icons/emoji/unicode/231a.png?v8\",\"water_buffalo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f403.png?v8\",\"water_polo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93d.png?v8\",\"watermelon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f349.png?v8\",\"wave\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f44b.png?v8\",\"wavy_dash\":\"https://github.githubassets.com/images/icons/emoji/unicode/3030.png?v8\",\"waxing_crescent_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f312.png?v8\",\"waxing_gibbous_moon\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f314.png?v8\",\"wc\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6be.png?v8\",\"weary\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f629.png?v8\",\"wedding\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f492.png?v8\",\"weight_lifting\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cb.png?v8\",\"weight_lifting_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cb-2642.png?v8\",\"weight_lifting_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3cb-2640.png?v8\",\"western_sahara\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ea-1f1ed.png?v8\",\"whale\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f433.png?v8\",\"whale2\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f40b.png?v8\",\"wheel_of_dharma\":\"https://github.githubassets.com/images/icons/emoji/unicode/2638.png?v8\",\"wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/267f.png?v8\",\"white_check_mark\":\"https://github.githubassets.com/images/icons/emoji/unicode/2705.png?v8\",\"white_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/26aa.png?v8\",\"white_flag\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f3f3.png?v8\",\"white_flower\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4ae.png?v8\",\"white_haired_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f468-1f9b3.png?v8\",\"white_haired_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9b3.png?v8\",\"white_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f90d.png?v8\",\"white_large_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/2b1c.png?v8\",\"white_medium_small_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/25fd.png?v8\",\"white_medium_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/25fb.png?v8\",\"white_small_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/25ab.png?v8\",\"white_square_button\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f533.png?v8\",\"wilted_flower\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f940.png?v8\",\"wind_chime\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f390.png?v8\",\"wind_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f32c.png?v8\",\"window\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa9f.png?v8\",\"wine_glass\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f377.png?v8\",\"wink\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f609.png?v8\",\"wolf\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f43a.png?v8\",\"woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469.png?v8\",\"woman_artist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f3a8.png?v8\",\"woman_astronaut\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f680.png?v8\",\"woman_beard\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d4-2640.png?v8\",\"woman_cartwheeling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f938-2640.png?v8\",\"woman_cook\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f373.png?v8\",\"woman_dancing\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f483.png?v8\",\"woman_facepalming\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f926-2640.png?v8\",\"woman_factory_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f3ed.png?v8\",\"woman_farmer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f33e.png?v8\",\"woman_feeding_baby\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f37c.png?v8\",\"woman_firefighter\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f692.png?v8\",\"woman_health_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2695.png?v8\",\"woman_in_manual_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9bd.png?v8\",\"woman_in_motorized_wheelchair\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9bc.png?v8\",\"woman_in_tuxedo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f935-2640.png?v8\",\"woman_judge\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2696.png?v8\",\"woman_juggling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f939-2640.png?v8\",\"woman_mechanic\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f527.png?v8\",\"woman_office_worker\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f4bc.png?v8\",\"woman_pilot\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-2708.png?v8\",\"woman_playing_handball\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93e-2640.png?v8\",\"woman_playing_water_polo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93d-2640.png?v8\",\"woman_scientist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f52c.png?v8\",\"woman_shrugging\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f937-2640.png?v8\",\"woman_singer\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f3a4.png?v8\",\"woman_student\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f393.png?v8\",\"woman_teacher\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f3eb.png?v8\",\"woman_technologist\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f4bb.png?v8\",\"woman_with_headscarf\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9d5.png?v8\",\"woman_with_probing_cane\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f469-1f9af.png?v8\",\"woman_with_turban\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f473-2640.png?v8\",\"woman_with_veil\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f470-2640.png?v8\",\"womans_clothes\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f45a.png?v8\",\"womans_hat\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f452.png?v8\",\"women_wrestling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93c-2640.png?v8\",\"womens\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f6ba.png?v8\",\"wood\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab5.png?v8\",\"woozy_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f974.png?v8\",\"world_map\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f5fa.png?v8\",\"worm\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fab1.png?v8\",\"worried\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f61f.png?v8\",\"wrench\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f527.png?v8\",\"wrestling\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f93c.png?v8\",\"writing_hand\":\"https://github.githubassets.com/images/icons/emoji/unicode/270d.png?v8\",\"x\":\"https://github.githubassets.com/images/icons/emoji/unicode/274c.png?v8\",\"yarn\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9f6.png?v8\",\"yawning_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f971.png?v8\",\"yellow_circle\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e1.png?v8\",\"yellow_heart\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f49b.png?v8\",\"yellow_square\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f7e8.png?v8\",\"yemen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1fe-1f1ea.png?v8\",\"yen\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4b4.png?v8\",\"yin_yang\":\"https://github.githubassets.com/images/icons/emoji/unicode/262f.png?v8\",\"yo_yo\":\"https://github.githubassets.com/images/icons/emoji/unicode/1fa80.png?v8\",\"yum\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f60b.png?v8\",\"zambia\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ff-1f1f2.png?v8\",\"zany_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f92a.png?v8\",\"zap\":\"https://github.githubassets.com/images/icons/emoji/unicode/26a1.png?v8\",\"zebra\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f993.png?v8\",\"zero\":\"https://github.githubassets.com/images/icons/emoji/unicode/0030-20e3.png?v8\",\"zimbabwe\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f1ff-1f1fc.png?v8\",\"zipper_mouth_face\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f910.png?v8\",\"zombie\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9df.png?v8\",\"zombie_man\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9df-2642.png?v8\",\"zombie_woman\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f9df-2640.png?v8\",\"zzz\":\"https://github.githubassets.com/images/icons/emoji/unicode/1f4a4.png?v8\"}\n`;\n\nexports[`emoji-cheat-sheet > (jest-playback) eb445689ec 1`] = `\nTEXT/11 200 OK\naccept-ranges: bytes\nconnection: close\ncontent-encoding: gzip\ncontent-length: 15991\ncontent-security-policy: upgrade-insecure-requests;\ncontent-type: text/plain; charset=utf-8\ndate: Sat, 22 Jul 2023 10:26:01 GMT\netag: \"aada-5e1678235d380-gzip\"\nlast-modified: Tue, 14 Jun 2022 12:26:06 GMT\nserver: Apache/2.4.38 (Debian)\nvary: Accept-Encoding\n@@Smileys & Emotion\n@face-smiling\n1F600\tgrinning face\n1F603\tgrinning face with big eyes\n1F604\tgrinning face with smiling eyes\n1F601\tbeaming face with smiling eyes\n1F606\tgrinning squinting face\n1F605\tgrinning face with sweat\n1F923\trolling on the floor laughing\n1F602\tface with tears of joy\n1F642\tslightly smiling face\n1F643\tupside-down face\n1FAE0\tmelting face\n1F609\twinking face\n1F60A\tsmiling face with smiling eyes\n1F607\tsmiling face with halo\n@face-affection\n1F970\tsmiling face with hearts\n1F60D\tsmiling face with heart-eyes\n1F929\tstar-struck\n1F618\tface blowing a kiss\n1F617\tkissing face\n263A\tsmiling face\n1F61A\tkissing face with closed eyes\n1F619\tkissing face with smiling eyes\n1F972\tsmiling face with tear\n@face-tongue\n1F60B\tface savoring food\n1F61B\tface with tongue\n1F61C\twinking face with tongue\n1F92A\tzany face\n1F61D\tsquinting face with tongue\n1F911\tmoney-mouth face\n@face-hand\n1F917\tsmiling face with open hands\n1F92D\tface with hand over mouth\n1FAE2\tface with open eyes and hand over mouth\n1FAE3\tface with peeking eye\n1F92B\tshushing face\n1F914\tthinking face\n1FAE1\tsaluting face\n@face-neutral-skeptical\n1F910\tzipper-mouth face\n1F928\tface with raised eyebrow\n1F610\tneutral face\n1F611\texpressionless face\n1F636\tface without mouth\n1FAE5\tdotted line face\n1F636 200D 1F32B FE0F\tface in clouds\n1F60F\tsmirking face\n1F612\tunamused face\n1F644\tface with rolling eyes\n1F62C\tgrimacing face\n1F62E 200D 1F4A8\tface exhaling\n1F925\tlying face\n1FAE8\tshaking face\n@face-sleepy\n1F60C\trelieved face\n1F614\tpensive face\n1F62A\tsleepy face\n1F924\tdrooling face\n1F634\tsleeping face\n@face-unwell\n1F637\tface with medical mask\n1F912\tface with thermometer\n1F915\tface with head-bandage\n1F922\tnauseated face\n1F92E\tface vomiting\n1F927\tsneezing face\n1F975\thot face\n1F976\tcold face\n1F974\twoozy face\n1F635\tface with crossed-out eyes\n1F635 200D 1F4AB\tface with spiral eyes\n1F92F\texploding head\n@face-hat\n1F920\tcowboy hat face\n1F973\tpartying face\n1F978\tdisguised face\n@face-glasses\n1F60E\tsmiling face with sunglasses\n1F913\tnerd face\n1F9D0\tface with monocle\n@face-concerned\n1F615\tconfused face\n1FAE4\tface with diagonal mouth\n1F61F\tworried face\n1F641\tslightly frowning face\n2639\tfrowning face\n1F62E\tface with open mouth\n1F62F\thushed face\n1F632\tastonished face\n1F633\tflushed face\n1F97A\tpleading face\n1F979\tface holding back tears\n1F626\tfrowning face with open mouth\n1F627\tanguished face\n1F628\tfearful face\n1F630\tanxious face with sweat\n1F625\tsad but relieved face\n1F622\tcrying face\n1F62D\tloudly crying face\n1F631\tface screaming in fear\n1F616\tconfounded face\n1F623\tpersevering face\n1F61E\tdisappointed face\n1F613\tdowncast face with sweat\n1F629\tweary face\n1F62B\ttired face\n1F971\tyawning face\n@face-negative\n1F624\tface with steam from nose\n1F621\tenraged face\n1F620\tangry face\n1F92C\tface with symbols on mouth\n1F608\tsmiling face with horns\n1F47F\tangry face with horns\n1F480\tskull\n2620\tskull and crossbones\n@face-costume\n1F4A9\tpile of poo\n1F921\tclown face\n1F479\togre\n1F47A\tgoblin\n1F47B\tghost\n1F47D\talien\n1F47E\talien monster\n1F916\trobot\n@cat-face\n1F63A\tgrinning cat\n1F638\tgrinning cat with smiling eyes\n1F639\tcat with tears of joy\n1F63B\tsmiling cat with heart-eyes\n1F63C\tcat with wry smile\n1F63D\tkissing cat\n1F640\tweary cat\n1F63F\tcrying cat\n1F63E\tpouting cat\n@monkey-face\n1F648\tsee-no-evil monkey\n1F649\thear-no-evil monkey\n1F64A\tspeak-no-evil monkey\n@heart\n1F48C\tlove letter\n1F498\theart with arrow\n1F49D\theart with ribbon\n1F496\tsparkling heart\n1F497\tgrowing heart\n1F493\tbeating heart\n1F49E\trevolving hearts\n1F495\ttwo hearts\n1F49F\theart decoration\n2763\theart exclamation\n1F494\tbroken heart\n2764 FE0F 200D 1F525\theart on fire\n2764 FE0F 200D 1FA79\tmending heart\n2764\tred heart\n1FA77\tpink heart\n1F9E1\torange heart\n1F49B\tyellow heart\n1F49A\tgreen heart\n1F499\tblue heart\n1FA75\tlight blue heart\n1F49C\tpurple heart\n1F90E\tbrown heart\n1F5A4\tblack heart\n1FA76\tgrey heart\n1F90D\twhite heart\n@emotion\n1F48B\tkiss mark\n1F4AF\thundred points\n1F4A2\tanger symbol\n1F4A5\tcollision\n1F4AB\tdizzy\n1F4A6\tsweat droplets\n1F4A8\tdashing away\n1F573\thole\n1F4AC\tspeech balloon\n1F441 FE0F 200D 1F5E8 FE0F\teye in speech bubble\n1F5E8\tleft speech bubble\n1F5EF\tright anger bubble\n1F4AD\tthought balloon\n1F4A4\tZZZ\n@@People & Body\n@hand-fingers-open\n1F44B\twaving hand\n1F91A\traised back of hand\n1F590\thand with fingers splayed\n270B\traised hand\n1F596\tvulcan salute\n1FAF1\trightwards hand\n1FAF2\tleftwards hand\n1FAF3\tpalm down hand\n1FAF4\tpalm up hand\n1FAF7\tleftwards pushing hand\n1FAF8\trightwards pushing hand\n@hand-fingers-partial\n1F44C\tOK hand\n1F90C\tpinched fingers\n1F90F\tpinching hand\n270C\tvictory hand\n1F91E\tcrossed fingers\n1FAF0\thand with index finger and thumb crossed\n1F91F\tlove-you gesture\n1F918\tsign of the horns\n1F919\tcall me hand\n@hand-single-finger\n1F448\tbackhand index pointing left\n1F449\tbackhand index pointing right\n1F446\tbackhand index pointing up\n1F595\tmiddle finger\n1F447\tbackhand index pointing down\n261D\tindex pointing up\n1FAF5\tindex pointing at the viewer\n@hand-fingers-closed\n1F44D\tthumbs up\n1F44E\tthumbs down\n270A\traised fist\n1F44A\toncoming fist\n1F91B\tleft-facing fist\n1F91C\tright-facing fist\n@hands\n1F44F\tclapping hands\n1F64C\traising hands\n1FAF6\theart hands\n1F450\topen hands\n1F932\tpalms up together\n1F91D\thandshake\n1F64F\tfolded hands\n@hand-prop\n270D\twriting hand\n1F485\tnail polish\n1F933\tselfie\n@body-parts\n1F4AA\tflexed biceps\n1F9BE\tmechanical arm\n1F9BF\tmechanical leg\n1F9B5\tleg\n1F9B6\tfoot\n1F442\tear\n1F9BB\tear with hearing aid\n1F443\tnose\n1F9E0\tbrain\n1FAC0\tanatomical heart\n1FAC1\tlungs\n1F9B7\ttooth\n1F9B4\tbone\n1F440\teyes\n1F441\teye\n1F445\ttongue\n1F444\tmouth\n1FAE6\tbiting lip\n@person\n1F476\tbaby\n1F9D2\tchild\n1F466\tboy\n1F467\tgirl\n1F9D1\tperson\n1F471\tperson: blond hair\n1F468\tman\n1F9D4\tperson: beard\n1F9D4 200D 2642 FE0F\tman: beard\n1F9D4 200D 2640 FE0F\twoman: beard\n1F468 200D 1F9B0\tman: red hair\n1F468 200D 1F9B1\tman: curly hair\n1F468 200D 1F9B3\tman: white hair\n1F468 200D 1F9B2\tman: bald\n1F469\twoman\n1F469 200D 1F9B0\twoman: red hair\n1F9D1 200D 1F9B0\tperson: red hair\n1F469 200D 1F9B1\twoman: curly hair\n1F9D1 200D 1F9B1\tperson: curly hair\n1F469 200D 1F9B3\twoman: white hair\n1F9D1 200D 1F9B3\tperson: white hair\n1F469 200D 1F9B2\twoman: bald\n1F9D1 200D 1F9B2\tperson: bald\n1F471 200D 2640 FE0F\twoman: blond hair\n1F471 200D 2642 FE0F\tman: blond hair\n1F9D3\tolder person\n1F474\told man\n1F475\told woman\n@person-gesture\n1F64D\tperson frowning\n1F64D 200D 2642 FE0F\tman frowning\n1F64D 200D 2640 FE0F\twoman frowning\n1F64E\tperson pouting\n1F64E 200D 2642 FE0F\tman pouting\n1F64E 200D 2640 FE0F\twoman pouting\n1F645\tperson gesturing NO\n1F645 200D 2642 FE0F\tman gesturing NO\n1F645 200D 2640 FE0F\twoman gesturing NO\n1F646\tperson gesturing OK\n1F646 200D 2642 FE0F\tman gesturing OK\n1F646 200D 2640 FE0F\twoman gesturing OK\n1F481\tperson tipping hand\n1F481 200D 2642 FE0F\tman tipping hand\n1F481 200D 2640 FE0F\twoman tipping hand\n1F64B\tperson raising hand\n1F64B 200D 2642 FE0F\tman raising hand\n1F64B 200D 2640 FE0F\twoman raising hand\n1F9CF\tdeaf person\n1F9CF 200D 2642 FE0F\tdeaf man\n1F9CF 200D 2640 FE0F\tdeaf woman\n1F647\tperson bowing\n1F647 200D 2642 FE0F\tman bowing\n1F647 200D 2640 FE0F\twoman bowing\n1F926\tperson facepalming\n1F926 200D 2642 FE0F\tman facepalming\n1F926 200D 2640 FE0F\twoman facepalming\n1F937\tperson shrugging\n1F937 200D 2642 FE0F\tman shrugging\n1F937 200D 2640 FE0F\twoman shrugging\n@person-role\n1F9D1 200D 2695 FE0F\thealth worker\n1F468 200D 2695 FE0F\tman health worker\n1F469 200D 2695 FE0F\twoman health worker\n1F9D1 200D 1F393\tstudent\n1F468 200D 1F393\tman student\n1F469 200D 1F393\twoman student\n1F9D1 200D 1F3EB\tteacher\n1F468 200D 1F3EB\tman teacher\n1F469 200D 1F3EB\twoman teacher\n1F9D1 200D 2696 FE0F\tjudge\n1F468 200D 2696 FE0F\tman judge\n1F469 200D 2696 FE0F\twoman judge\n1F9D1 200D 1F33E\tfarmer\n1F468 200D 1F33E\tman farmer\n1F469 200D 1F33E\twoman farmer\n1F9D1 200D 1F373\tcook\n1F468 200D 1F373\tman cook\n1F469 200D 1F373\twoman cook\n1F9D1 200D 1F527\tmechanic\n1F468 200D 1F527\tman mechanic\n1F469 200D 1F527\twoman mechanic\n1F9D1 200D 1F3ED\tfactory worker\n1F468 200D 1F3ED\tman factory worker\n1F469 200D 1F3ED\twoman factory worker\n1F9D1 200D 1F4BC\toffice worker\n1F468 200D 1F4BC\tman office worker\n1F469 200D 1F4BC\twoman office worker\n1F9D1 200D 1F52C\tscientist\n1F468 200D 1F52C\tman scientist\n1F469 200D 1F52C\twoman scientist\n1F9D1 200D 1F4BB\ttechnologist\n1F468 200D 1F4BB\tman technologist\n1F469 200D 1F4BB\twoman technologist\n1F9D1 200D 1F3A4\tsinger\n1F468 200D 1F3A4\tman singer\n1F469 200D 1F3A4\twoman singer\n1F9D1 200D 1F3A8\tartist\n1F468 200D 1F3A8\tman artist\n1F469 200D 1F3A8\twoman artist\n1F9D1 200D 2708 FE0F\tpilot\n1F468 200D 2708 FE0F\tman pilot\n1F469 200D 2708 FE0F\twoman pilot\n1F9D1 200D 1F680\tastronaut\n1F468 200D 1F680\tman astronaut\n1F469 200D 1F680\twoman astronaut\n1F9D1 200D 1F692\tfirefighter\n1F468 200D 1F692\tman firefighter\n1F469 200D 1F692\twoman firefighter\n1F46E\tpolice officer\n1F46E 200D 2642 FE0F\tman police officer\n1F46E 200D 2640 FE0F\twoman police officer\n1F575\tdetective\n1F575 FE0F 200D 2642 FE0F\tman detective\n1F575 FE0F 200D 2640 FE0F\twoman detective\n1F482\tguard\n1F482 200D 2642 FE0F\tman guard\n1F482 200D 2640 FE0F\twoman guard\n1F977\tninja\n1F477\tconstruction worker\n1F477 200D 2642 FE0F\tman construction worker\n1F477 200D 2640 FE0F\twoman construction worker\n1FAC5\tperson with crown\n1F934\tprince\n1F478\tprincess\n1F473\tperson wearing turban\n1F473 200D 2642 FE0F\tman wearing turban\n1F473 200D 2640 FE0F\twoman wearing turban\n1F472\tperson with skullcap\n1F9D5\twoman with headscarf\n1F935\tperson in tuxedo\n1F935 200D 2642 FE0F\tman in tuxedo\n1F935 200D 2640 FE0F\twoman in tuxedo\n1F470\tperson with veil\n1F470 200D 2642 FE0F\tman with veil\n1F470 200D 2640 FE0F\twoman with veil\n1F930\tpregnant woman\n1FAC3\tpregnant man\n1FAC4\tpregnant person\n1F931\tbreast-feeding\n1F469 200D 1F37C\twoman feeding baby\n1F468 200D 1F37C\tman feeding baby\n1F9D1 200D 1F37C\tperson feeding baby\n@person-fantasy\n1F47C\tbaby angel\n1F385\tSanta Claus\n1F936\tMrs. Claus\n1F9D1 200D 1F384\tmx claus\n1F9B8\tsuperhero\n1F9B8 200D 2642 FE0F\tman superhero\n1F9B8 200D 2640 FE0F\twoman superhero\n1F9B9\tsupervillain\n1F9B9 200D 2642 FE0F\tman supervillain\n1F9B9 200D 2640 FE0F\twoman supervillain\n1F9D9\tmage\n1F9D9 200D 2642 FE0F\tman mage\n1F9D9 200D 2640 FE0F\twoman mage\n1F9DA\tfairy\n1F9DA 200D 2642 FE0F\tman fairy\n1F9DA 200D 2640 FE0F\twoman fairy\n1F9DB\tvampire\n1F9DB 200D 2642 FE0F\tman vampire\n1F9DB 200D 2640 FE0F\twoman vampire\n1F9DC\tmerperson\n1F9DC 200D 2642 FE0F\tmerman\n1F9DC 200D 2640 FE0F\tmermaid\n1F9DD\telf\n1F9DD 200D 2642 FE0F\tman elf\n1F9DD 200D 2640 FE0F\twoman elf\n1F9DE\tgenie\n1F9DE 200D 2642 FE0F\tman genie\n1F9DE 200D 2640 FE0F\twoman genie\n1F9DF\tzombie\n1F9DF 200D 2642 FE0F\tman zombie\n1F9DF 200D 2640 FE0F\twoman zombie\n1F9CC\ttroll\n@person-activity\n1F486\tperson getting massage\n1F486 200D 2642 FE0F\tman getting massage\n1F486 200D 2640 FE0F\twoman getting massage\n1F487\tperson getting haircut\n1F487 200D 2642 FE0F\tman getting haircut\n1F487 200D 2640 FE0F\twoman getting haircut\n1F6B6\tperson walking\n1F6B6 200D 2642 FE0F\tman walking\n1F6B6 200D 2640 FE0F\twoman walking\n1F9CD\tperson standing\n1F9CD 200D 2642 FE0F\tman standing\n1F9CD 200D 2640 FE0F\twoman standing\n1F9CE\tperson kneeling\n1F9CE 200D 2642 FE0F\tman kneeling\n1F9CE 200D 2640 FE0F\twoman kneeling\n1F9D1 200D 1F9AF\tperson with white cane\n1F468 200D 1F9AF\tman with white cane\n1F469 200D 1F9AF\twoman with white cane\n1F9D1 200D 1F9BC\tperson in motorized wheelchair\n1F468 200D 1F9BC\tman in motorized wheelchair\n1F469 200D 1F9BC\twoman in motorized wheelchair\n1F9D1 200D 1F9BD\tperson in manual wheelchair\n1F468 200D 1F9BD\tman in manual wheelchair\n1F469 200D 1F9BD\twoman in manual wheelchair\n1F3C3\tperson running\n1F3C3 200D 2642 FE0F\tman running\n1F3C3 200D 2640 FE0F\twoman running\n1F483\twoman dancing\n1F57A\tman dancing\n1F574\tperson in suit levitating\n1F46F\tpeople with bunny ears\n1F46F 200D 2642 FE0F\tmen with bunny ears\n1F46F 200D 2640 FE0F\twomen with bunny ears\n1F9D6\tperson in steamy room\n1F9D6 200D 2642 FE0F\tman in steamy room\n1F9D6 200D 2640 FE0F\twoman in steamy room\n1F9D7\tperson climbing\n1F9D7 200D 2642 FE0F\tman climbing\n1F9D7 200D 2640 FE0F\twoman climbing\n@person-sport\n1F93A\tperson fencing\n1F3C7\thorse racing\n26F7\tskier\n1F3C2\tsnowboarder\n1F3CC\tperson golfing\n1F3CC FE0F 200D 2642 FE0F\tman golfing\n1F3CC FE0F 200D 2640 FE0F\twoman golfing\n1F3C4\tperson surfing\n1F3C4 200D 2642 FE0F\tman surfing\n1F3C4 200D 2640 FE0F\twoman surfing\n1F6A3\tperson rowing boat\n1F6A3 200D 2642 FE0F\tman rowing boat\n1F6A3 200D 2640 FE0F\twoman rowing boat\n1F3CA\tperson swimming\n1F3CA 200D 2642 FE0F\tman swimming\n1F3CA 200D 2640 FE0F\twoman swimming\n26F9\tperson bouncing ball\n26F9 FE0F 200D 2642 FE0F\tman bouncing ball\n26F9 FE0F 200D 2640 FE0F\twoman bouncing ball\n1F3CB\tperson lifting weights\n1F3CB FE0F 200D 2642 FE0F\tman lifting weights\n1F3CB FE0F 200D 2640 FE0F\twoman lifting weights\n1F6B4\tperson biking\n1F6B4 200D 2642 FE0F\tman biking\n1F6B4 200D 2640 FE0F\twoman biking\n1F6B5\tperson mountain biking\n1F6B5 200D 2642 FE0F\tman mountain biking\n1F6B5 200D 2640 FE0F\twoman mountain biking\n1F938\tperson cartwheeling\n1F938 200D 2642 FE0F\tman cartwheeling\n1F938 200D 2640 FE0F\twoman cartwheeling\n1F93C\tpeople wrestling\n1F93C 200D 2642 FE0F\tmen wrestling\n1F93C 200D 2640 FE0F\twomen wrestling\n1F93D\tperson playing water polo\n1F93D 200D 2642 FE0F\tman playing water polo\n1F93D 200D 2640 FE0F\twoman playing water polo\n1F93E\tperson playing handball\n1F93E 200D 2642 FE0F\tman playing handball\n1F93E 200D 2640 FE0F\twoman playing handball\n1F939\tperson juggling\n1F939 200D 2642 FE0F\tman juggling\n1F939 200D 2640 FE0F\twoman juggling\n@person-resting\n1F9D8\tperson in lotus position\n1F9D8 200D 2642 FE0F\tman in lotus position\n1F9D8 200D 2640 FE0F\twoman in lotus position\n1F6C0\tperson taking bath\n1F6CC\tperson in bed\n@family\n1F9D1 200D 1F91D 200D 1F9D1\tpeople holding hands\n1F46D\twomen holding hands\n1F46B\twoman and man holding hands\n1F46C\tmen holding hands\n1F48F\tkiss\n1F469 200D 2764 FE0F 200D 1F48B 200D 1F468\tkiss: woman, man\n1F468 200D 2764 FE0F 200D 1F48B 200D 1F468\tkiss: man, man\n1F469 200D 2764 FE0F 200D 1F48B 200D 1F469\tkiss: woman, woman\n1F491\tcouple with heart\n1F469 200D 2764 FE0F 200D 1F468\tcouple with heart: woman, man\n1F468 200D 2764 FE0F 200D 1F468\tcouple with heart: man, man\n1F469 200D 2764 FE0F 200D 1F469\tcouple with heart: woman, woman\n1F46A\tfamily\n1F468 200D 1F469 200D 1F466\tfamily: man, woman, boy\n1F468 200D 1F469 200D 1F467\tfamily: man, woman, girl\n1F468 200D 1F469 200D 1F467 200D 1F466\tfamily: man, woman, girl, boy\n1F468 200D 1F469 200D 1F466 200D 1F466\tfamily: man, woman, boy, boy\n1F468 200D 1F469 200D 1F467 200D 1F467\tfamily: man, woman, girl, girl\n1F468 200D 1F468 200D 1F466\tfamily: man, man, boy\n1F468 200D 1F468 200D 1F467\tfamily: man, man, girl\n1F468 200D 1F468 200D 1F467 200D 1F466\tfamily: man, man, girl, boy\n1F468 200D 1F468 200D 1F466 200D 1F466\tfamily: man, man, boy, boy\n1F468 200D 1F468 200D 1F467 200D 1F467\tfamily: man, man, girl, girl\n1F469 200D 1F469 200D 1F466\tfamily: woman, woman, boy\n1F469 200D 1F469 200D 1F467\tfamily: woman, woman, girl\n1F469 200D 1F469 200D 1F467 200D 1F466\tfamily: woman, woman, girl, boy\n1F469 200D 1F469 200D 1F466 200D 1F466\tfamily: woman, woman, boy, boy\n1F469 200D 1F469 200D 1F467 200D 1F467\tfamily: woman, woman, girl, girl\n1F468 200D 1F466\tfamily: man, boy\n1F468 200D 1F466 200D 1F466\tfamily: man, boy, boy\n1F468 200D 1F467\tfamily: man, girl\n1F468 200D 1F467 200D 1F466\tfamily: man, girl, boy\n1F468 200D 1F467 200D 1F467\tfamily: man, girl, girl\n1F469 200D 1F466\tfamily: woman, boy\n1F469 200D 1F466 200D 1F466\tfamily: woman, boy, boy\n1F469 200D 1F467\tfamily: woman, girl\n1F469 200D 1F467 200D 1F466\tfamily: woman, girl, boy\n1F469 200D 1F467 200D 1F467\tfamily: woman, girl, girl\n@person-symbol\n1F5E3\tspeaking head\n1F464\tbust in silhouette\n1F465\tbusts in silhouette\n1FAC2\tpeople hugging\n1F463\tfootprints\n@@Component\n@hair-style\n1F9B0\tred hair\n1F9B1\tcurly hair\n1F9B3\twhite hair\n1F9B2\tbald\n@@Animals & Nature\n@animal-mammal\n1F435\tmonkey face\n1F412\tmonkey\n1F98D\tgorilla\n1F9A7\torangutan\n1F436\tdog face\n1F415\tdog\n1F9AE\tguide dog\n1F415 200D 1F9BA\tservice dog\n1F429\tpoodle\n1F43A\twolf\n1F98A\tfox\n1F99D\traccoon\n1F431\tcat face\n1F408\tcat\n1F408 200D 2B1B\tblack cat\n1F981\tlion\n1F42F\ttiger face\n1F405\ttiger\n1F406\tleopard\n1F434\thorse face\n1FACE\tmoose\n1FACF\tdonkey\n1F40E\thorse\n1F984\tunicorn\n1F993\tzebra\n1F98C\tdeer\n1F9AC\tbison\n1F42E\tcow face\n1F402\tox\n1F403\twater buffalo\n1F404\tcow\n1F437\tpig face\n1F416\tpig\n1F417\tboar\n1F43D\tpig nose\n1F40F\tram\n1F411\tewe\n1F410\tgoat\n1F42A\tcamel\n1F42B\ttwo-hump camel\n1F999\tllama\n1F992\tgiraffe\n1F418\telephant\n1F9A3\tmammoth\n1F98F\trhinoceros\n1F99B\thippopotamus\n1F42D\tmouse face\n1F401\tmouse\n1F400\trat\n1F439\thamster\n1F430\trabbit face\n1F407\trabbit\n1F43F\tchipmunk\n1F9AB\tbeaver\n1F994\thedgehog\n1F987\tbat\n1F43B\tbear\n1F43B 200D 2744 FE0F\tpolar bear\n1F428\tkoala\n1F43C\tpanda\n1F9A5\tsloth\n1F9A6\totter\n1F9A8\tskunk\n1F998\tkangaroo\n1F9A1\tbadger\n1F43E\tpaw prints\n@animal-bird\n1F983\tturkey\n1F414\tchicken\n1F413\trooster\n1F423\thatching chick\n1F424\tbaby chick\n1F425\tfront-facing baby chick\n1F426\tbird\n1F427\tpenguin\n1F54A\tdove\n1F985\teagle\n1F986\tduck\n1F9A2\tswan\n1F989\towl\n1F9A4\tdodo\n1FAB6\tfeather\n1F9A9\tflamingo\n1F99A\tpeacock\n1F99C\tparrot\n1FABD\twing\n1F426 200D 2B1B\tblack bird\n1FABF\tgoose\n@animal-amphibian\n1F438\tfrog\n@animal-reptile\n1F40A\tcrocodile\n1F422\tturtle\n1F98E\tlizard\n1F40D\tsnake\n1F432\tdragon face\n1F409\tdragon\n1F995\tsauropod\n1F996\tT-Rex\n@animal-marine\n1F433\tspouting whale\n1F40B\twhale\n1F42C\tdolphin\n1F9AD\tseal\n1F41F\tfish\n1F420\ttropical fish\n1F421\tblowfish\n1F988\tshark\n1F419\toctopus\n1F41A\tspiral shell\n1FAB8\tcoral\n1FABC\tjellyfish\n@animal-bug\n1F40C\tsnail\n1F98B\tbutterfly\n1F41B\tbug\n1F41C\tant\n1F41D\thoneybee\n1FAB2\tbeetle\n1F41E\tlady beetle\n1F997\tcricket\n1FAB3\tcockroach\n1F577\tspider\n1F578\tspider web\n1F982\tscorpion\n1F99F\tmosquito\n1FAB0\tfly\n1FAB1\tworm\n1F9A0\tmicrobe\n@plant-flower\n1F490\tbouquet\n1F338\tcherry blossom\n1F4AE\twhite flower\n1FAB7\tlotus\n1F3F5\trosette\n1F339\trose\n1F940\twilted flower\n1F33A\thibiscus\n1F33B\tsunflower\n1F33C\tblossom\n1F337\ttulip\n1FABB\thyacinth\n@plant-other\n1F331\tseedling\n1FAB4\tpotted plant\n1F332\tevergreen tree\n1F333\tdeciduous tree\n1F334\tpalm tree\n1F335\tcactus\n1F33E\tsheaf of rice\n1F33F\therb\n2618\tshamrock\n1F340\tfour leaf clover\n1F341\tmaple leaf\n1F342\tfallen leaf\n1F343\tleaf fluttering in wind\n1FAB9\tempty nest\n1FABA\tnest with eggs\n1F344\tmushroom\n@@Food & Drink\n@food-fruit\n1F347\tgrapes\n1F348\tmelon\n1F349\twatermelon\n1F34A\ttangerine\n1F34B\tlemon\n1F34C\tbanana\n1F34D\tpineapple\n1F96D\tmango\n1F34E\tred apple\n1F34F\tgreen apple\n1F350\tpear\n1F351\tpeach\n1F352\tcherries\n1F353\tstrawberry\n1FAD0\tblueberries\n1F95D\tkiwi fruit\n1F345\ttomato\n1FAD2\tolive\n1F965\tcoconut\n@food-vegetable\n1F951\tavocado\n1F346\teggplant\n1F954\tpotato\n1F955\tcarrot\n1F33D\tear of corn\n1F336\thot pepper\n1FAD1\tbell pepper\n1F952\tcucumber\n1F96C\tleafy green\n1F966\tbroccoli\n1F9C4\tgarlic\n1F9C5\tonion\n1F95C\tpeanuts\n1FAD8\tbeans\n1F330\tchestnut\n1FADA\tginger root\n1FADB\tpea pod\n@food-prepared\n1F35E\tbread\n1F950\tcroissant\n1F956\tbaguette bread\n1FAD3\tflatbread\n1F968\tpretzel\n1F96F\tbagel\n1F95E\tpancakes\n1F9C7\twaffle\n1F9C0\tcheese wedge\n1F356\tmeat on bone\n1F357\tpoultry leg\n1F969\tcut of meat\n1F953\tbacon\n1F354\thamburger\n1F35F\tfrench fries\n1F355\tpizza\n1F32D\thot dog\n1F96A\tsandwich\n1F32E\ttaco\n1F32F\tburrito\n1FAD4\ttamale\n1F959\tstuffed flatbread\n1F9C6\tfalafel\n1F95A\tegg\n1F373\tcooking\n1F958\tshallow pan of food\n1F372\tpot of food\n1FAD5\tfondue\n1F963\tbowl with spoon\n1F957\tgreen salad\n1F37F\tpopcorn\n1F9C8\tbutter\n1F9C2\tsalt\n1F96B\tcanned food\n@food-asian\n1F371\tbento box\n1F358\trice cracker\n1F359\trice ball\n1F35A\tcooked rice\n1F35B\tcurry rice\n1F35C\tsteaming bowl\n1F35D\tspaghetti\n1F360\troasted sweet potato\n1F362\toden\n1F363\tsushi\n1F364\tfried shrimp\n1F365\tfish cake with swirl\n1F96E\tmoon cake\n1F361\tdango\n1F95F\tdumpling\n1F960\tfortune cookie\n1F961\ttakeout box\n@food-marine\n1F980\tcrab\n1F99E\tlobster\n1F990\tshrimp\n1F991\tsquid\n1F9AA\toyster\n@food-sweet\n1F366\tsoft ice cream\n1F367\tshaved ice\n1F368\tice cream\n1F369\tdoughnut\n1F36A\tcookie\n1F382\tbirthday cake\n1F370\tshortcake\n1F9C1\tcupcake\n1F967\tpie\n1F36B\tchocolate bar\n1F36C\tcandy\n1F36D\tlollipop\n1F36E\tcustard\n1F36F\thoney pot\n@drink\n1F37C\tbaby bottle\n1F95B\tglass of milk\n2615\thot beverage\n1FAD6\tteapot\n1F375\tteacup without handle\n1F376\tsake\n1F37E\tbottle with popping cork\n1F377\twine glass\n1F378\tcocktail glass\n1F379\ttropical drink\n1F37A\tbeer mug\n1F37B\tclinking beer mugs\n1F942\tclinking glasses\n1F943\ttumbler glass\n1FAD7\tpouring liquid\n1F964\tcup with straw\n1F9CB\tbubble tea\n1F9C3\tbeverage box\n1F9C9\tmate\n1F9CA\tice\n@dishware\n1F962\tchopsticks\n1F37D\tfork and knife with plate\n1F374\tfork and knife\n1F944\tspoon\n1F52A\tkitchen knife\n1FAD9\tjar\n1F3FA\tamphora\n@@Travel & Places\n@place-map\n1F30D\tglobe showing Europe-Africa\n1F30E\tglobe showing Americas\n1F30F\tglobe showing Asia-Australia\n1F310\tglobe with meridians\n1F5FA\tworld map\n1F5FE\tmap of Japan\n1F9ED\tcompass\n@place-geographic\n1F3D4\tsnow-capped mountain\n26F0\tmountain\n1F30B\tvolcano\n1F5FB\tmount fuji\n1F3D5\tcamping\n1F3D6\tbeach with umbrella\n1F3DC\tdesert\n1F3DD\tdesert island\n1F3DE\tnational park\n@place-building\n1F3DF\tstadium\n1F3DB\tclassical building\n1F3D7\tbuilding construction\n1F9F1\tbrick\n1FAA8\trock\n1FAB5\twood\n1F6D6\thut\n1F3D8\thouses\n1F3DA\tderelict house\n1F3E0\thouse\n1F3E1\thouse with garden\n1F3E2\toffice building\n1F3E3\tJapanese post office\n1F3E4\tpost office\n1F3E5\thospital\n1F3E6\tbank\n1F3E8\thotel\n1F3E9\tlove hotel\n1F3EA\tconvenience store\n1F3EB\tschool\n1F3EC\tdepartment store\n1F3ED\tfactory\n1F3EF\tJapanese castle\n1F3F0\tcastle\n1F492\twedding\n1F5FC\tTokyo tower\n1F5FD\tStatue of Liberty\n@place-religious\n26EA\tchurch\n1F54C\tmosque\n1F6D5\thindu temple\n1F54D\tsynagogue\n26E9\tshinto shrine\n1F54B\tkaaba\n@place-other\n26F2\tfountain\n26FA\ttent\n1F301\tfoggy\n1F303\tnight with stars\n1F3D9\tcityscape\n1F304\tsunrise over mountains\n1F305\tsunrise\n1F306\tcityscape at dusk\n1F307\tsunset\n1F309\tbridge at night\n2668\thot springs\n1F3A0\tcarousel horse\n1F6DD\tplayground slide\n1F3A1\tferris wheel\n1F3A2\troller coaster\n1F488\tbarber pole\n1F3AA\tcircus tent\n@transport-ground\n1F682\tlocomotive\n1F683\trailway car\n1F684\thigh-speed train\n1F685\tbullet train\n1F686\ttrain\n1F687\tmetro\n1F688\tlight rail\n1F689\tstation\n1F68A\ttram\n1F69D\tmonorail\n1F69E\tmountain railway\n1F68B\ttram car\n1F68C\tbus\n1F68D\toncoming bus\n1F68E\ttrolleybus\n1F690\tminibus\n1F691\tambulance\n1F692\tfire engine\n1F693\tpolice car\n1F694\toncoming police car\n1F695\ttaxi\n1F696\toncoming taxi\n1F697\tautomobile\n1F698\toncoming automobile\n1F699\tsport utility vehicle\n1F6FB\tpickup truck\n1F69A\tdelivery truck\n1F69B\tarticulated lorry\n1F69C\ttractor\n1F3CE\tracing car\n1F3CD\tmotorcycle\n1F6F5\tmotor scooter\n1F9BD\tmanual wheelchair\n1F9BC\tmotorized wheelchair\n1F6FA\tauto rickshaw\n1F6B2\tbicycle\n1F6F4\tkick scooter\n1F6F9\tskateboard\n1F6FC\troller skate\n1F68F\tbus stop\n1F6E3\tmotorway\n1F6E4\trailway track\n1F6E2\toil drum\n26FD\tfuel pump\n1F6DE\twheel\n1F6A8\tpolice car light\n1F6A5\thorizontal traffic light\n1F6A6\tvertical traffic light\n1F6D1\tstop sign\n1F6A7\tconstruction\n@transport-water\n2693\tanchor\n1F6DF\tring buoy\n26F5\tsailboat\n1F6F6\tcanoe\n1F6A4\tspeedboat\n1F6F3\tpassenger ship\n26F4\tferry\n1F6E5\tmotor boat\n1F6A2\tship\n@transport-air\n2708\tairplane\n1F6E9\tsmall airplane\n1F6EB\tairplane departure\n1F6EC\tairplane arrival\n1FA82\tparachute\n1F4BA\tseat\n1F681\thelicopter\n1F69F\tsuspension railway\n1F6A0\tmountain cableway\n1F6A1\taerial tramway\n1F6F0\tsatellite\n1F680\trocket\n1F6F8\tflying saucer\n@hotel\n1F6CE\tbellhop bell\n1F9F3\tluggage\n@time\n231B\thourglass done\n23F3\thourglass not done\n231A\twatch\n23F0\talarm clock\n23F1\tstopwatch\n23F2\ttimer clock\n1F570\tmantelpiece clock\n1F55B\ttwelve o’clock\n1F567\ttwelve-thirty\n1F550\tone o’clock\n1F55C\tone-thirty\n1F551\ttwo o’clock\n1F55D\ttwo-thirty\n1F552\tthree o’clock\n1F55E\tthree-thirty\n1F553\tfour o’clock\n1F55F\tfour-thirty\n1F554\tfive o’clock\n1F560\tfive-thirty\n1F555\tsix o’clock\n1F561\tsix-thirty\n1F556\tseven o’clock\n1F562\tseven-thirty\n1F557\teight o’clock\n1F563\teight-thirty\n1F558\tnine o’clock\n1F564\tnine-thirty\n1F559\tten o’clock\n1F565\tten-thirty\n1F55A\televen o’clock\n1F566\televen-thirty\n@sky & weather\n1F311\tnew moon\n1F312\twaxing crescent moon\n1F313\tfirst quarter moon\n1F314\twaxing gibbous moon\n1F315\tfull moon\n1F316\twaning gibbous moon\n1F317\tlast quarter moon\n1F318\twaning crescent moon\n1F319\tcrescent moon\n1F31A\tnew moon face\n1F31B\tfirst quarter moon face\n1F31C\tlast quarter moon face\n1F321\tthermometer\n2600\tsun\n1F31D\tfull moon face\n1F31E\tsun with face\n1FA90\tringed planet\n2B50\tstar\n1F31F\tglowing star\n1F320\tshooting star\n1F30C\tmilky way\n2601\tcloud\n26C5\tsun behind cloud\n26C8\tcloud with lightning and rain\n1F324\tsun behind small cloud\n1F325\tsun behind large cloud\n1F326\tsun behind rain cloud\n1F327\tcloud with rain\n1F328\tcloud with snow\n1F329\tcloud with lightning\n1F32A\ttornado\n1F32B\tfog\n1F32C\twind face\n1F300\tcyclone\n1F308\trainbow\n1F302\tclosed umbrella\n2602\tumbrella\n2614\tumbrella with rain drops\n26F1\tumbrella on ground\n26A1\thigh voltage\n2744\tsnowflake\n2603\tsnowman\n26C4\tsnowman without snow\n2604\tcomet\n1F525\tfire\n1F4A7\tdroplet\n1F30A\twater wave\n@@Activities\n@event\n1F383\tjack-o-lantern\n1F384\tChristmas tree\n1F386\tfireworks\n1F387\tsparkler\n1F9E8\tfirecracker\n2728\tsparkles\n1F388\tballoon\n1F389\tparty popper\n1F38A\tconfetti ball\n1F38B\ttanabata tree\n1F38D\tpine decoration\n1F38E\tJapanese dolls\n1F38F\tcarp streamer\n1F390\twind chime\n1F391\tmoon viewing ceremony\n1F9E7\tred envelope\n1F380\tribbon\n1F381\twrapped gift\n1F397\treminder ribbon\n1F39F\tadmission tickets\n1F3AB\tticket\n@award-medal\n1F396\tmilitary medal\n1F3C6\ttrophy\n1F3C5\tsports medal\n1F947\t1st place medal\n1F948\t2nd place medal\n1F949\t3rd place medal\n@sport\n26BD\tsoccer ball\n26BE\tbaseball\n1F94E\tsoftball\n1F3C0\tbasketball\n1F3D0\tvolleyball\n1F3C8\tamerican football\n1F3C9\trugby football\n1F3BE\ttennis\n1F94F\tflying disc\n1F3B3\tbowling\n1F3CF\tcricket game\n1F3D1\tfield hockey\n1F3D2\tice hockey\n1F94D\tlacrosse\n1F3D3\tping pong\n1F3F8\tbadminton\n1F94A\tboxing glove\n1F94B\tmartial arts uniform\n1F945\tgoal net\n26F3\tflag in hole\n26F8\tice skate\n1F3A3\tfishing pole\n1F93F\tdiving mask\n1F3BD\trunning shirt\n1F3BF\tskis\n1F6F7\tsled\n1F94C\tcurling stone\n@game\n1F3AF\tbullseye\n1FA80\tyo-yo\n1FA81\tkite\n1F52B\twater pistol\n1F3B1\tpool 8 ball\n1F52E\tcrystal ball\n1FA84\tmagic wand\n1F3AE\tvideo game\n1F579\tjoystick\n1F3B0\tslot machine\n1F3B2\tgame die\n1F9E9\tpuzzle piece\n1F9F8\tteddy bear\n1FA85\tpiñata\n1FAA9\tmirror ball\n1FA86\tnesting dolls\n2660\tspade suit\n2665\theart suit\n2666\tdiamond suit\n2663\tclub suit\n265F\tchess pawn\n1F0CF\tjoker\n1F004\tmahjong red dragon\n1F3B4\tflower playing cards\n@arts & crafts\n1F3AD\tperforming arts\n1F5BC\tframed picture\n1F3A8\tartist palette\n1F9F5\tthread\n1FAA1\tsewing needle\n1F9F6\tyarn\n1FAA2\tknot\n@@Objects\n@clothing\n1F453\tglasses\n1F576\tsunglasses\n1F97D\tgoggles\n1F97C\tlab coat\n1F9BA\tsafety vest\n1F454\tnecktie\n1F455\tt-shirt\n1F456\tjeans\n1F9E3\tscarf\n1F9E4\tgloves\n1F9E5\tcoat\n1F9E6\tsocks\n1F457\tdress\n1F458\tkimono\n1F97B\tsari\n1FA71\tone-piece swimsuit\n1FA72\tbriefs\n1FA73\tshorts\n1F459\tbikini\n1F45A\twoman’s clothes\n1FAAD\tfolding hand fan\n1F45B\tpurse\n1F45C\thandbag\n1F45D\tclutch bag\n1F6CD\tshopping bags\n1F392\tbackpack\n1FA74\tthong sandal\n1F45E\tman’s shoe\n1F45F\trunning shoe\n1F97E\thiking boot\n1F97F\tflat shoe\n1F460\thigh-heeled shoe\n1F461\twoman’s sandal\n1FA70\tballet shoes\n1F462\twoman’s boot\n1FAAE\thair pick\n1F451\tcrown\n1F452\twoman’s hat\n1F3A9\ttop hat\n1F393\tgraduation cap\n1F9E2\tbilled cap\n1FA96\tmilitary helmet\n26D1\trescue worker’s helmet\n1F4FF\tprayer beads\n1F484\tlipstick\n1F48D\tring\n1F48E\tgem stone\n@sound\n1F507\tmuted speaker\n1F508\tspeaker low volume\n1F509\tspeaker medium volume\n1F50A\tspeaker high volume\n1F4E2\tloudspeaker\n1F4E3\tmegaphone\n1F4EF\tpostal horn\n1F514\tbell\n1F515\tbell with slash\n@music\n1F3BC\tmusical score\n1F3B5\tmusical note\n1F3B6\tmusical notes\n1F399\tstudio microphone\n1F39A\tlevel slider\n1F39B\tcontrol knobs\n1F3A4\tmicrophone\n1F3A7\theadphone\n1F4FB\tradio\n@musical-instrument\n1F3B7\tsaxophone\n1FA97\taccordion\n1F3B8\tguitar\n1F3B9\tmusical keyboard\n1F3BA\ttrumpet\n1F3BB\tviolin\n1FA95\tbanjo\n1F941\tdrum\n1FA98\tlong drum\n1FA87\tmaracas\n1FA88\tflute\n@phone\n1F4F1\tmobile phone\n1F4F2\tmobile phone with arrow\n260E\ttelephone\n1F4DE\ttelephone receiver\n1F4DF\tpager\n1F4E0\tfax machine\n@computer\n1F50B\tbattery\n1FAAB\tlow battery\n1F50C\telectric plug\n1F4BB\tlaptop\n1F5A5\tdesktop computer\n1F5A8\tprinter\n2328\tkeyboard\n1F5B1\tcomputer mouse\n1F5B2\ttrackball\n1F4BD\tcomputer disk\n1F4BE\tfloppy disk\n1F4BF\toptical disk\n1F4C0\tdvd\n1F9EE\tabacus\n@light & video\n1F3A5\tmovie camera\n1F39E\tfilm frames\n1F4FD\tfilm projector\n1F3AC\tclapper board\n1F4FA\ttelevision\n1F4F7\tcamera\n1F4F8\tcamera with flash\n1F4F9\tvideo camera\n1F4FC\tvideocassette\n1F50D\tmagnifying glass tilted left\n1F50E\tmagnifying glass tilted right\n1F56F\tcandle\n1F4A1\tlight bulb\n1F526\tflashlight\n1F3EE\tred paper lantern\n1FA94\tdiya lamp\n@book-paper\n1F4D4\tnotebook with decorative cover\n1F4D5\tclosed book\n1F4D6\topen book\n1F4D7\tgreen book\n1F4D8\tblue book\n1F4D9\torange book\n1F4DA\tbooks\n1F4D3\tnotebook\n1F4D2\tledger\n1F4C3\tpage with curl\n1F4DC\tscroll\n1F4C4\tpage facing up\n1F4F0\tnewspaper\n1F5DE\trolled-up newspaper\n1F4D1\tbookmark tabs\n1F516\tbookmark\n1F3F7\tlabel\n@money\n1F4B0\tmoney bag\n1FA99\tcoin\n1F4B4\tyen banknote\n1F4B5\tdollar banknote\n1F4B6\teuro banknote\n1F4B7\tpound banknote\n1F4B8\tmoney with wings\n1F4B3\tcredit card\n1F9FE\treceipt\n1F4B9\tchart increasing with yen\n@mail\n2709\tenvelope\n1F4E7\te-mail\n1F4E8\tincoming envelope\n1F4E9\tenvelope with arrow\n1F4E4\toutbox tray\n1F4E5\tinbox tray\n1F4E6\tpackage\n1F4EB\tclosed mailbox with raised flag\n1F4EA\tclosed mailbox with lowered flag\n1F4EC\topen mailbox with raised flag\n1F4ED\topen mailbox with lowered flag\n1F4EE\tpostbox\n1F5F3\tballot box with ballot\n@writing\n270F\tpencil\n2712\tblack nib\n1F58B\tfountain pen\n1F58A\tpen\n1F58C\tpaintbrush\n1F58D\tcrayon\n1F4DD\tmemo\n@office\n1F4BC\tbriefcase\n1F4C1\tfile folder\n1F4C2\topen file folder\n1F5C2\tcard index dividers\n1F4C5\tcalendar\n1F4C6\ttear-off calendar\n1F5D2\tspiral notepad\n1F5D3\tspiral calendar\n1F4C7\tcard index\n1F4C8\tchart increasing\n1F4C9\tchart decreasing\n1F4CA\tbar chart\n1F4CB\tclipboard\n1F4CC\tpushpin\n1F4CD\tround pushpin\n1F4CE\tpaperclip\n1F587\tlinked paperclips\n1F4CF\tstraight ruler\n1F4D0\ttriangular ruler\n2702\tscissors\n1F5C3\tcard file box\n1F5C4\tfile cabinet\n1F5D1\twastebasket\n@lock\n1F512\tlocked\n1F513\tunlocked\n1F50F\tlocked with pen\n1F510\tlocked with key\n1F511\tkey\n1F5DD\told key\n@tool\n1F528\thammer\n1FA93\taxe\n26CF\tpick\n2692\thammer and pick\n1F6E0\thammer and wrench\n1F5E1\tdagger\n2694\tcrossed swords\n1F4A3\tbomb\n1FA83\tboomerang\n1F3F9\tbow and arrow\n1F6E1\tshield\n1FA9A\tcarpentry saw\n1F527\twrench\n1FA9B\tscrewdriver\n1F529\tnut and bolt\n2699\tgear\n1F5DC\tclamp\n2696\tbalance scale\n1F9AF\twhite cane\n1F517\tlink\n26D3\tchains\n1FA9D\thook\n1F9F0\ttoolbox\n1F9F2\tmagnet\n1FA9C\tladder\n@science\n2697\talembic\n1F9EA\ttest tube\n1F9EB\tpetri dish\n1F9EC\tdna\n1F52C\tmicroscope\n1F52D\ttelescope\n1F4E1\tsatellite antenna\n@medical\n1F489\tsyringe\n1FA78\tdrop of blood\n1F48A\tpill\n1FA79\tadhesive bandage\n1FA7C\tcrutch\n1FA7A\tstethoscope\n1FA7B\tx-ray\n@household\n1F6AA\tdoor\n1F6D7\televator\n1FA9E\tmirror\n1FA9F\twindow\n1F6CF\tbed\n1F6CB\tcouch and lamp\n1FA91\tchair\n1F6BD\ttoilet\n1FAA0\tplunger\n1F6BF\tshower\n1F6C1\tbathtub\n1FAA4\tmouse trap\n1FA92\trazor\n1F9F4\tlotion bottle\n1F9F7\tsafety pin\n1F9F9\tbroom\n1F9FA\tbasket\n1F9FB\troll of paper\n1FAA3\tbucket\n1F9FC\tsoap\n1FAE7\tbubbles\n1FAA5\ttoothbrush\n1F9FD\tsponge\n1F9EF\tfire extinguisher\n1F6D2\tshopping cart\n@other-object\n1F6AC\tcigarette\n26B0\tcoffin\n1FAA6\theadstone\n26B1\tfuneral urn\n1F9FF\tnazar amulet\n1FAAC\thamsa\n1F5FF\tmoai\n1FAA7\tplacard\n1FAAA\tidentification card\n@@Symbols\n@transport-sign\n1F3E7\tATM sign\n1F6AE\tlitter in bin sign\n1F6B0\tpotable water\n267F\twheelchair symbol\n1F6B9\tmen’s room\n1F6BA\twomen’s room\n1F6BB\trestroom\n1F6BC\tbaby symbol\n1F6BE\twater closet\n1F6C2\tpassport control\n1F6C3\tcustoms\n1F6C4\tbaggage claim\n1F6C5\tleft luggage\n@warning\n26A0\twarning\n1F6B8\tchildren crossing\n26D4\tno entry\n1F6AB\tprohibited\n1F6B3\tno bicycles\n1F6AD\tno smoking\n1F6AF\tno littering\n1F6B1\tnon-potable water\n1F6B7\tno pedestrians\n1F4F5\tno mobile phones\n1F51E\tno one under eighteen\n2622\tradioactive\n2623\tbiohazard\n@arrow\n2B06\tup arrow\n2197\tup-right arrow\n27A1\tright arrow\n2198\tdown-right arrow\n2B07\tdown arrow\n2199\tdown-left arrow\n2B05\tleft arrow\n2196\tup-left arrow\n2195\tup-down arrow\n2194\tleft-right arrow\n21A9\tright arrow curving left\n21AA\tleft arrow curving right\n2934\tright arrow curving up\n2935\tright arrow curving down\n1F503\tclockwise vertical arrows\n1F504\tcounterclockwise arrows button\n1F519\tBACK arrow\n1F51A\tEND arrow\n1F51B\tON! arrow\n1F51C\tSOON arrow\n1F51D\tTOP arrow\n@religion\n1F6D0\tplace of worship\n269B\tatom symbol\n1F549\tom\n2721\tstar of David\n2638\twheel of dharma\n262F\tyin yang\n271D\tlatin cross\n2626\torthodox cross\n262A\tstar and crescent\n262E\tpeace symbol\n1F54E\tmenorah\n1F52F\tdotted six-pointed star\n1FAAF\tkhanda\n@zodiac\n2648\tAries\n2649\tTaurus\n264A\tGemini\n264B\tCancer\n264C\tLeo\n264D\tVirgo\n264E\tLibra\n264F\tScorpio\n2650\tSagittarius\n2651\tCapricorn\n2652\tAquarius\n2653\tPisces\n26CE\tOphiuchus\n@av-symbol\n1F500\tshuffle tracks button\n1F501\trepeat button\n1F502\trepeat single button\n25B6\tplay button\n23E9\tfast-forward button\n23ED\tnext track button\n23EF\tplay or pause button\n25C0\treverse button\n23EA\tfast reverse button\n23EE\tlast track button\n1F53C\tupwards button\n23EB\tfast up button\n1F53D\tdownwards button\n23EC\tfast down button\n23F8\tpause button\n23F9\tstop button\n23FA\trecord button\n23CF\teject button\n1F3A6\tcinema\n1F505\tdim button\n1F506\tbright button\n1F4F6\tantenna bars\n1F6DC\twireless\n1F4F3\tvibration mode\n1F4F4\tmobile phone off\n@gender\n2640\tfemale sign\n2642\tmale sign\n26A7\ttransgender symbol\n@math\n2716\tmultiply\n2795\tplus\n2796\tminus\n2797\tdivide\n1F7F0\theavy equals sign\n267E\tinfinity\n@punctuation\n203C\tdouble exclamation mark\n2049\texclamation question mark\n2753\tred question mark\n2754\twhite question mark\n2755\twhite exclamation mark\n2757\tred exclamation mark\n3030\twavy dash\n@currency\n1F4B1\tcurrency exchange\n1F4B2\theavy dollar sign\n@other-symbol\n2695\tmedical symbol\n267B\trecycling symbol\n269C\tfleur-de-lis\n1F531\ttrident emblem\n1F4DB\tname badge\n1F530\tJapanese symbol for beginner\n2B55\thollow red circle\n2705\tcheck mark button\n2611\tcheck box with check\n2714\tcheck mark\n274C\tcross mark\n274E\tcross mark button\n27B0\tcurly loop\n27BF\tdouble curly loop\n303D\tpart alternation mark\n2733\teight-spoked asterisk\n2734\teight-pointed star\n2747\tsparkle\n00A9\tcopyright\n00AE\tregistered\n2122\ttrade mark\n@keycap\n0023 FE0F 20E3\tkeycap: #\n002A FE0F 20E3\tkeycap: *\n0030 FE0F 20E3\tkeycap: 0\n0031 FE0F 20E3\tkeycap: 1\n0032 FE0F 20E3\tkeycap: 2\n0033 FE0F 20E3\tkeycap: 3\n0034 FE0F 20E3\tkeycap: 4\n0035 FE0F 20E3\tkeycap: 5\n0036 FE0F 20E3\tkeycap: 6\n0037 FE0F 20E3\tkeycap: 7\n0038 FE0F 20E3\tkeycap: 8\n0039 FE0F 20E3\tkeycap: 9\n1F51F\tkeycap: 10\n@alphanum\n1F520\tinput latin uppercase\n1F521\tinput latin lowercase\n1F522\tinput numbers\n1F523\tinput symbols\n1F524\tinput latin letters\n1F170\tA button (blood type)\n1F18E\tAB button (blood type)\n1F171\tB button (blood type)\n1F191\tCL button\n1F192\tCOOL button\n1F193\tFREE button\n2139\tinformation\n1F194\tID button\n24C2\tcircled M\n1F195\tNEW button\n1F196\tNG button\n1F17E\tO button (blood type)\n1F197\tOK button\n1F17F\tP button\n1F198\tSOS button\n1F199\tUP! button\n1F19A\tVS button\n1F201\tJapanese “here” button\n1F202\tJapanese “service charge” button\n1F237\tJapanese “monthly amount” button\n1F236\tJapanese “not free of charge” button\n1F22F\tJapanese “reserved” button\n1F250\tJapanese “bargain” button\n1F239\tJapanese “discount” button\n1F21A\tJapanese “free of charge” button\n1F232\tJapanese “prohibited” button\n1F251\tJapanese “acceptable” button\n1F238\tJapanese “application” button\n1F234\tJapanese “passing grade” button\n1F233\tJapanese “vacancy” button\n3297\tJapanese “congratulations” button\n3299\tJapanese “secret” button\n1F23A\tJapanese “open for business” button\n1F235\tJapanese “no vacancy” button\n@geometric\n1F534\tred circle\n1F7E0\torange circle\n1F7E1\tyellow circle\n1F7E2\tgreen circle\n1F535\tblue circle\n1F7E3\tpurple circle\n1F7E4\tbrown circle\n26AB\tblack circle\n26AA\twhite circle\n1F7E5\tred square\n1F7E7\torange square\n1F7E8\tyellow square\n1F7E9\tgreen square\n1F7E6\tblue square\n1F7EA\tpurple square\n1F7EB\tbrown square\n2B1B\tblack large square\n2B1C\twhite large square\n25FC\tblack medium square\n25FB\twhite medium square\n25FE\tblack medium-small square\n25FD\twhite medium-small square\n25AA\tblack small square\n25AB\twhite small square\n1F536\tlarge orange diamond\n1F537\tlarge blue diamond\n1F538\tsmall orange diamond\n1F539\tsmall blue diamond\n1F53A\tred triangle pointed up\n1F53B\tred triangle pointed down\n1F4A0\tdiamond with a dot\n1F518\tradio button\n1F533\twhite square button\n1F532\tblack square button\n@@Flags\n@flag\n1F3C1\tchequered flag\n1F6A9\ttriangular flag\n1F38C\tcrossed flags\n1F3F4\tblack flag\n1F3F3\twhite flag\n1F3F3 FE0F 200D 1F308\trainbow flag\n1F3F3 FE0F 200D 26A7 FE0F\ttransgender flag\n1F3F4 200D 2620 FE0F\tpirate flag\n@country-flag\n1F1E6 1F1E8\tflag: Ascension Island\n1F1E6 1F1E9\tflag: Andorra\n1F1E6 1F1EA\tflag: United Arab Emirates\n1F1E6 1F1EB\tflag: Afghanistan\n1F1E6 1F1EC\tflag: Antigua & Barbuda\n1F1E6 1F1EE\tflag: Anguilla\n1F1E6 1F1F1\tflag: Albania\n1F1E6 1F1F2\tflag: Armenia\n1F1E6 1F1F4\tflag: Angola\n1F1E6 1F1F6\tflag: Antarctica\n1F1E6 1F1F7\tflag: Argentina\n1F1E6 1F1F8\tflag: American Samoa\n1F1E6 1F1F9\tflag: Austria\n1F1E6 1F1FA\tflag: Australia\n1F1E6 1F1FC\tflag: Aruba\n1F1E6 1F1FD\tflag: Åland Islands\n1F1E6 1F1FF\tflag: Azerbaijan\n1F1E7 1F1E6\tflag: Bosnia & Herzegovina\n1F1E7 1F1E7\tflag: Barbados\n1F1E7 1F1E9\tflag: Bangladesh\n1F1E7 1F1EA\tflag: Belgium\n1F1E7 1F1EB\tflag: Burkina Faso\n1F1E7 1F1EC\tflag: Bulgaria\n1F1E7 1F1ED\tflag: Bahrain\n1F1E7 1F1EE\tflag: Burundi\n1F1E7 1F1EF\tflag: Benin\n1F1E7 1F1F1\tflag: St. Barthélemy\n1F1E7 1F1F2\tflag: Bermuda\n1F1E7 1F1F3\tflag: Brunei\n1F1E7 1F1F4\tflag: Bolivia\n1F1E7 1F1F6\tflag: Caribbean Netherlands\n1F1E7 1F1F7\tflag: Brazil\n1F1E7 1F1F8\tflag: Bahamas\n1F1E7 1F1F9\tflag: Bhutan\n1F1E7 1F1FB\tflag: Bouvet Island\n1F1E7 1F1FC\tflag: Botswana\n1F1E7 1F1FE\tflag: Belarus\n1F1E7 1F1FF\tflag: Belize\n1F1E8 1F1E6\tflag: Canada\n1F1E8 1F1E8\tflag: Cocos (Keeling) Islands\n1F1E8 1F1E9\tflag: Congo - Kinshasa\n1F1E8 1F1EB\tflag: Central African Republic\n1F1E8 1F1EC\tflag: Congo - Brazzaville\n1F1E8 1F1ED\tflag: Switzerland\n1F1E8 1F1EE\tflag: Côte d’Ivoire\n1F1E8 1F1F0\tflag: Cook Islands\n1F1E8 1F1F1\tflag: Chile\n1F1E8 1F1F2\tflag: Cameroon\n1F1E8 1F1F3\tflag: China\n1F1E8 1F1F4\tflag: Colombia\n1F1E8 1F1F5\tflag: Clipperton Island\n1F1E8 1F1F7\tflag: Costa Rica\n1F1E8 1F1FA\tflag: Cuba\n1F1E8 1F1FB\tflag: Cape Verde\n1F1E8 1F1FC\tflag: Curaçao\n1F1E8 1F1FD\tflag: Christmas Island\n1F1E8 1F1FE\tflag: Cyprus\n1F1E8 1F1FF\tflag: Czechia\n1F1E9 1F1EA\tflag: Germany\n1F1E9 1F1EC\tflag: Diego Garcia\n1F1E9 1F1EF\tflag: Djibouti\n1F1E9 1F1F0\tflag: Denmark\n1F1E9 1F1F2\tflag: Dominica\n1F1E9 1F1F4\tflag: Dominican Republic\n1F1E9 1F1FF\tflag: Algeria\n1F1EA 1F1E6\tflag: Ceuta & Melilla\n1F1EA 1F1E8\tflag: Ecuador\n1F1EA 1F1EA\tflag: Estonia\n1F1EA 1F1EC\tflag: Egypt\n1F1EA 1F1ED\tflag: Western Sahara\n1F1EA 1F1F7\tflag: Eritrea\n1F1EA 1F1F8\tflag: Spain\n1F1EA 1F1F9\tflag: Ethiopia\n1F1EA 1F1FA\tflag: European Union\n1F1EB 1F1EE\tflag: Finland\n1F1EB 1F1EF\tflag: Fiji\n1F1EB 1F1F0\tflag: Falkland Islands\n1F1EB 1F1F2\tflag: Micronesia\n1F1EB 1F1F4\tflag: Faroe Islands\n1F1EB 1F1F7\tflag: France\n1F1EC 1F1E6\tflag: Gabon\n1F1EC 1F1E7\tflag: United Kingdom\n1F1EC 1F1E9\tflag: Grenada\n1F1EC 1F1EA\tflag: Georgia\n1F1EC 1F1EB\tflag: French Guiana\n1F1EC 1F1EC\tflag: Guernsey\n1F1EC 1F1ED\tflag: Ghana\n1F1EC 1F1EE\tflag: Gibraltar\n1F1EC 1F1F1\tflag: Greenland\n1F1EC 1F1F2\tflag: Gambia\n1F1EC 1F1F3\tflag: Guinea\n1F1EC 1F1F5\tflag: Guadeloupe\n1F1EC 1F1F6\tflag: Equatorial Guinea\n1F1EC 1F1F7\tflag: Greece\n1F1EC 1F1F8\tflag: South Georgia & South Sandwich Islands\n1F1EC 1F1F9\tflag: Guatemala\n1F1EC 1F1FA\tflag: Guam\n1F1EC 1F1FC\tflag: Guinea-Bissau\n1F1EC 1F1FE\tflag: Guyana\n1F1ED 1F1F0\tflag: Hong Kong SAR China\n1F1ED 1F1F2\tflag: Heard & McDonald Islands\n1F1ED 1F1F3\tflag: Honduras\n1F1ED 1F1F7\tflag: Croatia\n1F1ED 1F1F9\tflag: Haiti\n1F1ED 1F1FA\tflag: Hungary\n1F1EE 1F1E8\tflag: Canary Islands\n1F1EE 1F1E9\tflag: Indonesia\n1F1EE 1F1EA\tflag: Ireland\n1F1EE 1F1F1\tflag: Israel\n1F1EE 1F1F2\tflag: Isle of Man\n1F1EE 1F1F3\tflag: India\n1F1EE 1F1F4\tflag: British Indian Ocean Territory\n1F1EE 1F1F6\tflag: Iraq\n1F1EE 1F1F7\tflag: Iran\n1F1EE 1F1F8\tflag: Iceland\n1F1EE 1F1F9\tflag: Italy\n1F1EF 1F1EA\tflag: Jersey\n1F1EF 1F1F2\tflag: Jamaica\n1F1EF 1F1F4\tflag: Jordan\n1F1EF 1F1F5\tflag: Japan\n1F1F0 1F1EA\tflag: Kenya\n1F1F0 1F1EC\tflag: Kyrgyzstan\n1F1F0 1F1ED\tflag: Cambodia\n1F1F0 1F1EE\tflag: Kiribati\n1F1F0 1F1F2\tflag: Comoros\n1F1F0 1F1F3\tflag: St. Kitts & Nevis\n1F1F0 1F1F5\tflag: North Korea\n1F1F0 1F1F7\tflag: South Korea\n1F1F0 1F1FC\tflag: Kuwait\n1F1F0 1F1FE\tflag: Cayman Islands\n1F1F0 1F1FF\tflag: Kazakhstan\n1F1F1 1F1E6\tflag: Laos\n1F1F1 1F1E7\tflag: Lebanon\n1F1F1 1F1E8\tflag: St. Lucia\n1F1F1 1F1EE\tflag: Liechtenstein\n1F1F1 1F1F0\tflag: Sri Lanka\n1F1F1 1F1F7\tflag: Liberia\n1F1F1 1F1F8\tflag: Lesotho\n1F1F1 1F1F9\tflag: Lithuania\n1F1F1 1F1FA\tflag: Luxembourg\n1F1F1 1F1FB\tflag: Latvia\n1F1F1 1F1FE\tflag: Libya\n1F1F2 1F1E6\tflag: Morocco\n1F1F2 1F1E8\tflag: Monaco\n1F1F2 1F1E9\tflag: Moldova\n1F1F2 1F1EA\tflag: Montenegro\n1F1F2 1F1EB\tflag: St. Martin\n1F1F2 1F1EC\tflag: Madagascar\n1F1F2 1F1ED\tflag: Marshall Islands\n1F1F2 1F1F0\tflag: North Macedonia\n1F1F2 1F1F1\tflag: Mali\n1F1F2 1F1F2\tflag: Myanmar (Burma)\n1F1F2 1F1F3\tflag: Mongolia\n1F1F2 1F1F4\tflag: Macao SAR China\n1F1F2 1F1F5\tflag: Northern Mariana Islands\n1F1F2 1F1F6\tflag: Martinique\n1F1F2 1F1F7\tflag: Mauritania\n1F1F2 1F1F8\tflag: Montserrat\n1F1F2 1F1F9\tflag: Malta\n1F1F2 1F1FA\tflag: Mauritius\n1F1F2 1F1FB\tflag: Maldives\n1F1F2 1F1FC\tflag: Malawi\n1F1F2 1F1FD\tflag: Mexico\n1F1F2 1F1FE\tflag: Malaysia\n1F1F2 1F1FF\tflag: Mozambique\n1F1F3 1F1E6\tflag: Namibia\n1F1F3 1F1E8\tflag: New Caledonia\n1F1F3 1F1EA\tflag: Niger\n1F1F3 1F1EB\tflag: Norfolk Island\n1F1F3 1F1EC\tflag: Nigeria\n1F1F3 1F1EE\tflag: Nicaragua\n1F1F3 1F1F1\tflag: Netherlands\n1F1F3 1F1F4\tflag: Norway\n1F1F3 1F1F5\tflag: Nepal\n1F1F3 1F1F7\tflag: Nauru\n1F1F3 1F1FA\tflag: Niue\n1F1F3 1F1FF\tflag: New Zealand\n1F1F4 1F1F2\tflag: Oman\n1F1F5 1F1E6\tflag: Panama\n1F1F5 1F1EA\tflag: Peru\n1F1F5 1F1EB\tflag: French Polynesia\n1F1F5 1F1EC\tflag: Papua New Guinea\n1F1F5 1F1ED\tflag: Philippines\n1F1F5 1F1F0\tflag: Pakistan\n1F1F5 1F1F1\tflag: Poland\n1F1F5 1F1F2\tflag: St. Pierre & Miquelon\n1F1F5 1F1F3\tflag: Pitcairn Islands\n1F1F5 1F1F7\tflag: Puerto Rico\n1F1F5 1F1F8\tflag: Palestinian Territories\n1F1F5 1F1F9\tflag: Portugal\n1F1F5 1F1FC\tflag: Palau\n1F1F5 1F1FE\tflag: Paraguay\n1F1F6 1F1E6\tflag: Qatar\n1F1F7 1F1EA\tflag: Réunion\n1F1F7 1F1F4\tflag: Romania\n1F1F7 1F1F8\tflag: Serbia\n1F1F7 1F1FA\tflag: Russia\n1F1F7 1F1FC\tflag: Rwanda\n1F1F8 1F1E6\tflag: Saudi Arabia\n1F1F8 1F1E7\tflag: Solomon Islands\n1F1F8 1F1E8\tflag: Seychelles\n1F1F8 1F1E9\tflag: Sudan\n1F1F8 1F1EA\tflag: Sweden\n1F1F8 1F1EC\tflag: Singapore\n1F1F8 1F1ED\tflag: St. Helena\n1F1F8 1F1EE\tflag: Slovenia\n1F1F8 1F1EF\tflag: Svalbard & Jan Mayen\n1F1F8 1F1F0\tflag: Slovakia\n1F1F8 1F1F1\tflag: Sierra Leone\n1F1F8 1F1F2\tflag: San Marino\n1F1F8 1F1F3\tflag: Senegal\n1F1F8 1F1F4\tflag: Somalia\n1F1F8 1F1F7\tflag: Suriname\n1F1F8 1F1F8\tflag: South Sudan\n1F1F8 1F1F9\tflag: São Tomé & Príncipe\n1F1F8 1F1FB\tflag: El Salvador\n1F1F8 1F1FD\tflag: Sint Maarten\n1F1F8 1F1FE\tflag: Syria\n1F1F8 1F1FF\tflag: Eswatini\n1F1F9 1F1E6\tflag: Tristan da Cunha\n1F1F9 1F1E8\tflag: Turks & Caicos Islands\n1F1F9 1F1E9\tflag: Chad\n1F1F9 1F1EB\tflag: French Southern Territories\n1F1F9 1F1EC\tflag: Togo\n1F1F9 1F1ED\tflag: Thailand\n1F1F9 1F1EF\tflag: Tajikistan\n1F1F9 1F1F0\tflag: Tokelau\n1F1F9 1F1F1\tflag: Timor-Leste\n1F1F9 1F1F2\tflag: Turkmenistan\n1F1F9 1F1F3\tflag: Tunisia\n1F1F9 1F1F4\tflag: Tonga\n1F1F9 1F1F7\tflag: Turkey\n1F1F9 1F1F9\tflag: Trinidad & Tobago\n1F1F9 1F1FB\tflag: Tuvalu\n1F1F9 1F1FC\tflag: Taiwan\n1F1F9 1F1FF\tflag: Tanzania\n1F1FA 1F1E6\tflag: Ukraine\n1F1FA 1F1EC\tflag: Uganda\n1F1FA 1F1F2\tflag: U.S. Outlying Islands\n1F1FA 1F1F3\tflag: United Nations\n1F1FA 1F1F8\tflag: United States\n1F1FA 1F1FE\tflag: Uruguay\n1F1FA 1F1FF\tflag: Uzbekistan\n1F1FB 1F1E6\tflag: Vatican City\n1F1FB 1F1E8\tflag: St. Vincent & Grenadines\n1F1FB 1F1EA\tflag: Venezuela\n1F1FB 1F1EC\tflag: British Virgin Islands\n1F1FB 1F1EE\tflag: U.S. Virgin Islands\n1F1FB 1F1F3\tflag: Vietnam\n1F1FB 1F1FA\tflag: Vanuatu\n1F1FC 1F1EB\tflag: Wallis & Futuna\n1F1FC 1F1F8\tflag: Samoa\n1F1FD 1F1F0\tflag: Kosovo\n1F1FE 1F1EA\tflag: Yemen\n1F1FE 1F1F9\tflag: Mayotte\n1F1FF 1F1E6\tflag: South Africa\n1F1FF 1F1F2\tflag: Zambia\n1F1FF 1F1FC\tflag: Zimbabwe\n@subdivision-flag\n1F3F4 E0067 E0062 E0065 E006E E0067 E007F\tflag: England\n1F3F4 E0067 E0062 E0073 E0063 E0074 E007F\tflag: Scotland\n1F3F4 E0067 E0062 E0077 E006C E0073 E007F\tflag: Wales\n\n`;\n"
  },
  {
    "path": "scripts/fetch.ts",
    "content": "type EmojiLiteral = string\n\nasync function getGithubEmojiIdMap(): Promise<{\n  [githubEmojiId: string]: EmojiLiteral | [string]\n}> {\n  return Object.fromEntries(\n    Object.entries(\n      await fetchJson<{ [id: string]: string }>(\n        'https://api.github.com/emojis',\n        {\n          headers: {\n            'User-Agent': 'https://github.com/ikatyang/emoji-cheat-sheet',\n          },\n        },\n      ),\n    ).map(([id, url]) => [\n      id,\n      url.includes('/unicode/')\n        ? getLast(url.split('/'))\n            .split('.png')[0]\n            .split('-')\n            .map(codePointText =>\n              String.fromCodePoint(Number.parseInt(codePointText, 16)),\n            )\n            .join('')\n        : [getLast(url.split('/')).split('.png')[0]], // github's custom emoji\n    ]),\n  )\n}\n\nasync function getUnicodeEmojiCategoryIterator() {\n  return getUnicodeEmojiCategoryIteratorFromText(\n    await fetchText('https://unicode.org/emoji/charts/full-emoji-list.txt'),\n  )\n}\n\nfunction* getUnicodeEmojiCategoryIteratorFromText(text: string) {\n  const lines = text.split('\\n')\n  for (const line of lines) {\n    if (line.startsWith('@@')) {\n      const value = line.substring(2)\n      yield { type: 'category', value }\n    } else if (line.startsWith('@')) {\n      const value = line.substring(1)\n      yield { type: 'subcategory', value }\n    } else if (line.length) {\n      const value = line\n        .split('\\t')[0]\n        .split(' ')\n        .map(_ => String.fromCodePoint(parseInt(_, 16)))\n        .join('')\n      yield { type: 'emoji', value }\n    }\n  }\n}\n\nexport async function getCategorizeGithubEmojiIds() {\n  const githubEmojiIdMap = await getGithubEmojiIdMap()\n  const emojiLiteralToGithubEmojiIdsMap: {\n    [emojiLiteral: string]: string[]\n  } = {}\n  const githubSpecificEmojiUriToGithubEmojiIdsMap: {\n    [githubSpecificEmojiUri: string]: string[]\n  } = {}\n  for (const [emojiId, emojiLiteral] of Object.entries(githubEmojiIdMap)) {\n    if (Array.isArray(emojiLiteral)) {\n      const [uri] = emojiLiteral\n      if (!githubSpecificEmojiUriToGithubEmojiIdsMap[uri]) {\n        githubSpecificEmojiUriToGithubEmojiIdsMap[uri] = []\n      }\n      githubSpecificEmojiUriToGithubEmojiIdsMap[uri].push(emojiId)\n      delete githubEmojiIdMap[emojiId]\n      continue\n    }\n    if (!emojiLiteralToGithubEmojiIdsMap[emojiLiteral]) {\n      emojiLiteralToGithubEmojiIdsMap[emojiLiteral] = []\n    }\n    emojiLiteralToGithubEmojiIdsMap[emojiLiteral].push(emojiId)\n  }\n  const categorizedEmojiIds: {\n    [category: string]: { [subcategory: string]: Array<string[]> }\n  } = {}\n  const categoryStack = []\n  for (const { type, value } of await getUnicodeEmojiCategoryIterator()) {\n    switch (type) {\n      case 'category': {\n        while (categoryStack.length) categoryStack.pop()\n        const title = toTitleCase(value)\n        categoryStack.push(title)\n        categorizedEmojiIds[title] = {}\n        break\n      }\n      case 'subcategory': {\n        if (categoryStack.length > 1) categoryStack.pop()\n        const title = toTitleCase(value)\n        categoryStack.push(title)\n        categorizedEmojiIds[categoryStack[0]][title] = []\n        break\n      }\n      case 'emoji': {\n        const key = value.replace(/[\\ufe00-\\ufe0f\\u200d]/g, '')\n        if (key in emojiLiteralToGithubEmojiIdsMap) {\n          const githubEmojiIds = emojiLiteralToGithubEmojiIdsMap[key]\n          const [category, subcategory] = categoryStack\n          categorizedEmojiIds[category][subcategory].push(githubEmojiIds)\n          for (const githubEmojiId of githubEmojiIds) {\n            delete githubEmojiIdMap[githubEmojiId]\n          }\n        }\n        break\n      }\n      default:\n        throw new Error(`Unexpected type ${JSON.stringify(type)}`)\n    }\n  }\n  if (Object.keys(githubEmojiIdMap).length) {\n    throw new Error(`Uncategorized emoji(s) found.`)\n  }\n  for (const category of Object.keys(categorizedEmojiIds)) {\n    const subCategorizedEmojiIds = categorizedEmojiIds[category]\n    const subcategories = Object.keys(subCategorizedEmojiIds)\n    for (const subcategory of subcategories) {\n      if (subCategorizedEmojiIds[subcategory].length === 0) {\n        delete subCategorizedEmojiIds[subcategory]\n      }\n    }\n    if (Object.keys(subCategorizedEmojiIds).length === 0) {\n      delete categorizedEmojiIds[category]\n    }\n  }\n  if (Object.keys(githubSpecificEmojiUriToGithubEmojiIdsMap).length) {\n    categorizedEmojiIds['GitHub Custom Emoji'] = {\n      '': Object.entries(githubSpecificEmojiUriToGithubEmojiIdsMap).map(\n        ([, v]) => v,\n      ),\n    }\n  }\n  return categorizedEmojiIds\n}\n\nfunction toTitleCase(text: string) {\n  return text\n    .replace(/-/g, ' ')\n    .replace(/\\s+/g, ' ')\n    .replace(/[a-zA-Z]+/g, word => word[0].toUpperCase() + word.slice(1))\n}\n\nfunction getLast<T>(array: T[]) {\n  return array[array.length - 1]\n}\n\nasync function fetchJson<T>(url: string, init?: RequestInit) {\n  const response = await fetch(url, init)\n  return (await response.json()) as T\n}\n\nasync function fetchText(url: string, init?: RequestInit) {\n  const response = await fetch(url, init)\n  return await response.text()\n}\n"
  },
  {
    "path": "scripts/generate.test.ts",
    "content": "import { expect, test } from 'vitest'\nimport setupPlayback from 'jest-playback'\nimport { generate } from './generate.js'\n\nawait setupPlayback()\n\ntest('emoji-cheat-sheet', async () => {\n  expect(await generate()).toMatchInlineSnapshot(`\n    \"# emoji-cheat-sheet\n\n    [![Up to Date](https://github.com/ikatyang/emoji-cheat-sheet/workflows/Up%20to%20Date/badge.svg)](https://github.com/ikatyang/emoji-cheat-sheet/actions?query=workflow%3A%22Up+to+Date%22)\n\n    This cheat sheet is automatically generated from [GitHub Emoji API](https://api.github.com/emojis) and [Unicode Full Emoji List](https://unicode.org/emoji/charts/full-emoji-list.html).\n\n    ## Table of Contents\n\n    - [Smileys & Emotion](#smileys--emotion)\n    - [People & Body](#people--body)\n    - [Animals & Nature](#animals--nature)\n    - [Food & Drink](#food--drink)\n    - [Travel & Places](#travel--places)\n    - [Activities](#activities)\n    - [Objects](#objects)\n    - [Symbols](#symbols)\n    - [Flags](#flags)\n    - [GitHub Custom Emoji](#github-custom-emoji)\n\n    ### Smileys & Emotion\n\n    - [Face Smiling](#face-smiling)\n    - [Face Affection](#face-affection)\n    - [Face Tongue](#face-tongue)\n    - [Face Hand](#face-hand)\n    - [Face Neutral Skeptical](#face-neutral-skeptical)\n    - [Face Sleepy](#face-sleepy)\n    - [Face Unwell](#face-unwell)\n    - [Face Hat](#face-hat)\n    - [Face Glasses](#face-glasses)\n    - [Face Concerned](#face-concerned)\n    - [Face Negative](#face-negative)\n    - [Face Costume](#face-costume)\n    - [Cat Face](#cat-face)\n    - [Monkey Face](#monkey-face)\n    - [Heart](#heart)\n    - [Emotion](#emotion)\n\n    #### Face Smiling\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :grinning: | \\`:grinning:\\` | :smiley: | \\`:smiley:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :smile: | \\`:smile:\\` | :grin: | \\`:grin:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :laughing: | \\`:laughing:\\` <br /> \\`:satisfied:\\` | :sweat_smile: | \\`:sweat_smile:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :rofl: | \\`:rofl:\\` | :joy: | \\`:joy:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :slightly_smiling_face: | \\`:slightly_smiling_face:\\` | :upside_down_face: | \\`:upside_down_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :wink: | \\`:wink:\\` | :blush: | \\`:blush:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :innocent: | \\`:innocent:\\` | | | [top](#table-of-contents) |\n\n    #### Face Affection\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :smiling_face_with_three_hearts: | \\`:smiling_face_with_three_hearts:\\` | :heart_eyes: | \\`:heart_eyes:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :star_struck: | \\`:star_struck:\\` | :kissing_heart: | \\`:kissing_heart:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :kissing: | \\`:kissing:\\` | :relaxed: | \\`:relaxed:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :kissing_closed_eyes: | \\`:kissing_closed_eyes:\\` | :kissing_smiling_eyes: | \\`:kissing_smiling_eyes:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :smiling_face_with_tear: | \\`:smiling_face_with_tear:\\` | | | [top](#table-of-contents) |\n\n    #### Face Tongue\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :yum: | \\`:yum:\\` | :stuck_out_tongue: | \\`:stuck_out_tongue:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :stuck_out_tongue_winking_eye: | \\`:stuck_out_tongue_winking_eye:\\` | :zany_face: | \\`:zany_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :stuck_out_tongue_closed_eyes: | \\`:stuck_out_tongue_closed_eyes:\\` | :money_mouth_face: | \\`:money_mouth_face:\\` | [top](#table-of-contents) |\n\n    #### Face Hand\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :hugs: | \\`:hugs:\\` | :hand_over_mouth: | \\`:hand_over_mouth:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :shushing_face: | \\`:shushing_face:\\` | :thinking: | \\`:thinking:\\` | [top](#table-of-contents) |\n\n    #### Face Neutral Skeptical\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :zipper_mouth_face: | \\`:zipper_mouth_face:\\` | :raised_eyebrow: | \\`:raised_eyebrow:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :neutral_face: | \\`:neutral_face:\\` | :expressionless: | \\`:expressionless:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :no_mouth: | \\`:no_mouth:\\` | :face_in_clouds: | \\`:face_in_clouds:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :smirk: | \\`:smirk:\\` | :unamused: | \\`:unamused:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :roll_eyes: | \\`:roll_eyes:\\` | :grimacing: | \\`:grimacing:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :face_exhaling: | \\`:face_exhaling:\\` | :lying_face: | \\`:lying_face:\\` | [top](#table-of-contents) |\n\n    #### Face Sleepy\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :relieved: | \\`:relieved:\\` | :pensive: | \\`:pensive:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :sleepy: | \\`:sleepy:\\` | :drooling_face: | \\`:drooling_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :sleeping: | \\`:sleeping:\\` | | | [top](#table-of-contents) |\n\n    #### Face Unwell\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :mask: | \\`:mask:\\` | :face_with_thermometer: | \\`:face_with_thermometer:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :face_with_head_bandage: | \\`:face_with_head_bandage:\\` | :nauseated_face: | \\`:nauseated_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :vomiting_face: | \\`:vomiting_face:\\` | :sneezing_face: | \\`:sneezing_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :hot_face: | \\`:hot_face:\\` | :cold_face: | \\`:cold_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :woozy_face: | \\`:woozy_face:\\` | :dizzy_face: | \\`:dizzy_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :face_with_spiral_eyes: | \\`:face_with_spiral_eyes:\\` | :exploding_head: | \\`:exploding_head:\\` | [top](#table-of-contents) |\n\n    #### Face Hat\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :cowboy_hat_face: | \\`:cowboy_hat_face:\\` | :partying_face: | \\`:partying_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :disguised_face: | \\`:disguised_face:\\` | | | [top](#table-of-contents) |\n\n    #### Face Glasses\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :sunglasses: | \\`:sunglasses:\\` | :nerd_face: | \\`:nerd_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :monocle_face: | \\`:monocle_face:\\` | | | [top](#table-of-contents) |\n\n    #### Face Concerned\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :confused: | \\`:confused:\\` | :worried: | \\`:worried:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :slightly_frowning_face: | \\`:slightly_frowning_face:\\` | :frowning_face: | \\`:frowning_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :open_mouth: | \\`:open_mouth:\\` | :hushed: | \\`:hushed:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :astonished: | \\`:astonished:\\` | :flushed: | \\`:flushed:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :pleading_face: | \\`:pleading_face:\\` | :frowning: | \\`:frowning:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :anguished: | \\`:anguished:\\` | :fearful: | \\`:fearful:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :cold_sweat: | \\`:cold_sweat:\\` | :disappointed_relieved: | \\`:disappointed_relieved:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :cry: | \\`:cry:\\` | :sob: | \\`:sob:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :scream: | \\`:scream:\\` | :confounded: | \\`:confounded:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :persevere: | \\`:persevere:\\` | :disappointed: | \\`:disappointed:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :sweat: | \\`:sweat:\\` | :weary: | \\`:weary:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :tired_face: | \\`:tired_face:\\` | :yawning_face: | \\`:yawning_face:\\` | [top](#table-of-contents) |\n\n    #### Face Negative\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :triumph: | \\`:triumph:\\` | :pout: | \\`:pout:\\` <br /> \\`:rage:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :angry: | \\`:angry:\\` | :cursing_face: | \\`:cursing_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :smiling_imp: | \\`:smiling_imp:\\` | :imp: | \\`:imp:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :skull: | \\`:skull:\\` | :skull_and_crossbones: | \\`:skull_and_crossbones:\\` | [top](#table-of-contents) |\n\n    #### Face Costume\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :hankey: | \\`:hankey:\\` <br /> \\`:poop:\\` <br /> \\`:shit:\\` | :clown_face: | \\`:clown_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :japanese_ogre: | \\`:japanese_ogre:\\` | :japanese_goblin: | \\`:japanese_goblin:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :ghost: | \\`:ghost:\\` | :alien: | \\`:alien:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :space_invader: | \\`:space_invader:\\` | :robot: | \\`:robot:\\` | [top](#table-of-contents) |\n\n    #### Cat Face\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :smiley_cat: | \\`:smiley_cat:\\` | :smile_cat: | \\`:smile_cat:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :joy_cat: | \\`:joy_cat:\\` | :heart_eyes_cat: | \\`:heart_eyes_cat:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :smirk_cat: | \\`:smirk_cat:\\` | :kissing_cat: | \\`:kissing_cat:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :scream_cat: | \\`:scream_cat:\\` | :crying_cat_face: | \\`:crying_cat_face:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :pouting_cat: | \\`:pouting_cat:\\` | | | [top](#table-of-contents) |\n\n    #### Monkey Face\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :see_no_evil: | \\`:see_no_evil:\\` | :hear_no_evil: | \\`:hear_no_evil:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :speak_no_evil: | \\`:speak_no_evil:\\` | | | [top](#table-of-contents) |\n\n    #### Heart\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :love_letter: | \\`:love_letter:\\` | :cupid: | \\`:cupid:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :gift_heart: | \\`:gift_heart:\\` | :sparkling_heart: | \\`:sparkling_heart:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :heartpulse: | \\`:heartpulse:\\` | :heartbeat: | \\`:heartbeat:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :revolving_hearts: | \\`:revolving_hearts:\\` | :two_hearts: | \\`:two_hearts:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :heart_decoration: | \\`:heart_decoration:\\` | :heavy_heart_exclamation: | \\`:heavy_heart_exclamation:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :broken_heart: | \\`:broken_heart:\\` | :heart_on_fire: | \\`:heart_on_fire:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :mending_heart: | \\`:mending_heart:\\` | :heart: | \\`:heart:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :orange_heart: | \\`:orange_heart:\\` | :yellow_heart: | \\`:yellow_heart:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :green_heart: | \\`:green_heart:\\` | :blue_heart: | \\`:blue_heart:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :purple_heart: | \\`:purple_heart:\\` | :brown_heart: | \\`:brown_heart:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :black_heart: | \\`:black_heart:\\` | :white_heart: | \\`:white_heart:\\` | [top](#table-of-contents) |\n\n    #### Emotion\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#smileys--emotion) | :kiss: | \\`:kiss:\\` | :100: | \\`:100:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :anger: | \\`:anger:\\` | :boom: | \\`:boom:\\` <br /> \\`:collision:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :dizzy: | \\`:dizzy:\\` | :sweat_drops: | \\`:sweat_drops:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :dash: | \\`:dash:\\` | :hole: | \\`:hole:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :speech_balloon: | \\`:speech_balloon:\\` | :eye_speech_bubble: | \\`:eye_speech_bubble:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :left_speech_bubble: | \\`:left_speech_bubble:\\` | :right_anger_bubble: | \\`:right_anger_bubble:\\` | [top](#table-of-contents) |\n    | [top](#smileys--emotion) | :thought_balloon: | \\`:thought_balloon:\\` | :zzz: | \\`:zzz:\\` | [top](#table-of-contents) |\n\n    ### People & Body\n\n    - [Hand Fingers Open](#hand-fingers-open)\n    - [Hand Fingers Partial](#hand-fingers-partial)\n    - [Hand Single Finger](#hand-single-finger)\n    - [Hand Fingers Closed](#hand-fingers-closed)\n    - [Hands](#hands)\n    - [Hand Prop](#hand-prop)\n    - [Body Parts](#body-parts)\n    - [Person](#person)\n    - [Person Gesture](#person-gesture)\n    - [Person Role](#person-role)\n    - [Person Fantasy](#person-fantasy)\n    - [Person Activity](#person-activity)\n    - [Person Sport](#person-sport)\n    - [Person Resting](#person-resting)\n    - [Family](#family)\n    - [Person Symbol](#person-symbol)\n\n    #### Hand Fingers Open\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :wave: | \\`:wave:\\` | :raised_back_of_hand: | \\`:raised_back_of_hand:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :raised_hand_with_fingers_splayed: | \\`:raised_hand_with_fingers_splayed:\\` | :hand: | \\`:hand:\\` <br /> \\`:raised_hand:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :vulcan_salute: | \\`:vulcan_salute:\\` | | | [top](#table-of-contents) |\n\n    #### Hand Fingers Partial\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :ok_hand: | \\`:ok_hand:\\` | :pinched_fingers: | \\`:pinched_fingers:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :pinching_hand: | \\`:pinching_hand:\\` | :v: | \\`:v:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :crossed_fingers: | \\`:crossed_fingers:\\` | :love_you_gesture: | \\`:love_you_gesture:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :metal: | \\`:metal:\\` | :call_me_hand: | \\`:call_me_hand:\\` | [top](#table-of-contents) |\n\n    #### Hand Single Finger\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :point_left: | \\`:point_left:\\` | :point_right: | \\`:point_right:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :point_up_2: | \\`:point_up_2:\\` | :fu: | \\`:fu:\\` <br /> \\`:middle_finger:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :point_down: | \\`:point_down:\\` | :point_up: | \\`:point_up:\\` | [top](#table-of-contents) |\n\n    #### Hand Fingers Closed\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :+1: | \\`:+1:\\` <br /> \\`:thumbsup:\\` | :-1: | \\`:-1:\\` <br /> \\`:thumbsdown:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :fist: | \\`:fist:\\` <br /> \\`:fist_raised:\\` | :facepunch: | \\`:facepunch:\\` <br /> \\`:fist_oncoming:\\` <br /> \\`:punch:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :fist_left: | \\`:fist_left:\\` | :fist_right: | \\`:fist_right:\\` | [top](#table-of-contents) |\n\n    #### Hands\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :clap: | \\`:clap:\\` | :raised_hands: | \\`:raised_hands:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :open_hands: | \\`:open_hands:\\` | :palms_up_together: | \\`:palms_up_together:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :handshake: | \\`:handshake:\\` | :pray: | \\`:pray:\\` | [top](#table-of-contents) |\n\n    #### Hand Prop\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :writing_hand: | \\`:writing_hand:\\` | :nail_care: | \\`:nail_care:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :selfie: | \\`:selfie:\\` | | | [top](#table-of-contents) |\n\n    #### Body Parts\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :muscle: | \\`:muscle:\\` | :mechanical_arm: | \\`:mechanical_arm:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :mechanical_leg: | \\`:mechanical_leg:\\` | :leg: | \\`:leg:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :foot: | \\`:foot:\\` | :ear: | \\`:ear:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :ear_with_hearing_aid: | \\`:ear_with_hearing_aid:\\` | :nose: | \\`:nose:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :brain: | \\`:brain:\\` | :anatomical_heart: | \\`:anatomical_heart:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :lungs: | \\`:lungs:\\` | :tooth: | \\`:tooth:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :bone: | \\`:bone:\\` | :eyes: | \\`:eyes:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :eye: | \\`:eye:\\` | :tongue: | \\`:tongue:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :lips: | \\`:lips:\\` | | | [top](#table-of-contents) |\n\n    #### Person\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :baby: | \\`:baby:\\` | :child: | \\`:child:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :boy: | \\`:boy:\\` | :girl: | \\`:girl:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :adult: | \\`:adult:\\` | :blond_haired_person: | \\`:blond_haired_person:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man: | \\`:man:\\` | :bearded_person: | \\`:bearded_person:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_beard: | \\`:man_beard:\\` | :woman_beard: | \\`:woman_beard:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :red_haired_man: | \\`:red_haired_man:\\` | :curly_haired_man: | \\`:curly_haired_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :white_haired_man: | \\`:white_haired_man:\\` | :bald_man: | \\`:bald_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman: | \\`:woman:\\` | :red_haired_woman: | \\`:red_haired_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_red_hair: | \\`:person_red_hair:\\` | :curly_haired_woman: | \\`:curly_haired_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_curly_hair: | \\`:person_curly_hair:\\` | :white_haired_woman: | \\`:white_haired_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_white_hair: | \\`:person_white_hair:\\` | :bald_woman: | \\`:bald_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_bald: | \\`:person_bald:\\` | :blond_haired_woman: | \\`:blond_haired_woman:\\` <br /> \\`:blonde_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :blond_haired_man: | \\`:blond_haired_man:\\` | :older_adult: | \\`:older_adult:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :older_man: | \\`:older_man:\\` | :older_woman: | \\`:older_woman:\\` | [top](#table-of-contents) |\n\n    #### Person Gesture\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :frowning_person: | \\`:frowning_person:\\` | :frowning_man: | \\`:frowning_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :frowning_woman: | \\`:frowning_woman:\\` | :pouting_face: | \\`:pouting_face:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :pouting_man: | \\`:pouting_man:\\` | :pouting_woman: | \\`:pouting_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :no_good: | \\`:no_good:\\` | :ng_man: | \\`:ng_man:\\` <br /> \\`:no_good_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :ng_woman: | \\`:ng_woman:\\` <br /> \\`:no_good_woman:\\` | :ok_person: | \\`:ok_person:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :ok_man: | \\`:ok_man:\\` | :ok_woman: | \\`:ok_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :information_desk_person: | \\`:information_desk_person:\\` <br /> \\`:tipping_hand_person:\\` | :sassy_man: | \\`:sassy_man:\\` <br /> \\`:tipping_hand_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :sassy_woman: | \\`:sassy_woman:\\` <br /> \\`:tipping_hand_woman:\\` | :raising_hand: | \\`:raising_hand:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :raising_hand_man: | \\`:raising_hand_man:\\` | :raising_hand_woman: | \\`:raising_hand_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :deaf_person: | \\`:deaf_person:\\` | :deaf_man: | \\`:deaf_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :deaf_woman: | \\`:deaf_woman:\\` | :bow: | \\`:bow:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :bowing_man: | \\`:bowing_man:\\` | :bowing_woman: | \\`:bowing_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :facepalm: | \\`:facepalm:\\` | :man_facepalming: | \\`:man_facepalming:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_facepalming: | \\`:woman_facepalming:\\` | :shrug: | \\`:shrug:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_shrugging: | \\`:man_shrugging:\\` | :woman_shrugging: | \\`:woman_shrugging:\\` | [top](#table-of-contents) |\n\n    #### Person Role\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :health_worker: | \\`:health_worker:\\` | :man_health_worker: | \\`:man_health_worker:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_health_worker: | \\`:woman_health_worker:\\` | :student: | \\`:student:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_student: | \\`:man_student:\\` | :woman_student: | \\`:woman_student:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :teacher: | \\`:teacher:\\` | :man_teacher: | \\`:man_teacher:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_teacher: | \\`:woman_teacher:\\` | :judge: | \\`:judge:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_judge: | \\`:man_judge:\\` | :woman_judge: | \\`:woman_judge:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :farmer: | \\`:farmer:\\` | :man_farmer: | \\`:man_farmer:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_farmer: | \\`:woman_farmer:\\` | :cook: | \\`:cook:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_cook: | \\`:man_cook:\\` | :woman_cook: | \\`:woman_cook:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :mechanic: | \\`:mechanic:\\` | :man_mechanic: | \\`:man_mechanic:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_mechanic: | \\`:woman_mechanic:\\` | :factory_worker: | \\`:factory_worker:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_factory_worker: | \\`:man_factory_worker:\\` | :woman_factory_worker: | \\`:woman_factory_worker:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :office_worker: | \\`:office_worker:\\` | :man_office_worker: | \\`:man_office_worker:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_office_worker: | \\`:woman_office_worker:\\` | :scientist: | \\`:scientist:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_scientist: | \\`:man_scientist:\\` | :woman_scientist: | \\`:woman_scientist:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :technologist: | \\`:technologist:\\` | :man_technologist: | \\`:man_technologist:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_technologist: | \\`:woman_technologist:\\` | :singer: | \\`:singer:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_singer: | \\`:man_singer:\\` | :woman_singer: | \\`:woman_singer:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :artist: | \\`:artist:\\` | :man_artist: | \\`:man_artist:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_artist: | \\`:woman_artist:\\` | :pilot: | \\`:pilot:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_pilot: | \\`:man_pilot:\\` | :woman_pilot: | \\`:woman_pilot:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :astronaut: | \\`:astronaut:\\` | :man_astronaut: | \\`:man_astronaut:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_astronaut: | \\`:woman_astronaut:\\` | :firefighter: | \\`:firefighter:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_firefighter: | \\`:man_firefighter:\\` | :woman_firefighter: | \\`:woman_firefighter:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :cop: | \\`:cop:\\` <br /> \\`:police_officer:\\` | :policeman: | \\`:policeman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :policewoman: | \\`:policewoman:\\` | :detective: | \\`:detective:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :male_detective: | \\`:male_detective:\\` | :female_detective: | \\`:female_detective:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :guard: | \\`:guard:\\` | :guardsman: | \\`:guardsman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :guardswoman: | \\`:guardswoman:\\` | :ninja: | \\`:ninja:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :construction_worker: | \\`:construction_worker:\\` | :construction_worker_man: | \\`:construction_worker_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :construction_worker_woman: | \\`:construction_worker_woman:\\` | :prince: | \\`:prince:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :princess: | \\`:princess:\\` | :person_with_turban: | \\`:person_with_turban:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_with_turban: | \\`:man_with_turban:\\` | :woman_with_turban: | \\`:woman_with_turban:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_with_gua_pi_mao: | \\`:man_with_gua_pi_mao:\\` | :woman_with_headscarf: | \\`:woman_with_headscarf:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_in_tuxedo: | \\`:person_in_tuxedo:\\` | :man_in_tuxedo: | \\`:man_in_tuxedo:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_in_tuxedo: | \\`:woman_in_tuxedo:\\` | :person_with_veil: | \\`:person_with_veil:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_with_veil: | \\`:man_with_veil:\\` | :bride_with_veil: | \\`:bride_with_veil:\\` <br /> \\`:woman_with_veil:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :pregnant_woman: | \\`:pregnant_woman:\\` | :breast_feeding: | \\`:breast_feeding:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_feeding_baby: | \\`:woman_feeding_baby:\\` | :man_feeding_baby: | \\`:man_feeding_baby:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_feeding_baby: | \\`:person_feeding_baby:\\` | | | [top](#table-of-contents) |\n\n    #### Person Fantasy\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :angel: | \\`:angel:\\` | :santa: | \\`:santa:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :mrs_claus: | \\`:mrs_claus:\\` | :mx_claus: | \\`:mx_claus:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :superhero: | \\`:superhero:\\` | :superhero_man: | \\`:superhero_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :superhero_woman: | \\`:superhero_woman:\\` | :supervillain: | \\`:supervillain:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :supervillain_man: | \\`:supervillain_man:\\` | :supervillain_woman: | \\`:supervillain_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :mage: | \\`:mage:\\` | :mage_man: | \\`:mage_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :mage_woman: | \\`:mage_woman:\\` | :fairy: | \\`:fairy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :fairy_man: | \\`:fairy_man:\\` | :fairy_woman: | \\`:fairy_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :vampire: | \\`:vampire:\\` | :vampire_man: | \\`:vampire_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :vampire_woman: | \\`:vampire_woman:\\` | :merperson: | \\`:merperson:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :merman: | \\`:merman:\\` | :mermaid: | \\`:mermaid:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :elf: | \\`:elf:\\` | :elf_man: | \\`:elf_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :elf_woman: | \\`:elf_woman:\\` | :genie: | \\`:genie:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :genie_man: | \\`:genie_man:\\` | :genie_woman: | \\`:genie_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :zombie: | \\`:zombie:\\` | :zombie_man: | \\`:zombie_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :zombie_woman: | \\`:zombie_woman:\\` | | | [top](#table-of-contents) |\n\n    #### Person Activity\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :massage: | \\`:massage:\\` | :massage_man: | \\`:massage_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :massage_woman: | \\`:massage_woman:\\` | :haircut: | \\`:haircut:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :haircut_man: | \\`:haircut_man:\\` | :haircut_woman: | \\`:haircut_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :walking: | \\`:walking:\\` | :walking_man: | \\`:walking_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :walking_woman: | \\`:walking_woman:\\` | :standing_person: | \\`:standing_person:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :standing_man: | \\`:standing_man:\\` | :standing_woman: | \\`:standing_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :kneeling_person: | \\`:kneeling_person:\\` | :kneeling_man: | \\`:kneeling_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :kneeling_woman: | \\`:kneeling_woman:\\` | :person_with_probing_cane: | \\`:person_with_probing_cane:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_with_probing_cane: | \\`:man_with_probing_cane:\\` | :woman_with_probing_cane: | \\`:woman_with_probing_cane:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :person_in_motorized_wheelchair: | \\`:person_in_motorized_wheelchair:\\` | :man_in_motorized_wheelchair: | \\`:man_in_motorized_wheelchair:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_in_motorized_wheelchair: | \\`:woman_in_motorized_wheelchair:\\` | :person_in_manual_wheelchair: | \\`:person_in_manual_wheelchair:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_in_manual_wheelchair: | \\`:man_in_manual_wheelchair:\\` | :woman_in_manual_wheelchair: | \\`:woman_in_manual_wheelchair:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :runner: | \\`:runner:\\` <br /> \\`:running:\\` | :running_man: | \\`:running_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :running_woman: | \\`:running_woman:\\` | :dancer: | \\`:dancer:\\` <br /> \\`:woman_dancing:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_dancing: | \\`:man_dancing:\\` | :business_suit_levitating: | \\`:business_suit_levitating:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :dancers: | \\`:dancers:\\` | :dancing_men: | \\`:dancing_men:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :dancing_women: | \\`:dancing_women:\\` | :sauna_person: | \\`:sauna_person:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :sauna_man: | \\`:sauna_man:\\` | :sauna_woman: | \\`:sauna_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :climbing: | \\`:climbing:\\` | :climbing_man: | \\`:climbing_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :climbing_woman: | \\`:climbing_woman:\\` | | | [top](#table-of-contents) |\n\n    #### Person Sport\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :person_fencing: | \\`:person_fencing:\\` | :horse_racing: | \\`:horse_racing:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :skier: | \\`:skier:\\` | :snowboarder: | \\`:snowboarder:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :golfing: | \\`:golfing:\\` | :golfing_man: | \\`:golfing_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :golfing_woman: | \\`:golfing_woman:\\` | :surfer: | \\`:surfer:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :surfing_man: | \\`:surfing_man:\\` | :surfing_woman: | \\`:surfing_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :rowboat: | \\`:rowboat:\\` | :rowing_man: | \\`:rowing_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :rowing_woman: | \\`:rowing_woman:\\` | :swimmer: | \\`:swimmer:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :swimming_man: | \\`:swimming_man:\\` | :swimming_woman: | \\`:swimming_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :bouncing_ball_person: | \\`:bouncing_ball_person:\\` | :basketball_man: | \\`:basketball_man:\\` <br /> \\`:bouncing_ball_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :basketball_woman: | \\`:basketball_woman:\\` <br /> \\`:bouncing_ball_woman:\\` | :weight_lifting: | \\`:weight_lifting:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :weight_lifting_man: | \\`:weight_lifting_man:\\` | :weight_lifting_woman: | \\`:weight_lifting_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :bicyclist: | \\`:bicyclist:\\` | :biking_man: | \\`:biking_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :biking_woman: | \\`:biking_woman:\\` | :mountain_bicyclist: | \\`:mountain_bicyclist:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :mountain_biking_man: | \\`:mountain_biking_man:\\` | :mountain_biking_woman: | \\`:mountain_biking_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :cartwheeling: | \\`:cartwheeling:\\` | :man_cartwheeling: | \\`:man_cartwheeling:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_cartwheeling: | \\`:woman_cartwheeling:\\` | :wrestling: | \\`:wrestling:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :men_wrestling: | \\`:men_wrestling:\\` | :women_wrestling: | \\`:women_wrestling:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :water_polo: | \\`:water_polo:\\` | :man_playing_water_polo: | \\`:man_playing_water_polo:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_playing_water_polo: | \\`:woman_playing_water_polo:\\` | :handball_person: | \\`:handball_person:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :man_playing_handball: | \\`:man_playing_handball:\\` | :woman_playing_handball: | \\`:woman_playing_handball:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :juggling_person: | \\`:juggling_person:\\` | :man_juggling: | \\`:man_juggling:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :woman_juggling: | \\`:woman_juggling:\\` | | | [top](#table-of-contents) |\n\n    #### Person Resting\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :lotus_position: | \\`:lotus_position:\\` | :lotus_position_man: | \\`:lotus_position_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :lotus_position_woman: | \\`:lotus_position_woman:\\` | :bath: | \\`:bath:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :sleeping_bed: | \\`:sleeping_bed:\\` | | | [top](#table-of-contents) |\n\n    #### Family\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :people_holding_hands: | \\`:people_holding_hands:\\` | :two_women_holding_hands: | \\`:two_women_holding_hands:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :couple: | \\`:couple:\\` | :two_men_holding_hands: | \\`:two_men_holding_hands:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :couplekiss: | \\`:couplekiss:\\` | :couplekiss_man_woman: | \\`:couplekiss_man_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :couplekiss_man_man: | \\`:couplekiss_man_man:\\` | :couplekiss_woman_woman: | \\`:couplekiss_woman_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :couple_with_heart: | \\`:couple_with_heart:\\` | :couple_with_heart_woman_man: | \\`:couple_with_heart_woman_man:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :couple_with_heart_man_man: | \\`:couple_with_heart_man_man:\\` | :couple_with_heart_woman_woman: | \\`:couple_with_heart_woman_woman:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family: | \\`:family:\\` | :family_man_woman_boy: | \\`:family_man_woman_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_woman_girl: | \\`:family_man_woman_girl:\\` | :family_man_woman_girl_boy: | \\`:family_man_woman_girl_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_woman_boy_boy: | \\`:family_man_woman_boy_boy:\\` | :family_man_woman_girl_girl: | \\`:family_man_woman_girl_girl:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_man_boy: | \\`:family_man_man_boy:\\` | :family_man_man_girl: | \\`:family_man_man_girl:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_man_girl_boy: | \\`:family_man_man_girl_boy:\\` | :family_man_man_boy_boy: | \\`:family_man_man_boy_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_man_girl_girl: | \\`:family_man_man_girl_girl:\\` | :family_woman_woman_boy: | \\`:family_woman_woman_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_woman_woman_girl: | \\`:family_woman_woman_girl:\\` | :family_woman_woman_girl_boy: | \\`:family_woman_woman_girl_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_woman_woman_boy_boy: | \\`:family_woman_woman_boy_boy:\\` | :family_woman_woman_girl_girl: | \\`:family_woman_woman_girl_girl:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_boy: | \\`:family_man_boy:\\` | :family_man_boy_boy: | \\`:family_man_boy_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_girl: | \\`:family_man_girl:\\` | :family_man_girl_boy: | \\`:family_man_girl_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_man_girl_girl: | \\`:family_man_girl_girl:\\` | :family_woman_boy: | \\`:family_woman_boy:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_woman_boy_boy: | \\`:family_woman_boy_boy:\\` | :family_woman_girl: | \\`:family_woman_girl:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :family_woman_girl_boy: | \\`:family_woman_girl_boy:\\` | :family_woman_girl_girl: | \\`:family_woman_girl_girl:\\` | [top](#table-of-contents) |\n\n    #### Person Symbol\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#people--body) | :speaking_head: | \\`:speaking_head:\\` | :bust_in_silhouette: | \\`:bust_in_silhouette:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :busts_in_silhouette: | \\`:busts_in_silhouette:\\` | :people_hugging: | \\`:people_hugging:\\` | [top](#table-of-contents) |\n    | [top](#people--body) | :footprints: | \\`:footprints:\\` | | | [top](#table-of-contents) |\n\n    ### Animals & Nature\n\n    - [Animal Mammal](#animal-mammal)\n    - [Animal Bird](#animal-bird)\n    - [Animal Amphibian](#animal-amphibian)\n    - [Animal Reptile](#animal-reptile)\n    - [Animal Marine](#animal-marine)\n    - [Animal Bug](#animal-bug)\n    - [Plant Flower](#plant-flower)\n    - [Plant Other](#plant-other)\n\n    #### Animal Mammal\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :monkey_face: | \\`:monkey_face:\\` | :monkey: | \\`:monkey:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :gorilla: | \\`:gorilla:\\` | :orangutan: | \\`:orangutan:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :dog: | \\`:dog:\\` | :dog2: | \\`:dog2:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :guide_dog: | \\`:guide_dog:\\` | :service_dog: | \\`:service_dog:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :poodle: | \\`:poodle:\\` | :wolf: | \\`:wolf:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :fox_face: | \\`:fox_face:\\` | :raccoon: | \\`:raccoon:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :cat: | \\`:cat:\\` | :cat2: | \\`:cat2:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :black_cat: | \\`:black_cat:\\` | :lion: | \\`:lion:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :tiger: | \\`:tiger:\\` | :tiger2: | \\`:tiger2:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :leopard: | \\`:leopard:\\` | :horse: | \\`:horse:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :racehorse: | \\`:racehorse:\\` | :unicorn: | \\`:unicorn:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :zebra: | \\`:zebra:\\` | :deer: | \\`:deer:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :bison: | \\`:bison:\\` | :cow: | \\`:cow:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :ox: | \\`:ox:\\` | :water_buffalo: | \\`:water_buffalo:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :cow2: | \\`:cow2:\\` | :pig: | \\`:pig:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :pig2: | \\`:pig2:\\` | :boar: | \\`:boar:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :pig_nose: | \\`:pig_nose:\\` | :ram: | \\`:ram:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :sheep: | \\`:sheep:\\` | :goat: | \\`:goat:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :dromedary_camel: | \\`:dromedary_camel:\\` | :camel: | \\`:camel:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :llama: | \\`:llama:\\` | :giraffe: | \\`:giraffe:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :elephant: | \\`:elephant:\\` | :mammoth: | \\`:mammoth:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :rhinoceros: | \\`:rhinoceros:\\` | :hippopotamus: | \\`:hippopotamus:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :mouse: | \\`:mouse:\\` | :mouse2: | \\`:mouse2:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :rat: | \\`:rat:\\` | :hamster: | \\`:hamster:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :rabbit: | \\`:rabbit:\\` | :rabbit2: | \\`:rabbit2:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :chipmunk: | \\`:chipmunk:\\` | :beaver: | \\`:beaver:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :hedgehog: | \\`:hedgehog:\\` | :bat: | \\`:bat:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :bear: | \\`:bear:\\` | :polar_bear: | \\`:polar_bear:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :koala: | \\`:koala:\\` | :panda_face: | \\`:panda_face:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :sloth: | \\`:sloth:\\` | :otter: | \\`:otter:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :skunk: | \\`:skunk:\\` | :kangaroo: | \\`:kangaroo:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :badger: | \\`:badger:\\` | :feet: | \\`:feet:\\` <br /> \\`:paw_prints:\\` | [top](#table-of-contents) |\n\n    #### Animal Bird\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :turkey: | \\`:turkey:\\` | :chicken: | \\`:chicken:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :rooster: | \\`:rooster:\\` | :hatching_chick: | \\`:hatching_chick:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :baby_chick: | \\`:baby_chick:\\` | :hatched_chick: | \\`:hatched_chick:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :bird: | \\`:bird:\\` | :penguin: | \\`:penguin:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :dove: | \\`:dove:\\` | :eagle: | \\`:eagle:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :duck: | \\`:duck:\\` | :swan: | \\`:swan:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :owl: | \\`:owl:\\` | :dodo: | \\`:dodo:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :feather: | \\`:feather:\\` | :flamingo: | \\`:flamingo:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :peacock: | \\`:peacock:\\` | :parrot: | \\`:parrot:\\` | [top](#table-of-contents) |\n\n    #### Animal Amphibian\n\n    | | ico | shortcode | |\n    | - | :-: | - | - |\n    | [top](#animals--nature) | :frog: | \\`:frog:\\` | [top](#table-of-contents) |\n\n    #### Animal Reptile\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :crocodile: | \\`:crocodile:\\` | :turtle: | \\`:turtle:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :lizard: | \\`:lizard:\\` | :snake: | \\`:snake:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :dragon_face: | \\`:dragon_face:\\` | :dragon: | \\`:dragon:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :sauropod: | \\`:sauropod:\\` | :t-rex: | \\`:t-rex:\\` | [top](#table-of-contents) |\n\n    #### Animal Marine\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :whale: | \\`:whale:\\` | :whale2: | \\`:whale2:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :dolphin: | \\`:dolphin:\\` <br /> \\`:flipper:\\` | :seal: | \\`:seal:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :fish: | \\`:fish:\\` | :tropical_fish: | \\`:tropical_fish:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :blowfish: | \\`:blowfish:\\` | :shark: | \\`:shark:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :octopus: | \\`:octopus:\\` | :shell: | \\`:shell:\\` | [top](#table-of-contents) |\n\n    #### Animal Bug\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :snail: | \\`:snail:\\` | :butterfly: | \\`:butterfly:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :bug: | \\`:bug:\\` | :ant: | \\`:ant:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :bee: | \\`:bee:\\` <br /> \\`:honeybee:\\` | :beetle: | \\`:beetle:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :lady_beetle: | \\`:lady_beetle:\\` | :cricket: | \\`:cricket:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :cockroach: | \\`:cockroach:\\` | :spider: | \\`:spider:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :spider_web: | \\`:spider_web:\\` | :scorpion: | \\`:scorpion:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :mosquito: | \\`:mosquito:\\` | :fly: | \\`:fly:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :worm: | \\`:worm:\\` | :microbe: | \\`:microbe:\\` | [top](#table-of-contents) |\n\n    #### Plant Flower\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :bouquet: | \\`:bouquet:\\` | :cherry_blossom: | \\`:cherry_blossom:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :white_flower: | \\`:white_flower:\\` | :rosette: | \\`:rosette:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :rose: | \\`:rose:\\` | :wilted_flower: | \\`:wilted_flower:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :hibiscus: | \\`:hibiscus:\\` | :sunflower: | \\`:sunflower:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :blossom: | \\`:blossom:\\` | :tulip: | \\`:tulip:\\` | [top](#table-of-contents) |\n\n    #### Plant Other\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#animals--nature) | :seedling: | \\`:seedling:\\` | :potted_plant: | \\`:potted_plant:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :evergreen_tree: | \\`:evergreen_tree:\\` | :deciduous_tree: | \\`:deciduous_tree:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :palm_tree: | \\`:palm_tree:\\` | :cactus: | \\`:cactus:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :ear_of_rice: | \\`:ear_of_rice:\\` | :herb: | \\`:herb:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :shamrock: | \\`:shamrock:\\` | :four_leaf_clover: | \\`:four_leaf_clover:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :maple_leaf: | \\`:maple_leaf:\\` | :fallen_leaf: | \\`:fallen_leaf:\\` | [top](#table-of-contents) |\n    | [top](#animals--nature) | :leaves: | \\`:leaves:\\` | :mushroom: | \\`:mushroom:\\` | [top](#table-of-contents) |\n\n    ### Food & Drink\n\n    - [Food Fruit](#food-fruit)\n    - [Food Vegetable](#food-vegetable)\n    - [Food Prepared](#food-prepared)\n    - [Food Asian](#food-asian)\n    - [Food Marine](#food-marine)\n    - [Food Sweet](#food-sweet)\n    - [Drink](#drink)\n    - [Dishware](#dishware)\n\n    #### Food Fruit\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :grapes: | \\`:grapes:\\` | :melon: | \\`:melon:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :watermelon: | \\`:watermelon:\\` | :mandarin: | \\`:mandarin:\\` <br /> \\`:orange:\\` <br /> \\`:tangerine:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :lemon: | \\`:lemon:\\` | :banana: | \\`:banana:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :pineapple: | \\`:pineapple:\\` | :mango: | \\`:mango:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :apple: | \\`:apple:\\` | :green_apple: | \\`:green_apple:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :pear: | \\`:pear:\\` | :peach: | \\`:peach:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :cherries: | \\`:cherries:\\` | :strawberry: | \\`:strawberry:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :blueberries: | \\`:blueberries:\\` | :kiwi_fruit: | \\`:kiwi_fruit:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :tomato: | \\`:tomato:\\` | :olive: | \\`:olive:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :coconut: | \\`:coconut:\\` | | | [top](#table-of-contents) |\n\n    #### Food Vegetable\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :avocado: | \\`:avocado:\\` | :eggplant: | \\`:eggplant:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :potato: | \\`:potato:\\` | :carrot: | \\`:carrot:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :corn: | \\`:corn:\\` | :hot_pepper: | \\`:hot_pepper:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :bell_pepper: | \\`:bell_pepper:\\` | :cucumber: | \\`:cucumber:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :leafy_green: | \\`:leafy_green:\\` | :broccoli: | \\`:broccoli:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :garlic: | \\`:garlic:\\` | :onion: | \\`:onion:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :peanuts: | \\`:peanuts:\\` | :chestnut: | \\`:chestnut:\\` | [top](#table-of-contents) |\n\n    #### Food Prepared\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :bread: | \\`:bread:\\` | :croissant: | \\`:croissant:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :baguette_bread: | \\`:baguette_bread:\\` | :flatbread: | \\`:flatbread:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :pretzel: | \\`:pretzel:\\` | :bagel: | \\`:bagel:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :pancakes: | \\`:pancakes:\\` | :waffle: | \\`:waffle:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :cheese: | \\`:cheese:\\` | :meat_on_bone: | \\`:meat_on_bone:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :poultry_leg: | \\`:poultry_leg:\\` | :cut_of_meat: | \\`:cut_of_meat:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :bacon: | \\`:bacon:\\` | :hamburger: | \\`:hamburger:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :fries: | \\`:fries:\\` | :pizza: | \\`:pizza:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :hotdog: | \\`:hotdog:\\` | :sandwich: | \\`:sandwich:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :taco: | \\`:taco:\\` | :burrito: | \\`:burrito:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :tamale: | \\`:tamale:\\` | :stuffed_flatbread: | \\`:stuffed_flatbread:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :falafel: | \\`:falafel:\\` | :egg: | \\`:egg:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :fried_egg: | \\`:fried_egg:\\` | :shallow_pan_of_food: | \\`:shallow_pan_of_food:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :stew: | \\`:stew:\\` | :fondue: | \\`:fondue:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :bowl_with_spoon: | \\`:bowl_with_spoon:\\` | :green_salad: | \\`:green_salad:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :popcorn: | \\`:popcorn:\\` | :butter: | \\`:butter:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :salt: | \\`:salt:\\` | :canned_food: | \\`:canned_food:\\` | [top](#table-of-contents) |\n\n    #### Food Asian\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :bento: | \\`:bento:\\` | :rice_cracker: | \\`:rice_cracker:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :rice_ball: | \\`:rice_ball:\\` | :rice: | \\`:rice:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :curry: | \\`:curry:\\` | :ramen: | \\`:ramen:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :spaghetti: | \\`:spaghetti:\\` | :sweet_potato: | \\`:sweet_potato:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :oden: | \\`:oden:\\` | :sushi: | \\`:sushi:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :fried_shrimp: | \\`:fried_shrimp:\\` | :fish_cake: | \\`:fish_cake:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :moon_cake: | \\`:moon_cake:\\` | :dango: | \\`:dango:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :dumpling: | \\`:dumpling:\\` | :fortune_cookie: | \\`:fortune_cookie:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :takeout_box: | \\`:takeout_box:\\` | | | [top](#table-of-contents) |\n\n    #### Food Marine\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :crab: | \\`:crab:\\` | :lobster: | \\`:lobster:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :shrimp: | \\`:shrimp:\\` | :squid: | \\`:squid:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :oyster: | \\`:oyster:\\` | | | [top](#table-of-contents) |\n\n    #### Food Sweet\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :icecream: | \\`:icecream:\\` | :shaved_ice: | \\`:shaved_ice:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :ice_cream: | \\`:ice_cream:\\` | :doughnut: | \\`:doughnut:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :cookie: | \\`:cookie:\\` | :birthday: | \\`:birthday:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :cake: | \\`:cake:\\` | :cupcake: | \\`:cupcake:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :pie: | \\`:pie:\\` | :chocolate_bar: | \\`:chocolate_bar:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :candy: | \\`:candy:\\` | :lollipop: | \\`:lollipop:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :custard: | \\`:custard:\\` | :honey_pot: | \\`:honey_pot:\\` | [top](#table-of-contents) |\n\n    #### Drink\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :baby_bottle: | \\`:baby_bottle:\\` | :milk_glass: | \\`:milk_glass:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :coffee: | \\`:coffee:\\` | :teapot: | \\`:teapot:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :tea: | \\`:tea:\\` | :sake: | \\`:sake:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :champagne: | \\`:champagne:\\` | :wine_glass: | \\`:wine_glass:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :cocktail: | \\`:cocktail:\\` | :tropical_drink: | \\`:tropical_drink:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :beer: | \\`:beer:\\` | :beers: | \\`:beers:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :clinking_glasses: | \\`:clinking_glasses:\\` | :tumbler_glass: | \\`:tumbler_glass:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :cup_with_straw: | \\`:cup_with_straw:\\` | :bubble_tea: | \\`:bubble_tea:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :beverage_box: | \\`:beverage_box:\\` | :mate: | \\`:mate:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :ice_cube: | \\`:ice_cube:\\` | | | [top](#table-of-contents) |\n\n    #### Dishware\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#food--drink) | :chopsticks: | \\`:chopsticks:\\` | :plate_with_cutlery: | \\`:plate_with_cutlery:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :fork_and_knife: | \\`:fork_and_knife:\\` | :spoon: | \\`:spoon:\\` | [top](#table-of-contents) |\n    | [top](#food--drink) | :hocho: | \\`:hocho:\\` <br /> \\`:knife:\\` | :amphora: | \\`:amphora:\\` | [top](#table-of-contents) |\n\n    ### Travel & Places\n\n    - [Place Map](#place-map)\n    - [Place Geographic](#place-geographic)\n    - [Place Building](#place-building)\n    - [Place Religious](#place-religious)\n    - [Place Other](#place-other)\n    - [Transport Ground](#transport-ground)\n    - [Transport Water](#transport-water)\n    - [Transport Air](#transport-air)\n    - [Hotel](#hotel)\n    - [Time](#time)\n    - [Sky & Weather](#sky--weather)\n\n    #### Place Map\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :earth_africa: | \\`:earth_africa:\\` | :earth_americas: | \\`:earth_americas:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :earth_asia: | \\`:earth_asia:\\` | :globe_with_meridians: | \\`:globe_with_meridians:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :world_map: | \\`:world_map:\\` | :japan: | \\`:japan:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :compass: | \\`:compass:\\` | | | [top](#table-of-contents) |\n\n    #### Place Geographic\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :mountain_snow: | \\`:mountain_snow:\\` | :mountain: | \\`:mountain:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :volcano: | \\`:volcano:\\` | :mount_fuji: | \\`:mount_fuji:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :camping: | \\`:camping:\\` | :beach_umbrella: | \\`:beach_umbrella:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :desert: | \\`:desert:\\` | :desert_island: | \\`:desert_island:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :national_park: | \\`:national_park:\\` | | | [top](#table-of-contents) |\n\n    #### Place Building\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :stadium: | \\`:stadium:\\` | :classical_building: | \\`:classical_building:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :building_construction: | \\`:building_construction:\\` | :bricks: | \\`:bricks:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :rock: | \\`:rock:\\` | :wood: | \\`:wood:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :hut: | \\`:hut:\\` | :houses: | \\`:houses:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :derelict_house: | \\`:derelict_house:\\` | :house: | \\`:house:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :house_with_garden: | \\`:house_with_garden:\\` | :office: | \\`:office:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :post_office: | \\`:post_office:\\` | :european_post_office: | \\`:european_post_office:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :hospital: | \\`:hospital:\\` | :bank: | \\`:bank:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :hotel: | \\`:hotel:\\` | :love_hotel: | \\`:love_hotel:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :convenience_store: | \\`:convenience_store:\\` | :school: | \\`:school:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :department_store: | \\`:department_store:\\` | :factory: | \\`:factory:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :japanese_castle: | \\`:japanese_castle:\\` | :european_castle: | \\`:european_castle:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :wedding: | \\`:wedding:\\` | :tokyo_tower: | \\`:tokyo_tower:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :statue_of_liberty: | \\`:statue_of_liberty:\\` | | | [top](#table-of-contents) |\n\n    #### Place Religious\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :church: | \\`:church:\\` | :mosque: | \\`:mosque:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :hindu_temple: | \\`:hindu_temple:\\` | :synagogue: | \\`:synagogue:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :shinto_shrine: | \\`:shinto_shrine:\\` | :kaaba: | \\`:kaaba:\\` | [top](#table-of-contents) |\n\n    #### Place Other\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :fountain: | \\`:fountain:\\` | :tent: | \\`:tent:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :foggy: | \\`:foggy:\\` | :night_with_stars: | \\`:night_with_stars:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :cityscape: | \\`:cityscape:\\` | :sunrise_over_mountains: | \\`:sunrise_over_mountains:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :sunrise: | \\`:sunrise:\\` | :city_sunset: | \\`:city_sunset:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :city_sunrise: | \\`:city_sunrise:\\` | :bridge_at_night: | \\`:bridge_at_night:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :hotsprings: | \\`:hotsprings:\\` | :carousel_horse: | \\`:carousel_horse:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :ferris_wheel: | \\`:ferris_wheel:\\` | :roller_coaster: | \\`:roller_coaster:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :barber: | \\`:barber:\\` | :circus_tent: | \\`:circus_tent:\\` | [top](#table-of-contents) |\n\n    #### Transport Ground\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :steam_locomotive: | \\`:steam_locomotive:\\` | :railway_car: | \\`:railway_car:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :bullettrain_side: | \\`:bullettrain_side:\\` | :bullettrain_front: | \\`:bullettrain_front:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :train2: | \\`:train2:\\` | :metro: | \\`:metro:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :light_rail: | \\`:light_rail:\\` | :station: | \\`:station:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :tram: | \\`:tram:\\` | :monorail: | \\`:monorail:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :mountain_railway: | \\`:mountain_railway:\\` | :train: | \\`:train:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :bus: | \\`:bus:\\` | :oncoming_bus: | \\`:oncoming_bus:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :trolleybus: | \\`:trolleybus:\\` | :minibus: | \\`:minibus:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :ambulance: | \\`:ambulance:\\` | :fire_engine: | \\`:fire_engine:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :police_car: | \\`:police_car:\\` | :oncoming_police_car: | \\`:oncoming_police_car:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :taxi: | \\`:taxi:\\` | :oncoming_taxi: | \\`:oncoming_taxi:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :car: | \\`:car:\\` <br /> \\`:red_car:\\` | :oncoming_automobile: | \\`:oncoming_automobile:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :blue_car: | \\`:blue_car:\\` | :pickup_truck: | \\`:pickup_truck:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :truck: | \\`:truck:\\` | :articulated_lorry: | \\`:articulated_lorry:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :tractor: | \\`:tractor:\\` | :racing_car: | \\`:racing_car:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :motorcycle: | \\`:motorcycle:\\` | :motor_scooter: | \\`:motor_scooter:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :manual_wheelchair: | \\`:manual_wheelchair:\\` | :motorized_wheelchair: | \\`:motorized_wheelchair:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :auto_rickshaw: | \\`:auto_rickshaw:\\` | :bike: | \\`:bike:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :kick_scooter: | \\`:kick_scooter:\\` | :skateboard: | \\`:skateboard:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :roller_skate: | \\`:roller_skate:\\` | :busstop: | \\`:busstop:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :motorway: | \\`:motorway:\\` | :railway_track: | \\`:railway_track:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :oil_drum: | \\`:oil_drum:\\` | :fuelpump: | \\`:fuelpump:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :rotating_light: | \\`:rotating_light:\\` | :traffic_light: | \\`:traffic_light:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :vertical_traffic_light: | \\`:vertical_traffic_light:\\` | :stop_sign: | \\`:stop_sign:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :construction: | \\`:construction:\\` | | | [top](#table-of-contents) |\n\n    #### Transport Water\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :anchor: | \\`:anchor:\\` | :boat: | \\`:boat:\\` <br /> \\`:sailboat:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :canoe: | \\`:canoe:\\` | :speedboat: | \\`:speedboat:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :passenger_ship: | \\`:passenger_ship:\\` | :ferry: | \\`:ferry:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :motor_boat: | \\`:motor_boat:\\` | :ship: | \\`:ship:\\` | [top](#table-of-contents) |\n\n    #### Transport Air\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :airplane: | \\`:airplane:\\` | :small_airplane: | \\`:small_airplane:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :flight_departure: | \\`:flight_departure:\\` | :flight_arrival: | \\`:flight_arrival:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :parachute: | \\`:parachute:\\` | :seat: | \\`:seat:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :helicopter: | \\`:helicopter:\\` | :suspension_railway: | \\`:suspension_railway:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :mountain_cableway: | \\`:mountain_cableway:\\` | :aerial_tramway: | \\`:aerial_tramway:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :artificial_satellite: | \\`:artificial_satellite:\\` | :rocket: | \\`:rocket:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :flying_saucer: | \\`:flying_saucer:\\` | | | [top](#table-of-contents) |\n\n    #### Hotel\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :bellhop_bell: | \\`:bellhop_bell:\\` | :luggage: | \\`:luggage:\\` | [top](#table-of-contents) |\n\n    #### Time\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :hourglass: | \\`:hourglass:\\` | :hourglass_flowing_sand: | \\`:hourglass_flowing_sand:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :watch: | \\`:watch:\\` | :alarm_clock: | \\`:alarm_clock:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :stopwatch: | \\`:stopwatch:\\` | :timer_clock: | \\`:timer_clock:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :mantelpiece_clock: | \\`:mantelpiece_clock:\\` | :clock12: | \\`:clock12:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock1230: | \\`:clock1230:\\` | :clock1: | \\`:clock1:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock130: | \\`:clock130:\\` | :clock2: | \\`:clock2:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock230: | \\`:clock230:\\` | :clock3: | \\`:clock3:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock330: | \\`:clock330:\\` | :clock4: | \\`:clock4:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock430: | \\`:clock430:\\` | :clock5: | \\`:clock5:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock530: | \\`:clock530:\\` | :clock6: | \\`:clock6:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock630: | \\`:clock630:\\` | :clock7: | \\`:clock7:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock730: | \\`:clock730:\\` | :clock8: | \\`:clock8:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock830: | \\`:clock830:\\` | :clock9: | \\`:clock9:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock930: | \\`:clock930:\\` | :clock10: | \\`:clock10:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock1030: | \\`:clock1030:\\` | :clock11: | \\`:clock11:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :clock1130: | \\`:clock1130:\\` | | | [top](#table-of-contents) |\n\n    #### Sky & Weather\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#travel--places) | :new_moon: | \\`:new_moon:\\` | :waxing_crescent_moon: | \\`:waxing_crescent_moon:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :first_quarter_moon: | \\`:first_quarter_moon:\\` | :moon: | \\`:moon:\\` <br /> \\`:waxing_gibbous_moon:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :full_moon: | \\`:full_moon:\\` | :waning_gibbous_moon: | \\`:waning_gibbous_moon:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :last_quarter_moon: | \\`:last_quarter_moon:\\` | :waning_crescent_moon: | \\`:waning_crescent_moon:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :crescent_moon: | \\`:crescent_moon:\\` | :new_moon_with_face: | \\`:new_moon_with_face:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :first_quarter_moon_with_face: | \\`:first_quarter_moon_with_face:\\` | :last_quarter_moon_with_face: | \\`:last_quarter_moon_with_face:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :thermometer: | \\`:thermometer:\\` | :sunny: | \\`:sunny:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :full_moon_with_face: | \\`:full_moon_with_face:\\` | :sun_with_face: | \\`:sun_with_face:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :ringed_planet: | \\`:ringed_planet:\\` | :star: | \\`:star:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :star2: | \\`:star2:\\` | :stars: | \\`:stars:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :milky_way: | \\`:milky_way:\\` | :cloud: | \\`:cloud:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :partly_sunny: | \\`:partly_sunny:\\` | :cloud_with_lightning_and_rain: | \\`:cloud_with_lightning_and_rain:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :sun_behind_small_cloud: | \\`:sun_behind_small_cloud:\\` | :sun_behind_large_cloud: | \\`:sun_behind_large_cloud:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :sun_behind_rain_cloud: | \\`:sun_behind_rain_cloud:\\` | :cloud_with_rain: | \\`:cloud_with_rain:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :cloud_with_snow: | \\`:cloud_with_snow:\\` | :cloud_with_lightning: | \\`:cloud_with_lightning:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :tornado: | \\`:tornado:\\` | :fog: | \\`:fog:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :wind_face: | \\`:wind_face:\\` | :cyclone: | \\`:cyclone:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :rainbow: | \\`:rainbow:\\` | :closed_umbrella: | \\`:closed_umbrella:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :open_umbrella: | \\`:open_umbrella:\\` | :umbrella: | \\`:umbrella:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :parasol_on_ground: | \\`:parasol_on_ground:\\` | :zap: | \\`:zap:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :snowflake: | \\`:snowflake:\\` | :snowman_with_snow: | \\`:snowman_with_snow:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :snowman: | \\`:snowman:\\` | :comet: | \\`:comet:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :fire: | \\`:fire:\\` | :droplet: | \\`:droplet:\\` | [top](#table-of-contents) |\n    | [top](#travel--places) | :ocean: | \\`:ocean:\\` | | | [top](#table-of-contents) |\n\n    ### Activities\n\n    - [Event](#event)\n    - [Award Medal](#award-medal)\n    - [Sport](#sport)\n    - [Game](#game)\n    - [Arts & Crafts](#arts--crafts)\n\n    #### Event\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#activities) | :jack_o_lantern: | \\`:jack_o_lantern:\\` | :christmas_tree: | \\`:christmas_tree:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :fireworks: | \\`:fireworks:\\` | :sparkler: | \\`:sparkler:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :firecracker: | \\`:firecracker:\\` | :sparkles: | \\`:sparkles:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :balloon: | \\`:balloon:\\` | :tada: | \\`:tada:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :confetti_ball: | \\`:confetti_ball:\\` | :tanabata_tree: | \\`:tanabata_tree:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :bamboo: | \\`:bamboo:\\` | :dolls: | \\`:dolls:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :flags: | \\`:flags:\\` | :wind_chime: | \\`:wind_chime:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :rice_scene: | \\`:rice_scene:\\` | :red_envelope: | \\`:red_envelope:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :ribbon: | \\`:ribbon:\\` | :gift: | \\`:gift:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :reminder_ribbon: | \\`:reminder_ribbon:\\` | :tickets: | \\`:tickets:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :ticket: | \\`:ticket:\\` | | | [top](#table-of-contents) |\n\n    #### Award Medal\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#activities) | :medal_military: | \\`:medal_military:\\` | :trophy: | \\`:trophy:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :medal_sports: | \\`:medal_sports:\\` | :1st_place_medal: | \\`:1st_place_medal:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :2nd_place_medal: | \\`:2nd_place_medal:\\` | :3rd_place_medal: | \\`:3rd_place_medal:\\` | [top](#table-of-contents) |\n\n    #### Sport\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#activities) | :soccer: | \\`:soccer:\\` | :baseball: | \\`:baseball:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :softball: | \\`:softball:\\` | :basketball: | \\`:basketball:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :volleyball: | \\`:volleyball:\\` | :football: | \\`:football:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :rugby_football: | \\`:rugby_football:\\` | :tennis: | \\`:tennis:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :flying_disc: | \\`:flying_disc:\\` | :bowling: | \\`:bowling:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :cricket_game: | \\`:cricket_game:\\` | :field_hockey: | \\`:field_hockey:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :ice_hockey: | \\`:ice_hockey:\\` | :lacrosse: | \\`:lacrosse:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :ping_pong: | \\`:ping_pong:\\` | :badminton: | \\`:badminton:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :boxing_glove: | \\`:boxing_glove:\\` | :martial_arts_uniform: | \\`:martial_arts_uniform:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :goal_net: | \\`:goal_net:\\` | :golf: | \\`:golf:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :ice_skate: | \\`:ice_skate:\\` | :fishing_pole_and_fish: | \\`:fishing_pole_and_fish:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :diving_mask: | \\`:diving_mask:\\` | :running_shirt_with_sash: | \\`:running_shirt_with_sash:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :ski: | \\`:ski:\\` | :sled: | \\`:sled:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :curling_stone: | \\`:curling_stone:\\` | | | [top](#table-of-contents) |\n\n    #### Game\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#activities) | :dart: | \\`:dart:\\` | :yo_yo: | \\`:yo_yo:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :kite: | \\`:kite:\\` | :gun: | \\`:gun:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :8ball: | \\`:8ball:\\` | :crystal_ball: | \\`:crystal_ball:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :magic_wand: | \\`:magic_wand:\\` | :video_game: | \\`:video_game:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :joystick: | \\`:joystick:\\` | :slot_machine: | \\`:slot_machine:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :game_die: | \\`:game_die:\\` | :jigsaw: | \\`:jigsaw:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :teddy_bear: | \\`:teddy_bear:\\` | :pinata: | \\`:pinata:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :nesting_dolls: | \\`:nesting_dolls:\\` | :spades: | \\`:spades:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :hearts: | \\`:hearts:\\` | :diamonds: | \\`:diamonds:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :clubs: | \\`:clubs:\\` | :chess_pawn: | \\`:chess_pawn:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :black_joker: | \\`:black_joker:\\` | :mahjong: | \\`:mahjong:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :flower_playing_cards: | \\`:flower_playing_cards:\\` | | | [top](#table-of-contents) |\n\n    #### Arts & Crafts\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#activities) | :performing_arts: | \\`:performing_arts:\\` | :framed_picture: | \\`:framed_picture:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :art: | \\`:art:\\` | :thread: | \\`:thread:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :sewing_needle: | \\`:sewing_needle:\\` | :yarn: | \\`:yarn:\\` | [top](#table-of-contents) |\n    | [top](#activities) | :knot: | \\`:knot:\\` | | | [top](#table-of-contents) |\n\n    ### Objects\n\n    - [Clothing](#clothing)\n    - [Sound](#sound)\n    - [Music](#music)\n    - [Musical Instrument](#musical-instrument)\n    - [Phone](#phone)\n    - [Computer](#computer)\n    - [Light & Video](#light--video)\n    - [Book Paper](#book-paper)\n    - [Money](#money)\n    - [Mail](#mail)\n    - [Writing](#writing)\n    - [Office](#office)\n    - [Lock](#lock)\n    - [Tool](#tool)\n    - [Science](#science)\n    - [Medical](#medical)\n    - [Household](#household)\n    - [Other Object](#other-object)\n\n    #### Clothing\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :eyeglasses: | \\`:eyeglasses:\\` | :dark_sunglasses: | \\`:dark_sunglasses:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :goggles: | \\`:goggles:\\` | :lab_coat: | \\`:lab_coat:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :safety_vest: | \\`:safety_vest:\\` | :necktie: | \\`:necktie:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :shirt: | \\`:shirt:\\` <br /> \\`:tshirt:\\` | :jeans: | \\`:jeans:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :scarf: | \\`:scarf:\\` | :gloves: | \\`:gloves:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :coat: | \\`:coat:\\` | :socks: | \\`:socks:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :dress: | \\`:dress:\\` | :kimono: | \\`:kimono:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :sari: | \\`:sari:\\` | :one_piece_swimsuit: | \\`:one_piece_swimsuit:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :swim_brief: | \\`:swim_brief:\\` | :shorts: | \\`:shorts:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :bikini: | \\`:bikini:\\` | :womans_clothes: | \\`:womans_clothes:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :purse: | \\`:purse:\\` | :handbag: | \\`:handbag:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :pouch: | \\`:pouch:\\` | :shopping: | \\`:shopping:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :school_satchel: | \\`:school_satchel:\\` | :thong_sandal: | \\`:thong_sandal:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :mans_shoe: | \\`:mans_shoe:\\` <br /> \\`:shoe:\\` | :athletic_shoe: | \\`:athletic_shoe:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :hiking_boot: | \\`:hiking_boot:\\` | :flat_shoe: | \\`:flat_shoe:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :high_heel: | \\`:high_heel:\\` | :sandal: | \\`:sandal:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :ballet_shoes: | \\`:ballet_shoes:\\` | :boot: | \\`:boot:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :crown: | \\`:crown:\\` | :womans_hat: | \\`:womans_hat:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :tophat: | \\`:tophat:\\` | :mortar_board: | \\`:mortar_board:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :billed_cap: | \\`:billed_cap:\\` | :military_helmet: | \\`:military_helmet:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :rescue_worker_helmet: | \\`:rescue_worker_helmet:\\` | :prayer_beads: | \\`:prayer_beads:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :lipstick: | \\`:lipstick:\\` | :ring: | \\`:ring:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :gem: | \\`:gem:\\` | | | [top](#table-of-contents) |\n\n    #### Sound\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :mute: | \\`:mute:\\` | :speaker: | \\`:speaker:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :sound: | \\`:sound:\\` | :loud_sound: | \\`:loud_sound:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :loudspeaker: | \\`:loudspeaker:\\` | :mega: | \\`:mega:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :postal_horn: | \\`:postal_horn:\\` | :bell: | \\`:bell:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :no_bell: | \\`:no_bell:\\` | | | [top](#table-of-contents) |\n\n    #### Music\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :musical_score: | \\`:musical_score:\\` | :musical_note: | \\`:musical_note:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :notes: | \\`:notes:\\` | :studio_microphone: | \\`:studio_microphone:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :level_slider: | \\`:level_slider:\\` | :control_knobs: | \\`:control_knobs:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :microphone: | \\`:microphone:\\` | :headphones: | \\`:headphones:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :radio: | \\`:radio:\\` | | | [top](#table-of-contents) |\n\n    #### Musical Instrument\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :saxophone: | \\`:saxophone:\\` | :accordion: | \\`:accordion:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :guitar: | \\`:guitar:\\` | :musical_keyboard: | \\`:musical_keyboard:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :trumpet: | \\`:trumpet:\\` | :violin: | \\`:violin:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :banjo: | \\`:banjo:\\` | :drum: | \\`:drum:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :long_drum: | \\`:long_drum:\\` | | | [top](#table-of-contents) |\n\n    #### Phone\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :iphone: | \\`:iphone:\\` | :calling: | \\`:calling:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :phone: | \\`:phone:\\` <br /> \\`:telephone:\\` | :telephone_receiver: | \\`:telephone_receiver:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :pager: | \\`:pager:\\` | :fax: | \\`:fax:\\` | [top](#table-of-contents) |\n\n    #### Computer\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :battery: | \\`:battery:\\` | :electric_plug: | \\`:electric_plug:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :computer: | \\`:computer:\\` | :desktop_computer: | \\`:desktop_computer:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :printer: | \\`:printer:\\` | :keyboard: | \\`:keyboard:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :computer_mouse: | \\`:computer_mouse:\\` | :trackball: | \\`:trackball:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :minidisc: | \\`:minidisc:\\` | :floppy_disk: | \\`:floppy_disk:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :cd: | \\`:cd:\\` | :dvd: | \\`:dvd:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :abacus: | \\`:abacus:\\` | | | [top](#table-of-contents) |\n\n    #### Light & Video\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :movie_camera: | \\`:movie_camera:\\` | :film_strip: | \\`:film_strip:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :film_projector: | \\`:film_projector:\\` | :clapper: | \\`:clapper:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :tv: | \\`:tv:\\` | :camera: | \\`:camera:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :camera_flash: | \\`:camera_flash:\\` | :video_camera: | \\`:video_camera:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :vhs: | \\`:vhs:\\` | :mag: | \\`:mag:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :mag_right: | \\`:mag_right:\\` | :candle: | \\`:candle:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :bulb: | \\`:bulb:\\` | :flashlight: | \\`:flashlight:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :izakaya_lantern: | \\`:izakaya_lantern:\\` <br /> \\`:lantern:\\` | :diya_lamp: | \\`:diya_lamp:\\` | [top](#table-of-contents) |\n\n    #### Book Paper\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :notebook_with_decorative_cover: | \\`:notebook_with_decorative_cover:\\` | :closed_book: | \\`:closed_book:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :book: | \\`:book:\\` <br /> \\`:open_book:\\` | :green_book: | \\`:green_book:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :blue_book: | \\`:blue_book:\\` | :orange_book: | \\`:orange_book:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :books: | \\`:books:\\` | :notebook: | \\`:notebook:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :ledger: | \\`:ledger:\\` | :page_with_curl: | \\`:page_with_curl:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :scroll: | \\`:scroll:\\` | :page_facing_up: | \\`:page_facing_up:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :newspaper: | \\`:newspaper:\\` | :newspaper_roll: | \\`:newspaper_roll:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :bookmark_tabs: | \\`:bookmark_tabs:\\` | :bookmark: | \\`:bookmark:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :label: | \\`:label:\\` | | | [top](#table-of-contents) |\n\n    #### Money\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :moneybag: | \\`:moneybag:\\` | :coin: | \\`:coin:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :yen: | \\`:yen:\\` | :dollar: | \\`:dollar:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :euro: | \\`:euro:\\` | :pound: | \\`:pound:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :money_with_wings: | \\`:money_with_wings:\\` | :credit_card: | \\`:credit_card:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :receipt: | \\`:receipt:\\` | :chart: | \\`:chart:\\` | [top](#table-of-contents) |\n\n    #### Mail\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :envelope: | \\`:envelope:\\` | :e-mail: | \\`:e-mail:\\` <br /> \\`:email:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :incoming_envelope: | \\`:incoming_envelope:\\` | :envelope_with_arrow: | \\`:envelope_with_arrow:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :outbox_tray: | \\`:outbox_tray:\\` | :inbox_tray: | \\`:inbox_tray:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :package: | \\`:package:\\` | :mailbox: | \\`:mailbox:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :mailbox_closed: | \\`:mailbox_closed:\\` | :mailbox_with_mail: | \\`:mailbox_with_mail:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :mailbox_with_no_mail: | \\`:mailbox_with_no_mail:\\` | :postbox: | \\`:postbox:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :ballot_box: | \\`:ballot_box:\\` | | | [top](#table-of-contents) |\n\n    #### Writing\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :pencil2: | \\`:pencil2:\\` | :black_nib: | \\`:black_nib:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :fountain_pen: | \\`:fountain_pen:\\` | :pen: | \\`:pen:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :paintbrush: | \\`:paintbrush:\\` | :crayon: | \\`:crayon:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :memo: | \\`:memo:\\` <br /> \\`:pencil:\\` | | | [top](#table-of-contents) |\n\n    #### Office\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :briefcase: | \\`:briefcase:\\` | :file_folder: | \\`:file_folder:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :open_file_folder: | \\`:open_file_folder:\\` | :card_index_dividers: | \\`:card_index_dividers:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :date: | \\`:date:\\` | :calendar: | \\`:calendar:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :spiral_notepad: | \\`:spiral_notepad:\\` | :spiral_calendar: | \\`:spiral_calendar:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :card_index: | \\`:card_index:\\` | :chart_with_upwards_trend: | \\`:chart_with_upwards_trend:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :chart_with_downwards_trend: | \\`:chart_with_downwards_trend:\\` | :bar_chart: | \\`:bar_chart:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :clipboard: | \\`:clipboard:\\` | :pushpin: | \\`:pushpin:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :round_pushpin: | \\`:round_pushpin:\\` | :paperclip: | \\`:paperclip:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :paperclips: | \\`:paperclips:\\` | :straight_ruler: | \\`:straight_ruler:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :triangular_ruler: | \\`:triangular_ruler:\\` | :scissors: | \\`:scissors:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :card_file_box: | \\`:card_file_box:\\` | :file_cabinet: | \\`:file_cabinet:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :wastebasket: | \\`:wastebasket:\\` | | | [top](#table-of-contents) |\n\n    #### Lock\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :lock: | \\`:lock:\\` | :unlock: | \\`:unlock:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :lock_with_ink_pen: | \\`:lock_with_ink_pen:\\` | :closed_lock_with_key: | \\`:closed_lock_with_key:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :key: | \\`:key:\\` | :old_key: | \\`:old_key:\\` | [top](#table-of-contents) |\n\n    #### Tool\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :hammer: | \\`:hammer:\\` | :axe: | \\`:axe:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :pick: | \\`:pick:\\` | :hammer_and_pick: | \\`:hammer_and_pick:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :hammer_and_wrench: | \\`:hammer_and_wrench:\\` | :dagger: | \\`:dagger:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :crossed_swords: | \\`:crossed_swords:\\` | :bomb: | \\`:bomb:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :boomerang: | \\`:boomerang:\\` | :bow_and_arrow: | \\`:bow_and_arrow:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :shield: | \\`:shield:\\` | :carpentry_saw: | \\`:carpentry_saw:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :wrench: | \\`:wrench:\\` | :screwdriver: | \\`:screwdriver:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :nut_and_bolt: | \\`:nut_and_bolt:\\` | :gear: | \\`:gear:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :clamp: | \\`:clamp:\\` | :balance_scale: | \\`:balance_scale:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :probing_cane: | \\`:probing_cane:\\` | :link: | \\`:link:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :chains: | \\`:chains:\\` | :hook: | \\`:hook:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :toolbox: | \\`:toolbox:\\` | :magnet: | \\`:magnet:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :ladder: | \\`:ladder:\\` | | | [top](#table-of-contents) |\n\n    #### Science\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :alembic: | \\`:alembic:\\` | :test_tube: | \\`:test_tube:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :petri_dish: | \\`:petri_dish:\\` | :dna: | \\`:dna:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :microscope: | \\`:microscope:\\` | :telescope: | \\`:telescope:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :satellite: | \\`:satellite:\\` | | | [top](#table-of-contents) |\n\n    #### Medical\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :syringe: | \\`:syringe:\\` | :drop_of_blood: | \\`:drop_of_blood:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :pill: | \\`:pill:\\` | :adhesive_bandage: | \\`:adhesive_bandage:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :stethoscope: | \\`:stethoscope:\\` | | | [top](#table-of-contents) |\n\n    #### Household\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :door: | \\`:door:\\` | :elevator: | \\`:elevator:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :mirror: | \\`:mirror:\\` | :window: | \\`:window:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :bed: | \\`:bed:\\` | :couch_and_lamp: | \\`:couch_and_lamp:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :chair: | \\`:chair:\\` | :toilet: | \\`:toilet:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :plunger: | \\`:plunger:\\` | :shower: | \\`:shower:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :bathtub: | \\`:bathtub:\\` | :mouse_trap: | \\`:mouse_trap:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :razor: | \\`:razor:\\` | :lotion_bottle: | \\`:lotion_bottle:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :safety_pin: | \\`:safety_pin:\\` | :broom: | \\`:broom:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :basket: | \\`:basket:\\` | :roll_of_paper: | \\`:roll_of_paper:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :bucket: | \\`:bucket:\\` | :soap: | \\`:soap:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :toothbrush: | \\`:toothbrush:\\` | :sponge: | \\`:sponge:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :fire_extinguisher: | \\`:fire_extinguisher:\\` | :shopping_cart: | \\`:shopping_cart:\\` | [top](#table-of-contents) |\n\n    #### Other Object\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#objects) | :smoking: | \\`:smoking:\\` | :coffin: | \\`:coffin:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :headstone: | \\`:headstone:\\` | :funeral_urn: | \\`:funeral_urn:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :nazar_amulet: | \\`:nazar_amulet:\\` | :moyai: | \\`:moyai:\\` | [top](#table-of-contents) |\n    | [top](#objects) | :placard: | \\`:placard:\\` | | | [top](#table-of-contents) |\n\n    ### Symbols\n\n    - [Transport Sign](#transport-sign)\n    - [Warning](#warning)\n    - [Arrow](#arrow)\n    - [Religion](#religion)\n    - [Zodiac](#zodiac)\n    - [Av Symbol](#av-symbol)\n    - [Gender](#gender)\n    - [Math](#math)\n    - [Punctuation](#punctuation)\n    - [Currency](#currency)\n    - [Other Symbol](#other-symbol)\n    - [Keycap](#keycap)\n    - [Alphanum](#alphanum)\n    - [Geometric](#geometric)\n\n    #### Transport Sign\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :atm: | \\`:atm:\\` | :put_litter_in_its_place: | \\`:put_litter_in_its_place:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :potable_water: | \\`:potable_water:\\` | :wheelchair: | \\`:wheelchair:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :mens: | \\`:mens:\\` | :womens: | \\`:womens:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :restroom: | \\`:restroom:\\` | :baby_symbol: | \\`:baby_symbol:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :wc: | \\`:wc:\\` | :passport_control: | \\`:passport_control:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :customs: | \\`:customs:\\` | :baggage_claim: | \\`:baggage_claim:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :left_luggage: | \\`:left_luggage:\\` | | | [top](#table-of-contents) |\n\n    #### Warning\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :warning: | \\`:warning:\\` | :children_crossing: | \\`:children_crossing:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :no_entry: | \\`:no_entry:\\` | :no_entry_sign: | \\`:no_entry_sign:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :no_bicycles: | \\`:no_bicycles:\\` | :no_smoking: | \\`:no_smoking:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :do_not_litter: | \\`:do_not_litter:\\` | :non-potable_water: | \\`:non-potable_water:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :no_pedestrians: | \\`:no_pedestrians:\\` | :no_mobile_phones: | \\`:no_mobile_phones:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :underage: | \\`:underage:\\` | :radioactive: | \\`:radioactive:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :biohazard: | \\`:biohazard:\\` | | | [top](#table-of-contents) |\n\n    #### Arrow\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :arrow_up: | \\`:arrow_up:\\` | :arrow_upper_right: | \\`:arrow_upper_right:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_right: | \\`:arrow_right:\\` | :arrow_lower_right: | \\`:arrow_lower_right:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_down: | \\`:arrow_down:\\` | :arrow_lower_left: | \\`:arrow_lower_left:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_left: | \\`:arrow_left:\\` | :arrow_upper_left: | \\`:arrow_upper_left:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_up_down: | \\`:arrow_up_down:\\` | :left_right_arrow: | \\`:left_right_arrow:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :leftwards_arrow_with_hook: | \\`:leftwards_arrow_with_hook:\\` | :arrow_right_hook: | \\`:arrow_right_hook:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_heading_up: | \\`:arrow_heading_up:\\` | :arrow_heading_down: | \\`:arrow_heading_down:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrows_clockwise: | \\`:arrows_clockwise:\\` | :arrows_counterclockwise: | \\`:arrows_counterclockwise:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :back: | \\`:back:\\` | :end: | \\`:end:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :on: | \\`:on:\\` | :soon: | \\`:soon:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :top: | \\`:top:\\` | | | [top](#table-of-contents) |\n\n    #### Religion\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :place_of_worship: | \\`:place_of_worship:\\` | :atom_symbol: | \\`:atom_symbol:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :om: | \\`:om:\\` | :star_of_david: | \\`:star_of_david:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :wheel_of_dharma: | \\`:wheel_of_dharma:\\` | :yin_yang: | \\`:yin_yang:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :latin_cross: | \\`:latin_cross:\\` | :orthodox_cross: | \\`:orthodox_cross:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :star_and_crescent: | \\`:star_and_crescent:\\` | :peace_symbol: | \\`:peace_symbol:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :menorah: | \\`:menorah:\\` | :six_pointed_star: | \\`:six_pointed_star:\\` | [top](#table-of-contents) |\n\n    #### Zodiac\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :aries: | \\`:aries:\\` | :taurus: | \\`:taurus:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :gemini: | \\`:gemini:\\` | :cancer: | \\`:cancer:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :leo: | \\`:leo:\\` | :virgo: | \\`:virgo:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :libra: | \\`:libra:\\` | :scorpius: | \\`:scorpius:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :sagittarius: | \\`:sagittarius:\\` | :capricorn: | \\`:capricorn:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :aquarius: | \\`:aquarius:\\` | :pisces: | \\`:pisces:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :ophiuchus: | \\`:ophiuchus:\\` | | | [top](#table-of-contents) |\n\n    #### Av Symbol\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :twisted_rightwards_arrows: | \\`:twisted_rightwards_arrows:\\` | :repeat: | \\`:repeat:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :repeat_one: | \\`:repeat_one:\\` | :arrow_forward: | \\`:arrow_forward:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :fast_forward: | \\`:fast_forward:\\` | :next_track_button: | \\`:next_track_button:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :play_or_pause_button: | \\`:play_or_pause_button:\\` | :arrow_backward: | \\`:arrow_backward:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :rewind: | \\`:rewind:\\` | :previous_track_button: | \\`:previous_track_button:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_up_small: | \\`:arrow_up_small:\\` | :arrow_double_up: | \\`:arrow_double_up:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :arrow_down_small: | \\`:arrow_down_small:\\` | :arrow_double_down: | \\`:arrow_double_down:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :pause_button: | \\`:pause_button:\\` | :stop_button: | \\`:stop_button:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :record_button: | \\`:record_button:\\` | :eject_button: | \\`:eject_button:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :cinema: | \\`:cinema:\\` | :low_brightness: | \\`:low_brightness:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :high_brightness: | \\`:high_brightness:\\` | :signal_strength: | \\`:signal_strength:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :vibration_mode: | \\`:vibration_mode:\\` | :mobile_phone_off: | \\`:mobile_phone_off:\\` | [top](#table-of-contents) |\n\n    #### Gender\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :female_sign: | \\`:female_sign:\\` | :male_sign: | \\`:male_sign:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :transgender_symbol: | \\`:transgender_symbol:\\` | | | [top](#table-of-contents) |\n\n    #### Math\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :heavy_multiplication_x: | \\`:heavy_multiplication_x:\\` | :heavy_plus_sign: | \\`:heavy_plus_sign:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :heavy_minus_sign: | \\`:heavy_minus_sign:\\` | :heavy_division_sign: | \\`:heavy_division_sign:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :infinity: | \\`:infinity:\\` | | | [top](#table-of-contents) |\n\n    #### Punctuation\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :bangbang: | \\`:bangbang:\\` | :interrobang: | \\`:interrobang:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :question: | \\`:question:\\` | :grey_question: | \\`:grey_question:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :grey_exclamation: | \\`:grey_exclamation:\\` | :exclamation: | \\`:exclamation:\\` <br /> \\`:heavy_exclamation_mark:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :wavy_dash: | \\`:wavy_dash:\\` | | | [top](#table-of-contents) |\n\n    #### Currency\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :currency_exchange: | \\`:currency_exchange:\\` | :heavy_dollar_sign: | \\`:heavy_dollar_sign:\\` | [top](#table-of-contents) |\n\n    #### Other Symbol\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :medical_symbol: | \\`:medical_symbol:\\` | :recycle: | \\`:recycle:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :fleur_de_lis: | \\`:fleur_de_lis:\\` | :trident: | \\`:trident:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :name_badge: | \\`:name_badge:\\` | :beginner: | \\`:beginner:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :o: | \\`:o:\\` | :white_check_mark: | \\`:white_check_mark:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :ballot_box_with_check: | \\`:ballot_box_with_check:\\` | :heavy_check_mark: | \\`:heavy_check_mark:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :x: | \\`:x:\\` | :negative_squared_cross_mark: | \\`:negative_squared_cross_mark:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :curly_loop: | \\`:curly_loop:\\` | :loop: | \\`:loop:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :part_alternation_mark: | \\`:part_alternation_mark:\\` | :eight_spoked_asterisk: | \\`:eight_spoked_asterisk:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :eight_pointed_black_star: | \\`:eight_pointed_black_star:\\` | :sparkle: | \\`:sparkle:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :copyright: | \\`:copyright:\\` | :registered: | \\`:registered:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :tm: | \\`:tm:\\` | | | [top](#table-of-contents) |\n\n    #### Keycap\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :hash: | \\`:hash:\\` | :asterisk: | \\`:asterisk:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :zero: | \\`:zero:\\` | :one: | \\`:one:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :two: | \\`:two:\\` | :three: | \\`:three:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :four: | \\`:four:\\` | :five: | \\`:five:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :six: | \\`:six:\\` | :seven: | \\`:seven:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :eight: | \\`:eight:\\` | :nine: | \\`:nine:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :keycap_ten: | \\`:keycap_ten:\\` | | | [top](#table-of-contents) |\n\n    #### Alphanum\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :capital_abcd: | \\`:capital_abcd:\\` | :abcd: | \\`:abcd:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :1234: | \\`:1234:\\` | :symbols: | \\`:symbols:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :abc: | \\`:abc:\\` | :a: | \\`:a:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :ab: | \\`:ab:\\` | :b: | \\`:b:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :cl: | \\`:cl:\\` | :cool: | \\`:cool:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :free: | \\`:free:\\` | :information_source: | \\`:information_source:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :id: | \\`:id:\\` | :m: | \\`:m:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :new: | \\`:new:\\` | :ng: | \\`:ng:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :o2: | \\`:o2:\\` | :ok: | \\`:ok:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :parking: | \\`:parking:\\` | :sos: | \\`:sos:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :up: | \\`:up:\\` | :vs: | \\`:vs:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :koko: | \\`:koko:\\` | :sa: | \\`:sa:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u6708: | \\`:u6708:\\` | :u6709: | \\`:u6709:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u6307: | \\`:u6307:\\` | :ideograph_advantage: | \\`:ideograph_advantage:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u5272: | \\`:u5272:\\` | :u7121: | \\`:u7121:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u7981: | \\`:u7981:\\` | :accept: | \\`:accept:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u7533: | \\`:u7533:\\` | :u5408: | \\`:u5408:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u7a7a: | \\`:u7a7a:\\` | :congratulations: | \\`:congratulations:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :secret: | \\`:secret:\\` | :u55b6: | \\`:u55b6:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :u6e80: | \\`:u6e80:\\` | | | [top](#table-of-contents) |\n\n    #### Geometric\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#symbols) | :red_circle: | \\`:red_circle:\\` | :orange_circle: | \\`:orange_circle:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :yellow_circle: | \\`:yellow_circle:\\` | :green_circle: | \\`:green_circle:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :large_blue_circle: | \\`:large_blue_circle:\\` | :purple_circle: | \\`:purple_circle:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :brown_circle: | \\`:brown_circle:\\` | :black_circle: | \\`:black_circle:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :white_circle: | \\`:white_circle:\\` | :red_square: | \\`:red_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :orange_square: | \\`:orange_square:\\` | :yellow_square: | \\`:yellow_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :green_square: | \\`:green_square:\\` | :blue_square: | \\`:blue_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :purple_square: | \\`:purple_square:\\` | :brown_square: | \\`:brown_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :black_large_square: | \\`:black_large_square:\\` | :white_large_square: | \\`:white_large_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :black_medium_square: | \\`:black_medium_square:\\` | :white_medium_square: | \\`:white_medium_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :black_medium_small_square: | \\`:black_medium_small_square:\\` | :white_medium_small_square: | \\`:white_medium_small_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :black_small_square: | \\`:black_small_square:\\` | :white_small_square: | \\`:white_small_square:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :large_orange_diamond: | \\`:large_orange_diamond:\\` | :large_blue_diamond: | \\`:large_blue_diamond:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :small_orange_diamond: | \\`:small_orange_diamond:\\` | :small_blue_diamond: | \\`:small_blue_diamond:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :small_red_triangle: | \\`:small_red_triangle:\\` | :small_red_triangle_down: | \\`:small_red_triangle_down:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :diamond_shape_with_a_dot_inside: | \\`:diamond_shape_with_a_dot_inside:\\` | :radio_button: | \\`:radio_button:\\` | [top](#table-of-contents) |\n    | [top](#symbols) | :white_square_button: | \\`:white_square_button:\\` | :black_square_button: | \\`:black_square_button:\\` | [top](#table-of-contents) |\n\n    ### Flags\n\n    - [Flag](#flag)\n    - [Country Flag](#country-flag)\n    - [Subdivision Flag](#subdivision-flag)\n\n    #### Flag\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#flags) | :checkered_flag: | \\`:checkered_flag:\\` | :triangular_flag_on_post: | \\`:triangular_flag_on_post:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :crossed_flags: | \\`:crossed_flags:\\` | :black_flag: | \\`:black_flag:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :white_flag: | \\`:white_flag:\\` | :rainbow_flag: | \\`:rainbow_flag:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :transgender_flag: | \\`:transgender_flag:\\` | :pirate_flag: | \\`:pirate_flag:\\` | [top](#table-of-contents) |\n\n    #### Country Flag\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#flags) | :ascension_island: | \\`:ascension_island:\\` | :andorra: | \\`:andorra:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :united_arab_emirates: | \\`:united_arab_emirates:\\` | :afghanistan: | \\`:afghanistan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :antigua_barbuda: | \\`:antigua_barbuda:\\` | :anguilla: | \\`:anguilla:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :albania: | \\`:albania:\\` | :armenia: | \\`:armenia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :angola: | \\`:angola:\\` | :antarctica: | \\`:antarctica:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :argentina: | \\`:argentina:\\` | :american_samoa: | \\`:american_samoa:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :austria: | \\`:austria:\\` | :australia: | \\`:australia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :aruba: | \\`:aruba:\\` | :aland_islands: | \\`:aland_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :azerbaijan: | \\`:azerbaijan:\\` | :bosnia_herzegovina: | \\`:bosnia_herzegovina:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :barbados: | \\`:barbados:\\` | :bangladesh: | \\`:bangladesh:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :belgium: | \\`:belgium:\\` | :burkina_faso: | \\`:burkina_faso:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :bulgaria: | \\`:bulgaria:\\` | :bahrain: | \\`:bahrain:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :burundi: | \\`:burundi:\\` | :benin: | \\`:benin:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :st_barthelemy: | \\`:st_barthelemy:\\` | :bermuda: | \\`:bermuda:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :brunei: | \\`:brunei:\\` | :bolivia: | \\`:bolivia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :caribbean_netherlands: | \\`:caribbean_netherlands:\\` | :brazil: | \\`:brazil:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :bahamas: | \\`:bahamas:\\` | :bhutan: | \\`:bhutan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :bouvet_island: | \\`:bouvet_island:\\` | :botswana: | \\`:botswana:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :belarus: | \\`:belarus:\\` | :belize: | \\`:belize:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :canada: | \\`:canada:\\` | :cocos_islands: | \\`:cocos_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :congo_kinshasa: | \\`:congo_kinshasa:\\` | :central_african_republic: | \\`:central_african_republic:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :congo_brazzaville: | \\`:congo_brazzaville:\\` | :switzerland: | \\`:switzerland:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :cote_divoire: | \\`:cote_divoire:\\` | :cook_islands: | \\`:cook_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :chile: | \\`:chile:\\` | :cameroon: | \\`:cameroon:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :cn: | \\`:cn:\\` | :colombia: | \\`:colombia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :clipperton_island: | \\`:clipperton_island:\\` | :costa_rica: | \\`:costa_rica:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :cuba: | \\`:cuba:\\` | :cape_verde: | \\`:cape_verde:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :curacao: | \\`:curacao:\\` | :christmas_island: | \\`:christmas_island:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :cyprus: | \\`:cyprus:\\` | :czech_republic: | \\`:czech_republic:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :de: | \\`:de:\\` | :diego_garcia: | \\`:diego_garcia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :djibouti: | \\`:djibouti:\\` | :denmark: | \\`:denmark:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :dominica: | \\`:dominica:\\` | :dominican_republic: | \\`:dominican_republic:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :algeria: | \\`:algeria:\\` | :ceuta_melilla: | \\`:ceuta_melilla:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :ecuador: | \\`:ecuador:\\` | :estonia: | \\`:estonia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :egypt: | \\`:egypt:\\` | :western_sahara: | \\`:western_sahara:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :eritrea: | \\`:eritrea:\\` | :es: | \\`:es:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :ethiopia: | \\`:ethiopia:\\` | :eu: | \\`:eu:\\` <br /> \\`:european_union:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :finland: | \\`:finland:\\` | :fiji: | \\`:fiji:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :falkland_islands: | \\`:falkland_islands:\\` | :micronesia: | \\`:micronesia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :faroe_islands: | \\`:faroe_islands:\\` | :fr: | \\`:fr:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :gabon: | \\`:gabon:\\` | :gb: | \\`:gb:\\` <br /> \\`:uk:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :grenada: | \\`:grenada:\\` | :georgia: | \\`:georgia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :french_guiana: | \\`:french_guiana:\\` | :guernsey: | \\`:guernsey:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :ghana: | \\`:ghana:\\` | :gibraltar: | \\`:gibraltar:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :greenland: | \\`:greenland:\\` | :gambia: | \\`:gambia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :guinea: | \\`:guinea:\\` | :guadeloupe: | \\`:guadeloupe:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :equatorial_guinea: | \\`:equatorial_guinea:\\` | :greece: | \\`:greece:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :south_georgia_south_sandwich_islands: | \\`:south_georgia_south_sandwich_islands:\\` | :guatemala: | \\`:guatemala:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :guam: | \\`:guam:\\` | :guinea_bissau: | \\`:guinea_bissau:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :guyana: | \\`:guyana:\\` | :hong_kong: | \\`:hong_kong:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :heard_mcdonald_islands: | \\`:heard_mcdonald_islands:\\` | :honduras: | \\`:honduras:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :croatia: | \\`:croatia:\\` | :haiti: | \\`:haiti:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :hungary: | \\`:hungary:\\` | :canary_islands: | \\`:canary_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :indonesia: | \\`:indonesia:\\` | :ireland: | \\`:ireland:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :israel: | \\`:israel:\\` | :isle_of_man: | \\`:isle_of_man:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :india: | \\`:india:\\` | :british_indian_ocean_territory: | \\`:british_indian_ocean_territory:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :iraq: | \\`:iraq:\\` | :iran: | \\`:iran:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :iceland: | \\`:iceland:\\` | :it: | \\`:it:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :jersey: | \\`:jersey:\\` | :jamaica: | \\`:jamaica:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :jordan: | \\`:jordan:\\` | :jp: | \\`:jp:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :kenya: | \\`:kenya:\\` | :kyrgyzstan: | \\`:kyrgyzstan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :cambodia: | \\`:cambodia:\\` | :kiribati: | \\`:kiribati:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :comoros: | \\`:comoros:\\` | :st_kitts_nevis: | \\`:st_kitts_nevis:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :north_korea: | \\`:north_korea:\\` | :kr: | \\`:kr:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :kuwait: | \\`:kuwait:\\` | :cayman_islands: | \\`:cayman_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :kazakhstan: | \\`:kazakhstan:\\` | :laos: | \\`:laos:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :lebanon: | \\`:lebanon:\\` | :st_lucia: | \\`:st_lucia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :liechtenstein: | \\`:liechtenstein:\\` | :sri_lanka: | \\`:sri_lanka:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :liberia: | \\`:liberia:\\` | :lesotho: | \\`:lesotho:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :lithuania: | \\`:lithuania:\\` | :luxembourg: | \\`:luxembourg:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :latvia: | \\`:latvia:\\` | :libya: | \\`:libya:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :morocco: | \\`:morocco:\\` | :monaco: | \\`:monaco:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :moldova: | \\`:moldova:\\` | :montenegro: | \\`:montenegro:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :st_martin: | \\`:st_martin:\\` | :madagascar: | \\`:madagascar:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :marshall_islands: | \\`:marshall_islands:\\` | :macedonia: | \\`:macedonia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :mali: | \\`:mali:\\` | :myanmar: | \\`:myanmar:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :mongolia: | \\`:mongolia:\\` | :macau: | \\`:macau:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :northern_mariana_islands: | \\`:northern_mariana_islands:\\` | :martinique: | \\`:martinique:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :mauritania: | \\`:mauritania:\\` | :montserrat: | \\`:montserrat:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :malta: | \\`:malta:\\` | :mauritius: | \\`:mauritius:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :maldives: | \\`:maldives:\\` | :malawi: | \\`:malawi:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :mexico: | \\`:mexico:\\` | :malaysia: | \\`:malaysia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :mozambique: | \\`:mozambique:\\` | :namibia: | \\`:namibia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :new_caledonia: | \\`:new_caledonia:\\` | :niger: | \\`:niger:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :norfolk_island: | \\`:norfolk_island:\\` | :nigeria: | \\`:nigeria:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :nicaragua: | \\`:nicaragua:\\` | :netherlands: | \\`:netherlands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :norway: | \\`:norway:\\` | :nepal: | \\`:nepal:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :nauru: | \\`:nauru:\\` | :niue: | \\`:niue:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :new_zealand: | \\`:new_zealand:\\` | :oman: | \\`:oman:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :panama: | \\`:panama:\\` | :peru: | \\`:peru:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :french_polynesia: | \\`:french_polynesia:\\` | :papua_new_guinea: | \\`:papua_new_guinea:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :philippines: | \\`:philippines:\\` | :pakistan: | \\`:pakistan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :poland: | \\`:poland:\\` | :st_pierre_miquelon: | \\`:st_pierre_miquelon:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :pitcairn_islands: | \\`:pitcairn_islands:\\` | :puerto_rico: | \\`:puerto_rico:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :palestinian_territories: | \\`:palestinian_territories:\\` | :portugal: | \\`:portugal:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :palau: | \\`:palau:\\` | :paraguay: | \\`:paraguay:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :qatar: | \\`:qatar:\\` | :reunion: | \\`:reunion:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :romania: | \\`:romania:\\` | :serbia: | \\`:serbia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :ru: | \\`:ru:\\` | :rwanda: | \\`:rwanda:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :saudi_arabia: | \\`:saudi_arabia:\\` | :solomon_islands: | \\`:solomon_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :seychelles: | \\`:seychelles:\\` | :sudan: | \\`:sudan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :sweden: | \\`:sweden:\\` | :singapore: | \\`:singapore:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :st_helena: | \\`:st_helena:\\` | :slovenia: | \\`:slovenia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :svalbard_jan_mayen: | \\`:svalbard_jan_mayen:\\` | :slovakia: | \\`:slovakia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :sierra_leone: | \\`:sierra_leone:\\` | :san_marino: | \\`:san_marino:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :senegal: | \\`:senegal:\\` | :somalia: | \\`:somalia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :suriname: | \\`:suriname:\\` | :south_sudan: | \\`:south_sudan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :sao_tome_principe: | \\`:sao_tome_principe:\\` | :el_salvador: | \\`:el_salvador:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :sint_maarten: | \\`:sint_maarten:\\` | :syria: | \\`:syria:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :swaziland: | \\`:swaziland:\\` | :tristan_da_cunha: | \\`:tristan_da_cunha:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :turks_caicos_islands: | \\`:turks_caicos_islands:\\` | :chad: | \\`:chad:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :french_southern_territories: | \\`:french_southern_territories:\\` | :togo: | \\`:togo:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :thailand: | \\`:thailand:\\` | :tajikistan: | \\`:tajikistan:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :tokelau: | \\`:tokelau:\\` | :timor_leste: | \\`:timor_leste:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :turkmenistan: | \\`:turkmenistan:\\` | :tunisia: | \\`:tunisia:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :tonga: | \\`:tonga:\\` | :tr: | \\`:tr:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :trinidad_tobago: | \\`:trinidad_tobago:\\` | :tuvalu: | \\`:tuvalu:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :taiwan: | \\`:taiwan:\\` | :tanzania: | \\`:tanzania:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :ukraine: | \\`:ukraine:\\` | :uganda: | \\`:uganda:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :us_outlying_islands: | \\`:us_outlying_islands:\\` | :united_nations: | \\`:united_nations:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :us: | \\`:us:\\` | :uruguay: | \\`:uruguay:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :uzbekistan: | \\`:uzbekistan:\\` | :vatican_city: | \\`:vatican_city:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :st_vincent_grenadines: | \\`:st_vincent_grenadines:\\` | :venezuela: | \\`:venezuela:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :british_virgin_islands: | \\`:british_virgin_islands:\\` | :us_virgin_islands: | \\`:us_virgin_islands:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :vietnam: | \\`:vietnam:\\` | :vanuatu: | \\`:vanuatu:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :wallis_futuna: | \\`:wallis_futuna:\\` | :samoa: | \\`:samoa:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :kosovo: | \\`:kosovo:\\` | :yemen: | \\`:yemen:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :mayotte: | \\`:mayotte:\\` | :south_africa: | \\`:south_africa:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :zambia: | \\`:zambia:\\` | :zimbabwe: | \\`:zimbabwe:\\` | [top](#table-of-contents) |\n\n    #### Subdivision Flag\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#flags) | :england: | \\`:england:\\` | :scotland: | \\`:scotland:\\` | [top](#table-of-contents) |\n    | [top](#flags) | :wales: | \\`:wales:\\` | | | [top](#table-of-contents) |\n\n    ### GitHub Custom Emoji\n\n    | | ico | shortcode | ico | shortcode | |\n    | - | :-: | - | :-: | - | - |\n    | [top](#github-custom-emoji) | :accessibility: | \\`:accessibility:\\` | :atom: | \\`:atom:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :basecamp: | \\`:basecamp:\\` | :basecampy: | \\`:basecampy:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :bowtie: | \\`:bowtie:\\` | :dependabot: | \\`:dependabot:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :electron: | \\`:electron:\\` | :feelsgood: | \\`:feelsgood:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :finnadie: | \\`:finnadie:\\` | :fishsticks: | \\`:fishsticks:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :goberserk: | \\`:goberserk:\\` | :godmode: | \\`:godmode:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :hurtrealbad: | \\`:hurtrealbad:\\` | :neckbeard: | \\`:neckbeard:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :octocat: | \\`:octocat:\\` | :rage1: | \\`:rage1:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :rage2: | \\`:rage2:\\` | :rage3: | \\`:rage3:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :rage4: | \\`:rage4:\\` | :shipit: | \\`:shipit:\\` | [top](#table-of-contents) |\n    | [top](#github-custom-emoji) | :suspect: | \\`:suspect:\\` | :trollface: | \\`:trollface:\\` | [top](#table-of-contents) |\n    \"\n  `)\n})\n"
  },
  {
    "path": "scripts/generate.ts",
    "content": "import { getCategorizeGithubEmojiIds } from './fetch.js'\nimport { generateCheatSheet } from './markdown.js'\n\nexport async function generate() {\n  return generateCheatSheet(await getCategorizeGithubEmojiIds())\n}\n\nif (process.argv[2] === 'run') {\n  console.log(await generate())\n}\n"
  },
  {
    "path": "scripts/markdown.ts",
    "content": "import { name as repoName, repository } from '../package.json'\n\nconst RESOURCE_1 = '[GitHub Emoji API](https://api.github.com/emojis)'\nconst RESOURCE_2 =\n  '[Unicode Full Emoji List](https://unicode.org/emoji/charts/full-emoji-list.html)'\n\nconst COLUMNS = 2\n\nconst TOC_NAME = 'Table of Contents'\n\ntype GithubEmojiIds = Array<string[]>\n\nexport function generateCheatSheet(categorizedGithubEmojiIds: {\n  [category: string]: { [subCategory: string]: GithubEmojiIds }\n}) {\n  const lineTexts = []\n\n  lineTexts.push(`# ${repoName}`)\n  lineTexts.push('')\n\n  lineTexts.push(\n    `[![Up to Date](https://github.com/${repository}/workflows/Up%20to%20Date/badge.svg)](https://github.com/${repository}/actions?query=workflow%3A%22Up+to+Date%22)`,\n  )\n  lineTexts.push('')\n\n  lineTexts.push(\n    `This cheat sheet is automatically generated from ${RESOURCE_1} and ${RESOURCE_2}.`,\n  )\n  lineTexts.push('')\n\n  const categories = Object.keys(categorizedGithubEmojiIds)\n\n  lineTexts.push(`## ${TOC_NAME}`)\n  lineTexts.push('')\n  lineTexts.push(...generateToc(categories))\n  lineTexts.push('')\n\n  for (const category of categories) {\n    lineTexts.push(`### ${category}`)\n    lineTexts.push('')\n\n    const subCategorizedGithubEmojiIds = categorizedGithubEmojiIds[category]\n    const subCategories = Object.keys(subCategorizedGithubEmojiIds)\n    if (subCategories.length > 1) {\n      lineTexts.push(...generateToc(subCategories))\n      lineTexts.push('')\n    }\n\n    for (const subCategory of subCategories) {\n      if (subCategory) {\n        lineTexts.push(`#### ${subCategory}`)\n        lineTexts.push('')\n      }\n\n      lineTexts.push(\n        ...generateTable(\n          subCategorizedGithubEmojiIds[subCategory],\n          `[top](#${getHeaderId(category)})`,\n          `[top](#${getHeaderId(TOC_NAME)})`,\n        ),\n      )\n      lineTexts.push('')\n    }\n  }\n\n  return lineTexts.join('\\n')\n}\n\nfunction generateToc(headers: string[]) {\n  return headers.map(header => `- [${header}](#${getHeaderId(header)})`)\n}\n\nfunction getHeaderId(header: string) {\n  return header\n    .toLowerCase()\n    .replace(/ /g, '-')\n    .replace(/[^a-z0-9-]/g, '')\n}\n\nfunction generateTable(\n  githubEmojiIds: GithubEmojiIds,\n  leftText: string,\n  rightText: string,\n) {\n  const lineTexts = []\n\n  let header = ''\n  let delimiter = ''\n\n  header += '| '\n  delimiter += '| - '\n  for (let i = 0; i < COLUMNS && i < githubEmojiIds.length; i++) {\n    header += `| ico | shortcode `\n    delimiter += '| :-: | - '\n  }\n  header += '| |'\n  delimiter += '| - |'\n\n  lineTexts.push(header, delimiter)\n\n  for (let i = 0; i < githubEmojiIds.length; i += COLUMNS) {\n    let lineText = `| ${leftText} `\n    for (let j = 0; j < COLUMNS; j++) {\n      if (i + j < githubEmojiIds.length) {\n        const emojiIds = githubEmojiIds[i + j]\n        const emojiId = emojiIds[0]\n        lineText += `| :${emojiId}: | \\`:${emojiId}:\\` `\n        for (let k = 1; k < emojiIds.length; k++) {\n          lineText += `<br /> \\`:${emojiIds[k]}:\\` `\n        }\n      } else if (githubEmojiIds.length > COLUMNS) {\n        lineText += '| | '\n      }\n    }\n    lineText += `| ${rightText} |`\n    lineTexts.push(lineText)\n  }\n\n  return lineTexts\n}\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"include\": [\"scripts/**/*\"],\n  \"compilerOptions\": {\n    \"strict\": true,\n    \"target\": \"ES2021\",\n    \"lib\": [\"ES2021\", \"DOM\"],\n    \"module\": \"Node16\",\n    \"moduleResolution\": \"Node16\",\n    \"skipLibCheck\": true,\n    \"resolveJsonModule\": true\n  }\n}\n"
  }
]